commit a83d98c47e4f6e53bd75f0a5a65d4572498d5902 Author: Minidodo Date: Mon Aug 9 13:18:56 2021 +0200 Initial Release of IGNCore version 2.5 diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..0f8a6a5 --- /dev/null +++ b/.gitignore @@ -0,0 +1,12 @@ +/venv +__pycache__ +/.idea +/conf/*.py +/data/* +/logs/ +/modules/disabled +.vscode/* +/.vscode +*.log +/data/cache +/.vs \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..26a705a --- /dev/null +++ b/README.md @@ -0,0 +1,45 @@ +# IGNCore + +IGNcore is a performance oriented rewrite of [Tyrbot](https://github.com/Budabot/Tyrbot), which is an in-game chatbot +for the MMORPG Anarchy Online released by Funcom in 2001. + +**If you're unsure about good ways of setting it up, this bot is NOT for you. The bot targets advanced use cases of +bigger bots, and lacks all types of documentation as of now.** + +## Requirements + +IGNCore requires Python 3.9 or newer. + +## Installation + +IGNCore is recommended to use for large scaled bots, or bot networks consisting out of multiple bots. + +1) Download the Repository, +2) copy conf/config.py to conf/##botname##.py +3) add your database details to the config +4) copy the dummy.start.sh to a filename of your choice, and replace ##bot_name## with the name of your bot. Note: the + superadmin needs to be supplied in char_id format instead of a name. + +regarding step 4: for module paths, you can choose between raidbot, orgbot and +onlinebot [used for a centralized alliance bot] modules. Compatibility between these modules is **not** guaranteed. + +## Upgrade + +For upgrading just pull in the latest changes from the repository, and restart the bot. + +## Starting the Bot + +To start the bot, run the start file you created in step 4 of the installation. + +## Support + +If you need help or support with IGNCore, reach out to us by contacting us via gitlab Issues. + +## Discord Module Setup + +For setting up the discord module, create a discord bot, invite it into your server, and fill in the required details +in !config mod core.discord. + +- Library used: https://discordpy.readthedocs.io/en/latest/index.html. +- Official Discord API docs can be accessed here: https://discordapp.com/developers/docs/intro. +- Official Discord API server: https://discord.gg/discord-api. \ No newline at end of file diff --git a/bootstrap.py b/bootstrap.py new file mode 100644 index 0000000..542f496 --- /dev/null +++ b/bootstrap.py @@ -0,0 +1,132 @@ +import os +import platform +import sys +import time + +from conf.config import BotConfig +from core.aochat.mmdb_parser import MMDBParser +from core.bot_status import BotStatus +from core.db import DB +from core.dict_object import DictObject +from core.functions import merge_dicts +from core.logger import Logger +from core.registry import Registry +from core.upgrade import run_upgrades + + +def get_config_from_env(): + config_obj = DictObject() + for k, v in os.environ.items(): + if k.startswith("TYRBOT_"): + keys = k[7:].lower().split("_") + temp_config = config_obj + for key in keys[:-1]: + key = key.replace("-", "_") + # create key if it doesn't already exist + if key not in temp_config: + temp_config[key] = DictObject() + temp_config = temp_config.get(key) + logger.debug("overriding config value from env var '%s'" % k) + if v.lower() == "true": + v = True + elif v.lower() == "false": + v = False + temp_config[keys[-1].replace("-", "_")] = v + return config_obj + + +try: + # load logging configuration + import conf.logging_settings + + Registry.logger = Logger("core.registry") + bot = "config" + if len(sys.argv) > 1: + bot = f"{sys.argv[1]}" + else: + print( + "Unknown bot specified. Please edit your ##botname##.start.sh accordingly to the instructions found in the README.") + exit(0) + logger = Logger("core.bootstrap") + logger.info("Starting Tyrbot...") + mod = __import__(f'conf.{bot}', fromlist=['BotConfig']) + config: BotConfig = getattr(mod, 'BotConfig') + if sys.version_info < (3, 9): + logger.warning("Versions lower then Python3.9 are not supported.") + exit(-1) + + # load config values from env vars + env_config = get_config_from_env() + if env_config: + # converts dicts to lists + if "slaves" in env_config and isinstance(env_config.slaves, dict): + env_config.slaves = list(env_config.slaves.values()) + + if "module_paths" in env_config and isinstance(env_config.module_paths, dict): + env_config.module_paths = list(env_config.module_paths.values()) + + config = merge_dicts(config, env_config) + logger.info("Reading config from env vars") + else: + exit(-1) + # ensure dimension is integer + if isinstance(config.server.dimension, str): + config.server.dimension = int(config.server.dimension) + + if platform.system() == "Windows": + os.system("title %s.%d" % (config.character, config.server.dimension)) + + # paths to search for instances: core + module_paths + paths = ["core"] + paths.extend(config.module_paths) + + # load instances + logger.debug("Loading instances") + Registry.load_instances(paths) + Registry.inject_all() + + # configure database + db = Registry.get_instance("db") + if config.database.type == "mariadb": + if config.database.port in [0, ""]: + config.database.port = 3306 + db.connect_mariadb(config.database.host, config.database.port, config.database.username, + config.database.password, + config.database.name) + if hasattr(config, "shared_db"): + if config.shared_db.port in [0, ""]: + config.shared_db.port = 3306 + db.shared = DB() + db.shared.connect_mariadb(config.shared_db.host, config.shared_db.port, config.shared_db.username, + config.shared_db.password, config.shared_db.name) + else: + db.shared = db + else: + raise Exception("Unknown database type '%s'" % config.database.type) + + # run db upgrade scripts + run_upgrades() + + # finish initializing bot and modules, and then connect + bot = Registry.get_instance("bot") + bot.init(config, Registry, MMDBParser("text.mdb")) + + if not bot.connect(config): + bot.disconnect() + time.sleep(5) + exit(3) + else: + status = bot.run() + bot.disconnect() + exit(status.value) + +except KeyboardInterrupt: + # noinspection PyUnboundLocalVariable + if bot: + # noinspection PyUnboundLocalVariable + bot.status = BotStatus.SHUTDOWN + # exit(0) +except Exception as e: + logger = Logger("bootstrap") + logger.error("", e) + exit(4) diff --git a/conf/config.py b/conf/config.py new file mode 100644 index 0000000..63e9eca --- /dev/null +++ b/conf/config.py @@ -0,0 +1,78 @@ +# noinspection DuplicatedCode +from core.dict_object import DictObject + + +# Copy this file to ./conf/##bot_name##.py, +# template.config.py provides a copy without any comments, +# for easier and faster editing. +# and change the settings provided below. + +# This file is used for Code Completion or Type Hinting. DO NOT DELETE IT. +# This file is used for Code Completion or Type Hinting. DO NOT DELETE IT. + + +class BotConfig: + username = "" + password = "" + character = "" + # This should be a list of CharID's. For some Reason I didnt like the idea of sticking to Names... + # Dont ask me why :P + superadmin = [] + + # Only MariaDB is supported, please supply the details used for the bot data. + database = DictObject({ + "type": "mariadb", + "username": "", + "password": "", + "host": "", + "name": ""}) + + # IGNCore supports splitting of the DB; If you're hosting multiple bots, its generally a good idea to fill + # this section with additional details. every mariadb user used by bots (e.g. the one above) + # will need update, delete and insert permissions in this database. + # + # If you only host one bot, and because of that dont need to split the database, + # please remove this section entirely. + # START # + shared_db = DictObject({ + "type": "mariadb", + "username": "", + "password": "", + "host": "", + "name": "" + }) + # END # + + # If you have got access to any sort of tower API (there are multiple) + # you can enter the URI for accessing it here. + tower_url = "" + + # In this section you can add some slaves to the bot. + # They serve as a buddylist expander, and tells may get sent through them. (Tells which are known to be spammy) + slaves = [ + # {"username": "account_name", "password": "password", "character": "character_name"}, + ] + + # You will need to edit this section, if you're hosting a bot for RK6, or any other server than RK5. + server = DictObject({ + "dimension": "5", + "host": "chat.d1.funcom.com", + "port": 7105 + }) + + # Here the module paths are configured. + # + # Supported paths: + # modules/core - Contains the core modules. They provide commands which are necessary to run the bot. + # modules/onlinebot - Contains modules useful for bots running between multiple orgs; for example, Alliances. + # modules/orgbot - Provides modules specifically for org bots. + # modules/raidbot - Provides Raidbot functionality. For example Massinvites, Masstells, Tower stuff, and Raids. + # modules/standard - Here are modules useful in all bot types; For Example loot tables, item database, and so on. + module_paths = [ + "modules/core", + "modules/standard", + "modules/raidbot" + ] + + # DO NOT TOUCH THIS LINE + slaves = [DictObject(x) for x in slaves if password != ""] diff --git a/conf/logging_settings.py b/conf/logging_settings.py new file mode 100644 index 0000000..8448be4 --- /dev/null +++ b/conf/logging_settings.py @@ -0,0 +1,65 @@ +import logging +import logging.config +import logging.handlers +import os +import sys +import time +from datetime import datetime + + +class FilterInfo: + def filter(self, rec): + return rec.levelno <= logging.INFO + + +formatter = logging.Formatter('[%(asctime)s] %(levelname)s :: %(name)s -> %(message)s', datefmt="%d.%m.%Y %H:%M:%S") +name = "bot" +# As the core is able to host multiple bots out of the same directory, filtering the logs only sounds reasonable. +# So we're saving the logs into ./logs/##bot_name##/ +if len(sys.argv) > 1: + name = sys.argv[1] +try: + os.mkdir(f"./logs/{name}") +except FileExistsError as error: + pass + +# Rotate logs at 0 a.m. on Monday, GMT-0 +file_handler = logging.handlers.TimedRotatingFileHandler(f"./logs/{name}/bot.log", + when='W6', utc=True, + backupCount=1000, encoding="utf-8") +file_handler.setFormatter(formatter) + +# Fix time display => UTC-0 +logging.Formatter.converter = lambda *args: datetime.utcnow().timetuple() + +console_out = logging.StreamHandler(sys.stdout) +console_out.setFormatter(formatter) +# noinspection PyTypeChecker +console_out.addFilter(FilterInfo()) + +console_err = logging.StreamHandler(sys.stderr) +console_err.setFormatter(formatter) +console_err.setLevel(logging.WARN) + +logging.root.setLevel(logging.INFO) +logging.root.addHandler(file_handler) +logging.root.addHandler(console_out) +logging.root.addHandler(console_err) + +current_time = int(time.time()) +# noinspection PyUnresolvedReferences +rollover_time = file_handler.computeRollover(current_time) +logging.info("Next log rollover has been scheduled for " + str(datetime.utcfromtimestamp(rollover_time))) + +# reduce discord spam +# logging.getLogger("websockets").setLevel(logging.INFO) +# logging.getlogger("discord").setLevel(logging.INFO) + +# Supress Spam generated by using TOR +# [used in: character_history_service.py & tower_service.py +logging.getLogger("torpy.stream").setLevel(logging.WARN) +logging.getLogger("torpy.guard").setLevel(logging.WARN) +logging.getLogger("torpy.consesus").setLevel(logging.WARN) +logging.getLogger("torpy.circuit").setLevel(logging.WARN) +logging.getLogger("torpy.cache_storage").setLevel(logging.WARN) +logging.getLogger("torpy.documents.network_status").setLevel(logging.WARN) diff --git a/conf/template.config.py b/conf/template.config.py new file mode 100644 index 0000000..ba0f50b --- /dev/null +++ b/conf/template.config.py @@ -0,0 +1,42 @@ +from core.dict_object import DictObject + + +class BotConfig: + username = "" + password = "" + character = "" + superadmin = [] + + database = DictObject({ + "type": "mariadb", + "username": "", + "password": "", + "host": "", + "name": ""}) + + shared_db = DictObject({ + "type": "mariadb", + "username": "", + "password": "", + "host": "", + "name": "" + }) + tower_url = "" + + slaves = [ + # {"username": "account_name", "password": "password", "character": "character_name"}, + ] + + server = DictObject({ + "dimension": "5", + "host": "chat.d1.funcom.com", + "port": 7105 + }) + + module_paths = [ + "modules/core", + "modules/standard", + "modules/raidbot" + ] + + slaves = [DictObject(x) for x in slaves if password != ""] diff --git a/core/aochat/BaseModule.py b/core/aochat/BaseModule.py new file mode 100644 index 0000000..a278d39 --- /dev/null +++ b/core/aochat/BaseModule.py @@ -0,0 +1,17 @@ +# +# Base class of all modules... +# makes accessing fields which exist in all modules easier +# +class BaseModule: + module_name = "" + module_dir = "" + + # noinspection DuplicatedCode + def inject(self, registry): + pass + + def pre_start(self): + pass + + def start(self): + pass diff --git a/core/aochat/bot.py b/core/aochat/bot.py new file mode 100644 index 0000000..3117e43 --- /dev/null +++ b/core/aochat/bot.py @@ -0,0 +1,117 @@ +import select +import socket +import struct + +from core.aochat.client_packets import LoginRequest, LoginSelect +from core.aochat.crypt import generate_login_key +from core.aochat.server_packets import ServerPacket, LoginOK, LoginError, LoginCharacterList +from core.logger import Logger + + +class Bot: + def __init__(self): + self.socket = None + self.char_id = None + self.char_name = None + self.logger = Logger(__name__) + + def connect(self, host, port): + self.logger.info("Connecting to '%s:%d'" % (host, port)) + self.socket = socket.create_connection((host, port), 10) + + def disconnect(self): + if self.socket: + self.socket.shutdown(socket.SHUT_RDWR) + self.socket.close() + self.socket = None + + def login(self, username, password, character): + character = character.capitalize() + + # read seed packet + self.logger.info("Logging in as '%s'" % character) + seed_packet = self.read_packet(10) + seed = seed_packet.seed + + # send back challenge + key = generate_login_key(seed, username, password) + login_request_packet = LoginRequest(0, username, key) + self.send_packet(login_request_packet) + + # read character list + character_list_packet: LoginCharacterList = self.read_packet() + if isinstance(character_list_packet, LoginError): + self.logger.error("Error logging in: %s" % character_list_packet.message) + return False + if character not in character_list_packet.names: + self.logger.error("Character '%s' does not exist on this account" % character) + return False + index = character_list_packet.names.index(character) + + # select character + self.char_id = character_list_packet.char_ids[index] + self.char_name = character_list_packet.names[index] + login_select_packet = LoginSelect(self.char_id) + self.send_packet(login_select_packet) + + # wait for OK + packet = self.read_packet() + if packet.id == LoginOK.id: + self.logger.info("Connected!") + return packet + else: + self.logger.error("Error logging in: %s" % packet.message) + return False + + def read_packet(self, max_delay_time=1): + """ + Wait for packet from server. + """ + + read, write, error = select.select([self.socket], [], [], max_delay_time) + if not read: + return None + else: + # Read data from server + head = self.read_bytes(4) + packet_type, packet_length = struct.unpack(">2H", head) + data = self.read_bytes(packet_length) + + try: + return ServerPacket.get_instance(packet_type, data) + except Exception as e: + self.logger.error(f"Error parsing packet parameters for packet_type {packet_type} and payload: {data}", + e) + return None + + def send_packet(self, packet): + data = packet.to_bytes() + data = struct.pack(">2H", packet.id, len(data)) + data + + self.write_bytes(data) + + def read_bytes(self, num_bytes): + data = bytes() + + while num_bytes > 0: + chunk = self.socket.recv(num_bytes) + + if len(chunk) == 0: + raise EOFError + + num_bytes -= len(chunk) + data = data + chunk + + return data + + def write_bytes(self, data): + num_bytes = len(data) + + while num_bytes > 0: + sent = self.socket.send(data) + + if sent == 0: + raise EOFError + + data = data[sent:] + num_bytes -= sent diff --git a/core/aochat/client_packets.py b/core/aochat/client_packets.py new file mode 100644 index 0000000..651ced8 --- /dev/null +++ b/core/aochat/client_packets.py @@ -0,0 +1,266 @@ +from core.aochat.packets import * + + +class ClientPacket(Packet): + def __init__(self, packet_id, types, args): + self.id = packet_id + self.types = types + self.args = args + + def to_bytes(self): + return encode_args(self.types, self.args) + + def __str__(self): + return "ClientPacket(%d): %s" % (self.id, self.args) + + @classmethod + def get_instance(cls, packet_id, data): + if packet_id == LoginRequest.id: + LoginRequest.from_bytes(data) + elif packet_id == LoginSelect.id: + LoginSelect.from_bytes(data) + elif packet_id == CharacterLookup.id: + CharacterLookup.from_bytes(data) + elif packet_id == PrivateMessage.id: + PrivateMessage.from_bytes(data) + elif packet_id == BuddyAdd.id: + BuddyAdd.from_bytes(data) + elif packet_id == BuddyRemove.id: + BuddyRemove.from_bytes(data) + elif packet_id == PrivateChannelInvite.id: + PrivateChannelInvite.from_bytes(data) + elif packet_id == PrivateChannelKick.id: + PrivateChannelKick.from_bytes(data) + elif packet_id == PrivateChannelJoin.id: + PrivateChannelJoin.from_bytes(data) + elif packet_id == PrivateChannelLeave.id: + PrivateChannelLeave.from_bytes(data) + elif packet_id == PrivateChannelKickAll.id: + PrivateChannelKickAll.from_bytes(data) + elif packet_id == PrivateChannelMessage.id: + PrivateChannelMessage.from_bytes(data) + elif packet_id == PublicChannelMessage.id: + PublicChannelMessage.from_bytes(data) + elif packet_id == Ping.id: + Ping.from_bytes(data) + elif packet_id == ChatCommand.id: + ChatCommand.from_bytes(data) + else: + return None + + +class LoginRequest(ClientPacket): + id = 2 + types = "ISS" + + def __init__(self, unknown, username, key): + self.unknown = unknown + self.username = username + self.key = key + super().__init__(self.id, self.types, [self.unknown, self.username, self.key]) + + @classmethod + def from_bytes(cls, data): + args = decode_args(cls.types, data) + return cls(*args) + + +class LoginSelect(ClientPacket): + id = 3 + types = "I" + + def __init__(self, char_id): + self.char_id = char_id + super().__init__(self.id, self.types, [self.char_id]) + + @classmethod + def from_bytes(cls, data): + args = decode_args(cls.types, data) + return cls(*args) + + +class CharacterLookup(ClientPacket): + id = 21 + types = "S" + + def __init__(self, name): + self.name = name + super().__init__(self.id, self.types, [self.name]) + + @classmethod + def from_bytes(cls, data): + args = decode_args(cls.types, data) + return cls(*args) + + +class PrivateMessage(ClientPacket): + id = 30 + types = "ISS" + + def __init__(self, char_id, message, blob): + self.char_id = char_id + self.message = message + self.blob = blob + super().__init__(self.id, self.types, [self.char_id, self.message, self.blob]) + + @classmethod + def from_bytes(cls, data): + args = decode_args(cls.types, data) + return cls(*args) + + +class BuddyAdd(ClientPacket): + id = 40 + types = "IS" + + def __init__(self, char_id, status): + self.char_id = char_id + self.status = status + super().__init__(self.id, self.types, [self.char_id, self.status]) + + @classmethod + def from_bytes(cls, data): + args = decode_args(cls.types, data) + return cls(*args) + + +class BuddyRemove(ClientPacket): + id = 41 + types = "I" + + def __init__(self, char_id): + self.char_id = char_id + super().__init__(self.id, self.types, [self.char_id]) + + @classmethod + def from_bytes(cls, data): + args = decode_args(cls.types, data) + return cls(*args) + + +class PrivateChannelInvite(ClientPacket): + id = 50 + types = "I" + + def __init__(self, char_id): + self.char_id = char_id + super().__init__(self.id, self.types, [self.char_id]) + + @classmethod + def from_bytes(cls, data): + args = decode_args(cls.types, data) + return cls(*args) + + +class PrivateChannelKick(ClientPacket): + id = 51 + types = "I" + + def __init__(self, char_id): + self.char_id = char_id + super().__init__(self.id, self.types, [self.char_id]) + + @classmethod + def from_bytes(cls, data): + args = decode_args(cls.types, data) + return cls(*args) + + +class PrivateChannelJoin(ClientPacket): + id = 52 + types = "I" + + def __init__(self, private_channel_id): + self.private_channel_id = private_channel_id + super().__init__(self.id, self.types, [self.private_channel_id]) + + @classmethod + def from_bytes(cls, data): + args = decode_args(cls.types, data) + return cls(*args) + + +class PrivateChannelLeave(ClientPacket): + id = 53 + types = "I" + + def __init__(self, private_channel_id): + self.private_channel_id = private_channel_id + super().__init__(self.id, self.types, [self.private_channel_id]) + + @classmethod + def from_bytes(cls, data): + args = decode_args(cls.types, data) + return cls(*args) + + +class PrivateChannelKickAll(ClientPacket): + id = 54 + types = "" + + def __init__(self): + super().__init__(self.id, self.types, []) + + @classmethod + def from_bytes(cls, data): + return cls() + + +class PrivateChannelMessage(ClientPacket): + id = 57 + types = "ISS" + + def __init__(self, private_channel_id, message, blob): + self.private_channel_id = private_channel_id + self.message = message + self.blob = blob + super().__init__(self.id, self.types, [self.private_channel_id, self.message, self.blob]) + + @classmethod + def from_bytes(cls, data): + args = decode_args(cls.types, data) + return cls(*args) + + +class PublicChannelMessage(ClientPacket): + id = 65 + types = "GSS" + + def __init__(self, channel_id, message, blob): + self.channel_id = channel_id + self.message = message + self.blob = blob + super().__init__(self.id, self.types, [self.channel_id, self.message, self.blob]) + + @classmethod + def from_bytes(cls, data): + args = decode_args(cls.types, data) + return cls(*args) + + +class Ping(ClientPacket): + id = 100 + types = "S" + + def __init__(self, blob): + self.blob = blob + super().__init__(self.id, self.types, [self.blob]) + + @classmethod + def from_bytes(cls, data): + args = decode_args(cls.types, data) + return cls(*args) + + +class ChatCommand(ClientPacket): + id = 120 + types = "s" + + def __init__(self, commands): + self.commands = commands + super().__init__(self.id, self.types, [self.commands]) + + @classmethod + def from_bytes(cls, data): + args = decode_args(cls.types, data) + return cls(*args) diff --git a/core/aochat/crypt.py b/core/aochat/crypt.py new file mode 100644 index 0000000..4479191 --- /dev/null +++ b/core/aochat/crypt.py @@ -0,0 +1,110 @@ +# Relevant parts of original copyright notice of AOChat.php: + +# Copyright (C) 2005 by Jürgen A. Erhard +# Copyright (C) 2002-2004 Oskari Saarenmaa . +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 +# USA + + +import random +import socket +import struct + + +# This is 'half' Diffie-Hellman key exchange. +# 'Half' as in we already have the server's key ($dhY) +# $dhN is a prime and $dhG is generator for it. +# +# http://en.wikipedia.org/wiki/Diffie-Hellman_key_exchange + + +# noinspection LongLine +def generate_login_key(server_key, username, password): + dhY = 0x9c32cc23d559ca90fc31be72df817d0e124769e809f936bc14360ff4bed758f260a0d596584eacbbc2b88bdd410416163e11dbf62173393fbc0c6fefb2d855f1a03dec8e9f105bbad91b3437d8eb73fe2f44159597aa4053cf788d2f9d7012fb8d7c4ce3876f7d6cd5d0c31754f4cd96166708641958de54a6def5657b9f2e92 + dhN = 0xeca2e8c85d863dcdc26a429a71a9815ad052f6139669dd659f98ae159d313d13c6bf2838e10a69b6478b64a24bd054ba8248e8fa778703b418408249440b2c1edd28853e240d8a7e49540b76d120d3b1ad2878b1b99490eb4a2a5e84caa8a91cecbdb1aa7c816e8be343246f80c637abc653b893fd91686cf8d32d6cfe5f2a6f + dhG = 0x5 + dhx = random.randrange(0, 2 ** 256) + + dhX = pow(dhG, dhx, dhN) + dhK = pow(dhY, dhx, dhN) + + dhK = "%x" % dhK + if len(dhK) > 32: + dhK = dhK[:32] + + dhK = eval("0x" + dhK) + + challenge = "%s|%s|%s" % (username, server_key, password) + + # prefix is an 8 bytes of randomness + prefix_bytes = random.randrange(0, 2 ** 64) + prefix = struct.pack(">Q", prefix_bytes) + + length = 8 + 4 + len(challenge) # prefix, int, ... + pad = " " * ((8 - length % 8) % 8) + challenge_len = struct.pack(">I", len(challenge)) + + plain = prefix + challenge_len + challenge.encode('ascii') + pad.encode('ascii') + crypted = aochat_crypt(dhK, plain) + + if not crypted: + raise Exception("panic") + + return ("%0x" % dhX) + "-" + crypted + + +def aochat_crypt(key, data): + if len(data) % 8 != 0: + return None + + cycle = [0, 0] + result = [0, 0] + ret = "" + + key_arr = [socket.ntohl(int(s, 16)) for s in + struct.unpack("8s" * (len("%s" % key) // 8), ("%x" % key).encode('ascii'))] + data_arr = struct.unpack("I" * (len(data) // 4), data) + + i = 0 + while i < len(data_arr): + cycle[0] = data_arr[i] ^ result[0] + cycle[1] = data_arr[i + 1] ^ result[1] + result = aochat_tea_encrypt(cycle, key_arr) + + p = "%08x%08x" % (socket.htonl(result[0]) & 0xffffffff, socket.htonl(result[1]) & 0xffffffff) + + ret += p + + i += 2 + + return ret + + +def aochat_tea_encrypt(cycle, key): + a, b = cycle + total = 0 + delta = 0x9e3779b9 + i = 32 + + while i: + total = (total + delta) & 0xffffffff + a += (((b << 4 & 0xfffffff0) + key[0]) ^ (b + total) ^ ((b >> 5 & 0x7ffffff) + key[1])) & 0xffffffff + a &= 0xffffffff + b += (((a << 4 & 0xfffffff0) + key[2]) ^ (a + total) ^ ((a >> 5 & 0x7ffffff) + key[3])) & 0xffffffff + b &= 0xffffffff + i -= 1 + + return a, b diff --git a/core/aochat/delay_queue.py b/core/aochat/delay_queue.py new file mode 100644 index 0000000..16b8b6e --- /dev/null +++ b/core/aochat/delay_queue.py @@ -0,0 +1,34 @@ +import time + + +class DelayQueue: + def __init__(self, recovery: int, burst=0): + self.recovery = recovery + self.burst = burst + self.items = [] + self.next_packet = 0 + + def enqueue(self, item): + self.items.insert(0, item) + + def dequeue(self): + if self.items: + t = time.time() + time_with_burst = t - (self.burst * self.recovery) + if self.next_packet < time_with_burst: + self.next_packet = time_with_burst + + if t >= self.next_packet: + self.next_packet += self.recovery + return self.items.pop() + else: + return None + + def __len__(self): + return len(self.items) + + def clear(self): + self.items = [] + + def is_empty(self): + return len(self.items) == 0 diff --git a/core/aochat/extended_message.py b/core/aochat/extended_message.py new file mode 100644 index 0000000..4fb0a23 --- /dev/null +++ b/core/aochat/extended_message.py @@ -0,0 +1,20 @@ +class ExtendedMessage: + def __init__(self, category_id, instance_id, template, params): + self.category_id = category_id + self.instance_id = instance_id + self.template = template + self.params = params + + def get_message(self): + try: + return self.template % tuple(self.params) + except TypeError: + # sometimes params are sent even tho the template does not include param placeholders + # ex: ExtendedMessage: + # [20000, 134870373, + # 'Your ability to send private messages has been revoked temporarily with a GM gag.', + # [1000]] + return self.template + + def __str__(self): + return str([self.category_id, self.instance_id, self.template, self.params, self.get_message()]) diff --git a/core/aochat/mmdb_parser.py b/core/aochat/mmdb_parser.py new file mode 100644 index 0000000..4c11c11 --- /dev/null +++ b/core/aochat/mmdb_parser.py @@ -0,0 +1,137 @@ +import struct + +from core.logger import Logger + + +class MMDBParser: + def __init__(self, filename): + self.filename = filename + self.logger = Logger(__name__) + + def get_message_string(self, category_id, instance_id): + with open(self.filename, mode="rb") as file: + categories = self.get_categories(file) + + try: + category = next(categories) + while category["id"] != category_id: + category = next(categories) + next_category = next(categories) + except StopIteration: + return None + + instance = self.find_entry(file, instance_id, category["offset"], next_category["offset"]) + + if instance: + file.seek(instance["offset"]) + return self.read_string(file) + else: + return None + + def get_all_message_strings(self): + with open(self.filename, mode="rb") as file: + categories = iter(list(self.get_categories(file))) + next_category = next(categories) + + while True: + try: + category = next_category + next_category = next(categories) + except StopIteration: + break + + max_offset = next_category["offset"] + file.seek(category["offset"]) + + instances = [] + while file.tell() < max_offset: + entry = self.read_entry(file) + instances.append(entry) + + for instance in instances: + file.seek(instance["offset"]) + message_string = self.read_string(file) + print([category["id"], instance["id"], message_string]) + + def find_entry(self, file, entry_id, min_offset, max_offset): + file.seek(min_offset) + entry = self.read_entry(file) + while file.tell() <= max_offset: + if entry["id"] == entry_id: + return entry + entry = self.read_entry(file) + + return None + + def get_categories(self, file): + file.seek(4) + num_categories = self.read_int(file) + for i in range(0, num_categories): + yield self.read_entry(file) + + def read_entry(self, file): + return {"id": self.read_int(file), "offset": self.read_int(file)} + + def read_int(self, file): + return int.from_bytes(file.read(4), byteorder="little") + + def read_string(self, file): + message = bytearray() + char = file.read(1) + i = 0 + while char and char != b'\x00': + i += 1 + message.append(ord(char)) + char = file.read(1) + + return message.decode("utf-8") + + def read_base_85(self, num_str): + n = 0 + for i in range(0, 5): + n = n * 85 + num_str[i] - 33 + return n + + def parse_params(self, param_arr): + args = [] + while len(param_arr) > 0: + data_type = chr(param_arr[0]) + param_arr = param_arr[1:] + if data_type == "S": + size = param_arr[0] * 256 + param_arr[1] + args.append(param_arr[2:2 + size].decode("utf-8")) + param_arr = param_arr[2 + size:] + elif data_type == "s": + size = param_arr[0] - 1 # size is 1 less than indicated + args.append(param_arr[1:1 + size].decode("utf-8")) + param_arr = param_arr[1 + size:] + elif data_type == "I": + args.append(struct.unpack(">I", param_arr[:4])[0]) + param_arr = param_arr[4:] + elif data_type == "i" or data_type == "u": + args.append(self.read_base_85(param_arr[:5])) + param_arr = param_arr[5:] + elif data_type == "R": + category_id = self.read_base_85(param_arr[:5]) + instance_id = self.read_base_85(param_arr[5:10]) + message = self.get_message_string(category_id, instance_id) + if not message: + raise Exception(f"Could not find message string for category " + f"'{category_id}' and instance '{instance_id}'") + args.append(message) + param_arr = param_arr[10:] + elif data_type == "l": + category_id = 20000 + instance_id = struct.unpack(">I", param_arr[:4])[0] + message = self.get_message_string(category_id, instance_id) + if not message: + raise Exception(f"Could not find message string for category " + f"'{category_id}' and instance '{instance_id}'") + args.append(message) + param_arr = param_arr[4:] + elif data_type == "~": + break + else: + raise Exception("Unknown argument type '%s'" % data_type) + + return args diff --git a/core/aochat/packets.py b/core/aochat/packets.py new file mode 100644 index 0000000..9ac7052 --- /dev/null +++ b/core/aochat/packets.py @@ -0,0 +1,95 @@ +import struct + + +class UnknownArgumentType(Exception): + pass + + +class PacketMissingArgument(Exception): + pass + + +def decode_args(types, data): + args = [] + for argtype in types: + if argtype == "I": + elem, data = data[:4], data[4:] + result = struct.unpack(">I", elem)[0] + + elif argtype == "S": + length = struct.unpack(">H", data[:2])[0] + result = data[2:2 + length].decode("utf-8", "ignore") + data = data[2 + length:] + + elif argtype == "B": + length = struct.unpack(">H", data[:2])[0] + result = data[2:2 + length] + data = data[2 + length:] + + elif argtype == "G": + result, data = data[:5], data[5:] + # Convert result (5 bytes) to a long. Can't use + # struct.unpack(">Q", "\x00"*3 + result), since we + # can't rely on "long long" being available. + high, low = struct.unpack(">BI", result) + result = (high << 32) + low + + elif argtype == "i": + length = struct.unpack(">H", data[:2])[0] + result = struct.unpack(">%sI" % length, data[2:2 + 4 * length]) + data = data[2 + 4 * length:] + + elif argtype == "s": + length = struct.unpack(">H", data[:2])[0] + data = data[2:] + result = [] + while length: + slength = struct.unpack(">H", data[:2])[0] + result.append(data[2:2 + slength].decode("utf-8")) + data = data[2 + slength:] + length -= 1 + + else: + raise UnknownArgumentType(argtype) + + args.append(result) + + return args + + +def encode_args(types, args): + data = b"" + + for argtype in types: + if not args: + raise PacketMissingArgument + + it = args[0] + del args[0] + + if argtype == "I": + data += struct.pack(">I", it) + + elif argtype == "S": + encoded = it.encode("utf-8") + data += struct.pack(">H", len(encoded)) + data += encoded + + elif argtype == "G": + data += struct.pack(">BI", it >> 32, it & 0xffffffff) + + elif argtype == "s": + data += struct.pack(">H", len(it)) + for it_elem in it: + encoded = it_elem.encode("utf-8") + data += struct.pack(">H", len(encoded)) + data += encoded + + else: + raise UnknownArgumentType(argtype) + + return data + + +class Packet: + pass diff --git a/core/aochat/server_packets.py b/core/aochat/server_packets.py new file mode 100644 index 0000000..0dffc44 --- /dev/null +++ b/core/aochat/server_packets.py @@ -0,0 +1,456 @@ +from core.aochat.extended_message import ExtendedMessage +from core.aochat.packets import * + + +class ServerPacket(Packet): + def __init__(self, packet_id, types, args): + self.id = packet_id + self.types = types + self.args = args + + def to_bytes(self): + return encode_args(self.types, self.args) + + def __str__(self): + return "ServerPacket(%d): %s" % (self.id, self.args) + + @classmethod + def get_instance(cls, packet_id, data): + if packet_id == LoginSeed.id: + return LoginSeed.from_bytes(data) + elif packet_id == LoginOK.id: + return LoginOK.from_bytes(data) + elif packet_id == LoginError.id: + return LoginError.from_bytes(data) + elif packet_id == LoginCharacterList.id: + return LoginCharacterList.from_bytes(data) + elif packet_id == CharacterUnknown.id: + return CharacterUnknown.from_bytes(data) + elif packet_id == CharacterName.id: + return CharacterName.from_bytes(data) + elif packet_id == CharacterLookup.id: + return CharacterLookup.from_bytes(data) + elif packet_id == PrivateMessage.id: + return PrivateMessage.from_bytes(data) + elif packet_id == VicinityMessage.id: + return VicinityMessage.from_bytes(data) + elif packet_id == BroadcastMessage.id: + return BroadcastMessage.from_bytes(data) + elif packet_id == SimpleSystemMessage.id: + return SimpleSystemMessage.from_bytes(data) + elif packet_id == SystemMessage.id: + return SystemMessage.from_bytes(data) + elif packet_id == BuddyAdded.id: + return BuddyAdded.from_bytes(data) + elif packet_id == BuddyRemoved.id: + return BuddyRemoved.from_bytes(data) + elif packet_id == PrivateChannelInvited.id: + return PrivateChannelInvited.from_bytes(data) + elif packet_id == PrivateChannelKicked.id: + return PrivateChannelKicked.from_bytes(data) + elif packet_id == PrivateChannelLeft.id: + return PrivateChannelLeft.from_bytes(data) + elif packet_id == PrivateChannelClientJoined.id: + return PrivateChannelClientJoined.from_bytes(data) + elif packet_id == PrivateChannelClientLeft.id: + return PrivateChannelClientLeft.from_bytes(data) + elif packet_id == PrivateChannelMessage.id: + return PrivateChannelMessage.from_bytes(data) + elif packet_id == PrivateChannelInviteRefused.id: + return PrivateChannelInviteRefused.from_bytes(data) + elif packet_id == PublicChannelJoined.id: + return PublicChannelJoined.from_bytes(data) + elif packet_id == PublicChannelLeft.id: + return PublicChannelLeft.from_bytes(data) + elif packet_id == PublicChannelMessage.id: + return PublicChannelMessage.from_bytes(data) + elif packet_id == Pong.id: + return Pong.from_bytes(data) + else: + return None + + +class LoginSeed(ServerPacket): + id = 0 + types = "S" + + def __init__(self, seed): + self.seed = seed + super().__init__(self.id, self.types, [self.seed]) + + @classmethod + def from_bytes(cls, data): + args = decode_args(cls.types, data) + return cls(*args) + + +class LoginOK(ServerPacket): + id = 5 + types = "" + + def __init__(self): + super().__init__(self.id, self.types, []) + + @classmethod + def from_bytes(cls, data): + return cls() + + +class LoginError(ServerPacket): + id = 6 + types = "S" + + def __init__(self, message): + self.message = message + super().__init__(self.id, self.types, [self.message]) + + @classmethod + def from_bytes(cls, data): + args = decode_args(cls.types, data) + return cls(*args) + + +class LoginCharacterList(ServerPacket): + id = 7 + types = "isii" + + def __init__(self, char_ids, names, levels, online_statuses): + self.char_ids = char_ids + self.names = names + self.levels = levels + self.online_statuses = online_statuses + super().__init__(self.id, self.types, [self.char_ids, self.names, self.levels, self.online_statuses]) + + @classmethod + def from_bytes(cls, data): + args = decode_args(cls.types, data) + return cls(*args) + + +class CharacterUnknown(ServerPacket): + id = 10 + types = "I" + + def __init__(self, char_id): + self.char_id = char_id + super().__init__(self.id, self.types, [self.char_id]) + + @classmethod + def from_bytes(cls, data): + args = decode_args(cls.types, data) + return cls(*args) + + +class CharacterName(ServerPacket): + id = 20 + types = "IS" + + def __init__(self, char_id, name): + self.char_id = char_id + self.name = name + super().__init__(self.id, self.types, [self.char_id, self.name]) + + @classmethod + def from_bytes(cls, data): + args = decode_args(cls.types, data) + return cls(*args) + + +class CharacterLookup(ServerPacket): + id = 21 + types = "IS" + + def __init__(self, char_id, name): + self.char_id = char_id + self.name = name + super().__init__(self.id, self.types, [self.char_id, self.name]) + + @classmethod + def from_bytes(cls, data): + args = decode_args(cls.types, data) + return cls(*args) + + +class PrivateMessage(ServerPacket): + id = 30 + types = "ISS" + + def __init__(self, char_id, message, blob): + self.char_id = char_id + self.message = message + self.blob = blob + super().__init__(self.id, self.types, [self.char_id, self.message, self.blob]) + + @classmethod + def from_bytes(cls, data): + args = decode_args(cls.types, data) + return cls(*args) + + +class VicinityMessage(ServerPacket): + id = 34 + types = "ISS" + + def __init__(self, char_id, message, blob): + self.char_id = char_id + self.message = message + self.blob = blob + super().__init__(self.id, self.types, [self.char_id, self.message, self.blob]) + + @classmethod + def from_bytes(cls, data): + args = decode_args(cls.types, data) + return cls(*args) + + +class BroadcastMessage(ServerPacket): + id = 35 + types = "SSS" + + def __init__(self, text, message, blob): + self.text = text + self.message = message + self.blob = blob + super().__init__(self.id, self.types, [self.text, self.message, self.blob]) + + @classmethod + def from_bytes(cls, data): + args = decode_args(cls.types, data) + return cls(*args) + + +class SimpleSystemMessage(ServerPacket): + id = 36 + types = "S" + + def __init__(self, message): + self.message = message + super().__init__(self.id, self.types, [self.message]) + + @classmethod + def from_bytes(cls, data): + args = decode_args(cls.types, data) + return cls(*args) + + +class SystemMessage(ServerPacket): + id = 37 + types = "IIIB" + + def __init__(self, client_id, window_id, message_id, message_args): + self.client_id = client_id + self.window_id = window_id + self.message_id = message_id + self.message_args = message_args + # noinspection PyTypeChecker + self.extended_message: ExtendedMessage = None + super().__init__(self.id, self.types, [self.client_id, self.window_id, self.message_id, self.message_args]) + + @classmethod + def from_bytes(cls, data): + args = decode_args(cls.types, data) + return cls(*args) + + def __str__(self): + return super().__str__() + ", ExtendedMessage: %s" % self.extended_message + + +class BuddyAdded(ServerPacket): + id = 40 + types = "IIS" + + def __init__(self, char_id, online, status): + self.char_id = char_id + self.online = online + self.status = status + super().__init__(self.id, self.types, [self.char_id, self.online, self.status]) + + @classmethod + def from_bytes(cls, data): + args = decode_args(cls.types, data) + return cls(*args) + + +class BuddyRemoved(ServerPacket): + id = 41 + types = "I" + + def __init__(self, char_id): + self.char_id = char_id + super().__init__(self.id, self.types, [self.char_id]) + + @classmethod + def from_bytes(cls, data): + args = decode_args(cls.types, data) + return cls(*args) + + +class PrivateChannelInvited(ServerPacket): + id = 50 + types = "I" + + def __init__(self, private_channel_id): + self.private_channel_id = private_channel_id + super().__init__(self.id, self.types, [self.private_channel_id]) + + @classmethod + def from_bytes(cls, data): + args = decode_args(cls.types, data) + return cls(*args) + + +class PrivateChannelKicked(ServerPacket): + id = 51 + types = "I" + + def __init__(self, private_channel_id): + self.private_channel_id = private_channel_id + super().__init__(self.id, self.types, [self.private_channel_id]) + + @classmethod + def from_bytes(cls, data): + args = decode_args(cls.types, data) + return cls(*args) + + +class PrivateChannelLeft(ServerPacket): + id = 53 + types = "I" + + def __init__(self, private_channel_id): + self.private_channel_id = private_channel_id + super().__init__(self.id, self.types, [self.private_channel_id]) + + @classmethod + def from_bytes(cls, data): + args = decode_args(cls.types, data) + return cls(*args) + + +class PrivateChannelClientJoined(ServerPacket): + id = 55 + types = "II" + + def __init__(self, private_channel_id, char_id): + self.private_channel_id = private_channel_id + self.char_id = char_id + super().__init__(self.id, self.types, [self.private_channel_id, self.char_id]) + + @classmethod + def from_bytes(cls, data): + args = decode_args(cls.types, data) + return cls(*args) + + +class PrivateChannelClientLeft(ServerPacket): + id = 56 + types = "II" + + def __init__(self, private_channel_id, char_id): + self.private_channel_id = private_channel_id + self.char_id = char_id + super().__init__(self.id, self.types, [self.private_channel_id, self.char_id]) + + @classmethod + def from_bytes(cls, data): + args = decode_args(cls.types, data) + return cls(*args) + + +class PrivateChannelMessage(ServerPacket): + id = 57 + types = "IISS" + + def __init__(self, private_channel_id, char_id, message, blob): + self.private_channel_id = private_channel_id + self.char_id = char_id + self.message = message + self.blob = blob + super().__init__(self.id, self.types, [self.private_channel_id, self.char_id, self.message, self.blob]) + + @classmethod + def from_bytes(cls, data): + args = decode_args(cls.types, data) + return cls(*args) + + +class PrivateChannelInviteRefused(ServerPacket): + id = 58 + types = "II" + + def __init__(self, private_channel_id, char_id): + self.private_channel_id = private_channel_id + self.char_id = char_id + super().__init__(self.id, self.types, [self.private_channel_id, self.char_id]) + + @classmethod + def from_bytes(cls, data): + args = decode_args(cls.types, data) + return cls(*args) + + +class PublicChannelJoined(ServerPacket): + id = 60 + types = "GSIS" + + def __init__(self, channel_id, name, unknown, flags): + self.channel_id = channel_id + self.name = name + self.unknown = unknown + self.flags = flags + super().__init__(self.id, self.types, [self.channel_id, self.name, self.unknown, self.flags]) + + @classmethod + def from_bytes(cls, data): + args = decode_args(cls.types, data) + return cls(*args) + + +class PublicChannelLeft(ServerPacket): + id = 61 + types = "G" + + def __init__(self, channel_id): + self.channel_id = channel_id + super().__init__(self.id, self.types, [self.channel_id]) + + @classmethod + def from_bytes(cls, data): + args = decode_args(cls.types, data) + return cls(*args) + + +class PublicChannelMessage(ServerPacket): + id = 65 + types = "GISS" + + def __init__(self, channel_id, char_id, message, blob): + self.channel_id = channel_id + self.char_id = char_id + self.message = message + self.blob = blob + # noinspection PyTypeChecker + self.extended_message: ExtendedMessage = None + super().__init__(self.id, self.types, [self.channel_id, self.char_id, self.message, self.blob]) + + @classmethod + def from_bytes(cls, data): + args = decode_args(cls.types, data) + return cls(*args) + + def __str__(self): + return super().__str__() + ", ExtendedMessage: %s" % self.extended_message + + +class Pong(ServerPacket): + id = 100 + types = "S" + + def __init__(self, blob): + self.blob = blob + super().__init__(self.id, self.types, [self.blob]) + + @classmethod + def from_bytes(cls, data): + args = decode_args(cls.types, data) + return cls(*args) diff --git a/core/bot_status.py b/core/bot_status.py new file mode 100644 index 0000000..dae9697 --- /dev/null +++ b/core/bot_status.py @@ -0,0 +1,8 @@ +from enum import Enum + + +class BotStatus(Enum): + SHUTDOWN = 0 + RUN = 1 + RESTART = 2 + ERROR = 4 diff --git a/core/buddy_service.py b/core/buddy_service.py new file mode 100644 index 0000000..2c3f3eb --- /dev/null +++ b/core/buddy_service.py @@ -0,0 +1,149 @@ +from core.aochat import client_packets +from core.aochat import server_packets +from core.conn import Conn +from core.decorators import instance +from core.logger import Logger +from core.lookup.character_service import CharacterService + + +@instance() +class BuddyService: + BUDDY_LOGON_EVENT = "buddy_logon" + BUDDY_LOGOFF_EVENT = "buddy_logoff" + + def __init__(self): + self.buddy_list = {} + self.buddy_list_size = 0 + self.logger = Logger(__name__) + + def inject(self, registry): + self.character_service: CharacterService = registry.get_instance("character_service") + self.bot = registry.get_instance("bot") + self.event_service = registry.get_instance("event_service") + + def pre_start(self): + self.bot.register_packet_handler(server_packets.BuddyAdded.id, self.handle_add) + self.bot.register_packet_handler(server_packets.BuddyRemoved.id, self.handle_remove) + self.bot.register_packet_handler(server_packets.LoginOK.id, self.handle_login_ok) + self.event_service.register_event_type(self.BUDDY_LOGON_EVENT) + self.event_service.register_event_type(self.BUDDY_LOGOFF_EVENT) + + def handle_add(self, conn: Conn, packet): + buddy = self.buddy_list[conn.id].get(packet.char_id, {"types": [], "conn_id": conn.id}) + buddy["online"] = packet.online + self.buddy_list[conn.id][packet.char_id] = buddy + + # verify that buddy does not exist on any other conn + for conn_id, conn_buddy_list in self.buddy_list.items(): + if conn.id != conn_id: + buddy = conn_buddy_list.get(packet.char_id, None) + if buddy: + if buddy["online"] is None: + # remove from other conn list + del conn_buddy_list[packet.char_id] + else: + # remove from this conn + self.logger.warning(f"Removing char '{packet.char_id}' from conn '{conn.id}' " + f"since it already exists on another conn") + conn.send_packet(client_packets.BuddyRemove(packet.char_id)) + + if packet.online == 1: + self.event_service.fire_event(self.BUDDY_LOGON_EVENT, packet) + else: + self.event_service.fire_event(self.BUDDY_LOGOFF_EVENT, packet) + + def handle_remove(self, conn: Conn, packet): + conn_buddy_list = self.buddy_list[conn.id] + if packet.char_id in conn_buddy_list: + if len(conn_buddy_list[packet.char_id]["types"]) > 0: + self.logger.warning(f"Removing buddy {packet.char_id} that still has " + f"types {conn_buddy_list[packet.char_id]['types']}") + + del conn_buddy_list[packet.char_id] + + def handle_login_ok(self, conn: Conn, _): + self.buddy_list_size += 1000 + self.buddy_list[conn.id] = {} + self.buddy_list[conn.id][conn.char_id] = {"online": True, "types": [], "conn_id": conn.id} + + def add_buddy(self, char_id, _type): + if not char_id: + return False + + # check if we are trying to add a conn as a buddy + if self.is_conn_char_id(char_id): + return False + + buddy = self.get_buddy(char_id) + if buddy: + buddy["types"].append(_type) + else: + conn = self.get_conn_for_new_buddy() + if conn.char_id != char_id: + conn.send_packet(client_packets.BuddyAdd(char_id, "\1")) + self.buddy_list[conn.id][char_id] = {"online": None, "types": [_type], "conn_id": conn.id} + + return True + + def is_conn_char_id(self, char_id): + for _id, conn in self.bot.conns.items(): + if conn.char_id == char_id: + return True + + return False + + def remove_buddy(self, char_id, _type, force_remove=False): + if char_id: + buddy = self.get_buddy(char_id) + if not buddy: + return False + + if _type in buddy["types"]: + buddy["types"].remove(_type) + + if len(buddy["types"]) == 0 or force_remove: + if not self.is_conn_char_id(char_id): + conn = self.bot.conns[buddy["conn_id"]] + conn.send_packet(client_packets.BuddyRemove(char_id)) + + return True + else: + return False + + def get_buddy(self, char_id): + for conn_id, conn_buddy_list in self.buddy_list.items(): + if char_id in conn_buddy_list: + return conn_buddy_list[char_id] + return None + + def is_online(self, char_id): + buddy = self.get_buddy(char_id) + if buddy is None: + return None + else: + return buddy.get("online", None) + + def get_all_buddies(self): + result = {} + for conn_id, conn_buddy_list in self.buddy_list.items(): + for char_id, buddy in conn_buddy_list.items(): + result[char_id] = buddy + + return result + + def get_buddy_list_size(self): + count = 0 + for conn_id, conn_buddy_list in self.buddy_list.items(): + count += len(conn_buddy_list) + + return count + + def get_conn_for_new_buddy(self): + buddy_list_size = None + _id = None + for conn_id, conn_buddy_list in self.buddy_list.items(): + if buddy_list_size is None or len(conn_buddy_list) < buddy_list_size: + buddy_list_size = len(conn_buddy_list) + _id = conn_id + + return self.bot.conns.get(_id, None) diff --git a/core/cache_service.py b/core/cache_service.py new file mode 100644 index 0000000..828bd4b --- /dev/null +++ b/core/cache_service.py @@ -0,0 +1,34 @@ +import os +from pathlib import Path + +from core.decorators import instance +from core.dict_object import DictObject +from core.logger import Logger + + +@instance() +class CacheService: + CACHE_DIR = os.sep + os.path.join("data", "cache") + + def __init__(self): + Path(os.getcwd() + self.CACHE_DIR).mkdir(parents=True, exist_ok=True) + self.logger = Logger(__name__) + + def store(self, group, filename, contents): + base_path = os.getcwd() + self.CACHE_DIR + os.sep + group + Path(base_path).mkdir(exist_ok=True) + + with open(base_path + os.sep + filename, mode="w", encoding="UTF-8") as f: + f.write(contents) + + def retrieve(self, group, filename): + base_path = os.getcwd() + self.CACHE_DIR + os.sep + group + + full_path = base_path + os.sep + filename + + try: + with open(full_path, mode="r", encoding="UTF-8") as f: + last_modified = int(os.path.getmtime(full_path)) + return DictObject({"data": f.read(), "last_modified": last_modified}) + except FileNotFoundError: + return None diff --git a/core/chat_blob.py b/core/chat_blob.py new file mode 100644 index 0000000..bc74683 --- /dev/null +++ b/core/chat_blob.py @@ -0,0 +1,19 @@ +class ChatBlob: + def __init__(self, title, msg): + self.title = title + self.msg = msg.strip("\n") + self.page_prefix = "" + self.page_postfix = "" + + def __str__(self): + return f"ChatBlob('{self.title}', '{self.msg}')" + + def __repr__(self): + return self.__str__() + + def __eq__(self, obj): + return isinstance(obj, ChatBlob) and \ + obj.title == self.title and \ + obj.msg == self.msg and \ + obj.page_prefix == self.page_prefix and \ + obj.page_postfix == self.page_postfix diff --git a/core/command_alias_service.py b/core/command_alias_service.py new file mode 100644 index 0000000..35aef94 --- /dev/null +++ b/core/command_alias_service.py @@ -0,0 +1,48 @@ +from core.decorators import instance +from core.logger import Logger + + +@instance() +class CommandAliasService: + def __init__(self): + self.logger = Logger(__name__) + + def inject(self, registry): + self.db = registry.get_instance("db") + + def check_for_alias(self, command_str): + row = self.get_alias(command_str) + if row and row.enabled: + return row.command + else: + return None + + def get_alias(self, alias): + return self.db.query_single("SELECT alias, command, enabled FROM command_alias WHERE alias = ?", [alias]) + + def add_alias(self, alias, command, force_enable=False): + """Call during start""" + row = self.get_alias(alias) + if row: + if row.enabled: + return False + elif force_enable: + self.db.exec("UPDATE command_alias SET command = ?, enabled = 1 WHERE alias = ?", [command, alias]) + return True + else: + self.db.exec("INSERT INTO command_alias (alias, command, enabled) VALUES (?, ?, 1)", [alias, command]) + return True + + def remove_alias(self, alias): + row = self.get_alias(alias) + if row: + if row.enabled: + self.db.exec("UPDATE command_alias SET enabled = 0 WHERE alias = ?", [alias]) + return True + else: + return False + else: + return False + + def get_enabled_aliases(self): + return self.db.query("SELECT alias, command FROM command_alias WHERE enabled = 1 ORDER BY alias") diff --git a/core/command_param_types.py b/core/command_param_types.py new file mode 100644 index 0000000..728e2e8 --- /dev/null +++ b/core/command_param_types.py @@ -0,0 +1,362 @@ +import re + +from core.dict_object import DictObject +from core.registry import Registry +from core.sender_obj import SenderObj + + +class CommandParam: + def get_regex(self): + pass + + def get_name(self): + pass + + +class Const(CommandParam): + def __init__(self, name, is_optional=False): + self.name = name + self.is_optional = is_optional + if " " in name: + raise Exception("One or more spaces found in command param '%s'." % name) + + def get_regex(self): + regex = r"(\s+" + self.name + ")" + return regex + ("?" if self.is_optional else "") + + def get_name(self): + if self.is_optional: + return "[" + self.name + "]" + else: + return self.name + + def process_matches(self, params): + val = params.pop(0) + if val is None: + return None + else: + return val.lstrip() + + +class Int(CommandParam): + def __init__(self, name, is_optional=False): + self.name = name + self.is_optional = is_optional + if " " in name: + raise Exception("One or more spaces found in command param '%s'." % name) + + def get_regex(self): + regex = r"(\s+[0-9]+)" + return regex + ("?" if self.is_optional else "") + + def get_name(self): + if self.is_optional: + return "[%s]" % self.name + else: + return "%s" % self.name + + def process_matches(self, params): + val = params.pop(0) + if val is None: + return None + else: + return int(val.lstrip()) + + +class SignedInt(Int): + def __init__(self, name, is_optional=False): + super().__init__(name, is_optional) + + def get_regex(self): + regex = r"(\s+\-?[0-9]+)" + return regex + ("?" if self.is_optional else "") + + +class Decimal(CommandParam): + def __init__(self, name, is_optional=False): + self.name = name + self.is_optional = is_optional + if " " in name: + raise Exception("One or more spaces found in command param '%s'." % name) + + def get_regex(self): + regex = r"(\s+[0-9]*\.?[0-9]+)" + return regex + ("?" if self.is_optional else "") + + def get_name(self): + if self.is_optional: + return "[%s]" % self.name + else: + return "%s" % self.name + + def process_matches(self, params): + val = params.pop(0) + if val is None: + return None + else: + return float(val.lstrip()) + + +class Any(CommandParam): + def __init__(self, name, is_optional=False, allowed_chars="."): + self.name = name + self.is_optional = is_optional + self.allowed_chars = allowed_chars + if " " in name: + raise Exception("One or more spaces found in command param '%s'." % name) + + def get_regex(self): + regex = r"(\s+%s+?)" % self.allowed_chars + return regex + ("?" if self.is_optional else "") + + def get_name(self): + if self.is_optional: + return "[%s]" % self.name + else: + return "%s" % self.name + + def process_matches(self, params): + val = params.pop(0) + if val is None: + return None + else: + return val.lstrip() + + +class Regex(CommandParam): + def __init__(self, name, regex, is_optional=False, num_groups=1): + self.name = name + self.regex = regex + self.is_optional = is_optional + self.num_groups = num_groups + if " " in name: + raise Exception("One or more spaces found in command param '%s'." % name) + + def get_regex(self): + return self.regex + + def get_name(self): + if self.is_optional: + return "[%s]" % self.name + else: + return "%s" % self.name + + def process_matches(self, params): + p = [] + for i in range(self.num_groups): + p.append(params.pop(0)) + return p + + +class Options(CommandParam): + def __init__(self, options, is_optional=False): + self.options = options + self.is_optional = is_optional + for name in options: + if " " in name: + raise Exception("One or more spaces found in command param option '%s'." % name) + + def get_regex(self): + regex = r"(" + "|".join(map(lambda x: r"\s+" + re.escape(x), self.options)) + ")" + return regex + ("?" if self.is_optional else "") + + def get_name(self): + if self.is_optional: + return "[" + "|".join(self.options) + "]" + else: + return "|".join(self.options) + + def process_matches(self, params): + val = params.pop(0) + if val is None: + return None + else: + return val.lstrip() + + +class Time(CommandParam): + def __init__(self, name, is_optional=False): + self.name = name + self.is_optional = is_optional + if " " in name: + raise Exception("One or more spaces found in command param '%s'." % name) + + def get_regex(self): + regex = r"(\s+(([0-9]+)([a-z]+))+)" + return regex + ("?" if self.is_optional else "") + + def get_name(self): + if self.is_optional: + return "[%s]" % self.name + else: + return "%s" % self.name + + def process_matches(self, params): + budatime_str = params.pop(0) + params.pop(0) + params.pop(0) + params.pop(0) + + if budatime_str is None: + return None + else: + util = Registry.get_instance("util") + return util.parse_time(budatime_str.lstrip()) + + +class Item(CommandParam): + def __init__(self, name, is_optional=False): + self.name = name + self.is_optional = is_optional + if " " in name: + raise Exception("One or more spaces found in command param '%s'." % name) + + def get_regex(self): + regex = r"""(\s*(.+?)<\/a>)""" + return regex + ("?" if self.is_optional else "") + + def get_name(self): + if self.is_optional: + return "[%s]" % self.name + else: + return "%s" % self.name + + def process_matches(self, params): + if params.pop(0): + return DictObject({ + "low_id": int(params.pop(0)), + "high_id": int(params.pop(0)), + "ql": int(params.pop(0)), + "name": params.pop(0) + }) + else: + params.pop(0) + params.pop(0) + params.pop(0) + params.pop(0) + return None + + +class Character(Any): + def __init__(self, name, is_optional=False): + super().__init__(name, is_optional) + + def get_regex(self): + regex = r"(\s+[\d+a-z-]+)" + return regex + ("?" if self.is_optional else "") + + def process_matches(self, params): + val = super().process_matches(params) + + if val is None: + return None + else: + character_service = Registry.get_instance("character_service") + access_service = Registry.get_instance("access_service") + char_id = character_service.resolve_char_to_id(val) + if char_id is None: + return SenderObj(char_id, val.capitalize(), None) + else: + return SenderObj(char_id, val.capitalize(), access_service.get_access_level(char_id)) + + +# Note: NamedParameters should always go at the end of the command parameter list +# Note: NamedParameters need to be validated manually to ensure they have valid values +class NamedParameters(CommandParam): + def __init__(self, names): + self.names = names + for name in names: + if " " in name: + raise Exception("One or more spaces found in command named param option '%s'." % name) + + def get_regex(self): + regex = "((" + "|".join(map(lambda x: r"\s+--%s=.+?" % x, self.names)) + ")*)" + return regex + + def get_name(self): + return " ".join(map(lambda x: f"[--{x}={x}]", self.names)) + + def process_matches(self, params): + v = params.pop(0) + params.pop(0) + + regex = "^(" + "|".join(map(lambda x: r"(\s+--(%s)=(.+?))" % x, self.names)) + ")*$" + p = re.compile(regex) + results = p.findall(v)[0][1:] + values = DictObject() + for name in self.names: + values[name] = results[2] + results = results[3:] + return values + + +# Note: NamedFlagParameters should always go at the end of the command parameter list +class NamedFlagParameters(CommandParam): + def __init__(self, names): + super().__init__() + self.names = names + for name in names: + if " " in name: + raise Exception("One or more spaces found in command named param option '%s'." % name) + + def get_regex(self): + regex = "((" + "|".join(map(lambda x: r"\s+--%s" % x, self.names)) + ")*)" + return regex + + def get_name(self): + return " ".join(map(lambda x: "[--%s]" % x, self.names)) + + def process_matches(self, params): + v = params.pop(0) + params.pop(0) + + regex = "^(" + "|".join(map(lambda x: r"(\s+--(%s))" % x, self.names)) + ")*$" + p = re.compile(regex) + results = p.findall(v)[0][1:] + values = DictObject() + for name in self.names: + values[name] = True if results[1] else False + results = results[2:] + return values + + +# Note: cannot be used with Any due to eagerness! +class Multiple(CommandParam): + def __init__(self, inner_type, min_num=1, max_num=None): + if type(inner_type) is Any: + # Any type ignores is_optional and allowed_chars params, and can only capture + # single words (no spaces) when used with Multiple + def get_regex(): + regex = r"(\s+[^ ]+)" + return regex + + inner_type.get_regex = get_regex + + self.inner_type = inner_type + self.min = min_num or "" + self.max = max_num or "" + + def get_regex(self): + regex = "(" + self.inner_type.get_regex() + "{%s,%s})" % (self.min, self.max) + return regex + + def get_name(self): + return self.inner_type.get_name() + "*" + + def process_matches(self, params): + v = params.pop(0) + + # remove unused params + self.inner_type.process_matches(params) + + results = [] + p = re.compile(self.inner_type.get_regex(), re.IGNORECASE | re.DOTALL) + + matches = p.search(v) + while matches: + v = v[matches.end():] + a = self.inner_type.process_matches(list(matches.groups())) + results.append(a) + matches = p.search(v) + + return results diff --git a/core/command_request.py b/core/command_request.py new file mode 100644 index 0000000..f4e5ca0 --- /dev/null +++ b/core/command_request.py @@ -0,0 +1,6 @@ +class CommandRequest: + def __init__(self, conn, channel, sender, reply): + self.conn = conn + self.channel = channel + self.sender = sender + self.reply = reply diff --git a/core/command_service.py b/core/command_service.py new file mode 100644 index 0000000..134c005 --- /dev/null +++ b/core/command_service.py @@ -0,0 +1,481 @@ +import collections +import inspect +import re +from threading import Thread + +from core.aochat import server_packets +from core.chat_blob import ChatBlob +from core.command_request import CommandRequest +from core.conn import Conn +from core.decorators import instance +from core.dict_object import DictObject +from core.functions import flatmap, get_attrs +from core.logger import Logger +from core.lookup.character_service import CharacterService +from core.message_hub_service import MessageHubService +from core.registry import Registry +from core.sender_obj import SenderObj +from core.setting_service import SettingService +from modules.core.accounting.services.access_service import AccessService + + +# noinspection SqlResolve,PyAttributeOutsideInit,PyUnresolvedReferences,PyTypeChecker +@instance() +class CommandService: + PRIVATE_CHANNEL = "priv" + ORG_CHANNEL = "org" + PRIVATE_MESSAGE_CHANNEL = "msg" + + def __init__(self): + self.ignore = [] + self.handlers = collections.defaultdict(list) + self.logger = Logger(__name__) + self.channels = {} + self.pre_processors = [] + self.ignore_regexes = [ + re.compile(r" is AFK \(Away from keyboard\) since ", re.IGNORECASE), + re.compile(r"I am away from my keyboard right now", re.IGNORECASE), + re.compile(r"Unknown command or access denied!", re.IGNORECASE), + re.compile(r"I am responding", re.IGNORECASE), + re.compile(r"I only listen", re.IGNORECASE), + re.compile(r"Error!", re.IGNORECASE), + re.compile(r"Unknown command input", re.IGNORECASE), + re.compile(r"You have been auto invited", re.IGNORECASE), + re.compile(r"^ str|ChatBlob|None + command: str + params: [CommandParam...] + access_level: str + description: str + module: str + help_text: str + sub_command: str + extended_description: str + check_access: (char, access_level_label) -> bool + """ + + if len(inspect.signature(handler).parameters) != len(params) + 1: + raise Exception( + "Incorrect number of arguments for handler '%s.%s()'" % (handler.__module__, handler.__name__)) + + command = command.lower() + if sub_command: + sub_command = sub_command.lower() + else: + sub_command = "" + access_level = access_level.lower() + module = module.lower() + command_key = self.get_command_key(command, sub_command) + + if help_text is None: + help_text = self.generate_help(command, description, params, extended_description) + + if check_access is None: + check_access = self.access_service.check_access + + if not self.access_service.get_access_level_by_label(access_level): + self.logger.error("Could not add command '%s': could not find access level '%s'" % (command, access_level)) + return + + for channel, label in self.channels.items(): + row = self.db.query_single("SELECT access_level, module, enabled, verified " + "FROM command_config " + "WHERE command = ? AND sub_command = ? AND channel = ?", + [command, sub_command, channel]) + + if row is None: + # add new command + self.db.exec( + "INSERT INTO command_config " + "(command, sub_command, access_level, channel, module, enabled, verified) " + "VALUES (?, ?, ?, ?, ?, 1, 1)", + [command, sub_command, access_level, channel, module]) + elif row.verified: + if row.module != module: + self.logger.warning("module different for different forms of command '%s' and sub_command '%s'" % ( + command, sub_command)) + else: + # mark command as verified + self.db.exec("UPDATE command_config SET verified = 1, module = ? " + "WHERE command = ? AND sub_command = ? AND channel = ?", + [module, command, sub_command, channel]) + + # save reference to command handler + r = re.compile(self.get_regex_from_params(params), re.IGNORECASE | re.DOTALL) + self.handlers[command_key].append( + {"regex": r, "callback": handler, "help": help_text, "description": description, "params": params, + "check_access": check_access}) + + def register_command_pre_processor(self, pre_processor): + """ + Call during start + + Args: + pre_processor: (context) -> bool + """ + + self.pre_processors.append(pre_processor) + + def register_command_channel(self, label, value): + """ + Call during pre_start + + Args: + label: str + value: str + """ + + if value in self.channels: + self.logger.error("Could not register command channel '%s': command channel already registered" % value) + return + + self.logger.debug("Registering command channel '%s'" % value) + self.channels[value] = label + + def is_command_channel(self, channel): + return channel in self.channels + + def process_command(self, message: str, channel: str, char_id, reply, conn, followup=True): + try: + context = DictObject({"message": message, "char_id": char_id, "channel": channel, "reply": reply}) + for pre_processor in self.pre_processors: + if pre_processor(context) is False: + return + + for regex in self.ignore_regexes: + if regex.search(message): + self.logger.info(f"Ignoring message from {char_id}: {message}") + return + if not followup: + if channel == "msg": + if message.lower().startswith("mail"): + self.relay_hub_service.send_message("tell_logger", char_id, "mail |usage hidden|", + "mail |usage hidden|") + else: + self.relay_hub_service.send_message("tell_logger", char_id, message, message) + else: + if message.lower().startswith("mail"): + self.relay_hub_service.send_message("dc_relay_log", char_id, "mail |usage hidden|", + "mail |usage hidden|") + else: + self.relay_hub_service.send_message("dc_relay_log", char_id, message, message) + # message = html.unescape(message) + command_str, command_args = self.get_command_parts(message) + + # check for command alias + command_alias = self.command_alias_service.check_for_alias(command_str) + + alias_depth_count = 0 + while command_alias: + alias_depth_count += 1 + command_str, command_args = self.get_command_parts(command_alias + command_args) + command_alias = self.command_alias_service.check_for_alias(command_str) + + if alias_depth_count > 20: + raise Exception("Command alias infinite recursion detected for command '%s'" % message) + + cmd_configs = self.get_command_configs(command_str, channel) + access_level = self.access_service.get_access_level(char_id) + sender = SenderObj(char_id, self.character_service.resolve_char_to_name(char_id, "Unknown(%d)" % char_id), + access_level) + if cmd_configs: + # given a list of cmd_configs that are enabled, see if one has regex that matches incoming command_str + cmd_config, matches, handler = self.get_matches(cmd_configs, command_args) + if matches: + if handler["check_access"](char_id, cmd_config.access_level): + try: + response = handler["callback"](CommandRequest(conn, channel, sender, reply), + *self.process_matches(matches, handler["params"])) + if response is not None: + reply(response) + except Exception as e: + self.logger.error("error processing command: %s" % message, e) + self.relay_hub_service.send_message("access_denied_logger", sender, + f"[ERROR] {sender.name}: {message}", + f"[ERROR] {sender.name}: {message}") + self.bot.send_mass_message(char_id, self.getresp("global", "error_processing")) + + # record command usage + self.usage_service.add_usage(command_str, handler["callback"].__qualname__, char_id, channel) + else: + self.access_denied_response(message, sender, cmd_config, reply) + else: + # handlers were found, but no handler regex matched + help_text = self.get_help_text(char_id, command_str, channel) + if help_text: + reply(self.format_help_text(command_str, help_text)) + else: + # the command is known, but no help is returned, therefore user does not have access to command + if access_level['label'] != "all": + self.relay_hub_service.send_message("access_denied_logger", sender, + f"[DENIED] {sender.name}: {message}", + f"[DENIED] {sender.name}: {message}") + self.bot.send_mass_message(char_id, self.getresp("global", "access_denied")) + else: + self.handle_unknown_command(command_str, command_args, channel, sender, reply) + except Exception as e: + self.logger.error("error processing command: %s" % message, e) + sender = SenderObj(char_id, self.character_service.resolve_char_to_name(char_id, "Unknown(%d)" % char_id), + 0) + self.relay_hub_service.send_message("access_denied_logger", sender, f"[ERROR] {sender.name}: {message}", + f"[ERROR] {sender.name}: {message}") + self.bot.send_mass_message(char_id, self.getresp("global", "error_processing")) + + def handle_unknown_command(self, command_str, command_args, channel, sender, reply): + self.relay_hub_service.send_message("access_denied_logger", sender, + f"[UNKNOWN] {sender.name}: {command_str} {command_args}", + f"[UNKNOWN] {sender.name}: {command_str} {command_args}") + if sender.access_level["label"] != "all": + self.bot.send_mass_message(sender.char_id, self.getresp("global", "unknown_command", {"cmd": command_str})) + + def access_denied_response(self, message, sender, cmd_config, reply): + self.relay_hub_service.send_message("access_denied_logger", sender, f"[DENIED] {sender.name}: {message}", + f"[DENIED] {sender.name}: {message}") + if sender.access_level["label"] != "all": + self.bot.send_mass_message(sender.char_id, self.getresp("global", "access_denied")) + + def get_command_parts(self, message): + parts = message.split(" ", 1) + if len(parts) == 2: + return parts[0].lower(), " " + parts[1] + else: + return parts[0].lower(), "" + + def get_command_configs(self, command, channel=None, enabled=1, sub_command=None): + sql = "SELECT command, sub_command, access_level, channel, enabled FROM command_config WHERE command = ?" + params = [command] + if channel: + sql += " AND channel = ?" + params.append(channel) + if enabled: + sql += " AND enabled = ?" + params.append(enabled) + if sub_command: + sql += " AND sub_command = ?" + params.append(sub_command) + + sql += " ORDER BY sub_command, channel" + + return self.db.query(sql, params) + + def get_matches(self, cmd_configs, command_args): + for row in cmd_configs: + command_key = self.get_command_key(row.command, row.sub_command) + handlers = self.handlers[command_key] + for handler in handlers: + # add leading space to search string to normalize input for command params + matches = handler["regex"].search(command_args) + if matches: + return row, matches, handler + return None, None, None + + def process_matches(self, matches, params): + groups = list(matches.groups()) + + processed = [] + for param in params: + processed.append(param.process_matches(groups)) + return processed + + def get_help_text(self, char, command_str, channel, show_regex=False): + data = self.db.query("SELECT command, sub_command, access_level FROM command_config " + "WHERE command = ? AND channel = ? AND enabled = 1", + [command_str, channel]) + + # filter out commands that character does not have access level for + data = filter(lambda row: self.access_service.check_access(char, row.access_level), data) + + def get_regex(params): + if show_regex: + return "\n" + self.get_regex_from_params(params) + else: + return "" + + def read_help_text(row): + command_key = self.get_command_key(row.command, row.sub_command) + return filter(lambda x: x is not None, map(lambda handler: handler["help"] + get_regex(handler["params"]), + self.handlers[command_key])) + + content = "\n\n".join(flatmap(read_help_text, data)) + return content if content else None + + def format_help_text(self, topic, help_text): + return ChatBlob("Help (" + topic + ")", help_text) + + def get_help_file(self, module, help_file): + if help_file: + try: + help_file = "./" + module.replace(".", "/") + "/" + help_file + with open(help_file, mode="r", encoding="UTF-8") as f: + return f.read().strip() + except FileNotFoundError as e: + self.logger.error("Error reading help file", e) + return None + + def get_command_key(self, command, sub_command): + if sub_command: + return command + ":" + sub_command + else: + return command + + def get_command_key_parts(self, command_str): + parts = command_str.split(":", 1) + if len(parts) == 2: + return parts[0], parts[1] + else: + return parts[0], "" + + def get_regex_from_params(self, params): + # params must be wrapped with line-beginning and line-ending anchors in order to match + # when no params are specified (eg. "^$") + return "^" + "".join(map(lambda x: x.get_regex(), params)) + "$" + + def generate_help(self, command, description, params, extended_description=None): + help_text = description + ":\n" + "" + command + " " + " ".join( + map(lambda x: x.get_name(), params)) + if extended_description: + help_text += "\n" + extended_description + + return help_text + + def get_handlers(self, command_key): + return self.handlers.get(command_key, None) + + def handle_private_message(self, conn: Conn, packet: server_packets.PrivateMessage): + if not self.bot.is_ready(): + if packet.char_id not in self.ignore: + self.ignore.append(packet.char_id) + self.bot.send_mass_message(packet.char_id, + "Your command has not been proceeded, bot is still starting.") + return + if not self.setting_service.get("accept_commands_from_slave_bots").get_value() and conn.id != "main": + return + + # since the command symbol is not required for private messages, + # the command_str must have length of at least 1 in order to be valid, + # otherwise it is ignored + if len(packet.message) < 1: + return + + # ignore leading space + message = packet.message.lstrip() + + def i(): + self.process_command( + self.trim_command_symbol(message), + self.PRIVATE_MESSAGE_CHANNEL, + packet.char_id, + lambda msg: self.bot.send_private_message(packet.char_id, msg, conn_id=conn.id), + conn, + False) + + t: Thread = Thread(target=i, daemon=True) + t.run() + + def handle_private_channel_message(self, conn: Conn, packet: server_packets.PrivateChannelMessage): + if not self.setting_service.get("accept_commands_from_slave_bots").get_value() and conn.id != "main": + return + + # since the command symbol is required in the private channel, + # the command_str must have length of at least 2 in order to be valid, + # otherwise it is ignored + if len(packet.message) < 2: + return + + # ignore leading space + message = packet.message.lstrip() + if message.startswith(self.setting_service.get("symbol").get_value()) \ + and packet.private_channel_id == self.bot.get_char_id(): + Thread(target=self.process_command( + self.trim_command_symbol(message), + self.PRIVATE_CHANNEL, + packet.char_id, + lambda msg: self.bot.send_private_channel_message(msg, private_channel_id=conn.char_id, + conn_id=conn.id), + conn, + False), daemon=True).run() + + def handle_public_channel_message(self, conn: Conn, packet: server_packets.PublicChannelMessage): + if not self.setting_service.get("accept_commands_from_slave_bots").get_value() and conn.id != "main": + return + + # since the command symbol is required in the org channel, + # the command_str must have length of at least 2 in order to be valid, + # otherwise it is ignored + if len(packet.message) < 2: + return + + # ignore leading space + message = packet.message.lstrip() + + if message.startswith(self.setting_service.get("symbol").get_value()) \ + and self.public_channel_service.is_org_channel_id(packet.channel_id): + Thread(target=self.process_command( + self.trim_command_symbol(message), + self.ORG_CHANNEL, + packet.char_id, + lambda msg: self.bot.send_org_message(msg, conn_id=conn.id), + conn, + False), daemon=True).run() + + def trim_command_symbol(self, s): + symbol = self.setting_service.get("symbol").get_value() + if s.startswith(symbol): + s = s[len(symbol):] + return s diff --git a/core/conn.py b/core/conn.py new file mode 100644 index 0000000..e33cb52 --- /dev/null +++ b/core/conn.py @@ -0,0 +1,63 @@ +import threading +import time + +from core.aochat.bot import Bot +from core.aochat.client_packets import Ping +from core.aochat.delay_queue import DelayQueue + + +class Conn(Bot): + def __init__(self, _id, failure_callback): + super().__init__() + self.id = _id + self.packet_queue = DelayQueue(2, 2.5) + self.packet_last_received_timestamp = time.time() + self.failure_callback = failure_callback + self.send_lock = threading.Lock() + + def read_packet(self, max_delay_time=1): + self.check_outgoing_message_queue() + packet = super().read_packet(max_delay_time) + if not packet: + time_since = time.time() - self.packet_last_received_timestamp + if time_since > 90: + self.logger.error(f"no packet received in 90 seconds for conn {self.id}") + self.failure_callback() + if time_since > 60: + self.send_packet(Ping("tyrbot_aochat")) + else: + self.packet_last_received_timestamp = time.time() + return packet + + def send_packet(self, packet): + # synchronize sending packets + # noinspection PyBroadException + try: + with self.send_lock: + super().send_packet(packet) + except Exception as e: + self.failure_callback() + + def add_packet_to_queue(self, packet): + self.packet_queue.enqueue(packet) + self.check_outgoing_message_queue() + + def check_outgoing_message_queue(self): + # check packet queue for outgoing packets + outgoing_packet = self.packet_queue.dequeue() + while outgoing_packet: + self.send_packet(outgoing_packet) + outgoing_packet = self.packet_queue.dequeue() + + num_messages = len(self.packet_queue) + if num_messages > 30: + self.logger.warning("automatically clearing outgoing message queue (%d messages)" % num_messages) + self.packet_queue.clear() + elif num_messages > 10: + self.logger.warning("%d messages in outgoing message queue" % num_messages) + + def __str__(self): + return self.id + + def __repr__(self): + return self.__str__() diff --git a/core/db.py b/core/db.py new file mode 100644 index 0000000..0f14b2f --- /dev/null +++ b/core/db.py @@ -0,0 +1,278 @@ +import os +import re +import sys +import threading +import time + +import mariadb +# noinspection PyProtectedMember +from mariadb._mariadb import ConnectionPool, OperationalError +from mysql.connector.cursor import CursorBase +from pkg_resources import parse_version + +from conf.config import BotConfig +from core.decorators import instance +from core.dict_object import DictObject +from core.logger import Logger + + +@instance() +class DB: + MYSQL = "mysql" + MARIADB = "mariadb-pool" + + def __init__(self): + self.pool_size = 4 + # noinspection PyTypeChecker + self.pool: ConnectionPool = None + self.enhanced_like_regex = re.compile(r"(\s+)(\S+)\s+\s+\?(\s*)", re.IGNORECASE) + self.lastrowid = None + self.logger = Logger(__name__) + self.type = None + self.lock = threading.Semaphore(self.pool_size) + self.transaction_level = 0 + # noinspection PyTypeChecker + self.shared: DB = None + mod = __import__(f'conf.{sys.argv[1]}', fromlist=['BotConfig']) + config: BotConfig = getattr(mod, 'BotConfig') + self.name = config.character + + def connect_mariadb(self, host, port, username, password, database_name): + self.type = self.MARIADB + self.connect_detail = {'host': host, 'port': port, 'user': username, + 'password': password, 'database': database_name, 'autocommit': True} + self.pool = mariadb.ConnectionPool(pool_name=database_name, pool_size=self.pool_size, + pool_reset_connection=False, + host=host, port=port, user=username, password=password, + database=database_name, autocommit=True) + self.exec("SET collation_connection = 'utf8_general_ci'") + self.exec("SET sql_mode = 'TRADITIONAL,ANSI'") + self.create_db_version_table() + + def create_db_version_table(self): + self.exec("CREATE TABLE IF NOT EXISTS db_version (" + "file VARCHAR(255) NOT NULL, " + "version VARCHAR(255) NOT NULL, " + "verified SMALLINT NOT NULL, " + "bot varchar(32))") + + def _execute_wrapper(self, sql, params, callback): + with self.lock: + start_time = time.time() + if self.pool.pool_size < self.pool_size - 1: + self.pool.add_connection(mariadb.connect(**self.connect_detail)) + + with self.pool.get_connection() as conn: + conn.auto_reconnect = True + conn.autocommit = True + with conn.cursor(dictionary=True) as cur: + try: + string: str = sql.upper() + + if string.__contains__("UPDATE ") or string.__contains__("INSERT "): + cur.execute("START TRANSACTION;") + cur.execute(sql.replace("?", "%s"), params) + if string.__contains__("UPDATE ") or string.__contains__("INSERT "): + conn.commit() + except Exception as e: + raise SqlException("SQL Error: '%s' for '%s' [%s]" % ( + str(e), sql, ", ".join(map(lambda x: str(x), params)))) from e + elapsed = time.time() - start_time + result = callback(cur) + if elapsed > 5: + self.logger.warning("slow query (%fs) '%s' for params: %s" % (elapsed, sql, str(params))) + + return result + + def query_single(self, sql, params=None, extended_like=False) -> DictObject: + if params is None: + params = [] + + if extended_like: + sql, params = self.handle_extended_like(sql, params) + + sql, params = self.format_sql(sql, params) + + def map_result(cur): + row = cur.fetchone() + return DictObject(row) if row else None + + return self._execute_wrapper(sql, params, map_result) + + def query(self, sql, params=None, extended_like=False) -> list[DictObject]: + if params is None: + params = [] + + if extended_like: + sql, params = self.handle_extended_like(sql, params) + + sql, params = self.format_sql(sql, params) + + def map_result(cur): + return list(map(lambda row: DictObject(row), cur.fetchall())) + + return self._execute_wrapper(sql, params, map_result) + + def exec(self, sql, params=None, extended_like=False) -> int: + if params is None: + params = [] + + if extended_like: + sql, params = self.handle_extended_like(sql, params) + + sql, params = self.format_sql(sql, params) + + def map_result(cur): + return [cur.rowcount, cur.lastrowid] + + row_count, lastrowid = self._execute_wrapper(sql, params, map_result) + self.lastrowid = lastrowid + return row_count + + def last_insert_id(self) -> int: + return self.lastrowid + + def format_sql(self, sql, params=None) -> [str, list]: + return sql, params + + def handle_extended_like(self, sql, params): + original_params = params.copy() + params = list(map(lambda x: [x], params)) + + for match in self.enhanced_like_regex.finditer(sql): + field = match.group(2) + index = int(match.group(3)) + extra_sql, vals = self._get_extended_params(field, original_params[index].split(" ")) + + sql = self.enhanced_like_regex.sub(match.group(1) + "(" + " AND ".join(extra_sql) + ")" + match.group(4), + sql, 1) + # remove current param and add generated params in its place + del params[index] + params.insert(index, vals) + return sql, [item for sublist in params for item in sublist] + + def _get_extended_params(self, field, params) -> [str, list]: + extra_sql = [] + vals = [] + for p in params: + if p.startswith("-") and p != "-": + vals.append("%" + p[1:] + "%") + extra_sql.append(field + " NOT LIKE ?") + else: + vals.append("%" + p + "%") + extra_sql.append(field + " LIKE ?") + return extra_sql, vals + + def create_view(self, table) -> None: + if self.shared == self: + return + self.exec(f"DROP TABLE if exists {table};") + self.exec(f"CREATE OR REPLACE SQL SECURITY INVOKER VIEW {table} AS " + f"SELECT * FROM `{self.shared.pool.pool_name}`.{table};") + + def load_sql_file(self, sql_file: str, force_update=False, per_bot=False, pre_optimized=False) -> None: + filename = sql_file.replace("\\", "/") + bot = "global" + if per_bot: + bot = self.name + db_version = self.shared.get_db_version(filename, bot) + file_version = self.get_file_version(filename) + if db_version: + if parse_version(file_version) > parse_version(db_version) or force_update: + self.logger.debug("loading sql file '%s'" % sql_file) + self._load_file(filename, pre_optimized) + self.exec("UPDATE db_version SET version = ?, verified = 1 WHERE file = ? and bot = ?", + [int(file_version), filename, bot]) + else: + self.logger.debug("loading sql file '%s'" % sql_file) + self._load_file(filename, pre_optimized) + self.exec("INSERT INTO db_version (file, version, bot, verified) VALUES (?, ?, ?, 1)", + [filename, int(file_version), bot]) + + def get_file_version(self, filename) -> str: + return str(int(os.path.getmtime(filename))) + + def get_db_version(self, filename, bot) -> int or None: + + row = self.query_single("SELECT version FROM db_version WHERE file = ? and bot = ?", [filename, bot]) + if row: + return row.version + else: + return None + + def _load_optimized_file(self, filename): + start = time.time() + with open(filename, mode="r", encoding="UTF-8") as f: + with self.shared.pool.get_connection() as conn: + with conn.cursor() as cur: + for line in f.readlines(): + line = line.strip() + + if line != "": + if line.startswith("#") or line.startswith("--"): + continue + cur.execute(line) + print(f"Runtime: {time.time() - start: .2f} for {filename}") + + def _load_file(self, filename, pre_optimized=False) -> None: + if pre_optimized: + self._load_optimized_file(filename) + return + start = time.time() + # Short version... instead of executing 90 000 inserts for the itemDB, just do one, + # while providing all values during one query + with open(filename, mode="r", encoding="UTF-8") as f: + insert_batches = [] + inserts = [] + others = [] + stat = "" + for i in f.readlines(): + i = i.strip() + if i == "" or i == " ": + continue + if i.startswith("INSERT INTO"): + match2 = re.match("(INSERT INTO .+? VALUES) (\(.+?\));", i) + if match2: + r2 = match2[2].replace("NULL", "None") + r2 = r2.replace("null", "None") + query = match2[1] + f" ({', ?' * len(eval(r2))})" + query = query.replace("(, ", "(") + if stat != query: + if stat != "" or len(inserts) != 0: + insert_batches.append([stat, inserts]) + inserts = [] + stat = query + inserts.append(eval(r2)) + else: + if i.startswith("--"): + continue + others.append(i) + insert_batches.append([stat, inserts]) + with self.shared.lock: + with self.shared.pool.get_connection() as conn: + with conn.cursor() as cur: + cur: CursorBase + if others: + for statement in others: + try: + cur.execute(statement) + except OperationalError: + pass + for sql, param in insert_batches: + if sql == "INSERT INTO trickle (id, group_name, name, amount_agility, " \ + "amount_intelligence, amount_psychic, amount_stamina, " \ + "amount_strength, amount_sense) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)": + for row in param: + cur.execute(sql, row) + continue + cur.executemany(sql, param) + + print(f"Runtime: {time.time() - start: .2f} for {filename}") + + def get_type(self) -> str: + return self.type + + +class SqlException(Exception): + def __init__(self, message): + super().__init__(message) diff --git a/core/decorators.py b/core/decorators.py new file mode 100644 index 0000000..07801c2 --- /dev/null +++ b/core/decorators.py @@ -0,0 +1,61 @@ +from core.dict_object import DictObject +from core.registry import Registry + + +# taken from: https://stackoverflow.com/a/26151604/280574 +def parameterized(dec): + def layer(*args, **kwargs): + def repl(f): + return dec(f, *args, **kwargs) + + return repl + + return layer + + +@parameterized +def instance(cls, name=None, override=False): + instance_name = name if name else cls.__name__ + Registry.add_instance(instance_name, cls(), override) + return cls + + +# noinspection PyShadowingNames +@parameterized +def command(handler, command, params, access_level, description, + sub_command=None, help_file=None, extended_description=None): + handler.command = [command, params, access_level, description, help_file, sub_command, extended_description] + return handler + + +@parameterized +def event(handler, event_type, description, is_hidden=False, is_enabled=True): + handler.event = DictObject({"event_type": event_type, + "description": description, + "is_hidden": is_hidden, + "is_enabled": is_enabled}) + return handler + + +@parameterized +def timerevent(handler, budatime, description, is_hidden=False, is_enabled=True, run_at_startup=False): + util = Registry.get_instance("util") + t = util.parse_time(budatime) + handler.event = DictObject({"event_type": "timer:" + str(t), + "description": description, + "is_hidden": is_hidden, + "is_enabled": is_enabled, + "run_at_startup": run_at_startup}) + return handler + + +@parameterized +def setting(handler, name, value, description, extended_description=None): + obj = handler(None) + + def new_handler(self): + return obj + + new_handler.setting = [name, value, description, extended_description, obj] + new_handler.__module__ = handler.__module__ + return new_handler diff --git a/core/dict_object.py b/core/dict_object.py new file mode 100644 index 0000000..3996ed8 --- /dev/null +++ b/core/dict_object.py @@ -0,0 +1,25 @@ +class DictObject(dict): + def __init__(self, *args, **kw): + super().__init__(*args, **kw) + + def get_value(self, name): + val = self[name] + # convert dict to DictObject + if not isinstance(val, DictObject) and isinstance(val, dict): + self[name] = DictObject(val) + val = self[name] + + # convert list of dicts to list of DictObjects + elif isinstance(val, list): + for k, v in enumerate(val): + if not isinstance(v, DictObject) and isinstance(v, dict): + self[name][k] = DictObject(v) + val = self[name] + + return val + + def __getattr__(self, name): + return self.get_value(name) + + def __setattr__(self, key, value): + self[key] = value diff --git a/core/event_service.py b/core/event_service.py new file mode 100644 index 0000000..e4fdf87 --- /dev/null +++ b/core/event_service.py @@ -0,0 +1,212 @@ +import inspect +import time +from threading import Thread + +from core.decorators import instance +from core.functions import get_attrs +from core.logger import Logger +from core.registry import Registry + + +@instance() +class EventService: + def __init__(self): + self.handlers = {} + self.logger = Logger(__name__) + self.event_types = [] + self.db_cache = {} + + def inject(self, registry): + self.db = registry.get_instance("db") + self.bot = registry.get_instance("bot") + self.util = registry.get_instance("util") + + def pre_start(self): + self.register_event_type("timer") + + def start(self): + # process decorators + for _, inst in Registry.get_all_instances().items(): + for name, method in get_attrs(inst).items(): + if hasattr(method, "event"): + key = Registry.get_module_name(inst).split(".") + # We dont want to load events, if their modules not enabled in our config... + if key[0] not in self.bot.modules: + continue + attrs = getattr(method, "event") + handler = getattr(inst, name) + self.register(handler, attrs.event_type, attrs.description, inst.module_name, attrs.is_hidden, + attrs.is_enabled) + + def register_event_type(self, event_type): + """ + Call during pre_start + + Args: + event_type (str) + """ + + event_type = event_type.lower() + + if event_type in self.event_types: + self.logger.error("Could not register event type '%s': event type already registered" % event_type) + return + + self.logger.debug("Registering event type '%s'" % event_type) + self.event_types.append(event_type) + + def is_event_type(self, event_base_type): + return event_base_type in self.event_types + + def register(self, handler, event_type, description, module, is_hidden, is_enabled): + """ + Call during pre_start + + Args: + handler: (event_type, event_data) -> void + event_type: str + description: str + module: str + is_hidden: bool + is_enabled: bool + """ + if len(inspect.signature(handler).parameters) != 2: + raise Exception( + "Incorrect number of arguments for handler '%s.%s()'" % (handler.__module__, handler.__name__)) + + event_base_type, event_sub_type = self.get_event_type_parts(event_type) + module = module.lower() + handler_name = self.util.get_handler_name(handler) + is_hidden = 1 if is_hidden else 0 + is_enabled = 1 if is_enabled else 0 + if event_base_type not in self.event_types: + self.logger.error("Could not register handler '%s' for event type '%s': event type does not exist" % ( + handler_name, event_type)) + return + + if not description: + self.logger.warning("No description for event_type '%s' and handler '%s'" % (event_type, handler_name)) + + row = self.db.query_single("SELECT 1 FROM event_config WHERE event_type = ? AND handler = ?", + [event_base_type, handler_name]) + if row is None: + # add new event commands + self.db.exec( + "INSERT INTO event_config (event_type, event_sub_type, handler, " + "description, module, enabled, verified, is_hidden) VALUES (?, ?, ?, ?, ?, ?, ?, ?)", + [event_base_type, event_sub_type, handler_name, description, module, is_enabled, 1, is_hidden]) + if event_base_type == "timer": + self.db.exec( + "INSERT INTO timer_event (event_type, event_sub_type, handler, next_run) VALUES (?, ?, ?, ?)", + [event_base_type, event_sub_type, handler_name, int(time.time())]) + else: + # mark command as verified + self.db.exec( + "UPDATE event_config SET verified = ?, module = ?, description = ?, event_sub_type = ?, is_hidden = ? " + "WHERE event_type = ? AND handler = ?", + [1, module, description, event_sub_type, is_hidden, event_base_type, handler_name]) + + if event_base_type == "timer": + self.db.exec("UPDATE timer_event SET event_sub_type = ? WHERE event_type = ? AND handler = ?", + [event_sub_type, event_base_type, handler_name]) + + # load command handler + self.handlers[handler_name] = handler + + def fire_event(self, event_type, event_data=None): + event_base_type, event_sub_type = self.get_event_type_parts(event_type) + + if event_base_type not in self.event_types: + self.logger.error("Could not fire event type '%s': event type does not exist" % event_type) + return + + data = self.get_handlers(event_base_type, event_sub_type) + for row in data: + if event_type != "connect": + t = Thread(target=self.call_handler, args=(row.handler, event_type, event_data), daemon=True) + t.run() + else: + self.call_handler(row.handler, event_type, event_data) + + def call_handler(self, handler_method, event_type, event_data): + handler = self.handlers.get(handler_method, None) + if not handler: + self.logger.error( + "Could not find handler callback for event type '%s' and handler '%s'" % (event_type, handler_method)) + return + + try: + handler(event_type, event_data) + except Exception as e: + self.logger.error("error processing event '%s'" % event_type, e) + + def get_event_type_parts(self, event_type): + parts = event_type.lower().split(":", 1) + if len(parts) == 2: + return parts[0], parts[1] + else: + return parts[0], "" + + def get_event_type_key(self, event_base_type, event_sub_type): + return event_base_type + ":" + event_sub_type + + def check_for_timer_events(self, current_timestamp): + data = self.db.query("SELECT e.event_type, e.event_sub_type, e.handler, t.next_run FROM timer_event t " + "JOIN event_config e ON t.event_type = e.event_type AND t.handler = e.handler " + "WHERE t.next_run <= ? AND e.enabled = 1", [current_timestamp]) + for row in data: + self.execute_timed_event(row, current_timestamp) + + def execute_timed_event(self, row, current_timestamp): + event_type_key = self.get_event_type_key(row.event_type, row.event_sub_type) + + # timer event run times should be consistent, so we base the next run time off the last run time, + # instead of the current timestamp + next_run = row.next_run + int(row.event_sub_type) + + # prevents timer events from getting too far behind, or having a large "catch-up" after + # the bot has been offline for a time + if next_run < current_timestamp: + next_run = current_timestamp + int(row.event_sub_type) + + self.db.exec("UPDATE timer_event SET next_run = ? WHERE event_type = ? AND handler = ?", + [next_run, row.event_type, row.handler]) + + self.call_handler(row.handler, event_type_key, None) + + def update_event_status(self, event_base_type, event_sub_type, event_handler, enabled_status): + # clear cache + self.db_cache[event_base_type + ":" + event_sub_type] = None + + return self.db.exec( + "UPDATE event_config SET enabled = ? WHERE event_type = ? AND event_sub_type = ? AND handler LIKE ?", + [enabled_status, event_base_type, event_sub_type, event_handler]) + + def get_event_types(self): + return self.event_types + + def get_handlers(self, event_base_type, event_sub_type): + # check first in cache + result = self.db_cache.get(event_base_type + ":" + event_sub_type, None) + if result is not None: + return result + else: + result = self.db.query( + "SELECT handler FROM event_config WHERE event_type = ? AND event_sub_type = ? AND enabled = 1", + [event_base_type, event_sub_type]) + + # store result in cache + self.db_cache[event_base_type + ":" + event_sub_type] = result + + return result + + def run_timer_events_at_startup(self): + t = int(time.time()) + data = self.db.query("SELECT e.event_type, e.event_sub_type, e.handler, t.next_run FROM timer_event t " + "JOIN event_config e ON t.event_type = e.event_type AND t.handler = e.handler " + "WHERE e.event_type = ? AND e.enabled = 1", ["timer"]) + for row in data: + handler = self.handlers[row.handler] + attrs = getattr(handler, "event") + if attrs.get("run_at_startup", False): + self.execute_timed_event(row, t) diff --git a/core/fifo_queue.py b/core/fifo_queue.py new file mode 100644 index 0000000..6215bda --- /dev/null +++ b/core/fifo_queue.py @@ -0,0 +1,38 @@ +import time +from queue import Queue + + +class FifoQueue(Queue): + def get_or_default(self, block=True, timeout=None, default=None): + """Remove and return an item from the queue. + + This differs from get() in that it will return `default` instead of + raising Empty exception. + + If optional args 'block' is true and 'timeout' is None (the default), + block if necessary until an item is available. If 'timeout' is + a non-negative number, it blocks at most 'timeout' seconds and raises + the Empty exception if no item was available within that time. + Otherwise ('block' is false), return an item if one is immediately + available, else raise the Empty exception ('timeout' is ignored + in that case). + """ + with self.not_empty: + if not block: + if not self._qsize(): + return default + elif timeout is None: + while not self._qsize(): + self.not_empty.wait() + elif timeout < 0: + raise ValueError("'timeout' must be a non-negative number") + else: + endtime = time.time() + timeout + while not self._qsize(): + remaining = endtime - time.time() + if remaining <= 0.0: + return default + self.not_empty.wait(remaining) + item = self._get() + self.not_full.notify() + return item diff --git a/core/functions.py b/core/functions.py new file mode 100644 index 0000000..c39fc57 --- /dev/null +++ b/core/functions.py @@ -0,0 +1,21 @@ +import itertools + +from core.dict_object import DictObject + + +def flatmap(func, *iterable): + return itertools.chain.from_iterable(map(func, *iterable)) + + +# taken from: https://stackoverflow.com/a/8529229/280574 and modified +def get_attrs(obj): + attrs = {} + for cls in obj.__class__.__mro__: + attrs.update(cls.__dict__.items()) + attrs.update(obj.__class__.__dict__.items()) + return attrs + + +def merge_dicts(dict1, dict2): + res = DictObject({**dict1, **dict2}) + return res diff --git a/core/global.msg b/core/global.msg new file mode 100644 index 0000000..e70b383 --- /dev/null +++ b/core/global.msg @@ -0,0 +1,18 @@ +{ + "char_not_found": { + "en_US": "Could not find character {char}.", + "de_DE": "Der Charakter {char} wurde nicht gefunden." + }, + "access_denied": { + "en_US": "Access denied.", + "de_DE": "Zugriff verweigert." + }, + "unknown_command": { + "en_US": "Error! Unknown command {cmd}.", + "de_DE": "Error! Den Befehl {cmd} kenne ich nicht." + }, + "error_processing": { + "en_US": "There was an error processing your request.", + "de_DE": "Es gab einen Fehler beim bearbeiten deiner Anfrage." + } +} diff --git a/core/job_scheduler.py b/core/job_scheduler.py new file mode 100644 index 0000000..dbe4326 --- /dev/null +++ b/core/job_scheduler.py @@ -0,0 +1,73 @@ +import inspect +import time + +from core.decorators import instance +from core.logger import Logger + + +@instance() +class JobScheduler: + def __init__(self): + self.logger = Logger(__name__) + self.jobs = [] + self.job_id_index = 0 + + def check_for_scheduled_jobs(self, timestamp): + while self.jobs and self.jobs[0]["time"] <= timestamp: + try: + job = self.jobs.pop(0) + job["callback"](job["time"], *job["args"], **job["kwargs"]) + except Exception as e: + self.logger.warning("Error processing scheduled job", e) + + def delayed_job(self, callback, delay, *args, **kwargs): + """ + Args: + callback: (time: Int, *args, *kwargs) -> void) + delay: int + *args + **kwargs + """ + + return self.scheduled_job(callback, int(time.time()) + delay, *args, **kwargs) + + def scheduled_job(self, callback, scheduled_time, *args, **kwargs): + """ + Args: + callback: (time: Int, *args, *kwargs) -> void) + scheduled_time: int + *args + **kwargs + """ + + if len(inspect.signature(callback).parameters) < 1: + raise Exception(f"Incorrect number of arguments for handler '{callback.__module__}.{callback.__name__}()'") + + job_id = self._get_next_job_id() + new_job = { + "id": job_id, + "callback": callback, + "args": args, + "kwargs": kwargs, + "time": scheduled_time + } + + self._insert_job(new_job) + return job_id + + def cancel_job(self, job_id): + for index, job in enumerate(self.jobs): + if job["id"] == job_id: + return self.jobs.pop(index) + return None + + def _insert_job(self, new_job): + for index, job in enumerate(self.jobs): + if job["time"] > new_job["time"]: + self.jobs.insert(index, new_job) + return + self.jobs.append(new_job) + + def _get_next_job_id(self): + self.job_id_index += 1 + return self.job_id_index diff --git a/core/logger.py b/core/logger.py new file mode 100644 index 0000000..0718cb6 --- /dev/null +++ b/core/logger.py @@ -0,0 +1,44 @@ +import logging +import logging.handlers +import re +import traceback + + +class Logger: + def __init__(self, name): + self.logger = logging.getLogger(name) + + def warning(self, msg, obj: Exception = None): + self.logger.warning(self.format_message(msg, obj)) + + def info(self, msg, obj: Exception = None): + self.logger.info(self.format_message(msg, obj)) + + def error(self, msg, obj: Exception = None): + self.logger.error(self.format_message(msg, obj)) + + def debug(self, msg, obj: Exception = None): + self.logger.debug(self.format_message(msg, obj)) + + def log_chat(self, conn_id, channel, sender, msg): + if sender: + self.info("(%s) [%s] %s: %s" % (conn_id, channel, sender, self.format_chat_message(msg))) + else: + self.info("(%s) [%s] %s" % (conn_id, channel, self.format_chat_message(msg))) + + def log_tell(self, conn_id, direction, sender, msg): + self.info("(%s) %s %s: %s" % (conn_id, direction.capitalize(), sender, self.format_chat_message(msg))) + + def format_chat_message(self, msg): + msg = re.sub(r"", "[link]", msg, flags=re.UNICODE | re.DOTALL) + msg = re.sub(r"", "[link]", msg, flags=re.UNICODE | re.DOTALL) + msg = re.sub(r"", "", msg, flags=re.UNICODE) + msg = re.sub("", "", msg, flags=re.UNICODE) + msg = re.sub("", "[/link]", msg, flags=re.UNICODE) + return msg + + def format_message(self, msg, obj): + if obj: + return msg + "\n" + traceback.format_exc() + else: + return msg diff --git a/core/lookup/character_history_service.py b/core/lookup/character_history_service.py new file mode 100644 index 0000000..84c6c70 --- /dev/null +++ b/core/lookup/character_history_service.py @@ -0,0 +1,67 @@ +import json +import time + +import requests +from requests import ReadTimeout +from torpy.http.requests import do_request + +from core.db import DB +from core.decorators import instance +from core.dict_object import DictObject +from core.logger import Logger + + +@instance() +class CharacterHistoryService: + CACHE_GROUP = "history" + CACHE_MAX_AGE = 86400 + users = [] + + def __init__(self): + self.logger = Logger(__name__) + + def inject(self, registry): + self.bot = registry.get_instance("bot") + self.db: DB = registry.get_instance("db") + self.cache_service = registry.get_instance("cache_service") + + def get_character_history(self, name, server_num): + cache_key = "%s.%d.json" % (name, server_num) + + t = int(time.time()) + + # check cache for fresh value + cache_result = self.cache_service.retrieve(self.CACHE_GROUP, cache_key) + if cache_result and cache_result.last_modified > (t - self.CACHE_MAX_AGE): + result = json.loads(cache_result.data) + else: + url = self.get_pork_url(server_num, name) + try: + r = do_request(url) + # with TorRequests() as tor_request: + # with tor_request.get_session(1) as session: + # r = session.get(url, timeout=5) + r = requests.get(url, timeout=5, headers={"User-Agent": self.bot.major_version}) + result = r.json() + except ReadTimeout: + self.logger.warning("Timeout while requesting '%s'" % url) + result = None + except Exception as e: + self.logger.error("Error requesting history for url '%s'" % url, e) + result = None + + if result: + # store result in cache + self.cache_service.store(self.CACHE_GROUP, cache_key, json.dumps(result)) + elif cache_result: + # check cache for any value, even expired + result = json.loads(cache_result.data) + + if result: + return map(lambda x: DictObject(x), result) + else: + return None + + def get_pork_url(self, dimension, char_name): + # noinspection HttpUrlsUsage + return f"http://pork.budabot.jkbff.com/pork/history.php?server={dimension:d}&name={char_name}" diff --git a/core/lookup/character_service.py b/core/lookup/character_service.py new file mode 100644 index 0000000..e1f3fbf --- /dev/null +++ b/core/lookup/character_service.py @@ -0,0 +1,99 @@ +import threading +import time + +from core.aochat import server_packets +from core.aochat.client_packets import CharacterLookup +from core.decorators import instance + + +@instance() +class CharacterService: + def __init__(self): + self.name_to_id = {} + self.id_to_name = {} + self.waiting_for_response = set() + self.notify_on_receive = {} + + def inject(self, registry): + self.bot = registry.get_instance("bot") + self.db = registry.get_instance("db") + + def pre_start(self): + self.bot.register_packet_handler(server_packets.CharacterLookup.id, self.update) + self.bot.register_packet_handler(server_packets.CharacterName.id, self.update) + + def start(self): + self.db.shared.exec("CREATE TABLE IF NOT EXISTS `all_orgs` (`org_id` INT(11) NOT NULL, " + "`org_name` VARCHAR(64) NOT NULL COLLATE 'utf8mb4_general_ci', " + "`member_count` INT(11) NULL DEFAULT NULL, " + "`faction` VARCHAR(16) NULL DEFAULT NULL COLLATE 'utf8mb4_general_ci', " + "`last_seen` INT(11) NOT NULL, " + "PRIMARY KEY (`org_id`) USING BTREE, " + "INDEX `org_name` (`org_name`) USING BTREE)") + self.db.create_view("all_orgs") + + def _wait_for_char_id(self, char_name): + # char_name must be .capitalize()'ed + + packet = self.bot.iterate(1) + while packet and char_name not in self.name_to_id: + packet = self.bot.iterate(1) + + return self.name_to_id.get(char_name, None) + + # FeatureFlags.THREADING + def _wait_for_char_id_threading(self, char_name): + # char_name must be .capitalize()'ed + + event = self.notify_on_receive.get(char_name, None) + if event is None: + event = threading.Event() + self.notify_on_receive[char_name] = event + + if char_name not in self.name_to_id: + event.wait(10) + + return self.name_to_id.get(char_name, None) + + def resolve_char_to_id(self, char): + if isinstance(char, int): + return char + elif char.isdigit(): + return int(char) + else: + char_name = char.capitalize() + if char_name in self.name_to_id: + return self.name_to_id[char_name] + else: + self._send_lookup_if_needed(char_name) + return self._wait_for_char_id(char_name) + + def resolve_char_to_name(self, char, default=None): + if isinstance(char, int) or char.isdigit(): + char_name = self.get_char_name(char) + return char_name if char_name else default + else: + return char + + def get_char_name(self, char_id): + return self.id_to_name.get(char_id, None) + + def update(self, conn, packet): + self.waiting_for_response.discard(packet.name) + + if packet.char_id == 4294967295: + self.name_to_id[packet.name] = None + else: + self.id_to_name[packet.char_id] = packet.name + self.name_to_id[packet.name] = packet.char_id + # self._update_name_history(packet.name, packet.char_id) + + def _update_name_history(self, char_name, char_id): + params = [char_name, char_id, int(time.time())] + self.db.exec("INSERT IGNORE INTO name_history (name, char_id, created_at) VALUES (?, ?, ?)", params) + + def _send_lookup_if_needed(self, char_name): + # char_name must be .capitalize()'ed + if char_name not in self.name_to_id and char_name not in self.waiting_for_response: + self.waiting_for_response.add(char_name) + self.bot.send_packet(CharacterLookup(char_name)) diff --git a/core/lookup/org_pork_service.py b/core/lookup/org_pork_service.py new file mode 100644 index 0000000..1679e86 --- /dev/null +++ b/core/lookup/org_pork_service.py @@ -0,0 +1,187 @@ +import datetime +import json +import time + +import requests +from requests import ReadTimeout + +from core.db import DB +from core.decorators import instance +from core.dict_object import DictObject +from core.logger import Logger + + +@instance() +class OrgPorkService: + CACHE_GROUP = "org_roster" + CACHE_MAX_AGE = 86400 + + def __init__(self): + self.logger = Logger(__name__) + + def inject(self, registry): + self.bot = registry.get_instance("bot") + self.db: DB = registry.get_instance("db") + self.character_service = registry.get_instance("character_service") + self.pork_service = registry.get_instance("pork_service") + self.cache_service = registry.get_instance("cache_service") + + def get_org_info(self, org_id): + cache_key = f"{org_id:d}.{self.bot.dimension:d}.json" + + t = int(time.time()) + + # check cache for fresh value + cache_result = self.cache_service.retrieve(self.CACHE_GROUP, cache_key) + + is_cache = False + if cache_result and cache_result.last_modified > (t - self.CACHE_MAX_AGE): + result = json.loads(cache_result.data) + is_cache = True + else: + url = self.get_pork_url(self.bot.dimension, org_id) + + try: + r = requests.get(url, timeout=5) + result = r.json() + + # if data is invalid + if result[0]["ORG_INSTANCE"] != org_id: + result = None + except ReadTimeout: + self.logger.warning("Timeout while requesting '%s'" % url) + result = None + except ValueError as e: + # noinspection PyUnboundLocalVariable + self.logger.warning("Error marshalling value as json for url '%s': %s" % (url, r.text), e) + result = None + + if result: + # store result in cache + self.cache_service.store(self.CACHE_GROUP, cache_key, json.dumps(result)) + elif cache_result: + # check cache for any value, even expired + result = json.loads(cache_result.data) + is_cache = True + + if not result: + return None + + org_info = result[0] + org_members = result[1] + last_updated = result[2] + + new_org_info = DictObject({ + "counts": { + "gender": { + "Female": org_info["FEMALECOUNT"], + "Male": org_info["MALECOUNT"], + "Neuter": org_info["NEUTERCOUNT"], + }, + "breed": { + "Atrox": org_info["ATROXCOUNT"], + "Nanomage": org_info["NANORACECOUNT"], + "Opifex": org_info["OPIFEXCOUNT"], + "Solitus": org_info["SOLITUSCOUNT"], + }, + "profession": { + "Monster": org_info["MONSTERCOUNT"], + "Adventurer": org_info["ADVENTURERCOUNT"], + "Agent": org_info["AGENTCOUNT"], + "Bureaucrat": org_info["BTCOUNT"], + "Doctor": org_info["DOCTORCOUNT"], + "Enforcer": org_info["ENFCOUNT"], + "Engineer": org_info["ENGINEEERCOUNT"], + "Fixer": org_info["FIXERCOUNT"], + "Keeper": org_info["KEEPERCOUNT"], + "Martial Artist": org_info["MACOUNT"], + "Meta-Physicist": org_info["METACOUNT"], + "Nano-Technician": org_info["NANOCOUNT"], + "Shade": org_info["SHADECOUNT"], + "Soldier": org_info["SOLIDERCOUNT"], + "Trader": org_info["TRADERCOUNT"], + } + }, + "min_level": org_info["MINLVL"], + "num_members": org_info["NUMMEMBERS"], + "dimension": org_info["ORG_DIMENSION"], + "governing_type": org_info["GOVERNINGNAME"], + "max_level": org_info["MAXLVL"], + "org_id": org_info["ORG_INSTANCE"], + "objective": org_info["OBJECTIVE"], + "description": org_info["DESCRIPTION"], + "history": org_info["HISTORY"], + "avg_level": org_info["AVGLVL"], + "name": org_info["NAME"], + "faction": org_info["SIDE_NAME"], + "faction_id": org_info["SIDE"], + }) + members = {} + data = [] + for org_member in org_members: + char_info = DictObject({ + "name": org_member["NAME"], + "char_id": org_member["CHAR_INSTANCE"], + "first_name": org_member["FIRSTNAME"], + "last_name": org_member["LASTNAME"], + "level": org_member["LEVELX"], + "breed": org_member["BREED"], + "dimension": org_member["CHAR_DIMENSION"], + "gender": org_member["SEX"], + "faction": org_info["SIDE_NAME"], + "profession": org_member["PROF"], + "profession_title": org_member["PROF_TITLE"], + "ai_rank": org_member["DEFENDER_RANK_TITLE"], + "ai_level": org_member["ALIENLEVEL"], + "pvp_rating": org_member["PVPRATING"], + "pvp_title": org_member["PVPTITLE"] or "", + "head_id": org_member["HEADID"], + "org_id": org_info.get("ORG_INSTANCE", 0), + "org_name": org_info.get("NAME", ""), + "org_rank_name": org_member.get("RANK_TITLE", ""), + "org_rank_id": org_member.get("RANK", 0), + "source": "people.anarchy-online.com" + }) + + if not is_cache: + data.append( + (char_info.char_id, char_info.name, char_info.first_name, char_info.last_name, char_info.level, + char_info.breed, char_info.gender, char_info.faction, char_info.profession, + char_info.profession_title, + char_info.ai_rank, char_info.ai_level, char_info.org_id, char_info.org_name, + char_info.org_rank_name, + char_info.org_rank_id, char_info.dimension, char_info.head_id, char_info.pvp_rating, + char_info.pvp_title, char_info.source, int(time.time()))) + + # prefetch char ids from chat server + # noinspection PyProtectedMember + self.character_service._send_lookup_if_needed(char_info.name) + + members[char_info.char_id] = char_info + + if len(data) > 0: + with self.db.lock: + with self.db.pool.get_connection() as conn: + with conn.cursor() as cur: + cur.executemany( + "INSERT IGNORE INTO player ( char_id, name, first_name, last_name, level, breed, gender, " + "faction, profession, profession_title, " + "ai_rank, ai_level, org_id, org_name, " + "org_rank_name, org_rank_id, dimension, " + "head_id, pvp_rating, pvp_title, source, last_updated) " + "VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)", data) + conn.commit() + + if len(members) == 0: + return None + else: + return DictObject({"last_modified": cache_result.last_modified if is_cache else t, + "org_info": new_org_info, + "org_members": members, + "last_updated": int( + datetime.datetime.strptime(last_updated, "%Y/%m/%d %H:%M:%S").timestamp())}) + + def get_pork_url(self, dimension, org_id): + # Dont use SSL, as its rather slow compared to normal requests.... + # noinspection HttpUrlsUsage + return f"http://people.anarchy-online.com/org/stats/d/{dimension}/name/{org_id}/basicstats.xml?data_type=json" diff --git a/core/lookup/pork_service.py b/core/lookup/pork_service.py new file mode 100644 index 0000000..930cb27 --- /dev/null +++ b/core/lookup/pork_service.py @@ -0,0 +1,267 @@ +import time + +import requests +from mysql.connector.cursor import CursorBase +from requests import ReadTimeout + +from core.aochat import server_packets +from core.db import DB +from core.decorators import instance, timerevent +from core.dict_object import DictObject +from core.logger import Logger + + +@instance() +class PorkService: + def __init__(self): + self.logger = Logger(__name__) + self.updates = [] + + def inject(self, registry): + self.bot = registry.get_instance("bot") + self.db: DB = registry.get_instance("db") + self.character_service = registry.get_instance("character_service") + + def pre_start(self): + self.bot.register_packet_handler(server_packets.CharacterLookup.id, self.update) + self.bot.register_packet_handler(server_packets.CharacterName.id, self.update) + + def start(self): + self.db.shared.exec( + "CREATE TABLE IF NOT EXISTS player (" + "char_id BIGINT PRIMARY KEY, " + "first_name VARCHAR(30) NOT NULL, " + "name VARCHAR(20) NOT NULL, " + "last_name VARCHAR(30) NOT NULL, " + "level SMALLINT NOT NULL, " + "breed VARCHAR(20) NOT NULL, " + "gender VARCHAR(20) NOT NULL, " + "faction VARCHAR(20) NOT NULL, " + "profession VARCHAR(20) NOT NULL, " + "profession_title VARCHAR(50) NOT NULL, " + "ai_rank VARCHAR(20) NOT NULL, " + "ai_level SMALLINT, " + "org_id INT DEFAULT NULL, " + "org_name VARCHAR(255) NOT NULL, " + "org_rank_name VARCHAR(20) NOT NULL, " + "org_rank_id SMALLINT NOT NULL, " + "dimension SMALLINT NOT NULL, " + "head_id INT NOT NULL, " + "pvp_rating SMALLINT NOT NULL, " + "pvp_title VARCHAR(20) NOT NULL, " + "source VARCHAR(50) NOT NULL, " + "last_updated INT NOT NULL, " + "invalid int DEFAULT 0, " + "INDEX `name` (`name`) USING BTREE, " + "INDEX `org_id` (`org_id`) USING BTREE, " + "INDEX `org_name` (`org_name`) USING BTREE," + "INDEX `org_rank_name` (`org_rank_name`) USING BTREE, " + "INDEX `org_rank_id` (`org_rank_id`) USING BTREE, " + "INDEX `profession` (`profession`) USING BTREE, " + "INDEX `level` (`level`) USING BTREE, " + "INDEX `ai_level` (`ai_level`) USING BTREE)") + + self.db.create_view("player") + + # forces a lookup from remote PoRK server + # this should not be called directly unless you are requesting info for a char on a different server + # since cache will not be used and the result will also update the cache + def request_char_info(self, char_name, server_num): + url = self.get_pork_url(server_num, char_name) + + try: + r = requests.get(url, timeout=5) + result = r.json() + except ReadTimeout: + self.logger.warning("Timeout while requesting '%s'" % url) + result = None + except ValueError as e: + # noinspection PyUnboundLocalVariable + self.logger.debug("Error marshalling value as json for url '%s': %s" % (url, r.text), e) + result = None + + char_info = None + if result: + char_info_json = result[0] + org_info_json = result[1] if result[1] else {} + + char_info = DictObject({ + "name": char_info_json["NAME"], + "char_id": char_info_json["CHAR_INSTANCE"], + "first_name": char_info_json["FIRSTNAME"], + "last_name": char_info_json["LASTNAME"], + "level": char_info_json["LEVELX"], + "breed": char_info_json["BREED"], + "dimension": char_info_json["CHAR_DIMENSION"], + "gender": char_info_json["SEX"], + "faction": char_info_json["SIDE"], + "profession": char_info_json["PROF"], + "profession_title": char_info_json["PROFNAME"], + "ai_rank": char_info_json["RANK_name"], + "ai_level": char_info_json["ALIENLEVEL"], + "pvp_rating": char_info_json["PVPRATING"], + "pvp_title": char_info_json["PVPTITLE"] or "", + "head_id": char_info_json["HEADID"], + "org_id": org_info_json.get("ORG_INSTANCE", 0), + "org_name": org_info_json.get("NAME", ""), + "org_rank_name": org_info_json.get("RANK_TITLE", ""), + "org_rank_id": org_info_json.get("RANK", 0), + "source": "people.anarchy-online.com", + "cache_age": 0 + }) + + return char_info + + # standard method to get character pork data when character is on the same server + def get_character_info(self, char, max_cache_age=86400): + char_id = self.character_service.resolve_char_to_id(char) + char_name = self.character_service.resolve_char_to_name(char) + + t = int(time.time()) + + # if there is an entry in database and it is within the cache time, use that + db_char_info = self.get_from_database(char_id=char_id, char_name=char_name) + if db_char_info: + db_char_info.cache_age = t - db_char_info.last_updated + + if db_char_info.cache_age < max_cache_age and db_char_info.source != "chat_server": + return db_char_info + + # if we can't resolve to a char_name, we can't make a call to pork + if not char_name: + return db_char_info + + char_info = self.request_char_info(char_name, self.bot.dimension) + + if char_info and char_info.char_id == char_id: + self.save_character_info(char_info) + + return char_info + else: + # return cached info from database, even tho it's old, and set cache_age (if it exists) + if db_char_info: + db_char_info.cache_age = t - db_char_info.last_updated + + return db_char_info + + # forces a skeleton object into the player table in the case that PoRK does not return any data + # call this method if you don't need the data now but want to ensure there is a record in the database + def load_character_info(self, char_id, char_name=None, skeleton_only=False): + char_info = self.get_character_info(char_id) + if not skeleton_only and (not char_info and char_name): + char_info = self.get_character_info(char_name) + if not char_info: + char_info = DictObject({ + "name": "Unknown:" + str(char_id), + "char_id": char_id, + "first_name": "", + "last_name": "", + "level": 0, + "breed": "", + "dimension": self.bot.dimension, + "gender": "", + "faction": "", + "profession": "", + "profession_title": "", + "ai_rank": "", + "ai_level": 0, + "pvp_rating": 0, + "pvp_title": "", + "head_id": 0, + "org_id": 0, + "org_name": "", + "org_rank_name": "", + "org_rank_id": 6, + "source": "stub" + }) + self.save_character_info(char_info) + + def save_character_info(self, char_info): + if char_info["dimension"] != self.bot.dimension: + return + with self.db.pool.get_connection() as conn: + with conn.cursor() as cur: + # cur.execute("DELETE FROM player WHERE char_id = ?", [char_info["char_id"]]) + + insert_sql = """ + REPLACE INTO player (char_id, name, first_name, last_name, level, + breed, gender, faction, profession, profession_title, ai_rank, ai_level, + org_id, org_name, org_rank_name, org_rank_id, dimension, head_id, + pvp_rating, pvp_title, source, last_updated) + VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) + """ + + cur.execute(insert_sql, + [char_info["char_id"], char_info["name"], char_info["first_name"], char_info["last_name"], + char_info["level"], char_info["breed"], + char_info["gender"], char_info["faction"], char_info["profession"], + char_info["profession_title"], char_info["ai_rank"], char_info["ai_level"], + char_info["org_id"], char_info["org_name"], char_info["org_rank_name"], + char_info["org_rank_id"], char_info["dimension"], char_info["head_id"], + char_info["pvp_rating"], char_info["pvp_title"], char_info["source"], int(time.time())]) + + def get_from_database(self, char_id=None, char_name=None): + if char_id: + return self.db.query_single( + "SELECT char_id, name, first_name, last_name, level, breed, gender, faction, profession, " + "profession_title, ai_rank, ai_level, org_id, org_name, org_rank_name, org_rank_id, " + "dimension, head_id, pvp_rating, pvp_title, source, last_updated " + "FROM player WHERE char_id = ?", [char_id]) + elif char_name: + return self.db.query_single( + "SELECT char_id, name, first_name, last_name, level, breed, gender, faction, profession, " + "profession_title, ai_rank, ai_level, org_id, org_name, org_rank_name, org_rank_id, " + "dimension, head_id, pvp_rating, pvp_title, source, last_updated " + "FROM player WHERE name = ?", [char_name]) + else: + return None + + def update(self, conn, packet): + # don't update if we didn't get a valid response + if packet.char_id == 4294967295: + return + self.updates.append(packet) + + @timerevent(budatime="1min", description="Save player changes", is_hidden=True) + def batch_update(self, event_type, event_data): + update = "UPDATE player SET name = ? WHERE char_id = ?" + insert = "INSERT IGNORE INTO player ( char_id, name, first_name, last_name, level, breed, gender, faction, " \ + "profession, profession_title, ai_rank, ai_level, org_id, org_name, org_rank_name, org_rank_id, " \ + "dimension, head_id, pvp_rating, pvp_title, source, last_updated) " \ + "VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)" + updates, inserts = [], [] + with self.db.pool.get_connection() as conn: + with conn.cursor(dictionary=True) as cur: + for packet in self.updates: + cur: CursorBase + cur.execute( + "SELECT char_id, name, first_name, last_name, level, breed, gender, faction, profession, " + "profession_title, ai_rank, ai_level, org_id, org_name, org_rank_name, org_rank_id, " + "dimension, head_id, pvp_rating, pvp_title, source, last_updated " + "FROM player WHERE char_id = ?", + [packet.char_id]) + data = cur.fetchone() + character = None + if data: + character = DictObject(data) + if character: + if character.name != packet.name: + updates.append((packet.name, packet.char_id)) + else: + inserts.append((packet.char_id, packet.name, "", "", 0, "", "", "", "", "", "", 0, 0, "", "", 6, + self.bot.dimension, 0, 0, "", "chat_server", int(time.time()))) + if inserts: + cur.executemany(insert, inserts) + if updates: + cur.executemany(update, updates) + self.updates = [] + + # noinspection SqlResolve + def find_orgs(self, search): + return self.db.query("SELECT DISTINCT org_name, org_id FROM all_orgs WHERE org_name ?", + [search], extended_like=True) + + def get_pork_url(self, dimension, char_name): + # Dont use SSL, as its rather slow compared to normal requests.... + # noinspection HttpUrlsUsage + return f"http://people.anarchy-online.com/character/bio/d/{dimension}/name/{char_name}/bio.xml?data_type=json" diff --git a/core/message_hub_service.py b/core/message_hub_service.py new file mode 100644 index 0000000..5135417 --- /dev/null +++ b/core/message_hub_service.py @@ -0,0 +1,116 @@ +import inspect + +from core.decorators import instance +from core.dict_object import DictObject +from core.logger import Logger +from core.lookup.character_service import CharacterService +from core.text import Text + + +@instance() +class MessageHubService: + def __init__(self): + self.logger = Logger(__name__) + self.hub = {} + self.sources = [] + + def inject(self, registry): + self.bot = registry.get_instance("bot") + self.setting_service = registry.get_instance("setting_service") + self.character_service: CharacterService = registry.get_instance("character_service") + self.text: Text = registry.get_instance("text") + self.db = registry.get_instance("db") + + def pre_start(self): + self.db.exec("CREATE TABLE IF NOT EXISTS message_hub_subscriptions ( " + "destination VARCHAR(50) NOT NULL," + "source VARCHAR(50) NOT NULL" + ")") + + def register_message_source(self, source): + """Call during pre_start""" + if source not in self.sources: + self.sources.append(source) + + def register_message_destination(self, destination, callback, default_sources, invalid_sources=None): + """ + Call during start + + Args: + destination: str + callback: (ctx) -> void + default_sources: [str...] + invalid_sources: [str...] + """ + + if invalid_sources is None: + invalid_sources = [] + if len(inspect.signature(callback).parameters) != 1: + raise Exception( + "Incorrect number of arguments for handler '%s.%s()'" % (callback.__module__, callback.__name__)) + + if destination in self.hub: + raise Exception("Message hub destination '%s' already subscribed" % destination) + + for source in default_sources: + if source not in self.sources: + self.logger.warning( + "Could not subscribe destination '%s' to source '%s' because source does not exist" % ( + destination, source)) + + self.hub[destination] = (DictObject({"name": destination, + "callback": callback, + "sources": default_sources, + "invalid_sources": invalid_sources})) + + self.reload_mapping(destination) + + def reload_mapping(self, destination): + data = self.db.query("SELECT source FROM message_hub_subscriptions WHERE destination = ?", [destination]) + if data: + self.hub[destination].sources = list(map(lambda x: x.source, data)) + + def send_message(self, source, sender, message, formatted_message): + ctx = DictObject({"source": source, + "sender": sender, + "message": message, + "formatted_message": formatted_message}) + + for _, c in self.hub.items(): + if source in c.sources: + try: + c.callback(ctx) + except Exception as e: + self.logger.error("", e) + + def subscribe_to_source(self, destination, source): + if source not in self.sources: + raise Exception("Message hub source '%s' doeselecs not exist" % source) + + obj = self.hub.get(destination, None) + if not obj: + raise Exception("Message hub destination '%s' does not exist" % destination) + + if source not in obj.sources: + self.db.exec("DELETE FROM message_hub_subscriptions WHERE destination = ?", [destination]) + + obj.sources.append(source) + for source in obj.sources: + self.db.exec("INSERT INTO message_hub_subscriptions (destination, source)" + "VALUES (?, ?)", [destination, source]) + + def unsubscribe_from_source(self, destination, source): + # if source not in self.sources: + # raise Exception("Message hub source '%s' does not exist" % source) + + obj = self.hub.get(destination, None) + if not obj: + raise Exception("Message hub destination '%s' does not exist" % destination) + + if source in obj.sources: + self.db.exec("DELETE FROM message_hub_subscriptions WHERE destination = ?", [destination]) + + obj.sources.remove(source) + for source in obj.sources: + self.db.exec("INSERT INTO message_hub_subscriptions (destination, source)" + "VALUES (?, ?)", [destination, source]) diff --git a/core/private_channel_service.py b/core/private_channel_service.py new file mode 100644 index 0000000..1955d73 --- /dev/null +++ b/core/private_channel_service.py @@ -0,0 +1,76 @@ +from core.aochat import server_packets, client_packets +from core.conn import Conn +from core.decorators import instance +from core.logger import Logger + + +@instance() +class PrivateChannelService: + PRIVATE_CHANNEL_MESSAGE_EVENT = "private_channel_message" + JOINED_PRIVATE_CHANNEL_EVENT = "private_channel_joined" + LEFT_PRIVATE_CHANNEL_EVENT = "private_channel_left" + + def __init__(self): + self.logger = Logger(__name__) + self.private_channel_chars = {} + + def inject(self, registry): + self.bot = registry.get_instance("bot") + self.event_service = registry.get_instance("event_service") + self.character_service = registry.get_instance("character_service") + self.access_service = registry.get_instance("access_service") + + def pre_start(self): + self.event_service.register_event_type(self.JOINED_PRIVATE_CHANNEL_EVENT) + self.event_service.register_event_type(self.LEFT_PRIVATE_CHANNEL_EVENT) + self.event_service.register_event_type(self.PRIVATE_CHANNEL_MESSAGE_EVENT) + + self.bot.register_packet_handler(server_packets.PrivateChannelClientJoined.id, + self.handle_private_channel_client_joined) + self.bot.register_packet_handler(server_packets.PrivateChannelClientLeft.id, + self.handle_private_channel_client_left) + # priority must be above that of CommandService in order for relaying of commands to work correctly + self.bot.register_packet_handler(server_packets.PrivateChannelMessage.id, + self.handle_private_channel_message, priority=30) + + self.access_service.register_access_level("guest", 95, self.in_private_channel) + + def handle_private_channel_message(self, conn: Conn, packet: server_packets.PrivateChannelMessage): + if conn.id != "main": + return + + if packet.private_channel_id == self.bot.get_char_id(): + self.event_service.fire_event(self.PRIVATE_CHANNEL_MESSAGE_EVENT, packet) + + def handle_private_channel_client_joined(self, conn: Conn, packet: server_packets.PrivateChannelClientJoined): + if conn.id != "main": + return + + if packet.private_channel_id == self.bot.get_char_id(): + self.private_channel_chars[packet.char_id] = packet + self.event_service.fire_event(self.JOINED_PRIVATE_CHANNEL_EVENT, packet) + + def handle_private_channel_client_left(self, conn: Conn, packet: server_packets.PrivateChannelClientLeft): + if conn.id != "main": + return + + if packet.private_channel_id == self.bot.get_char_id(): + del self.private_channel_chars[packet.char_id] + self.event_service.fire_event(self.LEFT_PRIVATE_CHANNEL_EVENT, packet) + + def invite(self, char_id): + if char_id != self.bot.get_char_id(): + self.bot.send_packet(client_packets.PrivateChannelInvite(char_id)) + + def kick(self, char_id): + if char_id != self.bot.get_char_id() and char_id in self.private_channel_chars: + self.bot.send_packet(client_packets.PrivateChannelKick(char_id)) + + def kickall(self): + self.bot.send_packet(client_packets.PrivateChannelKickAll()) + + def in_private_channel(self, char_id): + return char_id in self.private_channel_chars + + def get_all_in_private_channel(self): + return self.private_channel_chars diff --git a/core/public_channel_service.py b/core/public_channel_service.py new file mode 100644 index 0000000..e0126c7 --- /dev/null +++ b/core/public_channel_service.py @@ -0,0 +1,116 @@ +from core.aochat import server_packets +from core.aochat.BaseModule import BaseModule +from core.conn import Conn +from core.decorators import instance +from core.logger import Logger +from core.setting_service import SettingService +from core.setting_types import NumberSettingType, TextSettingType + + +@instance() +class PublicChannelService(BaseModule): + ORG_CHANNEL_MESSAGE_EVENT = "org_channel_message" + ORG_MSG_EVENT = "org_msg" + + ORG_MSG_CHANNEL_ID = 42949672961 + + def __init__(self): + self.logger = Logger(__name__) + self.name_to_id = {} + self.id_to_name = {} + self.org_channel_id = None + self.org_id = None + self.org_name = None + + def inject(self, registry): + self.bot = registry.get_instance("bot") + self.event_service = registry.get_instance("event_service") + self.character_service = registry.get_instance("character_service") + self.setting_service: SettingService = registry.get_instance("setting_service") + + def pre_start(self): + self.bot.register_packet_handler(server_packets.PublicChannelJoined.id, self.add) + self.bot.register_packet_handler(server_packets.PublicChannelLeft.id, self.remove) + # priority must be above that of CommandService in order for relaying of commands to work correctly + self.bot.register_packet_handler(server_packets.PublicChannelMessage.id, self.public_channel_message, + priority=30) + self.event_service.register_event_type(self.ORG_CHANNEL_MESSAGE_EVENT) + self.event_service.register_event_type(self.ORG_MSG_EVENT) + self.setting_service.register_new('core.system', 'org_id', 0, + NumberSettingType(), 'OrgID used for roster') + self.setting_service.register_new('core.system', 'org_name', "", + TextSettingType(allow_empty=True), 'OrgName used for roster') + + def start(self): + org_id_setting = self.setting_service.get("org_id") + if org_id_setting and org_id_setting.get_value() and org_id_setting.get_value() != "0": + self.org_id = org_id_setting.get_value() + + org_name_setting = self.setting_service.get("org_name") + if org_name_setting and org_name_setting.get_value(): + self.org_name = org_name_setting.get_value() + + def get_channel_id(self, channel_name): + return self.name_to_id.get(channel_name) + + def get_channel_name(self, channel_id): + return self.id_to_name.get(channel_id, None) + + def add(self, conn: Conn, packet: server_packets.PublicChannelJoined): + if conn.id != "main": + return + + self.id_to_name[packet.channel_id] = packet.name + self.name_to_id[packet.name] = packet.channel_id + if not self.org_id and self.is_org_channel_id(packet.channel_id): + self.org_channel_id = packet.channel_id + self.org_id = 0x00ffffffff & packet.channel_id + if packet.name != "Clan (name unknown)": + self.setting_service.get("org_name").set_value(packet.name) + self.org_name = packet.name + else: + data = self.event_service.db.query_single('SELECT org_name from all_orgs where org_id=?', [self.org_id]) + self.org_name = data.org_name if data else 'Unknown Org' + self.logger.info("Org Id: %d" % self.org_id) + self.logger.info("Org Name: %s" % self.org_name) + + def remove(self, conn: Conn, packet: server_packets.PublicChannelLeft): + if conn.id != "main": + return + + channel_name = self.get_channel_name(packet.channel_id) + del self.id_to_name[packet.channel_id] + del self.name_to_id[channel_name] + + def public_channel_message(self, conn: Conn, packet: server_packets.PublicChannelMessage): + if conn.id != "main": + return + + if self.is_org_channel_id(packet.channel_id): + # char_name = self.character_service.get_char_name(packet.char_id) + # if packet.extended_message: + # message = packet.extended_message.get_message() + # else: + # message = packet.message + # # self.logger.log_chat(conn.id, "Org Channel", char_name, message) + self.event_service.fire_event(self.ORG_CHANNEL_MESSAGE_EVENT, packet) + elif packet.channel_id == self.ORG_MSG_CHANNEL_ID: + # char_name = self.character_service.get_char_name(packet.char_id) + # if packet.extended_message: + # message = packet.extended_message.get_message() + # else: + # message = packet.message + # self.logger.log_chat(conn.id, "Org Msg", char_name, message) + self.event_service.fire_event(self.ORG_MSG_EVENT, packet) + + def is_org_channel_id(self, channel_id): + return channel_id >> 32 == 3 + + def get_org_id(self): + return self.org_id + + def get_org_name(self): + return self.org_name + + def get_all_public_channels(self): + return self.id_to_name diff --git a/core/registry.py b/core/registry.py new file mode 100644 index 0000000..a08aa46 --- /dev/null +++ b/core/registry.py @@ -0,0 +1,117 @@ +import importlib +import os +import re + +from core.functions import flatmap + + +class Registry: + _registry = {} + logger = None + + @classmethod + def inject_all(cls): + # inject registry so instance can get references to other instances + for key in cls._registry: + try: + cls._registry[key].inject + except AttributeError: + pass + else: + cls._registry[key].inject(cls) + + @classmethod + def pre_start_all(cls): + # call pre_start() on instances so they can start any init() processes + for key in cls._registry: + try: + cls._registry[key].pre_start + except AttributeError: + pass + else: + cls._registry[key].pre_start() + + @classmethod + def start_all(cls): + # call start() on instances so they can finish any init() processes + for key in cls._registry: + try: + cls._registry[key].start + except AttributeError: + pass + else: + cls._registry[key].start() + + @classmethod + def get_instance(cls, name, is_optional=False): + instance = cls._registry.get(name) + if instance or is_optional: + return instance + else: + raise Exception("Missing required dependency '%s'" % name) + + @classmethod + def get_all_instances(cls): + return cls._registry + + @classmethod + def add_instance(cls, name, inst, override=False): + name = cls.format_name(name) + + inst.module_name = Registry.get_module_name(inst) + inst.module_dir = Registry.get_module_dir(inst) + + if not override and name in cls._registry: + raise Exception("Overriding '%s' with new instance" % name) + elif override and name not in cls._registry: + raise Exception("No instance '%s' to override" % name) + cls._registry[name] = inst + + @classmethod + def format_name(cls, name): + # camel-case to snake-case + s1 = re.sub('(.)([A-Z][a-z]+)', r'\1_\2', name) + return re.sub('([a-z0-9])([A-Z])', r'\1_\2', s1).lower() + + @classmethod + def load_instances(cls, parent_dirs): + # get all subdirectories + dirs = flatmap(lambda x: os.walk(x, followlinks=True), parent_dirs) + dirs = filter(lambda y: not y[0].endswith("__pycache__"), dirs) + + def get_files(tup): + return map(lambda x: os.path.join(tup[0], x), tup[2]) + + # get files from subdirectories + files = flatmap(get_files, dirs) + files = filter(lambda z: z.endswith(".py") and not z.endswith("__init__.py"), files) + + # load files as modules + for file in files: + cls.load_module(file) + + @classmethod + def load_module(cls, file): + # strip the extension + file = file[:-3] + importlib.import_module(file.replace("\\", ".").replace("/", ".")) + + @classmethod + def get_module_name(cls, inst): + parts = inst.__module__.split(".") + if parts[0] == "core": + return "core" + # last name in directory path should be first part, then the next name should be last part + elif parts[0] == "modules": + return parts[1] + "." + parts[2] + else: + return ".".join(parts[:-1]) + + @classmethod + def get_module_dir(cls, inst): + parts = inst.__module__.split(".") + return "." + os.sep + os.sep.join(parts[:-1]) + + @classmethod + def clear(cls): + cls._registry = {} diff --git a/core/sender_obj.py b/core/sender_obj.py new file mode 100644 index 0000000..2c2a5fe --- /dev/null +++ b/core/sender_obj.py @@ -0,0 +1,17 @@ +class SenderObj: + def __init__(self, char_id, name, access_level): + self.char_id = char_id + self.name = name + self.access_level = access_level + + def __str__(self): + return self.__dict__.__str__() + + def __repr__(self): + return self.__str__() + + def __eq__(self, obj): + return isinstance(obj, SenderObj) and \ + obj.char_id == self.char_id and \ + obj.name == self.name and \ + obj.access_level == self.access_level diff --git a/core/setting_service.py b/core/setting_service.py new file mode 100644 index 0000000..85a183c --- /dev/null +++ b/core/setting_service.py @@ -0,0 +1,118 @@ +import inspect + +from core.decorators import instance +from core.functions import get_attrs +from core.logger import Logger +from core.registry import Registry + + +@instance() +class SettingService: + def __init__(self): + self.logger = Logger(__name__) + self.settings = {} + self.db_cache = {} + self.change_listeners = {} + + def inject(self, registry): + self.db = registry.get_instance("db") + self.bot = registry.get_instance("bot") + self.util = registry.get_instance("util") + + def start(self): + # process decorators + for _, inst in Registry.get_all_instances().items(): + for name, method in get_attrs(inst).items(): + if hasattr(method, "setting"): + setting_name, value, description, extended_description, obj = getattr(method, "setting") + self.register(setting_name, value, description, obj, inst.module_name, extended_description) + + def register(self, name, value, description, setting, module, extended_description=None): + """Deprecated. Use register_new()""" + self.logger.warning(f"Using deprecated register method for setting '{name}' in module {module}") + self.register_new(module, name, value, setting, description, extended_description) + + def register_new(self, module, name, value, setting, description, extended_description=None): + """Call during start""" + name = name.lower() + module = module.lower() + # do not generate settings for not loaded modules + if module.split(".")[0] not in self.bot.modules: + return + setting.set_name(name) + setting.set_description(description) + setting.set_extended_description(extended_description) + + if not description: + self.logger.warning("No description specified for setting '%s'" % name) + + if " " in name: + raise Exception("One or more spaces found in setting name '%s' for module '%s'" % (name, module)) + + row = self.db.query_single("SELECT name, value, description FROM setting WHERE name = ?", [name]) + + if row is None: + self.logger.debug("Adding setting '%s'" % name) + self.db.exec("INSERT INTO setting (name, value, description, module, verified) VALUES (?, ?, ?, ?, ?)", + [name, "", description, module, 1]) + print(2, name) + + # verify default value is a valid value, and is formatted appropriately + setting.set_value(value) + else: + self.logger.debug("Updating setting '%s'" % name) + self.db.exec("UPDATE setting SET description = ?, verified = ?, module = ? WHERE name = ?", + [description, 1, module, name]) + self.settings[name] = setting + + def register_change_listener(self, setting_name, handler): + """ + Call during start + + Args: + setting_name: str + handler: (name: string, old_value, new_value) -> void + """ + + if len(inspect.signature(handler).parameters) != 3: + raise Exception(f"Incorrect number of arguments for handler '{handler.__module__}.{handler.__name__}()'") + + if setting_name in self.settings: + if setting_name not in self.change_listeners: + self.change_listeners[setting_name] = [] + self.change_listeners[setting_name].append(handler) + else: + raise Exception(f"Could not register change_listener for setting '{setting_name}' since it does not exist") + + def get_value(self, name): + # check cache first + result = self.db_cache.get(name, None) + if result: + return result.value + else: + row = self.db.query_single("SELECT value FROM setting WHERE name = ?", [name]) + + # store result in cache + self.db_cache[name] = row + + return row.value if row else None + + def set_value(self, name, value): + old_value = self.get_value(name) + + # clear cache + self.db_cache[name] = None + + self.db.exec("UPDATE setting SET value = ? WHERE name = ?", [value, name]) + + if name in self.change_listeners: + for change_listener in self.change_listeners[name]: + change_listener(name, old_value, value) + + def get(self, name): + name = name.lower() + setting = self.settings.get(name, None) + if setting: + return setting + else: + return None diff --git a/core/setting_types.py b/core/setting_types.py new file mode 100644 index 0000000..63331df --- /dev/null +++ b/core/setting_types.py @@ -0,0 +1,302 @@ +import json +import re + +from core.dict_object import DictObject +from core.registry import Registry + + +class SettingType: + def __init__(self): + self.setting_service = Registry.get_instance("setting_service") + self.name = None + + def set_name(self, name): + self.name = name + + def _get_raw_value(self): + """Get the value from the database""" + return self.setting_service.get_value(self.name) + + def _set_raw_value(self, value): + """Set the value in the database""" + self.setting_service.set_value(self.name, value) + + def set_value(self, value): + """Set the processed/typed value""" + pass + + def get_value(self): + """Get the processed/typed value""" + return self._get_raw_value() + + def get_display_value(self): + """Get the value formatted for display""" + v = self.get_value() + if v == "": + v = "<empty>" + + return "%s" % v + + def set_description(self, description): + self.description = description + + def get_description(self): + return self.description + + def set_extended_description(self, extended_description): + self.extended_description = extended_description + + def get_extended_description(self): + return self.extended_description + + +class TextSettingType(SettingType): + def __init__(self, options=None, allow_empty=False): + super().__init__() + self.options = options + self.allow_empty = allow_empty + + def set_value(self, value): + if len(str(value)) > 255: + raise Exception("Setting value cannot be longer than 255 characters.") + elif not self.allow_empty and (value is None or value == ""): + raise Exception("Setting value cannot be empty.") + else: + self._set_raw_value(value) + + def get_display(self): + text = Registry.get_instance("text") + + clear_str = "" + if self.allow_empty: + clear_str = "\n\nTo clear this setting:\n\n" + text.make_tellcmd("Clear this setting", + "config setting %s clear" % self.name) + + options_str = "" + if self.options: + options_str = "\n\nOr choose an option below:\n\n" + "\n".join( + map(lambda opt: text.make_tellcmd(str(opt), f"config setting {self.name} set {opt}"), self.options)) + + return """For this setting you can enter any text you want (max. 255 characters). + +To change this setting: + +/tell config setting """ + self.name + """ set _value_""" \ + + clear_str + options_str + + +class DictionarySettingType(SettingType): + def __init__(self): + super().__init__() + + def set_value(self, value): + if not value: + self._set_raw_value("") + elif isinstance(value, dict): + self._set_raw_value(json.dumps(value)) + else: + raise Exception("Value must be a dictionary.") + + def get_value(self): + value = self._get_raw_value() + if value: + return DictObject(json.loads(value)) + else: + return value + + def get_display_value(self): + return "%s" % (self.get_value() or "<empty>") + + def get_display(self): + return """This setting is controlled by the bot and cannot be set manually.""" + + +class HiddenSettingType(TextSettingType): + def __init__(self, options=None, allow_empty=False): + super().__init__(options, allow_empty) + + def get_display_value(self): + if self.get_value(): + return "<hidden>" + else: + return "<empty>" + + def get_display(self): + text = Registry.get_instance("text") + + clear_str = "" + if self.allow_empty: + clear_str = "\n\nTo clear this setting:\n\n" + text.make_tellcmd("Clear this setting", + f"config setting {self.name} clear") + + return """For this setting you can enter any text you want (max. 255 characters). + +To change this setting: + +/tell config setting """ + self.name + """ set _value_""" + clear_str + """ + +The saved value is never shown in the config but it may appear in the logs and is stored in plain text in the database. +""" + + +# noinspection LongLine +class ColorSettingType(SettingType): + def __init__(self): + super().__init__() + + def get_display_value(self): + return self.format_text(self.get_value()) + + def set_value(self, value): + if re.match("^#([0-9a-fA-F]{6})$", str(value)): + self._set_raw_value(value.upper()) + else: + raise Exception("You must enter a valid HTML color.") + + def get_display(self): + return """For this setting you can set any Color in the HTML Hexadecimal Color Format. + +You can change it manually with the command: + +/tell config setting """ + self.name + """ set _HTML Color_ + +Or you can choose one of the following colors + +Red (Save it) +White (Save it) +Grey (Save it) +Light Grey (Save it) +Dark Grey (Save it) +Black (Save it) +Yellow (Save it) +Blue (Save it) +Deep Sky Blue (Save it) +Green (Save it) +Orange (Save it) +Gold (Save it) +Deep Pink (Save it) +Violet (Save it) +Brown (Save it) +Cyan (Save it) +Navy Blue (Save it) +Dark Orange (Save it)""" + + def get_font_color(self): + return "" % self.get_value() + + def get_int_value(self): + return int(self.get_value().replace("#", ""), 16) + + def format_text(self, msg): + return self.get_font_color() + msg + "" + + +class NumberSettingType(SettingType): + def __init__(self, options=None, allow_empty=False): + super().__init__() + self.options = options + self.allow_empty = allow_empty + + def get_value(self): + v = self._get_raw_value() + if v != "": + return int(self._get_raw_value()) + else: + return "" + + def set_value(self, value): + if value == "": + if self.allow_empty: + self._set_raw_value(value) + else: + raise Exception("This setting does not allow an empty value.") + elif re.match(r"^\d+$", str(value)): + self._set_raw_value(value) + else: + raise Exception("You must enter a positive integer for this setting.") + + def get_display(self): + text = Registry.get_instance("text") + + clear_str = "" + if self.allow_empty: + clear_str = "\n\nTo clear this setting:\n\n" + text.make_tellcmd("Clear this setting", + f"config setting {self.name} clear") + + options_str = "" + if self.options: + options_str = "\n\nOr choose an option below:\n\n" + "\n".join( + map(lambda opt: text.make_tellcmd(str(opt), f"config setting {self.name} set {opt}"), self.options)) + + return """For this setting you can set any positive integer. + +To change this setting: + +/tell config setting """ + self.name + """ set _number_""" \ + + clear_str + options_str + + +class TimeSettingType(SettingType): + def __init__(self, options=None): + super().__init__() + self.options = options + + def get_value(self): + return int(self._get_raw_value()) + + def get_display_value(self): + util = Registry.get_instance("util") + return "%s" % util.time_to_readable(self.get_value()) + + def set_value(self, value): + util = Registry.get_instance("util") + time = util.parse_time(value) + if time > 0: + self._set_raw_value(time) + else: + raise Exception("You must enter time in a valid Budatime format") + + def get_display(self): + text = Registry.get_instance("text") + if self.options: + options_str = "\n".join( + map(lambda opt: text.make_tellcmd(str(opt), f"config setting {self.name} set {opt}"), self.options)) + else: + options_str = "No presets defined, please use the command above." + return """For this setting you must enter a time value. +See budatime for info on the format of the 'time' parameter. + +To change this setting: + +/tell config setting """ + self.name + """ set _time_ + +Or choose an option below:\n\n""" + options_str + + +class BooleanSettingType(SettingType): + def __init__(self): + super().__init__() + + def get_value(self): + return int(self._get_raw_value()) == 1 + + def get_display_value(self): + return "%s" % ("True" if self.get_value() else "False") + + def set_value(self, value): + if value is True: + self._set_raw_value(1) + elif value is False: + self._set_raw_value(0) + elif value.lower() == "true": + self._set_raw_value(1) + elif value.lower() == "false": + self._set_raw_value(0) + else: + raise Exception("You must enter either 'true' or 'false'") + + def get_display(self): + return """For this setting you can enter either true or false. + +True +False""" diff --git a/core/text.py b/core/text.py new file mode 100644 index 0000000..e68ba95 --- /dev/null +++ b/core/text.py @@ -0,0 +1,359 @@ +import math +import re +from html.parser import HTMLParser + +from core.chat_blob import ChatBlob +from core.decorators import instance +from core.logger import Logger +from core.setting_service import SettingService + + +class MLStripper(HTMLParser): + def error(self, message): + pass + + def __init__(self): + super().__init__() + self.reset() + self.strict = False + self.convert_charrefs = True + self.fed = [] + self.chat_commands = [] + + def handle_data(self, d): + self.fed.append(d) + + def get_data(self): + return "".join(self.fed) + + +@instance() +class Text: + separators = [{"symbol": "", "include": False}, {"symbol": "\n", "include": True}, + {"symbol": "
", "include": True}, {"symbol": " ", "include": True}] + + # taken from IGN bot + pixel_mapping = {'i': 3, 'l': 3, 'K': 10, 'R': 10, "'": 3, 'e': 8, 'U': 10, 'j': 5, 'I': 5, '|': 6, 'N': 10, 'f': 5, + '.': 5, ' ': 5, + ',': 5, 'J': 6, 'r': 6, 't': 6, '!': 6, '(': 6, ')': 6, '[': 6, ']': 6, '/': 6, ':': 6, ';': 6, + '"': 6, 'c': 7, + '-': 7, 's': 8, 'v': 8, 'k': 8, 'a': 8, 'y': 8, 'z': 8, 'F': 8, 'L': 8, 'P': 8, 'n': 9, '3': 9, + 'b': 9, 'd': 9, + 'g': 9, 'h': 9, 'Y': 9, 'S': 10, 'Q': 11, 'w': 11, '<': 11, '>': 11, '=': 11, 'q': 9, 'u': 9, + 'x': 9, '0': 9, + '1': 9, '2': 9, '4': 9, '5': 9, '6': 9, '7': 9, '8': 9, '9': 9, 'E': 9, 'T': 9, '$': 9, '*': 9, + '{': 9, '}': 9, + '_': 9, '`': 9, 'A': 10, 'B': 10, 'C': 10, 'H': 10, 'V': 10, 'X': 10, 'Z': 10, '&': 10, 'D': 11, + 'G': 11, 'M': 11, + 'O': 11, '+': 11, '~': 11, '%': 15, 'p': 9, 'm': 13, 'o': 9, '@': 14, 'W': 15} + + def __init__(self): + self.logger = Logger(__name__) + self.items_regex = re.compile(r"(.+?)") + + def inject(self, registry): + self.setting_service: SettingService = registry.get_instance("setting_service") + self.ban = registry.get_instance("ban_service") + self.bot = registry.get_instance("bot") + self.public_channel_service = registry.get_instance("public_channel_service") + + def make_chatcmd(self, name, msg, style=""): + msg = msg.strip() + msg = msg.replace("'", "'") + return "%s" % (style, msg, name) + + def make_tellcmd(self, name, msg, style="", char=""): + return self.make_chatcmd(name, f"/tell {char} {msg}", style) + + def make_charlink(self, char, style=""): + return "%s" % (style, char, char) + + def make_item(self, low_id, high_id, ql, name): + return "%s" % (low_id, high_id, ql, name) + + def make_image(self, image_id, image_db="rdb"): + return "" % (image_db, image_id) + + def format_item(self, item, ql=None, with_icon=True): + if not item: + return None + + ql = ql or item["highql"] + + result = self.make_item(item["lowid"], item["highid"], ql, item["name"]) + + if with_icon: + result = self.make_image(item["icon"]) + "\n" + result + + return result + + def generate_item(self, item, ql, synonym=None): + if synonym: + return {"icon_%s" % synonym: self.make_item(item.lowid, item.highid, ql, self.make_image(item.icon)), + "text_%s" % synonym: self.make_item(item.lowid, item.highid, ql, item.name)} + else: + return {"icon": self.make_item(item.lowid, item.highid, ql, self.make_image(item.icon)), + "text": self.make_item(item.lowid, item.highid, ql, item.name)} + + def get_count_digits(self, number: int): + """Return number of digits in a number.""" + + if number == 0: + return 1 + + number = abs(number) + + if number <= 999999999999997: + return math.floor(math.log10(number)) + 1 + + count = 0 + while number: + count += 1 + number //= 10 + return count + + def zfill(self, numb, highest_number): + return f"{(self.get_count_digits(highest_number) - self.get_count_digits(numb)) * '0'}{numb}" + + def format_pagination(self, data, offset, page, formatter, title, no_data_msg, cmd, page_size=10, headline=""): + selected = data[offset:offset + page_size] + count = len(selected) + pages = "" + if page > 1: + pages += "Pages: " + self.make_tellcmd("«« Page %d" % (page - 1), f'{cmd} --page={page - 1}') + if offset + page_size < len(data): + pages += f" Page {page}/{math.ceil(len(data) / page_size)}" + pages += " " + self.make_tellcmd("Page %d »»" % (page + 1), f'{cmd} --page={page + 1}') + pages += "\n" + if count == 0: + return no_data_msg + else: + blob = "" + blob += "" + pages + "\n" + blob += headline + index = offset + for entry in selected: + index += 1 + blob += formatter(entry, index, data) + blob += pages + blob += "" + return ChatBlob(title, blob) + + def format_char_info(self, char_info, online_status=None, check_ban=False): + banned = "" + + if char_info.org_name and char_info.org_rank_name: + msg = f"<{char_info.faction.lower()}>{char_info.name} :: " \ + f"{char_info.level}/{char_info.ai_level} {char_info.profession} :: " \ + f"<{char_info.faction.lower()}>{char_info.org_name}" + elif char_info.get("level", None): + msg = f"<{char_info.faction.lower()}>{char_info.name} :: " \ + f"{char_info.level}/{char_info.ai_level} {char_info.profession}" + elif char_info.name: + msg = f"{char_info.name}" + else: + msg = f"CharId({char_info.char_id:d})" + if check_ban: + banned = f" :: Banned!" if self.ban.get_ban(char_info.char_id) else "" + msg += banned + if online_status is not None: + msg += " :: " + ("Online" if online_status else "Offline") + + return msg + + def get_formatted_faction(self, faction, contents=None): + if not contents: + contents = faction.capitalize() + faction = faction.lower() + if faction in ["omni", "clan", "neutral"]: + return f"<{faction}>{contents}" + return f"{contents}" + + def paginate_single(self, chatblob): + return self.paginate(chatblob, 8000)[0] + + def paginate(self, chatblob, max_page_length=None, max_num_pages=None, footer=None): + label = chatblob.title + msg = chatblob.msg + + msg = msg.strip() + + # chat blobs with empty messages are rendered as simple strings instead of links + if not msg: + return [label] + + msg = self.items_regex.sub(r"\4", msg) + + color = self.setting_service.get("blob_color").get_font_color() + msg = ("
" + label + "
\n\n" + color + msg).replace("\"", """) + msg = self.format_message(msg) + + if footer: + footer = "\n\n" + self.format_message(footer.replace("\"", """).strip()) + else: + footer = "" + + adjusted_max_page_length = None + if max_page_length: + adjusted_max_page_length = max_page_length - len(footer) + pages = self.split_by_separators(msg, adjusted_max_page_length, max_num_pages) + pages = list(map(lambda p: p + footer, pages)) + + num_pages = len(pages) + + def mapper(tup): + page, index = tup + if num_pages == 1: + label2 = self.format_message(label) + else: + label2 = self.format_message(label) + " (Page " + str(index) + " / " + str(num_pages) + ")" + return chatblob.page_prefix + self.format_page(label2, page) + chatblob.page_postfix + + return list(map(mapper, zip(pages, range(1, num_pages + 1)))) + + def split_by_separators(self, content, max_page_length=None, max_num_pages=None): + separators = iter(self.separators) + + separator = next(separators) + rest = content + current_page = "" + pages = [] + + while len(rest) > 0: + line, rest = self.get_next_line(rest, separator) + line_length = len(line) + + # if separator is not sufficient, try the next one + if max_page_length and line_length > max_page_length: + try: + separator = next(separators) + rest = line + rest + continue + except StopIteration: + # this is thrown when there are no more separators in the iterator + raise Exception("Could not paginate: page is too large") + + if max_num_pages == len(pages) + 1: + if max_page_length and (len(current_page) + line_length > max_page_length): + break + else: + if max_page_length and len(current_page) + line_length > max_page_length: + pages.append(current_page.strip()) + current_page = "" + + current_page += line + + current_page = current_page.strip() + if max_page_length and len(current_page) > max_page_length: + pages.append(current_page) + else: + pages.append(current_page) + + return pages + + def format_page(self, label, msg): + return "%s" % (msg, label) + + def get_next_line(self, msg, separator): + result = msg.split(separator["symbol"], 1) + line = result[0] + if len(result) == 1: + rest = "" + else: + rest = result[1:][0] + + if separator["include"]: + line += separator["symbol"] + + return line, rest + + def strip_html_tags(self, s): + if not s: + return None + + stripper = MLStripper() + stripper.feed(s) + return stripper.get_data() + + def pad_table(self, rows, fill=" "): + max_width = {} + for columns in rows: + for i, column in enumerate(columns[:-1]): + w = self.get_pixel_width(column) + if i not in max_width or max_width[i] < w: + max_width[i] = w + + for columns in rows: + adjustment = 0 + num_cols = len(columns) + for i, column in enumerate(columns): + if i == num_cols - 1: + continue + + s, new_adjustment = self.pad_string(column, adjustment + max_width[i], fill) + columns[i] = s + adjustment += new_adjustment + + return rows + + def pad_string(self, s, length, fill=" "): + if s is None: + s = "" + + s_pixel_width = self.get_pixel_width(s) + spacer_pixel_width = self.get_pixel_width(fill) + fill_width = length - s_pixel_width + if fill_width > 0: + num_spacers = round(fill_width / spacer_pixel_width) + else: + num_spacers = 0 + adjustment = fill_width - (spacer_pixel_width * num_spacers) + return s + (num_spacers * fill), adjustment + + def get_pixel_width(self, s): + if not s: + return 0 + + s = self.strip_html_tags(s) + + width = 0 + for c in s: + pixel_width = self.pixel_mapping.get(c, None) + if not pixel_width: + self.logger.warning(f"Unknown pixel width mapping for char '{c}'") + pixel_width = 8 + width += pixel_width or 8 + return width + + def format_message(self, msg, replace_br=True): + for t in ["", "", "", "", "", "", "", + "", "", "", "", "", "", + "", "", "", "", ""]: + msg = msg.replace(t, "") + if replace_br: + msg = msg.replace("
", "\n") + return msg \ + .replace("
", self.setting_service.get("header_color").get_font_color()) \ + .replace("", self.setting_service.get("header2_color").get_font_color()) \ + .replace("", self.setting_service.get("highlight_color").get_font_color()) \ + .replace("", self.setting_service.get("notice_color").get_font_color()) \ + .replace("", "") \ + .replace("", "") \ + .replace("", "") \ + .replace("", "") \ + .replace("", "") \ + .replace("", "") \ + .replace("", "") \ + .replace("", "") \ + .replace("", "") \ + .replace("", "") \ + .replace("", self.setting_service.get("neutral_color").get_font_color()) \ + .replace("", self.setting_service.get("omni_color").get_font_color()) \ + .replace("", self.setting_service.get("clan_color").get_font_color()) \ + .replace("", self.setting_service.get("unknown_color").get_font_color()) \ + .replace("", self.bot.get_char_name()) \ + .replace("", self.public_channel_service.get_org_name() or "Unknown Org") \ + .replace("", " ") \ + .replace("", "") \ + .replace("", self.setting_service.get("symbol").get_value()) \ + .replace("\n", "
") diff --git a/core/translation_service.py b/core/translation_service.py new file mode 100644 index 0000000..dbccc9b --- /dev/null +++ b/core/translation_service.py @@ -0,0 +1,102 @@ +import inspect + +import hjson + +from core.decorators import instance +from core.event_service import EventService +from core.logger import Logger +from core.setting_service import SettingService +from core.setting_types import TextSettingType +from core.tyrbot import Tyrbot +from core.util import Util + + +# noinspection PyDefaultArgument +@instance() +class TranslationService: + strings = {} + translation_callbacks = {} + language = None + lang_codes = ["en_US", "de_DE"] + LANGUAGE_SETTING = "language" + + def __init__(self): + self.logger = Logger(__name__) + + def inject(self, registry): + self.setting_service: SettingService = registry.get_instance("setting_service") + self.event_service: EventService = registry.get_instance("event_service") + self.util: Util = registry.get_instance("util") + self.bot: Tyrbot = registry.get_instance("bot") + + def pre_start(self): + self.event_service.register_event_type("reload_translation") + + def start(self): + self.setting_service.register_new("core.system", self.LANGUAGE_SETTING, "en_US", + TextSettingType(self.lang_codes), "Language of the Bot") + + self.language = self.setting_service.get_value(self.LANGUAGE_SETTING) + self.register_translation("global", self.load_global_msg) + self.setting_service.register_change_listener(self.LANGUAGE_SETTING, self.language_setting_changed) + + def register_translation(self, category, callback): + """ + Call during start + + Args: + category: str + callback: () -> {} + """ + + if len(inspect.signature(callback).parameters) != 0: + raise Exception( + "Incorrect number of arguments for handler '%s.%s()'" % (callback.__module__, callback.__name__)) + + if self.translation_callbacks.get(category) is None: + self.translation_callbacks[category] = [] + self.translation_callbacks[category].append(callback) + self.update_msg(category, callback) + + def load_global_msg(self): + with open("core/global.msg", mode="r", encoding="UTF-8") as f: + return hjson.load(f) + + def language_setting_changed(self, name, old_value, new_value): + if name == self.LANGUAGE_SETTING and new_value != old_value: + self.reload_translation(new_value) + + # This method will load another language, defined in the param 'lang' + def reload_translation(self, lang): + self.event_service.fire_event("reload_translation") + self.language = lang + for k1 in self.strings: + for callback in self.translation_callbacks.get(k1): + self.update_msg(k1, callback) + + # updates the msgs + def update_msg(self, category, callback): + data = callback() + for k in data: + if category not in self.strings: + self.strings[category] = {} + self.strings[category][k] = data[k].get(self.language) or data[k].get("en_US") + + # + # the param 'variables' accepts dictionaries ONLY. + # + def get_response(self, category, key, variables={}): + msg = "" + try: + val = self.strings[category][key] + if isinstance(val, list): + for line in val: + msg += line.format(**variables) + else: + msg = val.format(**variables) + except KeyError as e: + self.logger.error(f"translating error category '{category}' and key '{key}' with params: {variables}", e) + msg = "Error translating category: {mod} key: {key}" \ + " with params: {params}".format(mod=category, key=key, params=variables) + finally: + return msg diff --git a/core/tyrbot.py b/core/tyrbot.py new file mode 100644 index 0000000..51aee23 --- /dev/null +++ b/core/tyrbot.py @@ -0,0 +1,421 @@ +import inspect +import threading +import time + +from conf.config import BotConfig +from core.aochat import server_packets, client_packets +from core.aochat.extended_message import ExtendedMessage +from core.bot_status import BotStatus +from core.chat_blob import ChatBlob +from core.conn import Conn +from core.db import DB +from core.decorators import instance +from core.dict_object import DictObject +from core.fifo_queue import FifoQueue +from core.job_scheduler import JobScheduler +from core.logger import Logger +from core.lookup.character_service import CharacterService +from core.public_channel_service import PublicChannelService +from core.setting_service import SettingService +from core.text import Text +from modules.core.accounting.services.access_service import AccessService + + +@instance("bot") +class Tyrbot: + CONNECT_EVENT = "connect" + PACKET_EVENT = "packet" + PRIVATE_MSG_EVENT = "private_msg" + + OUTGOING_ORG_MESSAGE_EVENT = "outgoing_org_message" + OUTGOING_PRIVATE_MESSAGE_EVENT = "outgoing_private_message" + OUTGOING_PRIVATE_CHANNEL_MESSAGE_EVENT = "outgoing_private_channel_message" + + def __init__(self): + super().__init__() + self.logger = Logger(__name__) + self.ready = False + self.packet_handlers = {} + self.superadmin = [] + self.status: BotStatus = BotStatus.SHUTDOWN + self.dimension = None + self.last_timer_event = 0 + self.start_time = int(time.time()) + self.major_version = "IGNCore v2.5" + self.minor_version = "1" + self.incoming_queue = FifoQueue() + self.mass_message_queue = None + self.conns = DictObject() + + def inject(self, registry): + self.db = registry.get_instance("db") + self.character_service: CharacterService = registry.get_instance("character_service") + self.public_channel_service: PublicChannelService = registry.get_instance("public_channel_service") + self.text: Text = registry.get_instance("text") + self.setting_service: SettingService = registry.get_instance("setting_service") + self.access_service: AccessService = registry.get_instance("access_service") + self.event_service = registry.get_instance("event_service") + self.job_scheduler: JobScheduler = registry.get_instance("job_scheduler") + self.command_service = registry.get_instance("command_service") + + def init(self, config: BotConfig, registry, mmdb_parser): + self.mmdb_parser = mmdb_parser + self.dimension = config.server.dimension + self.name = config.character + self.superadmin = config.superadmin + self.modules = [x.split("/")[1] for x in config.module_paths] + self.db.exec("CREATE TABLE IF NOT EXISTS command_config (" + "command VARCHAR(50) NOT NULL, " + "sub_command VARCHAR(50) NOT NULL, " + "access_level VARCHAR(50) NOT NULL, " + "channel VARCHAR(50) NOT NULL, " + "module VARCHAR(50) NOT NULL, " + "enabled SMALLINT NOT NULL, " + "verified SMALLINT NOT NULL, " + "PRIMARY KEY (`command`, `sub_command`, `access_level`, `channel`) USING BTREE)") + self.db.exec("CREATE TABLE IF NOT EXISTS event_config (" + "event_type VARCHAR(50) NOT NULL, " + "event_sub_type VARCHAR(50) NOT NULL, " + "handler VARCHAR(255) NOT NULL, " + "description VARCHAR(255) NOT NULL, " + "module VARCHAR(50) NOT NULL, " + "enabled SMALLINT NOT NULL, " + "verified SMALLINT NOT NULL, " + "is_hidden SMALLINT NOT NULL, " + "PRIMARY KEY (`handler`) USING BTREE, " + "INDEX `event_type` (`event_type`) USING BTREE, " + "INDEX `event_sub_type` (`event_sub_type`) USING BTREE)") + self.db.exec("CREATE TABLE IF NOT EXISTS timer_event (" + "event_type VARCHAR(50) NOT NULL, " + "event_sub_type VARCHAR(50) NOT NULL, " + "handler VARCHAR(255) NOT NULL, " + "next_run INT NOT NULL, " + "INDEX `next_run` (`next_run`) USING BTREE)") + self.db.exec("CREATE TABLE IF NOT EXISTS setting (" + "name VARCHAR(50) NOT NULL, " + "value VARCHAR(255) NOT NULL, " + "description VARCHAR(255) NOT NULL, " + "module VARCHAR(50) NOT NULL, " + "verified SMALLINT NOT NULL, " + "PRIMARY KEY (`name`) USING BTREE)") + self.db.exec("CREATE TABLE IF NOT EXISTS command_alias (" + "alias VARCHAR(50) NOT NULL, " + "command VARCHAR(1024) NOT NULL, " + "enabled SMALLINT NOT NULL, " + "INDEX `alias` (`alias`) USING BTREE, " + "INDEX `command` (`command`) USING BTREE)") + self.db.exec("CREATE TABLE IF NOT EXISTS command_usage (" + "command VARCHAR(255) NOT NULL, " + "handler VARCHAR(255) NOT NULL, " + "char_id INT NOT NULL, " + "channel VARCHAR(20) NOT NULL, " + "created_at INT NOT NULL, " + "INDEX `command` (`command`) USING BTREE, " + "INDEX `char_id` (`char_id`) USING BTREE, " + "INDEX `channel` (`channel`) USING BTREE) ENGINE MEMORY") + + # self.db.exec("UPDATE db_version SET verified = 0") + self.db.exec("UPDATE db_version SET verified = 1 WHERE file = 'db_version'") + + # prepare commands, events, and settings + self.db.exec("UPDATE command_config SET verified = 0 where 1") + self.db.exec("UPDATE event_config SET verified = 0 where 1") + self.db.exec("UPDATE setting SET verified = 0 where 1") + + # load modules + registry.pre_start_all() + registry.start_all() + if self.db.shared != self.db: + self.db: DB + self.db.shared.pool.close() + # Creates a Exception for some reason?? + # self.db.shared = None + + # remove commands, events, and settings that are no longer registered + # self.db.exec("DELETE FROM db_version WHERE verified = 0") + self.db.exec("DELETE FROM command_config WHERE verified = 0") + self.db.exec("DELETE FROM event_config WHERE verified = 0") + self.db.exec("DELETE FROM timer_event WHERE handler NOT IN " + "(SELECT handler FROM event_config WHERE event_type = ?)", ["timer"]) + self.db.exec("DELETE FROM setting WHERE verified = 0") + + self.status = BotStatus.RUN + + def pre_start(self): + self.event_service.register_event_type(self.CONNECT_EVENT) + self.event_service.register_event_type(self.PACKET_EVENT) + self.event_service.register_event_type(self.PRIVATE_MSG_EVENT) + self.event_service.register_event_type(self.OUTGOING_ORG_MESSAGE_EVENT) + self.event_service.register_event_type(self.OUTGOING_PRIVATE_MESSAGE_EVENT) + self.event_service.register_event_type(self.OUTGOING_PRIVATE_CHANNEL_MESSAGE_EVENT) + + def start(self): + self.register_packet_handler(server_packets.PrivateMessage.id, self.handle_private_message, priority=40) + + def connect(self, config): + conn = self.create_conn("main") + conn.connect(config.server.host, config.server.port) + packet = conn.login(config.username, config.password, config.character) + if not packet: + self.status = BotStatus.ERROR + return False + else: + self.incoming_queue.put((conn, packet)) + + self.create_conn_thread(conn) + + if hasattr(config, 'slaves'): + self.mass_message_queue = FifoQueue() + for i, slave in enumerate(config.slaves): + conn = self.create_conn("slave" + str(i)) + conn.connect(config.server.host, config.server.port) + + packet = conn.login(slave.username, slave.password, slave.character) + if not packet: + self.status = BotStatus.ERROR + return False + else: + self.incoming_queue.put((conn, packet)) + + self.create_conn_thread(conn, self.mass_message_queue) + + return True + + def create_conn_thread(self, conn: Conn, mass_message_queue=None): + def read_packets(): + try: + while self.status == BotStatus.RUN: + packet = conn.read_packet() + if packet: + self.incoming_queue.put((conn, packet)) + + while mass_message_queue and not mass_message_queue.empty() and conn.packet_queue.is_empty(): + packet = mass_message_queue.get_or_default(block=False) + if packet: + conn.add_packet_to_queue(packet) + + except (EOFError, OSError) as e: + self.status = BotStatus.ERROR + self.logger.error("", e) + raise e + + dthread = threading.Thread(name=conn.char_name, target=read_packets, daemon=True) + dthread.start() + + def create_conn(self, _id): + if _id in self.conns: + raise Exception(f"A connection with id {_id} already exists") + + def failure_callback(): + self.status = BotStatus.ERROR + + conn = Conn(_id, failure_callback) + self.conns[_id] = conn + return conn + + # passthrough + def send_packet(self, packet): + self.conns["main"].send_packet(packet) + + def disconnect(self): + # wait for all threads to stop reading packets, then disconnect them all + time.sleep(2) + for _id, conn in self.conns.items(): + conn.disconnect() + + def run(self): + start = time.time() + + # wait for flood of packets from login to stop sending + time_waited = 0 + while time_waited < 5: + if not self.iterate(1): + time_waited += 1 + + self.logger.info("Login complete (%fs)" % (time.time() - start)) + + start = time.time() + self.event_service.fire_event("connect", None) + self.event_service.run_timer_events_at_startup() + self.logger.info("Connect events finished (%fs)" % (time.time() - start)) + self.ready = True + self.command_service.ignore = [] + timestamp = int(time.time()) + + while self.status == BotStatus.RUN: + try: + timestamp = int(time.time()) + self.check_for_timer_events(timestamp) + + self.iterate() + except Exception as e: + self.logger.error("", e) + + # run any pending jobs/events + self.check_for_timer_events(timestamp + 1) + + return self.status + + def check_for_timer_events(self, timestamp): + # timer events will execute no more often than once per second + if self.last_timer_event < timestamp: + self.last_timer_event = timestamp + self.job_scheduler.check_for_scheduled_jobs(timestamp) + self.event_service.check_for_timer_events(timestamp) + + def register_packet_handler(self, packet_id: int, handler, priority=50): + """ + Call during pre_start + + Args: + packet_id: int + handler: (conn, packet) -> void + priority: int + """ + + if len(inspect.signature(handler).parameters) != 2: + raise Exception( + "Incorrect number of arguments for handler '%s.%s()'" % (handler.__module__, handler.__name__)) + + handlers = self.packet_handlers.get(packet_id, []) + handlers.append(DictObject({"priority": priority, "handler": handler})) + self.packet_handlers[packet_id] = sorted(handlers, key=lambda x: x.priority) + + def remove_packet_handler(self, packet_id, handler): + handlers = self.packet_handlers.get(packet_id, []) + for h in handlers: + if h.handler == handler: + handlers.remove(h) + + def iterate(self, timeout=0.1): + conn, packet = self.incoming_queue.get_or_default(timeout=timeout, default=(None, None)) + if packet: + if isinstance(packet, server_packets.SystemMessage): + packet = self.system_message_ext_msg_handling(packet) + self.logger.log_chat(conn.id, "SystemMessage", None, packet.extended_message.get_message()) + elif isinstance(packet, server_packets.PublicChannelMessage): + packet = self.public_channel_message_ext_msg_handling(packet) + if isinstance(packet, server_packets.BuddyAdded): + if packet.char_id == 0: + return + + for handler in self.packet_handlers.get(packet.id, []): + handler.handler(conn, packet) + + self.event_service.fire_event("packet:" + str(packet.id), packet) + + return packet + + def public_channel_message_ext_msg_handling(self, packet: server_packets.PublicChannelMessage): + msg = packet.message + if msg.startswith("~&") and msg.endswith("~"): + try: + msg = msg[2:-1].encode("utf-8") + category_id = self.mmdb_parser.read_base_85(msg[0:5]) + instance_id = self.mmdb_parser.read_base_85(msg[5: 10]) + template = self.mmdb_parser.get_message_string(category_id, instance_id) + params = self.mmdb_parser.parse_params(msg[10:]) + packet.extended_message = ExtendedMessage(category_id, instance_id, template, params) + except Exception as e: + self.logger.error("Error handling extended message for packet: " + str(packet), e) + return packet + + def system_message_ext_msg_handling(self, packet: server_packets.SystemMessage): + try: + category_id = 20000 + instance_id = packet.message_id + template = self.mmdb_parser.get_message_string(category_id, instance_id) + params = self.mmdb_parser.parse_params(packet.message_args) + packet.extended_message = ExtendedMessage(category_id, instance_id, template, params) + except Exception as e: + self.logger.error("Error handling extended message: " + str(packet), e) + return packet + + def send_org_message(self, msg, add_color=True, fire_outgoing_event=True, conn_id="main"): + org_channel_id = self.public_channel_service.org_channel_id + if org_channel_id is None: + self.logger.debug("ignoring message to org channel since the org_channel_id is unknown") + else: + color = self.setting_service.get("org_channel_color").get_font_color() if add_color else "" + pages = self.get_text_pages(msg, self.setting_service.get("org_channel_max_page_length").get_value()) + for page in pages: + packet = client_packets.PublicChannelMessage(org_channel_id, color + page, "") + self.conns[conn_id].add_packet_to_queue(packet) + + if fire_outgoing_event: + self.event_service.fire_event(self.OUTGOING_ORG_MESSAGE_EVENT, + DictObject({"org_channel_id": org_channel_id, "message": msg})) + + def send_private_message(self, char_id, msg, add_color=True, fire_outgoing_event=True, conn_id="main"): + if char_id is None: + raise Exception("Cannot send message, char_id is empty") + else: + color = self.setting_service.get("private_message_color").get_font_color() if add_color else "" + pages = self.get_text_pages(msg, self.setting_service.get("private_message_max_page_length").get_value()) + for page in pages: + # self.logger.log_tell(conn_id, "To", self.character_service.get_char_name(char_id), page) + packet = client_packets.PrivateMessage(char_id, color + page, "\0") + self.conns[conn_id].add_packet_to_queue(packet) + + if fire_outgoing_event: + self.event_service.fire_event(self.OUTGOING_PRIVATE_MESSAGE_EVENT, DictObject({"char_id": char_id, + "message": msg})) + + def send_private_channel_message(self, msg, private_channel_id=None, add_color=True, fire_outgoing_event=True, + conn_id="main"): + if private_channel_id is None: + private_channel_id = self.get_char_id() + color = self.setting_service.get("private_channel_color").get_font_color() if add_color else "" + pages = self.get_text_pages(msg, self.setting_service.get("private_channel_max_page_length").get_value()) + for page in pages: + packet = client_packets.PrivateChannelMessage(private_channel_id, color + page, "\0") + self.conns[conn_id].send_packet(packet) + + if fire_outgoing_event and private_channel_id == self.get_char_id(): + self.event_service.fire_event(self.OUTGOING_PRIVATE_CHANNEL_MESSAGE_EVENT, + DictObject({"private_channel_id": private_channel_id, "message": msg})) + + def send_mass_message(self, char_id, msg, add_color=True, log_message=False): + # self.logger.log_tell('spam', 'To', self.character_service.get_char_name(char_id), msg) + if not char_id: + self.logger.warning("Could not send message to empty char_id") + if len(self.conns.items()) == 1: + self.send_private_message(char_id, msg, add_color, log_message) + else: + color = self.setting_service.get("private_message_color").get_font_color() if add_color else "" + pages = self.get_text_pages(msg, self.setting_service.get("private_message_max_page_length").get_value()) + for page in pages: + if log_message: + self.logger.log_tell("spam", "To", self.character_service.get_char_name(char_id), page) + + if self.mass_message_queue: + packet = client_packets.PrivateMessage(char_id, color + page, "\0") + self.mass_message_queue.put(packet) + else: + packet = client_packets.PrivateMessage(char_id, color + page, "spam") + self.conns["main"].send_packet(packet) + + def handle_private_message(self, conn: Conn, packet: server_packets.PrivateMessage): + # self.logger.log_tell(conn.id, "From", self.character_service.get_char_name(packet.char_id), packet.message) + self.event_service.fire_event(self.PRIVATE_MSG_EVENT, packet) + + def get_text_pages(self, msg, max_page_length): + if isinstance(msg, ChatBlob): + return self.text.paginate(msg, max_page_length=max_page_length) + else: + return [self.text.format_message(msg)] + + def is_ready(self): + return self.ready + + def shutdown(self): + self.status = BotStatus.SHUTDOWN + + def restart(self): + self.status = BotStatus.RESTART + + def get_char_name(self): + return self.conns["main"].char_name + + def get_char_id(self): + return self.conns["main"].char_id diff --git a/core/upgrade.py b/core/upgrade.py new file mode 100644 index 0000000..63153c3 --- /dev/null +++ b/core/upgrade.py @@ -0,0 +1,68 @@ +from core.db import DB +from core.logger import Logger +from core.registry import Registry + +db = Registry.get_instance("db") +logger = Logger("core.upgrade") + + +def table_info(table_name): + if db.type == DB.MARIADB: + data = db.query("DESCRIBE %s" % table_name) + + def normalize_table_info(row): + row.name = row.Field + row.type = row.Type.upper() + return row + + return list(map(normalize_table_info, data)) + else: + raise Exception("Unknown database type '%s'" % db.type) + + +def table_exists(table_name): + # noinspection PyBroadException + try: + db.query(f"SELECT * FROM {table_name} LIMIT 1") + return True + except Exception: + return False + + +def column_exists(table_name, column_name): + # noinspection PyBroadException + try: + db.query(f"SELECT {column_name} FROM {table_name} LIMIT 1") + return True + except Exception: + return False + + +def update_version(v): + v += 1 + logger.info("Upgrading db to version '%d'" % v) + db.exec("UPDATE db_version SET version = ? WHERE file = 'db_version' and bot =?", [v, db.name]) + return v + + +def get_version(): + row = db.query_single("SELECT version FROM db_version WHERE file = 'db_version' and bot=?", [db.name]) + if row: + return int(row.version) + else: + return 0 + + +def run_upgrades(): + version = get_version() + logger.info("Database at version '%d'" % version) + + if version == 0: + db.exec("INSERT INTO db_version (file, version, bot, verified) VALUES ('db_version', ?, ?, 1)", [0, db.name]) + version = update_version(version) + db.create_view("db_version") + if version == 1: + if table_exists("account"): + if not column_exists("account", "auto_invite"): + db.exec("ALTER TABLE account ADD COLUMN auto_invite INT(2) default 0") + version = update_version(version) diff --git a/core/usage_service.py b/core/usage_service.py new file mode 100644 index 0000000..53588be --- /dev/null +++ b/core/usage_service.py @@ -0,0 +1,18 @@ +import time + +from core.decorators import instance +from core.logger import Logger + + +@instance() +class UsageService: + def __init__(self): + self.logger = Logger(__name__) + + def inject(self, registry): + self.db = registry.get_instance("db") + + def add_usage(self, command, handler, char_id, channel): + self.db.exec("INSERT INTO command_usage (command, handler, char_id, channel, created_at) " + "VALUES (?, ?, ?, ?, ?)", + [command, handler, char_id, channel, int(time.time())]) diff --git a/core/util.py b/core/util.py new file mode 100644 index 0000000..b14abe6 --- /dev/null +++ b/core/util.py @@ -0,0 +1,293 @@ +import datetime +import locale +import math +import re + +import pytz + +from core.decorators import instance +from core.dict_object import DictObject +from core.text import Text + + +@instance() +class Util: + budatime_full_regex = re.compile("^([0-9]+[a-z]+)+$", re.IGNORECASE) + budatime_unit_regex = re.compile("([0-9]+)([a-z]+)", re.IGNORECASE) + + def __init__(self): + # needed for self.format_number() to work properly + locale.setlocale(locale.LC_NUMERIC, '') + + self.abilities = [ + "Agility", + "Intelligence", + "Psychic", + "Stamina", + "Strength", + "Sense" + ] + + self.time_units = [ + { + "units": ["yr", "years", "year", "y"], + "conversion_factor": 31536000 + }, { + "units": ["month", "months", "mo"], + "conversion_factor": 2592000 + }, { + "units": ["week", "weeks", "w"], + "conversion_factor": 604800 + }, { + "units": ["day", "days", "d"], + "conversion_factor": 86400 + }, { + "units": ["hr", "hours", "hour", "hrs", "h"], + "conversion_factor": 3600 + }, { + "units": ["min", "mins", "m"], + "conversion_factor": 60 + }, { + "units": ["sec", "secs", "s"], + "conversion_factor": 1 + } + ] + + def inject(self, registry): + self.text: Text = registry.get_instance("text") + + def get_handler_name(self, handler): + return handler.__module__ + "." + handler.__qualname__ + + def get_module_name(self, handler): + handler_name = self.get_handler_name(handler) + parts = handler_name.split(".") + return parts[1] + "." + parts[2] + + def parse_time(self, budatime, default=0): + unixtime = 0 + + if not self.budatime_full_regex.search(budatime): + return default + + matches = self.budatime_unit_regex.finditer(budatime) + + for match in matches: + for time_unit in self.time_units: + if match.group(2).lower() in time_unit["units"]: + unixtime += int(match.group(1)) * time_unit["conversion_factor"] + continue + + return unixtime + + def time_to_readable(self, unixtime, min_unit="sec", max_unit="day", max_levels=2): + if unixtime == 0: + return "0 secs" + + # handle negative as positive, and add negative sign at the end + is_negative = False + if unixtime < 0: + is_negative = True + unixtime *= -1 + + found_max_unit = False + time_shift = "" + levels = 0 + for time_unit in self.time_units: + unit = time_unit["units"][0] + + if max_unit in time_unit["units"]: + found_max_unit = True + + # continue to skip until we have found the max unit + if not found_max_unit: + continue + + unit_value = math.floor(unixtime / time_unit["conversion_factor"]) + + if unit_value == 0: + # do not show units where unit_value is 0 + pass + elif unit_value == 1: + # show singular where unit_value is 1 + time_shift += str(unit_value) + " " + unit + " " + else: + # show plural where unit_value is greater than 1 + time_shift += str(unit_value) + " " + unit + "s " + + unixtime %= time_unit["conversion_factor"] + + # record level after the first a unit has a length + if levels or unit_value >= 1: + levels += 1 + + if levels == max_levels: + break + + # if we have reached the min unit, then break, unless we have no output, in which case we continue + if time_shift and min_unit in time_unit["units"]: + break + + return ("-" if is_negative else "") + time_shift.strip() + + def get_ability(self, ability_str): + ability_str = ability_str.capitalize() + for ability in self.abilities: + if ability.startswith(ability_str): + return ability + return None + + def get_all_abilities(self): + return self.abilities.copy() + + def get_title_level(self, level): + if level < 5: + return 0 + elif level < 15: + return 1 + elif level < 50: + return 2 + elif level < 100: + return 3 + elif level < 150: + return 4 + elif level < 190: + return 5 + elif level < 205: + return 6 + else: + return 7 + + def get_level_range_tl(self, tl): + if tl == 0: + return 0, 4 + elif tl == 1: + return 5, 14 + elif tl == 2: + return 15, 49 + elif tl == 3: + return 50, 99 + elif tl == 4: + return 100, 149 + elif tl == 5: + return 150, 189 + elif tl == 6: + return 190, 204 + elif tl == 7: + return 205, 300 + else: + return 0, 0 + + def format_number(self, number): + return locale.format_string("%.*f", (0, number), grouping=True) + + def get_profession(self, search, long=True): + search = search.lower() + + if search in ["adv", "advy", "adventurer"]: + return "Adventurer" if long else "Adv" + elif search in ["agent"]: + return "Agent" if long else "Agent" + elif search in ["crat", "bureaucrat"]: + return "Bureaucrat" if long else "Crat" + elif search in ["doc", "doctor"]: + return "Doctor" if long else "Doc" + elif search in ["enf", "enfo", "enforcer"]: + return "Enforcer" if long else "Enf" + elif search in ["eng", "engi", "engy", "engineer"]: + return "Engineer" if long else "Eng" + elif search in ["fix", "fixer"]: + return "Fixer" if long else "Fix" + elif search in ["keep", "keeper"]: + return "Keeper" if long else "Keep" + elif search in ["ma", "martial", "martialartist", "martial artist"]: + return "Martial Artist" if long else "MA" + elif search in ["mp", "meta", "metaphysicist", "meta-physicist"]: + return "Meta-Physicist" if long else "MP" + elif search in ["nt", "nano", "nanotechnician", "nano-technician"]: + return "Nano-Technician" if long else "NT" + elif search in ["sha", "shade"]: + return "Shade" if long else "Shade" + elif search in ["sol", "sold", "soldier"]: + return "Soldier" if long else "Sold" + elif search in ["tra", "trad", "trader"]: + return "Trader" if long else "Trader" + elif search in ["gen", "general"]: + return "General" if long else "UKN" + else: + return None + + def get_prof_icon(self, search, large=False): + large = "_LARGE" if large else "" + + search = self.get_profession(search) + if search == "Adventurer": + return self.text.make_image(f"id:GFX_GUI_ICON_PROFESSION{large}_6", "tdb") + elif search == "Agent": + return self.text.make_image(f"id:GFX_GUI_ICON_PROFESSION{large}_5", "tdb") + elif search == "Bureaucrat": + return self.text.make_image(f"id:GFX_GUI_ICON_PROFESSION{large}_8", "tdb") + elif search == "Doctor": + return self.text.make_image(f"id:GFX_GUI_ICON_PROFESSION{large}_10", "tdb") + elif search == "Enforcer": + return self.text.make_image(f"id:GFX_GUI_ICON_PROFESSION{large}_9", "tdb") + elif search == "Engineer": + return self.text.make_image(f"id:GFX_GUI_ICON_PROFESSION{large}_3", "tdb") + elif search == "Fixer": + return self.text.make_image(f"id:GFX_GUI_ICON_PROFESSION{large}_4", "tdb") + elif search == "Keeper": + return self.text.make_image(f"id:GFX_GUI_ICON_PROFESSION{large}_14", "tdb") + elif search == "Martial Artist": + return self.text.make_image(f"id:GFX_GUI_ICON_PROFESSION{large}_2", "tdb") + elif search == "Meta-Physicist": + return self.text.make_image(f"id:GFX_GUI_ICON_PROFESSION{large}_12", "tdb") + elif search == "Nano-Technician": + return self.text.make_image(f"id:GFX_GUI_ICON_PROFESSION{large}_11", "tdb") + elif search == "Shade": + return self.text.make_image(f"id:GFX_GUI_ICON_PROFESSION{large}_15", "tdb") + elif search == "Soldier": + return self.text.make_image(f"id:GFX_GUI_ICON_PROFESSION{large}_1", "tdb") + elif search == "Trader": + return self.text.make_image(f"id:GFX_GUI_ICON_PROFESSION{large}_7", "tdb") + else: + return "" + + def get_all_professions(self): + return ["Adventurer", "Agent", "Bureaucrat", "Doctor", "Enforcer", "Engineer", "Fixer", "Keeper", + "Martial Artist", "Meta-Physicist", "Nano-Technician", "Shade", "Soldier", "Trader"] + + def format_date(self, timestamp): + value = datetime.datetime.fromtimestamp(timestamp, tz=pytz.UTC) + return value.strftime('%Y-%m-%d') + + def format_time(self, timestamp): + value = datetime.datetime.fromtimestamp(timestamp, tz=pytz.UTC) + return value.strftime('%H:%M:%S') + + def format_datetime(self, timestamp): + value = datetime.datetime.fromtimestamp(timestamp, tz=pytz.UTC) + return value.strftime('%Y-%m-%d %H:%M:%S %Z') + + def interpolate_value(self, interpolated_ql, interpolation_ranges, precision=0): + min_val = None + max_val = None + for ql, v in interpolation_ranges.items(): + # required to avoid division by zero + if ql == interpolated_ql: + return v + + if interpolated_ql >= ql and (not min_val or ql > min_val.ql): + min_val = DictObject({"ql": ql, "val": v}) + + if interpolated_ql <= ql and (not max_val or ql < max_val.ql): + max_val = DictObject({"ql": ql, "val": v}) + + if not min_val or not max_val: + return None + + return round((max_val.val - min_val.val) / (max_val.ql - min_val.ql) * + (interpolated_ql - min_val.ql) + min_val.val, precision) + + # noinspection PyMethodMayBeStatic + def get_offset_limit(self, page_size, page_number): + return (page_number - 1) * page_size, page_size diff --git a/dummy.start.sh b/dummy.start.sh new file mode 100644 index 0000000..93ff14e --- /dev/null +++ b/dummy.start.sh @@ -0,0 +1,31 @@ +#!/usr/bin/env bash + +PYTHON_BINARY=python3 +if ! [ -x "$(command -v $PYTHON_BINARY)" ]; then + PYTHON_BINARY=python +fi + +$PYTHON_BINARY --version + +# Ensure virtualenv is present. This is not always the case +$PYTHON_BINARY -m pip install virtualenv --user + +# Create and activate the virtualenv. This can be done even if it already exists +# and will ensure setuptools, wheel and pip are up to date +$PYTHON_BINARY -m virtualenv venv +source venv/bin/activate + +# From there on we use 'pip' and 'python' (refers to versions in the virtualenv) +pip install -r requirements.txt + +set -o pipefail -o errexit + +# The bot uses non-zero exit codes to signal state. +# The bot will restart until it returns an exit code of zero. +while true; do + # shellcheck disable=SC1073 + # shellcheck disable=SC1072 + # shellcheck disable=SC1009 + python bootstrap.py ##bot_name## && exit + sleep 1 +done diff --git a/modules/core/accounting/account_controller.py b/modules/core/accounting/account_controller.py new file mode 100644 index 0000000..d49fa73 --- /dev/null +++ b/modules/core/accounting/account_controller.py @@ -0,0 +1,263 @@ +import time + +from core import command_request +from core.chat_blob import ChatBlob +from core.command_param_types import Const, Character, Options +from core.db import DB +from core.decorators import instance, command +from core.event_service import EventService +from core.lookup.character_service import CharacterService +from core.lookup.pork_service import PorkService +from core.text import Text +from core.translation_service import TranslationService +from core.util import Util +from modules.core.accounting.preference_controller import PreferenceController +from modules.core.accounting.services.access_service import AccessService +from modules.core.accounting.services.account_service import AccountService + + +@instance() +class AccountController: + def inject(self, registry): + self.bot = registry.get_instance("bot") + self.buddy_service = registry.get_instance("buddy_service") + self.util: Util = registry.get_instance("util") + self.ts: TranslationService = registry.get_instance("translation_service") + self.db: DB = registry.get_instance("db") + self.character_service: CharacterService = registry.get_instance("character_service") + self.account_service: AccountService = registry.get_instance("account_service") + self.event_service: EventService = registry.get_instance("event_service") + self.getresp = self.ts.get_response + self.pork_service: PorkService = registry.get_instance("pork_service") + self.text: Text = registry.get_instance("text") + self.preferences: PreferenceController = registry.get_instance("preference_controller") + self.access_service: AccessService = registry.get_instance("access_service") + + @command(command="account", params=[], access_level="member", + description="View your account") + def account(self, request: command_request): + out = self.show_account(request.sender.char_id) + self.bot.send_mass_message(request.sender.char_id, out) + + @command(command="accounts", params=[Const('online', is_optional=True)], access_level="moderator", + description="View all accounts") + def accounts(self, request: command_request, online): + accs = self.account_service.get_all_members(True if online else False) + main = 0 + main_name = "" + entries = [] + for entry in accs: + out = "" + if main != entry.main: + main = entry.main + out += f"\n<{entry.faction.lower()}>{entry.name}: " \ + f"[{self.text.make_tellcmd('D', f'account {entry.name}')}]\n" + main_name = entry.name + n = f"N" if entry.last_seen == 0 else "" + out += f" {self.util.get_prof_icon(entry.profession)}" \ + f" {self.text.zfill(entry.level, 220)}/{self.text.zfill(entry.ai_level, 30)} " \ + f"<{entry.faction.lower()}>{entry.name} {n}\n" + entries.append([main_name, out]) + out = "" + msg = sorted(entries, key=lambda k: k[0]) + for _, mess in msg: + out += mess + self.bot.send_mass_message(request.sender.char_id, ChatBlob("All accounts", out)) + + @command(command="points", params=[], access_level="member", + description="View your points") + def points(self, request: command_request): + alts = self.account_service.get_account(request.sender.char_id) + self.bot.send_mass_message(request.sender.char_id, + f"So far, you've piled {alts.points} points up.") + + @command(command="account", params=[Character("user")], + access_level="moderator", + sub_command="moderate", description="Lookup account of another char") + def display_account(self, _, user): + if not user.char_id: + return f"Character {user.name} not found." + return self.show_account(user.char_id, True) + + @command(command="account", params=[Const("add"), Character("char")], + access_level="moderator", + sub_command="moderate", description="Create a new account for given character") + def add_account(self, request: command_request, _, user): + if not user.char_id: + return f"Character {user.name} not found." + if self.account_service.get_account(user.char_id): + self.account_service.account_enable(user.char_id) + self.buddy_service.add_buddy(user.char_id, "member") + self.account_service.add_log(request.sender.char_id, "system", + f"Opened Account for {user.name}.", + request.sender.char_id) + self.account_service.add_log(user.char_id, "system", + f"Account has been reopened by {request.sender.name}.", + request.sender.char_id) + return f"There's already an account for character {user.name}; It has been enabled." + count = self.account_service.create_users([(user.char_id, user.char_id, 0, time.time(), time.time())]) + if count > 0: + self.buddy_service.add_buddy(user.char_id, "member") + self.account_service.add_log(request.sender.char_id, "system", + f"Created Account for {user.name}.", + request.sender.char_id) + self.account_service.add_log(user.char_id, "system", + f"Account has been created by {request.sender.name}.", + request.sender.char_id) + self.bot.send_mass_message(user.char_id, + f"Your Account has been opened by " + f"{request.sender.name}.") + return f"Character {user.name}'s Account has been created!" + else: + return f"There's already an account for character {user.name}." + + @command(command="account", params=[Const("rem"), Character("char")], + access_level="moderator", + sub_command="moderate", description="Disable a new account for given character") + def rem_account(self, request: command_request, _, user): + if not user.char_id: + return f"Character {user.name} not found." + if not self.access_service.has_sufficient_access_level(request.sender.char_id, user.char_id): + return f"The user {user.name} has a higher rank then you, you cant do that." + disabled = self.account_service.account_disable(user.char_id) + if disabled: + self.buddy_service.remove_buddy(user.char_id, "member") + self.account_service.add_log(request.sender.char_id, "system", + f"Disabled Account of {user.name}.", + request.sender.char_id) + self.account_service.add_log(user.char_id, "system", + f"Account disabled by {request.sender.name}.", + request.sender.char_id) + return f"Character {user.name}'s Account has been disabled!" + else: + return f"There's no active account for character {user.name}." + + @command(command="account", params=[Const("purge"), Character("char")], + access_level="admin", + sub_command="modify", description="Purge a user from the database") + def purge_account(self, request: command_request, _, user): + if not user.char_id: + return f"Character {user.name} not found." + if not self.access_service.has_sufficient_access_level(request.sender.char_id, user.char_id): + return f"The user {user.name} has a higher rank then you, you cant do that." + account = self.account_service.get_alts(user.char_id) + if account: + for alt in account: + self.buddy_service.remove_buddy(alt.char_id, "member") + self.db.exec("DELETE FROM notes where char_id=?", [alt.char_id]) + self.db.exec("DELETE FROM account where main=?", [account[0].main]) + self.db.exec("DELETE FROM account_log where char_id=?", [account[0].main]) + self.db.exec("DELETE FROM command_usage where char_id=?", [account[0].main]) + self.db.exec("DELETE FROM pending_accounts where main=? or alt=?", [account[0].main, account[0].main]) + self.db.exec("DELETE FROM mail where recipient=? or sender=?", [account[0].main, account[0].main]) + self.account_service.add_log(request.sender.char_id, "system", + f"Disabled Account of {user.name}.", + request.sender.char_id) + return f"Character {user.name}'s Account has been purged!" + else: + return f"There's no active account for character {user.name}." + + @command(command="account", + params=[Const("rank"), Options(["admin", "moderator", "council", "leader"]), Character("user")], + access_level="admin", sub_command="modify", description="Add a rank to an Account") + def set_rank(self, request: command_request, _, rank: str, user): + if not user.char_id: + return f"Character {user.name} not found." + user = self.account_service.get_main(user.char_id) + if not user: + return f"No account for {user.name} found." + # is Superadmin + if rank == "admin" and \ + self.account_service.check_superadmin(self.account_service.get_main(request.sender.char_id).char_id): + if "admin" in self.account_service.get_ranks(user.char_id): + return f"{user.name} already has the rank " \ + f"{rank.capitalize()}." + else: + self.account_service.add_rank(user.char_id, "admin") + return f"{user.name} got promoted to the rank " \ + f"{rank.capitalize()}." + # is Admin + if self.account_service.check_admin(self.account_service.get_main(request.sender.char_id).char_id) \ + or self.account_service.check_superadmin(self.account_service.get_main(request.sender.char_id).char_id): + if rank.lower() in self.account_service.get_ranks(user.char_id): + return f"{user.name} already has the rank " \ + f"{rank.capitalize()}." + else: + self.account_service.add_rank(user.char_id, rank.lower()) + return f"{user.name} got promoted to the rank " \ + f"{rank.capitalize()}." + return "You can't do that." + + @command(command="account", + params=[Options(["delrank", "remrank"]), Options(["admin", "moderator", "council", "leader"]), + Character("user")], + access_level="admin", sub_command="modify", description="Remove a rank from an Account") + def rem_rank(self, request: command_request, _, rank: str, user): + if not user.char_id: + return f"Character {user.name} not found." + user = self.account_service.get_main(user.char_id) + # is Superadmin + if rank == "admin" and self.account_service.check_superadmin( + self.account_service.get_main(request.sender.char_id).char_id): + if "admin" not in self.account_service.get_ranks(user.char_id): + return f"{user.name} is not in the " \ + f"{rank.capitalize()} group." + else: + self.account_service.del_rank(user.char_id, "admin") + return f"{user.name} is nolonger in the " \ + f"{rank.capitalize()} group." + # is Admin + elif self.account_service.check_admin(self.account_service.get_main(request.sender.char_id).char_id): + if rank.lower() not in self.account_service.get_ranks(user.char_id): + return f"{user.name} is not in the " \ + f"{rank.capitalize()} group." + else: + self.account_service.del_rank(user.char_id, rank.lower()) + return f"{user.name} is nolonger in the " \ + f"{rank.capitalize()} group." + + def show_account(self, char_id, mod=False) -> str: + + alts = self.account_service.get_alts(char_id) + if len(alts) < 1: + return "No Account registered for this user." + prefs = self.preferences.get_pref_view_small(alts[0]) + response = f"
{alts[0].name}'s Account
\n\n" \ + f" Owner: {alts[0].name} ({alts[0].char_id}) " \ + f"[{self.text.make_tellcmd('W', f'whois {alts[0].name}')}] " \ + f"[{self.text.make_tellcmd('Alts', f'alts {alts[0].name}')}] " \ + f"({len(alts)})\n" + if not mod: + response += f" Options: {prefs}\n" + response += f" Points: {alts[0].points}\n" + access_levels = {"Member": self.account_service.check_member(alts[0].char_id), + "Officer": self.account_service.check_officer(alts[0].char_id), + "General": self.account_service.check_general(alts[0].char_id), + "President": self.account_service.check_president(alts[0].char_id), + "Leader": self.account_service.check_leader(alts[0].char_id), + "Council": self.account_service.check_council(alts[0].char_id), + "Moderator": self.account_service.check_moderator(alts[0].char_id), + "Admin": self.account_service.check_admin(alts[0].char_id)} + perms = [] + for key, value in access_levels.items(): + if value: + perms.append(key) + response += f" Status: {'Open' if alts[0].disabled == 0 else 'Closed'}\n" + response += f" Created at: {self.util.format_datetime(alts[0].created)}\n" + response += f" Permissions: {', '.join(perms)}\n" + if alts[0].discord_joined == 1: + joined = '(Joined server)' + else: + joined = '(Left server)' if alts[0].discord_invite != '' else 'Never joined' + response += f" Discord: {alts[0].discord_handle} {joined}\n\n" + log_types = ['Points', 'Loot', 'Raid', 'Public', 'Admin', 'System'] + response += " Logs: [" + for i in log_types: + response += f" {self.text.make_tellcmd(i, f'account log {i.lower()} {alts[0].name} 100')}" + response += " ]\n\n" + + response += "
Last 20 Logs
\n" + rows = self.account_service.get_logs(alts[0].char_id, limit=20) + for i in rows: + response += self.account_service.format_entry(i) + return self.text.format_page(f"{alts[0].name}'s Account", response) diff --git a/modules/core/accounting/account_log_controller.py b/modules/core/accounting/account_log_controller.py new file mode 100644 index 0000000..91e7b1f --- /dev/null +++ b/modules/core/accounting/account_log_controller.py @@ -0,0 +1,82 @@ +from core import command_request +from core.aochat.BaseModule import BaseModule +from core.chat_blob import ChatBlob +from core.command_param_types import Const, Options, Int, Character, Any +from core.db import DB +from core.decorators import instance, command +from core.event_service import EventService +from core.lookup.character_service import CharacterService +from core.lookup.pork_service import PorkService +from core.text import Text +from core.util import Util +from modules.core.accounting.preference_controller import PreferenceController +from modules.core.accounting.services.account_service import AccountService + + +@instance() +class AccountLogController(BaseModule): + + # noinspection DuplicatedCode + def inject(self, registry): + self.bot = registry.get_instance("bot") + self.buddy_service = registry.get_instance("buddy_service") + self.util: Util = registry.get_instance("util") + self.db: DB = registry.get_instance("db") + self.character_service: CharacterService = registry.get_instance("character_service") + self.account_service: AccountService = registry.get_instance("account_service") + self.event_service: EventService = registry.get_instance("event_service") + self.pork_service: PorkService = registry.get_instance("pork_service") + self.text: Text = registry.get_instance("text") + self.preferences: PreferenceController = registry.get_instance("preference_controller") + + @command(command="account", params=[Const("log"), Options(["public", "raid", "loot"]), + Character("char"), Int("count", is_optional=True)], access_level="member", + description="Lookup logentries of a Account", + sub_command="public") + def account_log_1(self, _, _1, log_type, user, count): + main = self.account_service.get_main(user.char_id).char_id + entries = self.account_service.get_logs(main, log_type=log_type, limit=count or 25) + return ChatBlob(f"Logentries for {user.name} in the category {log_type}", self.display_logs(entries)) + + @command(command="account", + params=[Const("log"), Options(["admin", "system", "points"]), + Character("char"), Int("count", is_optional=True)], + access_level="moderator", + description="Lookup logentries of a Account", + sub_command="moderate") + def account_log_2(self, _, _1, log_type, user, count): + main = self.account_service.get_main(user.char_id).char_id + entries = self.account_service.get_logs(main, log_type=log_type, limit=count or 25) + return ChatBlob(f"Logentries for {user.name} in the category {log_type}", self.display_logs(entries)) + + @command(command="account", params=[Const("addlog"), Options(["admin", "public"]), + Character("char"), Any("text")], access_level="moderator", + description="Add a log entry to an Account", + sub_command="moderate") + def account_add_log(self, request: command_request, _, log_type, user, text): + main = self.account_service.get_main(user.char_id).char_id + self.account_service.add_log(main, log_type, text, request.sender.char_id) + + # noinspection LongLine + @command(command="account", params=[Const("log"), Const("id"), Int("id")], access_level="moderator", + description="View a logentry of an user", + sub_command="moderate") + def account_view_log(self, _, _1, _2, log_id): + entry = self.account_service.get_log_by_id(log_id) + if entry: + return ChatBlob(f"Information about Logentry {log_id}", + f"ID: {entry.log_id}\n" + f"Type: {entry.type.capitalize()}\n" + f"Affected Main: {self.character_service.resolve_char_to_name(entry.char_id)}\n" + f"Responsible Leader: {self.character_service.resolve_char_to_name(entry.leader_id)}\n" + f"Points: {f'+{entry.delta}' if entry.delta > 0 else f'{entry.delta}'}\n" + f"Message: {entry.reason}\n" + f"Logging Time: {self.util.format_datetime(entry.created_at)}") + else: + return f"No Logentry with ID {id} found." + + def display_logs(self, entries) -> str: + blob = "" + for entry in entries: + blob += self.account_service.format_entry(entry) + return blob diff --git a/modules/core/accounting/alts.msg b/modules/core/accounting/alts.msg new file mode 100644 index 0000000..3b17d5f --- /dev/null +++ b/modules/core/accounting/alts.msg @@ -0,0 +1,66 @@ +{ + "list": { + "en_US": "Alts of {char} ({amount})", + "de_DE": "Alts von {char} ({amount})" + }, + "new_main": { + "en_US": "{char} character has been set as your main. Your preferences have been reset.", + "de_DE": "Dein neuer Main ist {char}." + }, + "not_an_alt": { + "en_US": "Error! This character cannot be set as your main since you do not have any alts", + "de_DE": "Error! Da du keine Alts hast, kannst du auch keinen Main Charakter setzen." + }, + "already_main": { + "en_US": "Error! This character is already set as your main.", + "de_DE": "Error! Dieser Charakter ist bereits dein Main." + }, + "add_fail_self": { + "en_US": "Error! You cannot register yourself as an alt.", + "de_DE": "Error! Du kannst dich nicht als dein eigener Alt registrieren." + }, + "add_success_target": { + "en_US": "{char} has added you as an alt.", + "de_DE": "{char} hat dich als seinen Alt hinzugefügt." + }, + "add_success_self": { + "en_US": "{char} has been added as your alt.", + "de_DE": "{char} wurde zu deinen Alts hinzugefügt." + }, + "add_fail_already": { + "en_US": "Error! {char} already has alts.", + "de_DE": "Error! {char} hat bereits alts." + }, + "rem_success": { + "en_US": "{char} has been removed as your alt.", + "de_DE": "{char} wurde von deinen Alts entfernt." + }, + "rem_fail_not": { + "en_US": "Error! {char} is not your alt.", + "de_DE": "Error! {char} ist kein Alt von dir." + }, + "rem_fail_main": { + "en_US": "Error! You cannot remove your main.", + "de_DE": "Error! Du kannst deinen Main nicht entfernen." + }, + "altadmin_add_same": { + "en_US": "Error! alt and main are identical.", + "de_DE": "Error! Der Alt und Main Charakter sind identisch." + }, + "altadmin_add_success": { + "en_US": "The Toon {alt} got added as an alt of {main} successfully.", + "de_DE": "Der Charakter {alt} ist nun ein Alt von {main}." + }, + "altadmin_rem_success": { + "en_US": "{alt} is nolonger an alt of {main}.", + "de_DE": "{alt} ist nun kein Alt von {main} mehr." + }, + "altadmin_rem_fail_not": { + "en_US": "Error! {alt} is not an alt of {main}.", + "de_DE": "Error! {alt} ist kein Alt von {main}." + }, + "altadmin_rem_fail_main": { + "en_US": "Error! Main Characters may not get removed from their alt list.", + "de_DE": "Error! Du kannst keinen Main von seiner Altliste entfernen." + } +} diff --git a/modules/core/accounting/alts_controller.py b/modules/core/accounting/alts_controller.py new file mode 100644 index 0000000..71f0acd --- /dev/null +++ b/modules/core/accounting/alts_controller.py @@ -0,0 +1,188 @@ +import re + +import hjson + +from core.chat_blob import ChatBlob +from core.command_param_types import Const, Options, Character, Multiple, Any +from core.decorators import instance, command +from core.dict_object import DictObject +from core.setting_service import SettingService +from core.text import Text +from core.translation_service import TranslationService +from core.tyrbot import Tyrbot +from modules.core.accounting.register_controller import RegisterController +from modules.core.accounting.services.account_service import AccountService + + +@instance() +class AltsController: + def inject(self, registry): + self.bot: Tyrbot = registry.get_instance("bot") + self.account_service: AccountService = registry.get_instance("account_service") + self.buddy_service = registry.get_instance("buddy_service") + self.util = registry.get_instance("util") + self.text: Text = registry.get_instance("text") + self.ts: TranslationService = registry.get_instance("translation_service") + self.character_service = registry.get_instance("character_service") + self.getresp = self.ts.get_response + self.setting_service: SettingService = registry.get_instance("setting_service") + self.register_controller: RegisterController = registry.get_instance("register_controller") + + def start(self): + self.ts.register_translation("module/alts", self.load_alts_msg) + + def load_alts_msg(self) -> dict: + with open("modules/core/accounting/alts.msg", mode="r", encoding="UTF-8") as f: + return hjson.load(f) + + @command(command="alts", params=[], access_level="member", + description="Show your alts") + def alts_list_cmd(self, request): + alts = self.account_service.get_alts(request.sender.char_id) + blob = self.format_alt_list(alts) + + return ChatBlob(self.getresp("module/alts", "list", {"char": alts[0].name, "amount": len(alts)}), blob) + + @command(command="alts", params=[Const("setmain")], access_level="member", description="Set a new main", + extended_description="You must run this from the character you want to be your new main") + def alts_setmain_cmd(self, request, _): + msg, result = self.account_service.set_as_main(request.sender.char_id) + + if result: + return self.getresp("module/alts", "new_main", {"char": request.sender.name}) + elif msg == "not_an_alt": + return self.getresp("module/alts", "not_an_alt") + elif msg == "already_main": + return self.getresp("module/alts", "already_main") + else: + raise Exception("Unknown msg: " + msg) + + @command(command="alts", params=[Const("add"), Multiple(Character("character"))], access_level="member", + description="Add an alt") + def alts_add_cmd(self, request, _, alt_chars): + responses = [] + for alt_char in alt_chars: + if not alt_char.char_id: + responses.append(self.getresp("global", "char_not_found", {"char": alt_char.name})) + continue + elif alt_char.char_id == request.sender.char_id: + responses.append(self.getresp("module/alts", "add_fail_self")) + continue + manual = self.setting_service.get_value("alt_verification") == "1" + if manual: + responses.append(self.register_controller.register_alt(request, _, alt_char)) + continue + msg, result = self.account_service.add_alt(request.sender.char_id, alt_char.char_id) + + if result: + self.bot.send_mass_message(alt_char.char_id, self.getresp("module/alts", "add_success_target", + {"char": request.sender.name})) + responses.append(self.getresp("module/alts", "add_success_self", {"char": alt_char.name})) + elif msg == "another_main": + responses.append(self.getresp("module/alts", "add_fail_already", {"char": alt_char.name})) + else: + raise Exception("Unknown msg: " + msg) + + return "\n".join(responses) + + @command(command="alts", params=[Options(["rem", "remove"]), Character("character")], access_level="member", + description="Remove an alt") + def alts_remove_cmd(self, request, _, alt_char): + manual = self.setting_service.get_value("alt_verification") == "1" + if manual: + return "This command is disabled, you cannot remove alts." + + if not alt_char.char_id: + return self.getresp("global", "char_not_found", {"char": alt_char.name}) + + msg, result = self.account_service.remove_alt(request.sender.char_id, alt_char.char_id) + if result: + return self.getresp("module/alts", "rem_success", {"char": alt_char.name}) + elif msg == "not_alt": + return self.getresp("module/alts", "rem_fail_not", {"char": alt_char.name}) + elif msg == "remove_main": + return self.getresp("module/alts", "rem_fail_main") + else: + raise Exception("Unknown msg: " + msg) + + @command(command="alts", params=[Character("character")], access_level="member", + description="Show alts of another character", sub_command="show") + def alts_list_other_cmd(self, _, char): + if not char.char_id: + return self.getresp("global", "char_not_found", {"char": char.name}) + + alts = self.account_service.get_alts(char.char_id) + blob = self.format_alt_list(alts) + if len(alts) < 1: + return "No alts found" + return ChatBlob(self.getresp("module/alts", "list", {"char": alts[0].name, "amount": len(alts)}), blob) + + @command(command="altadmin", params=[Const("add"), Character("main"), Any("alts")], + access_level="admin", description="Add alts to Main") + def altadmin_add_cmd(self, _, _1, main, altlist): + alts = re.findall(r"([^ ]+)", altlist) + notfound = [] + done = [] + failed = [] + gotalts = [] + if alts: + for alt in alts: + char_id = self.character_service.resolve_char_to_id(alt) + if not char_id: + notfound.append(alt) + continue + alt = DictObject({"char_id": char_id, "name": alt}) + if main.char_id == alt.char_id: + failed.append(self.getresp("module/alts", "altadmin_add_same")) + + msg, result = self.account_service.add_alt(main.char_id, alt.char_id) + if result: + done.append(alt.name) + elif msg == "another_main": + gotalts.append(alt.name) + reply = "" + if len(done) > 0: + reply += self.getresp("module/alts", "altadmin_add_success", + {"alt": ", ".join(done), + "main": main.name}) + if len(notfound) > 0: + reply += "\n" + self.getresp("global", "char_not_found", {"char": ", ".join(notfound)}) + if len(gotalts) > 0: + reply += "\n" + self.getresp("module/alts", "add_fail_already", {"char": ", ".join(gotalts)}) + reply += "\n".join(failed) + return reply + + @command(command="altadmin", params=[Options(["rem", "remove"]), Character("main"), Character("alt")], + access_level="admin", + description="Remove alts of main") + def altadmin_remove_cmd(self, _, _1, main, alt): + if not main.char_id: + return self.getresp("global", "char_not_found", {"char": main.name}) + if not alt.char_id: + return self.getresp("global", "char_not_found", {"char": alt.name}) + + msg, result = self.account_service.remove_alt(main.char_id, alt.char_id) + + if result: + return self.getresp("module/alts", "altadmin_rem_success", {"alt": alt.name, "main": main.name}) + elif msg == "not_alt": + return self.getresp("module/alts", "altadmin_rem_fail_not", {"alt": alt.name, "main": main.name}) + elif msg == "remove_main": + return self.getresp("module/alts", "altadmin_rem_fail_main") + else: + raise Exception("Unknown msg: " + msg) + + def format_alt_list(self, alts) -> str: + blob = "" + for alt in alts: + name = f"{alt.name}" + blob += f"{self.util.get_prof_icon(alt.profession)} " \ + f"{self.text.zfill(alt.level, 220)}:" \ + f"{self.text.zfill(alt.ai_level, 30)} " \ + f":: <{alt.faction.lower()}>{name} " \ + f"[<{alt.faction.lower()}>{alt.org_name} - " \ + f"{alt.org_rank_id + 1}]" + if self.buddy_service.is_online(alt.char_id): + blob += " [Online]" + blob += "\n" + return blob diff --git a/modules/core/accounting/points_controller.py b/modules/core/accounting/points_controller.py new file mode 100644 index 0000000..50dc6cf --- /dev/null +++ b/modules/core/accounting/points_controller.py @@ -0,0 +1,41 @@ +from core import command_request +from core.command_param_types import Options, Int, Character, Any +from core.db import DB +from core.decorators import instance, command +from core.event_service import EventService +from core.lookup.pork_service import PorkService +from core.text import Text +from core.util import Util +from modules.core.accounting.preference_controller import PreferenceController +from modules.core.accounting.services.account_service import AccountService + + +@instance() +class PointsController: + def inject(self, registry): + self.bot = registry.get_instance("bot") + self.buddy_service = registry.get_instance("buddy_service") + self.util: Util = registry.get_instance("util") + self.db: DB = registry.get_instance("db") + self.character_service = registry.get_instance("character_service") + self.account_service: AccountService = registry.get_instance("account_service") + self.event_service: EventService = registry.get_instance("event_service") + self.pork_service: PorkService = registry.get_instance("pork_service") + self.text: Text = registry.get_instance("text") + self.preferences: PreferenceController = registry.get_instance("preference_controller") + + @command(command="account", + params=[Options(["give", "take"]), Int("points"), Character("char"), Any("reason")], + access_level="admin", + description="Give or take points from an Account", + sub_command="modify") + def account_add_mod_pts(self, request: command_request, option, amount, user, reason): + if option == "take": + amount = -amount + self.account_service.add_pts(user.char_id, amount, reason, request.sender.char_id) + + def display_logs(self, entries): + blob = "" + for entry in entries: + blob += self.account_service.format_entry(entry) + return blob diff --git a/modules/core/accounting/preference_controller.py b/modules/core/accounting/preference_controller.py new file mode 100644 index 0000000..af36472 --- /dev/null +++ b/modules/core/accounting/preference_controller.py @@ -0,0 +1,107 @@ +from core.buddy_service import BuddyService +from core.chat_blob import ChatBlob +from core.command_alias_service import CommandAliasService +from core.command_param_types import Const, Options, Character +from core.db import DB +from core.decorators import instance, command +from core.logger import Logger +from core.lookup.pork_service import PorkService +from core.setting_service import SettingService +from core.text import Text +from core.tyrbot import Tyrbot +from core.util import Util +from modules.core.accounting.services.account_service import AccountService +from modules.core.discord.discord_controller import DiscordController + + +@instance() +class PreferenceController: + + def inject(self, registry): + self.logger = Logger(__name__) + self.bot: Tyrbot = registry.get_instance("bot") + self.db: DB = registry.get_instance("db") + self.text: Text = registry.get_instance("text") + self.util: Util = registry.get_instance("util") + self.account_service: AccountService = registry.get_instance("account_service") + self.pork: PorkService = registry.get_instance("pork_service") + self.org_pork: PorkService = registry.get_instance("org_pork_service") + self.command_alias_service: CommandAliasService = registry.get_instance("command_alias_service") + self.buddy_service: BuddyService = registry.get_instance("buddy_service") + self.setting_service: SettingService = registry.get_instance("setting_service") + self.discord: DiscordController = registry.get_instance("discord_controller") + self.job_scheduler = registry.get_instance("job_scheduler") + + def start(self): + self.command_alias_service.add_alias("prefs", "preferences") + self.command_alias_service.add_alias("autoinvite", "preferences set autoinvite") + + @command(command="preferences", params=[], description="View your Preferences", access_level="member") + def show_prefs(self, request): + account = self.account_service.get_account(request.sender.char_id) + if not account: + return "You dont have any preferences you could manage...." + return ChatBlob("Your Preferences", self.get_pref_view_full(account)) + + @command(command="preferences", + params=[Const("set"), + Options(["news", "raidinvite", "subtilespam", "autoinvite", "raidspam"]), + Options(["on", "off", "yes", "no"])], + description="Change your Preferences", access_level="member") + def set_prefs(self, request, _, pref: str, value): + account = self.account_service.get_account(request.sender.char_id) + if not account: + return "You dont have any preferences you could manage...." + self.set_pref(request.sender.char_id, pref, 0 if value in ["off", "no"] else 1) + return f"Your {pref.capitalize()} preference has been set to {value}." + + @command(command="prefadmin", + params=[Const("set"), + Character("main"), + Options(["news", "raidinvite", "subtilespam", "autoinvite", "raidspam"]), + Options(["on", "off", "yes", "no"])], + description="Change your Preferences", + sub_command='mdf', + access_level="admin") + def set_pref_admin(self, _, _1, main, pref: str, value): + self.set_pref(main.char_id, pref, 0 if value in ["off", "no"] else 1) + return f"{main.name}'s {pref.capitalize()} " \ + f"preference has been set to {value}." + + def get_prefs(self, char_id): + return self.account_service.get_account(char_id) + + def set_pref(self, char_id, pref, value): + pref = "subtile_spam" if pref == "subtilespam" \ + else "raid_invite" if pref == "raidinvite" \ + else "news_spam" if pref == "news" \ + else "auto_invite" if pref == "autoinvite" \ + else 'raid_spam' if pref == "raidspam" \ + else "" + + self.db.exec(f"UPDATE account set {pref}={value} where char_id=(SELECT main from account where char_id=?)", + [char_id]) + + def get_pref_view_small(self, prefs): + return f"\n" \ + f" └ [{self._make_cmd('news', prefs.news_spam)}] News - " \ + f"Autoinvite [{self._make_cmd('autoinvite', prefs.auto_invite)}], \n" \ + f" └ [{self._make_cmd('raidinvite', prefs.raid_invite)}] Raidinvite - " \ + f"Massmessage [{self._make_cmd('raidspam', prefs.raid_invite)}], \n" \ + f" └ [{self._make_cmd('subtilespam', prefs.subtile_spam)}] Subtilespam" + + def get_pref_view_full(self, prefs): + return f"\n" \ + f"└ [ {self._make_cmd('news', prefs.news_spam)} ] Do you want your News on Logon? \n" \ + f"└ [ {self._make_cmd('autoinvite', prefs.auto_invite)} ] Do you want to receive autoinvites? \n" \ + f"└ [ {self._make_cmd('raidinvite', prefs.raid_invite)} ] Do you want to receive raidinvites? \n" \ + f"└ [ {self._make_cmd('raidspam', prefs.raid_invite)} ] Do you want to receive massmessages? \n" \ + f"└ [ {self._make_cmd('subtilespam', prefs.subtile_spam)} ] Do you want a subtile invite spam? \n" + + def _make_cmd(self, pref, value): + # --- + # [ ON | OFF ] + if value == 1: + return f"YES | {self.text.make_chatcmd('NO', f'/tell preferences set {pref} off')}" + else: + return f"{self.text.make_chatcmd('YES', f'/tell preferences set {pref} on')} | NO" diff --git a/modules/core/accounting/register_controller.py b/modules/core/accounting/register_controller.py new file mode 100644 index 0000000..60499ed --- /dev/null +++ b/modules/core/accounting/register_controller.py @@ -0,0 +1,254 @@ +import time + +from core.chat_blob import ChatBlob +from core.command_alias_service import CommandAliasService +from core.command_param_types import Const, Character, Any, Int +from core.db import DB +from core.decorators import instance, command +from core.event_service import EventService +from core.lookup.character_history_service import CharacterHistoryService +from core.lookup.character_service import CharacterService +from core.lookup.pork_service import PorkService +from core.message_hub_service import MessageHubService +from core.setting_service import SettingService +from core.text import Text +from core.tyrbot import Tyrbot +from core.util import Util +from modules.core.accounting.services.account_service import AccountService + + +@instance() +class RegisterController: + def inject(self, registry): + self.bot: Tyrbot = registry.get_instance("bot") + self.buddy_service = registry.get_instance("buddy_service") + self.util: Util = registry.get_instance("util") + self.db: DB = registry.get_instance("db") + self.character_service: CharacterService = registry.get_instance("character_service") + self.account_service: AccountService = registry.get_instance("account_service") + self.event_service: EventService = registry.get_instance("event_service") + self.pork_service: PorkService = registry.get_instance("pork_service") + self.text: Text = registry.get_instance("text") + self.setting_service: SettingService = registry.get_instance("setting_service") + self.character_history_service: CharacterHistoryService = registry.get_instance("character_history_service") + self.command_alias_service: CommandAliasService = registry.get_instance("command_alias_service") + self.messagehub: MessageHubService = registry.get_instance("message_hub_service") + + def start(self): + self.command_alias_service.add_alias("pending", "register pending") + self.command_alias_service.add_alias("recommend", "register recommend") + self.messagehub.register_message_source("registration") + + @command(command="register", params=[Const("pending"), Int('count', is_optional=True)], + description="Show the latest Recommendations", sub_command="mng", access_level="admin") + def register_pending(self, _, _1, limit): + limit = limit or 25 + latest = self.db.query("SELECT " + "main.char_id as main_id, " + "alt.char_id as alt_id, " + "recommender.char_id as recommender_id, " + + "main.name as main_name, " + "alt.name as alt_name, " + "recommender.name as recommender_name, " + + "main.faction as main_faction, " + "alt.faction as alt_faction, " + "recommender.faction as recommender_faction, " + + "main.level as main_level, " + "alt.level as alt_level, " + "recommender.level as main_level, " + + "alt.ai_level as alt_ai_level, " + "main.ai_level as main_ai_level, " + "recommender.ai_level as recommender_ai_level, " + + "reason " + "from pending_accounts p " + "left join player alt on alt.char_id = p.alt " + "left join player main on main.char_id = p.main " + "left join player recommender on recommender.char_id = p.recommender where answered=0 " + "order by time desc limit ?", [limit]) + blob = "" + for entry in latest: + blob += self.format_pending(entry, buttons=True) + + return ChatBlob("Latest recommendations", blob) + + @command(command="register", params=[Const("pending"), Const('latest'), Int('count', is_optional=True)], + description="Show the latest Recommendations", sub_command="mng", access_level="admin") + def register_pending_latest(self, _, _1, _2, limit): + limit = limit or 25 + latest = self.db.query("SELECT " + "main.char_id as main_id, " + "alt.char_id as alt_id, " + "recommender.char_id as recommender_id, " + + "main.name as main_name, " + "alt.name as alt_name, " + "recommender.name as recommender_name, " + + "main.faction as main_faction, " + "alt.faction as alt_faction, " + "recommender.faction as recommender_faction, " + + "main.level as main_level, " + "alt.level as alt_level, " + "recommender.level as main_level, " + + "alt.ai_level as alt_ai_level, " + "main.ai_level as main_ai_level, " + "recommender.ai_level as recommender_ai_level, " + + "reason " + "from pending_accounts p " + "left join player alt on alt.char_id = p.alt " + "left join player main on main.char_id = p.main " + "left join player recommender on recommender.char_id = p.recommender " + "order by time desc limit ?", [limit]) + blob = "" + for entry in latest: + blob += self.format_pending(entry) + + return ChatBlob("Latest recommendations", blob) + + # noinspection LongLine + def format_pending(self, entry, buttons=False): + button = "[" + self.text.make_tellcmd(name="APPROVE", msg=f"pending approve {entry.alt_name}", + style="style='text-decoration:none'") + "] - [" + self.text.make_tellcmd( + name="DENY", msg=f"pending deny {entry.alt_name}", + style="style='text-decoration:none'") + "]" if buttons else "" + if entry.main_id == entry.alt_id: + text = f"[ACC] <{entry.main_faction.lower()}>{entry.main_name} ({entry.main_level}/{entry.main_ai_level}) " \ + f" [{self.text.make_tellcmd('W', f'whois {entry.main_name}')}] " \ + f"[{self.text.make_tellcmd('H', f'history {entry.main_name}')}]\n" \ + f"Recommender: <{entry.recommender_faction.lower()}>{entry.recommender_name} Why: {entry.reason}\n" \ + f"{button}" + else: + account = self.account_service.get_account(entry.main_id) + text = f"[ALT] <{entry.alt_faction.lower()}>{entry.alt_name} ({entry.alt_level}/{entry.alt_ai_level}) " \ + f" [{self.text.make_tellcmd('W', f'whois {entry.alt_name}')}] " \ + f"[{self.text.make_tellcmd('H', f'history {entry.alt_name}')}]\n" \ + f"Main: <{entry.main_faction.lower()}>{entry.main_name} ({entry.main_level}/{entry.main_ai_level}) [Join: {self.util.format_datetime(account.created)}]" \ + f" - [{self.text.make_tellcmd('W', f'whois {entry.main_name}')}] " \ + f"[{self.text.make_tellcmd('H', f'history {entry.main_name}')}]\n" \ + f"{button}" + + return text + "\n\n" + + @command(command="register", params=[Const("pending"), Const('deny'), Character('character')], + description="Deny (and disable) a pending account", sub_command="mng", access_level="admin") + def register_pending_deny(self, request, _1, _2, user): + pending = self.account_service.is_pending(user.char_id) + if not pending: + return f"There's no pending registration for {user.name}." + self.account_service.create_users([(pending.alt, pending.alt, -1, time.time(), time.time())]) + self.account_service.add_log(request.sender.char_id, "system", + f"Created {user.name}'s account.", + request.sender.char_id) + self.account_service.add_log(user.char_id, "system", + f"Account closed by {request.sender.name}.", + request.sender.char_id) + + self.db.exec("UPDATE pending_accounts set answered = 1 where alt=?", [pending.alt]) + self.account_service.account_disable(user.char_id) + self.send_notify(self.Notify.DENIED, user.name, user.name) + + # noinspection LongLine + @command(command="register", params=[Const("pending"), Const('approve'), Character('character')], + description="Approve (and activate) a pending account", sub_command="mng", access_level="admin") + def register_pending_approve(self, request, _1, _2, user): + pending = self.account_service.is_pending(user.char_id) + if not pending: + return f"There's no pending registration for {user.name}." + self.account_service.create_users([(pending.alt, pending.alt, 0, time.time(), time.time())]) + if pending.alt == pending.main: + self.db.exec("UPDATE pending_accounts set answered = 1 where alt=?", [pending.alt]) + self.account_service.add_log(request.sender.char_id, "system", + f"Opened {user.name}'s account.", + request.sender.char_id) + self.account_service.add_log(user.char_id, "system", + f"Account opened by {request.sender.name}.", + request.sender.char_id) + recommender: str = self.character_service.get_char_name(pending.recommender) + self.buddy_service.add_buddy(user.char_id, "member") + self.bot.send_mass_message(user.char_id, + f"Your Account has been opened by " + f"{request.sender.name}. " + f"{recommender.capitalize()} has recommended you.") + self.send_notify(self.Notify.APPROVAL_MAIN, user.name, user.name) + else: + msg, typ = self.account_service.add_alt(pending.main, pending.alt, approve=True) + if msg == "success": + self.db.exec("UPDATE pending_accounts set answered = 1 where alt=?", [pending.alt]) + self.account_service.add_log(request.sender.char_id, "system", + f"Added {user.name} as an alt of {self.character_service.resolve_char_to_name(pending.main)}.", + request.sender.char_id) + self.account_service.add_log(user.char_id, "system", + f"Request to add {user.name} as an alt " + f"has been approved by {request.sender.name}.", + request.sender.char_id) + self.send_notify(self.Notify.APPROVAL_ALT, + self.character_service.resolve_char_to_name(pending.main), + user.name) + else: + return "Something went wrong.." + + @command(command="register", params=[Const('alt'), Character('character')], + description="Add an alt", access_level="member") + def register_alt(self, request, _, alt): + manual = self.setting_service.get_value("alt_verification") == "1" + if not alt.char_id: + return "Character does not exist" + if not manual: + return "This command is currently disabled, please use !alts add" + msg, _ = self.account_service.add_pending_alt(request.sender.char_id, alt.char_id) + if msg in ["another_main", "already_main"]: + return f"You cannot add {alt.name} as an alt, because it already has a main." + elif msg == "pending_alt": + return f"There's already a pending registration for the alt {alt.name}, " \ + f"please wait for an admin to confirm it." + elif msg == "success": + self.send_notify(self.Notify.REQUEST_ALT, request.sender.name, alt.name) + return f"You requested to add {alt.name} as an alt." + + @command(command="register", params=[Const('recommend'), Character('character'), Any('reason')], + description="Recommend someone as a raider", access_level="member") + def register_account(self, request, _, user, reason): + if not user.char_id: + return "Character does not exist" + if self.account_service.get_account(user.char_id): + return f"There's already an account for {user.name} registered." + msg, _ = self.account_service.add_pending_account(request.sender.char_id, user.char_id, reason) + if msg in ["another_main", "already_main"]: + return f"You cannot recommend {user.name}, " \ + f"because the character is already registered." + elif msg == "pending_alt": + return f"There's already a pending registration for the character {user.name}, " \ + f"please wait for an admin to confirm it." + elif msg == "success": + self.send_notify(self.Notify.REQUEST_MAIN, user.name, user.name) + + def send_notify(self, notify_type, main, alt): + message = "[PG] " + if notify_type == self.Notify.APPROVAL_MAIN: + message += f"[Main] Approved: {main}'s Account has been opened." + elif notify_type == self.Notify.APPROVAL_ALT: + message += f"[Alt] Approved: {alt} " \ + f"has been assigned to {main}." + elif notify_type == self.Notify.DENIED: + message += f"Denied: {main}'s Account has been closed." + elif notify_type == self.Notify.REQUEST_ALT: + message += f"[Alt] Request: {alt} => {main}" + elif notify_type == self.Notify.REQUEST_MAIN: + message += f"[Main] Request: {main} as a new " \ + f"raider" + self.messagehub.send_message("registration", None, f"{message}", f"{message}") + + class Notify: + APPROVAL_MAIN = "approval-main" + APPROVAL_ALT = "approval-alt" + DENIED = "denied" + REQUEST_ALT = "req-alt" + REQUEST_MAIN = "req-main" diff --git a/modules/core/accounting/services/access_service.py b/modules/core/accounting/services/access_service.py new file mode 100644 index 0000000..d8048a3 --- /dev/null +++ b/modules/core/accounting/services/access_service.py @@ -0,0 +1,137 @@ +import inspect +from typing import List + +from core.decorators import instance +from core.logger import Logger + + +# noinspection PyUnusedLocal +@instance() +class AccessService: + def __init__(self): + self.access_levels = [ + {"label": "none", "level": 0, "handler": self.no_access}, + {"label": "all", "level": 100, "handler": self.all_access}] + self.logger = Logger(__name__) + + def inject(self, registry): + self.character_service = registry.get_instance("character_service") + self.account_service = registry.get_instance("account_service") + + def register_access_level(self, label, level, handler): + """ + Call during pre_start + + Args: + label: str + level: int + handler: (char_id: Int) -> bool + """ + + if len(inspect.signature(handler).parameters) != 1: + raise Exception( + "Incorrect number of arguments for handler '%s.%s()'" % (handler.__module__, handler.__name__)) + + self.logger.debug("Registering access level %d with label '%s'" % (level, label)) + self.access_levels.append({"label": label.lower(), "level": level, "handler": handler}) + self.access_levels = sorted(self.access_levels, key=lambda k: k["level"]) + + def get_access_levels(self) -> List[dict]: + return self.access_levels + + def get_access_level(self, char_id) -> dict: + account = self.account_service.get_main(char_id) + if account: + al = self.get_single_access_level(account.char_id) + if al["label"] == "all": + al = self.get_single_access_level(char_id) + return al + else: + return self.get_single_access_level(char_id) + # access_level1 = self.get_single_access_level(char_id) + # + # alts = self.account_service.get_alts(char_id) + # if not alts: + # return access_level1 + # + # main = alts[0] + # if main.char_id == char_id: + # return access_level1 + # else: + # access_level2 = self.get_single_access_level(main.char_id) + # if access_level1["level"] < access_level2["level"]: + # return access_level1 + # else: + # return access_level2 + + def compare_access_levels(self, access_level1, access_level2) -> int: + """ + Returns a positive number if the access_level1 is greater than access_level2, + a negative number if access_level1 is less than access_level2, + and 0 if the access levels are equal. + + :param access_level1: + :param access_level2: + :return: int + """ + a1 = self.get_access_level_by_label(access_level1) + a2 = self.get_access_level_by_label(access_level2) + + return a2["level"] - a1["level"] + + def has_sufficient_access_level(self, char_id1, char_id2) -> bool: + """ + Returns True if char1 has a higher access level than char2 + or if char1 is a verified alt of char2, and False otherwise. + + :param char_id1: + :param char_id2: + :return: + """ + + # return True if char_ids are the same + if char_id1 == char_id2: + return True + + # return True if both chars have the same main + if self.account_service.get_main(char_id1).char_id == (self.account_service.get_main(char_id2) or {}).get( + "char_id", 0): + return True + + a1 = self.get_access_level(char_id1) + a2 = self.get_access_level(char_id2) + + return a2["level"] - a1["level"] > 0 + + def get_single_access_level(self, char) -> dict: + char_id = self.character_service.resolve_char_to_id(char) + for access_level in self.access_levels: + if access_level["handler"](char_id): + return access_level + + def get_access_level_by_level(self, level) -> dict or bool: + for access_level in self.access_levels: + if access_level["level"] == level: + return access_level + return False + + def get_access_level_by_label(self, label) -> dict or bool: + label = label.lower() + for access_level in self.access_levels: + if access_level["label"] == label: + return access_level + return False + + def check_access(self, char, access_level_label) -> bool: + char_id = self.character_service.resolve_char_to_id(char) + if not char_id: + return False + # noinspection LongLine + return (self.get_access_level(char) or {}).get("level", 100) <= \ + self.get_access_level_by_label(access_level_label)["level"] + + def no_access(self, char_id) -> bool: + return False + + def all_access(self, char_id) -> bool: + return True diff --git a/modules/core/accounting/services/account_service.py b/modules/core/accounting/services/account_service.py new file mode 100644 index 0000000..ade92b4 --- /dev/null +++ b/modules/core/accounting/services/account_service.py @@ -0,0 +1,568 @@ +import time +from typing import List + +from core.buddy_service import BuddyService +from core.db import DB, SqlException +from core.decorators import instance, timerevent, event +from core.dict_object import DictObject +from core.logger import Logger +from core.lookup.character_service import CharacterService +from core.lookup.pork_service import PorkService +from core.setting_service import SettingService +from core.setting_types import BooleanSettingType +from core.text import Text +from core.tyrbot import Tyrbot +from modules.core.accounting.services.access_service import AccessService + + +# noinspection SqlCaseVsIf,SqlResolve,PyMethodMayBeStatic +@instance() +class AccountService: + MAIN_CHANGED_EVENT_TYPE = "main_changed" + MEMBER_LOGON = "member_logon" + MEMBER_LOGOFF = "member_logoff" + + def __init__(self): + self.logger = Logger("Accounting") + + # noinspection PyAttributeOutsideInit + def inject(self, registry): + self.bot: Tyrbot = registry.get_instance("bot") + self.buddy_service: BuddyService = registry.get_instance("buddy_service") + self.util = registry.get_instance("util") + self.character_service: CharacterService = registry.get_instance("character_service") + self.access_service: AccessService = registry.get_instance("access_service") + self.db: DB = registry.get_instance("db") + self.event_service = registry.get_instance("event_service") + self.pork: PorkService = registry.get_instance("pork_service") + self.setting_service: SettingService = registry.get_instance("setting_service") + self.text: Text = registry.get_instance("text") + + def pre_start(self): + self.db.exec("CREATE TABLE IF NOT EXISTS account (" + "char_id int(11) NOT NULL," + "points int(11) NOT NULL default 0," + "member int(2) NOT NULL DEFAULT 0," + "created int(255) NOT NULL DEFAULT 0," + "disabled int(2) NOT NULL DEFAULT 0," + "main int(11) NOT NULL DEFAULT char_id," + "subtile_spam int(2) NOT NULL DEFAULT 0," + "auto_invite int(2) NOT NULL DEFAULT 0," + "raid_invite int(2) NOT NULL DEFAULT 1," + "raid_spam int(2) NOT NULL DEFAULT 1," + "news_spam int(2) NOT NULL DEFAULT 1," + "discord_id bigint(30) UNSIGNED NULL DEFAULT 0," + "discord_handle varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT ''," + "discord_invite text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT ''," + "discord_joined int(2) NOT NULL DEFAULT 0," + "logon text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT ''," + "logoff text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT ''," + "last_seen int(11) NOT NULL DEFAULT 0," + "last_updated int(11) NOT NULL DEFAULT 0," + "PRIMARY KEY (char_id) USING BTREE," + "INDEX char_id(char_id) USING BTREE," + "INDEX main(main) USING BTREE," + "INDEX disabled(disabled) USING BTREE," + "INDEX char_id_2(char_id, disabled) USING BTREE," + "INDEX discord_id(discord_id) USING BTREE)") + + self.db.exec( + "CREATE TABLE IF NOT EXISTS raid_log (" + "raid_id INT PRIMARY KEY AUTO_INCREMENT, " + "raid_name VARCHAR(255) NOT NULL, " + "started_by BIGINT NOT NULL, " + "raid_start INT NOT NULL, " + "raid_end INT NOT NULL)") + + self.db.exec( + "CREATE TABLE IF NOT EXISTS raid_log_participants (" + "raid_id INT NOT NULL, " + "raider_id BIGINT NOT NULL, " + "accumulated_points INT DEFAULT 0, " + "left_raid INT, " + "was_kicked INT, " + "was_kicked_reason VARCHAR(500))") + + self.db.exec("CREATE TABLE IF NOT EXISTS points_presets (" + "preset_id INT PRIMARY KEY AUTO_INCREMENT, " + "name VARCHAR(50) NOT NULL, " + "points INT DEFAULT 1, " + "UNIQUE(name));") + self.db.exec("CREATE TABLE IF NOT EXISTS pending_accounts (" + "main INT(11) NOT NULL, " + "alt INT(11) NOT NULL, " + "reason TEXT DEFAULT '', " + "recommender INT(11) NOT NULL , " + "time int(255) NOT NULL," + "answered int(2) default 0 not null);") + + self.db.exec("CREATE TABLE IF NOT EXISTS account_log (" + "log_id INTEGER PRIMARY KEY AUTO_INCREMENT, " + "char_id BIGINT NOT NULL, " + "type VARCHAR(32), " + "delta INT NOT NULL DEFAULT 0, " + "leader_id BIGINT NOT NULL, " + "reason VARCHAR(255), " + "created_at INTEGER NOT NULL, " + "INDEX char_id (char_id), " + "INDEX leader (leader_id), " + "INDEX created(created_at));") + + self.db.exec("CREATE TABLE IF NOT EXISTS ranks (" + "main int(11) NOT NULL, " + "`rank` varchar(32) not null, " + "INDEX main(main, `rank`) USING BTREE)") + + self.db.exec("CREATE TABLE IF NOT EXISTS org_bots(char_id int primary key not null, org_id int not null)") + + self.event_service.register_event_type(self.MAIN_CHANGED_EVENT_TYPE) + self.event_service.register_event_type(self.MEMBER_LOGON) + self.event_service.register_event_type(self.MEMBER_LOGOFF) + self.setting_service.register_new(self.module_name, "is_alliance_bot", False, BooleanSettingType(), + "Is this bot used as an alliancebot") + self.setting_service.register_new(self.module_name, "alt_verification", False, BooleanSettingType(), + "alts require admin verification") + + if self.setting_service.get_value("is_alliance_bot") == "1": + self.access_service.register_access_level("officer", 80, self.check_officer) + self.access_service.register_access_level("general", 70, self.check_general) + self.access_service.register_access_level("president", 60, self.check_president) + self.access_service.register_access_level("council", 40, self.check_council) + self.access_service.register_access_level("moderator", 30, self.check_moderator) + self.access_service.register_access_level("member", 90, self.check_member) + self.access_service.register_access_level("admin", 20, self.check_admin) + self.access_service.register_access_level("leader", 50, self.check_leader) + self.access_service.register_access_level("superadmin", 10, self.check_superadmin) + + def get_main(self, char_id) -> DictObject: + alts = self.get_alts(char_id) + return alts[0] if alts else self.db.query_single("select * from player where char_id=?", [char_id]) + + def get_alts(self, char_id) -> List[DictObject]: + return self.db.query( + "SELECT p.*, a.* from account a left join player p on a.char_id = p.char_id where " + "main=(SELECT main from account where char_id=?) ORDER BY a.main = a.char_id desc, p.level, p.name DESC", + [char_id]) + + acc_cache = {} + + def get_account(self, char_id) -> DictObject: + + if char_id not in self.acc_cache.keys(): + out = self.db.query_single( + "SELECT a.*, p.* from account a left join player p on a.char_id = p.char_id where " + "a.char_id=(SELECT main from account where char_id=?) " + "and a.char_id not in (SELECT char_id from org_bots)", + [char_id]) or DictObject({}) + self.acc_cache[char_id] = out + self.bot.job_scheduler.delayed_job(lambda x: self.acc_cache.pop(char_id), 5) + else: + out = self.acc_cache.get(char_id) + return out + + def get_entry(self, char_id) -> DictObject: + return self.db.query_single("SELECT a.*, p.* from account a left join player p on a.char_id = p.char_id " + "where a.char_id=? and a.char_id not in (SELECT char_id from org_bots)", + [char_id]) or DictObject({}) + + def add_pending_alt(self, main, alt) -> [str, bool]: + data = self.check_alt(alt) + if data: + return data + acc = self.get_account(main) + if acc: + main = acc.main + self.pork.load_character_info(alt, skeleton_only=True) + self.db.exec("INSERT INTO pending_accounts(main, alt, recommender, time) VALUES(?, ?, ?, ?)", + [acc.main, alt, acc.main, time.time()]) + self.add_log(main, 'system', + f'Requested to add {self.character_service.resolve_char_to_name(alt)}' + f' as an alt', + acc.main) + return ["success", True] + + def add_pending_account(self, main, user, reason) -> [str, bool]: + data = self.check_alt(user) + if data: + return data + acc = self.get_account(main) + if acc: + main = acc.main + self.pork.load_character_info(user, skeleton_only=True) + self.db.exec("INSERT INTO pending_accounts(main, alt, recommender, reason, time) VALUES(?, ?, ?, ?, ?)", + [user, user, acc.main, reason, time.time()]) + self.add_log(main, 'system', + f'Recommended {self.character_service.resolve_char_to_name(user)}' + f' as raider, reason: {reason}', + acc.main) + return ["success", True] + + def check_alt(self, alt): + alt_alts = self.get_alts(alt) or [] + if len(alt_alts) > 1: + for alts in alt_alts: + if alts.char_id == alt: + if alts.main != alts.char_id: + return ["another_main", False] + alt_main = self.get_account(alt) + if alt_main: + if alt_main.main != alt: + return ["already_main", False] + if self.is_pending(alt): + return ['pending_alt', False] + + def is_pending(self, char_id) -> DictObject or bool: + return self.db.query_single("SELECT * from pending_accounts where alt=? and answered = 0", [char_id]) or False + + def add_alt(self, sender, alt, approve=False) -> [str, bool]: + alt_alts = self.get_alts(alt) or [] + if alt_alts: + if len(alt_alts) > 1: + return ["another_main", False] + if alt_main := alt_alts[0]: + if alt_main.main != alt: + return ["already_main", False] + acc = self.get_account(sender) + if acc: + main = acc.main + self.pork.load_character_info(alt, skeleton_only=True) + member = -1 if acc.disabled == 1 or acc.member == -1 else 0 + if self.db.exec("INSERT IGNORE INTO account(char_id, main, created, member) VALUES(?, ?, ?, ?)", + [alt, main, time.time(), member]) == 0: + self.db.exec("UPDATE account set main=?, created=? where char_id=?", [main, time.time(), alt]) + self.event_service.fire_event(self.MAIN_CHANGED_EVENT_TYPE, + DictObject({"old_main_id": alt, "new_main_id": main})) + if not approve: + self.add_log(sender, 'system', + f'Added {self.character_service.resolve_char_to_name(alt)}' + f' as an alt', + acc.main) + # Only add as member if he's neither banned, nor unregistered + if member != -1: + self.buddy_service.add_buddy(alt, "member") + return ["success", True] + self.db.exec("INSERT IGNORE INTO account(char_id, main, created, member) VALUES(?, ?, ?, ?)", + [sender, sender, time.time(), -1]) + self.db.exec("INSERT INTO account(char_id, main, created, member) VALUES(?, ?, ?, ?) ON DUPLICATE KEY UPDATE " + "main=VALUE(main), discord_id=0, discord_handle='', discord_invite='', discord_joined=0", + [alt, sender, time.time(), -1]) + if not approve: + self.add_log(sender, 'system', + f'Added {self.character_service.resolve_char_to_name(alt)} as an alt', + sender) + # Main does not exist, do not add as member + # self.buddy_service.add_buddy(alt, "member") + return ["success", True] + + def remove_alt(self, sender, alt) -> [str, bool]: + if not self.db.query( + "SELECT * FROM account where char_id=? and main=(SELECT main from account where char_id=?)", + [alt, sender]): + return ["not_alt", False] + alts = self.get_alts(sender) + for row in alts: + if row.char_id == alt and row.main == alt: + return ["remove_main", False] + if row.char_id == alt and row.main == alts[0].char_id: + self.db.exec("UPDATE account set main=? where char_id=?", [alt, alt]) + self.add_log(sender, 'system', + f'Removed {self.character_service.resolve_char_to_name(alt)}' + f' from his alts.', + sender) + return ["success", True] + else: + return [""] + + def set_as_main(self, sender) -> [str, bool]: + alts = self.get_alts(sender) + + if len(alts) < 2: + return ["not_an_alt", False] + elif alts[0].char_id == sender: + return ["already_main", False] + else: + self.db.exec("UPDATE account set main=? where main=(SELECT main from account where char_id=?)", + [sender, sender]) + self.event_service.fire_event(self.MAIN_CHANGED_EVENT_TYPE, + DictObject({"old_main_id": alts[0].char_id, + "new_main_id": sender})) + return ["success", True] + + def get_orgs(self) -> list: + try: + return [x["org_id"] for x in self.db.query("SELECT * from orgs", [])] + except SqlException: + return [self.bot.public_channel_service.org_id] + + def create_users(self, users, disable=False) -> int: + if type(users) == list and len(users) > 0: + with self.db.pool.get_connection() as conn: + with conn.cursor() as cur: + if disable: + cur.executemany( + "INSERT IGNORE INTO account(char_id, main, member, disabled, last_updated, created) " + "VALUES(?, ?, ?, 1, ?, ?) ON DUPLICATE KEY UPDATE " + "member=VALUE(member), last_updated=VALUE(last_updated), disabled=1", + users) + return cur.rowcount + cur.executemany( + "INSERT IGNORE INTO account(char_id, main, member, last_updated, created) " + "VALUES(?, ?, ?, ?, ?) ON DUPLICATE KEY UPDATE " + "member=VALUE(member), last_updated=VALUE(last_updated)", + users) + return cur.rowcount + + def account_disable(self, char_id) -> bool: + return True if self.db.exec( + "UPDATE account set disabled=1 where main in (SELECT main from account where char_id=?)", + [char_id]) else False + + def account_enable(self, char_id) -> bool: + return True if self.db.exec( + "UPDATE account set disabled=0 where main in (SELECT main from account where char_id=?)", + [char_id]) else False + + def remove_members(self, users) -> None: + if type(users) == list and len(users) > 0: + with self.db.pool.get_connection() as conn: + with conn.cursor() as cur: + cur.executemany("UPDATE account set member=-1 where char_id=? and ?", users) + + def check_member(self, char_id) -> bool: + account = self.get_account(char_id) or {} + if account.get('disabled', 1) == 1: + return False + if account.get('member', -1) == -1: + return False + if self.setting_service.get_value("is_alliance_bot") == "0": + return True + if account.get('org_id', 0) not in self.get_orgs(): + return False + return True + + def check_president(self, char_id) -> bool: + if self.setting_service.get_value("is_alliance_bot") == "0": + return False + account = self.get_account(char_id) or {} + if not self.simple_checks(account): + return False + if account.get('org_rank_id', -1) == 0: + return True + return False + + def check_general(self, char_id) -> bool: + if self.setting_service.get_value("is_alliance_bot") == "0": + return False + account = self.get_account(char_id) or {} + if not self.simple_checks(account): + return False + if self.get_rank_count(char_id) != 7: + return False + if account.get('org_rank_id', -1) <= 1: + return True + return False + + def check_officer(self, char_id) -> bool: + if self.setting_service.get_value("is_alliance_bot") == "0": + return False + account = self.get_account(char_id) or {} + if not self.simple_checks(account): + return False + if self.get_rank_count(char_id) != 7: + return False + if account.get('org_rank_id', -1) <= 2: + return True + return False + + def check_council(self, char_id) -> bool: + if self.setting_service.get_value("is_alliance_bot") == "0": + return False + if self.simple_checks(self.get_account(char_id)): + return "council" in self.get_ranks(char_id) + + def check_leader(self, char_id) -> bool: + if self.simple_checks(self.get_account(char_id)): + return "leader" in self.get_ranks(char_id) + + def check_moderator(self, char_id) -> bool: + if self.simple_checks(self.get_account(char_id)): + return "moderator" in self.get_ranks(char_id) + + def check_admin(self, char_id) -> bool: + if self.simple_checks(self.get_account(char_id)): + return "admin" in self.get_ranks(char_id) + + def check_superadmin(self, char_id) -> int: + return char_id in self.bot.superadmin + + def get_ranks(self, char_id) -> List[DictObject]: + return [x["rank"] for x in + self.db.query(" SELECT rank FROM ranks where main = (SELECT main from account where char_id=? limit 1)", + [char_id])] or [] + + def get_all_admins(self) -> List[DictObject]: + return self.get_by_group("admin") + + def get_all_moderators(self) -> List[DictObject]: + return self.get_by_group("moderator") + + def get_all_councils(self) -> List[DictObject]: + return self.get_by_group("council") + + def get_all_leaders(self) -> List[DictObject]: + return self.get_by_group("leader") + + def get_all_members(self, online_only=False) -> List[DictObject]: + return self.db.query( + f"SELECT p.*, a.*, CASE when o.char_id IS NOT NULL then 1 ELSE 0 end as online from account a " + f"LEFT JOIN player p ON a.char_id=p.char_id " + f"LEFT JOIN (SELECT * FROM online WHERE bot=?) o ON a.char_id=o.char_id " + f"WHERE a.char_id NOT IN (SELECT char_id from org_bots) " + f"and a.disabled = 0 {'and o.char_id is not null' if online_only else ''} " + f"order by a.main, a.main=a.char_id desc, p.level desc, p.ai_level desc", + [self.bot.get_char_id()]) + + def get_by_group(self, group) -> List[DictObject]: + return self.db.query("""SELECT CASE when rank = 'admin' then 0 + when rank = 'moderator' then 1 + when rank = 'council' then 2 + when rank = 'leader' then 3 + ELSE 99 END AS rank_id, + CASE when o.char_id IS NOT NULL + then 1 + ELSE 0 end as online, + p.*, a.* FROM ranks r + LEFT JOIN account a ON r.main=a.main + LEFT JOIN player p ON a.char_id=p.char_id + LEFT JOIN online o ON a.char_id=o.char_id + WHERE r.rank=? + ORDER BY rank_id, a.main desc, a.main=a.char_id DESC, p.name """, [group]) + + def get_group_tag(self, string) -> str or bool: + string = string.lower() + if string in ["adm", "admins", "admin", "administrator", "administrators"]: + return "admin" + elif string in ["mod", "mods", "moderator", "moderators"]: + return "moderator" + elif string in ["cnc", "council", "councilors"]: + return "council" + elif string in ["rl", "leader", "leaders", "raidleader", "raidleaders", "rls"]: + return "leader" + elif string in ["all", "full", "everyone"]: + return "all" + else: + return False + + def add_log(self, char_id, log_type, message, leader, delta=0) -> None: + main = self.get_main(char_id).char_id + self.db.exec("INSERT INTO account_log(char_id, type, delta, leader_id, reason, created_at) " + "VALUES (?, ?, ?, ?, ?, ?)", + [main, log_type, delta, leader, message, time.time()]) + + def get_logs(self, user, log_type=None, limit=25) -> List[DictObject]: + if not log_type: + return self.db.query("SELECT * FROM account_log " + "where char_id=? and type != 'admin' order by log_id desc LIMIT ? ", [user, limit]) + + else: + return self.db.query("SELECT * FROM account_log " + "where char_id=? and type=? order by log_id desc LIMIT ?", [user, log_type, limit]) + + def get_log_by_id(self, log_id) -> DictObject: + return self.db.query_single("SELECT * FROM account_log where log_id=? ", [log_id]) + + def format_entry(self, entry) -> str: + msg = f"[{self.util.format_datetime(entry.created_at)}] " \ + f"[{self.text.make_tellcmd('D', f'account log id {entry.log_id}')}] " + entry.type = entry.type.lower() + if entry.type == "points": + entry.reason = entry.reason.replace('"', "'") + msg += f"{f'+{entry.delta}P' if entry.delta >= 0 else f'{entry.delta}P'}" \ + f" by {self.character_service.resolve_char_to_name(entry.leader_id)}" \ + f" for {entry.reason}" + elif entry.type == "loot": + msg += f"Won Item: {entry.reason}" + elif entry.type == "raid": + msg += f"{entry.reason}" + elif entry.type == "public": + msg += f"{entry.reason}" + elif entry.type == "admin": + msg += f"Notice from " \ + f"{self.character_service.resolve_char_to_name(entry.leader_id)}: " \ + f"{entry.reason}" + elif entry.type == "system": + msg += f"{entry.reason}" + + return msg + "\n" + + def add_pts(self, char_id, points, reason, leader) -> None: + self.db.exec("UPDATE account set points = points+? where char_id=(select main from account where char_id=?)", + [points, char_id]) + self.add_log(char_id, 'points', reason, leader, delta=points) + + def rem_pts(self, char_id, points, reason, leader) -> None: + if points < 0: + points = -points + self.db.exec("UPDATE account set points = points-? where char_id=(select main from account where char_id=?)", + [points, char_id]) + self.add_log(char_id, 'points', reason, leader, delta=-points) + + def add_rank(self, char_id, rank) -> int: + return self.db.exec("INSERT INTO ranks(main, `rank`) VALUES(?, ?)", [char_id, rank]) + + def del_rank(self, char_id, rank) -> int: + return self.db.exec("DELETE FROM ranks where main=? and rank =?", [char_id, rank]) + + @timerevent(budatime="12h", description="Delete dead ranks") + def clear_raid(self, _, _1): + count = self.db.exec("DELETE FROM ranks where main not in (SELECT main from account)") + if count > 0: + self.logger.info(f"Purged {count} dead ranks") + count = self.db.exec( + "delete from ranks where main in(select r.main from ranks r " + "left join account a on r.main=a.char_id " + "where a.member=-1)") + if count > 0: + self.logger.info(f"Purged {count} ranks; caused by: main no longer in the alliance") + + @event(event_type="main_changed", description="Fix ranks") + def fix_ranks(self, _, data): + self.db.exec("UPDATE ranks set main=? where main=?", [data.new_main_id, data.old_main_id]) + self.db.exec("UPDATE account_log set char_id=? where char_id=?", [data.new_main_id, data.old_main_id]) + self.db.exec("UPDATE account_log set leader_id=? where leader_id=?", [data.new_main_id, data.old_main_id]) + + @event(event_type="buddy_logon", description="Member logon manager") + def member_login(self, _, data): + buddy = self.buddy_service.get_buddy(data.char_id) + if buddy: + if self.bot.is_ready(): + if "member" in buddy['types'] or "org_member" in buddy['types']: + if main := self.get_account(data.char_id): + self.event_service.fire_event(self.MEMBER_LOGON, DictObject({'account': main, 'packet': data})) + else: + if main := self.get_account(data.char_id): + self.event_service.fire_event(self.MEMBER_LOGON, DictObject({'account': main, 'packet': data})) + + @event(event_type="buddy_logoff", description="Member logoff manager") + def member_logout(self, _, data): + if self.bot.is_ready(): + buddy = self.buddy_service.get_buddy(data.char_id) + if buddy: + if "member" in buddy['types'] or "org_member" in buddy['types']: + if main := self.get_account(data.char_id): + self.event_service.fire_event(self.MEMBER_LOGOFF, DictObject({'account': main, 'packet': data})) + + def get_rank_count(self, char_id): + return self.db.query_single( + "SELECT MAX(org_rank_id)+1 AS count FROM player WHERE org_id=(SELECT org_id FROM player where char_id=?)", + [char_id]).count + + def simple_checks(self, account): + if account.get('disabled', 1) == 1: + return False + if account.get('member', -1) == -1: + return False + if self.setting_service.get_value("is_alliance_bot") == "1": + if account.get('org_id', 0) not in self.get_orgs(): + return False + return True diff --git a/modules/core/admin/admin.msg b/modules/core/admin/admin.msg new file mode 100644 index 0000000..cb3cbe9 --- /dev/null +++ b/modules/core/admin/admin.msg @@ -0,0 +1,18 @@ +{ + "add_success": { + "en_US": "Character {char} added as {rank} successfully.", + "de_DE": "Der Charakter {char} wurde erfolgreich zum {rank} ernannt." + }, + "add_fail": { + "en_US": "Could not add character {char} as {rank}.", + "de_DE": "Der Charakter {char} konnte nicht zum {rank} ernannt werden." + }, + "rem_success": { + "en_US": "Character {char} removed as {rank} successfully.", + "de_DE": "Der Charakter {char} ist nun kein {rank} mehr." + }, + "rem_fail": { + "en_US": "Could not remove character {char} as {rank}.", + "de_DE": "Dem Charakter {char} konnte der Rang {rank} nicht entfernt werden." + } +} diff --git a/modules/core/admin/admin_controller.py b/modules/core/admin/admin_controller.py new file mode 100644 index 0000000..0106870 --- /dev/null +++ b/modules/core/admin/admin_controller.py @@ -0,0 +1,165 @@ +from typing import List + +import hjson + +from core.buddy_service import BuddyService +from core.chat_blob import ChatBlob +from core.command_param_types import Const +from core.db import DB +from core.decorators import instance, command, event +from core.dict_object import DictObject +from core.setting_service import SettingService +from core.text import Text +from core.translation_service import TranslationService +from modules.onlinebot.online.org_alias_controller import OrgAliasController + + +@instance() +class AdminController: + def __init__(self): + pass + + def inject(self, registry): + self.bot = registry.get_instance("bot") + self.pork_service = registry.get_instance("pork_service") + self.command_alias_service = registry.get_instance("command_alias_service") + self.buddy_service: BuddyService = registry.get_instance("buddy_service") + self.ts: TranslationService = registry.get_instance("translation_service") + self.getresp = self.ts.get_response + self.db: DB = registry.get_instance("db") + self.alias_controller: OrgAliasController = registry.get_instance("org_alias_controller") + self.text: Text = registry.get_instance("text") + self.settings_service: SettingService = registry.get_instance("setting_service") + + def start(self): + self.command_alias_service.add_alias("adminlist", "admin") + self.command_alias_service.add_alias("admins", "admin") + self.ts.register_translation("module/admin", self.load_admin_msg) + + def load_admin_msg(self): + with open("modules/core/admin/admin.msg", mode="r", encoding="UTF-8") as f: + return hjson.load(f) + + @event(event_type="connect", description="Add admins as buddies") + def connect_event(self, _, _1): + for row in self.get_all(): + self.buddy_service.add_buddy(row.char_id, "admin") + + def get_all(self) -> List[DictObject]: + return self.db.query("SELECT p.*, COALESCE(p.name, t.char_id) AS name, t.rank, t.sort FROM " + "(" + "SELECT a.main as char_id, a.rank, " + "CASE WHEN rank = 'admin' THEN 0 " + "WHEN rank = 'moderator' THEN 1 " + "WHEN rank = 'council' THEN 2 " + "WHEN rank = 'leader' THEN 3 END AS sort FROM ranks a) t " + "LEFT JOIN player p ON t.char_id = p.char_id " + "where rank in ('admin', 'moderator', 'council', 'leader') " + "ORDER BY sort, p.name") + + @command(command="admin", params=[Const("all")], access_level="member", + description="Shows the administrators of the Bot", sub_command="list") + def show_all_admins(self, _, _1): + count = [] + # noinspection SqlAggregates + users = self.db.query(""" + SELECT r.rank, r.rank_id, a.main, p.*, IF(o.char_id IS NULL, 0, 1) AS online + FROM (SELECT * FROM (SELECT + CASE when rank = 'admin' then 0 + when rank = 'moderator' then 1 + when rank = 'council' then 2 + when rank = 'leader' then 3 + ELSE 99 END AS rank_id, RANK, + main FROM ranks ORDER BY rank_id, main LIMIT 100000) a + GROUP BY main ORDER BY rank_id) r + LEFT JOIN account a ON r.main = a.main + LEFT JOIN player p ON a.char_id=p.char_id + LEFT JOIN online o ON a.char_id=o.char_id + WHERE a.disabled=0 + GROUP BY char_id + ORDER BY r.rank_id, a.main desc, a.char_id = a.main DESC, p.name;""") + blob = "" + main = 0 + rank = "" + ranks = {'admin': "Administrator's", + "moderator": "Moderator's", + "council": "Council Member's", + "leader": "Raidleader's"} + + for user in users: + if user.main not in count: + count.append(user.main) + if user.rank != rank: + if rank != "": + blob += "
" + rank = user.rank + + blob += f":::
{ranks[user.rank]}
:::

" + if user.online == 0: + user.online = 1 if self.buddy_service.is_online(user.char_id) else 0 + if main != user.main: + main = user.main + blob += self.format_user(user) + else: + blob += self.format_user(user, False) + + return ChatBlob("Administrators (%d)" % len(count), blob) + + @command(command="admin", params=[], access_level="member", + description="Shows the online Administrators of the bot", sub_command="list") + def show_admin(self, _): + count = [] + + # noinspection SqlAggregates + users = self.db.query(""" + SELECT r.rank, r.rank_id, a.main, p.*, IF(o.char_id IS NULL, 0, 1) AS online + FROM (SELECT * FROM (SELECT + CASE when rank = 'admin' then 0 + when rank = 'moderator' then 1 + when rank = 'council' then 2 + when rank = 'leader' then 3 + ELSE 99 END AS rank_id, RANK, + main FROM ranks ORDER BY rank_id, main LIMIT 100000) a + GROUP BY main ORDER BY rank_id) r + LEFT JOIN account a ON r.main = a.main + LEFT JOIN player p ON a.char_id=p.char_id + LEFT JOIN online o ON a.char_id=o.char_id + WHERE a.disabled=0 and (o.char_id IS NOT NULL or + (a.main = a.char_id and (SELECT count(*) from online + where char_id in + (SELECT char_id from account where main = r.main)) > 0)) + GROUP BY char_id + ORDER BY r.rank_id, a.main desc, a.char_id = a.main DESC, p.name;""") + blob = "" + main = 0 + rank = "" + ranks = {'admin': "Administrator's", + "moderator": "Moderator's", + "council": "Council Member's", + "leader": "Raidleader's"} + + for user in users: + if user.main not in count: + count.append(user.main) + if user.rank != rank: + if rank != "": + blob += "
" + rank = user.rank + blob += f":::
{ranks[user.rank]}
:::

" + main = "" + if main != user.main: + main = user.main + blob += self.format_user(user) + else: + blob += self.format_user(user, False) + + return ChatBlob("Online Administrators (%d)" % len(count), blob) + + # noinspection LongLine + def format_user(self, user, main=True): + alias = self.alias_controller.get_alias(user.org_id) if self.settings_service.get_value( + "is_alliance_bot") == "1" else user.org_name + + if main: + return f"
[{'O' if user.online == 0 else 'O'}] {user.name} ({user.level}/{user.ai_level} - {alias}) {'[' + self.text.make_chatcmd('Tell', '/tell ' + user.name) + ']' if user.online == 1 else ''}
" + return f" └ [{'O' if user.online == 0 else 'O'}] {user.name} ({user.level}/{user.ai_level} - {alias}) {'[' + self.text.make_chatcmd('Tell', '/tell ' + user.name) + ']' if user.online == 1 else ''}
" diff --git a/modules/core/ban/ban.msg b/modules/core/ban/ban.msg new file mode 100644 index 0000000..c3ae060 --- /dev/null +++ b/modules/core/ban/ban.msg @@ -0,0 +1,49 @@ +{ + "list_blob": { + "en_US": [ + "Name: {char}\n", + "Added: {added_time}\n", + "By: {banner}\n", + "Ends: {end_time}{left}\n", + "Reason: {reason}\n\n" + ], + "de_DE": [ + "Name: {char}\n", + "Hinzugefuegt: {added_time}\n", + "Von: {banner}\n", + "Endet: {end_time}{left}\n", + "Grund: {reason}\n\n" + ] + }, + "list": { + "en_US": "Ban List ({amount})" + }, + "not_banned": { + "en_US": "{char} is not banned.", + "de_DE": "{char} ist nicht gebannt." + }, + "unbanned_target": { + "en_US": "You have been unbanned by {char}.", + "de_DE": "Du wurdest von {char} entbannt." + }, + "unbanned_self": { + "en_US": "{char} has been removed from the ban list.", + "de_DE": "Du hast {char} entbannt." + }, + "already_banned": { + "en_US": "{char} is already banned.", + "de_DE": "{char} ist bereits gebannt." + }, + "banned_target_1": { + "en_US": "You have been banned by {banner} for reason: {reason}. Duration: {duration}.", + "de_DE": "Du wurdest von {banner} gebannt. Dauer: {duration}. Der Grund war: {reason}" + }, + "banned_target_2": { + "en_US": "You have been banned by {banner}. Duration: {duration}.", + "de_DE": "Du wurdest von {banner} gebannt - Dauer: {duration} gebannt." + }, + "banned_self": { + "en_US": "{char} has been added to the ban list.", + "de_DE": "{char} wurde gebannt." + } +} diff --git a/modules/core/ban/ban_controller.py b/modules/core/ban/ban_controller.py new file mode 100644 index 0000000..cf2a1ed --- /dev/null +++ b/modules/core/ban/ban_controller.py @@ -0,0 +1,79 @@ +import hjson + +from core.aochat.BaseModule import BaseModule +from core.chat_blob import ChatBlob +from core.command_param_types import Any, Const, Options, Time, Character +from core.db import DB +from core.decorators import instance, command +from core.lookup.character_service import CharacterService +from core.translation_service import TranslationService +from core.tyrbot import Tyrbot +from modules.core.ban.ban_service import BanService + + +@instance() +class BanController(BaseModule): + # noinspection DuplicatedCode + def inject(self, registry): + self.bot: Tyrbot = registry.get_instance("bot") + self.db: DB = registry.get_instance("db") + self.text = registry.get_instance("text") + self.util = registry.get_instance("util") + self.ban_service: BanService = registry.get_instance("ban_service") + self.command_alias_service = registry.get_instance("command_alias_service") + self.ts: TranslationService = registry.get_instance("translation_service") + self.character_service: CharacterService = registry.get_instance("character_service") + self.getresp = self.ts.get_response + + def start(self): + self.command_alias_service.add_alias("unban", "ban rem") + self.ts.register_translation("module/ban", self.load_ban_msg) + + def load_ban_msg(self): + with open("modules/core/ban/ban.msg", mode="r", encoding="UTF-8") as f: + return hjson.load(f) + + @command(command="ban", params=[Const("list", is_optional=True)], access_level="moderator", + description="Show the ban list") + def ban_list_cmd(self, _, _1): + query = self.db.query("SELECT a.*, p.*, b.reason, b.finished_at, b.created_at, b.sender_char_id from account a " + "left join player p on a.char_id = p.char_id " + "left join ban_list b on a.char_id = b.char_id " + "where main=a.char_id " + "and disabled=1 " + "and p.org_id NOT IN (SELECT org_id from ban_org_list)") + blob = "" + for row in query: + ends = "never" if (row.finished_at or -1) == -1 else self.util.format_datetime(row.finished_at) + blob += f"{row.name} by " \ + f"{self.character_service.resolve_char_to_name(row.sender_char_id or self.bot.get_char_id())}\n" + if row.sender_char_id != 0 and row.sender_char_id is not None: + blob += f"Added at: {self.util.format_datetime(row.created_at)} " \ + f"Ends: {ends}\n" + blob += f"Reason: {row.reason or 'None given'}\n" + blob += "\n" + return ChatBlob("Banned Accounts", blob) + + @command(command="ban", params=[Options(["rem", "remove"]), Character("character")], access_level="moderator", + description="Remove a character from the ban list") + def ban_remove_cmd(self, _, _1, char): + if not char.char_id: + return self.getresp("global", "char_not_found", {"char": char.name}) + elif not self.ban_service.get_ban(char.char_id): + return self.getresp("module/ban", "not_banned", {"char": char.name}) + else: + self.ban_service.remove_ban(char.char_id) + return self.getresp("module/ban", "unbanned_self", {"char": char.name}) + + @command(command="ban", + params=[Const("add", is_optional=True), Character("character"), Time("duration", is_optional=True), + Any("reason", is_optional=True)], access_level="moderator", + description="Add a character to the ban list") + def ban_add_cmd(self, request, _, char, duration, reason): + if not char.char_id: + return self.getresp("global", "char_not_found", {"char": char.name}) + elif self.ban_service.get_ban(char.char_id): + return f"{char.name} is already banned." + else: + self.ban_service.add_ban(char.char_id, request.sender.char_id, duration, reason) + request.reply(f"{char.name} has been added to the ban list.") diff --git a/modules/core/ban/ban_service.py b/modules/core/ban/ban_service.py new file mode 100644 index 0000000..77e51a7 --- /dev/null +++ b/modules/core/ban/ban_service.py @@ -0,0 +1,101 @@ +import time + +from core.decorators import instance +from core.dict_object import DictObject +from core.logger import Logger +from modules.core.accounting.services.account_service import AccountService + + +@instance() +class BanService: + BAN_ADDED_EVENT = "ban_added" + BAN_REMOVED_EVENT = "ban_removed" + + def __init__(self): + self.logger = Logger(__name__) + + def inject(self, registry): + self.db = registry.get_instance("db") + self.event_service = registry.get_instance("event_service") + self.command_service = registry.get_instance("command_service") + self.account_service: AccountService = registry.get_instance("account_service") + + def pre_start(self): + self.db.exec("CREATE TABLE IF NOT EXISTS ban_list (char_id INT NOT NULL, " + "sender_char_id INT NOT NULL, " + "created_at INT NOT NULL, " + "finished_at INT NOT NULL, " + "reason VARCHAR(255) NOT NULL, " + "ended_early SMALLINT NOT NULL, " + "INDEX `char_id` (`char_id`) USING BTREE, " + "INDEX `sender_char_id` (`sender_char_id`) USING BTREE)") + self.db.exec("CREATE TABLE IF NOT EXISTS ban_org_list (org_id INT NOT NULL, " + "sender_char_id INT NOT NULL, " + "created_at INT NOT NULL, " + "finished_at INT NOT NULL, " + "reason VARCHAR(255) NOT NULL, " + "ended_early SMALLINT NOT NULL, " + "INDEX `org_id` (`org_id`) USING BTREE, " + "INDEX `sender_char_id` (`sender_char_id`) USING BTREE)") + self.event_service.register_event_type(self.BAN_ADDED_EVENT) + self.event_service.register_event_type(self.BAN_REMOVED_EVENT) + + def start(self): + self.command_service.register_command_pre_processor(self.check_for_banned) + + def add_ban(self, char_id, sender_char_id, duration=None, reason=None): + reason = reason or "" + + t = int(time.time()) + if duration: + finished_at = t + duration + else: + finished_at = -1 + + num_rows = self.db.exec("INSERT INTO ban_list (char_id, sender_char_id, created_at, " + "finished_at, reason, ended_early) VALUES (?, ?, ?, ?, ?, 0)", + [char_id, sender_char_id, t, finished_at, reason]) + + if num_rows: + self.account_service.create_users([(char_id, char_id, 0, time.time(), time.time())]) + self.db.exec("UPDATE account set disabled=1 where main=(SELECT main from account where char_id=?)", + [char_id]) + self.event_service.fire_event(self.BAN_ADDED_EVENT, DictObject({"char_id": char_id, + "sender_char_id": sender_char_id, + "duration": duration, + "reason": reason})) + + return num_rows + + def remove_ban(self, char_id): + t = int(time.time()) + num_rows = self.db.exec("UPDATE ban_list SET ended_early = 1 " + "WHERE char_id = ? AND (finished_at > ? OR finished_at = -1)", [char_id, t]) + if num_rows: + self.db.exec("UPDATE account SET disabled = 0 " + "WHERE main = (SELECT main from account where char_id=?)", [char_id]) + self.event_service.fire_event(self.BAN_REMOVED_EVENT, DictObject({"char_id": char_id})) + + return num_rows + + def get_ban(self, char_id): + return self.db.query_single("SELECT * FROM account " + "WHERE char_id = (SELECT main from account where char_id=?) and disabled=1", + [char_id]) + + def get_ban_list(self): + t = int(time.time()) + return self.db.query("SELECT b.*, COALESCE(p1.name, b.char_id) AS name, p2.name AS sender_name FROM ban_list b " + "LEFT JOIN player p1 ON b.char_id = p1.char_id " + "LEFT JOIN player p2 ON b.sender_char_id = p2.char_id " + "WHERE ended_early != 1 AND (finished_at > ? OR finished_at = -1) " + "ORDER BY b.created_at DESC", [t]) + + def check_for_banned(self, context): + char_id = context.char_id + if self.get_ban(char_id): + # do nothing if character is banned + self.logger.info("ignoring banned character %d for command '%s'" % (char_id, context.message)) + return False + else: + return True diff --git a/modules/core/ban/orgban_controller.py b/modules/core/ban/orgban_controller.py new file mode 100644 index 0000000..d59669c --- /dev/null +++ b/modules/core/ban/orgban_controller.py @@ -0,0 +1,172 @@ +import time + +import hjson +import requests + +from core.aochat.BaseModule import BaseModule +from core.chat_blob import ChatBlob +from core.command_param_types import Any, Const, Options, Int +from core.db import DB +from core.decorators import instance, command, timerevent +from core.logger import Logger +from core.lookup.character_service import CharacterService +from core.lookup.org_pork_service import OrgPorkService +from core.private_channel_service import PrivateChannelService +from core.translation_service import TranslationService +from core.tyrbot import Tyrbot +from modules.core.accounting.services.account_service import AccountService +from modules.core.ban.ban_service import BanService + + +@instance() +class OrgBanController(BaseModule): + single_org_uri = "https://people.anarchy-online.com/org/stats/d/5/name/%d/basicstats.xml?data_type=json" + + def __init__(self): + self.logger = Logger(__name__) + + def inject(self, registry): + self.bot: Tyrbot = registry.get_instance("bot") + self.db: DB = registry.get_instance("db") + self.text = registry.get_instance("text") + self.util = registry.get_instance("util") + self.ban_service: BanService = registry.get_instance("ban_service") + self.command_alias_service = registry.get_instance("command_alias_service") + self.ts: TranslationService = registry.get_instance("translation_service") + self.character_service: CharacterService = registry.get_instance("character_service") + self.pork: OrgPorkService = registry.get_instance("character_service") + self.getresp = self.ts.get_response + self.account_service: AccountService = registry.get_instance("account_service") + self.priv: PrivateChannelService = registry.get_instance("private_channel_service") + + def start(self): + self.ts.register_translation("module/ban", self.load_ban_msg) + + def load_ban_msg(self): + with open("modules/core/ban/ban.msg", mode="r", encoding="UTF-8") as f: + return hjson.load(f) + + @command(command="orgban", params=[Const("list", is_optional=True)], access_level="admin", + description="Show the ban list") + def ban_list_cmd(self, _, _1): + query = self.db.query("SELECT * from ban_org_list b " + "left join all_orgs a on a.org_id = b.org_id") + blob = "" + for row in query: + + blob += f"{row.org_name} ({row.org_id} " \ + f"with {row.member_count} members) by " \ + f"{self.character_service.resolve_char_to_name(row.sender_char_id)}\n" + if row.sender_char_id != 0 and row.sender_char_id is not None: + blob += f"Added at: {self.util.format_datetime(row.created_at)}\n" + blob += f"Reason: {row.reason or 'None given'}\n" + blob += "\n" + return ChatBlob("Banned Organisations", blob) + + @command(command="orgban", params=[Options(["rem", "remove"]), Int("Organisation")], access_level="admin", + description="Remove an org from the ban list") + def ban_remove_cmd(self, _, _1, org): + if self.db.query("SELECT * from ban_org_list where org_id=?", [org]): + self.db.exec("DELETE FROM ban_org_list where org_id = ?", [org]) + return f"Successfully unbanned org {org} - " \ + f"Beware, all players are still banned using an account ban; " \ + f"It can be lifted using !account add " + + @command(command="orgban", params=[Options(["rem", "remove"]), Any("Organisation")], access_level="admin", + description="Remove an org from the ban list") + def ban_remove_cmd_name(self, request, _, org: str): + orgs = self.db.query( + "SELECT * from all_orgs where org_name LIKE ? and org_id in (SELECT org_id from ban_org_list)", + ["%" + org.replace(" ", "%") + "%"]) + if len(orgs) == 1: + self.ban_remove_cmd(request, _, orgs[0].org_id) + elif len(orgs) == 0: + return "No orgs matching your search found." + elif len(orgs) > 1: + blob = "Your search had multiple results; please pick an org:
" + for org in orgs: + blob += "[%s] %s (%s) <%s>%s [%s " \ + "members]
" \ + % (self.text.make_chatcmd("Unban", "/tell orgban remove %s" % org.org_id), + # self.text.make_chatcmd("More", "/tell org info %s" % org.org_id), + org.org_name, org.org_id, org.faction.lower(), org.faction, org.member_count) + return ChatBlob("Pick an Org", blob) + + @command(command="orgban", params=[Const("add", is_optional=True), Int("Organisation"), + Any("reason", is_optional=True)], access_level="admin", + description="Add an org to the ban list") + def ban_add_cmd(self, request, _, org, reason): + if self.db.query("SELECT * from ban_org_list where org_id=?", [org]): + return f"Organisation with the ID {org} is already banned." + if self.db.exec( + "INSERT INTO ban_org_list(org_id, sender_char_id, created_at, finished_at, reason, ended_early) " + "VALUES (?, ?, ?, 0, ?, 0)", + [org, request.sender.char_id, time.time(), reason or ""]): + self.fetch_single(org, request) + # return f"Organisation with the ID {org} has been banned." + + @command(command="orgban", + params=[Options(["add"], is_optional=True), Any("Organisation")], + access_level="admin", + description="Add an org from the ban list") + def ban_add_cmd_name(self, request, _, org: str): + orgs = self.db.query("SELECT * from all_orgs where org_name LIKE ? order by org_name", + ["%" + org.replace(" ", "%") + "%"]) + if len(orgs) == 1: + self.ban_add_cmd(request, _, orgs[0].org_id, "") + elif len(orgs) == 0: + return " No orgs matching your search found." + elif len(orgs) > 1: + blob = "Your search had multiple results; please pick an org:
" + for org in orgs: + blob += "[%s] %s (%s) <%s>%s [%s " \ + "members]
" \ + % (self.text.make_chatcmd("Add Ban", "/tell orgban add %s" % org.org_id), + org.org_name, org.org_id, org.faction.lower(), org.faction, org.member_count) + return ChatBlob("Pick an Org", blob) + + def fetch_single(self, org_id, sender: object): + start = time.time() + data = [] + accounts = [] + count = 0 + result = requests.get(self.single_org_uri % org_id).json() + for char_info in result[1]: + data.append((char_info["CHAR_INSTANCE"], char_info["NAME"], char_info["FIRSTNAME"], + char_info["LASTNAME"], + char_info["LEVELX"], char_info["BREED"], + char_info["SEX"], result[0]["SIDE_NAME"], char_info["PROF"], + char_info["PROF_TITLE"], char_info["DEFENDER_RANK_TITLE"], char_info["ALIENLEVEL"], + result[0]["ORG_INSTANCE"], result[0]["NAME"], char_info["RANK_TITLE"], + char_info["RANK"], char_info["CHAR_DIMENSION"], char_info["HEADID"], + 0, char_info["PVPTITLE"], "roster", int(time.time()))) + + accounts.append((char_info["CHAR_INSTANCE"], char_info["CHAR_INSTANCE"], -1, start, start)) + self.priv.kick(char_info['CHAR_INSTANCE']) + count += 1 + with self.db.pool.get_connection() as conn: + with conn.cursor() as cur: + cur.executemany( + "REPLACE INTO player(char_id, name, first_name, last_name, level, breed, gender, faction, " + "profession, profession_title, ai_rank, ai_level, org_id, org_name, org_rank_name, " + "org_rank_id, dimension, head_id, pvp_rating, pvp_title, source, last_updated) " + "VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)", + data) + self.account_service.create_users(accounts, disable=True) + if sender: + sender.reply( + f"Org with ID {org_id} has been banned. " + f"Runtime: {time.time() - start:.2f} seconds.") + + @timerevent(budatime="24h", description="Refresh orgbans") + def refresh_orgban(self, _, _1): + banned_orgs = self.db.query("SELECT * from ban_org_list") + # for org in [1456129, 391173,1136642, 1011713]: + # if org not in banned_orgs: + # self.messagehub.send_message("system_logger", None, f"**WARN** Rebanning {org}", + # f"**WARN** Rebanning {org}") + # self.ban_add_cmd(None, None, org, 'AUTO-BAN') + # banned_orgs.append(org) + for org in banned_orgs: + self.fetch_single(org.org_id, None) + self.logger.info(f"Refreshed bans for org {org.org_id}") diff --git a/modules/core/buddy/buddy.msg b/modules/core/buddy/buddy.msg new file mode 100644 index 0000000..5f4feeb --- /dev/null +++ b/modules/core/buddy/buddy.msg @@ -0,0 +1,26 @@ +{ + "blob_title": { + "en_US": "Buddy list ({amount})", + "de_DE": "Freundesliste ({amount})" + }, + "add_success": { + "en_US": "Character {char} has been added to the buddy list for type {type}.", + "de_DE": "Der Charakter {char} wurde der Freundesliste als {type} hinzugefügt." + }, + "rem_all": { + "en_US": "Removed all {count} buddies from the buddy list.", + "de_DE": "Es wurden {count} Freunde aus der Freundesliste entfernt." + }, + "rem_single": { + "en_US": "Character {char} has been removed from the buddy list for type {type}.", + "de_DE": "Der Charakter {char} ist nun nicht mehr als {type} in der Freundesliste." + }, + "rem_orphaned": { + "en_US": "Removed {count} orphaned buddies from the buddy list.", + "de_DE": "Es wurden {count} verwaiste Freunde entfernt." + }, + "search_title": { + "en_US": "Buddy List Search Results ({amount})", + "de_DE": "Ergebnis der Suche in der Freundesliste ({amount})" + } +} diff --git a/modules/core/buddy/buddy_controller.py b/modules/core/buddy/buddy_controller.py new file mode 100644 index 0000000..2d36130 --- /dev/null +++ b/modules/core/buddy/buddy_controller.py @@ -0,0 +1,115 @@ +import hjson + +from core.chat_blob import ChatBlob +from core.command_param_types import Any, Const, Options, Character +from core.decorators import instance, command, timerevent +from core.logger import Logger +from core.translation_service import TranslationService + + +@instance() +class BuddyController: + def __init__(self): + self.logger = Logger(__name__) + + def inject(self, registry): + self.bot = registry.get_instance("bot") + self.character_service = registry.get_instance("character_service") + self.buddy_service = registry.get_instance("buddy_service") + self.ts: TranslationService = registry.get_instance("translation_service") + self.getresp = self.ts.get_response + + def start(self): + self.ts.register_translation("module/buddy", self.load_buddy_msg) + + def load_buddy_msg(self): + with open("modules/core/buddy/buddy.msg", mode="r", encoding="UTF-8") as f: + return hjson.load(f) + + @command(command="buddylist", params=[], access_level="admin", + description="Show characters on the buddy list") + def buddylist_cmd(self, _): + buddy_list = [] + for char_id, buddy in self.buddy_service.get_all_buddies().items(): + char_name = self.character_service.resolve_char_to_name(char_id, "Unknown(%d)" % char_id) + buddy_list.append([char_name, buddy]) + + blob = self.format_buddies(buddy_list) + + return ChatBlob(self.getresp("module/buddy", "blob_title", {"amount": len(buddy_list)}), blob) + + @command(command="buddylist", + params=[Const("add"), Character("character"), Any("type")], + access_level="admin", + description="Add a character to the buddy list") + def buddylist_add_cmd(self, _, _1, char, buddy_type): + buddy_type = buddy_type.lower() + + if char.char_id: + self.buddy_service.add_buddy(char.char_id, buddy_type) + return self.getresp("module/buddy", "add_success", {"char": char.name, "type": buddy_type}) + else: + return self.getresp("global", "char_not_found", {"char": char.name}) + + @command(command="buddylist", params=[Options(["rem", "remove"]), Const("all")], access_level="admin", + description="Remove all characters from the buddy list") + def buddylist_remove_all_cmd(self, _, _1, _2): + count = 0 + for char_id, buddy in self.buddy_service.get_all_buddies().items(): + self.buddy_service.remove_buddy(char_id, None, True) + count += 1 + + return self.getresp("module/buddy", "rem_all", {"count": count}) + + @command(command="buddylist", + params=[Options(["rem", "remove"]), Character("character"), Any("type")], + access_level="admin", + description="Remove a character from the buddy list") + def buddylist_remove_cmd(self, _, _1, char, buddy_type): + buddy_type = buddy_type.lower() + + if char.char_id: + self.buddy_service.remove_buddy(char.char_id, buddy_type) + return self.getresp("module/buddy", "rem_single", {"char": char.name, "type": buddy_type}) + else: + return self.getresp("global", "char_not_found", {"char": char.name}) + + @command(command="buddylist", params=[Const("clean")], access_level="admin", + description="Remove all orphaned buddies from the buddy list") + def buddylist_clean_cmd(self, _, _1): + return self.getresp("module/buddy", "rem_orphaned", {"count": self.remove_orphaned_buddies()}) + + @command(command="buddylist", params=[Const("search"), Any("character")], access_level="admin", + description="Search for characters on the buddy list") + def buddylist_search_cmd(self, _, _1, search): + search = search.lower() + + buddy_list = [] + for char_id, buddy in self.buddy_service.get_all_buddies().items(): + char_name = self.character_service.resolve_char_to_name(char_id, "Unknown(%d)" % char_id) + if search in char_name.lower(): + buddy_list.append([char_name, buddy]) + + blob = self.format_buddies(buddy_list) + return ChatBlob(self.getresp("module/buddy", "search_title", {"amount": len(buddy_list)}), blob) + + @timerevent(budatime="24h", description="Remove orphaned buddies", is_hidden=True) + def remove_orphaned_buddies_event(self, _, _1): + self.logger.debug("removing %d orphaned buddies" % self.remove_orphaned_buddies()) + + def remove_orphaned_buddies(self): + count = 0 + for char_id, buddy in self.buddy_service.get_all_buddies().items(): + if len(buddy["types"]) == 0: + self.buddy_service.remove_buddy(char_id, None, True) + count += 1 + return count + + def format_buddies(self, buddy_list): + buddy_list = sorted(buddy_list, key=lambda x: x[0]) + + blob = "" + for name, buddy in buddy_list: + blob += "%s(%s) - %s\n" % (name, buddy["conn_id"], ",".join(buddy["types"])) + + return blob diff --git a/modules/core/colors/color_controller.py b/modules/core/colors/color_controller.py new file mode 100644 index 0000000..63cb419 --- /dev/null +++ b/modules/core/colors/color_controller.py @@ -0,0 +1,48 @@ +from core.aochat.BaseModule import BaseModule +from core.decorators import instance +from core.setting_service import SettingService +from core.setting_types import ColorSettingType +from core.tyrbot import Tyrbot + + +@instance() +class ColorController(BaseModule): + def inject(self, registry): + self.setting_service: SettingService = registry.get_instance("setting_service") + self.bot: Tyrbot = registry.get_instance("bot") + + # noinspection LongLine + def start(self): + self.setting_service.register_new(self.module_name, "header_color", "#FFFF00", ColorSettingType(), + "Color for headers") + self.setting_service.register_new(self.module_name, "header2_color", "#FCA712", ColorSettingType(), + "Color for sub-headers") + self.setting_service.register_new(self.module_name, "highlight_color", "#00FF00", ColorSettingType(), + "Color for highlight") + self.setting_service.register_new(self.module_name, "notice_color", "#FF8C00", ColorSettingType(), + "Color for important notices") + self.setting_service.register_new(self.module_name, "neutral_color", "#E6E1A6", ColorSettingType(), + "Color for neutral faction") + self.setting_service.register_new(self.module_name, "omni_color", "#FA8484", ColorSettingType(), + "Color for omni faction") + self.setting_service.register_new(self.module_name, "clan_color", "#F79410", ColorSettingType(), + "Color for clan faction") + self.setting_service.register_new(self.module_name, "unknown_color", "#FF0000", ColorSettingType(), + "Color for unknown faction") + self.setting_service.register_new(self.module_name, "org_channel_color", "#89D2E8", ColorSettingType(), + "Default org channel color") + self.setting_service.register_new(self.module_name, "private_channel_color", "#89D2E8", ColorSettingType(), + "Default private channel color") + self.setting_service.register_new(self.module_name, "private_message_color", "#89D2E8", ColorSettingType(), + "Default private message color") + self.setting_service.register_new(self.module_name, "blob_color", "#FFFFFF", ColorSettingType(), + "Default blob content color") + if 'orgbot' in self.bot.modules: + self.setting_service.register_new(self.module_name, "alliance_base", "#00FF00", ColorSettingType(), + "Base color for alliance relay") + self.setting_service.register_new(self.module_name, "alliance_org", "#FFFF00", ColorSettingType(), + "Org color for alliance relay") + self.setting_service.register_new(self.module_name, "alliance_sender", "#FF8C00", ColorSettingType(), + "Name color for alliance relay") + self.setting_service.register_new(self.module_name, "alliance_msg", "#FF8C00", ColorSettingType(), + "Message color for alliance relay") diff --git a/modules/core/config/alias_controller.py b/modules/core/config/alias_controller.py new file mode 100644 index 0000000..a8503c7 --- /dev/null +++ b/modules/core/config/alias_controller.py @@ -0,0 +1,39 @@ +from core.chat_blob import ChatBlob +from core.command_param_types import Const, Any, Options +from core.decorators import instance, command +from core.translation_service import TranslationService + + +@instance() +class AliasController: + def inject(self, registry): + self.command_alias_service = registry.get_instance("command_alias_service") + self.ts: TranslationService = registry.get_instance("translation_service") + self.getresp = self.ts.get_response + + @command(command="alias", params=[Const("list")], access_level="member", + description="List command aliases") + def alias_list_cmd(self, _, _1): + blob = "" + data = self.command_alias_service.get_enabled_aliases() + count = len(data) + for row in data: + blob += row.alias + " - " + row.command + "\n" + + return ChatBlob(self.getresp("module/config", "alias_blob_title", {"amount": count}), blob) + + @command(command="alias", params=[Const("add"), Any("alias"), Any("command")], access_level="admin", + description="Add a command alias", sub_command="modify") + def alias_add_cmd(self, _, _1, alias, command_str): + if self.command_alias_service.add_alias(alias, command_str, force_enable=True): + return self.getresp("module/config", "alias_add_success", {"alias": alias, "cmd": command_str}) + else: + return self.getresp("module/config", "alias_add_fail", {"alias": alias}) + + @command(command="alias", params=[Options(["rem", "remove"]), Any("alias")], access_level="admin", + description="Remove a command alias", sub_command="modify") + def alias_remove_cmd(self, _, _1, alias): + if self.command_alias_service.remove_alias(alias): + return self.getresp("module/config", "alias_rem_success", {"alias": alias}) + else: + return self.getresp("module/config", "alias_rem_fail", {"alias": alias}) diff --git a/modules/core/config/config.msg b/modules/core/config/config.msg new file mode 100644 index 0000000..52751fe --- /dev/null +++ b/modules/core/config/config.msg @@ -0,0 +1,181 @@ +{ + "alias_blob_title": { + "en_US": "Aliases ({amount})", + "de_DE": "Alias Liste ({amount})" + }, + "alias_add_success": { + "en_US": "Alias {alias} for command {cmd} added successfully.", + "de_DE": "Der Alias {alias} für den Befehl {cmd} wurde erfolgreich hinzugefügt." + }, + "alias_add_fail": { + "en_US": "Cannot add alias {alias} since there is already an active alias with that name.", + "de_DE": "Der Alias {alias} konnte nicht hinzugefügt werden, da bereits einer mit selbigem Alias existiert." + }, + "alias_rem_success": { + "en_US": "Alias {alias} has been removed successfully.", + "de_DE": "Der Alias {alias} wurde erfolgreich entfernt." + }, + "alias_rem_fail": { + "en_US": "Could not find alias {alias}", + "de_DE": "Der Alias {alias} konnte nicht gefunden werden." + }, + "cmdlist_commands": { + "en_US": "Commands ({amount})", + "de_DE": "Befehlsliste ({amount})" + }, + "cmd_unknown_channel": { + "en_US": "Unknown command channel {channel}.", + "de_DE": "Der Befehlschannel {channel} existiert nicht." + }, + "cmd_unknown_for_channel": { + "en_US": "Could not find command {cmd} for channel {channel}.", + "de_DE": "Der Befehl {cmd} für den Channel {channel} wurde nicht gefunden." + }, + "enabled_low": { + "en_US": "enabled", + "de_DE": "aktiviert" + }, + "disabled_low": { + "en_US": "disabled", + "de_DE": "deaktiviert" + }, + "run": { + "en_US": "run", + "de_DE": "ausgeführt" + }, + "enabled_high": { + "en_US": "Enabled", + "de_DE": "Aktiviert" + }, + "disabled_high": { + "en_US": "Disabled", + "de_DE": "Deaktiviert" + }, + "enable": { + "en_US": "Enable", + "de_DE": "Aktivieren" + }, + "disable": { + "en_US": "Disable", + "de_DE": "Deaktivieren" + }, + "partial": { + "en_US": "Partial", + "de_DE": "Teilweise aktiviert" + }, + "config": { + "en_US": "Config ({count})", + "de_DE": "Einstellungen ({count})" + }, + "cmd_toggle_success": { + "en_US": "Command {cmd} has been {changedto} successfully.", + "de_DE": "Der Befehl {cmd} ist nun {changedto}" + }, + "cmd_toggle_channel_success": { + "en_US": "Command {cmd} for channel {channel} has been {changedto} successfully.", + "de_DE": "Der Befehl {cmd} ist im channel {channel} nun {changedto}." + }, + "unknown_accesslevel": { + "en_US": "Unknown access level {al}.", + "de_DE": "Unbekanntes Rechtelevel: {al}" + }, + "set_accesslevel_success": { + "en_US": "Access level {al} for command {cmd} has been set successfully.", + "de_DE": "Für den Befehl {cmd} wurden die Zugriffsreche erfolgreich auf {al} geändert." + }, + "set_accesslevel_fail": { + "en_US": "Access level {al} for command {cmd} on channel {channel} has been set successfully.", + "de_DE": "Der Befehl {cmd} benötigt im channel {channel} nun den Rang {al}." + }, + "access_level": { + "en_US": "Access Level", + "de_DE": "Zugriffslevel" + }, + "no_cmd": { + "en_US": "Could not find command {cmd}.", + "de_DE": "Der Befehl {cmd} ist mir unbekannt." + }, + "settings": { + "en_US": "Settings\n", + "de_DE": "Einstellungen\n" + }, + "commands": { + "en_US": "\nCommands\n", + "de_DE": "\nBefehle\n" + }, + "events": { + "en_US": "Events", + "de_DE": "Events" + }, + "hidden_events": { + "en_US": "Hidden Events", + "de_DE": "Verstecke Events" + }, + "mod_title": { + "en_US": "Module ({mod})", + "de_DE": "Modul ({mod})" + }, + "mod_not_found": { + "en_US": "Could not find module {mod}", + "de_DE": "Das Modul {mod} wurde nicht gefunden." + }, + "no_new_value": { + "en_US": "Error! New value required to update setting.", + "de_DE": "Error! Es muss eine neue Option eingegeben werden, um die Einstellung zu ändern." + }, + "set_clr": { + "en_US": "Setting {setting} has been cleared.", + "de_DE": "Die Einstellung {setting} wurde geleert." + }, + "set_new": { + "en_US": "Setting {setting} has been set to {value}.", + "de_DE": "Die Einstellung {setting} hat nun den Wert: {value}" + }, + "setting_not_found": { + "en_US": "Could not find setting {setting}.", + "de_DE": "Die Einstellung {setting} wurde nicht gefunden." + }, + "current_value": { + "en_US": "Current Value: {value}\n", + "de_DE": "Aktueller Wert: {value}\n" + }, + "description": { + "en_US": "Description: {desc}\n\n", + "de_DE": "Beschreibung: {desc}\n\n" + }, + "setting": { + "en_US": "Setting ({setting})", + "de_DE": "Einstellung ({setting})" + }, + "settinglist_title": { + "en_US": "Settings ({count})", + "de_DE": "Einstellungen ({count})" + }, + "unknown_event": { + "en_US": "Unknown event type {type}.", + "de_DE": "Unbekannter Eventtyp: {type}" + }, + "event_enable_fail": { + "en_US": "Handler {handler} type {type} already has the desired type." + }, + "event_enable_success": { + "en_US": "Event type {type} for handler {handler} has been {changedto} successfully.", + "de_DE": "Für den Eventtyp {type} wurde der handler {handler} erfolgreich {changedto}." + }, + "event_manual": { + "en_US": "Only timer events can be run manually.", + "de_DE": "Es können nur timer Events manuell angestoßen werden." + }, + "blob_events": { + "en_US": "Events ({amount})", + "de_DE": "Events ({amount})" + }, + "hidden": { + "en_US": "hidden", + "de_DE": "versteckt" + }, + "include_hidden_events": { + "en_US": "Include hidden events", + "de_DE": "Versteckte Events anzeigen" + } +} diff --git a/modules/core/config/config_cmdlist_controller.py b/modules/core/config/config_cmdlist_controller.py new file mode 100644 index 0000000..1fc1bb8 --- /dev/null +++ b/modules/core/config/config_cmdlist_controller.py @@ -0,0 +1,82 @@ +from core.chat_blob import ChatBlob +from core.command_param_types import NamedParameters, Const +from core.db import DB +from core.decorators import instance, command +from core.text import Text +from core.translation_service import TranslationService + + +@instance() +class CommandListController: + def inject(self, registry): + self.db: DB = registry.get_instance("db") + self.text: Text = registry.get_instance("text") + self.command_service = registry.get_instance("command_service") + self.ts: TranslationService = registry.get_instance("translation_service") + self.getresp = self.ts.get_response + + @command(command="config", params=[Const("cmdlist"), NamedParameters(["access_level"])], access_level="admin", + description="List all commands") + def config_cmdlist_cmd(self, _, _1, named_params): + sql = "SELECT access_level, channel, enabled, command, module, sub_command FROM command_config" + params = [] + if named_params.access_level: + sql += " WHERE access_level = ?" + params.append(named_params.access_level) + sql += " ORDER BY module, command, sub_command, channel" + data = self.db.query(sql, params) + + blob = "" + current_module = "" + current_command_key = "" + count = 0 + temp_rows = [] + for row in data: + if current_module != row.module: + if temp_rows: + blob += self.display_row_data(temp_rows) + temp_rows = [] + blob += "\n%s\n" % row.module + current_module = row.module + current_command_key = "" + + command_key = self.command_service.get_command_key(row.command, row.sub_command) + if current_command_key != command_key: + if temp_rows: + blob += self.display_row_data(temp_rows) + temp_rows = [] + count += 1 + blob += "%s - " % (self.text.make_tellcmd(command_key, "config cmd " + command_key)) + current_command_key = command_key + + temp_rows.append(row) + + if temp_rows: + blob += self.display_row_data(temp_rows) + + return ChatBlob(self.getresp("module/config", "cmdlist_commands", {"amount": count}), blob) + + def display_row_data(self, rows): + return "[%s %s]\n" % (self.get_enabled_str(rows), self.get_access_levels_str(rows)) + + def get_access_levels_str(self, rows): + access_levels = list(map(lambda x: x.access_level, rows)) + if all(x == access_levels[0] for x in access_levels): + return access_levels[0] + else: + return ",".join(access_levels) + + def get_enabled_str(self, rows): + enabled = list(map(lambda x: x.enabled, rows)) + + blob = "" + if all(x == enabled[0] for x in enabled): + blob += self.format_enabled(enabled[0]) + else: + for x in enabled: + blob += self.format_enabled(x) + + return blob + + def format_enabled(self, enabled): + return "E" if enabled else "D" diff --git a/modules/core/config/config_command_controller.py b/modules/core/config/config_command_controller.py new file mode 100644 index 0000000..382b48f --- /dev/null +++ b/modules/core/config/config_command_controller.py @@ -0,0 +1,143 @@ +from core.chat_blob import ChatBlob +from core.command_param_types import Const, Any, Options +from core.db import DB +from core.decorators import instance, command +from core.text import Text +from core.translation_service import TranslationService + + +@instance() +class ConfigCommandController: + def inject(self, registry): + self.db: DB = registry.get_instance("db") + self.text: Text = registry.get_instance("text") + self.access_service = registry.get_instance("access_service") + self.command_service = registry.get_instance("command_service") + self.ts: TranslationService = registry.get_instance("translation_service") + self.getresp = self.ts.get_response + + @command(command="config", + params=[Const("cmd"), Any("cmd_name"), Options(["enable", "disable"]), Any("channel")], + access_level="admin", + description="Enable or disable a command") + def config_cmd_status_cmd(self, _, _1, cmd_name, action, cmd_channel): + cmd_name = cmd_name.lower() + action = action.lower() + cmd_channel = cmd_channel.lower() + command_str, sub_command_str = self.command_service.get_command_key_parts(cmd_name) + enabled = 1 if action == "enable" else 0 + + if cmd_channel != "all" and not self.command_service.is_command_channel(cmd_channel): + return self.getresp("module/config", "cmd_unknown_channel", {"channel": cmd_channel}) + + sql = "UPDATE command_config SET enabled = ? WHERE command = ? AND sub_command = ?" + params = [enabled, command_str, sub_command_str] + if cmd_channel != "all": + sql += " AND channel = ?" + params.append(cmd_channel) + + count = self.db.exec(sql, params) + if count == 0: + return self.getresp("module/config", "cmd_unknown_for_channel", {"channel": cmd_channel, "cmd": cmd_name}) + else: + action = self.getresp("module/config", "enabled_low" if action == "enable" else "disabled_low") + if cmd_channel == "all": + return self.getresp("module/config", "cmd_toggle_success", {"cmd": cmd_name, "changedto": action}) + else: + return self.getresp("module/config", "cmd_toggle_channel_success", + {"channel": cmd_channel, "cmd": cmd_name, "changedto": action}) + + @command(command="config", + params=[Const("cmd"), Any("cmd_name"), Const("access_level"), Any("channel"), Any("access_level")], + access_level="admin", + description="Change access_level for a command") + def config_cmd_access_level_cmd(self, _, _1, cmd_name, _2, cmd_channel, access_level): + cmd_name = cmd_name.lower() + cmd_channel = cmd_channel.lower() + access_level = access_level.lower() + command_str, sub_command_str = self.command_service.get_command_key_parts(cmd_name) + + if cmd_channel != "all" and not self.command_service.is_command_channel(cmd_channel): + return self.getresp("module/config", "cmd_unknown_channel", {"channel": cmd_channel}) + + if self.access_service.get_access_level_by_label(access_level) is None: + return self.getresp("module/config", "unknown_accesslevel", {"al": access_level}) + + sql = "UPDATE command_config SET access_level = ? WHERE command = ? AND sub_command = ?" + params = [access_level, command_str, sub_command_str] + if cmd_channel != "all": + sql += " AND channel = ?" + params.append(cmd_channel) + + count = self.db.exec(sql, params) + if count == 0: + return self.getresp("module/config", "cmd_unknown_for_channel", {"channel": cmd_channel, "cmd": cmd_name}) + else: + if cmd_channel == "all": + return self.getresp("module/config", "set_accesslevel_success", {"cmd": cmd_name, "al": access_level}) + else: + return self.getresp("module/config", "set_accesslevel_fail", + {"channel": cmd_channel, "cmd": cmd_name, "al": access_level}) + + @command(command="config", params=[Const("cmd"), Any("cmd_name")], access_level="admin", + description="Show command configuration") + def config_cmd_show_cmd(self, _, _1, cmd_name): + cmd_name = cmd_name.lower() + command_str, sub_command_str = self.command_service.get_command_key_parts(cmd_name) + + blob = "" + for command_channel, channel_label in self.command_service.channels.items(): + cmd_configs = self.command_service.get_command_configs(command=command_str, + sub_command=sub_command_str, + channel=command_channel, + enabled=None) + if len(cmd_configs) > 0: + cmd_config = cmd_configs[0] + status = self.getresp("module/config", "enabled_high" if cmd_config.enabled == 1 else "disabled_high") + + blob += "%s %s (%s: %s)\n" % (channel_label, status, + self.getresp("module/config", "access_level"), + cmd_config.access_level.capitalize()) + + # show status config + blob += "Status:" + enable_link = self.text.make_tellcmd(self.getresp("module/config", "enable"), + "config cmd %s enable %s" + % (cmd_name, command_channel)) + disable_link = self.text.make_tellcmd(self.getresp("module/config", "disable"), + "config cmd %s disable %s" + % (cmd_name, command_channel)) + + blob += " " + enable_link + " " + disable_link + + # show access level config + blob += "\n" + self.getresp("module/config", "access_level") + for access_level in self.access_service.access_levels: + # skip "None" access level + if access_level["level"] == 0: + continue + + label = access_level["label"] + link = self.text.make_tellcmd(label.capitalize(), + f"config cmd {cmd_name} access_level {command_channel} {label}") + blob += " " + link + blob += "\n\n" + + if blob: + sub_commands = self.get_sub_commands(command_str, sub_command_str) + if sub_commands: + blob += "Subcommands\n" + for row in sub_commands: + command_name = self.command_service.get_command_key(row.command, row.sub_command) + blob += self.text.make_tellcmd(command_name, f"config cmd {command_name}") + "\n\n" + + # include help text + blob += "\n\n".join(map(lambda handler: handler["help"], self.command_service.get_handlers(cmd_name))) + return ChatBlob("Command (%s)" % cmd_name, blob) + else: + return self.getresp("module/config", "no_cmd", {"cmd": cmd_name}) + + def get_sub_commands(self, command_str, sub_command_str): + return self.db.query("SELECT DISTINCT command, sub_command FROM command_config " + "WHERE command = ? AND sub_command != ?", + [command_str, sub_command_str]) diff --git a/modules/core/config/config_controller.py b/modules/core/config/config_controller.py new file mode 100644 index 0000000..a5ae0f1 --- /dev/null +++ b/modules/core/config/config_controller.py @@ -0,0 +1,193 @@ +import hjson + +from core.chat_blob import ChatBlob +from core.command_param_types import Const, Any, Options, NamedFlagParameters +from core.db import DB +from core.decorators import instance, command +from core.text import Text +from core.translation_service import TranslationService + + +# noinspection SqlCaseVsIf +@instance() +class ConfigController: + def inject(self, registry): + self.db: DB = registry.get_instance("db") + self.text: Text = registry.get_instance("text") + self.command_service = registry.get_instance("command_service") + self.event_service = registry.get_instance("event_service") + self.setting_service = registry.get_instance("setting_service") + self.config_events_controller = registry.get_instance("config_events_controller") + self.ts: TranslationService = registry.get_instance("translation_service") + self.getresp = self.ts.get_response + + def start(self): + self.ts.register_translation("module/config", self.load_config_msg) + + def load_config_msg(self): + with open("modules/core/config/config.msg", mode="r", encoding="UTF-8") as f: + return hjson.load(f) + + @command(command="config", params=[], access_level="admin", + description="Show configuration options for the bot") + def config_list_cmd(self, _): + sql = """SELECT + module, + SUM(CASE WHEN enabled = 1 THEN 1 ELSE 0 END) count_enabled, + SUM(CASE WHEN enabled = 0 THEN 1 ELSE 0 END) count_disabled + FROM + (SELECT module, enabled FROM command_config + UNION + SELECT module, enabled FROM event_config WHERE is_hidden = 0 + UNION + SELECT module, 2 FROM setting) t + GROUP BY + module + ORDER BY + module""" + + data = self.db.query(sql) + count = len(data) + blob = "" + current_group = "" + for row in data: + parts = row.module.split(".") + group = parts[0] + module = parts[1] + if group != current_group: + current_group = group + blob += "\n" + current_group + "\n" + + blob += self.text.make_tellcmd(module, "config mod " + row.module) + " " + if row.count_enabled > 0 and row.count_disabled > 0: + blob += self.getresp("module/config", "partial") + else: + blob += f"[{'Enabled' if row.count_disabled == 0 else 'Disabled'}]" + blob += "\n" + + return ChatBlob(self.getresp("module/config", "config", {"count": count}), blob) + + @command(command="config", + params=[Options(["mod", "module"]), Any("module_name"), NamedFlagParameters(["include_hidden_events"])], + access_level="admin", + description="Show configuration options for a specific module") + def config_module_list_cmd(self, _, _1, module, named_params): + module = module.lower() + + blob = "" + + data = self.db.query("SELECT name FROM setting WHERE module = ? ORDER BY name", [module]) + if data: + blob += self.getresp("module/config", "settings") + for row in data: + setting = self.setting_service.get(row.name) + blob += "%s: %s (%s)\n" % (setting.get_description(), setting.get_display_value(), + self.text.make_tellcmd("change", "config setting " + row.name)) + + data = self.db.query( + "SELECT DISTINCT command, sub_command FROM command_config WHERE module = ? ORDER BY command", [module]) + if data: + blob += self.getresp("module/config", "commands") + for row in data: + command_key = self.command_service.get_command_key(row.command, row.sub_command) + blob += self.text.make_tellcmd(command_key, "config cmd " + command_key) + "\n" + + blob += self.format_events(self.get_events(module, False), self.getresp("module/config", "events")) + + if named_params.include_hidden_events: + blob += self.format_events(self.get_events(module, True), self.getresp("module/config", "hidden_events")) + + if blob: + if not named_params.include_hidden_events: + blob += "\n" + self.text.make_tellcmd(self.getresp("module/config", "include_hidden_events"), + f"config mod {module} --include_hidden_events") + + return ChatBlob(self.getresp("module/config", "mod_title", {"mod": module}), blob) + else: + return self.getresp("module/config", "mod_not_found", {"mod": module}) + + @command(command="config", params=[Const("settinglist")], access_level="admin", + description="List all settings") + def config_settinglist_cmd(self, _, _1): + blob = "" + + data = self.db.query("SELECT * FROM setting ORDER BY module, name") + count = len(data) + if data: + blob += self.getresp("module/config", "settings") + current_module = "" + for row in data: + if row.module != current_module: + current_module = row.module + blob += "\n%s\n" % row.module + + setting = self.setting_service.get(row.name) + blob += "%s: %s (%s)\n" % (setting.get_description(), + setting.get_display_value(), + self.text.make_tellcmd("change", "config setting " + row.name)) + + return ChatBlob(self.getresp("module/config", "settinglist_title", {"count": count}), blob) + + @command(command="config", params=[Const("setting"), Any("setting_name"), Options(["set", "clear"]), + Any("new_value", is_optional=True)], access_level="admin", + description="Change a setting value") + def config_setting_update_cmd(self, _, _1, setting_name, op, new_value): + setting_name = setting_name.lower() + + if op == "clear": + new_value = "" + elif not new_value: + return self.getresp("module/config", "no_new_value") + setting = self.setting_service.get(setting_name) + + if setting: + setting.set_value(new_value) + if op == "clear": + return self.getresp("module/config", "set_clr", {"setting": setting_name}) + else: + return self.getresp("module/config", "set_new", {"setting": setting_name, + "value": setting.get_display_value()}) + else: + return self.getresp("module/config", "setting_not_found", {"setting": setting_name}) + + @command(command="config", params=[Const("setting"), Any("setting_name")], access_level="admin", + description="Show configuration options for a setting") + def config_setting_show_cmd(self, _, _1, setting_name): + setting_name = setting_name.lower() + + blob = "" + + setting = self.setting_service.get(setting_name) + + if setting: + blob += self.getresp("module/config", "current_value", {"value": str(setting.get_display_value())}) + blob += self.getresp("module/config", "description", {"desc": setting.get_description()}) + if setting.get_extended_description(): + blob += setting.get_extended_description() + "\n\n" + blob += setting.get_display() + return ChatBlob(self.getresp("module/config", "setting", {"setting": setting_name}), blob) + else: + return self.getresp("module/config", "setting_not_found", {"setting": setting_name}) + + def get_events(self, module, is_hidden): + return self.db.query("SELECT event_type, event_sub_type, handler, description, enabled, is_hidden " + f"FROM event_config WHERE module = ? AND is_hidden = ? " + "ORDER BY is_hidden, event_type, handler", + [module, 1 if is_hidden else 0]) + + def format_events(self, data, title): + blob = "" + if data: + blob += f"\n{title}\n" + for row in data: + event_type_key = self.event_service.get_event_type_key(row.event_type, row.event_sub_type) + enabled = self.getresp("module/config", "enabled_high" if row.enabled == 1 else "disabled_high") + blob += f"{self.config_events_controller.format_event_type(row)} - {row.description} [{enabled}]" + blob += " " + self.text.make_tellcmd("On", "config event %s %s enable" % (event_type_key, row.handler)) + blob += " " + self.text.make_tellcmd("Off", + "config event %s %s disable" % (event_type_key, row.handler)) + if row.event_type == "timer": + blob += " " + self.text.make_tellcmd("Run Now", + "config event %s %s run" % (event_type_key, row.handler)) + blob += "\n" + return blob diff --git a/modules/core/config/config_events_controller.py b/modules/core/config/config_events_controller.py new file mode 100644 index 0000000..7dcc262 --- /dev/null +++ b/modules/core/config/config_events_controller.py @@ -0,0 +1,110 @@ +import time + +from core.chat_blob import ChatBlob +from core.command_param_types import Const, Any, Options, NamedParameters +from core.db import DB +from core.decorators import instance, command +from core.text import Text +from core.translation_service import TranslationService + + +@instance() +class ConfigEventsController: + def inject(self, registry): + self.db: DB = registry.get_instance("db") + self.text: Text = registry.get_instance("text") + self.command_service = registry.get_instance("command_service") + self.event_service = registry.get_instance("event_service") + self.setting_service = registry.get_instance("setting_service") + self.ts: TranslationService = registry.get_instance("translation_service") + self.getresp = self.ts.get_response + + @command(command="config", + params=[Const("event"), Any("event_type"), Any("event_handler"), Options(["enable", "disable"])], + access_level="admin", + description="Enable or disable an event") + def config_event_status_cmd(self, _, _1, event_type, event_handler, action): + event_type = event_type.lower() + event_handler = event_handler.lower() + action = action.lower() + event_base_type, event_sub_type = self.event_service.get_event_type_parts(event_type) + enabled = 1 if action == "enable" else 0 + + if not self.event_service.is_event_type(event_base_type): + return self.getresp("module/config", "unknown event", {"type", event_type}) + + count = self.event_service.update_event_status(event_base_type, event_sub_type, event_handler, enabled) + + if count == 0: + return self.getresp("module/config", "event_enable_fail", {"type": event_type, "handler": event_handler}) + else: + action = self.getresp("module/config", "enabled_high" if action == "enable" else "disabled_high") + return self.getresp("module/config", "event_enable_success", {"type": event_type, + "handler": event_handler, + "changedto": action}) + + @command(command="config", + params=[Const("event"), Any("event_type"), Any("event_handler"), Const("run")], + access_level="admin", + description="Execute a timed event immediately") + def config_event_run_cmd(self, _, _1, event_type, event_handler, _2): + event_type = event_type.lower() + event_handler = event_handler.lower() + event_base_type, event_sub_type = self.event_service.get_event_type_parts(event_type) + + if not self.event_service.is_event_type(event_base_type): + return self.getresp("module/config", "unknown event", {"type", event_type}) + + row = self.db.query_single("SELECT e.event_type, e.event_sub_type, e.handler, t.next_run FROM timer_event t " + "JOIN event_config e ON t.event_type = e.event_type AND t.handler = e.handler " + "WHERE e.event_type = ? AND e.event_sub_type = ? AND e.handler LIKE ?", + [event_base_type, event_sub_type, event_handler]) + + if not row: + return self.getresp("module/config", "event_enable_fail", {"type": event_type, "handler": event_handler}) + elif row.event_type != "timer": + return self.getresp("module/config", "event_manual") + else: + self.event_service.execute_timed_event(row, int(time.time())) + action = self.getresp("module/config", "run") + return self.getresp("module/config", "event_enable_success", {"type": event_type, + "handler": event_handler, + "changedto": action}) + + @command(command="config", params=[Const("eventlist"), NamedParameters(["event_type"])], access_level="admin", + description="List all events") + def config_eventlist_cmd(self, _, _1, named_params): + params = [] + sql = "SELECT module, event_type, event_sub_type, handler, description, enabled, is_hidden FROM event_config" + if named_params.event_type: + sql += " WHERE event_type = ?" + params.append(named_params.event_type) + sql += " ORDER BY module, is_hidden, event_type, event_sub_type, handler" + data = self.db.query(sql, params) + + blob = "Asterisk (*) denotes a hidden event. Only change these events if you understand the implications.\n" + current_module = "" + for row in data: + if current_module != row.module: + blob += "\n%s\n" % row.module + current_module = row.module + + event_type_key = self.format_event_type(row) + + on_link = self.text.make_tellcmd("On", "config event %s %s enable" % (event_type_key, row.handler)) + off_link = self.text.make_tellcmd("Off", "config event %s %s disable" % (event_type_key, row.handler)) + + if row.is_hidden == 1: + blob += "*" + blob += f"{event_type_key} [{self.format_enabled(row.enabled)}] {on_link} {off_link} - {row.description}\n" + + return ChatBlob(self.getresp("module/config", "blob_events", {"amount": len(data)}), blob) + + def format_enabled(self, enabled): + return "E" if enabled else "D" + + def format_event_type(self, row): + if row.event_sub_type: + return row.event_type + ":" + row.event_sub_type + else: + return row.event_type diff --git a/modules/core/discord/discord_controller.py b/modules/core/discord/discord_controller.py new file mode 100644 index 0000000..e467bb5 --- /dev/null +++ b/modules/core/discord/discord_controller.py @@ -0,0 +1,704 @@ +import asyncio +import html +import logging +import re +import threading +import time +from asyncio import BaseEventLoop +from html.parser import HTMLParser + +# noinspection PyPackageRequirements +import discord +import emojis as emojis +# noinspection PyPackageRequirements +from discord import Message, TextChannel, Guild, Embed, Role + +from core.chat_blob import ChatBlob +from core.command_param_types import Const +from core.db import DB +from core.decorators import instance, command, event, timerevent +from core.dict_object import DictObject +from core.logger import Logger +from core.lookup.character_service import CharacterService +from core.lookup.pork_service import PorkService +from core.message_hub_service import MessageHubService +from core.setting_service import SettingService +from core.setting_types import HiddenSettingType +from core.text import Text +from core.tyrbot import Tyrbot +from core.util import Util +from modules.core.accounting.services.access_service import AccessService +from modules.core.accounting.services.account_service import AccountService +from modules.core.ban.ban_service import BanService +from modules.onlinebot.online.org_alias_controller import OrgAliasController + + +class MLStripper(HTMLParser): + def error(self, message): + pass + + def __init__(self): + super().__init__() + self.reset() + self.strict = False + self.convert_charrefs = True + self.fed = [] + + def handle_data(self, d): + self.fed.append(d) + + def get_data(self): + return "".join(self.fed) + + +# noinspection PyUnusedLocal +@instance() +class DiscordController: + MESSAGE_SOURCE = "discord" + + def __init__(self): + self.logger = Logger(__name__) + logging.getLogger("discord.gateway").setLevel(logging.WARN) + logging.getLogger("discord.client").setLevel(logging.WARN) + intents = discord.Intents.all() + self.client = discord.Client(intents=intents, chunk_guilds_at_startup=True) + self.client.event(self.on_ready) + self.client.event(self.on_member_join) + self.client.event(self.on_member_remove) + self.client.event(self.on_member_update) + self.client.event(self.on_guild_role_delete) + self.client.event(self.on_guild_role_create) + self.client.event(self.on_guild_role_update) + self.client.event(self.on_invite_create) + self.client.event(self.on_invite_delete) + self.client.event(self.on_message) + self.guild = None + self.channel = None + self.thread = None + self.invites = None + self.discord_roles = DictObject( + {"override": "Override", + "admin": "Administrator", + "council": "Council", + "leader": "Raid Leader", + "president": "President", + "general": "General", + "officer": "Officer", + "member": "Member", + "failed": "failed"}) + # logging.getLogger("discord").setLevel(logging.INFO) + self.discord_queue = [] + self.ao_queue = [] + + # noinspection PyAttributeOutsideInit + def inject(self, registry): + self.bot: Tyrbot = registry.get_instance("bot") + self.db: DB = registry.get_instance("db") + self.text: Text = registry.get_instance("text") + self.character_service: CharacterService = registry.get_instance("character_service") + self.util: Util = registry.get_instance("util") + self.access_service: AccessService = registry.get_instance("access_service") + self.pork: PorkService = registry.get_instance("pork_service") + self.org: PorkService = registry.get_instance("pork_service") + self.relay_hub_service: MessageHubService = registry.get_instance("message_hub_service") + self.setting_service: SettingService = registry.get_instance("setting_service") + self.alias_controller: OrgAliasController = registry.get_instance("org_alias_controller") + self.account_service: AccountService = registry.get_instance("account_service") + self.setting_service: SettingService = registry.get_instance("setting_service") + + def pre_start(self): + self.setting_service.register_new(self.module_name, "discord_token", "", HiddenSettingType(allow_empty=True), + "Enter your Discord token her") + + def get_name(self, discord_id): + data = self.db.query_single( + "SELECT d.*, p.* FROM account d LEFT JOIN player p on d.main=p.char_id where discord_id=?", [discord_id]) + return data.name if data else None + + def setting_discord_token(self): + return self.setting_service.get("discord_token") + + @command(command="discord", params=[Const("invite")], access_level="member", + description="Get a personal Discord invite", sub_command="invite") + def discord_invite_cmd(self, request, _): + if not self.client: + return "Discord module has not been initiated yet. Please try again later." + account = self.account_service.get_account(request.sender.char_id) + if account is None: + return "You do not have an account" + if account.disabled == 1: + return "Your account is disabled" + if account.discord_joined == 1: + return "You have already joined the Discord server" + if account.discord_invite != "": + for ginvite in self.invites: + if ginvite.code == account.discord_invite: + asyncio.run_coroutine_threadsafe(self.discord_delete_invite(ginvite), self.loop) + invite = asyncio.run_coroutine_threadsafe(self.discord_create_invite(account.name), self.loop) + invite = invite.result() + self.set_discord_invite(account.char_id, invite.code) + self.bot.send_mass_message(request.sender.char_id, + f"Your personal Discord invite is: {invite} \n" + f"This invite is only valid for 5 minutes.") + + @command(command="discord", params=[Const("update")], access_level="member", + description="Update your discord information", sub_command="update") + def discord_update_cmd(self, request, _): + if not self.client: + return "Discord module has not been initiated yet. Please try again later." + return self.discord_update_account(request.sender.char_id) + + @command(command="discord", params=[Const("disconnect")], access_level="admin", + description="Disconnect from Discord", sub_command="admin") + def discord_disconnect_cmd(self, _, _1): + if not self.client: + return "Discord module has not been initiated yet. Please try again later." + if self.client.is_closed(): + return "Discord is already disconnected" + else: + asyncio.run_coroutine_threadsafe(self.discord_disconnect(), self.loop) + return "Disconnecting Discord" + + @command(command="discord", + params=[Const("members")], + access_level="admin", + description="Get all discord members", + sub_command="members") + def discord_members_cmd(self, _, _1): + if not self.client: + return "Discord module has not been initiated yet. Please try again later." + blob = "" + for member in self.guild.members: + member_roles = [] + for role in member.roles: + if role.name == "@everyone": # Skip @everyone as everyone has it. + continue + member_roles.append("%s" % role.name) + member_roles.sort(key=str.lower) + blob += "%s (%s)\n" % (member.name + "#" + member.discriminator, ", ".join(member_roles)) + return ChatBlob("Discord Members (%d)" % (len(self.guild.members)), blob) + + @event(event_type="connect", description="Connects the Discord client automatically on startup, if a token exists") + def handle_connect_event(self, _, _1): + token = self.setting_discord_token().get_value() + if token == "None": + return + + # noinspection PyTypeChecker + self.loop: BaseEventLoop = asyncio.get_event_loop() + self.loop.create_task(self.discord_connect(token)) + self.thread = threading.Thread(target=self.run_it_forever, daemon=True) + self.thread.start() + + @event(event_type=BanService.BAN_ADDED_EVENT, description="Ban user from Discord") + def ban_added_event(self, _, event_data): + token = self.setting_discord_token().get_value() + if token == "None": + return + account = self.account_service.get_account(event_data.char_id) + if account.discord_joined == 1 and account.discord_id != "": + member = self.guild.get_member(int(account.discord_id)) + if member is not None: + ban = asyncio.run_coroutine_threadsafe(self.discord_ban_user(member, event_data.reason), self.loop) + + @event(event_type=BanService.BAN_REMOVED_EVENT, description="Remove Discord ban") + def ban_removed_event(self, _, event_data): + token = self.setting_discord_token().get_value() + if token == "None": + return + account = self.account_service.get_account(event_data.char_id) + if account.discord_id != "": + banlist = asyncio.run_coroutine_threadsafe(self.discord_banlist(), self.loop) + banlist = banlist.result() + for ban in banlist: + if ban.user.id == int(account.discord_id): + unban = asyncio.run_coroutine_threadsafe(self.discord_unban_user(ban.user), self.loop) + + @timerevent(budatime="1s", description="Handle Discord queue") + def timer_check_discord_queue(self, _, _1): + while self.discord_queue: + t = int(time.time()) + obj = self.discord_queue.pop(0) + if obj.type == "on_member_remove": + member = obj.member + handle = member.name + "#" + member.discriminator + + account = self.get_account_discord_id(member.id) + if not account: + log = '**%s** has left discord (**%s**)' % (member.nick or member.name, handle) + self.relay_hub_service.send_message("system_logger", 0, log, log) + self.logger.info(log) + continue + main = self.account_service.get_main(account.char_id) + if account is None: + continue + log = '**%s** has left discord (**%s**)' % (main.name, handle) + self.relay_hub_service.send_message("system_logger", 0, log, log) + self.logger.info(log) + # self.bot.send_private_channel_message("%s has left Discord (%s)" % (main.name, handle)) + self.set_discord_left(account.main) + if account.discord_handle != handle: + self.set_discord_handle(member.id, handle) + if obj.type == "on_member_join": + member = obj.member + invite_used = obj.invite + handle = member.name + "#" + member.discriminator + if invite_used is None: + log = '**%s** joined discord with unknown invite' % handle + self.relay_hub_service. \ + send_message("system_logger", 0, + log + f" {self.get_role('Administrator', self.guild.roles).mention}'s, " + f"check that!", + log + f" {self.get_role('Administrator', self.guild.roles).mention}'s, " + f"check that!") + self.logger.info(log) + continue + self.guild: Guild = self.client.get_guild(self.client.guilds[0].id) + account = self.get_discord_invite(invite_used.code) + if account is None: + log = '**%s** joined discord with invite **%s** but couldnt find account!' % ( + handle, invite_used.code) + self.relay_hub_service. \ + send_message("system_logger", 0, + log + f" {self.get_role('Administrator', self.guild.roles).mention}'s, " + f"check that!", + log + f" {self.get_role('Administrator', self.guild.roles).mention}'s, " + f"check that!") + self.logger.info(log) + asyncio.run_coroutine_threadsafe(self.discord_member_roles(member, None, None), self.loop) + continue + + main = self.account_service.get_main(account.main) + self.set_discord_joined(account.main, handle, member.id) + if self.setting_service.get_value('is_alliance_bot') == '1': + nick = f"{f'[{self.alias_controller.get_alias(main.org_id)}] '}{main.name}" + else: + nick = f"{main.name}" + nick = asyncio.run_coroutine_threadsafe(self.discord_member_nick(member, nick), self.loop) + access_level = access_level = self.access_service.get_access_level(account.main) + roles = asyncio.run_coroutine_threadsafe(self.discord_member_roles(member, account, access_level), + self.loop) + # noinspection LongLine + log = '**%s** joined discord with invite **%s** and matches account **%s**' \ + % (handle, invite_used.code, + f"{f'[{self.alias_controller.get_alias(main.org_id)}] ' if self.setting_service.get_value('is_alliance_bot') == '1' else ''}{main.name}") + self.relay_hub_service.send_message("system_logger", account.main, log, log) + self.logger.info(log) + + @timerevent(budatime="1h", description="Verify Discord members", run_at_startup=True) + def timer_check_discord_members(self, event_type, event_data): + token = self.setting_discord_token().get_value() + if token in ["None", "", "NULL", None]: + return + if not self.bot.is_ready(): + return + update = asyncio.run_coroutine_threadsafe(self.discord_update_bot_basic(), self.loop) + # Update accounts that have left/joined discord without the bot being online + accounts = self.db.query("SELECT * FROM account WHERE discord_id !=''") + for account in accounts: + match = False + for member in self.guild.members: + handle = member.name + "#" + member.discriminator + if member.id == int(account.discord_id): + match = True + if account.discord_joined == 0: + self.set_discord_joined(account.main, handle, member.id) + break + if match is False: + if account.discord_joined == 1: + self.set_discord_left(account.main) + # Update current discord Members + accounts = self.db.query("SELECT * FROM account WHERE discord_joined = 1 and char_id = main") + for member in self.guild.members: + if member.id == self.client.user.id: + continue + member_account = None + + for account in list(accounts): + if int(account.discord_id) == member.id: + member_account = account + accounts.remove(account) + break + access_level = 0 + if member_account is not None: + access_level = self.access_service.get_access_level(member_account.main) + roles = asyncio.run_coroutine_threadsafe(self.discord_member_roles(member, member_account, access_level), + self.loop) + if member_account is not None: + main = self.pork.get_character_info(member_account.main) + # noinspection LongLine + nick = f"{f'[{self.alias_controller.get_alias(main.org_id)}] ' if self.setting_service.get_value('is_alliance_bot') == '1' else ''}{main.name}" + + nick = asyncio.run_coroutine_threadsafe(self.discord_member_nick(member, nick), self.loop) + + def run_it_forever(self): + self.loop.run_forever() + + def set_discord_invite(self, char_id, invite): + return self.db.exec("UPDATE account SET discord_invite = ? WHERE main = ?", [invite, char_id]) + + def set_discord_joined(self, char_id, handle, discord_id): + return self.db.exec("UPDATE account SET discord_joined = 1, discord_handle = ?, discord_id = ? WHERE main = ?", + [handle, discord_id, char_id]) + + def set_discord_left(self, char_id): + return self.db.exec("UPDATE account SET discord_joined = 0 WHERE main = ?", [char_id]) + + def set_discord_handle(self, discord_id, handle): + return self.db.exec("UPDATE account SET discord_handle = ? WHERE discord_id = ?", [handle, discord_id]) + + def get_discord_invite(self, invite): + return self.db.query_single("SELECT * FROM account WHERE discord_invite = ?", [invite]) + + def get_account_discord_id(self, discord_id): + return self.db.query_single( + "SELECT * FROM account a left join player p on a.char_id=p.char_id WHERE discord_id = ?", [discord_id]) + + def discord_update_account(self, char_id): + account = self.account_service.get_account(char_id) + if account is None: + return + if account.discord_id != "" and account.discord_joined == 1: + member = self.guild.get_member(int(account.discord_id)) + if member is not None: + access_level = self.access_service.get_access_level(account.main) + roles = asyncio.run_coroutine_threadsafe(self.discord_member_roles(member, account, access_level), + self.loop) + + # noinspection LongLine + nick = f"{f'[{self.alias_controller.get_alias(account.org_id)}] ' if self.setting_service.get_value('is_alliance_bot') == '1' else ''}{account.name}" + nick = asyncio.run_coroutine_threadsafe(self.discord_member_nick(member, nick), self.loop) + return "Processing..." + return "No Discord account found" + + def discord_invite_used(self, temp_invites): + for temp_invite in temp_invites: + # if temp_invite.inviter.id == self.client.user.id: + # ## Using this line limits it to invite created by the account the Discord bot runs as.. + for invite in self.invites: + if int(temp_invite.uses) > int(invite.uses) and temp_invite.code == invite.code: + return temp_invite + return None + + def get_role(self, name, roles) -> Role or None: + for role in roles: + if role.name == name: + return role + return None + + async def on_member_join(self, member): + temp_invites = await self.guild.invites() + invite_used = self.discord_invite_used(temp_invites) + self.discord_queue.append(DictObject({"type": "on_member_join", "member": member, "invite": invite_used})) + await invite_used.delete() + + async def on_member_remove(self, member): + self.discord_queue.append(DictObject({"type": "on_member_remove", "member": member})) + await self.discord_update_bot_full() + + async def on_ready(self): + await self.discord_update_bot_full() + count = self.db.query_single('SELECT count(*) as count from online ' + 'where char_id NOT IN (select char_id from org_bots) and bot=?', + [self.bot.get_char_id()]).count + + act = discord.Activity(type=discord.ActivityType.listening, + name=f"{count} Players") + asyncio.run_coroutine_threadsafe(self.client.change_presence(activity=act), self.loop) + await self.clean_channel() + + if self.guild.large: + self.logger.error( + f"Guild {self.guild.name} is classified as large, " + f"you need to request offline members to manage roles properly, this is not yet implemented") + + async def on_member_update(self, member_before, member_after): + await self.discord_update_bot_basic() + + async def on_guild_role_create(self, role): + await self.discord_update_bot_full() + + async def on_guild_role_delete(self, role): + await self.discord_update_bot_full() + + async def on_guild_role_update(self, role_before, role_after): + await self.discord_update_bot_full() + + async def on_invite_create(self, invite): + await self.discord_update_bot_full() + + async def on_invite_delete(self, invite): + await self.discord_update_bot_full() + + async def discord_update_bot_basic(self): + self.guild = self.client.get_guild(self.client.guilds[0].id) + self.channel = self.client.get_channel(self.guild.text_channels[0].id) + + async def discord_update_bot_full(self): + await self.discord_update_bot_basic() + self.invites = await self.guild.invites() + + async def discord_disconnect(self): + await self.client.close() + + async def discord_connect(self, token): + try: + if not self.client.is_closed(): + self.logger.info("Logging into Discord...") + await self.client.start(token) + + except discord.ClientException as exc: + self.logger.error("Something broke, I'm out!: %s" % str(exc)) + + async def discord_create_invite(self, reason=""): + created_invite = await self.channel.create_invite(max_age=300, max_uses=2, reason=reason) + self.guild = self.client.get_guild(self.client.guilds[0].id) + return created_invite + + async def discord_delete_invite(self, invite): + await invite.delete() + + async def discord_banlist(self): + return await self.guild.bans() + + async def discord_ban_user(self, user, reason=""): + await self.guild.ban(user, reason=reason) + + async def discord_unban_user(self, user): + await self.guild.unban(user) + + async def discord_member_nick(self, account, nick): + if self.get_role(self.discord_roles.override, account.roles): + return # We do not process accounts that have `override` role + if account.nick != nick: + result = await account.edit(nick=nick) + + async def discord_member_roles(self, discord_user: discord.Member, account, access_level): + if self.get_role(self.discord_roles.override, discord_user.roles): + return # We do not process accounts that have `override` role + addroles = [] + remroles = [] + if account is None: # We assign failed role + discrole = self.get_role(self.discord_roles.failed, discord_user.roles) + self.logger.info("%s role result is %s" % (discord_user.nick, discrole)) + if discrole is None: + failed = self.get_role(self.discord_roles.failed, self.guild.roles) + if failed is None: + return + addroles.append(failed) + remroles = discord_user.roles + else: + # Superadmin + if access_level["level"] in [10, 20]: + if self.get_role(self.discord_roles.admin, discord_user.roles) is None: + rank = self.get_role(self.discord_roles.admin, self.guild.roles) + if rank is not None: + addroles.append(rank) + else: + rank = self.get_role(self.discord_roles.admin, discord_user.roles) + if rank is not None: + remroles.append(rank) + + # Member Role + if 100 > access_level["level"]: + rank = self.get_role(self.discord_roles.member, self.guild.roles) or None + if rank is not None: + addroles.append(rank) + else: + rank = self.get_role(self.discord_roles.member, self.guild.roles) or None + if rank is not None: + remroles.append(rank) + + # Leader + if self.account_service.check_leader(account.main): + rank = self.get_role(self.discord_roles.leader, self.guild.roles) or None + if rank is not None: + addroles.append(rank) + else: + rank = self.get_role(self.discord_roles.leader, self.guild.roles) or None + if rank is not None: + remroles.append(rank) + + if self.setting_service.get_value("is_alliance_bot") == "1": + + if self.account_service.check_council(account.main): + rank = self.get_role(self.discord_roles.council, self.guild.roles) or None + if rank is not None: + addroles.append(rank) + else: + rank = self.get_role(self.discord_roles.council, self.guild.roles) or None + if rank is not None: + remroles.append(rank) + + # President + if self.account_service.check_president(account.main): + rank = self.get_role(self.discord_roles.president, self.guild.roles) or None + if rank is not None: + addroles.append(rank) + else: + rank = self.get_role(self.discord_roles.president, self.guild.roles) or None + if rank is not None: + remroles.append(rank) + + # General + if self.account_service.check_general(account.main): + rank = self.get_role(self.discord_roles.general, self.guild.roles) or None + if rank is not None: + addroles.append(rank) + else: + rank = self.get_role(self.discord_roles.general, self.guild.roles) or None + if rank is not None: + remroles.append(rank) + + # Officer + if self.account_service.check_officer(account.main): + rank = self.get_role(self.discord_roles.officer, self.guild.roles) or None + if rank is not None: + addroles.append(rank) + else: + rank = self.get_role(self.discord_roles.officer, self.guild.roles) or None + if rank is not None: + remroles.append(rank) + + if account.disabled == 1 or access_level == 0 or access_level == 100: + addroles = [self.get_role(self.discord_roles.failed, self.guild.roles)] + remroles = discord_user.roles + else: + remroles.append(self.get_role(self.discord_roles.failed, self.guild.roles)) + # Execute + if len(addroles) > 0: + addroles = list(dict.fromkeys(addroles)) # Remove Duplicates + for role in addroles: + await discord_user.add_roles(role) + if len(remroles) > 0: + remroles = list(dict.fromkeys(remroles)) # Remove Duplicates + for role in remroles: + if role.name == "@everyone": # Skip @everyone as we cant remove that + continue + await discord_user.remove_roles(role) + + async def on_message(self, msg: Message): + if msg.author.id == self.client.user.id: + return + channel: TextChannel = msg.channel + if channel.id == int(self.setting_service.get_value("dc_relay_public")): + if self.setting_service.get_value('is_alliance_bot') == "0": + response = f"[{html.escape(msg.author.nick if msg.author.nick else msg.author.name, False)}" \ + f"]: " \ + f"{html.escape(emojis.decode(msg.clean_content), False)}" + else: + response = f"{html.escape(msg.author.nick if msg.author.nick else msg.author.name, False)}: " \ + f"{html.escape(emojis.decode(msg.clean_content), False)}" + await msg.delete(delay=3600) + self.relay_hub_service.send_message("public_relay", [msg.author.nick, msg.author], response, response) + + if self.is_command(msg.content): + admin = self.get_role("Administrator", self.guild.roles) + council = self.get_role("Council", self.guild.roles) + + if msg.content[:4] == "!pin": + if admin in msg.author.roles: + matches = re.findall(pattern="(.+?)<\/head>(.+)", string=msg.content[4:].strip(), + flags=re.DOTALL) + if matches: + mess = await channel.send( + embed=Embed(color=3066993, title=matches[0][0], description=matches[0][1])) + else: + mess = await channel.send(embed=Embed(color=3066993, description=msg.content[4:])) + await mess.pin() + + if msg.content[:5] == "!note": + if admin in msg.author.roles: + matches = re.findall(pattern="(.+?)<\/head>(.+)", string=msg.content[5:].strip(), + flags=re.DOTALL) + if matches: + mess = await channel.send( + embed=Embed(color=3066993, title=matches[0][0], description=matches[0][1])) + else: + mess = await channel.send(embed=Embed(color=3066993, description=msg.content[5:])) + + if msg.content[:6] == "!purge": + if admin in msg.author.roles: + count: str = msg.content[6:].strip() + if type(count) == str: + if count.isdigit(): + # noinspection PyTypeChecker + count = int(count) + if type(count) == int: + # noinspection PyTypeChecker + while count > 100: + await msg.channel.purge(check=self.check) + count -= 100 + else: + await msg.channel.purge(check=self.check, limit=count) + await msg.delete(delay=0) + if msg.content[:10] == "!subscribe": + if admin in msg.author.roles: + out = msg.content[10:].strip() + if self.setting_service.get(out) is None: + await msg.reply(f"The Channel {out} does not exist.") + else: + self.setting_service.set_value(out, msg.channel.id) + self.send_message(msg.channel.id, Embed(color=3066993, title="Channel Guard", + description=f"This channel has been " + f"subscriped to the source {out}.")) + + def send_message(self, channel: int, message, delete=0): + if self.client.is_ready(): + channel: TextChannel = self.client.get_channel(int(channel)) if type(channel) in [int, str] else channel + if type(message) == Embed: + if delete != 0: + asyncio.run_coroutine_threadsafe(channel.send(embed=message, delete_after=delete), self.loop) + else: + asyncio.run_coroutine_threadsafe(channel.send(embed=message), self.loop) + + else: + if delete != 0: + asyncio.run_coroutine_threadsafe(channel.send(message, delete_after=delete), self.loop) + else: + asyncio.run_coroutine_threadsafe(channel.send(message), self.loop) + + def is_command(self, message: str): + for x in ["subscribe", "pin", "purge", "note"]: + if message.startswith("!" + x): + return True + + async def clean_channel(self): + if self.setting_service.get_value("dc_relay_public") not in ["0", None]: + channel: TextChannel = self.client.get_channel(int(self.setting_service.get_value("dc_relay_public"))) + for i in range(5): + await channel.purge(check=self.check) + + def check(self, msg: Message): + if msg.pinned or len(msg.embeds) > 0: + return False + else: + return True + + @event(event_type="main_changed", description="Fix discord names & ranks") + def fix_ranks(self, _, data): + row = self.db.query_single("SELECT * from account where char_id=?", [data.old_main_id]) + if row.discord_joined == 0: + self.logger.debug(f"{data.old_main_id} was not in discord, ignoring main fixing") + return + elif row.discord_joined == 1: + self.db.exec( + "UPDATE account set discord_handle=?, discord_id=?, discord_invite=?, discord_joined=? where char_id=?", + [row.discord_handle, row.discord_id, row.discord_invite, row.discord_joined, data.new_main_id]) + self.db.exec( + "UPDATE account set discord_handle='', discord_id=0, discord_invite='', discord_joined=0 " + "where char_id=?", + [data.old_main_id]) + self.logger.info(f"{data.old_main_id} was in discord, overwriting {data.new_main_id} with {data}") + + self.discord_update_account(data.new_main_id) + + @timerevent(budatime="5m", description="update activity") + def change_count(self, _, _1): + if hasattr(self, "loop"): + count = self.db.query_single('SELECT count(*) as count from online ' + 'where char_id NOT IN (select char_id from org_bots) and bot=?', + [self.bot.get_char_id()]).count + act = discord.Activity(type=discord.ActivityType.listening, + name=f"{count} Players") + asyncio.run_coroutine_threadsafe(self.client.change_presence(activity=act), self.loop) diff --git a/modules/core/help/about.txt b/modules/core/help/about.txt new file mode 100644 index 0000000..6295cdc --- /dev/null +++ b/modules/core/help/about.txt @@ -0,0 +1,30 @@ +Our Home: https://www.aoalliance.org/ +Gitlab Repository: https://gitlab.com/CynderGames/igncore + +IGNCore is a performance oriented fork of Tyrbot based on version 0.5, +and is being maintained by a group Volunteers. + +At this point, we'd like to send a special "thank you" to the following people, which in one way or another, contributed to IGNCore/IGNCom: + » Zetabyte & its Network, for many feature ideas, + and the heavy assistance with knowledge. + » Chrisax for hosting the !history mirror. + » Everyone who participated in test runs, + » sent us ideas for bot improvements, + » helped us by sending bug reports our way, + » or just by keeping us busy during a long night of development. + +aswell as the initial developers of Tyrbot, on which IGNCore is based: + » Tyrence + » Teeko for all the time he spent testing new features, + reporting bugs, and making suggestions + » nepherius/wafflespower who was critical during the + early parts of development in testing and suggesting changes + » minidodo for his significant contributions and fixes + to Tyrbot, and his willingness to assist other users in the Discord channel + » hughp135 + » jroovers + » dustify + » equinitry + » Ilon Sjögren + +If you'd like to know more, feel free to contact us on the toons listed in !admins - Administrators. \ No newline at end of file diff --git a/modules/core/help/help.msg b/modules/core/help/help.msg new file mode 100644 index 0000000..7d862fd --- /dev/null +++ b/modules/core/help/help.msg @@ -0,0 +1,10 @@ +{ + "no_help": { + "en_US": "Could not find help on {topic}", + "de_DE": "Zu dem Thema {topic} konnte keine Hilfe gefunden werden." + }, + "about_title": { + "en_US": "About {version}", + "de_DE": "Über {version}" + } +} diff --git a/modules/core/help/help_controller.py b/modules/core/help/help_controller.py new file mode 100644 index 0000000..851a27d --- /dev/null +++ b/modules/core/help/help_controller.py @@ -0,0 +1,85 @@ +import os + +import hjson + +from core.chat_blob import ChatBlob +from core.command_param_types import Any, NamedFlagParameters +from core.decorators import instance, command +from core.translation_service import TranslationService + + +@instance() +class HelpController: + def inject(self, registry): + self.bot = registry.get_instance("bot") + self.text = registry.get_instance("text") + self.db = registry.get_instance("db") + self.access_service = registry.get_instance("access_service") + self.command_service = registry.get_instance("command_service") + self.command_alias_service = registry.get_instance("command_alias_service") + self.ts: TranslationService = registry.get_instance("translation_service") + self.getresp = self.ts.get_response + + def start(self): + self.ts.register_translation("module/help", self.load_help_msg) + self.command_alias_service.add_alias("version", "about") + + def load_help_msg(self): + with open("modules/core/help/help.msg", mode="r", encoding="UTF-8") as f: + return hjson.load(f) + + @command(command="about", params=[], access_level="member", + description="Show information about the development of this bot") + def about_cmd(self, _): + with open(os.path.dirname(os.path.realpath(__file__)) + os.sep + "about.txt", mode="r", encoding="UTF-8") as f: + return ChatBlob(self.getresp("module/help", "about_title", + {"version": f"{self.bot.major_version}.{self.bot.minor_version}"}), f.read()) + + @command(command="help", params=[], access_level="member", + description="Show a list of commands to get help with") + def help_list_cmd(self, request): + data = self.db.query("SELECT command, module, access_level FROM command_config " + "WHERE enabled = 1 " + "ORDER BY module, command") + blob = "" + current_group = "" + current_module = "" + current_command = "" + access_level = self.access_service.get_access_level(request.sender.char_id) + for row in data: + if access_level["level"] > self.access_service.get_access_level_by_label(row.access_level)["level"]: + continue + + parts = row.module.split(".") + group = parts[0] + module = parts[1] + if group != current_group: + current_group = group + blob += "\n\n" + current_group + "" + + if module != current_module: + current_module = module + blob += "\n" + module + ":" + + if row.command != current_command: + current_command = row.command + blob += " " + self.text.make_tellcmd(row.command, "help " + row.command) + + return ChatBlob("Help (main)", blob) + + @command(command="help", params=[Any("command"), NamedFlagParameters(["show_regex"])], access_level="member", + description="Show help for a specific command") + def help_detail_cmd(self, request, help_topic, named_params): + help_topic = help_topic.lower() + + # check for alias + alias = self.command_alias_service.check_for_alias(help_topic) + if alias: + help_topic = alias + + help_text = self.command_service.get_help_text(request.sender.char_id, help_topic, + request.channel, named_params.show_regex) + if help_text: + return self.command_service.format_help_text(help_topic, help_text) + else: + return self.getresp("module/help", "no_help", {"topic": help_topic}) diff --git a/modules/core/private_channel/private_channel.msg b/modules/core/private_channel/private_channel.msg new file mode 100644 index 0000000..d16708f --- /dev/null +++ b/modules/core/private_channel/private_channel.msg @@ -0,0 +1,82 @@ +{ + "invite_fail": { + "en_US": "{target} is already in the private channel.", + "de_DE": "Der Spieler {target} ist bereits ein MItglied des privaten Channels." + }, + "invite_success_target": { + "en_US": "You have been invited to the private channel by {inviter}.", + "de_DE": "Du wurdest von {inviter} zu meinem privaten Channel eingeladen." + }, + "invite_success_self": { + "en_US": "You have invited {target} to the private channel.", + "de_DE": "Du hast {target} erfolgreich in den privaten Channel eingeladen." + }, + "kick_success_target": { + "en_US": "You have been kicked from the private channel by {kicker}.", + "de_DE": "Du wurdest von {kicker} aus dem privaten Channel gekickt." + }, + "kick_success_self": { + "en_US": "You have kicked {target} from the private channel.", + "de_DE": "Du hast {target} aus dem privaten Channel gekickt." + }, + "kick_fail": { + "en_US": "You do not have the required access level to kick {target}.", + "de_DE": "Du hast nicht das benötigte Zugriffslevel, um {target} zu kicken." + }, + "kick_fail_not_in_priv": { + "en_US": "{target} is not an member of the private channel.", + "de_DE": "{target} ist kein Mitglied des privaten Channels." + }, + "join": { + "en_US": "{char} has joined the private channel. {logon}", + "de_DE": "Online: {char}. {logon}" + }, + "leave": { + "en_US": "{char} has left the private channel. {logoff}", + "de_DE": "{char} hat sich nach Terra gebeamt. {logoff}" + }, + "kick_all": { + "en_US": "Everyone will be kicked from this channel in 10 seconds. [by {char}]", + "de_DE": "In 10 Sekunden wird jeder aus dem Channel gekickt. [von {char}]" + }, + "mem_add_fail": { + "en_US": "{char} is already a member.", + "de_DE": "{char} ist bereits ein Mitglied." + }, + "mem_add_success": { + "en_US": "{char} has been added as a member.", + "de_DE": "{char} wurde als Mitglied hinzugefügt." + }, + "mem_rem_success": { + "en_US": "{char} has been removed as a member.", + "de_DE": "{char} wurde als Mitglied entfernt." + }, + "mem_rem_fail": { + "en_US": "{char} is not a member.", + "de_DE": "{char} ist kein Mitglied." + }, + "blob_mem_list": { + "en_US": "Members ({amount})", + "de_DE": "Mitglieder ({amount})" + }, + "autoinvite_changed": { + "en_US": "Your auto invite preference has been set to {changedto}.", + "de_DE": "Deine Autoinvite Einstellung ist nun {changedto}." + }, + "not_an_member": { + "en_US": "You must be a member of this bot to set your auto invite preference.", + "de_DE": "Du musst ein Mitglied des Bots sein, um deine Autoinvite Einstellung zu setzen." + }, + "auto_invited": { + "en_US": "You have been auto-invited to the private channel.", + "de_DE": "Du wurdest automatsich in meinen privaten Channel eingeladen." + }, + "on": { + "en_US": "on", + "de_DE": "an" + }, + "off": { + "en_US": "off", + "de_DE": "aus" + } +} diff --git a/modules/core/private_channel/private_channel_controller.py b/modules/core/private_channel/private_channel_controller.py new file mode 100644 index 0000000..a0267b5 --- /dev/null +++ b/modules/core/private_channel/private_channel_controller.py @@ -0,0 +1,246 @@ +import hjson + +from core.buddy_service import BuddyService +from core.chat_blob import ChatBlob +from core.command_param_types import Character, Multiple +from core.db import DB, SqlException +from core.decorators import instance, command, event +from core.dict_object import DictObject +from core.lookup.character_service import CharacterService +from core.lookup.pork_service import PorkService +from core.private_channel_service import PrivateChannelService +from core.setting_service import SettingService +from core.text import Text +from core.translation_service import TranslationService +from core.tyrbot import Tyrbot +from core.util import Util +from modules.core.accounting.services.account_service import AccountService +from modules.core.ban.ban_service import BanService +from modules.standard.online.online_display import OnlineDisplay + + +@instance() +class PrivateChannelController: + MESSAGE_SOURCE = "private_channel" + PRIVATE_CHANNEL_PREFIX = "[Priv] " + + def inject(self, registry): + self.bot: Tyrbot = registry.get_instance("bot") + self.util: Util = registry.get_instance("util") + self.private_channel_service = registry.get_instance("private_channel_service") + self.character_service: CharacterService = registry.get_instance("character_service") + self.pork: PorkService = registry.get_instance("pork_service") + self.job_scheduler = registry.get_instance("job_scheduler") + self.access_service = registry.get_instance("access_service") + self.message_hub_service = registry.get_instance("message_hub_service") + self.ban_service = registry.get_instance("ban_service") + self.text: Text = registry.get_instance("text") + self.ts: TranslationService = registry.get_instance("translation_service") + self.getresp = self.ts.get_response + self.setting_service: SettingService = registry.get_instance("setting_service") + self.buddy_service: BuddyService = registry.get_instance("buddy_service") + self.account_service: AccountService = registry.get_instance("account_service") + self.db: DB = registry.get_instance("db") + self.priv: PrivateChannelService = registry.get_instance("private_channel_service") + + def pre_start(self): + self.db.create_view("online") + self.message_hub_service.register_message_source(self.MESSAGE_SOURCE) + + try: + self.reinvite = [x.char_id for x in + self.db.query("SELECT char_id from online where channel = ?", [self.bot.name])] + + except SqlException: + self.reinvite = [] + + def start(self): + self.message_hub_service.register_message_destination(self.MESSAGE_SOURCE, + self.handle_incoming_relay_message, + ["registration"], + [self.MESSAGE_SOURCE]) + self.ts.register_translation("module/private_channel", self.load_private_channel_msg) + + @event("connect", "Reinvite previous raiders") + def reinvite_all(self, _, _1): + for user in self.reinvite: + self.bot.send_mass_message(user, "You have been reinvited into my private channel " + "after a bot restart or crash; Sorry for the inconvenience.") + self.priv.invite(user) + del self.reinvite + + @staticmethod + def load_private_channel_msg(): + with open("modules/core/private_channel/private_channel.msg", mode="r", encoding="utf-8") as f: + return hjson.load(f) + + def handle_incoming_relay_message(self, ctx): + self.bot.send_private_channel_message(ctx.formatted_message, fire_outgoing_event=False) + + @event(event_type="member_logon", description="Send autoinvites to players logging in") + def logon_event(self, _, data): + if not self.bot.is_ready(): + if data.packet.char_id not in self.reinvite: + account = data.account + if account.disabled == 1: + pass + elif account.auto_invite == 1: + self.reinvite.append(data.packet.char_id) + return + if self.private_channel_service.in_private_channel(data.packet.char_id): + return + account = data.account + if account.disabled == 1: + return + if self.db.query_single("SELECT * from org_bots where char_id=?", [data.packet.char_id]): + return + if account.auto_invite == 1: + if self.pork.get_character_info(data.packet.char_id).org_id != self.bot.public_channel_service.org_id: + self.private_channel_service.invite(data.packet.char_id) + self.bot.send_mass_message(data.packet.char_id, "You have been " + "auto invited " + "into my private channel.") + + @command(command="join", params=[], access_level="member", + description="Join the private channel") + def join_cmd(self, request): + self.private_channel_service.invite(request.sender.char_id) + + @command(command="leave", params=[], access_level="member", + description="Leave the private channel") + def leave_cmd(self, request): + self.private_channel_service.kick(request.sender.char_id) + + @command(command="invite", params=[Multiple(Character("character"))], access_level="member", + description="Invite a character to the private channel") + def invite_cmd(self, request, chars): + success, in_channel, none, banned = [], [], [], [] + for char in chars: + if char.char_id: + if self.private_channel_service.in_private_channel(char.char_id): + in_channel.append(char.name) + elif self.ban_service.get_ban(char.char_id): + banned.append(char.name) + else: + self.bot.send_private_message(char.char_id, self.getresp("module/private_channel", + "invite_success_target", + {"inviter": request.sender.name})) + self.private_channel_service.invite(char.char_id) + success.append(char.name) + else: + none.append(char.name) + out = "" + if len(in_channel) > 0: + out += self.getresp("module/private_channel", "invite_fail", {"target": ", ".join(in_channel)}) + "\n" + if len(success) > 0: + out += self.getresp("module/private_channel", "invite_success_self", {"target": ", ".join(success)}) + "\n" + if len(none) > 0: + out += self.getresp("global", "char_not_found", {"char": ", ".join(none)}) + "\n" + if len(banned) > 0: + out += f'The Character {", ".join(banned)} is banned, ' \ + f'and cannot be invited.' + if request.channel == "priv": + return out.strip("\n") + else: + self.bot.send_mass_message(request.sender.char_id, out.strip("\n")) + + @command(command="kick", params=[Character("character")], access_level="moderator", + description="Kick a character from the private channel") + def kick_cmd(self, request, char): + if char.char_id: + if not self.private_channel_service.in_private_channel(char.char_id): + return self.getresp("module/private_channel", "kick_fail_not_in_priv", {"target": char.name}) + else: + if self.access_service.has_sufficient_access_level(request.sender.char_id, char.char_id): + self.bot.send_private_message(char.char_id, self.getresp("module/private_channel", + "kick_success_target", + {"kicker": request.sender.name})) + self.private_channel_service.kick(char.char_id) + return self.getresp("module/private_channel", "kick_success_self", {"target": char.name}) + else: + return self.getresp("module/private_channel", "kick_fail", {"target": char.name}) + else: + return self.getresp("global", "char_not_found", {"char": char.name}) + + @command(command="kickall", params=[], access_level="moderator", + description="Kick all characters from the private channel") + def kickall_cmd(self, request): + self.bot.send_private_channel_message(self.getresp("module/private_channel", "kick_all", + {"char": request.sender.name})) + self.job_scheduler.delayed_job(lambda t: self.private_channel_service.kickall(), 10) + + @event(event_type=BanService.BAN_ADDED_EVENT, description="Kick characters from the private channel who are banned", + is_hidden=True) + def ban_added_event(self, _, event_data): + self.private_channel_service.kick(event_data.char_id) + + @event(event_type=PrivateChannelService.PRIVATE_CHANNEL_MESSAGE_EVENT, + description="Relay messages from the private channel to the relay hub", is_hidden=True) + def handle_private_channel_message_event(self, _, event_data): + if event_data.char_id == self.bot.get_char_id() or self.ban_service.get_ban(event_data.char_id): + return + + char_name = self.character_service.resolve_char_to_name(event_data.char_id) + sender = DictObject({"char_id": event_data.char_id, "name": char_name}) + char = self.text.make_charlink(char_name) + formatted_message = f"{self.PRIVATE_CHANNEL_PREFIX} {char}: {event_data.message}" + self.message_hub_service.send_message(self.MESSAGE_SOURCE, sender, event_data.message, formatted_message) + + @event(event_type=PrivateChannelService.JOINED_PRIVATE_CHANNEL_EVENT, + description="Notify when a character joins the private channel") + def handle_private_channel_joined_event(self, _, event_data): + main = self.account_service.get_account(event_data.char_id) + if main: + info = "" if self.account_service.check_superadmin(main.char_id) else \ + ":: Admin " if self.account_service.check_admin(main.char_id) else \ + ":: Moderator " if self.account_service.check_moderator(main.char_id) else \ + ":: Raidleader " if self.account_service.check_leader(main.char_id) else "" + if main.char_id != event_data.char_id: + info += f":: Alt of <{main.faction.lower()}>{main.name}" + else: + if self.setting_service.get_value('is_alliance_bot') == "0": + info = ":: WARN » NO ACC" + else: + info = "" + + msg = f"{self.text.format_char_info(self.pork.get_character_info(event_data.char_id))} joined us {info}" + self.bot.send_private_channel_message(msg, fire_outgoing_event=False) + self.message_hub_service.send_message(self.MESSAGE_SOURCE, None, msg, self.PRIVATE_CHANNEL_PREFIX + msg) + od = OnlineDisplay(self.text, self.util, self.db) + params = [self.bot.name, self.bot.get_char_id()] + self.bot.send_mass_message(event_data.char_id, + od.format_blob(od.format_by_channel_prof("and channel_id IN (1, 2) ", params))) + + @event(event_type=PrivateChannelService.LEFT_PRIVATE_CHANNEL_EVENT, + description="Notify when a character leaves the private channel") + def handle_private_channel_left_event(self, _, event_data): + char_info = self.pork.get_character_info(event_data.char_id) + msg = f"<{char_info.faction.lower()}>{char_info.name} left us" + self.bot.send_private_channel_message(msg, fire_outgoing_event=False) + self.message_hub_service.send_message(self.MESSAGE_SOURCE, None, msg, msg) + + @event(event_type=Tyrbot.OUTGOING_PRIVATE_CHANNEL_MESSAGE_EVENT, + description="Relay commands from the private channel to the relay hub", is_hidden=True) + def outgoing_private_channel_message_event(self, _, event_data): + if isinstance(event_data.message, ChatBlob): + pages = self.text.paginate(ChatBlob(event_data.message.title, event_data.message.msg), + self.setting_service.get("org_channel_max_page_length").get_value()) + if len(pages) < 4: + for page in pages: + message = "{priv} {message}".format(priv=self.PRIVATE_CHANNEL_PREFIX, message=page) + self.message_hub_service.send_message(self.MESSAGE_SOURCE, + None, + page, + message) + else: + message = "{priv} {message}".format(priv=self.PRIVATE_CHANNEL_PREFIX, message=event_data.message.title) + self.message_hub_service.send_message(self.MESSAGE_SOURCE, + None, + event_data.message.title, + message) + else: + message = "{priv} {message}".format(priv=self.PRIVATE_CHANNEL_PREFIX, message=event_data.message) + self.message_hub_service.send_message(self.MESSAGE_SOURCE, + None, + message, + message) diff --git a/modules/core/private_channel/topic_controller.py b/modules/core/private_channel/topic_controller.py new file mode 100644 index 0000000..8f95ce9 --- /dev/null +++ b/modules/core/private_channel/topic_controller.py @@ -0,0 +1,75 @@ +import time + +from core.command_param_types import Const, Any, Options +from core.db import DB +from core.decorators import instance, command, setting, event +from core.dict_object import DictObject +from core.private_channel_service import PrivateChannelService +from core.setting_types import DictionarySettingType +from core.text import Text + + +@instance() +class TopicController: + def inject(self, registry): + self.bot = registry.get_instance("bot") + self.db: DB = registry.get_instance("db") + self.text: Text = registry.get_instance("text") + self.util = registry.get_instance("util") + self.command_alias_service = registry.get_instance("command_alias_service") + self.private_channel_service: PrivateChannelService = registry.get_instance("private_channel_service") + + def start(self): + self.command_alias_service.add_alias("motd", "topic") + + @setting(name="topic", value="", description="The bot topic") + def topic(self): + return DictionarySettingType() + + @command(command="topic", params=[], access_level="member", + description="Show the current topic") + def topic_show_command(self, request): + topic = self.topic().get_value() + if topic: + return self.format_topic_message(topic) + else: + return "There is no current topic." + + @command(command="topic", params=[Options(["clear", "unset"])], access_level="leader", + description="Clears the current topic", sub_command="modify") + def topic_clear_command(self, _, _1): + self.topic().set_value("") + + return "The topic has been cleared." + + @command(command="topic", + params=[Const("set", is_optional=True), Any("topic_message")], + access_level="leader", + description="Set the current topic", sub_command="modify") + def topic_set_command(self, request, _, topic_message): + sender = DictObject({"name": request.sender.name, "char_id": request.sender.char_id}) + + topic = {"topic_message": topic_message, + "created_by": sender, + "created_at": int(time.time())} + + self.topic().set_value(topic) + + return "The topic has been set." + + def format_topic_message(self, topic): + time_string = self.util.time_to_readable(int(time.time()) - topic["created_at"]) + return f"Topic: {topic['topic_message']} " \ + f"[set by {topic['created_by']['name']}][{time_string} ago]" + + @event(PrivateChannelService.JOINED_PRIVATE_CHANNEL_EVENT, "Show topic to characters joining the private channel") + def show_topic(self, _, event_data): + topic = self.topic().get_value() + if topic: + self.bot.send_private_message(event_data.char_id, self.format_topic_message(topic)) + + @event(PrivateChannelService.LEFT_PRIVATE_CHANNEL_EVENT, + "Clear topic when there are no characters in the private channel") + def clear_topic(self, _, event_data): + if self.topic().get_value() and len(self.private_channel_service.get_all_in_private_channel()) == 0: + self.topic().set_value("") diff --git a/modules/core/riadmin/riadmin_controller.py b/modules/core/riadmin/riadmin_controller.py new file mode 100644 index 0000000..d0e86f3 --- /dev/null +++ b/modules/core/riadmin/riadmin_controller.py @@ -0,0 +1,395 @@ +import math + +from core.buddy_service import BuddyService +from core.chat_blob import ChatBlob +from core.command_param_types import Const, Character, Any, NamedParameters +from core.decorators import instance, command, event +from core.dict_object import DictObject +from core.logger import Logger +from core.lookup.character_service import CharacterService +from core.lookup.pork_service import PorkService +from core.private_channel_service import PrivateChannelService +from core.setting_service import SettingService +from core.setting_types import TextSettingType +from core.text import Text +from core.translation_service import TranslationService +from core.tyrbot import Tyrbot + + +# noinspection SqlCaseVsIf,SqlCaseVsCoalesce +@instance() +class RIAdminController: + PAGE_SIZE = 20 + UNASSIGNED_RAID_INSTANCE_ID = 0 + + def __init__(self): + self.logger = Logger(__name__) + + def inject(self, registry): + self.bot: Tyrbot = registry.get_instance("bot") + self.db = registry.get_instance("db") + self.text: Text = registry.get_instance("text") + self.setting_service: SettingService = registry.get_instance("setting_service") + self.util = registry.get_instance("util") + self.character_service: CharacterService = registry.get_instance("character_service") + self.private_channel_service: PrivateChannelService = registry.get_instance("private_channel_service") + self.ts: TranslationService = registry.get_instance("translation_service") + self.getresp = self.ts.get_response + self.buddy_service: BuddyService = registry.get_instance("buddy_service") + self.pork: PorkService = registry.get_instance("pork_service") + + def start(self): + self.db.exec( + "CREATE TABLE IF NOT EXISTS raid_instance (id INT PRIMARY KEY AUTO_INCREMENT, " + "name VARCHAR(255) NOT NULL, " + "bot varchar(32)) ENGINE MEMORY") + self.db.exec( + "CREATE TABLE IF NOT EXISTS raid_instance_char (" + "raid_instance_id INT NOT NULL, " + "char_id INT PRIMARY KEY, " + "is_leader TINYINT NOT NULL) ENGINE MEMORY") + self.setting_service.register_new(self.module_name, "riadmin_network", + "[905848882, 272234, 1923370, 313107, 1217210821, 1134420908]", + TextSettingType(), "Allowed bots (charID's)", + extended_description="This setting is *NOT* synchronized across the network;" + " this needs to be done manually!") + + @event(event_type="buddy_logoff", description="Track raiders") + def raider_logoff(self, _, event_data): + if self.bot.is_ready(): + buddy = self.buddy_service.get_buddy(event_data.char_id) + if not buddy: + return + if "raider" in buddy.get('types', []): + user = self.db.query_single("SELECT * from player where char_id=?", [event_data.char_id]) + raid = self.get_raid_instance_by_char(event_data.char_id) + if user and raid: + if raid.bot != 0: + self.bot.send_private_channel_message(f'[RI] Raider logged off: ' + f'{user.name} - {user.profession} [{raid.name}]') + self.db.exec("DELETE FROM raid_instance_char WHERE char_id = ?", [event_data.char_id]) + self.buddy_service.remove_buddy(event_data.char_id, 'raider') + + @event(event_type=PrivateChannelService.LEFT_PRIVATE_CHANNEL_EVENT, description="Track Raiders") + def raider_leave(self, _, event_data): + if self.bot.is_ready(): + buddy = self.buddy_service.get_buddy(event_data.char_id) + if not buddy: + return + if "raider" in buddy.get('types', []): + user = self.pork.get_character_info(event_data.char_id) + raid = self.get_raid_instance_by_char(event_data.char_id) + part = int(raid.bot) if raid else 0 + if part in [self.bot.get_char_id(), 0]: + if part != 0: + self.bot.send_private_channel_message( + f'[RI] Raider left: {user.name} - {user.profession} ' + f'[{raid.name if raid else "UNASSIGNED"}]') + self.db.exec("DELETE FROM raid_instance_char WHERE char_id = ?", [event_data.char_id]) + self.buddy_service.remove_buddy(event_data.char_id, 'raider') + + @event(event_type="connect", description="Init raider tracking on startup") + def connect(self, _, _1): + for user in self.get_raid_instance_chars(): + self.buddy_service.add_buddy(user.char_id, 'raider') + + @command(command="riadmin", params=[NamedParameters(['page'])], access_level="leader", + description="Show the current RIs") + def riadmin(self, _, named_params): + refresh = self.text.make_tellcmd("Refresh", "riadmin") + send = self.text.make_tellcmd("Apply", "riadmin send") + clear = self.text.make_tellcmd("Clear All", "riadmin clear") + blob = f"[{refresh}] - Update the RI List\n" \ + f"[{send}] - Send all RI's to their bots\n" \ + f"[{clear}] - Clear all RI's, and delete them" + blob += "\n\n" + + page = int(named_params.page or "1") + offset = (page - 1) * self.PAGE_SIZE + data = self.get_raid_instance_chars() + return self.format_pagination(data, offset, page, self.compact_char_display, 'Raid Instances', + 'No Raidinstances found.', 'riadmin ', self.PAGE_SIZE, blob) + + def format_pagination(self, data, offset, page, formatter, title, nullmsg, cmd, page_size=10, headline=""): + raid_instances = self.get_raid_instances() + blob = "" + if page == 1: + blob = headline + selected = data[offset:offset + page_size] + if len(data) == 0: + return nullmsg + num_assigned = 0 + num_unassigned = 0 + pages = "" + + if page > 1: + pages += "Pages: " + self.text.make_tellcmd("«« Page %d" % (page - 1), f'{cmd} --page={page - 1}') + if offset + page_size < len(data): + pages += f" Page {page}/{math.ceil(len(data) / page_size)}" + pages += " " + self.text.make_tellcmd("Page %d »»" % (page + 1), f'{cmd} --page={page + 1}') + pages += "\n" + current_raid_instance_id = None + for row in data: + if row.raid_instance_id == self.UNASSIGNED_RAID_INSTANCE_ID: + num_unassigned += 1 + else: + if row.name: + num_assigned += 1 + blob += "" + pages + for row in selected: + if row.raid_instance_id != current_raid_instance_id: + name = "" + if row.bot: + bot = self.pork.get_character_info(row.bot) + name = f"[{bot.name}]" if bot else "" + blob += f"\n{row.raid_instance_name} {name}\n" + current_raid_instance_id = row.raid_instance_id + + if not row.char_id: + continue + + blob += formatter(row) + add_leader_link = (row.raid_instance_id != self.UNASSIGNED_RAID_INSTANCE_ID and not row.is_leader) + blob += " " + self.get_assignment_links(raid_instances, row.name, add_leader_link) + blob += "\n" + blob += "\n" + pages + out = ChatBlob(title, blob) + out.page_postfix = f" ({num_assigned} Players)" + if num_unassigned > 0: + out.page_postfix = f" (Assigned: {num_assigned}, " \ + f"Unassigned: {num_unassigned})" + return out + + @command(command="ritake", params=[Any("raiders")], + access_level="all", + description="take the RI from another bot") + def ritake(self, request, raiders: str): + users = raiders.split(",") + if request.sender.char_id not in eval(self.setting_service.get_value('riadmin_network')): + return + for user in users: + char = self.character_service.resolve_char_to_id(user.strip()) + if not char: + continue + if self.private_channel_service.in_private_channel(char): + self.buddy_service.add_buddy(char, 'raider') + continue + self.bot.send_mass_message(char, 'You have been assigned to my RI :: accept the invite!') + self.private_channel_service.invite(char) + + @command(command="riadmin", + params=[Const("add"), Any("raid_instance"), Character("char")], + access_level="leader", + description="Add a character to a RI", sub_command="leader") + def riadmin_add(self, _, _1, raid_instance_name, char): + if not char.char_id: + return self.getresp("global", "char_not_found", {"char": char.name}) + raid_instance = self.get_raid_instance(raid_instance_name) + if not raid_instance: + return f"Raid instance {raid_instance_name} does not exist." + + self.refresh_raid_instance_chars() + + row = self.db.query_single("SELECT raid_instance_id FROM raid_instance_char WHERE char_id = ?", [char.char_id]) + if row: + if raid_instance.id == row.raid_instance_id: + if 'raider' not in ( + self.buddy_service.get_buddy(char.char_id) or DictObject({'types': []}).get('types', [])): + self.buddy_service.add_buddy(char.char_id, 'raider') + return f"Character {char.name} is already assigned to " \ + f"raid instance {raid_instance.name}." + else: + if 'raider' not in ( + self.buddy_service.get_buddy(char.char_id) or DictObject({'types': []}).get('types', [])): + self.buddy_service.add_buddy(char.char_id, 'raider') + self.update_char_raid_instance(char.char_id, raid_instance.id) + return f"Character {char.name} has been assigned to " \ + f"raid instance {raid_instance.name}." + else: + return f"Character {char.name} is not in the private channel." + + @command(command="riadmin", params=[Const("clear")], access_level="leader", + description="Remove all raids and their players", sub_command="leader") + def riadmin_clear(self, _, _1): + query = self.db.query("SELECT * FROM raid_instance_char") + for user in query: + self.buddy_service.remove_buddy(user.char_id, 'raider') + self.db.exec("DELETE FROM raid_instance_char where 1") + self.db.exec("DELETE FROM raid_instance where 1") + return f"All characters have been removed from raid instances." + + @command(command="riadmin", params=[Const("rem"), Character("char")], access_level="leader", + description="remove a character from the RI", sub_command="leader") + def riadmin_rem(self, _, _2, char): + if not char.char_id: + return self.getresp("global", "char_not_found", {"char": char.name}) + + self.refresh_raid_instance_chars() + + row = self.db.query_single( + "SELECT r2.name FROM raid_instance_char r1 " + "JOIN raid_instance r2 ON r1.raid_instance_id = r2.id WHERE r1.char_id = ?", + [char.char_id]) + if row: + self.update_char_raid_instance(char.char_id, self.UNASSIGNED_RAID_INSTANCE_ID) + return f"Character {char.name} has been removed from " \ + f"raid instance {row.name}." + else: + return f"Character {char.name} is not assigned to any raid instances." + + @command(command="riadmin", params=[Const("leader"), Character("char")], access_level="leader", + description="Set the leader for a RI", sub_command="leader") + def riadmin_leader(self, _, _2, char): + if not char.char_id: + return self.getresp("global", "char_not_found", {"char": char.name}) + + raid_instance = self.get_raid_instance_by_char(char.char_id) + if not raid_instance: + return f"Character {char.name} does not belong to a raid instance." + + self.set_leader(char.char_id, raid_instance.id) + + return f"Character {char.name} has been set as the leader for " \ + f"raid instance {raid_instance.name}." + + @command(command="riadmin", params=[Const("send")], access_level="leader", + description="Send the RIs to their preset bots", sub_command="leader") + def riadmin_send(self, _, _2): + self.bot.send_private_channel_message("Exporting raids..") + for raid_instance in self.get_raid_instances(): + data = self.db.query( + "SELECT r.char_id, p.name, r.is_leader FROM raid_instance_char r " + "left join player p on r.char_id=p.char_id WHERE raid_instance_id = ?", + [raid_instance.id]) + if int(raid_instance.bot) == self.bot.get_char_id() or raid_instance.bot == "0" or not raid_instance.bot: + continue + self.bot.send_private_message(int(raid_instance.bot), "ritake " + ", ".join([k['name'] for k in data]), + add_color=False) + for char in data: + if char.is_leader == 0: + self.private_channel_service.kick(char.char_id) + + return "Raid instance configuration has been applied." + + @command(command="riadmin", params=[Const("create"), Any("Raid_name"), Character("bot")], + access_level="leader", + description="Create or change a raid instance", sub_command="leader") + def riadmin_create(self, _, _2, raid_instance_name, bot): + if not bot.char_id: + return self.getresp("global", "char_not_found", {"char": bot.name}) + if bot.char_id not in eval(self.setting_service.get_value('riadmin_network')): + return "Bot not valid: please ask an Administrator to verify it first." + raid_instance = self.get_raid_instance(raid_instance_name) + if raid_instance: + if raid_instance.name == raid_instance_name and raid_instance.bot == bot.char_id: + return f"Raid instance {raid_instance_name} already exists." + else: + self.db.exec("UPDATE raid_instance SET name = ?, bot = ? WHERE id = ?", + [raid_instance_name, bot.char_id, raid_instance.id]) + return f"Raid instance {raid_instance_name} has been updated." + else: + self.db.exec("INSERT INTO raid_instance (name, bot) VALUES (?, ?)", [raid_instance_name, bot.char_id]) + return f"Raid instance {raid_instance_name} [{bot.name}] " \ + f"has been created." + + @command(command="riadmin", params=[Const("delete"), Any("raid_instance_name")], access_level="leader", + description="Remove a RI", sub_command="leader") + def raid_instance_delete_cmd(self, _, _1, raid_instance_name): + raid_instance = self.get_raid_instance(raid_instance_name) + if not raid_instance: + return f"Raid instance {raid_instance_name} does not exist." + query = self.db.query("SELECT char_id from raid_instance_char where raid_instance_id=?", [raid_instance.id]) + for user in query: + self.buddy_service.remove_buddy(user.char_id, 'raider') + self.db.exec("DELETE FROM raid_instance_char WHERE raid_instance_id = ?", [raid_instance.id]) + self.db.exec("DELETE FROM raid_instance WHERE id = ?", [raid_instance.id]) + + return f"Raid instance {raid_instance_name} has been deleted." + + def get_raid_instance_chars(self): + self.refresh_raid_instance_chars() + + data = self.db.query("SELECT * FROM (" + "SELECT p.*, r2.id AS raid_instance_id, " + "r1.is_leader, r2.name AS raid_instance_name, r2.bot " + "FROM raid_instance r2 " + "LEFT JOIN raid_instance_char r1 ON r1.raid_instance_id = r2.id " + "LEFT JOIN player p ON r1.char_id = p.char_id " + "UNION " + "SELECT p.*, r3.raid_instance_id, " + "r3.is_leader, 'Unassigned' AS raid_instance_name, '' AS bot " + "FROM raid_instance_char r3 " + "LEFT JOIN player p ON r3.char_id = p.char_id " + "WHERE r3.raid_instance_id = ?) as r2r1pr3p " + "ORDER BY raid_instance_id != ? DESC, " + "raid_instance_name, " + "is_leader desc, " + "profession, level desc, " + "name", + [self.UNASSIGNED_RAID_INSTANCE_ID, self.UNASSIGNED_RAID_INSTANCE_ID]) + + return data + + def refresh_raid_instance_chars(self): + users = self.db.query('SELECT * from online o ' + 'left join player p on o.char_id=p.char_id ' + 'where o.channel = ?', [self.bot.name]) + for user in users: + self.db.exec( + "INSERT IGNORE INTO raid_instance_char (char_id, raid_instance_id, is_leader) VALUES (?, ?, 0)", + [user.char_id, self.UNASSIGNED_RAID_INSTANCE_ID]) + self.buddy_service.add_buddy(user.char_id, 'raider') + + def update_char_raid_instance(self, char_id, raid_instance_id): + return self.db.exec("UPDATE raid_instance_char SET raid_instance_id = ?, is_leader = 0 WHERE char_id = ?", + [raid_instance_id, char_id]) + + def set_leader(self, char_id, raid_instance_id): + self.db.exec("UPDATE raid_instance_char SET is_leader = 0 WHERE raid_instance_id = ?", [raid_instance_id]) + self.db.exec("UPDATE raid_instance_char SET is_leader = 1 WHERE raid_instance_id = ? AND char_id = ?", + [raid_instance_id, char_id]) + + def compact_char_display(self, char_info): + if char_info.level: + msg = f" {self.util.get_prof_icon(char_info.profession)} " \ + f"{self.text.zfill(char_info.level, 220)}/{self.text.zfill(char_info.ai_level, 30)} " \ + f"{char_info.name: <13}" + elif char_info.name: + msg = " %s" % char_info.name + else: + msg = " Unknown(%d)" % char_info.char_id + + if char_info.is_leader: + msg += " [Leader]" + + return msg + + def get_assignment_links(self, raid_instances, char_name, add_leader_link): + links = list(map(lambda x: self.text.make_tellcmd(x.name, f"riadmin add {x.name} {char_name}"), raid_instances)) + links.insert(0, self.text.make_tellcmd("Rem", f"riadmin rem {char_name}")) + if add_leader_link: + links.insert(0, self.text.make_tellcmd("L", f"riadmin leader {char_name}")) + return f'[{"|".join(links)}]' + + def get_raid_instances(self): + data = self.db.query("SELECT id, name, bot FROM raid_instance ORDER BY name") + return data + + def get_raid_instance(self, raid_instance_name): + return self.db.query_single("SELECT id, name, bot FROM raid_instance WHERE name LIKE ?", [raid_instance_name]) + + def get_raid_instance_by_char(self, char_id): + return self.db.query_single("SELECT id, name, CASE WHEN bot IS NOT NULL THEN bot else 0 END as bot " + "FROM raid_instance r1 JOIN raid_instance_char r2 ON r1.id = r2.raid_instance_id " + "WHERE r2.char_id = ?", [char_id]) + + def get_conn_by_id(self, bot): + conn = self.bot.conns.get(bot) + if conn: + return conn + + conns = self.bot.get_conns(lambda x: x.char_name.lower() == bot.lower()) + if conns: + return conns[0][1] + + return None diff --git a/modules/core/system/message_hub_controller.py b/modules/core/system/message_hub_controller.py new file mode 100644 index 0000000..f19f145 --- /dev/null +++ b/modules/core/system/message_hub_controller.py @@ -0,0 +1,87 @@ +from functools import partial + +from core.chat_blob import ChatBlob +from core.command_param_types import Const, Any +from core.decorators import instance, command + + +@instance() +class MessageHubController: + def inject(self, registry): + self.bot = registry.get_instance("bot") + self.db = registry.get_instance("db") + self.text = registry.get_instance("text") + self.message_hub_service = registry.get_instance("message_hub_service") + self.getresp = partial(registry.get_instance("translation_service").get_response, "module/system") + + def start(self): + pass + + @command(command="messagehub", params=[], access_level="admin", + description="Show the current message hub subscriptions") + def messagehub_cmd(self, _): + blob = self.getresp("messagehub_info") + "\n" + subscriptions = self.message_hub_service.hub + for destination, obj in subscriptions.items(): + edit_subs_link = self.text.make_tellcmd(destination, "messagehub edit %s" % destination) + blob += "\n%s\n" % edit_subs_link + for source in obj.sources: + blob += " └ %s\n" % source + + return ChatBlob(self.getresp("messagehub_title", {"count": len(subscriptions)}), blob) + + @command(command="messagehub", params=[Const("edit"), Any("destination")], access_level="admin", + description="Edit subscriptions for a destination") + def messagehub_edit_cmd(self, _, _1, destination): + obj = self.message_hub_service.hub[destination] + if not obj: + return self.getresp("destination_not_exist", {"destination": destination}) + + blob = "" + count = 0 + for source in self.message_hub_service.sources: + if source in obj.invalid_sources: + continue + + sub_link = self.text.make_tellcmd("Subscribe", "messagehub subscribe %s %s" % (destination, source)) + unsub_link = self.text.make_tellcmd("Unsubscribe", "messagehub unsubscribe %s %s" % (destination, source)) + status = "" + if source in obj.sources: + count += 1 + status = "%s" % self.getresp("subscribed") + blob += "%s [%s] [%s] %s\n\n" % (source, sub_link, unsub_link, status) + + return ChatBlob( + self.getresp("messagehub_edit_title", {"destination": destination.capitalize(), "count": count}), blob) + + @command(command="messagehub", + params=[Const("subscribe"), Any("destination"), Any("source")], + access_level="admin", + description="Subscribe a destination to a source") + def messagehub_subscribe_cmd(self, _, _1, destination, source): + obj = self.message_hub_service.hub[destination] + if not obj: + return self.getresp("module/system", "destination_not_exist", {"destination": destination}) + + if source in obj.sources: + return self.getresp("messagehub_already_subscribed", {"destination": destination, "source": source}) + + if source in obj.invalid_sources: + return self.getresp("messagehub_invalid_subscription", {"destination": destination, "source": source}) + + self.message_hub_service.subscribe_to_source(destination, source) + return self.getresp("messagehub_subscribe_success", {"destination": destination, "source": source}) + + @command(command="messagehub", params=[Const("unsubscribe"), Any("destination"), Any("source")], + access_level="admin", + description="Unsubscribe a destination to a source") + def messagehub_unsubscribe_cmd(self, _, _1, destination, source): + obj = self.message_hub_service.hub[destination] + if not obj: + return self.getresp("module/system", "destination_not_exist", {"destination": destination}) + + if source not in obj.sources: + return self.getresp("messagehub_not_subscribed", {"destination": destination, "source": source}) + + self.message_hub_service.unsubscribe_from_source(destination, source) + return self.getresp("messagehub_unsubscribe_success", {"destination": destination, "source": source}) diff --git a/modules/core/system/queue_controller.py b/modules/core/system/queue_controller.py new file mode 100644 index 0000000..08e156c --- /dev/null +++ b/modules/core/system/queue_controller.py @@ -0,0 +1,20 @@ +from core.command_param_types import Const +from core.decorators import instance, command + + +@instance() +class QueueController: + def inject(self, registry): + self.bot = registry.get_instance("bot") + self.command_alias_service = registry.get_instance("command_alias_service") + self.getresp = registry.get_instance("translation_service").get_response + + def start(self): + self.command_alias_service.add_alias("clearqueue", "queue clear") + + @command(command="queue", params=[Const("clear")], access_level="moderator", + description="Clear the outgoing message queue") + def queue_clear_cmd(self, _, _1): + num_messages = len(self.bot.conns["main"].packet_queue) + self.bot.conns["main"].packet_queue.clear() + return self.getresp("module/system", "clear_queue", {"count": num_messages}) diff --git a/modules/core/system/runas_controller.py b/modules/core/system/runas_controller.py new file mode 100644 index 0000000..011b6ed --- /dev/null +++ b/modules/core/system/runas_controller.py @@ -0,0 +1,22 @@ +from core.command_param_types import Any, Character +from core.decorators import instance, command + + +@instance() +class RunasController: + def inject(self, registry): + self.command_service = registry.get_instance("command_service") + self.access_service = registry.get_instance("access_service") + self.getresp = registry.get_instance("translation_service").get_response + + @command(command="runas", params=[Character("character"), Any("command")], access_level="superadmin", + description="Run a command as another character") + def runas_cmd(self, request, char, command_str): + if not char.char_id: + return self.getresp("global", "char_not_found", {"char": char.name}) + elif not self.access_service.has_sufficient_access_level(request.sender.char_id, char.char_id): + return self.getresp("module/system", "runas_fail", {"char": char.name}) + else: + command_str = self.command_service.trim_command_symbol(command_str) + self.command_service.process_command(command_str, request.channel, + char.char_id, request.reply, request.conn) diff --git a/modules/core/system/send_message_controller.py b/modules/core/system/send_message_controller.py new file mode 100644 index 0000000..82b8952 --- /dev/null +++ b/modules/core/system/send_message_controller.py @@ -0,0 +1,19 @@ +from core.command_param_types import Any, Character +from core.decorators import instance, command + + +@instance() +class SendMessageController: + def inject(self, registry): + self.bot = registry.get_instance("bot") + self.command_service = registry.get_instance("command_service") + self.getresp = registry.get_instance("translation_service").get_response + + @command(command="sendtell", params=[Character("character"), Any("message")], access_level="superadmin", + description="Send a tell to another character from the bot") + def sendtell_cmd(self, _, char, message): + if char.char_id: + self.bot.send_private_message(char.char_id, message, add_color=False) + return self.getresp("module/system", "msg_sent") + else: + return self.getresp("global", "char_not_found", {"char": char.name}) diff --git a/modules/core/system/sql_controller.py b/modules/core/system/sql_controller.py new file mode 100644 index 0000000..c1f14bb --- /dev/null +++ b/modules/core/system/sql_controller.py @@ -0,0 +1,57 @@ +from core.decorators import instance + + +@instance() +class SqlController: + def inject(self, registry): + self.bot = registry.get_instance("bot") + self.db = registry.get_instance("db") + self.text = registry.get_instance("text") + self.command_alias_service = registry.get_instance("command_alias_service") + self.getresp = registry.get_instance("translation_service").get_response + + # def start(self): + # self.command_alias_service.add_alias("querysql", "sql query") + # self.command_alias_service.add_alias("executesql", "sql exec") + + # @command(command="sql", params=[Const("query"), Any("sql_statement")], access_level="superadmin", + # description="Execute a SQL query and return the results") + # def sql_query_cmd(self, request, _, sql): + # try: + # results = self.db.query(sql) + # return ChatBlob(self.getresp("module/system", "sql_blob_title", {"count": len(results)}), + # json.dumps(results, indent=4, sort_keys=True)) + # except Exception as e: + # return self.getresp("module/system", "sql_fail", {"error": str(e)}) + # + # @command(command="sql", params=[Const("exec"), Any("sql_statement")], access_level="superadmin", + # description="Execute a SQL query and return number of affected rows") + # def sql_exec_cmd(self, request, _, sql): + # try: + # row_count = self.db.exec(sql) + # return self.getresp("module/system", "sql_exec_success", {"count": row_count}) + # except Exception as e: + # return self.getresp("module/system", "sql_fail", {"error": str(e)}) + # + # @command(command="sql", params=[Const("files")], access_level="superadmin", + # description="Show SQL files that have been loaded") + # def sql_files_cmd(self, request, _): + # data = self.db.query("SELECT file, version FROM db_version ORDER BY file ASC") + # + # blob = "" + # for row in data: + # reload_link = "" + # if row.file != "db_version": + # reload_link = self.text.make_tellcmd("Reload", f"sql load {row.file}") + # blob += f"{row.file} - {row.version} {reload_link}\n" + # + # return ChatBlob("SQL Files (%d)" % len(data), blob) + # + # @command(command="sql", params=[Const("load"), Any("sql_file")], access_level="superadmin", + # description="Load or reload a SQL file") + # def sql_load_cmd(self, request, _, file): + # try: + # self.db.load_sql_file(file, force_update=True) + # return f"SQL file {file} has been loaded." + # except Exception as e: + # return self.getresp("module/system", "sql_fail", {"error": str(e)}) diff --git a/modules/core/system/system.msg b/modules/core/system/system.msg new file mode 100644 index 0000000..1335e56 --- /dev/null +++ b/modules/core/system/system.msg @@ -0,0 +1,164 @@ +{ + "reload_lang": { + "en_US": "Language changed to {lang_code}", + "de_DE": "Die Sprache wurde auf {lang_code} geändert." + }, + "current_lang": { + "en_US": "My current language is {lang_code}", + "de_DE": "Meine aktuelle Sprache ist {lang_code}." + }, + "clear_queue": { + "en_US": "Cleared {count} messages from the outgoing message queue.", + "de_DE": "Es wurden {count} Nachrichten aus der ausgehenden Nachrichten warteschlange entfernt." + }, + "runas_fail": { + "en_US": "Error! You must have a higher access level than {char}.", + "de_DE": "Error! Du musst ein höheres Rechtelevel haben als {char}." + }, + "msg_sent": { + "en_US": "Your message has been sent.", + "de_DE": "Deine Nachricht wurde erfolgreich gesendet." + }, + "sql_exec_success": { + "en_US": "{count} row(s) affected.", + "de_DE": "{count} Zeile(n) betroffen." + }, + "sql_fail": { + "en_US": "There was an error executing your query: {error}", + "de_DE": "Bei der Bearbeitung deiner Anfrage ist ein Fehler aufgetreten: {error}" + }, + "sql_blob_title": { + "en_US": "Results ({count})", + "de_DE": "Ergebnisse ({count})" + }, + "expected_online": { + "en_US": " is now online.", + "de_DE": " ist wieder online." + }, + "unexpected_online": { + "en_US": " is now online but may have shut down or restarted unexpectedly.", + "de_DE": " ist wieder online, wurde aber möglicherweise unerwartet heruntergefahren, oder neugestartet." + }, + "shutdown": { + "en_US": "The bot is shutting down.", + "de_DE": "Der Bot wird heruntergefahren." + }, + "restart": { + "en_US": "The bot is restarting.", + "de_DE": "Der Bot startet nun neu." + }, + "reason": { + "en_US": " Reason: {reason}", + "de_DE": " Der Grund hierfür: {reason}" + }, + "check_access": { + "en_US": "Access level for {char} is {rank_main}.", + "de_DE": "Das Zugriffslevel für {char} ist {rank_main}." + }, + "show_output_target": { + "en_US": "{sender} is showing you output for command {cmd}:", + "de_DE": "{sender} zeigt dir den output des Befehls {cmd}:" + }, + "show_output_self": { + "en_US": "Command {cmd} output has been sent to {target}.", + "de_DE": "Die Ausgabe des Befehls {cmd} wurde an {target} weitergeleitet." + }, + "status_blob": { + "en_US": [ + "Version: {bot_ver}\n", + "Name: \n", + "\n", + "OS: {os_ver}\n", + "Python: {python_ver}\n", + "Database: {db_type}\n", + "Memory Usage: {mem_usage} KB\n", + "\n", + "Superadmin: {superadmin}\n", + "Buddy List: {bl_used}/{bl_size}\n", + "Uptime: {uptime}\n", + "Dimension: {dim}\n", + "\n", + "Org Id: {org_id}\n", + "Org Name: {org_name}\n", + "\n", + "Bots Connected\n", + "{bots_connected}", + "\n", + "Public Channels\n", + "{pub_channels}", + "\n", + "Event Types\n", + "{event_types}", + "\n", + "Access Levels\n", + "{access_levels}" + ], + "de_DE": [ + "Version: Tyrbot {bot_ver}\n", + "Name: \n", + "\n", + "Betriebssystem: {os_ver}\n", + "Python: {python_ver}\n", + "Datenbank: {db_type}\n", + "Arbeitsspeichernutzung: {mem_usage} KB\n", + "\n", + "Superadmin: {superadmin}\n", + "Freundesliste: {bl_used}/{bl_size}\n", + "Onlinezeit: {uptime}\n", + "Dimension: {dim}\n", + "\n", + "Org ID: {org_id}\n", + "Org Name: {org_name}\n", + "\n", + "Bots Connected\n", + "{bots_connected}", + "\n", + "Öffentliche Channel\n", + "{pub_channels}", + "\n", + "Event Typen\n", + "{event_types}", + "\n", + "Zugriffslevel\n", + "{access_levels}", + "\n" + ] + }, + "status_title": { + "en_US": "System Info", + "de_DE": "Systeminformationen" + }, + "messagehub_title": { + "en_US": "Message Hub Subscriptions ({count})" + }, + "messagehub_info": { + "en_US": "Destinations are listed below, along with the sources they are subscribed to." + }, + "subscribed": { + "en_US": "Subscribed" + }, + "unsubscribed": { + "en_US": "Unsubscribed" + }, + "messagehub_edit_title": { + "en_US": "{destination} Subscriptions ({count})" + }, + "messagehub_already_subscribed": { + "en_US": "Destination {destination} is already subscribed to source {source}." + }, + "messagehub_not_subscribed": { + "en_US": "Destination {destination} is not subscribed to source {source}." + }, + "messagehub_invalid_subscription": { + "en_US": "Destination {destination} cannot be subscribed to source {source}." + }, + "messagehub_subscribe_success": { + "en_US": "Destination {destination} has been subscribed to source {source} successfully." + }, + "messagehub_unsubscribe_success": { + "en_US": "Destination {destination} has been unsubscribed from source {source} successfully." + }, + "destination_not_exist": { + "en_US": "Destination {destination} does not exist." + } +} diff --git a/modules/core/system/system_controller.py b/modules/core/system/system_controller.py new file mode 100644 index 0000000..d887fac --- /dev/null +++ b/modules/core/system/system_controller.py @@ -0,0 +1,110 @@ +import hjson + +from core.command_param_types import Any +from core.command_service import CommandService +from core.decorators import instance, command, event +from core.dict_object import DictObject +from core.logger import Logger +from core.setting_service import SettingService +from core.setting_types import BooleanSettingType, TextSettingType, NumberSettingType +from core.translation_service import TranslationService + + +@instance() +class SystemController: + SHUTDOWN_EVENT = "shutdown" + MESSAGE_SOURCE = "shutdown_notice" + + def __init__(self): + self.logger = Logger(__name__) + + def inject(self, registry): + self.bot = registry.get_instance("bot") + self.setting_service: SettingService = registry.get_instance("setting_service") + self.event_service = registry.get_instance("event_service") + self.character_service = registry.get_instance("character_service") + self.ts: TranslationService = registry.get_instance("translation_service") + self.message_hub_service = registry.get_instance("message_hub_service") + self.getresp = self.ts.get_response + + def pre_start(self): + self.event_service.register_event_type(self.SHUTDOWN_EVENT) + self.message_hub_service.register_message_source(self.MESSAGE_SOURCE) + + def start(self): + self.ts.register_translation("module/system", self.load_system_msg) + + self.setting_service.register_new(self.module_name, "expected_shutdown", True, BooleanSettingType(), + "Helps bot to determine if last shutdown was expected or due to a problem") + self.setting_service.register_new("core.system", "symbol", "!", + TextSettingType(["!", "#", "*", "@", "$", "+", "-"]), + "Symbol for executing bot commands") + self.setting_service.register_new("core.system", "org_channel_max_page_length", 7500, + NumberSettingType([4500, 6000, 7500, 9000, 10500, 12000]), + "Maximum size of blobs in org channel") + self.setting_service.register_new("core.system", "private_message_max_page_length", 7500, + NumberSettingType([4500, 6000, 7500, 9000, 10500, 12000]), + "Maximum size of blobs in private messages") + self.setting_service.register_new("core.system", "private_channel_max_page_length", 7500, + NumberSettingType([4500, 6000, 7500, 9000, 10500, 12000]), + "Maximum size of blobs in private channel") + + self.setting_service.register_new("core.system", "accept_commands_from_slave_bots", False, BooleanSettingType(), + "Accept and respond to commands sent to slave bots (only applies if you have " + "added slave bots in the config)") + + def load_system_msg(self): + with open("modules/core/system/system.msg", mode="r", encoding="utf-8") as f: + return hjson.load(f) + + def expected_shutdown(self): + return self.setting_service.get("expected_shutdown") + + @command(command="shutdown", params=[Any("reason", is_optional=True)], access_level="superadmin", + description="Shutdown the bot") + def shutdown_cmd(self, request, reason): + if request.channel not in [CommandService.ORG_CHANNEL, CommandService.PRIVATE_CHANNEL]: + request.reply(self._format_message(False, reason)) + self.shutdown(False, reason) + + @command(command="restart", params=[Any("reason", is_optional=True)], access_level="admin", + description="Restart the bot") + def restart_cmd(self, request, reason): + if request.channel not in [CommandService.ORG_CHANNEL, CommandService.PRIVATE_CHANNEL]: + request.reply(self._format_message(True, reason)) + self.shutdown(True, reason) + + @event(event_type="connect", description="Notify superadmin that bot has come online") + def connect_event(self, _, _1): + if self.expected_shutdown().get_value(): + msg = self.getresp("module/system", "expected_online") + else: + self.logger.warning("The bot has recovered from an unexpected shutdown or restart") + msg = self.getresp("module/system", "unexpected_online") + + self.bot.send_org_message(msg, fire_outgoing_event=False) + self.bot.send_private_channel_message(msg, fire_outgoing_event=False) + + self.expected_shutdown().set_value(False) + + def shutdown(self, should_restart, reason=None): + self.event_service.fire_event(self.SHUTDOWN_EVENT, DictObject({"restart": should_restart, "reason": reason})) + # set expected flag + self.expected_shutdown().set_value(True) + self.message_hub_service.send_message(self.MESSAGE_SOURCE, None, None, + self._format_message(should_restart, reason)) + if should_restart: + self.bot.restart() + else: + self.bot.shutdown() + + def _format_message(self, restart, reason): + if restart: + if reason: + return self.getresp("module/system", "restart") + self.getresp("module/system", "reason", + {"reason": reason}) + return self.getresp("module/system", "restart") + ".." + if reason: + return self.getresp("module/system", "shutdown") + self.getresp("module/system", "reason", + {"reason": reason}) + return self.getresp("module/system", "shutdown") + ".." diff --git a/modules/core/system/util_controller.py b/modules/core/system/util_controller.py new file mode 100644 index 0000000..0bbad67 --- /dev/null +++ b/modules/core/system/util_controller.py @@ -0,0 +1,134 @@ +import html +import os +import platform +import sys +import time + +import psutil + +from core.chat_blob import ChatBlob +from core.command_param_types import Any, Character +from core.decorators import instance, command +from core.util import Util + + +@instance() +class UtilController: + def inject(self, registry): + self.bot = registry.get_instance("bot") + self.db = registry.get_instance("db") + self.util: Util = registry.get_instance("util") + self.command_service = registry.get_instance("command_service") + self.buddy_service = registry.get_instance("buddy_service") + self.access_service = registry.get_instance("access_service") + self.event_service = registry.get_instance("event_service") + self.public_channel_service = registry.get_instance("public_channel_service") + self.getresp = registry.get_instance("translation_service").get_response + + @command(command="checkaccess", params=[Character("character")], access_level="moderator", + description="Check access level for a character", sub_command="other") + def checkaccess_other_cmd(self, _, char): + if not char.char_id: + return self.getresp("global", "char_not_found", {"char": char.name}) + + return self.getresp("module/system", "check_access", + {"char": char.name, + "rank_main": char.access_level["label"]}) + + @command(command="checkaccess", params=[], access_level="member", + description="Check your access level") + def checkaccess_cmd(self, request): + char = request.sender + + return self.getresp("module/system", "check_access", + {"char": char.name, + "rank_main": char.access_level["label"]}) + + @command(command="macro", params=[Any("command1|command2|command3...")], access_level="member", + description="Execute multiple commands at once") + def macro_cmd(self, request, commands): + commands = commands.split("|") + for command_str in commands: + self.command_service.process_command( + self.command_service.trim_command_symbol(command_str), + request.channel, + request.sender.char_id, + request.reply, + request.conn) + + @command(command="echo", params=[Any("message")], access_level="member", + description="Echo back a message") + def echo_cmd(self, _, message): + return html.escape(message) + + @command(command="showcommand", params=[Character("character"), Any("message")], access_level="admin", + description="Show command output to another character") + def showcommand_cmd(self, request, char, command_str): + if not char.char_id: + return self.getresp("global", "char_not_found", {"char": char.name}) + + self.bot.send_private_message(char.char_id, self.getresp("module/system", "show_output_target", + {"sender": request.sender.name, + "cmd": command_str})) + + self.command_service.process_command( + self.command_service.trim_command_symbol(command_str), + request.channel, + request.sender.char_id, + lambda msg: self.bot.send_private_message(char.char_id, msg), + request.conn) + + return self.getresp("module/system", "show_output_self", + {"target": char.name, + "cmd": command_str}) + + @command(command="system", params=[], access_level="admin", + description="Show system information") + def system_cmd(self, _): + pub_channels = "" + event_types = "" + access_levels = "" + bots_connected = "" + + for _id, conn in self.bot.conns.items(): + bots_connected += f"{_id} - {conn.char_name} ({conn.char_id})\n" + + for channel_id, name in self.public_channel_service.get_all_public_channels().items(): + pub_channels += "%s - %d\n" % (name, channel_id) + + for event_type in self.event_service.get_event_types(): + event_types += "%s\n" % event_type + + for access_level in self.access_service.get_access_levels(): + access_levels += "%s (%d)\n" % (access_level["label"], access_level["level"]) + + blob = self.getresp("module/system", "status_blob", { + "bot_ver": f"{self.bot.major_version}.{self.bot.minor_version}", + "os_ver": platform.system() + " " + platform.release(), + "python_ver": str(sys.version_info.major) + + "." + str(sys.version_info.minor) + + "." + str(sys.version_info.micro) + + "." + sys.version_info.releaselevel, + "db_type": self.db.type if not self.db.MARIADB else f"{self.db.MARIADB} with " + f"{self.db.pool_size} active connections", + "mem_usage": self.util.format_number(psutil.Process(os.getpid()).memory_info().rss / 1024), + "superadmin": "Not Set", + "bl_used": self.buddy_service.get_buddy_list_size(), + "bl_size": self.buddy_service.buddy_list_size, + "uptime": self.util.time_to_readable(int(time.time()) - self.bot.start_time, max_levels=None), + "dim": self.bot.dimension, + "org_id": self.public_channel_service.org_id, + "org_name": self.public_channel_service.org_name, + "bots_connected": bots_connected, + "pub_channels": pub_channels, + "event_types": event_types, + "access_levels": access_levels + }) + + return ChatBlob(self.getresp("module/system", "status_title"), blob) + + @command(command="htmldecode", params=[Any("command")], access_level="member", + description="Decode html entities from a command before passing to the bot for execution") + def htmldecode_cmd(self, request, command_str): + self.command_service.process_command(html.unescape(command_str), request.channel, request.sender.char_id, + request.reply, request.conn) diff --git a/modules/onlinebot/Darknet/darknet_controller.py b/modules/onlinebot/Darknet/darknet_controller.py new file mode 100644 index 0000000..f72097d --- /dev/null +++ b/modules/onlinebot/Darknet/darknet_controller.py @@ -0,0 +1,121 @@ +import re + +from core.aochat import server_packets, client_packets +from core.conn import Conn +from core.decorators import instance +from core.logger import Logger +from core.lookup.character_service import CharacterService +from core.setting_service import SettingService +from core.setting_types import BooleanSettingType +from core.text import Text +from core.tyrbot import Tyrbot + + +@instance("Darknet") +class DarkController: + relay_channel_id = None + relay_name = None + MESSAGE_SOURCE = "darknet" + message_regex = re.compile(r"^(){2}\[([a-zA-Z]{2,})] " + r"(.+) \[(.+)] \[(.+)]$", re.DOTALL) + name_regex = re.compile(r"\1", re.DOTALL) + + def __init__(self): + self.logger = Logger(__name__) + + def inject(self, registry): + self.bot: Tyrbot = registry.get_instance("bot") + self.text: Text = registry.get_instance("text") + self.setting_service: SettingService = registry.get_instance("setting_service") + self.character_service: CharacterService = registry.get_instance("character_service") + self.message_hub_service = registry.get_instance("message_hub_service") + + def pre_start(self): + self.bot.register_packet_handler(server_packets.PrivateChannelInvited.id, self.handle_private_channel_invite) + self.bot.register_packet_handler(server_packets.PrivateChannelMessage.id, self.handle_private_channel_message) + self.message_hub_service.register_message_source(self.MESSAGE_SOURCE) + + def start(self): + self.setting_service.register_new(self.module_name, "dark_relay", "true", BooleanSettingType(), + "Is the Module Enabled?") + self.setting_service.register_new(self.module_name, "dark_wts", "true", BooleanSettingType(), + "Is the WTS channel visible?") + self.setting_service.register_new(self.module_name, "dark_wtb", "true", BooleanSettingType(), + "Is the WTB channel visible?") + self.setting_service.register_new(self.module_name, "dark_lr", "true", BooleanSettingType(), + "Is the Lootrights channel visible?") + self.setting_service.register_new(self.module_name, "dark_gen", "true", BooleanSettingType(), + "Is the General channel visible?") + self.setting_service.register_new(self.module_name, "dark_pvp", "true", BooleanSettingType(), + "Is the PvP channel visible?") + self.setting_service.register_new(self.module_name, "dark_pvm", "true", BooleanSettingType(), + "Is the PVM channel visible?") + self.setting_service.register_new(self.module_name, "dark_event", "true", BooleanSettingType(), + "Is the Event channel visible?") + + def handle_private_channel_invite(self, conn: Conn, packet: server_packets.PrivateChannelInvited): + if conn != "main": + pass + if self.setting_service.get_value("dark_relay") == "0": + return + if "Darknet" == self.character_service.get_char_name(packet.private_channel_id): + channel_name = self.character_service.get_char_name(packet.private_channel_id) + self.bot.send_packet(client_packets.PrivateChannelJoin(packet.private_channel_id)) + self.logger.info("Joined private channel {channel}".format(channel=channel_name)) + self.relay_channel_id = packet.private_channel_id + self.relay_name = channel_name + + def handle_private_channel_message(self, conn, packet: server_packets.PrivateChannelMessage): + if conn != "main": + pass + if self.setting_service.get_value("dark_relay") == "0": + return + if packet.private_channel_id == self.relay_channel_id: + if self.bot.get_char_id() == packet.char_id: + return + if packet.char_id != self.relay_channel_id: + return + message = packet.message.strip() + self.process_incoming_relay_message(message) + + def process_incoming_relay_message(self, message): + if re.search(self.message_regex, message): + cont = re.findall(self.message_regex, message) + cont = cont[0] + ch = cont[1].lower() + msg = cont[2] + tell = cont[3] + if ch == "wts": + if self.setting_service.get_value("dark_wts") == "0": + return + channel = "WTS" + elif ch == "wtb": + if self.setting_service.get_value("dark_wtb") == "0": + return + channel = "WTB" + elif ch == "lootrights": + if self.setting_service.get_value("dark_lr") == "0": + return + channel = "LR" + elif ch == "general": + if self.setting_service.get_value("dark_gen") == "0": + return + channel = "Gen" + elif ch == "pvm": + if self.setting_service.get_value("dark_pvm") == "0": + return + channel = "PvM" + elif ch == "event": + if self.setting_service.get_value("dark_event") == "0": + return + channel = "Event" + elif ch == "pvp": + if self.setting_service.get_value("dark_pvp") == "0": + return + channel = "PvP" + elif ch == "auction": + channel = "AUCTION" + else: + return + message = ("[%s] %s [%s]" % (self.text.strip_html_tags(channel), msg, tell)) + self.message_hub_service.send_message(self.MESSAGE_SOURCE, None, message, message) diff --git a/modules/onlinebot/alliance/alliance_relay_controller.py b/modules/onlinebot/alliance/alliance_relay_controller.py new file mode 100644 index 0000000..f33af55 --- /dev/null +++ b/modules/onlinebot/alliance/alliance_relay_controller.py @@ -0,0 +1,110 @@ +from core.aochat import server_packets, client_packets +from core.conn import Conn +from core.decorators import instance +from core.logger import Logger +from core.lookup.character_service import CharacterService +from core.setting_service import SettingService +from core.setting_types import TextSettingType, BooleanSettingType, ColorSettingType +from core.text import Text +from core.tyrbot import Tyrbot + + +@instance("AllianceRelayController") +class AllianceRelayController: + relay_channel_id = None + MESSAGE_SOURCE = "alliance" + + def __init__(self): + self.logger = Logger(__name__) + + # noinspection DuplicatedCode + def inject(self, registry): + self.bot: Tyrbot = registry.get_instance("bot") + self.setting_service: SettingService = registry.get_instance("setting_service") + self.character_service: CharacterService = registry.get_instance("character_service") + self.message_hub_service = registry.get_instance("message_hub_service") + self.public_channel_service = registry.get_instance("public_channel_service") + self.text: Text = registry.get_instance("text") + + def pre_start(self): + self.message_hub_service.register_message_source(self.MESSAGE_SOURCE) + + def start(self): + self.setting_service.register_new(self.module_name, "arelaybot", "", + TextSettingType(allow_empty=True), "Bot for alliance relay") + + self.setting_service.register_new(self.module_name, "arelay_enabled", False, + BooleanSettingType(), "Enable the alliance relay") + + self.setting_service.register_new(self.module_name, "arelay_color", "#C3C3C3", + ColorSettingType(), + "Color of messages from relay") + + self.message_hub_service.register_message_destination(self.MESSAGE_SOURCE, self.handle_relay_hub_message, [], + [self.MESSAGE_SOURCE]) + + self.bot.register_packet_handler(server_packets.PrivateChannelInvited.id, self.handle_private_channel_invite, + 100) + self.bot.register_packet_handler(server_packets.PrivateChannelMessage.id, self.handle_private_channel_message) + + # noinspection DuplicatedCode + def handle_private_channel_invite(self, conn: Conn, packet: server_packets.PrivateChannelInvited): + if conn.id != "main": + return + + if not self.setting_service.get("arelay_enabled").get_value(): + return + + channel_name = self.character_service.get_char_name(packet.private_channel_id) + if self.setting_service.get_value("arelaybot").lower() == channel_name.lower(): + self.bot.send_packet(client_packets.PrivateChannelJoin(packet.private_channel_id)) + self.logger.info("Joined private channel {channel}".format(channel=channel_name)) + self.relay_channel_id = packet.private_channel_id + + # noinspection DuplicatedCode + def handle_private_channel_message(self, conn: Conn, packet: server_packets.PrivateChannelMessage): + if conn.id != "main": + return + + if not self.setting_service.get("arelay_enabled").get_value(): + return + + # ignore packets from the bot's own private channel and from the bot itself + if packet.private_channel_id == self.bot.get_char_id() or packet.char_id == self.bot.get_char_id(): + return + + message = packet.message.lstrip() + if message[:6] != "!agcr ": + return + + message = message[6:] + formatted_message = self.setting_service.get("arelay_color").format_text(message) + + sender = None + self.message_hub_service.send_message(self.MESSAGE_SOURCE, sender, message, formatted_message) + + def handle_relay_hub_message(self, ctx): + if not self.setting_service.get("arelay_enabled").get_value(): + return + + plain_msg = ctx.message or ctx.formatted_message + invite = self.text.make_chatcmd("click here", "/tell discord invite", + style="style='text-decoration:none'") + + blob = self.text.format_page('Info', + f"
::: Information :::


" + f"This message has been sent to you by:

" + f"Igncom
" + f"{ctx.sender[1].name + '#' + ctx.sender[1].discriminator}
" + f"{ctx.sender[0]} on Alliance Discord.

" + f"To reply, either respond in the relay or " + f"contact them directly at the provided handles.

" + f"Have you joined The Alliance Discord yet? " + f"If not {invite} to receive an invite.") + self.send_message_to_alliance(plain_msg + f" [{blob}]") + + def send_message_to_alliance(self, msg): + if self.relay_channel_id: + packet = client_packets.PrivateChannelMessage(self.relay_channel_id, + "!agcr " + self.text.format_message(msg, False), "\0") + self.bot.conns["main"].send_packet(packet) diff --git a/modules/onlinebot/ding/ding_controller.py b/modules/onlinebot/ding/ding_controller.py new file mode 100644 index 0000000..6990561 --- /dev/null +++ b/modules/onlinebot/ding/ding_controller.py @@ -0,0 +1,125 @@ +import random +import re + +from core.conn import Conn +from core.db import DB +from core.decorators import instance +from core.logger import Logger +from core.lookup.character_service import CharacterService +from core.setting_service import SettingService +from core.text import Text +from core.tyrbot import Tyrbot + + +@instance("DingController") +class DingController: + axp = re.compile( + r"ICC planet-wide announcement: (.+) has been awarded the highest honorary rank for " + r"outstanding dedication to the defence of Rubi-Ka.") + xp = re.compile( + r"You feel the core of your being shift, as the source makes room for a divine presence. " + r"'(.+)' has reached enlightenment.") + + text_options_xp = ["Congratz! You have reached the end of the line! NO MORE FUN FOR YOU! :P", + + "Holy shit, you finally made it! What an accomplishment... Congratulations " + "{name}, for reaching a level reserved for the greatest!", + + "Damn {name}.... I'm going to miss you a great deal, " + "because after this, we no longer can be together {name}." + " We must part so you can continue getting your research and AI levels done! Farewell!", + + "Hey {name}, how was the inferno grind? " + "I'm glad to see you made it through, and congratulations for " + "finally getting the level you well deserved!", + + "Our congratulations, to our newest level 220 member, " + "{name}, for his dedication. " + "We present him with his new honorary rank, Chuck Norris!", + + "Holy crap, you actually did it! Dear {name}, " + "I salute you for your determination and sheer awesomeness. Congratulations, " + "to our newest level 220 member!"] + + text_options_axp = ["Congratz! You have reached the end of the line! NO MORE FUN FOR YOU! :P", + + "Holy shit, you finally made it! What an accomplishment... " + "Congratulations {name}, " + "for reaching Alien Level 30!", + + "Damn... I'm going to miss you a great deal, because after this, we no longer can be together, " + "{name}. We must part so you can continue getting your research!" + " Farewell!", + + "Hey {name}, how was the alien grind?" + " I'm glad to see you made it through, " + "and congratulations for finally getting the level you well deserved!", + + "Our congratulations, to our newest Alien Level 30 member, " + "{name}, for his dedication. " + "We present him with his new honorary rank, Vindicator!", + + "Holy crap, you actually did it! Dear {name}, " + "I salute you for your determination and sheer awesomeness. Congratulations, " + "to our newest Alien Level 30 member!"] + + def __init__(self): + self.logger = Logger(__name__) + + def inject(self, registry): + self.bot: Tyrbot = registry.get_instance("bot") + self.text: Text = registry.get_instance("text") + self.setting_service: SettingService = registry.get_instance("setting_service") + self.character_service: CharacterService = registry.get_instance("character_service") + self.message_hub_service = registry.get_instance("message_hub_service") + self.db: DB = registry.get_instance("db") + + def pre_start(self): + self.bot.register_packet_handler(36, self.handle_ding) + self.bot.register_packet_handler(35, self.handle_ding) + + def handle_ding(self, conn: Conn, packet): + if conn.char_id != self.bot.get_char_id(): + return + # AXP 30 + if packet.id == 36: + info = re.findall(self.axp, packet.message) + if info: + user = self.get_user(info[0]) + if user: + self.bot.send_mass_message(user.char_id, + f"Game Over! " + f"{random.choice(self.text_options_axp).format(**user)} " + f"[{self.generate_output('AI 220')}]", + log_message=True) + + # XP 220 + if packet.id == 35: + info = re.findall(self.xp, packet.message) + if info: + user = self.get_user(info[0]) + if user: + self.bot.send_mass_message(user.char_id, + f"Game Over! " + f"{random.choice(self.text_options_xp).format(**user)} " + f"[{self.generate_output('Level 220')}]", + log_message=True) + + def generate_output(self, level): + invite = self.text.make_chatcmd("click here", "/tell discord invite", + style="style='text-decoration:none'") + sys = self.text.make_chatcmd("SYSTEM", "/tell admins", + style="style='text-decoration:none'") + blob = self.text.format_page('Info', + f"
::: Information :::


" + f"This automated message has been sent to you by:

" + f"Igncom [{sys}]
" + f"Reason for this Message: " + f"You dinged {level}

" + f"Have you joined The Alliance Discord yet? " + f"If not {invite} to receive an invite. " + f"(/tell discord invite from your Main)") + return blob + + def get_user(self, name): + return self.db.query_single("SELECT * FROM player where name=? and org_id in (SELECT * from orgs)", [name]) diff --git a/modules/onlinebot/online/bot_controller.py b/modules/onlinebot/online/bot_controller.py new file mode 100644 index 0000000..309e539 --- /dev/null +++ b/modules/onlinebot/online/bot_controller.py @@ -0,0 +1,68 @@ +from threading import Thread + +from core import command_request, sender_obj +from core.aochat.BaseModule import BaseModule +from core.buddy_service import BuddyService +from core.chat_blob import ChatBlob +from core.command_alias_service import CommandAliasService +from core.command_param_types import Const, Character +from core.db import DB +from core.decorators import instance, command +from core.logger import Logger +from core.lookup.pork_service import PorkService +from core.text import Text +from core.tyrbot import Tyrbot +from core.util import Util + + +# noinspection DuplicatedCode +@instance() +class BotController(BaseModule): + bots = [] + threads = {} + + def inject(self, registry): + self.logger = Logger(__name__) + self.bot: Tyrbot = registry.get_instance("bot") + self.db: DB = registry.get_instance("db") + self.text: Text = registry.get_instance("text") + self.util: Util = registry.get_instance("util") + self.pork: PorkService = registry.get_instance("pork_service") + self.org_pork: PorkService = registry.get_instance("org_pork_service") + self.command_alias_service: CommandAliasService = registry.get_instance("command_alias_service") + self.buddy_service: BuddyService = registry.get_instance("buddy_service") + + def pre_start(self): + self.db.exec("CREATE TABLE IF NOT EXISTS org_bots(char_id int primary key not null, org_id int not null)") + + def start(self): + pass + + @command(command="bots", params=[Const("add"), Character("botname")], access_level="admin", + description="Add an bot to the bot list") + def bots_add_any(self, sender, _, bot): + Thread(target=self.bots_add, args=(bot, sender)).start() + + def bots_add(self, bot: sender_obj, request: command_request): + player = self.pork.request_char_info(bot.name, 5) + if self.db.exec("INSERT IGNORE INTO org_bots(char_id, org_id) VALUES(?, ?)", [bot.char_id, player.org_id]) == 0: + request.reply("The bot %s is already marked as an chatbot." % bot.name) + else: + request.reply("Successfully marked %s as an chatbot." % bot.name) + + @command(command="bots", + params=[], + access_level="moderator", + description="show all orgbots", + sub_command="show") + def bots_show_all(self, _): + def format_row(query): + bud = self.buddy_service.is_online(query["char_id"]) + buddy = "O" if bud == 1 else "O" if bud == 0 else "U" + return "- [{status}] {name} ({org_name})\n".format(**query, status=buddy) + + data = self.db.query("SELECT * FROM org_bots o LEFT JOIN player p on o.char_id = p.char_id order by p.org_name") + blob = "" + for row in data: + blob += format_row(row) + return ChatBlob("Our Orgbots", blob) diff --git a/modules/onlinebot/online/online_controller.py b/modules/onlinebot/online/online_controller.py new file mode 100644 index 0000000..16a05ab --- /dev/null +++ b/modules/onlinebot/online/online_controller.py @@ -0,0 +1,35 @@ +from core.command_param_types import Const, Int, Any +from core.decorators import instance, command +from modules.standard.online.online_controller import OnlineController + + +@instance(name="online_controller", override=True) +class OrgOnlineController(OnlineController): + + @command(command="online", params=[Const('all', is_optional=True), + Int("min_level", is_optional=True), + Any("profession", is_optional=True)], + description="shows online players", + access_level="member") + def online_all_cmd(self, request, const_all, min_level, profession): + query = "" + params = [self.bot.name, self.bot.get_char_id()] + priv = self.priv.in_private_channel(request.sender.char_id) + if priv: + if const_all: + query += "and channel_id IN (1, 2, 3) " + else: + query += "and channel_id IN (1, 2) " + else: + query += "and channel_id = 3 " + if min_level: + query += "and p.level >= ? " + params.append(min_level) + if profession: + query += "and p.profession = ? " + params.append(self.util.get_profession(profession)) + if priv and not const_all: + blob = self.online_display.format_by_channel_prof(query, params) + else: + blob = self.online_display.format_by_org(query, params) + self.bot.send_mass_message(request.sender.char_id, self.online_display.format_blob(blob)) diff --git a/modules/onlinebot/online/org_alias_controller.py b/modules/onlinebot/online/org_alias_controller.py new file mode 100644 index 0000000..c2552c6 --- /dev/null +++ b/modules/onlinebot/online/org_alias_controller.py @@ -0,0 +1,38 @@ +from core.buddy_service import BuddyService +from core.command_alias_service import CommandAliasService +from core.db import DB +from core.decorators import instance +from core.logger import Logger +from core.lookup.pork_service import PorkService +from core.text import Text +from core.tyrbot import Tyrbot +from core.util import Util +from modules.core.accounting.services.access_service import AccessService + + +# noinspection DuplicatedCode +@instance() +class OrgAliasController: + org_prefix = {4736: "AP", 9632: "AP", 9622: "AC", 9831: "AC", 581633: "BST", 9707: "CoH", 9990: "CoH", 4637: "HAV", + 10197: "IMP", 6093: "LCG", 4789: "MJ", 4687: "NA", 4800: "PR", 4993: "REGS", 813067: "SOTL", + 4851: "SP", 9611: "SP", 4614: "TA", 4831: "TGNF", 6183: "TRE", 9822: "TS", 4611: "UHS", + 5571: "UOTR", 520210: "WO", 1349649: "VR", 4826: "42", 1349647: "VR", 6332: "DRA", 848: "DRA", + 4675: "VA", 1558530: "EoS"} + + def inject(self, registry): + self.logger = Logger(__name__) + self.bot: Tyrbot = registry.get_instance("bot") + self.db: DB = registry.get_instance("db") + self.text: Text = registry.get_instance("text") + self.util: Util = registry.get_instance("util") + self.pork: PorkService = registry.get_instance("pork_service") + self.org_pork: PorkService = registry.get_instance("org_pork_service") + self.command_alias_service: CommandAliasService = registry.get_instance("command_alias_service") + self.buddy_service: BuddyService = registry.get_instance("buddy_service") + self.access_service: AccessService = registry.get_instance("access_service") + + def start(self): + self.db.exec("CREATE TABLE IF NOT EXISTS org_alias(org_id int primary key not null, org_alias VARCHAR(255))") + + def get_alias(self, org_id): + return self.org_prefix.get(org_id, "-UKN-") diff --git a/modules/onlinebot/online/org_controller.py b/modules/onlinebot/online/org_controller.py new file mode 100644 index 0000000..28ca3e8 --- /dev/null +++ b/modules/onlinebot/online/org_controller.py @@ -0,0 +1,369 @@ +import json +import re +import time +from threading import Thread + +import requests +from mysql.connector.cursor import CursorBase + +from core.buddy_service import BuddyService +from core.cache_service import CacheService +from core.chat_blob import ChatBlob +from core.command_alias_service import CommandAliasService +from core.command_param_types import Const, Any +from core.command_request import CommandRequest +from core.db import DB +from core.decorators import instance, command, timerevent, event +from core.dict_object import DictObject +from core.logger import Logger +from core.lookup.org_pork_service import OrgPorkService +from core.lookup.pork_service import PorkService +from core.message_hub_service import MessageHubService +from core.text import Text +from core.tyrbot import Tyrbot +from core.util import Util +from modules.core.accounting.services.access_service import AccessService +# noinspection PyAttributeOutsideInit,SpellCheckingInspection,DuplicatedCode +from modules.core.accounting.services.account_service import AccountService +from modules.onlinebot.online.org_alias_controller import OrgAliasController + + +# noinspection DuplicatedCode +@instance() +class OrgController: + threads = {} + letters = ["a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", + "v", "w", "x", "y", "z", "others", "0", "1", "2", "3", "4", "5", "6", "7", "8", "9"] + pork_uri = "https://people.anarchy-online.com/people/lookup/orgs.html?l=%s" + single_org_uri = "https://people.anarchy-online.com/org/stats/d/5/name/%d/basicstats.xml?data_type=json" + + def inject(self, registry): + self.logger = Logger(__name__) + self.bot: Tyrbot = registry.get_instance("bot") + self.db: DB = registry.get_instance("db") + self.text: Text = registry.get_instance("text") + self.util: Util = registry.get_instance("util") + self.pork: PorkService = registry.get_instance("pork_service") + self.org_pork: OrgPorkService = registry.get_instance("org_pork_service") + self.command_alias_service: CommandAliasService = registry.get_instance("command_alias_service") + self.buddy_service: BuddyService = registry.get_instance("buddy_service") + self.access_service: AccessService = registry.get_instance("access_service") + self.relay_hub_service: MessageHubService = registry.get_instance("message_hub_service") + self.alias_controller: OrgAliasController = registry.get_instance("org_alias_controller") + self.account_service: AccountService = registry.get_instance("account_service") + self.cache: CacheService = registry.get_instance("cache_service") + + def start(self): + self.db.exec("CREATE TABLE IF NOT EXISTS orgs(org_id int primary key not null)") + + self.command_alias_service.add_alias("org", "orgs") + + @event("connect", "Adds all members to buddylist") + def connect(self, _, _1): + query = self.db.query("SELECT char_id, member from account where member IN (SELECT org_id from orgs)") + if query: + for player in query: + self.buddy_service.add_buddy(player.char_id, "member") + + @command(command="orgs", params=[Const("add"), Any("Organisation")], access_level="admin", + description="Add an org to the online list") + def orgs_add_any(self, sender, _, org): + return self.orgs_add(org, sender) + + def orgs_add(self, search, sender): + orgs = self.find_org(search) + if len(orgs) == 1: + orgs = orgs[0] + if self.db.exec("REPLACE INTO orgs(org_id) VALUES(?)", + [orgs.org_id]) == 1: + sender.reply("Adding the organisation %s to the roster..." % orgs.org_name) + org_adder = Thread(name=orgs.org_id, target=self.fetch_single, + args=(orgs.org_id, orgs.org_name, sender)) + self.threads[orgs.org_id] = org_adder + org_adder.start() + else: + return "The organisation %s is in the roster already." % orgs.org_name + elif len(orgs) == 0: + return "No org with the name %s was found on PoRK." % search + else: + blob = "Your search had multiple results; please pick an org:
" + for org in orgs: + blob += "[%s][%s] %s (%s) <%s>%s [%s " \ + "members]
" \ + % (self.text.make_chatcmd("Add", "/tell orgs add %s" % org.org_id), + self.text.make_chatcmd("More", "/tell org info %s" % org.org_id), + org.org_name, org.org_id, org.faction.lower(), org.faction, org.member_count) + return ChatBlob("Pick an Org", blob) + + @command(command="orgs", params=[Const("rem"), Any("Organisation")], access_level="admin", + description="Remove an org from the online list") + def orgs_rem_any(self, _, _1, org): + return self.orgs_rem(org) + + def orgs_rem(self, search): + orgs = self.find_org(search) + + if len(orgs) == 1: + orgs = orgs[0] + if self.db.exec("DELETE FROM orgs where org_id = ?", [orgs.org_id]) == 1: + org_remover = Thread(name=orgs.org_id, target=self.remove_single, args=(orgs.org_id, orgs.org_name)) + self.threads[orgs.org_id] = org_remover + org_remover.start() + return "Removed the organisation %s from the roster." % orgs.org_name + else: + return "The organisation %s is not on the roster list." % orgs.org_name + elif len(orgs) == 0: + return "The organisation %s is not on the roster list." % search + else: + blob = "Your search had multiple results; please pick an org:
" + for org in orgs: + blob += "[%s][%s] %s (%s) <%s>%s [%s " \ + "members]
" \ + % (self.text.make_chatcmd("Remove", "/tell orgs remove %s" % org.org_id), + self.text.make_chatcmd("More", "/tell org info %s" % org.org_id), + org.org_name, org.org_id, org.faction.lower(), org.faction, org.member_count) + return ChatBlob("Pick an Org", blob) + + @command(command="orgs", params=[Const("list", is_optional=True)], access_level="member", + description="View all orgs on the online list", sub_command="list") + def orgs_list(self, sender: CommandRequest, _): + head = "
Organisations in our Alliance" + blob = "" + for org in self.db.query("SELECT * from orgs o " + "left join all_orgs a on o.org_id = a.org_id order by a.org_name"): + org = DictObject(org) + blob += "- %s%s%s (%d) with %d members\n" % ( + "[" + self.text.make_chatcmd("Info", "/tell orgs info %d" % org.org_id, + style="style='text-decoration:none'") + "] ", + "[" + self.text.make_chatcmd("Remove", "/tell orgs rem %d" % org.org_id, + style="style='text-decoration:none'") + "] " if + sender.sender.access_level["level"] <= 10 else "", + org.org_name, org.org_id, + self.db.query_single("SELECT member_count from all_orgs where org_id=?", [org.org_id]).member_count) + + return ChatBlob(head, blob) + + @timerevent(budatime="48h", description="pull list of all orgs from PoRK") + def discover_orgs(self, _, _1): + def discover(): + start = time.time() + self.logger.info("Fetching global orgdata..") + count = 0 + data = [] + + for letter in self.letters: + result = requests.get(self.pork_uri % letter) + # noinspection RegExpRepeatedSpace + matches = re.findall(""" + + + (.+) + (\d+) + (\d+) + (\w+) + (\w+) + RK5 + """, result.text) + for match in matches: + if int(match[2]) < 6: + continue + data.append((int(match[0]), match[1], int(match[2]), match[4], start)) + count += 1 + self.logger.info("Batch %s done!" % letter) + + with self.db.pool.get_connection() as conn: + with conn.cursor() as cur: + cur: CursorBase + cur.executemany( + "INSERT INTO all_orgs(org_id, org_name, member_count, faction, last_seen) " + "VALUES(?, ?, ?, ?, ?) " + "ON DUPLICATE KEY UPDATE " + "org_name=VALUE(org_name), " + "member_count=VALUE(member_count), " + "last_seen=VALUE(last_seen)", + data) + self.db.exec("DELETE FROM all_orgs where last_seen < ?", [time.time() - 2 * 24 * 60 * 60]) + self.logger.info("Successfully fetched %d orgs in %d seconds." % (count, time.time() - start)) + self.threads.pop('orgdiscover', None) + + if "orgdiscover" not in self.threads.keys(): + thread = Thread(name="orgdiscover", target=discover, daemon=True) + self.threads["orgdiscover"] = thread + thread.start() + + @timerevent(budatime="24h", description="Pull data for our own orgs") + def fetch_orgs(self, _, _1): + def discover(): + start = time.time() + self.logger.info("Fetching orgdata..") + output = [] + data = [] + accounts = [] + ours = self.db.query("SELECT o.org_id, a.org_name from orgs o " + "left join all_orgs a on o.org_id = a.org_id order by lower(a.org_name)") + for org in ours: + result = requests.get(self.single_org_uri % org.org_id).json() + if result: + self.cache.store('org_roster', f"{org.org_id}.5.json", json.dumps(result)) + else: + result = json.loads(self.cache.retrieve('org_roster', f"{org.org_id}.5.json").data) + + for char_info in result[1]: + data.append((char_info["CHAR_INSTANCE"], char_info["NAME"], char_info["FIRSTNAME"], + char_info["LASTNAME"], char_info["LEVELX"], char_info["BREED"], + char_info["SEX"], result[0]["SIDE_NAME"], char_info["PROF"], + char_info["PROF_TITLE"], char_info["DEFENDER_RANK_TITLE"], char_info["ALIENLEVEL"], + result[0]["ORG_INSTANCE"], result[0]["NAME"], char_info["RANK_TITLE"], + char_info["RANK"], char_info["CHAR_DIMENSION"], char_info["HEADID"], + 0, char_info["PVPTITLE"], "roster", int(time.time()))) + accounts.append((char_info["CHAR_INSTANCE"], + char_info["CHAR_INSTANCE"], + result[0]["ORG_INSTANCE"], + start, start)) + if not self.buddy_service.get_buddy(char_info["CHAR_INSTANCE"]): + self.buddy_service.add_buddy(char_info["CHAR_INSTANCE"], "member") + output.append(DictObject({"action": "JOIN", + "name": char_info['NAME'], + "org_name": result[0]["NAME"], + "org_id": result[0]["ORG_INSTANCE"], + "level": char_info["LEVELX"], + "ai_level": char_info["ALIENLEVEL"], + "ranks": 0})) + self.logger.info("Organisation %s has been updated." % org.org_name) + self.account_service.create_users(accounts) + if len(data) > 1: + with self.db.lock: + with self.db.pool.get_connection() as conn: + with conn.cursor() as cur: + cur: CursorBase + cur.executemany("INSERT INTO player(char_id, name, first_name, last_name, " + "level, breed, gender, faction, profession, profession_title, " + "ai_rank, ai_level, org_id, org_name, org_rank_name, " + "org_rank_id, dimension, head_id, pvp_rating, pvp_title, " + "source, last_updated) VALUES " + "(?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) " + "ON DUPLICATE KEY UPDATE first_name=VALUE(first_name), " + "last_name=VALUE(last_name), level=VALUE(level), " + "breed=VALUE(breed), gender=VALUE(gender), " + "faction=VALUE(faction), profession=VALUE(profession), " + "profession_title=VALUE(profession_title),ai_rank=VALUE(ai_rank), " + "ai_level=VALUE(ai_level), org_name=VALUE(org_name), " + "org_id=VALUE(org_id), org_rank_name=VALUE(org_rank_name), " + "org_rank_id=VALUE(org_rank_id), source=VALUE(source), " + "last_updated=VALUE(last_updated)", data) + conn.commit() + self.db.exec("UPDATE account set member = -1 " + "where char_id NOT IN " + "(select char_id from player where org_id in (select org_id from orgs)) and member > 0") + self.db.exec("DELETE FROM ranks where main not in (select main from account where member > -1)") + players = self.db.query("SELECT a.char_id, p.* FROM account a " + "left join player p on a.char_id=p.char_id " + "where (a.last_updated < ? and member >1) or " + "(p.org_id NOT IN (select org_id from orgs) and a.member>1) ", + [time.time() - 24 * 60 * 60]) + accounts = [] + for player in players: + bonus = None + player = DictObject(player) + count = 0 + if self.buddy_service.remove_buddy(player.char_id, "member"): + count = self.db.exec("DELETE FROM ranks where main=?", [player.char_id]) + accounts.append((player.char_id, 1)) + bonus = "LEAVE" + new_data = self.pork.request_char_info(player.name, player.dimension) + if new_data and new_data.char_id == player.char_id: + self.pork.save_character_info(new_data) + else: + bonus = "DEL" + accounts.append((player.char_id, 1)) + if bonus: + output.append(DictObject({"action": bonus, + "name": player.name, + "org_name": player.org_name, + "org_id": player.org_id, + "level": player.level, + "ai_level": player.ai_level, + "ranks": count})) + self.account_service.remove_members(accounts) + self.log(output, time.time() - start) + self.logger.info("Successfully fetched %d players from %d orgs in %d seconds. - " % ( + len(data), len(ours), time.time() - start)) + del self.threads['roster'] + + if "roster" not in self.threads.keys(): + thread = Thread(name="roster", target=discover, daemon=True) + self.threads["roster"] = thread + thread.start() + + def find_org(self, search, table="all_orgs"): + if search.isdigit(): + return self.db.query("SELECT * FROM " + table + " where org_id = ?", [search]) + elif isinstance(search, str): + return self.db.query("SELECT * FROM " + table + " where org_name LIKE ?", ["%" + search + "%"]) + + def fetch_single(self, org_id, org_name, sender: object): + start = time.time() + data = [] + accounts = [] + self.logger.info("Fetching orgdata..") + count = 0 + result = requests.get(self.single_org_uri % org_id).json() + for char_info in result[1]: + data.append((char_info["CHAR_INSTANCE"], char_info["NAME"], char_info["FIRSTNAME"], + char_info["LASTNAME"], + char_info["LEVELX"], char_info["BREED"], + char_info["SEX"], result[0]["SIDE_NAME"], char_info["PROF"], + char_info["PROF_TITLE"], char_info["DEFENDER_RANK_TITLE"], char_info["ALIENLEVEL"], + result[0]["ORG_INSTANCE"], result[0]["NAME"], char_info["RANK_TITLE"], + char_info["RANK"], char_info["CHAR_DIMENSION"], char_info["HEADID"], + 0, char_info["PVPTITLE"], "roster", int(time.time()))) + + accounts.append((char_info["CHAR_INSTANCE"], char_info["CHAR_INSTANCE"], result[0]["ORG_INSTANCE"], + start, start)) + self.buddy_service.add_buddy(char_info['CHAR_INSTANCE'], "member") + count += 1 + with self.db.pool.get_connection() as conn: + with conn.cursor() as cur: + cur.executemany("REPLACE INTO player(char_id, name, first_name, last_name, level, breed, " + "gender, faction, profession, profession_title, ai_rank, ai_level, " + "org_id, org_name, org_rank_name, org_rank_id, dimension, head_id, " + "pvp_rating, pvp_title, source, last_updated) VALUES " + "(?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)", data) + self.account_service.create_users(accounts) + self.logger.info("Organisation %s added!" % org_name) + sender.reply(f"{org_name} has been added to the roster. " + f"Runtime: {time.time() - start:.2f} seconds.") + + self.logger.info("Successfully fetched %d players in %d seconds." % (count, time.time() - start)) + del self.threads[org_id] + + def remove_single(self, org_id, org_name): + members = self.db.query("SELECT * from player where org_id=?", [org_id]) + for member in members: + self.buddy_service.remove_buddy(member.char_id, "member") + self.db.exec("UPDATE account set member=-1 where char_id in" + " (SELECT char_id from player where org_id=?)", [org_id]) + self.db.exec("DELETE FROM online where char_id in (SELECT char_id from player where org_id=?)", [org_id]) + self.logger.info("Organisation %s removed!" % org_name) + del self.threads[org_id] + + def log(self, blob, duration): + out = [] + s = [] + current = "" + + for entry in blob: + s.append(f"[{self.alias_controller.get_alias(entry.org_id)}] [{entry.action}] {entry.name} " + f"({entry.level}/{entry.ai_level}) {'[R-P]' if entry.ranks > 0 else ''}\n") + s = sorted(s) + if len(s) > 0: + s.append(f"\nRuntime: {duration:.2f} seconds.") + for entry in s: + if len(current) > 1500: + out.append(current) + current = "" + current += entry + if len(current) > 10: + out.append(current) + if len(out) > 0: + self.relay_hub_service.send_message("member_logger", None, out, out) diff --git a/modules/onlinebot/raids/raid_controller.py b/modules/onlinebot/raids/raid_controller.py new file mode 100644 index 0000000..32126b8 --- /dev/null +++ b/modules/onlinebot/raids/raid_controller.py @@ -0,0 +1,278 @@ +import textwrap +import time +from datetime import datetime, timezone + +from core import command_request +from core.buddy_service import BuddyService +from core.command_alias_service import CommandAliasService +from core.command_param_types import Any, Int, Const +from core.db import DB +from core.decorators import instance, command, timerevent +from core.logger import Logger +from core.lookup.pork_service import PorkService +from core.private_channel_service import PrivateChannelService +from core.setting_service import SettingService +from core.text import Text +from core.tyrbot import Tyrbot +from core.util import Util +from modules.core.ban.ban_service import BanService + + +# noinspection SqlResolve + + +class Raid: + leader = {} + raid_desc = "[No description set]" + raid_time = "[unknown]" + min_level = 200 + leader_rank = {} + last_spam = 0 + last_action = 0 + bot = "" + + def __init__(self, leader, rank): + self.leader = leader + self.leader_rank = rank + self.last_action = time.time() + + +# noinspection SqlResolve,DuplicatedCode,PyAttributeOutsideInit +@instance() +class RaidController: + profs = {"Meta-Physicist": 16308, "Adventurer": 84203, "Engineer": 16252, "Soldier": 16237, "Keeper": 84197, + "Shade": 39290, "Fixer": 16300, "Agent": 16186, "Trader": 117993, "Doctor": 44235, "Enforcer": 100998, + "Bureaucrat": 16341, "Martial Artist": 16196, "Nano-Technician": 16283} + legal_bots = ["allianceraid", "aapf", "theallianz", "igncom", "ignraid"] + + def __init__(self): + # noinspection PyTypeChecker + self.raid: Raid = None + + def inject(self, registry): + self.logger = Logger(__name__) + self.bot: Tyrbot = registry.get_instance("bot") + self.db: DB = registry.get_instance("db") + self.text: Text = registry.get_instance("text") + self.util: Util = registry.get_instance("util") + self.pork: PorkService = registry.get_instance("pork_service") + self.org_pork: PorkService = registry.get_instance("org_pork_service") + self.command_alias_service: CommandAliasService = registry.get_instance("command_alias_service") + self.buddy_service: BuddyService = registry.get_instance("buddy_service") + self.setting_service: SettingService = registry.get_instance("setting_service") + self.ban: BanService = registry.get_instance("ban_service") + self.private_channel_service: PrivateChannelService = registry.get_instance("private_channel_service") + + @command(command="raid", params=[Const("desc"), Any("<description>")], + description="Change the title of the Raid", access_level="leader") + def raid_set_name(self, request: command_request, _, desc): + if not self.raid: + return "There's no raid running." + if request.sender.access_level["level"] <= self.raid.leader_rank: + self.raid.raid_desc = desc + self.raid.last_action = time.time() + return f"Successfully changed the raid description to {desc}" + return f"Error! You cant do that. Your accesslevel must be equal or higher than " \ + f"{self.raid.leader.name}'s rank." + + @command(command="raid", params=[Const("bot"), Any("<botname>")], + description="Change the master Raidbot", access_level="leader") + def raid_set_bot(self, request: command_request, _, bot): + if not self.raid: + return "There's no raid running." + if request.sender.access_level["level"] <= self.raid.leader_rank: + if bot in self.legal_bots: + self.raid.bot = bot + self.raid.last_action = time.time() + return f"Successfully changed the raidbot to {bot}" + else: + return f"The bot {bot} is not whitelisted, you cannot use it as a raidbot. " + return f"Error! You cant do that. Your accesslevel must be equal or higher than " \ + f"{self.raid.leader.name}'s rank." + + @command(command="raid", params=[Const("level"), Int("<min_level>")], + description="Change the minimal level of the Raid", access_level="leader") + def raid_set_level(self, request: command_request, _, level): + if not self.raid: + return "There's no raid running." + if request.sender.access_level["level"] <= self.raid.leader_rank: + self.raid.min_level = level + self.raid.last_action = time.time() + return f"Successfully changed the minimum raid level to {level}" + return f"Error! You cant do that. Your accesslevel must be equal or higher than " \ + f"{self.raid.leader.name}'s rank." + + @command(command="raid", params=[Const("time"), Any("<stepping_time>")], + description="Change the stepping time of the Raid", access_level="leader") + def raid_set_time(self, request: command_request, _, step): + if not self.raid: + return "There's no raid running." + if request.sender.access_level["level"] <= self.raid.leader_rank: + self.raid.raid_time = step + self.raid.last_action = time.time() + return f"Successfully changed the stepping time to {step}" + return f"Error! You cant do that. Your accesslevel must be equal or higher than " \ + f"{self.raid.leader.name}'s rank." + + @command(command="raid", params=[Const("start")], description="Start a raid", access_level="leader") + def raid_start(self, request: command_request, _): + if self.raid: + return "There's already a raid running." + self.raid = Raid(request.sender, request.sender.access_level["level"]) + self.raid.bot = self.bot.get_char_name() + self.raid.last_action = time.time() + spam = f""" + ________________ + + You started a raid... but I need some more details about it, + please fill in this form: {self.raid_settings(request, "")} + + ________________ + """ + return spam + + @command(command="raid", params=[Const("stop")], description="Stop the raid", access_level="leader") + def raid_stop(self, _, _1): + if not self.raid: + return "There's no raid running." + self.raid = None + return "You stopped the raid." + + # noinspection LongLine + @command(command="raid", params=[Const("invite")], description="Send the Spam to the defined Audience", + access_level="leader") + def send_tha_spam(self, request, _): + if not self.raid: + return "There's no raid running." + + def blob(label, msg): + return "%s" % (textwrap.dedent(msg), textwrap.dedent(label)) + + last = time.time() + if self.raid.last_spam + 5 * 60 > last: + return f"There was an invite in the last 5 minutes; please wait " \ + f"{self.util.time_to_readable(self.raid.last_spam + 5 * 60 - last)} " \ + f"before sending another one." + click_here = blob("click here", + f""" +
How to join the Raid
+ + Step 1: + - Please join {self.raid.bot}: [{self.text.make_chatcmd("Join", f"/tell {self.raid.bot} join")}] + + Step 2: + - Please go LFT, to show your interest: [{self.text.make_chatcmd("Go LFT", f"/lft » {self.raid.bot}")}] + + Step 3: + Wait at the raid starting location. + Stepping is scheduled for {self.raid.raid_time} + Currently it is {(datetime.now(timezone.utc).strftime("%H:%M"))} GMT-0 + """) + spam = f""" + ________________ + + {request.sender.name} has invited you to join a {self.raid.raid_desc} Raid + Type /tell {self.raid.bot} join to participate + or {click_here} + ________________ + """ + subtile = f"""[{request.sender.name}]: Raid Starting: {self.raid.raid_desc} -- use /tell {self.raid.bot} join to participate or {click_here} """ + # noinspection SqlAggregates + players = self.db.query("SELECT p.*, a.subtile_spam, a.raid_invite, a.raid_spam from online o " + "left join player p on o.char_id = p.char_id " + "left join account a on a.char_id=(select main from account where char_id=o.char_id) " + "where p.level >= ? AND ((a.raid_invite=1 or a.raid_spam = 1) " + "and a.disabled = 0 " + "and a.member != -1 " + "AND a.char_id NOT IN (SELECT char_id FROM org_bots) " + "AND o.char_id NOT IN (SELECT char_id FROM org_bots)) " + "AND o.bot=? group by o.char_id " + "ORDER BY p.profession, p.name, p.level, p.org_rank_id;", + [self.raid.min_level, self.bot.get_char_id()]) + self.bot.send_mass_message(request.sender.char_id, f"Sending invites to {len(players)} Players...") + info = "Sent invites to:" + prof = "" + for i in players: + if prof != i.profession: + info += "\n\n" + info += "\n" + "%s\n" % i.profession + info += "" + prof = i.profession + if self.ban.get_ban(i.char_id): + continue + if i.raid_spam == 1: + self.bot.send_mass_message(i.char_id, spam if i.subtile_spam == 0 else subtile) + # if i.raid_invite == 1: + # if self.raid.bot == self.bot.get_char_name(): + # if not self.private_channel_service.in_private_channel(i.char_id): + # self.private_channel_service.invite(i.char_id) + info += f"\n - {i.name: <13} ({i.level: >3}/{i.ai_level: >2}) - {i.org_name}" + self.raid.last_action = time.time() + self.raid.last_spam = time.time() + self.bot.send_mass_message(request.sender.char_id, + f"Successfully sent {len(players)} invites! [{self.text.format_page('More', info)}]") + + @command(command="raid", params=[Const("settings")], + description="Change the title of the Raid", access_level="leader") + def raid_settings(self, request: command_request, _): + if not self.raid: + return "There's no raid running." + if request.sender.access_level["level"] <= self.raid.leader_rank: + level_rest = " -" + for i in [0, 200, 205, 210, 215, 220]: + level_rest += f" [{self.text.make_chatcmd(i, '/tell raid level ' + str(i))}]" + + bots = " -" + for i in ["allianceraid", "aapf", "theallianz"]: + bots += f" [{self.text.make_chatcmd(i, '/tell raid bot ' + str(i))}]" + + description = " -" + for i in ["S42", "Pandemonium", "APF's"]: + description += f" [{self.text.make_chatcmd(i, '/tell raid desc ' + str(i))}]" + step = " -" + count = 0 + + for i in ["19:00 GMT-0", "19:30 GMT-0", "20:00 GMT-0", "20:30 GMT-0", "21:00 GMT-0", "21:30 GMT-0"]: + if count == 2: + count = 0 + step += "
-" + step += f" [{self.text.make_chatcmd(i, '/tell raid time ' + str(i))}]" + count += 1 + # noinspection LongLine + settings = self.text.format_page("Raid Settings", + textwrap.dedent( + f""" +
Raid Settings
+ + Set the minimum level [{self.raid.min_level}]: + {level_rest} + + Change the Description [{self.raid.raid_desc}]: + {description} + + Change the Raidbot [{self.raid.bot}]: + {bots} + + Change the raid stepping time [{self.raid.raid_time}]: + -> Current Time: {(datetime.now(timezone.utc).strftime("%H:%M"))} GMT-0 + {step} + + Send the invites! + [{self.text.make_chatcmd("send the spam!", "/tell raid invite")}] + + End the raid + [{self.text.make_chatcmd("stop it", "/tell raid stop")}] + """)) + return settings + return f"Error! You cant do that. Your accesslevel must be equal or higher than " \ + f"{self.raid.leader.name}'s rank." + + @timerevent(budatime="15m", description="Stop raid if inactive") + def clear_raid(self, _, _1): + if self.raid: + if self.raid.last_action + 60 * 60 < time.time(): + self.bot.send_mass_message(self.raid.leader.char_id, + f"There was no interaction for more then 60 minutes for your Raid " + f"{self.raid.raid_desc}; I'll stop it for you.") + self.raid = None diff --git a/modules/onlinebot/stats/stats_controller.py b/modules/onlinebot/stats/stats_controller.py new file mode 100644 index 0000000..8b9ef25 --- /dev/null +++ b/modules/onlinebot/stats/stats_controller.py @@ -0,0 +1,99 @@ +import os +import platform +import threading +import time +from threading import Thread + +import psutil + +from core.buddy_service import BuddyService +from core.chat_blob import ChatBlob +from core.command_alias_service import CommandAliasService +from core.command_param_types import Const +from core.db import DB +from core.decorators import instance, command +from core.lookup.pork_service import PorkService +from core.message_hub_service import MessageHubService +from core.text import Text +from core.tyrbot import Tyrbot +from core.util import Util +from modules.core.accounting.services.access_service import AccessService + + +# noinspection DuplicatedCode +@instance() +class StatController: + threads = {} + letters = ["a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", + "v", "w", "x", "y", "z", "others", "0", "1", "2", "3", "4", "5", "6", "7", "8", "9"] + pork_uri = "https://people.anarchy-online.com/people/lookup/orgs.html?l=%s" + single_org_uri = "https://people.anarchy-online.com/org/stats/d/5/name/%d/basicstats.xml?data_type=json" + + def inject(self, registry): + self.bot: Tyrbot = registry.get_instance("bot") + self.db: DB = registry.get_instance("db") + self.text: Text = registry.get_instance("text") + self.util: Util = registry.get_instance("util") + self.pork: PorkService = registry.get_instance("pork_service") + self.org_pork: PorkService = registry.get_instance("org_pork_service") + self.command_alias_service: CommandAliasService = registry.get_instance("command_alias_service") + self.buddy_service: BuddyService = registry.get_instance("buddy_service") + self.access_service: AccessService = registry.get_instance("access_service") + self.relay_hub_service: MessageHubService = registry.get_instance("message_hub_service") + + # noinspection LongLine + @command(command="debug", params=[Const("verbose", is_optional=True)], access_level="admin", + description="Display debugging statistics about igncom") + def debug_output(self, _, verbose): + def adjust_size(size): + factor = 1024 + for i in [" B", " KB", " MB", " GB", " TB"]: + if size > factor: + size /= factor + else: + return f"{size:.3f}{i}" + + threads = "" + for thread in threading.enumerate(): + thread: Thread + threads += f" - {thread.name} [Deamon: {'YES' if thread.daemon else 'NO'}] [Alive: {'YES' if thread.is_alive() else 'NO'}]\n" + uname = platform.uname() + virtual_mem = psutil.virtual_memory() + blob = f"
::: Summary :::
\n" \ + f" - Tracked orgs: {self.db.query_single('SELECT count(*) as count from orgs').count}\n" \ + f"- Tracked characters: {self.db.query_single('SELECT count(*) as count from account a where member>1').count}\n" \ + f"- Registered alts: {self.db.query_single('SELECT count(*) as count from account where char_id != main').count}\n" \ + f"- Registered mains: {self.db.query_single('SELECT count(*) as count from (SELECT main from account where char_id != main group by main) a').count}\n" \ + f"- Banned players: {self.db.query_single('SELECT count(*) as count from account where disabled=1').count}\n" \ + f"- Online players: {self.db.query_single('SELECT count(*) as count from online where char_id not in (SELECT char_id from org_bots)').count}\n" \ + f"- Online bots: {self.db.query_single('SELECT count(*) as count from online where char_id in (SELECT char_id from org_bots)').count}\n" \ + f"- Registered bots: {self.db.query_single('SELECT count(*) as count from org_bots').count}\n" \ + f" - Active discord accounts: {self.db.query_single('SELECT count(*) as count from account where discord_joined=1').count}\n" \ + f""" - Inactive discord accounts: {self.db.query_single("SELECT count(*) as count from account where discord_joined=0 and discord_id != 0 and member>1").count}\n""" \ + f" - Commands issued: {self.db.query_single('SELECT count(*) as count from command_usage').count} [since last reset]\n" \ + f"- Most used command: {self.db.query_single('SELECT COUNT(*) AS count, command from command_usage GROUP BY command ORDER BY count desc;').command} [since last reset]\n" \ + f" - Cached players: {self.db.query_single('SELECT count(*) as count from player').count}\n" \ + f" - Cached orgs: {self.db.query_single('SELECT count(*) as count from all_orgs').count}\n" \ + f"\n" \ + f"
::: Bot :::
\n" \ + f" - Memory usage: {adjust_size(psutil.Process(os.getpid()).memory_info().rss)}\n" \ + f" - Thread count: {len(threading.enumerate())}\n" \ + f" - Slaves: {len(self.bot.conns)}\n" \ + f" - Runtime: {self.util.time_to_readable(int(time.time()) - self.bot.start_time, max_levels=None)}\n" \ + f"\n" \ + f"
::: System :::
\n" \ + f" - System: {uname.system}\n" \ + f" - Release: {uname.release}\n" \ + f" - Version: {uname.version}\n" \ + f" - Processor: {uname.processor} ({psutil.cpu_count(logical=False)}C / {psutil.cpu_count()}T)\n" \ + f" - CPU Usage: {psutil.cpu_percent()}%\n" \ + f" - Memory (Total): {adjust_size(virtual_mem.total)}\n" \ + f" - Memory (Avail): {adjust_size(virtual_mem.available)}\n" \ + f" - Memory (Used): {adjust_size(virtual_mem.used)}\n" \ + f" - Database: {self.db.get_type()} using {self.db.pool_size} connections\n" \ + f"\n" + if verbose: + blob += f"
::: Threads :::
\n" \ + f"{threads}\n" \ + f"\n" + return ChatBlob(f"{self.bot.get_char_name()}'s debugging stats", blob) diff --git a/modules/orgbot/alliance/alliance_relay_controller.py b/modules/orgbot/alliance/alliance_relay_controller.py new file mode 100644 index 0000000..3bbcff8 --- /dev/null +++ b/modules/orgbot/alliance/alliance_relay_controller.py @@ -0,0 +1,135 @@ +import re + +from core.aochat import server_packets, client_packets +from core.conn import Conn +from core.decorators import instance +from core.logger import Logger +from core.lookup.character_service import CharacterService +from core.setting_service import SettingService +from core.setting_types import TextSettingType, BooleanSettingType +from core.text import Text +from core.tyrbot import Tyrbot + + +# noinspection DuplicatedCode +@instance("AllianceRelayController") +class AllianceRelayController: + relay_channel_id = None + MESSAGE_SOURCE = "alliance" + + def __init__(self): + self.logger = Logger(__name__) + + def inject(self, registry): + self.bot: Tyrbot = registry.get_instance("bot") + self.setting_service: SettingService = registry.get_instance("setting_service") + self.character_service: CharacterService = registry.get_instance("character_service") + self.message_hub_service = registry.get_instance("message_hub_service") + self.public_channel_service = registry.get_instance("public_channel_service") + self.text: Text = registry.get_instance("text") + + def pre_start(self): + self.message_hub_service.register_message_source(self.MESSAGE_SOURCE) + + def start(self): + self.setting_service.register_new(self.module_name, "arelay_symbol", "#", + TextSettingType(["!", "#", "*", "@", "$", "+", "-"]), + "Symbol for external relay") + + self.setting_service.register_new(self.module_name, "arelay_symbol_method", "with_symbol", + TextSettingType(["Always", "with_symbol", "unless_symbol"]), + "When to relay messages") + + self.setting_service.register_new(self.module_name, "arelaybot", "", + TextSettingType(allow_empty=True), + "Bot for alliance relay") + + self.setting_service.register_new(self.module_name, "arelay_enabled", False, + BooleanSettingType(), + "Enable the alliance relay") + + self.setting_service.register_new(self.module_name, "arelay_guild_abbreviation", "", + TextSettingType(allow_empty=True), + "Abbreviation to use for org name") + + self.message_hub_service.register_message_destination(self.MESSAGE_SOURCE, + self.handle_relay_hub_message, + ["org_channel"], + [self.MESSAGE_SOURCE]) + + self.bot.register_packet_handler(server_packets.PrivateChannelInvited.id, self.handle_private_channel_invite, + 100) + self.bot.register_packet_handler(server_packets.PrivateChannelMessage.id, self.handle_private_channel_message) + + def handle_private_channel_invite(self, conn: Conn, packet: server_packets.PrivateChannelInvited): + if conn.id != "main": + return + + if not self.setting_service.get("arelay_enabled").get_value(): + return + + channel_name = self.character_service.get_char_name(packet.private_channel_id) + if self.setting_service.get_value("arelaybot").lower() == channel_name.lower(): + self.bot.send_packet(client_packets.PrivateChannelJoin(packet.private_channel_id)) + self.logger.info("Joined private channel {channel}".format(channel=channel_name)) + self.relay_channel_id = packet.private_channel_id + + def handle_private_channel_message(self, conn: Conn, packet: server_packets.PrivateChannelMessage): + if conn.id != "main": + return + + if not self.setting_service.get("arelay_enabled").get_value(): + return + + # ignore packets from the bot's own private channel and from the bot itself + if packet.private_channel_id == self.bot.get_char_id() or packet.char_id == self.bot.get_char_id(): + return + + message = packet.message.lstrip() + if message[:6] != "!agcr ": + return + formatted_message = None + message = re.match("!agcr \[(.+)] (.+): (.+)", message) + if message: + org, name, text = message.groups() + formatted_message = self.setting_service.get('alliance_base').format_text( + f"[{self.setting_service.get('alliance_org').format_text(org)}] " + f"{self.setting_service.get('alliance_sender').format_text(name)}: " + f"{self.setting_service.get('alliance_msg').format_text(text)}") + # sender is not the bot that sent it, but rather the original char that sent the message + # given the format of !agcr messages, it could be possible to parse the sender for the message + # but currently this is not done + sender = None + + self.message_hub_service.send_message(self.MESSAGE_SOURCE, + sender, None, + formatted_message or packet.message.lstrip) + + def handle_relay_hub_message(self, ctx): + if not self.setting_service.get("arelay_enabled").get_value(): + return + method = self.setting_service.get_value("arelay_symbol_method") + symbol = self.setting_service.get_value("arelay_symbol") + plain_msg = ctx.message or ctx.formatted_message + + if method == "unless_symbol" and len(plain_msg) > len(symbol) and plain_msg[:len(symbol)] == symbol: + return + elif method == "with_symbol": + if len(plain_msg) < len(symbol) or plain_msg[:len(symbol)] != symbol: + return + else: + # trim symbol from message + plain_msg = plain_msg[len(symbol):] + + org = self.setting_service.get_value("arelay_guild_abbreviation") or \ + self.public_channel_service.get_org_name() or \ + self.bot.get_char_name() + msg = f"[{org + (' - Priv' if ctx.source == 'private_channel' else '')}] {ctx.sender.name}: {plain_msg}" + + self.send_message_to_alliance(msg) + + def send_message_to_alliance(self, msg): + if self.relay_channel_id: + packet = client_packets.PrivateChannelMessage(self.relay_channel_id, + "!agcr " + self.text.format_message(msg, False), "\0") + self.bot.conns["main"].send_packet(packet) diff --git a/modules/orgbot/notify/notify_controller.py b/modules/orgbot/notify/notify_controller.py new file mode 100644 index 0000000..23aa7b9 --- /dev/null +++ b/modules/orgbot/notify/notify_controller.py @@ -0,0 +1,78 @@ +import time + +from core.buddy_service import BuddyService +from core.command_param_types import Character, Int +from core.decorators import event, instance, command +from core.logger import Logger +from core.lookup.character_service import CharacterService +from core.text import Text +from core.translation_service import TranslationService +from core.tyrbot import Tyrbot +from modules.core.accounting.services.account_service import AccountService + + +@instance() +class NotifyController: + + def __init__(self): + self.logger = Logger(__name__) + + def inject(self, registry): + self.bot: Tyrbot = registry.get_instance("bot") + self.db = registry.get_instance("db") + self.util = registry.get_instance("util") + self.text: Text = registry.get_instance("text") + self.alts: AccountService = registry.get_instance("account_service") + self.buddy_service: BuddyService = registry.get_instance("buddy_service") + self.character_service: CharacterService = registry.get_instance("character_service") + self.ts: TranslationService = registry.get_instance("translation_service") + self.getresp = self.ts.get_response + + def start(self): + self.db.exec("CREATE TABLE IF NOT EXISTS notify_log (id INT PRIMARY KEY AUTO_INCREMENT, char_id INT NOT NULL, " + "status TINYINT NOT NULL, time INT NOT NULL DEFAULT 0)") + + @event(event_type=BuddyService.BUDDY_LOGON_EVENT, description="Record last seen info", is_hidden=True) + def notify_logon_event(self, event_type, event_data): + self.update_last_seen(event_data) + + @event(event_type=BuddyService.BUDDY_LOGOFF_EVENT, description="Record last seen info", is_hidden=True) + def notify_logoff_event(self, event_type, event_data): + self.update_last_seen(event_data) + + @command(command="lastseen", + params=[Character("character"), Int("number_of_entries", is_optional=True)], + access_level="org_member", + description="View when someone was last online") + def lastseen_limited_cmd(self, request, char, limit): + if not char.char_id: + return f"Character {char.name} does not exist." + alts = self.alts.get_alts(char.char_id) + if not alts: + alts = [self.alts.get_main(char.char_id)] + logs = self.get_log(alts, limit or 20) + blob = "" + if len(logs) == 0: + return "No data for %s recorded." % char.name + for log in logs: + blob += f"[{self.util.format_datetime(log.time)}] {log.name} -> " \ + f"{'logged on' if log.status == 1 else 'logged off'}.\n" + return f"{char.name} was last seen at " \ + f"{self.util.format_date(logs[0].time)}. {self.text.format_page('More', blob)}" + + def get_log(self, char_list, length=16): + query = "SELECT n.*, p.name as name FROM notify_log n LEFT JOIN player p on n.char_id = p.char_id " + for toon in char_list: + if toon == char_list[0]: + query += f"where n.char_id={toon.char_id:d}" + else: + query += f" or n.char_id={toon.char_id:d}" + query += f" ORDER BY time DESC LIMIT {length:d}" + return self.db.query(query) + + def update_last_seen(self, packet): + if self.bot.is_ready(): + types = self.buddy_service.get_buddy(packet.char_id)["types"] + if "org_member" in types or "track" in types or "member" in types: + self.db.exec("INSERT INTO notify_log (char_id, status, time) VALUES (?, ?, ?)", + [packet.char_id, packet.online, time.time()]) diff --git a/modules/orgbot/org/cloak_controller.py b/modules/orgbot/org/cloak_controller.py new file mode 100644 index 0000000..e831b94 --- /dev/null +++ b/modules/orgbot/org/cloak_controller.py @@ -0,0 +1,122 @@ +import time + +from core.aochat.server_packets import PublicChannelMessage +from core.chat_blob import ChatBlob +from core.conn import Conn +from core.decorators import instance, command, event, timerevent +from core.dict_object import DictObject +from core.sender_obj import SenderObj + + +@instance() +class CloakController: + MESSAGE_SOURCE = "cloak_reminder" + CLOAK_EVENT = "cloak" + + def inject(self, registry): + self.bot = registry.get_instance("bot") + self.db = registry.get_instance("db") + self.util = registry.get_instance("util") + self.character_service = registry.get_instance("character_service") + self.command_alias_service = registry.get_instance("command_alias_service") + self.timer_controller = registry.get_instance("timer_controller", is_optional=True) + self.event_service = registry.get_instance("event_service") + self.access_service = registry.get_instance("access_service") + self.message_hub_service = registry.get_instance("message_hub_service") + + def pre_start(self): + self.bot.register_packet_handler(PublicChannelMessage.id, self.handle_public_message) + self.event_service.register_event_type(self.CLOAK_EVENT) + self.message_hub_service.register_message_source(self.MESSAGE_SOURCE) + + def start(self): + self.db.exec("CREATE TABLE IF NOT EXISTS cloak_status (" + "char_id INT NOT NULL, " + "action VARCHAR(10) NOT NULL," + " created_at INT NOT NULL)") + self.command_alias_service.add_alias("city", "cloak") + + @command(command="cloak", params=[], access_level="member", + description="Show the current status of the city cloak and the cloak history") + def cloak_show_command(self, request): + data = self.db.query("SELECT c.*, p.name FROM cloak_status c " + "LEFT JOIN player p ON c.char_id = p.char_id " + "ORDER BY created_at DESC LIMIT 20") + + if len(data) == 0: + return "Unknown status on cloak." + else: + msg = self.get_cloak_status(data[0]) + + request.reply(msg) + + blob = "" + for row in data: + action = "on" if row.action == "on" else "off" + blob += f"{row.name} turned the device {action} at {self.util.format_datetime(row.created_at)}.\n" + + return ChatBlob("Cloak History", blob) + + @event(event_type=CLOAK_EVENT, description="Record when the city cloak is turned off and on", is_hidden=True) + def city_cloak_event(self, _, event_data): + self.db.exec("INSERT INTO cloak_status (char_id, action, created_at) VALUES (?, ?, ?)", + [event_data.sender.char_id, event_data.action, int(time.time())]) + + @timerevent(budatime="15m", description="Reminds the players to toggle the cloak") + def cloak_reminder_event(self, _, _1): + data = self.db.query("SELECT c.*, p.name FROM cloak_status c " + "LEFT JOIN player p ON c.char_id = p.char_id " + "ORDER BY created_at DESC LIMIT 1") + + for row in data: + one_hour = 3600 + t = int(time.time()) + time_until_change = row.created_at + one_hour - t + if row.action == "off" and time_until_change <= 0: + time_str = self.util.time_to_readable(t - row.created_at) + msg = "The cloaking device is disabled but can be enabled. " \ + "%s disabled it %s ago." % (row.name, time_str) + self.message_hub_service.send_message(self.MESSAGE_SOURCE, None, None, msg) + + @event(event_type=CLOAK_EVENT, description="Set a timer for when cloak can be raised and lowered") + def city_cloak_timer_event(self, _, event_data): + if event_data.action == "off": + timer_name = "Raise City Cloak" + elif event_data.action == "on": + timer_name = "Lower City Cloak" + else: + raise Exception(f"Unknown cloak action '{event_data.action}'") + + self.timer_controller.add_timer(timer_name, event_data.sender.char_id, "org", int(time.time()), 3600) + + def get_cloak_status(self, row): + one_hour = 3600 + time_until_change = row.created_at + one_hour - int(time.time()) + time_string = self.util.time_to_readable(time_until_change) + + if row.action == "off": + if time_until_change <= 0: + msg = "The cloaking device is disabled. It is possible to enable it." + else: + msg = f"The cloaking device is disabled. It is possible to enable it in {time_string}." + else: + if time_until_change <= 0: + msg = "The cloaking device is enabled. It is possible to disable it." + else: + msg = f"The cloaking device is enabled. It is possible to disable it in {time_string}." + + return msg + + def handle_public_message(self, conn: Conn, packet: PublicChannelMessage): + if conn.id != "main": + return + + extended_message = packet.extended_message + if extended_message and extended_message.category_id == 1001 and extended_message.instance_id == 1: + char_name = extended_message.params[0] + char_id = self.character_service.resolve_char_to_id(char_name) + action = extended_message.params[1] + access_level = self.access_service.get_access_level(char_id) + self.event_service.fire_event(self.CLOAK_EVENT, + DictObject({"sender": SenderObj(char_id, char_name, access_level), + "action": action})) diff --git a/modules/orgbot/org/online_controller.py b/modules/orgbot/org/online_controller.py new file mode 100644 index 0000000..8343704 --- /dev/null +++ b/modules/orgbot/org/online_controller.py @@ -0,0 +1,37 @@ +from core.command_param_types import Const, Int, Any +from core.decorators import instance, command, event +from modules.standard.online.online_controller import OnlineController + + +@instance(name="online_controller", override=True) +class OrgOnlineController(OnlineController): + + @event(event_type="org_member_logon", description="Change online channel", is_hidden=True) + def org_member_logon(self, _, event_data): + self.awaiting_data.put([event_data, 'org', True]) + + @event(event_type="org_member_logoff", description="Change online channel", is_hidden=True) + def org_member_logoff(self, _, event_data): + if self.bot.is_ready(): + self.awaiting_data.put([event_data, 'org', False]) + + @command(command="online", params=[Const('all', is_optional=True), + Int("min_level", is_optional=True), + Any("profession", is_optional=True)], + description="shows online players", + access_level="member") + def online_all_cmd(self, request, const_all, min_level, profession): + query = "" + params = [self.bot.name, self.bot.get_char_id()] + if const_all: + query += "and channel_id IN (1, 2, 3) " + else: + query += "and channel_id IN (1, 2) " + if min_level: + query += "and p.level >= ? " + params.append(min_level) + if profession: + query += "and p.profession = ? " + params.append(self.util.get_profession(profession)) + blob = self.online_display.format_by_channel_main(query, params) + request.reply(self.online_display.format_blob(blob)) diff --git a/modules/orgbot/org/org_controller.py b/modules/orgbot/org/org_controller.py new file mode 100644 index 0000000..5b96c89 --- /dev/null +++ b/modules/orgbot/org/org_controller.py @@ -0,0 +1,132 @@ +from core.chat_blob import ChatBlob +from core.db import DB +from core.decorators import instance, event +from core.dict_object import DictObject +from core.logger import Logger +from core.public_channel_service import PublicChannelService +from core.setting_service import SettingService +from core.setting_types import BooleanSettingType +from core.text import Text +from core.tyrbot import Tyrbot +from core.util import Util +from modules.core.accounting.services.account_service import AccountService +from modules.orgbot.org.org_roster_controller import OrgRosterController +from modules.standard.online.online_display import OnlineDisplay + + +@instance() +class OrgChannelController: + MESSAGE_SOURCE = "org_channel" + ORG_CHANNEL_PREFIX = "[Org]" + + def __init__(self): + self.logger = Logger(__name__) + + def inject(self, registry): + self.bot: Tyrbot = registry.get_instance("bot") + self.db: DB = registry.get_instance("db") + self.util: Util = registry.get_instance("util") + self.character_service = registry.get_instance("character_service") + self.message_hub_service = registry.get_instance("message_hub_service") + self.setting_service: SettingService = registry.get_instance("setting_service") + self.ban_service = registry.get_instance("ban_service") + self.log_controller = registry.get_instance("log_controller", is_optional=True) + self.online_controller = registry.get_instance("online_controller", is_optional=True) + self.text: Text = registry.get_instance("text") + self.account_service: AccountService = registry.get_instance("account_service") + + def pre_start(self): + self.message_hub_service.register_message_source(self.MESSAGE_SOURCE) + + def start(self): + self.message_hub_service.register_message_destination( + self.MESSAGE_SOURCE, self.handle_incoming_relay_message, + ["private_channel", "discord", "websocket_relay", "tell_relay", "broadcast", + "raffle", "cloak_reminder", "wave_counter", "shutdown_notice", "raid"], + [self.MESSAGE_SOURCE]) + + self.setting_service.register_new(self.module_name, "prefix_org_priv", True, BooleanSettingType(), + "Should the prefix [org] be displayed in relayed messages") + + def handle_incoming_relay_message(self, ctx): + self.bot.send_org_message(ctx.formatted_message, fire_outgoing_event=False) + + @event(event_type=PublicChannelService.ORG_CHANNEL_MESSAGE_EVENT, + description="Relay messages from the org channel to the relay hub", + is_hidden=True) + def handle_org_message_event(self, _, event_data): + if event_data.char_id == self.bot.get_char_id() or self.ban_service.get_ban(event_data.char_id): + return + + if event_data.extended_message: + message = event_data.extended_message.get_message() + else: + message = event_data.message + + if event_data.char_id == 4294967295 or event_data.char_id == 0: + sender = None + formatted_message = "{org} {msg}".format(org=self.ORG_CHANNEL_PREFIX, + msg=message) + else: + char_name = self.character_service.resolve_char_to_name(event_data.char_id) + sender = DictObject({"char_id": event_data.char_id, "name": char_name}) + formatted_message = "{org} {char}: {msg}".format(org=self.ORG_CHANNEL_PREFIX, + char=self.text.make_charlink(char_name), + msg=message) + + self.message_hub_service.send_message(self.MESSAGE_SOURCE, sender, message, formatted_message) + + @event(event_type=OrgRosterController.ORG_MEMBER_LOGON_EVENT, description="Notify when org member logs on") + def org_member_logon_event(self, _, event_data): + if not self.bot.is_ready(): + return + main = self.account_service.get_account(event_data.char_info.char_id) + alt = f":: Alt of {main.name} " if event_data.account else "" + if main.char_id == event_data.char_info.char_id: + alt = "" + logon = f" :: {event_data.account.logon}" if event_data.account.logon else "" + msg = f"{self.text.format_char_info(event_data.char_info)} {alt}:: logged on.{logon}" + self.bot.send_org_message(msg, fire_outgoing_event=False) + + self.message_hub_service.send_message(self.MESSAGE_SOURCE, None, None, "[Org] " + msg) + od = OnlineDisplay(self.text, self.util, self.db) + params = [self.bot.name, self.bot.get_char_id()] + self.bot.send_mass_message(event_data.packet.char_id, + od.format_blob(od.format_by_channel_main("and channel_id IN (1, 2) ", params))) + + @event(event_type=OrgRosterController.ORG_MEMBER_LOGOFF_EVENT, description="Notify when org member logs off") + def org_member_logoff_event(self, _, event_data): + if not self.bot.is_ready(): + return + char_name = self.character_service.resolve_char_to_name(event_data.packet.char_id) + logoff = f" :: {event_data.account.logon}" if event_data.account.logon else "" + msg = f"{char_name} logged off.{logoff}" + self.bot.send_org_message(msg, fire_outgoing_event=False) + self.message_hub_service.send_message(self.MESSAGE_SOURCE, None, None, "[Org] " + msg) + + @event(event_type=Tyrbot.OUTGOING_ORG_MESSAGE_EVENT, + description="Relay commands from the org channel to the relay hub", + is_hidden=True) + def outgoing_org_message_event(self, _, event_data): + if isinstance(event_data.message, ChatBlob): + pages = self.text.paginate(ChatBlob(event_data.message.title, event_data.message.msg), + self.setting_service.get("org_channel_max_page_length").get_value()) + if len(pages) < 4: + for page in pages: + message = "{org} {message}".format(org=self.ORG_CHANNEL_PREFIX, message=page) + self.message_hub_service.send_message(self.MESSAGE_SOURCE, + None, + page, + message) + else: + message = "{org} {message}".format(org=self.ORG_CHANNEL_PREFIX, message=event_data.message.title) + self.message_hub_service.send_message(self.MESSAGE_SOURCE, + None, + event_data.message.title, + message) + else: + message = "{org} {message}".format(org=self.ORG_CHANNEL_PREFIX, message=event_data.message) + self.message_hub_service.send_message(self.MESSAGE_SOURCE, + None, + event_data.message, + message) diff --git a/modules/orgbot/org/org_roster_controller.py b/modules/orgbot/org/org_roster_controller.py new file mode 100644 index 0000000..2288d2b --- /dev/null +++ b/modules/orgbot/org/org_roster_controller.py @@ -0,0 +1,248 @@ +import json +import time + +import requests +from mysql.connector.cursor import CursorBase + +from core.buddy_service import BuddyService +from core.cache_service import CacheService +from core.chat_blob import ChatBlob +from core.command_param_types import Int +from core.db import DB +from core.decorators import instance, command, event, timerevent +from core.dict_object import DictObject +from core.event_service import EventService +from core.logger import Logger +from core.lookup.character_service import CharacterService +from core.lookup.org_pork_service import OrgPorkService +from core.lookup.pork_service import PorkService +from core.public_channel_service import PublicChannelService +from core.tyrbot import Tyrbot +from core.util import Util +from modules.core.accounting.services.account_service import AccountService + + +@instance() +class OrgRosterController: + ORG_BUDDY_TYPE = "org_member" + ORG_ACCESS_LEVEL = "org_member" + + MODE_ADD_AUTO = "add_auto" + MODE_REM_AUTO = "rem_auto" + MODE_ADD_MANUAL = "add_manual" + MODE_REM_MANUAL = "rem_manual" + + ORG_MEMBER_LOGON_EVENT = "org_member_logon" + ORG_MEMBER_LOGOFF_EVENT = "org_member_logoff" + ORG_MEMBER_REMOVED_EVENT = "org_member_removed" + + LEFT_ORG = [508, 45978487508, 45978487] + KICKED_FROM_ORG = [508, 37093479] + INVITED_TO_ORG = [508, 173558247] + KICKED_INACTIVE_FROM_ORG = [508, 20908201] + KICKED_ALIGNMENT_CHANGED = [501, 181448347] + JOINED_ORG = [508, 5146599] + + def __init__(self): + self.logger = Logger(__name__) + + def inject(self, registry): + self.bot: Tyrbot = registry.get_instance("bot") + self.db: DB = registry.get_instance("db") + self.text = registry.get_instance("text") + self.buddy_service: BuddyService = registry.get_instance("buddy_service") + self.public_channel_service: PublicChannelService = registry.get_instance("public_channel_service") + self.access_service = registry.get_instance("access_service") + self.org_pork_service: OrgPorkService = registry.get_instance("org_pork_service") + self.pork: PorkService = registry.get_instance("pork_service") + self.util: Util = registry.get_instance("util") + self.event_service: EventService = registry.get_instance("event_service") + self.character_service: CharacterService = registry.get_instance("character_service") + self.cache: CacheService = registry.get_instance("cache_service") + self.account_service: AccountService = registry.get_instance("account_service") + + def pre_start(self): + self.db.exec("CREATE TABLE IF NOT EXISTS org_activity (" + "id int primary key AUTO_INCREMENT, " + "message varchar(32) NOT NULL, " + "time int not null)") + self.event_service.register_event_type(self.ORG_MEMBER_LOGON_EVENT) + self.event_service.register_event_type(self.ORG_MEMBER_LOGOFF_EVENT) + + self.access_service.register_access_level(self.ORG_ACCESS_LEVEL, 60, self.check_org_member) + + def check_org_member(self, char_id): + return (self.account_service.get_account(char_id) or {}).get("member", 0) == self.public_channel_service.org_id + + @event("connect", "Adds all members to buddylist") + def connect(self, _, _1): + query = self.db.query("SELECT char_id, member from account where member IN (?, 0)", + [self.public_channel_service.org_id]) + if query: + for player in query: + if player.member == self.public_channel_service.org_id: + self.buddy_service.add_buddy(player.char_id, "org_member") + else: + self.buddy_service.add_buddy(player.char_id, "member") + + @event("buddy_logon", "fire orgmember logon event") + def orgmember_logon(self, _, data): + account = self.account_service.get_entry(data.char_id) + if not account: + return + if account.member == self.public_channel_service.org_id: + self.event_service.fire_event(self.ORG_MEMBER_LOGON_EVENT, DictObject( + {'account': account, 'char_info': self.pork.get_character_info(data.char_id), 'packet': data})) + + @event("buddy_logoff", "fire orgmember logoff event") + def orgmember_logoff(self, _, data): + account = self.account_service.get_entry(data.char_id) + if not account: + return + if account.member == self.public_channel_service.org_id: + self.event_service.fire_event(self.ORG_MEMBER_LOGOFF_EVENT, + DictObject({'account': account, 'packet': data})) + + @command(command="orgmembers", params=[], access_level="admin", + description="Show the list of org members") + def org_members_cmd(self, _): + data = self.db.query( + "SELECT * from account a left join player p on a.char_id = p.char_id where member=? order by p.name", + [self.public_channel_service.org_id]) + blob = "" + for row in data: + blob += f"{self.text.zfill(row.level, 220)}/{self.text.zfill(row.ai_level, 30)} " \ + f"{row.name} ({row.org_rank_name})\n" + + return ChatBlob(f"Orgmembers ({len(data)})", blob) + + @command(command="orgactivity", params=[Int('count', is_optional=True)], access_level="org_member", + description="Show the most recent org activity") + def org_activity(self, _, count): + data = self.db.query("SELECT * from org_activity order by id desc LIMIT ?", [count or 25]) + + return ChatBlob(f"Recent Activities ({len(data)})", "\n".join( + [f'[{self.util.format_datetime(x.time)}] {x.message}' for x in data])) + + @timerevent("24h", "Update the orgroster on changes") + def update_roster(self, _, _1): + self.bot.send_org_message("Updating roster...") + cache = self.cache.retrieve('org_roster', f"{self.public_channel_service.org_id}.5.json") + if cache: + if cache.last_modified > time.time() - 16 * 60 * 60: + result = requests.get(self.org_pork_service.get_pork_url(5, self.public_channel_service.org_id)).json() + if result: + self.cache.store('org_roster', f"{self.public_channel_service.org_id}.5.json", json.dumps(result)) + else: + result = json.loads(cache.data) + else: + result = json.loads(cache.data) + else: + result = requests.get(self.org_pork_service.get_pork_url(5, self.public_channel_service.org_id)).json() + if result: + self.cache.store('org_roster', f"{self.public_channel_service.org_id}.5.json", json.dumps(result)) + data = [] + accounts = [] + for char_info in result[1]: + data.append((char_info["CHAR_INSTANCE"], char_info["NAME"], char_info["FIRSTNAME"], + char_info["LASTNAME"], char_info["LEVELX"], char_info["BREED"], + char_info["SEX"], result[0]["SIDE_NAME"], char_info["PROF"], + char_info["PROF_TITLE"], char_info["DEFENDER_RANK_TITLE"], char_info["ALIENLEVEL"], + result[0]["ORG_INSTANCE"], result[0]["NAME"], char_info["RANK_TITLE"], + char_info["RANK"], char_info["CHAR_DIMENSION"], char_info["HEADID"], + 0, char_info["PVPTITLE"], "roster", int(time.time()))) + + accounts.append((char_info["CHAR_INSTANCE"], char_info["CHAR_INSTANCE"], result[0]["ORG_INSTANCE"], + time.time(), time.time())) + if buddy := self.buddy_service.get_buddy(char_info['CHAR_INSTANCE']): + if "org_member" in buddy['types']: + continue + self.buddy_service.add_buddy(char_info['CHAR_INSTANCE'], "org_member") + + with self.db.lock: + with self.db.pool.get_connection() as conn: + with conn.cursor() as cur: + cur: CursorBase + cur.executemany("INSERT INTO player(char_id, name, first_name, last_name, level, " + "breed, gender, faction, profession, profession_title, ai_rank, " + "ai_level, org_id, org_name, org_rank_name, org_rank_id, dimension, " + "head_id, pvp_rating, pvp_title, source, last_updated) " + "VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) " + "ON DUPLICATE KEY UPDATE first_name=VALUE(first_name), last_name=VALUE(last_name), " + "level=VALUE(level), breed=VALUE(breed), gender=VALUE(gender), " + "faction=VALUE(faction), profession=VALUE(profession), " + "profession_title=VALUE(profession_title), ai_rank=VALUE(ai_rank), " + "ai_level=VALUE(ai_level), org_name=VALUE(org_name), org_id=VALUE(org_id), " + "org_rank_name=VALUE(org_rank_name), org_rank_id=VALUE(org_rank_id), " + "source=VALUE(source), last_updated=VALUE(last_updated)", data) + self.account_service.create_users(accounts) + users = self.db.query('SELECT * from account where member=? and last_updated < ?', + [self.public_channel_service.org_id, time.time() - 23 * 60 * 60]) + for user in users: + self.buddy_service.remove_buddy(user.char_id, 'org_member') + cur.execute("UPDATE account set member=-1 where member=? and last_updated < ?", + [self.public_channel_service.org_id, time.time() - 23 * 60 * 60]) + cur.execute("UPDATE account set member=-1 where member NOT IN (0, ?, -1)", + [self.public_channel_service.org_id]) + conn.commit() + self.bot.send_org_message('Successfully updated the roster.') + + @event(PublicChannelService.ORG_MSG_EVENT, "Update org roster when characters join or leave", is_hidden=True) + def org_msg_event(self, _, event_data): + ext_msg = event_data.extended_message + if [ext_msg.category_id, ext_msg.instance_id] == self.LEFT_ORG: + self.process_org_msg(ext_msg.params[0], self.MODE_REM_MANUAL, ext_msg) + elif [ext_msg.category_id, ext_msg.instance_id] == self.KICKED_FROM_ORG: + self.process_org_msg(ext_msg.params[1], self.MODE_REM_MANUAL, ext_msg.params[0]) + elif [ext_msg.category_id, ext_msg.instance_id] == self.INVITED_TO_ORG: + self.process_org_msg(ext_msg.params[1], self.MODE_ADD_MANUAL, ext_msg.params[0]) + elif [ext_msg.category_id, ext_msg.instance_id] == self.KICKED_INACTIVE_FROM_ORG: + self.process_org_msg(ext_msg.params[1], self.MODE_REM_MANUAL, ext_msg.params[0]) + elif [ext_msg.category_id, ext_msg.instance_id] == self.KICKED_ALIGNMENT_CHANGED: + self.process_org_msg(ext_msg.params[0], self.MODE_REM_MANUAL) + elif [ext_msg.category_id, ext_msg.instance_id] == self.JOINED_ORG: + self.process_org_msg(ext_msg.params[0], self.MODE_ADD_MANUAL) + # noinspection SqlInsertValues + self.db.exec("INSERT INTO org_activity (message, time) VALUES(?, ?)", [ext_msg.get_message(), time.time()]) + + def process_org_msg(self, char_name, new_mode, actee=None): + char_id = self.character_service.resolve_char_to_id(char_name) + org_member = self.get_org_member(char_id) + self.process_update(char_id, org_member.member if org_member else None, new_mode, actee) + + def get_org_member(self, char_id): + return self.db.query_single("SELECT char_id, member FROM account WHERE char_id = ?", [char_id]) + + def process_update(self, char_id, old_mode, new_mode, actee): + if old_mode == new_mode: + return + if new_mode in [self.MODE_REM_MANUAL, self.MODE_REM_AUTO]: + self.bot.send_org_message(f"{self.character_service.get_char_name(char_id)} " + f"left the org.") + main = self.account_service.get_main(char_id) + self.account_service.add_log(main.char_id, "system", f'Left the org ' + f'{self.public_channel_service.get_org_name()} with ' + f'{self.character_service.get_char_name(char_id)}', + main.char_id) + self.account_service.create_users(users=[(char_id, char_id, -1, time.time(), time.time())]) + self.update_buddylist(char_id, self.MODE_REM_AUTO) + if new_mode in [self.MODE_ADD_MANUAL, self.MODE_ADD_AUTO]: + self.account_service.create_users(users=[(char_id, char_id, + self.public_channel_service.org_id, + time.time(), + time.time())]) + main = self.account_service.get_main(char_id) + self.account_service.add_log(char_id, "system", f'Joined the org ' + f'{self.public_channel_service.get_org_name()} with ' + f'{self.character_service.get_char_name(char_id)}', + main.char_id) + self.bot.send_org_message(f"Please Welcome " + f"{self.character_service.get_char_name(char_id)}!!! ") + self.update_buddylist(char_id, self.MODE_ADD_AUTO) + + def update_buddylist(self, char_id, mode): + if mode in [self.MODE_ADD_MANUAL, self.MODE_ADD_AUTO]: + self.buddy_service.remove_buddy(char_id, "member") + self.buddy_service.add_buddy(char_id, self.ORG_BUDDY_TYPE) + else: + self.buddy_service.remove_buddy(char_id, self.ORG_BUDDY_TYPE) diff --git a/modules/orgbot/org/wave_counter_controller.py b/modules/orgbot/org/wave_counter_controller.py new file mode 100644 index 0000000..5529468 --- /dev/null +++ b/modules/orgbot/org/wave_counter_controller.py @@ -0,0 +1,52 @@ +from core.decorators import instance, event +from core.public_channel_service import PublicChannelService + + +@instance() +class WaveCounterController: + MESSAGE_SOURCE = "wave_counter" + CITY_TARGETED = [1001, 3] + + ALERT_TIMES = [105, 150, 90, 120, 120, 120, 120, 120, 120] + + def __init__(self): + self.current_wave = None + self.scheduled_job_id = None + + def inject(self, registry): + self.job_scheduler = registry.get_instance("job_scheduler") + self.message_hub_service = registry.get_instance("message_hub_service") + + def pre_start(self): + self.message_hub_service.register_message_source(self.MESSAGE_SOURCE) + + @event(event_type=PublicChannelService.ORG_CHANNEL_MESSAGE_EVENT, + description="Start wave counter when city is targeted by aliens") + def check_for_city_raid_start(self, _, event_data): + ext_msg = event_data.extended_message + if ext_msg: + if [ext_msg.category_id, ext_msg.instance_id] == self.CITY_TARGETED: + self.start_counter() + + def start_counter(self): + if self.scheduled_job_id: + self.job_scheduler.cancel_job(self.scheduled_job_id) + + self.send_message("Wave counter started. DO NOT enter the city!") + self.scheduled_job_id = self.job_scheduler.delayed_job(self.timer_alert, self.ALERT_TIMES[0], 0) + + def timer_alert(self, t, wave_number): + wave_number += 1 + + if wave_number == 9: + self.send_message("General incoming. DO NOT enter the city!") + self.scheduled_job_id = None + else: + self.send_message("Wave %d incoming. " + "DO NOT enter the city!" % wave_number) + self.scheduled_job_id = self.job_scheduler.scheduled_job(self.timer_alert, + t + self.ALERT_TIMES[wave_number], + wave_number) + + def send_message(self, msg): + self.message_hub_service.send_message(self.MESSAGE_SOURCE, None, None, msg) diff --git a/modules/orgbot/raidspy/raidspy_controller.py b/modules/orgbot/raidspy/raidspy_controller.py new file mode 100644 index 0000000..d550d21 --- /dev/null +++ b/modules/orgbot/raidspy/raidspy_controller.py @@ -0,0 +1,86 @@ +import re + +from core.aochat.client_packets import PrivateMessage +from core.command_param_types import Const +from core.decorators import instance, setting, command, timerevent, event +from core.logger import Logger +from core.lookup.character_service import CharacterService +from core.message_hub_service import MessageHubService +from core.public_channel_service import PublicChannelService +from core.setting_service import SettingService +from core.setting_types import TextSettingType +from core.text import Text +from core.tyrbot import Tyrbot +from core.util import Util + + +@instance() +class RaidSpyController: + planned = "" + + def __init__(self): + self.logger = Logger(__name__) + + def inject(self, registry): + self.bot: Tyrbot = registry.get_instance("bot") + self.setting_service: SettingService = registry.get_instance("setting_service") + self.character_service: CharacterService = registry.get_instance("character_service") + self.public_channel_service: PublicChannelService = registry.get_instance("public_channel_service") + self.util: Util = registry.get_instance("util") + self.text: Text = registry.get_instance("text") + self.relay_hub_service: MessageHubService = registry.get_instance("message_hub_service") + + @setting(name="raidbot-name", value="", description="The Raidbot") + def raidbot(self): + return TextSettingType(allow_empty=True) + + @event(event_type=Tyrbot.PRIVATE_MSG_EVENT, description="update raidlist", is_enabled=False) + def handle_raidbot_msg(self, _, textblob: PrivateMessage): + if self.character_service.get_char_name(textblob.char_id) != self.setting_service.get_value("raidbot-name"): + return + tag = re.search( + r"Planned Raids last updated \w+ \d+\w+, \d+ \d+:\d+:: " + r".+", + textblob.message, + re.DOTALL) + if tag: + textblob.message = tag[1] + with open("data/latest_raids.txt", "w") as f: + f.write(textblob.message) + self.planned = textblob.message + self.bot.send_org_message("Die Raids wurden geupdatet: " + + self.text.format_page("Die Raids der Woche", self.planned), fire_outgoing_event=False) + self.bot.send_private_channel_message("Die Raids wurden geupdatet: " + + self.text.format_page("Die Raids der Woche", self.planned), + fire_outgoing_event=False) + + @event(event_type="connect", description="update raidlist", is_enabled=False) + def handle_log_raidlog(self, _, _1): + try: + with open("data/latest_raids.txt", "r") as f: + self.planned = f.read() + except FileNotFoundError: + self.planned = "
:::: Planned Raids ::::" \ + "

Es sind mir leider keine Raids bekannt." + + # @command(command="raids", params=[], + # description="Shows planned raids", access_level="org_member") + # def raids_list(self, request): + # return self.text.format_page("Die Raids der Woche", self.planned) + + @command(command="raids", params=[Const("update")], + description="Shows planned raids", access_level="moderator", sub_command="update") + def raids_patch(self, request, _): + self.bot.send_private_message(self.character_service.resolve_char_to_id(self.raidbot().get_value()), + "!raids", + add_color=False) + return "Das Updaten der Raidliste wurde eingeleitet... Sollte es neues geben, " \ + "Informiere ich Alle Mitglieder für dich." + + @timerevent(budatime="12h", description="Update Raid list") + def check_for_raids(self, _, _2): + if self.raidbot().get_value() == "": + return + self.bot.send_private_message(self.character_service.resolve_char_to_id(self.raidbot().get_value()), + "!raids", + add_color=False) diff --git a/modules/raidbot/raid/preset_controller.py b/modules/raidbot/raid/preset_controller.py new file mode 100644 index 0000000..0cba911 --- /dev/null +++ b/modules/raidbot/raid/preset_controller.py @@ -0,0 +1,104 @@ +from core.chat_blob import ChatBlob +from core.command_alias_service import CommandAliasService +from core.command_param_types import Any, Int, Const +from core.db import DB +from core.decorators import command, instance +from core.lookup.character_service import CharacterService +from core.setting_service import SettingService +from core.text import Text +from core.tyrbot import Tyrbot +from core.util import Util +from modules.core.accounting.services.account_service import AccountService + + +@instance() +class PresetController: + def __init__(self): + pass + + def inject(self, registry): + self.bot: Tyrbot = registry.get_instance("bot") + self.db: DB = registry.get_instance("db") + self.text: Text = registry.get_instance("text") + self.character_service: CharacterService = registry.get_instance("character_service") + self.util: Util = registry.get_instance("util") + self.setting_service: SettingService = registry.get_instance("setting_service") + self.command_alias_service: CommandAliasService = registry.get_instance("command_alias_service") + self.account_service: AccountService = registry.get_instance("account_service") + + def start(self): + self.command_alias_service.add_alias("startauc", "auction start") + self.command_alias_service.add_alias("bid", "auction bid") + if self.db.query_single("SELECT COUNT(*) AS count FROM points_presets").count < 1: + # Populate with pre-made presets if empty + sql = "INSERT INTO points_presets (name, points) VALUES " \ + "('Killed Sideboss', 1), " \ + "('Killed TNH', 2), " \ + "('Killed Beast', 3), " \ + "('Alien Playfield', 3), " \ + "('Wipe: Clan', 1), " \ + "('Wipe: Omni', 1), " \ + "('Bonus', 1), " \ + "('Tara', 2), " \ + "('S42/Boss', 2), " \ + "('S42/Endboss', 4)" + self.db.exec(sql, []) + + @command(command="presets", params=[Const("add"), Any("name"), Int("points")], access_level="superadmin", + description="Add new points preset", sub_command="mod") + def presets_add_cmd(self, _1, _2, name: str, points: int): + count = self.db.query_single("SELECT COUNT(*) AS count FROM points_presets WHERE name = ?", [name]).count + + if count > 0: + return "A preset already exists with the name %s." % name + + sql = "INSERT INTO points_presets (name, points) VALUES (?,?)" + if self.db.exec(sql, [name, points]) > 0: + return f"A preset with the name {name} was added, worth {points:d} points." + + return "Failed to insert new preset in DB." + + @command(command="presets", params=[Const("rem"), Int("preset_id")], access_level="superadmin", + description="Delete preset", sub_command="mod") + def presets_rem_cmd(self, _1, _2, preset_id: int): + if self.db.exec("DELETE FROM points_presets WHERE preset_id = ?", [preset_id]) > 0: + return "Successfully removed preset with ID %d." % preset_id + + return "No preset with given ID %d." % preset_id + + @command(command="presets", + params=[Const("alter"), Int("preset_id"), Int("new_points")], + access_level="superadmin", + description="Alter the points dished out by given preset", sub_command="mod") + def presets_alter_cmd(self, _1, _2, preset_id: int, new_points: int): + preset = self.db.query_single("SELECT * FROM points_presets WHERE preset_id = ?", [preset_id]) + + if preset: + if self.db.exec("UPDATE points_presets SET points = ? WHERE preset_id = ?", [new_points, preset_id]) > 0: + return f"Successfully updated the preset, {preset.name}, " \ + f"to dish out {new_points:d} points instead of {preset.points:d}." + + return "Failed to update preset with ID %d." % preset_id + + @command(command="presets", params=[], access_level="admin", + description="See list of points presets") + def presets_cmd(self, _): + return ChatBlob("Points presets", self.build_preset_list) + + @property + def build_preset_list(self): + presets = self.db.query("SELECT * FROM points_presets ORDER BY name, points DESC") + + if presets: + blob = "" + + for preset in presets: + add_points_link = self.text.make_chatcmd("Add pts", f"/tell raid addpts {preset.name}") + delete_link = self.text.make_chatcmd("Delete", f"/tell presets rem {preset.preset_id:d}") + blob += f"{preset.name} worth {preset.points:d} points " \ + f"[id: {preset.preset_id:d}]\n | [{add_points_link}] [{delete_link}]\n\n" + + return blob + + return "No presets available. " \ + "To add new presets use presets add preset_name preset_points." diff --git a/modules/raidbot/raid/raidbot_controller.py b/modules/raidbot/raid/raidbot_controller.py new file mode 100644 index 0000000..a697aad --- /dev/null +++ b/modules/raidbot/raid/raidbot_controller.py @@ -0,0 +1,592 @@ +import time +from typing import Union + +from core.aochat import server_packets +from core.aochat.BaseModule import BaseModule +from core.buddy_service import BuddyService +from core.chat_blob import ChatBlob +from core.command_param_types import Const, Int, Any, Options, Character +from core.command_request import CommandRequest +from core.db import DB +from core.decorators import instance, command, timerevent, event +from core.event_service import EventService +from core.lookup.character_service import CharacterService +from core.lookup.pork_service import PorkService +from core.private_channel_service import PrivateChannelService +from core.sender_obj import SenderObj +from core.setting_service import SettingService +from core.text import Text +from core.tyrbot import Tyrbot +from core.util import Util +from modules.core.accounting.services.account_service import AccountService +from modules.raidbot.raid.preset_controller import PresetController +from modules.standard.raid.leader_controller import LeaderController + + +class Raider: + def __init__(self, alts, active): + self.main_id = alts[0].char_id + self.alts = alts + self.active_id = active + self.accumulated_points = 0 + self.is_active = True + self.left_raid = None + self.was_kicked = None + self.was_kicked_reason = None + + def get_active_char(self): + for alt in self.alts: + if self.active_id == alt.char_id: + return alt + return None + + +class Raid: + def __init__(self, raid_name, started_by, raiders=None): + self.raid_name = raid_name + self.desc = raid_name + self.started_at = int(time.time()) + self.started_by = started_by + self.raiders = raiders or [] + self.is_open = True + self.raid_orders = None + self.level = 180 + + +@instance() +class RaidbotController(BaseModule): + NO_RAID_RUNNING_RESPONSE = "No raid is running." + + def __init__(self): + self.raid = None + + def inject(self, registry): + self.bot: Tyrbot = registry.get_instance("bot") + self.db: DB = registry.get_instance("db") + self.text: Text = registry.get_instance("text") + self.setting_service: SettingService = registry.get_instance("setting_service") + self.character_service: CharacterService = registry.get_instance("character_service") + self.preset_controller: PresetController = registry.get_instance("preset_controller") + self.util: Util = registry.get_instance("util") + self.event_service: EventService = registry.get_instance("event_service") + self.leader: LeaderController = registry.get_instance("leader_controller") + self.getresp = registry.get_instance("translation_service").get_response + self.pork: PorkService = registry.get_instance("pork_service") + self.private_channel_service: PrivateChannelService = registry.get_instance("private_channel_service") + self.account_service: AccountService = registry.get_instance("account_service") + self.buddy_service: BuddyService = registry.get_instance("buddy_service") + + def pre_start(self): + self.event_service.register_event_type("RAID_END") + + @event("connect", "Adds all raiders to buddylist") + def connect(self, _, _1): + query = self.db.query("SELECT char_id, member from account where member != -1 and disabled = 0") + if query: + for player in query: + self.buddy_service.add_buddy(player.char_id, "member") + + @command(command="raid", params=[], access_level="member", + description="Show the current raid status") + def raid_cmd(self, _): + if not self.raid: + return self.NO_RAID_RUNNING_RESPONSE + + t = int(time.time()) + + blob = "" + blob += f"Name: {self.raid.desc}\n" + blob += f"Minimum Level: {self.raid.level}\n" + blob += f"Started By: {self.raid.started_by.name}\n" + blob += f"Raidleader: " \ + f"" \ + f"{self.leader.leader.name if self.leader.leader else 'not set - use !leader set'}" \ + f"" + blob += f"Started At: {self.util.format_datetime(self.raid.started_at)} " \ + f"({self.util.time_to_readable(t - self.raid.started_at)} ago)\n" + if self.raid.is_open: + blob += f"Status: Open [{self.text.make_chatcmd('Join', '/tell raid join')}] " \ + f"[{self.text.make_chatcmd('Lock', '/tell raid lock')}]" + else: + blob += f"Status: Closed " \ + f"[{self.text.make_chatcmd('Unlock', '/tell raid open')}]" + blob += "\n\n" + + if self.raid.raid_orders: + blob += "Orders\n" + blob += self.raid.raid_orders + "\n\n" + blob += "Raiders\n" + for raider in self.raid.raiders: + if raider.is_active: + blob += self.format_row(raider.get_active_char()) + return ChatBlob("Raid Status", blob) + + def format_row(self, user): + return f" {self.util.get_prof_icon(user.profession)} " \ + f"<{user.faction.lower()}>{user.name}" \ + f" ({user.level}/{user.ai_level}) " \ + f"[<{user.faction.lower()}>{user.org_name}|{user.org_rank_name}]\n" + + @event(event_type="private_channel_left", description="Autokick inactive characters") + def left_channel(self, _1, event_data: server_packets.PrivateChannelClientLeft): + self.raid_kick_cmd(None, None, self.pork.get_character_info(event_data.char_id), "Left private channel") + + @command(command="raid", params=[Const("start"), Any("raid_name")], + description="Start new raid", access_level="leader", sub_command="manage") + def raid_start_cmd(self, request: CommandRequest, _, raid_name: str): + if self.raid: + return "The %s raid is already running." % self.raid.raid_name + + self.raid = Raid(raid_name, request.sender) + + leader_alts = self.account_service.get_alts(request.sender.char_id) + self.raid.raiders.append(Raider(leader_alts, request.sender.char_id)) + join_link = self.get_raid_join_blob("Click here") + + msg = "\n" \ + f"────────[ Raid starting ]────────\n" \ + f"Initiator: {request.sender.name}\n" \ + f"Raid Name: {raid_name}\n" \ + f"{join_link} to join\n" \ + f"────────[ Raid starting ]────────" + self.leader.leader = None + self.leader.set_raid_leader(request.sender, request.sender) + # self.bot.send_org_message(msg) + self.bot.send_private_channel_message(msg) + self.account_service.add_log(leader_alts[0].char_id, "raid", + f"[STARTED] Raid with desc: {raid_name}", + request.sender.char_id) + if request.channel == "msg": + return "You have been set as the active Raidleader. " \ + "Set another Raidleader by using !leader set <name>" + else: + return f"{request.sender.name} has been set as the active Raidleader automatically." + + @command(command="raid", + params=[Const("desc"), Any("description")], + description="Change the raid description", + access_level="leader", sub_command="manage") + def raid_desc_cmd(self, _1, _2, desc): + if not self.raid: + return self.NO_RAID_RUNNING_RESPONSE + else: + self.raid.desc = desc + return f"Changed raid description to {desc} successfully." + + @command(command="raid", + params=[Const("level"), Int("level")], + description="Change the minimum raider level", + access_level="leader", + sub_command="manage") + def raid_level_cmd(self, _1, _2, level): + if not self.raid: + return self.NO_RAID_RUNNING_RESPONSE + else: + self.raid.level = level + return f"Changed minimum raider level to {level} successfully." + + @command(command="raid", + params=[Const("add"), Character("character_name")], + description="add an player to the raid", + access_level="leader", sub_command="manage") + def raid_add_cmd(self, request, _, char: SenderObj): + if not self.raid: + return self.NO_RAID_RUNNING_RESPONSE + if not char.char_id: + return self.getresp("global", "char_not_found", {"char": char.name}) + if not self.private_channel_service.in_private_channel(char.char_id): + return f"The player {char.name} is not in my private channel. Could not add him." + main_id = self.account_service.get_main(char.char_id).char_id + in_raid = self.is_in_raid(main_id) + if in_raid is not None: + if in_raid.active_id == char.char_id: + if in_raid.is_active: + return f"The Character {char.name} is already participating in the Raid." + else: + in_raid.is_active = True + in_raid.was_kicked = None + in_raid.was_kicked_reason = None + in_raid.left_raid = None + self.account_service.add_log(main_id, "raid", + f"[ADD] Added to the raid by " + f"{request.sender.name}", + request.sender.char_id) + self.send_raid_msg("READD", + f"{char.name} by " + f"{request.sender.name}") + elif in_raid.is_active: + former_active_name = self.character_service.resolve_char_to_name(in_raid.active_id) + return f"{char.name} is already participating in the raid with the char " \ + f"{former_active_name}" + else: + alts = self.account_service.get_alts(char.char_id) + self.raid.raiders.append(Raider(alts, char.char_id)) + self.account_service.add_log(main_id, "raid", f"[ADD] Added to the raid by " + f"{request.sender.name}", + request.sender.char_id) + self.send_raid_msg("ADD", f"{char.name} by " + f"{request.sender.name}") + + @command(command="raid", params=[Const("join")], description="Join the ongoing raid", access_level="member") + def raid_join_cmd(self, request, _): + if not self.raid: + return self.NO_RAID_RUNNING_RESPONSE + if not self.private_channel_service.in_private_channel(request.sender.char_id): + return "You are not in my private channel. you cant join the raid." + main_id = self.account_service.get_main(request.sender.char_id).char_id + in_raid = self.is_in_raid(main_id) + user = self.pork.get_character_info(request.sender.char_id) + if user.level < self.raid.level: + return f"You need to be at least level {self.raid.level} " \ + f"to participate in this raid." + if in_raid is not None: + if in_raid.active_id == request.sender.char_id: + if in_raid.is_active: + return "You are already participating in the raid." + else: + if not self.raid.is_open: + return "Raid is closed." + in_raid.is_active = True + in_raid.was_kicked = None + in_raid.was_kicked_reason = None + in_raid.left_raid = None + self.account_service.add_log(main_id, "raid", f"[JOIN] Raid: " + f"{self.raid.raid_name}", + request.sender.char_id) + self.send_raid_msg("REJOIN", f"{request.sender.name}") + + elif in_raid.is_active: + former_active_name = self.character_service.resolve_char_to_name(in_raid.active_id) + in_raid.active_id = request.sender.char_id + self.account_service.add_log(main_id, "raid", f"[JOIN] Raid: " + f"{self.raid.raid_name}", + request.sender.char_id) + self.send_raid_msg("ALT", f"{request.sender.name} " + f"[before: {former_active_name}]") + + elif not in_raid.is_active: + if not self.raid.is_open: + return "Raid is closed." + former_active_name = self.character_service.resolve_char_to_name(in_raid.active_id) + in_raid.active_id = request.sender.char_id + in_raid.was_kicked = None + in_raid.was_kicked_reason = None + in_raid.left_raid = None + self.account_service.add_log(main_id, "raid", + f"[JOIN] Raid: " + f"{self.raid.raid_name}", + request.sender.char_id) + self.send_raid_msg("ALT", f"{request.sender.name} " + f"[before: {former_active_name}]") + + elif self.raid.is_open: + alts = self.account_service.get_alts(request.sender.char_id) + self.raid.raiders.append(Raider(alts, request.sender.char_id)) + self.account_service.add_log(main_id, "raid", + f"[JOIN] Raid: {self.raid.raid_name}", + request.sender.char_id) + self.send_raid_msg("JOIN", f"{request.sender.name}") + + # self.bot.send_private_channel_message("%s joined the raid." % request.sender.name) + else: + return "Raid is closed." + + @command(command="raid", params=[Const("leave")], description="Leave the ongoing raid", access_level="member") + def raid_leave_cmd(self, request, _): + main = self.account_service.get_main(request.sender.char_id).char_id + in_raid = self.is_in_raid(main) + if in_raid: + if not in_raid.is_active: + return "You are not active in the raid." + + in_raid.is_active = False + in_raid.left_raid = int(time.time()) + self.account_service.add_log(main, "raid", + f"[LEAVE] Raid: {self.raid.raid_name}", + request.sender.char_id) + self.send_raid_msg("LEAVE", f"{request.sender.name}") + # self.bot.send_private_channel_message("%s left the raid." % request.sender.name) + else: + return "You are not in the raid." + + @command(command="raid", + params=[Const("addpts"), Any("name")], + description="Add points to all active participants", + access_level="leader", + sub_command="manage") + def points_add_cmd(self, request, _, name: str): + if not self.raid: + return self.NO_RAID_RUNNING_RESPONSE + + preset = self.db.query_single("SELECT * FROM points_presets WHERE name = ?", [name]) + if not preset: + return ChatBlob("No such preset - see list of presets", self.preset_controller.build_preset_list) + count = 0 + + for raider in self.raid.raiders: + current_points = self.account_service.get_account(raider.main_id) + if raider.is_active: + if current_points and current_points.disabled == 0: + self.account_service.add_pts(raider.main_id, + preset.points, + f"{preset.name}", + request.sender.char_id) + raider.accumulated_points += preset.points + count += 1 + self.bot.send_private_channel_message(f"{preset.points} points added " + f"to all active raiders ({count}).") + + @command(command="raid", params=[Const("check")], description="Get a list of raiders to do active check", + access_level="leader", sub_command="manage") + def raid_active_cmd(self, _1, _): + if not self.raid: + return self.NO_RAID_RUNNING_RESPONSE + + blob = "" + raider_names = [] + for raider in self.raid.raiders: + if not raider.is_active: + continue + raider_name = self.character_service.resolve_char_to_name(raider.active_id) + akick_link = self.text.make_chatcmd("Active kick", f"/tell raid kick {raider.main_id} inactive") + warn_link = self.text.make_chatcmd("Warn", + f"/tell cmd {raider_name} missed active check, " + f"please give notice.") + blob += "%s [%s] [%s]\n" % (raider_name, akick_link, warn_link) + raider_names.append(raider_name) + active_check_names = "/assist " + active_check_names += "\\n /assist ".join(raider_names) + blob += "[Active check]\n\n" % active_check_names + raider_names.clear() + return ChatBlob("Active check", blob) + + @command(command="raid", params=[Const("kick"), Character("char"), Any("reason")], + description="Set raider as kicked with a reason", access_level="leader", sub_command="manage") + def raid_kick_cmd(self, request, _2, char: SenderObj, reason: str): + if self.raid is None: + return self.NO_RAID_RUNNING_RESPONSE + if not char.char_id: + return self.getresp("global", "char_not_found", {"char": char.name}) + main_id = self.account_service.get_main(char.char_id).char_id + in_raid = self.is_in_raid(main_id) + + if in_raid is not None: + if not in_raid.is_active: + return "%s is not an active participant of the raid." % char.name + + in_raid.is_active = False + in_raid.was_kicked = int(time.time()) + in_raid.was_kicked_reason = reason + name = self.character_service.resolve_char_to_name(in_raid.active_id) + if request: + self.account_service.add_log(main_id, "raid", f"[KICKED] by " + f"{request.sender.name} " + f"for {reason}", + request.sender.char_id) + self.account_service.add_log(self.account_service.get_main(request.sender.char_id).char_id, "raid", + f"[KICKED] {char.name} " + f"for {reason}", + request.sender.char_id) + else: + self.account_service.add_log(main_id, "raid", + f"[KICKED] by " + f"{self.bot.get_char_name()} for {reason}", + self.bot.get_char_id()) + self.send_raid_msg("KICKED", f"{name} for: {reason}") + else: + return "%s is not participating." % char.name + + @command(command="raid", + params=[Options(["unlock", "open", "lock", "close"])], + description="Open/close raid for new participants", + access_level="leader", + sub_command="manage") + def raid_open_close_cmd(self, request, action): + if not self.raid: + return self.NO_RAID_RUNNING_RESPONSE + + if action in ["unlock", "open"]: + if self.raid.is_open: + return "Raid is already open." + self.raid.is_open = True + self.send_raid_msg("unlocked", f"by {request.sender.name}") + return + elif action in ["lock", "close"]: + if self.raid.is_open: + self.raid.is_open = False + self.send_raid_msg("locked", f"by {request.sender.name}") + + return + return "Raid is already closed." + + @command(command="raid", + params=[Options(["save", "end", "stop"])], + description="Save and log running raid", + access_level="leader", + sub_command="manage") + def raid_save_cmd(self, _1, _2): + if not self.raid: + return self.NO_RAID_RUNNING_RESPONSE + + sql = "INSERT INTO raid_log (raid_name, started_by, raid_start, raid_end) VALUES (?,?,?,?)" + num_rows = self.db.exec(sql, [self.raid.raid_name, + self.raid.started_by.char_id, + self.raid.started_at, + int(time.time())]) + if num_rows > 0: + raid_id = self.db.query_single("SELECT raid_id FROM raid_log ORDER BY raid_id DESC LIMIT 1").raid_id + + for raider in self.raid.raiders: + sql = "INSERT INTO raid_log_participants (" \ + "raid_id, raider_id, accumulated_points, " \ + "left_raid, was_kicked, was_kicked_reason" \ + ") " \ + "VALUES (?,?,?,?,?,?)" + self.db.exec(sql, [raid_id, raider.active_id, + raider.accumulated_points, + raider.left_raid, + raider.was_kicked, + raider.was_kicked_reason]) + + self.raid = None + self.leader.set_raid_leader(self.leader.leader, None) + self.event_service.fire_event("RAID_ENDED") + return "Raid has ended, logs got saved. Raidleader cleared." + + else: + return "Failed to end raid. Try again." + + @command(command="raid", params=[Const("logentry"), Int("raid_id"), Character("char", is_optional=True)], + description="Show log entry for raid, with possibility of narrowing down the log for character in raid", + access_level="member") + def raid_log_entry_cmd(self, _1, _2, raid_id: int, char: SenderObj): + log_entry_spec = None + if char: + sql = "SELECT * FROM raid_log r " \ + "LEFT JOIN raid_log_participants p ON r.raid_id = p.raid_id " \ + "WHERE r.raid_id = ? AND p.raider_id = ?" + log_entry_spec = self.db.query_single(sql, [raid_id, char.char_id]) + + sql = "SELECT * FROM raid_log r " \ + "LEFT JOIN raid_log_participants p ON r.raid_id = p.raid_id " \ + "WHERE r.raid_id = ? ORDER BY p.accumulated_points DESC" + log_entry = self.db.query(sql, [raid_id]) + pts_sum = self.db.query_single("SELECT SUM(p.accumulated_points) AS sum FROM raid_log_participants p " + "WHERE p.raid_id = ?", [raid_id]).sum + + if not log_entry: + return "No such log entry." + + blob = f"Raid name: {log_entry[0].raid_name}\n" + blob += f"Started by: {self.character_service.resolve_char_to_name(log_entry[0].started_by)}\n" + blob += f"Start time: {self.util.format_datetime(log_entry[0].raid_start)}\n" + blob += f"End time: {self.util.format_datetime(log_entry[0].raid_end)}\n" + blob += f"Run time: " \ + f"{self.util.time_to_readable(log_entry[0].raid_end - log_entry[0].raid_start)}\n" + blob += f"Total points: {pts_sum:d}\n\n" + + if char and log_entry_spec: + raider_name = self.character_service.resolve_char_to_name(log_entry_spec.raider_id) + main_info = self.account_service.get_main(log_entry_spec.raider_id) + alt_link = "Alt of %s" % main_info.name if main_info.char_id != log_entry_spec.raider_id else "Alts" + alt_link = self.text.make_chatcmd(alt_link, "/tell alts %s" % main_info.name) + blob += "Log entry for %s\n" % raider_name + blob += "Raider: %s [%s]\n" % (raider_name, alt_link) + blob += "Left raid: %s\n" % ("n/a" + if log_entry_spec.left_raid is None + else self.util.format_datetime(log_entry_spec.left_raid)) + blob += "Was kicked: %s\n" % ("No" + if log_entry_spec.was_kicked is None + else "Yes [%s]" % (self.util.format_datetime(log_entry_spec.was_kicked))) + blob += "Kick reason: %s\n\n" % ("n/a" + if log_entry_spec.was_kicked_reason is None + else log_entry_spec.was_kicked_reason) + + blob += "Participants\n" + for raider in log_entry: + raider_name = self.character_service.resolve_char_to_name(raider.raider_id) + main_info = self.account_service.get_main(raider.raider_id) + alt_link = "Alt of %s" % main_info.name if main_info.char_id != raider.raider_id else "Alts" + alt_link = self.text.make_chatcmd(alt_link, "/tell alts %s" % main_info.name) + log_link = self.text.make_chatcmd("Log", "/tell raid logentry %d %s" % (raid_id, raider_name)) + account_link = self.text.make_chatcmd("Account", "/tell account %s" % raider_name) + blob += f"{raider_name} - {raider.accumulated_points:d} points earned " \ + f"[{log_link}] [{account_link}] [{alt_link}]\n" + + log_entry_reference = "the raid %s" % log_entry[0].raid_name \ + if char is None \ + else "%s in raid %s" \ + % (self.character_service.resolve_char_to_name(char.char_id), log_entry[0].raid_name) + return ChatBlob("Log entry for %s" % log_entry_reference, blob) + + @command(command="raid", params=[Const("history")], description="Show a list of recent raids", + access_level="member") + def raid_history_cmd(self, _1, _2): + sql = "SELECT * FROM raid_log ORDER BY raid_end DESC LIMIT 30" + raids = self.db.query(sql) + + blob = "" + for raid in raids: + participant_link = self.text.make_chatcmd("Log", "/tell raid logentry %d" % raid.raid_id) + timestamp = self.util.format_datetime(raid.raid_start) + leader_name = self.character_service.resolve_char_to_name(raid.started_by) + blob += f"[{raid.raid_id:d}] [{timestamp}] {raid.raid_name} " \ + f"started by {leader_name} [{participant_link}]\n" + + return ChatBlob("Raid history", blob) + + def is_in_raid(self, main_id: int) -> Union[bool, Raider]: + if self.raid is None: + return True + + for raider in self.raid.raiders: + if raider.main_id == main_id: + return raider + + def send_raid_msg(self, msg_type, msg): + self.bot.send_private_channel_message(f"[Raid: {msg_type}] {msg}") + + def get_raid_join_blob(self, link_txt: str): + blob = "1. Join the raid\n" \ + "To join the current raid %s, send the following tell to \n" \ + "/tell raid join\n" \ + "\n" \ + "2. Enable LFT\n" \ + "When you have joined the raid, go lft with \"\" as description\n" \ + "/lft \n" \ + "\n" \ + "3. Announce\n" \ + "You could announce to the raid leader, that you have enabled LFT\n" \ + "Announce that you have enabled lft\n" \ + "\n" \ + "4. Rally with yer mateys\n" \ + "Finally, move towards the starting location of the raid.\n" \ + "Ask for help if you're in doubt of where to go." % self.raid.raid_name + + return self.text.paginate_single(ChatBlob(link_txt, blob)) + + @timerevent(budatime="5m", description="announce raid") + def announce_raid(self, event_type, event_data): + if self.raid: + if self.raid.is_open: + self.bot.send_private_channel_message("Raid Running " + ":: %s :: %s" % + (self.raid.desc, + f"" + f"{self.get_raid_join_blob('Click to Join')}" + f"")) + else: + self.bot.send_private_channel_message("Raid Running :: %s " + ":: Closed" % self.raid.desc) + + @timerevent(budatime="1m", description="No leader reminder") + def leader_auto_remove(self, _1, _2): + if self.raid: + leader = self.leader.leader + if not leader: + self.bot.send_private_channel_message(f":: No Leader set :: " + f"use !leader set") + return + if not self.is_in_raid(leader.char_id): + self.bot.send_private_channel_message(f":: Raidleader {leader.name} " + f"is not in raid ::") diff --git a/modules/raidbot/spam/massinvite_controller.py b/modules/raidbot/spam/massinvite_controller.py new file mode 100644 index 0000000..e781b95 --- /dev/null +++ b/modules/raidbot/spam/massinvite_controller.py @@ -0,0 +1,124 @@ +from core.aochat.BaseModule import BaseModule +from core.chat_blob import ChatBlob +from core.command_param_types import Any +from core.db import DB +from core.decorators import instance, command +from core.lookup.character_service import CharacterService +from core.lookup.pork_service import PorkService +from core.private_channel_service import PrivateChannelService +from core.setting_service import SettingService +from core.text import Text +from core.tyrbot import Tyrbot +from core.util import Util +from modules.core.accounting.services.account_service import AccountService + + +@instance() +class MassinviteController(BaseModule): + NO_RAID_RUNNING_RESPONSE = "No raid is running." + + def __init__(self): + self.count = 0 + + def inject(self, registry): + self.bot: Tyrbot = registry.get_instance("bot") + self.db: DB = registry.get_instance("db") + self.text: Text = registry.get_instance("text") + self.setting_service: SettingService = registry.get_instance("setting_service") + self.character_service: CharacterService = registry.get_instance("character_service") + self.util: Util = registry.get_instance("util") + self.pork: PorkService = registry.get_instance("pork_service") + self.private_channel_service: PrivateChannelService = registry.get_instance("private_channel_service") + self.account_service: AccountService = registry.get_instance("account_service") + + @command(command="massinvite", + params=[Any("text")], + description="Send a Massmessage combined with a massinvite", + access_level="leader") + def mass_invite(self, request, msg): + if not self.raid: + return self.NO_RAID_RUNNING_RESPONSE + main = "" + blob = "" + spam = [self.format_subtile_spam( + f"{request.sender.name} invited you to join a raid: {msg}"), + self.format_spam(f"{request.sender.name} invited you to join a raid:\n" + f"{msg}")] + self.bot.send_private_channel_message(spam[1]) + invites = self.account_service.get_all_members(online_only=True) + request.reply(f"Attempting to send {len(invites)} Raid invites....") + for player in invites: + if player.main != main: + main = player.main + blob += f"\n{self.character_service.resolve_char_to_name(main)} as \n" + blob += self.handle_player(player, spam, True) + + msg = ChatBlob("Info", blob) + msg.page_prefix = f"{self.count} Massinvites sent! [" + msg.page_postfix = "]" + self.count = 0 + if request.channel == "msg": + self.bot.send_mass_message(request.sender.char_id, msg) + else: + return msg + + @command(command="massmessage", params=[Any("text")], description="Send a Massmessage to all online players", + access_level="leader") + def mass_message(self, request, msg): + # if not self.raid: + # return self.NO_RAID_RUNNING_RESPONSE + main = "" + blob = "" + spam = [self.format_subtile_spam( + f"{request.sender.name} sent you a message: {msg}"), + self.format_spam(f"{request.sender.name} sent you a message:\n" + f"{msg}")] + self.bot.send_private_channel_message(spam[1]) + invites = self.account_service.get_all_members(online_only=True) + request.reply(f"Attempting to send {len(invites)} Massmessage's...") + for player in invites: + if player.main != main: + main = player.main + blob += f"\n{self.character_service.resolve_char_to_name(main)} as \n" + blob += self.handle_player(player, spam, False) + + msg = ChatBlob("Info", blob) + msg.page_prefix = f"{self.count} Massmessage's have been sent! [" + msg.page_postfix = "]" + self.count = 0 + if request.channel == "msg": + self.bot.send_mass_message(request.sender.char_id, msg) + else: + return msg + + def handle_player(self, user, msg, invite=False): + pg = " [PG]" if self.private_channel_service.in_private_channel( + user.char_id) else " [MSG sent]" + if not self.private_channel_service.in_private_channel(user.char_id): + count = 0 + if user.raid_spam == 1: + if user.subtile_spam == 1: + self.bot.send_mass_message(user.char_id, msg[0]) + else: + self.bot.send_mass_message(user.char_id, msg[1]) + count += 1 + if user.raid_invite == 1 and invite: + self.private_channel_service.invite(user.char_id) + count += 1 + if count == 0: + return "" + self.count += 1 + return f"{self.util.get_prof_icon(user.profession)} " \ + f"({self.text.zfill(user.level, 220)}/{self.text.zfill(user.ai_level, 30)}) " \ + f"<{user.faction.lower()}>{user.name} " \ + f"[<{user.faction.lower()}>{user.org_name} - " \ + f"{user.org_rank_id + 1}]{pg}\n" + + def format_spam(self, msg): + return f"\n" \ + f"────────[ Raid invite ]────────\n" \ + f"{msg}\n" \ + f"────────[ Raid invite ]────────" + + def format_subtile_spam(self, msg): + return f"[ Raid invite ] {msg}" diff --git a/modules/raidbot/tower/contract_controller.py b/modules/raidbot/tower/contract_controller.py new file mode 100644 index 0000000..4ab402c --- /dev/null +++ b/modules/raidbot/tower/contract_controller.py @@ -0,0 +1,81 @@ +import math + +from core.aochat.BaseModule import BaseModule +from core.chat_blob import ChatBlob +from core.command_alias_service import CommandAliasService +from core.command_param_types import Int, NamedParameters +from core.db import DB +from core.decorators import instance, command +from core.event_service import EventService +from core.lookup.pork_service import PorkService +from core.public_channel_service import PublicChannelService +from core.text import Text +from core.tyrbot import Tyrbot +from core.util import Util +from modules.raidbot.tower.tower_service import TowerService +from modules.standard.helpbot.playfield_controller import PlayfieldController + + +# noinspection DuplicatedCode +@instance() +class ContractController(BaseModule): + PAGE_SIZE = 40 + + # noinspection DuplicatedCode + def inject(self, registry): + self.bot: Tyrbot = registry.get_instance("bot") + self.db: DB = registry.get_instance("db") + self.util: Util = registry.get_instance("util") + self.text: Text = registry.get_instance("text") + self.event_service: EventService = registry.get_instance("event_service") + self.pork_service: PorkService = registry.get_instance("pork_service") + self.playfield_controller: PlayfieldController = registry.get_instance("playfield_controller") + self.public_channel_service: PublicChannelService = registry.get_instance("public_channel_service") + self.towercache: TowerService = registry.get_instance("tower_service") + self.command_alias_service: CommandAliasService = registry.get_instance("command_alias_service") + + @command(command="contracts", + params=[Int('mininum', is_optional=True), NamedParameters(['page'])], + access_level="member", + description="Shows contracts") + def cotracts(self, _, min_ql, named_params): + if not min_ql: + min_ql = 200 + data = self.db.query("SELECT CAST(SUM(ql)*2 AS INTEGER) AS contracts, " + "COUNT(*) as sites, org_name, org_id, faction FROM towers " + "where org_name IS NOT NULL GROUP BY org_name ORDER BY contracts desc", []) + page = int(named_params.page or "1") + offset = (page - 1) * self.PAGE_SIZE + data = [x for x in data if x.contracts > min_ql] + return self.format_pagination(data, offset, page, f"Tower Contracts ({len(data)})", + f"There are no orgs with more than " + f"{min_ql} contract points.", + f'contracts {min_ql}') + + def format_pagination(self, data, offset, page, title, nullmsg, cmd): + selected = data[offset:offset + self.PAGE_SIZE] + count = len(selected) + pages = "" + if page > 1: + pages += "Pages: " + self.text.make_tellcmd("«« Page %d" % (page - 1), f'{cmd} --page={page - 1}') + if offset + self.PAGE_SIZE < len(data): + pages += f" Page {page}/{math.ceil(len(data) / self.PAGE_SIZE)}" + pages += " " + self.text.make_tellcmd("Page %d »»" % (page + 1), f'{cmd} --page={page + 1}') + pages += "\n" + if count == 0: + return nullmsg + else: + blob = "" + blob += "" + pages + "\n" + index = offset + for entry in selected: + index += 1 + blob += self.row_formatter(entry, index, data) + blob += "\n" + pages + blob += "" + return ChatBlob(title, blob) + + def row_formatter(self, entry, index, data): + return f"{self.text.zfill(index, len(data))}. " \ + f"{self.text.zfill(entry.contracts, data[0].contracts)} " \ + f"<{entry.faction.lower()}>{entry.org_name}\n" diff --git a/modules/raidbot/tower/plant_controller.py b/modules/raidbot/tower/plant_controller.py new file mode 100644 index 0000000..4ec7685 --- /dev/null +++ b/modules/raidbot/tower/plant_controller.py @@ -0,0 +1,76 @@ +import time + +from core.aochat.BaseModule import BaseModule +from core.chat_blob import ChatBlob +from core.command_alias_service import CommandAliasService +from core.db import DB +from core.decorators import instance, command +from core.event_service import EventService +from core.lookup.pork_service import PorkService +from core.public_channel_service import PublicChannelService +from core.text import Text +from core.tyrbot import Tyrbot +from core.util import Util +from modules.raidbot.tower.tower_service import TowerService +from modules.standard.helpbot.playfield_controller import PlayfieldController + + +@instance() +class PlantController(BaseModule): + # noinspection DuplicatedCode + def inject(self, registry): + self.bot: Tyrbot = registry.get_instance("bot") + self.db: DB = registry.get_instance("db") + self.util: Util = registry.get_instance("util") + self.text: Text = registry.get_instance("text") + self.event_service: EventService = registry.get_instance("event_service") + self.pork_service: PorkService = registry.get_instance("pork_service") + self.playfield_controller: PlayfieldController = registry.get_instance("playfield_controller") + self.public_channel_service: PublicChannelService = registry.get_instance("public_channel_service") + self.towercache: TowerService = registry.get_instance("tower_service") + self.command_alias_service: CommandAliasService = registry.get_instance("command_alias_service") + + @command(command="penalty", params=[], access_level="member", description="Shows planttimers") + def penalty(self, _): + blob = "" + self.towercache.attack_hot.sort(key=lambda k: k['org_name']) + rem = [] + for key, value in enumerate(sorted(self.towercache.attack_hot, key=lambda k: k['org_name'])): + if value["hot"] < time.time(): + rem.append(key) + continue + + lca = self.towercache.get_towers_by_org_name(value["org_name"]) + for site in lca: + blob += self.towercache.format_entry(site, 10) + + blob += "" + for i in reversed(rem): + self.towercache.attack_hot.pop(i) + if len(self.towercache.attack_hot) == 0: + blob = "" + return ChatBlob(f"Warhot tower sites", blob.strip("\n")) if blob != "" else f"There are no orgs in penalty." + + @command(command="plant", params=[], access_level="member", description="Shows planttimers") + def plant(self, _): + blob = "" + rem = [] + for key, value in enumerate(sorted(self.towercache.plant, key=lambda k: k['pf'])): + print(key, value) + if value["plant"] < time.time(): + rem.append(key) + continue + + lca = self.playfield_controller.get_playfield_by_id(value['pf']) + blob += f"[{lca.short_name}] x{value['site']} in " \ + f"{self.util.format_time(value['plant'] - time.time())}\n" + + blob += "" + for i in reversed(rem): + self.towercache.plant.pop(i) + if len(self.towercache.plant) == 0: + blob = "" + if blob != "": + return ChatBlob(f"Awaiting plants ({len(self.towercache.plant)})", blob.strip("\n")) + else: + return f"There are no sites awaiting plants." diff --git a/modules/raidbot/tower/tower_attack_controller.py b/modules/raidbot/tower/tower_attack_controller.py new file mode 100644 index 0000000..d411051 --- /dev/null +++ b/modules/raidbot/tower/tower_attack_controller.py @@ -0,0 +1,358 @@ +import time + +from core.chat_blob import ChatBlob +from core.command_param_types import Const, Int, NamedParameters +from core.decorators import instance, command, event +from core.job_scheduler import JobScheduler +from core.logger import Logger +from core.public_channel_service import PublicChannelService +from core.setting_service import SettingService +from core.text import Text +from core.tyrbot import Tyrbot +from modules.core.accounting.services.account_service import AccountService +from modules.raidbot.tower.tower_controller import TowerController +from modules.raidbot.tower.tower_service import TowerService +from modules.standard.helpbot.playfield_controller import PlayfieldController + + +@instance() +class TowerAttackController: + def __init__(self): + self.logger = Logger(__name__) + + def inject(self, registry): + self.bot: Tyrbot = registry.get_instance("bot") + self.db = registry.get_instance("db") + self.text: Text = registry.get_instance("text") + self.settings: SettingService = registry.get_instance("setting_service") + self.util = registry.get_instance("util") + self.tower: TowerController = registry.get_instance("tower_controller") + self.towerservice: TowerService = registry.get_instance("tower_service") + self.event_service = registry.get_instance("event_service") + self.command_alias_service = registry.get_instance("command_alias_service") + self.public_channel_service: PublicChannelService = registry.get_instance("public_channel_service") + self.job_scheduler: JobScheduler = registry.get_instance("job_scheduler") + self.playfield_controller: PlayfieldController = registry.get_instance("playfield_controller") + self.account_service: AccountService = registry.get_instance("account_service") + + def start(self): + self.db.exec( + "CREATE TABLE IF NOT EXISTS tower_attacker (" + "id INT PRIMARY KEY AUTO_INCREMENT, " + "att_org_name VARCHAR(50) NOT NULL, " + "att_faction VARCHAR(10) NOT NULL, " + "att_char_id INT, att_char_name VARCHAR(20) NOT NULL, " + "att_level INT NOT NULL, " + "att_ai_level INT NOT NULL, " + "att_profession VARCHAR(15) NOT NULL, " + "x_coord INT NOT NULL, " + "y_coord INT NOT NULL, " + "is_victory SMALLINT NOT NULL, " + "tower_battle_id INT NOT NULL, " + "created_at INT NOT NULL)") + self.db.exec( + "CREATE TABLE IF NOT EXISTS tower_battle (" + "id INT PRIMARY KEY AUTO_INCREMENT, " + "playfield_id INT NOT NULL, " + "site_number INT NOT NULL, " + "def_org_name VARCHAR(50) NOT NULL, " + "def_faction VARCHAR(10) NOT NULL, " + "is_finished INT NOT NULL, " + "battle_type VARCHAR(20) NOT NULL, " + "last_updated INT NOT NULL)") + + self.command_alias_service.add_alias("victory", "attacks") + + @command(command="attacks", params=[NamedParameters(["page"])], access_level="member", + description="Show recent tower attacks and victories") + def attacks_cmd(self, _, named_params): + page = int(named_params.page or "1") + + page_size = 30 + offset = (page - 1) * page_size + + sql = """ + SELECT + b.*, + a.*, + COALESCE(a.att_level, 0) AS att_level, + COALESCE(a.att_ai_level, 0) AS att_ai_level, + p.short_name, + b.id AS battle_id + FROM + tower_battle b + LEFT JOIN tower_attacker a ON + a.tower_battle_id = b.id + LEFT JOIN playfields p ON + p.id = b.playfield_id + ORDER BY + b.last_updated DESC, + a.created_at DESC + LIMIT %d, %d + """ % (offset, page_size) + + data = self.db.query(sql) + t = int(time.time()) + + blob = self.check_for_all_towers_channel() + + if page > 1: + blob += " " + self.text.make_chatcmd("<< Page %d" % (page - 1), self.get_chat_command(page - 1)) + if len(data) > 0: + blob += " Page " + str(page) + blob += " " + self.text.make_chatcmd("Page %d >>" % (page + 1), self.get_chat_command(page + 1)) + blob += "\n" + + current_battle_id = -1 + for row in data: + if current_battle_id != row.battle_id: + blob += "\n" + current_battle_id = row.battle_id + blob += self.format_battle_info(row, t) + blob += self.text.make_tellcmd("More Info", "attacks battle %d" % row.battle_id) + "\n" + blob += "Attackers:\n" + + blob += "" + self.format_attacker(row) + "\n" + + return ChatBlob("Tower Attacks", blob) + + @command(command="attacks", params=[Const("battle"), Int("battle_id")], access_level="member", + description="Show battle info for a specific battle") + def attacks_battle_cmd(self, _, _1, battle_id): + battle = self.db.query_single( + "SELECT b.*, p.short_name FROM tower_battle b " + "LEFT JOIN playfields p ON p.id = b.playfield_id WHERE b.id = ?", + [battle_id]) + if not battle: + return "Could not find battle with ID %d." % battle_id + + t = int(time.time()) + + attackers = self.db.query("SELECT * FROM tower_attacker WHERE tower_battle_id = ? ORDER BY created_at DESC", + [battle_id]) + + first_activity = attackers[-1].created_at if len(attackers) > 0 else battle.last_updated + + blob = self.check_for_all_towers_channel() + blob += self.format_battle_info(battle, t) + blob += f"Duration: " \ + f"{self.util.time_to_readable(battle.last_updated - first_activity)}\n\n" + blob += "Attackers:\n" + + for row in attackers: + blob += "" + self.format_attacker(row) + blob += " " + self.format_timestamp(row.created_at, t) + blob += "\n" + + return ChatBlob("Battle Info %d" % battle_id, blob) + + @event(event_type=TowerController.TOWER_ATTACK_EVENT, description="Warn on Tower attacks", is_hidden=True) + def tower_attack_event(self, _, event_data): + t = int(time.time()) + site_number = self.find_closest_site_number(event_data.location.playfield.id, event_data.location.x_coord, + event_data.location.y_coord) + + attacker = event_data.attacker or {} + defender = event_data.defender + + battle = self.find_or_create_battle(event_data.location.playfield.id, site_number, defender.org_name, + defender.faction, "attack", t) + # print(battle) + self.db.exec( + "INSERT INTO tower_attacker (att_org_name, att_faction, att_char_id, att_char_name, " + "att_level, att_ai_level, att_profession, " + "x_coord, y_coord, is_victory, tower_battle_id, created_at) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)", + [attacker.get("org_name", ""), attacker.get("faction", ""), attacker.get("char_id", 0), + attacker.get("name", ""), attacker.get("level", 0), + attacker.get("ai_level", 0), attacker.get("profession", ""), event_data.location.x_coord, + event_data.location.y_coord, 0, battle.id, t]) + + @event(event_type=TowerController.TOWER_ATTACK_EVENT, description="Notify Tower attacks on own org") + def tower_def_event(self, _, event_data): + if event_data.attacker.get("name", None) is not None: + field_id = self.find_closest_site_number(event_data.location.playfield.id, event_data.location.x_coord, + event_data.location.y_coord) + row = self.db.query_single( + "SELECT t.*, p.short_name, p.long_name FROM tower_site t " + "JOIN playfields p ON t.playfield_id = p.id WHERE t.playfield_id = ? AND site_number = ?", + [event_data.location.playfield.id, field_id]) + lca = self.text.format_page("%s - %d" % (event_data.location.playfield.long_name, field_id), + self.tower.format_site_info(row)) + attacker = self.text.format_char_info(event_data.attacker) + add = "" + if account := self.account_service.get_account(event_data.attacker.char_id): + if account.disabled == 0 and account.member != 0: + add = " :: He's a Raider!" + self.bot.send_private_channel_message( + f"[NW] " + f"<{event_data.defender.faction.lower()}>" + f"{event_data.defender.org_name}" + f" " + f"attacked by {attacker} in {lca}{add}") + + @event(event_type=TowerController.TOWER_VICTORY_EVENT, description="Record tower victories", is_hidden=True) + def tower_victory_event(self, _, event_data): + t = int(time.time()) + if event_data.type == "attack": + row = self.get_last_attack(event_data.winner.faction, event_data.winner.org_name, event_data.loser.faction, + event_data.loser.org_name, event_data.location.playfield.id, t) + + if not row: + site_number = 0 + is_finished = 1 + self.db.exec( + "INSERT INTO tower_battle (playfield_id, site_number, def_org_name, def_faction, " + "is_finished, battle_type, last_updated) VALUES (?, ?, ?, ?, ?, ?, ?)", + [event_data.location.playfield.id, site_number, event_data.loser.org_name, event_data.loser.faction, + is_finished, event_data.type, t]) + battle_id = self.db.last_insert_id() + + attacker = event_data.winner or {} + self.db.exec( + "INSERT INTO tower_attacker (att_org_name, att_faction, att_char_id, " + "att_char_name, att_level, att_ai_level, att_profession, " + "x_coord, y_coord, is_victory, tower_battle_id, created_at) " + "VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)", + [attacker.get("org_name", ""), attacker.get("faction", ""), attacker.get("char_id", 0), + attacker.get("name", ""), attacker.get("level", 0), + attacker.get("ai_level", 0), attacker.get("profession", ""), 0, 0, 0, battle_id, t]) + else: + is_victory = 1 + self.db.exec("UPDATE tower_attacker SET is_victory = ? WHERE id = ?", [is_victory, row.attack_id]) + + is_finished = 1 + self.db.exec("UPDATE tower_battle SET is_finished = ?, last_updated = ? WHERE id = ?", + [is_finished, t, row.battle_id]) + elif event_data.type == "terminated": + site_number = 0 + is_finished = 1 + self.db.exec( + "INSERT INTO tower_battle (playfield_id, site_number, def_org_name, def_faction, " + "is_finished, battle_type, last_updated) VALUES (?, ?, ?, ?, ?, ?, ?)", + [event_data.location.playfield.id, site_number, event_data.loser.org_name, event_data.loser.faction, + is_finished, event_data.type, t]) + else: + raise Exception("Unknown victory event type: '%s'" % event_data.type) + + def format_attacker(self, row): + level = ("%d/%d" % ( + row.att_level, row.att_ai_level)) if row.att_ai_level > 0 else "%d" % row.att_level + org = row.att_org_name + " " if row.att_org_name else "" + victor = " - Winner!" if row.is_victory else "" + return "%s (%s %s) %s(%s)%s" % ( + row.att_char_name or "Unknown attacker", level, row.att_profession, org, row.att_faction, victor) + + def find_closest_site_number(self, playfield_id, x_coord, y_coord): + # noinspection SqlUnused + sql = """ + SELECT + site_number, + ((x_distance * x_distance) + (y_distance * y_distance)) radius + FROM + (SELECT + playfield_id, + site_number, + min_ql, + max_ql, + x_coord, + y_coord, + site_name, + (x_coord - ?) as x_distance, + (y_coord - ?) as y_distance + FROM + tower_site + WHERE + playfield_id = ?) t + ORDER BY + radius + LIMIT 1""" + + row = self.db.query_single(sql, [x_coord, y_coord, playfield_id]) + if row: + return row.site_number + else: + return 0 + + def find_or_create_battle(self, playfield_id, site_number, org_name, faction, battle_type, t): + last_updated = t - (8 * 3600) + is_finished = 0 + + sql = """ + SELECT + * + FROM + tower_battle + WHERE + playfield_id = ? + AND site_number = ? + AND is_finished = ? + AND def_org_name = ? + AND def_faction = ? + AND last_updated >= ? + """ + + battle = self.db.query_single(sql, [playfield_id, site_number, is_finished, org_name, faction, last_updated]) + + if battle: + self.db.exec("UPDATE tower_battle SET last_updated = ? WHERE id = ?", [t, battle.id]) + return battle + else: + self.db.exec( + "INSERT INTO tower_battle (playfield_id, site_number, def_org_name, def_faction, " + "is_finished, battle_type, last_updated) VALUES (?, ?, ?, ?, ?, ?, ?)", + [playfield_id, site_number, org_name, faction, is_finished, battle_type, t]) + time.sleep(0.5) + return self.db.query_single("SELECT * FROM tower_battle WHERE id = ?", [self.db.last_insert_id()]) + + def get_last_attack(self, att_faction, att_org_name, def_faction, def_org_name, playfield_id, t): + last_updated = t - (8 * 3600) + is_finished = 0 + + sql = """ + SELECT + b.id AS battle_id, + a.id AS attack_id, + b.playfield_id as pf_id, + b.site_number as site + FROM + tower_battle b + JOIN tower_attacker a ON + a.tower_battle_id = b.id + WHERE + a.att_faction = ? + AND a.att_org_name = ? + AND b.def_faction = ? + AND b.def_org_name = ? + AND b.playfield_id = ? + AND b.is_finished = ? + AND b.last_updated >= ? + ORDER BY + last_updated DESC + LIMIT 1""" + + return self.db.query_single(sql, + [att_faction, att_org_name, def_faction, def_org_name, playfield_id, is_finished, + last_updated]) + + def format_battle_info(self, row, t): + blob = "" + defeated = " - Defeated!" if row.is_finished else "" + blob += "Site: %s %s\n" % (row.short_name, row.site_number or "?") + blob += "Defender: %s (%s)%s\n" % (row.def_org_name, row.def_faction, defeated) + blob += "Last Activity: %s\n" % self.format_timestamp(row.last_updated, t) + return blob + + def format_timestamp(self, t, current_t): + return "%s (%s ago)" % ( + self.util.format_datetime(t), self.util.time_to_readable(current_t - t)) + + def get_chat_command(self, page): + return "/tell attacks --page=%d" % page + + def check_for_all_towers_channel(self): + if not self.public_channel_service.get_channel_name(TowerController.ALL_TOWERS_ID): + return "Notice: The bot must belong to an org and be promoted to a rank that is high enough " \ + "to have the All Towers channel (e.g., Squad Commander) in order for the " \ + "attacks command to work correctly.\n\n" + else: + return "" diff --git a/modules/raidbot/tower/tower_controller.py b/modules/raidbot/tower/tower_controller.py new file mode 100644 index 0000000..5cc1e47 --- /dev/null +++ b/modules/raidbot/tower/tower_controller.py @@ -0,0 +1,207 @@ +import re + +from core.aochat import server_packets +from core.conn import Conn +from core.db import DB +from core.decorators import instance, event +from core.dict_object import DictObject +from core.event_service import EventService +from core.logger import Logger +from core.lookup.pork_service import PorkService +from core.public_channel_service import PublicChannelService +from core.text import Text +from core.tyrbot import Tyrbot +from modules.standard.helpbot.playfield_controller import PlayfieldController + + +@instance() +class TowerController: + TOWER_ATTACK_EVENT = "tower_attack" + TOWER_VICTORY_EVENT = "tower_victory" + + TOWER_BATTLE_OUTCOME_ID = 42949672962 + ALL_TOWERS_ID = 42949672960 + + # The %s organization %s just entered a state of war! + # %s attacked the %s organization %s's tower in %s at location (%d,%d). + ATTACK_1 = [506, 12753364] + ATTACK_2 = re.compile(r"^(.+) just attacked the (clan|neutral|omni) organization (.+)'s tower in (.+) " + r"at location \((\d+), (\d+)\).\n$") + + VICTORY_1 = re.compile(r"^Notum Wars Update: Victory to the (Clan|Neutral|Omni)s!!!$") + VICTORY_2 = re.compile(r"^The (Clan|Neutral|Omni) organization (.+) attacked the (Clan|Neutral|Omni) (.+) " + r"at their base in (.+). The attackers won!!$") + VICTORY_3 = [506, 147506468] # 'Notum Wars Update: The %s organization %s lost their base in %s.' + + def __init__(self): + self.logger = Logger(__name__) + + def inject(self, registry): + self.bot: Tyrbot = registry.get_instance("bot") + self.db: DB = registry.get_instance("db") + self.text: Text = registry.get_instance("text") + self.event_service: EventService = registry.get_instance("event_service") + self.pork_service: PorkService = registry.get_instance("pork_service") + self.playfield_controller: PlayfieldController = registry.get_instance("playfield_controller") + self.public_channel_service: PublicChannelService = registry.get_instance("public_channel_service") + + def pre_start(self): + self.event_service.register_event_type(self.TOWER_ATTACK_EVENT) + self.event_service.register_event_type(self.TOWER_VICTORY_EVENT) + self.bot.register_packet_handler(server_packets.PublicChannelMessage.id, self.handle_public_channel_message) + self.db.load_sql_file(self.module_dir + "/" + "tower_site.sql", pre_optimized=True) + self.db.create_view("tower_site") + + @event(event_type="connect", description="Check if All Towers channel is available", is_hidden=True) + def handle_connect_event(self, _, _1): + if self.public_channel_service.org_id and not self.public_channel_service.get_channel_id("All Towers"): + self.logger.warning("This bot is a member of an org but does not have access to 'All Towers' channel and " + "therefore will not receive tower attack messages") + + def format_site_info(self, row): + blob = f"Short name: {row.short_name} {row.site_number:d}\n" + blob += f"Long name: {row.site_name}, {row.long_name}\n" + blob += f"Level range: {row.min_ql:d}-{row.max_ql:d}\n" + blob += "Coordinates: %s\n" % self.text.make_chatcmd(f"{row.x_coord:d}x{row.y_coord:d}", + f"/waypoint {row.x_coord:d} " + f"{row.y_coord:d} " + f"{row.playfield_id:d}") + + return blob + + def handle_public_channel_message(self, conn: Conn, packet: server_packets.PublicChannelMessage): + if conn.id != "main": + return + + if packet.channel_id == self.TOWER_BATTLE_OUTCOME_ID: + victory = self.get_victory_event(packet) + + if victory: + # self.logger.debug("tower victory packet: %s" % str(packet)) + + # lookup playfield + playfield_name = victory.location.playfield.long_name + victory.location.playfield = self.playfield_controller.get_playfield_by_name(playfield_name) or \ + DictObject() + victory.location.playfield.long_name = playfield_name + print(victory) + self.event_service.fire_event(self.TOWER_VICTORY_EVENT, victory) + elif packet.channel_id == self.ALL_TOWERS_ID: + attack = self.get_attack_event(packet) + + if attack: + # self.logger.debug("tower attack packet: %s" % str(packet)) + + # lookup playfield + playfield_name = attack.location.playfield.long_name + attack.location.playfield = self.playfield_controller.get_playfield_by_name(playfield_name) or \ + DictObject() + attack.location.playfield.long_name = playfield_name + + # lookup attacker + name = attack.attacker.name + faction = attack.attacker.faction + org_name = attack.attacker.org_name + char_info = self.pork_service.get_character_info(name) + attack.attacker = char_info or DictObject() + attack.attacker.name = name + attack.attacker.faction = faction or attack.attacker.get("faction", "Unknown") + attack.attacker.org_name = org_name + + self.event_service.fire_event(self.TOWER_ATTACK_EVENT, attack) + + def get_attack_event(self, packet: server_packets.PublicChannelMessage): + if packet.extended_message and \ + [packet.extended_message.category_id, packet.extended_message.instance_id] == self.ATTACK_1: + params = packet.extended_message.params + return DictObject({ + "attacker": { + "name": params[2], + "faction": params[0].capitalize(), + "org_name": params[1] + }, + "defender": { + "faction": params[3].capitalize(), + "org_name": params[4] + }, + "location": { + "playfield": { + "long_name": params[5] + }, + "x_coord": params[6], + "y_coord": params[7] + } + }) + else: + match = self.ATTACK_2.match(packet.message) + if match: + return DictObject({ + "attacker": { + "name": match.group(1), + "faction": "", + "org_name": "" + }, + "defender": { + "faction": match.group(2).capitalize(), + "org_name": match.group(3) + }, + "location": { + "playfield": { + "long_name": match.group(4) + }, + "x_coord": match.group(5), + "y_coord": match.group(6) + } + }) + + # Unknown attack + self.logger.warning("Unknown tower attack: " + str(packet)) + return None + + def get_victory_event(self, packet: server_packets.PublicChannelMessage): + match = self.VICTORY_1.match(packet.message) + if match: + return None + + match = self.VICTORY_2.match(packet.message) + if match: + return DictObject({ + "type": "attack", + "winner": { + "faction": match.group(1).capitalize(), + "org_name": match.group(2) + }, + "loser": { + "faction": match.group(3).capitalize(), + "org_name": match.group(4) + }, + "location": { + "playfield": { + "long_name": match.group(5) + } + } + }) + + if packet.extended_message and \ + [packet.extended_message.category_id, packet.extended_message.instance_id] == self.VICTORY_3: + params = packet.extended_message.params + return DictObject({ + "type": "terminated", + "winner": { + "faction": params[0].capitalize(), + "org_name": params[1] + }, + "loser": { + "faction": params[0].capitalize(), + "org_name": params[1] + }, + "location": { + "playfield": { + "long_name": params[2] + } + } + }) + + # Unknown victory + self.logger.warning("Unknown tower victory: " + str(packet)) + return None diff --git a/modules/raidbot/tower/tower_hot_controller.py b/modules/raidbot/tower/tower_hot_controller.py new file mode 100644 index 0000000..10c1a33 --- /dev/null +++ b/modules/raidbot/tower/tower_hot_controller.py @@ -0,0 +1,204 @@ +from core.aochat.BaseModule import BaseModule +from core.chat_blob import ChatBlob +from core.command_alias_service import CommandAliasService +from core.command_param_types import Options, Int, Any, Const, NamedParameters +from core.db import DB +from core.decorators import instance, command +from core.dict_object import DictObject +from core.event_service import EventService +from core.lookup.pork_service import PorkService +from core.public_channel_service import PublicChannelService +from core.text import Text +from core.tyrbot import Tyrbot +from core.util import Util +from modules.raidbot.tower.tower_service import TowerService +from modules.standard.helpbot.playfield_controller import PlayfieldController + + +@instance() +class TowerHotController(BaseModule): + PAGE_SIZE = 9 + + # noinspection DuplicatedCode + + def inject(self, registry): + self.bot: Tyrbot = registry.get_instance("bot") + self.db: DB = registry.get_instance("db") + self.util: Util = registry.get_instance("util") + self.text: Text = registry.get_instance("text") + self.event_service: EventService = registry.get_instance("event_service") + self.pork_service: PorkService = registry.get_instance("pork_service") + self.playfield_controller: PlayfieldController = registry.get_instance("playfield_controller") + self.public_channel_service: PublicChannelService = registry.get_instance("public_channel_service") + self.towercache: TowerService = registry.get_instance("tower_service") + self.command_alias_service: CommandAliasService = registry.get_instance("command_alias_service") + + def pre_start(self): + self.command_alias_service.add_alias('towers', "lc") + self.command_alias_service.add_alias('tower', "lc") + + @command(command="hot", + params=[Options(['tl1', 'tl2', 'tl3', 'tl4', 'tl5', 'tl6', 'tl7']), Any('faction', is_optional=True), + NamedParameters(["page"])], + access_level="member", + description="Shows hot playfields") + def hot_tl(self, _, tl, faction: str, named_params): + if faction: + if faction.startswith("--page="): + named_params = DictObject({'page': faction[7:]}) + faction = None + if faction is not None and faction.lower() not in ['omni', 'clan', 'neut', 'neutral']: + return f"Unknown faction: {faction}" + tl = tl[2:] + page = int(named_params.page or "1") + offset = (page - 1) * self.PAGE_SIZE + towers = self.towercache.get_towers_hot_tl(int(tl), faction) + return self.text.format_pagination(towers, offset, page, self.formatter, f"Hot Sites TL{tl} ({len(towers)})", + f"There are no hot sites for TL {tl}.", + f'hot tl{tl} {faction or ""}', 9) + + def formatter(self, row, _, data): + return self.towercache.format_entry(row, len(data)) + + @command(command="hot", + params=[Int('level', is_optional=True), Any('faction', is_optional=True), NamedParameters(["page"])], + access_level="member", + description="Shows hot playfields by level") + def hot_level(self, _, level, faction, named_params): + if faction: + if faction.startswith("--page="): + named_params = DictObject({'page': faction[7:]}) + faction = None + if faction is not None and faction.lower() not in ['omni', 'clan', 'neut', 'neutral']: + return f"Unknown faction: {faction}" + if level: + if level < 0 | level > 220: + return f"Level out of range: {level}" + page = int(named_params.page or "1") + offset = (page - 1) * self.PAGE_SIZE + towers = self.towercache.get_towers_hot_level(level, faction) + level = f"{level}" if level else "" + faction = f"{faction} " if faction else "" + return self.text.format_pagination(towers, offset, page, self.formatter, f"Hot Towersites ({len(towers)})", + f"There are no hot sites.", f'hot {level}{faction}', 9) + + @command(command="free", params=[], + access_level="member", + description="Shows hot playfields by level") + def free(self, _, ): + blob = "" + towers = [x for x in self.towercache.get_free() if x.short_name not in ['AND', 'GTC']] + for row in towers: + blob += self.towercache.format_entry(row, len(towers)) + + return ChatBlob(f"FREE Towersites ({len(towers)})", blob) if blob else f"No free towersites found." + + @command(command="lc", params=[], access_level="member", + description="See a list of land control tower sites in a particular playfield") + def lc(self, _): + hot, cold, unplanted = 0, 0, 0 + clan, omni, neut = 0, 0, 0 + last_pf = 0 + previous = {} + blob = "" + + def number(numb): + if numb < 10: + return f"0{numb}" + return numb + + for tower in self.towercache.get_towers_all(): + if tower.id != last_pf: + if last_pf == 0: + previous = tower + last_pf = tower.id + continue + blob += f"{number(hot)} {number(cold)} {number(unplanted)} :: " \ + f"{number(clan)} {number(neut)} {number(omni)} " \ + f"[{self.text.make_tellcmd(previous.short_name, f'lc {previous.long_name}')}] " \ + f"{previous.long_name}\n" + hot, cold, unplanted = 0, 0, 0 + clan, omni, neut = 0, 0, 0 + + previous = tower + last_pf = tower.id + + site = self.towercache.is_hot(tower) + if site == 0: + cold += 1 + elif site == -1: + unplanted += 1 + elif site == 1: + hot += 1 + faction = tower.get('faction', None) + if faction: + faction = faction.lower + if faction == "omni": + omni += 1 + elif faction == "clan": + clan += 1 + else: + neut += 1 + + return ChatBlob('All Tower Sites', blob) + + @command(command="lc", params=[Const("org"), Any("org_name", is_optional=True)], access_level="member", + description="See a list of land control tower sites in a particular playfield") + def lc_org(self, _, _1, org): + towers = [] + try: + org = int(org) + except ValueError: + pass + if type(org) == str: + orgs = self.db.query( + "SELECT * from all_orgs where org_name LIKE ? and org_id in " + "(SELECT org_id from towers group by org_id)", + [f"%{org.replace(' ', '%')}%"]) + if len(orgs) == 1: + towers = self.towercache.get_towers_by_org(orgs[0].org_id) + + elif len(orgs) == 0: + return "Your search returned no orgs." + else: + blob = "Your search had multiple results; please pick an org:
" + for org in orgs: + blob += "[%s] %s (%s) <%s>%s [%s " \ + "members]
" \ + % (self.text.make_chatcmd("Towers", "/tell lc org %s" % org.org_id), + org.org_name, org.org_id, org.faction.lower(), org.faction, org.member_count) + return ChatBlob("Pick an Org", blob) + elif type(org) == int: + if len(self.db.query("SELECT org_id from all_orgs where org_id=?", [int(org)])) == 0: + return "Your search returned no orgs." + else: + towers = self.towercache.get_towers_by_org(org) + + title = f"Towersites of the org {org}" + + blob = "" + for tower in towers: + blob += self.towercache.format_entry(tower, len(towers)) + + return ChatBlob(title, blob) + + @command(command="lc", params=[Any("playfield"), Int("site_number", is_optional=True)], access_level="member", + description="See a list of land control tower sites in a particular playfield") + def lc_playfield(self, _, playfield_name, site_number): + playfield = self.playfield_controller.get_playfield_by_name(playfield_name) + if not playfield: + return "Could not find playfield %s." % playfield_name + if site_number: + title = f"Tower site x{site_number} in {playfield.long_name}" + towers = self.towercache.get_towers_by_pf_site(playfield.id, site_number) + else: + title = f"Tower sites in {playfield.long_name}" + towers = self.towercache.get_towers_by_pf(playfield.id) + + blob = "" + for tower in towers: + blob += self.towercache.format_entry(tower, len(towers)) + if site_number: + blob += "More to come... stay tuned." + + return ChatBlob(title, blob) diff --git a/modules/raidbot/tower/tower_service.py b/modules/raidbot/tower/tower_service.py new file mode 100644 index 0000000..1c56dee --- /dev/null +++ b/modules/raidbot/tower/tower_service.py @@ -0,0 +1,342 @@ +import sys +import time + +from mysql.connector.cursor import CursorBase +from requests import Session + +from conf.config import BotConfig +from core.aochat.BaseModule import BaseModule +from core.db import DB +from core.decorators import instance, timerevent, event +from core.job_scheduler import JobScheduler +from core.text import Text +from core.tyrbot import Tyrbot +from core.util import Util +from modules.raidbot.tower.tower_controller import TowerController +from modules.standard.helpbot.playfield_controller import PlayfieldController + + +@instance() +class TowerService(BaseModule): + # [{'org_name': "Dragons", 'hot': time.time() + 60 * 60}, {'org_name': "Most Wanted", 'hot': time.time() + 60 * 60}] + attack_hot = [] + plant = [] + + def inject(self, registry): + self.bot: Tyrbot = registry.get_instance("bot") + self.db: DB = registry.get_instance("db") + self.util: Util = registry.get_instance("util") + self.text: Text = registry.get_instance("text") + self.playfield_controller: PlayfieldController = registry.get_instance("playfield_controller") + self.job_scheduler: JobScheduler = registry.get_instance("job_scheduler") + + mod = __import__(f'conf.{sys.argv[1]}', fromlist=['BotConfig']) + config: BotConfig = getattr(mod, 'BotConfig') + if hasattr(config, "tower_url"): + self.tower_url = config.tower_url + else: + self.tower_url = None + + def pre_start(self): + self.db.shared.exec("CREATE TABLE IF NOT EXISTS towers(" + "pf_id int not null, " + "site_number int not null," + "ql int," + "x_coord int not null," + "y_coord int not null," + "org_id int," + "org_name varchar(255), " + "faction varchar(32), " + "close_time int," + "planted int," + "enabled tinyint, " + "PRIMARY KEY (pf_id, site_number), " + "INDEX ql(ql), INDEX close(close_time), " + "INDEX planted(planted), INDEX enabled(enabled)) ENGINE MEMORY") + self.db.create_view("towers") + + @event(event_type=TowerController.TOWER_ATTACK_EVENT, description="Track planthot", is_hidden=True) + def tower_attack(self, _, event_data): + if event_data.attacker.get("org_id", None): + self.attack_hot.append({'org_name': event_data.attacker.org_name, 'hot': time.time() + 60 * 60}) + + @event(event_type=TowerController.TOWER_VICTORY_EVENT, description="Send NW warnings") + def victory(self, _, event_data): + t = int(time.time()) + if event_data.type == "attack": + row = self.get_last_attack(event_data.winner.faction, event_data.winner.org_name, event_data.loser.faction, + event_data.loser.org_name, event_data.location.playfield.id, t) + self.send_nw_warn(0, + f'<{event_data.loser.faction.lower()}>' + f'{event_data.loser.org_name}' + f'' + f' Lost their Site at {event_data.location.playfield.short_name} x{row.site} - ' + f'<{event_data.winner.faction.lower()}>' + f'{event_data.winner.org_name}' + f' won!!') + self.plant.append({'pf': row.pf_id, 'site': row.site, 'plant': time.time() + 20 * 60 - 1}) + self.prepare_nw_warn(row.pf_id, row.site) + + elif event_data.type == "terminated": + field = self.db.query("SELECT * FROM towers t where t.org_name=? and t.pf_id=?", + [event_data.loser.org_name, event_data.playfield.id]) + if len(field) == 1: + field = field[0] + self.plant.append({'pf': event_data.location.playfield.id, + 'site': field.site_number, + 'plant': time.time() + 20 * 60 - 1}) + self.send_nw_warn(0, f'<{event_data.loser.faction.lower()}>' + f'{event_data.loser.org_name}' + f' Lost their Site at ' + f'{event_data.location.playfield.short_name} x{field.site_number}') + self.prepare_nw_warn(event_data.location.playfield.id, field.site_number) + return + self.plant.append({'pf': event_data.location.playfield.id, + 'site': f"(UKN) PO: {event_data.loser.org_name}|{event_data.loser.faction}", + 'plant': time.time() + 20 * 60 - 1}) + + self.send_nw_warn(0, + f'<{event_data.loser.faction.lower()}>' + f'{event_data.loser.org_name}' + f' ' + f'Lost their Site in {event_data.location.playfield.long_name}') + self.prepare_nw_warn(event_data.playfield.id, "(UKN)", + f"(UKN) PO: {event_data.loser.org_name}|{event_data.loser.faction}") + + @timerevent(budatime="4h", description="fetch the towerAPI cache", is_enabled=False) + def fetch_tower_update(self, _1, _2): + if self.tower_url: + # + # ONLY Access the API's via Tor... Tyrence is shadow-banning every IP Subnet + # accessing it multiple times/hour whenever the limit parameter is being used.... + # ?limit is a parameter not documented anywhere, but allows pulling the whole list + # On other API implementations this parameter has no effect, + # as the server always responds with the full list. + from torpy.http.requests import TorRequests + with TorRequests() as tor_request: + with tor_request.get_session(1) as session: + session: Session + r = session.get(self.tower_url) + if not r: + return + if data := r.json()["results"]: + blob = [] + for row in data: + blob.append((row["playfield_id"], row["site_number"], row["ql"], + row["x_coord"], row["y_coord"], + row["org_id"], row['org_name'], row['faction'], + row["close_time"], row["created_at"], + row["enabled"])) + + with self.db.lock: + with self.db.pool.get_connection() as conn: + with conn.cursor(dictionary=True) as cur: + cur: CursorBase + cur.executemany( + "INSERT INTO towers (pf_id, site_number, " + "ql, x_coord, y_coord, org_id, org_name, " + "faction, close_time, planted, enabled) " + "VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) ON DUPLICATE KEY UPDATE " + "org_id=VALUE(org_id), " + "org_name=VALUE(org_name), " + "faction=VALUE(faction), " + "close_time=VALUE(close_time)," + "ql=VALUE(ql)," + "planted=VALUE(planted) ", blob) + rem = [] + for key, value in enumerate(sorted(self.attack_hot, key=lambda k: k['hot'])): + if value['hot'] < time.time(): + rem.append(key) + for key in reversed(rem): + self.attack_hot.pop(key) + + def day_time(self, day_t): + if day_t > 86400: + day_t -= 86400 + elif day_t < 0: + day_t += 86400 + return day_t + + def get(self, where_order="", param=None): + if param is None: + param = [] + return self.db.query(f"SELECT a.org_id, a.planted, a.close_time, a.ql, a.org_name, a.faction, " + f"b.min_ql, b.max_ql, b.site_name, b.site_number, b.x_coord, b.y_coord, " + f"c.id, c.long_name, c.short_name, " + f"e.pvp_min, e.pvp_max " + f"FROM towers a " + f"INNER JOIN tower_site b ON a.site_number=b.site_number " + f"LEFT JOIN playfields c ON a.pf_id = c.id " + f"LEFT JOIN level e ON e.level = a.ql " + f"WHERE a.pf_id = b.playfield_id and enabled = 1 " + f"{where_order}", param) + + def get_towers_by_tl(self, tl, faction=None): + min_ql, max_ql = self.util.get_level_range_tl(tl) + if faction: + return self.get("and ql between ? and ? and faction LIKE ? order by c.short_name", + [min_ql, max_ql, faction]) + return self.get("and ql between ? and ? order by c.short_name", [min_ql, max_ql]) + + def get_towers_all(self): + return self.get("order by c.long_name", []) + + def get_towers_by_pf(self, pf): + return self.get("and a.pf_id=? order by a.site_number", [pf]) + + def get_towers_by_pf_site(self, pf, site): + return self.get("and a.pf_id=? and a.site_number=?", [pf, site]) + + def get_towers_by_org(self, org): + return self.get("and a.org_id" + "=? order by c.long_name", [org]) + + def get_towers_by_org_name(self, org): + return self.get("and a.org_name=? order by c.long_name", [org]) + + def get_free(self): + return self.get("and a.org_id IS NULL order by a.site_number", []) + + def get_towers_hot_tl(self, tl, faction=None): + towers = self.get_towers_by_tl(tl, faction) + out = [] + + for tower in towers: + if self.is_hot(tower) in [1, 2]: + out.append(tower) + return out + + def get_towers_hot_level(self, level, faction=None): + out = [] + + if level: + if faction: + towers = self.get("and pvp_min <= ? and pvp_max >= ? and faction LIKE ?", [level, level, faction]) + else: + towers = self.get("and pvp_min <= ? and pvp_max >= ?", [level, level]) + + else: + if faction: + towers = self.get("and faction LIKE ?", [faction]) + else: + towers = self.get() + + for tower in towers: + if self.is_hot(tower) in [1, 2]: + out.append(tower) + return out + + def format_entry(self, entry, _): + h3 = "" + now = self.day_time(int(time.time()) % 86400) + row0 = f"Site: {entry.short_name} x{entry.site_number} " \ + f"[R:{entry.min_ql} - {entry.max_ql}] " \ + f"[{self.text.make_tellcmd('More', f'lc {entry.short_name} {entry.site_number}')}]\n" + row1 = f'UKN :: No Owner -> Unplanted\n' + row2 = "" + row3 = "\n" + hot = self.is_hot(entry) + if hot != -1: + h1 = "COLD" + if hot == 2: + h1 = "WARHOT" + for org in self.attack_hot: + if org['org_name'] == entry.org_name: + hot_normal = self.is_hot(entry, False) + # print(hot, hot_normal, org['hot'] - now) + if hot_normal == 1: + h3 = f"COLD in " \ + f"{self.util.format_time(self.day_time(int(entry.close_time - now)))}" + if hot_normal == 0: + h3 = f"COLD in {self.util.format_time(org['hot'] - now)}" + + elif hot == 1: + h1 = 'HOT' + h3 = f"COLD in {self.util.format_time(self.day_time(int(entry.close_time - now)))}" + else: + hot_time = self.day_time(entry.close_time - 6 * 60 * 60) + h3 = f"HOT in " \ + f"{self.util.format_time((18 * 80 * 60 - hot_time) if hot_time > 18 * 60 * 60 else hot_time)}" + org = f"<{entry.faction.lower()}>{entry.org_name} " \ + f"[{self.text.make_tellcmd('View org', f'lc org {entry.org_name}')}]" + row1 = f"{h1} :: {h3} :: {org} :: \n" + row3 = f" » Planted: {self.util.format_datetime(entry.planted)}
\n\n" + if entry.pvp_min: + pvp = f"[{entry.pvp_min} - {entry.pvp_max}]" + else: + pvp = f"[175 - 220]" + # noinspection LongLine + row2 = f" » QL: {entry.ql} PvP: {pvp} " \ + f"[{self.text.make_chatcmd(f'{entry.x_coord} x {entry.y_coord}', f'/waypoint {entry.x_coord} {entry.y_coord} {entry.id}')}]\n" + return row0 + row1 + row2 + row3 + "" + + def is_hot(self, entry, with_war=True) -> int: + if entry.get("close_time", None): + now = self.day_time((time.time()) % 86400) + self.attack_hot.sort(key=lambda k: k['org_name']) + rem = [] + inside = False + for index, i in enumerate(self.attack_hot): + if i['hot'] < time.time(): + rem.append(index) + continue + if i['org_name'] == entry.org_name: + inside = True + for index in reversed(rem): + self.attack_hot.pop(index) + if inside and with_war: + return 2 + if self.day_time(entry.close_time - int(now)) > 6 * 60 * 60: + return 0 + return 1 + return -1 + + def get_last_attack(self, att_faction, att_org_name, def_faction, def_org_name, playfield_id, t): + last_updated = t - (8 * 3600) + is_finished = 1 + + sql = """ + SELECT + b.id AS battle_id, + a.id AS attack_id, + b.playfield_id as pf_id, + b.site_number as site + FROM + tower_battle b + JOIN tower_attacker a ON + a.tower_battle_id = b.id + WHERE + a.att_faction = ? + AND a.att_org_name = ? + AND b.def_faction = ? + AND b.def_org_name = ? + AND b.playfield_id = ? + AND b.is_finished = ? + AND b.last_updated >= ? + ORDER BY + last_updated DESC + LIMIT 1""" + + return self.db.query_single(sql, + [att_faction, att_org_name, def_faction, def_org_name, playfield_id, is_finished, + last_updated]) + + def prepare_nw_warn(self, pf_id, site, bonus=""): + pf = self.playfield_controller.get_playfield_by_id(pf_id) + site = f"{pf.short_name} » x{site}" + bonus + self.job_scheduler.delayed_job(self.send_nw_warn, 0, f"{site} plantable in 20 minutes!") + self.job_scheduler.delayed_job(self.send_nw_warn, 10 * 60 - 1, f"{site} plantable in 10 minutes!") + self.job_scheduler.delayed_job(self.send_nw_warn, 15 * 60 - 1, f"{site} plantable in 5 minutes!") + self.job_scheduler.delayed_job(self.send_nw_warn, 19 * 60 - 1, f"{site} plantable in 1 minute!") + self.job_scheduler.delayed_job(self.send_nw_warn, 19 * 60 + 30 - 1, f"{site} plantable in 30 seconds!") + self.job_scheduler.delayed_job(self.send_nw_warn, 19 * 60 + 45 - 1, f"{site} plantable in 15 seconds!") + self.job_scheduler.delayed_job(self.send_nw_warn, 19 * 60 + 50 - 1, f"{site} plantable in 10 seconds!") + self.job_scheduler.delayed_job(self.send_nw_warn, 19 * 60 + 55 - 1, f"{site} plantable in 5 seconds!") + self.job_scheduler.delayed_job(self.send_nw_warn, 19 * 60 + 56 - 1, f"{site} plantable in 4 seconds!") + self.job_scheduler.delayed_job(self.send_nw_warn, 19 * 60 + 57 - 1, f"{site} plantable in 3 seconds!") + self.job_scheduler.delayed_job(self.send_nw_warn, 19 * 60 + 58 - 1, f"{site} plantable in 2 seconds!") + self.job_scheduler.delayed_job(self.send_nw_warn, 19 * 60 + 59 - 1, f"{site} plantable in 1 second!") + self.job_scheduler.delayed_job(self.send_nw_warn, 20 * 60 - 1, f"{site} plantable NOW!") + + def send_nw_warn(self, _, msg): + self.bot.send_private_channel_message(f"[NW] {msg}") diff --git a/modules/raidbot/tower/tower_site.sql b/modules/raidbot/tower/tower_site.sql new file mode 100644 index 0000000..638147b --- /dev/null +++ b/modules/raidbot/tower/tower_site.sql @@ -0,0 +1,278 @@ +# noinspection LongLineForFile + +DROP TABLE IF EXISTS tower_site; +CREATE TABLE tower_site +( + playfield_id INT NOT NULL, + site_number SMALLINT NOT NULL, + min_ql SMALLINT NOT NULL, + max_ql SMALLINT NOT NULL, + x_coord SMALLINT NOT NULL, + y_coord SMALLINT NOT NULL, + site_name varchar(50) NOT NULL, + PRIMARY KEY (playfield_id, site_number) +); +INSERT INTO tower_site (playfield_id, site_number, min_ql, max_ql, x_coord, y_coord, site_name) +VALUES (505, 1, 60, 90, 2740, 4260, 'Griffon Frontier'), + (505, 2, 80, 110, 540, 4180, 'Draught'), + (505, 3, 70, 95, 1740, 3460, 'Dreadfire Volcano'), + (505, 4, 80, 120, 2780, 3420, 'Northeast Barren Lands'), + (505, 5, 60, 90, 580, 3140, 'Western Desert'), + (505, 6, 50, 75, 2420, 1900, 'Waylander Mines'), + (505, 7, 70, 100, 1860, 1700, 'North of Main Omni Base'), + (505, 8, 61, 82, 460, 1380, 'Dome Ore'), + (505, 9, 100, 150, 2700, 620, 'Crystal Forge Volcano'), + (505, 10, 100, 150, 660, 460, 'SW Low Plateau'), + (550, 1, 10, 20, 2660, 2020, 'Sifter Beach'), + (550, 2, 20, 30, 1780, 1780, 'Academy Ore'), + (550, 3, 15, 25, 1980, 1340, 'Athen Fault'), + (550, 4, 10, 20, 2660, 820, 'Grindmoore'), + (550, 5, 15, 23, 1380, 380, 'Gladius Grove'), + (551, 1, 40, 90, 1700, 3700, 'Styx Magma'), + (551, 2, 35, 50, 2220, 3340, 'Carbon Grove'), + (551, 3, 26, 50, 980, 3140, 'Between the Craters'), + (551, 4, 25, 35, 340, 2420, 'Powdered Dunes'), + (551, 5, 32, 45, 2540, 2060, 'Dust Bank'), + (551, 6, 20, 30, 580, 1740, 'Charred Groove'), + (551, 7, 12, 45, 940, 1540, 'West of Perdition'), + (551, 8, 15, 30, 660, 900, 'North of Yuttos'), + (560, 1, 100, 170, 1500, 3420, 'Terraform Edge'), + (560, 2, 170, 250, 3060, 3020, 'West Spirals'), + (560, 3, 170, 250, 3500, 2980, 'East Spirals'), + (560, 4, 130, 170, 1220, 2220, 'Middle Mort Desert'), + (560, 5, 1, 100, 900, 1460, 'Green Crater'), + (560, 6, 110, 160, 3100, 1460, 'Oasis Ore'), + (560, 7, 150, 200, 2740, 700, 'South East Craterwall'), + (560, 8, 100, 150, 540, 540, 'South West Craterwall'), + (560, 9, 160, 210, 2780, 540, 'Stormshelter'), + (565, 1, 25, 40, 2940, 2900, 'Rich Desert Ridge'), + (565, 2, 30, 45, 1980, 2580, 'East of Meetmedere'), + (565, 3, 50, 75, 540, 2020, 'Middle of Western Desert'), + (565, 4, 40, 60, 2580, 1940, 'North of Rhino Village'), + (565, 5, 40, 60, 2700, 1260, 'South of Rhino Village'), + (567, 1, 12, 20, 1220, 1060, 'In the Newland Desert'), + (567, 2, 15, 25, 540, 460, 'West of Newland Lake'), + (570, 1, 200, 300, 3220, 3020, 'North of Cyborg Hideout'), + (570, 2, 191, 250, 3780, 2540, 'Middle of Liberty'), + (570, 3, 120, 180, 980, 2060, 'South of Sabulum'), + (570, 4, 190, 230, 3940, 2060, 'Cyborg Border'), + (570, 5, 200, 300, 2820, 1820, 'Middle of Perpetual Wastelands'), + (570, 6, 200, 300, 3740, 1700, 'South of Cyborg Hideout'), + (570, 7, 100, 150, 1500, 1340, 'Lower Plateu Zone'), + (570, 8, 100, 150, 2100, 1380, 'The Mid Canyon Crossing'), + (570, 9, 120, 180, 3020, 1220, 'Plains of dust'), + (570, 10, 100, 150, 900, 1060, 'West of Canyon'), + (570, 11, 100, 150, 3180, 940, 'The Canyon Mines'), + (570, 12, 190, 230, 2300, 780, 'South of Canyon'), + (585, 1, 40, 60, 1220, 2740, 'Northern Wastelands'), + (585, 2, 11, 16, 2180, 2580, 'West Wastelands'), + (585, 3, 40, 55, 1020, 2460, 'Mid Wastelands'), + (585, 4, 30, 45, 2140, 1660, 'Giant Green River Bank North'), + (585, 5, 11, 16, 1180, 1340, 'West of the Dead Forest'), + (585, 6, 30, 45, 2100, 1340, 'Giant Green River Bank South'), + (585, 7, 15, 22, 1420, 1020, 'Canyon East'), + (585, 8, 25, 35, 820, 780, 'Canyon South'), + (585, 9, 35, 50, 900, 460, 'By the River'), + (590, 1, 140, 200, 1740, 3100, 'By the Fisher Village'), + (590, 2, 140, 200, 2100, 3060, 'Fisher Village Approach'), + (590, 3, 100, 170, 2900, 2820, 'North Forest'), + (590, 4, 90, 130, 3340, 2700, 'North-east Forest'), + (590, 5, 130, 170, 860, 1220, 'North-west of Lava Ditches'), + (590, 6, 100, 150, 3100, 980, 'Mid Clutching Forest'), + (590, 7, 130, 170, 860, 780, 'South-west of Lava Ditches'), + (590, 8, 100, 150, 3180, 620, 'South Clutching Forest'), + (595, 1, 100, 150, 1140, 3380, 'Old ruins'), + (595, 2, 100, 150, 3180, 2900, 'Plains of defense'), + (595, 3, 130, 180, 1740, 2300, 'The haunted forest outskirt'), + (595, 4, 130, 180, 900, 2220, 'Forest of Xzawkaz'), + (595, 5, 200, 300, 2260, 1860, 'In the Swamp of Horrors'), + (595, 6, 130, 180, 1420, 1500, 'Island of Control'), + (595, 7, 130, 180, 1340, 1140, 'The swamp of hope'), + (595, 8, 200, 300, 2900, 1100, 'South of the Medusa'), + (595, 9, 140, 210, 2140, 780, 'Middle of the Foul Forest'), + (595, 10, 200, 300, 540, 540, 'Southern Forest of Xzawkaz'), + (600, 1, 30, 45, 2420, 2980, 'By the Rivers Edge'), + (600, 2, 50, 75, 620, 2900, 'North Forest Road'), + (600, 3, 25, 50, 1300, 2660, 'Along the Rivers Edge'), + (600, 4, 30, 45, 3740, 2500, 'East Forest'), + (600, 5, 25, 50, 3140, 2020, 'Rhino Hills'), + (600, 6, 50, 75, 580, 1700, 'West Forest'), + (600, 7, 60, 90, 1940, 1620, 'Crossroads'), + (600, 8, 60, 90, 1140, 1500, 'Forestdawn'), + (600, 9, 50, 75, 3220, 1140, 'East of Crater'), + (605, 1, 160, 200, 2940, 2820, 'Forest Waters'), + (605, 2, 110, 120, 1100, 2620, 'Muddy Pools'), + (605, 3, 100, 150, 1700, 2300, 'West of Wine'), + (605, 4, 120, 180, 2940, 2260, 'East of Wine'), + (605, 5, 130, 195, 1900, 1740, 'Central Belial Forest'), + (605, 6, 130, 190, 2500, 1660, 'River Delta'), + (605, 7, 160, 200, 2540, 1220, 'Junction Forest'), + (605, 8, 100, 150, 2340, 860, 'Borderline'), + (605, 9, 120, 180, 2020, 420, 'Southern belial Mine'), + (605, 10, 140, 200, 620, 380, 'Southwest Belial Mining District'), + (610, 1, 60, 90, 1380, 2780, 'Tetlies Land control area'), + (610, 2, 80, 120, 2900, 2660, 'East of the Great Marsh'), + (610, 3, 60, 90, 660, 2460, 'West of outpost 10-3'), + (610, 4, 100, 150, 2300, 2020, 'Defense of Geholva'), + (610, 5, 106, 143, 2740, 1180, 'South of Forest of Geholva'), + (610, 6, 120, 180, 860, 900, 'Avid Crater'), + (610, 7, 120, 180, 1540, 900, 'East of Avid Crater'), + (610, 8, 100, 150, 2460, 540, 'Bendelham forest Defense'), + (615, 1, 60, 100, 1900, 3020, 'North of Lenne'), + (615, 2, 100, 150, 860, 2820, 'Little Hawaii Defense'), + (615, 3, 90, 120, 2620, 2660, 'Defense of Zoto'), + (615, 4, 60, 100, 900, 2100, 'By the Ocean'), + (615, 5, 61, 100, 2300, 1180, 'Birm'), + (615, 6, 120, 180, 2700, 660, 'SFH Defense'), + (615, 7, 100, 150, 1860, 500, 'South in Nightplain'), + (620, 1, 150, 200, 2700, 3860, 'Krud the Lost Valley Defense'), + (620, 2, 150, 225, 1900, 3180, 'Pranade'), + (620, 3, 120, 180, 620, 2980, 'Plains of Jarga Defense'), + (620, 4, 200, 300, 2460, 2260, 'Old Plains'), + (620, 5, 200, 300, 1540, 1780, 'Middle of Easter Fouls Plains'), + (620, 6, 130, 200, 1540, 1140, 'Clefre Defense'), + (620, 7, 100, 150, 2020, 860, 'Central Sharewood'), + (620, 8, 200, 300, 820, 540, 'Pegradul'), + (625, 1, 90, 130, 1460, 1940, 'The Resilient Forest - North'), + (625, 2, 90, 120, 1900, 1540, 'The Resilient Forest - East'), + (625, 3, 125, 170, 2780, 1380, 'Central Prowler Waste'), + (625, 4, 100, 125, 1380, 1180, 'Central Resilient Forest'), + (625, 5, 125, 170, 2860, 1020, 'Southern Prowler Waste'), + (625, 6, 100, 150, 4020, 980, 'The Barren Hills'), + (625, 7, 100, 125, 1740, 860, 'The Resilient Forest - South'), + (625, 8, 50, 75, 2460, 540, 'The Silent Woods - East'), + (630, 1, 40, 60, 1540, 2660, 'Pleasant Range Offense Hill'), + (630, 2, 60, 90, 2380, 2500, 'Central Pleasant Range'), + (630, 3, 50, 75, 580, 2420, 'West of 20K'), + (630, 4, 30, 70, 3220, 2220, 'Pleasant Range Defense'), + (630, 5, 60, 90, 3220, 1980, 'Pleasant River Defense'), + (630, 6, 60, 90, 3260, 1500, 'Pleasant River Offense'), + (630, 7, 40, 60, 2260, 1140, 'Central Pleasant Plains'), + (630, 8, 30, 70, 3020, 1020, 'East Pleasant Plains'), + (630, 9, 30, 45, 740, 460, 'West of Versailles Tower'), + (635, 1, 55, 70, 700, 2420, 'Northern River Bank'), + (635, 2, 60, 90, 1780, 2460, 'Hawker Trench'), + (635, 3, 70, 105, 1460, 1740, 'Klapam Forest Defense'), + (635, 4, 55, 70, 2020, 1740, 'Klompfot Defense'), + (635, 5, 70, 105, 1900, 1220, 'South of Trench'), + (635, 6, 80, 120, 1140, 940, 'Nile Hills'), + (635, 7, 55, 70, 1780, 700, 'Aprils Rock Offense'), + (635, 8, 80, 150, 820, 420, 'Southern Lower River Bank'), + (635, 9, 80, 150, 1700, 340, 'Aprils Rock Defense'), + (646, 1, 10, 15, 460, 1300, 'Great W. Forest Vein'), + (646, 2, 10, 15, 2940, 980, 'The Hidden Notum Canal'), + (646, 3, 20, 30, 3220, 620, 'Mountain Areas'), + (646, 4, 10, 15, 580, 580, 'Great W. Forest Dorsal'), + (646, 5, 10, 15, 1500, 460, 'Western Mountain Areas'), + (647, 1, 90, 135, 1100, 3100, 'The Mineral Mine'), + (647, 2, 20, 30, 2900, 2940, 'NE Desert Aperient'), + (647, 3, 37, 64, 1900, 2700, 'SurroundingTemple of Three Winds'), + (647, 4, 25, 40, 2220, 1900, 'Piercing Thundertube'), + (647, 5, 30, 45, 2820, 1940, 'Central Striking Ant'), + (647, 6, 25, 40, 620, 1660, 'Tir Prairie'), + (647, 7, 25, 40, 1180, 1700, 'Crater Swamp'), + (650, 1, 50, 75, 540, 2820, 'West Pass'), + (650, 2, 65, 75, 900, 2300, 'Crowning Shallows'), + (650, 3, 100, 150, 1660, 2180, 'Haven Notum Crematorium'), + (650, 4, 70, 140, 2020, 1740, 'Stret Vale Deux Drilling Field'), + (650, 5, 120, 180, 1340, 1620, 'The Flooded Bottomland'), + (650, 6, 75, 90, 1820, 740, 'Stret Woods'), + (650, 7, 60, 90, 940, 420, 'Greenslopes'), + (655, 1, 30, 45, 420, 2700, 'Skop Notum Mine'), + (655, 2, 30, 80, 2820, 2340, 'Klor'), + (655, 3, 60, 80, 2820, 1660, 'Harstad'), + (655, 4, 40, 90, 540, 1580, 'Ubleo'), + (655, 5, 40, 60, 1420, 1580, 'Flubu Notum Mine'), + (655, 6, 40, 70, 4340, 900, 'Plago'), + (655, 7, 60, 80, 2260, 380, 'jucha'), + (655, 8, 70, 105, 4380, 380, 'Mune'), + (655, 9, 30, 60, 820, 340, 'Mocnuf Notum Mine'), + (665, 1, 80, 150, 940, 4820, 'Central Desert north'), + (665, 2, 45, 75, 1260, 3860, 'Notum Disruption Mountain'), + (665, 3, 75, 110, 1940, 3860, 'The Notum Plains'), + (665, 4, 100, 150, 940, 3380, 'Near Clan Outpost'), + (665, 5, 45, 80, 1300, 3060, 'Central Mountains'), + (665, 6, 55, 150, 380, 2300, 'Surrounding Evil'), + (665, 7, 45, 60, 1260, 2140, 'Notum Mountain'), + (665, 8, 55, 100, 2020, 1980, 'Near Omni-Tek Outpost'), + (665, 9, 100, 150, 420, 820, 'Shores Notum Vein'), + (670, 1, 30, 45, 1100, 4340, 'Yukon Source'), + (670, 2, 35, 50, 1460, 2540, 'Frisko'), + (670, 3, 30, 45, 2140, 2420, 'Round Hills'), + (670, 4, 50, 75, 2140, 1900, 'Dense Drewen'), + (670, 5, 35, 50, 1260, 1820, 'Borrowed Hill'), + (670, 6, 35, 50, 1340, 1340, 'Narrow Lune'), + (670, 7, 10, 15, 2500, 1220, 'Micron Slopes Notum Mine'), + (670, 8, 50, 75, 2100, 540, 'High Juniper'), + (670, 9, 50, 75, 2300, 460, 'High Juniper Notum Vein'), + (685, 1, 35, 50, 2140, 2620, 'Nature Reverve - East'), + (685, 2, 35, 50, 1900, 2580, 'Nature Reverve - West'), + (685, 3, 50, 75, 1300, 1900, 'Poole - West'), + (685, 4, 50, 75, 1580, 1820, 'Poole - East'), + (685, 5, 15, 25, 1140, 1100, 'V-Hill'), + (685, 6, 20, 30, 1580, 700, 'Lunder Hills - North'), + (685, 7, 25, 40, 2740, 460, 'Galway hills'), + (685, 8, 20, 30, 1220, 380, 'Lunder Hills'), + (685, 9, 25, 40, 2260, 380, 'South-east Woods'), + (687, 1, 10, 15, 500, 1900, 'Blossom Valley'), + (687, 2, 10, 15, 380, 1300, 'Konty Passage Plains'), + (687, 3, 17, 28, 900, 1220, 'Vas'' Pass'), + (687, 4, 15, 25, 780, 900, 'Arthur''s Pass'), + (687, 5, 10, 15, 380, 580, 'Kontys Sixth Passage - West'), + (687, 6, 10, 15, 620, 540, 'Kontys Sixth Passage - East'), + (695, 1, 30, 45, 940, 3260, 'North West Lush Fields'), + (695, 2, 20, 30, 2420, 3180, 'North East Lush Fields'), + (695, 3, 10, 40, 3460, 2940, 'Stret River Island'), + (695, 4, 40, 60, 1260, 2460, 'West of Outpost'), + (695, 5, 35, 60, 1740, 2460, 'East of Outpost'), + (695, 6, 20, 30, 1780, 1820, 'Central Lush Fields'), + (695, 7, 10, 15, 2860, 420, 'South East Lush Fields'), + (695, 8, 30, 45, 980, 380, 'South West Lush Fields'), + (696, 1, 15, 25, 780, 1420, 'Mutant Domain North'), + (696, 2, 20, 30, 500, 860, 'Mutant Domain Central'), + (696, 3, 25, 40, 780, 460, 'Mutant Domain South'), + (716, 1, 20, 35, 500, 3220, 'Northern Grassland'), + (716, 2, 15, 30, 980, 3020, 'Moderate Grassland'), + (716, 3, 10, 20, 460, 2180, 'Dungeon Hilltop'), + (716, 4, 10, 15, 700, 2180, 'Rocky Upsurge'), + (716, 5, 15, 25, 340, 1420, 'Northern Easy Swamps Notum Field'), + (716, 6, 15, 26, 460, 820, 'Ocean Inlet'), + (717, 1, 30, 45, 1620, 2660, 'Greater Omni Forest Swamps'), + (717, 2, 15, 25, 1180, 2460, 'Dragonback Ridge'), + (717, 3, 30, 45, 1900, 1820, 'Mountainous Regions'), + (717, 4, 20, 35, 1860, 1340, 'Waterfall Swamp'), + (717, 5, 10, 15, 1500, 1300, 'Greater Omni Forest South'), + (717, 6, 25, 40, 900, 1220, 'Northern Semi-Barren Area'), + (717, 7, 10, 25, 1940, 900, 'Ring Mountain Range'), + (717, 8, 14, 25, 940, 460, 'Southern Isle'), + (760, 1, 60, 90, 1580, 2380, 'Notum Ore in Buttu'), + (760, 2, 35, 50, 940, 2020, 'Mountain of Fourtyone'), + (760, 3, 35, 50, 1300, 1980, 'Mountain in 4Holes'), + (760, 4, 45, 60, 1660, 1740, 'South of Ahenus'), + (760, 5, 70, 100, 1820, 1340, 'Ibreri Woods North'), + (760, 6, 35, 50, 1460, 1260, 'Mountain of Fourtytwo'), + (760, 7, 100, 150, 1740, 1060, 'Ibreri Woods'), + (760, 8, 45, 70, 1180, 500, 'Ibreri'), + (760, 9, 45, 70, 460, 420, 'Jall Mountain'), + (790, 1, 20, 30, 1700, 3100, 'Hells Courtyard'), + (790, 2, 15, 25, 2300, 2860, 'Pondus Beach'), + (790, 3, 15, 30, 1700, 2780, 'Hound Land'), + (790, 4, 20, 40, 1980, 2780, 'Hound Notum Field'), + (790, 5, 20, 30, 1700, 1940, 'East Mutie'), + (790, 6, 12, 30, 1340, 1220, 'Omni Outpost'), + (790, 7, 20, 30, 660, 1180, 'South Mutie'), + (790, 8, 30, 60, 2260, 1140, 'The Beach'), + (791, 1, 15, 26, 420, 2020, 'Populous Mountain'), + (791, 2, 12, 22, 660, 1500, 'Hound Land Mining'), + (791, 3, 12, 20, 220, 1060, 'Stret West Notum Ore'), + (791, 4, 10, 15, 740, 820, 'Snake Mountain'), + (791, 5, 20, 40, 780, 460, 'Southern Empty Wastes and Roads'), + (791, 6, 10, 20, 380, 340, 'Transit Valley Ore'), + (795, 1, 40, 60, 4220, 1580, 'Illuminati'), + (795, 2, 100, 150, 500, 1540, 'Northern Forest of Illuminations'), + (795, 3, 25, 50, 3420, 1540, 'Fate Notum Field'), + (795, 4, 71, 120, 580, 820, 'Pegrama'), + (795, 5, 84, 120, 1220, 700, 'Grazeland Notum Field'), + (795, 6, 50, 75, 4020, 620, 'Winterbottom'), + (795, 7, 90, 120, 540, 500, 'Southern Forest of Illuminations'), + (795, 8, 60, 90, 2900, 500, 'Summer'); \ No newline at end of file diff --git a/modules/relaybot/online/command_controller.py b/modules/relaybot/online/command_controller.py new file mode 100644 index 0000000..5d90999 --- /dev/null +++ b/modules/relaybot/online/command_controller.py @@ -0,0 +1,19 @@ +from core.command_service import CommandService +from core.decorators import instance + + +@instance(name="command_service", override=True) +class CustomCommandService(CommandService): + def inject(self, registry): + super().inject(registry) + + def handle_unknown_command(self, command_str: str, command_args, channel, sender, reply): + if command_str.startswith('agcr'): + return + else: + self.relay_hub_service.send_message("access_denied_logger", sender, + f"[UNKNOWN] {sender.name}: {command_str} {command_args}", + f"[UNKNOWN] {sender.name}: {command_str} {command_args}") + if sender.access_level["label"] != "all": + self.bot.send_mass_message(sender.char_id, + self.getresp("global", "unknown_command", {"cmd": command_str})) diff --git a/modules/relaybot/online/online_controller.py b/modules/relaybot/online/online_controller.py new file mode 100644 index 0000000..20681eb --- /dev/null +++ b/modules/relaybot/online/online_controller.py @@ -0,0 +1,57 @@ +from core.aochat import server_packets +from core.conn import Conn +from core.decorators import instance, command, event +from core.logger import Logger +from modules.standard.online.online_controller import OnlineController + + +@instance(name="online_controller", override=True) +class OrgOnlineController(OnlineController): + MESSAGE_SOURCE = 'RELAY_LOGGER' + + def __init__(self): + super().__init__() + + def inject(self, registry): + super().inject(registry) + self.logger = Logger('relay') + self.character_service = registry.get_instance("character_service") + self.event_service = registry.get_instance("event_service") + + @event("connect", 'Add bots as members') + def connect_event(self, _, _1): + for bot in self.db.query('SELECT * FROM account where disabled = 0'): + self.buddy_service.add_buddy(bot.char_id, 'member') + + @command(command="online", params=[], + description="shows online players", + access_level="member") + def online_all_cmd(self, request): + query = "and channel_id IN (1, 2) " + params = [self.bot.name, self.bot.get_char_id()] + blob = self.online_display.format_by_channel_prof(query, params) + self.bot.send_mass_message(request.sender.char_id, self.online_display.format_blob(blob)) + + def pre_start(self): + super().pre_start() + self.bot.register_packet_handler(server_packets.PrivateChannelClientJoined.id, + self.handle_private_channel_client_joined) + self.bot.register_packet_handler(server_packets.PrivateChannelClientLeft.id, + self.handle_private_channel_client_left) + self.bot.register_packet_handler(server_packets.PrivateChannelMessage.id, + self.handle_private_channel_message) + + def handle_private_channel_message(self, conn: Conn, packet: server_packets.PrivateChannelMessage): + char_name = self.character_service.get_char_name(packet.char_id) + if packet.private_channel_id == conn.char_id: + self.logger.log_chat(conn, "PG", char_name, packet.message) + + def handle_private_channel_client_joined(self, conn: Conn, packet: server_packets.PrivateChannelClientJoined): + char_name = self.character_service.get_char_name(packet.char_id) + if packet.private_channel_id == conn.char_id: + self.logger.log_chat(conn, "PG", None, f"{char_name} joined the channel.") + + def handle_private_channel_client_left(self, conn: Conn, packet: server_packets.PrivateChannelClientLeft): + char_name = self.character_service.get_char_name(packet.char_id) + if packet.private_channel_id == conn.char_id: + self.logger.log_chat(conn, "PG", None, f"{char_name} left the channel.") diff --git a/modules/relaybot/online/private_channel.py b/modules/relaybot/online/private_channel.py new file mode 100644 index 0000000..d42a614 --- /dev/null +++ b/modules/relaybot/online/private_channel.py @@ -0,0 +1,45 @@ +from core.decorators import instance, event +from modules.core.private_channel.private_channel_controller import PrivateChannelController + + +@instance(name="private_channel_controller", override=True) +class CustomPrivateChannelController(PrivateChannelController): + def inject(self, registry): + super().inject(registry) + + @event("connect", "Reinvite previous raiders") + def reinvite_all(self, _, _1): + for user in self.reinvite: + # For preventing help ping pong, we're disabling the message on the relay bot. + # self.bot.send_mass_message(user, "You have been reinvited into my private channel " + # "after a bot restart or crash; Sorry for the inconvenience.") + self.priv.invite(user) + del self.reinvite + + def handle_incoming_relay_message(self, ctx): + self.bot.send_private_channel_message(ctx.formatted_message, fire_outgoing_event=False) + + @event(event_type="member_logon", description="Send autoinvites to players logging in") + def logon_event(self, _, data): + if not self.bot.is_ready(): + if data.packet.char_id not in self.reinvite: + account = data.account + if account.disabled == 1: + pass + elif account.auto_invite == 1: + self.reinvite.append(data.packet.char_id) + return + if self.private_channel_service.in_private_channel(data.packet.char_id): + return + account = data.account + if account.disabled == 1: + return + if self.db.query_single("SELECT * from org_bots where char_id=?", [data.packet.char_id]): + return + if account.auto_invite == 1: + if self.pork.get_character_info(data.packet.char_id).org_id != self.bot.public_channel_service.org_id: + self.private_channel_service.invite(data.packet.char_id) + # For preventing help ping pong, we're disabling the message on the relay bot. + # self.bot.send_mass_message(data.packet.char_id, "You have been " + # "auto invited " + # "into my private channel.") diff --git a/modules/standard/MessageDistributor/message_distributor.py b/modules/standard/MessageDistributor/message_distributor.py new file mode 100644 index 0000000..ac57bed --- /dev/null +++ b/modules/standard/MessageDistributor/message_distributor.py @@ -0,0 +1,134 @@ +import asyncio +import datetime +import html + +# noinspection PyPackageRequirements +from discord import Embed + +from core.command_service import CommandService +from core.db import DB +from core.decorators import instance +from core.logger import Logger +from core.lookup.character_service import CharacterService +from core.lookup.pork_service import PorkService +from core.message_hub_service import MessageHubService +from core.setting_service import SettingService +from core.setting_types import NumberSettingType +from core.text import Text +from core.tyrbot import Tyrbot +from modules.core.accounting.services.access_service import AccessService +from modules.core.discord.discord_controller import DiscordController + + +# noinspection DuplicatedCode,PyAttributeOutsideInit +@instance() +class MessageDistributor: + MESSAGE_SOURCE = "discord" + + def __init__(self): + self.logger = Logger(__name__) + + def inject(self, registry): + self.bot: Tyrbot = registry.get_instance("bot") + self.db: DB = registry.get_instance("db") + self.character_service: CharacterService = registry.get_instance("character_service") + self.access_service: AccessService = registry.get_instance("access_service") + self.pork: PorkService = registry.get_instance("pork_service") + self.relay_hub_service: MessageHubService = registry.get_instance("message_hub_service") + self.discord: DiscordController = registry.get_instance("discord_controller") + self.cmd_service: CommandService = registry.get_instance("command_service") + self.setting_service: SettingService = registry.get_instance("setting_service") + self.text: Text = registry.get_instance("text") + + def pre_start(self): + self.relay_hub_service.register_message_source("public_relay") + self.relay_hub_service.register_message_source("tell_logger") + self.relay_hub_service.register_message_source("system_logger") + self.relay_hub_service.register_message_source("access_denied_logger") + self.relay_hub_service.register_message_source("member_logger") + + self.relay_hub_service.register_message_destination("tell_log", self.handle_logging_tell, ["tell_logger"], + ["tell_log"]) + self.setting_service.register_new(self.module_name, "dc_tell_log", 0, NumberSettingType(allow_empty=True), + "ChannelID for the Tell Log") + + self.relay_hub_service.register_message_destination("access_denied_log", self.handle_logging_denied, + ["access_denied_logger"], ["access_denied_log"]) + self.setting_service.register_new(self.module_name, "dc_denied_log", 0, NumberSettingType(allow_empty=True), + "ChannelID for the Access Denied Log") + + self.relay_hub_service.register_message_destination("relay_log", self.handle_logging_relay, + ["alliance", "public_relay"], ["relay_log"]) + self.setting_service.register_new(self.module_name, "dc_relay_log", 0, NumberSettingType(allow_empty=True), + "ChannelID for the Relay Log") + + self.relay_hub_service.register_message_destination("public_relay", self.handle_public_relay, ["alliance"], + ["public_relay"]) + self.setting_service.register_new(self.module_name, "dc_relay_public", 0, NumberSettingType(allow_empty=True), + "ChannelID for the Public Relay Channel") + + self.relay_hub_service.register_message_destination("system", self.handle_logging_system, ["system_logger"], + ["system"]) + self.setting_service.register_new(self.module_name, "dc_system_log", 0, NumberSettingType(allow_empty=True), + "ChannelID for the System Channel") + + self.relay_hub_service.register_message_destination("dc_member_log", self.handle_logging_members, + ["member_logger"], ["dc_member_log"]) + self.setting_service.register_new(self.module_name, "dc_member_log", 0, NumberSettingType(allow_empty=True), + "ChannelID for the Member Log") + + self.relay_hub_service.register_message_destination("dc_darknet_log", self.handle_darknet_log, ["darknet"], + [""]) + self.setting_service.register_new(self.module_name, "dc_darknet_log", 0, NumberSettingType(allow_empty=True), + "ChannelID for the Darknet Log") + + def handle_public_relay(self, ctx): + if self.setting_service.get_value("dc_relay_public") != "0": + message = self.format(ctx.formatted_message) + self.discord.send_message(self.setting_service.get_value("dc_relay_public"), html.unescape(message), + delete=3600) # delete after 1h + + def handle_logging_tell(self, ctx): + if self.setting_service.get_value("dc_tell_log") != "0": + message = self.format(ctx.message) + self.discord.send_message(self.setting_service.get_value("dc_tell_log"), + f"[FROM] {self.character_service.get_char_name(ctx.sender)}: {message}") + + def handle_logging_denied(self, ctx): + if self.setting_service.get_value("dc_denied_log") != "0": + message = self.format(ctx.message) + self.discord.send_message(self.setting_service.get_value("dc_denied_log"), message) + + def handle_darknet_log(self, ctx): + if self.setting_service.get_value("dc_darknet_log") != "0": + message = self.format(ctx.message) + self.discord.send_message(self.setting_service.get_value("dc_darknet_log"), message) + + def handle_logging_relay(self, ctx): + if self.setting_service.get_value("dc_relay_log") != "0": + message = self.format(ctx.formatted_message) + self.discord.send_message(self.setting_service.get_value("dc_relay_log"), f"{html.unescape(message)}") + + def handle_logging_system(self, ctx): + if self.setting_service.get_value("dc_system_log") != "0": + message = self.format(ctx.message) + self.discord.send_message(self.setting_service.get_value("dc_system_log"), f"{html.unescape(message)}") + + def handle_logging_members(self, ctx): + if self.setting_service.get_value("dc_member_log") != "0": + channel = self.discord.client.get_channel(int(self.setting_service.get_value("dc_member_log"))) + spam = [] + current = 0 + for message in ctx.message: + current += 1 + spam.append(Embed(title=f"Recent changes - {datetime.date.today()} - ({current}/{len(ctx.message)})", + description=message, color=3066993)) + asyncio.run_coroutine_threadsafe(self.send_spam(channel, spam), self.discord.loop) + + async def send_spam(self, channel, message): + if self.discord.client.is_ready(): + for i in message: + await channel.send(embed=i) + + def format(self, message): + return self.text.strip_html_tags(message) diff --git a/modules/standard/alien/alien.msg b/modules/standard/alien/alien.msg new file mode 100644 index 0000000..c5d173a --- /dev/null +++ b/modules/standard/alien/alien.msg @@ -0,0 +1,404 @@ +{ + "ai_armor": { + "en_US": [ + "Normal Armor:\n", + " - {strong}\n", + " - {supple}\n", + " - {enduring}\n", + " - {observant}\n", + " - {arithmetic}\n", + " - {spiritual}\n\n", + "Combined Armor:\n", + " - {cc}\n", + " - {cm}\n", + " - {co}\n", + " - {cp}\n", + " - {css}\n" + ], + "de_DE": [ + "Normale Rüstung:\n", + " - {strong}\n", + " - {supple}\n", + " - {enduring}\n", + " - {observant}\n", + " - {arithmetic}\n", + " - {spiritual}\n\n", + "Kombinierte Rüstung:\n", + " - {cc}\n", + " - {cm}\n", + " - {co}\n", + " - {cp}\n", + " - {css}\n" + ] + }, + "ai_armor_title": { + "en_US": "Alien Armor", + "de_DE": "Alien Rüstung" + }, + "ai_armor_ts_title": { + "en_US": "Building process for QL {ql} {type}", + "de_DE": "Rezept für die {type} - QL {ql}" + }, + "ai_armor_ts": { + "en_US": [ + "Note: All tradeskill processes are based on the lowest QL items usable.\n\n", + "You need the following items to build {armor_type} Armor:\n", + "- {text_viralbots} (QL{vb_ql})\n", + "- {text_step1_tool}\n", + "- {text_solid_clump} (QL{ql})\n", + "- {text_vb_bot} (QL{vb_ql})\n\n", + "Step 1\n", + "{icon_viralbots}+{icon_step1_tool}={icon_memory_wiped_viralbots}\n\n", + "(QL{vb_ql})(QL{vb_ql})\n\n", + "{text_viralbots} (QL{vb_ql}) (Drops from Alien City Generals)\n", + " + {text_step1_tool}\n", + " = {text_memory_wiped_viralbots} (QL{vb_ql})\n", + "Required Skills:\n", + "- {step1_CL} Computer Literacy\n", + "- {step1_NP} Nano Programming\n\n", + "Step 2\n", + "{icon_NPI}+{icon_memory_wiped_viralbots}={icon_formatted_viralbots}\n\n", + " (QL{vb_ql})(QL{vb_ql})\n\n", + "{text_NPI} (Can be bought in General Shops)\n", + " + {text_memory_wiped_viralbots} (QL{vb_ql})\n", + " = {text_formatted_viralbots} (QL{vb_ql})\n", + "Required Skills:\n", + "- {step2_CL} Computer Literacy\n", + "- {step2_NP} Nano Programming\n\n", + "Step 3\n", + "{icon_structural_analyser}+{icon_solid_clump}={icon_mutated_material}OR{icon_pristine_material} \n\n", + " (QL{ql})(QL{ql}) (QL{ql})\n\n", + "{text_structural_analyser}\n", + " + {text_solid_clump} (QL{ql})\n", + " = {text_mutated_material} (QL{ql})\nOR{text_pristine_material} (QL{ql})\n", + "Required Skills:\n", + "- {step3_chem} Chemistry (Both require the same amount)\n\n", + "Step 4\n", + "{icon_mutated_material}OR{icon_pristine_material}+{icon_bazzit_generic_nano_solvent}={icon_dna_soup} \n\n", + "(QL{ql}) (QL{ql}) (QL{ql})\n\n", + "{text_mutated_material} (QL{ql})
OR{text_pristine_material} (QL{ql})\n", + " + {text_bazzit_generic_nano_solvent}\n", + " = {text_dna_soup} (QL{ql})\n", + "Required Skills:\n", + "- {chem_prist} Chemistry(for Pristine)\n", + "- {chem_mutat} Chemistry(for Mutated)\n\n", + "Step 5\n", + "{icon_dna_soup}+{icon_human_dna}={icon_dna_cocktail} \n\n", + "(QL{ql}) (QL{ql})\n\n", + "{text_dna_soup} (QL{ql})\n", + " + {text_human_dna}\n", + " = {text_dna_cocktail} (QL{ql})\n", + "Required Skills:\n", + "- {pharma} Pharma Tech\n\n", + "Step 6\n", + "{icon_formatted_viralbots}+{icon_dna_cocktail}={icon_formatted_viralbot_solution} \n\n", + "(QL{vb_ql}) (QL{ql}) (QL{ql})\n\n", + "{text_formatted_viralbots} (QL{vb_ql})\n", + " + {text_dna_cocktail} (QL{ql})\n", + " = {text_formatted_viralbot_solution} (QL{ql})\n", + "Required Skills:\n", + "- {pharma} Pharma Tech\n\n", + "Step 7\n", + "{icon_formatted_viralbot_solution}+{icon_basic_fashion_vest}={icon_formatted_viralbot_vest} \n\n", + "(QL{ql})(QL{ql})\n\n", + "{text_formatted_viralbot_solution} (QL{ql})\n", + " + {text_basic_fashion_vest}\n", + " = {text_formatted_viralbot_vest} (QL{ql})\n", + "Required Skills:\n", + "- {pharma} Pharma Tech\n\n", + "Step 8\n", + "{icon_vb_bot}+{icon_formatted_viralbot_vest}={icon_armor}\n", + "(QL{vb_ql}) (QL{ql}) (QL{ql})\n\n", + "{text_vb_bot} (QL{vb_ql}) (Rare Drop off Alien City Generals)\n", + " + {text_formatted_viralbot_vest} (QL{ql})\n", + " = {text_armor} (QL{ql})\n", + "Required Skills:\n", + "- {psycho} Psychology" + ], + "de_DE": [ + "Hinweis: Bei Allen Tradeskill Vorgängen ist jeweils das minimale nötige QL angegeben, welches für das gewünschte Ergebnis notwendig ist.\n\n", + "Zum bauen der {armor_type} Armor werden folgende Items benötigt:\n", + "- {text_viralbots} (QL{vb_ql})\n", + "- {text_step1_tool}\n", + "- {text_solid_clump} (QL{ql})\n", + "- {text_vb_bot} (QL{vb_ql})\n\n", + "Teil 1\n", + "{icon_viralbots}+{icon_step1_tool}={icon_memory_wiped_viralbots}\n\n", + "(QL{vb_ql})(QL{vb_ql})\n\n", + "{text_viralbots} (QL{vb_ql}) (Droppt von Alien City Generals)\n", + " + {text_step1_tool}\n", + " = {text_memory_wiped_viralbots} (QL{vb_ql})\n", + "Notwendige Skills:\n", + "- {step1_CL} Computer Literacy\n", + "- {step1_NP} Nano Programming\n\n", + "Teil 2\n", + "{icon_NPI}+{icon_memory_wiped_viralbots}={icon_formatted_viralbots}\n\n", + " (QL{vb_ql})(QL{vb_ql})\n\n", + "{text_NPI} (Kann in General Shops gekauft werden)\n", + " + {text_memory_wiped_viralbots} (QL{vb_ql})\n", + " = {text_formatted_viralbots} (QL{vb_ql})\n", + "Notwendige Skills:\n", + "- {step2_CL} Computer Literacy\n", + "- {step2_NP} Nano Programming\n\n", + "Teil 3\n", + "{icon_structural_analyser}+{icon_solid_clump}={icon_mutated_material}ODER{icon_pristine_material} \n\n", + " (QL{ql})(QL{ql}) (QL{ql})\n\n", + "{text_structural_analyser}\n", + " + {text_solid_clump} (QL{ql})\n", + " = {text_mutated_material} (QL{ql})\nODER{text_pristine_material} (QL{ql})\n", + "Notwendige Skills:\n", + "- {step3_chem} Chemistry (Pristine/Mutated haben die gleichen Skill Anforderungen)\n\n", + "Teil 4\n", + "{icon_mutated_material}ODER{icon_pristine_material}+{icon_bazzit_generic_nano_solvent}={icon_dna_soup} \n\n", + "(QL{ql}) (QL{ql}) (QL{ql})\n\n", + "{text_mutated_material} (QL{ql})
ODER{text_pristine_material} (QL{ql})\n", + " + {text_bazzit_generic_nano_solvent}\n", + " = {text_dna_soup} (QL{ql})\n", + "Notwendige Skills:\n", + "- {chem_prist} Chemistry(mit Pristine)\n", + "- {chem_mutat} Chemistry(mit Mutated)\n\n", + "Teil 5\n", + "{icon_dna_soup}+{icon_human_dna}={icon_dna_cocktail} \n\n", + "(QL{ql}) (QL{ql})\n\n", + "{text_dna_soup} (QL{ql})\n", + " + {text_human_dna}\n", + " = {text_dna_cocktail} (QL{ql})\n", + "Notwendige Skills:\n", + "- {pharma} Pharma Tech\n\n", + "Teil 6\n", + "{icon_formatted_viralbots}+{icon_dna_cocktail}={icon_formatted_viralbot_solution} \n\n", + "(QL{vb_ql}) (QL{ql}) (QL{ql})\n\n", + "{text_formatted_viralbots} (QL{vb_ql})\n", + " + {text_dna_cocktail} (QL{ql})\n", + " = {text_formatted_viralbot_solution} (QL{ql})\n", + "Notwendige Skills:\n", + "- {pharma} Pharma Tech\n\n", + "Teil 7\n", + "{icon_formatted_viralbot_solution}+{icon_basic_fashion_vest}={icon_formatted_viralbot_vest} \n\n", + "(QL{ql})(QL{ql})\n\n", + "{text_formatted_viralbot_solution} (QL{ql})\n", + " + {text_basic_fashion_vest}\n", + " = {text_formatted_viralbot_vest} (QL{ql})\n", + "Notwendige Skills:\n", + "- {pharma} Pharma Tech\n\n", + "Teil 8\n", + "{icon_vb_bot}+{icon_formatted_viralbot_vest}={icon_armor}\n", + "(QL{vb_ql}) (QL{ql}) (QL{ql})\n\n", + "{text_vb_bot} (QL{vb_ql}) (Seltener drop von Alien City Generals)\n", + " + {text_formatted_viralbot_vest} (QL{ql})\n", + " = {text_armor} (QL{ql})\n", + "Notwendige Skills:\n", + "- {psycho} Psychology" + ] + }, + "ai_armor_combined": { + "en_US": [ + "Tradeskill Process\n\n", + "{icon_source}+{icon_target}={icon_result}\n", + "(QL{s_ql}) (QL{t_ql}) (QL{t_ql})\n\n", + "{text_source} (QL{s_ql}) - ({ts_process_source})\n", + " + {text_target} (QL{t_ql}) - ({ts_process_target})\n", + " = {text_result} (QL{t_ql})\n" + ], + "de_DE": [ + "Bauanleitung\n\n", + "{icon_source}+{icon_target}={icon_result}\n", + "(QL{s_ql}) (QL{t_ql}) (QL{t_ql})\n\n", + "{text_source} (QL{s_ql}) - ({ts_process_source})\n", + " + {text_target} (QL{t_ql}) - ({ts_process_target})\n", + " = {text_result} (QL{t_ql})\n" + ] + }, + "ai_armor_ts_process": { + "en_US": "Tradeskill process for this item", + "de_DE": "Bauanleitung für dieses Item" + }, + "ai_armor_combined_unknown": { + "en_US": "Unknown armor type {type}", + "de_DE": "Unbekannter Rüstungs Typ: {type}" + }, + "bioinfo_list": { + "en_US": [ + "\nOFAB Armor Types\n", + "{ofab_armor}", + "\nOFAB Weapon Types\n", + "{ofab_weap}", + "\nAI Armor Types\n", + "{ai_armor}", + "\nAI Weapon Typen\n", + "{ai_weap}", + "\nSerum Typen\n", + "{serum}" + ], + "de_DE": [ + "\nOFAB Rüstung - Typen\n", + "{ofab_armor}", + "\nOFAB Waffen - Typen\n", + "{ofab_weap}", + "\nAlien Rüstung - Typen\n", + "{ai_armor}", + "\nAlien Waffen - Typen\n", + "{ai_weap}", + "\nSerum - Typen\n", + "{serum}" + ] + }, + "bioinfo_list_title": { + "en_US": "Bio-Material Types", + "de_DE": "Bio-Material Typen" + }, + "bioinfo_unknown_type": { + "en_US": "Unknown bio-material type {type}.", + "de_DE": "Unbekannter Bio-Material Typ: {type}." + }, + "bioinfo_type_title": { + "en_US": "{name} (QL {ql})", + "de_DE": "{name} (QL {ql})" + }, + "ofab_armor_bio": { + "en_US": [ + "Kyr'Ozch Bio-Material - Type {type}", + "{icon}\n{text}\n\n", + "Upgrades Ofab Armor for:\n", + "{upgrades}" + ], + "de_DE": [ + "Kyr'Ozch Bio-Material - Type {type}", + "{icon}\n{text}\n\n", + "Upgrade für folgende Ofab Rüstungen:\n", + "{upgrades}" + ] + }, + "ofab_weapon_bio": { + "en_US": [ + "Kyr'Ozch Bio-Material - Type {type}", + "{icon}\n{text}\n\n", + "Upgrades Ofab Weapons for:\n", + "{upgrades}" + ], + "de_DE": [ + "Kyr'Ozch Bio-Material - Type {type}", + "{icon}\n{text}\n\n", + "Upgrade für folgende Ofab Waffen:\n", + "{upgrades}" + ] + }, + "alien_armor_bio": { + "en_US": [ + "{item}\n\n", + "It will take {ee_cl_req} EE & CL (4.5 * QL) to analyze the Bio-Material.\n\n", + "Used to build Alien Armor\n\n", + "The following tradeskill amounts are required to make QL {ql}\n", + "strong/arithmetic/enduring/spiritual/supple/observant armor:\n\n", + "Computer Literacy - {cl_req} (4.5 * QL)\n", + "Chemistry - {chem_req} ({chem_info}) {chem_extra_info}\n", + "Nano Programming - {nano_prog_req} (6 * QL)\n", + "Pharma Tech - {pt_req} (6 * QL)\n", + "Psychology - {psyco_req} (6 * QL)\n\n", + "Note: Tradeskill requirements are based off the lowest QL items needed throughout the entire process.", + "\n\nFor Supple, Arithmetic, or Enduring:\n\n", + "When completed, the armor piece can have as low as QL {min_ql} combined into it, depending on available tradeskill options.\n\n", + "Does not change QL's, therefore takes {psyco_req} Psychology for available combinations.\n\n", + "For Spiritual, Strong, or Observant:\n\n", + "When completed, the armor piece can combine up to QL {max_ql}, depending on available tradeskill options.\n\n", + "Changes QL depending on targets QL. ", + "The max combination is: (QL {max_ql}) ({max_psyco} Psychology required for this combination)", + "\n\nTradeskilling info added by Mdkdoc420 (RK2)" + ], + "de_DE": [ + "{item}\n\n", + "Es wird {ee_cl_req} EE & CL (4.5 * QL)benötigt, um Bio-Material zu analysieren.\n\n", + "Es wird genutzt, um Alien Rüstung herzustellen.\n\n", + "Um eine strong/arithmetic/enduring/spiritual/supple/observant Rüstung\n", + "mit dem QLQL {ql} herzustellen, werden folgende Tradeskills benötigt:\n\n", + "Computer Literacy - {cl_req} (4.5 * QL)\n", + "Chemistry - {chem_req} ({chem_info}) {chem_extra_info}\n", + "Nano Programming - {nano_prog_req} (6 * QL)\n", + "Pharma Tech - {pt_req} (6 * QL)\n", + "Psychology - {psyco_req} (6 * QL)\n\n", + "Hinweis: die Tradeskill anforderungen basieren auf dem Item mit dem niedrigstem QL, welches im gesamten Tradeskill Prozess evrwendet wird.", + "\n\nFür eine Supple, Arithmetic, oder Enduring Rüstung:\n\n", + "Am Ende kann das Rüstungsteil mit Teilen ab dem QL QL {min_ql} kombiniert werden. Dies ist abhängig von den verfügbaren Tradeskill optionen.\n\n", + "Das QL wird hierbei nicht verändert, wodurch {psyco_req} Psychology benötigt wird.\n\n", + "Für Spiritual, Strong, oder Observant:\n\n", + "Am Ende lässt sich das Rüstungsteil mit anderen Typen bis QL {max_ql} kombinieren. Dies ist abhängig von den verfügbaren Tradeskill optionen.\n\n", + "Das QL verändert sich dem dem Ziel-QL entsprechend. ", + "Die Maximale Kombination ist: (QL {max_ql}) ( Es wird {max_psyco} Psychology benötigt)", + "\n\nTradeskilling info added by Mdkdoc420 (RK2)" + ] + }, + "alien_armor_bio_extra_info_mutated": { + "en_US": "more tradeskill requirements then pristine", + "de_DE": "höhere Tradeskill Anforderungen als pristine" + }, + "alien_armor_bio_extra_info_pristine": { + "en_US": "less tradeskill requirements then mutated", + "de_DE": "niedrigere Tradeskill Anforderungen als Mutated" + }, + "alien_weapon_bio": { + "en_US": [ + "{item_display}\n\n", + "It will take {ee_cl_req} EE & CL (4.5 * QL) to analyze the Bio-Material.\n\n", + "Adds {specials} to:\n", + "{display_blob}", + "{weapon_info}", + "\n\nTradeskilling info added by Mdkdoc420" + ], + "de_DE": [ + "{item_display}\n\n", + "Es wird {ee_cl_req} EE & CL (4.5 * QL) benötigt um Bio-Material zu analysieren.\n\n", + "Fügt {specials} zu folgenden Waffen hinzu:\n", + "{display_blob}", + "{weapon_info}", + "\n\nTradeskilling info added by Mdkdoc420" + ] + }, + "serum_bio": { + "en_US": [ + "{item_display}\n\n", + "It will take {ee_cl_req} EE & CL (4.5 * QL) to analyze the Bio-Material.\n\n", + "Used to build city buildings\n\n", + "The following are the required skills throughout the process of making a building:\n\n", + "Quantum FT - 400 (Static)\n", + "Pharma Tech - {pt_req} (3.5 * QL) 400 is minimum requirement\n", + "Chemistry - {chem_me_req} (4 * QL) 400 is minimum requirement\n", + "Mechanical Engineering - {chem_me_req} (4 * QL)\n", + "Electrical Engineering - {ee_cl_req} (4.5 * QL)\n", + "Comp Liter - {cl_req} (5 * QL)", + "\n\nTradeskilling info added by Mdkdoc420 (RK2)" + ], + "de_DE": [ + "{item_display}\n\n", + "Es wird {ee_cl_req} EE & CL (4.5 * QL) benötigt um Bio-Material zu analysieren.\n\n", + "Wird verwendet um City Gebäude herzustellen\n\n", + "Die folgenden Skills werden im Tradeskill Prozess benötigt:\n\n", + "Quantum FT - 400 (Static)\n", + "Pharma Tech - {pt_req} (3.5 * QL) 400 ist das minimum\n", + "Chemistry - {chem_me_req} (4 * QL) 400 ist das minimum\n", + "Mechanical Engineering - {chem_me_req} (4 * QL)\n", + "Electrical Engineering - {ee_cl_req} (4.5 * QL)\n", + "Comp Liter - {cl_req} (5 * QL)", + "\n\nTradeskilling info added by Mdkdoc420 (RK2)" + ] + }, + "weapon_info": { + "en_US": [ + "\n\nQL {ql} is the highest weapon this type will combine into.", + "{bump}", + "\n\nIt will take {me_ws_req} ME & WS (6 * QL) to combine with a QL {ql} Kyr'ozch Weapon." + ], + "de_DE": [ + "\n\nDie Waffe darf maximal das QL {ql} haben, um mit diesem Bio-Material kombiniert zu werden.", + "{bump}", + "\n\nEs werden {me_ws_req} ME & WS (6 * QL) zum kombinieren mit einer QL {ql} Kyr'ozch Weapon benötigt." + ] + }, + "weapon_bump": { + "en_US": "\nNote: The weapon can bump several QL's.", + "de_DE": "\nHinweis: Die Waffe kann um einige QL gelevelt werden." + }, + "ai_gen_list_title": { + "en_US": "Alien Generals", + "de_DE": "Alien General" + } +} diff --git a/modules/standard/alien/alien_armor_controller.py b/modules/standard/alien/alien_armor_controller.py new file mode 100644 index 0000000..ba7abd2 --- /dev/null +++ b/modules/standard/alien/alien_armor_controller.py @@ -0,0 +1,204 @@ +import math + +import hjson + +from core.chat_blob import ChatBlob +from core.command_param_types import Options, Int +from core.decorators import instance, command +from core.text import Text +from core.translation_service import TranslationService +from modules.standard.items.items_controller import ItemsController + + +@instance() +class AlienArmorController: + def inject(self, registry): + self.text: Text = registry.get_instance("text") + self.items_controller: ItemsController = registry.get_instance("items_controller") + self.ts: TranslationService = registry.get_instance("translation_service") + self.getresp = self.ts.get_response + + def start(self): + self.ts.register_translation("module/alien", self.load_alien_msg) + self.init_static_items() + + def load_alien_msg(self): + with open("modules/standard/alien/alien.msg", mode="r", encoding="utf-8") as f: + return hjson.load(f) + + @command(command="aiarmor", params=[], access_level="member", + description="List the alien armor types") + def aiarmor_list_command(self, request): + blob = self.getresp("module/alien", "ai_armor", { + "strong": self.text.make_tellcmd("Strong Armor", "aiarmor Strong"), + "supple": self.text.make_tellcmd("Supple Armor", "aiarmor Supple"), + "enduring": self.text.make_tellcmd("Enduring Armor", "aiarmor Enduring"), + "observant": self.text.make_tellcmd("Observant Armor", "aiarmor Observant"), + "arithmetic": self.text.make_tellcmd("Arithmetic Armor", "aiarmor Arithmetic"), + "spiritual": self.text.make_tellcmd("Spiritual Armor", "aiarmor Spiritual"), + "cc": self.text.make_tellcmd("Combined Commando's Armor", "aiarmor cc"), + "cm": self.text.make_tellcmd("Combined Mercenary's Armor", "aiarmor cm"), + "co": self.text.make_tellcmd("Combined Officer's", "aiarmor co"), + "cp": self.text.make_tellcmd("Combined Paramedic's Armor", "aiarmor cp"), + "cs": self.text.make_tellcmd("Combined Scout's Armor", "aiarmor cs"), + "css": self.text.make_tellcmd("Combined Sharpshooter's Armor", "aiarmor css") + }) + + return ChatBlob(self.getresp("module/alien", "ai_armor_title"), blob) + + @command(command="aiarmor", + params=[Options(["strong", "supple", "enduring", "observant", "arithmetic", "spiritual"]), + Int("ql", is_optional=True)], access_level="member", + description="Show the process for making normal alien armor") + def aiarmor_normal_command(self, request, armor_type, ql): + armor_type = armor_type.capitalize() + ql = ql or 300 + misc_ql = math.floor(ql * 0.8) + + blob = self.getresp("module/alien", "ai_armor_ts", { + "armor_type": armor_type, + "ql": ql, + **self.get_static_items(), + **self.text.generate_item(self.items_controller.find_by_name("Kyr'Ozch Viralbots"), misc_ql, "viralbots"), + **self.text.generate_item(self.items_controller.find_by_name("Memory-Wiped Kyr'Ozch Viralbots"), + misc_ql, "memory_wiped_viralbots"), + "step1_CL": math.ceil(misc_ql * 4.5), + "step1_NP": math.ceil(misc_ql * 4.5), + + **self.text.generate_item(self.items_controller.find_by_name("Formatted Kyr'Ozch Viralbots"), misc_ql, + "formatted_viralbots"), + "step2_CL": math.ceil(misc_ql * 4.5), + "step2_NP": math.ceil(misc_ql * 6), + + **self.text.generate_item(self.items_controller.find_by_name("Solid Clump of Kyr'Ozch Bio-Material"), ql, + "solid_clump"), + **self.text.generate_item(self.items_controller.find_by_name("Mutated Kyr'Ozch Bio-Material"), ql, + "mutated_material"), + **self.text.generate_item(self.items_controller.find_by_name("Pristine Kyr'Ozch Bio-Material"), ql, + "pristine_material"), + "step3_chem": math.ceil(ql * 4.5), + + **self.text.generate_item(self.items_controller.find_by_name("Generic Kyr'Ozch DNA-Soup"), ql, "dna_soup"), + "chem_prist": math.ceil(ql * 4.5), "chem_mutat": math.ceil(ql * 7), + + **self.text.generate_item(self.items_controller.find_by_name("DNA Cocktail"), ql, "dna_cocktail"), + "pharma": math.ceil(ql * 6), + + **self.text.generate_item(self.items_controller.find_by_name("Kyr'Ozch Formatted Viralbot Solution"), ql, + "formatted_viralbot_solution"), + **self.text.generate_item(self.items_controller.find_by_name("Formatted Viralbot Vest"), ql, + "formatted_viralbot_vest"), + "psycho": math.floor(ql * 6), + **self.get_armor(armor_type, ql), + }) + + return ChatBlob(self.getresp("module/alien", "ai_armor_ts_title", {"ql": ql, "type": armor_type}), blob) + + def get_armor(self, armor_type, ql): + blob = None + bot_ql = math.floor(ql * 0.8) + armor = self.items_controller.find_by_name("%s Body Armor" % armor_type, ql) + bot = self.items_controller.find_by_name("%s Lead Viralbots" % armor_type, bot_ql) + return {"icon_armor": self.text.make_item(armor.lowid, armor.highid, ql, self.text.make_image(armor.icon)), + "text_armor": self.text.make_item(armor.lowid, armor.highid, ql, armor.name), + "icon_vb_bot": self.text.make_item(bot.lowid, bot.highid, bot_ql, self.text.make_image(bot.icon)), + "text_vb_bot": self.text.make_item(bot.lowid, bot.highid, bot_ql, bot.name), + "vb_ql": bot_ql + } + + @command(command="aiarmor", + params=[Options(["cc", "cm", "co", "cp", "cs", "css", "ss"]), Int("ql", is_optional=True)], + access_level="member", + description="Show the process for making combined alien armor", + extended_description="CSS and SS both refer to Combined Sharpshooters") + def aiarmor_combined_command(self, request, armor_type, target_ql): + armor_type = armor_type.lower() + target_ql = target_ql or 300 + source_ql = math.floor(target_ql * 0.8) + + if armor_type == "cc": + result_armor_id = 246660 # Combined Commando's Jacket + + source_armor_id = 246616 # Strong Body Armor + name_source = "strong" + + target_armor_id = 246622 # Supple Body Armor + name_target = "supple" + elif armor_type == "cm": + result_armor_id = 246638 # Combined Mercenary's Jacket + + source_armor_id = 246616 # Strong Body Armor + name_source = "strong" + + target_armor_id = 246580 # Enduring Body Armor + name_target = "enduring" + elif armor_type == "co": + result_armor_id = 246672 # Combined Officer's Jacket + + source_armor_id = 246600 # Spiritual Body Armor + name_source = "spiritual" + + target_armor_id = 246560 # Arithmetic Body Armor + name_target = "arithmetic" + elif armor_type == "cp": + result_armor_id = 246648 # Combined Paramedic's Jacket + + source_armor_id = 246600 # Spiritual Body Armor + name_source = "spiritual" + + target_armor_id = 246580 # Enduring Body Armor + name_target = "enduring" + elif armor_type == "cs": + result_armor_id = 246684 # Combined Scout's Jacket + + source_armor_id = 246592 # Observant Body Armor + name_source = "observant" + + target_armor_id = 246560 # Arithmetic Body Armor + name_target = "arithmetic" + elif armor_type == "css" or armor_type == "ss": + result_armor_id = 246696 # Combined Sharpshooter's Jacket + + source_armor_id = 246592 # Observant Body Armor + name_source = "observant" + + target_armor_id = 246622 # Supple Body Armor + name_target = "supple" + else: + return self.getresp("module/alien", "ai_armor_combined_unknown", {"type": armor_type}) + + source = self.items_controller.get_by_item_id(source_armor_id) + target = self.items_controller.get_by_item_id(target_armor_id) + result = self.items_controller.get_by_item_id(result_armor_id) + + blob = self.getresp("module/alien", "ai_armor_combined", { + **self.text.generate_item(source, source_ql, "source"), + "s_ql": source_ql, + "t_ql": target_ql, + "ts_process_source": self.text.make_tellcmd(self.getresp("module/alien", "ai_armor_ts_process"), + "aiarmor %s %d" % (name_source, source_ql)), + **self.text.generate_item(target, target_ql, "target"), + "ts_process_target": self.text.make_tellcmd(self.getresp("module/alien", "ai_armor_ts_process"), + "aiarmor %s %d" % (name_target, target_ql)), + **self.text.generate_item(result, target_ql, "result")}) + + return ChatBlob( + self.getresp("module/alien", "ai_armor_ts_title", {"ql": target_ql, "type": result.name}), blob) + + def get_static_items(self): + return self.static_items + + def init_static_items(self): + + self.static_items = { + **self.text.generate_item( + self.items_controller.get_by_item_id(247099, 100), 100, "step1_tool"), + **self.text.generate_item(self.items_controller.find_by_name("Nano Programming Interface", 1), 1, "NPI"), + **self.text.generate_item(self.items_controller.find_by_name("Kyr'Ozch Structural Analyzer", 100), 100, + "structural_analyser"), + **self.text.generate_item(self.items_controller.find_by_name("Uncle Bazzit's Generic Nano-Solvent", 100), + 100, "bazzit_generic_nano_solvent"), + **self.text.generate_item(self.items_controller.find_by_name("Essential Human DNA", 100), 100, "human_dna"), + **self.text.generate_item(self.items_controller.find_by_name("Basic Fashion Vest", 1), 1, + "basic_fashion_vest"), + } diff --git a/modules/standard/alien/alien_bio_controller.py b/modules/standard/alien/alien_bio_controller.py new file mode 100644 index 0000000..35d373b --- /dev/null +++ b/modules/standard/alien/alien_bio_controller.py @@ -0,0 +1,229 @@ +import math + +from core.chat_blob import ChatBlob +from core.command_param_types import Any, Item, Int +from core.decorators import instance, command +from core.text import Text +from core.translation_service import TranslationService + + +@instance() +class AlienBioController: + def __init__(self): + self.ofab_armor_types = ["64", "295", "468", "935"] + self.ofab_weapon_types = ["18", "34", "687", "812"] + self.alien_armor_types = ["mutated", "pristine"] + self.alien_weapon_types = ["1", "2", "3", "4", "5", "12", "13", "48", "76", "112", "240", "880", "992"] + + def inject(self, registry): + self.db = registry.get_instance("db") + self.text: Text = registry.get_instance("text") + self.util = registry.get_instance("util") + self.items_controller = registry.get_instance("items_controller") + self.command_alias_service = registry.get_instance("command_alias_service") + self.ts: TranslationService = registry.get_instance("translation_service") + self.getresp = self.ts.get_response + + def pre_start(self): + self.db.load_sql_file(self.module_dir + "/sql/alien_weapons.sql", pre_optimized=True) + self.db.create_view("alien_weapon_specials") + self.db.create_view("alien_weapons") + + def start(self): + self.command_alias_service.add_alias("clump", "bio") + self.command_alias_service.add_alias("b", "bio") + + @command(command="bio", params=[Item("bio_material")], access_level="member", + description="Show info about Kyr'Ozch Bio-Material") + def bio_command(self, request, item): + high_id = item.high_id + ql = item.ql + + if high_id == 247707 or high_id == 247708: + bio_type = "1" + elif high_id == 247709 or high_id == 247710: + bio_type = "2" + elif high_id == 247717 or high_id == 247718: + bio_type = "3" + elif high_id == 247711 or high_id == 247712: + bio_type = "4" + elif high_id == 247713 or high_id == 247714: + bio_type = "5" + elif high_id == 247715 or high_id == 247716: + bio_type = "12" + elif high_id == 247719 or high_id == 247720: + bio_type = "13" + elif high_id == 288699 or high_id == 288700: + bio_type = "48" + elif high_id == 247697 or high_id == 247698: + bio_type = "76" + elif high_id == 247699 or high_id == 247700: + bio_type = "112" + elif high_id == 247701 or high_id == 247702: + bio_type = "240" + elif high_id == 247703 or high_id == 247704: + bio_type = "880" + elif high_id == 247705 or high_id == 247706: + bio_type = "992" + elif high_id == 247102 or high_id == 247103: + bio_type = "pristine" + elif high_id == 247104 or high_id == 247105: + bio_type = "mutated" + elif high_id == 247764 or high_id == 254804: + bio_type = "serum" + else: + bio_type = "unknown" + + bio_info = self.get_bio_info(bio_type, ql) + if bio_info: + return bio_info + else: + return "Bio-Material type unknown or not a bio-material." + + @command(command="bioinfo", params=[], access_level="member", + description="Show list of Kyr'Ozch Bio-Material types") + def bioinfo_list_command(self, request): + return ChatBlob(self.getresp("module/alien", "bioinfo_list_title"), + self.getresp("module/alien", "bioinfo_list", { + "ofab_armor": self.get_type_blob(self.ofab_armor_types), + "ofab_weap": self.get_type_blob(self.ofab_weapon_types), + "ai_armor": self.get_type_blob(self.alien_armor_types), + "ai_weap": self.get_type_blob(self.alien_weapon_types), + "serum": self.get_type_blob(["serum"]), + })) + + def get_type_blob(self, bio_types): + blob = "" + for bio_type in bio_types: + blob += self.text.make_tellcmd(bio_type, "bioinfo %s" % bio_type) + "\n" + return blob + + @command(command="bioinfo", params=[Any("bio_type"), Int("ql", is_optional=True)], access_level="member", + description="Show info about a bio-material type") + def bioinfo_show_command(self, request, bio_type, ql): + ql = ql or 300 + + bio_info = self.get_bio_info(bio_type, ql) + if bio_info: + return bio_info + else: + return self.getresp("module/alien", "bioinfo_unknown_type", {"type": bio_type}) + + def get_bio_info(self, bio_type, ql): + if bio_type in self.ofab_armor_types: + return self.ofab_armor_bio(bio_type, ql) + elif bio_type in self.ofab_weapon_types: + return self.ofab_weapon_bio(bio_type, ql) + elif bio_type in self.alien_armor_types: + return self.alien_armor_bio(bio_type, ql) + elif bio_type in self.alien_weapon_types: + return self.alien_weapon_bio(bio_type, ql) + elif bio_type == "serum": + return self.serum_bio(ql) + else: + return None + + def ofab_armor_bio(self, bio_type, ql): + name = "Kyr'Ozch Bio-Material - Type %s" % bio_type + + data = self.db.query("SELECT * FROM ofab_armor_type WHERE type = ?", [bio_type]) + item = self.items_controller.find_by_name(name, ql) + upgrades = "" + for row in data: + upgrades += self.text.make_tellcmd(row.profession, "ofabarmor %s" % row.profession) + "\n" + + return ChatBlob(self.getresp("module/alien", "bioinfo_unknown_type", + {"type": bio_type, "ql": ql}), + self.getresp("module/alien", "ofab_armor_bio", + {"type": bio_type, **self.text.generate_item(item, ql), "upgrades": upgrades})) + + def ofab_weapon_bio(self, bio_type, ql): + name = "Kyr'Ozch Bio-Material - Type %s" % bio_type + + data = self.db.query("SELECT * FROM ofab_weapons WHERE type = ?", [bio_type]) + + blob = self.display_item(name, ql) + "\n\n" + blob += "Upgrades Ofab Weapons for:\n" + for row in data: + blob += self.text.make_tellcmd("Ofab %s Mk 1" % row.name, "ofabweapons %s" % row.name) + "\n" + + return ChatBlob("%s (QL %d)" % (name, ql), blob) + + def alien_armor_bio(self, bio_type, ql): + min_ql = math.floor(ql * 0.8) + if ql <= 240: + max_ql = math.floor(ql / 0.8) + else: + max_ql = 300 + + cl = math.floor(min_ql * 4.5) + pharma = math.floor(ql * 6) + nano_prog = math.floor(min_ql * 6) + psyco = math.floor(ql * 6) + max_psyco = math.floor(max_ql * 6) + ts_bio = math.floor(ql * 4.5) + if bio_type == "mutated": + name = "Mutated Kyr'Ozch Bio-Material" + chem = math.floor(ql * 7) + chem_msg = "7 * QL" + extra_info = self.getresp("module/alien", "alien_armor_bio_extra_info_mutated") + elif bio_type == "pristine": + name = "Pristine Kyr'Ozch Bio-Material" + chem = math.floor(ql * 4.5) + chem_msg = "4.5 * QL" + extra_info = self.getresp("module/alien", "alien_armor_bio_extra_info_pristine") + else: + return None + return ChatBlob("%s (QL %d)" % (name, ql), + self.getresp("module/alien", "alien_armor_bio", + {"item": self.display_item(name, ql), + "ee_cl_req": ts_bio, "ql": ql, "cl_req": cl, "chem_req": chem, + "chem_info": chem_msg, "chem_extra_info": extra_info, "nano_prog_req": nano_prog, + "pt_req": pharma, "psyco_req": psyco, "min_ql": min_ql, "max_ql": max_ql, + "max_psyco": max_psyco})) + + def alien_weapon_bio(self, bio_type, ql): + name = "Kyr'Ozch Bio-Material - Type %s" % bio_type + + # Ensures that the maximum AI weapon that combines into doesn't go over QL 300 + # when the user presents a QL 271+ bio-material + max_ai_type = math.floor(ql / 0.9) + if max_ai_type > 300 or max_ai_type < 1: + max_ai_type = 300 + + specials = self.db.query_single("SELECT specials FROM alien_weapon_specials WHERE type = ?", + [bio_type]).specials + data = self.db.query("SELECT * FROM alien_weapons WHERE type = ?", [bio_type]) + display_blob = "" + for row in data: + display_blob += self.display_item(row.name, max_ai_type) + "\n" + + return ChatBlob("%s (QL %d)" % (name, ql), + self.getresp("module/alien", "alien_weapon_bio", + {"item_display": self.display_item(name, ql), + "ee_cl_req": math.floor(ql * 4.5), + "specials": specials, + "display_blob": display_blob, + "weapon_info": self.get_weapon_info(max_ai_type) + })) + + def serum_bio(self, ql): + name = "Kyr'Ozch Viral Serum" + + return ChatBlob("%s (QL %d)" % (name, ql), + self.getresp("module/alien", "serum_bio", + {"item_display": self.display_item(name, ql), + "ee_cl_req": math.floor(ql * 4.5), + "pt_req": (math.floor(ql * 3.5) if math.floor(ql * 3.5) > 400 else 400), + "chem_me_req": (math.floor(ql * 4) if math.floor(ql * 4) > 400 else 400), + "cl_req": math.floor(ql * 5) + })) + + def get_weapon_info(self, ql): + return self.getresp("module/alien", "weapon_info", + {"ql": ql, + "bump": ("" if ql == 300 else self.getresp("module/alien", "weapon_bump")), + "me_ws_req": math.floor(ql * 6)}) + + def display_item(self, name, ql): + return self.text.format_item(self.items_controller.find_by_name(name, ql), ql) diff --git a/modules/standard/alien/alien_general_controller.py b/modules/standard/alien/alien_general_controller.py new file mode 100644 index 0000000..f23be3f --- /dev/null +++ b/modules/standard/alien/alien_general_controller.py @@ -0,0 +1,76 @@ +from core.chat_blob import ChatBlob +from core.command_param_types import Options +from core.decorators import instance, command +from core.text import Text +from core.translation_service import TranslationService + + +@instance() +class AlienGeneralController: + def inject(self, registry): + self.text: Text = registry.get_instance("text") + self.items_controller = registry.get_instance("items_controller") + self.ts: TranslationService = registry.get_instance("translation_service") + self.getresp = self.ts.get_response + + @command(command="aigen", params=[], access_level="member", + description="List alien city ground generals") + def aigen_list_command(self, request): + blob = "" + blob += " - Ankari\n" + blob += " - Ilari\n" + blob += " - Rimah\n" + blob += " - Jaax\n" + blob += " - Xoch\n" + blob += " - Cha\n" + + return ChatBlob(self.getresp("module/alien", "ai_gen_list_title"), blob) + + @command(command="aigen", + params=[Options(["ankari", "ilari", "rimah", "jaax", "xoch", "cha"])], + access_level="member", + description="Show info about an alien city ground general") + def aigen_show_command(self, request, general): + general = general.capitalize() + + blob = "" + + if general == "Ankari": + blob += "Low Evade/Dodge, Low AR, Casts Viral/Virral nukes\n\n" + blob += self.text.format_item(self.items_controller.get_by_item_id(247145)) + "\n" # Arithmetic Viralbots + blob += "(Nanoskill / Tradeskill)\n\n" + blob += self.text.format_item(self.items_controller.get_by_item_id(247684)) + "\n\n" # type 1 + blob += self.text.format_item(self.items_controller.get_by_item_id(247686)) + "\n\n" # type 2 + blob += self.text.format_item(self.items_controller.get_by_item_id(288673)) # type 48 + elif general == "Ilari": + blob += "Low Evade/Dodge\n\n" + blob += self.text.format_item(self.items_controller.get_by_item_id(247147)) + "\n" # Spiritual Viralbots + blob += "(Nanocost / Nanopool / Max Nano)\n\n" + blob += self.text.format_item(self.items_controller.get_by_item_id(247682)) + "\n\n" # type 992 + blob += self.text.format_item(self.items_controller.get_by_item_id(247680)) # type 880 + elif general == "Rimah": + blob += "Low Evade/Dodge\n\n" + blob += self.text.format_item(self.items_controller.get_by_item_id(247143)) + "\n" # Observant Viralbots + blob += "(Init / Evades)\n\n" + blob += self.text.format_item(self.items_controller.get_by_item_id(247676)) + "\n\n" # type 112 + blob += self.text.format_item(self.items_controller.get_by_item_id(247678)) # type 240 + elif general == "Jaax": + blob += "High Evade, Low Dodge\n\n" + blob += self.text.format_item(self.items_controller.get_by_item_id(247139)) + "\n" # Strong Viralbots + blob += "(Melee / Spec Melee / Add All Def / Add Damage)\n\n" + blob += self.text.format_item(self.items_controller.get_by_item_id(247694)) + "\n\n" # type 3 + blob += self.text.format_item(self.items_controller.get_by_item_id(247688)) # type 4 + elif general == "Xoch": + blob += "High Evade/Dodge, Casts Ilari Biorejuvenation heals\n\n" + blob += self.text.format_item(self.items_controller.get_by_item_id(247137)) + "\n" # Enduring Viralbots + blob += "(Max Health / Body Dev)\n\n" + blob += self.text.format_item(self.items_controller.get_by_item_id(247690)) + "\n\n" # type 5 + blob += self.text.format_item(self.items_controller.get_by_item_id(247692)) # type 12 + elif general == "Cha": + blob += "High Evade/NR, Low Dodge\n\n" + blob += self.text.format_item(self.items_controller.get_by_item_id(247141)) + "\n" # Supple Viralbots + blob += "(Ranged / Spec Ranged / Add All Off)\n\n" + blob += self.text.format_item(self.items_controller.get_by_item_id(247696)) + "\n\n" # type 13 + blob += self.text.format_item(self.items_controller.get_by_item_id(247674)) # type 76 + + return ChatBlob(f"General {general}", blob) diff --git a/modules/standard/alien/leprocs_controller.py b/modules/standard/alien/leprocs_controller.py new file mode 100644 index 0000000..5ce861a --- /dev/null +++ b/modules/standard/alien/leprocs_controller.py @@ -0,0 +1,58 @@ +from core.chat_blob import ChatBlob +from core.command_param_types import Any +from core.decorators import instance, command +from core.text import Text + + +@instance() +class LeProcsController: + def inject(self, registry): + self.db = registry.get_instance("db") + self.text: Text = registry.get_instance("text") + self.util = registry.get_instance("util") + self.command_alias_service = registry.get_instance("command_alias_service") + + def pre_start(self): + self.db.load_sql_file(self.module_dir + "/sql/leprocs.sql", pre_optimized=True) + self.db.create_view("leprocs") + self.command_alias_service.add_alias("leproc", "leprocs") + + @command(command="leprocs", params=[], access_level="member", + description="Show a list of professions with LE procs") + def leprocs_list_command(self, request): + data = self.db.query("SELECT DISTINCT profession FROM leprocs ORDER BY profession") + + blob = "" + for row in data: + blob += f"{self.text.make_tellcmd(row.profession, f'leprocs {row.profession}')}\n" + + blob += "\nProc info provided by Wolfbiter (RK1), Gatester (RK2), DrUrban" + + return ChatBlob("LE Procs", blob) + + @command(command="leprocs", params=[Any("profession")], access_level="member", + description="Show LE proc information for a specific profession") + def leprocs_show_command(self, request, prof_name): + profession = self.util.get_profession(prof_name) + + if not profession: + return f"Could not find profession {prof_name}." + + data = self.db.query("SELECT * FROM leprocs WHERE profession LIKE ? " + "ORDER BY proc_type, research_lvl DESC", [profession]) + proc_type = "" + blob = "" + for row in data: + if proc_type != row.proc_type: + proc_type = row.proc_type + blob += f"\n{proc_type}\n" + + blob += f"[{self.text.zfill(row.research_lvl, 10)}] " \ + f"{row.name} {row.modifiers} " \ + f"{row.duration} {row.proc_trigger}\n" + + blob += "\n\nNote: Offensive procs have a 5% chance of firing every time you attack; " \ + "Defensive procs have a 10% chance of firing every time something attacks you." + blob += "\n\nProc info provided by Wolfbiter (RK1), Gatester (RK2)" + + return ChatBlob(f"{profession} LE Procs", blob) diff --git a/modules/standard/alien/ofab_armor_controller.py b/modules/standard/alien/ofab_armor_controller.py new file mode 100644 index 0000000..660166c --- /dev/null +++ b/modules/standard/alien/ofab_armor_controller.py @@ -0,0 +1,81 @@ +from core.chat_blob import ChatBlob +from core.command_param_types import Any, Int +from core.decorators import instance, command +from core.text import Text + + +@instance() +class OfabArmorController: + def inject(self, registry): + self.db = registry.get_instance("db") + self.text: Text = registry.get_instance("text") + self.util = registry.get_instance("util") + + def pre_start(self): + self.db.load_sql_file(self.module_dir + "/sql/ofab_armor.sql", pre_optimized=True) + self.db.create_view("ofab_armor") + self.db.create_view("ofab_armor_cost") + self.db.create_view("ofab_armor_type") + + @command(command="ofabarmor", params=[], access_level="member", + description="Show ofab armor") + def ofabarmor_list_command(self, request): + data = self.db.query("SELECT type, profession FROM ofab_armor_type ORDER BY profession") + + blob = "" + for row in data: + blob += f"{self.text.make_tellcmd(row.profession, f'ofabarmor {row.profession}')} - " \ + f"Type {row.type:d}\n" + + return ChatBlob("Ofab Armor", blob) + + @command(command="ofabarmor", + params=[Int("ql", is_optional=True), Any("profession"), Int("ql", is_optional=True)], + access_level="member", + description="Show info about ofab armor", + extended_description="QL is optional and can come before or after the profession") + def ofabarmor_show_command(self, request, ql1, prof_name, ql2): + profession = self.util.get_profession(prof_name) + ql = ql1 or ql2 or 300 + + if not profession: + return "Could not find Ofab Armor for profession %s." % prof_name + + data = self.db.query("SELECT * FROM ofab_armor o1 " + "LEFT JOIN ofab_armor_cost o2 ON o1.slot = o2.slot " + "WHERE o1.profession = ? AND o2.ql = ? " + "ORDER BY upgrade, name", + [profession, ql]) + if not data: + return f"Could not find Ofab Armor for QL {ql:d}." + + upgrade_type = self.db.query_single("SELECT type FROM ofab_armor_type WHERE profession = ?", [profession]).type + + type_ql = round(ql * 0.8) + type_link = self.text.make_tellcmd(f"Kyr'Ozch Bio-Material - Type {upgrade_type:d}", + f"bioinfo {upgrade_type:d} {type_ql:d}") + + blob = "Upgrade with %s (minimum QL %d)\n\n" % (type_link, type_ql) + + cost_data = self.db.query("SELECT DISTINCT ql FROM ofab_weapons_cost ORDER BY ql") + for row in cost_data: + blob += self.text.make_tellcmd(row.ql, f"ofabarmor {profession} {row.ql:d}") + " " + blob += "\n\n" + + current_upgrade = "" + total_vp = 0 + for row in data: + if current_upgrade != row.upgrade: + current_upgrade = row.upgrade + blob += "\n" + + blob += "" + self.text.make_item(row.lowid, row.highid, ql, row.name) + + if row.upgrade == 0 or row.upgrade == 3: + blob += f" ({row.vp:d} VP)" + total_vp += row.vp + blob += "\n" + + blob += f"\nVP cost for full set: {total_vp:d}" + + return ChatBlob("%s Ofab Armor (QL %d)" % (profession, ql), blob) diff --git a/modules/standard/alien/ofab_weapons_controller.py b/modules/standard/alien/ofab_weapons_controller.py new file mode 100644 index 0000000..e32696b --- /dev/null +++ b/modules/standard/alien/ofab_weapons_controller.py @@ -0,0 +1,68 @@ +from core.chat_blob import ChatBlob +from core.command_param_types import Any, Int +from core.decorators import instance, command +from core.text import Text + + +@instance() +class OfabWeaponsController: + def inject(self, registry): + self.db = registry.get_instance("db") + self.text: Text = registry.get_instance("text") + self.items_controller = registry.get_instance("items_controller") + self.command_alias_service = registry.get_instance("command_alias_service") + + def pre_start(self): + self.db.load_sql_file(self.module_dir + "/sql/ofab_weapons.sql", pre_optimized=True) + self.db.create_view("ofab_weapons") + self.db.create_view("ofab_weapons_cost") + + def start(self): + self.command_alias_service.add_alias("ofabweapon", "ofabweapons") + + @command(command="ofabweapons", params=[], access_level="member", + description="Show ofab weapons") + def ofabweapons_list_command(self, request): + data = self.db.query("SELECT type, name FROM ofab_weapons ORDER BY name") + + blob = "" + for row in data: + blob += f"{self.text.make_tellcmd(row.name, f'ofabweapons {row.name}')} - Type {row.type:d}\n" + + return ChatBlob("Ofab Weapons", blob) + + @command(command="ofabweapons", + params=[Int("ql", is_optional=True), Any("weapon"), Int("ql", is_optional=True)], + access_level="member", + description="Show info about an ofab weapon", + extended_description="QL is optional and can come before or after the weapon") + def ofabweapons_show_command(self, request, ql1, weapon_name, ql2): + weapon_name = weapon_name.capitalize() + ql = ql1 or ql2 or 300 + + weapon = self.db.query_single("SELECT type, vp FROM ofab_weapons w, ofab_weapons_cost c " + "WHERE w.name LIKE ? AND c.ql = ?", [weapon_name, ql]) + + if not weapon: + return f"Could not find Ofab Weapon {weapon_name} " \ + f"for QL {ql:d}." + + type_ql = round(ql * 0.8) + type_link = self.text.make_tellcmd(f"Kyr'Ozch Bio-Material - Type {weapon.type:d}", + f"bioinfo {weapon.type:d} {type_ql:d}") + + blob = "Upgrade with %s (minimum QL %d)\n\n" % (type_link, type_ql) + + data = self.db.query("SELECT ql FROM ofab_weapons_cost ORDER BY ql") + for row in data: + blob += self.text.make_tellcmd(row.ql, f"ofabweapons {weapon_name} {row.ql:d}") + " " + blob += "\n\n" + + for i in range(1, 7): + item = self.items_controller.find_by_name(f"Ofab {weapon_name} Mk {i:d}") + blob += "" + self.text.format_item(item) + if i == 1: + blob += f" ({weapon.vp:d} VP)" + blob += "\n" + + return ChatBlob(f"Ofab {weapon_name} (QL {ql:d})", blob) diff --git a/modules/standard/alien/sql/alien_weapons.sql b/modules/standard/alien/sql/alien_weapons.sql new file mode 100644 index 0000000..35b6c35 --- /dev/null +++ b/modules/standard/alien/sql/alien_weapons.sql @@ -0,0 +1,58 @@ +# noinspection LongLineForFile + +DROP TABLE IF EXISTS alien_weapon_specials; +CREATE TABLE alien_weapon_specials +( + type INT NOT NULL PRIMARY KEY, + specials varchar(255) NOT NULL +); +INSERT INTO alien_weapon_specials (type, specials) +VALUES (1, 'Fling shot'), + (2, 'Aimed Shot'), + (4, 'Burst'), + (3, 'Fling Shot and Aimed Shot'), + (5, 'Fling Shot and Burst'), + (12, 'Burst and Full Auto'), + (13, 'Burst, Fling Shot and Full Auto'), + (48, 'Brawl and Dimach'), + (76, 'Brawl and Fast Attack'), + (112, 'Brawl, Dimach and Fast Attack'), + (240, 'Brawl, Dimach, Fast Attack and Sneak Attack'), + (880, 'Dimach, Fast Attack, Parry and Riposte'), + (992, 'Dimach, Fast Attack, Sneak Attack, Parry and Riposte'); +DROP TABLE IF EXISTS alien_weapons; +CREATE TABLE alien_weapons +( + type INT NOT NULL, + name VARCHAR(255) NOT NULL +); +INSERT INTO alien_weapons (type, name) +VALUES (1, 'Kyr''Ozch Grenade Gun - Type 1'), + (1, 'Kyr''Ozch Pistol - Type 1'), + (1, 'Kyr''Ozch Shotgun - Type 1'), + (2, 'Kyr''Ozch Crossbow - Type 2'), + (2, 'Kyr''Ozch Rifle - Type 2'), + (3, 'Kyr''Ozch Crossbow - Type 3'), + (3, 'Kyr''Ozch Energy Carbine - Type 3'), + (3, 'Kyr''Ozch Rifle - Type 3'), + (4, 'Kyr''Ozch Machine Pistol - Type 4'), + (4, 'Kyr''Ozch Pistol - Type 4'), + (4, 'Kyr''Ozch Submachine Gun - Type 4'), + (5, 'Kyr''Ozch Carbine - Type 5'), + (5, 'Kyr''Ozch Energy Carbine - Type 5'), + (5, 'Kyr''Ozch Energy Pistol - Type 5'), + (5, 'Kyr''Ozch Machine Pistol - Type 5'), + (5, 'Kyr''Ozch Submachine Gun - Type 5'), + (12, 'Kyr''Ozch Carbine - Type 12'), + (12, 'Kyr''Ozch Submachine Gun - Type 12'), + (13, 'Kyr''Ozch Carbine - Type 13'), + (48, 'Kyr''Ozch Nunchacko - Type 48'), + (76, 'Kyr''Ozch Energy Sword - Type 76'), + (76, 'Kyr''Ozch Sledgehammer - Type 76'), + (112, 'Kyr''Ozch Energy Hammer - Type 112'), + (112, 'Kyr''Ozch Hammer - Type 112'), + (112, 'Kyr''Ozch Spear - Type 112'), + (112, 'Kyr''Ozch Sword - Type 112'), + (240, 'Kyr''Ozch Axe - Type 240'), + (880, 'Kyr''Ozch Sword - Type 880'), + (992, 'Kyr''Ozch Energy Rapier - Type 992'); \ No newline at end of file diff --git a/modules/standard/alien/sql/leprocs.sql b/modules/standard/alien/sql/leprocs.sql new file mode 100644 index 0000000..315d113 --- /dev/null +++ b/modules/standard/alien/sql/leprocs.sql @@ -0,0 +1,386 @@ +# noinspection LongLineForFile + +DROP TABLE IF EXISTS leprocs; +CREATE TABLE leprocs +( + profession varchar(20) NOT NULL, + name varchar(50) NOT NULL, + research_name varchar(50) DEFAULT NULL, + research_lvl INT NOT NULL, + proc_type char(6) DEFAULT NULL, + chance varchar(20) DEFAULT NULL, + modifiers varchar(255) NOT NULL, + duration varchar(20) NOT NULL, + proc_trigger varchar(20) NOT NULL, + description varchar(255) NOT NULL +); +INSERT INTO leprocs (profession, name, research_name, research_lvl, proc_type, chance, modifiers, duration, + proc_trigger, description) +VALUES ('Adventurer', 'Charring Blow', 'Exploration', 5, 'Type 2', '5%', 'Target Hit Health Fire -533 .. -1434', '', + 'Offensive', '533 to 1120 fire AC damage if NPC family != 220; 844 to 1434 fire AC damage if NPC family = 220'), + ('Adventurer', 'Aesir Absorption', 'Exploration', 7, 'Type 1', '10%', 'Self Modify Add All Def. 50', '30s', + 'Defensive', '+50 AAD, 30 second duration'), + ('Adventurer', 'Ferocious hits', 'Game Warden', 1, 'Type 1', '5%', 'Self Modify +Damage 15', '30s', 'Offensive', + 'Self +15 damage modifier, 30 second duration'), + ('Adventurer', 'Skin Protection', 'Gunslinger', 2, 'Type 1', '10%', + 'Self Modify ShieldAC 31, Self Modify AbsorbAC 150', '60s', 'Defensive', + 'Self +31 shield AC and +150 Absorb AC, 60 second duration'), + ('Adventurer', 'Machete Flurry', 'Keen Eyes', 7, 'Type 1', '5%', 'Self Modify +Damage 75', '60s', 'Offensive', + 'Self +75 damage modifier, 60 second duration'), + ('Adventurer', 'Healing Herbs', 'Keen Eyes', 10, 'Type 2', '5%', 'Self Hit Health 697 .. 1193', '', 'Offensive', + 'Heals 697 to 1193 max health'), + ('Adventurer', 'Self Preservation', 'Safari Guide', 5, 'Type 1', '10%', + 'Self Modify ShieldAC 52, Self Modify AbsorbAC 255', '60s', 'Defensive', + 'Self +52 shield AC and +255 Absorb AC, 60 second duration'), + ('Adventurer', 'Basic Dressing', 'Wilderness Lore', 1, 'Type 2', '5%', 'Self Hit Health 15 .. 25', '', + 'Offensive', 'Heals 15 to 25 max health'), + ('Adventurer', 'Soothing Herbs', 'Wilderness Lore', 2, 'Type 1', '5%', 'Self Hit Health 186 .. 391', '', + 'Offensive', 'Heals 186 to 391 max health'), + ('Adventurer', 'Machete Slice', 'Wilderness Survival', 3, 'Type 2', '5%', 'Target Hit Health Fire -137 .. -350', + '', 'Offensive', '137 to 350 fire AC damage'), + ('Adventurer', 'Restore Vigor', 'Wilderness Survival', 4, 'Type 2', '5%', 'Team Hit Health 356 .. 746', '', + 'Offensive', 'Heals 356 to 746 max health'), + ('Adventurer', 'Combustion', 'Wilderness Survival', 10, 'Type 2', '5%', 'Target Hit Health Fire -1294 .. -2415', + '', 'Offensive', '1294 to 2415 fire AC damage'), + ('Agent', 'Minor Nanobot Enhance', 'Direct Action', 1, 'Type 1', '5%', 'Self Modify +Damage 15', '60s', + 'Offensive', 'Self +15 damage modifier, 60 second duration'), + ('Agent', 'Improved focus', 'Direct Action', 2, 'Type 2', '5%', 'Self Modify CriticalIncrease 15', '15s', + 'Offensive', 'Self 15% critical increase, 15 second duration'), + ('Agent', 'No Escape!', 'End Certification', 6, 'Type 1', '5%', 'Target Restrict Action Movement, 6s delay', + '6s', 'Offensive', 'Target root, 6 second duration'), + ('Agent', 'Laser Aim', 'End Certification', 8, 'Type 2', '5%', 'Self Modify CriticalIncrease 30', '60s', + 'Offensive', 'Self +30% critical increase, 60 second duration'), + ('Agent', 'Cell Killer', 'Fitness', 3, 'Type 2', '5%', 'Target Hit Health Melee 75, 20 hits, 1s delay', '10s', + 'Offensive', '75 melee AC damage, 10 hits every 1 seconds'), + ('Agent', 'Intense Metabolism', 'Intuition', 3, 'Type 1', '5%', 'Self Modify Nano init 250', '60s', 'Offensive', + 'Self +250 nano init, 60 second duration'), + ('Agent', 'Plasteel Piercing Rounds', 'Intuition', 4, 'Type 2', '5%', 'Self Modify +Damage 75', '60s', + 'Offensive', 'Self +75 damage modifier, 60 second duration'), + ('Agent', 'Notum-Charged Rounds', 'Intuition', 10, 'Type 2', '5%', 'Self Modify +Damage 200', '60s', 'Offensive', + 'Self +200 damage modifier, duration 60 seconds'), + ('Agent', 'Nano-Enhanced Targeting', 'Marksmanship', 5, 'Type 2', '5%', 'Self Modify CriticalIncrease 22', '15s', + 'Offensive', 'Self +22% critical increase, 15 second duration'), + ('Agent', 'Broken Ankle', 'Stealth', 1, 'Type 2', '5%', 'Target Restrict Action Movement', '3s', 'Offensive', + 'Target root, 3 second duration'), + ('Agent', 'Disable Cuffs', 'Threat Assessment', 7, 'Type 1', '5%', + 'Self Reduce Snare 1083s, Self Reduce Root 1083s, Resist root/snares 20%', '15s', 'Offensive', + 'Self reduce roots and snares by 18minutes, 20% root/snare resist, 15 seconds'), + ('Agent', 'Grim Reaper', 'Threat Assessment', 10, 'Type 1', '5%', + 'Target Hit Health Melee 500, 10 hits, 1s delay', '', 'Offensive', + '500 melee AC damage, 10 hits every 1 seconds'), + ('Bureaucrat', 'Inflation Adjustment', 'Process Theory', 1, 'Type 2', '5%', + 'Self Modify Nano attack damage modifier 10%', '60s', 'Offensive', + 'Self +10% nano damage modifier, 60 second duration'), + ('Bureaucrat', 'Papercut', 'Market Awareness', 1, 'Type 2', '5%', 'Target Hit Health Cold -10 .. -23', '', + 'Offensive', '10 to 23 cold AC damage'), + ('Bureaucrat', 'Social Services', 'Hostile Negotiations', 5, 'Type 1', '5%', 'Target Restrict Action Movement', + '6s', 'Offensive', 'Target root, 6 second duration'), + ('Bureaucrat', 'Lost Paperwork', 'Professional Development', 4, 'Type 2', '5%', + 'Target Hit Health Melee -264 .. -532', '', 'Offensive', '264 to 532 melee AC damage'), + ('Bureaucrat', 'Next Window Over', 'Professional Development', 3, 'Type 1', '5%', 'Self Hit Nano 10%', '', + 'Offensive', 'Self, fills 10% of nano pool'), + ('Bureaucrat', 'Deflation', 'Executive Decisions', 3, 'Type 2', '5%', 'Self Modify Nano attack damage 25%', + '45s', 'Offensive', 'Self +25% nano damage modifier, 45 second duration'), + ('Bureaucrat', 'Wait In That Queue', 'Process Theory', 2, 'Type 1', '5%', 'Target Modify Run speed -600', '15s', + 'Offensive', 'Target -600 runspeed, 15 second duration, unremovable'), + ('Bureaucrat', 'Forms in Triplicate', 'Human Resources', 6, 'Type 1', '10%', 'Self Hit Nano 20%', '', + 'Offensive', 'Self fills 20% of nano pool'), + ('Bureaucrat', 'Wrong Window', 'Human Resources', 8, 'Type 2', '5%', 'Self Modify Nano attack damage 50%', '30s', + 'Offensive', 'Self +50% nano damage modifier, 30 second duration'), + ('Bureaucrat', 'Mobility Embargo', 'Professional Development', 10, 'Type 2', '5%', + 'AOE 10m Restrict Action Movement', '8s', 'Offensive', 'Target AOE root, 10 meter radius, 8 second duration'), + ('Bureaucrat', 'Tax Audit', 'Team Building', 7, 'Type 2', '5%', 'Target Hit Health Energy -1600 .. -3750', '', + 'Offensive', '1600 to 3750 energy AC damage, 3574 taunt'), + ('Bureaucrat', 'Please Hold', 'Team Building', 10, 'Type 1', '5%', 'Target Modify Run speed -1500', '30s', + 'Offensive', + 'Target -1500 runspeed, 30 second duration, 2% chance to break on hit, 7% chance to break on nano damage, 1% chance to break on debuff'), + ('Doctor', 'Muscle Memory', 'Aggressive Surgery', 5, 'Type 1', '5%', 'Self Nano Init Buff 250', '60s', + 'Offensive', 'Self +250 nano initiative buff, 60 second duration'), + ('Doctor', 'Antiseptic', 'Bedside Manner', 8, 'Type 1', '5%', 'Healing 1133 - 1533', '', 'Offensive', + 'Heals 1133 to 1533 max health'), + ('Doctor', 'Healing Care', 'Bedside Manner', 6, 'Type 2', '10%', 'Healing (Team) 434-820', '', 'Defensive', + 'Heals team 434 to 820 max health'), + ('Doctor', 'Anesthetic', 'Diagnosis', 3, 'Type 2', '5%', 'Self HealEff +15%', '60s', 'Offensive', + 'Self +15% Heal Efficiency for 60s'), + ('Doctor', 'Blood Transfusion', 'Internship', 3, 'Type 1', '5%', 'Healing 327-551', '', 'Offensive', + 'Heals 327 to 551 max health'), + ('Doctor', 'Pathogen', 'Internship', 4, 'Type 2', '5%', 'DOT 1 3375 Poisondamage (15x225 every 2sec)', '30s', + 'Offensive', '225 poison AC damage, 15 hits every 2 seconds'), + ('Doctor', 'Massive Vitae Plan', 'Internship', 10, 'Type 2', '5%', 'Self HealEff 25%', '60', 'Offensive', + 'Self +25% Heal Efficiency for 60s'), + ('Doctor', 'Astringent', 'Rehabilitation', 2, 'Type 2', '5%', 'Init Debuff 350', '20s', 'Offensive', + 'Target -350 initiative debuff, 20 second duration, 15% chance to break on hit, 20% chance to break on nano damage, 20% chance to break on debuff'), + ('Doctor', 'Inflammation', 'Rehabilitation', 1, 'Type 2', '5%', 'DOT 300 Poisondamage (20x15 every 2sec)', '30s', + 'Offensive', '20 poison AC damage, 15 hits every 2 seconds'), + ('Doctor', 'Dangerous Culture', 'Toxicology', 10, 'Type 1', '5%', 'DOT 11 250 Poisondamage (15x750 every 2sec)', + '30s', 'Offensive', '750 poison AC damage, 15 hits every 2 seconds'), + ('Doctor', 'Anatomic Blight', 'Toxicology', 7, 'Type 2', '5%', 'Init Debuff 569', '', 'Offensive', + 'Target -569 initiative debuff, 60 second duration, 10% chance to break on hit, 10% chance to break on nano damage, 10% chance to break on debuff'), + ('Doctor', 'Restrictive Bandaging', 'Underground Doctor', 1, 'Type 1', '5%', 'Healing 21-37', '', 'Offensive', + 'Heals 21 to 37 max health'), + ('Enforcer', 'Vortex of Hate', 'Anger Management', 10, 'Type 1', '5%', 'AOE Taunt, Self HOT 224 x10, 2s delay', + '20s', 'Offensive', 'AOE Taunt, Self heal 224 x10, 2s delay, 20 second duration'), + ('Enforcer', 'Vile Rage', 'Anger Management', 3, 'Type 1', '5%', 'Rage +350 Runspeed +200 NR +250 Inits', '60s', + 'Offensive', '+350 runspeed, +200 nano resist, +250 initiatives, 60 second duration'), + ('Enforcer', 'Tear Ligaments', 'Anger Management', 4, 'Type 1', '5%', + 'AR/Dmg Buff (Challenger) +170 Damage +70 AAO +34% Scale', '60s', 'Offensive', + '+70 AAO, 34% scale, +170 damage modifier, 60 second duration'), + ('Enforcer', 'Shrug Off Hits', 'Brawlers Sense', 2, 'Type 2', '5%', 'Absorbshield 280', '60s', 'Offensive', + '280 Absorb AC buff, 60 second duration'), + ('Enforcer', 'Bust Kneecaps', 'Brawlers Sense', 1, 'Type 2', '5%', + 'AR/Dmg Buff (Challenger) +27 Damage +12 AAO +16% Scale', '42s', 'Offensive', + '+12 AAO, 16% scale, and +27 damage modifier, 42 second duration'), + ('Enforcer', 'Inspire Rage', 'Brutality', 5, 'Type 1', '5%', 'Taunt 1600', '', 'Offensive', + '1 cold AC damage, target 1600 taunt'), + ('Enforcer', 'Inspire Ire', 'Endurance', 6, 'Type 2', '5%', 'Taunt 4750', '', 'Offensive', + '1 energy AC damage, target 4750 taunt'), + ('Enforcer', 'Shield of the ogre', 'Endurance', 8, 'Type 1', '5%', 'Absorbshield 745', '60s', 'Offensive', + '742 Absorb AC buff, 60 second duration, 60 second duration'), + ('Enforcer', 'Raging Blow', 'Flexibility', 10, 'Type 1', '5%', 'AR/Dmg Buff (Challenger) +255 Damage +111 AAO', + '60s', 'Offensive', '+111 AAO, +255 damage modifier, 60 second duration'), + ('Enforcer', 'Violation Buffer', 'Flexibility', 7, 'Type 2', '5%', + 'Damageshield +479 Max HP +75 Shield damage +240 Energy AC, Self heal 479', '60s', 'Offensive', + '+479 max health, +60 shield AC, Self heal 479, 60 second duration'), + ('Enforcer', 'Ignore Pain', 'Hard Labor', 1, 'Type 2', '5%', + 'Damageshield +25 Max HP +10 Shield damage, self heal 25', '60s', 'Offensive', + '+25 max health, +10 shield AC,Self heal 25, 60 second duration'), + ('Enforcer', 'Air of hatred', 'Kneecapping', 3, 'Type 2', '5%', + '20m AOE taunt and self HOT, Heal 79 x10, 2s delay', '20s', 'Offensive', + 'AOE Taunt, Self heal 79 x10, 2s delay, 20 second duration'), + ('Engineer', 'Drone Explosives', 'Combat Applications', 5, 'Type 2', '5%', + 'Target Hit 497 - 1016 Projectiledamage', '', 'Offensive', '497 to 1016 projectile AC damage'), + ('Engineer', 'Endure Barrage', 'Ergonomics', 3, 'Type 1', '5%', 'AC Buff +500', '60s', 'Offensive', + '+500 AC, 60 second duration'), + ('Engineer', 'Destructive Signal', 'Ergonomics', 4, 'Type 1', '5%', + 'Melee/Phys/ranged Init Buff +80, Add All DMG +20', '60s', 'Offensive', + '+80 ranged/melee/physical initiative, +20 All DMG 60 second duration'), + ('Engineer', 'Assault Force Relief', 'Ergonomics', 10, 'Type 2', '5%', 'AC Buff (Team) +2500', '60s', + 'Offensive', 'Team +2500 AC, 60 second duration'), + ('Engineer', 'Cushion Blows', 'Mechanical Assistance', 1, 'Type 1', '5%', + 'Damageshield +10 Damageshield +40 Melee AC', '60s', 'Offensive', + '+10 shield AC, +40 melee AC, 60 second duration'), + ('Engineer', 'Congenial Encasement', 'Mechanical Assistance', 2, 'Type 2', '5%', + 'Reflectshield +13% Reflect 7 Max Reflected Damage', '60s', 'Offensive', + '+13% reflect modifier, +7 reflect damage, 60 second duration'), + ('Engineer', 'Personal Protection', 'Military Hardware', 1, 'Type 2', '5%', 'AC Buff +130', '60s', 'Offensive', + '+130 AC, 60 second duration'), + ('Engineer', 'Energy Transfer', 'Practical Application', 6, 'Type 1', '5%', 'Damageshield +75', '60s', + 'Offensive', '+75 shield AC, 60 second duration'), + ('Engineer', 'Reactive Armor', 'Practical Application', 8, 'Type 1', '5%', 'Absorbshield 675', '60s', + 'Offensive', '675 Absorb AC buff, 60 second duration, 60 second duration'), + ('Engineer', 'Splinter Preservation', 'Process Refinement', 3, 'Type 1', '5%', 'Absorbshield 375', '60s', + 'Offensive', '+375 AC, 60 second duration'), + ('Engineer', 'Drone Missiles', 'Serendipity', 10, 'Type 2', '5%', 'Target Hit 1375 - 3211', '', 'Offensive', + '1375 to 3211 energy AC damage'), + ('Engineer', 'Destructive Theorem', 'Serendipity', 7, 'Type 2', '5%', 'Ranged Init Buff +150', '60s', + 'Offensive', '+150 ranged initiative, 60 second duration'), + ('Fixer', 'Dirty Tricks', 'Acquisition', 6, 'Type 1', '5%', 'Dodge Buff +100', '60s', 'Offensive', + '+100 dodge ranged, 60 second duration'), + ('Fixer', 'Fish In A Barrel', 'Cunning', 2, 'Type 1', '5%', 'Evade Debuff -85', '60s', 'Offensive', + 'Target -85 duck, dodge, and evade, 60 second duration'), + ('Fixer', 'Contaminated Bullets', 'Cunning', 1, 'Type 2', '5%', 'Damage Boost +3', '60s', 'Offensive', + '+3 energy, projectile, and poison damage modifier, 60 second duration'), + ('Fixer', 'Luck''s Calamity', 'Cunning', 8, 'Type 1', '5%', 'Evade Debuff -170', '60s', 'Offensive', + 'Target -170 duck, dodge, and evade, 60 second duration'), + ('Fixer', 'Fighting Chance', 'Fallback Plan', 4, 'Type 2', '5%', 'Damage Boost +50', '60s', 'Offensive', + '+50 damage modifier, 60 second duration'), + ('Fixer', 'Underground Sutures', 'Fallback Plan', 1, 'Type 2', '5%', 'HOT 180 - 216 (12x 15-18 every 5 sec)', + '60s', 'Offensive', '15 to 18 healing over time, 1 hit every 5 seconds, 60 second duration'), + ('Fixer', 'Backyard Bandages', 'Insurance', 6, 'Type 2', '5%', 'HOT 2172 - 2220 (6x362-370 every 10sec)', '60s', + 'Offensive', '362-370 healing over time, 1 hit every 10 seconds, 60 second duration'), + ('Fixer', 'Escape The System', 'Respectable Businessman', 4, 'Type 1', '10%', + 'Root reducer -45 sec (10% change for proc)', '', 'Offensive', 'Self reduce root 45 seconds'), + ('Fixer', 'Bootleg Remedies', 'Respectable Businessman', 10, 'Type 2', '5%', + 'HOT 2436 - 2634 (6x406-439 every 10sec)', '60s', 'Offensive', + '406 to 439 healing over time, 1 hit every 10 seconds, 60 second duration'), + ('Fixer', 'Slip Them A Mickey', 'Subtlety', 10, 'Type 2', '5%', 'Damage Boost +130', '60s', 'Offensive', + '+130 damage modifier, 60 second duration'), + ('Fixer', 'Bending The Rules', 'Subtlety', 7, 'Type 2', '5%', 'Damage Boost +85', '60s', 'Offensive', + '+85 damage modifier, 60 second duration'), + ('Fixer', 'Intense Metabolism', 'Smuggler''s Sense', 3, 'Type 1', '5%', 'Self Modify Nano init 250', '60s', + 'Offensive', '+250 nano initiative, 60 second duration'), + ('Keeper', 'Righteous Strike', 'Wisdom', 1, 'Type 1', '5%', 'Self Modify Damage modifier 20', '60s', 'Offensive', + '+20 damage modifier, 60 second duration'), + ('Keeper', 'Faithful Reconstruction', 'Virtue', 1, 'Type 2', '5%', 'Team Hit Health 42 .. 53', '', 'Offensive', + 'Team heal 42 to 53 max health'), + ('Keeper', 'Eschew the Faithless', 'Wisdom', 2, 'Type 1', '5%', + 'Self Modify Duck explosives 14 Dodge ranged 14 Evade close 50', '60s', 'Offensive', + '+50 evade, +14 duck and dodge, 60 second duration'), + ('Keeper', 'Symbiotic Bypass', 'Champion', 8, 'Type 1', '5%', + 'Evade Buff (Team) +140 Evade ClsC +40 Dodge Ranged +40 Duck Exp', '60s', 'Offensive', + 'Team +140 evade, +40 duck dodge, 60 second duration'), + ('Keeper', 'Virtuous Reaper', 'Champion', 6, 'Type 1', '5%', 'Damage Boost (Team) +90', '60s', 'Offensive', + 'Team +90 damage modifier, 60 second duration'), + ('Keeper', 'Righteous Smite', 'Exemplar', 10, 'Type 1', '5%', 'Damage Boost (Team) +200', '60s', 'Offensive', + 'Team +200 damage modifier, 60 second duration'), + ('Keeper', 'Ambient Purification', 'Exemplar', 7, 'Type 2', '5%', 'Healing (Team) 481-948', '', 'Offensive', + 'Team heal 481 to 948 max health'), + ('Keeper', 'Subjugation', 'Judgement', 3, 'Type 2', '5%', 'AAO +20 AAD +45 (Team)', '60s', 'Offensive', + 'Team AAO +20 AAD +45, 60 seconds'), + ('Keeper', 'Ignore the Unrepentant', 'Judgement', 4, 'Type 1', '5%', + 'Evade Buff +110 Evade ClsC +30 Dodge Ranged +30 Duck Exp', '60s', 'Offensive', + '+110 evade, +30 duck and dodge, 60 second duration'), + ('Keeper', 'Honor Restored', 'Judgement', 10, 'Type 2', '5%', 'AAO +50 AAD +120 (Team)', '', 'Offensive', + 'Team AAO +50 AAD +120 60 seconds'), + ('Keeper', 'Pure Strike', 'Loyalty', 3, 'Type 1', '5%', 'Damage Boost +65', '60s', 'Offensive', + '+65 damage modifier, 60 second duration'), + ('Keeper', 'Benevolent Barrier', 'Paragon', 5, 'Type 2', '5%', 'Reflect Shield +4%', '600s', 'Offensive', + '+4% reflect AC, 10 minute duration'), + ('Martial Artist', 'Absolute Fist', 'Alacrity', 10, 'Type 1', '5%', 'Damage Buff +94', '60s', 'Offensive', + '+94 damage modifier, 60 second duration'), + ('Martial Artist', 'Strengthen Spirit', 'Alacrity', 3, 'Type 1', '5%', 'AC Buff +269 Melee AC +229 Other AC', + '60s', 'Offensive', '+226 AC, +269 melee AC, 60 second duration'), + ('Martial Artist', 'Healing Meditation', 'Cognizance', 5, 'Type 2', '5%', 'Healing 443-981', '', 'Offensive', + 'Heals 443 to 981 max health'), + ('Martial Artist', 'Debilitating Strike', 'Cognizance', 6, 'Type 2', '5%', 'Crit Increase +19%', '60s', + 'Offensive', '+19% critical increase, 60 second duration'), + ('Martial Artist', 'Medicinal Remedy', 'Empathy', 1, 'Type 2', '5%', 'Healing 34-59', '', 'Offensive', + 'Heals 34 to 59 max health'), + ('Martial Artist', 'Strengthen Ki', 'Intuition', 8, 'Type 1', '5%', + 'AC Buff +40 Strength +676 Melee AC +573 Other AC', '60s', 'Offensive', + '+40 strength, +574 AC, +676 melee AC, 60 second duration'), + ('Martial Artist', 'Smashing Fist', 'Meditation', 4, 'Type 1', '5%', 'Damage Buff +63', '60s', 'Offensive', + '+63 damage modifier, 60 second duration'), + ('Martial Artist', 'Self Reconstruction', 'Meditation', 10, 'Type 2', '5%', 'Healing 980 - 1803', '', + 'Offensive', 'Heals 980 to 1803 max health'), + ('Martial Artist', 'Attack Ligaments', 'Nimble', 2, 'Type 2', '5%', 'Crit Increase +8%', '60s', 'Offensive', + '+8% critical increase, 60 second duration'), + ('Martial Artist', 'Stinging Fist', 'Reflex', 1, 'Type 1', '5%', 'Damage Buff +19', '60s', 'Offensive', + '+19 damage modifier, 60 second duration'), + ('Martial Artist', 'Disrupt Ki', 'Reflex', 7, 'Type 1', '5%', 'Evade Buff +85', '60s', 'Offensive', + '+85 duck, dodge, and evade, 60 second duration'), + ('Meta-Physicist', 'Thoughtful Means', 'Angst', 5, 'Type 2', '5%', 'REduces Nano Cost by 25%', '60s', + 'Offensive', 'Reduces nano cost by 25%, 60 second duration'), + ('Meta-Physicist', 'Ego Strike', 'Foresight', 6, 'Type 2', '5%', 'Target Hit 802 - 1468 Colddamage', '', + 'Offensive', 'Target 802 to 1486 cold AC damage'), + ('Meta-Physicist', 'Anticipated Evasion', 'Foresight', 8, 'Type 1', '5%', 'Evade Buff +250', '60s', 'Offensive', + '+250 duck, dodge, and evade, 60 second duration'), + ('Meta-Physicist', 'Sow Despair', 'Jealousy', 1, 'Type 2', '5%', 'Target Hit 30-65 Poisondamage', '', + 'Offensive', 'Target 30 to 65 poison AC damage'), + ('Meta-Physicist', 'Regain Focus', 'Perseverences', 3, 'Type 1', '5%', 'Evade Buff +100', '60s', 'Offensive', + '+100 duck, dodge, and evade, 60 second duration'), + ('Meta-Physicist', 'Mind Wail', 'Perseverences', 4, 'Type 2', '5%', 'Target Hit 314-699 Cold-damage', '', + 'Offensive', 'Target 314 to 699 cold AC damage'), + ('Meta-Physicist', 'Nanobot Contingent Arrest', 'Perseverences', 10, 'Type 2', '5%', + 'Fight Target: -750 NanoInit, %Add nano cost +100%, Nano cast interrupt -25%', '60s', 'Offensive', + 'Target -750 nano init, add nano cost 100%, decrase interrupt -25%, 60 second duration'), + ('Meta-Physicist', 'Economic Nanobot Use', 'Spatial Awareness', 2, 'Type 1', '5%', 'Nanocost Reducer -12%', + '60s', 'Offensive', '-12% nano cost, 60 second duration'), + ('Meta-Physicist', 'Diffuse Rage', 'Spatial Awareness', 1, 'Type 2', '5%', 'Damage Debuff -7 Damage -35 Inits', + '60s', 'Offensive', 'Target -7 damage modifier, -35 initiatives, 60 second duration'), + ('Meta-Physicist', 'Super-Ego Strike', 'Sympathy', 10, 'Type 2', '5%', 'Target Hit 1500 - 3000 Colddamage', '', + 'Offensive', 'Target 1500 to 3000 cold AC damage'), + ('Meta-Physicist', 'Suppress Fury', 'Sympathy', 7, 'Type 2', '5%', 'Damage Debuff -75 Damage -261 Inits', '60s', + 'Offensive', 'Target -75 damage modifier, -261 initiatives, 60 second duration'), + ('Meta-Physicist', 'Sow Doubt', 'Trauma', 3, 'Type 2', '5%', 'Damage Debuff -35 Damage -156 Inits', '60s', + 'Offensive', 'Target -35 damage modifier, -156 initiatives, 60 second duration'), + ('Nano-Technician', 'Source Tap', 'Combat Execution', 3, 'Type 1', '10%', 'Nano-HOT 1224 (12x102 every 5sec)', + '60s', 'Defensive', '+102 nano points, 1 hit every 15 seconds, 60 second duration'), + ('Nano-Technician', 'Powered Nano Fortress', 'Discipline', 5, 'Type 2', '10%', + 'AC/HP/NR Buff +167 AC +246 Max HP +111 NR', '60s', 'Defensive', + '+167 AC, +246 max health, +111 nano resist, 60 second duration'), + ('Nano-Technician', 'Unstable Library', 'Discipline', 1, 'Type 2', '10%', + 'AC/HP/NR Buff +31 AC +50 Max HP +32 NR', '60s', 'Defensive', + '+31 AC, +50 max health +32 nano resist, 60 second duration'), + ('Nano-Technician', 'Thermal Reprieve', 'Intellectual Refinement', 9, 'Type 1', '10%', + 'Reflectshield +10% Reflect 10 Max Reflect', '60s', 'Defensive', + '+10% reflect AC, +10 max reflect shield, 60 second duration'), + ('Nano-Technician', 'Looping Service', 'Intellectual Refinement', 6, 'Type 2', '10%', 'Absorbshield 680', '60s', + 'Defensive', '680 Absorb AC buff, 60 second duration'), + ('Nano-Technician', 'Harvest Energy', 'Nano Theory', 7, 'Type 1', '10%', 'Nano-HOT 5220 (12x435 every 5sec)', + '60s', 'Defensive', '+435 nano points, 1 hit every 5 seconds, 60 second duration'), + ('Nano-Technician', 'Optimized Library', 'Nano Theory', 10, 'Type 2', '10%', + 'AC/HP/NR Buff +331 AC +350 Max HP +140 NR', '60s', 'Defensive', + '+331 AC, +350 max health, +140 nano resist, 60 second duration'), + ('Nano-Technician', 'Circular Logic', 'Particle Physics', 1, 'Type 1', '10%', 'Nano-HOT 60 (12x5 every 5sec)', + '60s', 'Defensive', '+5 nano points, 1 hit every 5 seconds, 60 second duration'), + ('Nano-Technician', 'Increase Momentum', 'Particle Physics', 2, 'Type 2', '10%', 'Nanoinit Buff +200', '60s', + 'Defensive', '+200 nano initiative, 60 second duration'), + ('Nano-Technician', 'Layered Amnesty', 'Practical Use', 4, 'Type 1', '10%', 'Reflectshield +4%', '60s', + 'Defensive', '+4% reflect AC, 60 second duration '), + ('Nano-Technician', 'Accelerated Reality', 'Practical Use', 10, 'Type 2', '10%', 'Nanoinit Buff +600', '60s', + 'Defensive', '+600 nano initiative, 60 second duration'), + ('Shade', 'Drain Essence', 'Ambushing', 5, 'Type 1', '5%', 'HP Drain 382 Energydamage 310 Healing', '', + 'Offensive', 'Target -382 energy AC damage, heals 310 max health'), + ('Shade', 'Siphon Being', 'Assassin''s Awareness', 8, 'Type 1', '5%', 'HP Drain 580 Energydamage 577 Healing', + '', 'Offensive', 'Target -580 energy AC damage, heals 577 max health'), + ('Shade', 'Shadowed Gift', 'Assassin''s Awareness', 6, 'Type 2', '5%', + 'DOT 975 Poisondamage (5x195 hits every 1 sec)', '6s', 'Offensive', + '195 poison AC damage, 5 hits every 1 seconds, 6 second duration'), + ('Shade', 'Blackheart', 'Honed Senses', 10, 'Type 2', '5%', 'Target Hit 767 Meleedamage', '', 'Offensive', + 'Target -767 melee AC damage'), + ('Shade', 'Twisted Caress', 'Honed Senses', 7, 'Type 2', '5%', 'Target Hit 550 Meleedamage', '', 'Offensive', + 'Target -550 melee AC damage'), + ('Shade', 'Devious Spirit', 'Killing Blows', 1, 'Type 2', '5%', 'Target Hit 23 Meleedamage', '', 'Offensive', + 'Target -23 melee AC damage'), + ('Shade', 'Misdirection', 'Killing Blows', 2, 'Type 2', '5%', 'Evade Buff EvadeClsC 40 DuckExp 25 DodgeRange 25', + '60s', 'Offensive', '+40 evade, +25 duck and dodge, 60 second duration'), + ('Shade', 'Sap Life', 'Lithe', 1, 'Type 1', '5%', 'HP Drain 17 Energydamage 7 HP Gain', '', 'Offensive', + 'Target -17 energy AC damage, heals 7 max health'), + ('Shade', 'Elusive Spirit', 'Malicious Forethought', 4, 'Type 1', '5%', + 'Evade Buff EvadeClsC 56 DuckExp 32 DodgeRange 32', '60s', 'Offensive', + '+56 evade, +32 duck and dodge, 60 second duration'), + ('Shade', 'Blackened Legacy', 'Malicious Forethought', 10, 'Type 1', '5%', + 'Evade Buff EvadeClsC 100 DuckExp 50 DodgeRange 50', '60s', 'Offensive', + '+100 evade, +50 duck and dodge, 60 second duration'), + ('Shade', 'Toxic Confusion', 'Malicious Forethought', 3, 'Type 1', '5%', + 'DOT 425 Poisondamage (5x85 hits every 1sec)', '6s', 'Offensive', + '85 poison AC damage, 5 hits every 1 seconds, 6 second duration'), + ('Shade', 'Concealed Surprise', 'Stiletto Mastery', 3, 'Type 2', '5%', 'Target Hit 234 Meleedamage', '', + 'Offensive', 'Target -234 melee AC damage'), + ('Soldier', 'Successful Targeting', 'Classified Ops', 1, 'Type 1', '5%', 'AR Buff +23 AAO', '60s', 'Offensive', + '+23 add all offense, 60 second duration'), + ('Soldier', 'Shoot Artery', 'Combat Sense', 1, 'Type 2', '5%', 'Damage Buff +15 all damage', '60s', 'Offensive', + '+15 damage modifier, 60 second duration'), + ('Soldier', 'Deep Six Initiative', 'Combat Sense', 2, 'Type 2', '5%', 'Init Buff +50', '60s', 'Offensive', + '+50 initiatives, 60 second duration'), + ('Soldier', 'Reconditioned', 'Force Recon', 5, 'Type 1', '5%', 'Self Buff +361 Max HP, HOT (650) 13x50 every 5s', + '60s', 'Offensive', '+361 max health, HOT (650) 13x50 5s delay, 60 second duration'), + ('Soldier', 'Concussive Shot', 'Forward Observer', 3, 'Type 1', '5%', 'Damage Buff +35 damage', '60s', + 'Offensive', '+35 damage modifier, 60 second duration'), + ('Soldier', 'Gear Assault Absorption', 'Forward Observer', 4, 'Type 2', '5%', 'Max Reflect DMG +25', '60s', + 'Offensive', 'Increases damage reflected by 25, 60 second duration'), + ('Soldier', 'Fuse Body Armor', 'Forward Observer', 10, 'Type 2', '5%', 'Max Reflect DMG +75', '60s', 'Offensive', + 'Increases damage reflected by 75, 60 second duration'), + ('Soldier', 'Emergency Bandages', 'Marksmanship', 3, 'Type 1', '5%', + 'Self Buff +200 Max HP, HOT (325) 13x25 every 5s', '60s', 'Offensive', + '+200 max health, HOT (325) 13x25 5sdelay, 60 second duration'), + ('Soldier', 'Furious Ammunition', 'Strategic Planning', 10, 'Type 1', '5%', 'Damage Buff +99', '60s', + 'Offensive', '+99 damage modifier, 60 second duration'), + ('Soldier', 'Graze Jugular Vein', 'Strategic Planning', 7, 'Type 2', '5%', 'Damage Buff +70', '60s', 'Offensive', + '+70 damage modifier, 60 second duration'), + ('Soldier', 'On The Double', 'Sweep and Clear', 8, 'Type 2', '5%', 'Init Buff +150', '60s', 'Offensive', + '+150 initiative, 60 second duration'), + ('Soldier', 'Target Acquired', 'Sweep and Clear', 6, 'Type 1', '5%', 'AR Buff +35 AAO', '60s', 'Offensive', + '+35 add all offense, 60 second duration'), + ('Trader', 'Escrow', 'Aggressive Pricing', 3, 'Type 2', '5%', + 'Nanodrain 798 Drain (6x133 every 5sec) 600 Gain (6x100 every 5sec)', '30s', 'Offensive', + 'Target -133 nano points, self +100 nano points, 6 hits every 5 seconds, 30 second duration'), + ('Trader', 'Unexpected Bonus', 'Door-To-Door Salesman', 3, 'Type 1', '5%', + 'HP Drain 300 Energydamage 222 Healing', '', 'Offensive', 'Target -300 energy AC damage, heals 222 max health'), + ('Trader', 'Debt Collection', 'Door-To-Door Salesman', 10, 'Type 1', '5%', + 'HP Drain 1100 - 1200 Energydamage 1100-1300 Healing', '', 'Offensive', + 'Target -1100 to -1200 energy AC damage, heals 1100 to 1300 max health'), + ('Trader', 'Unforgiven Debts', 'Door-To-Door Salesman', 4, 'Type 1', '5%', + 'Skilldrain 136 Weapon- and Nanoskills Drain(10s)/Gain 68 AAO Drain (PVM) (30s)', '30s', 'Offensive', + 'Target -136 weapon and nanoskills, -68 add all offense, self +136 weapon and nanoskills, +68 add all offense, 30 second duration'), + ('Trader', 'Unopened Letter', 'Eye for a Deal', 8, 'Type 1', '5%', 'AC Drain +2067 AC -2098 AC', '60s', + 'Offensive', 'Target -2098 AC, self 2067 AC, 60 second duration'), + ('Trader', 'Exchange Product', 'Eye for a Deal', 6, 'Type 1', '5%', 'HP Drain 990 Energydamage 997 Healing', '', + 'Offensive', 'Target -990 energy AC damage, heals 997 max health'), + ('Trader', 'Rigid Liquidation', 'Fast Talk', 7, 'Type 2', '5%', + 'Nanodrain 1842 Drain (6x307 every 5sec) 1626 Gain (6x271 every 5sec)', '30s', 'Offensive', + 'Target -307 nano points, self +271 nano points, 6 hits every 5 seconds, 30 second duration'), + ('Trader', 'Accumulated Interest', 'Fast Talk', 10, 'Type 1', '5%', + 'Skilldrain 204 Weapon- and Nanoskills Drain(10s)/Gain 102 AAO Drain (PVM) (30s)', '30s', 'Offensive', + 'Target -204 weapon and nanoskills, -102 add all offense, self +204 weapon and nanoskills, +102 add all offense, 30 second duration'), + ('Trader', 'Deplete Assets', 'Hostile Takeover', 5, 'Type 1', '5%', 'AC Drain +1394 AC -1449 AC', '60s', + 'Offensive', 'Target -1449 AC, self +1394 AC, 60 second duration'), + ('Trader', 'Rebate', 'Sensible Investment', 1, 'Type 1', '5%', 'HP Drain 43 Energydamage 18 Healing', '', + 'Offensive', 'Target -43 energy AC damage, heals 18 max health'), + ('Trader', 'Refinance Loans', 'Sensible Investment', 2, 'Type 2', '5%', + 'AC Drain -200 AC +200 AC (On fightingtarget)', '60s', 'Offensive', + 'Target -200 AC, target''s fighting target +200 AC, 60 second duration'), + ('Trader', 'Payment Plan', 'Sensitive Negotiations', 1, 'Type 2', '5%', + 'Skilldrain 9 Weapon- and Nanoskills Drain(10s)/Gain 5 AAO Drain (PVM) (30s)', '30s', 'Offensive', + 'Target -9 weapon and nanoskills, -5 add all offense, self +9 weapon and nanoskills, +5 add all offense, 30 second duration'); diff --git a/modules/standard/alien/sql/ofab_armor.sql b/modules/standard/alien/sql/ofab_armor.sql new file mode 100644 index 0000000..a7b6030 --- /dev/null +++ b/modules/standard/alien/sql/ofab_armor.sql @@ -0,0 +1,438 @@ +# noinspection LongLineForFile + +DROP TABLE IF EXISTS ofab_armor; +CREATE TABLE ofab_armor +( + profession VARCHAR(30) NOT NULL, + name VARCHAR(150) NOT NULL, + slot VARCHAR(30) NOT NULL, + lowid INT NOT NULL, + highid INT NOT NULL, + upgrade INT NOT NULL +); +INSERT INTO ofab_armor (profession, name, slot, lowid, highid, upgrade) +VALUES ('Adventurer', 'Ofab Adventurer Body Armor', 'body', 264202, 264203, 0), + ('Adventurer', 'Ofab Adventurer Boots', 'boots', 264200, 264201, 0), + ('Adventurer', 'Ofab Adventurer Pants', 'pants', 264198, 264199, 0), + ('Adventurer', 'Ofab Adventurer Sleeves', 'sleeves', 264204, 264205, 0), + ('Adventurer', 'Ofab Adventurer Gloves', 'gloves', 264206, 264207, 0), + ('Adventurer', 'Ofab Adventurer Helmet', 'helmet', 264208, 264209, 0), + ('Adventurer', 'Jayde''s Odyssey ring', 'ring', 267560, 267561, 0), + ('Agent', 'Ofab Agent Body Armor', 'body', 264305, 264306, 0), + ('Agent', 'Ofab Agent Boots', 'boots', 264311, 264312, 0), + ('Agent', 'Ofab Agent Pants', 'pants', 264317, 264318, 0), + ('Agent', 'Ofab Agent Sleeves', 'sleeves', 264299, 264300, 0), + ('Agent', 'Ofab Agent Gloves', 'gloves', 264293, 264294, 0), + ('Agent', 'Ofab Agent Helmet', 'helmet', 264287, 264288, 0), + ('Agent', 'Agents'' Ring of Aim', 'ring', 267582, 267583, 0), + ('Bureaucrat', 'Ofab Bureaucrat Vest', 'body', 264521, 264522, 0), + ('Bureaucrat', 'Ofab Bureaucrat Boots', 'boots', 264527, 264528, 0), + ('Bureaucrat', 'Ofab Bureaucrat Pants', 'pants', 264533, 264534, 0), + ('Bureaucrat', 'Ofab Bureaucrat Sleeves', 'sleeves', 264515, 264516, 0), + ('Bureaucrat', 'Ofab Bureaucrat Gloves', 'gloves', 264509, 264510, 0), + ('Bureaucrat', 'Ofab Bureaucrat Headgear', 'helmet', 264503, 264504, 0), + ('Bureaucrat', 'Bureaucrats'' Ring of Order', 'ring', 268307, 268308, 0), + ('Doctor', 'Ofab Doctor Body', 'body', 264668, 264669, 0), + ('Doctor', 'Ofab Doctor Boots', 'boots', 264674, 264675, 0), + ('Doctor', 'Ofab Doctor Pants', 'pants', 264680, 264681, 0), + ('Doctor', 'Ofab Doctor Sleeves', 'sleeves', 264662, 264663, 0), + ('Doctor', 'Ofab Doctor Gloves', 'gloves', 264656, 264657, 0), + ('Doctor', 'Ofab Doctor Helmet', 'helmet', 264650, 264651, 0), + ('Doctor', 'Sheffy''s Micro Coil', 'ring', 267562, 267563, 0), + ('Enforcer', 'Ofab Enforcer Breastplate', 'body', 264223, 264224, 0), + ('Enforcer', 'Ofab Enforcer Boots', 'boots', 264217, 264218, 0), + ('Enforcer', 'Ofab Enforcer Pants', 'pants', 264211, 264212, 0), + ('Enforcer', 'Ofab Enforcer Sleeves', 'sleeves', 264229, 264230, 0), + ('Enforcer', 'Ofab Enforcer Gauntlets', 'gloves', 264235, 264236, 0), + ('Enforcer', 'Ofab Enforcer Helmet', 'helmet', 264241, 264242, 0), + ('Enforcer', 'Band of Bravery', 'ring', 267564, 267565, 0), + ('Engineer', 'Ofab Engineer Body', 'body', 264596, 264597, 0), + ('Engineer', 'Ofab Engineer Boots', 'boots', 264602, 264603, 0), + ('Engineer', 'Ofab Engineer Pants', 'pants', 264608, 264609, 0), + ('Engineer', 'Ofab Engineer Sleeves', 'sleeves', 264590, 264591, 0), + ('Engineer', 'Ofab Engineer Gloves', 'gloves', 264581, 264582, 0), + ('Engineer', 'Ofab Engineer Helmet', 'helmet', 264575, 264576, 0), + ('Engineer', 'Rusty''s Ring of Bolts', 'ring', 267566, 267567, 0), + ('Fixer', 'Ofab Fixer Body Armor', 'body', 264485, 264486, 0), + ('Fixer', 'Ofab Fixer Boots', 'boots', 264491, 264492, 0), + ('Fixer', 'Ofab Fixer Pants', 'pants', 264497, 264498, 0), + ('Fixer', 'Ofab Fixer Sleeves', 'sleeves', 264479, 264480, 0), + ('Fixer', 'Ofab Fixer Gloves', 'gloves', 264473, 264474, 0), + ('Fixer', 'Ofab Fixer Helmet', 'helmet', 264467, 264468, 0), + ('Fixer', 'Fixers'' Ring of Breaking', 'ring', 267568, 267569, 0), + ('Keeper', 'Ofab Keeper Body Armor', 'body', 264632, 264633, 0), + ('Keeper', 'Ofab Keeper Boots', 'boots', 264638, 264639, 0), + ('Keeper', 'Ofab Keeper Pants', 'pants', 264644, 264645, 0), + ('Keeper', 'Ofab Keeper Sleeves', 'sleeves', 264626, 264627, 0), + ('Keeper', 'Ofab Keeper Gloves', 'gloves', 264620, 264621, 0), + ('Keeper', 'Ofab Keeper Helmet', 'helmet', 264614, 264615, 0), + ('Keeper', 'Knights'' Ring of Honour', 'ring', 267570, 267571, 0), + ('Martial Artist', 'Ofab Martial Artist Body Armor', 'body', 264341, 264342, 0), + ('Martial Artist', 'Ofab Martial Artist Boots', 'boots', 264347, 264348, 0), + ('Martial Artist', 'Ofab Martial Artist Pants', 'pants', 264353, 264354, 0), + ('Martial Artist', 'Ofab Martial Artist Sleeves', 'sleeves', 264335, 264336, 0), + ('Martial Artist', 'Ofab Martial Artist Gloves', 'gloves', 264329, 264330, 0), + ('Martial Artist', 'Ofab Martial Artist Helmet', 'helmet', 264323, 264324, 0), + ('Martial Artist', 'Engelen''s Ring of Damage', 'ring', 267572, 267573, 0), + ('Meta-Physicist', 'Ofab Metaphysicist Body Armor', 'body', 264377, 264378, 0), + ('Meta-Physicist', 'Ofab Metaphysicist Boots', 'boots', 264383, 264384, 0), + ('Meta-Physicist', 'Ofab Metaphysicist Pants', 'pants', 264389, 264390, 0), + ('Meta-Physicist', 'Ofab Metaphysicist Sleeves', 'sleeves', 264371, 264372, 0), + ('Meta-Physicist', 'Ofab Metaphysicist Gloves', 'gloves', 264365, 264366, 0), + ('Meta-Physicist', 'Ofab Metaphysicist Headgear', 'helmet', 264359, 264360, 0), + ('Meta-Physicist', 'XtremTech''s Ring of Casting', 'ring', 268305, 268306, 0), + ('Nano-Technician', 'Ofab Nano Technician Body Armor', 'body', 264413, 264414, 0), + ('Nano-Technician', 'Ofab Nano Technician Boots', 'boots', 264419, 264420, 0), + ('Nano-Technician', 'Ofab Nano Technician Pants', 'pants', 264425, 264426, 0), + ('Nano-Technician', 'Ofab Nano Technician Sleeves', 'sleeves', 264407, 264408, 0), + ('Nano-Technician', 'Ofab Nano Technician Gloves', 'gloves', 264401, 264402, 0), + ('Nano-Technician', 'Ofab Nano Technician Helmet', 'helmet', 264395, 264396, 0), + ('Nano-Technician', 'NTs'' Ring of NanoTechnic', 'ring', 267574, 267575, 0), + ('Soldier', 'Ofab Soldier Body Armor', 'body', 264449, 264450, 0), + ('Soldier', 'Ofab Soldier Boots', 'boots', 264455, 264456, 0), + ('Soldier', 'Ofab Soldier Pants', 'pants', 264461, 264462, 0), + ('Soldier', 'Ofab Soldier Sleeves', 'sleeves', 264443, 264444, 0), + ('Soldier', 'Ofab Soldier Gloves', 'gloves', 264437, 264438, 0), + ('Soldier', 'Ofab Soldier Helmet', 'helmet', 264431, 264432, 0), + ('Soldier', 'Soldiers'' Ring of Focus', 'ring', 267578, 267579, 0), + ('Trader', 'Ofab Trader Body Armor', 'body', 264269, 264270, 0), + ('Trader', 'Ofab Trader Boots', 'boots', 264281, 264282, 0), + ('Trader', 'Ofab Trader Pants', 'pants', 264275, 264276, 0), + ('Trader', 'Ofab Trader Sleeves', 'sleeves', 264263, 264264, 0), + ('Trader', 'Ofab Trader Gloves', 'gloves', 264257, 264258, 0), + ('Trader', 'Ofab Trader Helmet', 'helmet', 264251, 264252, 0), + ('Trader', 'Baffle''s Ring of Fling', 'ring', 267580, 267581, 0), + ('Shade', 'Ofab Shade Body Armor', 'body', 264557, 264558, 0), + ('Shade', 'Ofab Shade Boots', 'boots', 264563, 264564, 0), + ('Shade', 'Ofab Shade Pants', 'pants', 264569, 264570, 0), + ('Shade', 'Ofab Shade Sleeves', 'sleeves', 264551, 264552, 0), + ('Shade', 'Ofab Shade Gloves', 'gloves', 264545, 264546, 0), + ('Shade', 'Ofab Shade Headgear', 'helmet', 264539, 264540, 0), + ('Shade', 'Shades'' Ring of Shadows', 'ring', 267576, 267577, 0), + ('Adventurer', 'Improved Ofab Adventurer Body Armor', 'body', 264190, 264191, 1), + ('Adventurer', 'Improved Ofab Adventurer Boots', 'boots', 264188, 264189, 1), + ('Adventurer', 'Improved Ofab Adventurer Pants', 'pants', 264186, 264187, 1), + ('Adventurer', 'Improved Ofab Adventurer Sleeves', 'sleeves', 264192, 264193, 1), + ('Adventurer', 'Improved Ofab Adventurer Gloves', 'gloves', 264194, 264195, 1), + ('Adventurer', 'Improved Ofab Adventurer Helmet', 'helmet', 264196, 264197, 1), + ('Agent', 'Improved Ofab Agent Body Armor', 'body', 264303, 264304, 1), + ('Agent', 'Improved Ofab Agent Boots', 'boots', 264309, 264310, 1), + ('Agent', 'Improved Ofab Agent Pants', 'pants', 264315, 264316, 1), + ('Agent', 'Improved Ofab Agent Sleeves', 'sleeves', 264297, 264298, 1), + ('Agent', 'Improved Ofab Agent Gloves', 'gloves', 264291, 264292, 1), + ('Agent', 'Improved Ofab Agent Helmet', 'helmet', 264285, 264286, 1), + ('Bureaucrat', 'Improved Ofab Bureaucrat Vest', 'body', 264519, 264520, 1), + ('Bureaucrat', 'Improved Ofab Bureaucrat Boots', 'boots', 264525, 264526, 1), + ('Bureaucrat', 'Improved Ofab Bureaucrat Pants', 'pants', 264531, 264532, 1), + ('Bureaucrat', 'Improved Ofab Bureaucrat Sleeves', 'sleeves', 264513, 264514, 1), + ('Bureaucrat', 'Improved Ofab Bureaucrat Gloves', 'gloves', 264507, 264508, 1), + ('Bureaucrat', 'Improved Ofab Bureaucrat Headgear', 'helmet', 264501, 264502, 1), + ('Doctor', 'Improved Ofab Doctor Body', 'body', 264666, 264667, 1), + ('Doctor', 'Improved Ofab Doctor Boots', 'boots', 264672, 264673, 1), + ('Doctor', 'Improved Ofab Doctor Pants', 'pants', 264678, 264679, 1), + ('Doctor', 'Improved Ofab Doctor Sleeves', 'sleeves', 264660, 264661, 1), + ('Doctor', 'Improved Ofab Doctor Gloves', 'gloves', 264654, 264655, 1), + ('Doctor', 'Improved Ofab Doctor Helmet', 'helmet', 264648, 264649, 1), + ('Enforcer', 'Improved Ofab Enforcer Breastplate', 'body', 264225, 264226, 1), + ('Enforcer', 'Improved Ofab Enforcer Boots', 'boots', 264219, 264220, 1), + ('Enforcer', 'Improved Ofab Enforcer Pants', 'pants', 264213, 264214, 1), + ('Enforcer', 'Improved Ofab Enforcer Sleeves', 'sleeves', 264231, 264232, 1), + ('Enforcer', 'Improved Ofab Enforcer Gauntlets', 'gloves', 264237, 264238, 1), + ('Enforcer', 'Improved Ofab Enforcer Helmet', 'helmet', 264243, 264244, 1), + ('Engineer', 'Improved Ofab Engineer Body', 'body', 264594, 264595, 1), + ('Engineer', 'Improved Ofab Engineer Boots', 'boots', 264600, 264601, 1), + ('Engineer', 'Improved Ofab Engineer Pants', 'pants', 264606, 264607, 1), + ('Engineer', 'Improved Ofab Engineer Sleeves', 'sleeves', 264585, 264586, 1), + ('Engineer', 'Improved Ofab Engineer Gloves', 'gloves', 264579, 264580, 1), + ('Engineer', 'Improved Ofab Engineer Helmet', 'helmet', 264573, 264574, 1), + ('Fixer', 'Improved Ofab Fixer Body Armor', 'body', 264483, 264484, 1), + ('Fixer', 'Improved Ofab Fixer Boots', 'boots', 264489, 264490, 1), + ('Fixer', 'Improved Ofab Fixer Pants', 'pants', 264495, 264496, 1), + ('Fixer', 'Improved Ofab Fixer Sleeves', 'sleeves', 264477, 264478, 1), + ('Fixer', 'Improved Ofab Fixer Gloves', 'gloves', 264471, 264472, 1), + ('Fixer', 'Improved Ofab Fixer Helmet', 'helmet', 264465, 264466, 1), + ('Keeper', 'Improved Ofab Keeper Body Armor', 'body', 264630, 264631, 1), + ('Keeper', 'Improved Ofab Keeper Boots', 'boots', 264636, 264637, 1), + ('Keeper', 'Improved Ofab Keeper Pants', 'pants', 264642, 264643, 1), + ('Keeper', 'Improved Ofab Keeper Sleeves', 'sleeves', 264624, 264625, 1), + ('Keeper', 'Improved Ofab Keeper Gloves', 'gloves', 264618, 264619, 1), + ('Keeper', 'Improved Ofab Keeper Helmet', 'helmet', 264612, 264613, 1), + ('Martial Artist', 'Improved Ofab Martial Artist Body Armor', 'body', 264339, 264340, 1), + ('Martial Artist', 'Improved Ofab Martial Artist Boots', 'boots', 264345, 264346, 1), + ('Martial Artist', 'Improved Ofab Martial Artist Pants', 'pants', 264351, 264352, 1), + ('Martial Artist', 'Improved Ofab Martial Artist Sleeves', 'sleeves', 264333, 264334, 1), + ('Martial Artist', 'Improved Ofab Martial Artist Gloves', 'gloves', 264327, 264328, 1), + ('Martial Artist', 'Improved Ofab Martial Artist Helmet', 'helmet', 264321, 264322, 1), + ('Meta-Physicist', 'Improved Ofab Metaphysicist Body Armor', 'body', 264375, 264376, 1), + ('Meta-Physicist', 'Improved Ofab Metaphysicist Boots', 'boots', 264381, 264382, 1), + ('Meta-Physicist', 'Improved Ofab Metaphysicist Pants', 'pants', 264387, 264388, 1), + ('Meta-Physicist', 'Improved Ofab Metaphysicist Sleeves', 'sleeves', 264369, 264370, 1), + ('Meta-Physicist', 'Improved Ofab Metaphysicist Gloves', 'gloves', 264363, 264364, 1), + ('Meta-Physicist', 'Improved Ofab Metaphysicist Headgear', 'helmet', 264357, 264358, 1), + ('Nano-Technician', 'Improved Ofab Nano Technician Body Armor', 'body', 264411, 264412, 1), + ('Nano-Technician', 'Improved Ofab Nano Technician Boots', 'boots', 264417, 264418, 1), + ('Nano-Technician', 'Improved Ofab Nano Technician Pants', 'pants', 264423, 264424, 1), + ('Nano-Technician', 'Improved Ofab Nano Technician Sleeves', 'sleeves', 264405, 264406, 1), + ('Nano-Technician', 'Improved Ofab Nano Technician Gloves', 'gloves', 264399, 264400, 1), + ('Nano-Technician', 'Improved Ofab Nano Technician Helmet', 'helmet', 264393, 264394, 1), + ('Soldier', 'Improved Ofab Soldier Body Armor', 'body', 264447, 264448, 1), + ('Soldier', 'Improved Ofab Soldier Boots', 'boots', 264453, 264454, 1), + ('Soldier', 'Improved Ofab Soldier Pants', 'pants', 264459, 264460, 1), + ('Soldier', 'Improved Ofab Soldier Sleeves', 'sleeves', 264441, 264442, 1), + ('Soldier', 'Improved Ofab Soldier Gloves', 'gloves', 264435, 264436, 1), + ('Soldier', 'Improved Ofab Soldier Helmet', 'helmet', 264429, 264430, 1), + ('Trader', 'Improved Ofab Trader Body Armor', 'body', 264267, 264268, 1), + ('Trader', 'Improved Ofab Trader Boots', 'boots', 264279, 264280, 1), + ('Trader', 'Improved Ofab Trader Pants', 'pants', 264273, 264274, 1), + ('Trader', 'Improved Ofab Trader Sleeves', 'sleeves', 264261, 264262, 1), + ('Trader', 'Improved Ofab Trader Gloves', 'gloves', 264255, 264256, 1), + ('Trader', 'Improved Ofab Trader Helmet', 'helmet', 264249, 264250, 1), + ('Shade', 'Improved Ofab Shade Body Armor', 'body', 264555, 264556, 1), + ('Shade', 'Improved Ofab Shade Boots', 'boots', 264561, 264562, 1), + ('Shade', 'Improved Ofab Shade Pants', 'pants', 264567, 264568, 1), + ('Shade', 'Improved Ofab Shade Sleeves', 'sleeves', 264549, 264550, 1), + ('Shade', 'Improved Ofab Shade Gloves', 'gloves', 264543, 264544, 1), + ('Shade', 'Improved Ofab Shade Headgear', 'helmet', 264537, 264538, 1), + ('Adventurer', 'Penultimate Ofab Adventurer Body Armor', 'body', 264178, 264179, 2), + ('Adventurer', 'Penultimate Ofab Adventurer Boots', 'boots', 264176, 264177, 2), + ('Adventurer', 'Penultimate Ofab Adventurer Pants', 'pants', 264174, 264175, 2), + ('Adventurer', 'Penultimate Ofab Adventurer Sleeves', 'sleeves', 264180, 264181, 2), + ('Adventurer', 'Penultimate Ofab Adventurer Gloves', 'gloves', 264182, 264183, 2), + ('Adventurer', 'Penultimate Ofab Adventurer Helmet', 'helmet', 264184, 264185, 2), + ('Agent', 'Penultimate Ofab Agent Body Armor', 'body', 264301, 264302, 2), + ('Agent', 'Penultimate Ofab Agent Boots', 'boots', 264307, 264308, 2), + ('Agent', 'Penultimate Ofab Agent Pants', 'pants', 264313, 264314, 2), + ('Agent', 'Penultimate Ofab Agent Sleeves', 'sleeves', 264295, 264296, 2), + ('Agent', 'Penultimate Ofab Agent Gloves', 'gloves', 264289, 264290, 2), + ('Agent', 'Penultimate Ofab Agent Helmet', 'helmet', 264283, 264284, 2), + ('Bureaucrat', 'Penultimate Ofab Bureaucrat Vest', 'body', 264517, 264518, 2), + ('Bureaucrat', 'Penultimate Ofab Bureaucrat Boots', 'boots', 264523, 264524, 2), + ('Bureaucrat', 'Penultimate Ofab Bureaucrat Pants', 'pants', 264529, 264530, 2), + ('Bureaucrat', 'Penultimate Ofab Bureaucrat Sleeves', 'sleeves', 264511, 264512, 2), + ('Bureaucrat', 'Penultimate Ofab Bureaucrat Gloves', 'gloves', 264505, 264506, 2), + ('Bureaucrat', 'Penultimate Ofab Bureaucrat Headgear', 'helmet', 264499, 264500, 2), + ('Doctor', 'Penultimate Ofab Doctor Body', 'body', 264664, 264665, 2), + ('Doctor', 'Penultimate Ofab Doctor Boots', 'boots', 264670, 264671, 2), + ('Doctor', 'Penultimate Ofab Doctor Pants', 'pants', 264676, 264677, 2), + ('Doctor', 'Penultimate Ofab Doctor Sleeves', 'sleeves', 264658, 264659, 2), + ('Doctor', 'Penultimate Ofab Doctor Gloves', 'gloves', 264652, 264653, 2), + ('Doctor', 'Penultimate Ofab Doctor Helmet', 'helmet', 264646, 264647, 2), + ('Enforcer', 'Penultimate Ofab Enforcer Breastplate', 'body', 264227, 264228, 2), + ('Enforcer', 'Penultimate Ofab Enforcer Boots', 'boots', 264221, 264222, 2), + ('Enforcer', 'Penultimate Ofab Enforcer Pants', 'pants', 264215, 264216, 2), + ('Enforcer', 'Penultimate Ofab Enforcer Sleeves', 'sleeves', 264233, 264234, 2), + ('Enforcer', 'Penultimate Ofab Enforcer Gauntlets', 'gloves', 264239, 264240, 2), + ('Enforcer', 'Penultimate Ofab Enforcer Helmet', 'helmet', 264245, 264246, 2), + ('Engineer', 'Penultimate Ofab Engineer Body', 'body', 264592, 264593, 2), + ('Engineer', 'Penultimate Ofab Engineer Boots', 'boots', 264598, 264599, 2), + ('Engineer', 'Penultimate Ofab Engineer Pants', 'pants', 264604, 264605, 2), + ('Engineer', 'Penultimate Ofab Engineer Sleeves', 'sleeves', 264583, 264584, 2), + ('Engineer', 'Penultimate Ofab Engineer Gloves', 'gloves', 264577, 264578, 2), + ('Engineer', 'Penultimate Ofab Engineer Helmet', 'helmet', 264571, 264572, 2), + ('Fixer', 'Penultimate Ofab Fixer Body Armor', 'body', 264481, 264482, 2), + ('Fixer', 'Penultimate Ofab Fixer Boots', 'boots', 264487, 264488, 2), + ('Fixer', 'Penultimate Ofab Fixer Pants', 'pants', 264493, 264494, 2), + ('Fixer', 'Penultimate Ofab Fixer Sleeves', 'sleeves', 264475, 264476, 2), + ('Fixer', 'Penultimate Ofab Fixer Gloves', 'gloves', 264469, 264470, 2), + ('Fixer', 'Penultimate Ofab Fixer Helmet', 'helmet', 264463, 264464, 2), + ('Keeper', 'Penultimate Ofab Keeper Body Armor', 'body', 264628, 264629, 2), + ('Keeper', 'Penultimate Ofab Keeper Boots', 'boots', 264634, 264635, 2), + ('Keeper', 'Penultimate Ofab Keeper Pants', 'pants', 264640, 264641, 2), + ('Keeper', 'Penultimate Ofab Keeper Sleeves', 'sleeves', 264622, 264623, 2), + ('Keeper', 'Penultimate Ofab Keeper Gloves', 'gloves', 264616, 264617, 2), + ('Keeper', 'Penultimate Ofab Keeper Helmet', 'helmet', 264610, 264611, 2), + ('Martial Artist', 'Penultimate Ofab Martial Artist Body Armor', 'body', 264337, 264338, 2), + ('Martial Artist', 'Penultimate Ofab Martial Artist Boots', 'boots', 264343, 264344, 2), + ('Martial Artist', 'Penultimate Ofab Martial Artist Pants', 'pants', 264349, 264350, 2), + ('Martial Artist', 'Penultimate Ofab Martial Artist Sleeves', 'sleeves', 264331, 264332, 2), + ('Martial Artist', 'Penultimate Ofab Martial Artist Gloves', 'gloves', 264325, 264326, 2), + ('Martial Artist', 'Penultimate Ofab Martial Artist Helmet', 'helmet', 264319, 264320, 2), + ('Meta-Physicist', 'Penultimate Ofab Metaphysicist Body Armor', 'body', 264373, 264374, 2), + ('Meta-Physicist', 'Penultimate Ofab Metaphysicist Boots', 'boots', 264379, 264380, 2), + ('Meta-Physicist', 'Penultimate Ofab Metaphysicist Pants', 'pants', 264385, 264386, 2), + ('Meta-Physicist', 'Penultimate Ofab Metaphysicist Sleeves', 'sleeves', 264367, 264368, 2), + ('Meta-Physicist', 'Penultimate Ofab Metaphysicist Gloves', 'gloves', 264361, 264362, 2), + ('Meta-Physicist', 'Penultimate Ofab Metaphysicist Headgear', 'helmet', 264355, 264356, 2), + ('Nano-Technician', 'Penultimate Ofab Nano Technician Body Armor', 'body', 264409, 264410, 2), + ('Nano-Technician', 'Penultimate Ofab Nano Technician Boots', 'boots', 264415, 264416, 2), + ('Nano-Technician', 'Penultimate Ofab Nano Technician Pants', 'pants', 264421, 264422, 2), + ('Nano-Technician', 'Penultimate Ofab Nano Technician Sleeves', 'sleeves', 264403, 264404, 2), + ('Nano-Technician', 'Penultimate Ofab Nano Technician Gloves', 'gloves', 264397, 264398, 2), + ('Nano-Technician', 'Penultimate Ofab Nano Technician Helmet', 'helmet', 264391, 264392, 2), + ('Soldier', 'Penultimate Ofab Soldier Body Armor', 'body', 264445, 264446, 2), + ('Soldier', 'Penultimate Ofab Soldier Boots', 'boots', 264451, 264452, 2), + ('Soldier', 'Penultimate Ofab Soldier Pants', 'pants', 264457, 264458, 2), + ('Soldier', 'Penultimate Ofab Soldier Sleeves', 'sleeves', 264439, 264440, 2), + ('Soldier', 'Penultimate Ofab Soldier Gloves', 'gloves', 264433, 264434, 2), + ('Soldier', 'Penultimate Ofab Soldier Helmet', 'helmet', 264427, 264428, 2), + ('Trader', 'Penultimate Ofab Trader Body Armor', 'body', 264265, 264266, 2), + ('Trader', 'Penultimate Ofab Trader Boots', 'boots', 264277, 264278, 2), + ('Trader', 'Penultimate Ofab Trader Pants', 'pants', 264271, 264272, 2), + ('Trader', 'Penultimate Ofab Trader Sleeves', 'sleeves', 264259, 264260, 2), + ('Trader', 'Penultimate Ofab Trader Gloves', 'gloves', 264253, 264254, 2), + ('Trader', 'Penultimate Ofab Trader Helmet', 'helmet', 264247, 264248, 2), + ('Shade', 'Penultimate Ofab Shade Body Armor', 'body', 264553, 264554, 2), + ('Shade', 'Penultimate Ofab Shade Boots', 'boots', 264559, 264560, 2), + ('Shade', 'Penultimate Ofab Shade Pants', 'pants', 264565, 264566, 2), + ('Shade', 'Penultimate Ofab Shade Sleeves', 'sleeves', 264547, 264548, 2), + ('Shade', 'Penultimate Ofab Shade Gloves', 'gloves', 264541, 264542, 2), + ('Shade', 'Penultimate Ofab Shade Headgear', 'helmet', 264535, 264536, 2), + ('Adventurer', 'Special Edition Ofab Adventurer Helmet', 'specialhelmet', 267353, 267354, 3), + ('Agent', 'Special Edition Ofab Agent Helmet', 'specialhelmet', 267356, 267357, 3), + ('Bureaucrat', 'Special Edition Ofab Bureaucrat Headgear', 'specialhelmet', 267363, 267364, 3), + ('Doctor', 'Special Edition Ofab Doctor Helmet', 'specialhelmet', 267351, 267352, 3), + ('Enforcer', 'Special Edition Ofab Enforcer Helmet', 'specialhelmet', 267365, 267366, 3), + ('Engineer', 'Special Edition Ofab Engineer Helmet', 'specialhelmet', 267369, 267370, 3), + ('Fixer', 'Special Edition Ofab Fixer Helmet', 'specialhelmet', 267367, 267368, 3), + ('Keeper', 'Special Edition Ofab Keeper Helmet', 'specialhelmet', 267375, 267376, 3), + ('Martial Artist', 'Special Edition Ofab Martial Artist Helmet', 'specialhelmet', 267371, 267372, 3), + ('Meta-Physicist', 'Special Edition Ofab Metaphysicist Headgear', 'specialhelmet', 267373, 267374, 3), + ('Nano-Technician', 'Special Edition Ofab Nano Technician Helmet', 'specialhelmet', 267383, 267384, 3), + ('Soldier', 'Special Edition Ofab Soldier Helmet', 'specialhelmet', 267379, 267380, 3), + ('Trader', 'Special Edition Ofab Trader Helmet', 'specialhelmet', 267381, 267382, 3), + ('Shade', 'Special Edition Ofab Shade Headgear', 'specialhelmet', 267377, 267378, 3), + ('Adventurer', 'OFAB Adventurer Protective Gear', 'back', 267931, 267931, 3), + ('Agent', 'OFAB Agent Protective Gear', 'back', 267509, 267509, 3), + ('Bureaucrat', 'OFAB Bureaucrat Protective Gear', 'back', 267932, 267932, 3), + ('Doctor', 'OFAB Doctor Protective Gear', 'back', 267933, 267933, 3), + ('Enforcer', 'OFAB Enforcer Protective Gear', 'back', 267510, 267510, 3), + ('Engineer', 'OFAB Engineer Protective Gear', 'back', 267936, 267936, 3), + ('Fixer', 'OFAB Fixer Protective Gear', 'back', 267512, 267512, 3), + ('Keeper', 'OFAB Keeper Protective Gear', 'back', 267513, 267513, 3), + ('Martial Artist', 'OFAB Martial Artist Protective Gear', 'back', 267937, 267937, 3), + ('Meta-Physicist', 'OFAB Meta-Physicist Protective Gear', 'back', 267515, 267515, 3), + ('Nano-Technician', 'OFAB Nano Technician Protective Gear', 'back', 267938, 267938, 3), + ('Soldier', 'OFAB Soldier Protective Gear', 'back', 267939, 267939, 3), + ('Trader', 'OFAB Trader Protective Gear', 'back', 267935, 267935, 3), + ('Shade', 'OFAB Shade Protective Gear', 'back', 267934, 267934, 3), + ('Adventurer', 'OFAB Adventurer Shoulder Wear', 'shoulder', 301693, 301693, 3), + ('Agent', 'OFAB Agent Shoulder Wear', 'shoulder', 301698, 301698, 3), + ('Bureaucrat', 'OFAB Bureaucrat Shoulder Wear', 'shoulder', 301696, 301696, 3), + ('Doctor', 'OFAB Doctor Shoulder Wear', 'shoulder', 301697, 301697, 3), + ('Enforcer', 'OFAB Enforcer Shoulder Wear', 'shoulder', 267511, 267511, 3), + ('Engineer', 'OFAB Engineer Shoulder Wear', 'shoulder', 268003, 268003, 3), + ('Fixer', 'OFAB Fixer Shoulder Wear', 'shoulder', 301694, 301694, 3), + ('Keeper', 'OFAB Keeper Shoulder Wear', 'shoulder', 267514, 267514, 3), + ('Martial Artist', 'OFAB Martial Artist Shoulder Wear', 'shoulder', 268004, 268004, 3), + ('Meta-Physicist', 'OFAB Metaphysicist Shoulder Wear', 'shoulder', 301695, 301695, 3), + ('Nano-Technician', 'OFAB Nano Technician Shoulder Wear', 'shoulder', 268081, 268081, 3), + ('Soldier', 'OFAB Soldier Shoulder Wear', 'shoulder', 268186, 268186, 3), + ('Trader', 'OFAB Trader Shoulder Wear', 'shoulder', 268006, 268006, 3), + ('Shade', 'OFAB Shade Shoulder Wear', 'shoulder', 268005, 268005, 3); +DROP TABLE IF EXISTS ofab_armor_cost; +CREATE TABLE ofab_armor_cost +( + slot varchar(30) NOT NULL, + ql INT NOT NULL, + vp INT NOT NULL +); +INSERT INTO ofab_armor_cost (slot, ql, vp) +VALUES ('ring', 1, 100), + ('body', 25, 78), + ('boots', 25, 73), + ('pants', 25, 73), + ('sleeves', 25, 49), + ('gloves', 25, 49), + ('helmet', 25, 78), + ('ring', 25, 253), + ('body', 50, 323), + ('boots', 50, 302), + ('pants', 50, 302), + ('sleeves', 50, 202), + ('gloves', 50, 202), + ('helmet', 50, 323), + ('ring', 50, 741), + ('body', 75, 736), + ('boots', 75, 690), + ('pants', 75, 690), + ('sleeves', 75, 460), + ('gloves', 75, 460), + ('helmet', 75, 736), + ('ring', 75, 1563), + ('body', 100, 1316), + ('boots', 100, 1234), + ('pants', 100, 1234), + ('sleeves', 100, 823), + ('gloves', 100, 823), + ('helmet', 100, 1316), + ('ring', 100, 2719), + ('body', 125, 2064), + ('boots', 125, 1935), + ('pants', 125, 1935), + ('sleeves', 125, 1290), + ('gloves', 125, 1290), + ('helmet', 125, 2064), + ('ring', 125, 4210), + ('body', 150, 2980), + ('boots', 150, 2794), + ('pants', 150, 2794), + ('sleeves', 150, 1863), + ('gloves', 150, 1863), + ('helmet', 150, 2980), + ('ring', 150, 6035), + ('body', 175, 4064), + ('boots', 175, 3810), + ('pants', 175, 3810), + ('sleeves', 175, 2540), + ('gloves', 175, 2540), + ('helmet', 175, 4064), + ('ring', 175, 8193), + ('body', 200, 5316), + ('boots', 200, 4984), + ('pants', 200, 4984), + ('sleeves', 200, 3322), + ('gloves', 200, 3322), + ('helmet', 200, 5316), + ('ring', 200, 10687), + ('body', 225, 6735), + ('boots', 225, 6313), + ('pants', 225, 6313), + ('sleeves', 225, 4209), + ('gloves', 225, 4209), + ('helmet', 225, 6735), + ('ring', 225, 13513), + ('body', 250, 8321), + ('boots', 250, 7802), + ('pants', 250, 7802), + ('sleeves', 250, 5201), + ('gloves', 250, 5201), + ('helmet', 250, 8321), + ('ring', 250, 16674), + ('body', 275, 10077), + ('boots', 275, 9446), + ('pants', 275, 9446), + ('sleeves', 275, 6298), + ('gloves', 275, 6298), + ('helmet', 275, 10077), + ('ring', 275, 20171), + ('body', 300, 12000), + ('boots', 300, 11250), + ('pants', 300, 11250), + ('sleeves', 300, 7500), + ('gloves', 300, 7500), + ('helmet', 300, 12000), + ('ring', 300, 24000), + ('specialhelmet', 300, 30000), + ('back', 300, 30000), + ('shoulder', 300, 12000); +DROP TABLE IF EXISTS ofab_armor_type; +CREATE TABLE ofab_armor_type +( + type SMALLINT NOT NULL, + profession VARCHAR(30) NOT NULL +); +INSERT INTO ofab_armor_type (type, profession) +VALUES (64, 'Doctor'), + (64, 'Engineer'), + (64, 'Keeper'), + (64, 'Meta-Physicist'), + (295, 'Adventurer'), + (295, 'Enforcer'), + (295, 'Martial Artist'), + (295, 'Soldier'), + (468, 'Bureaucrat'), + (468, 'Nano-Technician'), + (468, 'Trader'), + (935, 'Agent'), + (935, 'Fixer'), + (935, 'Shade'); \ No newline at end of file diff --git a/modules/standard/alien/sql/ofab_weapons.sql b/modules/standard/alien/sql/ofab_weapons.sql new file mode 100644 index 0000000..f286f6f --- /dev/null +++ b/modules/standard/alien/sql/ofab_weapons.sql @@ -0,0 +1,39 @@ +# noinspection LongLineForFile + +DROP TABLE IF EXISTS ofab_weapons; +CREATE TABLE ofab_weapons +( + type SMALLINT NOT NULL, + name VARCHAR(255) NOT NULL +); +INSERT INTO ofab_weapons (type, name) +VALUES (18, 'Mongoose'), + (18, 'Viper'), + (18, 'Wolf'), + (34, 'Bear'), + (34, 'Panther'), + (687, 'Cobra'), + (687, 'Shark'), + (687, 'Silverback'), + (812, 'Hawk'), + (812, 'Peregrine'), + (812, 'Tiger'); +DROP TABLE IF EXISTS ofab_weapons_cost; +CREATE TABLE ofab_weapons_cost +( + ql SMALLINT NOT NULL, + vp SMALLINT NOT NULL +); +INSERT INTO ofab_weapons_cost (ql, vp) +VALUES (25, 117), + (50, 488), + (75, 1110), + (100, 1988), + (125, 2365), + (150, 3497), + (175, 5384), + (200, 7987), + (225, 8617), + (250, 10509), + (275, 13665), + (300, 18000); diff --git a/modules/standard/aou/aou.msg b/modules/standard/aou/aou.msg new file mode 100644 index 0000000..fedefb2 --- /dev/null +++ b/modules/standard/aou/aou.msg @@ -0,0 +1,42 @@ +{ + "no_guide_id": { + "en_US": "Could not find AO-Universe guide with id {id}.", + "de_DE": "Es konnte kein AO-Universe Guide mit der ID {id} gefunden werden." + }, + "guide": { + "en_US": [ + "\n", + "ID: {id} ({raw})\n", + "Updated: {updated}\n", + "Profession: {profession}\n", + "Faction: {faction}\n", + "Level: {level}\n", + "Author: {author}\n\n", + "{text}\n\n", + " - Powered by {aou}" + ], + "de_DE": [ + "\n", + "ID: {id} ({raw})\n", + "Letztes Update: {updated}\n", + "Profession: {profession}\n", + "Faction: {faction}\n", + "Level: {level}\n", + "Autor: {author}\n\n", + "{text}\n\n", + " - Unterstützt von {aou}" + ] + }, + "no_guide_search": { + "en_US": "Could not find any AO-Universe guides for search {search}.", + "de_DE": "Die Suche nach einem AO-Universe Guide mit dem Inhalt {search} hatte kein Ergebnis.." + }, + "search_guide_title": { + "en_US": "AOU Guides containing '{search}' ({count})", + "de_DE": "AOU Guides mit dem Inhalt '{search}' ({count})" + }, + "search_guide_title_all": { + "en_US": "All AOU Guides containing '{search}' ({count})", + "de_DE": "Alle AOU Guides mit dem Inhalt '{search}' ({count})" + } +} diff --git a/modules/standard/aou/aou_controller.py b/modules/standard/aou/aou_controller.py new file mode 100644 index 0000000..f714e96 --- /dev/null +++ b/modules/standard/aou/aou_controller.py @@ -0,0 +1,218 @@ +import re +import time +from xml.etree import ElementTree + +import bbcode +import hjson +import requests + +from core.chat_blob import ChatBlob +from core.command_param_types import Any, Const, Int +from core.decorators import instance, command +from core.dict_object import DictObject +from core.translation_service import TranslationService +from core.tyrbot import Tyrbot + + +# noinspection PyUnusedLocal +@instance() +class AOUController: + AOU_URL = "https://www.ao-universe.com/mobile/parser.php?bot=tyrbot" + + CACHE_GROUP = "aou" + CACHE_MAX_AGE = 604800 + + def __init__(self): + self.guide_id_regex = re.compile(r"pid=(\d+)", re.IGNORECASE) + + # initialize bbcode parser + self.parser = bbcode.Parser(install_defaults=False, newline="\n", replace_links=False, replace_cosmetic=False, + drop_unrecognized=True) + self.parser.add_simple_formatter("i", "%(value)s") + self.parser.add_simple_formatter("b", "%(value)s") + self.parser.add_simple_formatter("ts_ts", " + ", standalone=True) + self.parser.add_simple_formatter("ts_ts2", " = ", standalone=True) + self.parser.add_simple_formatter("ct", " | ", standalone=True) + self.parser.add_simple_formatter("cttd", " | ", standalone=True) + self.parser.add_simple_formatter("cttr", "\n | ", standalone=True) + self.parser.add_simple_formatter("br", "\n", standalone=True) + self.parser.add_formatter("img", self.bbcode_render_image) + self.parser.add_formatter("url", self.bbcode_render_url) + self.parser.add_formatter("item", self.bbcode_render_item) + self.parser.add_formatter("itemname", self.bbcode_render_item) + self.parser.add_formatter("itemicon", self.bbcode_render_item) + self.parser.add_formatter("waypoint", self.bbcode_render_waypoint) + + def inject(self, registry): + self.text = registry.get_instance("text") + self.bot: Tyrbot = registry.get_instance("bot") + self.items_controller = registry.get_instance("items_controller") + self.cache_service = registry.get_instance("cache_service") + self.command_alias_service = registry.get_instance("command_alias_service") + self.ts: TranslationService = registry.get_instance("translation_service") + self.getresp = self.ts.get_response + + def start(self): + self.command_alias_service.add_alias("title", "aou 11") + self.command_alias_service.add_alias("totw", "macro aou 171|aou 172") + self.command_alias_service.add_alias("som", "macro aou 169|aou 383") + self.command_alias_service.add_alias("reck", "aou 629") + self.command_alias_service.add_alias("pets", "aou 2") + self.ts.register_translation("module/aou", self.load_aou_msg) + + def load_aou_msg(self): + with open("modules/standard/aou/aou.msg", mode="r", encoding="utf-8") as f: + return hjson.load(f) + + @command(command="aou", params=[Int("guide_id")], access_level="member", + description="Show an AO-Universe guide") + def aou_show_cmd(self, request, guide_id): + guide_info = self.retrieve_guide(guide_id) + + if not guide_info: + return self.getresp("module/aou", "no_guide_id", {"id": guide_id}) + + obj = DictObject() + obj.id = self.text.make_chatcmd(guide_info.id, + f"/start https://www.ao-universe.com/main.php?site=knowledge&id=" + f"{guide_info.id}") + obj.raw = self.text.make_chatcmd("Raw", "/start %s" % (self.AOU_URL + "&mode=view&id=" + str(guide_info.id))) + obj.updated = guide_info.updated + obj.profession = guide_info.profession + obj.faction = guide_info.faction + obj.level = guide_info.level + obj.author = self.format_bbcode_code(guide_info.author) + obj.aou = self.text.make_chatcmd("AO-Universe.com", "/start https://www.ao-universe.com") + obj.text = self.format_bbcode_code(guide_info.text) + + self.bot.send_mass_message(request.sender.char_id, + ChatBlob(guide_info.name, self.getresp("module/aou", "guide", {**obj}))) + + @command(command="aou", params=[Const("all", is_optional=True), Any("search")], access_level="member", + description="Search for an AO-Universe guides") + def aou_search_cmd(self, request, include_all_matches, search): + include_all_matches = include_all_matches or False + + r = requests.get(self.AOU_URL + "&mode=search&search=" + search, timeout=5) + xml = ElementTree.fromstring(r.content) + + blob = "" + count = 0 + for section in xml.iter("section"): + category = self.get_category(section) + found = False + for guide in self.get_guides(section): + if include_all_matches or self.check_matches( + category + " " + guide["name"] + " " + (guide["description"] or ""), search): + # don't show category unless we have at least one guide for it + if not found: + blob += "\n%s\n" % category + found = True + + count += 1 + blob += "%s - %s\n" % ( + self.text.make_tellcmd(guide["name"], "aou %s" % guide["id"]), guide["description"]) + blob += "\n\nPowered by %s" % self.text.make_chatcmd("AO-Universe.com", "/start https://www.ao-universe.com") + + if count == 0: + return self.getresp("module/aou", "no_guide_search", {"search": search}) + else: + self.bot.send_mass_message(request.sender.char_id, ChatBlob( + self.getresp("module/aou", "search_guide_title" + ("_all" if include_all_matches else ""), + {"search": search, "count": count}), blob)) + + def retrieve_guide(self, guide_id): + cache_key = "%d.xml" % guide_id + + t = int(time.time()) + + # check cache for fresh value + cache_result = self.cache_service.retrieve(self.CACHE_GROUP, cache_key) + + if cache_result and cache_result.last_modified > (t - self.CACHE_MAX_AGE): + result = ElementTree.fromstring(cache_result.data) + else: + response = requests.get(self.AOU_URL + "&mode=view&id=" + str(guide_id), timeout=5) + result = ElementTree.fromstring(response.content) + + if result.findall("./error"): + result = None + + if result: + # store result in cache + self.cache_service.store(self.CACHE_GROUP, cache_key, ElementTree.tostring(result, encoding="unicode")) + elif cache_result: + # check cache for any value, even expired + result = ElementTree.fromstring(cache_result.data) + + if result: + return self.get_guide_info(result) + else: + return None + + def get_guide_info(self, xml): + content = self.get_xml_child(xml, "section/content") + return DictObject({ + "id": self.get_xml_child(content, "id").text, + "category": self.get_category(self.get_xml_child(xml, "section")), + "name": self.get_xml_child(content, "name").text, + "updated": self.get_xml_child(content, "update").text, + "profession": self.get_xml_child(content, "class").text, + "faction": self.get_xml_child(content, "faction").text, + "level": self.get_xml_child(content, "level").text, + "author": self.get_xml_child(content, "author").text, + "text": self.get_xml_child(content, "text").text + }) + + def check_matches(self, haystack, needle): + haystack = haystack.lower() + for n in needle.split(): + if n in haystack: + return True + return False + + def get_guides(self, section): + result = [] + for guide in section.findall("./guidelist/guide"): + result.append({"id": guide[0].text, "name": guide[1].text, "description": guide[2].text}) + return result + + def get_category(self, section): + result = [] + for folder_names in section.findall("./folderlist/folder/name"): + result.append(folder_names.text) + return " - ".join(reversed(result)) + + def get_xml_child(self, xml, child_tag): + return xml.findall("./%s" % child_tag)[0] + + def format_bbcode_code(self, bbcode_str): + return self.parser.format(bbcode_str) + + # BBCode formatters + def bbcode_render_image(self, tag_name, value, options, parent, context): + return self.text.make_chatcmd("Image", "/start https://www.ao-universe.com/" + value) + + def bbcode_render_url(self, tag_name, value, options, parent, context): + url = options.get("url") or value + guide_id_match = self.guide_id_regex.search(url) + if guide_id_match: + return self.text.make_tellcmd(value, "aou " + guide_id_match.group(1)) + else: + return self.text.make_chatcmd(value, "/start " + url) + + def bbcode_render_item(self, tag_name, value, options, parent, context): + item = self.items_controller.get_by_item_id(value) + if not item: + return "Unknown Item(%s)" % value + else: + include_icon = tag_name == "item" or tag_name == "itemicon" + return self.text.format_item(item, with_icon=include_icon) + + def bbcode_render_waypoint(self, tag_name, value, options, parent, context): + x_coord = options["x"] + y_coord = options["y"] + pf_id = options["pf"] + + return self.text.make_chatcmd("%s (%sx%s)" % (value, x_coord, y_coord), + "/waypoint %s %s %s" % (x_coord, y_coord, pf_id)) diff --git a/modules/standard/bossloot/boss.sql b/modules/standard/bossloot/boss.sql new file mode 100644 index 0000000..6179c0f --- /dev/null +++ b/modules/standard/bossloot/boss.sql @@ -0,0 +1,282 @@ +# noinspection LongLineForFile + +DROP TABLE IF EXISTS boss; +CREATE TABLE boss +( + id INT PRIMARY KEY, + name VARCHAR(50) NOT NULL +); +INSERT INTO boss +VALUES (1, 'Afreet Ellis'), + (2, 'Akshki'), + (3, 'Alpha Skincrawler'), + (4, 'Anansi''s Left Hand'), + (5, 'Anansi''s Right Hand'), + (6, 'Anansi''s Abettor'), + (7, 'Anansi''s Favorite'), + (8, 'Aniitaps Shadow'), + (9, 'Apprentice Beasthandler'), + (10, 'Aquarius'), + (11, 'Aries'), + (12, 'Asperous Imp'), + (13, 'Astypalia'), + (14, 'Atakirh'), + (15, 'Athlar'), + (16, 'Bane'), + (17, 'Bending Eremite'), + (18, 'Bigot Inmodeah'), + (19, 'Black'), + (20, 'Brutish Dryad'), + (21, 'Cacophonous Imp'), + (22, 'Cancer'), + (23, 'Cantankerous Golem'), + (24, 'Capricorn'), + (25, 'Catervauling Minx'), + (26, 'Cenobite Shadow'), + (27, 'Cerubin The Rejected'), + (28, 'Chimera Monitor'), + (29, 'Chimera Trainer'), + (30, 'Clan Modified A-4000'), + (31, 'Clan Modified A-4001'), + (32, 'Chimera Trainer'), + (33, 'Colonel Frank Kaehler'), + (34, 'Comatosed Soul'), + (35, 'Commander Kelly Frederickson'), + (36, 'Conflagrant Spirit'), + (37, 'Corrupt Spirit'), + (38, 'Crabby Golem'), + (39, 'Cranky Golem'), + (40, 'Creepy Spider'), + (41, 'Crete'), + (42, 'Cuty'), + (43, 'Daria Marie Walzer'), + (44, 'Daring Dryad'), + (45, 'Dauntless Dryad'), + (46, 'Delinquent Spirit'), + (47, 'Devoted Spirit Hunter'), + (48, 'Diamondine Soldier'), + (49, 'Diamondine Trainee'), + (50, 'Ding'), + (51, 'Disturbing Imp'), + (52, 'Elian Zuwadza'), + (53, 'Enkindled Spirit'), + (54, 'Escaped Gargantula'), + (55, 'Fanatic Spirit Hunter'), + (56, 'Fearless Dryad'), + (57, 'Fiery Soldier'), + (58, 'Forefather'), + (59, 'Gemini'), + (60, 'General Kaehler Jr'), + (61, 'General Kronillis'), + (62, 'General Nirtox'), + (63, 'General Vivyan'), + (64, 'George'), + (65, 'Hawqana'), + (66, 'High Commander Frederickson'), + (67, 'Howling Minx'), + (68, 'Howling Predator'), + (69, 'Ian Warr'), + (70, 'Incandescent Spirit'), + (71, 'Irascible Golem'), + (72, 'Iron Reet'), + (73, 'Isham'), + (74, 'Ishimkimk'), + (75, 'Ithaki'), + (76, 'Joo'), + (77, 'Jukes'), + (78, 'Lab Director'), + (79, 'Leo'), + (80, 'Libra'), + (81, 'Limber Dryad'), + (82, 'Limnos'), + (83, 'Limping Predator'), + (84, 'Ljotur The Lunatic'), + (85, 'Lord Of The Void'), + (86, 'Lost Soul'), + (87, 'Lurking Dryad'), + (88, 'Mantis Queen'), + (89, 'Marcus Robicheaux'), + (90, 'Maychwaham'), + (91, 'Mick Nugget McMullet'), + (92, 'Mooching Dryad'), + (93, 'Morgan Le Faye'), + (94, 'Morty'), + (95, 'Mull'), + (96, 'Neleb The Deranged'), + (97, 'Nelly Johnson'), + (98, 'Notum Soldier'), + (99, 'Notum Trainee'), + (100, 'Obediency Inspector'), + (101, 'Omni-Pol Command Juggernaut'), + (102, 'Oscar'), + (103, 'Ossuz'), + (104, 'Ownz'), + (105, 'Pained Predator'), + (106, 'Patricia Johnson'), + (107, 'Peristaltic Abomination'), + (108, 'Peristaltic Aversion'), + (109, 'Peter Lee'), + (110, 'Phatmos'), + (111, 'Pisces'), + (112, 'Pit Demon'), + (113, 'Polly'), + (114, 'Polymorphed Lunatic'), + (115, 'Powa'), + (116, 'Professor Van Horn'), + (117, 'Punctilious Hiathlin'), + (118, 'Putrid Eremite'), + (119, 'R-2000 Vermin Disposal Unit'), + (120, 'Ris Lee'), + (121, 'Rotting Eremite'), + (122, 'Sadistic Soul Dredge'), + (123, 'Sagittarius'), + (124, 'Salahpt'), + (125, 'Scary Spider'), + (126, 'Scorpio'), + (127, 'Scratching Soul Dredge'), + (128, 'Screeching Imp'), + (129, 'Scrupulous Hiathlin'), + (130, 'Sinful Soul Dredge'), + (131, 'Skulking Dryad'), + (132, 'Skylight'), + (133, 'Slinking Dryad'), + (134, 'Snatching Soul Dredge'), + (135, 'Special Agent Lamb'), + (136, 'Spetses'), + (137, 'Splintered Girder'), + (138, 'Stark'), + (139, 'Steele Filar'), + (140, 'Stumpy'), + (141, 'Supply Master Eel'), + (142, 'Supply Master Smug'), + (143, 'Swirling Eremite'), + (144, 'T.I.M.'), + (145, 'Tarasque'), + (146, 'Taurus'), + (147, 'Tdecin'), + (148, 'The Beast'), + (149, 'The Nightheart'), + (150, 'The Obediency Enforcer'), + (151, 'The One (Babyface)'), + (152, 'The Pest'), + (153, 'Tinos'), + (154, 'Tiunissik'), + (155, 'Torrid Spirit'), + (156, 'Torrith The Ancient'), + (157, 'Tri Plumbo'), + (158, 'Tuqusk'), + (159, 'Turk'), + (160, 'Tyro Beasthandler'), + (161, 'Ushamaham'), + (162, 'Virgo'), + (163, 'Waning Soul'), + (164, 'Wounded Predator'), + (165, 'Zias'), + (166, 'Xark the Battletoad'), + (167, 'Inobak the Gelid'), + (168, 'Hezak The Immortal'), + (169, 'Dominus Facut the Bloodless'), + (170, 'Dominus Ummoh the Pedagogue'), + (171, 'Dominus Jiannu'), + (172, 'Iskop the Idolator'), + (173, 'Jeuru the Defiler'), + (174, 'Wicked Soul Dredge'), + (175, 'Numiel'), + (176, 'Asanon'), + (177, 'Ahomac'), + (178, 'Hebial'), + (179, 'Primus Scrap Pillager'), + (180, 'Primus Outlaw'), + (181, 'Distracted Snake Tamer'), + (182, 'First Brood Champion'), + (183, 'Second Brood Champion'), + (184, 'Third Brood Champion'), + (185, 'Fourth Brood Champion'), + (186, 'Fifth Brood Champion'), + (187, 'Sixth Brood Champion'), + (188, 'Seventh Brood Champion'), + (189, 'Eighth Brood Champion'), + (190, 'Ninth Brood Champion'), + (191, 'Tenth Brood Champion'), + (192, 'The Hollow Island Suzerain'), + (193, 'The Brood Mother'), + (194, 'Hollow Island Weed'), + (195, 'Algid Slither'), + (196, 'Brumal Slither'), + (197, 'Chilly Slither'), + (198, 'Cold Slither'), + (199, 'Nippy Slither'), + (200, 'Gashing Soul Dredge'), + (201, 'Iced Slither'), + (202, 'Iniquitous Spirit'), + (203, 'Tiny'), + (204, 'Trup'), + (205, 'Vile Spirit'), + (206, 'Jack Legchopper'), + (207, 'Trash King'), + (209, 'Lord Ghasap'), + (210, 'Eumenides'), + (211, 'Vergil Aeneid'), + (212, 'Abmouth Supremus'), + (213, 'General Serverus'), + (214, 'Eradicator Deimos'), + (215, 'Techleader Praetor'), + (216, 'Augmented Cyborg Hellfury'), + (217, 'Prototype Inferno'), + (218, 'Commander Jocasta'), + (219, 'Defender Of The Three'), + (220, 'The Curator'), + (221, 'Nematet The Custodian Of Time'), + (222, 'The Re-animator'), + (223, 'Lien the Memorystalker'), + (224, 'Guardian Of Tomorrow'), + (225, 'Uklesh The Frozen'), + (226, 'Aztur The Immortal'), + (227, 'Gartua The Doorkeeper'), + (228, 'Windcaller Yatilla'), + (229, 'Den Smuggler Pilot'), + (230, 'Anansi''s Disciple'), + (231, 'Aniitap''s Shadow'), + (232, 'Akshk''i'), + (233, 'Bia''s Favorite'), + (234, 'Bigot Helozabasael'), + (235, 'Bigot Nzaemihiel'), + (237, 'Estella Fire'), + (238, 'Fetid Eremite'), + (239, 'Hebiel'), + (240, 'Ishimk''Imk'), + (241, 'Malah-Fulcifera'), + (242, 'Maychwyawi'), + (243, 'Medusa Philanderer'), + (244, 'Natsmaahpt'), + (245, 'Noxious Eremite'), + (246, 'Obsolete Soul Dredge'), + (247, 'Paxos'), + (248, 'Punctlious Hiathlin'), + (249, 'Pursued Spirit'), + (250, 'Pyiininnik'), + (251, 'Razor the Battletoad'), + (252, 'Sanatsimk'), + (253, 'Silent Spider'), + (254, 'Syros'), + (255, 'Tuq''usk'), + (256, 'Ushap''ing'), + (257, 'Waywaqa'), + (258, 'Ground Chief Vortexx'), + (259, 'Mitaar Hero'), + (260, '12-man'), + (261, 'M.A.G.S'), + (262, 'Lord of Sand'), + (263, 'Prime Evolution Huzzum'), + (264, 'Wardog'), + (265, 'Cyborg Executioner'), + (266, 'SANDSTORM Control Tower'), + (267, 'Warchief Skawt'), + (268, 'Entvined General'), + (269, 'High Commander Riker'), + (270, 'Abandoned Hope'), + (271, 'Abmouth Indomitus'), + (272, 'Atma'), + (273, 'Cerubin The Reborn'), + (274, 'T.A.M.'), + (275, 'Zaal The Immortal'); \ No newline at end of file diff --git a/modules/standard/bossloot/boss_loot.sql b/modules/standard/bossloot/boss_loot.sql new file mode 100644 index 0000000..0023a88 --- /dev/null +++ b/modules/standard/bossloot/boss_loot.sql @@ -0,0 +1,1191 @@ +DROP TABLE IF EXISTS boss_loot; +CREATE TABLE boss_loot +( + boss_id INT NOT NULL, + item_name VARCHAR(100) NOT NULL +); +# noinspection LongLine + +INSERT INTO boss_loot +VALUES (1, 'Massive Bolt Charger'), + (2, 'Armplates of Meteorite Assembly'), + (2, 'Boots of Stolen Comet Speed'), + (2, 'Gauntlets of Star Confabulation'), + (2, 'Moon Watcher Helmet'), + (2, 'Overcoat of the Firmament'), + (2, 'Shoulderpads of Asteroid Calling'), + (2, 'Vest of Torpid Sunrays'), + (3, 'Brother''s Brass Knuckles'), + (3, 'Crawler Armor Boots'), + (3, 'Crawler Armor Gloves'), + (3, 'Crawler Armor Hood'), + (3, 'Crawler Armor Pants'), + (3, 'Crawler Armor Shoulder Pad'), + (3, 'Crawler Armor Sleeves'), + (3, 'Crawler Body Armor'), + (4, 'Subspace Mesh'), + (4, 'Meta-Cerebellum Ring'), + (5, 'Meta-Cerebellum Ring'), + (6, 'Two-Dimensional Hole'), + (6, 'Maiden''s Gloves'), + (7, 'Short Circuited Spiritech Circlet'), + (7, 'Short Circuited Spiritech Circlet'), + (8, 'Piercing Evil'), + (9, 'Bellum Badonis Armor Boots'), + (9, 'Bellum Badonis Armor Gloves'), + (9, 'Bellum Badonis Armor Helmet'), + (9, 'Bellum Badonis Armor Sleeves'), + (9, 'Bellum Badonis Body Armor'), + (9, 'Bellum Badonis Coat'), + (9, 'Bellum Badonis Shoulderpads'), + (9, 'Finely Refined Notum'), + (9, 'Master''s Eye'), + (9, 'Lava capsule'), + (10, 'Aquarius'' Boots of Small Steps'), + (10, 'Aquarius''s Multitask Calculator'), + (10, 'Intuitive Memory of the Aquarius'), + (10, 'Mediative Gloves of the Aquarius'), + (11, 'Aries'' Tiara of the Quick Witted'), + (11, 'Boon of Aries'), + (11, 'Dynamic Sleeve of Aries'), + (11, 'Quick-Draw Holster of Aries'), + (12, 'Elysian Protector''s Cuirass'), + (12, 'Focus-Funneling Spirit'), + (13, 'Blood-Soaked Cloak of Dishonour'), + (14, 'Armplates of Meteorite Assembly'), + (14, 'Boots of Stolen Comet Speed'), + (14, 'Gauntlets of Star Confabulation'), + (14, 'Moon Watcher Helmet'), + (14, 'Shoulderpads of Asteroid Calling'), + (14, 'Vest of Torpid Sunrays'), + (14, 'Pernicious Body Armor'), + (14, 'Overcoat of the Firmament'), + (15, 'Spirit Ring of Self-Education'), + (15, 'Spirit Training Program'), + (16, 'Bracer of Recondite Flames'), + (16, 'Human Skin Hood'), + (17, 'Eremite Macro Sensor'), + (17, 'Eremite Macro Sensor'), + (17, 'Eremite Psychic Sensor'), + (18, 'Bigot''s Armband of Sacrifice'), + (18, 'Bigot''s Bracer of Sacrifice'), + (18, 'Bigot''s Earring of Sacrifice'), + (18, 'Bigot''s Necklace of Sacrifice'), + (18, 'Bigot''s Ring of Sacrifice'), + (19, 'Finely Refined Notum'), + (19, 'Hood of Black Waters'), + (20, 'Finely Refined Notum'), + (21, 'Elysian Protector''s Cuirass'), + (21, 'Focus-Funneling Spirit'), + (22, 'Cancer''s Gloves of Automatic Knowledge'), + (22, 'Cancer''s Ring of Circumspection'), + (22, 'Cancer''s Silver Boots of the Autodidact'), + (22, 'Cancer''s Time-Saving Memory'), + (23, 'Cantankerous''s Headwear'), + (23, 'Spirit Tech Apparatus: Double Barrel'), + (23, 'Spirit Tech Apparatus: Long Muzzle'), + (23, 'Spirit Tech Apparatus: Short Muzzle'), + (23, 'Fingerspitzgefuhl'), + (24, 'Capricorn Bracer of Toxication'), + (24, 'Capricorn''s Guide to Alchemy'), + (24, 'Capricorn''s Reliable Memory'), + (24, 'Gloves of the Caring Capricorn'), + (25, 'Shuffling Finger'), + (26, 'Blackbird'), + (26, 'Blackbird'), + (26, 'Chiroptera'), + (26, 'Chiroptera'), + (26, 'Howlet'), + (26, 'Howlet'), + (27, 'Focus-Funneling Device'), + (27, 'Gamboling Master''s Wear'), + (27, 'Jagged Claw'), + (27, 'Shapeshifter''s Vest'), + (27, 'Spirit Tech Circlet of Cerubin'), + (27, 'Grasping Ring'), + (27, 'Neck Eye'), + (28, 'Monitor Smoking Suit'), + (29, 'Shroud of Darkest Night'), + (30, 'Modified A-4000 NCU-sheet'), + (30, 'Modified A-4000 Sensory Panel'), + (31, 'Modified A-4000 NCU-sheet'), + (31, 'Modified A-4000 Sensory Panel'), + (32, 'Eremite Macro Sensor'), + (32, 'Eremite Micro Sensor'), + (32, 'Eremite Psychic Sensor'), + (33, 'Kaehler Uniform Sleeves'), + (33, 'Mendix Biomech AR-2'), + (34, 'Problem Avoiding Device'), + (34, 'Problem Seeking Device'), + (34, 'Problem Solving Device'), + (35, 'Frederickson Cumulus model'), + (35, 'Frederickson Micro-kinetic Sleeves'), + (35, 'Frederickson''s Kinetic Sleeves'), + (36, 'Syndicate Messenger Gun'), + (37, 'Lindgren Spirit'), + (38, 'Spirit Tech Apparatus: Double Barrel'), + (38, 'Spirit Tech Apparatus: Long Muzzle'), + (38, 'Spirit Tech Apparatus: Short Muzzle'), + (38, 'Doubleknit Pants'), + (38, 'The Cause of Headache'), + (39, 'Commander''s Ceremonial Chest Plate'), + (39, 'Cranky Golem Eye'), + (39, 'Spirit Tech Apparatus: Double Barrel'), + (39, 'Spirit Tech Apparatus: Long Muzzle'), + (39, 'Spirit Tech Apparatus: Short Muzzle'), + (40, 'Slippers of Screaming'), + (41, 'Grail of the White Feather'), + (41, 'Grail of the White Feather'), + (41, 'Grail of the White Feather'), + (41, 'Grail of the White Feather'), + (41, 'Grail of the White Feather'), + (41, 'Grail of the White Feather'), + (41, 'Grail of the White Feather'), + (41, 'Grail of the White Feather'), + (41, 'Grail of the White Feather'), + (41, 'Grail of the White Feather'), + (41, 'Conflagrant Syndicate Messenger Gun'), + (41, 'Grail of the Antlered King'), + (41, 'Head Symbiant of the Love Child'), + (42, 'Candy Cord'), + (43, 'Kevlar Armbands'), + (43, 'The Third Eye of Daria'), + (43, 'Very Very Very Cool Top'), + (43, 'Very Very Very Hot Pants'), + (44, 'Finely Refined Notum'), + (45, 'Finely Refined Notum'), + (46, 'Spirit of the Innocent'), + (47, 'Fanatic''s Jacket'), + (48, 'Diamond-Matrix Mesh'), + (48, 'Kick Pistol'), + (48, 'Titan Viper Tattoo'), + (49, 'Diamond-Matrix Mesh'), + (49, 'Kick Pistol'), + (50, 'Counterfeit Omni Epaulet'), + (51, 'Elysian Protector''s Cuirass'), + (51, 'Focus-Funneling Spirit'), + (52, 'Blackshirt of Zuwadza'), + (52, 'Cheeping Flamethrower of Zuwadza'), + (52, 'Stinging Snake Tattoo'), + (53, 'Enkindled Spirit Focus'), + (54, 'Gift of the Old Gargantula'), + (55, 'Fanatic''s Jacket'), + (56, 'Finely Refined Notum'), + (57, 'Beeping Backpack'), + (57, 'Junior Master of Combustion'), + (58, 'Fleshchopper'), + (58, 'Notum Focus'), + (58, 'Spirit Focus'), + (58, 'Toothpicker'), + (59, 'Collector Pants of Gemini'), + (59, 'Cross Dimensional Gyro of Gemini'), + (59, 'Gemini''s Double Band of Linked Information'), + (59, 'Gemini''s Green Scope of Variety'), + (60, 'Longshot'), + (60, 'Superior Sentinel Armor Boots'), + (60, 'Superior Sentinel Armor Gloves'), + (60, 'Superior Sentinel Armor Pants'), + (60, 'Superior Sentinel Armor Sleeves'), + (60, 'Superior Sentinel Body Armor'), + (61, 'Dust Collector'), + (61, 'Dustbrigade Commander Boots'), + (61, 'Dustbrigade Commander Chestpiece'), + (61, 'Dustbrigade Commander Gloves'), + (61, 'Dustbrigade Commander Skirt'), + (61, 'Dustbrigade Commander Sleeves'), + (61, 'Dustbrigade Trooper Boots'), + (61, 'Dustbrigade Trooper Chestpiece'), + (61, 'Dustbrigade Trooper Gloves'), + (61, 'Dustbrigade Trooper Pants'), + (61, 'Dustbrigade Trooper Sleeves'), + (61, 'Mother Nitrogena'), + (61, 'Explorer Boots'), + (61, 'Pants of Participation'), + (61, 'Safeguarded NCU Memory Unit'), + (61, 'Specialized Dustbrigade Vambrace - Atrox Breed'), + (61, 'Specialized Dustbrigade Vambrace - Nano Breed'), + (61, 'Specialized Dustbrigade Vambrace - Opifex Breed'), + (61, 'Threatening Trousers'), + (62, 'Dust Collector'), + (62, 'Dustbrigade Commander Boots'), + (62, 'Dustbrigade Commander Chestpiece'), + (62, 'Dustbrigade Commander Gloves'), + (62, 'Dustbrigade Commander Skirt'), + (62, 'Dustbrigade Commander Sleeves'), + (62, 'Dustbrigade Trooper Boots'), + (62, 'Dustbrigade Trooper Chestpiece'), + (62, 'Dustbrigade Trooper Gloves'), + (62, 'Dustbrigade Trooper Pants'), + (62, 'Dustbrigade Trooper Sleeves'), + (62, 'Mother Nitrogena'), + (62, 'Explorer Boots'), + (62, 'Pants of Participation'), + (62, 'Specialized Dustbrigade Vambrace - Nano Breed'), + (62, 'Specialized Dustbrigade Vambrace - Opifex Breed'), + (62, 'Threatening Trousers'), + (63, 'Dust Collector'), + (63, 'Dustbrigade Commander Boots'), + (63, 'Dustbrigade Commander Chestpiece'), + (63, 'Dustbrigade Commander Gloves'), + (63, 'Dustbrigade Commander Skirt'), + (63, 'Dustbrigade Commander Sleeves'), + (63, 'Dustbrigade Trooper Boots'), + (63, 'Dustbrigade Trooper Chestpiece'), + (63, 'Dustbrigade Trooper Gloves'), + (63, 'Dustbrigade Trooper Pants'), + (63, 'Dustbrigade Trooper Sleeves'), + (63, 'Mother Nitrogena'), + (63, 'Explorer Boots'), + (63, 'Pants of Participation'), + (62, 'Safeguarded NCU Memory Unit'), + (62, 'Specialized Dustbrigade Vambrace - Atrox Breed'), + (63, 'Safeguarded NCU Memory Unit'), + (63, 'Specialized Dustbrigade Vambrace - Opifex Breed'), + (63, 'Specialized Dustbrigade Vambrace - Atrox Breed'), + (63, 'Specialized Dustbrigade Vambrace - Nano Breed'), + (63, 'Threatening Trousers'), + (64, 'Standard Medical Epaulet'), + (65, 'Armplates of Meteorite Assembly'), + (65, 'Boots of Stolen Comet Speed'), + (65, 'Gauntlets of Star Confabulation'), + (65, 'Moon Watcher Helmet'), + (65, 'Overcoat of the Firmament'), + (65, 'Shoulderpads of Asteroid Calling'), + (65, 'Vest of Torpid Sunrays'), + (66, 'Longshot'), + (66, 'Omni-Armed Forces Armor'), + (66, 'Omni-Armed Forces Boots'), + (66, 'Omni-Armed Forces Gloves'), + (66, 'Omni-Armed Forces Pants'), + (66, 'Omni-Armed Forces Sleeves'), + (67, 'Shuffling Finger'), + (68, 'Predator Armband'), + (68, 'Predator Armor Boots'), + (68, 'Predator Armor Facemask'), + (68, 'Predator Armor Gloves'), + (68, 'Predator Armor Pants'), + (68, 'Predator Armor Vest'), + (68, 'Predator''s Circlet'), + (69, 'Average Gloves'), + (69, 'Blood-Stained Bat'), + (69, 'Blood-Stained Mace'), + (69, 'Boots of Azure Reveries'), + (69, 'Breastplate of Azure Reveries'), + (69, 'Flaxen Notum Pants'), + (69, 'Gloves of Azure Reveries'), + (69, 'Helmet of Azure Reveries'), + (69, 'Pants of Azure Reveries'), + (69, 'Pioneer of Jobe Cloak'), + (69, 'Rust-pitted Ring'), + (69, 'Sleeves of Azure Reveries'), + (69, 'Stone Samurai Boots'), + (70, 'Compagnero'), + (71, 'Golem''s Warm Notum Hood'), + (71, 'Spirit Tech Apparatus: Double Barrel'), + (71, 'Spirit Tech Apparatus: Long Muzzle'), + (71, 'Spirit Tech Apparatus: Short Muzzle'), + (71, 'Spirit of Opportunity'), + (72, 'Droid Control-device'), + (72, 'Modified Aggression Enhancer'), + (73, 'Armplates of Meteorite Assembly'), + (73, 'Boots of Stolen Comet Speed'), + (73, 'Gauntlets of Star Confabulation'), + (73, 'Moon Watcher Helmet'), + (73, 'Overcoat of the Firmament'), + (73, 'Shoulderpads of Asteroid Calling'), + (73, 'Vest of Torpid Sunrays'), + (74, 'Armplates of Meteorite Assembly'), + (74, 'Boots of Stolen Comet Speed'), + (74, 'Gauntlets of Star Confabulation'), + (74, 'Moon Watcher Helmet'), + (74, 'Overcoat of the Firmament'), + (74, 'Shoulderpads of Asteroid Calling'), + (74, 'Vest of Torpid Sunrays'), + (74, 'Mark of the Fisher King'), + (75, 'Maul of Gwyddawg'), + (75, 'Conflagrant Syndicate Messenger Gun'), + (75, 'Maul of Menestyr'), + (76, 'White Sack'), + (77, 'Finely Refined Notum'), + (77, 'Floating Bag of Jukes'), + (78, 'Customized IMI Desert Reet 1000'), + (78, 'Sealed Order BLCG-7791'), + (78, 'Sealed Order FPGA-202'), + (78, 'Sealed Order XITL-0127'), + (79, 'Enthusiastic Spirit Helper of the Leo'), + (79, 'Leo''s Faithful Boots of Ancient Gold'), + (79, 'Leo''s Grandiose Gold Armband of Plenty'), + (79, 'Leo''s Mellow Gold Pad of Auto-Support'), + (80, 'Aim of Libra'), + (80, 'Libra''s Charming Assistant'), + (80, 'Urbane Pants of Libra'), + (80, 'Well Balanced Spirit Helper of Libra'), + (81, 'Finely Refined Notum'), + (81, 'Pelisse of the Elysian Nymph'), + (82, 'Mystical Green Hood'), + (83, 'Predator Armband'), + (83, 'Predator Armor Boots'), + (83, 'Predator Armor Facemask'), + (83, 'Predator Armor Gloves'), + (83, 'Predator Armor Pants'), + (83, 'Predator Armor Vest'), + (83, 'Predator''s Circlet'), + (84, 'Eleet Doll'), + (84, 'Eye of the Hunter'), + (84, 'Ljotur Beets of Clamping'), + (84, 'Ljotur Pants of Cornucopia'), + (84, 'Mirror Mask of Ljotur'), + (84, 'NanoCrystal (Candycane)'), + (84, 'Twelve-Fingered Graspers of Ljotur'), + (84, 'Unbecoming Sleeves of Ljotur'), + (84, 'Upper Part of Ljotur'), + (85, 'Bloodlust'), + (85, 'Eye of the Evening Star'), + (85, 'Pensive Spirit Phulakterion'), + (85, 'Ring of Computing'), + (85, 'Ring of Divine Teardrops'), + (85, 'Silver Spider Knuckledusters'), + (85, 'Spear of Forbidden Ceremonies'), + (85, 'Stock of Bacam-Xum'), + (85, 'Watchful Spirit Phulakterion'), + (86, 'Problem Avoiding Device'), + (86, 'Problem Seeking Device'), + (86, 'Problem Solving Device'), + (87, 'Jobe City Guard Personal Pistol'), + (87, 'Jobe Surveyor Personal Pistol'), + (87, 'Jobe City Guard Personal Pistol'), + (87, 'Jobe Surveyor Personal Pistol'), + (88, 'Mantis Egg'), + (88, 'Queen Blade'), + (88, 'Mantis Scissors'), + (89, 'Poetic Pants'), + (89, 'Poetic Sleeves'), + (89, 'Poetic Stretch-band'), + (90, 'Armplates of Meteorite Assembly'), + (90, 'Boots of Stolen Comet Speed'), + (90, 'Gauntlets of Star Confabulation'), + (90, 'Moon Watcher Helmet'), + (90, 'Overcoat of the Firmament'), + (90, 'Shoulderpads of Asteroid Calling'), + (90, 'Vest of Torpid Sunrays'), + (91, 'Energized Carbonan Oven Mittens'), + (91, 'Shades of Lucubration'), + (92, 'Chief Cook Cleaver'), + (92, 'Chief Cook Cleaver'), + (92, 'Ring that Turns Rocks'), + (92, 'Longsword of the Illuminated'), + (92, 'Sword of the Illuminated'), + (93, 'Gutting Hook'), + (93, 'Torturing Tool'), + (94, 'Whistle-box'), + (95, 'Finely Refined Notum'), + (96, 'Fractured Sanity'), + (96, 'Neleb''s Nano-circuit Robe'), + (96, 'Neleb''s Notum Battlerod'), + (96, 'Fractured Sanity'), + (96, 'Cortex of the Executioner'), + (96, 'Brainchopper'), + (96, 'Galahad Inc. Cinnamon Scout'), + (97, 'Anything'), + (97, 'Boots of Azure Reveries'), + (97, 'Breastplate of Azure Reveries'), + (97, 'Gloves of Azure Reveries'), + (97, 'Helmet of Azure Reveries'), + (97, 'Nelly Johnsons Little Black Dress'), + (97, 'Pants of Azure Reveries'), + (97, 'Sleeves of Azure Reveries'), + (98, 'Nophex Plasma Destroyer I'), + (98, 'Notum Infused Kevlar Armor Boots'), + (98, 'Notum Infused Kevlar Armor Gloves'), + (98, 'Notum Infused Kevlar Armor Pants'), + (98, 'Notum Infused Kevlar Armor Sleeves'), + (98, 'Notum Infused Kevlar Body Armor'), + (98, 'Pulsing Notum Disruptor'), + (99, 'Erratic Notum Disruptor'), + (100, 'Fluctuating Anti-Matter Generator'), + (101, 'Anti-Gravity Unit'), + (101, 'Flower Guard Gofleprod'), + (101, 'Flower Guard Triplate Metal Armor Cloak'), + (101, 'Flower Guard Triplate Metal Boots'), + (101, 'Flower Guard Triplate Metal Gauntlets'), + (101, 'Flower Guard Triplate Metal Helmet'), + (101, 'Rusted Juggernaut Rear Mitrailleuse'), + (101, 'Standard Juggernaut Nano Containment Module'), + (102, 'Metallic Hoop'), + (103, 'Spirit Ring of Self-Education'), + (103, 'Spirit Training Program'), + (104, 'Capsule of Thin Blood'), + (105, 'Predator Armband'), + (105, 'Predator Armor Boots'), + (105, 'Predator Armor Facemask'), + (105, 'Predator Armor Gloves'), + (105, 'Predator Armor Pants'), + (105, 'Predator Armor Vest'), + (105, 'Predator''s Circlet'), + (106, 'Boots of Azure Reveries'), + (106, 'Pain of Patricia'), + (106, 'Breastplate of Azure Reveries'), + (106, 'Gloves of Azure Reveries'), + (106, 'Helmet of Azure Reveries'), + (106, 'Luxurious Rubber Pants'), + (106, 'Luxurious Rubber Shirt'), + (106, 'Luxurious Rubber Sleeves'), + (106, 'Un-repairable Pain of Patricia'), + (106, 'Pants of Azure Reveries'), + (106, 'Reign of Patricia'), + (106, 'Sleeves of Azure Reveries'), + (107, 'Blackpack'), + (107, 'Doctor''s Pill Pack'), + (107, 'Syndicate Shades'), + (108, 'Blackpack'), + (108, 'Doctor''s Pill Pack'), + (108, 'Syndicate Shades'), + (109, 'Boots of Azure Reveries'), + (109, 'Breastplate of Azure Reveries'), + (109, 'Gloves of Azure Reveries'), + (109, 'Heavy Notum Tank Armor'), + (109, 'Helmet of Azure Reveries'), + (109, 'Light Notum Tank Armor'), + (109, 'Medium Notum Tank Armor'), + (109, 'Pants of Azure Reveries'), + (109, 'Sleeves of Azure Reveries'), + (110, 'Phatmos'' Booty'), + (111, 'Cosmic Guide of the Pisces'), + (111, 'Mystery of Pisces'), + (111, 'Octopus Contraption of the Pisces'), + (111, 'Octopus Contraption of the Pisces'), + (112, 'Hood of Wicked Inspiration'), + (112, 'Pit Demon Heart'), + (112, 'Pit Demon Spit'), + (113, 'Support Wire'), + (114, 'Nano Crystal (Team Beacon Warp)'), + (114, 'Nano Crystal (Nullity Sphere MK II)'), + (115, 'Starched Armbands'), + (116, 'Journeyman Durable Boost'), + (116, 'The Expensive Kevlar Vest of Professor Jones'), + (117, 'Bellum Badonis Armor Boots'), + (117, 'Bellum Badonis Armor Gloves'), + (117, 'Bellum Badonis Armor Helmet'), + (117, 'Bellum Badonis Armor Sleeves'), + (117, 'Bellum Badonis Body Armor'), + (117, 'Bellum Badonis Coat'), + (117, 'Bellum Badonis Shoulderpads'), + (118, 'Sword of Curiosity'), + (118, 'Sword of Wonder'), + (119, 'Disposal Unit Electrical Toolset'), + (119, 'Rat Catcher Goggles'), + (120, 'Boots of Azure Reveries'), + (120, 'Breastplate of Azure Reveries'), + (120, 'Fancy Stethoscopic Glasses'), + (120, 'Gloves of Azure Reveries'), + (120, 'Helmet of Azure Reveries'), + (120, 'Pants of Azure Reveries'), + (120, 'Sleeves of Azure Reveries'), + (121, 'Sword of Curiosity'), + (121, 'Sword of Wonder'), + (121, 'Suzerain''s Political Chief Headwear'), + (122, 'Spirit Training Program'), + (123, 'Comfort of the Sagittarius'), + (123, 'First Creation of the Sagittarius'), + (123, 'Sagittarius''s Hearty Spirit Helper'), + (123, 'Strong Mittens of the Sagittarius'), + (124, 'Boots of Stolen Comet Speed'), + (124, 'Gauntlets of Star Confabulation'), + (124, 'Moon Watcher Helmet'), + (124, 'Overcoat of the Firmament'), + (124, 'Shoulderpads of Asteroid Calling'), + (124, 'Vest of Torpid Sunrays'), + (124, 'Armplates of Meteorite Assembly'), + (125, 'Short Circuited Spiritech Circlet'), + (126, 'Punters of the Scorpio'), + (126, 'Sash of Scorpio Strength'), + (126, 'Scorpio''s Aim of Anger'), + (126, 'Scorpio''s Shell of Change'), + (127, 'Taurus'' Spirit of Patience'), + (127, 'JAME Blaster Prototype XII'), + (127, 'JAME Blaster Prototype IV'), + (127, 'Heavy Bracer'), + (128, 'Elysian Protector''s Cuirass'), + (128, 'Focus-Funneling Spirit'), + (129, 'Bellum Badonis Armor Boots'), + (129, 'Bellum Badonis Armor Gloves'), + (129, 'Bellum Badonis Armor Helmet'), + (129, 'Bellum Badonis Armor Sleeves'), + (129, 'Bellum Badonis Body Armor'), + (129, 'Bellum Badonis Coat'), + (129, 'Bellum Badonis Shoulderpads'), + (130, 'Headband of Haste'), + (130, 'JAME Blaster Prototype IV'), + (130, 'JAME Blaster Prototype XII'), + (131, 'Crackerjack Sleeves'), + (131, 'Ring of Herodotus'), + (131, 'Headband of Haste'), + (132, 'Finely Refined Notum'), + (132, 'Superior Skylight Shield'), + (133, 'Repair Coordination Assistant'), + (134, 'Solid Spiritech Mesh'), + (134, 'JAME Blaster Prototype IV'), + (134, 'JAME Blaster Prototype XII'), + (135, 'Chain of Concealment'), + (135, 'NanoCrystal (Resonance Blast)'), + (135, 'The HSR Detective'), + (136, 'Scimitar of Spetses'), + (136, 'Sparkling Scimitar of Spetses'), + (137, 'Cure for Baldness'), + (138, 'Finely Refined Notum'), + (139, 'Penumbra Tuaq'), + (140, 'Blue Baby Bronto Boots'), + (141, 'Superior Sentinel Armor Boots'), + (141, 'Superior Sentinel Armor Gloves'), + (141, 'Superior Sentinel Armor Helmet'), + (141, 'Superior Sentinel Armor Pants'), + (141, 'Superior Sentinel Armor Sleeves'), + (141, 'Superior Sentinel Body Armor'), + (142, 'Omni-Armed Forces Armor'), + (142, 'Omni-Armed Forces Boots'), + (142, 'Omni-Armed Forces Gloves'), + (142, 'Omni-Armed Forces Helmet'), + (142, 'Omni-Armed Forces Pants'), + (142, 'Omni-Armed Forces Sleeves'), + (143, 'Eremite Macro Sensor'), + (143, 'Eremite Micro Sensor'), + (143, 'Eremite Psychic Sensor'), + (144, 'HUD Upgrade: Enhanced Target Acquisition'), + (144, 'HUD Upgrade: Personal S.T.M'), + (145, 'Aura Magnifier'), + (145, 'Cloak of the Wandering Knight'), + (145, 'Gaily Painted Hood'), + (145, 'Globe of Clarity'), + (145, 'Globe of Sufferance'), + (145, 'Heavily Padded Overcoat'), + (145, 'The Heavy-Headed Staff'), + (145, 'Hollow Bone Bracer of Merlin Ambrosius'), + (145, 'Chunk of Living Dragon Flesh'), + (145, 'Lump of Living Dragon Marrow'), + (145, 'Patch of Living Dragon Skin'), + (145, 'Piece of Living Dragon Wing'), + (145, 'Shard of Living Dragon Skull'), + (145, 'Heart of Tarasque'), + (145, 'Gall Stone'), + (145, 'Robust Backpack'), + (145, 'Signet Ring of the Green Knight'), + (145, 'Sinew of Tarasque'), + (145, 'Smart Hood of the Wanderer'), + (145, 'Smelly Butcher Gloves'), + (145, 'Edge of the Tarasque'), + (145, 'Typical Dragon Tooth Poker'), + (146, 'Taurus'' Ring of the Heart'), + (146, 'Taurus'' Spirit of Patience'), + (146, 'Taurus'' Spirit of Reflection'), + (146, 'Taurus'' Swordmaster Spirit'), + (147, 'Spirit Ring of Self-Education'), + (147, 'Spirit Training Program'), + (148, 'Armplates of Elimination'), + (148, 'Boots of Concourse'), + (148, 'Burden of Competence'), + (148, 'Cuirass of Obstinacy'), + (148, 'Gauntlets of Deformation'), + (148, 'Greaves of Malfeasance'), + (148, 'Helmet of Hypocrisy'), + (148, 'Shoulderplates of Sabotage'), + (148, 'Sigil of Bahomet'), + (148, 'Sleeves of Senseless Violence'), + (148, 'Star of Ardency'), + (148, 'Star of Enterprice'), + (148, 'Star of Enticement'), + (148, 'Star of Equanimity'), + (148, 'Star of Faith'), + (148, 'Star of Fidelity'), + (148, 'Star of Fortitude'), + (148, 'Star of Freedom'), + (148, 'Star of Ingenuity'), + (148, 'Star of Interchange'), + (148, 'Star of Management'), + (148, 'Star of Moral'), + (148, 'Star of Recovery'), + (148, 'Star of Stealth'), + (148, 'Sunrise Hilt'), + (148, 'Sunset Hilt'), + (148, 'Lady of Abandonment'), + (148, 'Lady of Hatred'), + (148, 'Lady of Deceit'), + (148, 'Lady of Pride'), + (148, 'Lady of Gluttony'), + (148, 'Lady of Anger'), + (148, 'Lady of Angst'), + (148, 'Lady of Envy'), + (148, 'Lady of Greed'), + (148, 'Lady of Chaos'), + (148, 'Lady of Sloth'), + (148, 'Lady of Lust'), + (148, 'Lord of Abandonment'), + (148, 'Lady of Hatred'), + (148, 'Lady of Deceit'), + (148, 'Lady of Pride'), + (148, 'Lady of Gluttony'), + (148, 'Lady of Anger'), + (148, 'Lady of Angst'), + (148, 'Lady of Envy'), + (148, 'Lady of Greed'), + (148, 'Lady of Chaos'), + (148, 'Lady of Sloth'), + (148, 'Lady of Lust'), + (148, 'High Lord of Angst'), + (149, 'Maar''s Blue Belt of Double Prudence'), + (149, 'Maar''s Red Belt of Double Power'), + (149, 'Maar''s Yellow Belt of Double Speed'), + (149, 'Notum Seed'), + (149, 'Novictum Seed'), + (150, 'Contained Anti-Matter Generator'), + (150, 'NanoCrystal (Shield of the Obedient Servant)'), + (150, 'Punishment Rod'), + (150, 'Slayerdroid Claw'), + (151, 'Breastplate of Spiritual Rites'), + (151, 'Breastplate of Technical Ceremonies'), + (151, 'Helmet of Spiritual Rites'), + (151, 'Helmet of Technical Ceremonies'), + (152, 'Left Sleeves of the Pest'), + (152, 'NanoCrystal (Corruption of The Pest)'), + (152, 'NanoCrystal (Lick of the Pest)'), + (152, 'Patch of Pest'), + (152, 'Petticoat of Pest'), + (152, 'Right Sleeves of the Pest'), + (153, 'Ring of Burning Flesh'), + (154, 'Joy of the Hunt'), + (154, 'Joy of the Race'), + (154, 'Killer''s Armor Trousers'), + (154, 'Killer''s Armor Sleeve'), + (154, 'Sombreous Arm Tattoo''s'), + (155, 'Sleeves of Boiling Blood'), + (156, 'Neural Interpreting Nball - Melee fighting'), + (157, 'Corroded Ring'), + (158, 'Armplates of Meteorite Assembly'), + (158, 'Boots of Stolen Comet Speed'), + (158, 'Copy of The Excalibur'), + (158, 'Exact Copy of The Excalibur'), + (158, 'Gauntlets of Star Confabulation'), + (158, 'Moon Watcher Helmet'), + (158, 'Overcoat of the Firmament'), + (158, 'Shoulderpads of Asteroid Calling'), + (158, 'Vest of Torpid Sunrays'), + (159, 'Finely Refined Notum'), + (160, 'Bellum Badonis Armor Boots'), + (160, 'Bellum Badonis Armor Gloves'), + (160, 'Bellum Badonis Armor Helmet'), + (160, 'Bellum Badonis Armor Sleeves'), + (160, 'Bellum Badonis Body Armor'), + (160, 'Bellum Badonis Coat'), + (160, 'Bellum Badonis Shoulderpads'), + (160, 'Lava capsule'), + (161, 'Armplates of Meteorite Assembly'), + (161, 'Boots of Stolen Comet Speed'), + (161, 'Gauntlets of Star Confabulation'), + (161, 'Moon Watcher Helmet'), + (161, 'Overcoat of the Firmament'), + (161, 'Shoulderpads of Asteroid Calling'), + (161, 'Vest of Torpid Sunrays'), + (162, 'Virgo''s Analytical Spirit Helper'), + (162, 'Virgo''s Arrow Guide'), + (162, 'Virgo''s Modest Spirit of Faith'), + (162, 'Virgo''s Practical Spirit Helper'), + (163, 'Problem Avoiding Device'), + (163, 'Problem Seeking Device'), + (163, 'Problem Solving Device'), + (164, 'Predator Armband'), + (164, 'Predator Armor Boots'), + (164, 'Predator Armor Facemask'), + (164, 'Predator Armor Gloves'), + (164, 'Predator Armor Pants'), + (164, 'Predator Armor Vest'), + (164, 'Predator''s Circlet'), + (165, 'Spirit Ring of Self-Education'), + (165, 'Spirit Training Program'), + (166, 'Xark''s Whisker'), + (167, 'Gelid Blade of Inobak'), + (167, 'Frost Shard'), + (168, 'Permafrost'), + (168, 'Abyssal Desecrator'), + (168, 'Impious Dominator'), + (168, 'Ichor of the Immortal One'), + (168, 'Ichor of the Immortal One'), + (168, 'Mnemonic Fragment'), + (168, 'Constrained Gridspace Waveform'), + (168, 'Bloodseal of the Infernal Tyrant'), + (168, 'Charred Abaddon Chassis'), + (168, 'Third Circle of the Inner Sanctum'), + (169, 'Might of the Revenant'), + (169, 'Bloodseal of the Infernal Tyrant'), + (169, 'Mnemonic Fragment'), + (170, 'Corrupted Flesh'), + (170, 'Mnemonic Fragment'), + (170, 'Skull of Misery'), + (170, 'Skull of Despair'), + (170, 'Ring of Putrescent Flesh'), + (170, 'Teachings of the Immortal One'), + (170, 'Charred Abaddon Chassis'), + (170, 'Third Circle of the Inner Sanctum'), + (171, 'Might of the Revenant'), + (171, 'Mnemonic Fragment'), + (171, 'Abaddon Upgrade: Skill'), + (172, 'Maw of the Abyss'), + (172, 'Frost-bound Reaper'), + (172, 'Jeuru''s Oscillating Ligature'), + (172, 'Bloodshed Armband'), + (172, 'Inner Sanctum Knowledge (bottom half of key)'), + (172, 'Second Circle of the Inner Sanctum'), + (172, 'Charred Abaddon Chassis'), + (173, 'Inner Sanctum Knowledge (top half of key)'), + (173, 'Maw of the Abyss'), + (173, 'Frost-bound Reaper'), + (173, 'Jeuru''s Oscillating Ligature'), + (173, 'Bloodshed Armband'), + (173, 'Second Circle of the Inner Sanctum'), + (173, 'Charred Abaddon Chassis'), + (174, 'JAME Blaster Prototype IV'), + (174, 'JAME Blaster Prototype XII'), + (175, 'Bellum Badonis Armor Boots'), + (175, 'Bellum Badonis Armor Gloves'), + (175, 'Bellum Badonis Armor Helmet'), + (175, 'Bellum Badonis Armor Sleeves'), + (175, 'Bellum Badonis Body Armor'), + (175, 'Bellum Badonis Coat'), + (175, 'Bellum Badonis Shoulderpads'), + (175, 'Codex Clavis'), + (176, 'Bellum Badonis Armor Sleeves'), + (176, 'Bellum Badonis Shoulderpads'), + (176, 'Bellum Badonis Body Armor'), + (176, 'Bellum Badonis Coat'), + (176, 'Bellum Badonis Armor Helmet'), + (176, 'Bellum Badonis Armor Gloves'), + (176, 'Bellum Badonis Armor Boots'), + (177, 'Bellum Badonis Armor Boots'), + (177, 'Bellum Badonis Armor Gloves'), + (177, 'Bellum Badonis Armor Helmet'), + (177, 'Bellum Badonis Armor Sleeves'), + (177, 'Bellum Badonis Shoulderpads'), + (177, 'Bellum Badonis Coat'), + (177, 'Bellum Badonis Body Armor'), + (178, 'Bellum Badonis Armor Boots'), + (178, 'Bellum Badonis Armor Gloves'), + (178, 'Bellum Badonis Armor Helmet'), + (178, 'Bellum Badonis Armor Sleeves'), + (178, 'Bellum Badonis Body Armor'), + (178, 'Bellum Badonis Coat'), + (178, 'Bellum Badonis Shoulderpads'), + (179, 'Metal Armlet of the Quartet'), + (180, 'Truspace 900 XL - Vision'), + (181, 'Snake Tamer Shield'), + (181, 'Snake Tamer Guard'), + (182, 'Liquid Notum Ring'), + (182, 'Nelly''s Chip'), + (183, 'Remains of AESA 10'), + (183, 'Soft Ring with Fluff'), + (184, 'Notum Miner''s Hard Hat'), + (184, 'Glimmering Magnetic Ring'), + (185, 'Luminous Copper Band'), + (185, 'Crystalized Medusa Queen Hippocampus'), + (185, 'Mutated Eremite Leg'), + (186, 'Ring of the Endless Depths'), + (186, 'Lion''s Leather Vest'), + (186, 'Lion''s Leather Sleeve'), + (186, 'Lion''s Leather Gloves'), + (186, 'Lion''s Leather Pants'), + (186, 'Lion''s Leather Boots'), + (186, 'Thick Leather Wristbands'), + (187, 'I am the Eel'), + (187, 'Suzerain''s Spiritual Chief Headwear'), + (188, 'I am the Bear'), + (188, 'Gurgling River Sprite'), + (188, 'Expensive Gift from Earth'), + (188, 'Suzerain''s Military Chief Headwear'), + (188, 'Disco Duck Sunglasses'), + (188, 'Funk Flamingo Sunglasses'), + (188, 'Electric Boogie Sunglasses'), + (189, 'I am the Owl'), + (189, 'Advanced Nano Breed Survival Headwear'), + (189, 'Chip of the Eight'), + (189, 'Suzerain''s Political Chief Headwear'), + (190, 'Mutated Eremite Foetus'), + (190, 'Smooth Gold Alloy Ring'), + (190, 'Lion''s Leather Vest'), + (190, 'Lion''s Leather Sleeve'), + (190, 'Lion''s Leather Gloves'), + (190, 'Lion''s Leather Pants'), + (190, 'Lion''s Leather Boots'), + (191, 'Hammered Gold Ring'), + (192, 'Clan Ring of Salvation'), + (192, 'Brood Champion Gauntlets'), + (193, 'Professional Marksman''s Kit'), + (193, 'Lion''s Leather Vest'), + (193, 'Lion''s Leather Sleeve'), + (193, 'Lion''s Leather Gloves'), + (193, 'Lion''s Leather Pants'), + (193, 'Lion''s Leather Boots'), + (194, 'Silly Ring'), + (194, 'Beefeater''s Merit Board'), + (194, 'Captain Lotto''s Merit Board'), + (194, 'Omni-Tek Nano Reservoire Merit Board'), + (194, 'Merit Board of the Angry Men'), + (194, 'Standard Clan Leader Merit Board'), + (194, 'Technocrat Merit Board'), + (194, 'Merit Board of the Long Distance Runner'), + (194, 'Messenger Merit Board'), + (194, 'Front Fighter Merit Board'), + (194, 'Omni-Tek Shock Trooper Merit Board'), + (194, 'Omni-Tek Engineer Corps Merit Board'), + (194, 'Merit Board of the Blue Wolf'), + (194, 'Merit Board of the Rainbow Chrysanthemum'), + (194, 'Metal Fungus Merit Board'), + (194, 'Fly Catcher''s Specs'), + (194, 'Profiteer''s Helper'), + (194, 'The Argument'), + (195, 'Cold Snakeskin Sleeve'), + (195, 'Philosophical Slither Larvae'), + (196, 'Brumal Chest Symbiant of Endurance'), + (197, 'Philosophical Slither Larvae'), + (198, 'Cold Snakeskin Sleeve'), + (199, 'Nippy John Stiletto'), + (200, 'Sleeves of Gashing'), + (201, 'Ring of Something Extra'), + (202, 'Impudent Bracer'), + (203, 'Tiny Spider Band'), + (203, 'Tiny Spider Band'), + (203, 'Tiny Spider Band'), + (204, 'Bracelet of Theory'), + (205, 'Spirit of Saccelum'), + (206, 'Silken Legchopper Gloves'), + (206, 'This Axe Belongs to Jack'), + (206, 'Supporting Carbonan Holster'), + (206, 'Band of Beeswax'), + (206, 'Band of Dog Molars'), + (206, 'Band of Snake Skin'), + (206, 'Band of the Bear Claw'), + (206, 'Band of the Frog Tongue'), + (206, 'Curl of Weasel Whiskers'), + (206, 'Ring of Crawling Ants'), + (206, 'Ring of Magpie Tail Feathers'), + (206, 'Ring of the Dolphin Spine'), + (206, 'Ring of the Falcon Talon'), + (206, 'Ring of the Monkey Tail'), + (206, 'Ringlet of Black Panther Whiskers'), + (207, 'Communication Processing Unit Rack with 8 Empty Slots'), + (207, 'Communication Processing Unit ID=TKL'), + (207, 'Plaster Circuit - Brawl'), + (207, 'Reinforced NCU Component Belt'), + (207, 'Cold Ray Orb'), + (207, 'Superior Cold Ray Orb'), + (209, 'Fork of Ghasap (Lord Version)'), + (209, 'Corroded Blade'), + (209, 'Dreadful Pitchfork'), + (209, 'Corroded Ring'), + (209, 'Pattern of Inevitable Death'), + (209, 'Pattern of Imminent Death'), + (210, 'Ring of the Nucleus Basalis'), + (211, 'Ring of the Nucleus Basalis'), + (212, 'Ring of the Nucleus Basalis'), + (212, 'Belt of Justice'), + (212, 'Juggler''s Treat'), + (213, 'Severus'' Fusion Sprayer'), + (213, 'Severus'' Void Spinner'), + (214, 'Bastion of Deimos'), + (214, 'Deimos'' Bio-Enhanced Feedback Rifle'), + (215, 'Force-effect Vibro Blade'), + (216, 'Hellfury Assault Cannon'), + (217, 'Hellspinner Shock Cannon'), + (217, 'Augmented Cyborg Arm Armor'), + (217, 'Augmented Cyborg Boots'), + (217, 'Augmented Cyborg Chest Armor'), + (217, 'Augmented Cyborg Gloves'), + (217, 'Augmented Cyborg Helmet'), + (217, 'Augmented Cyborg Leg Armor'), + (218, 'Augmented Cyborg Arm Armor'), + (218, 'Augmented Cyborg Boots'), + (218, 'Augmented Cyborg Chest Armor'), + (218, 'Augmented Cyborg Gloves'), + (218, 'Augmented Cyborg Helmet'), + (218, 'Augmented Cyborg Leg Armor'), + (218, 'Immortal Katana'), + (218, 'Faded Immortal Katana'), + (218, 'Broken Immortal Katana'), + (218, 'Improved Immortal Katana'), + (218, 'Bonehammer'), + (218, 'Internal Anti-Matter Powerplant'), + (218, 'Sub-Dermal Vengeance Screen (Left Hand)'), + (218, 'Sub-Dermal Vengeance Screen (Right Hand)'), + (219, 'Notum Splice'), + (219, 'Ring of Eternal Night'), + (220, 'Touch of the Gripper'), + (220, 'Rockcrusher Gauntlets'), + (221, 'Touch of the Gripper'), + (221, 'Nematet''s Inner Eye'), + (221, 'Ring of Weeping Flesh'), + (221, 'Ring of Eternal Night'), + (221, 'Temporal Chalice'), + (221, 'Barrow Strength'), + (222, 'Withered Flesh'), + (222, 'Skull of Woe'), + (222, 'Barrow Strength'), + (223, 'Dark Memories'), + (223, 'Memory Loop'), + (223, 'Temporal Chalice'), + (223, 'Skull of Woe'), + (223, 'Skull of Lamentation'), + (223, 'Barrow Strength'), + (223, 'Ring of Eternal Night'), + (223, 'Ring of Memory Loss'), + (224, 'Guardian Tank Armor'), + (224, 'Guardian Circuit Board'), + (224, 'Bracelet of Amplified Sound'), + (224, 'Ring of Tattered Flame'), + (225, 'Purifying Rod'), + (225, 'Fist of Orion'), + (225, 'Withered Flesh'), + (225, 'Barrow Strength'), + (226, 'Stygian Desolator'), + (226, 'Purifying Rod'), + (226, 'Skull of the Ancient'), + (226, 'Holy Book of the Immortal'), + (227, 'Keeper''s Vitality'), + (228, 'Windcaller Robe'), + (228, 'Withered Flesh'), + (228, 'Barrow Strength'), + (229, 'Small Titan Message Container'), + (229, 'FA Super 90 Pannikin'), + (231, 'Piercing Evil'), + (232, 'Moon Watcher Helmet'), + (232, 'Gauntlets of Star Confabulation'), + (234, 'Bigot''s Armband of Sacrifice'), + (234, 'Bigot''s Earring of Sacrifice'), + (235, 'Bigot''s Earring of Sacrifice'), + (237, 'Spirit Tech Toolbox'), + (238, 'Malodorous Ring'), + (239, 'Bellum Badonis Armor Boots'), + (239, 'Bellum Badonis Armor Gloves'), + (239, 'Bellum Badonis Armor Helmet'), + (239, 'Bellum Badonis Armor Sleeves'), + (239, 'Bellum Badonis Body Armor'), + (239, 'Bellum Badonis Coat'), + (239, 'Bellum Badonis Shoulderpads'), + (240, 'Mark of the Fisher King'), + (240, 'Shoulderpads of Asteroid Calling'), + (241, 'Curse of Malahde'), + (242, 'Shoulderpads of Asteroid Calling'), + (243, 'Gallant Flapper Ribbon'), + (244, 'Moon Watcher Helmet'), + (245, 'Shopkeeper''s Sharkskin Sleeves'), + (246, 'Boots of the Imaginative'), + (248, 'Bellum Badonis Armor Boots'), + (248, 'Bellum Badonis Armor Gloves'), + (248, 'Bellum Badonis Armor Helmet'), + (248, 'Bellum Badonis Armor Sleeves'), + (248, 'Bellum Badonis Body Armor'), + (248, 'Bellum Badonis Coat'), + (248, 'Bellum Badonis Shoulderpads'), + (249, 'Apprehensive Spirit Pitcher'), + (250, 'The Sacrificed Bracelet of Kay'), + (251, 'Barrel of Bacam-Xum'), + (252, 'Armplates of Meteorite Assembly'), + (252, 'Shoulderpads of Asteroid Calling'), + (252, 'Overcoat of the Firmament'), + (252, 'Boots of Stolen Comet Speed'), + (253, 'Mudurlugu'), + (254, 'Stinging Louse'), + (255, 'Overcoat of the Firmament'), + (255, 'Moon Watcher Helmet'), + (255, 'Shoulderpads of Asteroid Calling'), + (255, 'Copy of The Excalibur'), + (255, 'Exact Copy of The Excalibur'), + (256, 'Amused Spirit'), + (256, 'Boots of Stolen Comet Speed'), + (256, 'Pernicious Body Armor'), + (257, 'Vest of Torpid Sunrays'), + (257, 'Armplates of Meteorite Assembly'), + (257, 'Moon Watcher Helmet'), + (257, 'Shoulderpads of Asteroid Calling'), + (257, 'Gauntlets of Star Confabulation'), + (258, 'Base NCU - Type 00 (0/6)'), + (258, 'Nanodeck Activation Device'), + (258, 'Multi Colored Xan Belt Tuning Device'), + (258, 'Green Xan Belt Tuning Device'), + (258, 'Xan Weapon Upgrade Device'), + (258, 'Xan Defense Merit Board Base'), + (258, 'Xan Combat Merit Board Base'), + (258, 'Xan Waist Symbiant, Artillery Unit Beta'), + (258, 'Xan Waist Symbiant, Control Unit Beta'), + (258, 'Xan Waist Symbiant, Extermination Unit Beta'), + (258, 'Xan Waist Symbiant, Infantry Unit Beta'), + (258, 'Xan Waist Symbiant, Support Unit Beta'), + (258, 'Xan Left Arm Symbiant, Artillery Unit Beta'), + (258, 'Xan Left Arm Symbiant, Control Unit Beta'), + (258, 'Xan Left Arm Symbiant, Extermination Unit Beta'), + (258, 'Xan Left Arm Symbiant, Infantry Unit Beta'), + (258, 'Xan Left Arm Symbiant, Support Unit Beta'), + (258, 'Xan Right Wrist Symbiant, Artillery Unit Beta'), + (258, 'Xan Right Wrist Symbiant, Control Unit Beta'), + (258, 'Xan Right Wrist Symbiant, Extermination Unit Beta'), + (258, 'Xan Right Wrist Symbiant, Infantry Unit Beta'), + (258, 'Xan Right Wrist Symbiant, Support Unit Beta'), + (258, 'Xan Ocular Symbiant, Artillery Unit Beta'), + (258, 'Xan Ocular Symbiant, Control Unit Beta'), + (258, 'Xan Ocular Symbiant, Extermination Unit Beta'), + (258, 'Xan Ocular Symbiant, Infantry Unit Beta'), + (258, 'Xan Ocular Symbiant, Support Unit Beta'), + (258, 'Xan Spirit of Right Wrist Offence - Beta'), + (258, 'Xan Spirit of Right Wrist Weakness - Beta'), + (258, 'Xan Left Limb Spirit of Essence - Beta'), + (258, 'Xan Left Limb Spirit of Strength - Beta'), + (258, 'Xan Left Limb Spirit of Understanding - Beta'), + (258, 'Xan Left Limb Spirit of Weakness - Beta'), + (258, 'Xan Midriff Spirit of Essence - Beta'), + (258, 'Xan Midriff Spirit of Knowledge - Beta'), + (258, 'Xan Midriff Spirit of Strength - Beta'), + (258, 'Xan Midriff Spirit of Weakness - Beta'), + (258, 'Xan Spirit of Essence - Beta'), + (258, 'Xan Spirit of Discerning Weakness - Beta'), + (259, 'Base NCU - Type 00 (0/6)'), + (259, 'Nanodeck Activation Device'), + (259, 'Multi Colored Xan Belt Tuning Device'), + (259, 'Green Xan Belt Tuning Device'), + (259, 'Xan Weapon Upgrade Device'), + (259, 'Xan Defense Merit Board Base'), + (259, 'Xan Combat Merit Board Base'), + (259, 'Xan Brain Symbiant, Artillery Unit Beta'), + (259, 'Xan Brain Symbiant, Control Unit Beta'), + (259, 'Xan Brain Symbiant, Extermination Unit Beta'), + (259, 'Xan Brain Symbiant, Infantry Unit Beta'), + (259, 'Xan Brain Symbiant, Support Unit Beta'), + (259, 'Xan Chest Symbiant, Artillery Unit Beta'), + (259, 'Xan Chest Symbiant, Control Unit Beta'), + (259, 'Xan Chest Symbiant, Extermination Unit Beta'), + (259, 'Xan Chest Symbiant, Infantry Unit Beta'), + (259, 'Xan Chest Symbiant, Support Unit Beta'), + (259, 'Xan Left Hand Symbiant, Artillery Unit Beta'), + (259, 'Xan Left Hand Symbiant, Control Unit Beta'), + (259, 'Xan Left Hand Symbiant, Extermination Unit Beta'), + (259, 'Xan Left Hand Symbiant, Infantry Unit Beta'), + (259, 'Xan Left Hand Symbiant, Support Unit Beta'), + (259, 'Xan Left Wrist Symbiant, Artillery Unit Beta'), + (259, 'Xan Left Wrist Symbiant, Control Unit Beta'), + (259, 'Xan Left Wrist Symbiant, Extermination Unit Beta'), + (259, 'Xan Left Wrist Symbiant, Infantry Unit Beta'), + (259, 'Xan Left Wrist Symbiant, Support Unit Beta'), + (259, 'Xan Brain Spirit of Computer Skill - Beta'), + (259, 'Xan Brain Spirit of Offence - Beta'), + (259, 'Xan Essence Brain Spirit - Beta'), + (259, 'Xan Left Hand Spirit of Defence - Beta'), + (259, 'Xan Left Hand Spirit of Strength - Beta'), + (259, 'Xan Spirit of Left Wrist Defense - Beta'), + (259, 'Xan Spirit of Left Wrist Strength - Beta'), + (259, 'Xan Heart Spirit of Essence - Beta'), + (259, 'Xan Heart Spirit of Knowledge - Beta'), + (259, 'Xan Heart Spirit of Strength - Beta'), + (259, 'Xan Heart Spirit of Weakness - Beta'), + (259, 'Xan Spirit of Clear Thought - Beta'), + (260, 'Unknown Mixture'), + (260, 'A piece of cloth'), + (260, 'Base NCU - Type 00 (0/6)'), + (260, 'Nanodeck Activation Device'), + (260, 'Multi Colored Xan Belt Tuning Device'), + (260, 'Green Xan Belt Tuning Device'), + (260, 'Xan Weapon Upgrade Device'), + (260, 'Xan Right Arm Symbiant, Artillery Unit Beta'), + (260, 'Xan Right Arm Symbiant, Control Unit Beta'), + (260, 'Xan Right Arm Symbiant, Extermination Unit Beta'), + (260, 'Xan Right Arm Symbiant, Infantry Unit Beta'), + (260, 'Xan Right Arm Symbiant, Support Unit Beta'), + (260, 'Xan Right Hand Symbiant, Artillery Unit Beta'), + (260, 'Xan Right Hand Symbiant, Control Unit Beta'), + (260, 'Xan Right Hand Symbiant, Extermination Unit Beta'), + (260, 'Xan Right Hand Symbiant, Infantry Unit Beta'), + (260, 'Xan Right Hand Symbiant, Support Unit Beta'), + (260, 'Xan Feet Symbiant, Artillery Unit Beta'), + (260, 'Xan Feet Symbiant, Control Unit Beta'), + (260, 'Xan Feet Symbiant, Extermination Unit Beta'), + (260, 'Xan Feet Symbiant, Infantry Unit Beta'), + (260, 'Xan Feet Symbiant, Support Unit Beta'), + (260, 'Xan Right Limb Spirit of Essence - Beta'), + (260, 'Xan Right Limb Spirit of Strength - Beta'), + (260, 'Xan Right Limb Spirit of Weakness - Beta'), + (260, 'Xan Right Hand Defensive Spirit - Beta'), + (260, 'Xan Right Hand Strength Spirit - Beta'), + (260, 'Xan Spirit of Insight - Right Hand - Beta'), + (260, 'Xan Spirit of Feet Defense - Beta'), + (260, 'Xan Spirit of Feet Strength - Beta'), + (260, 'Xan Spirit of Defense - Beta'), + (260, 'Xan Spirit of Essence - Beta'), + (260, 'Xan Spirit of Essence Whispered - Beta'), + (260, 'Xan Spirit of Knowledge Whispered - Beta'), + (260, 'Xan Spirit of Strength Whispered - Beta'), + (260, 'Brute''s Gem'), + (260, 'Builder''s Gem'), + (260, 'Dictator''s Gem'), + (260, 'Explorer''s Gem'), + (260, 'Hacker''s Gem'), + (260, 'Healer''s Gem'), + (260, 'Master''s Gem'), + (260, 'Merchant''s Gem'), + (260, 'Protecter''s Gem'), + (260, 'Sniper''s Gem'), + (260, 'Spirit''s Gem'), + (260, 'Techno Wizard''s Gem'), + (260, 'Warrior''s Gem'), + (260, 'Worshipper''s Gem'), + (261, 'M.A.G.S. Aggression Enhancer'), + (262, 'Gem of the Sands'), + (263, 'Huzzum''s Iron Fist'), + (263, 'The Wizdom of Huzzum'), + (264, 'The Dog of War'), + (264, 'Wardog''s Heated Razor Gloves'), + (265, 'Cyborg C.O. Wrist Computer'), + (266, 'Damaged Notum Tower Shield'), + (267, 'Skawt''s Plasma Emitter'), + (267, 'Skawt''s Compact Plasma Emitter'), + (268, 'Stripped Merit Board'), + (268, 'Experimental Optic Enhancer'), + (269, 'Riker''s Resolve'), + (270, 'Death''s Door'), + (270, 'Vision of Destruction'), + (270, 'Vision of Hope'), + (271, 'Hardened Construction Sleeves'), + (271, 'Jester''s Gift'), + (271, 'Superior Ring of the Nucleus Basalis'), + (271, 'Support Beam of Malice'), + (271, 'Serpentine Sneaking Gloves'), + (271, 'Armplates of the Eight'), + (271, 'Boots of the Eight'), + (272, 'Erratic Globe of Sufferance'), + (272, 'Grotesque Butcher Gloves'), + (272, 'Masterwork Tool of Torturing'), + (272, 'Overstuffed Overcoat'), + (272, 'Serpentine Sneaking Boots'), + (272, 'Bulwark of the Eight'), + (272, 'Shoulderplate of the Eight'), + (273, 'Damaged Cultist Sigil'), + (273, 'Hood of Cruel Intent'), + (273, 'Intimate Tentacle Support'), + (273, 'Shapeshifter''s Chestplate'), + (273, 'Sinister Pistol of The Revoked'), + (273, 'Tentacle Cups'), + (273, 'Tentacle Lifter'), + (273, 'Tentacle Wrap'), + (273, 'Serpentine Sneaking Helmet'), + (273, 'Serpentine Sneaking Legwear'), + (273, 'Gauntlets of the Eight'), + (273, 'Intimate Tentacle Support'), + (273, 'Tentacle Cups'), + (273, 'Tentacle Lifter'), + (273, 'Tentacle Wrap'), + (274, 'HUD Upgrade: Super Target Scope 7'), + (274, 'Gamma Reaper'), + (274, 'Putrescent Ring'), + (274, 'Slayerdroid Notum-Imbued Claw'), + (274, 'Serpentine Sneaking Shoulderplate'), + (274, 'Serpentine Sneaking Suit'), + (274, 'Cuirass of the Eight'), + (275, 'Boreal Blade of Inobak'), + (275, 'Guardian Heavy Tank Armor'), + (275, 'Obsidian Defiler'), + (275, 'Skull of Anguish'), + (275, 'Serpentine Sneaking Sleeves'), + (275, 'Legwear of the Eight'), + (275, 'Vision of the Eight'); \ No newline at end of file diff --git a/modules/standard/bossloot/bossloot_controller.py b/modules/standard/bossloot/bossloot_controller.py new file mode 100644 index 0000000..5e4996e --- /dev/null +++ b/modules/standard/bossloot/bossloot_controller.py @@ -0,0 +1,64 @@ +from core.chat_blob import ChatBlob +from core.command_param_types import Any +from core.db import DB +from core.decorators import instance, command +from core.text import Text + + +@instance() +class BosslootController: + def inject(self, registry): + self.db: DB = registry.get_instance("db") + self.text: Text = registry.get_instance("text") + + def pre_start(self): + self.db.load_sql_file(self.module_dir + "/" + "boss.sql", pre_optimized=True) + self.db.load_sql_file(self.module_dir + "/" + "boss_loot.sql", pre_optimized=True) + self.db.load_sql_file(self.module_dir + "/" + "whereis.sql", pre_optimized=True) + self.db.create_view("whereis") + self.db.create_view("boss") + self.db.create_view("boss_loot") + + @command(command="boss", params=[Any("search")], access_level="member", + description="Show loot for a boss") + def boss_cmd(self, _, search): + sql = "SELECT b.id, b.name, w.answer FROM boss b " \ + "LEFT JOIN whereis w ON b.name = w.name " \ + "WHERE b.name ?" + data = self.db.query(sql, [search], extended_like=True) + cnt = len(data) + + blob = "" + for row in data: + blob += self.format_boss(row) + blob += "\n\n" + + return ChatBlob("Boss Search Results for '%s' (%d)" % (search, cnt), blob) + + @command(command="bossloot", params=[Any("search")], access_level="member", + description="Show loot for a boss") + def bossloot_cmd(self, _, search): + sql = "SELECT DISTINCT b2.id, b2.name, w.answer " \ + "FROM boss_loot b1 JOIN boss b2 ON b2.id = b1.boss_id LEFT JOIN whereis w ON w.name = b2.name " \ + "WHERE b1.item_name ?" + data = self.db.query(sql, [search], extended_like=True) + cnt = len(data) + + blob = "" + for row in data: + blob += self.format_boss(row) + blob += "\n\n" + + return ChatBlob("Bossloot Search Results for '%s' (%d)" % (search, cnt), blob) + + def format_boss(self, row): + data = self.db.query("SELECT * FROM boss_loot b " + "LEFT JOIN aodb a ON b.item_name = a.name " + "WHERE b.boss_id = ? ORDER BY b.item_name", [row.id]) + + blob = "" + blob += "%s\n" % row.name + blob += "Location: %s\n" % row.answer + blob += "Loot: " + ", ".join(map(lambda x: self.text.make_item(x.lowid, x.highid, x.highql, x.name), data)) + + return blob diff --git a/modules/standard/bossloot/whereis.sql b/modules/standard/bossloot/whereis.sql new file mode 100644 index 0000000..16f6e74 --- /dev/null +++ b/modules/standard/bossloot/whereis.sql @@ -0,0 +1,799 @@ +# noinspection LongLineForFile + +DROP TABLE IF EXISTS whereis; +CREATE TABLE whereis +( + id INT PRIMARY KEY AUTO_INCREMENT, + name VARCHAR(255) NOT NULL, + answer text, + keywords text, + playfield_id SMALLINT NOT NULL, + xcoord SMALLINT NOT NULL, + ycoord SMALLINT NOT NULL +); +INSERT INTO whereis (name, answer, keywords, playfield_id, xcoord, ycoord) +VALUES ('12-man', 'Xan', '12m 12man', 6013, 418, 324), + ('4 Holes', + 'in the west central part of the world. It has whompas at 1200 x 1225 to 2ho, 20k, and Broken Shores. North of 4holes is Stret West Bank, south is Andromeda, east Stret East Bank, no zone avail to the west.', + 'Four Holes Fourholes 4ho', 760, 893, 1754), + ('A Dancing Fool', 'Baboons (located in Omni Entertainment)', NULL, 705, 766, 766), + ('A Face In The Sand', 'Aegean', NULL, 585, 1400, 2750), + ('A Spoiled Brat', 'in a park in Omni-Ent', NULL, 705, 946, 350), + ('Abandoned Hope', 'The Reck; Island of the Dead', NULL, 750, 2009, 182), + ('Abmouth Supremus', + 'in the lower levels of the Subway Dungeon at the very end. He spawns two infectors when attacked.', NULL, 0, 0, + 0), + ('Ace Camp', 'Eastern Fouls Plain', 'Primus', 620, 720, 1380), + ('Aegean', + 'in the northeast part of the world. No grid access point and no whompa. East of Aegean is Varmint Woods, to the west is Athen Shire, southeast is Upper Stret East Bank, southwest Wartorn Valley and Stret West Bank, no zone available to the north.', + 'Aegean Aegan Aegean Aegeon Aegon Agean Ageon', 585, 0, 0), + ('Afreet Ellis', 'Inferno, NE of Frontier Garden', NULL, 4605, 2560, 2910), + ('Ahomac', 'Inferno, Fronter', NULL, 4605, 2745, 2341), + ('Akshk''i', 'Inferno, South of Frontier', 'Akshki', 4605, 2294, 2253), + ('Albtraum', 'Inferno, Burning Mashes', NULL, 4005, 1135, 756), + ('Algid Slither', 'Adonis, Abyss N', NULL, 4873, 1510, 3320), + ('Alpha Skincrawler', 'Crypt of Home, Broken Shores', NULL, 0, 0, 0), + ('Alvin Odeleder', 'Lush Fields Outpost', 'Alvinodeleder', 695, 1538, 2500), + ('Anansi Devotee', 'East of Sorrow In Inferno', NULL, 4605, 1650, 1400), + ('Anansi Disciple', 'Burning Mashes', NULL, 4005, 942, 697), + ('Anansi Dreamkeeper', 'Burning Mashes', NULL, 4005, 942, 697), + ('Anansi Gopher', 'Burning Mashes, on the ramp', NULL, 4005, 860, 719), + ('Anansi Orator', 'North West from the Petrified Hecklers', NULL, 4005, 945, 1350), + ('Anansi Protector', 'East of Sorrow In Inferno', NULL, 4605, 1650, 1400), + ('Anansi Scribe', 'East of Sorrow In Inferno', NULL, 4605, 1650, 1400), + ('Anansi Speaker', 'North West from the Petrified Hecklers', NULL, 4005, 945, 1350), + ('Anansi Storyteller', 'North West from the Petrified Hecklers', NULL, 4005, 945, 1350), + ('Anansi Zealot', 'Burning Mashes', NULL, 4005, 942, 697), + ('Anansi''s Abettor', 'Inferno, Far SW of Sorrow', NULL, 4005, 590, 422), + ('Anansi''s Disciple', 'Inferno', NULL, 4605, 3381, 2694), + ('Anansi''s Favorite', 'Inferno, just NE of Frontier', NULL, 4605, 2719, 2656), + ('Anansi''s Left Hand', 'South West of Oasis, East of Sorrow in Inferno. Calmer reccomended.', NULL, 4005, 1939, + 1760), + ('Anansi''s Right Hand', 'Inferno, East of Sorrow', NULL, 4005, 1914, 1603), + ('Ancient Tombstone', 'North of Yutto''s Mashes, surrounded by spirits', NULL, 4005, 2327, 1390), + ('Andromeda', + 'in the southwest part of the world. Whompas to Tir, Newland, and Omni Trade. To the north (east) of Andromeda is 4 Holes, to the north (west) is Stret East Bank. To the east is Milky Way, south (east) is Lush Fields, south Clondyke. No zone avail to the west.', + '655 Andromada Andromedia Andromida Icc', 655, 3250, 900), + ('Angel''s Trumpet', 'Clondyke (seems to be in multiple locations nearby)', 'Bronto Datura Inoxia', 670, 2359, + 3656), + ('Aniitap''s Shadow', 'Inferno, North of Frontier', NULL, 4605, 2416, 3238), + ('Aniitap', 'Inferno', '', 4605, 2453, 3357), + ('Another Face In The Sand', 'Mort', NULL, 560, 1300, 2650), + ('Apprentice Beasthandler', 'Inferno, 255 Incarnator', NULL, 4605, 3325, 3134), + ('Aquarius', 'Pandemonium, East Node', NULL, 0, 0, 0), + ('Architect Striker', 'in the Subway Dungeon, usually on the bridge.', NULL, 0, 0, 0), + ('Area Y', 'beyond Galway View next to Arthers Pass', NULL, 0, 0, 0), + ('Arid Rift', '', '', 6013, 257, 635), + ('Aries', 'Pandemonium, West Node', NULL, 0, 0, 0), + ('Asanon', 'Inferno, Fronter', NULL, 4605, 2785, 2385), + ('Asase''s Drudge', '', '', 4005, 632, 297), + ('Asperous Imp', 'Elysium, Near Ergo', NULL, 0, 0, 0), + ('Astypalia', 'Inferno, West of Razors Lair', NULL, 4605, 1777, 2715), + ('Atakirh', 'Inferno, South of Frontier', NULL, 4605, 1961, 2451), + ('Athen Old', + 'in the NW part of the world. It has a whompa to Tir, Wailing Wastes and Bliss at 445 x 318. Out the east gate is Wartorn Valley and out west gate is West Athen', + NULL, 540, 512, 573), + ('Athen Shire', + 'in the NW part of the world. It has no grid access or whompa. To the north is Wailing Wastes, to the east is Wartorn Valley and Aegean, to the west is The Longest Road, to the south is Holes in the Wall. The War Academy at 1740 x 1970.', + 'Athen Shir Shire Shite Shrine Sire Athens Athenshire', 550, 0, 0), + ('Athen West', + 'in the NW part of the world. It has no whompa. To the north, south and west is Athen Shire, to the east Athen Old.', + 'Athen West Athens Athenwest Old Weat Grid', 545, 472, 410), + ('Athlar', 'Elysium, inside mountains SW and NW', NULL, 0, 0, 0), + ('Augmented Cyborg Hellfury', 'Cyborg Barracks Greater Tir County', NULL, 647, 3232, 2340), + ('Avalon', + 'in the north west part of the world. It has a whompa to Athens and Wailing Wastes at 2175x3815. There is no zone available to the north, east and west. Southeast is Wailing Wastes. camelot castle (dungeon) at 2090 x 3820. clan op with scanner at 1540 x 3730 and 2140 x 3110. Omni outposts with scanner at 800 x 1630 and at 1870 x 1230.', + 'Avalon Avolon Omni Outpost', 505, 2070, 3760), + ('Aztur The Immortal', + 'Temple Of The Three Winds, Greater Tir County. You need to kill Uklesh the Frozen and Khalum before he spawns.', + 'Azzy', 647, 0, 0), + ('Baboons', 'Omni Entertainment', NULL, 705, 766, 766), + ('Bahirae Serugiusu', 'Omni Trade', 'Token', 710, 411, 394), + ('Bane', 'Crypt of Home, Broken Shores', NULL, 0, 0, 0), + ('Beast 215', '', '', 4605, 3497, 2063), + ('Beer And Booze Bar', 'Mort, in the city called Hope. The bar has a 5% supression gas.', + 'Beer & Booze And Bar N', 566, 2840, 1920), + ('Belial Forest', + 'in the SE part of the world. No grid access. Whompas in Wine lead to Broken Shores and Varmint Woods at 2150 x 2319. To the north of Belial Forest is Deep Artery Valley, south is Eastern Foul Plains, west is S.Artery Valley and Milky Way is south and southwest. No zone to east.', + 'Belial Forrest Belialforest', 605, 2150, 2319), + ('Bending Eremite', 'Elysium, Sand dunes near Cold Rock', NULL, 0, 0, 0), + ('Best In Brass', 'Galway Shire, Rome Stretch', 'Bestinbrass Brast', 687, 400, 750), + ('Bia''s Favorite', 'Inferno', '', 4605, 2764, 2655), + ('Bigot Helozabasael', 'Inferno', '', 4005, 1482, 2274), + ('Bigot Inmodeah', 'Inferno', '', 4005, 696, 1151), + ('Bigot Laniheanheh', 'Inferno', '', 4005, 1339, 2480), + ('Bigot Nzaemihiel', 'Inferno', '', 4005, 749, 1184), + ('Bigot Pohihanepael', 'Inferno', '', 4605, 3237, 3210), + ('Bigot', 'Inferno, SW of Sorrow, N of Sorrow, 255 Inc', NULL, 0, 0, 0), + ('Biomare', + 'The Longest Road. Recommended for teams of lvl 40-70. Look for a door that says Foreman above the doorway.', + 'Biological Materials Research Omni-Med Bio Facility Foremans Office', 795, 1930, 775), + ('Black', 'Adonis, Abyss N', NULL, 4873, 1644, 2237), + ('Bliss', + 'The Longest Road. Bliss has shops, clan insure terms, banks and mission terms. Bliss has whompas to Athen Old, Avalon, and Broken Shores', + NULL, 795, 3700, 1615), + ('Bold Eremite', 'Inferno, southeast of Sorrow (straight south of Anansi Devotee''s) around', NULL, 4605, 1650, + 1150), + ('Bonzo', 'at the Beer and Booze Bar, Mort', NULL, 560, 2835, 1930), + ('Borealis Grid', '', 'bor grid', 800, 636, 728), + ('Borealis', + 'in the central-west part of the world. Whompa to Stret West Bank at 682 x 531. Whompa to Newland right next to that. East of Borealis is Holes in the Wall. No zones currently available to the north, south, and west.', + 'Bor Borealis Approach City Grid', 800, 635, 727), + ('Brainy Ant Woods', 'Greater Tir County', 'Ants Biniary', 647, 1300, 1500), + ('Brenda Diamond', 'at the ruins near Home in Broken Shores', NULL, 665, 430, 2200), + ('Brimstone Demon', + 'East-North-East of Sorrow and spawns among the other demons. Sometimes it''s bugged and spawns inside the nearby mountain, petition to get them killed/moved out.', + NULL, 4005, 1650, 1625), + ('Broken Shores', + 'in the southwest corner of the world. It has a grid access point in City of Home. In the north is a Whompah at 1000 x 3760 to Bliss and to Wine. There is a Whompah to Rome Red and 4 Holes Trade at 2340 x 2250', + 'Broken Shord Shore Shores Brokenshores Bs Grid', 665, 644, 1313), + ('Brumal Slither', ' Adonis, Abyss N', NULL, 4873, 1440, 3414), + ('Brutish Dryad', 'Elysium by Omni Shunpike exit 699 x 914 and 735 x 956, Utopolis and South Elysium', NULL, + 4542, 699, 914), + ('Brutus Leonidis', 'Athen Shire', NULL, 550, 1550, 300), + ('Cacophonous Imp', 'Elysium, Near Ergo', NULL, 0, 0, 0), + ('Calamity Eremite', + 'Inferno SouthEast of Sorrow (South of Anansi Devotees), Area: Burning Marshes (south of the rock)', NULL, 4005, + 1685, 1164), + ('Camelot', + 'in the northwest part of the world, in the center of the city of Avalon and can be reached by whompa from Old Athens or Wailing Wastes.', + NULL, 505, 0, 0), + ('Cancer', 'Pandemonium, East Node', NULL, 0, 0, 0), + ('Cantankerous Golem', 'Adonis, 2401 x 712 SE and 784 x 892 SW', NULL, 4872, 2401, 712), + ('Capricorn', 'Pandemonium, North Node', NULL, 0, 0, 0), + ('Captain Lewison', 'Reet retreat, Stret West Bank', NULL, 790, 1206, 2807), + ('Cardboard Palm', 'Clondyke', 'Bronto Zamia Furfuracea', 670, 1684, 1516), + ('Catervauling Minx', 'Elysium, Near Ergo & Fallen Forest', NULL, 0, 0, 0), + ('Cenobite Shadow', 'Crypt of Home, Broken Shores', NULL, 0, 0, 0), + ('Central Artery Valley', + 'in the mideastern part of the world. No grid or whompa. North of Central Artery Valley is Varmint Woods, south is Southern Artery Valley, east is Deep Artery Valley, west is Upper Stret East Bank. NE corner is Greater Tir Cnty and SW corner is Stret East Bank.', + 'Cav Base Central Art Valley Centralarteryvalley', 590, 0, 0), + ('Cerubin The Rejected', 'Crypt of Home, Broken Shores', NULL, 0, 0, 0), + ('Chilly Slither', 'Adonis, Abyss N', NULL, 4873, 1465, 3373), + ('Chimera Aberrant', 'around the +10 ring dungeon just inside Inf', NULL, 4005, 1091, 380), + ('Chimera Crusher', 'East of the Portal to Pen, around the +10 ring dungeon just inside Inf', NULL, 4005, 1090, + 400), + ('Chimera Monitor', 'Inferno, West of Dark Marshes Unred Temple', NULL, 4005, 1328, 583), + ('Chimera Trainer', 'Inferno, West of Dark Marshes Unred Temple', NULL, 4005, 1388, 656), + ('City Administrator Rex Chapman', 'Omni-1 Entertainment near the billboards next to the Whompa to Rome', NULL, + 705, 905, 522), + ('City Of Home', 'Broken Shores. It has shops, clan/neut insure terms, banks.', 'Cityofhome coh', 665, 735, + 1459), + ('Clan Modified A-4000', 'at Avalon', 'Clan Modified A 4000 a-4000 A4000', 505, 1105, 2520), + ('Clan Modified A-4001', 'in Wailing Wastes', 'A-4001 A 4001 A4001', 551, 0, 0), + ('Clan Trader Shop', 'Old Athens (SW of Grid - Finest Edition)', '', 540, 370, 500), + ('Clan Trader Shop', 'Tir (NW - Computers Inc)', '', 640, 395, 545), + ('Clawfinger Forefather', 'Smuggler''s Den, Southern Fouls Hills', + 'Claw Finger Forefather Clawfinger Fore Father', 615, 1749, 869), + ('Clondyke', + 'in the southwest part of the world. It has a grid access point at 1054 x 4023, no whompa. North of Clondyke is Andromeda, west is Galway County, east is Lush Fields. No zone avail to the south.', + 'Clondike Coldyke Condyke Klondyke', 670, 0, 0), + ('Coal Lizard', 'Misty Marshes NW from Dark Marshes', NULL, 4005, 1635, 1110), + ('Coco', 'next to the bar in ''The Cup'', in West Athen', NULL, 545, 0, 0), + ('Coiling Eremite', 'Elysium, Sand dunes near Cold Rock', NULL, 0, 0, 0), + ('Cold Slither', 'Adonis, Abyss N', NULL, 4873, 1560, 3375), + ('Colonel Frank Kaehler', 'Omni-Forest', 'Colonel Frank Kaehler Keahler Kehler', 716, 700, 2000), + ('Comatosed Soul', 'Elysium, E Whispervale and 115 Inc', NULL, 0, 0, 0), + ('Commander Jocasta', 'at Cyborg Barracks in Greater Tir County', NULL, 647, 3232, 2340), + ('Commander Kelly Frederickson', 'Tir County', 'Commander Kelly Frederickson Fredrickson', 646, 1750, 1100), + ('Commander Kend Ash', 'Omni-1 Trade', + 'Bazzit''s Alien Library Linked Hacker Tool Vanguard Node Access Card Kyr''Ozch Structural Analyzer', 710, 415, + 405), + ('Conflagrant Spirit', 'in Inferno, NW of Yuttos', NULL, 4005, 2247, 1393), + ('Contemplating Spirits And Unrepentant Spirits', + 'among the runes just north of the portal to Penumbra in Inferno surrounding the Spirit Of Disruption.', NULL, + 4005, 0, 0), + ('Corrupt Spirit', 'Adonis, 1524 x 464 S and 1941 x 2241 N', NULL, 4872, 1524, 464), + ('Crabby Golem', 'Adonis, 2334 x 559 SE and 783 x 1012 SW', NULL, 4872, 2334, 559), + ('Cranky Golem', 'Adonis, 2402 x 638 SE and 849 x 1177 SW', NULL, 4872, 2402, 638), + ('Creepy Spider', 'Inferno, N of 255 Incarnator', NULL, 4605, 3222, 3419), + ('Crete', 'Inferno, 255 Incarnator', NULL, 4605, 3140, 3039), + ('Cuty', 'Tir County, Crater Farm Region', NULL, 646, 1500, 600), + ('Cyborg Barracks', + 'in the northeast part of the world, in Greater Tir County. Recommended for teams of lvl 70-90.', + 'Borg Baracks Barrack Barrackes Barracks Barracksccccc Barracs Barraks Camp Campp Camps Domain Dungeon Borgbarracks Borgs Cyborg Cyborgbarracks', + 647, 3230, 2340), + ('Cyborg Brigadier General', + 'Mort (Can be found wandering at the Ruins on Mort Crater, use the Sentinals grid exit)', NULL, 560, 1400, 530), + ('Cyborg Executioner', 'The Reck; Cyborg Prison Camp', NULL, 750, 1311, 1473), + ('Cyborg Lieutenant Colonel', + 'Mort (Can be found wandering at the Ruins on Mort Crater, use the Sentinals grid exit)', NULL, 560, 1400, 530), + ('Daedra Iberra', 'Pleasent Meadows', NULL, 630, 1510, 720), + ('Dana McCoy', 'Lower Scheol', NULL, 4881, 1220, 110), + ('Dancing Atrox Bar', 'Omni-1 Screening Area (Omni Forest). You may know this place as Relax Bar.', + 'Relax Bar Club Bar', 716, 300, 1850), + ('Daria Marie Walzer', 'Lush Fields', NULL, 695, 1782, 2062), + ('Daring Dryad', 'Penumbra, South of W Pipe Entrance', NULL, 0, 0, 0), + ('Dauntless Dryad', 'Penumbra, South of W Pipe Entrance', NULL, 0, 0, 0), + ('Deep Artery Valley', + 'in the mideastern part of the world. No grid and no whompa. To the north of Deep Artery Valley is Greater Tir County (but a force field blocks you from zoning north), south is Belial Forest, west is Central Artery Valley and Southern Artery Valley, no zone to east.', + 'Deeparteryvalley', 595, 0, 0), + ('Defender Of The Three', 'Temple Of The Three Winds, Greater Tir County', NULL, 647, 0, 0), + ('Deidre Lux', 'in the East Last Ditch area of Stret West Bank.', + 'Bazzit''s Alien Library Hacker Tool Vanguard Node Access Card', 790, 1260, 2845), + ('Delinquent Spirit', 'Adonis, S', NULL, 4872, 1579, 433), + ('Den Smuggler Pilot', 'Smugglers Den, Southern Fouls Hills', NULL, 615, 1755, 872), + ('Devoted Spirit Hunter', 'Inferno, West of Sorrow', NULL, 4005, 645, 1314), + ('Diamondine Soldier', 'Eastern Fouls Plain', NULL, 620, 1925, 1450), + ('Diamondine Trainee', 'Eastern Fouls Plain', NULL, 620, 1925, 1450), + ('Ding', 'Greater Tir County', NULL, 647, 0, 0), + ('Distracted Snake Tamer', 'Inferno, 225 Incarnator', NULL, 4605, 3515, 1957), + ('Disturbing Imp', 'Elysium, Near Ergo', NULL, 0, 0, 0), + ('Doctor Krank', 'Centeral Artery Valley', 'Dr Krank Dr Crank Drcrank', 590, 2965, 1315), + ('Dodga Demercel', 'Rising Sun, Aegean', NULL, 585, 0, 0), + ('Dominus Facut the Bloodless', 'Inner Sanctum, 3rd Floor', NULL, 0, 0, 0), + ('Dominus Jiannu', 'Inner Sanctum, 3rd Floor', NULL, 0, 0, 0), + ('Dominus Ummoh the Pedagogue', 'Inner Sanctum, 3rd Floor', NULL, 0, 0, 0), + ('Donna Red', 'Nascense', 'Quest Clan Garden Key Alban Redeemed', 4310, 985, 1760), + ('Dr. Hercules Lincoln', '', '', 610, 1133, 2376), + ('Dr. Jones - Physical Anthropologist', 'Lower Scheol', NULL, 4881, 1180, 83), + ('Dr.Curry - Linguistic Anthropologist', 'Upper Scheol', NULL, 4880, 1089, 1137), + ('Dr.Darnell - Social Anthropologist', 'Upper Scheol', NULL, 4880, 305, 1111), + ('Dr.Hestyia - Archaeologist', 'Lower Scheol', NULL, 4881, 799, 595), + ('Eastern Fouls Plain', + 'in the southeast part of the world. No grid or whompa. North of E.Fouls Plain is Belial Forest (but a force field keeps you from zoning north), south is Southern Fouls Hills, north west is Milky Way, southwest is Pleasant Meadow. No zone avail to the east.', + 'East Foul Plains Easternfoulsplain Efp', 620, 0, 0), + ('Ecclesiast Abal Fal', 'Nascense', 'Quest Clan Garden Key Alban Redeemed', 4310, 1890, 690), + ('Eddie', 'Stret West Bank, outside Reets Retreat', 'Eddy', 790, 1212, 2828), + ('Eden Cafe', 'Omni Entertainment, South', NULL, 705, 744, 417), + ('Eighth Brood Champion', 'Hollow Island', NULL, 605, 0, 0), + ('Electro Unique', 'Wailing Wastes, north of Athens Shire', 'Electro Umique Uneak Unique Uniqui Electrounique', + 551, 650, 1950), + ('Elian Zuwadza', 'Galway', NULL, 685, 450, 1300), + ('Elmer Ragg', 'Mort', NULL, 560, 1731, 942), + ('Ember Chimera', 'Burning Marshes SW of Sorrow', NULL, 4005, 757, 870), + ('Enjoy It While It Lasts', 'Tir City', 'bar club', 640, 650, 400), + ('Enkindled Spirit', 'Inferno, NW of Yuttos', NULL, 4005, 2326, 1280), + ('Enterprice Shop', 'ICC', 'veteran', 655, 3206, 820), + ('Entvined General', 'The Reck; Port New Thera', NULL, 750, 1520, 794), + ('Eradicator Deimos', 'Cyborg Barracks, Greater Tir County', 'deimos demos eradicater eradicator', 647, 3232, + 2340), + ('Ergo, Inferno Guardian of Shadows', '', '', 4605, 2800, 3378), + ('Ergo, Penumbra Guardian of Shadows', '', '', 4321, 2171, 2446), + ('Eric Mendelson Outpost', 'Varmint Woods, there are mission terms, insure term and shopping terms', + 'Erik Ericmendelsonoutpost', 600, 2450, 2100), + ('Eroded Ancient Statue', '', '', 610, 1033, 2005), + ('Escaped Gargantula', 'Galway County', NULL, 685, 2160, 1150), + ('Estella Fire', 'Inferno', '', 4605, 3554, 2030), + ('Ethel Anthony', 'near the Newland Desert Whompah, standing next to Jens Stoltenberg', + 'AI Quest Social Clothing Combined Armor', 565, 2179, 1547), + ('Eumenides', + 'Condemned Subway, at the end of the one rail way hall, past the slum runners but before the infectors', NULL, + 0, 0, 0), + ('Fanatic Spirit Hunter', 'Inferno, North of Sorrow', NULL, 4005, 1386, 1990), + ('Fearless Dryad', 'Penumbra, South of W Pipe Entrance', NULL, 0, 0, 0), + ('Feral Vortexoid Mindbreaker', 'Burning Marshes SW of Sorrow', NULL, 4005, 617, 737), + ('Feral Vortexoid Soother', 'Burning Marshes SW of Sorrow', NULL, 4005, 617, 737), + ('Feral Vortexoid Striker', 'Burning Marshes SW of Sorrow', NULL, 4005, 617, 737), + ('Fetid Eremite', 'Inferno', '', 4605, 2611, 2122), + ('Fiery Imp', '', '', 4005, 836, 186), + ('Fiery Soldier', 'Eastern Fouls Plain', NULL, 620, 365, 2060), + ('Fiery Trainee', 'Eastern Fouls Plain', NULL, 620, 365, 2060), + ('Fifth Brood Champion', 'Hollow Island', NULL, 605, 0, 0), + ('Fire Flea', 'Inferno, it''s the first creature you will encounter. When killed, a Fiery Imp will appear.', '', + 4005, 836, 186), + ('First Brood Champion', 'Hollow Island', NULL, 605, 0, 0), + ('Fly Agaric', 'Clondyke', 'Bronto Amanita Muscaria', 670, 588, 3441), + ('Forefather', 'Smuggler''s Den, Southern Fouls Hills', NULL, 615, 1755, 872), + ('Fourth Brood Champion', 'Hollow Island', NULL, 605, 0, 0), + ('Freedom Outpost', + 'Athen Shire. Insure terms, shops and mission terms and banks are available here. Directly beside the outpost is the zone to Wailing Wastes.', + 'Freedomoutpost', 550, 1553, 370), + ('Fritz', 'in the Neuts r'' us club in Newland City.', + 'AI Quest Social Clothing Hair Care Contraption Combined Armor', 566, 447, 340), + ('Galvano', 'Greater Omni-Forest, Grassland', 'Galivino Galvano Galven Galvino', 717, 2020, 2190), + ('Galway Castle Model', 'Galway County', NULL, 685, 1110, 1000), + ('Galway County', + 'in the southwest part of the world. It has a grid access point at 1416 x 1091 and whompas at 2530 x 1175 to Outpost 10-3, Omni-1 Trade, and Rome . West is Galway Shire, east is Clondyke, no zones avail to north and south.', + 'Galaway County Galway Country Galwaycounty', 685, 2530, 1175), + ('Galway Shire', + 'in the southwest part of the world. No grid access or whompa. East is Galway County, west is Broken Shores, no zones avail to north and south. Rome is located midway in Galway Shire on far west side.', + 'Galaway Shire Galwayshire', 687, 0, 0), + ('Gartua The Doorkeeper', 'Temple Of The Three Winds, Greater Tir County', NULL, 647, 0, 0), + ('Gashing Soul Dredge', 'Adonis, NE', NULL, 4872, 2899, 2580), + ('Gemini', 'Pandemonium, East Node', NULL, 0, 0, 0), + ('General Freewheeler', 'Avalon, at the Main OT Base', NULL, 505, 1800, 1200), + ('General Hardcastle', 'Avalon, at the Main OT Base', NULL, 505, 1800, 1200), + ('General Kaehler Jr', 'Avalon, Secondary Base', NULL, 505, 0, 0), + ('General Kronilis', 'Perpetual Wastelands', NULL, 570, 2000, 2500), + ('General Nirtox', 'Perpetual Wastelands', NULL, 570, 0, 0), + ('General Serverus', 'Cyborg Barracks, Greater Tir County', NULL, 647, 3232, 2340), + ('General Vivyan', 'Perpetual Wastelands', NULL, 570, 2120, 1760), + ('Genghis Pan', 'Mongol Meat, Tir', NULL, 0, 0, 0), + ('George', 'Greater Tir County', NULL, 647, 3200, 2300), + ('Gianna Molla/Perugino', 'Stret West Bank, East Last Ditch area', 'Quest Wedding Ring Omni-Tek Trash Can ', 790, + 1285, 2980), + ('Gilbert Glove', 'Newland Desert', 'AI Quest Social Clothing Cybernetic Fingertips Combined Armor', 565, 3110, + 550), + ('Gnuff', + 'in the Will to Fight dungeon, in the center at 1111 x 833. He drops a Crystal of Rift Power, which will give you a random buff, like when you open a shrine.', + NULL, 0, 0, 0), + ('Good Time Party Mixer', 'Newland City. And one for Clans is located at Reets Retreat', NULL, 566, 463, 339), + ('Gouger Scorpiod', 'Pleasant Meadows (within a fairly large area of)', 'Bronto', 630, 2188, 1938), + ('Greasy Joints', 'Newland Desert', + 'Greasy Gears Jints Joings Joint Joints Now Jones Greasyjoints Greazy Greazyjoints', 565, 890, 950), + ('Greater Omni Forest', 'in the southeast part of the world. No grid or whompa.', + 'Greater Omni Foreset Forest Forrest Greateromniforest', 717, 0, 0), + ('Greater Tir County Hotsprings', 'Greater Tir County', 'Hot spring Springs Hotsprings', 647, 2850, 1650), + ('Greater Tir County', + 'in the northeast part of the world. Grid access in Tir City at 555 x 527 and a whompa in Tir City at 475 x 466 to Newland City. To the south of Greater Tir County is Tir County, west is Varmint Woods, no zones avail to north or east.', + 'Greatertircounty', 647, 0, 0), + ('Gridman', 'at Fixer Grid, at the top', 'Grid Man Gridman', 4107, 0, 0), + ('Ground Chief Vortexx', 'Xan', 'Vortex Vort', 6013, 525, 305), + ('Guardian Of Dissent', + 'North East of Dark Marshes, has low spawn rate and drop rate, and spawns in multiple locations', NULL, 4005, + 2180, 890), + ('Guardian Of Tomorrow', 'Temple Of The Three Winds, Greater Tir County', NULL, 647, 0, 0), + ('Harry''s Outpost', + 'Lush Fields. You can grid to Harry''s or take the west exit from Omni-Trade. Or take the teleportal from the west side of Pleasent Meadows.', + 'Harries Harry''s Harry;s Harrys Grid Outpost', 695, 2980, 3125), + ('Harry, Himself', 'Harry''s Outpost, Lush Fields', NULL, 695, 0, 0), + ('Hawqana', 'Inferno, 225 Incarnator', NULL, 4605, 3620, 2222), + ('Hebial', 'Inferno, Frontier', 'Hebiel', 4605, 2714, 2241), + ('Herbalist Geralt', 'Rhinoman Village, Newland Desert', 'AI Quest Social Clothing', 565, 2815, 1680), + ('Hezak The Immortal', 'Inner Sanctum, 3rd Floor', NULL, 0, 0, 0), + ('High Commander Brock', 'Tir, SE OP', NULL, 646, 2861, 738), + ('High Commander Fielding', 'Wailing Wastes, NE corner', NULL, 551, 2700, 3500), + ('High Commander Frederickson', 'Wailing Wastes', NULL, 551, 0, 0), + ('High Commander Hoover', 'Wailing Wastes, NE corner', NULL, 551, 2700, 3500), + ('High Commander Riker', 'The Reck; Unicorn Outpost', NULL, 750, 676, 314), + ('Holes In The Wall', + 'in the west central part of the world. No grid access and no whompa. North of Holes in the Wall is Athen Shire, south and east is Stret West bank, Borealis to the west.', + NULL, 791, 0, 0), + ('Hollow Island Weed', 'Hollow Island', NULL, 605, 0, 0), + ('Hope', 'a neutral city in Mort. It has whompas to Stret West Bank and Newland Desert at 2888 x 1909', NULL, + 560, 2888, 1909), + ('Horatio Campbell', 'Omni Trade', NULL, 710, 300, 200), + ('Howling Minx', 'Elysium, Near Ergo & Fallen Forest', NULL, 0, 0, 0), + ('Howling Predator', 'Elysium, South of Remnans', NULL, 0, 0, 0), + ('ICC', 'Andromeda. Whompas to ICC come from Newland, Omni Trade and Tir.', NULL, 655, 3250, 900), + ('Ian Warr', 'Eastern Fouls Plain', NULL, 620, 720, 1380), + ('Iced Slither', 'Adonis, Abyss N', NULL, 4873, 1398, 3470), + ('Ida Schuller', 'Omni-Trade', NULL, 710, 0, 0), + ('Imelda Dane', 'Newland City, Neuts r'' Us club', 'AI Quest Social Clothing Combined Armor', 566, 447, 340), + ('Incandescent Spirit', 'Inferno, NW of Yuttos', NULL, 4005, 2408, 1347), + ('Incarnator QL225', '', '', 4605, 3390, 1998), + ('Incarnator QL255', '', '', 4605, 3224, 3068), + ('Inferno Redeemed Garden Access: Yutto Marshes Lord Galahad Statue', 'Inferno', + 'Redeemed Lord Galahad Statue Garden of', 4605, 2625, 1190), + ('Inferno Unredeemed Garden Access: Dark Marshes Lord Mordeth Statue', 'Inferno', + 'Lord Mordeth Statue Garden of Unredeemed Inferno Access', 4605, 2050, 715), + ('Inferno Unredeemed Garden Access: Inferno Barracks Lord Mordeth Statue', 'Inferno', + 'Lord Mordeth Statue Garden of Unredeemed Inferno Access Barracks', 4605, 3021, 975), + ('Inferno Unredeemed Garden Access: Unredeemed Yutto Marshes Lord Mordeth Statue', 'Inferno', + 'Lord Mordeth Statue Garden of Unredeemed Inferno Access Barracks', 4605, 2555, 1165), + ('Inferno Unredeemed Sanctuary Access: Oasis', 'Inferno', 'Lord Mordeth''s Sanctuary Statue Unredeemed Inferno', + 4605, 2120, 1990), + ('Inferno Unredeemed Sanctuary Access: Sorrow Outlook', 'Inferno', + 'Lord Mordeth''s Sanctuary Statue Unredeemed Inferno', 4605, 1385, 1525), + ('Inferno Unredeemed Sanctuary Access: Xark''s Lair', 'Inferno', + 'Lord Mordeth''s Sanctuary Statue Unredeemed Inferno', 4605, 3135, 1895), + ('Information Officer Stiller', 'Avalon, main OTAF base', NULL, 505, 1800, 1288), + ('Iniquitous Spirit', 'Adonis, S', NULL, 4872, 1624, 499), + ('Inobak the Gelid', 'Inner Sanctum, 3rd Floor', NULL, 0, 0, 0), + ('Instanced Pandemonium', 'Team Instance in Pandemonium near the portal to Inferno', 'ipande', 4328, 145, 34), + ('Inventor Bobic', 'Tir County', NULL, 646, 1910, 1398), + ('Investigator Marciello', 'Newland Desert, near the Meetmedere grid', + 'AI Quest Social Clothing Combined Armor Body Heat Pattern Analyzer.', 565, 1590, 2820), + ('Irascible Golem', 'Adonis, 2315 x 665 SE and 865 x 1310 SW', NULL, 4872, 2315, 665), + ('Iron Reet', 'Mutant Domain', NULL, 696, 857, 986), + ('Isham', 'Inferno, South of Frontier', NULL, 4605, 2104, 1891), + ('Ishimk''Imk', 'Inferno, 225 Incarnator', 'Ishimkimk', 4605, 3573, 2168), + ('Iskop the Idolator', 'Inner Sanctum, 3rd Floor', NULL, 0, 0, 0), + ('Ithaki', 'Inferno, 255 Incarnator', '', 4605, 3129, 3096), + ('Iziris Agathon', 'Omni-Trade, NE', NULL, 710, 0, 0), + ('Jack Legchopper', 'Varmint Woods', NULL, 600, 0, 0), + ('Janella Gheron', 'Cyborg Barracks, Greater Tir County', NULL, 647, 3200, 2300), + ('Jeuru the Defiler', 'Inner Sanctum, 3rd Floor', NULL, 0, 0, 0), + ('Joo', 'Omni Forest Area, Sunken Swamps', NULL, 716, 500, 2700), + ('Jukes', 'Adonis, Abyss walking around near other Dryads', NULL, 4873, 0, 0), + ('Karl Berth', 'Lower Scheol', NULL, 4881, 1172, 2051), + ('Kendric Kuzio', 'Deep Artery Valley', NULL, 595, 1532, 999), + ('Kira Quinn', 'Lower Scheol', NULL, 4881, 817, 1528), + ('Klapam Forest', 'Stret East Bank', NULL, 635, 0, 0), + ('Lab Director', 'The Longest Road, Foremans Office', NULL, 795, 1940, 775), + ('Lacerator Gunbeetle', 'Pleasant Meadows (within a fairly large area of)', 'Bronto', 630, 2405, 633), + ('Leading Blossom', 'Upper Scheol', NULL, 4880, 304, 1114), + ('Leet Crater', + 'just south east of Omni-Pol Barracks region in Omni Forrest, which is just south outside Omni Entertainment''s City Gates.', + NULL, 716, 0, 0), + ('Leo', 'Pandemonium, West Node', NULL, 0, 0, 0), + ('Leona', 'Newland, Bronto Burger', + 'Doll Rotten Peter Bacchante''s Fancy Yellow Hanging Lanterns Yellow Lanterns', 567, 0, 0), + ('Libra', 'Pandemonium, Middle Node', NULL, 0, 0, 0), + ('Lien the Memorystalker', 'Temple Of The Three Winds, Greater Tir County', NULL, 647, 0, 0), + ('Limber Dryad', 'Elysium, Utopolis and South Elysium', NULL, 0, 0, 0), + ('Limnos', 'Inferno, 255 Incarnator', NULL, 4605, 3121, 2972), + ('Limping Predator', 'Elysium, South of Remnans', NULL, 0, 0, 0), + ('Live Metal', 'Greater Tir County, Rocky Outcrops', 'Livemetal', 647, 1520, 2210), + ('Ljotur The Lunatic', 'Drill Island, Deep Artery Valley', NULL, 595, 1103, 722), + ('Lord Ghasap', 'Avalon Dungeon, Avalon', NULL, 505, 2092, 3822), + ('Lord of Sand', 'The Reck; Northern Eremite Statue', NULL, 750, 2267, 2902), + ('Lord of Sand', 'The Reck; Southern Eremite Statue', NULL, 750, 1533, 237), + ('Lord Of The Void', 'Inferno, E of Frontier, W of Frontier. Nasc Wilds', NULL, 0, 0, 0), + ('Lost Soul', 'Elysium, E Whispervale and 115 Inc', NULL, 0, 0, 0), + ('Lurking Dryad', 'Adonis, NW', NULL, 4872, 1232, 2798), + ('Lush Fields', + 'located in the south central part of the world. Lush Fields has grid access at 1443 x 667 (Lush Hills Resort)and at Harry''s at 3115 x 3183. Ferrys to Harry''s at 3563 x 916, ferrys to PM OT outpost at 3391 x 797 and 3195 x 3178 and ferry to Omni Trade at 3295 x 2917. No whompa. NW is Andromeda, northeast is Milky Way, west is Clondyke, east is Pleasant Meadows. MutantDomain is located centrally on eastern border.', + 'Lush Feilds Fhields Field Fields Outpost Resort Forest Hill Hills Meadows Op Woods Lushfields North West Mines Nw Omni Mine Prime', + 695, 1443, 667), + ('M.A.G.S', 'The Reck, Sentium(Omni Outpost)', NULL, 750, 1803, 3303), + ('Majestik Woods', 'Rome Blue, NE', NULL, 687, 400, 2520), + ('Malah-Fulcifera', 'Inferno', '', 4605, 2127, 1861), + ('Mantis Queen', 'Smuggler''s Den, Southern Fouls Hills', NULL, 615, 1749, 869), + ('Marcus Poet Laureate', 'Broken Shores', NULL, 665, 1500, 2900), + ('Marcus Robicheaux', 'Broken Shores', NULL, 665, 1500, 2900), + ('Marvin', 'Southern Artery Valley', NULL, 610, 1250, 2350), + ('Mary-Ann', 'Newland', 'AI Quest Social Clothing Thermo Vest combined armor', 567, 1144, 388), + ('Master Divenchy', 'Newland, near the crash site north of the lake', 'AI Quest Social Clothing Combined Armor', + 567, 900, 860), + ('Maychwaham', 'Inferno, South of Frontier', '', 4605, 2068, 2155), + ('Maychwyawi', 'Inferno', '', 4605, 2648, 2962), + ('Medusa Philanderer', 'Inferno', '', 4605, 2567, 2937), + ('Metalomania', 'Lush Fields, Harry''s Outpost', NULL, 695, 2980, 3125), + ('Mick Nugget McMullet', 'Clondyke', 'Mc Nugget Mcnugget Mick Mcmullet Nuggets', 670, 1100, 3700), + ('Milky Way Spaceship Crash Site', 'Milky Way', NULL, 625, 3300, 700), + ('Milky Way', + 'located in the southeast part of the world. No grid access or whompa. North of Milky Way is S.Artery Valley, nw is Stret East Bank, west is Andromeda, sw is Lush Fields, south is Pleasant Meadows, SE is Eastern Foul Plains, NE is Belial Forest.', + NULL, 625, 0, 0), + ('Miner Beetles', 'Pleasant Meadows', NULL, 630, 1100, 2300), + ('Misa Ramirez', 'Newland City, Neuts r'' us club', 'AI Quest Social Clothing Combined Armor', 566, 447, 340), + ('Mitaar Hero', 'Xan', 'Technomaster Sinuh', 6013, 345, 407), + ('Molested Molecules', 'Condemned Subway', NULL, 0, 0, 0), + ('Monday Kline', 'at Stret E at TRA only', NULL, 635, 1300, 890), + ('Mooching Dryad', 'Adonis, NW', NULL, 4872, 986, 2573), + ('Moog', 'Southern Artery Valley', NULL, 610, 1850, 2550), + ('Morgan Le Faye', 'Avalon Dungeon, Avalon, down the stairs where the PvP zone starts, and to the right', NULL, + 505, 2092, 3822), + ('Mort', + 'located in the northeast part of the world. It has whompas to Stret West Bank and Newland Desert at 2888 x 1909. Grid access is at 1928 x 1255 (Sentinels). There is no zones available to the north or west of Mort, to the south is Newland, to the east is Perpetual Wastelands.', + 'Mort Crater Dungeon Sentinel Base Outpost Sentinels', 560, 1928, 1255), + ('Morty', 'Tir County, Kuroshio Forest', NULL, 646, 300, 1200), + ('Mull', 'Adonis, Abyss walking around near other Dryads', NULL, 4873, 0, 0), + ('Mutant Domain', + 'located in the west central part of the world. No grid access or whompa. To the north, south and west of Mutant Domain is Lush Fields, east is Pleasant Meadows. This zone lies centrally on the eastern border of Lush Fields.', + 'Mutant Domain Swamp Village Mutantdomain', 696, 0, 0), + ('Natsmaahpt', 'Inferno', '', 4605, 3057, 1348), + ('Neleb The Deranged', 'Omni Forest, at the very end of the Steps of Madness', NULL, 716, 800, 2844), + ('Nelly Johnson', 'Eastern Fouls Plain', NULL, 620, 720, 1380), + ('Nematet The Custodian Of Time', 'Temple Of The Three Winds, Greater Tir County', NULL, 647, 0, 0), + ('Netrom', 'Southern Artery Valley (a small outpost type ruins)', NULL, 610, 1988, 606), + ('Neutral Trader Shop', '20K Outpost, Pleasant Meadows (Whompah)', '', 630, 1190, 2350), + ('Neutral Trader Shop', 'Borealis (West - HItech)', '', 800, 652, 576), + ('Neutral Trader Shop', 'Harrys Outpost, Lush Fields (SW of Grid - Supplies)', '', 695, 3040, 3030), + ('Neutral Trader Shop', 'Newland City (West - Supplies)', '', 566, 290, 315), + ('Neuts R Us', 'Newland City. A club. Most Player Cities have a Whompah to here.', 'Neuters R Us Neutsrus', 566, + 447, 340), + ('Neverta Canyon', '', '', 6013, 725, 562), + ('Newland City', + 'in the north east part of the world. It has a grid access point outside city west gate at 1172 x 482 and whompas to the ICC, Tir, and Borealis at 390 x 300. To the north, east, south and west of Newland City is Newland.', + NULL, 566, 390, 300), + ('Newland Desert', + 'in the northeast part of the world. It has a grid access point at 1172 x 482 and whompas to Newland City and Hope at 2200 x 1575. To the north is Newland, to the south is Varmint Woods. There are currently no zones available to the east or west.', + 'Meetmedeer Meetmeder Meetmedere Metmedere Newland Dessert Newlanddesert', 565, 2200, 1575), + ('Newland', + 'in the northeast part of the world. Grid access at 1527 x 2767 (Meetmedere), whompas inside Newland City to ICC, Newland Desert, and Borealis at 390 x 300. To the north of Newland is Mort, to the south is Newland Desert. Currently no zones available to the east or west.', + NULL, 567, 0, 0), + ('Ninth Brood Champion', 'Hollow Island', NULL, 605, 0, 0), + ('Nippy Slither', 'Adonis, Abyss N', NULL, 4873, 1375, 3472), + ('Nodda Gregg', 'Tir County', NULL, 646, 1933, 1494), + ('Nolan Deslandes', 'Neuters R Us, Newland City', NULL, 566, 447, 340), + ('Notum Cannons', 'Clondyke', NULL, 670, 1200, 3400), + ('Notum Profundis', 'Eastern Fouls Plain', NULL, 620, 773, 1430), + ('Notum Soldier', 'Eastern Fouls Plain', NULL, 620, 2000, 2400), + ('Notum Trainee', 'Eastern Fouls Plain', NULL, 620, 2000, 2400), + ('Notum Tree', 'Avalon', NULL, 505, 2450, 1300), + ('Noxious Eremite', 'Inferno', '', 4605, 2615, 2233), + ('Numiel', 'Inferno, Fronter', NULL, 4605, 2821, 2454), + ('Nuts & Bolts', 'Aegean, Wartorn Valley', NULL, 585, 790, 680), + ('Nyame''s Abettor', '', '', 4005, 717, 445), + ('Nyame''s Drudge', '', '', 4005, 1851, 1761), + ('Obediency Inspector', 'Eastern Fouls Plain, at the lake', NULL, 620, 1225, 2800), + ('Obsolete Soul Dredge', 'Inferno', '', 4605, 3149, 3217), + ('Ofoz', + 'Newland city, to avoid the attention of the Unicorn forces. You can find him near the north city gate by the mission terminals.', + NULL, 566, 0, 0), + ('Omni Forest', + 'in the southeast part of the world. No grid access or whompa. North of Omni Forest is Pleasant Meadows, northeast is Eastern Foul Plains, east us Southern Foul Plains. To the west is Omni Entertainment.', + 'Omni Forrest ', 716, 0, 0), + ('Omni Trader Shop', 'Omni-1 Entertainment (SE - Big Yalm)', '', 705, 845, 430), + ('Omni Trader Shop', 'Omni-1 Trade (NW - Finest Edition)', '', 710, 230, 490), + ('Omni Trader Shop', 'Rome Blue district (West Wall)', '', 735, 540, 330), + ('Omni Trader Shop', 'Rome Green district (East Wall)', '', 740, 410, 340), + ('Omni-1 Entertainment', + 'in the southeast part of the world. It has a grid access point at 879 x 579 and 582x337. Whompa in the north east of town at 890 x 671 lead to 20K. Whompas in south east at 900 x 470 lead to Omni-1 Trade and Rome Red.', + 'Omni Entertainment, Omni Ent', 705, 0, 0), + ('Omni-1 HQ', 'in the southeast part of the world. It has a grid access point at 602 x 468.', 'Hq Omni Hq', 700, + 602, 468), + ('Omni-1 Trade', + 'in the southeast part of the world. It has a grid access point at 407 x 575. Whompas to ICC, Omni Entertainment, and Galway Castle at 370x380. Out the east gate is Omni1 HQ. Out the west gate is Lush Fields.', + 'Omni Trade', 710, 0, 0), + ('Omni-Pol Command Juggernaut', 'Primary Base, Avalon. E-W Road Mutant Domain', NULL, 505, 0, 0), + ('Omni-Tek Mission Agency', 'Rome Blue, Center', 'daily mission freelancers', 735, 658, 314), + ('One Who Asks The Unasked', 'Inferno, Valley of the Dead, under a tent', '', 4005, 1194, 759), + ('One Who Is Full Of Compassion', 'Lower Scheol', NULL, 4881, 1359, 1917), + ('One Who Is Invited Last', '', '', 4005, 2483, 1187), + ('One Who Learns The Past', 'Inferno, just north of the portal to Penumbra', NULL, 4005, 906, 182), + ('One Who Talks With The Past', 'Inferno, in the Valley of the Dead, under a tent', NULL, 4005, 1194, 759), + ('One Whose Words Happen To Rhyme', 'Inferno, just north of the portal to Penumbra', NULL, 4005, 906, 182), + ('Operator Bhotaar-Bhotaar Roch', 'The Garden of Roch', NULL, 4683, 320, 341), + ('Oscar', 'Greater Omni Forest', NULL, 717, 0, 0), + ('Ossuz', 'Elysium, inside mountains SW and NW', NULL, 0, 0, 0), + ('Outpost 10-3', 'Southern Artery Valley, with whompas to Galway Castle, 2HO, and 20K', + 'Outpost 10 3 Outpost 103', 610, 1150, 2340), + ('Ownz', 'Tir County, Crownhead Forrest', NULL, 646, 2200, 700), + ('Pained Predator', 'Elysium, South of Remnans', NULL, 0, 0, 0), + ('Patricia Johnson', 'Ace Camp, Eastern Fouls Plain', NULL, 620, 720, 1380), + ('Paxos', 'Inferno', '', 4605, 3143, 3168), + ('Peacekeeper Constad 1', '', 'dustbrigade db', 655, 3277, 922), + ('Peacekeeper Constad 2', 'ICC', 'dustbrigade db', 655, 920, 655), + ('Pendpod Trapper', 'Pleasant Meadows (within a fairly large area of)', 'Bronto', 630, 890, 1689), + ('Penelopez Magistrale', 'Newland Desert. Multi-grip Soles AI Quest Social Clothing', + 'AI Quest Social Clothing Combined Armor Multi-grip Soles', 565, 790, 2310), + ('Peristaltic Abomination', 'Adonis, Abyss East & West', NULL, 4873, 0, 0), + ('Peristaltic Aversion', 'Adonis, Abyss East & West', NULL, 4873, 0, 0), + ('Perpetual Wastelands', + 'in the northeast part of the world. It has no grid access point and no whompa. To the west is Mort and there are currently no zones available to the east, north or south.', + 'Perpetual Wasetlands Perpetual Waste Lands', 570, 0, 0), + ('Peter Lee', 'Ace Camp, Eastern Fouls Plain', NULL, 620, 720, 1380), + ('Phatmos', 'Inferno, West of Razors Lair', NULL, 4605, 1516, 2807), + ('Pietro Molla', 'Aegean', 'Quest Wedding Ring Omni-Tek Trash Can', 585, 535, 345), + ('Pisces', 'Pandemonium, Middle Node', NULL, 0, 0, 0), + ('Pit Demon', 'Crypt of Home, Broken Shores', NULL, 0, 0, 0), + ('Pleasant Meadows', + 'in the southeast part of the world. It has a ferry grid to Harry''s at 360x1568, grid ferry to Omni Outpost in Lush Fields at 360 x 1565. Whompas at 1261 x 2300 to Outpost 10-3, OmniEntertainment, and 4HOles . North is Milky Way, south is Omni Forest, east is Eastern Foul Plains, west is Lush Fields.', + '20k Pleasant Fields Pleasent Meadows Pleasant Meadow Pleasent Meadow', 630, 1261, 2300), + ('Polly', 'Omni Forest, Swamp River Delta and Northern Drylands', NULL, 716, 450, 1280), + ('Polymorphed Lunatic', 'Drill Island, Deep Artery Valley', NULL, 595, 1103, 722), + ('Powa', 'Greater Tir County', NULL, 647, 800, 2400), + ('Prime Evolution Huzzum', 'The Reck; Mutant Village', NULL, 750, 1152, 2344), + ('Primus Outlaw', 'Primus Camp, Eastern Fouls Plain', NULL, 620, 0, 0), + ('Primus Scrap Pillager', 'Primus Camp, Eastern Fouls Plain', NULL, 620, 0, 0), + ('Professor Van Horn', 'Newland Desert', NULL, 565, 2900, 1600), + ('Prototype Inferno', 'Cyborg Barracks, Greater Tir County', NULL, 647, 3232, 2340), + ('Punctilious Hiathlin', 'Inferno, 255 Incarnator', 'Punctlious', 4605, 3332, 2968), + ('Pursued Spirit', 'Inferno', '', 4005, 722, 1063), + ('Putrid Eremite', 'Inferno, 225 Incarnator', NULL, 4605, 3434, 1889), + ('Pyiininnik''s Shadow', '', '', 4605, 3240, 1689), + ('Pyiininnik', 'Inferno', '', 4605, 3325, 1684), + ('Qi Qiao Jie', 'Borealis. He sells valentines items.', NULL, 800, 720, 675), + ('Quintus Romulus', 'Foremans Office', NULL, 0, 0, 0), + ('R-2000 Vermin Disposal Unit', 'Greater Tir County, Brainy Ant Woods', + 'R 2000 Vermin Disposal Unit R2000 Vermin Disposal Unit', 647, 800, 1800), + ('Ramon Bauer', 'Old Athen', + 'Bazzit''s Alien Library Linked Hacker Tool Vanguard Node Access Card Kyr''Ozch Structural Analyzer', 540, 500, + 565), + ('Razor the Battletoad', 'Inferno, Razor''s Lair', '', 4605, 1953, 2609), + ('Red', 'Aegean', NULL, 585, 650, 1450), + ('Redeemed Temple Inferno', '', '', 4605, 2320, 3242), + ('Reet Retreat', 'Stret West Bank, Last Ditch. A club.', 'Leet Retreat Reet Retrat', 790, 1206, 2807), + ('Rhino Cockpit', + 'Newland Desert. You can get there by going NE from Newland City, zone and continue NE once in Newland Desert. Rhino Cockpit has become a pretty popular site for L 25-35 groups', + 'Rhino Pit', 565, 3140, 1920), + ('Rhompa Bar', 'Omni-Ent', 'Rhompa Club', 705, 714, 698), + ('Richelieu', 'Southern Artery Valley', NULL, 610, 1850, 2550), + ('Ris Lee', 'Ace Camp, Eastern Fouls Plain', NULL, 620, 720, 1380), + ('Rising Sun', 'Aegean, south of Wartorn Valley', 'Risingsun', 585, 0, 0), + ('Robin Raag', 'Smuggler''s Den, behind Ash at 21 x 217', NULL, 123, 1749, 869), + ('Rome Blue', + 'in the southwest part of the world. Out the west gates is Rome Red where the whompas are. Out the east gate is Galway Shire.', + 'Omni Blue', 735, 647, 315), + ('Rome Green', + 'in the southwest part of the world. Out the east gate is Rome Red where the whompas are. From SL there is a portal that is located very near some shops.', + 'Romegreen', 740, 0, 0), + ('Rome Red Grid', '', 'rrg', 730, 251, 318), + ('Rome Red', + 'in the southwest part of the world. It has a grid access point at 251 x 318. Whompas at 350x315 to Omni Entertainment, Galway Castle, and Broken Shores. Rome Blue is to the east and Rome Green is to the west.', + NULL, 730, 309, 314), + ('Ron McBain', 'Stret East Bank, at the 2HO Outpost', NULL, 635, 750, 1700), + ('Rotting Eremite', 'Inferno, 225 Incarnator', NULL, 4605, 3369, 1898), + ('Sabulum', 'Perpetual Wastelands. It is a neutral town.', NULL, 570, 1050, 2400), + ('Sadistic Soul Dredge', 'Elysium, E Whispervale and 115 Inc', NULL, 0, 0, 0), + ('Sagittarius', 'Pandemonium, North Node', NULL, 0, 0, 0), + ('Salahpt', 'Inferno, South of Frontier', NULL, 4605, 2140, 2644), + ('Sally Tall', 'Meetmedere, in a small pocket of 75% gas', NULL, 565, 1480, 2760), + ('Sam Chin', + 'Tir County, located in Inquisitive Wasp, southeast of Tir City. Deliver the supply crate from Genghis Pan.', + NULL, 646, 2725, 620), + ('Sanatsimk', 'Inferno', '', 4605, 3071, 1503), + ('SANDSTORM Control Tower', 'The Reck; Ruins (South of The Dam)', NULL, 750, 1117, 1126), + ('Scalding Weaver', + 'in Sorrow Pass (the chasm near sorrow), this has a very large spawn area so look all around for them as well including outside the pass', + NULL, 4005, 1450, 1425), + ('Scary Spider', 'Inferno, SE of 255 Incarnator', '', 4605, 3494, 2772), + ('Scientist Maud Stevens', 'Borealis, up by the Radar Dish', 'AI Quest Social Clothing combined armor', 800, 360, + 405), + ('Scorpio', 'Pandemonium, North Node', NULL, 0, 0, 0), + ('Scratching Soul Dredge', 'Adonis, NE', NULL, 4872, 2666, 2562), + ('Screeching Imp', 'Elysium, Near Ergo', NULL, 0, 0, 0), + ('Scrupulous Hiathlin', 'Inferno, 255 Incarnator', '', 4605, 3386, 3127), + ('Second Brood Champion', 'Hollow Island', NULL, 605, 0, 0), + ('Sentinel Commander Higgins', 'Tir City', NULL, 640, 500, 500), + ('Seventh Brood Champion', 'Hollow Island', NULL, 605, 0, 0), + ('Shy Eremite', 'Inferno, South-East of Sorrow (straight south of Anansi Devotee''s) around', NULL, 4605, 1650, + 1150), + ('Silent Spider', 'Inferno', '', 4605, 3208, 3529), + ('Simon Stark', 'Newland Desert', 'AI Quest Social Clothing Antiseptic Protector Combined Armor', 565, 1155, + 1747), + ('Sinful Soul Dredge', 'Adonis, 1581 x 595 S and 1741 x 2198 N', NULL, 4872, 1581, 595), + ('Sipius Aban Lux-Wel', 'Garden of Aban, Nascense.', 'Quest Clan Garden Key Alban Redeemed', 4676, 465, 495), + ('Sirocco', 'Old Athen', NULL, 540, 210, 215), + ('Sixth Brood Champion', 'Hollow Island', NULL, 605, 0, 0), + ('Skulking Dryad', 'Adonis, NW', NULL, 4872, 1113, 2639), + ('Skylight', 'Adonis, Abyss N', NULL, 4873, 1600, 2075), + ('Slinking Dryad', 'Adonis, West and NW Island', NULL, 4872, 0, 0), + ('Smokey Willy', 'Omni-Ent, in the north western corner of sewers', NULL, 705, 472, 1043), + ('Smoky Salamander', 'Is One Of Many Spots In Burning Marshes', NULL, 4005, 1650, 1260), + ('Smoldering Shadow', + 'near the petrified hecklers near Sorrow, around 1081, 1160 and can also be find north of there around 759 x 1436', + NULL, 4005, 1081, 1160), + ('Smuggler''s Den', 'in the southeast corner of the world, in Southern Fouls Hills at 1755 x 872.', + 'Smuggler Den', 615, 1755, 872), + ('Snaking Dryad', 'Adonis, NW', NULL, 4872, 868, 2503), + ('Snatching Soul Dredge', 'Adonis, Dead Ends Ark', NULL, 4872, 0, 0), + ('Somphos Argeele', 'North West of Dark Marshes and spawns around a large rock', NULL, 4005, 1770, 900), + ('Somphos Argef', 'North West of Dark Marshes and spawns around a large rock', NULL, 4005, 1770, 900), + ('Somphos Sorlivet', + 'North West of Dark Marshes and spawns around a large rock (Spawns on the East Side of the rock)', NULL, 4005, + 1770, 900), + ('South Fouls Hills', + 'in the southeast corner of the world. No grid and no whompa.North of S.Fouls Hills is Eastern Foul Plains, west is Omni Forest, northwest is Pleasant Meadows. No zones avail to south or east.', + NULL, 615, 0, 0), + ('Southern Artery Valley', + 'in the mideastern part of the world. No grid access. Whompas to Galway Castle, 2HO, and 20K at 1150 x 2340. North of S.Artery Valley is Central Artery Valley, south is Milky Way (but a force field will not allow you to zone south), west is Stret East Bank and east is (ne) Deep Artery Valley (se) Belial Forest.', + NULL, 610, 1150, 2340), + ('Special Agent Lamb', 'Deep Artery Valley', NULL, 0, 0, 0), + ('Spetses', 'Inferno, 255 Incarnator', NULL, 4605, 3261, 3163), + ('Spirit Of Disruption', 'Inferno, among the ruins just north of the portal to Penumbra', NULL, 4605, 1015, 205), + ('Splintered Girder', 'Elysium, West wall of Central Ely', NULL, 0, 0, 0), + ('Stanley Adams', 'Varmint Woods', NULL, 600, 3850, 1900), + ('Stark', 'Adonis, Abyss N', NULL, 4873, 1701, 2321), + ('Stealing Dryad', 'Adonis, NW', NULL, 4872, 920, 2437), + ('Steele Filar', 'Inferno, NE of Frontier', NULL, 4605, 2736, 2936), + ('Stephen Richards', '', '', 4005, 2483, 1187), + ('Steps Of Madness', + 'in the southeast part of the world, in Omni Forest at 800 x 2800. Leave Omni Ent by the east gate to reach the dungeon. Recommended for teams of lvl 35-45.', + 'Step Of Madness Madness Dungeon', 716, 800, 2800), + ('Stolt Jensenberg', 'At Stolt''s Trading Outpost near the Whom-pahs in Newland Desert', 'Jens Stoltenberg', 565, + 2172, 1550), + ('Stoltz Outpost', 'just across the Newland Desert zone line in Newland. It has food machines only.', NULL, 565, + 2172, 1543), + ('Stret East Bank', + 'in the mid-west part of the world. Grid access in 2HO at 667 x 1638, whompas at 783 x 1599 to Outpost 10-3 and 4 Holes. Ferry to 4 HOles at 820 x 1977. To the north of Stret East Bank is Upper Stret East Bank, to the northwest is Stret West Bank, to the northeast is Central Artery Valley, to the southwest is Andromeda, to the southeast is Milky Way, to the east is Southern Artery Valley and to the west is 4 Holes.', + 'Stret Eastbank', 635, 783, 1599), + ('Stret West Bank', + 'in the west central part of the world. It has a ferry to Stret East Bank at 1141 x 529 and whompa at 1279 x 2894 (in Last Ditch) to Borealis and to Hope. North is Aegean(ne) and Athen Shire(nw), south is 4HOles, east is Upper Stret East Bank, west is Borealis.', + 'Stret Westbank', 790, 1279, 2894), + ('Strike Foreman', 'Condemned Subway, usually on the bridge', NULL, 0, 0, 0), + ('Striking Ant Tir Outpost', 'Tir County. The outpost has mission terms, shops, banks and insure terms.', NULL, + 646, 1915, 1492), + ('Stumpy', 'Greater Omni Forest', NULL, 717, 2000, 1300), + ('Subway', 'ICC', NULL, 655, 3303, 838), + ('Suir-Katan, The Custodian', '', '', 4605, 2500, 2527), + ('Supply Master Eel', 'Avalon, Secondary Base', 'Supplymaster Eel', 505, 900, 1600), + ('Supply Master Smug', 'Wailing Wastes, NE corner', 'Supplymaster Smug', 551, 2700, 3500), + ('Susan Furor', 'at Poole/Galway County at AGT only', NULL, 685, 1219, 1940), + ('Swirling Eremite', 'Elysium, Sand dunes near Cold Rock', NULL, 0, 0, 0), + ('Syros', 'Inferno', '', 4605, 3208, 2975), + ('T.I.M.', 'Foremans, The Longest Road', NULL, 795, 2000, 800), + ('Tarasque', 'Avalon Dungeon, Avalon', NULL, 505, 2092, 3822), + ('Taurus', 'Pandemonium, Middle Node', NULL, 0, 0, 0), + ('Tdecin', 'Elysium, inside mountains SW and NW', NULL, 0, 0, 0), + ('Tearing Soul Dredge', 'Adonis, NE', NULL, 4872, 2763, 2638), + ('Techleader Praetor', 'Cyborg Barracks, Greater Tir County', NULL, 647, 3232, 2340), + ('Technologist Frank Jobin', 'Lower Scheol', NULL, 4881, 1066, 1813), + ('Temple Of The Three Winds', + 'Greater Tir County, out the Tir west gate and go north. There is a shortcut teleportal in the SE part of Rome Green near 420 x 240 (behind some red boxes). You must be L 60 or below to enter.', + 'Totw', 647, 420, 240), + ('Tenth Brood Champion', 'Hollow Island', NULL, 605, 0, 0), + ('The Beast', 'Pandemonium', NULL, 0, 0, 0), + ('The Broken Falls', 'Broken Shores', NULL, 665, 1450, 3100), + ('The Brood Mother', 'Hollow Island', NULL, 605, 0, 0), + ('The Carbon Crystal', 'Southern Artery Valley', NULL, 610, 2600, 2900), + ('The Collector', '', '', 4328, 142, 23), + ('The Cup', + 'West Athens, directly beside the grid access. A quiet little club, the Red Tigers hold their weekly meeting there every Sunday at 20:00 GMT.', + 'thecup', 545, 452, 415), + ('The Curator', 'Temple Of The Three Winds, Greater Tir County', NULL, 647, 0, 0), + ('The Enigma House', 'Central Artery Valley', NULL, 590, 1900, 1400), + ('The Eremite Statue', 'Deep Artery Valley', NULL, 595, 1300, 2300), + ('The Essence Of Primal Understanding', 'Inferno, Burning Marshes', NULL, 4005, 1975, 1115), + ('The Fixer Grid', + 'accessable from any grid post. You must first complete the Fixer quest, or get a L100+ fixer to help you get inside.', + NULL, 4107, 0, 0), + ('The Fixer Shop', + 'Borealis. It looks like a pile of junk and you need 180 B&E to use it as well as being a fixer :)', + 'Fixershop', 800, 440, 400), + ('The Forestwatch Trees', 'Southern Fouls Hills', NULL, 615, 1650, 1650), + ('The Happy Rebel', 'Tir City', NULL, 640, 550, 550), + ('The Hollow Island Suzerain', 'Hollow Island', NULL, 605, 0, 0), + ('The Iron Reet', 'Mutant Domain', NULL, 696, 857, 986), + ('The Longest Road', + 'in the northwest part of the world. No grid access, has woompa access to Avalon, Athen Old, and Broken Shores at 3700 x 1615 in the town of Bliss. Athen Shire is to the east. No zones to the north, south, or west. There is a neutral outpost at 3650 x 560 with an ICC scanner and more. Biomare (dungeon) is located at 1930 x 775', + 'Logest Road lLngest Raod', 795, 0, 0), + ('The Nightheart', 'Pandemonium', NULL, 0, 0, 0), + ('The Obediency Enforcer', 'Eastern Fouls Plain, at the lake', 'Obediency Inspector OE', 620, 1225, 2800), + ('The One (Babyface)', 'Southern Fouls Hills', NULL, 615, 2250, 1810), + ('The One Who Sees Dead People', '', '', 4005, 1176, 672), + ('The Outzone (AKA APF)', + 'is a raid zone for L180+ characters. To enter the Outzone, board the Unicorn Transport Shuttle found in Andromeda outside the ICC. Or use a Decrypted Kyr''Ozch Data Core when you''re near the ICC or Unicorn Shuttle Boarding Zone.', + 'Apf Icc', 655, 3440, 1300), + ('The Pest', 'Deep Artery Valley', NULL, 595, 1360, 2300), + ('The Re-animator', 'Temple Of The Three Winds, Greater Tir County', NULL, 647, 0, 0), + ('The Retainer Of Ergo', '', '', 4605, 2807, 3377), + ('The Satellite Dish', 'Borealis', NULL, 800, 350, 350), + ('The Trash King', 'Athen Shire', 'Trash King TK', 550, 1600, 940), + ('Third Brood Champion', 'Hollow Island', NULL, 605, 0, 0), + ('Tinos', 'Inferno, West of Razors Lair', NULL, 4605, 1605, 2503), + ('Tiny', 'Adonis, Abyss', NULL, 4873, 1691, 1504), + ('Tir County', + 'in the northeast part of the world. Grid access and whompa in Tir City. To the north is Greater Tir County, south is Deep Artery Valley (but a force field blocks you from zoning south), west is Varmint Woods, southeast is Central Artery Valley, no zones avail to east.', + NULL, 646, 0, 0), + ('Tir', + 'located in the north east part of the world. It has a grid access point at 555 x 527 and a whompas at 475 x 466 to Varmint Woods, ICC, and Athen. To the north, south, east and west of Tir is Tir County.', + NULL, 640, 555, 527), + ('Tiunissik''s Shadow', 'Inferno', '', 4005, 1597, 2051), + ('Tiunissik', 'Inferno, North of Sorrow', NULL, 4005, 1600, 1852), + ('Torrid Spirit', 'Inferno, North of Sorrow', NULL, 4005, 1475, 2143), + ('Torrith The Ancient', 'Greater Tir County', NULL, 647, 400, 2200), + ('Trap', 'Adonis, Abyss', NULL, 4873, 1718, 1460), + ('Trash King Lackey', 'Athens Shire', 'Trashkinglackey', 550, 1600, 940), + ('Trash King', 'Athen Shire, Junkyard outside West Athen', NULL, 550, 1600, 1000), + ('Tri Plumbo', 'The Longest Road, The Foremans Office', 'Triplumbo', 795, 1940, 775), + ('Tribo Ratcatcher', 'West Athens', 'catcher rat ratcatcher tribo', 545, 325, 362), + ('Trip', 'Adonis, Abyss', NULL, 4873, 1766, 1489), + ('Trup', 'Adonis, Abyss', NULL, 4873, 1729, 1535), + ('Tsunayoshi Smith', 'Southern Artery Valley, near the Largest Soul Fragment.', 'Melee Shop', 610, 2600, 2900), + ('Tuq''usk', 'Inferno, South of Frontier', 'Tuqusk', 4605, 2283, 2069), + ('Turk', 'Adonis, Abyss N', NULL, 4873, 1755, 2184), + ('Twin Altars', 'Broken Shores', NULL, 665, 400, 2250), + ('Tyro Beasthandler', 'Inferno, 255 Incarnator', NULL, 4605, 3366, 3049), + ('Uklesh The Frozen', 'Temple Of The Three Winds, Greater Tir County', NULL, 647, 0, 0), + ('Uncle Bazzit', 'Newland Desert, in his workshop (Meetmedere grid exit)', 'AI Quest Social Clothing', 565, 1545, + 2725), + ('Unicorn Landing Beacon', 'Andromoda, Nepal, north of ICC HQ', NULL, 655, 3440, 1308), + ('Unredeemed Temple Inferno', 'Inferno', '', 4605, 3724, 3414), + ('Upper Stret East Bank', + 'in the central part of the world. No grid access or whompa. To the north (w) of Upper Stret East Bank is Aegean and north (e) Varmint Woods, to the east is Central Artery Valley, to the west is Stret West Bank, southeast is 4Holes, south is Stret East Bank, se is S.Artery Valley.', + 'Upper East Stret Bank Upperstreteastbank Upper Stret Eastbank', 650, 0, 0), + ('Ushamaham', 'Inferno, South of Frontier', '', 4605, 2069, 2219), + ('Ushap''ing', 'Inferno', '', 4605, 3509, 1417), + ('Varmint Woods', + 'in the southeast part of the world. No grid but there are woompa''s to Tir, Wine, and Wailing Wastes at 2484 x 2106. To the north of Varmnit Woods is Newland Desert, to the south is Central Artery Valley and Stret East bank, east is Greater Tir County, west is Aegean', + 'Vermint Woods Varmint Wood Varmintwoods', 600, 2484, 2106), + ('Vergil Aeneid', 'Condemned Subway', NULL, 0, 0, 0), + ('Victor Nonya', 'Inferno, near Oasis. Spirits quest boss.', '', 4605, 2138, 1878), + ('Vile Spirit', 'Adonis, 1541 x 500 S and 1751 x 2244 N', NULL, 4872, 0, 0), + ('Virgo', 'Pandemonium, West Node', NULL, 0, 0, 0), + ('Wailing Wastes', + 'in the northwest part of the world. No grid access, but has whompas at 1370 x 1735 to Athens, Avalon, and Varmit Woods. To the north is Avalon, to the south is Athen Shire, no zones to east and west. Clan OP with scanner at 2430 x 3380', + 'WW Waleing Wastes Waling Waste Wailingwastes', 551, 1370, 1735), + ('Waning Soul', 'Elysium, E Whispervale and 115 Inc', NULL, 0, 0, 0), + ('Warchief Skawt', 'The Reck; Mutant Hideout', NULL, 750, 1861, 968), + ('Wardog', 'The Reck; Ruins(East of the Dam)', NULL, 750, 1785, 1725), + ('Wartorn Valley', + 'in the northeast part of the world. No grid or whompa. To the north, east and west of Wartorn Valley is Aegean, to the south is gate to Athen Old.', + 'Warton Valley Wartornvalley', 586, 0, 0), + ('Waywaqa', 'Inferno', '', 4605, 3275, 1454), + ('Weakened Chimera', 'Inferno, East of the Portal to Pen, around the +10 ring dungeon', NULL, 4005, 1090, 400), + ('Wicked Soul Dredge', 'Adonis, NE', NULL, 4872, 1530, 547), + ('Will To Fight', 'Stret West Bank, east of Reet Retreet. You must be L75 or above to enter.', 'Pvp Dungeon', + 790, 2245, 3124), + ('Windcaller Karrec', 'ICC (S in a shipping container)', 'TOTW Temple Of The Three Winds', 655, 3212, 789), + ('Windcaller Yatilla', 'Temple Of The Three Winds, Greater Tir County', NULL, 647, 0, 0), + ('Wine', + 'Belial Forest (east side of the world) with whompas to Broken Shores and Varmint Woods at 2150 x 2319. A clan town.', + NULL, 605, 2150, 2319), + ('Wounded Predator', 'Elysium, South of Remnans', NULL, 0, 0, 0), + ('Xark the Battletoad', 'Inferno, Xarks Lair, NE of Yuttos', '', 4605, 2931, 2030), + ('Zias', 'Elysium, inside mountains SW and NW', NULL, 0, 0, 0), + ('Zibell The Wanderer', 'Central Artery Valley', NULL, 590, 3432, 2649), + ('Zodiac', 'Pandemonium Caina, NE of the garden statues. Portal boss for entering pandemonium', '', 4328, 190, + 85), + ('Zoftig Blimp', 'Mort, City of Hope', NULL, 560, 0, 0), + ('Zyvania Bagh', 'ICC', 'steps of madness som', 655, 3158, 900), + ('Abmouth Indomitus', 'Coast of Peace', NULL, 556, 3150, 1550), + ('Atma', 'Upper Stret East Bank', NULL, 650, 1900, 3000), + ('Cerubin The Reborn', 'Avalon', NULL, 505, 2100, 280), + ('T.A.M.', 'The Longest Road', NULL, 795, 1130, 1530), + ('Zaal The Immortal', 'Southern Artery Vallay', NULL, 610, 1730, 1200); \ No newline at end of file diff --git a/modules/standard/datanet/relay_controller.py b/modules/standard/datanet/relay_controller.py new file mode 100644 index 0000000..e51b8d9 --- /dev/null +++ b/modules/standard/datanet/relay_controller.py @@ -0,0 +1,245 @@ +import base64 +import json +import threading + +from cryptography.fernet import Fernet +from cryptography.hazmat.primitives import hashes +from cryptography.hazmat.primitives.kdf.pbkdf2 import PBKDF2HMAC + +from core.decorators import instance, timerevent +from core.dict_object import DictObject +from core.logger import Logger +from core.setting_service import SettingService +from core.setting_types import ColorSettingType, TextSettingType, HiddenSettingType, BooleanSettingType +from modules.standard.datanet.ws_worker import WebsocketRelayWorker + + +@instance() +class RelayController: + MESSAGE_SOURCE = "websocket_relay" + + def __init__(self): + self.dthread = None + self.queue = [] + self.logger = Logger(__name__) + self.worker = None + self.encrypter = None + + def inject(self, registry): + self.bot = registry.get_instance("bot") + self.db = registry.get_instance("db") + self.util = registry.get_instance("util") + self.setting_service: SettingService = registry.get_instance("setting_service") + self.event_service = registry.get_instance("event_service") + self.character_service = registry.get_instance("character_service") + self.pork_service = registry.get_instance("pork_service") + self.online_controller = registry.get_instance("online_controller") + self.public_channel_service = registry.get_instance("public_channel_service") + self.message_hub_service = registry.get_instance("message_hub_service") + + def pre_start(self): + self.message_hub_service.register_message_source(self.MESSAGE_SOURCE) + + def start(self): + self.message_hub_service.register_message_destination(self.MESSAGE_SOURCE, + self.handle_message_from_hub, + ["private_channel", "org_channel", + "discord", "tell_relay"], + [self.MESSAGE_SOURCE]) + + self.setting_service.register_new(self.module_name, "websocket_relay_enabled", False, BooleanSettingType(), + "Enable the websocket relay") + self.setting_service.register_new(self.module_name, "websocket_relay_server_address", + "ws://localhost/subscribe/relay", + TextSettingType(["ws://localhost/subscribe/relay"]), + "The address of the websocket relay server", + "All bots on the relay must connect to the same server and channel. " + "If using the public relay server, use a unique channel name.") + self.setting_service.register_new(self.module_name, "websocket_relay_channel_color", "#FFFF00", + ColorSettingType(), "Color of the channel in websocket relay messages") + self.setting_service.register_new(self.module_name, "websocket_relay_message_color", "#FCA712", + ColorSettingType(), + "Color of the message content in websocket relay messages") + self.setting_service.register_new(self.module_name, "websocket_relay_sender_color", "#00DE42", + ColorSettingType(), "Color of the sender in websocket relay messages") + self.setting_service.register_new(self.module_name, "websocket_encryption_key", "", + HiddenSettingType(allow_empty=True), + "An encryption key used to encrypt messages over a public websocket relay") + self.setting_service.register_new(self.module_name, "ws_relay_prefix", "", TextSettingType(allow_empty=True), + "Name of this relay (if you don't want to use org or bot name)") + self.setting_service.register_new(self.module_name, "ws_msg_relay_prefix", "||", + TextSettingType(["!", "#", "*", "@", "$", "+", "-"]), + "Prefix for Messages which should get relayed") + self.setting_service.register_new(self.module_name, "ws_relay_type", "with_symbol", + TextSettingType(["with_symbol", "unless_symbol", "always"]), + "Relay Messages", ) + self.initialize_encrypter(self.setting_service.get("websocket_encryption_key").get_value()) + + self.setting_service.register_change_listener("websocket_relay_enabled", self.websocket_relay_update) + self.setting_service.register_change_listener("websocket_relay_server_address", self.websocket_relay_update) + self.setting_service.register_change_listener("websocket_encryption_key", self.websocket_relay_update) + + def get_org_channel_prefix(self): + return self.setting_service.get_value( + "ws_relay_prefix") or self.public_channel_service.get_org_name() or self.bot.get_char_name() + + def initialize_encrypter(self, password): + if password: + # using hard-coded salt is less secure as it nullifies the + # function of the salt and allows for rainbow attacks + salt = b"tyrbot" + kdf = PBKDF2HMAC( + algorithm=hashes.SHA256(), + length=32, + salt=salt, + iterations=10000, ) + key = base64.urlsafe_b64encode(kdf.derive(password.encode("utf-8"))) + self.encrypter = Fernet(key) + else: + self.encrypter = None + + @timerevent(budatime="1s", description="Relay messages from Text relay to the internal message hub", is_hidden=True, + is_enabled=False) + def handle_queue_event(self, _, _1): + while self.queue: + obj = self.queue.pop(0) + if obj.type == "message": + payload = obj.payload + self.process_relay_message(obj.client_id, payload) + elif obj.type == "ping": + return_obj = json.dumps({"type": "ping", "payload": obj.payload}) + self.worker.send_message(return_obj) + + @timerevent(budatime="1m", description="Ensure the bot is connected to Text relay", is_hidden=True, + is_enabled=False, run_at_startup=True) + def handle_connect_event(self, _, _1): + if not self.worker or not self.dthread.is_alive(): + self.connect() + + def process_relay_message(self, _, message): + if self.encrypter: + message = self.encrypter.decrypt(message.encode('utf-8')) + obj = DictObject(json.loads(message)) + + if obj.type == "message": + channel = self.get_channel_name(obj.source) + + message = "" + message += "[%s] " % self.setting_service.get("websocket_relay_channel_color").format_text(channel) + if obj.user: + message += "%s: " % self.setting_service.get("websocket_relay_sender_color").format_text(obj.user.name) + message += self.setting_service.get("websocket_relay_message_color").format_text(obj.message) + + self.message_hub_service.send_message(self.MESSAGE_SOURCE, obj.get("user", None), obj.message, message) + + def send_relay_event(self, char_id, event_type, source): + char_name = self.character_service.resolve_char_to_name(char_id) + obj = {"user": {"id": char_id, + "name": char_name}, + "type": event_type, + "source": self.create_source_obj(source)} + self.send_relay_message(obj) + + def send_relay_message(self, message): + if self.worker: + message = json.dumps(message) + if self.encrypter: + message = self.encrypter.encrypt(message.encode('utf-8')).decode('utf-8') + obj = json.dumps({"type": "message", "payload": message}) + self.worker.send_message(obj) + + def handle_message_from_hub(self, ctx): + if not ctx.sender: + return + if self.worker: + method = self.setting_service.get_value("ws_relay_type") + symbol = self.setting_service.get_value("ws_msg_relay_prefix") + plain_msg = ctx.message or ctx.formatted_message + if method == "unless_symbol" and len(plain_msg) > len(symbol) and plain_msg[:len(symbol)] == symbol: + return + elif method == "with_symbol": + if len(plain_msg) < len(symbol) or plain_msg[:len(symbol)] != symbol: + return + else: + plain_msg = plain_msg[len(symbol):] + elif method == "always": + trim = len(ctx.formatted_message) - len(plain_msg) + if not ctx.sender and ctx.message != ctx.formatted_message[trim:]: + return + + obj = {"user": self.create_user_obj(ctx.sender), "message": plain_msg.strip(), + "type": "message", + "source": self.create_source_obj(ctx.source)} + self.send_relay_message(obj) + + def connect(self): + + self.worker = WebsocketRelayWorker(self.queue, + self.setting_service.get("websocket_relay_server_address").get_value(), True) + self.dthread = threading.Thread(target=self.worker.run, daemon=True) + self.dthread.start() + + if self.worker: + self.worker.close() + self.worker = None + self.dthread.join() + self.dthread = None + + def websocket_relay_update(self, setting_name, _, new_value): + if setting_name == "websocket_relay_enabled": + event_handlers = [self.handle_connect_event, self.handle_queue_event] + for handler in event_handlers: + event_handler = self.util.get_handler_name(handler) + event_base_type, event_sub_type = self.event_service.get_event_type_parts(handler.event.event_type) + self.event_service.update_event_status(event_base_type, event_sub_type, event_handler, + 1 if new_value else 0) + + if not new_value: + self.disconnect() + elif setting_name == "websocket_relay_server_address": + if self.setting_service.get("websocket_relay_enabled").get_value(): + self.connect() + elif setting_name == "websocket_encryption_key": + self.initialize_encrypter(new_value) + if self.setting_service.get("websocket_relay_enabled").get_value(): + self.connect() + + def get_channel_name(self, source): + channel_name = source.label or source.name + if source.channel: + channel_name += " " + source.channel + return channel_name + + def create_user_obj(self, sender): + if sender: + return { + "id": sender.get("char_id", None), + "name": sender.name + } + else: + return None + + def create_source_obj(self, source): + org_name = self.public_channel_service.get_org_name() or self.get_org_channel_prefix() + if source == "private_channel": + if org_name: + channel = "Guest" + else: + channel = "" + elif org_name and source == "org_channel": + channel = "" + else: + channel = source.capitalize() + + channel_type = source + if source == "private_channel": + channel_type = "priv" + elif source == "org_channel": + channel_type = "org" + return { + "name": org_name or self.bot.get_char_name(), + "label": self.setting_service.get("ws_relay_prefix").get_value() or "", + "channel": channel, + "type": channel_type, + "server": self.bot.dimension + } diff --git a/modules/standard/datanet/ws_controller.py b/modules/standard/datanet/ws_controller.py new file mode 100644 index 0000000..9c71c89 --- /dev/null +++ b/modules/standard/datanet/ws_controller.py @@ -0,0 +1,84 @@ +import json +import threading + +from core.aochat.BaseModule import BaseModule +from core.decorators import instance, timerevent +from core.event_service import EventService +from core.logger import Logger +from core.setting_service import SettingService +from core.setting_types import TextSettingType +from modules.standard.datanet.ws_worker import WebsocketRelayWorker + + +@instance() +class WebsocketRelayController(BaseModule): + WS_RELAY = "ws_relay_internal" + + def __init__(self): + self.dthread = None + self.queue = [] + self.logger = Logger(__name__) + self.worker = None + self.encrypter = None + self.channels = {} + + def inject(self, registry): + self.bot = registry.get_instance("bot") + self.db = registry.get_instance("db") + self.util = registry.get_instance("util") + self.setting_service: SettingService = registry.get_instance("setting_service") + self.event_service: EventService = registry.get_instance("event_service") + self.character_service = registry.get_instance("character_service") + self.pork_service = registry.get_instance("pork_service") + self.online_controller = registry.get_instance("online_controller") + self.public_channel_service = registry.get_instance("public_channel_service") + self.message_hub_service = registry.get_instance("message_hub_service") + + def pre_start(self): + self.event_service.register_event_type(self.WS_RELAY) + self.setting_service.register_new(self.module_name, + 'relay_address', + 'ws://localhost:25500', + TextSettingType([], allow_empty=True), + "relay for timers, tower info, ...") + + @timerevent(budatime="1s", description="Relay messages from Data relay to the internal message hub", + is_hidden=True) + def handle_queue_event(self, _, _1): + while self.queue: + obj = self.queue.pop(0) + self.event_service.fire_event(self.WS_RELAY, obj) + if obj.type == "connected": + self.send_relay_message('join', f"{self.bot.name}") + + @timerevent(budatime="1m", description="Ensure the bot is connected to Data relay", is_hidden=True, + run_at_startup=True) + def handle_connect_event(self, _, _1): + if not self.worker or not self.dthread.is_alive(): + self.connect() + + def send_relay_message(self, msg_type, message): + if self.worker: + message = json.dumps(message) + if self.encrypter: + # noinspection PyArgumentEqualDefault + message = self.encrypter.encrypt(message.encode('utf-8')).decode('utf-8') + obj = json.dumps({"type": msg_type, "payload": message}) + self.worker.send_message(obj) + + def connect(self): + self.disconnect() + self.worker = WebsocketRelayWorker(self.queue, self.setting_service.get_value("relay_address"), False) + self.dthread = threading.Thread(target=self.worker.run, daemon=True) + self.dthread.start() + + def disconnect(self): + for channels in self.channels.values(): + for channel in channels: + self.online_controller.deregister_online_channel(channel) + + if self.worker: + self.worker.close() + self.worker = None + self.dthread.join() + self.dthread = None diff --git a/modules/standard/datanet/ws_worker.py b/modules/standard/datanet/ws_worker.py new file mode 100644 index 0000000..02cb931 --- /dev/null +++ b/modules/standard/datanet/ws_worker.py @@ -0,0 +1,38 @@ +import json + +from websocket import create_connection + +from core.dict_object import DictObject +from core.logger import Logger + + +class WebsocketRelayWorker: + def __init__(self, inbound_queue, url, proxy): + self.logger = Logger(__name__) + self.inbound_queue = inbound_queue + self.url = url + self.ws = None + + def run(self): + try: + self.ws = create_connection(self.url) + self.logger.info(f"Connected to Datanet Relay!") + self.inbound_queue.append(DictObject({"type": "connected"})) + + result = self.ws.recv() + while result: + obj = DictObject(json.loads(result)) + self.inbound_queue.append(obj) + result = self.ws.recv() + + self.ws.close() + except ConnectionRefusedError: + pass + + def send_message(self, message): + if self.ws: + self.ws.send(message) + + def close(self): + if self.ws: + self.ws.close() diff --git a/modules/standard/helpbot/calculator_controller.py b/modules/standard/helpbot/calculator_controller.py new file mode 100644 index 0000000..f6bfb11 --- /dev/null +++ b/modules/standard/helpbot/calculator_controller.py @@ -0,0 +1,43 @@ +import html +import re + +from core.command_param_types import Any +from core.decorators import instance, command + + +@instance() +class CalculatorController: + def __init__(self): + self.allow_chars_regex = re.compile(r"^[0123456789.+\-*%()/ &|^~<>]+$") + + @command(command="calc", + params=[Any("formula")], + access_level="member", + description="Perform a calculation", + extended_description="Supported operators:\n\n" + "+ (addition)\n" + "- (subtraction)\n" + "* (multiplication)\n" + "/ (division)\n" + "% (modulus)\n" + "** (exponent)\n" + "// (floor/integer division)\n" + "< (less than)\n" + "> (greater than)\n" + "() (parenthesis)\n" + "& (binary AND)\n" + "| (binary OR)\n" + "^ (binary exclusive OR)\n" + "~ (binary ones complement)\n" + "<< (binary left shift)\n" + ">> (binary right shift)") + def calc_cmd(self, _, formula): + # this may be problematic if this bot is running on a system with a different locale + formula = html.unescape(formula.replace(",", ".")) + if self.allow_chars_regex.match(formula): + try: + return f"{formula} = {round(eval(formula), 4)}" + except SyntaxError: + return "Error! Invalid formula supplied." + else: + return "Error! Invalid character detected." diff --git a/modules/standard/helpbot/dyna_controller.py b/modules/standard/helpbot/dyna_controller.py new file mode 100644 index 0000000..b8294f3 --- /dev/null +++ b/modules/standard/helpbot/dyna_controller.py @@ -0,0 +1,73 @@ +from core.chat_blob import ChatBlob +from core.command_param_types import Int, Any +from core.db import DB +from core.decorators import instance, command +from core.text import Text + + +@instance() +class DynaController: + def inject(self, registry): + self.db: DB = registry.get_instance("db") + self.text: Text = registry.get_instance("text") + + def pre_start(self): + self.db.load_sql_file(self.module_dir + "/sql/" + "dyna.sql", pre_optimized=True) + self.db.create_view("dynadb") + + @command(command="dyna", params=[], access_level="member", + description="Show a list of dyna mob types") + def dyna_mob_types_command(self, _): + data = self.db.query("SELECT mob, MIN(minQl) AS minQl, MAX(maxQl) AS maxQl " + "FROM dynadb GROUP BY mob ORDER BY mob") + + blob = "" + for row in data: + blob += "%s (%d - %d)\n" % (self.text.make_tellcmd(row.mob, "dyna %s" % row.mob), row.minQl, row.maxQl) + + return ChatBlob("Dyna Mobs (%d)" % len(data), blob) + + @command(command="dyna", params=[Int("level")], access_level="member", + description="Show a list of dyna camps +/- 25 of QL") + def dyna_level_command(self, _, level): + min_level = level - 25 + max_level = level + 25 + + data = self.db.query("SELECT * FROM dynadb d " + "JOIN playfields p ON d.playfield_id = p.id " + "WHERE d.minQl >= ? AND d.maxQl <= ? " + "ORDER BY minQl", [min_level, max_level]) + + blob = f"Results of dyna camps between QL {min_level:d} " \ + f"and {max_level:d}\n\n" + blob += self.format_results(data) + # noinspection HttpUrlsUsage + url = "http://creativestudent.com/ao/files-helpfiles.html" + blob += "Dyna camp information taken from CSP help files: " + self.text.make_chatcmd(url, "/start " + url) + + return ChatBlob("Dyna Camps (%d)" % len(data), blob) + + @command(command="dyna", params=[Any("search")], access_level="member", + description="Search for dyna camps based on playfield or mob type") + def dyna_search_command(self, _, search): + search_param = "%" + search + "%" + data = self.db.query("SELECT * FROM dynadb d JOIN playfields p ON d.playfield_id = p.id " + "WHERE p.long_name LIKE ? OR p.short_name LIKE ? OR d.mob LIKE ? ORDER BY d.minQl", + [search_param, search_param, search_param]) + + blob = f"Results of dyna camps search for {search}\n\n" + blob += self.format_results(data) + # noinspection HttpUrlsUsage + url = "http://creativestudent.com/ao/files-helpfiles.html" + blob += "Dyna camp information taken from CSP help files: " + self.text.make_chatcmd(url, "/start " + url) + + return ChatBlob(f"Dyna Camps ({len(data):d})", blob) + + def format_results(self, data): + blob = "" + for row in data: + coordinates = self.text.make_chatcmd(f"{row.long_name} {row.cX:d}x{row.cY:d}", + f"/waypoint {row.cX:d} {row.cY:d} {row.playfield_id:d}") + blob += "" + coordinates + "\n" + blob += f"{row.mob} - Level {row.minQl:d}-{row.maxQl:d}\n\n" + return blob diff --git a/modules/standard/helpbot/overequipped_controller.py b/modules/standard/helpbot/overequipped_controller.py new file mode 100644 index 0000000..92ddcdb --- /dev/null +++ b/modules/standard/helpbot/overequipped_controller.py @@ -0,0 +1,47 @@ +import math + +from core.chat_blob import ChatBlob +from core.command_param_types import Int +from core.db import DB +from core.decorators import instance, command +from core.dict_object import DictObject +from core.text import Text + + +@instance() +class OverequippedController: + def inject(self, registry): + self.db: DB = registry.get_instance("db") + self.text: Text = registry.get_instance("text") + + @command(command="oe", params=[Int("skill_level")], access_level="member", + description="Show the current time in every timezone") + def oe_command(self, _, skill_level): + oe = self.get_oe_vals(skill_level) + + blob = "With a skill requirement of %s, you will be\n" % skill_level + blob += "Out of OE: %d or higher\n" % oe.oe100low + blob += "75%%: %d to %d\n" % (oe.oe75low, oe.oe100low - 1) + blob += "50%%: %d to %d\n" % (oe.oe50low, oe.oe75low - 1) + blob += "25%%: %d to %d\n" % (oe.oe25low, oe.oe50low - 1) + blob += "0%%: %d or lower\n\n" % (oe.oe25low - 1) + + blob += "With a personal skill of %s, you can use up to\n" % skill_level + blob += "Out of OE: %d or lower\n" % oe.oe100 + blob += "75%%: %d to %d\n" % (oe.oe100 + 1, oe.oe75) + blob += "50%%: %d to %d\n" % (oe.oe75 + 1, oe.oe50) + blob += "25%%: %d to %d\n" % (oe.oe50 + 1, oe.oe25) + blob += "0%%: %d or higher\n" % (oe.oe25 - 1) + + return ChatBlob("%d - %d - %d" % (oe.oe100low, skill_level, oe.oe100), blob) + + def get_oe_vals(self, skill_level): + return DictObject({ + "oe100": int(math.floor(skill_level / 0.8)), + "oe100low": int(math.floor(skill_level * 0.8)), + "oe75": int(math.floor(skill_level / 0.6)), + "oe75low": int(math.floor(skill_level * 0.6)), + "oe50": int(math.floor(skill_level / 0.4)), + "oe50low": int(math.floor(skill_level * 0.4)), + "oe25": int(math.floor(skill_level / 0.2)), + "oe25low": int(math.floor(skill_level * 0.2))}) diff --git a/modules/standard/helpbot/playfield_controller.py b/modules/standard/helpbot/playfield_controller.py new file mode 100644 index 0000000..36c3bc2 --- /dev/null +++ b/modules/standard/helpbot/playfield_controller.py @@ -0,0 +1,91 @@ +from core.chat_blob import ChatBlob +from core.command_param_types import Regex, Int, Any, Const +from core.db import DB +from core.decorators import instance, command +from core.text import Text + + +@instance() +class PlayfieldController: + def inject(self, registry): + self.db: DB = registry.get_instance("db") + self.text: Text = registry.get_instance("text") + self.command_alias_service = registry.get_instance("command_alias_service") + + def pre_start(self): + self.db.load_sql_file(self.module_dir + "/sql/" + "playfields.sql", pre_optimized=True) + self.db.create_view("playfields") + + def start(self): + self.command_alias_service.add_alias("playfields", "playfield") + + @command(command="playfield", params=[Const("all", is_optional=True)], access_level="member", + description="Show a list of playfields") + def playfield_list_command(self, _, const_all): + if const_all: + data = self.db.query("SELECT * FROM playfields ORDER BY long_name") + else: + data = self.db.query("SELECT * FROM playfields WHERE short_name != '' ORDER BY long_name") + + blob = "" + for row in data: + blob += "[%d] %s (%s)\n" % (row.id, row.long_name, row.short_name) + + return ChatBlob("Playfields", blob) + + @command(command="waypoint", + params=[Regex("waypoint_data", r"\s+.*?Pos: ([0-9.]+), ([0-9.]+), ([0-9.]+), Area: ([a-zA-Z ]+).*", + num_groups=4)], + access_level="member", + description="Create a waypoint link from F9 output", + extended_description="Example: waypoint Pos: 123.1, 456.1, 789.1, Area: Perpetual Wastelands") + def waypoint1_command(self, _, regex): + x_coords, y_coords, _, playfield_arg = regex + + return self.create_waypoint_blob(x_coords, y_coords, playfield_arg) + + @command(command="waypoint", + params=[Regex("waypoint_data", r"\s+.*?([0-9.]+) ([0-9.]+) y ([0-9.]+) ([0-9]+).*", + num_groups=4)], + access_level="member", + description="Create a waypoint link from Shift + F9 output", + extended_description="Example: waypoint 123.1 456.1 y 789.1 570") + def waypoint2_command(self, _, regex): + x_coords, y_coords, _, playfield_arg = regex + + return self.create_waypoint_blob(x_coords, y_coords, playfield_arg) + + @command(command="waypoint", + params=[Int("x_coords"), Int("y_coords"), Any("playfield")], + access_level="member", + description="Manually create a waypoint link", + extended_description="Example: !waypoint 123 456 PW") + def waypoint3_command(self, _, x_coords, y_coords, playfield_arg): + return self.create_waypoint_blob(x_coords, y_coords, playfield_arg) + + def create_waypoint_blob(self, x_coords, y_coords, playfield_arg): + x_coords = int(float(x_coords)) + y_coords = int(float(y_coords)) + playfield = self.get_playfield_by_name(playfield_arg) or self.get_playfield_by_id(playfield_arg) + + if not playfield: + return f"Could not find playfield {playfield_arg}." + else: + title = f"waypoint: {x_coords}x{y_coords} {playfield.long_name}" + blob = f"Zone: {playfield.long_name} ({playfield.id})\n" + blob += f"Coords: {x_coords} x {y_coords}\n\n" + waypoint = f'/waypoint {x_coords} {y_coords} {playfield.id:d}' + blob += f"
{self.text.make_chatcmd(self.text.make_image(11336), waypoint)}\n" + blob += self.text.make_chatcmd("Click for waypoint", f"/waypoint {x_coords} {y_coords} {playfield.id:d}") + + return ChatBlob(title, blob) + + def get_playfield_by_name(self, name): + return self.db.query_single("SELECT * FROM playfields " + "WHERE long_name LIKE ? " + "OR short_name LIKE ? " + "LIMIT 1", [name, name]) + + def get_playfield_by_id(self, playfield_id): + return self.db.query_single("SELECT * FROM playfields " + "WHERE id = ?", [playfield_id]) diff --git a/modules/standard/helpbot/random_controller.py b/modules/standard/helpbot/random_controller.py new file mode 100644 index 0000000..548b0be --- /dev/null +++ b/modules/standard/helpbot/random_controller.py @@ -0,0 +1,76 @@ +import random +import time + +from core.command_param_types import Any, Int, Const +from core.db import DB +from core.decorators import instance, command + + +# noinspection SqlInsertValues +@instance() +class RandomController: + def inject(self, registry): + self.db: DB = registry.get_instance("db") + self.util = registry.get_instance("util") + self.character_service = registry.get_instance("character_service") + self.command_alias_service = registry.get_instance("command_alias_service") + + def start(self): + self.db.exec("CREATE TABLE IF NOT EXISTS roll (id INT PRIMARY KEY AUTO_INCREMENT, " + "created_at INT NOT NULL, " + "char_id INT NOT NULL, " + "options VARCHAR(2048), " + "result VARCHAR(255))") + self.db.create_view("roll") + self.command_alias_service.add_alias("verify", "roll verify") + self.command_alias_service.add_alias("lootorder", "random") + + @command(command="random", params=[Any("items")], access_level="all", + description="Randomly order a list of elements", + extended_description="Enter a space-delimited list of items to randomize.") + def random_command(self, _, items): + items = items.split(" ") + random.shuffle(items) + return " ".join(items) + + @command(command="roll", params=[Const("verify"), Int("roll_id")], access_level="all", + description="Verify a roll that happened") + def roll_verify_command(self, _, _1, roll_id): + row = self.db.query_single("SELECT * FROM roll WHERE id = ?", [roll_id]) + if not row: + return "Could not find roll with id %d." % roll_id + else: + time_string = self.util.time_to_readable(int(time.time()) - row.created_at) + name = self.character_service.resolve_char_to_name(row.char_id) + return "%s rolled by %s %s ago. Possible options: %s." % ( + row.result, name, time_string, row.options) + + @command(command="roll", params=[Int("start_value", is_optional=True), Int("end_value")], access_level="all", + description="Roll a number between 1 and a number", + extended_description="The given numbers are included in the roll.") + def roll_number_command(self, request, start_value, end_value): + start_value = start_value or 1 + if start_value > end_value: + end = start_value + start = end_value + else: + start = start_value + end = end_value + result = random.randint(start, end) + options = f"value between {start:d} and {end:d}" + self.db.exec("INSERT INTO roll (created_at, char_id, options, result) VALUES (?, ?, ?, ?)", + [int(time.time()), request.sender.char_id, options, result]) + return f"The roll is {result:d} out of values between {start:d} and {end:d}. " \ + f"To verify do /tell verify {self.db.last_insert_id():d}" + + # Keep this method at the bottom of file otherwise it will precede over all other commands + @command(command="roll", params=[Any("items")], access_level="all", + description="Roll a random value", + extended_description="Enter a space-delimited list of values to roll") + def roll_text_variables_command(self, request, items): + options = items.split(" ") + result = random.choice(options) + self.db.exec("INSERT INTO roll (created_at, char_id, options, result) VALUES (?, ?, ?, ?)", + [int(time.time()), request.sender.char_id, items, result]) + return f"The roll is {result} out of possible options: {items}. " \ + f"To verify do /tell verify {self.db.last_insert_id():d}" diff --git a/modules/standard/helpbot/research_controller.py b/modules/standard/helpbot/research_controller.py new file mode 100644 index 0000000..0acd263 --- /dev/null +++ b/modules/standard/helpbot/research_controller.py @@ -0,0 +1,62 @@ +from core.chat_blob import ChatBlob +from core.command_param_types import Int +from core.db import DB +from core.decorators import instance, command +from core.text import Text + + +@instance() +class ResearchController: + def inject(self, registry): + self.db: DB = registry.get_instance("db") + self.text: Text = registry.get_instance("text") + self.util = registry.get_instance("util") + + def pre_start(self): + self.db.load_sql_file(self.module_dir + "/sql/" + "research.sql", pre_optimized=True) + self.db.create_view("research") + + @command(command="research", params=[Int("research_level")], access_level="member", + description="Show information about a specific research level") + def research_command(self, _, research_level): + if research_level > 10 or research_level < 1: + return "Research level must be between 1 and 10." + + row = self.db.query_single("SELECT * FROM research WHERE level = ?", [research_level]) + + capsk = int(row.sk * 0.1) + + blob = f"You must be level {row.levelcap:d} to research " \ + f"Research Level {research_level:d}.\n" + blob += f"You need {self.util.format_number(row.sk)} SK to reach " \ + f"Research Level {research_level:d} per research line.\n\n" + blob += f"This equals {self.util.format_number(row.sk * 1000)} XP.\n\n" + blob += f"Your research will cap at {self.util.format_number(capsk * 1000)} XP or " \ + f"{self.util.format_number(capsk)} SK." + + return ChatBlob("Research Level %d" % research_level, blob) + + @command(command="research", params=[Int("research_level"), Int("research_level")], access_level="member", + description="Show the amount of SK needed from one research level to another") + def research_span_command(self, _, research_level1, research_level2): + if research_level1 > 10 or research_level1 < 1 or research_level2 > 10 or research_level2 < 1: + return "Research level must be between 1 and 10." + elif research_level1 == research_level2: + return "You must specify different research levels." + + if research_level1 > research_level2: + # swap researches so the lower is research_level1 and higher is research_level2 + research_level1, research_level2 = research_level2, research_level1 + + row = self.db.query_single("SELECT SUM(sk) AS total_sk, MAX(levelcap) AS levelcap FROM research " + "WHERE level > ? AND level <= ?", + [research_level1, research_level2]) + + blob = f"You must be Level {row.levelcap:d} to reach " \ + f"Research Level {research_level2:d}.\n" + blob += f"It takes {self.util.format_number(row.total_sk)} SK to go from " \ + f"Research Level {research_level1:d} to " \ + f"Research Level {research_level2:d} per research line.\n\n" + blob += f"This equals {self.util.format_number(row.total_sk * 1000)} XP." + + return ChatBlob(f"Research Levels {research_level1:d} - {research_level2:d}", blob) diff --git a/modules/standard/helpbot/sql/dyna.sql b/modules/standard/helpbot/sql/dyna.sql new file mode 100644 index 0000000..dcb8ea4 --- /dev/null +++ b/modules/standard/helpbot/sql/dyna.sql @@ -0,0 +1,183 @@ +# noinspection LongLineForFile + +# noinspection LongLineForFile + +DROP TABLE IF EXISTS dynadb; +CREATE TABLE IF NOT EXISTS dynadb +( + playfield_id SMALLINT NOT NULL, + label VARCHAR(200), + mob VARCHAR(200), + minQl SMALLINT NOT NULL, + maxQl SMALLINT NOT NULL, + cX SMALLINT NOT NULL, + cY SMALLINT NOT NULL, + INDEX playfield_id (playfield_id) USING BTREE, + INDEX mob (mob) USING BTREE, + INDEX minQl (minQl) USING BTREE, + INDEX maxql (maxQl) USING BTREE +); +INSERT INTO dynadb +VALUES (585, 'Dynacamp1', 'Rhinomen', 60, 65, 460, 340), + (585, 'Dynacamp3', 'Hounds', 55, 60, 820, 980), + (585, 'Dynacamp4', 'Androids', 55, 60, 380, 2300), + (585, 'Dynacamp5', 'Androids', 50, 55, 860, 2340), + (585, 'Dynacamp6', 'Mechdogs', 45, 50, 1100, 1700), + (585, 'Dynacamp7', 'Androids', 40, 45, 980, 380), + (585, 'Dynacamp8', 'Mantezes', 45, 50, 1260, 700), + (585, 'Dynacamp9', 'Mantezes', 45, 50, 1180, 940), + (585, 'Dynacamp10', 'Anuns', 60, 65, 1380, 1380), + (585, 'Dynacamp11', 'Leets', 30, 35, 1340, 1900), + (585, 'Dynacamp12', 'Fleas', 25, 30, 1420, 2620), + (585, 'Dynacamp13', 'Fleas', 25, 30, 1580, 2780), + (585, 'Dynacamp14', 'Rollerrats', 40, 45, 1860, 2780), + (585, 'Dynacamp15', 'Hounds', 40, 45, 1620, 2060), + (585, 'Dynacamp16', 'Blubbags', 15, 20, 1740, 1940), + (585, 'Dynacamp17', 'Blubbags', 25, 30, 1700, 1700), + (585, 'Dynacamp18', 'Fleas', 25, 30, 2100, 2340), + (585, 'Dynacamp19', 'Hounds', 45, 50, 2140, 980), + (585, 'Dynacamp20', 'Mantezes', 60, 65, 2060, 740), + (716, 'Dynacamp1', 'Igruana', 5, 6, 380, 3180), + (716, 'Dynacamp2', 'Tentacle Mutants', 11, 13, 860, 3260), + (716, 'Dynacamp3', 'Blubbags', 6, 8, 540, 2860), + (716, 'Dynacamp5', 'Malle', 3, 5, 380, 1500), + (716, 'Dynacamp6', 'Biofreaks', 5, 7, 380, 1300), + (716, 'Dynacamp7', 'Fleas', 17, 19, 540, 1020), + (716, 'Dynacamp8', 'Shadowmutants', 8, 10, 300, 1060), + (716, 'Dynacamp9', 'Leets', 7, 8, 380, 820), + (716, 'Dynacamp10', 'Pareets', 11, 13, 300, 620), + (716, 'Dynacamp11', 'Rhinomen', 15, 17, 620, 340), + (716, 'Dynacamp12', 'Aquaans', 12, 14, 540, 660), + (716, 'Dynacamp13', 'Nighthowler', 12, 14, 660, 1340), + (716, 'Dynacamp14', 'Reets', 3, 4, 660, 2540), + (590, 'Dynacamp1', 'Snakes', 130, 135, 380, 420), + (590, 'Dynacamp2', 'Anuns', 115, 120, 420, 1060), + (590, 'Dynacamp3', 'Spiders', 120, 125, 500, 1700), + (590, 'Dynacamp4', 'Spiders', 110, 115, 460, 2380), + (590, 'Dynacamp5', 'Spiders', 105, 110, 860, 2380), + (590, 'Dynacamp6', 'Spiders', 115, 120, 940, 1860), + (590, 'Dynacamp7', 'Enigmas', 140, 145, 940, 1540), + (590, 'Dynacamp8', 'Enigmas', 135, 140, 1340, 860), + (590, 'Dynacamp9', 'Enigmas', 100, 105, 1700, 2500), + (590, 'Dynacamp10', 'Cyborgs', 95, 100, 1380, 2740), + (590, 'Dynacamp11', 'Enigmas', 130, 135, 2620, 2820), + (590, 'Dynacamp12', 'Enigmas', 130, 135, 2380, 2340), + (590, 'Dynacamp13', 'Spiders', 120, 125, 2340, 340), + (590, 'Dynacamp14', 'Nanofreaks', 165, 170, 2660, 300), + (590, 'Dynacamp15', 'Spiders', 120, 125, 3380, 1380), + (590, 'Dynacamp16', 'Snakes', 175, 180, 3540, 1420), + (590, 'Dynacamp17', 'Snakes', 125, 130, 3220, 1620), + (590, 'Dynacamp18', 'Anuns', 130, 135, 3580, 2940), + (590, 'Dynacamp20', 'Snakes', 200, 205, 3500, 1900), + (655, 'Dynacamp01', 'Leets', 30, 35, 1380, 2700), + (655, 'Dynacamp02', 'Shadowmutants', 80, 85, 4500, 1140), + (655, 'Dynacamp03', 'Snakes', 60, 65, 1180, 1420), + (655, 'Dynacamp04', 'Skin Spiders', 75, 80, 2220, 1500), + (655, 'Dynacamp05', 'Scavenger Dogs', 55, 60, 460, 580), + (655, 'Dynacamp06', 'Scorpiods', 40, 45, 1220, 2100), + (655, 'Dynacamp0', 'Hammerbeasts', 35, 40, 1700, 2740), + (655, 'Dynacamp08', 'Snakes', 85, 90, 3020, 300), + (655, 'Dynacamp09', 'Skin Spiders', 75, 80, 2940, 2020), + (655, 'Dynacamp10', 'Shadowmutants', 50, 55, 3020, 2220), + (655, 'Dynacamp11', 'Hammerbeasts', 70, 75, 4180, 420), + (600, 'Dynacamp1', 'Mantezes', 60, 65, 700, 2180), + (600, 'Dynacamp2', 'Mantezes', 60, 65, 580, 2540), + (600, 'Dynacamp3', 'Rhinomen', 55, 60, 1140, 980), + (600, 'Dynacamp4', 'Rhinomen', 45, 50, 1020, 300), + (600, 'Dynacamp5', 'Rhinomen', 50, 55, 1220, 340), + (600, 'Dynacamp6', 'Rhinomen', 65, 70, 1380, 540), + (600, 'Dynacamp7', 'Rhinomen', 60, 65, 1340, 900), + (600, 'Dynacamp8', 'Lizards', 20, 25, 1020, 2740), + (600, 'Dynacamp9', 'Blubbags', 51, 56, 1300, 2340), + (600, 'Dynacamp10', 'Spiders', 50, 55, 1420, 1540), + (600, 'Dynacamp11', 'Lizards', 15, 20, 1740, 2660), + (600, 'Dynacamp12', 'Rhinomen', 60, 65, 1940, 1860), + (600, 'Dynacamp13', 'Rhinomen', 80, 85, 1860, 1100), + (600, 'Dynacamp14', 'Bileswarms', 105, 110, 1700, 820), + (600, 'Dynacamp15', 'Unfinished Breed', 60, 65, 2060, 420), + (600, 'Dynacamp16', 'Blubbags', 50, 55, 3060, 2220), + (600, 'Dynacamp17', 'Leets', 30, 35, 3340, 2860), + (600, 'Dynacamp18', 'Mantezes', 55, 60, 4020, 1780), + (600, 'Dynacamp19', 'Mantezes', 60, 65, 4060, 1340), + (600, 'Dynacamp20', 'Mantezes', 65, 70, 4220, 380), + (605, 'Dynacamp1', 'Snakes', 140, 145, 460, 780), + (605, 'Dynacamp2', 'Enigmas', 135, 140, 580, 1820), + (605, 'Dynacamp3', 'Ninjadroids', 125, 130, 380, 2260), + (605, 'Dynacamp4', 'Quake Lizards', 135, 140, 820, 1940), + (605, 'Dynacamp5', 'Pit Lizards', 155, 160, 820, 1340), + (605, 'Dynacamp6', 'Quake Lizards', 135, 140, 900, 740), + (605, 'Dynacamp7', 'Pit Lizards', 160, 165, 1500, 660), + (605, 'Dynacamp8', 'Snakes', 155, 160, 1500, 2100), + (605, 'Dynacamp9', 'Enigmas', 110, 115, 1660, 3100), + (605, 'Dynacamp10', 'Bileswarms', 130, 135, 1700, 2580), + (605, 'Dynacamp11', 'Nanofreaks', 151, 155, 1660, 1780), + (605, 'Dynacamp12', 'Snakes', 150, 155, 1700, 1380), + (605, 'Dynacamp13', 'Snakes', 155, 160, 1780, 1140), + (605, 'Dynacamp14', 'Swampghouls', 170, 175, 1700, 540), + (605, 'Dynacamp15', 'Nanofreaks', 165, 170, 2380, 740), + (605, 'Dynacamp16', 'Snakes', 160, 165, 2380, 1460), + (605, 'Dynacamp17', 'Swampghouls', 170, 175, 2300, 1260), + (605, 'Dynacamp18', 'Ninjadroids', 135, 140, 2500, 2140), + (605, 'Dynacamp19', 'Ninjadroids', 135, 140, 2180, 2540), + (605, 'Dynacamp20', 'Ottous', 110, 115, 2140, 2980), + (565, 'Dynacamp1', 'Lizards', 20, 25, 340, 1740), + (565, 'Dynacamp3', 'Leets', 30, 35, 460, 2380), + (565, 'Dynacamp4', 'Leets', 30, 35, 740, 2900), + (565, 'Dynacamp5', 'Leets', 30, 35, 1220, 2900), + (565, 'Dynacamp6', 'Rhinomen', 10, 15, 1260, 2540), + (565, 'Dynacamp7', 'Rhinomen', 10, 15, 1340, 2340), + (565, 'Dynacamp8', 'Rhinomen', 30, 35, 1460, 2140), + (565, 'Dynacamp9', 'Rhinomen', 30, 35, 1700, 1580), + (565, 'Dynacamp10', 'Eyemutants', 15, 20, 2180, 2740), + (565, 'Dynacamp11', 'Snakes', 30, 35, 2100, 2220), + (565, 'Dynacamp12', 'Brontos', 20, 25, 2340, 1060), + (565, 'Dynacamp13', 'Scorpiods', 30, 35, 2340, 660), + (565, 'Dynacamp14', 'Scorpiods', 30, 35, 2620, 300), + (565, 'Dynacamp15', 'Buzzsaws', 20, 25, 2820, 700), + (565, 'Dynacamp16', 'Rhinomen', 45, 50, 2820, 1220), + (565, 'Dynacamp17', 'Rhinomen', 50, 55, 2660, 1460), + (565, 'Dynacamp18', 'Salamanders', 30, 35, 2740, 2460), + (565, 'Dynacamp19', 'Fleas', 25, 30, 3260, 2900), + (565, 'Dynacamp20', 'Minibulls', 40, 45, 3420, 2100), + (565, 'Dynacamp21', 'Rhinomen', 40, 45, 3500, 1300), + (570, 'Dynacamp1', 'Anuns', 145, 150, 380, 500), + (570, 'Dynacamp2', 'Anuns', 145, 150, 380, 900), + (570, 'Dynacamp3', 'Sandworms', 145, 150, 420, 1500), + (570, 'Dynacamp4', 'Anuns', 150, 155, 700, 2460), + (570, 'Dynacamp5', 'Anuns', 150, 155, 460, 3140), + (570, 'Dynacamp6', 'Anuns', 150, 155, 1340, 3060), + (570, 'Dynacamp7', 'Anuns', 150, 155, 1260, 2860), + (570, 'Dynacamp8', 'Mantis', 76, 90, 1140, 1140), + (570, 'Dynacamp9', 'Mantis', 135, 140, 1460, 860), + (570, 'Dynacamp10', 'Cyborgs', 85, 90, 1940, 1380), + (570, 'Dynacamp11', 'Mantis', 165, 170, 2220, 3340), + (570, 'Dynacamp12', 'Mantis', 165, 170, 2460, 2660), + (570, 'Dynacamp13', 'Mantis', 135, 140, 2660, 2300), + (570, 'Dynacamp14', 'Mantis', 165, 170, 2740, 2460), + (570, 'Dynacamp15', 'Mantis', 165, 170, 2980, 2940), + (570, 'Dynacamp16', 'Mantis', 165, 170, 3100, 3260), + (570, 'Dynacamp18', 'Anuns', 165, 170, 3500, 2020), + (570, 'Dynacamp20', 'Anuns', 105, 110, 3060, 900), + (570, 'Dynacamp21', 'Unknown', 171, 190, 3460, 294), + (570, 'Dynacamp22', 'Unknown', 121, 141, 3980, 1780), + (551, 'Dynacamp', 'Template', 70, 75, 140, 2700), + (551, 'Dynacamp1', 'Biofreaks', 35, 40, 340, 1060), + (551, 'Dynacamp2', 'Scorpiods', 45, 50, 540, 1460), + (551, 'Dynacamp3', 'Skin Spiders', 50, 55, 620, 3060), + (551, 'Dynacamp4', 'Hammerbeasts', 70, 75, 980, 3300), + (551, 'Dynacamp5', 'Skin Spiders', 55, 60, 1260, 2540), + (551, 'Dynacamp6', 'Clawfingers', 40, 45, 1140, 1700), + (551, 'Dynacamp7', 'Hounds', 40, 45, 1580, 1140), + (551, 'Dynacamp8', 'Hounds', 40, 45, 1420, 1140), + (551, 'Dynacamp9', 'Hounds', 40, 45, 1380, 1380), + (551, 'Dynacamp10', 'Blubbags', 35, 40, 1100, 2020), + (551, 'Dynacamp11', 'Skin Spiders', 55, 60, 1340, 2500), + (551, 'Dynacamp13', 'Rollerrats', 35, 40, 1740, 1220), + (551, 'Dynacamp12', 'Hammerbeasts', 70, 75, 1540, 3340), + (551, 'Dynacamp14', 'Blubbags', 40, 45, 1700, 1740), + (551, 'Dynacamp15', 'Hammerbeasts', 70, 75, 1700, 3380), + (551, 'Dynacamp16', 'Skin Spiders', 45, 50, 1980, 2580), + (551, 'Dynacamp17', 'Blubbags', 40, 45, 2300, 1340), + (551, 'Dynacamp18', 'Blubbags', 45, 50, 2420, 1340), + (551, 'Dynacamp19', 'Blubbags', 50, 55, 2340, 1500), + (551, 'Dynacamp20', 'Blubbags', 55, 60, 2340, 1420); \ No newline at end of file diff --git a/modules/standard/helpbot/sql/playfields.sql b/modules/standard/helpbot/sql/playfields.sql new file mode 100644 index 0000000..c2dd55c --- /dev/null +++ b/modules/standard/helpbot/sql/playfields.sql @@ -0,0 +1,623 @@ +# noinspection LongLineForFile + +DROP TABLE IF EXISTS `playfields`; +CREATE TABLE IF NOT EXISTS `playfields` +( + `id` smallint(6) NOT NULL PRIMARY KEY, + `long_name` varchar(100) NOT NULL, + `short_name` varchar(30) DEFAULT NULL, + `dungeon` tinyint(255) NOT NULL DEFAULT 0, + UNIQUE (`short_name`) +); +INSERT INTO `playfields` +VALUES (100, 'Needed PF-stuff', NULL, 0), + (101, 'Default Door Links', NULL, 0), + (102, 'Monster and NPC dependencies', NULL, 0), + (103, 'Shop and Item Dependencies', NULL, 0), + (104, 'One Template PF', NULL, 0), + (105, 'Morten gfx fixes', NULL, 0), + (107, 'AI graphics dependency', NULL, 0), + (109, 'LE dependencies', NULL, 0), + (110, 'Dependency EP1 Mons', NULL, 0), + (111, 'RK Quick Export Dependancy', NULL, 0), + (120, 'Camelot', 'TARA', 0), + (124, 'Tir Assembly Hall', NULL, 0), + (125, 'Smuggler''s Rearranged', NULL, 0), + (127, 'Abandoned Mall', 'SUBWAY', 1), + (128, 'Subway Junction', NULL, 1), + (152, 'Grid', 'GRID', 0), + (320, 'AutocontentMidtech(dung)', NULL, 0), + (321, 'AutocontentHITech(dung)', NULL, 0), + (322, 'Autocontentdungcave(dung)', NULL, 0), + (324, 'AutocontentClan(dung)', NULL, 0), + (331, 'ACD tarm', NULL, 1), + (341, 'ACD Grey Caves-Mines', NULL, 1), + (346, 'ACD Omnilab', NULL, 1), + (351, 'ACD Subway - Ventil', NULL, 1), + (362, 'SL ACG', NULL, 1), + (382, 'Alien ACG', NULL, 1), + (386, 'Alien Mothership', NULL, 1), + (500, 'Parnassos', 'GMPF', 0), + (501, 'Parnassos Island of Ceremony', 'ARKHQ', 0), + (505, 'Avalon', 'AV', 0), + (540, 'Old Athen', 'OA', 0), + (545, 'West Athens', 'WA', 0), + (550, 'Athen Shire', 'AS', 0), + (551, 'Wailing Wastes', 'WW', 0), + (556, 'Coast of Peace', 'CP', 0), + (560, 'Mort', 'MORT', 0), + (565, 'Newland Desert', 'NLD', 0), + (566, 'Newland City', 'NC', 0), + (567, 'Newland', 'NL', 0), + (570, 'Perpetual Wastelands', 'PW', 0), + (585, 'Aegean', 'AEG', 0), + (586, 'Wartorn Valley', 'WV', 0), + (590, 'Central Artery Valley', 'CAV', 0), + (595, 'Deep Artery Valley', 'DAV', 0), + (600, 'Varmint Woods', 'VW', 0), + (605, 'Belial Forest', 'BF', 0), + (610, 'Southern Artery Valley', 'SAV', 0), + (615, 'Southern Fouls Hills', 'SFH', 0), + (620, 'Eastern Fouls Plain', 'EFP', 0), + (625, 'Milky Way', 'MW', 0), + (630, 'Pleasant Meadows', 'PM', 0), + (635, 'Stret East Bank', 'SEB', 0), + (640, 'Tir', 'TIR', 0), + (641, 'Tir Arena', NULL, 0), + (646, 'Tir County', 'TC', 0), + (647, 'Greater Tir County', 'GTC', 0), + (650, 'Upper Stret East Bank', 'USEB', 0), + (655, 'Andromeda', 'AND', 0), + (656, 'Coast of Tranquility', 'CT', 0), + (665, 'Broken Shores', 'BS', 0), + (670, 'Clondyke', 'CLON', 0), + (685, 'Galway County', 'GC', 0), + (687, 'Galway Shire', 'GS', 0), + (695, 'Lush Fields', 'LF', 0), + (696, 'Mutant Domain', 'MD', 0), + (700, 'Omni-1 HQ', 'OHQ', 0), + (705, 'Omni-1 Entertainment', 'ENT', 0), + (706, 'Omni Entertainment Arena', NULL, 0), + (710, 'Omni-1 Trade', 'OT', 0), + (716, 'Omni Forest', 'OF', 0), + (717, 'Greater Omni Forest', 'GOF', 0), + (730, 'Rome Red', 'RR', 0), + (735, 'Rome Blue', 'RB', 0), + (740, 'Rome Green', 'RG', 0), + (750, 'The Reck', 'RECK', 0), + (760, '4 Holes', '4HO', 0), + (790, 'Stret West Bank', 'SWB', 0), + (791, 'Holes in the Wall', 'HITW', 0), + (795, 'The Longest Road', 'TLR', 0), + (800, 'Borealis', 'BOR', 0), + (896, 'Character Creation Lab', NULL, 1), + (950, 'Omni Training', NULL, 0), + (952, 'Clan Training', NULL, 0), + (953, 'Clan Backyard', NULL, 0), + (954, 'Neutral Training', NULL, 0), + (955, 'Neutral Backyard', NULL, 0), + (1001, 'Senitel rec_centre (wine) GOLD', NULL, 0), + (1002, 'medical/eating (wine) GOLD', NULL, 0), + (1003, 'Wine hq (wine) GOLD', NULL, 0), + (1004, 'barracks (wine) GOLD', NULL, 0), + (1005, 'storage (wine) GOLD', NULL, 0), + (1011, '2HO HQ (streteast) GOLD', NULL, 0), + (1012, '2HO satellite (streteast) GOLD', NULL, 0), + (1021, 'Omni barracks (USEB) GOLD', NULL, 0), + (1031, 'Avalon omni barracks', NULL, 0), + (1136, 'Mir shop clan', NULL, 0), + (1137, 'mir shop omni', NULL, 0), + (1180, 'ord_smarket_clan_basic', NULL, 0), + (1181, 'ord_smarket_clan_advanced', NULL, 0), + (1182, 'ord_smarket_clan_sup', NULL, 0), + (1183, 'ord_smarket_omni_basic', NULL, 0), + (1184, 'ord_smarket_omni_advanced', NULL, 0), + (1185, 'ord_smarket_omni_sup', NULL, 0), + (1186, 'ord_smarket_neut_basic', NULL, 0), + (1187, 'ord_smarket_neut_advanced', NULL, 0), + (1189, 'spec_smarket_clan_advanced', NULL, 0), + (1190, 'spec_smarket_clan_sup', NULL, 0), + (1191, 'spec_smarket_omni_advanced', NULL, 0), + (1192, 'spec_smarket_omni_sup', NULL, 0), + (1193, 'spec_smarket_neut_basic', NULL, 0), + (1211, 'basicomniapartment', NULL, 1), + (1231, 'Clan Small Clan Apartment', NULL, 0), + (1232, 'Clan Medium Clan Apartment', NULL, 0), + (1233, 'Clan Big Clan Apartment', NULL, 0), + (1241, 'Neutral Small Clan Apartment', NULL, 0), + (1242, 'Neutral Medium Clan Apartment', NULL, 0), + (1243, 'Neutral Big Clan Apartment', NULL, 0), + (1251, 'Omni Small Guild', NULL, 0), + (1321, 'tir clanbuilding2', NULL, 1), + (1322, 'tir clanbuilding1', NULL, 1), + (1323, 'tir clanbuilding9', NULL, 1), + (1324, 'tir clanbuilding11', NULL, 1), + (1325, 'tir clanbuilding12', NULL, 1), + (1326, 'tir clanbuilding3', NULL, 0), + (1327, 'tir clanbuilding_pod4', NULL, 1), + (1328, 'tir clanbuilding5', NULL, 1), + (1329, 'tir clanbuilding6', NULL, 1), + (1330, 'tir clanbuilding7', NULL, 1), + (1404, 'The Temple of Home', NULL, 0), + (1405, 'clanapartment', NULL, 0), + (1406, 'omniapartment', NULL, 0), + (1407, 'neutralapartment', NULL, 0), + (1410, 'items', NULL, 0), + (1421, 'avalon_building3', NULL, 1), + (1422, 'avalon_building4', NULL, 1), + (1423, 'avalon_building5', NULL, 0), + (1424, 'avalon_building2', NULL, 1), + (1426, 'Clan Registration', NULL, 1), + (1427, 'Omni registration', NULL, 1), + (1428, 'Neutral organisation', NULL, 1), + (1501, 'omnimine_hq_building_06', NULL, 0), + (1502, 'omnimine_hq_building_02', NULL, 0), + (1503, 'omnimine_hq_building_04', NULL, 0), + (1504, 'omnimine_hq_building_07', NULL, 0), + (1505, 'omnimine_hq_building_08', NULL, 0), + (1506, 'omnimine_hq_building_09', NULL, 0), + (1507, 'omnimine_hq_building10', NULL, 0), + (1510, 'Neutral Insurance building', NULL, 0), + (1511, 'Neutral Mission building', NULL, 0), + (1601, 'athens_clanhouse1 VP', NULL, 1), + (1602, 'athens_clanhouse3 VP', NULL, 1), + (1603, 'athens_clanhouse4 VP', NULL, 1), + (1604, 'athens_clanhouse12 VP', NULL, 1), + (1611, 'Swamp_house01 VP', NULL, 1), + (1612, 'Swamp_house02', NULL, 0), + (1613, 'swamp_house03 VP', NULL, 1), + (1614, 'Swamp_house04 VP', NULL, 1), + (1621, 'wood_shack_01 VP', NULL, 1), + (1622, 'wood_shack_02 VP', NULL, 1), + (1623, 'wood_shack_03 VP', NULL, 1), + (1624, 'wood_shack_04 VP', NULL, 1), + (1625, 'wood_shack_05 VP', NULL, 1), + (1626, 'wood_shack_06 VP', NULL, 1), + (1627, 'wood_shack_07 VP', NULL, 1), + (1641, 'lowtech_building1 VP', NULL, 1), + (1642, 'lowtech_building2 VP', NULL, 1), + (1643, 'lowtech_building3 VP', NULL, 1), + (1644, 'lowtech_building4 VP', NULL, 1), + (1645, 'lowtech_building5 VP', NULL, 1), + (1646, 'lowtech_building6 VP', NULL, 1), + (1647, 'lowtech_building7 VP', NULL, 1), + (1648, 'lowtech_waterwell VP', NULL, 1), + (1651, 'rome_shopbuilding1 VP', NULL, 1), + (1652, 'rome_simplebuilding VP', NULL, 1), + (1653, 'rome_simplebuilding1 VP', NULL, 1), + (1661, 'rhino_house1 VP', NULL, 1), + (1662, 'rhino_house2 VP', NULL, 1), + (1663, 'rhino_house3 VP', NULL, 1), + (1671, 'reck_trading_outpost_bunker1 VP', NULL, 0), + (1672, 'reck_trading_outpost_bunker2 VP', NULL, 0), + (1673, 'reck_trading_outpost_bunker3 VP', NULL, 0), + (1674, 'reck_trading_outpost_bunker4 VP', NULL, 0), + (1675, 'reck_trading_outpost_bunker5 VP', NULL, 0), + (1701, 'Home VP 1 medium', NULL, 1), + (1702, 'Home VP 2 big', NULL, 1), + (1703, 'Home VP 3 small', NULL, 1), + (1711, 'Factory VP barracks', NULL, 1), + (1712, 'Factory VP factory', NULL, 1), + (1721, 'LD VP 1', NULL, 1), + (1722, 'LD VP 2', NULL, 1), + (1741, 'enigma_tree01', NULL, 0), + (1742, 'enigma_tree02', NULL, 0), + (1743, 'enigma_tree03', NULL, 0), + (1826, 'Dancing Atrox Bar', NULL, 0), + (1827, 'Omni Military Barracks', NULL, 0), + (1833, 'Cyborg Barracks', NULL, 1), + (1836, 'Baboons Nightclub', NULL, 0), + (1840, 'Rompa Bar', NULL, 0), + (1846, 'McRiid''s Office', NULL, 0), + (1862, 'The Smugglers Den', NULL, 0), + (1866, 'The HQ of Omni-Mine', NULL, 0), + (1886, 'Versailles Tower', NULL, 0), + (1887, 'Treepine Hut', NULL, 0), + (1891, 'The Happy Rebel Inn', NULL, 0), + (1892, 'Enjoy it While it Lasts', NULL, 0), + (1893, 'The Cup', NULL, 0), + (1894, 'Clan Registration Office', NULL, 0), + (1901, 'Neutral Organisation Office', NULL, 0), + (1902, 'Neuters ''R'' Us', NULL, 0), + (1913, 'Reet Retreat', NULL, 1), + (1931, 'Temple of Three Winds', NULL, 1), + (1933, 'Steps of Madness', NULL, 1), + (1941, 'Bio MARE', NULL, 0), + (1943, 'High Level ToTW', NULL, 1), + (2001, 'clan_basic_weapons_shop', NULL, 0), + (2002, 'clan_basic_armor_shop', NULL, 0), + (2003, 'clan_basic_pharmasist_shop', NULL, 0), + (2004, 'clan_basic_clothes_shop', NULL, 0), + (2005, 'clan_basic_implants_shop', NULL, 0), + (2006, 'clan_basic_nano_shop', NULL, 0), + (2010, 'clan_advanced_weapons_shop', NULL, 0), + (2011, 'clan_advanced_armor_shop', NULL, 0), + (2012, 'clan_advanced_pharmacist_shop', NULL, 0), + (2013, 'clan_advanced_implants_shop', NULL, 0), + (2014, 'clan_advanced_nano_shop', NULL, 0), + (2020, 'clan_sup_weapons_shop', NULL, 0), + (2021, 'clan_sup_armor_shop', NULL, 0), + (2022, 'clan_sup_pharmacist_shop', NULL, 0), + (2023, 'clan_sup_implants_shop', NULL, 0), + (2024, 'clan_sup_nano_shop', NULL, 0), + (2030, 'omni_basic_weapons_shop', NULL, 0), + (2031, 'omni_basic_armor_shop', NULL, 0), + (2032, 'omni_basic_pharmacist', NULL, 0), + (2033, 'omni_basic_clothes_shop', NULL, 0), + (2034, 'omni_basic_implants_shop', NULL, 0), + (2040, 'omni_advanced_weapons_shop', NULL, 0), + (2041, 'omni_advanced_armor_shop', NULL, 0), + (2042, 'omni_advanced_pharmacist_shop', NULL, 0), + (2043, 'omni_advanced_implants_shop', NULL, 0), + (2050, 'omni_sup_weapons_shop', NULL, 0), + (2051, 'omni_sup_armor_shop', NULL, 0), + (2052, 'omni_sup_pharmacist_shop', NULL, 0), + (2053, 'omni_sup_implants_shop', NULL, 0), + (2060, 'neut_basic_weapon _shop', NULL, 0), + (2061, 'neut_basic_armor_shop', NULL, 0), + (2062, 'neut_basic_pharmacist_shop', NULL, 0), + (2063, 'neut_basic_clothes_shop', NULL, 0), + (2064, 'neut_basic_implants_shop', NULL, 0), + (2070, 'neut_advanced_weapons_shop', NULL, 0), + (2071, 'neut_advanced_armor_shop', NULL, 0), + (2072, 'neut_advanced_pharmacist_shop', NULL, 0), + (2073, 'neut_advanced_implants_shop', NULL, 0), + (2096, '4holes Fashion', NULL, 0), + (3000, 'Omni-1 Entertainment Backyard 1', NULL, 0), + (3001, 'Omni-1 Entertainment Backyard 2', NULL, 0), + (3002, 'Omni-1 Entertainment Backyard 3', NULL, 0), + (3003, 'Omni-1 Entertainment Backyard 4', NULL, 0), + (3004, 'Omni-1 Entertainment Backyard 5', NULL, 0), + (3005, 'Omni-1 Entertainment Backyard 6', NULL, 0), + (3006, 'Omni-1 Entertainment Backyard 7', NULL, 0), + (3007, 'Omni-1 Entertainment Backyard 8', NULL, 0), + (3008, 'Omni-1 Entertainment Backyard 9', NULL, 0), + (3009, 'Omni-1 Entertainment Backyard 10', NULL, 0), + (3010, 'Omni-1 Entertainment Backyard 11', NULL, 0), + (3011, 'Omni-1 Entertainment Backyard 12', NULL, 0), + (3012, 'Omni-1 Entertainment Backyard 13', NULL, 0), + (3013, 'Omni-1 Entertainment Backyard 14', NULL, 0), + (3014, 'Omni-1 Entertainment Backyard 15', NULL, 0), + (3015, 'Omni-1 Entertainment Backyard 16', NULL, 0), + (3016, 'Omni-1 Entertainment Backyard 17', NULL, 0), + (3017, 'Omni-1 Entertainment Backyard 18', NULL, 0), + (3018, 'Omni-1 Entertainment Backyard 19', NULL, 0), + (3019, 'Omni-1 Entertainment Backyard 20', NULL, 0), + (3020, 'Omni-1 Trade Backyard 1', NULL, 0), + (3021, 'Omni-1 Trade Backyard 2', NULL, 0), + (3022, 'Omni-1 Trade Backyard 3', NULL, 0), + (3023, 'Omni-1 Trade Backyard 4', NULL, 0), + (3024, 'Omni-1 Trade Backyard 5', NULL, 0), + (3025, 'Omni-1 Trade Backyard 6', NULL, 0), + (3026, 'Omni-1 Trade Backyard 7', NULL, 0), + (3027, 'Omni-1 Trade Backyard 8', NULL, 0), + (3028, 'Omni-1 Trade Backyard 9', NULL, 0), + (3029, 'Omni-1 Trade Backyard 10', NULL, 0), + (3030, 'Omni-1 Trade Backyard 11', NULL, 0), + (3031, 'Omni-1 Trade Backyard 12', NULL, 0), + (3032, 'Omni-1 Trade Backyard 13', NULL, 0), + (3033, 'Omni-1 Trade Backyard 14', NULL, 0), + (3034, 'Omni-1 Trade Backyard 15', NULL, 0), + (3035, 'Omni-1 Trade Backyard 16', NULL, 0), + (3036, 'Omni-1 Trade Backyard 17', NULL, 0), + (3037, 'Omni-1 Trade Backyard 18', NULL, 0), + (3038, 'Omni-1 Trade Backyard 19', NULL, 0), + (3039, 'Omni-1 Trade Backyard 20', NULL, 0), + (3040, 'Rome Blue Backyard 1', NULL, 0), + (3041, 'Rome Blue Backyard 2', NULL, 0), + (3042, 'Rome Blue Backyard 3', NULL, 0), + (3043, 'Rome Blue Backyard 4', NULL, 0), + (3044, 'Rome Blue Backyard 5', NULL, 0), + (3045, 'Rome Blue Backyard 6', NULL, 0), + (3046, 'Rome Blue Backyard 7', NULL, 0), + (3047, 'Rome Blue Backyard 8', NULL, 0), + (3048, 'Rome Blue Backyard 9', NULL, 0), + (3049, 'Rome Blue Backyard 10', NULL, 0), + (3050, 'Rome Green Backyard 1', NULL, 0), + (3051, 'Rome Green Backyard 2', NULL, 0), + (3052, 'Rome Green Backyard 3', NULL, 0), + (3053, 'Rome Green Backyard 4', NULL, 0), + (3054, 'Rome Green Backyard 5', NULL, 0), + (3055, 'Rome Green Backyard 6', NULL, 0), + (3056, 'Rome Green Backyard 7', NULL, 0), + (3057, 'Rome Green Backyard 8', NULL, 0), + (3058, 'Rome Green Backyard 9', NULL, 0), + (3059, 'Rome Green Backyard 10', NULL, 0), + (3060, 'Newland Backyard 1', NULL, 0), + (3061, 'Newland Backyard 2', NULL, 0), + (3062, 'Newland Backyard 3', NULL, 0), + (3063, 'Newland Backyard 4', NULL, 0), + (3064, 'Newland Backyard 5', NULL, 0), + (3065, 'Newland Backyard 6', NULL, 0), + (3066, 'Newland Backyard 7', NULL, 0), + (3067, 'Newland Backyard 8', NULL, 0), + (3068, 'Newland Backyard 9', NULL, 0), + (3069, 'Newland Backyard 10', NULL, 0), + (3070, 'Newland Backyard 11', NULL, 0), + (3071, 'Newland Backyard 12', NULL, 0), + (3080, 'Borealis Backyard 1', NULL, 0), + (3081, 'Borealis Backyard 2', NULL, 0), + (3082, 'Borealis Backyard 3', NULL, 0), + (3083, 'Borealis Backyard 4', NULL, 0), + (3084, 'Borealis Backyard 5', NULL, 0), + (3085, 'Borealis Backyard 6', NULL, 0), + (3086, 'Borealis Backyard 7', NULL, 0), + (3087, 'Borealis Backyard 8', NULL, 0), + (3088, 'Borealis Backyard 9', NULL, 0), + (3089, 'Borealis Backyard 10', NULL, 0), + (3100, 'Tir Backyard 1', NULL, 0), + (3101, 'Tir Backyard 2', NULL, 0), + (3102, 'Tir Backyard 3', NULL, 0), + (3103, 'Tir Backyard 4', NULL, 0), + (3104, 'Tir Backyard 5', NULL, 0), + (3105, 'Tir Backyard 6', NULL, 0), + (3106, 'Tir Backyard 7', NULL, 0), + (3107, 'Tir Backyard 8', NULL, 0), + (3108, 'Tir Backyard 9', NULL, 0), + (3109, 'Tir Backyard 10', NULL, 0), + (3110, 'Tir Backyard 11', NULL, 0), + (3111, 'Tir Backyard 12', NULL, 0), + (3112, 'Tir Backyard 13', NULL, 0), + (3113, 'Tir Backyard 14', NULL, 0), + (3114, 'Tir Backyard 15', NULL, 0), + (3115, 'Tir Backyard 16', NULL, 0), + (3116, 'Tir Backyard 17', NULL, 0), + (3117, 'Tir Backyard 18', NULL, 0), + (3120, 'Old Athen Backyard 1', NULL, 0), + (3121, 'Old Athen Backyard 2', NULL, 0), + (3122, 'Old Athen Backyard 3', NULL, 0), + (3123, 'Old Athen Backyard 4', NULL, 0), + (3124, 'Old Athen Backyard 5', NULL, 0), + (3125, 'Old Athen Backyard 6', NULL, 0), + (3126, 'Old Athen Backyard 7', NULL, 0), + (3127, 'Old Athen Backyard 8', NULL, 0), + (3128, 'Old Athen Backyard 9', NULL, 0), + (3129, 'Old Athen Backyard 10', NULL, 0), + (3130, 'Old Athen Backyard 11', NULL, 0), + (3131, 'Old Athen Backyard 12', NULL, 0), + (3132, 'Old Athen Backyard 13', NULL, 0), + (3133, 'Old Athen Backyard 14', NULL, 0), + (3134, 'Old Athen Backyard 15', NULL, 0), + (3135, 'Old Athen Backyard 16', NULL, 0), + (3136, 'Old Athen Backyard 17', NULL, 0), + (3137, 'Old Athen Backyard 18', NULL, 0), + (3138, 'Old Athen Backyard 19', NULL, 0), + (3139, 'Old Athen Backyard 20', NULL, 0), + (3140, 'West Athen Backyard 1', NULL, 0), + (3141, 'West Athen Backyard 2', NULL, 0), + (3142, 'West Athen Backyard 3', NULL, 0), + (3143, 'West Athen Backyard 4', NULL, 0), + (3144, 'West Athen Backyard 5', NULL, 0), + (3145, 'West Athen Backyard 6', NULL, 0), + (3146, 'West Athen Backyard 7', NULL, 0), + (3147, 'West Athen Backyard 8', NULL, 0), + (3148, 'West Athen Backyard 9', NULL, 0), + (3149, 'West Athen Backyard 10', NULL, 0), + (4001, 'Jobe Research', 'RESEARCH', 0), + (4003, 'Burning Marshes', NULL, 0), + (4005, 'Inferno Burning Marshes', 'INFMARSHES', 0), + (4006, 'Penumbra', NULL, 0), + (4010, 'Garden of Redeemed Main', NULL, 0), + (4011, 'Garden_of_unredeemed', NULL, 0), + (4102, 'Beer And Booze', NULL, 1), + (4107, 'Fixer Grid', 'FGRID', 1), + (4121, 'Will To Fight', NULL, 0), + (4211, 'Maze_Acheron', NULL, 0), + (4212, 'Maze_Letha_scheol_red', NULL, 0), + (4213, 'Maze_Styx_ado_red', NULL, 0), + (4214, 'Maze_Eridan', NULL, 0), + (4215, 'Maze_Phlegethas1', NULL, 0), + (4220, 'Maze_Acheron (Unre)', NULL, 0), + (4221, 'Maze_Letha_scheol_unre', NULL, 0), + (4222, 'Maze_Styx_ado_unre', NULL, 0), + (4223, 'Maze_Eridan (Unre)', NULL, 0), + (4224, 'Maze_Phlegethas1 (Unre)', NULL, 0), + (4310, 'Nascense Frontier', 'NASCFRONTIER', 0), + (4311, 'Nascense Wilds', 'NASCWILDS', 0), + (4312, 'Nascense Swamp', 'NASCSWAMP', 0), + (4313, 'Nascense Training Ground', 'NASCTRAIN', 0), + (4314, 'Jobe Harbour Gateway', NULL, 1), + (4315, 'Jobe Market Gateway', NULL, 1), + (4316, 'Jobe Plaza Gateway', NULL, 1), + (4318, 'Nascense Portal', NULL, 0), + (4320, 'Penumbra Forest', 'PENFOREST', 0), + (4321, 'Penumbra Valley', 'PENVALLEY', 0), + (4322, 'Penumbra Hollows', 'PENHOLLOW', 0), + (4324, 'Penumbra Transit', NULL, 1), + (4327, 'Jobe Apartment Normal', NULL, 1), + (4328, 'Pandemonium Caina', 'PANDECAINA', 0), + (4329, 'Pandemonium Antenora', 'PANDEANTENORA', 0), + (4330, 'Pandemonium Ptolemea', 'PANDEPTOLEMEA', 0), + (4331, 'Pandemonium Judecca', 'PANDEJUDECCA', 0), + (4334, 'Rubi-Ka Rumble', NULL, 1), + (4335, 'Dark Ruins', NULL, 0), + (4336, 'Alappaa', 'ALAPPAA', 0), + (4337, 'Albtraum', 'ALB', 0), + (4341, 'Basic Omni org hq', NULL, 0), + (4342, 'Basic Clan org hq', NULL, 0), + (4343, 'Basic Neutral org hq', NULL, 0), + (4344, 'Advanced Omni org hq', NULL, 0), + (4345, 'Advanced Clan org hq', NULL, 0), + (4346, 'Advanced Neutral org hq', NULL, 0), + (4347, 'Superior Omni org hq', NULL, 0), + (4348, 'Superior Clan org hq', NULL, 0), + (4349, 'Superior Neutral org hq', NULL, 0), + (4350, '...remember rule no. 1', NULL, 0), + (4351, 'Swimming Pool', NULL, 0), + (4352, 'Market', NULL, 0), + (4354, 'Uncle Bazzits Workshop', NULL, 1), + (4355, 'Basic Player Market', NULL, 1), + (4356, 'Advanced Player Market', NULL, 1), + (4357, 'Superior Player Market', NULL, 1), + (4360, 'Clinique Plastique', NULL, 0), + (4363, 'Tir Night Club', NULL, 1), + (4364, 'Unicorn Outpost', 'OUTPOST', 0), + (4365, 'Sector 13', 'S13', 0), + (4366, 'Sector 28', 'S28', 0), + (4367, 'Sector 35', 'S35', 0), + (4368, 'Unicorn Outpost - Lower level', NULL, 0), + (4370, 'Sector 42', 'S42', 0), + (4374, 'Sector 10', 'S10', 0), + (4376, 'ICC Assembly Hall', NULL, 1), + (4380, 'Battle Station 20-49', NULL, 0), + (4381, 'Battle Station 50-74', NULL, 0), + (4382, 'Battle Station 75-99', NULL, 0), + (4383, 'Battle Station 100-124', NULL, 0), + (4384, 'Battle Station 125-149', NULL, 0), + (4385, 'Battle Station 150-174', NULL, 0), + (4386, 'Battle Station 175-199', NULL, 0), + (4387, 'Battle Station 200-209', NULL, 0), + (4388, 'Battle Station 215-220', NULL, 0), + (4389, 'Caina', NULL, 0), + (4390, 'Ptolemea', NULL, 0), + (4391, 'Judecca', NULL, 0), + (4468, 'Sector 7', 'S7', 0), + (4504, 'West Buggy (DONT DELETE)', NULL, 0), + (4505, 'South Buggy (DONT DELETE)', NULL, 0), + (4524, 'Elysium_pre-split', NULL, 0), + (4525, 'Jobe', 'JOBE', 0), + (4526, 'Jobe_pre-split', NULL, 0), + (4530, 'Jobe Platform', 'PLATFORM', 0), + (4531, 'Jobe Harbor', 'HARBOR', 0), + (4532, 'Jobe Market', 'MARKET', 0), + (4533, 'Jobe Plaza', 'PLAZA', 0), + (4534, 'Jobe Apartment', NULL, 0), + (4540, 'Elysium South', 'ELYSOUTH', 0), + (4541, 'Elysium West', 'ELYWEST', 0), + (4542, 'Elysium', 'ELY', 0), + (4543, 'Elysium East', 'ELYEAST', 0), + (4544, 'Elysium North', 'ELYNORTH', 0), + (4561, 'Arrival Hall Gateway', NULL, 1), + (4563, 'Hardware Dimension - Basic', NULL, 0), + (4564, 'Hardware Dimension - Advanced', NULL, 0), + (4565, 'Hardware Dimenion - Superior', NULL, 0), + (4567, 'Dimensional Shift - Basic', NULL, 0), + (4568, 'Dimensional Shift - Advanced', NULL, 0), + (4569, 'Dimensional Shift - Superior', NULL, 0), + (4571, 'Heavenly Business - Basic', NULL, 0), + (4572, 'Heavenly Business - Advanced', NULL, 0), + (4573, 'Heavenly Business - Superior', NULL, 0), + (4575, 'IPS Interior - Basic', NULL, 0), + (4576, 'IPS Interior - Advanced', NULL, 0), + (4577, 'IPS Interior - Superior', NULL, 0), + (4582, 'ICC Shuttleport', NULL, 0), + (4604, 'Arrival_hall', 'ARRIVALHALL', 0), + (4605, 'Inferno', 'INF', 0), + (4621, 'Redeemed Temple (Elysium)', NULL, 0), + (4622, 'Unredeemed Temple (ELysium)', NULL, 0), + (4623, 'Redeemed Temple (Scheol)', NULL, 0), + (4624, 'Unredeemed Temple (Scheol)', NULL, 0), + (4625, 'Redeemed Temple (Adonis)', NULL, 0), + (4626, 'Unredeemed Temple (Adonis)', NULL, 0), + (4627, 'Redeemed Temple (Penumbra)', NULL, 0), + (4628, 'Unredeemed Temple (Penumbra)', NULL, 0), + (4629, 'Redeemed Temple (Inferno)', NULL, 0), + (4630, 'Unredeemed Temple (Inferno)', NULL, 0), + (4676, 'Garden of Redeemed Nascense', NULL, 0), + (4677, 'Garden_of_unredeemed Nascense', NULL, 0), + (4678, 'Garden of Redeemed Elysium', NULL, 0), + (4679, 'Garden of Redeemed Elysium2', NULL, 0), + (4680, 'Garden_of_unredeemed Elysium', NULL, 0), + (4681, 'Garden_of_unredeemed Elysium2', NULL, 0), + (4682, 'Garden of Redeemed Scheol', NULL, 0), + (4683, 'Garden_of_unredeemed Scheol', NULL, 0), + (4684, 'Garden of Redeemed Adonis', NULL, 0), + (4685, 'Garden of Redeemed Adonis2', NULL, 0), + (4686, 'Garden_of_unredeemed Adonis', NULL, 0), + (4687, 'Garden_of_unredeemed Adonis2', NULL, 0), + (4688, 'Garden of Redeemed Penumbra', NULL, 0), + (4689, 'Garden of Redeemed Penumbra2', NULL, 0), + (4690, 'Garden_of_unredeemed Penumbra', NULL, 0), + (4691, 'Garden_of_unredeemed Penumbra2', NULL, 0), + (4692, 'Garden of Redeemed Inferno', NULL, 0), + (4693, 'Garden of Redeemed Inferno2', NULL, 0), + (4694, 'Garden_of_unredeemed Inferno', NULL, 0), + (4695, 'Garden_of_unredeemed Inferno2', NULL, 0), + (4696, 'Garden of Redeemed Pandemonium', NULL, 0), + (4697, 'Garden of unredeemed Pandemonium', NULL, 0), + (4698, 'Garden of Redeemed Scheol2', NULL, 0), + (4699, 'Garden_of_unredeemed Scheol2', NULL, 0), + (4704, 'Booster Shop (dungeon)', NULL, 0), + (4805, 'The Crypt of Home', NULL, 0), + (4833, 'Teleport Tower', NULL, 0), + (4872, 'Adonis City', 'ADOCITY', 0), + (4873, 'Adonis Abyss', 'ADO', 0), + (4877, 'Adonis Hallway', NULL, 0), + (4880, 'Scheol Upper', 'SCHEOLUPPER', 0), + (4881, 'Scheol Lower', 'SCHEOLLOWER', 0), + (4885, 'Shadow Crypt', NULL, 0), + (4894, 'Coast of Harmony', NULL, 0), + (4898, 'Broken Shores AI movie', NULL, 0), + (4899, 'Broken Shores AI Demo', NULL, 0), + (5001, 'Playa del Desierto', NULL, 0), + (5002, 'Montroyal City', NULL, 0), + (6001, 'Area', NULL, 0), + (6002, 'Sunrise Station', NULL, 0), + (6003, 'The Dig Site', NULL, 0), + (6007, 'Unicorn Defence Hub', NULL, 0), + (6010, 'Serenity Islands', NULL, 0), + (6011, 'Arid Rift', 'ARID', 0), + (6012, 'Neretva Canyon', NULL, 0), + (6013, 'Central Gateway', NULL, 0), + (6014, 'Inside The Ruin', NULL, 0), + (6015, 'The Elder Hall', NULL, 0), + (6017, 'Teachers Chamber', NULL, 0), + (6020, 'Xan Hub Tower Room 1', NULL, 0), + (6021, 'Xan Tower', NULL, 0), + (6022, 'Area X', NULL, 0), + (6024, 'Sealed Antechamber', NULL, 1), + (6028, 'Santa Leet Event', NULL, 1), + (6035, 'Dark Ruins', NULL, 0), + (6036, 'Dark Ruins', NULL, 0), + (6041, 'Inside The Ruin', NULL, 0), + (6050, 'Serenity Islands', NULL, 0), + (6051, 'Serenity Islands', NULL, 0), + (6055, 'Inside The Machine', NULL, 0), + (6056, 'Dust Brigade Research Facility', NULL, 0), + (6057, 'Dust Brigade Research Facility 2', NULL, 0), + (6060, 'Profspecroom', NULL, 0), + (6061, 'Engineers Dugout', NULL, 0), + (6071, 'The Grind', NULL, 0), + (6101, 'Three Craters West', '3CW', 0), + (6102, 'Three Craters East', '3CE', 0), + (6104, 'SBC-Xpm Site Alpha-Romeo 29', NULL, 0), + (6111, 'Area', NULL, 0), + (6112, 'Area', NULL, 0), + (6113, 'Area', NULL, 0), + (6115, 'Area', NULL, 0), + (6121, 'Area', NULL, 0), + (6123, 'Area', NULL, 0), + (6125, 'Area', NULL, 0), + (6127, 'Area', NULL, 0), + (6129, 'Area', NULL, 0), + (6131, 'Area', NULL, 0), + (6133, 'Sauna', NULL, 0), + (6211, 'Area', NULL, 0), + (6300, 'SBC-Xpm Site Alpha-Romeo 29', NULL, 0), + (6301, 'SBC-Xpm Site Alpha-Romeo 29', NULL, 0), + (6302, 'SBC-Xpm Site Alpha-Romeo 29', NULL, 0), + (6303, 'SBC-Xpm Site Alpha-Romeo 29', NULL, 0), + (6304, 'SBC-Xpm Site Alpha-Romeo 29', NULL, 0), + (6305, 'SBC-Xpm Site Alpha-Romeo 29', NULL, 0), + (6306, 'SBC-Xpm Site Alpha-Romeo 29', NULL, 0), + (6550, 'Uturn Canyon', 'UC', 0), + (6551, 'Uturn Forest', 'UF', 0), + (6553, 'Arete', 'ARETE', 0), + (7001, 'Palmiero''s Office', NULL, 0), + (7010, 'DOJA Research', NULL, 0), + (7011, 'Omni Tek Agency', NULL, 0), + (7012, 'Clan Quest HQ', NULL, 0), + (7013, 'Antiques and more', NULL, 0), + (7015, 'Area', NULL, 0), + (7051, 'Area', NULL, 0), + (7054, 'Area', NULL, 0), + (7092, 'Area', NULL, 0), + (7101, 'Freighter headed to ICC - Andromeda', NULL, 0), + (8002, 'Phasefront Racetrack', NULL, 0), + (8004, 'Area', NULL, 0), + (8006, 'Generetic Corp. Offices', NULL, 0), + (8040, 'Foundry of Nightmares', NULL, 0), + (8045, 'Foundry of Nightmares', NULL, 0), + (8046, 'Foundry of Nightmares', NULL, 0), + (8050, 'Foundry of Nightmares', NULL, 0), + (8080, 'Santa Leet Event - Aliums', NULL, 0); \ No newline at end of file diff --git a/modules/standard/helpbot/sql/research.sql b/modules/standard/helpbot/sql/research.sql new file mode 100644 index 0000000..1c9185d --- /dev/null +++ b/modules/standard/helpbot/sql/research.sql @@ -0,0 +1,21 @@ +# noinspection LongLineForFile + +DROP TABLE IF EXISTS research; +CREATE TABLE IF NOT EXISTS research +( + level SMALLINT NOT NULL, + sk INT NOT NULL, + levelcap SMALLINT NOT NULL +); +INSERT INTO research +VALUES (0, 0, 0), + (1, 50, 1), + (2, 450, 50), + (3, 1600, 75), + (4, 4700, 100), + (5, 12750, 125), + (6, 32000, 150), + (7, 54000, 175), + (8, 64000, 190), + (9, 740000, 190), + (10, 900000, 200); \ No newline at end of file diff --git a/modules/standard/helpbot/sql/whompah_cities.sql b/modules/standard/helpbot/sql/whompah_cities.sql new file mode 100644 index 0000000..b8e41f6 --- /dev/null +++ b/modules/standard/helpbot/sql/whompah_cities.sql @@ -0,0 +1,126 @@ +# noinspection LongLineForFile + +DROP TABLE IF EXISTS whompah_cities; +CREATE TABLE IF NOT EXISTS whompah_cities +( + id INT PRIMARY KEY AUTO_INCREMENT, + city_name VARCHAR(50) NOT NULL, + zone VARCHAR(50) NOT NULL, + faction VARCHAR(10) NOT NULL, + short_name VARCHAR(255) DEFAULT NULL +); +INSERT INTO whompah_cities (id, city_name, zone, faction, short_name) +VALUES (1, 'ICC', 'Andromeda', 'Neutral', 'icc'), + (2, 'Camelot', 'Avalon', 'Clan', 'camelot'), + (3, 'Bliss', 'The Longest Road', 'Clan', 'bliss'), + (4, 'Broken Shores - North', 'Broken Shores', 'Clan', 'bsn'), + (5, 'Old Athen', 'Athen', 'Clan', 'oa'), + (6, 'Tir', 'Tir County', 'Clan', 'tir'), + (7, 'Varmint Woods', 'Varmint Woods', 'Clan', 'vw'), + (8, 'Wailing Wastes', 'Wailing Wastes', 'Clan', 'ww'), + (9, 'Wine', 'Belial Forest', 'Clan', 'wine'), + (10, 'Newland City', 'Newland', 'Neutral', 'nlc'), + (11, 'Newland Desert', 'Newland Desert', 'Neutral', 'nld'), + (12, 'Borealis', 'Borealis', 'Neutral', 'bor'), + (13, 'Hope', 'Mort', 'Neutral', 'hope'), + (14, 'Stret West Bank', 'Stret West Bank', 'Neutral', 'swb'), + (15, 'Omni Trade', 'Omni Trade', 'Omni', 'trade'), + (16, 'Omni Entertainment', 'Omni Entertainment', 'Omni', 'ent'), + (17, 'Galway Castle', 'Galway County', 'Omni', 'gc'), + (18, '20K', 'Pleasant Meadows', 'Omni', '20k'), + (19, '4 Holes', '4 Holes', 'Clan', '4ho'), + (20, 'Broken Shores - South', 'Broken Shores', 'Omni', 'bss'), + (21, 'Outpost 10-3', 'Southern Artery Valley', 'Omni', 'sav'), + (22, '2HO', 'Stret East Bank', 'Omni', '2ho'), + (23, 'Rome', 'Rome Red', 'Omni', 'rr'), + (24, 'The Longest Road', 'The Longest Road', 'Omni', 'tlr'), + (25, 'Mutant Domain', 'Mutant Domain', 'Omni', 'md'), + (26, 'Perpetual Wasteland', 'Perpetual Wasteland', 'Neutral', 'pw'), + (27, 'Southern Fouls Hills', 'Southern Fouls Hills', 'Omni', 'sfh'), + (28, 'Central Artery Valley', 'Central Artery Valley', 'Clan', 'cav'), + (29, 'The Reck North', 'The Reck', 'Omni', 'trn'), + (30, 'The Reck South', 'The Reck', 'Clan', 'trs'); +DROP TABLE IF EXISTS whompah_cities_rel; +CREATE TABLE whompah_cities_rel +( + city1_id SMALLINT NOT NULL, + city2_id SMALLINT NOT NULL +); +INSERT INTO whompah_cities_rel (city1_id, city2_id) +VALUES (1, 10), + (1, 15), + (1, 6), + (2, 3), + (2, 8), + (3, 2), + (3, 4), + (3, 5), + (4, 3), + (4, 9), + (5, 3), + (5, 6), + (5, 8), + (6, 1), + (6, 5), + (6, 7), + (7, 6), + (7, 8), + (7, 9), + (8, 2), + (8, 5), + (8, 7), + (9, 4), + (9, 7), + (10, 1), + (10, 11), + (10, 12), + (11, 10), + (11, 13), + (12, 10), + (12, 14), + (13, 11), + (13, 14), + (14, 12), + (14, 13), + (15, 1), + (15, 16), + (15, 17), + (16, 15), + (16, 18), + (16, 23), + (16, 25), + (17, 15), + (17, 21), + (17, 23), + (18, 16), + (18, 21), + (20, 23), + (21, 17), + (21, 18), + (21, 22), + (22, 21), + (22, 24), + (23, 16), + (23, 17), + (23, 20), + (24, 22), + (25, 16), + (26, 13), + (13, 26), + (25, 22), + (22, 25), + (24, 20), + (20, 24), + (27, 18), + (18, 27), + (28, 19), + (19, 28), + (19, 4), + (4, 19), + (30, 6), + (6, 30), + (29, 15), + (15, 29); + +-- test congruency +-- SELECT * FROM (SELECT city1_id, count(*) AS cnt FROM whompah_cities_rel GROUP BY city1_id ) t1 JOIN (SELECT city2_id, count(*) AS cnt FROM whompah_cities_rel GROUP BY city2_id) t2 ON t1.city1_id = t2.city2_id WHERE t1.cnt <> t2.cnt diff --git a/modules/standard/helpbot/time_controller.py b/modules/standard/helpbot/time_controller.py new file mode 100644 index 0000000..445b6b5 --- /dev/null +++ b/modules/standard/helpbot/time_controller.py @@ -0,0 +1,61 @@ +import calendar +import time +from datetime import datetime + +import pytz + +from core.chat_blob import ChatBlob +from core.command_param_types import Any, Const +from core.decorators import instance, command + + +@instance() +class TimeController: + def __init__(self): + self.time_format = "%Y-%m-%d %H:%M:%S %Z%z" + + @command(command="time", params=[Const('all', is_optional=True)], access_level="member", + description="Show the current time in every timezone") + def time_cmd(self, _, const_all): + if const_all: + blob = "Unixtime => %d\n\n" % int(time.time()) + current_region = "" + dt = datetime.now() + for tz in pytz.common_timezones: + result = tz.split("/", 2) + if len(result) == 2: + region, city = result + else: + region = result[0] + city = result[0] + + if current_region != region: + blob += "\n%s\n" % region + current_region = region + + blob += "%s => %s\n" % (city, dt.astimezone(pytz.timezone(tz)).strftime(self.time_format)) + + return ChatBlob("Timezones", blob) + else: + now = datetime.utcnow() + day = f"{now.day}" + if now.day == 1: + day += "st" + elif now.day == 2: + day += "nd" + elif now.day == 3: + day += "rd" + else: + day += "th" + return f"Currently its {now.hour}:{now.minute}:{now.second} " \ + f"{calendar.month_name[now.month]} {day}, {now.year + 27474} Rubi-Ka Universal Time." + + @command(command="time", params=[Any("timezone")], access_level="member", + description="Show time for the specified timezone") + def time_zone_cmd(self, _, timezone_str): + timezone_str = timezone_str.lower() + for tz in pytz.common_timezones: + if tz.lower() == timezone_str: + return f"{tz} => {datetime.now(tz=pytz.timezone(tz)).strftime(self.time_format)}" + + return "Unknown timezone." diff --git a/modules/standard/helpbot/whompah_controller.py b/modules/standard/helpbot/whompah_controller.py new file mode 100644 index 0000000..d36c962 --- /dev/null +++ b/modules/standard/helpbot/whompah_controller.py @@ -0,0 +1,108 @@ +from core.chat_blob import ChatBlob +from core.command_param_types import Any +from core.db import DB +from core.decorators import instance, command +from core.text import Text + + +@instance() +class WhompahController: + + def inject(self, registry): + self.db: DB = registry.get_instance("db") + self.text: Text = registry.get_instance("text") + + def pre_start(self): + self.db.load_sql_file(self.module_dir + "/sql/" + "whompah_cities.sql", pre_optimized=True) + self.db.create_view("whompah_cities") + self.db.create_view("whompah_cities_rel") + + @command(command="whompah", params=[], access_level="all", + description="Show list of whompah cities") + def whompah_list_cmd(self, request): + cities = self.db.query("SELECT id, city_name, zone, faction, short_name FROM whompah_cities ORDER BY city_name") + + blob = "" + for city in cities: + blob += f"{self.text.get_formatted_faction(city.faction.lower(), city.city_name)} " \ + f"({self.text.make_tellcmd(city.short_name, f'whompah {city.short_name}')})\n" + + return ChatBlob("Whompah Cities", blob) + + @command(command="whompah", params=[Any("city1"), Any("city2")], access_level="all", + description="Show whompah route between two cities") + def whompah_travel_cmd(self, request, city_name1, city_name2): + city1 = self.get_whompah_city(city_name1) + city2 = self.get_whompah_city(city_name2) + + if not city1: + return f"Could not find whompah city {city_name1}." + elif not city2: + return f"Could not find whompah city {city_name2}." + + data = self.db.query("SELECT w1.*, w2.city2_id AS city_rel FROM whompah_cities w1 " + "JOIN whompah_cities_rel w2 ON w1.id = w2.city1_id") + + cities = {} + for city in data: + rel = cities.get(city.id, {}).get("rel", []) + rel.append(city.city_rel) + cities[city.id] = city + cities[city.id]["rel"] = rel + + path = self.format_path(self.find_path(cities, city1.id, city2.id)) + return " -> ".join(path) + + @command(command="whompah", params=[Any("city")], access_level="all", + description="Show whompah destinations for a city") + def whompah_city_cmd(self, request, city_name): + city = self.get_whompah_city(city_name) + + if not city: + return f"Could not find whompah city {city_name}." + + cities = self.db.query("SELECT w2.* FROM whompah_cities_rel w1 " + "JOIN whompah_cities w2 ON w1.city2_id = w2.id " + "WHERE w1.city1_id = ?", [city.id]) + msg = f"From {city.city_name} you can get to: " + msg += ", ".join(map(lambda x: f"{self.text.get_formatted_faction(x.faction.lower(), x.city_name)} " + f"({x.short_name})", cities)) + return msg + + def get_whompah_city(self, city): + return self.db.query_single("SELECT id, city_name, zone, faction, short_name FROM whompah_cities " + "WHERE city_name LIKE ? " + "OR short_name LIKE ?", [city, city]) + + def find_path(self, cities, start_city_id, end_city_id): + def get_and_remove(key): + value = cities[key] + del cities[key] + return value + + end_city = get_and_remove(end_city_id) + + if start_city_id == end_city_id: + return end_city + + # create stack and initialize + # start with ending city and traverse backwards so we don't have to reverse the result + stack = [end_city] + while stack: + root = stack.pop(0) + for rel in root["rel"]: + if rel in cities: + c = get_and_remove(rel) + c["parent"] = root + if c["id"] == start_city_id: + return c + stack.append(c) + return None + + def format_path(self, path): + result = [] + root = path + while root: + result.append(self.text.get_formatted_faction(root["faction"].lower(), root["city_name"])) + root = root.get("parent") + return result diff --git a/modules/standard/implant/cluster_controller.py b/modules/standard/implant/cluster_controller.py new file mode 100644 index 0000000..d6f47e0 --- /dev/null +++ b/modules/standard/implant/cluster_controller.py @@ -0,0 +1,93 @@ +from core.chat_blob import ChatBlob +from core.command_param_types import Any +from core.db import DB +from core.decorators import instance, command + + +@instance() +class ClusterController: + def inject(self, registry): + self.db: DB = registry.get_instance("db") + self.text = registry.get_instance("text") + self.command_alias_service = registry.get_instance("command_alias_service") + + def start(self): + self.command_alias_service.add_alias("clusters", "cluster") + + @command(command="cluster", params=[], access_level="member", + description="Show a list of implant slots and a list of attributes " + "that can be buffed with an implant cluster") + def cluster_list_cmd(self, _): + data = self.db.query("SELECT Name, ShortName FROM ImplantType ORDER BY ImplantTypeID") + blob = f"Slots ({len(data):d})\n" + for row in data: + blob += self.text.make_tellcmd(row.Name, f"cluster {row.ShortName}") + "\n" + + data = self.db.query("SELECT ClusterID, LongName FROM Cluster WHERE ClusterID != 0 ORDER BY LongName") + blob += f"\nAttributes ({len(data):d})\n" + for row in data: + blob += self.text.make_tellcmd(row["LongName"], f"cluster {row['LongName']}") + "\n" + + return ChatBlob("Clusters", blob) + + @command(command="cluster", params=[Any("attribute_or_slot")], access_level="member", + description="Show which clusters buff a particular attribute, " + "or which attributes can be buffed from a particular slot") + def cluster_attribute_cmd(self, _, search): + slot_data = self.db.query("SELECT ImplantTypeID, Name, ShortName FROM ImplantType " + "WHERE Name ? OR ShortName ?", + [search, search], extended_like=True) + slot_count = len(slot_data) + + if slot_count == 1: + implant_type = slot_data[0] + data = self.db.query("SELECT c2.Name AS cluster_type, c3.LongName AS attribute FROM ClusterImplantMap c1 " + "JOIN ClusterType c2 ON c1.ClusterTypeID = c2.ClusterTypeID " + "JOIN Cluster c3 ON c1.ClusterID = c3.ClusterID " + "WHERE ImplantTypeID = ? " + "ORDER BY c2.ClusterTypeID DESC, c3.LongName", + [implant_type.ImplantTypeID]) + return self.format_slot_output(implant_type.Name, data) + else: + attribute_data = self.db.query("SELECT ClusterID, LongName FROM Cluster " + "WHERE LongName ?", + [search], extended_like=True) + attribute_count = len(attribute_data) + + if attribute_count == 0: + return f"No attributes or slots found that match {search}." + else: + return self.format_attribute_output(attribute_data) + + def format_attribute_output(self, data): + count = len(data) + blob = "" + for row in data: + data2 = self.db.query("SELECT i.ShortName as Slot, c2.Name AS ClusterType " + "FROM ClusterImplantMap c1 " + "JOIN ClusterType c2 ON c1.ClusterTypeID = c2.ClusterTypeID " + "JOIN ImplantType i ON c1.ImplantTypeID = i.ImplantTypeID " + "WHERE c1.ClusterID = ? " + "ORDER BY c2.ClusterTypeID DESC", [row["ClusterID"]]) + + blob += "%s\n" % row["LongName"] + for row2 in data2: + blob += "%s: %s" % (row2["ClusterType"].capitalize(), row2["Slot"]) + blob += "\n\n" + blob += "\n* indicates Jobe Cluster" + + return ChatBlob("Cluster Search Results (%d)" % count, blob) + + def format_slot_output(self, slot, data): + count = len(data) + blob = "" + current_cluster_type = "" + for row in data: + if row.cluster_type != current_cluster_type: + blob += f"\n{row.cluster_type.capitalize()}\n" + current_cluster_type = row.cluster_type + blob += self.text.make_tellcmd(row.attribute, f"cluster {row.attribute}") + "\n" + blob += "\n\n" + blob += "* indicates Jobe Cluster" + + return ChatBlob(f"{slot} Attributes ({count:d})", blob) diff --git a/modules/standard/implant/implant_controller.py b/modules/standard/implant/implant_controller.py new file mode 100644 index 0000000..9a0dbcb --- /dev/null +++ b/modules/standard/implant/implant_controller.py @@ -0,0 +1,232 @@ +import math + +from core.chat_blob import ChatBlob +from core.command_param_types import Int +from core.decorators import instance, command +from core.dict_object import DictObject + + +# noinspection DuplicatedCode +@instance() +class ImplantController: + def __init__(self): + self.grades = ["shiny", "bright", "faded"] + + self.normal_ability_req = {1: 6, 200: 404, 201: 426, 300: 1095} + self.normal_treatment_req = {1: 11, 200: 951, 201: 1001, 300: 2051} + + self.jobe_ability_req = {1: 6, 200: 464, 201: 476, 300: 1231} + self.jobe_treatment_req = {1: 11, 200: 1005, 201: 1001, 300: 2051} + + self.ability_shiny_bonus = {1: 5, 200: 55, 201: 55, 300: 73} + self.ability_bright_bonus = {1: 3, 200: 33, 201: 33, 300: 44} + self.ability_faded_bonus = {1: 2, 200: 22, 201: 22, 300: 29} + + self.skill_shiny_bonus = {1: 6, 200: 105, 201: 106, 300: 141} + self.skill_bright_bonus = {1: 3, 200: 63, 201: 63, 300: 85} + self.skill_faded_bonus = {1: 2, 200: 42, 201: 42, 300: 57} + + self.normal_build_shiny = {1: 4, 200: 800, 201: 994, 300: 1575} + self.normal_build_bright = {1: 3, 200: 600, 201: 753, 300: 1125} + self.normal_build_faded = {1: 2, 200: 400, 201: 552, 300: 825} + + self.jobe_build_shiny = {1: 6, 200: 1250, 201: 1356, 300: 2025} + self.jobe_build_bright = {1: 4, 200: 950, 201: 1055, 300: 1575} + self.jobe_build_faded = {1: 3, 200: 650, 201: 753, 300: 1125} + + self.clean_np = {1: 1, 200: 200} + self.clean_be = {1: 4, 200: 950} + + def inject(self, registry): + self.db = registry.get_instance("db") + self.util = registry.get_instance("util") + self.text = registry.get_instance("text") + self.command_alias_service = registry.get_instance("command_alias_service") + + def pre_start(self): + self.db.load_sql_file(self.module_dir + "/sql/" + "Ability.sql", pre_optimized=True) + self.db.create_view("Ability") + self.db.load_sql_file(self.module_dir + "/sql/" + "Cluster.sql", pre_optimized=True) + self.db.create_view("Cluster") + self.db.load_sql_file(self.module_dir + "/sql/" + "ClusterImplantMap.sql", pre_optimized=True) + self.db.create_view("ClusterImplantMap") + self.db.load_sql_file(self.module_dir + "/sql/" + "ClusterType.sql", pre_optimized=True) + self.db.create_view("ClusterType") + self.db.load_sql_file(self.module_dir + "/sql/" + "EffectTypeMatrix.sql", pre_optimized=True) + self.db.create_view("EffectTypeMatrix") + self.db.load_sql_file(self.module_dir + "/sql/" + "EffectValue.sql", pre_optimized=True) + self.db.create_view("EffectValue") + self.db.load_sql_file(self.module_dir + "/sql/" + "ImplantMatrix.sql", pre_optimized=True) + self.db.create_view("ImplantMatrix") + self.db.load_sql_file(self.module_dir + "/sql/" + "ImplantType.sql", pre_optimized=True) + self.db.create_view("ImplantType") + self.db.load_sql_file(self.module_dir + "/sql/" + "Profession.sql", pre_optimized=True) + self.db.create_view("Profession") + self.db.load_sql_file(self.module_dir + "/sql/" + "Symbiant.sql", pre_optimized=True) + self.db.create_view("Symbiant") + self.db.load_sql_file(self.module_dir + "/sql/" + "SymbiantAbilityMatrix.sql", pre_optimized=True) + self.db.create_view("SymbiantAbilityMatrix") + self.db.load_sql_file(self.module_dir + "/sql/" + "SymbiantClusterMatrix.sql", pre_optimized=True) + self.db.create_view("SymbiantClusterMatrix") + self.db.load_sql_file(self.module_dir + "/sql/" + "SymbiantProfessionMatrix.sql", pre_optimized=True) + self.db.create_view("SymbiantProfessionMatrix") + self.db.load_sql_file(self.module_dir + "/sql/" + "implant_requirements.sql", pre_optimized=True) + self.db.create_view("implant_requirement") + + def start(self): + self.command_alias_service.add_alias("implants", "implant") + + @command(command="implant", params=[Int("ql")], access_level="member", + description="Shows information about an implant at given QL") + def implant_cmd(self, _, ql): + if ql > 300 or ql < 1: + return "Implant QL must be between 1 and 300." + + implant = self.get_implant_by_ql(ql) + blob = self.format_implant(implant) + + return ChatBlob(f"Implant QL {implant.ql} ({implant.ability} Ability, {implant.treatment} Treatment)", blob) + + @command(command="implant", params=[Int("ability"), Int("treatment")], access_level="member", + description="Shows highest QL implant for a given ability and treatment") + def implant_requirement_cmd(self, _, ability, treatment): + implant = self.get_implant_by_requirements(ability, treatment) + if not implant: + return "You do not have enough ability or treatment to wear an implant." + + blob = self.format_implant(implant) + + return ChatBlob(f"Implant QL {implant.ql} ({implant.ability} Ability, {implant.treatment} Treatment)", blob) + + def get_implant_by_requirements(self, ability, treatment): + row = self.db.query_single("SELECT ql FROM implant_requirement " + "WHERE ability <= ? AND treatment <= ? " + "ORDER BY ql DESC LIMIT 1", + [ability, treatment]) + + if row: + return self.get_implant_by_ql(row.ql) + else: + return None + + def format_implant(self, implant): + blob = "Requirements to Wear\n" + blob += f"{implant.treatment} Treatment\n" + blob += f"{implant.ability} Ability\n" + + blob += "\nAbility Cluster Bonuses\n" + blob += f"{implant.ability_shiny} Shiny " \ + f"({implant.ability_shiny_min} - {implant.ability_shiny_max})\n" + blob += f"{implant.ability_bright} Bright " \ + f"({implant.ability_bright_min} - {implant.ability_bright_max})\n" + blob += f"{implant.ability_faded} Faded " \ + f"({implant.ability_faded_min} - {implant.ability_faded_max})\n" + + blob += "\nSkill Cluster Bonuses\n" + blob += f"{implant.skill_shiny} Shiny " \ + f"({implant.skill_shiny_min} - {implant.skill_shiny_max})\n" + blob += f"{implant.skill_bright} Bright " \ + f"({implant.skill_bright_min} - {implant.skill_bright_max})\n" + blob += f"{implant.skill_faded} Faded " \ + f"({implant.skill_faded_min} - {implant.skill_faded_max})\n" + + blob += "\nRequirements to Clean\n" + if implant.ql <= 200: + blob += f"{implant.clean_break_and_entry} Break&Entry\n" + blob += f"{implant.clean_nano_programming} NanoProgramming\n" + else: + blob += "Refined implants cannot be cleaned\n" + + blob += "\nMax Requirements to Build (actual requirements may be lower)\n" + blob += f"{implant.build_shiny} NanoProgramming for Shiny\n" + blob += f"{implant.build_bright} NanoProgramming for Bright\n" + blob += f"{implant.build_faded} NanoProgramming for Faded\n" + + blob += "\nMin Cluster QL\n" + blob += f"{implant.minimum_cluster_shiny} Shiny\n" + blob += f"{implant.minimum_cluster_bright} Bright\n" + blob += f"{implant.minimum_cluster_faded} Faded\n" + + if implant.ql >= 99: + blob += "\nJobe Requirements\n" + + blob += "\nRequirements to Wear\n" + blob += f"{implant.jobe_treatment} Treatment\n" + blob += f"{implant.jobe_ability} Ability\n" + + blob += "\nMax Requirements to Build (actual requirements may be lower)\n" + blob += f"{implant.jobe_build_shiny} NanoProgramming for Shiny\n" + blob += f"{implant.jobe_build_bright} NanoProgramming for Bright\n" + blob += f"{implant.jobe_build_faded} NanoProgramming for Faded\n" + + blob += "\nJobe implants cannot be cleaned\n" + + blob += f"\n\nBased on the !impql command written for " \ + f"{self.text.make_chatcmd('Ttst', '/tell ttst help')} by Lucier" + + return blob + + def get_implant_by_ql(self, ql): + implant = DictObject({}) + + implant.ql = ql + + implant.treatment = int(self.util.interpolate_value(ql, self.normal_treatment_req)) + implant.ability = int(self.util.interpolate_value(ql, self.normal_ability_req)) + + implant.jobe_treatment = self.util.interpolate_value(ql, self.jobe_treatment_req) + implant.jobe_ability = self.util.interpolate_value(ql, self.jobe_ability_req) + + implant.ability_shiny = self.util.interpolate_value(ql, self.ability_shiny_bonus) + implant.ability_shiny_min, implant.ability_shiny_max = self.get_range(ql, implant.ability_shiny, + self.ability_shiny_bonus) + implant.ability_bright = self.util.interpolate_value(ql, self.ability_bright_bonus) + implant.ability_bright_min, implant.ability_bright_max = self.get_range(ql, implant.ability_bright, + self.ability_bright_bonus) + implant.ability_faded = self.util.interpolate_value(ql, self.ability_faded_bonus) + implant.ability_faded_min, implant.ability_faded_max = self.get_range(ql, implant.ability_faded, + self.ability_faded_bonus) + + implant.skill_shiny = self.util.interpolate_value(ql, self.skill_shiny_bonus) + implant.skill_shiny_min, implant.skill_shiny_max = self.get_range(ql, implant.skill_shiny, + self.skill_shiny_bonus) + implant.skill_bright = self.util.interpolate_value(ql, self.skill_bright_bonus) + implant.skill_bright_min, implant.skill_bright_max = self.get_range(ql, implant.skill_bright, + self.skill_bright_bonus) + implant.skill_faded = self.util.interpolate_value(ql, self.skill_faded_bonus) + implant.skill_faded_min, implant.skill_faded_max = self.get_range(ql, implant.skill_faded, + self.skill_faded_bonus) + + implant.clean_break_and_entry = self.util.interpolate_value(ql, self.clean_be) + implant.clean_nano_programming = self.util.interpolate_value(ql, self.clean_np) + + implant.build_shiny = self.util.interpolate_value(ql, self.normal_build_shiny) + implant.build_bright = self.util.interpolate_value(ql, self.normal_build_bright) + implant.build_faded = self.util.interpolate_value(ql, self.normal_build_faded) + + implant.jobe_build_shiny = self.util.interpolate_value(ql, self.jobe_build_shiny) + implant.jobe_build_bright = self.util.interpolate_value(ql, self.jobe_build_bright) + implant.jobe_build_faded = self.util.interpolate_value(ql, self.jobe_build_faded) + + if ql >= 201: + implant.minimum_cluster_shiny = max(201, math.floor(ql * 0.86)) + implant.minimum_cluster_bright = max(201, math.floor(ql * 0.84)) + implant.minimum_cluster_faded = max(201, math.floor(ql * 0.82)) + else: + implant.minimum_cluster_shiny = math.floor(ql * 0.86) + implant.minimum_cluster_bright = math.floor(ql * 0.84) + implant.minimum_cluster_faded = math.floor(ql * 0.82) + + return implant + + def get_range(self, ql, value, interpolation): + min_ql = ql + max_ql = ql + + while self.util.interpolate_value(min_ql - 1, interpolation) == value: + min_ql -= 1 + + while self.util.interpolate_value(max_ql + 1, interpolation) == value: + max_ql += 1 + + return [min_ql, max_ql] diff --git a/modules/standard/implant/ladder_controller.py b/modules/standard/implant/ladder_controller.py new file mode 100644 index 0000000..fa3fc7f --- /dev/null +++ b/modules/standard/implant/ladder_controller.py @@ -0,0 +1,169 @@ +import math + +from core.chat_blob import ChatBlob +from core.command_param_types import Const, Int +from core.decorators import instance, command +from core.dict_object import DictObject + + +@instance() +class LadderController: + def __init__(self): + self.grades = ["shiny", "bright", "faded"] + + def inject(self, registry): + self.db = registry.get_instance("db") + self.util = registry.get_instance("util") + self.text = registry.get_instance("text") + + @command(command="ladder", params=[Const("treatment"), Int("starting_amount")], access_level="member", + description="Show sequence of laddering implants for treatment", + extended_description="The starting amount should be the treatment or " + "ability you have with all nano buffs, " + "perks, and items-buffing equipment equipped, " + "but minus any buffs from implants that you have equipped.") + def ladder_treatment_cmd(self, _, _1, treatment): + if treatment < 11: + return "Base treatment must be at least 11." + + prefix = "skill_" + result = self.optimized_steps(prefix, treatment, self.get_implant_by_max_treatment) + + blob = self.format_steps("treatment", result.steps, treatment, + (treatment + self.calculate_total(result.slots, prefix))) + + return ChatBlob("Laddering Treatment", blob) + + @command(command="ladder", params=[Const("ability"), Int("starting_amount")], access_level="member", + description="Show sequence of laddering implants for ability", + extended_description="The starting amount should be the treatment or " + "ability you have with all nano buffs, " + "perks, and items-buffing equipment equipped, " + "but minus any buffs from implants you have equipped.") + def ladder_ability_cmd(self, _, _1, ability): + if ability < 6: + return "Base ability must be at least 6." + + prefix = "ability_" + result = self.optimized_steps(prefix, ability, self.get_implant_by_max_ability) + + blob = self.format_steps("ability", result.steps, ability, + (ability + self.calculate_total(result.slots, prefix))) + + return ChatBlob("Laddering Ability", blob) + + def format_steps(self, label, steps, starting, ending): + blob = f"Starting {label}: {starting}\n\n" + blob += "-------------------\n\n" + for (action, grade, implant) in steps: + blob += f"{action.capitalize()} {grade} QL {implant.ql:d}\n\n" + + blob += "-------------------\n\n" + blob += "Ending %s: %s\n\n" % (label, ending) + blob += "\nInspired by a command written by Lucier of the same name" + + return blob + + def optimized_steps(self, prefix, base_value, get_max_implant): + grade_combinations = [self.grades, + ["shiny", "faded", "bright"], + ["bright", "shiny", "faded"], + ["bright", "faded", "shiny"], + ["faded", "shiny", "bright"], + ["faded", "bright", "shiny"]] + + best = None + for grade_combo in grade_combinations: + result = self.get_steps(prefix, base_value, get_max_implant, + lambda current_grade: self.get_next_grade(current_grade, grade_combo)) + if not best: + best = result + else: + result_value = self.calculate_total(result.slots, prefix) + best_value = self.calculate_total(best.slots, prefix) + if result_value > best_value: + # this is here as a sanity check, but it appears + # that the result is always the same no matter which order you insert the implants + best = result + elif best_value == result_value and len(result.steps) < len(best.steps): + # this optimizes for the least amount of steps/implants + best = result + + return best + + def get_steps(self, prefix, base_value, get_max_implant, get_next_grade): + slots = DictObject({"shiny": None, + "bright": None, + "faded": None}) + + steps = [] + + num_skipped = 0 + current_grade = None + while num_skipped < 3: + current_grade = get_next_grade(current_grade) + + # find next highest possible implant + new_implant = get_max_implant(self.calculate_total(slots, prefix, current_grade) + base_value) + + if not slots.get(current_grade): + steps.append(["add", current_grade, new_implant]) + slots[current_grade] = new_implant + elif new_implant.get(prefix + current_grade) > slots.get(current_grade).get(prefix + current_grade): + steps.append(["remove", current_grade, slots.get(current_grade)]) + steps.append(["add", current_grade, new_implant]) + slots[current_grade] = new_implant + else: + num_skipped += 1 + + return DictObject({"slots": slots, + "steps": steps}) + + def get_next_grade(self, current_grade, grades): + if not current_grade: + next_index = 0 + else: + next_index = grades.index(current_grade) + 1 + if next_index >= len(grades): + next_index = 0 + + return grades[next_index] + + def get_implant_by_max_treatment(self, treatment): + return self.db.query_single("SELECT * from implant_requirement " + "WHERE treatment <= ? " + "ORDER BY ql DESC " + "LIMIT 1", + [treatment]) + + def get_implant_by_max_ability(self, ability): + return self.db.query_single("SELECT * from implant_requirement " + "WHERE ability <= ? " + "ORDER BY ql DESC " + "LIMIT 1", + [ability]) + + def get_cluser_min_ql(self, ql, grade): + if grade == "shiny": + result = math.floor(ql * 0.86) + elif grade == "bright": + result = math.floor(ql * 0.84) + elif grade == "faded": + result = math.floor(ql * 0.82) + else: + raise Exception("Unknown grade: '%s'" % grade) + + if ql >= 201: + return max(201, result) + else: + return result + + def calculate_total(self, slots, prefix, skip_grade=None): + value = 0 + for grade in self.grades: + if grade != skip_grade: + implant = slots.get(grade) + if implant: + value += implant.get(prefix + grade) + + return value diff --git a/modules/standard/implant/premade_implant_controller.py b/modules/standard/implant/premade_implant_controller.py new file mode 100644 index 0000000..3ed046a --- /dev/null +++ b/modules/standard/implant/premade_implant_controller.py @@ -0,0 +1,133 @@ +from core.chat_blob import ChatBlob +from core.command_param_types import Any +from core.decorators import instance, command + + +# noinspection SqlCaseVsIf +@instance() +class PremadeImplantController: + def __init__(self): + self.slots = ["head", "eye", "ear", "rarm", "chest", "larm", + "rwrist", "waist", "lwrist", "rhand", "legs", "lhand", "feet"] + + def inject(self, registry): + self.db = registry.get_instance("db") + self.util = registry.get_instance("util") + self.text = registry.get_instance("text") + + def pre_start(self): + self.db.load_sql_file(self.module_dir + "/sql/" + "premade_implant.sql", pre_optimized=True) + self.db.create_view("premade_implant") + + @command(command="premade", params=[], access_level="member", + description="Search for implants in the premade implant booths") + def premade_list_cmd(self, _): + blob = "Professions\n" + for row in self.db.query("SELECT Name FROM Profession " + "WHERE ID IN (SELECT ProfessionID FROM premade_implant) " + "ORDER BY Name"): + blob += self.text.make_tellcmd(row.Name, f"premade {row.Name}") + "\n" + + blob += "\nSlots\n" + for row in self.db.query("SELECT * FROM ImplantType ORDER BY ImplantTypeID"): + blob += self.text.make_tellcmd(row.Name, f"premade {row.ShortName}") + "\n" + + blob += "\nModifiers\n" + sql = "SELECT LongName FROM Cluster WHERE ClusterID IN " \ + "(SELECT ShinyClusterID From premade_implant UNION SELECT BrightClusterID " \ + "FROM premade_implant UNION SELECT FadedClusterID FROM premade_implant) " \ + "AND ClusterID != 0 " \ + "ORDER BY LongName" + for row in self.db.query(sql): + blob += self.text.make_tellcmd(row.LongName, "premade %s" % row.LongName) + "\n" + + return ChatBlob("Premade Implant", blob) + + @command(command="premade", + params=[Any("search")], + access_level="member", + description="Search for implants in the premade implant booths", + extended_description="Search can be a profession, implant slot, or modifier (ability/skill)") + def premade_show_cmd(self, _, search): + search = search.lower() + + prof = self.util.get_profession(search) + slot = self.get_slot(search) + if prof: + blob = f"Search by profession: {prof}\n\n" + results = self.search_by_profession(prof) + elif slot: + blob = f"Search by slot: {slot.ShortName}\n\n" + results = self.search_by_slot(slot.ShortName) + else: + blob = f"Search by modifier: {search}\n\n" + results = self.search_by_modifier(search) + + for row in results: + blob += f"{row.profession} {row.slot} " \ + f"{row.ability} {row.shiny}, {row.bright}, {row.faded}\n" + + return ChatBlob(f"Premade Implant Search Results ({len(results):d})", blob) + + def search_by_profession(self, profession): + sql = """SELECT + i.Name AS slot, + p2.Name AS profession, + a.Name AS ability, + CASE WHEN c1.ClusterID = 0 THEN 'N/A' ELSE c1.LongName END AS shiny, + CASE WHEN c2.ClusterID = 0 THEN 'N/A' ELSE c2.LongName END AS bright, + CASE WHEN c3.ClusterID = 0 THEN 'N/A' ELSE c3.LongName END AS faded + FROM premade_implant p + JOIN ImplantType i ON p.ImplantTypeID = i.ImplantTypeID + JOIN Profession p2 ON p.ProfessionID = p2.ID + JOIN Ability a ON p.AbilityID = a.AbilityID + JOIN Cluster c1 ON p.ShinyClusterID = c1.ClusterID + JOIN Cluster c2 ON p.BrightClusterID = c2.ClusterID + JOIN Cluster c3 ON p.FadedClusterID = c3.ClusterID + WHERE p2.Name = ? + ORDER BY slot""" + + return self.db.query(sql, [profession]) + + def search_by_slot(self, slot): + sql = """SELECT + i.Name AS slot, + p2.Name AS profession, + a.Name AS ability, + CASE WHEN c1.ClusterID = 0 THEN 'N/A' ELSE c1.LongName END AS shiny, + CASE WHEN c2.ClusterID = 0 THEN 'N/A' ELSE c2.LongName END AS bright, + CASE WHEN c3.ClusterID = 0 THEN 'N/A' ELSE c3.LongName END AS faded + FROM premade_implant p + JOIN ImplantType i ON p.ImplantTypeID = i.ImplantTypeID + JOIN Profession p2 ON p.ProfessionID = p2.ID + JOIN Ability a ON p.AbilityID = a.AbilityID + JOIN Cluster c1 ON p.ShinyClusterID = c1.ClusterID + JOIN Cluster c2 ON p.BrightClusterID = c2.ClusterID + JOIN Cluster c3 ON p.FadedClusterID = c3.ClusterID + WHERE i.ShortName = ? + ORDER BY shiny, bright, faded""" + + return self.db.query(sql, [slot]) + + def search_by_modifier(self, modifier): + sql = """SELECT + i.Name AS slot, + p2.Name AS profession, + a.Name AS ability, + CASE WHEN c1.ClusterID = 0 THEN 'N/A' ELSE c1.LongName END AS shiny, + CASE WHEN c2.ClusterID = 0 THEN 'N/A' ELSE c2.LongName END AS bright, + CASE WHEN c3.ClusterID = 0 THEN 'N/A' ELSE c3.LongName END AS faded + FROM premade_implant p + JOIN ImplantType i ON p.ImplantTypeID = i.ImplantTypeID + JOIN Profession p2 ON p.ProfessionID = p2.ID + JOIN Ability a ON p.AbilityID = a.AbilityID + JOIN Cluster c1 ON p.ShinyClusterID = c1.ClusterID + JOIN Cluster c2 ON p.BrightClusterID = c2.ClusterID + JOIN Cluster c3 ON p.FadedClusterID = c3.ClusterID + WHERE c1.LongName ? OR c2.LongName ? OR c3.LongName ? + """ + + return self.db.query(sql, [modifier, modifier, modifier], extended_like=True) + + def get_slot(self, search): + return self.db.query_single("SELECT * FROM ImplantType WHERE Name LIKE ? OR ShortName LIKE ?", [search, search]) diff --git a/modules/standard/implant/sql/Ability.sql b/modules/standard/implant/sql/Ability.sql new file mode 100644 index 0000000..ad46954 --- /dev/null +++ b/modules/standard/implant/sql/Ability.sql @@ -0,0 +1,15 @@ +# noinspection LongLineForFile + +DROP TABLE IF EXISTS Ability; +CREATE TABLE IF NOT EXISTS Ability +( + AbilityID INT NOT NULL PRIMARY KEY, + Name VARCHAR(20) NOT NULL +); +INSERT INTO Ability (AbilityID, Name) +VALUES (1, 'Agility'), + (2, 'Intelligence'), + (3, 'Psychic'), + (4, 'Sense'), + (5, 'Stamina'), + (6, 'Strength'); diff --git a/modules/standard/implant/sql/Cluster.sql b/modules/standard/implant/sql/Cluster.sql new file mode 100644 index 0000000..fdc83a0 --- /dev/null +++ b/modules/standard/implant/sql/Cluster.sql @@ -0,0 +1,125 @@ +# noinspection LongLineForFile + +DROP TABLE IF EXISTS Cluster; +CREATE TABLE IF NOT EXISTS Cluster +( + ClusterID INT NOT NULL PRIMARY KEY, + EffectTypeID INT NOT NULL, + LongName VARCHAR(50) NOT NULL, + NPReq INT NOT NULL, + AltName VARCHAR(50) NOT NULL, + INDEX `LongName` (`LongName`) USING BTREE +); +INSERT INTO Cluster (ClusterID, EffectTypeID, LongName, NPReq, AltName) +VALUES (0, 1, '', 0, ''), + (2, 1, '1 Handed Blunt Weapons', 720, '1h Blunt'), + (3, 1, '1 Handed Edged Weapon', 760, '1h Edged'), + (4, 1, '2 Handed Blunt Weapons', 720, '2h Blunt'), + (5, 1, '2 Handed Edged Weapons', 760, '2h Edged'), + (6, 1, 'Adventuring', 600, ''), + (7, 2, 'Agility', 900, ''), + (8, 1, 'Aimed Shot', 840, ''), + (9, 1, 'Assault Rifle', 900, ''), + (10, 16, 'Biological Metamorphosis', 960, ''), + (11, 1, 'Body Development', 800, ''), + (12, 1, 'Bow', 800, ''), + (13, 1, 'Bow Special Attack', 800, ''), + (14, 1, 'Brawling', 660, 'Brawl'), + (15, 1, 'Breaking and Entry', 800, ''), + (16, 1, 'Burst', 840, ''), + (17, 3, 'Chemical AC', 800, ''), + (18, 1, 'Chemistry', 800, ''), + (19, 3, 'Cold AC', 800, ''), + (20, 1, 'Computer Literacy', 800, ''), + (21, 1, 'Concealment', 720, ''), + (22, 1, 'Dimach', 900, ''), + (24, 1, 'Dodge Ranged Attacks', 800, 'Dodge Ranged'), + (25, 1, 'Duck Explosives', 800, ''), + (26, 1, 'Electrical Engineering', 800, ''), + (27, 3, 'Energy AC', 900, ''), + (28, 1, 'Evade Close Combat', 800, 'Evade Close'), + (29, 1, 'Fast Attack', 760, ''), + (30, 3, 'Fire AC', 800, ''), + (31, 1, 'First Aid', 720, ''), + (32, 1, 'Fling Shot', 720, ''), + (33, 1, 'Full Auto', 900, ''), + (34, 1, 'Grenade Throwing', 760, 'Grenade'), + (35, 1, 'Heavy Weapons', 400, ''), + (36, 3, 'Projectile AC', 900, ''), + (37, 2, 'Intelligence', 900, ''), + (38, 1, 'Map Navigation', 500, ''), + (39, 1, 'Martial Arts', 1000, ''), + (40, 16, 'Matter Creation', 960, ''), + (41, 16, 'Matter Metamorphosis', 960, ''), + (42, 4, 'Max Health', 1000, ''), + (43, 4, 'Max Nano', 1000, ''), + (44, 1, 'Mechanical Engineering', 800, ''), + (45, 1, 'Melee Energy Weapons', 800, 'Melee Energy'), + (46, 1, 'Melee Weapons Initiative', 800, 'Melee Init'), + (47, 3, 'Melee AC', 900, ''), + (48, 1, 'MG/SMG', 800, 'SMG'), + (49, 1, 'Multiple Melee Weapons', 900, 'Multi Melee'), + (50, 1, 'Multiple Ranged Weapons', 800, 'Multi Ranged'), + (51, 1, 'Nano Initiative', 800, 'Nano Init'), + (52, 1, 'Nano Pool', 1200, ''), + (53, 1, 'Nano Programming', 800, ''), + (54, 1, 'Nano Resistance', 800, 'Nano Resist'), + (55, 1, 'Parry', 840, ''), + (56, 1, 'Perception', 800, ''), + (57, 1, 'Pharmaceuticals', 800, ''), + (58, 1, 'Physical Initiative', 800, 'Physical Init'), + (59, 1, 'Piercing', 640, ''), + (60, 1, 'Pistol', 800, ''), + (61, 2, 'Psychic', 900, ''), + (62, 16, 'Psychological Modifications', 960, ''), + (63, 1, 'Psychology', 800, ''), + (64, 1, 'Quantum Physics', 1000, ''), + (65, 3, 'Radiation AC', 800, ''), + (66, 1, 'Ranged Energy', 800, ''), + (67, 1, 'Ranged Initiative', 800, 'Ranged Init'), + (68, 1, 'Rifle', 900, ''), + (69, 1, 'Riposte', 1000, ''), + (70, 1, 'Run Speed', 1000, ''), + (71, 2, 'Sense', 900, ''), + (72, 16, 'Sensory Improvement', 880, ''), + (73, 1, 'Sharp Objects', 500, ''), + (74, 1, 'Shotgun', 680, ''), + (75, 1, 'Sneak Attack', 1000, ''), + (76, 2, 'Stamina', 900, ''), + (77, 2, 'Strength', 900, ''), + (78, 1, 'Swimming', 500, ''), + (79, 16, 'Time and Space', 960, ''), + (80, 1, 'Trap Disarming', 720, ''), + (81, 1, 'Treatment', 860, ''), + (82, 1, 'Tutoring', 520, ''), + (83, 1, 'Vehicle Air', 400, ''), + (84, 1, 'Vehicle Ground', 600, ''), + (85, 1, 'Vehicle Water', 480, ''), + (86, 1, 'Weapon Smithing', 800, ''), + (87, 15, 'Nano Delta*', 1, 'Nano Delta'), + (88, 15, 'Heal Delta*', 1, 'Heal Delta'), + (89, 8, 'Add All Defense*', 1, 'Defense modifier'), + (90, 9, 'Add All Offense*', 1, 'Offense modifier'), + (91, 10, 'Add Max NCU*', 1, 'NCU Memory'), + (92, 5, 'Add XP (%)*', 1, 'Experience Modifier'), + (93, 12, 'Nano Interrupt (%)*', 1, 'Nano interrupt chance'), + (94, 6, 'Add Chemical Damage*', 1, 'Chemical damage modifier'), + (95, 6, 'Add Energy Damage*', 1, 'Energy damage modifier'), + (96, 6, 'Add Fire Damage*', 1, 'Fire damage modifier'), + (97, 6, 'Add Melee Damage*', 1, 'Melee damage modifier'), + (98, 6, 'Add Poison Damage*', 1, 'Poison damage modifier'), + (99, 6, 'Add Projectile Damage*', 1, 'Projectile damage modifier'), + (100, 6, 'Add Radiation Damage*', 1, 'Radiation damage modifier'), + (101, 7, 'Chemical Damage Shield*', 1, 'Shield Chemical Damage'), + (102, 7, 'Cold Damage Shield*', 1, 'Shield Cold Damage'), + (103, 7, 'Energy Damage Shield*', 1, 'Shield Energy Damage'), + (104, 7, 'Fire Damage Shield*', 1, 'Shield Fire Damage'), + (105, 7, 'Melee Damage Shield*', 1, 'Shield Melee Damage'), + (106, 7, 'Poison Damage Shield*', 1, 'Shield Poison Damage'), + (107, 7, 'Projectile Damage Shield*', 1, 'Shield Projectile Damage'), + (108, 7, 'Radiation Damage Shield*', 1, 'Shield Radiation Damage'), + (109, 11, 'Skill Lock (%)*', 1, 'Skill Lock Modifier'), + (110, 13, 'Nano Cost (%)*', 1, 'Nano cost modifier'), + (111, 14, 'Add Nano Range (%)*', 1, 'Nano Range'), + (112, 3, 'Poison AC', 800, ''), + (130, 14, 'Add Weapon Range (%)*', 1, ''); \ No newline at end of file diff --git a/modules/standard/implant/sql/ClusterImplantMap.sql b/modules/standard/implant/sql/ClusterImplantMap.sql new file mode 100644 index 0000000..a9615af --- /dev/null +++ b/modules/standard/implant/sql/ClusterImplantMap.sql @@ -0,0 +1,343 @@ +# noinspection LongLineForFile + +DROP TABLE IF EXISTS ClusterImplantMap; +CREATE TABLE IF NOT EXISTS ClusterImplantMap +( + ImplantTypeID INT NOT NULL, + ClusterID INT NOT NULL, + ClusterTypeID INT NOT NULL +); +INSERT INTO ClusterImplantMap (ImplantTypeID, ClusterID, ClusterTypeID) +VALUES (1, 8, 3), + (1, 9, 1), + (1, 12, 1), + (1, 18, 2), + (1, 20, 2), + (1, 21, 1), + (1, 26, 3), + (1, 34, 2), + (1, 35, 2), + (1, 37, 2), + (1, 38, 3), + (1, 40, 1), + (1, 44, 2), + (1, 49, 2), + (1, 50, 1), + (1, 51, 2), + (1, 53, 2), + (1, 56, 2), + (1, 57, 2), + (1, 60, 1), + (1, 62, 2), + (1, 63, 1), + (1, 64, 2), + (1, 66, 2), + (1, 68, 3), + (1, 72, 2), + (1, 73, 1), + (1, 75, 1), + (1, 79, 1), + (1, 81, 2), + (1, 82, 3), + (1, 83, 3), + (1, 84, 2), + (1, 85, 2), + (1, 86, 1), + (2, 10, 3), + (2, 13, 3), + (2, 18, 3), + (2, 20, 3), + (2, 22, 2), + (2, 26, 2), + (2, 31, 3), + (2, 37, 3), + (2, 38, 2), + (2, 40, 3), + (2, 41, 3), + (2, 43, 3), + (2, 44, 3), + (2, 45, 3), + (2, 51, 3), + (2, 52, 2), + (2, 53, 3), + (2, 54, 3), + (2, 56, 1), + (2, 57, 3), + (2, 61, 3), + (2, 62, 3), + (2, 63, 3), + (2, 64, 3), + (2, 66, 3), + (2, 67, 2), + (2, 71, 1), + (2, 72, 3), + (2, 79, 3), + (2, 80, 1), + (2, 81, 3), + (2, 82, 1), + (2, 83, 1), + (2, 84, 3), + (2, 85, 3), + (2, 86, 2), + (2, 112, 3), + (3, 21, 2), + (3, 37, 1), + (3, 38, 1), + (3, 56, 3), + (3, 61, 1), + (3, 62, 1), + (3, 63, 2), + (3, 82, 2), + (3, 83, 2), + (3, 84, 1), + (3, 85, 1), + (3, 91, 3), + (3, 92, 3), + (3, 110, 2), + (4, 4, 1), + (4, 6, 1), + (4, 10, 2), + (4, 11, 3), + (4, 15, 1), + (4, 22, 3), + (4, 27, 3), + (4, 36, 2), + (4, 41, 2), + (4, 42, 3), + (4, 43, 1), + (4, 47, 3), + (4, 48, 1), + (4, 51, 1), + (4, 52, 3), + (4, 61, 2), + (4, 71, 3), + (4, 72, 1), + (4, 76, 3), + (4, 77, 1), + (4, 93, 1), + (4, 109, 1), + (4, 112, 1), + (5, 5, 1), + (5, 6, 2), + (5, 7, 1), + (5, 10, 1), + (5, 11, 2), + (5, 14, 1), + (5, 17, 3), + (5, 19, 3), + (5, 22, 1), + (5, 24, 1), + (5, 25, 2), + (5, 27, 1), + (5, 28, 1), + (5, 30, 3), + (5, 33, 1), + (5, 36, 1), + (5, 42, 2), + (5, 43, 2), + (5, 46, 1), + (5, 47, 2), + (5, 52, 1), + (5, 59, 1), + (5, 65, 3), + (5, 71, 2), + (5, 74, 1), + (5, 76, 1), + (5, 110, 3), + (6, 6, 3), + (6, 7, 3), + (6, 11, 1), + (6, 24, 3), + (6, 25, 3), + (6, 27, 2), + (6, 28, 2), + (6, 36, 3), + (6, 42, 1), + (6, 46, 2), + (6, 47, 1), + (6, 70, 1), + (6, 76, 2), + (6, 78, 3), + (6, 88, 1), + (6, 91, 1), + (6, 92, 1), + (6, 93, 3), + (6, 103, 1), + (6, 104, 1), + (6, 107, 1), + (6, 108, 1), + (6, 109, 3), + (6, 112, 2), + (7, 7, 2), + (7, 21, 3), + (7, 24, 2), + (7, 25, 1), + (7, 28, 3), + (7, 39, 2), + (7, 46, 3), + (7, 58, 3), + (7, 75, 3), + (7, 87, 1), + (7, 88, 2), + (7, 89, 1), + (7, 90, 1), + (7, 92, 2), + (7, 101, 2), + (7, 102, 2), + (7, 105, 2), + (7, 106, 2), + (8, 4, 2), + (8, 5, 2), + (8, 12, 2), + (8, 14, 3), + (8, 15, 2), + (8, 17, 1), + (8, 41, 1), + (8, 58, 1), + (8, 59, 2), + (8, 65, 2), + (8, 77, 2), + (8, 78, 1), + (8, 88, 3), + (8, 89, 3), + (8, 90, 3), + (8, 110, 1), + (8, 111, 3), + (9, 45, 2), + (9, 49, 3), + (9, 50, 3), + (9, 54, 1), + (9, 55, 2), + (9, 68, 1), + (9, 69, 2), + (9, 70, 2), + (9, 94, 2), + (9, 95, 2), + (9, 96, 2), + (9, 97, 2), + (9, 98, 2), + (9, 99, 2), + (9, 100, 2), + (9, 101, 1), + (9, 102, 1), + (9, 103, 3), + (9, 104, 3), + (9, 105, 1), + (9, 106, 1), + (9, 107, 3), + (9, 108, 3), + (10, 19, 1), + (10, 29, 3), + (10, 30, 2), + (10, 31, 1), + (10, 39, 1), + (10, 66, 1), + (10, 80, 2), + (10, 93, 2), + (10, 101, 3), + (10, 102, 3), + (10, 103, 2), + (10, 104, 2), + (10, 105, 3), + (10, 106, 3), + (10, 107, 2), + (10, 108, 2), + (10, 109, 2), + (10, 111, 2), + (11, 2, 3), + (11, 3, 3), + (11, 4, 3), + (11, 5, 3), + (11, 9, 3), + (11, 12, 3), + (11, 14, 2), + (11, 15, 3), + (11, 16, 3), + (11, 17, 2), + (11, 29, 1), + (11, 32, 3), + (11, 33, 3), + (11, 34, 3), + (11, 35, 3), + (11, 44, 1), + (11, 48, 3), + (11, 55, 1), + (11, 58, 2), + (11, 59, 3), + (11, 65, 1), + (11, 69, 1), + (11, 74, 3), + (11, 77, 3), + (11, 78, 2), + (11, 87, 2), + (11, 89, 2), + (11, 90, 2), + (11, 111, 1), + (12, 2, 2), + (12, 3, 2), + (12, 8, 2), + (12, 13, 1), + (12, 16, 2), + (12, 32, 1), + (12, 33, 2), + (12, 45, 1), + (12, 49, 1), + (12, 50, 2), + (12, 54, 2), + (12, 55, 3), + (12, 60, 3), + (12, 67, 3), + (12, 68, 2), + (12, 69, 3), + (12, 70, 3), + (12, 73, 3), + (12, 75, 2), + (12, 87, 3), + (12, 91, 2), + (12, 94, 1), + (12, 95, 1), + (12, 96, 1), + (12, 97, 1), + (12, 98, 1), + (12, 99, 1), + (12, 100, 1), + (13, 2, 1), + (13, 3, 1), + (13, 8, 1), + (13, 9, 2), + (13, 13, 2), + (13, 16, 1), + (13, 18, 1), + (13, 19, 2), + (13, 20, 1), + (13, 26, 1), + (13, 29, 2), + (13, 30, 1), + (13, 31, 2), + (13, 32, 2), + (13, 34, 1), + (13, 35, 1), + (13, 39, 3), + (13, 40, 2), + (13, 48, 2), + (13, 53, 1), + (13, 57, 1), + (13, 60, 2), + (13, 64, 1), + (13, 67, 1), + (13, 73, 2), + (13, 74, 2), + (13, 79, 2), + (13, 80, 3), + (13, 81, 1), + (13, 86, 3), + (13, 94, 3), + (13, 95, 3), + (13, 96, 3), + (13, 97, 3), + (13, 98, 3), + (13, 99, 3), + (13, 100, 3), + (1, 130, 3), + (7, 130, 2), + (11, 130, 1); diff --git a/modules/standard/implant/sql/ClusterType.sql b/modules/standard/implant/sql/ClusterType.sql new file mode 100644 index 0000000..d56f5c8 --- /dev/null +++ b/modules/standard/implant/sql/ClusterType.sql @@ -0,0 +1,10 @@ +DROP TABLE IF EXISTS ClusterType; +CREATE TABLE IF NOT EXISTS ClusterType +( + ClusterTypeID INT NOT NULL PRIMARY KEY, + Name VARCHAR(10) NOT NULL +); +INSERT INTO ClusterType (ClusterTypeID, Name) +VALUES (1, 'faded'), + (2, 'bright'), + (3, 'shiny'); diff --git a/modules/standard/implant/sql/EffectTypeMatrix.sql b/modules/standard/implant/sql/EffectTypeMatrix.sql new file mode 100644 index 0000000..fd5d1e9 --- /dev/null +++ b/modules/standard/implant/sql/EffectTypeMatrix.sql @@ -0,0 +1,29 @@ +# noinspection LongLineForFile + +DROP TABLE IF EXISTS EffectTypeMatrix; +CREATE TABLE IF NOT EXISTS EffectTypeMatrix +( + ID INT NOT NULL PRIMARY KEY, + Name VARCHAR(20) NOT NULL, + MinValLow INT NOT NULL, + MaxValLow INT NOT NULL, + MinValHigh INT NOT NULL, + MaxValHigh INT NOT NULL +); +INSERT INTO EffectTypeMatrix (ID, Name, MinValLow, MaxValLow, MinValHigh, MaxValHigh) +VALUES (1, 'Skill', 6, 105, 106, 141), + (2, 'Ability', 5, 55, 55, 73), + (3, 'AC', 8, 505, 508, 687), + (4, 'Max H/N', 7, 405, 407, 550), + (5, 'XP', 5, 7, 7, 8), + (6, 'Add Dmg', 5, 18, 18, 22), + (7, 'Reflect', 5, 20, 20, 25), + (8, 'Add Def', 6, 130, 131, 175), + (9, 'Add Off', 5, 30, 30, 39), + (10, 'NCU', 5, 30, 30, 39), + (11, 'Skill Lock', 5, -5, -5, -9), + (12, 'Interrupt', 5, -5, -5, -9), + (13, 'Nano Cost', 5, -2, -3, -5), + (14, 'Range', 5, 15, 15, 19), + (15, 'Delta', 5, 55, 55, 73), + (16, 'NanoSkill', 6, 105, 106, 141); diff --git a/modules/standard/implant/sql/EffectValue.sql b/modules/standard/implant/sql/EffectValue.sql new file mode 100644 index 0000000..007ebf8 --- /dev/null +++ b/modules/standard/implant/sql/EffectValue.sql @@ -0,0 +1,82 @@ +# noinspection LongLineForFile + +DROP TABLE IF EXISTS EffectValue; +CREATE TABLE IF NOT EXISTS EffectValue +( + EffectID INT NOT NULL PRIMARY KEY, + Name VARCHAR(50) NOT NULL, + Q200Value INT NOT NULL +); +INSERT INTO EffectValue (EffectID, Name, Q200Value) +VALUES (1, 'AC Faded', 162), + (2, 'AC Bright', 243), + (3, 'AC Shining', 405), + (4, 'AC Faded QL300', 275), + (5, 'AC Bright QL300', 412), + (6, 'AC Shining QL300', 687), + (7, 'Life/Nano Faded', 162), + (8, 'Life/Nano Bright', 243), + (9, 'Life/Nano Shining', 405), + (10, 'Life/Nano Faded QL300', 220), + (11, 'Life/Nano Bright QL300', 330), + (12, 'Life/Nano Shining QL300', 550), + (13, 'AddAll Faded', 52), + (14, 'AddAll Bright', 78), + (15, 'AddAll Shining', 130), + (16, 'AddAll Faded QL300', 70), + (17, 'AddAll Bright QL300', 105), + (18, 'AddAll Shining QL300', 175), + (19, 'MaxNCU Faded', 12), + (20, 'MaxNCU Bright', 18), + (21, 'MaxNCU Shining', 30), + (22, 'MaxNCU Faded QL300', 16), + (23, 'MaxNCU Bright QL300', 23), + (24, 'MaxNCU Shining QL300', 39), + (25, 'XPMod Faded', 3), + (26, 'XPMod Bright', 4), + (27, 'XPMod Shining', 7), + (28, 'XPMod Faded QL300', 3), + (29, 'XPMod Bright QL300', 5), + (30, 'XPMod Shining QL300', 8), + (31, 'Nano Interrupt Faded', -2), + (32, 'Nano Interrupt Bright', -3), + (33, 'Nano Interrupt Shining', -5), + (34, 'Nano Interrupt Faded QL300', -3), + (35, 'Nano Interrupt Bright QL300', -5), + (36, 'Nano Interrupt Shining QL300', -9), + (37, 'Shield Faded', 8), + (38, 'Shield Bright', 12), + (39, 'Shield Shining', 20), + (40, 'Shield Faded QL300', 10), + (41, 'Shield Bright QL300', 15), + (42, 'Shield Shining QL300', 25), + (43, 'Damage Faded', 7), + (44, 'Damage Bright', 10), + (45, 'Damage Shining', 18), + (46, 'Damage Faded QL300', 9), + (47, 'Damage Bright QL300', 13), + (48, 'Damage Shining QL300', 22), + (49, 'Range Faded', 6), + (50, 'Range Bright', 9), + (51, 'Range Shining', 15), + (52, 'Range Faded QL300', 7), + (53, 'Range Bright QL300', 11), + (54, 'Range Shining QL300', 19), + (55, 'Nano Cost Faded', -1), + (56, 'Nano Cost Bright', -2), + (57, 'Nano Cost Shining', -2), + (58, 'Nano Cost Faded QL300', -2), + (59, 'Nano Cost Bright QL300', -3), + (60, 'Nano Cost Shining QL300', -5), + (61, 'Skill Faded ', 42), + (62, 'Skill Bright', 63), + (63, 'Skill Shining', 105), + (64, 'Ability Faded', 22), + (65, 'Ability Bright', 33), + (66, 'Ability Shining', 55), + (67, 'Skill Faded QL300', 57), + (68, 'Skill Bright QL300', 85), + (69, 'Skill Shining QL300', 141), + (70, 'Ability Faded QL300', 29), + (71, 'Ability Bright QL300', 44), + (72, 'Ability Shining QL300', 73); \ No newline at end of file diff --git a/modules/standard/implant/sql/ImplantMatrix.sql b/modules/standard/implant/sql/ImplantMatrix.sql new file mode 100644 index 0000000..43ff800 --- /dev/null +++ b/modules/standard/implant/sql/ImplantMatrix.sql @@ -0,0 +1,11027 @@ +# noinspection LongLineForFile + +DROP TABLE IF EXISTS ImplantMatrix; +CREATE TABLE IF NOT EXISTS ImplantMatrix +( + ID INT NOT NULL PRIMARY KEY, + ShiningID INT NOT NULL, + BrightID INT NOT NULL, + FadedID INT NOT NULL, + AbilityID INT NOT NULL, + TreatQL1 INT NOT NULL, + AbilityQL1 INT NOT NULL, + TreatQL200 INT NOT NULL, + AbilityQL200 INT NOT NULL, + TreatQL201 INT NOT NULL, + AbilityQL201 INT NOT NULL, + TreatQL300 INT NOT NULL, + AbilityQL300 INT NOT NULL +); +INSERT INTO ImplantMatrix +VALUES (1, 102, 109, 0, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2, 87, 3, 100, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3, 95, 13, 20, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4, 11, 61, 15, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5, 60, 54, 13, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6, 40, 86, 83, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7, 64, 86, 80, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8, 66, 38, 56, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9, 25, 27, 42, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (10, 100, 0, 18, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (11, 38, 49, 86, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (12, 21, 0, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (13, 8, 49, 63, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (14, 8, 49, 73, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (15, 96, 73, 57, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (16, 0, 0, 72, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (17, 86, 79, 30, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (18, 100, 29, 57, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (19, 0, 63, 62, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (20, 30, 42, 33, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (21, 6, 27, 108, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (22, 81, 67, 82, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (23, 103, 94, 106, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (24, 39, 73, 8, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (25, 87, 50, 95, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (26, 31, 38, 80, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (27, 0, 0, 58, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (28, 94, 13, 8, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (29, 94, 9, 26, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (30, 108, 94, 68, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (31, 25, 28, 108, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (32, 68, 44, 40, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (33, 96, 79, 20, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (34, 33, 17, 69, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (35, 7, 28, 108, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (36, 0, 9, 35, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (37, 86, 29, 57, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (38, 43, 22, 0, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (39, 14, 15, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (40, 70, 3, 97, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (41, 0, 6, 24, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (42, 92, 21, 38, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (43, 67, 33, 100, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (44, 0, 17, 55, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (45, 8, 72, 12, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (46, 81, 86, 71, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (47, 82, 35, 79, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (48, 0, 4, 78, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (49, 69, 16, 100, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (50, 0, 59, 41, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (51, 78, 27, 107, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (52, 26, 51, 86, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (53, 0, 3, 100, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (54, 96, 73, 3, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (55, 99, 29, 30, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (56, 60, 3, 97, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (57, 47, 10, 6, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (58, 106, 109, 0, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (59, 5, 14, 44, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (60, 16, 0, 44, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (61, 83, 72, 79, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (62, 68, 53, 75, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (63, 45, 86, 56, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (64, 59, 90, 29, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (65, 76, 36, 43, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (66, 8, 18, 79, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (67, 39, 19, 26, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (68, 90, 15, 41, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (69, 105, 104, 39, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (70, 36, 27, 11, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (71, 63, 0, 83, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (72, 80, 40, 0, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (73, 101, 108, 0, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (74, 59, 14, 69, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (75, 26, 37, 60, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (76, 68, 34, 21, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (77, 0, 71, 76, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (78, 82, 85, 79, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (79, 27, 61, 109, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (80, 99, 79, 16, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (81, 0, 97, 105, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (82, 38, 62, 86, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (83, 38, 57, 79, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (84, 96, 79, 8, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (85, 94, 74, 2, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (86, 0, 87, 0, 4, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (87, 86, 32, 30, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (88, 108, 99, 0, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (89, 0, 52, 83, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (90, 65, 42, 33, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (91, 26, 84, 40, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (92, 25, 0, 108, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (93, 67, 33, 97, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (94, 0, 102, 90, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (95, 103, 100, 106, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (96, 26, 66, 63, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (97, 109, 46, 108, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (98, 51, 67, 82, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (99, 87, 68, 100, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (100, 59, 17, 69, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (101, 19, 0, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (102, 88, 15, 78, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (103, 60, 8, 95, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (104, 35, 0, 65, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (105, 97, 31, 81, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (106, 56, 83, 84, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (107, 41, 52, 71, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (108, 8, 53, 75, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (109, 94, 19, 34, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (110, 103, 96, 68, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (111, 30, 43, 22, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (112, 109, 76, 88, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (113, 96, 29, 30, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (114, 19, 42, 52, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (115, 0, 28, 103, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (116, 96, 60, 30, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (117, 38, 64, 79, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (118, 35, 17, 0, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (119, 101, 104, 31, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (120, 51, 67, 83, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (121, 68, 18, 21, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (122, 86, 48, 8, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (123, 77, 78, 29, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (124, 28, 88, 25, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (125, 95, 48, 67, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (126, 12, 58, 69, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (127, 98, 74, 35, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (128, 6, 112, 91, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (129, 101, 0, 66, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (130, 19, 42, 14, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (131, 0, 74, 57, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (132, 0, 0, 90, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (133, 94, 40, 3, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (134, 62, 86, 82, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (135, 0, 50, 32, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (136, 35, 90, 0, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (137, 0, 28, 108, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (138, 99, 29, 3, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (139, 83, 62, 12, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (140, 50, 55, 102, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (141, 99, 40, 3, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (142, 36, 28, 88, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (143, 32, 90, 29, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (144, 75, 24, 25, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (145, 5, 78, 69, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (146, 61, 67, 80, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (147, 80, 73, 26, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (148, 87, 33, 49, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (149, 2, 89, 69, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (150, 87, 3, 94, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (151, 38, 34, 79, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (152, 98, 19, 16, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (153, 38, 81, 12, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (154, 39, 19, 67, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (155, 3, 14, 65, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (156, 52, 41, 15, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (157, 100, 48, 57, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (158, 2, 17, 69, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (159, 26, 20, 0, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (160, 17, 43, 74, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (161, 73, 16, 95, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (162, 93, 0, 91, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (163, 55, 33, 100, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (164, 70, 0, 100, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (165, 97, 79, 81, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (166, 79, 22, 82, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (167, 8, 51, 86, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (168, 21, 92, 89, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (169, 75, 7, 25, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (170, 52, 0, 0, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (171, 0, 21, 61, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (172, 65, 43, 27, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (173, 39, 74, 34, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (174, 83, 20, 50, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (175, 0, 19, 26, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (176, 78, 76, 47, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (177, 0, 27, 103, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (178, 66, 86, 80, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (179, 17, 0, 52, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (180, 80, 31, 0, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (181, 32, 87, 0, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (182, 55, 33, 97, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (183, 68, 34, 12, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (184, 82, 62, 12, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (185, 82, 81, 12, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (186, 60, 8, 97, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (187, 60, 54, 95, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (188, 87, 16, 98, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (189, 0, 47, 76, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (190, 98, 74, 67, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (191, 67, 2, 99, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (192, 46, 0, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (193, 35, 89, 69, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (194, 38, 20, 60, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (195, 0, 78, 55, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (196, 99, 19, 0, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (197, 27, 36, 48, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (198, 0, 39, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (199, 99, 48, 18, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (200, 0, 8, 100, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (201, 65, 11, 52, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (202, 90, 15, 0, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (203, 34, 89, 0, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (204, 14, 4, 41, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (205, 42, 36, 15, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (206, 0, 0, 51, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (207, 95, 79, 0, 2, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (208, 0, 33, 97, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (209, 100, 79, 0, 2, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (210, 92, 83, 84, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (211, 0, 36, 51, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (212, 97, 48, 8, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (213, 58, 0, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (214, 100, 48, 64, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (215, 33, 90, 29, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (216, 41, 22, 56, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (217, 0, 71, 14, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (218, 0, 0, 107, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (219, 19, 43, 0, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (220, 24, 46, 104, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (221, 36, 46, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (222, 53, 38, 71, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (223, 12, 89, 69, 4, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (224, 85, 86, 71, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (225, 76, 36, 6, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (226, 69, 50, 94, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (227, 97, 73, 8, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (228, 58, 88, 90, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (229, 67, 0, 95, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (230, 73, 16, 96, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (231, 83, 34, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (232, 16, 90, 55, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (233, 0, 108, 39, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (234, 26, 37, 63, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (235, 78, 46, 104, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (236, 70, 50, 99, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (237, 95, 48, 64, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (238, 82, 85, 75, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (239, 0, 0, 91, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (240, 69, 16, 94, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (241, 86, 19, 16, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (242, 104, 97, 101, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (243, 0, 99, 105, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (244, 47, 61, 48, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (245, 8, 64, 75, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (246, 6, 27, 107, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (247, 0, 28, 91, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (248, 87, 50, 100, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (249, 21, 92, 0, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (250, 67, 68, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (251, 102, 0, 39, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (252, 0, 34, 86, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (253, 105, 107, 0, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (254, 45, 26, 83, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (255, 85, 0, 56, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (256, 8, 66, 21, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (257, 68, 62, 9, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (258, 62, 52, 82, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (259, 87, 3, 99, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (260, 70, 2, 94, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (261, 0, 12, 78, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (262, 54, 22, 56, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (263, 103, 69, 105, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (264, 97, 13, 81, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (265, 0, 47, 74, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (266, 58, 24, 89, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (267, 94, 13, 81, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (268, 59, 78, 55, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (269, 11, 41, 93, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (270, 54, 38, 71, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (271, 0, 74, 18, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (272, 65, 11, 46, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (273, 67, 2, 13, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (274, 86, 0, 26, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (275, 3, 0, 0, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (276, 62, 0, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (277, 15, 89, 44, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (278, 39, 40, 0, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (279, 0, 0, 106, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (280, 91, 83, 61, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (281, 83, 37, 75, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (282, 109, 0, 11, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (283, 73, 33, 96, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (284, 52, 0, 77, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (285, 24, 27, 11, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (286, 103, 70, 101, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (287, 100, 40, 67, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (288, 56, 0, 62, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (289, 8, 44, 0, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (290, 32, 87, 44, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (291, 0, 104, 66, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (292, 95, 40, 20, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (293, 30, 71, 7, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (294, 73, 3, 97, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (295, 68, 81, 40, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (296, 33, 87, 55, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (297, 73, 68, 13, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (298, 26, 56, 40, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (299, 90, 15, 58, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (300, 32, 0, 55, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (301, 99, 74, 53, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (302, 75, 92, 89, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (303, 0, 0, 98, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (304, 0, 112, 88, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (305, 49, 95, 0, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (306, 0, 76, 108, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (307, 24, 27, 107, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (308, 64, 52, 80, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (309, 41, 86, 80, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (310, 83, 18, 12, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (311, 44, 86, 56, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (312, 59, 90, 69, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (313, 99, 79, 81, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (314, 69, 91, 94, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (315, 25, 112, 108, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (316, 9, 0, 29, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (317, 56, 21, 62, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (318, 19, 71, 28, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (319, 109, 0, 88, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (320, 82, 66, 79, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (321, 45, 52, 0, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (322, 0, 81, 75, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (323, 52, 10, 51, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (324, 17, 71, 74, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (325, 94, 32, 53, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (326, 90, 0, 17, 4, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (327, 72, 67, 83, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (328, 0, 76, 42, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (329, 91, 0, 84, 4, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (330, 104, 100, 105, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (331, 27, 41, 0, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (332, 0, 77, 17, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (333, 103, 96, 54, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (334, 99, 19, 26, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (335, 82, 56, 86, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (336, 66, 0, 80, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (337, 94, 73, 20, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (338, 71, 0, 51, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (339, 19, 6, 0, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (340, 71, 61, 93, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (341, 13, 38, 71, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (342, 75, 101, 90, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (343, 74, 90, 55, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (344, 97, 60, 20, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (345, 80, 19, 30, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (346, 17, 6, 10, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (347, 0, 13, 34, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (348, 82, 81, 0, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (349, 108, 99, 54, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (350, 70, 2, 45, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (351, 60, 33, 49, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (352, 98, 60, 34, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (353, 94, 73, 64, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (354, 68, 56, 60, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (355, 83, 81, 63, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (356, 0, 33, 13, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (357, 91, 82, 0, 2, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (358, 11, 10, 48, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (359, 25, 27, 88, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (360, 88, 65, 78, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (361, 0, 70, 105, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (362, 20, 52, 56, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (363, 48, 0, 44, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (364, 96, 40, 0, 2, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (365, 0, 82, 37, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (366, 7, 27, 70, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (367, 82, 53, 75, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (368, 41, 67, 83, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (369, 80, 0, 2, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (370, 0, 29, 35, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (371, 99, 13, 18, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (372, 87, 75, 45, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (373, 16, 17, 55, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (374, 52, 61, 77, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (375, 71, 0, 93, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (376, 97, 13, 20, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (377, 8, 37, 63, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (378, 60, 68, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (379, 68, 85, 0, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (380, 48, 58, 55, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (381, 8, 35, 86, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (382, 95, 13, 18, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (383, 60, 68, 99, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (384, 92, 0, 0, 4, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (385, 0, 82, 38, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (386, 99, 74, 3, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (387, 72, 67, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (388, 73, 8, 45, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (389, 20, 0, 82, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (390, 99, 19, 16, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (391, 0, 13, 57, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (392, 60, 33, 98, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (393, 70, 91, 96, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (394, 0, 107, 31, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (395, 0, 72, 12, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (396, 19, 6, 27, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (397, 39, 0, 20, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (398, 108, 69, 106, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (399, 95, 32, 81, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (400, 78, 27, 88, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (401, 107, 45, 102, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (402, 26, 34, 40, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (403, 96, 0, 64, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (404, 59, 17, 0, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (405, 99, 13, 8, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (406, 78, 112, 103, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (407, 95, 31, 30, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (408, 99, 73, 2, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (409, 38, 84, 86, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (410, 2, 14, 29, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (411, 0, 6, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (412, 42, 41, 15, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (413, 0, 74, 0, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (414, 85, 0, 82, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (415, 19, 25, 10, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (416, 38, 57, 63, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (417, 86, 31, 64, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (418, 0, 37, 60, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (419, 59, 89, 29, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (420, 55, 68, 99, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (421, 26, 37, 50, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (422, 28, 106, 90, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (423, 87, 75, 94, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (424, 3, 0, 29, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (425, 86, 9, 30, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (426, 60, 50, 32, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (427, 95, 74, 2, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (428, 109, 112, 91, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (429, 5, 58, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (430, 58, 105, 87, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (431, 94, 19, 16, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (432, 13, 38, 0, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (433, 82, 44, 9, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (434, 0, 54, 32, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (435, 0, 50, 13, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (436, 57, 26, 71, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (437, 97, 60, 34, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (438, 0, 60, 16, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (439, 97, 13, 64, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (440, 67, 50, 49, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (441, 39, 60, 35, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (442, 95, 40, 34, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (443, 0, 28, 11, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (444, 30, 25, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (445, 97, 79, 26, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (446, 98, 0, 0, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (447, 31, 26, 82, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (448, 80, 0, 16, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (449, 0, 16, 49, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (450, 0, 106, 25, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (451, 50, 95, 106, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (452, 99, 0, 20, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (453, 0, 25, 59, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (454, 38, 81, 60, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (455, 98, 13, 2, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (456, 8, 72, 79, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (457, 71, 61, 77, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (458, 77, 14, 69, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (459, 84, 67, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (460, 101, 80, 66, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (461, 44, 38, 80, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (462, 76, 61, 112, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (463, 44, 86, 80, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (464, 73, 68, 32, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (465, 65, 43, 36, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (466, 93, 0, 104, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (467, 8, 81, 75, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (468, 69, 8, 45, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (469, 0, 50, 49, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (470, 61, 86, 82, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (471, 67, 33, 32, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (472, 0, 34, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (473, 38, 20, 79, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (474, 88, 5, 78, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (475, 60, 50, 96, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (476, 29, 107, 19, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (477, 95, 0, 35, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (478, 0, 27, 108, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (479, 0, 3, 96, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (480, 0, 50, 95, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (481, 0, 3, 98, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (482, 68, 34, 63, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (483, 107, 0, 105, 2, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (484, 6, 28, 108, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (485, 38, 20, 40, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (486, 38, 85, 60, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (487, 82, 18, 60, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (488, 56, 0, 85, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (489, 70, 0, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (490, 100, 48, 16, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (491, 14, 4, 78, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (492, 31, 67, 82, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (493, 96, 40, 16, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (494, 72, 38, 82, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (495, 82, 34, 86, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (496, 6, 76, 104, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (497, 28, 92, 0, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (498, 87, 2, 49, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (499, 80, 40, 30, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (500, 62, 67, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (501, 96, 19, 30, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (502, 64, 0, 82, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (503, 30, 6, 27, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (504, 82, 66, 73, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (505, 39, 0, 30, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (506, 19, 25, 52, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (507, 30, 71, 22, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (508, 99, 79, 0, 2, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (509, 96, 79, 67, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (510, 95, 13, 53, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (511, 59, 90, 44, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (512, 69, 50, 13, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (513, 73, 68, 94, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (514, 0, 26, 56, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (515, 108, 98, 101, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (516, 28, 24, 89, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (517, 45, 0, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (518, 33, 87, 44, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (519, 0, 0, 85, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (520, 0, 97, 54, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (521, 52, 61, 112, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (522, 9, 89, 0, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (523, 59, 58, 55, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (524, 0, 11, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (525, 55, 75, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (526, 71, 36, 51, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (527, 86, 0, 30, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (528, 83, 62, 9, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (529, 46, 92, 0, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (530, 73, 8, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (531, 65, 25, 5, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (532, 84, 86, 83, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (533, 95, 9, 67, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (534, 108, 0, 101, 2, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (535, 4, 17, 65, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (536, 99, 73, 8, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (537, 68, 81, 0, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (538, 98, 29, 8, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (539, 65, 71, 46, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (540, 86, 19, 35, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (541, 103, 95, 68, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (542, 0, 19, 34, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (543, 90, 5, 78, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (544, 43, 0, 56, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (545, 98, 48, 26, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (546, 97, 40, 16, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (547, 93, 28, 0, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (548, 85, 67, 83, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (549, 0, 53, 50, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (550, 80, 29, 53, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (551, 78, 28, 107, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (552, 70, 16, 100, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (553, 7, 76, 108, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (554, 28, 102, 90, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (555, 0, 5, 78, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (556, 81, 0, 82, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (557, 73, 91, 32, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (558, 86, 73, 3, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (559, 40, 67, 56, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (560, 46, 102, 25, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (561, 41, 0, 82, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (562, 67, 54, 98, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (563, 50, 70, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (564, 0, 30, 39, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (565, 9, 17, 65, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (566, 78, 112, 0, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (567, 0, 50, 99, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (568, 76, 41, 72, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (569, 12, 58, 44, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (570, 43, 86, 83, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (571, 73, 16, 45, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (572, 83, 84, 73, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (573, 0, 53, 21, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (574, 36, 112, 104, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (575, 11, 0, 15, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (576, 0, 53, 75, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (577, 96, 0, 57, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (578, 0, 31, 64, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (579, 80, 48, 2, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (580, 60, 50, 97, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (581, 0, 13, 67, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (582, 8, 85, 75, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (583, 28, 101, 0, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (584, 8, 18, 75, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (585, 4, 87, 0, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (586, 68, 56, 40, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (587, 99, 48, 81, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (588, 70, 8, 97, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (589, 101, 30, 31, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (590, 26, 57, 0, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (591, 99, 31, 30, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (592, 82, 72, 40, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (593, 0, 96, 68, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (594, 68, 44, 86, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (595, 58, 106, 0, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (596, 0, 81, 63, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (597, 26, 51, 9, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (598, 87, 75, 96, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (599, 97, 29, 81, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (600, 86, 79, 18, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (601, 13, 0, 71, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (602, 44, 26, 71, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (603, 104, 45, 54, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (604, 12, 87, 69, 4, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (605, 44, 67, 83, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (606, 82, 18, 75, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (607, 8, 34, 60, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (608, 63, 86, 56, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (609, 108, 95, 102, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (610, 79, 22, 71, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (611, 96, 32, 0, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (612, 60, 0, 98, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (613, 38, 49, 12, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (614, 76, 0, 112, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (615, 34, 14, 65, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (616, 0, 46, 47, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (617, 86, 79, 34, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (618, 45, 38, 56, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (619, 78, 0, 88, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (620, 26, 44, 40, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (621, 47, 61, 43, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (622, 0, 38, 80, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (623, 3, 17, 29, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (624, 74, 87, 65, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (625, 80, 13, 53, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (626, 22, 61, 0, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (627, 78, 76, 107, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (628, 67, 0, 49, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (629, 88, 59, 41, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (630, 93, 112, 88, 2, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (631, 62, 67, 82, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (632, 26, 57, 79, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (633, 42, 0, 93, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (634, 0, 5, 41, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (635, 50, 97, 101, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (636, 67, 54, 96, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (637, 99, 0, 81, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (638, 65, 47, 52, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (639, 105, 0, 39, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (640, 30, 25, 7, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (641, 26, 84, 86, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (642, 11, 61, 112, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (643, 99, 74, 81, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (644, 0, 44, 50, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (645, 0, 49, 12, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (646, 55, 8, 98, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (647, 56, 63, 37, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (648, 67, 75, 98, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (649, 0, 75, 97, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (650, 99, 13, 64, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (651, 44, 0, 83, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (652, 94, 31, 81, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (653, 65, 0, 5, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (654, 98, 32, 81, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (655, 0, 35, 12, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (656, 86, 19, 18, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (657, 98, 13, 35, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (658, 46, 24, 89, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (659, 0, 65, 78, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (660, 52, 36, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (661, 0, 61, 72, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (662, 0, 46, 88, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (663, 79, 52, 71, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (664, 60, 3, 45, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (665, 93, 27, 88, 2, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (666, 90, 59, 0, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (667, 96, 73, 2, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (668, 95, 0, 30, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (669, 100, 60, 0, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (670, 41, 0, 71, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (671, 80, 29, 18, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (672, 68, 81, 60, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (673, 50, 94, 101, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (674, 70, 2, 95, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (675, 94, 60, 26, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (676, 0, 0, 15, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (677, 55, 54, 95, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (678, 50, 69, 105, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (679, 0, 104, 19, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (680, 69, 50, 32, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (681, 8, 84, 73, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (682, 10, 86, 80, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (683, 6, 27, 103, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (684, 26, 64, 60, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (685, 0, 58, 55, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (686, 30, 0, 74, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (687, 19, 43, 14, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (688, 36, 76, 70, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (689, 63, 38, 80, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (690, 71, 36, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (691, 71, 10, 93, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (692, 0, 16, 97, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (693, 97, 48, 30, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (694, 85, 38, 71, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (695, 45, 86, 80, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (696, 12, 14, 44, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (697, 86, 9, 16, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (698, 93, 112, 107, 2, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (699, 86, 79, 3, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (700, 76, 0, 48, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (701, 8, 44, 40, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (702, 24, 28, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (703, 69, 33, 32, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (704, 100, 29, 18, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (705, 100, 74, 30, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (706, 106, 107, 31, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (707, 34, 90, 55, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (708, 0, 0, 33, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (709, 108, 70, 102, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (710, 43, 86, 80, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (711, 93, 76, 0, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (712, 40, 86, 56, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (713, 8, 0, 73, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (714, 9, 0, 65, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (715, 83, 49, 50, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (716, 67, 75, 49, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (717, 46, 7, 89, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (718, 34, 78, 29, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (719, 96, 9, 64, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (720, 82, 35, 12, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (721, 6, 0, 0, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (722, 0, 0, 50, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (723, 100, 0, 53, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (724, 14, 65, 41, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (725, 82, 56, 21, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (726, 41, 0, 83, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (727, 95, 29, 16, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (728, 107, 69, 54, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (729, 100, 19, 30, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (730, 98, 79, 16, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (731, 36, 27, 47, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (732, 37, 26, 80, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (733, 46, 39, 25, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (734, 0, 54, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (735, 99, 48, 64, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (736, 103, 99, 68, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (737, 94, 0, 53, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (738, 68, 57, 12, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (739, 94, 29, 81, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (740, 26, 18, 75, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (741, 96, 40, 30, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (742, 68, 18, 50, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (743, 101, 109, 19, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (744, 42, 10, 43, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (745, 55, 3, 13, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (746, 71, 61, 6, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (747, 60, 91, 0, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (748, 0, 74, 16, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (749, 61, 38, 71, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (750, 78, 46, 107, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (751, 95, 60, 35, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (752, 95, 79, 67, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (753, 82, 44, 73, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (754, 97, 48, 0, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (755, 0, 49, 60, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (756, 70, 91, 95, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (757, 25, 76, 91, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (758, 100, 29, 20, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (759, 82, 85, 40, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (760, 29, 0, 66, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (761, 8, 64, 63, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (762, 71, 36, 48, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (763, 30, 25, 36, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (764, 97, 29, 20, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (765, 39, 13, 8, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (766, 29, 103, 31, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (767, 107, 100, 106, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (768, 2, 90, 29, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (769, 38, 81, 0, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (770, 96, 9, 34, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (771, 87, 3, 0, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (772, 24, 28, 103, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (773, 51, 26, 83, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (774, 100, 31, 3, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (775, 19, 0, 46, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (776, 99, 19, 81, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (777, 72, 22, 0, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (778, 70, 68, 97, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (779, 36, 0, 47, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (780, 99, 32, 16, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (781, 24, 27, 103, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (782, 73, 16, 100, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (783, 0, 104, 39, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (784, 7, 0, 47, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (785, 69, 2, 94, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (786, 83, 64, 73, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (787, 7, 28, 92, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (788, 60, 8, 45, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (789, 39, 32, 34, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (790, 105, 109, 31, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (791, 98, 73, 16, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (792, 38, 72, 40, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (793, 46, 105, 90, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (794, 96, 73, 0, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (795, 42, 10, 51, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (796, 0, 0, 74, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (797, 8, 18, 86, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (798, 102, 109, 66, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (799, 24, 28, 42, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (800, 43, 86, 56, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (801, 97, 74, 64, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (802, 55, 3, 94, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (803, 39, 48, 2, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (804, 0, 93, 39, 2, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (805, 0, 24, 87, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (806, 11, 41, 51, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (807, 98, 48, 0, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (808, 100, 60, 16, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (809, 26, 35, 86, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (810, 98, 13, 18, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (811, 80, 29, 20, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (812, 7, 0, 0, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (813, 95, 60, 0, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (814, 80, 32, 20, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (815, 75, 39, 90, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (816, 12, 78, 29, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (817, 103, 99, 101, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (818, 86, 13, 26, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (819, 26, 66, 50, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (820, 65, 25, 28, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (821, 37, 67, 83, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (822, 19, 11, 59, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (823, 30, 42, 36, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (824, 45, 22, 83, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (825, 58, 0, 89, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (826, 59, 17, 65, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (827, 25, 0, 104, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (828, 30, 11, 10, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (829, 29, 104, 31, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (830, 6, 27, 47, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (831, 0, 103, 0, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (832, 8, 53, 86, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (833, 94, 40, 64, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (834, 32, 58, 44, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (835, 99, 29, 18, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (836, 86, 79, 53, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (837, 97, 19, 30, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (838, 99, 40, 8, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (839, 19, 11, 36, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (840, 82, 64, 50, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (841, 86, 48, 18, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (842, 42, 41, 112, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (843, 0, 68, 45, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (844, 97, 29, 16, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (845, 99, 74, 20, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (846, 33, 78, 29, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (847, 94, 19, 3, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (848, 39, 48, 3, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (849, 84, 22, 0, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (850, 36, 27, 108, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (851, 97, 29, 18, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (852, 100, 60, 26, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (853, 0, 55, 102, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (854, 39, 13, 20, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (855, 39, 40, 53, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (856, 8, 35, 79, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (857, 55, 16, 96, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (858, 56, 21, 84, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (859, 72, 26, 80, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (860, 10, 38, 83, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (861, 95, 74, 30, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (862, 86, 74, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (863, 33, 87, 65, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (864, 0, 33, 49, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (865, 21, 88, 87, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (866, 0, 56, 75, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (867, 0, 3, 45, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (868, 0, 25, 36, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (869, 32, 78, 0, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (870, 99, 29, 67, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (871, 108, 70, 0, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (872, 98, 73, 64, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (873, 60, 91, 97, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (874, 36, 27, 70, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (875, 36, 76, 107, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (876, 65, 42, 76, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (877, 4, 14, 65, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (878, 78, 112, 108, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (879, 101, 104, 39, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (880, 0, 2, 98, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (881, 52, 0, 51, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (882, 26, 20, 63, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (883, 100, 31, 16, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (884, 0, 18, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (885, 97, 29, 35, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (886, 55, 91, 98, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (887, 99, 19, 8, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (888, 6, 27, 91, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (889, 0, 106, 90, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (890, 87, 50, 98, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (891, 99, 32, 67, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (892, 55, 68, 97, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (893, 96, 74, 26, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (894, 38, 34, 40, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (895, 105, 80, 66, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (896, 65, 42, 74, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (897, 24, 27, 47, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (898, 94, 74, 30, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (899, 73, 3, 13, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (900, 33, 78, 69, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (901, 36, 28, 108, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (902, 95, 31, 57, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (903, 92, 82, 84, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (904, 59, 14, 65, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (905, 94, 19, 2, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (906, 40, 22, 0, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (907, 0, 0, 21, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (908, 67, 2, 96, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (909, 0, 11, 14, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (910, 55, 8, 94, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (911, 25, 46, 70, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (912, 14, 59, 0, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (913, 62, 38, 80, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (914, 55, 0, 98, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (915, 22, 10, 6, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (916, 26, 66, 79, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (917, 39, 79, 67, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (918, 0, 51, 21, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (919, 98, 79, 81, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (920, 54, 26, 83, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (921, 54, 86, 71, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (922, 39, 19, 16, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (923, 109, 112, 0, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (924, 9, 17, 69, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (925, 96, 13, 0, 4, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (926, 39, 73, 53, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (927, 86, 79, 57, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (928, 8, 34, 9, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (929, 106, 30, 31, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (930, 68, 66, 79, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (931, 108, 94, 54, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (932, 92, 83, 85, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (933, 101, 30, 19, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (934, 60, 91, 45, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (935, 108, 96, 0, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (936, 102, 80, 39, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (937, 83, 37, 9, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (938, 105, 104, 0, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (939, 26, 35, 79, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (940, 69, 2, 97, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (941, 39, 60, 57, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (942, 69, 75, 95, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (943, 89, 12, 0, 4, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (944, 0, 6, 14, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (945, 108, 98, 105, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (946, 100, 9, 67, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (947, 80, 74, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (948, 0, 85, 50, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (949, 4, 58, 44, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (950, 29, 30, 19, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (951, 39, 40, 8, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (952, 76, 61, 72, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (953, 70, 68, 99, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (954, 95, 13, 16, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (955, 65, 25, 74, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (956, 99, 32, 18, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (957, 95, 31, 53, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (958, 35, 14, 0, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (959, 104, 97, 68, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (960, 81, 38, 71, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (961, 45, 38, 71, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (962, 67, 3, 95, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (963, 4, 17, 44, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (964, 0, 7, 25, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (965, 3, 17, 0, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (966, 19, 47, 36, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (967, 4, 17, 0, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (968, 31, 0, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (969, 55, 2, 0, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (970, 95, 0, 0, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (971, 98, 73, 8, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (972, 0, 42, 52, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (973, 83, 51, 86, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (974, 94, 60, 2, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (975, 86, 40, 18, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (976, 99, 60, 67, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (977, 6, 27, 11, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (978, 104, 70, 105, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (979, 2, 58, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (980, 37, 22, 71, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (981, 99, 60, 0, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (982, 24, 76, 47, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (983, 0, 0, 79, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (984, 28, 7, 90, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (985, 68, 62, 63, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (986, 98, 74, 34, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (987, 13, 0, 80, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (988, 65, 71, 5, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (989, 80, 29, 3, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (990, 75, 101, 89, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (991, 92, 0, 37, 4, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (992, 74, 87, 44, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (993, 27, 0, 48, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (994, 8, 64, 73, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (995, 51, 86, 71, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (996, 0, 27, 47, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (997, 96, 13, 20, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (998, 19, 43, 10, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (999, 76, 41, 112, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1000, 95, 48, 81, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1001, 26, 84, 79, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1002, 8, 64, 12, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1003, 57, 38, 82, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1004, 42, 36, 48, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1005, 8, 84, 50, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1006, 55, 68, 96, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1007, 4, 89, 65, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1008, 104, 69, 54, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1009, 96, 48, 16, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1010, 17, 43, 7, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1011, 40, 0, 80, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1012, 80, 60, 67, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1013, 99, 48, 0, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1014, 6, 76, 107, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1015, 2, 58, 65, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1016, 22, 61, 109, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1017, 55, 2, 13, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1018, 7, 27, 104, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1019, 48, 0, 69, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1020, 94, 13, 16, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1021, 50, 69, 106, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1022, 105, 0, 19, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1023, 26, 85, 40, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1024, 98, 13, 0, 4, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1025, 64, 22, 80, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1026, 97, 13, 18, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1027, 68, 44, 9, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1028, 16, 89, 65, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1029, 43, 38, 0, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1030, 37, 67, 71, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1031, 94, 13, 18, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1032, 97, 40, 2, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1033, 104, 55, 54, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1034, 36, 76, 92, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1035, 108, 99, 101, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1036, 0, 60, 18, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1037, 31, 67, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1038, 0, 0, 27, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1039, 86, 0, 18, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1040, 0, 0, 9, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1041, 86, 19, 81, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1042, 42, 36, 93, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1043, 0, 0, 67, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1044, 86, 73, 30, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1045, 0, 109, 31, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1046, 94, 31, 35, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1047, 70, 75, 97, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1048, 2, 89, 65, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1049, 65, 25, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1050, 0, 46, 92, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1051, 107, 99, 105, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1052, 8, 34, 21, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1053, 70, 54, 97, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1054, 83, 57, 79, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1055, 0, 37, 79, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1056, 10, 52, 83, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1057, 0, 45, 54, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1058, 74, 87, 69, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1059, 99, 79, 30, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1060, 80, 40, 67, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1061, 28, 101, 87, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1062, 0, 91, 96, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1063, 44, 86, 82, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1064, 0, 79, 53, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1065, 76, 61, 51, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1066, 86, 19, 30, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1067, 0, 88, 87, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1068, 109, 28, 70, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1069, 27, 61, 0, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1070, 109, 28, 107, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1071, 33, 58, 55, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1072, 8, 0, 63, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1073, 0, 99, 106, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1074, 96, 73, 81, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1075, 0, 36, 43, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1076, 50, 45, 105, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1077, 82, 56, 63, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1078, 0, 37, 12, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1079, 50, 55, 101, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1080, 30, 43, 7, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1081, 55, 2, 96, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1082, 0, 35, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1083, 15, 58, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1084, 9, 89, 55, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1085, 8, 49, 50, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1086, 25, 112, 47, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1087, 60, 50, 95, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1088, 0, 9, 18, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1089, 0, 0, 87, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1090, 82, 57, 73, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1091, 0, 88, 89, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1092, 50, 69, 102, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1093, 30, 43, 0, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1094, 76, 10, 112, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1095, 78, 112, 92, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1096, 105, 80, 39, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1097, 95, 74, 35, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1098, 45, 0, 83, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1099, 0, 40, 26, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1100, 98, 73, 30, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1101, 85, 52, 80, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1102, 88, 65, 0, 4, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1103, 106, 103, 0, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1104, 68, 72, 50, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1105, 50, 98, 0, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1106, 107, 99, 102, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1107, 87, 16, 96, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1108, 26, 35, 40, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1109, 8, 53, 9, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1110, 104, 96, 101, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1111, 39, 0, 8, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1112, 26, 62, 79, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1113, 97, 40, 67, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1114, 59, 0, 44, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1115, 52, 61, 4, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1116, 17, 43, 14, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1117, 19, 43, 28, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1118, 0, 60, 30, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1119, 104, 100, 101, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1120, 86, 31, 2, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1121, 29, 108, 66, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1122, 38, 64, 9, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1123, 80, 29, 57, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1124, 19, 71, 27, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1125, 80, 32, 26, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1126, 47, 0, 109, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1127, 0, 79, 30, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1128, 94, 73, 53, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1129, 0, 17, 44, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1130, 96, 13, 34, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1131, 86, 31, 0, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1132, 0, 81, 21, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1133, 83, 34, 60, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1134, 30, 47, 7, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1135, 26, 37, 73, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1136, 39, 31, 64, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1137, 0, 98, 106, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1138, 93, 76, 42, 2, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1139, 54, 22, 0, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1140, 74, 89, 0, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1141, 16, 90, 44, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1142, 0, 49, 9, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1143, 87, 91, 94, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1144, 6, 112, 92, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1145, 63, 22, 71, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1146, 68, 72, 63, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1147, 98, 19, 8, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1148, 19, 11, 46, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1149, 8, 37, 40, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1150, 65, 47, 36, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1151, 106, 80, 0, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1152, 100, 19, 57, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1153, 0, 79, 81, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1154, 35, 78, 65, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1155, 104, 95, 102, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1156, 20, 67, 80, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1157, 99, 79, 34, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1158, 112, 26, 56, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1159, 70, 54, 0, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1160, 24, 76, 104, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1161, 0, 54, 95, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1162, 83, 49, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1163, 65, 25, 27, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1164, 8, 66, 50, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1165, 0, 0, 100, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1166, 39, 40, 26, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1167, 97, 73, 2, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1168, 12, 89, 44, 4, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1169, 8, 56, 21, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1170, 79, 0, 80, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1171, 73, 54, 98, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1172, 50, 96, 68, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1173, 107, 98, 54, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1174, 0, 67, 71, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1175, 0, 76, 92, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1176, 8, 18, 73, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1177, 88, 0, 17, 4, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1178, 51, 52, 80, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1179, 83, 49, 40, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1180, 105, 104, 66, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1181, 0, 0, 63, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1182, 57, 26, 82, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1183, 49, 69, 105, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1184, 109, 76, 108, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1185, 60, 91, 94, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1186, 4, 0, 29, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1187, 19, 6, 76, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1188, 82, 81, 40, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1189, 6, 46, 47, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1190, 10, 26, 0, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1191, 60, 8, 94, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1192, 55, 33, 95, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1193, 0, 32, 30, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1194, 86, 29, 64, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1195, 79, 86, 83, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1196, 97, 13, 35, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1197, 76, 10, 93, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1198, 89, 4, 17, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1199, 76, 0, 109, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1200, 33, 17, 44, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1201, 95, 9, 16, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1202, 51, 52, 56, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1203, 0, 34, 73, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1204, 94, 48, 20, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1205, 28, 105, 0, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1206, 16, 89, 29, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1207, 68, 51, 63, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1208, 96, 74, 57, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1209, 0, 67, 80, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1210, 55, 3, 95, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1211, 95, 73, 18, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1212, 92, 63, 0, 2, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1213, 38, 35, 63, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1214, 13, 86, 82, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1215, 79, 38, 71, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1216, 99, 19, 35, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1217, 5, 17, 29, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1218, 80, 13, 67, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1219, 90, 4, 17, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1220, 33, 14, 44, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1221, 82, 64, 75, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1222, 108, 98, 68, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1223, 34, 0, 55, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1224, 45, 52, 83, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1225, 50, 97, 68, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1226, 74, 17, 44, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1227, 100, 13, 53, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1228, 77, 90, 44, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1229, 10, 38, 80, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1230, 37, 26, 56, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1231, 0, 64, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1232, 68, 37, 12, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1233, 74, 17, 29, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1234, 26, 0, 9, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1235, 95, 31, 0, 4, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1236, 40, 0, 56, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1237, 49, 98, 68, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1238, 76, 41, 0, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1239, 70, 91, 97, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1240, 87, 33, 99, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1241, 41, 86, 83, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1242, 82, 0, 12, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1243, 83, 84, 12, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1244, 65, 6, 33, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1245, 7, 27, 88, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1246, 97, 29, 67, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1247, 11, 10, 4, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1248, 0, 18, 63, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1249, 38, 49, 60, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1250, 99, 19, 67, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1251, 99, 48, 67, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1252, 55, 54, 96, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1253, 104, 98, 0, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1254, 99, 19, 57, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1255, 97, 74, 2, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1256, 0, 27, 107, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1257, 65, 0, 14, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1258, 94, 0, 3, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1259, 93, 28, 103, 2, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1260, 86, 19, 34, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1261, 0, 49, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1262, 48, 17, 44, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1263, 7, 112, 91, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1264, 0, 0, 101, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1265, 14, 0, 0, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1266, 24, 28, 108, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1267, 86, 79, 8, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1268, 0, 36, 109, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1269, 78, 112, 107, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1270, 69, 3, 97, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1271, 19, 42, 59, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1272, 103, 99, 54, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1273, 36, 27, 92, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1274, 95, 9, 64, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1275, 0, 2, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1276, 66, 67, 71, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1277, 73, 75, 99, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1278, 50, 94, 0, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1279, 83, 44, 73, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1280, 7, 28, 104, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1281, 49, 98, 105, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1282, 60, 2, 49, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1283, 100, 79, 8, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1284, 38, 57, 86, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1285, 0, 60, 26, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1286, 45, 26, 71, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1287, 53, 0, 71, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1288, 95, 32, 3, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1289, 86, 13, 34, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1290, 93, 46, 103, 2, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1291, 68, 44, 63, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1292, 97, 9, 0, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1293, 68, 0, 12, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1294, 107, 95, 54, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1295, 27, 10, 112, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1296, 0, 40, 34, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1297, 100, 74, 81, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1298, 86, 48, 35, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1299, 48, 17, 69, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1300, 48, 90, 29, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1301, 51, 22, 0, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1302, 61, 0, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1303, 43, 86, 71, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1304, 11, 61, 93, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1305, 83, 57, 75, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1306, 107, 94, 106, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1307, 105, 93, 19, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1308, 66, 86, 83, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1309, 69, 50, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1310, 0, 81, 40, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1311, 68, 44, 21, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1312, 10, 67, 83, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1313, 17, 43, 24, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1314, 8, 62, 50, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1315, 49, 55, 105, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1316, 67, 3, 45, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1317, 0, 73, 64, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1318, 96, 60, 16, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1319, 71, 10, 48, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1320, 8, 18, 0, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1321, 86, 31, 57, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1322, 75, 101, 87, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1323, 104, 55, 101, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1324, 38, 37, 0, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1325, 0, 0, 13, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1326, 10, 52, 56, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1327, 22, 41, 93, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1328, 38, 56, 75, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1329, 83, 81, 86, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1330, 87, 75, 32, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1331, 17, 25, 14, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1332, 26, 44, 79, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1333, 88, 65, 41, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1334, 78, 46, 103, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1335, 53, 0, 83, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1336, 47, 61, 109, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1337, 94, 73, 67, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1338, 7, 27, 0, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1339, 2, 0, 69, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1340, 96, 9, 30, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1341, 82, 53, 60, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1342, 70, 91, 32, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1343, 35, 89, 44, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1344, 0, 44, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1345, 30, 42, 52, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1346, 81, 0, 83, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1347, 42, 0, 48, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1348, 11, 41, 6, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1349, 102, 109, 39, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1350, 17, 42, 74, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1351, 32, 17, 44, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1352, 25, 112, 107, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1353, 71, 10, 51, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1354, 69, 0, 97, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1355, 59, 14, 44, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1356, 22, 36, 109, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1357, 5, 17, 69, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1358, 104, 94, 0, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1359, 87, 68, 98, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1360, 65, 0, 46, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1361, 97, 0, 57, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1362, 77, 58, 44, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1363, 0, 0, 31, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1364, 0, 85, 9, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1365, 38, 57, 60, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1366, 7, 76, 88, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1367, 24, 46, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1368, 0, 72, 21, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1369, 85, 26, 56, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1370, 69, 91, 32, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1371, 53, 22, 0, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1372, 11, 41, 4, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1373, 11, 0, 43, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1374, 18, 26, 0, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1375, 32, 89, 0, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1376, 29, 80, 31, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1377, 37, 26, 82, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1378, 89, 15, 17, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1379, 31, 67, 71, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1380, 26, 34, 79, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1381, 0, 54, 94, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1382, 37, 38, 71, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1383, 80, 29, 35, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1384, 37, 26, 0, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1385, 100, 29, 53, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1386, 38, 64, 50, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1387, 98, 73, 3, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1388, 100, 9, 2, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1389, 65, 71, 0, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1390, 0, 25, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1391, 0, 37, 73, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1392, 67, 33, 98, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1393, 0, 2, 13, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1394, 73, 8, 97, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1395, 0, 33, 99, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1396, 96, 74, 34, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1397, 57, 67, 71, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1398, 107, 0, 106, 2, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1399, 17, 25, 5, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1400, 60, 50, 99, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1401, 11, 61, 48, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1402, 24, 112, 0, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1403, 22, 41, 15, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1404, 66, 22, 71, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1405, 86, 40, 34, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1406, 73, 33, 13, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1407, 69, 8, 49, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1408, 0, 29, 2, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1409, 49, 70, 105, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1410, 0, 25, 33, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1411, 96, 31, 8, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1412, 44, 38, 56, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1413, 48, 14, 55, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1414, 80, 19, 20, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1415, 16, 17, 29, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1416, 31, 86, 82, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1417, 95, 48, 57, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1418, 17, 47, 0, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1419, 66, 86, 56, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1420, 83, 81, 75, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1421, 79, 52, 0, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1422, 38, 84, 60, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1423, 97, 31, 18, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1424, 82, 18, 12, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1425, 0, 90, 65, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1426, 0, 27, 0, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1427, 0, 24, 89, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1428, 50, 100, 105, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1429, 68, 44, 79, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1430, 67, 75, 99, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1431, 41, 67, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1432, 0, 87, 65, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1433, 98, 48, 35, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1434, 68, 84, 75, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1435, 4, 58, 65, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1436, 15, 58, 29, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1437, 65, 43, 33, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1438, 67, 91, 95, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1439, 26, 85, 0, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1440, 0, 54, 97, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1441, 48, 14, 44, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1442, 11, 41, 48, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1443, 17, 47, 76, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1444, 65, 0, 7, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1445, 24, 27, 42, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1446, 0, 64, 75, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1447, 55, 33, 99, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1448, 98, 9, 57, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1449, 32, 14, 55, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1450, 109, 76, 91, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1451, 98, 79, 8, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1452, 22, 10, 77, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1453, 20, 22, 71, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1454, 0, 51, 9, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1455, 26, 72, 75, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1456, 81, 26, 82, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1457, 0, 0, 96, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1458, 8, 66, 40, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1459, 0, 6, 36, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1460, 0, 46, 107, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1461, 29, 0, 31, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1462, 76, 10, 4, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1463, 99, 29, 8, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1464, 42, 10, 72, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1465, 49, 55, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1466, 0, 106, 89, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1467, 70, 3, 98, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1468, 98, 74, 26, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1469, 97, 13, 53, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1470, 82, 81, 63, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1471, 36, 112, 70, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1472, 100, 74, 2, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1473, 8, 62, 40, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1474, 55, 75, 32, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1475, 95, 0, 20, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1476, 0, 51, 79, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1477, 17, 6, 76, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1478, 90, 5, 0, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1479, 83, 64, 79, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1480, 30, 6, 59, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1481, 58, 24, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1482, 0, 20, 12, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1483, 67, 68, 94, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1484, 70, 2, 13, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1485, 0, 19, 2, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1486, 65, 11, 59, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1487, 59, 89, 44, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1488, 100, 60, 18, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1489, 67, 68, 98, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1490, 98, 73, 81, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1491, 99, 48, 57, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1492, 97, 73, 53, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1493, 98, 19, 53, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1494, 103, 98, 102, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1495, 103, 0, 105, 2, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1496, 74, 89, 69, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1497, 0, 64, 60, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1498, 55, 16, 45, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1499, 47, 0, 72, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1500, 108, 69, 54, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1501, 73, 0, 98, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1502, 71, 10, 4, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1503, 41, 38, 82, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1504, 8, 20, 12, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1505, 2, 78, 65, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1506, 0, 71, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1507, 57, 52, 0, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1508, 87, 16, 0, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1509, 47, 10, 15, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1510, 72, 38, 80, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1511, 94, 60, 0, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1512, 105, 80, 0, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1513, 104, 94, 106, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1514, 27, 41, 72, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1515, 83, 56, 50, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1516, 0, 112, 0, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1517, 98, 19, 3, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1518, 39, 9, 67, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1519, 21, 88, 25, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1520, 83, 84, 75, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1521, 68, 85, 86, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1522, 49, 95, 68, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1523, 99, 31, 26, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1524, 56, 83, 38, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1525, 98, 9, 20, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1526, 82, 85, 0, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1527, 87, 33, 95, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1528, 87, 50, 94, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1529, 60, 91, 13, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1530, 58, 102, 25, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1531, 69, 75, 96, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1532, 11, 0, 112, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1533, 55, 54, 32, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1534, 96, 74, 81, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1535, 0, 89, 29, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1536, 80, 74, 2, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1537, 52, 10, 77, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1538, 4, 78, 55, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1539, 0, 8, 13, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1540, 55, 54, 98, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1541, 103, 45, 105, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1542, 52, 41, 48, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1543, 88, 0, 41, 4, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1544, 0, 0, 70, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1545, 64, 26, 82, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1546, 56, 21, 38, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1547, 109, 112, 88, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1548, 0, 103, 39, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1549, 107, 95, 0, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1550, 0, 8, 49, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1551, 22, 61, 15, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1552, 102, 80, 31, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1553, 64, 38, 82, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1554, 26, 81, 40, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1555, 55, 2, 94, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1556, 0, 50, 98, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1557, 87, 2, 95, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1558, 55, 54, 94, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1559, 60, 91, 49, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1560, 62, 38, 56, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1561, 42, 36, 77, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1562, 83, 64, 63, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1563, 82, 51, 40, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1564, 39, 31, 8, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1565, 99, 48, 2, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1566, 71, 36, 72, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1567, 95, 40, 67, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1568, 56, 83, 85, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1569, 0, 54, 100, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1570, 61, 52, 56, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1571, 60, 16, 0, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1572, 0, 10, 6, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1573, 98, 19, 2, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1574, 109, 76, 103, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1575, 96, 13, 30, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1576, 5, 87, 29, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1577, 12, 90, 44, 4, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1578, 98, 73, 26, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1579, 98, 31, 64, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1580, 0, 95, 54, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1581, 95, 48, 34, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1582, 82, 51, 12, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1583, 60, 2, 97, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1584, 66, 67, 82, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1585, 24, 0, 47, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1586, 0, 42, 24, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1587, 19, 0, 28, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1588, 0, 0, 103, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1589, 55, 16, 98, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1590, 49, 98, 106, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1591, 39, 13, 18, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1592, 100, 73, 16, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1593, 0, 0, 7, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1594, 103, 97, 105, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1595, 63, 0, 56, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1596, 99, 40, 35, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1597, 55, 54, 13, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1598, 44, 0, 56, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1599, 48, 90, 44, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1600, 95, 29, 3, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1601, 0, 0, 104, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1602, 95, 29, 57, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1603, 67, 3, 32, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1604, 0, 29, 8, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1605, 101, 103, 31, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1606, 28, 105, 89, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1607, 80, 60, 18, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1608, 61, 26, 80, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1609, 86, 73, 2, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1610, 0, 9, 16, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1611, 55, 3, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1612, 2, 78, 29, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1613, 81, 26, 71, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1614, 79, 67, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1615, 5, 58, 65, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1616, 94, 32, 35, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1617, 98, 0, 2, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1618, 92, 83, 37, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1619, 100, 40, 18, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1620, 2, 17, 0, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1621, 18, 22, 56, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1622, 17, 42, 59, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1623, 65, 42, 28, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1624, 61, 86, 80, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1625, 49, 0, 105, 2, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1626, 96, 29, 2, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1627, 94, 40, 20, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1628, 24, 27, 88, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1629, 44, 38, 83, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1630, 83, 66, 73, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1631, 99, 32, 34, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1632, 14, 12, 78, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1633, 47, 10, 0, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1634, 61, 22, 82, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1635, 34, 58, 29, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1636, 0, 13, 53, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1637, 103, 99, 102, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1638, 32, 89, 65, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1639, 100, 48, 2, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1640, 74, 17, 69, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1641, 58, 102, 90, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1642, 90, 65, 41, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1643, 0, 70, 0, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1644, 20, 52, 82, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1645, 0, 53, 86, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1646, 96, 9, 26, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1647, 0, 102, 25, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1648, 8, 20, 73, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1649, 8, 37, 86, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1650, 50, 45, 0, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1651, 97, 74, 3, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1652, 64, 67, 82, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1653, 59, 90, 0, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1654, 34, 0, 65, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1655, 50, 99, 101, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1656, 52, 0, 48, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1657, 20, 67, 71, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1658, 60, 8, 13, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1659, 112, 86, 56, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1660, 91, 21, 84, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1661, 32, 17, 69, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1662, 104, 99, 101, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1663, 0, 47, 46, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1664, 67, 16, 45, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1665, 101, 0, 19, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1666, 8, 81, 0, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1667, 69, 91, 97, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1668, 27, 10, 15, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1669, 35, 14, 44, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1670, 43, 22, 56, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1671, 7, 0, 92, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1672, 74, 58, 44, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1673, 67, 16, 94, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1674, 98, 73, 57, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1675, 108, 96, 101, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1676, 104, 100, 0, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1677, 6, 28, 104, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1678, 38, 53, 79, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1679, 78, 27, 47, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1680, 98, 19, 34, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1681, 80, 73, 8, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1682, 98, 73, 0, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1683, 107, 96, 105, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1684, 0, 94, 0, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1685, 106, 0, 0, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1686, 73, 0, 100, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1687, 70, 16, 13, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1688, 80, 40, 57, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1689, 0, 112, 47, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1690, 112, 22, 71, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1691, 85, 67, 56, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1692, 82, 57, 0, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1693, 5, 17, 65, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1694, 50, 95, 102, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1695, 80, 60, 20, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1696, 106, 104, 31, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1697, 15, 17, 29, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1698, 32, 58, 55, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1699, 55, 0, 32, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1700, 68, 37, 0, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1701, 14, 77, 41, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1702, 13, 22, 80, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1703, 82, 35, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1704, 87, 2, 96, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1705, 82, 84, 12, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1706, 52, 0, 109, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1707, 61, 52, 83, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1708, 71, 0, 112, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1709, 47, 0, 93, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1710, 83, 84, 50, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1711, 49, 100, 106, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1712, 26, 84, 21, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1713, 68, 35, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1714, 83, 0, 63, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1715, 66, 26, 0, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1716, 0, 17, 29, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1717, 104, 55, 68, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1718, 2, 14, 0, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1719, 38, 81, 9, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1720, 69, 33, 97, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1721, 42, 41, 6, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1722, 104, 98, 102, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1723, 76, 36, 51, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1724, 17, 11, 28, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1725, 0, 14, 0, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1726, 68, 84, 86, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1727, 80, 19, 57, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1728, 97, 31, 16, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1729, 49, 70, 101, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1730, 8, 35, 60, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1731, 28, 0, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1732, 62, 86, 0, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1733, 78, 28, 11, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1734, 96, 29, 8, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1735, 39, 19, 0, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1736, 96, 60, 53, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1737, 64, 86, 56, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1738, 69, 33, 95, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1739, 86, 48, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1740, 76, 10, 109, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1741, 87, 91, 32, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1742, 5, 90, 69, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1743, 103, 97, 68, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1744, 39, 9, 57, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1745, 16, 78, 55, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1746, 55, 8, 97, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1747, 60, 16, 98, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1748, 105, 108, 39, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1749, 80, 32, 81, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1750, 83, 72, 50, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1751, 0, 3, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1752, 99, 60, 3, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1753, 91, 82, 85, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1754, 54, 67, 80, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1755, 65, 0, 59, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1756, 82, 84, 50, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1757, 26, 62, 73, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1758, 100, 48, 3, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1759, 61, 0, 80, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1760, 19, 42, 33, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1761, 78, 46, 108, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1762, 0, 0, 32, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1763, 38, 85, 63, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1764, 0, 17, 0, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1765, 72, 22, 71, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1766, 91, 83, 62, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1767, 0, 84, 40, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1768, 55, 2, 98, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1769, 27, 41, 4, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1770, 0, 45, 105, 2, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1771, 49, 69, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1772, 0, 64, 21, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1773, 96, 0, 16, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1774, 112, 22, 82, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1775, 33, 17, 0, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1776, 83, 20, 86, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1777, 99, 31, 18, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1778, 0, 61, 48, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1779, 16, 0, 69, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1780, 68, 0, 63, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1781, 100, 48, 26, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1782, 26, 20, 75, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1783, 38, 34, 9, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1784, 9, 17, 29, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1785, 43, 86, 0, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1786, 0, 60, 3, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1787, 80, 74, 18, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1788, 0, 77, 0, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1789, 13, 52, 82, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1790, 43, 22, 71, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1791, 49, 69, 68, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1792, 0, 3, 32, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1793, 98, 9, 81, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1794, 86, 73, 34, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1795, 34, 78, 0, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1796, 49, 99, 54, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1797, 103, 96, 106, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1798, 49, 99, 102, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1799, 64, 52, 71, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1800, 0, 63, 61, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1801, 86, 0, 3, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1802, 5, 78, 65, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1803, 0, 54, 13, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1804, 51, 0, 82, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1805, 31, 38, 0, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1806, 0, 27, 70, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1807, 83, 35, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1808, 58, 92, 87, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1809, 75, 106, 90, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1810, 2, 17, 29, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1811, 38, 57, 50, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1812, 39, 13, 16, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1813, 83, 84, 21, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1814, 98, 19, 81, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1815, 39, 19, 2, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1816, 80, 79, 20, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1817, 6, 0, 108, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1818, 38, 0, 73, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1819, 48, 78, 55, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1820, 32, 78, 55, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1821, 35, 87, 65, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1822, 39, 13, 34, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1823, 10, 52, 80, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1824, 0, 20, 21, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1825, 38, 51, 63, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1826, 81, 86, 82, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1827, 83, 51, 21, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1828, 42, 41, 72, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1829, 9, 0, 0, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1830, 56, 0, 38, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1831, 26, 18, 40, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1832, 65, 0, 33, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1833, 8, 64, 40, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1834, 0, 41, 51, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1835, 19, 47, 24, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1836, 33, 87, 29, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1837, 38, 64, 12, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1838, 20, 38, 0, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1839, 0, 40, 18, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1840, 0, 48, 8, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1841, 50, 0, 54, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1842, 50, 99, 106, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1843, 0, 20, 9, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1844, 107, 0, 102, 2, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1845, 0, 25, 7, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1846, 0, 62, 73, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1847, 0, 0, 52, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1848, 54, 67, 71, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1849, 52, 10, 43, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1850, 0, 66, 50, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1851, 45, 0, 56, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1852, 87, 0, 0, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1853, 0, 94, 105, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1854, 0, 6, 10, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1855, 26, 49, 63, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1856, 78, 28, 91, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1857, 26, 34, 50, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1858, 83, 51, 12, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1859, 47, 41, 6, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1860, 12, 90, 55, 4, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1861, 5, 78, 55, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1862, 62, 38, 82, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1863, 0, 77, 41, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1864, 25, 76, 103, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1865, 63, 26, 83, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1866, 17, 42, 33, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1867, 87, 16, 97, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1868, 12, 78, 44, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1869, 96, 40, 67, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1870, 96, 40, 34, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1871, 0, 29, 81, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1872, 75, 7, 90, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1873, 26, 35, 63, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1874, 0, 90, 29, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1875, 50, 97, 54, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1876, 0, 42, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1877, 60, 50, 13, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1878, 97, 48, 53, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1879, 89, 65, 17, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1880, 96, 48, 81, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1881, 56, 82, 61, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1882, 83, 51, 79, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1883, 55, 8, 13, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1884, 92, 83, 62, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1885, 89, 0, 41, 4, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1886, 34, 14, 55, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1887, 3, 14, 44, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1888, 100, 29, 3, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1889, 97, 73, 34, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1890, 82, 56, 79, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1891, 49, 100, 102, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1892, 0, 107, 0, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1893, 101, 93, 19, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1894, 86, 9, 35, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1895, 3, 90, 65, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1896, 0, 56, 63, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1897, 98, 0, 35, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1898, 8, 49, 12, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1899, 0, 0, 54, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1900, 25, 76, 108, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1901, 28, 88, 90, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1902, 109, 112, 70, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1903, 93, 112, 92, 2, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1904, 39, 48, 35, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1905, 36, 76, 103, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1906, 50, 0, 102, 2, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1907, 82, 49, 9, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1908, 38, 84, 50, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1909, 0, 62, 40, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1910, 9, 17, 44, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1911, 22, 0, 6, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1912, 22, 41, 43, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1913, 20, 26, 83, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1914, 29, 104, 66, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1915, 19, 71, 7, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1916, 21, 0, 89, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1917, 63, 38, 82, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1918, 70, 2, 98, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1919, 105, 108, 31, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1920, 8, 85, 50, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1921, 55, 33, 94, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1922, 94, 31, 18, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1923, 82, 35, 63, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1924, 30, 11, 74, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1925, 99, 29, 26, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1926, 101, 109, 39, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1927, 76, 41, 51, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1928, 26, 53, 75, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1929, 38, 20, 86, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1930, 98, 60, 35, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1931, 53, 67, 80, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1932, 100, 31, 57, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1933, 49, 45, 68, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1934, 96, 31, 16, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1935, 50, 70, 106, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1936, 82, 18, 21, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1937, 0, 10, 0, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1938, 5, 89, 29, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1939, 26, 66, 73, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1940, 17, 0, 28, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1941, 97, 40, 26, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1942, 0, 14, 69, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1943, 54, 67, 56, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1944, 70, 91, 49, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1945, 0, 43, 10, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1946, 98, 40, 81, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1947, 85, 26, 82, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1948, 99, 9, 30, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1949, 96, 74, 67, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1950, 7, 76, 91, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1951, 68, 18, 73, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1952, 65, 6, 22, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1953, 55, 3, 96, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1954, 59, 78, 0, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1955, 73, 8, 99, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1956, 108, 96, 105, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1957, 49, 45, 102, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1958, 102, 109, 31, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1959, 38, 56, 60, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1960, 18, 52, 82, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1961, 60, 50, 49, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1962, 31, 0, 71, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1963, 39, 73, 2, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1964, 0, 47, 24, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1965, 43, 52, 56, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1966, 91, 21, 85, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1967, 64, 67, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1968, 82, 53, 9, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1969, 24, 27, 70, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1970, 82, 37, 86, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1971, 96, 19, 20, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1972, 5, 78, 0, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1973, 49, 0, 102, 2, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1974, 82, 37, 75, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1975, 97, 31, 57, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1976, 104, 0, 68, 2, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1977, 49, 95, 54, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1978, 0, 0, 75, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1979, 0, 102, 0, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1980, 17, 0, 10, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1981, 67, 91, 100, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1982, 55, 75, 94, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1983, 83, 37, 63, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1984, 39, 19, 8, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1985, 70, 33, 94, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1986, 40, 38, 83, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1987, 0, 0, 10, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1988, 24, 46, 92, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1989, 97, 0, 35, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1990, 86, 29, 18, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1991, 100, 29, 26, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1992, 26, 49, 79, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1993, 0, 62, 63, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1994, 96, 40, 18, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1995, 70, 75, 94, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (1996, 106, 103, 39, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (1997, 0, 61, 0, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1998, 61, 52, 0, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (1999, 94, 31, 3, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2000, 83, 57, 73, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2001, 96, 9, 35, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2002, 0, 16, 98, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2003, 99, 13, 0, 4, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2004, 43, 52, 0, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2005, 0, 31, 67, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2006, 95, 32, 20, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2007, 8, 20, 9, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2008, 108, 69, 105, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2009, 97, 73, 81, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2010, 30, 42, 27, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2011, 73, 91, 49, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2012, 56, 63, 38, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2013, 99, 48, 3, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2014, 35, 89, 29, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2015, 103, 0, 102, 2, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2016, 15, 0, 0, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2017, 80, 19, 8, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2018, 103, 94, 68, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2019, 97, 0, 53, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2020, 58, 92, 25, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2021, 0, 0, 43, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2022, 55, 91, 32, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2023, 39, 73, 35, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2024, 107, 0, 101, 2, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2025, 0, 64, 40, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2026, 106, 80, 66, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2027, 73, 91, 95, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2028, 83, 85, 73, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2029, 38, 85, 0, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2030, 105, 30, 66, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2031, 112, 0, 71, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2032, 2, 78, 55, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2033, 96, 13, 64, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2034, 10, 86, 71, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2035, 48, 58, 69, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2036, 67, 91, 94, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2037, 0, 89, 0, 4, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2038, 26, 49, 86, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2039, 15, 78, 65, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2040, 11, 10, 15, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2041, 100, 32, 20, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2042, 83, 37, 60, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2043, 95, 60, 64, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2044, 6, 28, 92, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2045, 98, 29, 57, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2046, 46, 7, 87, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2047, 4, 14, 44, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2048, 72, 86, 56, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2049, 96, 29, 57, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2050, 47, 10, 77, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2051, 68, 66, 60, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2052, 27, 0, 0, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2053, 0, 73, 20, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2054, 102, 0, 31, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2055, 38, 18, 12, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2056, 27, 0, 109, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2057, 49, 96, 68, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2058, 70, 33, 96, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2059, 96, 40, 81, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2060, 54, 22, 83, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2061, 26, 64, 79, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2062, 17, 6, 36, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2063, 97, 79, 3, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2064, 67, 50, 45, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2065, 9, 17, 55, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2066, 33, 14, 65, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2067, 26, 64, 0, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2068, 8, 56, 63, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2069, 64, 0, 71, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2070, 50, 94, 105, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2071, 0, 38, 82, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2072, 17, 0, 76, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2073, 15, 90, 29, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2074, 83, 56, 86, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2075, 19, 6, 46, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2076, 0, 9, 3, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2077, 49, 70, 54, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2078, 108, 69, 0, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2079, 39, 0, 18, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2080, 0, 50, 94, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2081, 70, 0, 32, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2082, 4, 0, 0, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2083, 38, 66, 12, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2084, 0, 112, 108, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2085, 0, 8, 97, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2086, 82, 20, 0, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2087, 30, 47, 46, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2088, 0, 81, 9, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2089, 88, 59, 58, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2090, 100, 31, 30, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2091, 86, 31, 35, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2092, 27, 10, 51, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2093, 87, 50, 0, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2094, 15, 58, 69, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2095, 52, 61, 109, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2096, 88, 4, 58, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2097, 5, 78, 44, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2098, 18, 0, 56, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2099, 19, 43, 74, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2100, 96, 79, 34, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2101, 99, 13, 20, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2102, 107, 96, 106, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2103, 70, 33, 32, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2104, 96, 32, 34, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2105, 89, 59, 0, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2106, 80, 29, 26, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2107, 42, 61, 112, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2108, 37, 38, 0, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2109, 100, 74, 3, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2110, 82, 49, 73, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2111, 82, 84, 73, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2112, 82, 81, 86, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2113, 0, 8, 94, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2114, 4, 90, 44, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2115, 77, 89, 65, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2116, 82, 85, 12, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2117, 33, 90, 55, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2118, 42, 61, 109, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2119, 55, 2, 97, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2120, 0, 18, 40, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2121, 49, 94, 68, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2122, 62, 52, 56, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2123, 8, 35, 75, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2124, 75, 105, 89, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2125, 11, 36, 6, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2126, 0, 96, 54, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2127, 103, 55, 101, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2128, 93, 46, 91, 2, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2129, 0, 83, 61, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2130, 59, 89, 55, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2131, 57, 22, 83, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2132, 19, 6, 10, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2133, 88, 12, 41, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2134, 0, 14, 55, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2135, 87, 50, 96, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2136, 52, 10, 112, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2137, 68, 0, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2138, 37, 86, 71, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2139, 67, 54, 13, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2140, 39, 31, 81, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2141, 106, 109, 31, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2142, 100, 29, 8, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2143, 39, 60, 34, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2144, 94, 48, 35, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2145, 17, 0, 5, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2146, 17, 0, 74, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2147, 26, 56, 0, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2148, 78, 28, 88, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2149, 35, 0, 0, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2150, 83, 51, 9, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2151, 87, 33, 32, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2152, 0, 0, 56, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2153, 94, 48, 26, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2154, 83, 72, 40, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2155, 73, 91, 96, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2156, 43, 38, 83, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2157, 19, 0, 5, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2158, 8, 34, 86, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2159, 83, 51, 40, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2160, 0, 18, 75, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2161, 98, 48, 8, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2162, 26, 44, 50, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2163, 102, 30, 39, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2164, 95, 79, 26, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2165, 8, 18, 9, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2166, 69, 2, 0, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2167, 94, 13, 35, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2168, 38, 81, 63, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2169, 38, 66, 60, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2170, 24, 0, 107, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2171, 26, 35, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2172, 95, 32, 16, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2173, 0, 51, 12, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2174, 98, 40, 16, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2175, 54, 38, 80, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2176, 22, 10, 48, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2177, 28, 101, 25, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2178, 52, 0, 15, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2179, 20, 86, 71, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2180, 67, 16, 13, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2181, 34, 87, 69, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2182, 99, 79, 8, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2183, 9, 78, 44, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2184, 38, 0, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2185, 16, 78, 65, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2186, 0, 83, 37, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2187, 94, 74, 3, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2188, 8, 56, 79, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2189, 25, 28, 11, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2190, 42, 41, 77, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2191, 67, 16, 99, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2192, 83, 0, 40, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2193, 36, 27, 104, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2194, 86, 40, 16, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2195, 100, 13, 18, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2196, 96, 48, 35, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2197, 48, 89, 44, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2198, 0, 37, 50, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2199, 0, 10, 51, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2200, 0, 9, 2, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2201, 24, 76, 70, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2202, 0, 20, 40, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2203, 30, 25, 5, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2204, 68, 57, 9, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2205, 0, 85, 73, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2206, 68, 81, 21, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2207, 8, 72, 86, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2208, 8, 81, 9, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2209, 0, 0, 86, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2210, 38, 18, 73, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2211, 32, 78, 44, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2212, 18, 86, 80, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2213, 0, 71, 59, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2214, 74, 14, 44, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2215, 54, 52, 80, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2216, 46, 106, 0, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2217, 46, 0, 90, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2218, 67, 3, 49, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2219, 55, 2, 49, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2220, 94, 9, 2, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2221, 76, 41, 6, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2222, 98, 60, 67, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2223, 65, 11, 10, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2224, 0, 61, 93, 2, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2225, 107, 98, 105, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2226, 83, 0, 60, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2227, 58, 7, 89, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2228, 38, 49, 75, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2229, 80, 79, 53, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2230, 31, 86, 0, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2231, 100, 60, 8, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2232, 6, 27, 0, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2233, 94, 29, 16, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2234, 14, 65, 0, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2235, 67, 54, 99, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2236, 91, 83, 0, 4, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2237, 40, 38, 80, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2238, 70, 0, 99, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2239, 41, 86, 82, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2240, 65, 0, 36, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2241, 0, 43, 28, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2242, 0, 0, 49, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2243, 38, 57, 73, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2244, 63, 52, 82, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2245, 0, 51, 63, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2246, 19, 25, 7, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2247, 32, 87, 55, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2248, 50, 100, 68, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2249, 97, 60, 30, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2250, 16, 14, 69, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2251, 91, 63, 85, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2252, 54, 0, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2253, 107, 69, 106, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2254, 87, 54, 100, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2255, 96, 0, 53, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2256, 0, 85, 12, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2257, 91, 21, 38, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2258, 83, 57, 60, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2259, 100, 32, 34, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2260, 17, 71, 76, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2261, 112, 52, 83, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2262, 10, 38, 56, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2263, 96, 9, 3, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2264, 68, 66, 50, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2265, 8, 62, 79, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2266, 39, 74, 35, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2267, 21, 106, 90, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2268, 92, 0, 84, 4, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2269, 68, 49, 21, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2270, 38, 66, 0, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2271, 0, 79, 2, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2272, 45, 22, 56, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2273, 74, 14, 69, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2274, 112, 67, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2275, 73, 16, 97, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2276, 3, 17, 55, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2277, 112, 67, 83, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2278, 0, 42, 22, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2279, 7, 0, 91, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2280, 38, 37, 40, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2281, 0, 89, 55, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2282, 62, 86, 71, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2283, 25, 0, 47, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2284, 6, 28, 88, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2285, 96, 31, 67, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2286, 50, 94, 102, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2287, 82, 56, 0, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2288, 73, 0, 94, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2289, 105, 103, 66, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2290, 15, 14, 65, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2291, 87, 3, 97, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2292, 38, 84, 73, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2293, 78, 28, 108, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2294, 0, 96, 105, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2295, 56, 82, 85, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2296, 18, 26, 56, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2297, 0, 6, 76, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2298, 17, 71, 7, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2299, 68, 85, 79, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2300, 101, 108, 66, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2301, 19, 47, 76, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2302, 41, 67, 56, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2303, 68, 53, 60, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2304, 8, 51, 50, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2305, 103, 95, 102, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2306, 38, 57, 0, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2307, 39, 29, 16, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2308, 69, 68, 49, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2309, 34, 58, 44, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2310, 101, 109, 0, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2311, 108, 45, 68, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2312, 83, 20, 21, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2313, 99, 31, 81, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2314, 78, 76, 70, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2315, 100, 48, 81, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2316, 83, 66, 21, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2317, 5, 87, 65, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2318, 109, 0, 104, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2319, 68, 57, 0, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2320, 108, 97, 105, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2321, 0, 85, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2322, 96, 74, 20, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2323, 90, 12, 41, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2324, 14, 59, 78, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2325, 95, 60, 16, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2326, 58, 39, 87, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2327, 38, 0, 60, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2328, 98, 0, 26, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2329, 109, 27, 92, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2330, 70, 16, 94, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2331, 86, 48, 34, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2332, 98, 9, 34, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2333, 26, 18, 12, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2334, 39, 13, 3, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2335, 97, 0, 16, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2336, 85, 26, 83, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2337, 49, 98, 102, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2338, 45, 67, 71, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2339, 19, 71, 33, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2340, 99, 73, 26, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2341, 8, 62, 0, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2342, 43, 52, 82, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2343, 9, 87, 55, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2344, 0, 87, 44, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2345, 109, 28, 47, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2346, 4, 89, 44, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2347, 87, 91, 99, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2348, 95, 60, 30, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2349, 40, 0, 71, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2350, 47, 10, 72, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2351, 100, 74, 16, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2352, 39, 13, 67, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2353, 108, 97, 54, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2354, 58, 0, 90, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2355, 95, 13, 81, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2356, 43, 38, 56, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2357, 83, 57, 9, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2358, 70, 3, 45, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2359, 0, 63, 84, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2360, 8, 57, 12, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2361, 60, 33, 0, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2362, 16, 90, 65, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2363, 83, 62, 86, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2364, 38, 57, 12, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2365, 0, 60, 8, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2366, 100, 74, 64, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2367, 67, 91, 0, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2368, 0, 73, 8, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2369, 86, 29, 35, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2370, 73, 50, 98, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2371, 67, 75, 13, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2372, 69, 0, 94, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2373, 21, 92, 25, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2374, 100, 31, 53, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2375, 78, 76, 104, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2376, 68, 51, 60, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2377, 24, 46, 108, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2378, 42, 36, 109, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2379, 49, 96, 102, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2380, 33, 58, 65, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2381, 87, 50, 32, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2382, 99, 0, 57, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2383, 11, 0, 77, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2384, 82, 85, 21, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2385, 98, 13, 8, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2386, 51, 38, 56, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2387, 38, 84, 0, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2388, 0, 85, 79, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2389, 86, 9, 67, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2390, 47, 36, 112, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2391, 74, 90, 0, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2392, 73, 50, 45, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2393, 80, 9, 81, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2394, 80, 32, 67, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2395, 15, 90, 55, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2396, 60, 8, 98, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2397, 54, 67, 83, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2398, 71, 0, 77, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2399, 82, 84, 60, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2400, 83, 85, 63, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2401, 81, 52, 56, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2402, 44, 86, 0, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2403, 66, 0, 82, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2404, 57, 86, 83, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2405, 70, 75, 100, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2406, 38, 35, 40, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2407, 49, 96, 0, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2408, 39, 79, 30, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2409, 58, 88, 89, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2410, 89, 59, 17, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2411, 0, 103, 66, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2412, 33, 87, 69, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2413, 94, 9, 64, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2414, 0, 0, 26, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2415, 8, 35, 9, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2416, 82, 0, 40, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2417, 35, 58, 29, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2418, 29, 103, 19, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2419, 20, 52, 83, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2420, 107, 70, 106, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2421, 26, 66, 40, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2422, 94, 79, 81, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2423, 82, 37, 79, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2424, 0, 57, 73, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2425, 0, 76, 0, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2426, 101, 93, 66, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2427, 30, 6, 36, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2428, 86, 48, 20, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2429, 59, 0, 29, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2430, 63, 52, 83, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2431, 67, 91, 13, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2432, 0, 47, 59, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2433, 4, 14, 69, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2434, 93, 76, 107, 2, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2435, 98, 79, 34, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2436, 47, 41, 112, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2437, 82, 66, 75, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2438, 33, 78, 0, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2439, 0, 74, 30, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2440, 109, 76, 0, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2441, 42, 41, 0, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2442, 81, 38, 83, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2443, 108, 96, 102, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2444, 0, 2, 45, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2445, 46, 7, 25, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2446, 0, 0, 40, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2447, 0, 99, 54, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2448, 81, 0, 56, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2449, 89, 77, 78, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2450, 76, 61, 43, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2451, 0, 0, 4, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2452, 76, 41, 77, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2453, 13, 67, 56, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2454, 25, 28, 42, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2455, 0, 13, 35, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2456, 37, 52, 82, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2457, 108, 69, 102, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2458, 70, 16, 97, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2459, 19, 0, 7, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2460, 108, 45, 101, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2461, 102, 93, 19, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2462, 98, 32, 57, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2463, 97, 40, 81, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2464, 0, 101, 90, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2465, 91, 82, 84, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2466, 38, 84, 79, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2467, 0, 32, 64, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2468, 11, 10, 77, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2469, 109, 46, 11, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2470, 67, 50, 100, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2471, 40, 52, 71, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2472, 96, 0, 2, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2473, 38, 37, 50, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2474, 5, 87, 0, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2475, 87, 91, 95, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2476, 69, 3, 100, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2477, 86, 0, 64, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2478, 26, 62, 9, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2479, 96, 13, 8, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2480, 83, 44, 12, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2481, 3, 58, 29, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2482, 106, 103, 66, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2483, 94, 73, 8, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2484, 52, 36, 93, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2485, 107, 97, 54, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2486, 98, 74, 8, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2487, 0, 28, 88, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2488, 87, 8, 98, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2489, 7, 28, 103, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2490, 80, 79, 57, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2491, 9, 78, 69, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2492, 0, 91, 94, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2493, 100, 48, 8, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2494, 8, 51, 75, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2495, 73, 3, 94, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2496, 0, 0, 93, 2, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2497, 99, 31, 16, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2498, 97, 19, 8, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2499, 61, 52, 71, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2500, 30, 43, 36, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2501, 62, 38, 71, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2502, 0, 89, 65, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2503, 82, 37, 60, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2504, 39, 79, 16, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2505, 96, 13, 35, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2506, 100, 60, 34, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2507, 17, 0, 27, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2508, 76, 61, 93, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2509, 84, 0, 71, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2510, 73, 8, 13, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2511, 0, 31, 26, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2512, 96, 60, 26, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2513, 3, 90, 69, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2514, 86, 79, 26, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2515, 104, 45, 105, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2516, 0, 71, 24, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2517, 83, 53, 0, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2518, 39, 13, 57, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2519, 83, 34, 63, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2520, 97, 40, 30, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2521, 7, 76, 92, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2522, 67, 68, 100, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2523, 0, 0, 39, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2524, 94, 19, 81, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2525, 97, 29, 8, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2526, 22, 41, 0, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2527, 55, 16, 94, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2528, 52, 36, 48, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2529, 86, 13, 16, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2530, 87, 50, 99, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2531, 38, 81, 40, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2532, 86, 74, 57, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2533, 43, 38, 82, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2534, 0, 40, 53, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2535, 83, 37, 12, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2536, 0, 49, 75, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2537, 68, 51, 86, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2538, 69, 0, 96, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2539, 0, 39, 25, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2540, 55, 33, 13, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2541, 89, 5, 58, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2542, 107, 70, 54, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2543, 94, 9, 20, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2544, 63, 67, 82, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2545, 93, 28, 108, 2, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2546, 16, 87, 65, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2547, 64, 26, 0, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2548, 99, 9, 3, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2549, 105, 104, 31, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2550, 83, 51, 60, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2551, 19, 6, 59, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2552, 43, 0, 82, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2553, 84, 67, 82, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2554, 108, 45, 102, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2555, 68, 20, 86, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2556, 97, 29, 26, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2557, 0, 93, 0, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2558, 70, 50, 13, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2559, 66, 67, 83, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2560, 38, 62, 40, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2561, 60, 91, 100, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2562, 2, 87, 0, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2563, 44, 0, 71, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2564, 0, 6, 33, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2565, 15, 17, 0, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2566, 4, 17, 29, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2567, 0, 0, 37, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2568, 82, 18, 86, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2569, 89, 77, 41, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2570, 7, 46, 103, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2571, 2, 90, 65, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2572, 80, 31, 81, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2573, 0, 31, 30, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2574, 0, 103, 31, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2575, 96, 13, 67, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2576, 37, 67, 56, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2577, 38, 53, 60, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2578, 81, 22, 80, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2579, 69, 54, 99, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2580, 96, 19, 53, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2581, 29, 0, 39, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2582, 0, 0, 24, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2583, 46, 0, 25, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2584, 38, 44, 40, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2585, 93, 76, 103, 2, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2586, 60, 75, 99, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2587, 4, 87, 55, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2588, 39, 48, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2589, 11, 41, 72, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2590, 19, 6, 33, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2591, 71, 41, 15, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2592, 58, 101, 0, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2593, 0, 68, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2594, 95, 0, 8, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2595, 104, 69, 106, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2596, 30, 11, 59, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2597, 94, 29, 26, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2598, 19, 43, 36, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2599, 85, 26, 0, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2600, 24, 112, 91, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2601, 30, 47, 24, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2602, 68, 72, 60, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2603, 87, 0, 96, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2604, 98, 48, 53, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2605, 72, 86, 83, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2606, 39, 74, 57, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2607, 0, 18, 9, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2608, 0, 30, 31, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2609, 38, 56, 9, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2610, 84, 38, 82, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2611, 9, 87, 29, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2612, 76, 36, 93, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2613, 73, 54, 32, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2614, 38, 20, 63, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2615, 55, 3, 97, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2616, 68, 53, 0, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2617, 8, 0, 75, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2618, 32, 14, 0, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2619, 26, 66, 60, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2620, 26, 20, 9, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2621, 24, 28, 107, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2622, 0, 70, 102, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2623, 86, 9, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2624, 0, 53, 63, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2625, 0, 10, 15, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2626, 70, 3, 94, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2627, 100, 29, 67, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2628, 36, 0, 11, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2629, 68, 18, 63, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2630, 94, 31, 2, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2631, 86, 19, 8, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2632, 0, 91, 99, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2633, 25, 76, 88, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2634, 97, 29, 2, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2635, 17, 25, 33, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2636, 99, 32, 20, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2637, 83, 84, 79, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2638, 0, 33, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2639, 0, 91, 45, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2640, 26, 81, 21, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2641, 74, 89, 65, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2642, 97, 31, 8, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2643, 39, 0, 16, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2644, 58, 101, 87, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2645, 29, 30, 0, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2646, 0, 25, 74, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2647, 31, 22, 82, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2648, 86, 79, 81, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2649, 102, 107, 66, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2650, 92, 21, 62, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2651, 103, 69, 102, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2652, 86, 74, 2, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2653, 107, 70, 101, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2654, 21, 0, 87, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2655, 67, 8, 100, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2656, 97, 40, 64, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2657, 0, 13, 8, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2658, 69, 8, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2659, 86, 40, 3, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2660, 70, 8, 95, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2661, 10, 86, 56, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2662, 76, 61, 77, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2663, 98, 79, 57, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2664, 68, 44, 12, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2665, 87, 50, 45, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2666, 107, 98, 101, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2667, 63, 67, 56, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2668, 71, 41, 93, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2669, 73, 68, 45, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2670, 97, 31, 34, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2671, 39, 48, 67, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2672, 70, 3, 49, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2673, 41, 22, 80, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2674, 9, 90, 0, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2675, 98, 79, 0, 2, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2676, 11, 36, 51, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2677, 78, 76, 108, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2678, 0, 11, 10, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2679, 106, 93, 0, 2, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2680, 83, 18, 86, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2681, 103, 0, 101, 2, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2682, 94, 48, 0, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2683, 27, 41, 6, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2684, 86, 32, 53, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2685, 99, 32, 81, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2686, 87, 54, 13, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2687, 6, 76, 92, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2688, 30, 43, 76, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2689, 3, 14, 69, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2690, 68, 84, 73, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2691, 58, 105, 90, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2692, 34, 14, 29, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2693, 69, 75, 99, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2694, 0, 74, 2, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2695, 53, 52, 82, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2696, 34, 58, 65, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2697, 4, 0, 44, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2698, 98, 40, 64, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2699, 94, 0, 57, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2700, 65, 25, 52, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2701, 39, 9, 20, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2702, 99, 79, 67, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2703, 0, 73, 16, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2704, 76, 10, 77, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2705, 69, 68, 45, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2706, 92, 82, 37, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2707, 67, 68, 45, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2708, 26, 20, 12, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2709, 41, 67, 82, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2710, 80, 0, 81, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2711, 112, 26, 83, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2712, 0, 31, 20, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2713, 8, 57, 73, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2714, 18, 0, 82, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2715, 29, 109, 66, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2716, 53, 38, 56, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2717, 8, 20, 79, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2718, 74, 90, 44, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2719, 0, 70, 106, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2720, 85, 22, 82, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2721, 0, 41, 72, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2722, 37, 22, 83, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2723, 70, 50, 97, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2724, 6, 28, 103, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2725, 0, 47, 22, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2726, 38, 85, 9, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2727, 91, 0, 62, 4, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2728, 72, 38, 56, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2729, 90, 59, 41, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2730, 68, 72, 73, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2731, 55, 2, 99, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2732, 38, 0, 12, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2733, 38, 49, 9, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2734, 79, 38, 82, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2735, 70, 91, 99, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2736, 36, 0, 107, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2737, 69, 8, 96, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2738, 76, 10, 15, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2739, 86, 0, 34, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2740, 38, 84, 63, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2741, 82, 35, 75, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2742, 61, 22, 80, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2743, 96, 79, 81, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2744, 15, 0, 65, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2745, 87, 2, 0, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2746, 0, 3, 94, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2747, 0, 104, 31, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2748, 22, 0, 48, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2749, 54, 52, 56, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2750, 97, 32, 57, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2751, 38, 34, 12, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2752, 22, 41, 77, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2753, 97, 9, 20, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2754, 20, 52, 71, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2755, 38, 51, 12, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2756, 0, 29, 26, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2757, 89, 15, 78, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2758, 86, 48, 57, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2759, 2, 17, 55, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2760, 89, 4, 78, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2761, 34, 90, 0, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2762, 60, 2, 94, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2763, 77, 14, 55, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2764, 25, 46, 47, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2765, 39, 32, 81, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2766, 107, 97, 0, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2767, 108, 55, 54, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2768, 0, 32, 2, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2769, 8, 49, 21, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2770, 45, 38, 83, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2771, 68, 0, 50, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2772, 0, 19, 18, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2773, 50, 95, 68, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2774, 12, 0, 55, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2775, 45, 52, 56, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2776, 47, 0, 15, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2777, 98, 48, 20, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2778, 112, 67, 56, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2779, 79, 86, 80, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2780, 70, 50, 49, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2781, 103, 97, 0, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2782, 98, 13, 64, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2783, 71, 0, 48, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2784, 95, 32, 26, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2785, 53, 26, 83, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2786, 8, 53, 63, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2787, 20, 26, 82, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2788, 0, 54, 98, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2789, 5, 58, 44, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2790, 73, 91, 97, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2791, 41, 67, 80, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2792, 99, 9, 18, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2793, 0, 40, 35, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2794, 68, 84, 21, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2795, 17, 43, 0, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2796, 27, 61, 4, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2797, 68, 0, 9, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2798, 82, 49, 12, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2799, 10, 52, 82, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2800, 9, 14, 65, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2801, 70, 33, 0, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2802, 40, 52, 82, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2803, 87, 33, 94, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2804, 15, 87, 69, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2805, 55, 2, 100, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2806, 97, 31, 20, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2807, 100, 79, 3, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2808, 77, 58, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2809, 106, 104, 0, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2810, 66, 86, 71, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2811, 0, 94, 101, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2812, 104, 97, 105, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2813, 98, 79, 35, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2814, 0, 62, 9, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2815, 14, 0, 41, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2816, 80, 40, 8, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2817, 55, 3, 99, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2818, 70, 8, 45, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2819, 0, 48, 0, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2820, 107, 97, 106, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2821, 94, 40, 18, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2822, 52, 41, 43, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2823, 94, 9, 81, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2824, 18, 86, 83, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2825, 0, 42, 10, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2826, 90, 12, 58, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2827, 0, 30, 66, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2828, 68, 56, 63, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2829, 73, 54, 95, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2830, 39, 60, 8, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2831, 96, 74, 35, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2832, 31, 22, 83, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2833, 86, 73, 18, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2834, 20, 86, 0, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2835, 55, 0, 99, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2836, 70, 50, 100, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2837, 0, 29, 64, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2838, 88, 5, 58, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2839, 65, 0, 74, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2840, 43, 67, 56, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2841, 50, 94, 106, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2842, 95, 29, 0, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2843, 95, 0, 81, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2844, 108, 97, 106, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2845, 65, 42, 46, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2846, 26, 20, 86, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2847, 96, 32, 2, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2848, 30, 42, 59, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2849, 73, 91, 99, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2850, 51, 38, 82, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2851, 36, 28, 104, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2852, 0, 47, 28, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2853, 100, 73, 18, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2854, 4, 87, 29, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2855, 26, 0, 73, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2856, 0, 85, 21, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2857, 73, 50, 100, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2858, 60, 68, 49, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2859, 68, 51, 79, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2860, 68, 57, 50, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2861, 69, 16, 13, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2862, 15, 0, 44, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2863, 94, 60, 16, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2864, 38, 44, 60, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2865, 67, 0, 100, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2866, 26, 53, 0, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2867, 77, 14, 29, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2868, 54, 22, 71, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2869, 54, 38, 83, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2870, 87, 8, 97, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2871, 96, 40, 64, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2872, 73, 0, 49, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2873, 47, 41, 48, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2874, 0, 2, 96, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2875, 79, 38, 80, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2876, 50, 96, 105, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2877, 28, 105, 25, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2878, 34, 78, 69, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2879, 64, 86, 71, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2880, 100, 29, 0, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2881, 21, 39, 87, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2882, 8, 81, 21, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2883, 76, 36, 109, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2884, 70, 16, 98, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2885, 93, 27, 108, 2, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2886, 101, 93, 31, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2887, 0, 9, 53, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2888, 40, 86, 80, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2889, 86, 73, 81, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2890, 0, 40, 67, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2891, 26, 56, 12, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2892, 107, 0, 68, 2, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2893, 74, 89, 55, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2894, 49, 45, 106, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2895, 0, 13, 2, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2896, 95, 13, 30, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2897, 39, 19, 81, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2898, 60, 33, 45, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2899, 0, 0, 28, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2900, 64, 67, 80, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2901, 21, 92, 90, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2902, 94, 32, 81, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2903, 99, 79, 26, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2904, 97, 19, 34, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2905, 0, 11, 59, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2906, 70, 8, 98, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2907, 97, 73, 20, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2908, 8, 66, 0, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2909, 82, 44, 79, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2910, 67, 8, 99, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2911, 98, 40, 34, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2912, 82, 72, 63, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2913, 66, 67, 80, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2914, 24, 46, 107, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2915, 80, 19, 35, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2916, 17, 0, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2917, 55, 91, 95, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2918, 0, 55, 101, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2919, 100, 73, 35, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2920, 36, 27, 103, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2921, 50, 98, 106, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2922, 98, 60, 64, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2923, 46, 101, 90, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2924, 96, 19, 8, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2925, 98, 79, 20, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2926, 96, 9, 18, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2927, 105, 93, 66, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2928, 69, 68, 98, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2929, 18, 86, 82, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2930, 8, 81, 40, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2931, 80, 40, 16, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2932, 81, 38, 80, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2933, 99, 60, 35, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2934, 0, 40, 0, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2935, 104, 100, 102, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2936, 0, 78, 44, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2937, 73, 75, 98, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2938, 8, 85, 79, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2939, 0, 29, 57, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2940, 95, 40, 2, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2941, 38, 64, 63, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2942, 30, 25, 22, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2943, 107, 55, 54, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2944, 8, 51, 60, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2945, 80, 60, 8, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2946, 82, 56, 73, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2947, 0, 63, 37, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2948, 3, 78, 55, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2949, 41, 22, 71, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2950, 32, 0, 0, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2951, 68, 62, 86, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2952, 97, 9, 16, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2953, 65, 47, 74, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2954, 29, 30, 66, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2955, 8, 20, 0, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2956, 30, 0, 28, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2957, 87, 16, 99, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2958, 100, 13, 30, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2959, 70, 16, 32, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2960, 100, 79, 81, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2961, 95, 79, 18, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2962, 100, 40, 53, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2963, 88, 15, 58, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2964, 94, 13, 64, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2965, 97, 19, 20, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2966, 79, 52, 83, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2967, 37, 26, 83, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2968, 29, 93, 19, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2969, 11, 0, 51, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2970, 38, 34, 50, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2971, 94, 79, 16, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2972, 38, 62, 63, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2973, 18, 86, 56, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2974, 73, 0, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2975, 26, 34, 21, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2976, 38, 44, 12, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2977, 80, 48, 64, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2978, 65, 11, 0, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2979, 93, 28, 104, 2, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2980, 98, 48, 2, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2981, 49, 69, 102, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2982, 105, 107, 31, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2983, 26, 18, 0, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2984, 29, 93, 66, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2985, 82, 34, 75, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2986, 107, 55, 101, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2987, 89, 5, 17, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (2988, 68, 62, 12, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2989, 80, 31, 30, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2990, 15, 17, 65, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2991, 86, 29, 2, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2992, 0, 67, 82, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2993, 9, 89, 44, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2994, 55, 8, 45, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2995, 12, 58, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2996, 24, 27, 92, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (2997, 44, 67, 82, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2998, 9, 78, 55, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (2999, 0, 41, 4, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3000, 96, 0, 34, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3001, 84, 52, 71, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3002, 96, 31, 3, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3003, 112, 38, 83, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3004, 82, 57, 40, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3005, 12, 78, 69, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3006, 0, 52, 56, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3007, 33, 87, 0, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3008, 51, 22, 82, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3009, 47, 0, 4, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3010, 24, 28, 91, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3011, 95, 0, 16, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3012, 19, 71, 59, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3013, 90, 5, 17, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3014, 108, 69, 101, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3015, 100, 31, 26, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3016, 87, 8, 99, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3017, 73, 3, 98, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3018, 87, 3, 13, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3019, 100, 74, 26, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3020, 6, 46, 92, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3021, 28, 106, 0, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3022, 83, 35, 40, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3023, 22, 10, 43, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3024, 59, 78, 44, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3025, 31, 22, 71, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3026, 55, 50, 13, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3027, 0, 6, 59, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3028, 38, 66, 63, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3029, 26, 66, 9, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3030, 37, 26, 71, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3031, 0, 101, 89, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3032, 108, 55, 101, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3033, 30, 43, 33, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3034, 64, 52, 83, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3035, 80, 79, 2, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3036, 0, 9, 57, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3037, 98, 48, 3, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3038, 47, 41, 77, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3039, 58, 24, 90, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3040, 8, 72, 50, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3041, 96, 31, 26, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3042, 86, 29, 3, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3043, 6, 28, 47, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3044, 104, 94, 102, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3045, 69, 3, 49, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3046, 68, 56, 75, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3047, 65, 42, 14, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3048, 0, 83, 62, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3049, 53, 86, 71, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3050, 67, 50, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3051, 105, 109, 39, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3052, 107, 69, 101, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3053, 68, 84, 9, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3054, 86, 48, 16, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3055, 94, 74, 0, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3056, 17, 42, 22, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3057, 37, 38, 56, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3058, 0, 81, 73, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3059, 87, 16, 100, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3060, 6, 76, 0, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3061, 82, 53, 79, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3062, 57, 0, 82, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3063, 75, 101, 0, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3064, 25, 27, 91, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3065, 53, 86, 83, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3066, 38, 56, 12, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3067, 39, 32, 16, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3068, 86, 19, 57, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3069, 81, 86, 0, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3070, 0, 25, 22, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3071, 83, 53, 21, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3072, 15, 0, 55, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3073, 87, 50, 13, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3074, 38, 44, 50, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3075, 82, 37, 9, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3076, 38, 35, 50, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3077, 0, 57, 86, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3078, 82, 20, 21, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3079, 70, 33, 100, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3080, 72, 86, 82, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3081, 22, 10, 93, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3082, 87, 54, 49, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3083, 17, 71, 52, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3084, 104, 98, 54, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3085, 0, 42, 33, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3086, 8, 57, 21, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3087, 34, 17, 65, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3088, 82, 62, 9, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3089, 26, 18, 86, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3090, 26, 0, 60, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3091, 99, 0, 30, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3092, 0, 52, 71, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3093, 8, 34, 50, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3094, 100, 32, 67, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3095, 57, 86, 0, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3096, 83, 37, 40, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3097, 39, 48, 34, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3098, 55, 91, 45, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3099, 57, 86, 82, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3100, 59, 90, 65, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3101, 38, 66, 79, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3102, 83, 51, 75, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3103, 100, 13, 16, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3104, 17, 6, 28, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3105, 26, 44, 60, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3106, 16, 58, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3107, 86, 79, 0, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3108, 12, 87, 65, 4, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3109, 96, 79, 35, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3110, 25, 27, 108, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3111, 81, 52, 80, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3112, 62, 22, 83, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3113, 83, 34, 40, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3114, 102, 0, 0, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3115, 43, 22, 82, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3116, 71, 61, 72, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3117, 93, 76, 91, 2, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3118, 0, 40, 81, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3119, 35, 58, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3120, 14, 5, 41, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3121, 8, 44, 12, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3122, 68, 44, 75, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3123, 75, 88, 25, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3124, 0, 87, 29, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3125, 82, 53, 12, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3126, 38, 66, 9, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3127, 47, 0, 112, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3128, 60, 68, 100, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3129, 83, 18, 50, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3130, 68, 81, 86, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3131, 97, 48, 2, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3132, 49, 95, 101, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3133, 59, 78, 29, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3134, 80, 13, 81, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3135, 39, 60, 18, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3136, 33, 90, 44, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3137, 101, 0, 0, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3138, 50, 45, 54, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3139, 49, 96, 106, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3140, 13, 22, 71, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3141, 60, 8, 32, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3142, 58, 39, 90, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3143, 89, 4, 41, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3144, 72, 86, 71, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3145, 100, 48, 20, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3146, 2, 0, 55, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3147, 87, 54, 98, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3148, 30, 43, 28, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3149, 37, 67, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3150, 104, 94, 54, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3151, 69, 2, 32, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3152, 77, 0, 69, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3153, 93, 76, 88, 2, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3154, 103, 55, 105, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3155, 17, 6, 24, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3156, 66, 0, 56, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3157, 8, 0, 40, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3158, 28, 102, 25, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3159, 50, 55, 68, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3160, 0, 31, 16, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3161, 74, 87, 55, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3162, 5, 17, 0, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3163, 8, 51, 21, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3164, 17, 0, 24, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3165, 65, 11, 22, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3166, 60, 16, 95, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3167, 26, 81, 0, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3168, 5, 87, 44, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3169, 58, 39, 25, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3170, 82, 20, 75, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3171, 8, 51, 79, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3172, 18, 22, 71, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3173, 72, 0, 80, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3174, 97, 48, 20, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3175, 38, 51, 79, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3176, 83, 20, 40, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3177, 76, 61, 4, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3178, 26, 49, 9, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3179, 30, 71, 36, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3180, 86, 32, 20, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3181, 97, 9, 18, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3182, 63, 38, 56, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3183, 38, 49, 40, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3184, 97, 48, 3, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3185, 79, 26, 83, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3186, 82, 18, 79, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3187, 82, 44, 40, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3188, 36, 46, 42, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3189, 92, 21, 85, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3190, 8, 72, 73, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3191, 79, 26, 0, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3192, 100, 60, 3, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3193, 78, 27, 108, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3194, 80, 60, 35, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3195, 4, 89, 69, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3196, 49, 45, 105, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3197, 8, 37, 73, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3198, 94, 9, 57, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3199, 100, 32, 64, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3200, 99, 13, 26, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3201, 26, 34, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3202, 39, 73, 30, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3203, 107, 55, 0, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3204, 0, 65, 41, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3205, 94, 0, 0, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3206, 92, 82, 61, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3207, 7, 76, 42, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3208, 19, 42, 10, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3209, 7, 0, 42, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3210, 39, 9, 26, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3211, 32, 14, 65, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3212, 96, 48, 2, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3213, 41, 86, 0, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3214, 26, 72, 0, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3215, 71, 36, 77, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3216, 36, 46, 92, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3217, 5, 90, 55, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3218, 69, 54, 0, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3219, 80, 48, 53, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3220, 99, 48, 53, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3221, 38, 49, 21, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3222, 52, 0, 93, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3223, 98, 48, 16, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3224, 62, 86, 56, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3225, 9, 87, 44, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3226, 52, 36, 15, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3227, 31, 86, 71, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3228, 38, 51, 0, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3229, 63, 52, 56, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3230, 0, 19, 20, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3231, 98, 74, 2, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3232, 0, 13, 64, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3233, 61, 38, 80, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3234, 38, 34, 86, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3235, 63, 86, 82, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3236, 0, 20, 79, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3237, 0, 19, 67, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3238, 69, 75, 98, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3239, 89, 5, 78, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3240, 50, 0, 101, 2, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3241, 36, 27, 88, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3242, 76, 41, 93, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3243, 100, 79, 64, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3244, 80, 32, 8, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3245, 49, 97, 54, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3246, 93, 76, 104, 2, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3247, 52, 0, 4, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3248, 70, 75, 32, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3249, 38, 18, 21, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3250, 83, 57, 12, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3251, 33, 0, 0, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3252, 83, 53, 9, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3253, 2, 90, 0, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3254, 42, 36, 43, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3255, 5, 90, 44, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3256, 0, 107, 66, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3257, 33, 0, 65, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3258, 68, 51, 40, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3259, 26, 0, 40, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3260, 71, 0, 72, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3261, 90, 12, 78, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3262, 17, 42, 10, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3263, 63, 67, 80, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3264, 97, 31, 67, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3265, 83, 44, 79, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3266, 68, 57, 75, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3267, 86, 60, 64, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3268, 83, 53, 86, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3269, 94, 40, 2, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3270, 0, 57, 60, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3271, 100, 0, 8, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3272, 73, 75, 96, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3273, 97, 13, 67, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3274, 39, 48, 81, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3275, 14, 77, 17, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3276, 36, 76, 42, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3277, 99, 0, 18, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3278, 68, 56, 21, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3279, 7, 46, 107, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3280, 29, 80, 39, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3281, 0, 39, 87, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3282, 0, 7, 89, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3283, 104, 95, 105, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3284, 51, 52, 71, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3285, 68, 20, 63, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3286, 45, 67, 82, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3287, 71, 36, 93, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3288, 21, 88, 89, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3289, 50, 96, 0, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3290, 0, 0, 11, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3291, 45, 38, 0, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3292, 21, 106, 25, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3293, 27, 0, 4, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3294, 83, 57, 50, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3295, 7, 76, 103, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3296, 27, 0, 6, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3297, 69, 50, 99, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3298, 0, 3, 97, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3299, 38, 72, 12, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3300, 97, 13, 0, 4, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3301, 83, 85, 21, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3302, 94, 40, 67, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3303, 78, 76, 0, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3304, 93, 112, 104, 2, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3305, 70, 91, 0, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3306, 16, 87, 29, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3307, 68, 34, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3308, 15, 78, 69, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3309, 85, 67, 71, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3310, 0, 41, 109, 2, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3311, 0, 40, 64, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3312, 19, 25, 24, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3313, 87, 33, 96, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3314, 19, 11, 22, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3315, 52, 10, 48, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3316, 65, 43, 76, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3317, 30, 11, 7, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3318, 108, 100, 102, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3319, 39, 60, 3, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3320, 17, 47, 36, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3321, 85, 22, 56, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3322, 44, 52, 56, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3323, 26, 34, 86, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3324, 97, 74, 20, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3325, 68, 49, 75, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3326, 90, 0, 41, 4, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3327, 19, 71, 14, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3328, 69, 54, 45, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3329, 94, 19, 26, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3330, 103, 55, 0, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3331, 96, 32, 16, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3332, 108, 95, 68, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3333, 6, 46, 42, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3334, 68, 0, 73, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3335, 47, 36, 15, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3336, 80, 31, 2, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3337, 60, 3, 49, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3338, 80, 0, 8, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3339, 65, 0, 76, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3340, 67, 0, 98, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3341, 0, 11, 27, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3342, 0, 69, 105, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3343, 11, 0, 4, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3344, 26, 81, 12, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3345, 82, 37, 0, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3346, 39, 29, 8, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3347, 98, 0, 57, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3348, 68, 53, 9, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3349, 47, 36, 48, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3350, 86, 19, 67, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3351, 98, 19, 67, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3352, 82, 0, 50, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3353, 97, 31, 30, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3354, 0, 66, 21, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3355, 38, 56, 21, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3356, 67, 33, 94, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3357, 0, 85, 63, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3358, 21, 101, 25, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3359, 98, 32, 0, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3360, 69, 2, 45, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3361, 81, 67, 56, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3362, 60, 68, 13, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3363, 0, 58, 69, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3364, 109, 0, 42, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3365, 0, 42, 46, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3366, 58, 92, 89, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3367, 98, 0, 81, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3368, 83, 49, 21, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3369, 22, 61, 51, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3370, 69, 54, 95, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3371, 48, 78, 69, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3372, 108, 97, 0, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3373, 51, 52, 83, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3374, 11, 0, 109, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3375, 86, 79, 35, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3376, 80, 73, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3377, 57, 86, 56, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3378, 39, 48, 16, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3379, 0, 41, 15, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3380, 0, 49, 21, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3381, 0, 59, 0, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3382, 0, 16, 100, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3383, 24, 46, 70, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3384, 0, 47, 7, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3385, 96, 29, 16, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3386, 17, 47, 27, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3387, 33, 89, 55, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3388, 0, 59, 17, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3389, 0, 96, 0, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3390, 44, 67, 56, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3391, 0, 92, 87, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3392, 91, 82, 61, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3393, 88, 77, 41, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3394, 98, 60, 26, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3395, 75, 0, 87, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3396, 60, 2, 100, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3397, 109, 46, 103, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3398, 0, 36, 112, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3399, 53, 38, 83, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3400, 6, 0, 88, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3401, 40, 26, 82, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3402, 26, 85, 60, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3403, 29, 108, 0, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3404, 0, 0, 94, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3405, 96, 73, 8, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3406, 39, 31, 0, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3407, 65, 25, 33, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3408, 95, 79, 30, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3409, 31, 22, 80, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3410, 0, 46, 0, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3411, 12, 90, 69, 4, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3412, 57, 67, 82, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3413, 94, 74, 18, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3414, 60, 2, 45, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3415, 86, 9, 20, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3416, 0, 13, 20, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3417, 77, 78, 55, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3418, 13, 86, 83, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3419, 0, 87, 69, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3420, 19, 6, 36, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3421, 17, 47, 46, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3422, 24, 27, 91, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3423, 99, 31, 0, 4, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3424, 95, 29, 67, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3425, 98, 48, 57, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3426, 73, 3, 95, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3427, 7, 28, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3428, 0, 77, 58, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3429, 78, 0, 92, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3430, 8, 49, 86, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3431, 0, 46, 91, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3432, 99, 60, 53, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3433, 19, 42, 22, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3434, 12, 89, 65, 4, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3435, 39, 73, 67, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3436, 68, 44, 50, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3437, 107, 99, 68, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3438, 98, 40, 2, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3439, 54, 22, 80, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3440, 65, 25, 76, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3441, 95, 19, 3, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3442, 86, 60, 3, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3443, 0, 11, 74, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3444, 83, 56, 60, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3445, 35, 17, 69, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3446, 80, 0, 35, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3447, 8, 56, 50, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3448, 3, 78, 0, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3449, 0, 57, 50, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3450, 4, 14, 0, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3451, 98, 9, 16, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3452, 0, 60, 81, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3453, 0, 2, 97, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3454, 0, 64, 86, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3455, 46, 102, 0, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3456, 0, 0, 99, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3457, 0, 65, 17, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3458, 9, 78, 0, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3459, 98, 29, 34, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3460, 69, 0, 100, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3461, 69, 2, 96, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3462, 0, 80, 31, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3463, 0, 20, 50, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3464, 22, 61, 77, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3465, 92, 63, 37, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3466, 38, 51, 73, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3467, 34, 0, 0, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3468, 68, 51, 9, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3469, 8, 44, 21, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3470, 20, 86, 82, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3471, 0, 33, 45, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3472, 93, 27, 0, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3473, 46, 7, 90, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3474, 4, 0, 69, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3475, 36, 112, 88, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3476, 30, 71, 14, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3477, 94, 9, 16, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3478, 49, 97, 68, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3479, 97, 79, 20, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3480, 74, 0, 65, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3481, 69, 91, 13, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3482, 58, 39, 89, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3483, 0, 19, 35, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3484, 49, 96, 54, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3485, 98, 73, 34, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3486, 57, 67, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3487, 13, 52, 56, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3488, 24, 0, 42, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3489, 108, 98, 102, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3490, 96, 79, 30, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3491, 6, 28, 42, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3492, 40, 67, 71, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3493, 34, 58, 55, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3494, 3, 14, 55, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3495, 89, 65, 41, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3496, 61, 52, 80, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3497, 98, 79, 67, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3498, 82, 20, 63, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3499, 73, 2, 45, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3500, 95, 40, 64, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3501, 0, 62, 50, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3502, 98, 29, 20, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3503, 78, 46, 92, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3504, 98, 13, 3, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3505, 0, 28, 107, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3506, 98, 79, 2, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3507, 32, 0, 65, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3508, 29, 107, 66, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3509, 51, 0, 71, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3510, 8, 64, 50, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3511, 79, 22, 83, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3512, 86, 79, 20, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3513, 16, 87, 55, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3514, 69, 8, 32, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3515, 69, 91, 0, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3516, 95, 79, 8, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3517, 12, 89, 55, 4, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3518, 45, 52, 80, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3519, 97, 74, 34, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3520, 41, 26, 71, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3521, 94, 19, 30, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3522, 100, 31, 0, 4, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3523, 68, 62, 75, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3524, 8, 0, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3525, 65, 6, 14, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3526, 0, 109, 19, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3527, 38, 53, 12, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3528, 0, 85, 86, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3529, 70, 68, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3530, 86, 13, 8, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3531, 73, 8, 94, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3532, 0, 91, 97, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3533, 93, 112, 42, 2, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3534, 38, 64, 86, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3535, 0, 102, 87, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3536, 39, 0, 2, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3537, 4, 90, 0, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3538, 64, 38, 80, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3539, 101, 108, 39, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3540, 8, 84, 63, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3541, 83, 64, 75, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3542, 0, 32, 3, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3543, 39, 31, 67, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3544, 86, 32, 3, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3545, 65, 71, 59, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3546, 37, 86, 82, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3547, 69, 0, 99, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3548, 70, 50, 32, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3549, 68, 72, 0, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3550, 94, 0, 16, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3551, 80, 0, 30, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3552, 88, 0, 78, 4, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3553, 48, 90, 55, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3554, 0, 84, 21, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3555, 94, 19, 64, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3556, 82, 44, 12, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3557, 100, 13, 64, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3558, 83, 34, 21, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3559, 80, 40, 3, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3560, 50, 69, 54, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3561, 106, 0, 31, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3562, 30, 25, 33, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3563, 100, 29, 16, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3564, 105, 103, 31, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3565, 0, 108, 66, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3566, 76, 61, 0, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3567, 55, 3, 49, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3568, 66, 38, 83, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3569, 98, 31, 57, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3570, 26, 57, 21, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3571, 46, 101, 87, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3572, 73, 54, 49, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3573, 73, 75, 13, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3574, 67, 3, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3575, 97, 60, 67, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3576, 10, 22, 82, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3577, 81, 22, 82, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3578, 80, 48, 30, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3579, 39, 19, 35, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3580, 13, 26, 56, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3581, 70, 68, 95, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3582, 60, 0, 99, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3583, 40, 52, 80, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3584, 87, 91, 49, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3585, 86, 40, 57, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3586, 8, 51, 9, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3587, 38, 53, 21, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3588, 72, 22, 80, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3589, 108, 94, 106, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3590, 0, 91, 95, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3591, 8, 18, 60, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3592, 80, 9, 34, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3593, 18, 0, 71, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3594, 17, 25, 24, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3595, 100, 73, 8, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3596, 39, 31, 57, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3597, 105, 93, 0, 2, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3598, 99, 0, 2, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3599, 98, 40, 35, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3600, 62, 67, 71, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3601, 27, 0, 51, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3602, 97, 74, 16, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3603, 73, 50, 99, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3604, 89, 65, 78, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3605, 18, 22, 82, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3606, 0, 105, 0, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3607, 39, 79, 3, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3608, 68, 81, 75, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3609, 51, 67, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3610, 102, 30, 19, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3611, 55, 8, 99, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3612, 16, 58, 44, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3613, 95, 32, 18, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3614, 0, 98, 54, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3615, 98, 79, 30, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3616, 90, 12, 0, 4, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3617, 96, 40, 20, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3618, 96, 40, 2, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3619, 38, 44, 86, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3620, 24, 76, 91, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3621, 68, 0, 21, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3622, 100, 0, 16, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3623, 26, 34, 63, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3624, 44, 38, 0, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3625, 28, 106, 25, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3626, 99, 74, 34, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3627, 0, 0, 14, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3628, 87, 75, 95, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3629, 62, 22, 82, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3630, 64, 38, 0, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3631, 0, 44, 75, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3632, 109, 28, 11, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3633, 46, 102, 89, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3634, 49, 94, 106, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3635, 53, 0, 56, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3636, 24, 112, 104, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3637, 74, 78, 69, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3638, 22, 0, 109, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3639, 10, 67, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3640, 72, 67, 71, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3641, 96, 0, 20, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3642, 60, 50, 45, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3643, 78, 112, 70, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3644, 96, 32, 20, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3645, 64, 38, 83, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3646, 99, 73, 18, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3647, 98, 74, 3, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3648, 70, 91, 13, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3649, 18, 26, 80, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3650, 20, 86, 83, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3651, 98, 32, 35, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3652, 94, 48, 30, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3653, 0, 50, 97, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3654, 0, 6, 27, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3655, 66, 52, 71, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3656, 36, 28, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3657, 100, 0, 81, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3658, 100, 19, 67, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3659, 8, 44, 73, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3660, 98, 0, 53, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3661, 87, 2, 45, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3662, 55, 50, 95, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3663, 102, 30, 66, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3664, 68, 37, 73, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3665, 67, 50, 96, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3666, 97, 60, 53, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3667, 41, 38, 56, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3668, 67, 91, 45, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3669, 24, 112, 108, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3670, 0, 13, 26, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3671, 77, 89, 44, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3672, 67, 54, 45, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3673, 8, 66, 12, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3674, 96, 9, 67, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3675, 109, 28, 42, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3676, 104, 70, 101, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3677, 54, 26, 80, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3678, 27, 61, 93, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3679, 98, 31, 16, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3680, 71, 0, 0, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3681, 95, 32, 30, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3682, 100, 60, 30, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3683, 52, 41, 0, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3684, 86, 48, 26, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3685, 0, 75, 49, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3686, 98, 9, 0, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3687, 97, 40, 3, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3688, 74, 78, 0, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3689, 67, 91, 32, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3690, 8, 44, 50, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3691, 0, 79, 20, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3692, 8, 84, 79, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3693, 51, 0, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3694, 28, 39, 87, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3695, 68, 0, 79, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3696, 26, 51, 0, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3697, 34, 17, 69, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3698, 26, 53, 21, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3699, 36, 27, 42, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3700, 0, 2, 99, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3701, 54, 67, 82, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3702, 97, 9, 34, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3703, 0, 7, 90, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3704, 99, 32, 53, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3705, 94, 13, 30, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3706, 20, 22, 82, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3707, 38, 53, 40, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3708, 32, 78, 29, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3709, 68, 18, 0, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3710, 82, 35, 73, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3711, 26, 0, 75, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3712, 96, 9, 16, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3713, 29, 93, 31, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3714, 40, 67, 80, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3715, 100, 40, 16, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3716, 8, 53, 40, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3717, 0, 54, 96, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3718, 89, 5, 0, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3719, 17, 25, 10, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3720, 26, 56, 79, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3721, 45, 0, 71, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3722, 0, 47, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3723, 17, 43, 5, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3724, 90, 59, 17, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3725, 102, 104, 19, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3726, 55, 91, 99, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3727, 69, 3, 98, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3728, 82, 49, 63, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3729, 48, 17, 29, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3730, 17, 25, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3731, 62, 26, 82, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3732, 38, 85, 73, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3733, 26, 84, 12, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3734, 14, 0, 58, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3735, 85, 67, 80, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3736, 5, 14, 55, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3737, 0, 25, 5, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3738, 83, 51, 63, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3739, 62, 26, 83, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3740, 86, 31, 30, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3741, 101, 107, 39, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3742, 92, 63, 84, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3743, 50, 100, 0, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3744, 88, 4, 0, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3745, 50, 55, 54, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3746, 103, 45, 106, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3747, 0, 15, 58, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3748, 88, 12, 78, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3749, 24, 0, 0, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3750, 32, 17, 55, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3751, 85, 67, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3752, 93, 28, 88, 2, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3753, 109, 112, 92, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3754, 107, 45, 0, 2, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3755, 34, 78, 55, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3756, 86, 32, 2, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3757, 0, 36, 93, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3758, 102, 80, 19, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3759, 24, 0, 104, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3760, 100, 0, 30, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3761, 0, 95, 105, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3762, 16, 90, 69, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3763, 24, 112, 88, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3764, 21, 106, 87, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3765, 28, 0, 89, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3766, 77, 0, 0, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3767, 82, 44, 50, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3768, 8, 44, 75, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3769, 0, 16, 32, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3770, 0, 34, 50, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3771, 33, 78, 44, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3772, 73, 54, 100, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3773, 86, 32, 81, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3774, 82, 81, 73, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3775, 53, 22, 83, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3776, 84, 0, 56, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3777, 65, 71, 33, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3778, 26, 57, 9, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3779, 96, 48, 8, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3780, 73, 75, 32, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3781, 86, 40, 2, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3782, 97, 32, 20, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3783, 24, 27, 104, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3784, 99, 13, 16, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3785, 36, 112, 11, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3786, 69, 0, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3787, 100, 0, 57, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3788, 70, 16, 0, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3789, 86, 0, 16, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3790, 38, 18, 63, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3791, 32, 17, 65, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3792, 95, 60, 3, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3793, 33, 89, 44, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3794, 21, 39, 89, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3795, 0, 53, 9, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3796, 30, 47, 10, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3797, 21, 24, 87, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3798, 21, 101, 89, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3799, 82, 57, 50, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3800, 30, 6, 14, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3801, 99, 74, 67, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3802, 96, 19, 3, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3803, 38, 72, 86, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3804, 6, 27, 92, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3805, 69, 3, 45, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3806, 25, 28, 104, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3807, 83, 34, 9, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3808, 102, 104, 31, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3809, 80, 48, 16, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3810, 5, 17, 55, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3811, 96, 19, 16, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3812, 50, 99, 0, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3813, 67, 16, 100, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3814, 71, 36, 43, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3815, 24, 0, 92, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3816, 38, 44, 63, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3817, 69, 3, 32, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3818, 69, 50, 98, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3819, 32, 89, 29, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3820, 92, 0, 85, 4, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3821, 95, 74, 20, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3822, 94, 13, 0, 4, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3823, 0, 0, 17, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3824, 17, 71, 59, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3825, 94, 74, 26, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3826, 35, 14, 29, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3827, 82, 72, 50, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3828, 80, 32, 35, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3829, 38, 51, 60, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3830, 0, 9, 26, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3831, 39, 74, 2, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3832, 103, 55, 102, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3833, 86, 0, 57, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3834, 0, 48, 35, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3835, 48, 89, 0, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3836, 69, 91, 96, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3837, 46, 24, 90, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3838, 8, 84, 86, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3839, 60, 16, 100, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3840, 26, 51, 79, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3841, 57, 26, 56, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3842, 100, 19, 3, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3843, 52, 61, 93, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3844, 10, 22, 80, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3845, 17, 11, 0, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3846, 86, 13, 53, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3847, 3, 87, 29, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3848, 38, 0, 63, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3849, 84, 86, 0, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3850, 83, 56, 63, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3851, 97, 74, 8, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3852, 66, 38, 82, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3853, 8, 56, 86, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3854, 69, 68, 32, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3855, 64, 0, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3856, 100, 9, 3, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3857, 96, 32, 67, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3858, 55, 33, 96, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3859, 104, 69, 0, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3860, 75, 101, 25, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3861, 103, 0, 68, 2, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3862, 55, 50, 94, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3863, 103, 98, 0, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3864, 80, 29, 64, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3865, 0, 91, 0, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3866, 59, 14, 55, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3867, 51, 0, 80, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3868, 100, 0, 34, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3869, 31, 86, 56, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3870, 63, 52, 0, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3871, 46, 24, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3872, 0, 90, 44, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3873, 106, 0, 66, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3874, 25, 28, 107, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3875, 99, 40, 0, 2, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3876, 74, 90, 69, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3877, 19, 11, 52, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3878, 45, 26, 82, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3879, 86, 9, 8, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3880, 12, 87, 55, 4, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3881, 98, 48, 18, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3882, 98, 13, 57, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3883, 67, 0, 13, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3884, 112, 0, 83, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3885, 39, 13, 26, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3886, 60, 91, 32, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3887, 0, 0, 76, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3888, 76, 41, 15, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3889, 95, 60, 26, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3890, 53, 22, 71, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3891, 0, 0, 30, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3892, 99, 19, 53, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3893, 80, 60, 30, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3894, 35, 17, 29, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3895, 56, 82, 37, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3896, 38, 0, 79, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3897, 82, 44, 0, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3898, 67, 0, 32, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3899, 26, 53, 86, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3900, 83, 0, 21, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3901, 80, 19, 16, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3902, 68, 72, 75, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3903, 39, 74, 16, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3904, 73, 0, 99, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3905, 7, 112, 108, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3906, 82, 53, 50, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3907, 61, 67, 83, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3908, 109, 76, 42, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3909, 83, 20, 0, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3910, 47, 10, 48, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3911, 0, 105, 87, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3912, 26, 57, 50, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3913, 0, 5, 58, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3914, 96, 79, 53, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3915, 39, 40, 34, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3916, 6, 0, 92, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3917, 82, 18, 73, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3918, 22, 41, 6, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3919, 60, 91, 99, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3920, 73, 2, 49, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3921, 60, 54, 45, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3922, 68, 18, 60, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3923, 76, 10, 43, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3924, 54, 86, 82, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3925, 104, 45, 106, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3926, 58, 102, 87, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3927, 60, 16, 97, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3928, 100, 29, 35, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3929, 100, 0, 35, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3930, 0, 50, 96, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3931, 68, 51, 21, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3932, 83, 44, 21, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3933, 19, 0, 14, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3934, 7, 46, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3935, 8, 81, 60, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3936, 83, 62, 75, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3937, 106, 93, 31, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3938, 69, 33, 49, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3939, 40, 38, 0, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3940, 57, 22, 0, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3941, 59, 87, 29, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3942, 70, 75, 13, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3943, 80, 48, 3, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3944, 26, 84, 0, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3945, 95, 13, 26, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3946, 0, 84, 60, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3947, 97, 0, 2, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3948, 38, 20, 75, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3949, 103, 97, 54, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3950, 12, 0, 44, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3951, 47, 10, 4, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3952, 80, 74, 64, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3953, 73, 33, 98, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3954, 54, 26, 82, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3955, 55, 54, 45, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3956, 94, 73, 2, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3957, 48, 89, 29, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3958, 87, 16, 49, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3959, 94, 32, 18, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3960, 49, 97, 101, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3961, 99, 60, 64, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3962, 97, 60, 8, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3963, 99, 74, 18, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3964, 68, 51, 73, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3965, 0, 0, 109, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3966, 28, 101, 90, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3967, 103, 100, 0, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3968, 95, 19, 64, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3969, 89, 15, 41, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3970, 8, 62, 86, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3971, 47, 61, 93, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3972, 0, 2, 95, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3973, 49, 0, 106, 2, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3974, 98, 9, 3, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3975, 59, 58, 65, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3976, 83, 49, 75, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3977, 26, 0, 12, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3978, 109, 76, 92, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3979, 94, 0, 18, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3980, 105, 0, 0, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3981, 91, 21, 37, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3982, 68, 34, 79, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3983, 55, 50, 97, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3984, 86, 32, 67, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3985, 19, 42, 24, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3986, 0, 32, 26, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3987, 82, 49, 75, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3988, 0, 31, 81, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3989, 95, 60, 2, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3990, 47, 61, 112, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3991, 7, 27, 91, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (3992, 82, 20, 9, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3993, 10, 22, 0, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3994, 107, 97, 68, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (3995, 68, 57, 63, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3996, 26, 20, 79, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3997, 22, 36, 48, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3998, 17, 42, 28, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (3999, 44, 52, 80, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4000, 13, 26, 0, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4001, 50, 70, 54, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4002, 100, 73, 2, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4003, 65, 47, 5, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4004, 60, 3, 100, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4005, 29, 109, 19, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4006, 107, 96, 68, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4007, 100, 13, 35, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4008, 0, 43, 24, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4009, 86, 40, 8, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4010, 0, 31, 18, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4011, 45, 86, 83, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4012, 16, 90, 0, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4013, 38, 49, 50, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4014, 88, 12, 58, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4015, 50, 98, 68, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4016, 55, 54, 49, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4017, 26, 35, 75, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4018, 3, 58, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4019, 73, 54, 13, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4020, 79, 26, 56, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4021, 94, 32, 26, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4022, 22, 41, 112, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4023, 109, 46, 91, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4024, 21, 106, 89, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4025, 26, 85, 21, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4026, 0, 57, 63, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4027, 24, 0, 88, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4028, 26, 62, 75, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4029, 59, 87, 65, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4030, 107, 94, 102, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4031, 6, 46, 91, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4032, 12, 17, 69, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4033, 38, 18, 60, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4034, 7, 28, 91, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4035, 34, 90, 44, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4036, 66, 0, 71, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4037, 82, 0, 73, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4038, 65, 25, 14, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4039, 68, 62, 73, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4040, 94, 32, 30, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4041, 0, 95, 0, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4042, 61, 67, 56, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4043, 94, 29, 3, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4044, 80, 29, 34, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4045, 86, 29, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4046, 70, 50, 98, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4047, 82, 81, 50, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4048, 75, 102, 0, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4049, 43, 0, 80, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4050, 0, 48, 3, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4051, 78, 0, 104, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4052, 38, 51, 86, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4053, 65, 6, 27, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4054, 97, 32, 0, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4055, 29, 80, 66, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4056, 61, 67, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4057, 87, 0, 99, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4058, 25, 76, 11, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4059, 68, 62, 21, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4060, 85, 86, 56, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4061, 0, 73, 18, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4062, 2, 87, 29, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4063, 0, 0, 83, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4064, 82, 0, 63, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4065, 96, 31, 81, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4066, 91, 82, 38, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4067, 94, 13, 57, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4068, 17, 25, 74, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4069, 83, 84, 63, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4070, 18, 38, 56, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4071, 26, 49, 73, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4072, 39, 13, 2, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4073, 68, 66, 12, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4074, 44, 22, 56, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4075, 35, 58, 69, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4076, 76, 0, 77, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4077, 0, 81, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4078, 83, 53, 12, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4079, 93, 27, 104, 2, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4080, 66, 0, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4081, 0, 0, 47, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4082, 68, 72, 40, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4083, 98, 74, 57, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4084, 83, 44, 50, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4085, 4, 87, 65, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4086, 80, 13, 0, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4087, 29, 0, 19, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4088, 109, 76, 70, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4089, 104, 96, 68, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4090, 10, 38, 71, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4091, 53, 22, 82, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4092, 0, 66, 12, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4093, 7, 0, 70, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4094, 103, 96, 0, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4095, 38, 62, 50, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4096, 103, 96, 105, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4097, 35, 87, 44, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4098, 96, 60, 2, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4099, 60, 75, 32, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4100, 98, 32, 26, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4101, 13, 86, 71, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4102, 70, 2, 96, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4103, 38, 37, 79, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4104, 95, 19, 18, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4105, 33, 0, 55, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4106, 95, 31, 26, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4107, 109, 28, 0, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4108, 86, 29, 34, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4109, 112, 38, 82, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4110, 55, 33, 49, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4111, 67, 91, 49, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4112, 9, 87, 65, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4113, 20, 52, 80, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4114, 82, 49, 86, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4115, 99, 73, 57, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4116, 87, 68, 95, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4117, 38, 72, 75, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4118, 0, 56, 50, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4119, 26, 51, 12, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4120, 8, 35, 50, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4121, 0, 21, 38, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4122, 31, 52, 56, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4123, 104, 98, 68, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4124, 0, 44, 73, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4125, 83, 64, 21, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4126, 8, 62, 21, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4127, 17, 11, 74, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4128, 94, 32, 67, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4129, 0, 0, 25, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4130, 14, 5, 78, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4131, 77, 58, 55, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4132, 0, 59, 78, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4133, 90, 77, 0, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4134, 4, 58, 69, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4135, 71, 0, 6, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4136, 16, 78, 29, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4137, 35, 0, 55, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4138, 5, 58, 29, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4139, 14, 5, 58, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4140, 60, 0, 49, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4141, 99, 9, 81, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4142, 95, 48, 0, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4143, 9, 87, 0, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4144, 47, 36, 109, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4145, 0, 56, 21, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4146, 69, 54, 97, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4147, 0, 13, 3, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4148, 25, 28, 91, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4149, 8, 64, 79, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4150, 12, 17, 29, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4151, 80, 13, 3, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4152, 69, 8, 99, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4153, 96, 29, 53, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4154, 6, 76, 91, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4155, 89, 65, 58, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4156, 38, 56, 73, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4157, 65, 25, 46, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4158, 72, 0, 56, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4159, 8, 81, 12, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4160, 28, 24, 25, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4161, 20, 0, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4162, 68, 66, 75, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4163, 100, 19, 0, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4164, 0, 27, 91, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4165, 31, 52, 71, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4166, 8, 66, 63, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4167, 30, 47, 14, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4168, 73, 33, 49, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4169, 38, 72, 73, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4170, 81, 22, 83, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4171, 94, 60, 34, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4172, 98, 40, 20, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4173, 83, 66, 63, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4174, 95, 48, 3, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4175, 26, 62, 63, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4176, 18, 86, 0, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4177, 85, 0, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4178, 30, 11, 52, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4179, 7, 28, 11, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4180, 94, 60, 35, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4181, 92, 63, 61, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4182, 90, 77, 58, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4183, 98, 13, 30, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4184, 64, 67, 83, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4185, 71, 61, 15, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4186, 55, 68, 100, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4187, 27, 36, 109, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4188, 26, 85, 63, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4189, 67, 50, 99, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4190, 103, 0, 106, 2, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4191, 13, 38, 80, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4192, 69, 75, 49, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4193, 0, 41, 77, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4194, 100, 13, 67, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4195, 38, 72, 21, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4196, 11, 10, 51, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4197, 29, 104, 0, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4198, 91, 82, 62, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4199, 82, 57, 79, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4200, 75, 105, 0, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4201, 34, 0, 29, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4202, 94, 74, 34, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4203, 49, 99, 0, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4204, 70, 8, 32, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4205, 100, 60, 20, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4206, 105, 0, 31, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4207, 35, 87, 55, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4208, 73, 33, 99, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4209, 26, 81, 63, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4210, 98, 60, 20, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4211, 49, 95, 106, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4212, 62, 22, 0, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4213, 3, 87, 69, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4214, 0, 15, 17, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4215, 3, 90, 0, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4216, 30, 43, 27, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4217, 20, 0, 80, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4218, 0, 0, 77, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4219, 28, 7, 87, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4220, 83, 56, 79, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4221, 0, 74, 67, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4222, 107, 94, 0, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4223, 80, 32, 2, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4224, 68, 81, 73, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4225, 64, 22, 56, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4226, 93, 27, 11, 2, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4227, 108, 97, 101, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4228, 58, 7, 25, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4229, 4, 14, 29, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4230, 93, 46, 104, 2, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4231, 107, 100, 68, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4232, 84, 0, 80, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4233, 11, 41, 0, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4234, 4, 58, 55, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4235, 77, 90, 69, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4236, 63, 26, 71, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4237, 98, 60, 8, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4238, 77, 87, 55, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4239, 0, 34, 75, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4240, 5, 90, 0, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4241, 59, 0, 55, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4242, 50, 96, 102, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4243, 108, 55, 68, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4244, 39, 0, 34, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4245, 80, 40, 35, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4246, 24, 46, 42, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4247, 46, 106, 89, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4248, 98, 32, 53, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4249, 85, 38, 80, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4250, 63, 86, 0, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4251, 15, 87, 0, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4252, 72, 38, 71, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4253, 0, 73, 3, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4254, 44, 67, 71, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4255, 39, 31, 18, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4256, 19, 6, 7, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4257, 29, 104, 39, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4258, 70, 2, 99, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4259, 81, 52, 71, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4260, 70, 8, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4261, 25, 76, 104, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4262, 102, 93, 31, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4263, 20, 67, 83, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4264, 96, 48, 53, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4265, 53, 0, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4266, 76, 10, 0, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4267, 32, 90, 55, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4268, 89, 0, 0, 4, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4269, 63, 22, 56, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4270, 7, 46, 42, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4271, 30, 11, 0, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4272, 96, 40, 35, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4273, 63, 38, 0, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4274, 87, 3, 45, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4275, 86, 60, 20, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4276, 0, 41, 93, 2, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4277, 71, 10, 112, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4278, 100, 73, 34, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4279, 100, 74, 8, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4280, 55, 50, 99, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4281, 96, 32, 35, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4282, 98, 31, 26, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4283, 6, 76, 103, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4284, 104, 100, 54, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4285, 37, 86, 80, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4286, 5, 14, 69, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4287, 60, 91, 95, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4288, 38, 66, 50, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4289, 98, 60, 3, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4290, 42, 61, 51, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4291, 74, 0, 69, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4292, 95, 32, 2, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4293, 67, 54, 0, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4294, 38, 20, 50, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4295, 82, 64, 60, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4296, 26, 49, 40, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4297, 4, 0, 55, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4298, 0, 3, 49, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4299, 49, 94, 0, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4300, 0, 47, 52, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4301, 96, 73, 26, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4302, 104, 96, 105, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4303, 69, 16, 95, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4304, 87, 91, 97, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4305, 46, 101, 0, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4306, 96, 32, 53, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4307, 15, 87, 29, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4308, 81, 0, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4309, 17, 43, 22, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4310, 97, 13, 2, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4311, 83, 64, 40, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4312, 60, 54, 94, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4313, 28, 92, 87, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4314, 27, 61, 77, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4315, 95, 31, 20, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4316, 27, 41, 15, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4317, 11, 36, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4318, 65, 71, 76, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4319, 2, 78, 44, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4320, 88, 4, 17, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4321, 97, 60, 0, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4322, 78, 0, 107, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4323, 0, 85, 75, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4324, 95, 73, 26, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4325, 0, 48, 2, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4326, 98, 9, 30, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4327, 89, 77, 58, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4328, 95, 73, 53, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4329, 0, 16, 99, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4330, 39, 29, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4331, 101, 103, 66, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4332, 53, 86, 82, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4333, 103, 100, 102, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4334, 67, 3, 13, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4335, 85, 0, 71, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4336, 105, 108, 66, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4337, 0, 108, 0, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4338, 51, 26, 56, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4339, 47, 61, 6, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4340, 27, 36, 15, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4341, 0, 57, 9, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4342, 74, 0, 44, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4343, 17, 0, 36, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4344, 0, 0, 82, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4345, 0, 0, 57, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4346, 0, 99, 0, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4347, 87, 8, 96, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4348, 41, 0, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4349, 83, 37, 86, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4350, 60, 33, 100, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4351, 26, 62, 86, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4352, 99, 40, 18, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4353, 95, 13, 8, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4354, 0, 76, 88, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4355, 18, 22, 0, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4356, 69, 0, 32, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4357, 0, 68, 13, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4358, 26, 51, 40, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4359, 0, 33, 94, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4360, 90, 4, 41, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4361, 38, 81, 50, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4362, 100, 0, 67, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4363, 49, 94, 101, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4364, 38, 37, 75, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4365, 38, 34, 60, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4366, 5, 0, 44, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4367, 8, 57, 63, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4368, 53, 52, 71, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4369, 2, 17, 44, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4370, 112, 26, 80, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4371, 80, 48, 18, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4372, 19, 0, 33, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4373, 60, 75, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4374, 26, 64, 73, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4375, 107, 96, 54, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4376, 36, 28, 47, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4377, 96, 40, 53, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4378, 69, 91, 99, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4379, 0, 44, 9, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4380, 0, 14, 29, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4381, 2, 58, 29, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4382, 69, 75, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4383, 104, 96, 54, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4384, 82, 57, 9, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4385, 61, 86, 56, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4386, 2, 90, 55, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4387, 94, 19, 57, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4388, 56, 21, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4389, 0, 57, 75, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4390, 86, 48, 53, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4391, 60, 8, 99, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4392, 0, 41, 48, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4393, 36, 112, 92, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4394, 66, 67, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4395, 94, 31, 16, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4396, 67, 2, 45, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4397, 8, 85, 63, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4398, 100, 32, 81, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4399, 77, 90, 0, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4400, 104, 95, 0, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4401, 81, 26, 0, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4402, 94, 19, 35, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4403, 8, 57, 75, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4404, 14, 77, 78, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4405, 95, 31, 81, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4406, 65, 43, 59, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4407, 86, 31, 81, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4408, 96, 29, 20, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4409, 80, 74, 35, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4410, 0, 48, 34, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4411, 14, 5, 17, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4412, 88, 15, 0, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4413, 67, 68, 49, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4414, 56, 21, 37, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4415, 39, 9, 3, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4416, 76, 61, 48, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4417, 17, 71, 0, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4418, 108, 0, 102, 2, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4419, 106, 93, 39, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4420, 0, 48, 18, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4421, 0, 11, 52, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4422, 94, 79, 20, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4423, 11, 0, 48, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4424, 17, 25, 76, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4425, 42, 61, 43, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4426, 0, 9, 64, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4427, 68, 66, 9, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4428, 8, 84, 40, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4429, 83, 66, 40, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4430, 66, 26, 82, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4431, 112, 38, 80, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4432, 40, 86, 71, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4433, 80, 73, 57, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4434, 80, 32, 30, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4435, 70, 68, 94, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4436, 83, 64, 0, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4437, 61, 38, 0, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4438, 66, 52, 56, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4439, 99, 29, 53, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4440, 68, 64, 9, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4441, 96, 31, 18, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4442, 73, 2, 95, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4443, 99, 13, 35, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4444, 82, 57, 12, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4445, 94, 32, 34, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4446, 26, 53, 50, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4447, 32, 78, 65, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4448, 58, 106, 90, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4449, 26, 37, 0, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4450, 44, 22, 80, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4451, 50, 55, 105, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4452, 32, 14, 29, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4453, 100, 73, 81, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4454, 82, 20, 60, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4455, 86, 13, 2, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4456, 71, 10, 77, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4457, 83, 64, 12, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4458, 0, 107, 39, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4459, 0, 55, 68, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4460, 39, 13, 0, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4461, 70, 54, 100, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4462, 86, 13, 18, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4463, 95, 9, 34, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4464, 93, 28, 91, 2, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4465, 77, 87, 65, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4466, 50, 55, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4467, 95, 48, 16, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4468, 21, 101, 90, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4469, 39, 60, 81, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4470, 80, 9, 35, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4471, 8, 20, 75, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4472, 0, 17, 65, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4473, 86, 13, 20, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4474, 17, 43, 27, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4475, 3, 78, 69, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4476, 97, 48, 67, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4477, 95, 48, 30, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4478, 49, 55, 54, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4479, 38, 37, 86, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4480, 60, 16, 96, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4481, 109, 28, 108, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4482, 68, 44, 60, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4483, 66, 52, 80, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4484, 0, 72, 75, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4485, 100, 31, 18, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4486, 60, 75, 45, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4487, 80, 32, 64, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4488, 6, 112, 107, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4489, 80, 48, 20, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4490, 19, 0, 22, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4491, 42, 61, 48, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4492, 17, 6, 5, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4493, 59, 17, 44, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4494, 0, 0, 12, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4495, 108, 0, 68, 2, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4496, 47, 10, 109, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4497, 101, 80, 31, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4498, 84, 26, 80, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4499, 38, 57, 75, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4500, 73, 3, 99, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4501, 0, 0, 105, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4502, 27, 61, 51, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4503, 99, 0, 3, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4504, 34, 0, 69, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4505, 0, 68, 99, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4506, 97, 79, 2, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4507, 68, 64, 63, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4508, 28, 92, 89, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4509, 92, 21, 0, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4510, 96, 32, 3, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4511, 112, 86, 71, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4512, 36, 28, 70, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4513, 82, 34, 63, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4514, 99, 48, 35, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4515, 2, 89, 0, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4516, 36, 28, 103, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4517, 45, 67, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4518, 83, 81, 40, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4519, 73, 3, 96, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4520, 38, 56, 79, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4521, 78, 76, 11, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4522, 16, 78, 69, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4523, 38, 85, 50, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4524, 21, 88, 90, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4525, 98, 19, 20, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4526, 72, 26, 83, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4527, 68, 64, 60, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4528, 84, 26, 56, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4529, 65, 11, 14, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4530, 80, 31, 8, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4531, 55, 16, 32, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4532, 83, 62, 21, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4533, 89, 4, 58, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4534, 91, 83, 37, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4535, 13, 52, 80, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4536, 73, 75, 95, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4537, 107, 45, 105, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4538, 47, 36, 43, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4539, 49, 70, 68, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4540, 0, 21, 84, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4541, 108, 55, 105, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4542, 15, 90, 69, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4543, 0, 94, 106, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4544, 31, 22, 56, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4545, 5, 89, 44, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4546, 19, 43, 27, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4547, 109, 27, 107, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4548, 50, 94, 54, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4549, 29, 108, 19, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4550, 112, 0, 80, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4551, 71, 36, 6, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4552, 82, 72, 9, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4553, 0, 62, 79, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4554, 37, 0, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4555, 30, 43, 74, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4556, 69, 2, 95, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4557, 96, 31, 57, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4558, 46, 105, 25, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4559, 99, 73, 0, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4560, 0, 73, 53, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4561, 17, 11, 36, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4562, 89, 59, 41, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4563, 82, 35, 86, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4564, 27, 36, 72, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4565, 0, 19, 16, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4566, 68, 20, 50, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4567, 57, 52, 83, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4568, 55, 16, 97, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4569, 94, 29, 53, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4570, 68, 53, 63, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4571, 82, 51, 50, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4572, 43, 67, 82, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4573, 96, 31, 34, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4574, 70, 3, 95, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4575, 35, 78, 69, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4576, 102, 80, 66, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4577, 38, 18, 50, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4578, 55, 75, 95, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4579, 68, 35, 63, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4580, 52, 10, 15, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4581, 56, 83, 37, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4582, 0, 32, 81, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4583, 69, 54, 13, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4584, 77, 17, 0, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4585, 63, 22, 82, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4586, 97, 0, 0, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4587, 112, 86, 80, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4588, 38, 53, 50, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4589, 5, 89, 55, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4590, 39, 31, 35, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4591, 103, 70, 102, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4592, 67, 50, 97, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4593, 95, 32, 53, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4594, 80, 32, 3, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4595, 90, 4, 0, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4596, 98, 9, 64, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4597, 11, 41, 77, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4598, 0, 0, 66, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4599, 98, 60, 30, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4600, 55, 8, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4601, 56, 83, 61, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4602, 83, 62, 40, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4603, 94, 48, 8, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4604, 83, 72, 12, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4605, 82, 34, 21, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4606, 66, 26, 83, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4607, 14, 15, 17, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4608, 106, 103, 31, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4609, 65, 43, 0, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4610, 39, 9, 2, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4611, 0, 20, 75, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4612, 28, 7, 89, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4613, 52, 41, 51, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4614, 83, 34, 75, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4615, 61, 67, 82, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4616, 76, 0, 43, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4617, 50, 69, 68, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4618, 53, 38, 80, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4619, 52, 41, 6, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4620, 69, 33, 98, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4621, 34, 90, 65, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4622, 3, 89, 55, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4623, 17, 43, 10, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4624, 105, 107, 39, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4625, 46, 88, 0, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4626, 76, 36, 112, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4627, 98, 40, 53, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4628, 98, 19, 64, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4629, 0, 18, 50, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4630, 90, 59, 58, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4631, 0, 93, 31, 2, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4632, 0, 9, 81, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4633, 103, 99, 0, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4634, 54, 38, 82, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4635, 67, 2, 100, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4636, 15, 58, 44, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4637, 71, 61, 43, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4638, 38, 35, 21, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4639, 93, 76, 70, 2, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4640, 94, 74, 35, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4641, 39, 73, 64, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4642, 0, 61, 4, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4643, 97, 48, 16, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4644, 55, 0, 45, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4645, 76, 61, 109, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4646, 26, 18, 21, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4647, 7, 46, 47, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4648, 0, 80, 19, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4649, 8, 72, 40, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4650, 64, 22, 0, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4651, 65, 6, 28, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4652, 3, 87, 0, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4653, 100, 79, 34, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4654, 78, 28, 103, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4655, 61, 67, 71, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4656, 22, 0, 43, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4657, 99, 19, 2, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4658, 80, 9, 8, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4659, 6, 46, 11, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4660, 0, 60, 67, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4661, 83, 53, 50, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4662, 8, 34, 40, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4663, 86, 0, 20, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4664, 83, 44, 9, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4665, 95, 40, 16, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4666, 0, 72, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4667, 95, 13, 57, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4668, 52, 36, 43, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4669, 57, 52, 56, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4670, 79, 38, 56, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4671, 62, 86, 80, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4672, 11, 61, 0, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4673, 3, 0, 55, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4674, 29, 108, 39, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4675, 61, 38, 56, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4676, 40, 86, 82, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4677, 87, 2, 99, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4678, 25, 27, 104, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4679, 86, 73, 26, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4680, 70, 0, 45, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4681, 26, 84, 73, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4682, 6, 28, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4683, 30, 71, 10, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4684, 80, 19, 53, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4685, 8, 85, 0, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4686, 69, 75, 45, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4687, 62, 0, 80, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4688, 67, 2, 0, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4689, 112, 22, 83, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4690, 28, 102, 89, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4691, 107, 100, 54, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4692, 36, 112, 42, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4693, 48, 90, 0, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4694, 88, 59, 17, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4695, 49, 97, 102, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4696, 34, 17, 0, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4697, 81, 52, 83, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4698, 0, 15, 78, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4699, 21, 92, 87, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4700, 68, 35, 50, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4701, 95, 73, 81, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4702, 79, 67, 71, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4703, 25, 46, 42, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4704, 80, 74, 16, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4705, 99, 74, 8, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4706, 25, 0, 91, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4707, 86, 32, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4708, 0, 79, 57, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4709, 68, 56, 73, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4710, 94, 79, 34, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4711, 26, 35, 50, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4712, 98, 40, 67, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4713, 65, 25, 7, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4714, 83, 72, 73, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4715, 103, 100, 68, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4716, 99, 29, 57, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4717, 38, 37, 73, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4718, 6, 112, 42, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4719, 3, 87, 44, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4720, 82, 72, 21, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4721, 48, 14, 0, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4722, 36, 28, 42, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4723, 25, 0, 11, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4724, 40, 26, 80, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4725, 30, 43, 5, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4726, 73, 50, 32, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4727, 82, 62, 21, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4728, 15, 78, 0, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4729, 89, 59, 58, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4730, 74, 58, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4731, 89, 77, 0, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4732, 14, 59, 58, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4733, 73, 8, 95, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4734, 8, 44, 63, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4735, 96, 73, 30, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4736, 96, 74, 53, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4737, 106, 80, 19, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4738, 38, 85, 21, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4739, 0, 70, 68, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4740, 70, 75, 95, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4741, 77, 78, 65, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4742, 0, 45, 102, 2, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4743, 11, 41, 109, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4744, 74, 90, 29, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4745, 15, 90, 65, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4746, 0, 0, 84, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4747, 49, 100, 54, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4748, 38, 64, 73, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4749, 20, 0, 56, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4750, 93, 27, 92, 2, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4751, 9, 90, 69, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4752, 86, 73, 53, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4753, 39, 0, 67, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4754, 39, 48, 20, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4755, 36, 46, 107, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4756, 8, 37, 79, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4757, 0, 86, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4758, 38, 35, 73, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4759, 79, 67, 80, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4760, 27, 36, 43, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4761, 95, 19, 16, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4762, 0, 11, 46, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4763, 41, 38, 80, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4764, 0, 62, 86, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4765, 96, 0, 35, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4766, 107, 69, 68, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4767, 112, 52, 56, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4768, 100, 31, 64, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4769, 39, 29, 34, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4770, 50, 0, 0, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4771, 0, 73, 26, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4772, 38, 44, 75, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4773, 100, 19, 20, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4774, 8, 85, 73, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4775, 55, 16, 0, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4776, 0, 71, 46, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4777, 26, 0, 79, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4778, 4, 90, 55, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4779, 42, 10, 109, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4780, 102, 108, 31, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4781, 96, 0, 81, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4782, 101, 93, 39, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4783, 25, 0, 92, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4784, 83, 49, 73, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4785, 100, 60, 64, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4786, 83, 56, 75, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4787, 48, 89, 69, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4788, 74, 89, 44, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4789, 91, 83, 84, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4790, 8, 34, 79, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4791, 43, 67, 83, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4792, 100, 32, 18, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4793, 16, 0, 65, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4794, 86, 40, 26, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4795, 62, 38, 83, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4796, 0, 34, 40, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4797, 109, 27, 91, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4798, 73, 75, 100, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4799, 38, 49, 73, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4800, 107, 69, 102, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4801, 19, 11, 14, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4802, 95, 13, 35, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4803, 97, 60, 3, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4804, 55, 50, 96, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4805, 19, 71, 52, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4806, 33, 89, 0, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4807, 44, 22, 0, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4808, 68, 84, 79, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4809, 94, 29, 0, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4810, 97, 31, 26, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4811, 102, 103, 31, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4812, 104, 70, 102, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4813, 87, 68, 45, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4814, 80, 19, 67, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4815, 55, 75, 100, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4816, 46, 101, 89, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4817, 83, 56, 21, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4818, 0, 112, 11, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4819, 103, 69, 54, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4820, 69, 91, 49, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4821, 8, 34, 12, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4822, 71, 0, 109, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4823, 0, 20, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4824, 106, 109, 66, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4825, 67, 16, 95, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4826, 93, 76, 11, 2, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4827, 29, 80, 19, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4828, 39, 29, 67, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4829, 67, 54, 32, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4830, 95, 19, 35, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4831, 109, 76, 47, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4832, 19, 0, 59, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4833, 97, 31, 0, 4, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4834, 67, 33, 95, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4835, 94, 79, 2, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4836, 95, 73, 35, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4837, 8, 62, 12, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4838, 8, 49, 79, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4839, 0, 62, 60, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4840, 97, 73, 67, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4841, 13, 0, 56, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4842, 5, 89, 65, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4843, 50, 98, 102, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4844, 50, 95, 101, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4845, 89, 5, 41, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4846, 60, 50, 98, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4847, 43, 0, 71, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4848, 0, 12, 58, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4849, 82, 72, 79, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4850, 14, 4, 17, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4851, 80, 31, 26, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4852, 80, 19, 18, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4853, 96, 31, 2, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4854, 98, 29, 26, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4855, 99, 79, 57, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4856, 0, 48, 57, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4857, 16, 89, 69, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4858, 25, 76, 42, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4859, 103, 100, 105, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4860, 38, 49, 63, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4861, 95, 29, 2, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4862, 98, 74, 64, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4863, 60, 16, 99, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4864, 51, 38, 71, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4865, 83, 18, 73, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4866, 0, 54, 45, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4867, 67, 16, 98, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4868, 73, 33, 97, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4869, 93, 28, 107, 2, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4870, 9, 14, 44, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4871, 45, 67, 56, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4872, 78, 27, 103, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4873, 0, 105, 90, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4874, 36, 0, 108, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4875, 59, 87, 0, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4876, 54, 38, 56, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4877, 97, 32, 2, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4878, 60, 33, 95, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4879, 2, 17, 65, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4880, 15, 87, 44, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4881, 95, 9, 8, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4882, 88, 15, 41, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4883, 103, 95, 0, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4884, 38, 53, 63, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4885, 100, 31, 35, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4886, 30, 42, 22, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4887, 26, 37, 40, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4888, 97, 60, 64, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4889, 0, 0, 71, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4890, 0, 16, 95, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4891, 98, 74, 20, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4892, 106, 109, 39, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4893, 36, 112, 103, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4894, 0, 31, 57, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4895, 73, 33, 32, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4896, 107, 45, 68, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4897, 0, 29, 30, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4898, 100, 79, 18, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4899, 45, 26, 80, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4900, 26, 62, 40, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4901, 109, 112, 11, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4902, 94, 73, 35, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4903, 96, 31, 35, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4904, 103, 98, 106, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4905, 43, 52, 83, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4906, 25, 112, 103, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4907, 71, 41, 48, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4908, 31, 52, 0, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4909, 77, 17, 29, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4910, 84, 26, 0, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4911, 19, 42, 36, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4912, 0, 85, 60, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4913, 76, 36, 4, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4914, 39, 74, 26, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4915, 0, 0, 45, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4916, 82, 35, 60, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4917, 96, 79, 3, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4918, 8, 53, 12, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4919, 0, 29, 0, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4920, 16, 14, 44, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4921, 100, 40, 57, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4922, 68, 34, 50, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4923, 8, 34, 63, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4924, 47, 10, 112, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4925, 73, 68, 95, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4926, 0, 68, 98, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4927, 99, 40, 26, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4928, 97, 73, 30, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4929, 17, 11, 5, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4930, 7, 46, 92, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4931, 71, 10, 0, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4932, 86, 60, 35, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4933, 77, 0, 29, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4934, 57, 0, 71, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4935, 33, 78, 55, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4936, 38, 57, 9, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4937, 30, 43, 14, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4938, 26, 37, 9, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4939, 7, 112, 92, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4940, 0, 72, 63, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4941, 9, 58, 29, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4942, 0, 80, 66, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4943, 60, 16, 13, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4944, 97, 74, 67, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4945, 68, 37, 50, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4946, 104, 100, 106, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4947, 86, 9, 64, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4948, 98, 9, 53, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4949, 38, 44, 0, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4950, 98, 31, 53, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4951, 60, 2, 95, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4952, 83, 0, 50, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4953, 82, 64, 79, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4954, 68, 35, 79, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4955, 14, 12, 0, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4956, 32, 78, 69, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4957, 109, 27, 108, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4958, 96, 79, 0, 2, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4959, 41, 52, 80, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4960, 13, 26, 80, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4961, 0, 81, 79, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4962, 0, 74, 8, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4963, 70, 33, 13, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4964, 70, 33, 95, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4965, 0, 71, 33, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4966, 63, 0, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4967, 60, 3, 94, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4968, 67, 68, 95, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4969, 70, 3, 32, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4970, 80, 29, 8, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4971, 96, 60, 57, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4972, 61, 22, 0, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4973, 107, 97, 101, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4974, 94, 31, 20, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4975, 82, 56, 75, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4976, 58, 39, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4977, 93, 46, 88, 2, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4978, 93, 112, 47, 2, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4979, 19, 11, 5, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4980, 39, 73, 57, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4981, 84, 67, 56, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4982, 76, 0, 15, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4983, 26, 18, 60, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4984, 107, 94, 101, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4985, 109, 28, 91, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4986, 49, 100, 0, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4987, 58, 105, 25, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4988, 96, 79, 2, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4989, 0, 11, 7, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4990, 10, 67, 56, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4991, 100, 32, 35, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4992, 84, 67, 83, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4993, 21, 7, 90, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4994, 0, 97, 102, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (4995, 0, 76, 11, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4996, 42, 10, 4, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4997, 0, 98, 0, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (4998, 82, 81, 21, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (4999, 94, 60, 81, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5000, 63, 67, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5001, 26, 85, 79, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5002, 62, 0, 83, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5003, 34, 78, 44, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5004, 50, 97, 0, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5005, 64, 86, 0, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5006, 78, 76, 42, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5007, 53, 22, 56, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5008, 61, 26, 0, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5009, 0, 10, 93, 2, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5010, 64, 26, 83, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5011, 78, 27, 11, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5012, 83, 56, 12, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5013, 82, 53, 0, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5014, 36, 46, 91, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5015, 0, 74, 26, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5016, 24, 0, 108, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5017, 73, 50, 96, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5018, 80, 9, 2, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5019, 94, 79, 57, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5020, 0, 34, 12, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5021, 0, 33, 95, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5022, 26, 81, 79, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5023, 95, 9, 0, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5024, 54, 0, 83, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5025, 2, 90, 69, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5026, 83, 0, 86, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5027, 82, 84, 63, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5028, 38, 37, 12, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5029, 82, 66, 9, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5030, 99, 19, 18, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5031, 0, 53, 79, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5032, 65, 71, 28, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5033, 66, 86, 0, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5034, 0, 109, 66, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5035, 73, 8, 32, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5036, 0, 82, 85, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5037, 45, 0, 82, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5038, 73, 54, 97, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5039, 25, 27, 11, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5040, 8, 56, 0, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5041, 39, 74, 53, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5042, 8, 57, 40, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5043, 86, 0, 67, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5044, 11, 10, 43, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5045, 67, 50, 32, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5046, 67, 68, 99, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5047, 26, 72, 73, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5048, 0, 22, 82, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5049, 55, 68, 45, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5050, 54, 52, 71, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5051, 99, 74, 30, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5052, 0, 29, 53, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5053, 100, 9, 18, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5054, 104, 99, 54, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5055, 0, 29, 18, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5056, 80, 74, 57, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5057, 55, 75, 13, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5058, 19, 71, 10, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5059, 84, 22, 71, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5060, 74, 78, 44, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5061, 25, 112, 11, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5062, 45, 52, 82, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5063, 9, 89, 29, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5064, 57, 26, 0, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5065, 72, 0, 82, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5066, 97, 19, 35, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5067, 82, 35, 50, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5068, 0, 51, 40, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5069, 39, 74, 20, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5070, 80, 74, 53, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5071, 69, 75, 94, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5072, 82, 84, 9, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5073, 17, 42, 5, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5074, 8, 35, 73, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5075, 97, 48, 35, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5076, 0, 48, 81, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5077, 0, 0, 22, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5078, 96, 48, 34, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5079, 83, 85, 60, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5080, 25, 46, 103, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5081, 67, 50, 94, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5082, 69, 50, 45, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5083, 8, 66, 9, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5084, 69, 68, 13, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5085, 57, 22, 71, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5086, 83, 18, 79, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5087, 50, 0, 68, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5088, 96, 48, 20, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5089, 15, 58, 65, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5090, 38, 35, 79, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5091, 78, 112, 91, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5092, 109, 28, 92, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5093, 0, 66, 75, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5094, 55, 33, 45, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5095, 94, 74, 57, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5096, 25, 0, 42, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5097, 17, 71, 27, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5098, 102, 103, 39, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5099, 31, 38, 56, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5100, 74, 58, 65, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5101, 39, 40, 57, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5102, 48, 78, 65, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5103, 42, 0, 72, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5104, 86, 32, 57, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5105, 52, 41, 4, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5106, 52, 61, 72, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5107, 24, 0, 11, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5108, 41, 38, 71, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5109, 68, 49, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5110, 6, 112, 88, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5111, 67, 68, 13, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5112, 82, 57, 86, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5113, 30, 47, 52, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5114, 95, 79, 3, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5115, 104, 96, 102, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5116, 0, 84, 9, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5117, 100, 13, 8, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5118, 87, 8, 49, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5119, 58, 101, 89, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5120, 39, 40, 35, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5121, 7, 76, 11, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5122, 0, 43, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5123, 36, 0, 0, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5124, 68, 20, 79, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5125, 8, 53, 50, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5126, 87, 0, 97, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5127, 20, 38, 82, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5128, 83, 34, 79, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5129, 0, 35, 21, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5130, 0, 86, 71, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5131, 60, 75, 98, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5132, 86, 31, 53, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5133, 46, 105, 0, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5134, 17, 6, 33, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5135, 69, 8, 94, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5136, 69, 50, 97, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5137, 0, 36, 15, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5138, 91, 0, 61, 4, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5139, 8, 66, 75, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5140, 68, 66, 86, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5141, 0, 90, 0, 4, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5142, 98, 19, 30, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5143, 10, 52, 0, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5144, 0, 49, 40, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5145, 0, 36, 48, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5146, 60, 54, 100, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5147, 53, 52, 83, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5148, 18, 67, 80, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5149, 15, 89, 29, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5150, 8, 81, 86, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5151, 0, 3, 13, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5152, 17, 0, 33, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5153, 64, 22, 83, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5154, 0, 0, 20, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5155, 42, 10, 0, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5156, 95, 48, 20, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5157, 3, 87, 65, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5158, 109, 112, 103, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5159, 80, 79, 81, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5160, 73, 68, 49, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5161, 0, 53, 12, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5162, 52, 61, 15, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5163, 86, 73, 67, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5164, 9, 0, 69, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5165, 0, 4, 41, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5166, 86, 60, 18, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5167, 8, 49, 40, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5168, 70, 75, 96, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5169, 58, 88, 0, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5170, 86, 19, 3, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5171, 98, 19, 18, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5172, 39, 48, 57, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5173, 70, 0, 97, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5174, 2, 78, 69, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5175, 72, 52, 71, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5176, 95, 32, 0, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5177, 11, 36, 72, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5178, 30, 0, 5, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5179, 7, 46, 104, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5180, 16, 58, 29, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5181, 57, 26, 83, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5182, 86, 60, 26, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5183, 97, 29, 64, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5184, 0, 0, 102, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5185, 19, 47, 46, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5186, 100, 19, 81, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5187, 65, 42, 7, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5188, 70, 75, 45, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5189, 95, 60, 81, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5190, 68, 53, 86, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5191, 62, 52, 80, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5192, 10, 86, 0, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5193, 8, 20, 40, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5194, 17, 11, 24, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5195, 26, 72, 12, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5196, 81, 0, 80, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5197, 55, 3, 32, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5198, 38, 53, 75, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5199, 97, 40, 53, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5200, 80, 73, 34, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5201, 33, 58, 29, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5202, 88, 65, 58, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5203, 68, 49, 79, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5204, 103, 45, 101, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5205, 83, 64, 86, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5206, 38, 85, 40, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5207, 42, 41, 109, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5208, 30, 25, 10, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5209, 70, 0, 95, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5210, 97, 73, 35, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5211, 96, 74, 16, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5212, 99, 31, 64, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5213, 94, 0, 34, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5214, 19, 25, 74, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5215, 80, 74, 8, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5216, 95, 79, 16, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5217, 98, 0, 34, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5218, 94, 60, 64, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5219, 0, 27, 92, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5220, 47, 61, 0, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5221, 26, 72, 40, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5222, 82, 84, 0, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5223, 85, 26, 71, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5224, 30, 71, 24, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5225, 68, 62, 40, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5226, 95, 0, 64, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5227, 39, 79, 18, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5228, 8, 84, 60, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5229, 83, 0, 12, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5230, 53, 0, 82, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5231, 77, 14, 44, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5232, 17, 71, 33, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5233, 22, 10, 109, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5234, 29, 30, 31, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5235, 87, 0, 98, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5236, 73, 2, 0, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5237, 7, 28, 47, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5238, 82, 49, 40, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5239, 17, 11, 52, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5240, 78, 0, 70, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5241, 38, 84, 12, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5242, 78, 112, 42, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5243, 0, 2, 100, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5244, 0, 60, 53, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5245, 0, 9, 30, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5246, 7, 112, 11, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5247, 35, 17, 44, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5248, 0, 35, 40, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5249, 67, 0, 96, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5250, 60, 3, 96, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5251, 5, 0, 65, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5252, 47, 41, 0, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5253, 112, 38, 71, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5254, 83, 44, 63, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5255, 78, 46, 47, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5256, 77, 17, 55, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5257, 0, 53, 60, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5258, 71, 41, 109, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5259, 94, 32, 64, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5260, 20, 38, 71, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5261, 101, 30, 66, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5262, 80, 79, 67, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5263, 46, 105, 87, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5264, 39, 29, 57, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5265, 39, 19, 57, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5266, 100, 0, 20, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5267, 109, 46, 88, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5268, 70, 2, 32, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5269, 39, 32, 2, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5270, 94, 31, 26, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5271, 109, 28, 88, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5272, 99, 79, 3, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5273, 0, 67, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5274, 21, 102, 25, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5275, 8, 20, 63, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5276, 0, 32, 35, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5277, 38, 57, 40, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5278, 106, 103, 19, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5279, 86, 19, 2, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5280, 32, 17, 0, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5281, 82, 84, 75, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5282, 59, 89, 65, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5283, 55, 33, 0, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5284, 81, 67, 71, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5285, 67, 75, 96, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5286, 65, 43, 24, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5287, 16, 0, 0, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5288, 69, 75, 13, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5289, 10, 0, 56, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5290, 82, 49, 79, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5291, 94, 79, 64, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5292, 0, 66, 73, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5293, 87, 16, 45, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5294, 104, 70, 106, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5295, 97, 13, 34, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5296, 68, 56, 79, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5297, 25, 28, 103, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5298, 98, 13, 16, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5299, 75, 102, 89, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5300, 4, 90, 65, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5301, 0, 95, 101, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5302, 80, 0, 3, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5303, 8, 57, 0, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5304, 62, 67, 80, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5305, 0, 32, 34, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5306, 84, 52, 0, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5307, 60, 0, 95, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5308, 56, 82, 0, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5309, 71, 10, 6, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5310, 29, 93, 39, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5311, 67, 8, 97, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5312, 94, 29, 8, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5313, 73, 0, 97, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5314, 62, 22, 80, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5315, 19, 0, 74, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5316, 65, 11, 76, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5317, 51, 26, 0, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5318, 83, 49, 86, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5319, 86, 19, 53, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5320, 67, 33, 49, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5321, 101, 103, 0, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5322, 26, 51, 21, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5323, 0, 0, 68, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5324, 26, 51, 75, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5325, 19, 43, 59, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5326, 0, 9, 34, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5327, 4, 58, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5328, 0, 66, 79, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5329, 70, 2, 100, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5330, 48, 87, 29, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5331, 83, 53, 63, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5332, 0, 45, 0, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5333, 0, 57, 21, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5334, 21, 39, 25, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5335, 0, 31, 8, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5336, 102, 93, 0, 2, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5337, 80, 32, 53, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5338, 15, 87, 55, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5339, 12, 14, 65, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5340, 0, 62, 21, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5341, 8, 64, 86, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5342, 25, 27, 47, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5343, 30, 6, 76, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5344, 94, 32, 20, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5345, 17, 11, 7, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5346, 26, 34, 9, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5347, 21, 88, 0, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5348, 5, 87, 55, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5349, 77, 90, 65, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5350, 8, 57, 50, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5351, 89, 12, 58, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5352, 106, 93, 19, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5353, 19, 47, 33, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5354, 25, 46, 91, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5355, 97, 0, 34, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5356, 17, 43, 36, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5357, 42, 36, 72, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5358, 80, 29, 81, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5359, 101, 107, 31, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5360, 69, 91, 98, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5361, 81, 26, 56, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5362, 39, 19, 18, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5363, 83, 81, 60, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5364, 65, 42, 59, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5365, 34, 58, 69, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5366, 99, 60, 26, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5367, 86, 29, 53, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5368, 0, 35, 9, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5369, 97, 29, 0, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5370, 48, 0, 0, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5371, 112, 86, 83, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5372, 65, 11, 74, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5373, 46, 39, 89, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5374, 100, 73, 67, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5375, 19, 0, 36, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5376, 0, 8, 32, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5377, 25, 46, 108, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5378, 82, 20, 86, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5379, 36, 28, 11, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5380, 82, 72, 60, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5381, 86, 31, 16, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5382, 99, 79, 20, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5383, 68, 85, 21, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5384, 82, 18, 50, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5385, 0, 18, 79, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5386, 106, 0, 39, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5387, 8, 72, 75, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5388, 12, 17, 44, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5389, 104, 0, 0, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5390, 105, 30, 19, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5391, 99, 32, 3, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5392, 2, 0, 29, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5393, 42, 0, 77, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5394, 27, 36, 77, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5395, 59, 78, 65, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5396, 68, 62, 60, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5397, 36, 28, 92, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5398, 68, 85, 12, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5399, 98, 79, 64, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5400, 108, 95, 106, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5401, 97, 73, 64, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5402, 31, 67, 80, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5403, 61, 0, 56, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5404, 68, 35, 21, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5405, 8, 37, 9, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5406, 100, 32, 57, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5407, 95, 29, 18, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5408, 83, 72, 0, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5409, 99, 32, 0, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5410, 26, 64, 12, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5411, 0, 15, 0, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5412, 60, 33, 97, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5413, 5, 89, 0, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5414, 4, 78, 65, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5415, 86, 48, 2, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5416, 52, 0, 6, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5417, 0, 62, 75, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5418, 22, 36, 4, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5419, 66, 22, 0, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5420, 99, 73, 30, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5421, 91, 21, 0, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5422, 17, 6, 27, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5423, 95, 19, 20, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5424, 99, 31, 34, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5425, 0, 92, 25, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5426, 103, 97, 102, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5427, 8, 18, 40, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5428, 85, 86, 83, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5429, 0, 79, 8, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5430, 47, 36, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5431, 73, 3, 100, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5432, 95, 48, 35, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5433, 104, 94, 101, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5434, 0, 28, 70, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5435, 108, 98, 54, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5436, 0, 0, 73, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5437, 6, 28, 107, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5438, 95, 73, 3, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5439, 9, 14, 69, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5440, 97, 0, 64, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5441, 27, 0, 15, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5442, 30, 6, 33, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5443, 63, 86, 83, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5444, 12, 87, 44, 4, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5445, 26, 64, 63, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5446, 41, 22, 83, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5447, 25, 76, 47, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5448, 83, 44, 40, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5449, 47, 10, 43, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5450, 5, 0, 55, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5451, 44, 26, 0, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5452, 100, 48, 67, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5453, 69, 33, 96, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5454, 55, 91, 100, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5455, 80, 40, 34, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5456, 43, 52, 71, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5457, 80, 0, 64, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5458, 98, 40, 18, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5459, 0, 99, 68, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5460, 3, 14, 0, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5461, 0, 73, 30, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5462, 99, 31, 57, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5463, 7, 0, 107, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5464, 28, 92, 25, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5465, 94, 19, 53, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5466, 67, 3, 98, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5467, 82, 85, 73, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5468, 94, 73, 0, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5469, 68, 56, 12, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5470, 99, 29, 64, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5471, 97, 19, 81, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5472, 86, 0, 53, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5473, 80, 79, 26, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5474, 55, 3, 100, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5475, 99, 0, 64, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5476, 38, 64, 0, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5477, 95, 74, 18, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5478, 95, 9, 3, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5479, 26, 85, 12, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5480, 55, 3, 45, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5481, 0, 34, 63, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5482, 68, 49, 12, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5483, 0, 43, 14, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5484, 7, 27, 47, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5485, 93, 46, 11, 2, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5486, 49, 97, 106, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5487, 86, 60, 81, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5488, 82, 64, 86, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5489, 96, 73, 34, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5490, 26, 56, 75, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5491, 19, 0, 27, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5492, 106, 93, 66, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5493, 27, 41, 51, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5494, 68, 81, 9, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5495, 83, 64, 50, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5496, 95, 19, 34, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5497, 63, 86, 71, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5498, 105, 109, 66, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5499, 102, 103, 0, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5500, 100, 73, 30, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5501, 86, 60, 53, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5502, 97, 79, 35, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5503, 8, 85, 9, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5504, 69, 50, 49, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5505, 94, 79, 35, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5506, 73, 33, 94, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5507, 86, 60, 16, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5508, 108, 99, 106, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5509, 91, 63, 61, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5510, 60, 0, 32, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5511, 30, 43, 24, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5512, 19, 42, 28, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5513, 26, 64, 75, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5514, 97, 19, 16, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5515, 29, 107, 31, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5516, 100, 48, 0, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5517, 74, 90, 65, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5518, 25, 112, 104, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5519, 24, 27, 108, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5520, 14, 4, 0, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5521, 57, 67, 56, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5522, 16, 78, 0, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5523, 93, 112, 11, 2, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5524, 87, 91, 45, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5525, 101, 30, 0, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5526, 27, 61, 6, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5527, 95, 73, 57, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5528, 6, 46, 88, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5529, 73, 16, 32, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5530, 74, 14, 65, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5531, 62, 38, 0, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5532, 87, 8, 94, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5533, 90, 15, 17, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5534, 0, 28, 47, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5535, 0, 8, 95, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5536, 38, 51, 50, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5537, 75, 24, 87, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5538, 0, 2, 49, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5539, 91, 63, 0, 2, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5540, 0, 75, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5541, 107, 70, 105, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5542, 8, 51, 40, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5543, 0, 10, 72, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5544, 73, 33, 100, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5545, 0, 67, 83, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5546, 63, 22, 83, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5547, 25, 0, 70, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5548, 51, 38, 80, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5549, 103, 96, 101, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5550, 7, 46, 91, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5551, 89, 12, 41, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5552, 97, 73, 18, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5553, 35, 90, 29, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5554, 52, 61, 48, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5555, 98, 29, 53, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5556, 71, 10, 15, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5557, 26, 53, 63, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5558, 82, 0, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5559, 26, 62, 12, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5560, 70, 3, 99, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5561, 55, 2, 32, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5562, 101, 109, 66, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5563, 0, 42, 27, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5564, 80, 74, 67, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5565, 69, 54, 32, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5566, 65, 42, 27, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5567, 58, 102, 89, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5568, 0, 0, 3, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5569, 54, 52, 83, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5570, 37, 38, 83, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5571, 48, 87, 65, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5572, 97, 79, 30, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5573, 0, 69, 106, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5574, 6, 27, 70, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5575, 80, 0, 0, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5576, 109, 0, 70, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5577, 87, 54, 97, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5578, 38, 35, 60, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5579, 39, 74, 67, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5580, 107, 70, 0, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5581, 109, 76, 104, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5582, 14, 0, 78, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5583, 57, 52, 71, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5584, 83, 18, 0, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5585, 83, 85, 12, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5586, 48, 78, 0, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5587, 102, 0, 66, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5588, 55, 54, 0, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5589, 93, 0, 0, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5590, 99, 29, 35, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5591, 3, 17, 65, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5592, 11, 0, 0, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5593, 0, 32, 0, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5594, 17, 42, 52, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5595, 0, 78, 69, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5596, 45, 26, 0, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5597, 39, 13, 64, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5598, 82, 0, 60, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5599, 85, 38, 82, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5600, 68, 85, 75, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5601, 9, 90, 29, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5602, 83, 57, 0, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5603, 70, 33, 99, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5604, 95, 29, 35, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5605, 3, 87, 55, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5606, 0, 0, 78, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5607, 96, 29, 18, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5608, 8, 0, 9, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5609, 0, 95, 68, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5610, 48, 58, 44, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5611, 105, 107, 19, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5612, 6, 76, 11, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5613, 39, 40, 2, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5614, 0, 98, 105, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5615, 8, 84, 21, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5616, 0, 48, 67, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5617, 36, 76, 47, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5618, 103, 45, 54, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5619, 95, 79, 81, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5620, 32, 89, 55, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5621, 0, 11, 33, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5622, 90, 0, 58, 4, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5623, 91, 63, 38, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5624, 71, 36, 112, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5625, 26, 57, 75, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5626, 69, 8, 97, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5627, 73, 16, 13, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5628, 93, 112, 91, 2, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5629, 20, 26, 80, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5630, 13, 38, 83, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5631, 49, 69, 54, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5632, 60, 75, 100, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5633, 38, 34, 21, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5634, 95, 40, 0, 2, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5635, 45, 38, 80, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5636, 106, 108, 19, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5637, 26, 66, 12, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5638, 0, 54, 99, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5639, 8, 72, 21, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5640, 26, 44, 0, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5641, 67, 8, 94, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5642, 60, 33, 32, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5643, 0, 64, 63, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5644, 93, 112, 70, 2, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5645, 26, 84, 60, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5646, 69, 3, 13, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5647, 106, 107, 66, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5648, 98, 60, 81, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5649, 54, 0, 56, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5650, 82, 53, 40, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5651, 6, 0, 103, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5652, 37, 52, 83, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5653, 104, 70, 54, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5654, 99, 31, 3, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5655, 39, 32, 64, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5656, 85, 22, 80, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5657, 86, 32, 8, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5658, 0, 22, 71, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5659, 81, 86, 83, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5660, 98, 31, 3, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5661, 100, 79, 53, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5662, 100, 60, 2, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5663, 0, 29, 16, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5664, 64, 0, 80, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5665, 0, 79, 3, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5666, 95, 31, 34, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5667, 59, 87, 69, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5668, 34, 89, 55, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5669, 87, 91, 0, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5670, 55, 33, 32, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5671, 0, 0, 48, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5672, 0, 84, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5673, 71, 61, 51, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5674, 93, 27, 107, 2, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5675, 21, 105, 87, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5676, 96, 48, 3, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5677, 93, 46, 0, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5678, 0, 13, 16, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5679, 83, 84, 0, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5680, 96, 29, 0, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5681, 0, 28, 42, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5682, 12, 14, 0, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5683, 84, 52, 80, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5684, 101, 80, 0, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5685, 18, 0, 83, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5686, 100, 74, 67, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5687, 71, 10, 109, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5688, 66, 22, 83, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5689, 96, 73, 64, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5690, 98, 60, 16, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5691, 26, 37, 21, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5692, 103, 55, 68, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5693, 83, 53, 79, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5694, 21, 101, 87, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5695, 64, 22, 71, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5696, 109, 27, 88, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5697, 30, 42, 7, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5698, 97, 40, 34, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5699, 86, 9, 57, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5700, 0, 57, 79, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5701, 68, 34, 73, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5702, 85, 22, 0, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5703, 17, 6, 52, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5704, 0, 65, 58, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5705, 73, 68, 98, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5706, 68, 20, 40, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5707, 8, 72, 9, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5708, 19, 71, 36, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5709, 104, 97, 106, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5710, 47, 10, 93, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5711, 47, 61, 4, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5712, 30, 42, 74, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5713, 40, 67, 83, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5714, 0, 22, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5715, 41, 52, 83, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5716, 79, 86, 82, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5717, 0, 64, 12, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5718, 67, 75, 100, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5719, 96, 9, 2, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5720, 73, 0, 32, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5721, 72, 52, 83, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5722, 27, 10, 109, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5723, 97, 13, 30, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5724, 0, 12, 17, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5725, 94, 31, 53, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5726, 77, 90, 29, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5727, 37, 22, 0, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5728, 49, 98, 101, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5729, 0, 0, 6, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5730, 26, 0, 21, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5731, 86, 60, 57, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5732, 100, 13, 0, 4, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5733, 73, 16, 99, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5734, 40, 0, 83, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5735, 70, 75, 98, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5736, 81, 86, 56, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5737, 80, 73, 18, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5738, 0, 89, 44, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5739, 90, 4, 58, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5740, 77, 87, 29, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5741, 6, 0, 70, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5742, 71, 36, 109, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5743, 99, 0, 35, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5744, 88, 77, 78, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5745, 69, 8, 13, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5746, 26, 20, 21, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5747, 24, 76, 108, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5748, 0, 44, 21, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5749, 19, 43, 5, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5750, 0, 82, 0, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5751, 25, 46, 92, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5752, 55, 2, 95, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5753, 57, 67, 80, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5754, 71, 41, 4, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5755, 36, 112, 107, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5756, 100, 60, 81, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5757, 47, 36, 4, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5758, 43, 26, 56, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5759, 68, 20, 12, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5760, 75, 0, 25, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5761, 0, 38, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5762, 26, 0, 63, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5763, 0, 86, 82, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5764, 87, 91, 96, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5765, 0, 94, 68, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5766, 61, 0, 83, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5767, 98, 9, 26, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5768, 98, 48, 64, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5769, 49, 100, 101, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5770, 95, 9, 2, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5771, 26, 57, 73, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5772, 97, 29, 53, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5773, 99, 9, 64, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5774, 13, 0, 82, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5775, 31, 67, 83, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5776, 0, 82, 62, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5777, 50, 45, 101, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5778, 19, 47, 74, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5779, 39, 79, 2, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5780, 30, 47, 33, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5781, 62, 26, 0, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5782, 0, 66, 40, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5783, 50, 45, 102, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5784, 104, 0, 105, 2, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5785, 71, 41, 0, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5786, 83, 49, 63, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5787, 0, 28, 92, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5788, 2, 14, 69, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5789, 62, 26, 56, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5790, 55, 0, 97, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5791, 0, 24, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5792, 55, 16, 13, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5793, 26, 72, 21, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5794, 68, 49, 50, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5795, 16, 90, 29, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5796, 99, 48, 26, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5797, 30, 6, 24, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5798, 83, 44, 75, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5799, 50, 96, 106, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5800, 97, 32, 81, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5801, 80, 73, 16, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5802, 82, 84, 79, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5803, 46, 24, 87, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5804, 8, 37, 60, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5805, 107, 98, 106, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5806, 92, 63, 38, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5807, 44, 26, 82, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5808, 80, 0, 57, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5809, 16, 17, 65, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5810, 100, 74, 35, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5811, 59, 0, 65, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5812, 38, 56, 63, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5813, 104, 94, 68, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5814, 83, 0, 79, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5815, 96, 32, 81, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5816, 25, 112, 0, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5817, 53, 52, 80, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5818, 65, 47, 33, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5819, 79, 0, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5820, 11, 10, 109, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5821, 68, 56, 9, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5822, 65, 42, 36, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5823, 0, 56, 60, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5824, 0, 112, 42, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5825, 79, 0, 71, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5826, 65, 11, 7, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5827, 33, 89, 29, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5828, 100, 48, 35, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5829, 11, 61, 43, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5830, 97, 79, 18, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5831, 39, 60, 64, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5832, 38, 85, 75, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5833, 105, 93, 39, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5834, 100, 40, 26, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5835, 39, 29, 26, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5836, 52, 61, 43, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5837, 26, 85, 9, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5838, 16, 87, 44, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5839, 26, 53, 40, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5840, 68, 56, 86, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5841, 39, 9, 53, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5842, 97, 60, 16, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5843, 10, 26, 82, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5844, 29, 30, 39, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5845, 30, 47, 74, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5846, 69, 54, 98, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5847, 5, 89, 69, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5848, 87, 2, 98, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5849, 0, 13, 81, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5850, 28, 102, 0, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5851, 94, 31, 0, 4, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5852, 55, 54, 99, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5853, 35, 0, 44, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5854, 41, 0, 56, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5855, 48, 87, 44, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5856, 10, 52, 71, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5857, 70, 0, 49, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5858, 82, 34, 60, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5859, 97, 0, 20, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5860, 96, 19, 18, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5861, 13, 67, 71, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5862, 7, 0, 108, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5863, 22, 36, 51, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5864, 30, 71, 52, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5865, 0, 68, 95, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5866, 103, 98, 68, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5867, 99, 40, 53, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5868, 97, 79, 16, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5869, 59, 87, 55, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5870, 8, 37, 75, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5871, 39, 0, 26, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5872, 94, 19, 18, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5873, 40, 52, 83, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5874, 11, 0, 93, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5875, 8, 84, 9, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5876, 0, 94, 54, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5877, 108, 96, 54, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5878, 97, 40, 35, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5879, 78, 27, 42, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5880, 26, 72, 79, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5881, 60, 3, 95, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5882, 94, 79, 30, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5883, 39, 0, 64, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5884, 73, 8, 100, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5885, 0, 75, 13, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5886, 68, 66, 40, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5887, 87, 33, 45, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5888, 67, 33, 45, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5889, 0, 79, 26, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5890, 105, 107, 66, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5891, 94, 74, 64, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5892, 0, 44, 63, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5893, 100, 60, 67, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5894, 68, 37, 86, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5895, 68, 18, 79, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5896, 35, 87, 69, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5897, 48, 14, 69, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5898, 48, 90, 65, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5899, 86, 60, 30, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5900, 0, 108, 31, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5901, 70, 50, 94, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5902, 73, 2, 94, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5903, 77, 58, 29, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5904, 19, 42, 74, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5905, 94, 79, 26, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5906, 86, 74, 20, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5907, 90, 65, 17, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5908, 0, 20, 73, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5909, 0, 37, 21, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5910, 86, 31, 18, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5911, 21, 105, 25, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5912, 0, 0, 8, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5913, 72, 86, 0, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5914, 82, 84, 40, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5915, 49, 69, 106, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5916, 81, 38, 56, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5917, 0, 30, 0, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5918, 31, 0, 83, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5919, 83, 35, 73, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5920, 82, 35, 21, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5921, 112, 52, 80, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5922, 103, 70, 54, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5923, 9, 14, 0, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5924, 17, 47, 5, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5925, 38, 18, 9, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5926, 22, 36, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5927, 100, 0, 64, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5928, 21, 24, 25, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5929, 62, 52, 0, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5930, 0, 88, 25, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5931, 26, 49, 50, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5932, 99, 48, 16, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5933, 65, 6, 36, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5934, 7, 112, 107, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5935, 54, 86, 80, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5936, 26, 35, 12, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5937, 98, 13, 53, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5938, 0, 33, 32, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5939, 73, 68, 99, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5940, 97, 9, 3, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5941, 39, 9, 81, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5942, 6, 76, 88, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5943, 73, 54, 0, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5944, 50, 45, 68, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5945, 15, 87, 65, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5946, 99, 31, 67, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5947, 78, 27, 0, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5948, 69, 0, 95, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5949, 0, 37, 40, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5950, 80, 74, 20, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5951, 5, 14, 65, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5952, 68, 37, 63, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5953, 87, 75, 49, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5954, 39, 0, 35, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5955, 37, 67, 82, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5956, 96, 29, 81, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5957, 36, 112, 0, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5958, 15, 17, 55, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5959, 86, 74, 30, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5960, 77, 87, 69, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5961, 19, 47, 14, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5962, 26, 0, 86, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5963, 100, 13, 3, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5964, 96, 48, 67, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5965, 47, 0, 77, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5966, 100, 79, 57, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5967, 0, 64, 50, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5968, 92, 83, 0, 4, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5969, 80, 48, 8, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5970, 82, 35, 9, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5971, 107, 100, 105, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5972, 105, 80, 19, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5973, 51, 52, 82, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5974, 108, 0, 0, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5975, 84, 67, 80, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5976, 82, 37, 73, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5977, 95, 0, 67, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5978, 0, 19, 8, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5979, 70, 50, 95, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5980, 101, 93, 0, 2, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5981, 68, 64, 86, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5982, 101, 104, 0, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5983, 71, 61, 112, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5984, 10, 0, 83, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5985, 83, 66, 60, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5986, 0, 19, 81, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5987, 79, 86, 56, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5988, 98, 31, 35, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5989, 38, 20, 21, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5990, 26, 84, 63, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5991, 92, 83, 38, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5992, 0, 84, 50, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5993, 0, 11, 36, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5994, 102, 109, 19, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (5995, 80, 79, 30, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5996, 82, 18, 9, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5997, 39, 9, 8, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (5998, 94, 0, 20, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (5999, 94, 79, 8, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6000, 24, 112, 11, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6001, 96, 40, 57, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6002, 0, 40, 3, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6003, 0, 60, 35, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6004, 71, 36, 4, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6005, 0, 108, 19, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6006, 60, 75, 96, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6007, 0, 60, 57, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6008, 45, 38, 82, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6009, 0, 66, 63, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6010, 28, 39, 89, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6011, 87, 8, 0, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6012, 83, 72, 75, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6013, 74, 14, 55, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6014, 82, 62, 50, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6015, 91, 21, 61, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6016, 86, 74, 26, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6017, 50, 98, 54, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6018, 86, 79, 67, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6019, 38, 53, 9, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6020, 92, 0, 61, 4, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6021, 96, 29, 64, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6022, 60, 75, 13, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6023, 95, 29, 64, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6024, 97, 74, 53, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6025, 97, 9, 35, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6026, 0, 25, 10, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6027, 22, 0, 15, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6028, 99, 29, 2, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6029, 27, 10, 43, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6030, 99, 31, 53, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6031, 41, 38, 0, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6032, 98, 60, 57, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6033, 30, 71, 76, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6034, 20, 52, 0, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6035, 83, 72, 63, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6036, 25, 112, 92, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6037, 95, 48, 2, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6038, 13, 86, 0, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6039, 14, 0, 17, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6040, 64, 26, 56, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6041, 91, 63, 37, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6042, 85, 52, 71, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6043, 99, 73, 35, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6044, 26, 44, 21, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6045, 82, 56, 9, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6046, 0, 92, 90, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6047, 2, 14, 65, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6048, 80, 31, 53, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6049, 86, 29, 26, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6050, 30, 0, 10, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6051, 27, 41, 77, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6052, 55, 54, 100, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6053, 24, 76, 107, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6054, 100, 60, 35, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6055, 95, 0, 57, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6056, 82, 34, 9, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6057, 100, 19, 16, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6058, 24, 46, 103, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6059, 32, 89, 69, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6060, 51, 22, 56, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6061, 26, 57, 40, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6062, 30, 11, 24, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6063, 95, 31, 67, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6064, 0, 27, 88, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6065, 24, 112, 47, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6066, 93, 0, 103, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6067, 99, 0, 53, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6068, 97, 31, 35, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6069, 82, 51, 63, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6070, 19, 6, 52, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6071, 15, 58, 55, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6072, 22, 61, 93, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6073, 18, 67, 83, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6074, 0, 65, 0, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6075, 7, 112, 0, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6076, 82, 44, 86, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6077, 104, 70, 0, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6078, 69, 33, 13, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6079, 48, 17, 0, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6080, 12, 0, 65, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6081, 78, 46, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6082, 100, 31, 34, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6083, 0, 6, 7, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6084, 76, 10, 6, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6085, 8, 35, 40, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6086, 41, 52, 82, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6087, 87, 3, 98, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6088, 42, 61, 6, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6089, 101, 104, 19, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6090, 67, 75, 94, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6091, 37, 22, 82, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6092, 38, 0, 40, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6093, 30, 47, 36, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6094, 15, 89, 65, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6095, 56, 82, 62, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6096, 22, 36, 112, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6097, 68, 81, 12, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6098, 21, 7, 89, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6099, 57, 0, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6100, 109, 27, 70, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6101, 82, 72, 86, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6102, 99, 29, 81, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6103, 48, 0, 29, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6104, 35, 87, 0, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6105, 52, 10, 0, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6106, 57, 86, 71, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6107, 0, 58, 29, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6108, 26, 49, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6109, 62, 0, 71, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6110, 61, 22, 83, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6111, 0, 0, 18, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6112, 0, 81, 60, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6113, 39, 9, 35, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6114, 102, 0, 19, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6115, 99, 9, 57, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6116, 65, 47, 59, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6117, 0, 97, 0, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6118, 87, 33, 98, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6119, 55, 0, 95, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6120, 31, 52, 83, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6121, 55, 8, 96, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6122, 30, 43, 10, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6123, 86, 73, 64, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6124, 97, 60, 81, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6125, 15, 14, 0, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6126, 65, 47, 28, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6127, 74, 78, 55, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6128, 61, 86, 0, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6129, 18, 67, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6130, 10, 0, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6131, 0, 0, 95, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6132, 0, 11, 76, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6133, 0, 50, 100, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6134, 50, 100, 101, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6135, 80, 19, 81, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6136, 44, 0, 82, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6137, 94, 73, 3, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6138, 96, 31, 30, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6139, 77, 17, 44, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6140, 42, 0, 109, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6141, 44, 52, 0, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6142, 72, 22, 83, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6143, 14, 59, 41, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6144, 0, 62, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6145, 75, 88, 90, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6146, 94, 40, 8, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6147, 81, 26, 80, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6148, 98, 29, 81, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6149, 54, 0, 71, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6150, 104, 95, 106, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6151, 45, 67, 80, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6152, 0, 61, 15, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6153, 0, 78, 65, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6154, 54, 86, 56, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6155, 26, 81, 73, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6156, 8, 81, 63, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6157, 45, 67, 83, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6158, 26, 0, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6159, 100, 73, 57, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6160, 13, 0, 83, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6161, 33, 17, 29, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6162, 99, 73, 20, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6163, 26, 81, 50, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6164, 86, 9, 18, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6165, 94, 29, 34, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6166, 94, 0, 26, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6167, 6, 76, 42, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6168, 50, 95, 54, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6169, 8, 57, 86, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6170, 68, 85, 40, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6171, 70, 91, 45, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6172, 19, 6, 5, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6173, 71, 61, 109, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6174, 64, 38, 56, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6175, 0, 41, 112, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6176, 98, 74, 81, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6177, 94, 40, 30, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6178, 78, 112, 88, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6179, 16, 14, 29, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6180, 55, 68, 98, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6181, 38, 18, 40, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6182, 73, 33, 45, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6183, 0, 21, 85, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6184, 35, 17, 55, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6185, 0, 43, 22, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6186, 0, 0, 36, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6187, 17, 71, 36, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6188, 95, 0, 18, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6189, 0, 46, 42, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6190, 89, 65, 0, 4, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6191, 93, 46, 70, 2, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6192, 100, 40, 30, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6193, 106, 30, 39, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6194, 100, 32, 16, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6195, 0, 4, 58, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6196, 97, 9, 57, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6197, 86, 73, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6198, 17, 47, 14, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6199, 26, 34, 73, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6200, 0, 22, 83, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6201, 14, 5, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6202, 100, 79, 2, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6203, 94, 9, 67, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6204, 3, 0, 65, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6205, 68, 37, 21, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6206, 21, 102, 89, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6207, 9, 78, 65, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6208, 95, 79, 34, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6209, 18, 22, 80, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6210, 8, 51, 12, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6211, 100, 19, 64, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6212, 15, 17, 44, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6213, 55, 0, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6214, 80, 60, 64, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6215, 60, 68, 96, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6216, 103, 70, 106, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6217, 112, 38, 56, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6218, 98, 79, 53, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6219, 70, 0, 96, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6220, 0, 0, 46, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6221, 99, 19, 3, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6222, 102, 107, 31, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6223, 0, 19, 57, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6224, 68, 0, 40, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6225, 55, 75, 98, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6226, 101, 0, 31, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6227, 86, 31, 20, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6228, 38, 35, 12, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6229, 0, 0, 59, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6230, 55, 91, 97, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6231, 52, 41, 93, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6232, 0, 0, 29, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6233, 31, 26, 71, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6234, 52, 36, 72, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6235, 0, 31, 53, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6236, 83, 85, 9, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6237, 30, 0, 14, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6238, 7, 0, 11, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6239, 31, 26, 56, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6240, 19, 43, 22, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6241, 49, 100, 105, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6242, 0, 71, 22, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6243, 12, 78, 65, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6244, 96, 74, 64, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6245, 51, 52, 0, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6246, 0, 32, 16, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6247, 96, 19, 2, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6248, 0, 83, 84, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6249, 8, 35, 21, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6250, 97, 13, 16, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6251, 95, 40, 35, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6252, 87, 0, 32, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6253, 73, 0, 13, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6254, 0, 101, 87, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6255, 94, 9, 3, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6256, 38, 62, 60, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6257, 109, 46, 42, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6258, 0, 2, 94, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6259, 77, 58, 65, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6260, 12, 90, 0, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6261, 98, 0, 20, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6262, 93, 46, 92, 2, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6263, 77, 0, 44, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6264, 39, 74, 81, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6265, 39, 79, 81, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6266, 69, 0, 49, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6267, 86, 31, 67, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6268, 39, 31, 26, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6269, 0, 68, 100, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6270, 95, 73, 64, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6271, 0, 112, 91, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6272, 0, 9, 20, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6273, 68, 18, 75, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6274, 100, 32, 53, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6275, 73, 2, 13, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6276, 99, 74, 35, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6277, 98, 48, 81, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6278, 87, 33, 0, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6279, 70, 75, 49, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6280, 0, 48, 20, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6281, 26, 53, 79, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6282, 100, 79, 67, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6283, 55, 0, 13, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6284, 84, 22, 82, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6285, 11, 36, 48, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6286, 84, 0, 83, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6287, 73, 2, 32, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6288, 98, 32, 2, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6289, 82, 51, 73, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6290, 8, 44, 9, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6291, 0, 44, 40, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6292, 104, 55, 105, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6293, 102, 30, 0, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6294, 47, 36, 77, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6295, 38, 53, 73, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6296, 14, 4, 58, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6297, 83, 49, 60, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6298, 26, 64, 86, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6299, 47, 0, 43, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6300, 98, 31, 2, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6301, 80, 79, 8, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6302, 109, 27, 0, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6303, 3, 17, 44, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6304, 11, 36, 77, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6305, 17, 47, 7, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6306, 0, 45, 68, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6307, 51, 22, 71, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6308, 27, 10, 48, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6309, 0, 18, 60, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6310, 0, 40, 57, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6311, 0, 45, 101, 2, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6312, 80, 13, 18, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6313, 93, 27, 47, 2, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6314, 70, 75, 99, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6315, 47, 41, 43, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6316, 112, 86, 0, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6317, 0, 55, 105, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6318, 26, 84, 75, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6319, 100, 73, 26, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6320, 34, 0, 44, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6321, 106, 30, 19, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6322, 39, 29, 30, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6323, 0, 25, 14, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6324, 19, 6, 14, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6325, 97, 19, 26, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6326, 97, 40, 18, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6327, 87, 54, 0, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6328, 0, 102, 89, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6329, 0, 10, 112, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6330, 68, 84, 0, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6331, 72, 52, 82, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6332, 87, 8, 100, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6333, 35, 78, 55, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6334, 0, 74, 35, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6335, 43, 26, 80, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6336, 82, 18, 63, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6337, 84, 0, 82, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6338, 30, 71, 59, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6339, 92, 21, 84, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6340, 7, 76, 104, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6341, 8, 0, 79, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6342, 0, 13, 18, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6343, 87, 33, 100, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6344, 35, 78, 44, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6345, 50, 70, 105, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6346, 5, 58, 55, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6347, 29, 103, 66, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6348, 94, 29, 67, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6349, 97, 74, 18, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6350, 54, 86, 0, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6351, 80, 40, 18, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6352, 8, 35, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6353, 4, 90, 29, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6354, 6, 112, 47, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6355, 44, 0, 80, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6356, 27, 36, 112, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6357, 85, 22, 71, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6358, 51, 26, 82, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6359, 0, 30, 19, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6360, 30, 25, 24, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6361, 49, 100, 68, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6362, 83, 35, 50, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6363, 0, 76, 104, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6364, 11, 10, 112, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6365, 68, 53, 21, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6366, 13, 0, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6367, 8, 20, 86, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6368, 0, 91, 32, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6369, 70, 8, 13, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6370, 87, 0, 13, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6371, 0, 0, 89, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6372, 96, 40, 3, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6373, 42, 0, 112, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6374, 0, 49, 73, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6375, 86, 60, 34, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6376, 102, 107, 19, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6377, 0, 38, 83, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6378, 45, 22, 71, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6379, 15, 89, 0, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6380, 30, 0, 22, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6381, 87, 0, 49, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6382, 49, 69, 101, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6383, 96, 13, 18, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6384, 63, 0, 80, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6385, 54, 0, 82, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6386, 21, 39, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6387, 26, 66, 75, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6388, 68, 18, 40, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6389, 78, 28, 104, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6390, 94, 31, 64, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6391, 50, 0, 105, 2, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6392, 0, 91, 98, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6393, 8, 53, 0, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6394, 43, 26, 71, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6395, 96, 48, 0, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6396, 8, 66, 86, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6397, 64, 67, 71, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6398, 35, 87, 29, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6399, 27, 36, 51, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6400, 99, 31, 20, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6401, 60, 3, 32, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6402, 82, 37, 21, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6403, 74, 14, 0, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6404, 68, 35, 75, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6405, 97, 9, 26, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6406, 86, 32, 34, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6407, 98, 31, 20, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6408, 83, 66, 75, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6409, 66, 38, 0, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6410, 68, 51, 12, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6411, 0, 57, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6412, 30, 0, 52, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6413, 98, 29, 3, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6414, 39, 79, 35, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6415, 2, 87, 55, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6416, 106, 107, 0, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6417, 25, 28, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6418, 99, 79, 35, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6419, 43, 0, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6420, 87, 54, 99, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6421, 57, 22, 82, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6422, 17, 11, 46, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6423, 41, 0, 80, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6424, 0, 46, 70, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6425, 55, 68, 49, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6426, 39, 0, 81, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6427, 33, 17, 55, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6428, 11, 0, 72, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6429, 49, 55, 102, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6430, 60, 0, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6431, 28, 106, 89, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6432, 69, 50, 95, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6433, 69, 16, 0, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6434, 95, 19, 67, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6435, 97, 73, 57, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6436, 63, 26, 56, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6437, 98, 73, 67, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6438, 49, 45, 101, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6439, 73, 2, 98, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6440, 83, 37, 73, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6441, 61, 86, 71, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6442, 0, 31, 3, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6443, 95, 9, 18, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6444, 24, 28, 104, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6445, 99, 9, 0, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6446, 14, 77, 0, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6447, 89, 12, 17, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6448, 86, 73, 35, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6449, 86, 60, 2, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6450, 67, 91, 99, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6451, 0, 83, 0, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6452, 0, 73, 35, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6453, 20, 0, 71, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6454, 0, 37, 86, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6455, 104, 55, 0, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6456, 10, 67, 80, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6457, 0, 53, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6458, 68, 72, 12, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6459, 0, 76, 47, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6460, 98, 32, 3, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6461, 98, 31, 34, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6462, 0, 33, 100, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6463, 95, 60, 57, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6464, 105, 108, 0, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6465, 67, 75, 97, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6466, 49, 70, 106, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6467, 80, 13, 57, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6468, 30, 0, 7, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6469, 108, 95, 105, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6470, 100, 79, 30, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6471, 0, 91, 49, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6472, 103, 69, 68, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6473, 96, 60, 20, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6474, 97, 40, 0, 2, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6475, 45, 86, 71, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6476, 55, 50, 45, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6477, 63, 52, 80, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6478, 38, 56, 50, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6479, 105, 109, 0, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6480, 0, 80, 39, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6481, 22, 36, 77, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6482, 100, 9, 34, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6483, 80, 31, 64, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6484, 70, 54, 32, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6485, 100, 19, 34, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6486, 35, 14, 65, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6487, 92, 0, 62, 4, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6488, 50, 45, 106, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6489, 94, 13, 2, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6490, 42, 36, 4, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6491, 105, 103, 19, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6492, 26, 57, 60, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6493, 30, 0, 33, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6494, 80, 13, 8, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6495, 69, 3, 96, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6496, 22, 0, 51, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6497, 24, 28, 70, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6498, 15, 14, 44, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6499, 83, 85, 86, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6500, 26, 51, 50, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6501, 60, 8, 100, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6502, 88, 12, 17, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6503, 83, 35, 60, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6504, 96, 0, 30, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6505, 84, 52, 82, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6506, 0, 41, 0, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6507, 0, 36, 77, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6508, 8, 18, 12, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6509, 22, 41, 48, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6510, 7, 112, 104, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6511, 24, 46, 91, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6512, 26, 37, 86, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6513, 19, 25, 28, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6514, 39, 32, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6515, 83, 62, 63, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6516, 9, 58, 55, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6517, 94, 60, 18, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6518, 0, 9, 8, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6519, 99, 40, 16, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6520, 82, 62, 40, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6521, 83, 64, 60, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6522, 0, 13, 0, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6523, 40, 38, 82, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6524, 0, 109, 39, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6525, 39, 74, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6526, 8, 34, 73, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6527, 39, 19, 20, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6528, 107, 69, 0, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6529, 36, 76, 91, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6530, 13, 67, 82, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6531, 100, 9, 53, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6532, 50, 0, 106, 2, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6533, 74, 87, 0, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6534, 65, 43, 14, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6535, 78, 0, 91, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6536, 30, 42, 14, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6537, 80, 19, 34, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6538, 0, 75, 95, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6539, 29, 108, 31, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6540, 107, 100, 0, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6541, 7, 112, 70, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6542, 84, 38, 83, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6543, 83, 34, 12, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6544, 0, 72, 79, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6545, 94, 13, 34, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6546, 89, 0, 78, 4, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6547, 52, 0, 112, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6548, 104, 100, 68, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6549, 16, 78, 44, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6550, 54, 52, 0, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6551, 0, 97, 106, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6552, 55, 50, 98, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6553, 82, 57, 60, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6554, 30, 11, 46, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6555, 0, 100, 68, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6556, 78, 0, 103, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6557, 106, 108, 66, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6558, 17, 43, 59, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6559, 68, 49, 73, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6560, 93, 76, 108, 2, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6561, 11, 41, 43, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6562, 75, 106, 87, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6563, 95, 40, 3, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6564, 96, 0, 26, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6565, 60, 54, 99, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6566, 42, 10, 6, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6567, 7, 112, 88, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6568, 106, 104, 66, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6569, 52, 61, 0, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6570, 0, 73, 57, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6571, 83, 35, 63, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6572, 66, 67, 56, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6573, 27, 0, 72, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6574, 41, 26, 83, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6575, 0, 0, 35, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6576, 76, 0, 6, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6577, 100, 48, 53, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6578, 22, 0, 93, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6579, 100, 13, 26, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6580, 2, 0, 65, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6581, 13, 86, 56, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6582, 68, 57, 73, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6583, 44, 38, 82, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6584, 40, 22, 56, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6585, 103, 98, 54, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6586, 86, 9, 53, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6587, 38, 62, 0, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6588, 69, 16, 97, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6589, 0, 95, 106, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6590, 66, 22, 56, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6591, 38, 53, 0, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6592, 76, 10, 51, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6593, 34, 14, 0, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6594, 109, 0, 47, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6595, 14, 15, 58, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6596, 60, 54, 96, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6597, 8, 56, 12, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6598, 0, 36, 72, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6599, 94, 29, 57, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6600, 0, 4, 17, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6601, 103, 45, 102, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6602, 68, 34, 60, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6603, 94, 48, 18, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6604, 98, 40, 30, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6605, 60, 75, 94, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6606, 70, 68, 49, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6607, 36, 28, 91, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6608, 68, 85, 50, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6609, 8, 85, 21, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6610, 48, 78, 29, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6611, 67, 3, 100, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6612, 52, 41, 112, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6613, 106, 108, 0, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6614, 0, 64, 73, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6615, 6, 46, 103, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6616, 39, 60, 67, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6617, 38, 0, 9, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6618, 100, 0, 3, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6619, 0, 55, 54, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6620, 98, 0, 16, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6621, 82, 57, 75, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6622, 27, 0, 112, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6623, 83, 44, 60, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6624, 31, 0, 82, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6625, 6, 76, 70, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6626, 0, 40, 8, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6627, 67, 0, 94, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6628, 53, 22, 80, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6629, 42, 0, 43, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6630, 65, 11, 33, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6631, 72, 26, 71, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6632, 26, 64, 21, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6633, 39, 40, 20, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6634, 87, 16, 13, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6635, 94, 29, 18, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6636, 10, 38, 0, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6637, 93, 0, 108, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6638, 86, 9, 26, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6639, 38, 81, 73, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6640, 41, 52, 0, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6641, 108, 100, 68, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6642, 82, 85, 9, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6643, 95, 29, 26, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6644, 2, 0, 0, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6645, 80, 29, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6646, 26, 62, 60, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6647, 8, 37, 0, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6648, 33, 14, 29, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6649, 112, 0, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6650, 67, 33, 99, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6651, 67, 75, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6652, 45, 86, 82, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6653, 33, 0, 69, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6654, 52, 41, 72, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6655, 86, 40, 35, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6656, 16, 58, 65, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6657, 39, 40, 3, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6658, 96, 60, 34, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6659, 80, 29, 30, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6660, 68, 66, 21, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6661, 108, 94, 101, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6662, 36, 0, 42, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6663, 26, 35, 60, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6664, 19, 47, 0, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6665, 98, 48, 34, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6666, 107, 99, 106, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6667, 95, 60, 67, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6668, 86, 31, 34, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6669, 83, 18, 40, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6670, 38, 72, 63, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6671, 84, 38, 71, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6672, 39, 48, 53, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6673, 94, 40, 16, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6674, 96, 74, 3, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6675, 42, 36, 112, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6676, 65, 11, 5, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6677, 25, 0, 0, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6678, 29, 103, 0, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6679, 52, 36, 4, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6680, 56, 0, 37, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6681, 47, 36, 6, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6682, 99, 48, 34, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6683, 24, 0, 70, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6684, 0, 8, 96, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6685, 43, 22, 80, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6686, 11, 61, 72, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6687, 38, 84, 75, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6688, 99, 48, 8, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6689, 82, 62, 86, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6690, 78, 112, 104, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6691, 53, 86, 56, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6692, 69, 0, 98, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6693, 25, 76, 0, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6694, 58, 92, 90, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6695, 0, 74, 34, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6696, 71, 41, 43, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6697, 26, 51, 60, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6698, 4, 78, 69, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6699, 100, 9, 57, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6700, 34, 17, 55, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6701, 12, 89, 0, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6702, 76, 0, 0, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6703, 24, 112, 42, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6704, 50, 55, 106, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6705, 73, 3, 45, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6706, 68, 51, 0, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6707, 42, 10, 77, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6708, 50, 97, 106, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6709, 107, 96, 0, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6710, 38, 44, 9, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6711, 101, 103, 39, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6712, 76, 0, 51, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6713, 81, 52, 82, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6714, 99, 9, 53, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6715, 79, 67, 56, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6716, 7, 76, 47, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6717, 16, 0, 29, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6718, 104, 0, 106, 2, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6719, 76, 41, 43, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6720, 53, 67, 56, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6721, 94, 13, 26, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6722, 68, 20, 73, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6723, 96, 73, 20, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6724, 95, 19, 53, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6725, 47, 36, 93, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6726, 55, 54, 97, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6727, 95, 29, 53, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6728, 18, 67, 56, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6729, 30, 0, 36, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6730, 44, 86, 83, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6731, 42, 10, 15, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6732, 6, 0, 47, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6733, 69, 68, 100, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6734, 100, 31, 67, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6735, 52, 36, 109, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6736, 97, 19, 0, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6737, 73, 91, 0, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6738, 16, 0, 55, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6739, 84, 0, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6740, 99, 40, 64, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6741, 93, 0, 88, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6742, 40, 52, 56, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6743, 96, 13, 81, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6744, 30, 25, 59, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6745, 7, 0, 104, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6746, 53, 0, 80, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6747, 0, 43, 33, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6748, 64, 0, 56, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6749, 83, 72, 60, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6750, 99, 74, 0, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6751, 0, 24, 90, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6752, 32, 89, 44, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6753, 70, 91, 100, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6754, 94, 0, 64, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6755, 32, 87, 69, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6756, 108, 95, 0, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6757, 65, 42, 52, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6758, 42, 36, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6759, 26, 56, 50, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6760, 68, 35, 40, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6761, 67, 8, 45, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6762, 107, 0, 54, 2, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6763, 19, 47, 22, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6764, 107, 94, 54, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6765, 99, 13, 81, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6766, 3, 89, 65, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6767, 0, 58, 65, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6768, 6, 27, 104, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6769, 90, 0, 78, 4, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6770, 24, 112, 107, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6771, 64, 26, 80, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6772, 68, 57, 86, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6773, 83, 37, 50, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6774, 51, 0, 83, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6775, 59, 78, 69, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6776, 82, 51, 75, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6777, 0, 35, 60, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6778, 99, 13, 3, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6779, 48, 58, 29, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6780, 65, 71, 24, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6781, 95, 74, 3, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6782, 92, 63, 62, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6783, 69, 3, 95, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6784, 73, 0, 95, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6785, 24, 76, 103, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6786, 0, 68, 49, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6787, 106, 108, 39, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6788, 24, 46, 88, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6789, 36, 76, 88, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6790, 96, 32, 26, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6791, 69, 50, 96, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6792, 63, 67, 83, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6793, 99, 73, 81, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6794, 22, 36, 15, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6795, 76, 36, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6796, 26, 0, 50, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6797, 30, 71, 5, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6798, 20, 67, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6799, 82, 49, 21, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6800, 0, 86, 80, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6801, 60, 8, 49, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6802, 0, 26, 83, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6803, 67, 16, 49, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6804, 96, 13, 3, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6805, 54, 22, 82, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6806, 96, 79, 26, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6807, 19, 25, 33, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6808, 97, 0, 81, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6809, 103, 100, 101, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6810, 83, 85, 75, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6811, 96, 19, 34, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6812, 21, 7, 87, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6813, 112, 26, 0, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6814, 39, 48, 30, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6815, 100, 19, 35, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6816, 38, 20, 12, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6817, 8, 49, 9, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6818, 19, 47, 10, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6819, 60, 54, 49, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6820, 100, 48, 18, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6821, 98, 0, 67, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6822, 0, 3, 99, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6823, 9, 89, 65, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6824, 25, 27, 103, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6825, 17, 25, 59, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6826, 80, 40, 2, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6827, 30, 11, 36, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6828, 82, 85, 60, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6829, 10, 86, 83, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6830, 73, 75, 45, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6831, 8, 37, 12, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6832, 109, 76, 107, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6833, 0, 35, 86, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6834, 42, 0, 6, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6835, 48, 78, 44, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6836, 0, 99, 101, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6837, 68, 64, 73, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6838, 61, 26, 71, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6839, 38, 72, 60, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6840, 94, 9, 34, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6841, 41, 26, 82, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6842, 82, 0, 79, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6843, 71, 41, 77, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6844, 67, 54, 100, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6845, 72, 67, 82, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6846, 0, 28, 0, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6847, 0, 51, 73, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6848, 98, 13, 67, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6849, 0, 63, 0, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6850, 0, 8, 98, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6851, 0, 96, 106, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6852, 79, 0, 83, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6853, 17, 43, 46, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6854, 87, 8, 32, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6855, 0, 88, 0, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6856, 73, 33, 95, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6857, 8, 81, 79, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6858, 19, 71, 22, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6859, 42, 41, 43, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6860, 95, 74, 26, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6861, 95, 60, 8, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6862, 36, 76, 11, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6863, 27, 61, 15, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6864, 100, 13, 81, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6865, 13, 22, 83, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6866, 97, 32, 18, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6867, 64, 67, 56, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6868, 94, 9, 35, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6869, 81, 22, 0, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6870, 54, 26, 0, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6871, 60, 2, 13, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6872, 0, 76, 107, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6873, 82, 49, 50, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6874, 104, 0, 54, 2, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6875, 38, 66, 75, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6876, 100, 73, 64, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6877, 13, 67, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6878, 39, 31, 34, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6879, 72, 26, 0, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6880, 2, 14, 44, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6881, 42, 10, 93, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6882, 82, 51, 79, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6883, 93, 112, 108, 2, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6884, 83, 85, 0, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6885, 55, 16, 95, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6886, 50, 94, 68, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6887, 99, 79, 64, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6888, 97, 29, 57, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6889, 94, 74, 81, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6890, 30, 47, 76, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6891, 83, 20, 79, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6892, 12, 0, 0, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6893, 107, 95, 102, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6894, 0, 0, 2, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6895, 30, 0, 59, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6896, 80, 79, 0, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6897, 30, 71, 0, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6898, 0, 61, 109, 2, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6899, 95, 73, 30, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6900, 100, 29, 30, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6901, 44, 86, 71, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6902, 97, 48, 57, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6903, 35, 78, 29, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6904, 0, 97, 101, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6905, 100, 9, 26, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6906, 49, 70, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6907, 17, 43, 52, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6908, 0, 3, 95, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6909, 90, 0, 0, 4, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6910, 82, 34, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6911, 100, 74, 20, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6912, 84, 86, 56, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6913, 107, 94, 68, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6914, 0, 44, 79, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6915, 99, 48, 30, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6916, 97, 9, 64, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6917, 112, 22, 56, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6918, 88, 4, 78, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6919, 73, 50, 95, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6920, 7, 27, 103, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6921, 80, 13, 26, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6922, 90, 12, 17, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6923, 49, 0, 101, 2, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6924, 80, 19, 3, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6925, 83, 20, 60, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6926, 36, 0, 88, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6927, 24, 76, 0, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6928, 108, 98, 106, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6929, 0, 0, 44, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6930, 65, 0, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6931, 17, 0, 59, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6932, 39, 60, 20, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6933, 97, 29, 3, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6934, 68, 18, 9, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6935, 93, 46, 108, 2, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6936, 76, 36, 72, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6937, 48, 89, 65, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6938, 10, 22, 83, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6939, 96, 74, 18, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6940, 0, 86, 83, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6941, 86, 74, 67, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6942, 46, 88, 90, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6943, 11, 61, 6, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6944, 8, 85, 40, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6945, 38, 66, 86, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6946, 98, 29, 18, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6947, 2, 89, 55, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6948, 103, 69, 106, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6949, 70, 8, 96, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6950, 0, 11, 28, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6951, 67, 50, 98, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6952, 5, 14, 0, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6953, 61, 22, 71, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6954, 38, 84, 9, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6955, 68, 44, 0, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6956, 26, 18, 73, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6957, 79, 22, 0, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6958, 17, 6, 0, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6959, 0, 14, 65, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6960, 53, 86, 0, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6961, 99, 73, 67, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6962, 26, 72, 50, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6963, 22, 36, 93, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6964, 27, 10, 4, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6965, 3, 90, 29, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6966, 60, 33, 94, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6967, 18, 26, 71, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6968, 57, 38, 56, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6969, 26, 64, 40, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6970, 96, 60, 81, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6971, 44, 26, 83, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6972, 0, 29, 20, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6973, 99, 19, 30, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6974, 65, 43, 7, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6975, 86, 40, 81, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6976, 38, 72, 79, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6977, 42, 61, 0, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6978, 85, 52, 82, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6979, 0, 19, 64, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6980, 34, 87, 44, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6981, 86, 73, 20, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6982, 30, 6, 7, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6983, 68, 34, 86, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6984, 103, 94, 102, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6985, 107, 96, 101, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6986, 13, 22, 56, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6987, 7, 112, 47, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6988, 27, 61, 72, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6989, 0, 53, 73, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6990, 73, 91, 13, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (6991, 97, 31, 3, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6992, 77, 0, 55, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6993, 76, 10, 48, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6994, 61, 38, 82, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6995, 86, 74, 53, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6996, 107, 55, 102, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (6997, 0, 79, 67, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6998, 68, 49, 40, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (6999, 42, 0, 51, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7000, 26, 56, 63, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7001, 46, 7, 0, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7002, 59, 0, 69, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7003, 9, 87, 69, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7004, 33, 14, 0, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7005, 89, 12, 78, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7006, 26, 81, 86, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7007, 8, 37, 50, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7008, 96, 60, 0, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7009, 70, 3, 96, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7010, 44, 38, 71, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7011, 82, 44, 21, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7012, 83, 62, 50, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7013, 39, 9, 34, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7014, 108, 0, 105, 2, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7015, 68, 57, 40, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7016, 98, 29, 30, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7017, 82, 62, 75, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7018, 13, 52, 0, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7019, 31, 38, 82, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7020, 80, 13, 16, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7021, 80, 29, 67, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7022, 0, 56, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7023, 67, 3, 97, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7024, 8, 35, 63, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7025, 26, 18, 50, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7026, 19, 0, 76, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7027, 49, 94, 105, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7028, 50, 98, 105, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7029, 0, 46, 11, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7030, 45, 86, 0, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7031, 42, 41, 93, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7032, 98, 32, 16, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7033, 107, 98, 68, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7034, 73, 3, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7035, 0, 96, 101, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7036, 95, 29, 30, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7037, 68, 62, 79, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7038, 66, 26, 56, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7039, 0, 74, 3, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7040, 104, 99, 0, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7041, 0, 84, 75, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7042, 17, 43, 28, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7043, 0, 37, 75, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7044, 100, 31, 20, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7045, 71, 0, 15, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7046, 0, 82, 61, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7047, 97, 9, 8, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7048, 97, 0, 26, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7049, 35, 58, 65, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7050, 49, 0, 0, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7051, 83, 66, 86, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7052, 63, 86, 80, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7053, 0, 22, 56, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7054, 34, 89, 29, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7055, 48, 17, 55, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7056, 6, 0, 42, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7057, 30, 11, 28, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7058, 82, 72, 75, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7059, 49, 70, 102, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7060, 36, 46, 70, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7061, 3, 0, 44, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7062, 0, 100, 102, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7063, 26, 37, 75, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7064, 16, 14, 55, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7065, 67, 33, 96, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7066, 39, 79, 20, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7067, 0, 42, 76, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7068, 26, 62, 50, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7069, 112, 52, 82, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7070, 83, 18, 63, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7071, 79, 38, 83, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7072, 95, 9, 30, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7073, 52, 36, 77, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7074, 0, 60, 0, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7075, 16, 89, 0, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7076, 100, 13, 57, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7077, 109, 112, 107, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7078, 84, 86, 80, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7079, 96, 13, 53, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7080, 15, 90, 0, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7081, 56, 21, 61, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7082, 7, 76, 107, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7083, 39, 0, 53, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7084, 97, 0, 30, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7085, 94, 73, 81, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7086, 24, 0, 91, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7087, 88, 77, 0, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7088, 0, 66, 86, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7089, 9, 14, 29, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7090, 0, 86, 56, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7091, 39, 60, 2, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7092, 99, 74, 2, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7093, 73, 50, 97, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7094, 67, 0, 99, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7095, 98, 29, 16, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7096, 42, 41, 48, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7097, 7, 28, 107, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7098, 7, 28, 88, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7099, 73, 8, 49, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7100, 7, 46, 88, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7101, 34, 87, 29, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7102, 17, 42, 36, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7103, 70, 0, 13, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7104, 70, 33, 45, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7105, 13, 26, 71, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7106, 30, 42, 46, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7107, 99, 73, 16, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7108, 69, 3, 99, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7109, 26, 49, 75, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7110, 68, 64, 21, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7111, 59, 58, 29, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7112, 56, 63, 61, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7113, 80, 74, 26, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7114, 42, 10, 48, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7115, 68, 0, 60, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7116, 92, 0, 38, 4, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7117, 68, 62, 50, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7118, 80, 48, 34, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7119, 91, 63, 62, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7120, 99, 0, 34, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7121, 0, 72, 9, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7122, 69, 2, 13, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7123, 56, 82, 38, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7124, 82, 85, 63, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7125, 0, 51, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7126, 104, 55, 106, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7127, 63, 22, 80, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7128, 3, 89, 29, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7129, 0, 20, 86, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7130, 49, 96, 105, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7131, 85, 52, 83, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7132, 0, 26, 80, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7133, 77, 17, 69, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7134, 26, 49, 12, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7135, 17, 47, 22, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7136, 0, 94, 102, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7137, 17, 25, 28, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7138, 24, 46, 47, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7139, 0, 48, 64, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7140, 2, 87, 44, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7141, 25, 112, 88, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7142, 7, 46, 70, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7143, 0, 44, 60, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7144, 108, 99, 102, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7145, 33, 89, 65, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7146, 112, 38, 0, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7147, 2, 0, 44, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7148, 86, 60, 67, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7149, 60, 68, 98, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7150, 68, 53, 73, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7151, 104, 98, 105, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7152, 80, 79, 34, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7153, 0, 12, 41, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7154, 95, 74, 34, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7155, 108, 0, 106, 2, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7156, 64, 86, 82, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7157, 94, 79, 3, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7158, 65, 6, 24, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7159, 18, 52, 71, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7160, 35, 14, 69, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7161, 48, 87, 0, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7162, 100, 19, 26, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7163, 60, 2, 32, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7164, 94, 48, 67, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7165, 82, 0, 75, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7166, 0, 112, 107, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7167, 86, 40, 0, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7168, 98, 60, 18, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7169, 94, 31, 34, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7170, 96, 74, 30, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7171, 49, 99, 106, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7172, 80, 79, 3, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7173, 0, 29, 34, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7174, 39, 29, 53, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7175, 0, 52, 80, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7176, 67, 2, 98, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7177, 70, 3, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7178, 68, 66, 73, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7179, 0, 78, 29, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7180, 75, 102, 25, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7181, 91, 21, 62, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7182, 50, 99, 68, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7183, 52, 10, 4, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7184, 83, 81, 50, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7185, 19, 43, 46, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7186, 0, 105, 25, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7187, 0, 36, 6, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7188, 26, 81, 9, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7189, 105, 104, 19, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7190, 13, 67, 80, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7191, 26, 57, 63, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7192, 57, 38, 83, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7193, 88, 59, 0, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7194, 39, 60, 30, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7195, 26, 66, 21, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7196, 69, 54, 96, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7197, 60, 0, 13, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7198, 0, 82, 84, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7199, 38, 64, 60, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7200, 17, 0, 46, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7201, 52, 0, 43, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7202, 80, 73, 2, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7203, 82, 0, 21, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7204, 97, 32, 67, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7205, 64, 86, 83, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7206, 109, 27, 47, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7207, 69, 33, 99, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7208, 65, 43, 22, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7209, 67, 75, 45, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7210, 0, 19, 53, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7211, 94, 73, 18, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7212, 7, 112, 103, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7213, 99, 40, 2, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7214, 86, 13, 67, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7215, 32, 14, 44, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7216, 108, 94, 105, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7217, 100, 40, 8, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7218, 21, 105, 90, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7219, 2, 58, 69, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7220, 99, 73, 3, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7221, 32, 87, 65, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7222, 8, 72, 0, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7223, 4, 90, 69, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7224, 83, 62, 79, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7225, 0, 64, 9, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7226, 86, 19, 0, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7227, 39, 9, 64, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7228, 0, 19, 30, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7229, 0, 66, 9, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7230, 75, 39, 89, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7231, 84, 38, 56, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7232, 51, 26, 80, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7233, 0, 72, 86, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7234, 99, 0, 8, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7235, 0, 32, 53, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7236, 64, 0, 83, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7237, 39, 74, 30, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7238, 80, 13, 34, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7239, 26, 57, 12, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7240, 0, 27, 11, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7241, 80, 31, 67, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7242, 99, 32, 57, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7243, 0, 35, 73, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7244, 7, 27, 11, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7245, 54, 67, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7246, 0, 98, 68, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7247, 41, 86, 71, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7248, 39, 73, 20, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7249, 67, 33, 0, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7250, 97, 40, 20, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7251, 106, 104, 19, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7252, 0, 100, 101, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7253, 17, 11, 76, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7254, 107, 94, 105, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7255, 38, 62, 21, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7256, 92, 82, 85, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7257, 0, 51, 60, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7258, 51, 67, 80, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7259, 73, 16, 49, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7260, 80, 31, 3, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7261, 70, 8, 99, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7262, 36, 76, 104, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7263, 65, 71, 14, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7264, 80, 0, 26, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7265, 61, 52, 82, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7266, 106, 108, 31, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7267, 11, 36, 93, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7268, 82, 62, 0, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7269, 46, 39, 90, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7270, 68, 85, 73, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7271, 22, 0, 112, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7272, 38, 34, 73, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7273, 0, 96, 102, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7274, 70, 0, 98, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7275, 67, 8, 32, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7276, 30, 0, 24, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7277, 95, 73, 16, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7278, 46, 0, 89, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7279, 70, 54, 94, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7280, 80, 9, 18, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7281, 18, 52, 56, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7282, 107, 45, 54, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7283, 0, 28, 104, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7284, 0, 36, 4, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7285, 82, 0, 86, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7286, 8, 53, 79, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7287, 70, 75, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7288, 27, 0, 43, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7289, 69, 2, 99, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7290, 0, 71, 36, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7291, 66, 22, 82, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7292, 85, 38, 0, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7293, 63, 26, 82, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7294, 69, 2, 49, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7295, 40, 22, 82, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7296, 6, 0, 11, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7297, 87, 54, 96, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7298, 94, 29, 35, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7299, 15, 14, 69, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7300, 97, 32, 64, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7301, 39, 40, 81, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7302, 4, 78, 44, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7303, 73, 2, 100, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7304, 82, 66, 40, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7305, 0, 32, 57, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7306, 73, 54, 45, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7307, 108, 100, 0, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7308, 39, 31, 3, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7309, 106, 80, 39, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7310, 8, 66, 79, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7311, 87, 2, 100, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7312, 72, 0, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7313, 68, 35, 9, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7314, 16, 14, 65, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7315, 46, 39, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7316, 86, 32, 64, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7317, 8, 37, 21, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7318, 67, 8, 95, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7319, 17, 47, 10, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7320, 87, 50, 49, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7321, 8, 72, 60, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7322, 46, 88, 25, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7323, 19, 71, 5, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7324, 96, 48, 57, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7325, 33, 90, 69, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7326, 33, 90, 65, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7327, 7, 0, 88, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7328, 38, 51, 75, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7329, 0, 69, 101, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7330, 8, 57, 9, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7331, 0, 0, 92, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7332, 19, 42, 46, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7333, 106, 109, 19, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7334, 68, 20, 9, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7335, 90, 65, 78, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7336, 96, 48, 64, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7337, 17, 47, 52, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7338, 74, 0, 0, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7339, 70, 16, 49, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7340, 72, 22, 56, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7341, 0, 43, 74, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7342, 51, 26, 71, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7343, 55, 0, 96, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7344, 87, 3, 32, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7345, 38, 20, 0, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7346, 3, 90, 55, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7347, 69, 16, 32, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7348, 97, 13, 3, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7349, 97, 9, 2, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7350, 67, 0, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7351, 25, 112, 42, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7352, 26, 20, 50, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7353, 8, 20, 50, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7354, 69, 33, 94, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7355, 30, 42, 0, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7356, 82, 20, 50, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7357, 50, 96, 54, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7358, 6, 27, 88, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7359, 62, 22, 56, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7360, 56, 21, 85, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7361, 108, 94, 102, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7362, 100, 31, 8, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7363, 85, 86, 82, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7364, 8, 56, 40, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7365, 36, 0, 91, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7366, 96, 73, 18, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7367, 0, 25, 52, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7368, 83, 49, 9, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7369, 60, 68, 45, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7370, 76, 41, 4, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7371, 86, 32, 16, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7372, 91, 0, 37, 4, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7373, 3, 58, 65, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7374, 73, 54, 99, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7375, 51, 86, 82, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7376, 77, 58, 69, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7377, 58, 7, 90, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7378, 21, 24, 89, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7379, 94, 19, 20, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7380, 55, 8, 49, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7381, 80, 32, 57, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7382, 73, 75, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7383, 50, 99, 105, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7384, 99, 13, 2, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7385, 94, 40, 26, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7386, 83, 62, 0, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7387, 39, 40, 67, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7388, 108, 95, 54, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7389, 0, 0, 19, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7390, 22, 10, 51, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7391, 93, 0, 92, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7392, 0, 74, 64, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7393, 73, 54, 94, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7394, 99, 13, 57, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7395, 105, 103, 0, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7396, 67, 75, 32, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7397, 60, 0, 96, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7398, 63, 0, 82, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7399, 99, 60, 57, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7400, 0, 61, 51, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7401, 98, 29, 2, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7402, 33, 89, 69, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7403, 95, 48, 18, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7404, 96, 79, 18, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7405, 26, 44, 73, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7406, 63, 38, 71, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7407, 22, 61, 4, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7408, 103, 55, 54, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7409, 93, 76, 92, 2, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7410, 4, 87, 69, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7411, 86, 74, 35, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7412, 94, 19, 8, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7413, 98, 48, 67, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7414, 98, 31, 8, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7415, 99, 9, 67, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7416, 87, 54, 32, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7417, 26, 18, 9, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7418, 69, 8, 98, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7419, 82, 66, 12, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7420, 32, 0, 29, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7421, 68, 64, 79, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7422, 38, 37, 60, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7423, 44, 0, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7424, 17, 47, 28, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7425, 55, 75, 99, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7426, 82, 49, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7427, 10, 0, 82, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7428, 65, 71, 7, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7429, 98, 0, 64, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7430, 87, 68, 97, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7431, 0, 6, 22, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7432, 33, 14, 55, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7433, 0, 32, 18, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7434, 53, 52, 56, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7435, 68, 57, 79, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7436, 94, 48, 57, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7437, 58, 88, 25, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7438, 0, 46, 108, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7439, 69, 54, 49, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7440, 100, 79, 35, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7441, 70, 16, 95, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7442, 107, 70, 102, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7443, 69, 75, 32, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7444, 104, 69, 101, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7445, 99, 32, 26, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7446, 95, 74, 64, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7447, 76, 36, 15, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7448, 6, 46, 70, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7449, 87, 33, 97, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7450, 96, 73, 53, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7451, 8, 62, 63, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7452, 28, 0, 87, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7453, 81, 0, 71, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7454, 17, 42, 24, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7455, 46, 88, 87, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7456, 7, 0, 103, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7457, 70, 68, 13, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7458, 26, 35, 73, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7459, 71, 0, 4, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7460, 39, 13, 53, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7461, 31, 38, 71, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7462, 105, 0, 66, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7463, 47, 61, 51, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7464, 13, 26, 82, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7465, 0, 10, 4, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7466, 74, 0, 29, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7467, 66, 52, 0, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7468, 87, 54, 45, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7469, 39, 32, 67, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7470, 68, 37, 40, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7471, 94, 9, 0, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7472, 40, 86, 0, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7473, 36, 0, 70, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7474, 94, 29, 64, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7475, 74, 14, 29, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7476, 24, 28, 88, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7477, 73, 0, 96, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7478, 16, 17, 44, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7479, 38, 35, 75, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7480, 20, 22, 56, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7481, 73, 2, 99, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7482, 71, 61, 0, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7483, 13, 22, 82, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7484, 103, 0, 54, 2, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7485, 62, 0, 82, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7486, 87, 75, 0, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7487, 15, 89, 55, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7488, 69, 75, 97, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7489, 0, 78, 0, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7490, 34, 17, 44, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7491, 104, 69, 102, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7492, 71, 36, 15, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7493, 82, 34, 12, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7494, 55, 68, 32, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7495, 73, 68, 96, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7496, 75, 105, 87, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7497, 75, 92, 25, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7498, 47, 61, 15, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7499, 96, 0, 18, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7500, 103, 70, 105, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7501, 108, 70, 105, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7502, 82, 53, 63, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7503, 26, 53, 12, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7504, 94, 0, 30, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7505, 0, 83, 85, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7506, 30, 71, 27, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7507, 82, 49, 60, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7508, 27, 10, 93, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7509, 86, 13, 30, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7510, 54, 86, 83, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7511, 77, 17, 65, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7512, 0, 75, 94, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7513, 104, 45, 102, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7514, 19, 47, 5, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7515, 94, 60, 3, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7516, 52, 41, 77, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7517, 65, 43, 74, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7518, 104, 97, 0, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7519, 85, 38, 56, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7520, 94, 0, 2, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7521, 20, 67, 56, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7522, 100, 9, 20, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7523, 55, 16, 100, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7524, 56, 0, 61, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7525, 48, 87, 55, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7526, 0, 32, 67, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7527, 6, 46, 107, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7528, 41, 22, 82, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7529, 96, 13, 57, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7530, 20, 26, 71, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7531, 19, 6, 74, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7532, 8, 64, 21, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7533, 72, 52, 0, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7534, 97, 74, 57, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7535, 26, 66, 0, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7536, 50, 70, 101, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7537, 8, 66, 60, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7538, 54, 26, 71, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7539, 77, 78, 44, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7540, 103, 45, 68, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7541, 98, 13, 81, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7542, 8, 81, 50, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7543, 86, 40, 30, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7544, 94, 19, 0, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7545, 35, 90, 55, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7546, 100, 40, 3, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7547, 72, 38, 0, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7548, 69, 3, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7549, 73, 68, 100, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7550, 100, 74, 53, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7551, 38, 44, 21, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7552, 22, 36, 72, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7553, 38, 56, 86, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7554, 78, 46, 88, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7555, 94, 73, 26, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7556, 31, 26, 0, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7557, 72, 67, 80, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7558, 93, 46, 42, 2, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7559, 0, 10, 48, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7560, 39, 31, 53, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7561, 109, 46, 0, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7562, 67, 54, 95, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7563, 51, 38, 83, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7564, 83, 57, 63, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7565, 26, 53, 60, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7566, 92, 21, 37, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7567, 99, 73, 53, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7568, 65, 6, 46, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7569, 26, 72, 63, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7570, 38, 0, 50, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7571, 94, 32, 0, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7572, 69, 0, 45, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7573, 38, 62, 73, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7574, 37, 38, 80, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7575, 80, 60, 2, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7576, 94, 0, 81, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7577, 37, 0, 56, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7578, 55, 16, 99, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7579, 53, 26, 0, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7580, 97, 19, 53, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7581, 36, 76, 0, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7582, 84, 52, 83, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7583, 27, 41, 93, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7584, 79, 52, 80, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7585, 82, 66, 63, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7586, 95, 73, 67, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7587, 0, 9, 0, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7588, 19, 11, 33, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7589, 95, 31, 2, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7590, 12, 0, 69, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7591, 95, 13, 64, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7592, 82, 62, 73, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7593, 0, 98, 101, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7594, 84, 86, 71, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7595, 90, 59, 78, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7596, 0, 51, 86, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7597, 85, 67, 82, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7598, 68, 64, 50, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7599, 24, 27, 0, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7600, 0, 100, 0, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7601, 59, 90, 55, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7602, 67, 54, 97, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7603, 73, 75, 97, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7604, 100, 40, 2, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7605, 95, 79, 20, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7606, 95, 79, 64, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7607, 30, 11, 33, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7608, 42, 61, 4, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7609, 15, 0, 69, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7610, 32, 0, 69, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7611, 95, 74, 0, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7612, 70, 3, 13, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7613, 39, 60, 16, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7614, 63, 22, 0, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7615, 0, 43, 52, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7616, 69, 8, 100, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7617, 75, 92, 0, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7618, 65, 43, 28, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7619, 101, 0, 39, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7620, 9, 0, 44, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7621, 64, 26, 71, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7622, 109, 112, 47, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7623, 0, 93, 66, 2, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7624, 102, 104, 39, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7625, 39, 31, 16, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7626, 83, 66, 79, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7627, 107, 99, 54, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7628, 30, 6, 10, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7629, 70, 16, 45, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7630, 4, 0, 65, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7631, 73, 91, 100, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7632, 26, 85, 73, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7633, 17, 11, 33, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7634, 97, 0, 3, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7635, 30, 47, 28, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7636, 75, 24, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7637, 95, 40, 81, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7638, 98, 74, 30, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7639, 0, 17, 69, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7640, 73, 50, 94, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7641, 38, 64, 21, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7642, 47, 41, 51, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7643, 102, 30, 31, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7644, 0, 11, 22, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7645, 52, 36, 112, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7646, 98, 40, 26, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7647, 28, 24, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7648, 26, 66, 86, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7649, 31, 0, 56, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7650, 95, 73, 2, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7651, 97, 9, 81, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7652, 11, 10, 0, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7653, 80, 13, 35, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7654, 99, 9, 16, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7655, 38, 66, 21, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7656, 44, 22, 83, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7657, 82, 20, 40, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7658, 0, 31, 35, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7659, 48, 17, 65, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7660, 87, 68, 96, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7661, 0, 92, 0, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7662, 49, 94, 54, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7663, 70, 91, 98, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7664, 26, 85, 75, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7665, 39, 32, 20, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7666, 0, 9, 67, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7667, 97, 31, 2, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7668, 112, 0, 82, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7669, 100, 29, 34, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7670, 60, 50, 100, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7671, 19, 25, 36, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7672, 95, 29, 81, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7673, 10, 26, 83, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7674, 47, 36, 72, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7675, 97, 60, 18, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7676, 0, 19, 3, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7677, 6, 112, 108, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7678, 80, 19, 2, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7679, 80, 48, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7680, 80, 73, 30, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7681, 87, 2, 32, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7682, 25, 46, 107, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7683, 80, 31, 20, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7684, 30, 6, 5, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7685, 25, 27, 70, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7686, 68, 53, 40, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7687, 7, 46, 108, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7688, 59, 89, 69, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7689, 0, 75, 96, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7690, 98, 29, 0, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7691, 0, 107, 19, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7692, 100, 13, 34, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7693, 83, 0, 75, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7694, 39, 29, 20, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7695, 103, 45, 0, 2, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7696, 63, 26, 80, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7697, 11, 41, 15, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7698, 39, 32, 53, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7699, 22, 61, 112, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7700, 0, 24, 25, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7701, 75, 88, 87, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7702, 58, 101, 25, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7703, 80, 73, 53, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7704, 17, 0, 7, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7705, 40, 52, 0, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7706, 69, 54, 94, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7707, 39, 40, 64, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7708, 42, 0, 15, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7709, 80, 48, 57, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7710, 66, 38, 71, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7711, 0, 7, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7712, 55, 50, 49, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7713, 104, 55, 102, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7714, 104, 95, 101, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7715, 0, 33, 96, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7716, 44, 52, 82, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7717, 25, 76, 107, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7718, 77, 14, 0, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7719, 4, 87, 44, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7720, 68, 20, 75, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7721, 95, 13, 67, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7722, 82, 20, 73, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7723, 28, 92, 90, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7724, 5, 17, 44, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7725, 39, 13, 30, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7726, 98, 60, 2, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7727, 55, 68, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7728, 96, 9, 57, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7729, 38, 84, 40, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7730, 83, 57, 40, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7731, 75, 106, 25, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7732, 53, 26, 82, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7733, 99, 29, 20, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7734, 104, 99, 106, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7735, 55, 91, 94, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7736, 83, 62, 73, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7737, 20, 26, 56, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7738, 86, 29, 81, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7739, 97, 0, 18, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7740, 44, 52, 83, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7741, 0, 0, 34, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7742, 0, 48, 26, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7743, 14, 12, 41, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7744, 26, 62, 21, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7745, 65, 25, 10, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7746, 0, 75, 45, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7747, 68, 84, 12, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7748, 75, 92, 90, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7749, 77, 89, 55, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7750, 67, 8, 96, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7751, 86, 48, 67, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7752, 95, 32, 57, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7753, 87, 0, 100, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7754, 0, 11, 24, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7755, 65, 47, 0, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7756, 95, 48, 26, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7757, 63, 52, 71, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7758, 0, 106, 0, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7759, 8, 20, 60, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7760, 0, 84, 63, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7761, 98, 60, 53, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7762, 0, 35, 50, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7763, 0, 61, 6, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7764, 85, 86, 0, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7765, 112, 26, 82, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7766, 19, 0, 52, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7767, 102, 103, 19, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7768, 26, 53, 9, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7769, 30, 11, 5, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7770, 80, 9, 53, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7771, 86, 74, 81, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7772, 83, 72, 86, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7773, 95, 79, 57, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7774, 67, 2, 97, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7775, 83, 53, 73, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7776, 109, 28, 103, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7777, 0, 100, 106, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7778, 103, 94, 101, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7779, 96, 0, 67, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7780, 52, 10, 72, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7781, 17, 6, 59, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7782, 30, 11, 27, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7783, 103, 94, 0, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7784, 78, 46, 91, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7785, 97, 73, 3, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7786, 86, 13, 3, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7787, 27, 41, 109, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7788, 60, 54, 97, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7789, 73, 3, 32, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7790, 86, 29, 20, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7791, 49, 55, 101, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7792, 61, 86, 83, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7793, 55, 16, 49, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7794, 26, 57, 86, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7795, 0, 53, 40, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7796, 55, 33, 98, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7797, 55, 91, 49, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7798, 99, 0, 0, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7799, 108, 100, 54, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7800, 69, 16, 96, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7801, 95, 9, 57, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7802, 39, 29, 64, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7803, 69, 68, 97, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7804, 21, 102, 87, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7805, 39, 31, 20, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7806, 109, 76, 11, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7807, 97, 32, 8, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7808, 98, 32, 64, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7809, 80, 60, 26, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7810, 0, 73, 0, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7811, 95, 40, 57, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7812, 78, 0, 47, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7813, 0, 6, 28, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7814, 51, 67, 71, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7815, 69, 91, 100, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7816, 77, 14, 65, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7817, 98, 9, 8, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7818, 43, 67, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7819, 30, 6, 0, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7820, 76, 36, 48, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7821, 0, 72, 40, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7822, 65, 25, 59, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7823, 46, 105, 89, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7824, 98, 29, 67, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7825, 94, 74, 16, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7826, 48, 14, 29, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7827, 17, 43, 33, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7828, 47, 61, 77, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7829, 97, 13, 57, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7830, 97, 74, 26, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7831, 83, 81, 21, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7832, 98, 31, 81, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7833, 0, 69, 0, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7834, 103, 97, 101, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7835, 8, 18, 50, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7836, 100, 40, 64, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7837, 0, 90, 69, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7838, 69, 68, 96, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7839, 0, 112, 70, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7840, 94, 40, 0, 2, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7841, 59, 17, 55, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7842, 26, 20, 40, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7843, 70, 33, 98, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7844, 7, 28, 42, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7845, 43, 38, 80, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7846, 86, 13, 64, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7847, 65, 0, 10, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7848, 32, 14, 69, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7849, 87, 0, 95, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7850, 82, 51, 86, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7851, 0, 57, 12, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7852, 86, 73, 16, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7853, 109, 46, 107, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7854, 46, 88, 89, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7855, 57, 52, 82, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7856, 3, 0, 69, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7857, 74, 78, 29, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7858, 86, 79, 64, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7859, 32, 58, 65, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7860, 86, 0, 8, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7861, 2, 89, 29, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7862, 0, 18, 73, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7863, 38, 66, 73, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7864, 78, 27, 70, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7865, 37, 86, 0, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7866, 0, 51, 75, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7867, 97, 13, 8, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7868, 17, 11, 27, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7869, 39, 48, 8, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7870, 83, 66, 9, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7871, 68, 18, 12, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7872, 96, 60, 3, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7873, 67, 16, 97, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7874, 8, 0, 21, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7875, 0, 79, 18, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7876, 29, 0, 0, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7877, 48, 14, 65, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7878, 50, 70, 68, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7879, 0, 0, 64, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7880, 94, 79, 0, 2, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7881, 70, 68, 98, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7882, 22, 0, 72, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7883, 20, 86, 80, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7884, 80, 48, 35, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7885, 37, 22, 56, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7886, 0, 0, 41, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7887, 31, 52, 80, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7888, 96, 13, 2, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7889, 104, 99, 68, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7890, 0, 89, 69, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7891, 24, 112, 92, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7892, 60, 0, 97, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7893, 17, 47, 24, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7894, 58, 105, 89, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7895, 97, 31, 53, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7896, 4, 89, 0, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7897, 28, 106, 87, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7898, 6, 27, 42, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7899, 39, 60, 26, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7900, 80, 9, 30, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7901, 75, 102, 90, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7902, 102, 103, 66, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7903, 100, 60, 57, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7904, 98, 40, 57, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7905, 80, 9, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7906, 96, 0, 8, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7907, 18, 38, 80, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7908, 81, 22, 56, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7909, 70, 50, 96, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7910, 10, 0, 71, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7911, 99, 79, 18, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7912, 36, 27, 0, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7913, 97, 79, 0, 2, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7914, 103, 95, 106, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7915, 65, 11, 24, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7916, 104, 95, 54, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7917, 46, 92, 25, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7918, 19, 47, 7, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7919, 40, 0, 82, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7920, 95, 29, 34, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7921, 30, 25, 28, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7922, 0, 48, 30, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7923, 103, 94, 54, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7924, 39, 48, 64, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7925, 39, 48, 26, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7926, 103, 99, 105, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7927, 98, 29, 64, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7928, 28, 39, 25, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7929, 26, 53, 73, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7930, 36, 0, 92, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7931, 80, 31, 16, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7932, 0, 5, 17, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7933, 83, 56, 9, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7934, 0, 56, 79, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7935, 25, 0, 107, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7936, 108, 100, 106, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7937, 60, 16, 45, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7938, 48, 90, 69, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7939, 65, 0, 22, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7940, 104, 69, 68, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7941, 34, 14, 44, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7942, 51, 0, 56, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7943, 30, 0, 46, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7944, 28, 7, 25, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7945, 68, 35, 60, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7946, 83, 37, 21, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7947, 0, 54, 49, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7948, 99, 0, 26, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7949, 93, 112, 103, 2, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7950, 87, 2, 97, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7951, 0, 34, 9, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7952, 93, 28, 70, 2, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7953, 60, 3, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7954, 82, 84, 21, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7955, 100, 48, 34, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7956, 25, 46, 88, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7957, 0, 4, 0, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7958, 0, 43, 5, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7959, 98, 74, 0, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7960, 17, 6, 14, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7961, 38, 81, 86, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7962, 35, 17, 65, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7963, 74, 58, 69, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7964, 95, 79, 2, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7965, 82, 56, 40, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7966, 80, 60, 16, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7967, 80, 48, 67, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7968, 32, 58, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7969, 74, 0, 55, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7970, 80, 9, 20, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7971, 9, 17, 0, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7972, 100, 9, 0, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7973, 68, 34, 75, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7974, 73, 68, 97, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7975, 30, 11, 76, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7976, 12, 17, 65, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7977, 86, 13, 57, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7978, 98, 19, 57, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7979, 8, 53, 73, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7980, 68, 44, 73, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7981, 38, 72, 50, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7982, 35, 14, 55, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7983, 96, 32, 8, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7984, 75, 24, 90, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (7985, 38, 85, 86, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7986, 0, 42, 14, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7987, 60, 16, 32, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7988, 11, 36, 4, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7989, 0, 52, 82, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7990, 86, 32, 26, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7991, 80, 79, 16, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7992, 80, 48, 81, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7993, 83, 57, 21, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7994, 33, 0, 44, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7995, 83, 62, 60, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7996, 82, 81, 9, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7997, 100, 73, 53, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (7998, 83, 37, 79, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (7999, 86, 74, 34, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8000, 0, 104, 0, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8001, 5, 0, 29, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8002, 58, 0, 25, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8003, 11, 61, 4, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8004, 17, 42, 14, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8005, 59, 14, 0, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8006, 0, 14, 44, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8007, 75, 106, 0, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8008, 86, 74, 16, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8009, 77, 87, 44, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8010, 0, 0, 88, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8011, 0, 79, 0, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8012, 0, 49, 50, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8013, 67, 54, 94, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8014, 99, 13, 30, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8015, 99, 74, 64, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8016, 92, 21, 61, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8017, 8, 53, 60, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8018, 0, 6, 74, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8019, 72, 0, 71, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8020, 65, 0, 52, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8021, 104, 99, 105, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8022, 96, 40, 8, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8023, 94, 73, 34, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8024, 19, 11, 7, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8025, 0, 60, 64, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8026, 80, 48, 26, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8027, 80, 60, 34, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8028, 39, 9, 18, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8029, 0, 0, 108, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8030, 93, 28, 42, 2, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8031, 75, 39, 87, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8032, 27, 10, 77, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8033, 87, 91, 13, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8034, 65, 11, 36, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8035, 41, 38, 83, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8036, 28, 105, 90, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8037, 93, 28, 47, 2, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8038, 47, 41, 4, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8039, 39, 48, 18, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8040, 83, 35, 21, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8041, 101, 108, 31, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8042, 20, 67, 82, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8043, 109, 0, 0, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8044, 3, 78, 44, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8045, 96, 48, 30, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8046, 26, 72, 60, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8047, 98, 0, 8, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8048, 47, 41, 15, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8049, 100, 79, 16, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8050, 26, 81, 60, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8051, 0, 25, 24, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8052, 83, 20, 75, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8053, 0, 43, 7, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8054, 86, 29, 30, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8055, 39, 79, 34, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8056, 102, 80, 0, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8057, 38, 37, 21, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8058, 100, 29, 64, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8059, 80, 13, 64, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8060, 100, 32, 26, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8061, 109, 0, 103, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8062, 103, 99, 106, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8063, 26, 81, 75, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8064, 0, 0, 55, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8065, 0, 7, 87, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8066, 87, 33, 13, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8067, 0, 63, 85, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8068, 109, 0, 108, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8069, 76, 0, 4, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8070, 105, 30, 31, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8071, 36, 112, 91, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8072, 96, 60, 64, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8073, 0, 75, 32, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8074, 85, 0, 80, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8075, 80, 0, 53, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8076, 39, 74, 8, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8077, 60, 2, 0, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8078, 34, 89, 69, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8079, 68, 0, 86, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8080, 49, 55, 106, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8081, 68, 35, 12, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8082, 0, 60, 20, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8083, 92, 63, 85, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8084, 98, 19, 26, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8085, 73, 75, 49, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8086, 0, 99, 102, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8087, 0, 16, 13, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8088, 38, 34, 63, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8089, 39, 32, 26, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8090, 58, 92, 0, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8091, 84, 22, 83, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8092, 55, 0, 94, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8093, 100, 29, 81, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8094, 38, 62, 12, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8095, 25, 112, 70, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8096, 12, 78, 55, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8097, 97, 48, 64, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8098, 17, 6, 46, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8099, 83, 35, 79, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8100, 88, 12, 0, 4, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8101, 67, 8, 49, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8102, 106, 80, 31, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8103, 0, 56, 40, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8104, 106, 30, 66, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8105, 112, 52, 0, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8106, 0, 90, 55, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8107, 59, 17, 29, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8108, 4, 17, 69, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8109, 22, 0, 4, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8110, 25, 112, 91, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8111, 82, 66, 60, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8112, 82, 62, 79, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8113, 72, 22, 82, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8114, 95, 13, 0, 4, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8115, 28, 0, 25, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8116, 83, 72, 9, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8117, 11, 41, 112, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8118, 25, 28, 88, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8119, 80, 73, 81, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8120, 60, 54, 0, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8121, 99, 40, 34, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8122, 19, 71, 46, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8123, 56, 63, 85, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8124, 94, 79, 18, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8125, 30, 25, 46, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8126, 97, 79, 34, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8127, 68, 56, 0, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8128, 65, 42, 24, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8129, 62, 52, 83, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8130, 57, 26, 80, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8131, 79, 0, 82, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8132, 101, 80, 19, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8133, 87, 8, 95, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8134, 86, 32, 18, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8135, 55, 68, 95, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8136, 91, 63, 84, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8137, 82, 57, 21, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8138, 31, 86, 80, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8139, 96, 19, 64, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8140, 65, 42, 0, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8141, 26, 72, 86, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8142, 97, 19, 67, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8143, 95, 31, 35, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8144, 109, 0, 107, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8145, 0, 42, 7, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8146, 26, 44, 63, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8147, 94, 73, 30, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8148, 95, 60, 53, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8149, 52, 61, 51, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8150, 105, 93, 31, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8151, 10, 0, 80, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8152, 87, 16, 94, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8153, 96, 31, 0, 4, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8154, 97, 32, 53, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8155, 26, 37, 12, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8156, 31, 38, 83, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8157, 68, 72, 9, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8158, 0, 18, 86, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8159, 0, 50, 45, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8160, 65, 6, 10, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8161, 37, 52, 56, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8162, 0, 8, 99, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8163, 25, 27, 107, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8164, 68, 18, 86, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8165, 0, 112, 104, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8166, 94, 0, 67, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8167, 65, 71, 36, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8168, 100, 79, 20, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8169, 65, 0, 28, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8170, 0, 25, 46, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8171, 65, 0, 24, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8172, 62, 26, 71, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8173, 82, 56, 12, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8174, 8, 64, 0, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8175, 101, 103, 19, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8176, 27, 0, 93, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8177, 93, 0, 70, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8178, 76, 36, 77, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8179, 53, 38, 82, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8180, 68, 20, 0, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8181, 32, 17, 29, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8182, 0, 55, 0, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8183, 80, 31, 18, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8184, 80, 73, 67, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8185, 21, 102, 0, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8186, 70, 54, 96, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8187, 83, 81, 12, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8188, 96, 9, 20, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8189, 30, 25, 14, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8190, 0, 59, 58, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8191, 93, 46, 47, 2, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8192, 44, 22, 71, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8193, 15, 14, 29, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8194, 83, 20, 9, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8195, 8, 64, 9, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8196, 6, 0, 104, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8197, 32, 87, 29, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8198, 46, 92, 90, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8199, 98, 32, 34, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8200, 0, 41, 43, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8201, 58, 7, 87, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8202, 40, 22, 83, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8203, 0, 101, 0, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8204, 86, 29, 67, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8205, 38, 0, 75, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8206, 51, 86, 56, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8207, 53, 38, 0, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8208, 53, 26, 80, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8209, 97, 74, 30, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8210, 112, 52, 71, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8211, 82, 44, 75, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8212, 36, 112, 108, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8213, 6, 0, 91, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8214, 32, 90, 69, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8215, 94, 0, 35, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8216, 0, 51, 50, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8217, 97, 9, 30, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8218, 94, 13, 53, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8219, 39, 29, 18, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8220, 97, 60, 26, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8221, 17, 71, 14, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8222, 95, 73, 34, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8223, 0, 0, 16, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8224, 96, 74, 0, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8225, 86, 60, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8226, 99, 9, 2, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8227, 83, 44, 0, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8228, 103, 97, 106, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8229, 95, 9, 20, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8230, 100, 13, 2, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8231, 65, 6, 52, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8232, 24, 28, 47, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8233, 6, 28, 11, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8234, 0, 72, 60, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8235, 75, 105, 90, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8236, 99, 9, 35, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8237, 99, 60, 16, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8238, 73, 91, 98, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8239, 3, 14, 29, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8240, 95, 19, 30, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8241, 24, 0, 103, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8242, 10, 67, 82, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8243, 21, 0, 90, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8244, 52, 61, 6, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8245, 12, 58, 29, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8246, 0, 69, 54, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8247, 97, 29, 34, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8248, 0, 0, 112, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8249, 0, 56, 86, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8250, 55, 50, 32, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8251, 60, 16, 49, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8252, 44, 67, 80, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8253, 95, 13, 3, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8254, 17, 42, 76, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8255, 4, 89, 55, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8256, 3, 89, 0, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8257, 39, 74, 64, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8258, 0, 0, 5, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8259, 98, 74, 16, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8260, 101, 108, 19, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8261, 79, 0, 56, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8262, 0, 48, 16, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8263, 15, 78, 44, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8264, 47, 0, 51, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8265, 79, 22, 80, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8266, 97, 40, 8, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8267, 96, 32, 64, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8268, 0, 45, 106, 2, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8269, 76, 0, 72, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8270, 96, 9, 53, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8271, 68, 84, 63, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8272, 39, 29, 81, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8273, 96, 0, 3, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8274, 0, 18, 12, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8275, 68, 84, 60, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8276, 30, 6, 74, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8277, 96, 32, 18, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8278, 99, 40, 81, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8279, 73, 75, 94, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8280, 60, 75, 49, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8281, 50, 100, 102, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8282, 30, 6, 22, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8283, 0, 62, 12, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8284, 22, 10, 4, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8285, 38, 51, 40, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8286, 100, 9, 64, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8287, 68, 84, 50, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8288, 24, 76, 11, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8289, 73, 8, 96, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8290, 96, 19, 0, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8291, 83, 56, 40, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8292, 99, 40, 30, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8293, 93, 0, 107, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8294, 42, 0, 0, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8295, 12, 0, 29, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8296, 80, 0, 67, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8297, 0, 6, 52, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8298, 109, 46, 92, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8299, 73, 91, 45, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8300, 80, 32, 18, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8301, 39, 32, 30, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8302, 30, 11, 14, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8303, 6, 46, 108, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8304, 0, 36, 0, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8305, 100, 0, 0, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8306, 89, 0, 17, 4, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8307, 64, 52, 82, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8308, 100, 73, 0, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8309, 47, 41, 109, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8310, 76, 0, 93, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8311, 68, 35, 86, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8312, 17, 25, 7, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8313, 97, 60, 2, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8314, 26, 18, 79, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8315, 42, 41, 51, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8316, 94, 48, 16, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8317, 82, 37, 50, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8318, 112, 67, 80, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8319, 13, 67, 83, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8320, 102, 108, 66, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8321, 80, 19, 26, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8322, 82, 81, 75, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8323, 95, 13, 2, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8324, 18, 38, 82, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8325, 98, 13, 26, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8326, 67, 8, 13, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8327, 103, 98, 101, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8328, 95, 32, 35, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8329, 87, 16, 95, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8330, 96, 73, 16, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8331, 14, 65, 17, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8332, 98, 31, 30, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8333, 70, 54, 98, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8334, 0, 21, 62, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8335, 39, 31, 30, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8336, 99, 40, 20, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8337, 83, 81, 73, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8338, 57, 67, 83, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8339, 0, 97, 68, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8340, 96, 13, 16, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8341, 38, 49, 79, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8342, 83, 85, 50, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8343, 46, 39, 87, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8344, 13, 38, 82, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8345, 82, 34, 50, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8346, 67, 50, 13, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8347, 57, 22, 80, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8348, 67, 91, 98, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8349, 85, 52, 0, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8350, 87, 68, 99, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8351, 30, 43, 46, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8352, 39, 32, 35, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8353, 16, 17, 69, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8354, 10, 67, 71, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8355, 86, 60, 8, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8356, 75, 7, 0, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8357, 55, 75, 49, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8358, 39, 13, 35, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8359, 28, 24, 90, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8360, 39, 9, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8361, 82, 66, 21, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8362, 20, 86, 56, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8363, 95, 60, 20, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8364, 60, 0, 94, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8365, 62, 22, 71, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8366, 87, 8, 13, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8367, 8, 84, 0, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8368, 99, 9, 34, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8369, 100, 9, 81, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8370, 90, 5, 41, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8371, 55, 75, 97, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8372, 6, 76, 108, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8373, 83, 0, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8374, 84, 26, 82, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8375, 70, 8, 100, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8376, 25, 27, 92, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8377, 78, 27, 104, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8378, 55, 0, 100, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8379, 100, 40, 0, 2, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8380, 55, 8, 100, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8381, 47, 0, 6, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8382, 24, 112, 103, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8383, 18, 52, 80, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8384, 100, 74, 57, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8385, 108, 94, 0, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8386, 83, 84, 60, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8387, 24, 46, 11, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8388, 100, 32, 3, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8389, 0, 73, 2, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8390, 0, 43, 36, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8391, 0, 16, 94, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8392, 19, 25, 22, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8393, 83, 35, 86, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8394, 91, 0, 38, 4, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8395, 82, 37, 40, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8396, 26, 56, 9, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8397, 75, 88, 89, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8398, 86, 79, 2, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8399, 61, 26, 83, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8400, 108, 100, 101, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8401, 49, 0, 68, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8402, 83, 44, 86, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8403, 55, 0, 49, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8404, 59, 58, 69, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8405, 97, 79, 67, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8406, 94, 48, 2, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8407, 26, 85, 50, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8408, 55, 75, 45, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8409, 86, 74, 64, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8410, 17, 25, 22, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8411, 84, 38, 0, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8412, 67, 16, 0, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8413, 68, 53, 79, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8414, 0, 71, 10, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8415, 69, 91, 95, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8416, 5, 0, 0, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8417, 82, 51, 0, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8418, 80, 60, 3, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8419, 18, 67, 71, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8420, 6, 28, 70, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8421, 50, 98, 101, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8422, 99, 73, 64, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8423, 0, 31, 2, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8424, 38, 35, 86, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8425, 99, 40, 67, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8426, 68, 49, 86, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8427, 25, 28, 92, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8428, 0, 75, 99, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8429, 22, 41, 4, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8430, 0, 80, 0, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8431, 65, 25, 24, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8432, 39, 9, 16, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8433, 28, 101, 89, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8434, 95, 19, 81, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8435, 89, 4, 0, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8436, 19, 43, 24, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8437, 68, 37, 75, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8438, 106, 107, 39, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8439, 87, 91, 98, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8440, 0, 37, 9, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8441, 39, 73, 16, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8442, 44, 22, 82, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8443, 9, 58, 65, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8444, 68, 62, 0, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8445, 82, 53, 73, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8446, 39, 29, 35, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8447, 46, 106, 87, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8448, 99, 60, 34, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8449, 17, 25, 46, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8450, 18, 26, 82, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8451, 83, 81, 79, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8452, 39, 19, 64, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8453, 35, 89, 0, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8454, 11, 0, 6, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8455, 97, 19, 64, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8456, 7, 112, 42, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8457, 87, 3, 95, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8458, 55, 68, 94, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8459, 49, 99, 68, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8460, 99, 73, 34, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8461, 107, 98, 102, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8462, 39, 73, 18, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8463, 65, 71, 10, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8464, 68, 85, 9, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8465, 19, 25, 27, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8466, 95, 79, 53, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8467, 77, 87, 0, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8468, 99, 32, 30, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8469, 24, 28, 92, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8470, 98, 32, 20, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8471, 94, 31, 57, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8472, 86, 74, 3, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8473, 48, 58, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8474, 100, 40, 20, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8475, 60, 50, 94, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8476, 53, 67, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8477, 80, 73, 35, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8478, 99, 31, 35, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8479, 29, 80, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8480, 98, 31, 0, 4, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8481, 99, 9, 26, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8482, 94, 31, 67, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8483, 107, 96, 102, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8484, 0, 61, 43, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8485, 33, 90, 0, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8486, 32, 58, 29, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8487, 43, 52, 80, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8488, 61, 26, 82, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8489, 50, 97, 105, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8490, 66, 86, 82, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8491, 0, 0, 65, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8492, 65, 43, 5, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8493, 80, 29, 16, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8494, 22, 61, 48, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8495, 8, 57, 60, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8496, 36, 0, 103, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8497, 2, 90, 44, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8498, 90, 4, 78, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8499, 65, 42, 10, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8500, 80, 32, 16, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8501, 0, 84, 12, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8502, 59, 14, 29, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8503, 39, 79, 53, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8504, 58, 106, 87, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8505, 73, 16, 0, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8506, 39, 73, 3, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8507, 8, 34, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8508, 83, 81, 0, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8509, 68, 72, 21, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8510, 26, 85, 86, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8511, 68, 49, 60, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8512, 99, 13, 67, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8513, 94, 60, 30, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8514, 42, 61, 77, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8515, 100, 0, 2, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8516, 82, 53, 21, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8517, 30, 43, 59, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8518, 0, 39, 90, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8519, 58, 102, 0, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8520, 95, 29, 20, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8521, 50, 70, 102, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8522, 65, 43, 10, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8523, 99, 31, 8, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8524, 19, 6, 28, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8525, 40, 38, 56, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8526, 33, 14, 69, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8527, 69, 50, 100, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8528, 74, 87, 29, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8529, 0, 38, 71, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8530, 82, 56, 60, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8531, 87, 3, 49, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8532, 32, 0, 44, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8533, 36, 27, 91, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8534, 0, 69, 68, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8535, 70, 54, 99, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8536, 19, 6, 22, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8537, 46, 102, 87, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8538, 78, 46, 11, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8539, 8, 81, 73, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8540, 80, 73, 3, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8541, 99, 60, 20, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8542, 40, 22, 71, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8543, 70, 68, 32, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8544, 0, 16, 96, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8545, 38, 62, 9, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8546, 11, 10, 93, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8547, 54, 0, 80, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8548, 95, 32, 67, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8549, 38, 35, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8550, 8, 20, 21, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8551, 28, 88, 89, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8552, 32, 90, 0, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8553, 60, 2, 98, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8554, 88, 0, 58, 4, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8555, 99, 13, 53, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8556, 26, 51, 63, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8557, 102, 93, 66, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8558, 91, 0, 85, 4, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8559, 95, 19, 8, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8560, 75, 7, 87, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8561, 0, 69, 102, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8562, 27, 41, 48, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8563, 98, 32, 18, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8564, 96, 32, 57, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8565, 107, 98, 0, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8566, 82, 0, 9, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8567, 70, 54, 95, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8568, 80, 31, 57, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8569, 94, 60, 67, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8570, 83, 53, 60, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8571, 98, 40, 0, 2, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8572, 26, 72, 9, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8573, 46, 0, 87, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8574, 79, 38, 0, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8575, 0, 5, 0, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8576, 72, 26, 56, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8577, 71, 61, 4, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8578, 50, 69, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8579, 94, 32, 8, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8580, 8, 62, 73, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8581, 60, 0, 100, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8582, 80, 9, 57, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8583, 0, 0, 81, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8584, 107, 70, 68, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8585, 57, 0, 83, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8586, 39, 0, 57, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8587, 83, 53, 75, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8588, 109, 27, 42, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8589, 107, 45, 106, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8590, 66, 38, 80, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8591, 108, 98, 0, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8592, 98, 79, 18, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8593, 73, 50, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8594, 83, 18, 60, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8595, 49, 99, 105, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8596, 38, 34, 75, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8597, 82, 35, 40, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8598, 12, 14, 29, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8599, 0, 0, 61, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8600, 0, 29, 3, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8601, 69, 68, 94, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8602, 0, 74, 53, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8603, 39, 13, 81, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8604, 100, 32, 0, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8605, 34, 89, 65, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8606, 67, 8, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8607, 41, 26, 56, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8608, 35, 58, 44, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8609, 0, 34, 60, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8610, 38, 64, 40, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8611, 50, 99, 102, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8612, 96, 60, 18, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8613, 0, 50, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8614, 26, 49, 60, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8615, 94, 48, 34, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8616, 80, 74, 81, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8617, 0, 79, 35, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8618, 69, 91, 45, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8619, 73, 8, 98, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8620, 17, 47, 74, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8621, 66, 52, 83, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8622, 103, 95, 101, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8623, 93, 112, 0, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8624, 3, 58, 69, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8625, 68, 49, 9, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8626, 104, 45, 101, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8627, 25, 28, 47, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8628, 85, 22, 83, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8629, 0, 32, 20, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8630, 12, 87, 0, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8631, 42, 41, 4, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8632, 87, 68, 13, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8633, 16, 17, 0, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8634, 74, 78, 65, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8635, 29, 107, 0, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8636, 26, 56, 60, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8637, 95, 31, 8, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8638, 0, 58, 44, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8639, 103, 95, 105, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8640, 26, 51, 73, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8641, 109, 27, 104, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8642, 103, 100, 54, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8643, 4, 17, 55, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8644, 0, 83, 38, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8645, 30, 25, 52, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8646, 15, 78, 29, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8647, 90, 77, 78, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8648, 65, 11, 28, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8649, 102, 107, 39, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8650, 65, 42, 22, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8651, 95, 74, 53, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8652, 106, 30, 0, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8653, 17, 25, 27, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8654, 22, 0, 0, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8655, 80, 19, 0, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8656, 103, 55, 106, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8657, 8, 85, 86, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8658, 105, 103, 39, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8659, 67, 33, 13, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8660, 70, 91, 94, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8661, 36, 46, 47, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8662, 58, 88, 87, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8663, 83, 35, 75, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8664, 52, 36, 51, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8665, 27, 61, 48, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8666, 67, 8, 98, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8667, 0, 15, 41, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8668, 30, 42, 24, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8669, 67, 91, 97, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8670, 100, 13, 20, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8671, 44, 67, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8672, 12, 90, 65, 4, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8673, 83, 34, 86, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8674, 27, 41, 43, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8675, 62, 26, 80, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8676, 52, 36, 6, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8677, 67, 2, 94, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8678, 96, 73, 67, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8679, 74, 17, 55, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8680, 83, 57, 86, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8681, 94, 48, 64, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8682, 6, 76, 47, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8683, 37, 52, 71, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8684, 22, 61, 6, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8685, 93, 28, 92, 2, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8686, 43, 26, 82, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8687, 70, 8, 49, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8688, 37, 52, 0, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8689, 15, 78, 55, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8690, 22, 36, 6, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8691, 49, 97, 0, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8692, 0, 112, 103, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8693, 13, 52, 71, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8694, 27, 61, 112, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8695, 100, 74, 0, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8696, 0, 39, 89, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8697, 21, 0, 25, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8698, 66, 22, 80, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8699, 109, 112, 104, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8700, 43, 22, 83, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8701, 98, 40, 3, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8702, 94, 60, 20, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8703, 0, 84, 79, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8704, 38, 72, 0, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8705, 65, 47, 24, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8706, 87, 75, 100, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8707, 98, 60, 0, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8708, 104, 70, 68, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8709, 6, 112, 70, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8710, 95, 13, 34, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8711, 86, 48, 64, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8712, 26, 44, 9, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8713, 64, 52, 56, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8714, 0, 42, 36, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8715, 65, 43, 46, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8716, 68, 34, 9, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8717, 20, 22, 0, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8718, 86, 9, 2, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8719, 0, 8, 45, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8720, 68, 53, 12, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8721, 36, 46, 11, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8722, 55, 2, 45, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8723, 94, 19, 67, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8724, 39, 32, 57, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8725, 83, 34, 50, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8726, 19, 71, 74, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8727, 79, 22, 56, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8728, 0, 72, 50, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8729, 19, 71, 24, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8730, 101, 109, 31, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8731, 94, 13, 20, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8732, 76, 41, 109, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8733, 105, 30, 39, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8734, 29, 93, 0, 2, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8735, 80, 9, 3, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8736, 0, 27, 42, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8737, 58, 0, 87, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8738, 73, 91, 94, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8739, 49, 0, 54, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8740, 98, 79, 3, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8741, 69, 16, 99, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8742, 17, 11, 10, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8743, 7, 27, 92, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8744, 100, 73, 20, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8745, 29, 109, 0, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8746, 99, 0, 67, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8747, 93, 27, 70, 2, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8748, 65, 11, 27, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8749, 97, 60, 35, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8750, 25, 27, 0, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8751, 94, 40, 53, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8752, 71, 61, 48, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8753, 0, 71, 28, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8754, 87, 68, 0, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8755, 0, 34, 79, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8756, 84, 22, 80, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8757, 80, 9, 16, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8758, 108, 97, 68, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8759, 100, 31, 81, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8760, 40, 38, 71, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8761, 67, 68, 96, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8762, 42, 10, 112, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8763, 65, 25, 22, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8764, 26, 35, 9, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8765, 17, 71, 10, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8766, 98, 0, 3, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8767, 76, 10, 72, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8768, 60, 91, 98, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8769, 99, 60, 2, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8770, 75, 88, 0, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8771, 0, 47, 14, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8772, 62, 0, 56, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8773, 0, 73, 34, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8774, 69, 68, 95, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8775, 0, 55, 106, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8776, 8, 56, 73, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8777, 8, 51, 73, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8778, 0, 25, 28, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8779, 88, 5, 17, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8780, 0, 57, 40, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8781, 25, 46, 104, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8782, 19, 11, 76, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8783, 86, 19, 20, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8784, 82, 44, 60, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8785, 37, 38, 82, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8786, 60, 68, 94, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8787, 99, 9, 8, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8788, 67, 0, 97, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8789, 84, 22, 56, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8790, 64, 52, 0, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8791, 13, 22, 0, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8792, 94, 79, 67, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8793, 60, 3, 13, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8794, 107, 95, 68, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8795, 19, 71, 0, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8796, 38, 72, 9, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8797, 80, 31, 34, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8798, 22, 10, 72, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8799, 73, 16, 94, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8800, 0, 91, 13, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8801, 0, 10, 77, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8802, 53, 52, 0, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8803, 99, 31, 2, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8804, 8, 85, 60, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8805, 13, 52, 83, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8806, 98, 40, 8, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8807, 96, 79, 64, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8808, 52, 10, 93, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8809, 47, 41, 72, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8810, 96, 19, 81, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8811, 44, 52, 71, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8812, 0, 43, 76, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8813, 74, 17, 65, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8814, 82, 18, 40, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8815, 10, 38, 82, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8816, 0, 43, 59, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8817, 17, 43, 76, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8818, 97, 0, 8, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8819, 22, 61, 43, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8820, 22, 41, 109, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8821, 50, 95, 0, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8822, 100, 9, 35, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8823, 80, 0, 34, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8824, 67, 75, 95, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8825, 86, 74, 8, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8826, 69, 54, 100, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8827, 104, 98, 106, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8828, 39, 79, 57, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8829, 0, 71, 52, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8830, 68, 49, 63, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8831, 70, 2, 49, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8832, 9, 0, 55, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8833, 15, 17, 69, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8834, 71, 41, 6, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8835, 95, 74, 57, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8836, 0, 42, 59, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8837, 98, 9, 35, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8838, 109, 0, 92, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8839, 92, 82, 0, 2, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8840, 83, 64, 9, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8841, 108, 45, 106, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8842, 100, 19, 53, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8843, 98, 73, 53, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8844, 14, 12, 58, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8845, 63, 0, 71, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8846, 8, 18, 21, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8847, 78, 112, 47, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8848, 96, 60, 67, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8849, 0, 25, 76, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8850, 16, 58, 55, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8851, 17, 0, 14, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8852, 108, 55, 102, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8853, 31, 67, 56, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8854, 38, 18, 0, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8855, 39, 19, 3, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8856, 52, 41, 109, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8857, 24, 112, 70, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8858, 85, 52, 56, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8859, 18, 26, 83, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8860, 93, 0, 11, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8861, 38, 51, 9, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8862, 108, 70, 68, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8863, 86, 31, 8, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8864, 39, 79, 8, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8865, 80, 29, 2, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8866, 57, 22, 56, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8867, 78, 0, 108, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8868, 108, 96, 106, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8869, 82, 34, 73, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8870, 96, 60, 35, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8871, 68, 72, 79, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8872, 94, 60, 8, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8873, 97, 32, 3, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8874, 30, 6, 46, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8875, 95, 31, 16, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8876, 38, 37, 9, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8877, 19, 25, 14, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8878, 63, 67, 71, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8879, 94, 74, 8, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8880, 93, 46, 107, 2, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8881, 19, 71, 76, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8882, 0, 74, 81, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8883, 29, 109, 31, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8884, 72, 52, 56, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8885, 33, 58, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8886, 96, 32, 30, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8887, 8, 0, 60, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8888, 87, 54, 94, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8889, 26, 20, 60, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8890, 65, 47, 14, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8891, 83, 85, 79, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8892, 97, 74, 0, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8893, 94, 60, 53, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8894, 112, 22, 80, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8895, 107, 97, 105, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8896, 17, 11, 22, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8897, 0, 68, 32, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8898, 97, 73, 16, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8899, 12, 58, 55, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8900, 4, 78, 0, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8901, 0, 35, 75, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8902, 0, 70, 101, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8903, 21, 24, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8904, 90, 77, 17, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8905, 33, 58, 69, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8906, 7, 28, 70, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8907, 97, 32, 16, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8908, 67, 2, 32, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8909, 0, 66, 60, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8910, 19, 42, 76, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8911, 8, 44, 60, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8912, 89, 15, 58, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8913, 70, 54, 13, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8914, 38, 18, 86, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8915, 34, 89, 44, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8916, 87, 0, 94, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8917, 17, 6, 74, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8918, 39, 29, 2, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8919, 83, 85, 40, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8920, 40, 26, 0, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8921, 17, 71, 22, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8922, 20, 38, 80, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8923, 3, 58, 55, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8924, 0, 71, 5, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8925, 40, 26, 71, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8926, 73, 54, 96, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8927, 0, 16, 45, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8928, 35, 89, 65, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8929, 0, 64, 79, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8930, 96, 13, 26, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8931, 48, 89, 55, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8932, 0, 2, 32, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8933, 46, 92, 89, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8934, 81, 67, 80, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8935, 56, 63, 84, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8936, 71, 10, 43, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8937, 75, 106, 89, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8938, 16, 89, 44, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8939, 17, 42, 27, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8940, 65, 6, 5, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8941, 65, 43, 52, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8942, 49, 95, 105, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8943, 38, 53, 86, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8944, 99, 79, 53, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8945, 0, 10, 109, 2, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8946, 98, 73, 35, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8947, 28, 24, 87, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8948, 87, 8, 45, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8949, 56, 0, 84, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8950, 100, 74, 18, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8951, 104, 94, 105, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8952, 83, 56, 73, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8953, 8, 56, 9, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8954, 19, 25, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8955, 27, 36, 6, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8956, 26, 56, 86, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8957, 14, 65, 78, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8958, 83, 56, 0, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8959, 97, 19, 18, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8960, 95, 0, 3, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8961, 80, 60, 57, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8962, 0, 12, 0, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8963, 99, 60, 18, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8964, 0, 46, 104, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8965, 49, 94, 102, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8966, 61, 0, 82, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8967, 60, 0, 45, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8968, 97, 9, 53, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8969, 57, 38, 80, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8970, 39, 40, 30, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8971, 60, 8, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8972, 67, 0, 45, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8973, 30, 42, 28, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8974, 84, 38, 80, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8975, 92, 82, 62, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8976, 90, 5, 58, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8977, 0, 76, 103, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8978, 101, 107, 0, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8979, 79, 26, 82, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8980, 37, 67, 80, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8981, 94, 9, 30, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8982, 109, 0, 91, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8983, 99, 74, 26, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8984, 95, 9, 35, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8985, 8, 64, 60, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8986, 65, 42, 5, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8987, 22, 41, 72, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8988, 103, 96, 102, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8989, 98, 9, 67, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8990, 75, 92, 87, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8991, 41, 86, 56, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8992, 19, 11, 0, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8993, 100, 32, 2, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (8994, 50, 69, 101, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8995, 56, 83, 0, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8996, 24, 76, 92, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8997, 0, 56, 73, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (8998, 87, 54, 95, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (8999, 8, 56, 75, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9000, 60, 68, 97, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9001, 0, 33, 98, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9002, 8, 0, 86, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9003, 68, 81, 50, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9004, 95, 29, 8, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9005, 69, 2, 98, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9006, 5, 58, 69, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9007, 41, 26, 80, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9008, 13, 86, 80, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9009, 46, 102, 90, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9010, 2, 89, 44, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9011, 94, 73, 57, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9012, 99, 29, 0, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9013, 82, 81, 60, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9014, 95, 0, 2, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9015, 17, 25, 36, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9016, 99, 79, 2, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9017, 94, 40, 57, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9018, 88, 0, 0, 4, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9019, 4, 89, 29, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9020, 2, 14, 55, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9021, 18, 38, 71, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9022, 18, 86, 71, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9023, 54, 26, 56, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9024, 94, 48, 53, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9025, 43, 86, 82, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9026, 62, 67, 56, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9027, 42, 0, 4, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9028, 75, 39, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9029, 101, 30, 39, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9030, 70, 8, 94, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9031, 68, 35, 73, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9032, 0, 0, 42, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9033, 70, 16, 99, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9034, 86, 31, 3, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9035, 28, 7, 0, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9036, 68, 85, 63, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9037, 83, 34, 73, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9038, 104, 45, 68, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9039, 0, 81, 86, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9040, 98, 74, 18, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9041, 67, 3, 99, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9042, 53, 67, 82, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9043, 99, 19, 34, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9044, 0, 34, 21, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9045, 15, 89, 69, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9046, 2, 58, 44, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9047, 95, 73, 0, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9048, 105, 80, 31, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9049, 12, 89, 29, 4, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9050, 112, 67, 71, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9051, 100, 74, 34, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9052, 0, 0, 80, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9053, 24, 76, 88, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9054, 75, 0, 89, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9055, 87, 75, 97, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9056, 30, 6, 52, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9057, 72, 0, 83, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9058, 101, 104, 66, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9059, 38, 20, 73, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9060, 87, 91, 100, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9061, 10, 86, 82, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9062, 20, 22, 83, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9063, 96, 19, 67, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9064, 68, 66, 0, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9065, 47, 36, 51, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9066, 52, 10, 6, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9067, 109, 112, 42, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9068, 30, 0, 27, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9069, 61, 22, 56, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9070, 41, 26, 0, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9071, 18, 67, 82, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9072, 32, 90, 65, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9073, 68, 57, 21, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9074, 0, 38, 56, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9075, 87, 2, 94, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9076, 9, 78, 29, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9077, 0, 49, 79, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9078, 69, 8, 95, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9079, 99, 60, 8, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9080, 68, 34, 40, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9081, 60, 68, 32, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9082, 95, 60, 18, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9083, 69, 3, 94, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9084, 79, 52, 56, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9085, 25, 0, 103, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9086, 100, 32, 30, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9087, 81, 26, 83, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9088, 34, 78, 65, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9089, 28, 0, 90, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9090, 16, 89, 55, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9091, 0, 84, 73, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9092, 21, 102, 90, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9093, 81, 67, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9094, 48, 0, 55, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9095, 97, 74, 35, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9096, 8, 49, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9097, 49, 45, 54, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9098, 94, 31, 30, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9099, 97, 0, 67, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9100, 88, 77, 17, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9101, 30, 0, 76, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9102, 43, 67, 71, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9103, 82, 34, 40, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9104, 91, 83, 38, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9105, 75, 0, 90, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9106, 12, 14, 69, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9107, 14, 59, 17, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9108, 38, 62, 75, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9109, 30, 71, 74, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9110, 70, 2, 97, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9111, 43, 67, 80, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9112, 8, 51, 63, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9113, 19, 11, 74, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9114, 87, 75, 98, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9115, 21, 105, 89, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9116, 95, 0, 53, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9117, 69, 68, 99, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9118, 30, 11, 22, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9119, 7, 27, 108, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9120, 85, 26, 80, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9121, 96, 48, 18, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9122, 104, 98, 101, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9123, 96, 29, 3, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9124, 81, 38, 0, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9125, 101, 107, 66, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9126, 18, 0, 80, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9127, 27, 0, 77, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9128, 36, 112, 47, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9129, 31, 26, 83, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9130, 0, 109, 0, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9131, 74, 17, 0, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9132, 100, 19, 2, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9133, 79, 67, 82, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9134, 38, 85, 12, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9135, 86, 79, 16, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9136, 2, 58, 55, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9137, 19, 11, 10, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9138, 80, 32, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9139, 97, 79, 57, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9140, 82, 66, 86, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9141, 21, 7, 25, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9142, 17, 71, 28, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9143, 69, 33, 0, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9144, 3, 17, 69, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9145, 19, 11, 24, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9146, 99, 19, 20, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9147, 43, 26, 83, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9148, 109, 28, 104, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9149, 8, 85, 12, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9150, 21, 39, 90, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9151, 96, 19, 57, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9152, 95, 31, 64, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9153, 86, 13, 0, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9154, 108, 0, 54, 2, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9155, 25, 76, 92, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9156, 84, 86, 82, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9157, 70, 50, 45, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9158, 107, 55, 106, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9159, 95, 31, 18, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9160, 102, 108, 0, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9161, 79, 86, 0, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9162, 17, 42, 0, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9163, 97, 48, 26, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9164, 86, 29, 16, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9165, 78, 46, 70, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9166, 0, 68, 97, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9167, 100, 40, 34, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9168, 11, 36, 15, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9169, 28, 88, 87, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9170, 38, 44, 73, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9171, 100, 40, 81, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9172, 46, 106, 25, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9173, 88, 15, 17, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9174, 17, 0, 22, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9175, 37, 22, 80, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9176, 86, 9, 3, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9177, 41, 67, 71, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9178, 27, 10, 0, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9179, 83, 18, 75, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9180, 7, 76, 0, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9181, 19, 42, 0, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9182, 83, 84, 9, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9183, 30, 0, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9184, 30, 42, 76, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9185, 86, 73, 57, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9186, 14, 15, 41, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9187, 38, 57, 21, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9188, 8, 62, 75, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9189, 97, 32, 30, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9190, 98, 19, 0, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9191, 3, 89, 44, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9192, 107, 55, 68, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9193, 0, 81, 12, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9194, 83, 49, 79, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9195, 29, 109, 39, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9196, 83, 20, 12, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9197, 95, 19, 26, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9198, 18, 38, 83, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9199, 96, 74, 2, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9200, 87, 16, 32, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9201, 34, 90, 29, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9202, 101, 80, 39, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9203, 49, 55, 68, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9204, 12, 58, 65, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9205, 36, 46, 103, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9206, 83, 0, 73, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9207, 0, 35, 63, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9208, 94, 32, 2, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9209, 38, 0, 21, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9210, 98, 31, 18, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9211, 0, 0, 69, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9212, 84, 67, 71, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9213, 98, 13, 34, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9214, 45, 0, 80, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9215, 69, 33, 45, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9216, 8, 53, 21, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9217, 96, 31, 53, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9218, 80, 79, 64, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9219, 108, 70, 54, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9220, 55, 3, 98, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9221, 102, 108, 39, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9222, 67, 2, 95, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9223, 0, 101, 25, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9224, 68, 0, 75, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9225, 83, 35, 12, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9226, 0, 37, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9227, 39, 19, 34, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9228, 38, 34, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9229, 65, 25, 36, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9230, 27, 36, 93, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9231, 31, 26, 80, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9232, 89, 15, 0, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9233, 97, 40, 57, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9234, 0, 0, 53, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9235, 50, 97, 102, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9236, 65, 47, 7, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9237, 60, 54, 32, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9238, 80, 13, 20, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9239, 100, 9, 30, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9240, 102, 93, 39, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9241, 95, 40, 8, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9242, 8, 0, 50, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9243, 17, 11, 14, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9244, 80, 19, 64, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9245, 38, 85, 79, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9246, 65, 47, 22, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9247, 19, 43, 7, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9248, 68, 81, 79, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9249, 30, 71, 46, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9250, 70, 33, 97, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9251, 28, 88, 0, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9252, 4, 14, 55, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9253, 81, 22, 71, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9254, 68, 37, 60, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9255, 95, 19, 0, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9256, 0, 95, 102, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9257, 89, 0, 58, 4, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9258, 45, 22, 82, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9259, 12, 17, 55, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9260, 32, 58, 69, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9261, 78, 28, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9262, 80, 0, 20, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9263, 72, 26, 82, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9264, 38, 37, 63, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9265, 73, 50, 13, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9266, 104, 95, 68, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9267, 58, 24, 87, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9268, 53, 67, 71, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9269, 108, 55, 0, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9270, 29, 107, 39, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9271, 0, 68, 96, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9272, 26, 49, 21, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9273, 80, 40, 53, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9274, 65, 71, 27, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9275, 0, 103, 19, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9276, 86, 40, 64, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9277, 75, 102, 87, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9278, 95, 19, 57, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9279, 35, 90, 69, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9280, 28, 105, 87, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9281, 96, 60, 8, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9282, 83, 81, 9, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9283, 56, 0, 0, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9284, 91, 0, 0, 4, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9285, 98, 13, 20, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9286, 0, 31, 0, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9287, 9, 58, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9288, 20, 0, 83, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9289, 69, 68, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9290, 96, 19, 26, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9291, 98, 73, 20, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9292, 82, 72, 0, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9293, 82, 85, 50, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9294, 83, 37, 0, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9295, 95, 73, 8, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9296, 51, 22, 83, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9297, 96, 40, 26, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9298, 42, 36, 6, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9299, 70, 50, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9300, 97, 48, 81, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9301, 91, 83, 85, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9302, 82, 51, 60, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9303, 56, 82, 84, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9304, 25, 76, 70, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9305, 0, 43, 27, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9306, 17, 6, 22, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9307, 25, 46, 11, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9308, 11, 36, 109, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9309, 89, 59, 78, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9310, 68, 37, 79, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9311, 0, 56, 9, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9312, 71, 41, 72, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9313, 65, 71, 22, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9314, 78, 112, 11, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9315, 43, 0, 83, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9316, 107, 55, 105, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9317, 39, 32, 18, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9318, 80, 60, 53, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9319, 82, 20, 79, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9320, 14, 77, 58, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9321, 98, 32, 8, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9322, 60, 8, 96, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9323, 90, 15, 78, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9324, 79, 67, 83, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9325, 19, 43, 52, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9326, 71, 41, 112, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9327, 6, 112, 11, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9328, 112, 26, 71, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9329, 76, 41, 48, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9330, 21, 101, 0, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9331, 107, 95, 106, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9332, 108, 70, 101, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9333, 26, 56, 73, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9334, 70, 2, 0, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9335, 100, 60, 53, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9336, 22, 41, 51, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9337, 6, 112, 103, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9338, 18, 38, 0, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9339, 82, 66, 0, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9340, 99, 13, 34, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9341, 68, 53, 50, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9342, 67, 2, 49, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9343, 19, 43, 76, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9344, 82, 57, 63, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9345, 47, 10, 51, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9346, 109, 112, 108, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9347, 0, 66, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9348, 79, 86, 71, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9349, 37, 0, 83, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9350, 8, 56, 60, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9351, 65, 6, 0, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9352, 38, 81, 75, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9353, 3, 89, 69, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9354, 59, 0, 0, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9355, 97, 48, 18, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9356, 96, 79, 16, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9357, 64, 38, 71, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9358, 19, 42, 5, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9359, 105, 108, 19, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9360, 95, 0, 34, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9361, 47, 0, 0, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9362, 39, 40, 16, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9363, 98, 73, 2, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9364, 100, 9, 8, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9365, 86, 32, 35, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9366, 94, 13, 67, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9367, 51, 38, 0, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9368, 96, 31, 20, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9369, 33, 0, 29, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9370, 55, 50, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9371, 80, 9, 64, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9372, 86, 19, 64, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9373, 27, 36, 4, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9374, 40, 67, 82, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9375, 97, 73, 0, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9376, 65, 47, 76, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9377, 83, 49, 12, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9378, 84, 26, 83, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9379, 7, 46, 11, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9380, 107, 69, 105, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9381, 65, 0, 27, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9382, 73, 2, 97, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9383, 82, 18, 0, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9384, 70, 3, 100, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9385, 12, 90, 29, 4, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9386, 94, 40, 81, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9387, 66, 0, 83, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9388, 82, 64, 40, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9389, 18, 52, 0, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9390, 99, 60, 81, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9391, 100, 79, 26, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9392, 99, 32, 64, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9393, 56, 83, 62, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9394, 0, 43, 46, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9395, 108, 69, 68, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9396, 19, 11, 28, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9397, 82, 51, 9, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9398, 39, 0, 0, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9399, 0, 75, 100, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9400, 0, 85, 40, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9401, 68, 66, 63, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9402, 67, 16, 96, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9403, 0, 16, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9404, 90, 65, 0, 4, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9405, 94, 32, 3, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9406, 47, 0, 48, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9407, 48, 0, 65, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9408, 87, 75, 99, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9409, 80, 79, 18, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9410, 94, 48, 3, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9411, 42, 61, 72, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9412, 82, 37, 12, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9413, 51, 86, 83, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9414, 77, 0, 65, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9415, 60, 75, 95, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9416, 38, 18, 75, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9417, 82, 20, 12, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9418, 30, 25, 74, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9419, 15, 0, 29, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9420, 97, 73, 26, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9421, 0, 71, 74, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9422, 21, 106, 0, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9423, 72, 86, 80, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9424, 75, 105, 25, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9425, 112, 22, 0, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9426, 39, 60, 53, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9427, 82, 37, 63, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9428, 97, 79, 64, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9429, 86, 40, 67, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9430, 68, 20, 60, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9431, 0, 91, 100, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9432, 66, 26, 71, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9433, 90, 77, 41, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9434, 22, 10, 112, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9435, 8, 62, 9, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9436, 97, 13, 26, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9437, 87, 0, 45, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9438, 68, 20, 21, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9439, 59, 58, 44, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9440, 56, 63, 62, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9441, 86, 48, 30, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9442, 107, 0, 0, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9443, 100, 31, 2, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9444, 98, 32, 67, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9445, 95, 40, 30, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9446, 94, 40, 35, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9447, 107, 95, 105, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9448, 95, 74, 16, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9449, 83, 66, 12, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9450, 16, 14, 0, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9451, 0, 79, 34, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9452, 8, 0, 12, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9453, 70, 16, 96, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9454, 94, 9, 8, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9455, 77, 78, 69, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9456, 50, 99, 54, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9457, 57, 52, 80, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9458, 96, 9, 0, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9459, 12, 17, 0, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9460, 13, 38, 56, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9461, 87, 68, 49, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9462, 99, 9, 20, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9463, 8, 35, 12, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9464, 38, 44, 79, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9465, 60, 2, 96, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9466, 97, 29, 30, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9467, 97, 32, 35, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9468, 78, 0, 42, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9469, 69, 33, 100, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9470, 8, 51, 0, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9471, 38, 51, 21, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9472, 14, 15, 78, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9473, 47, 41, 93, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9474, 5, 0, 69, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9475, 34, 87, 0, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9476, 0, 27, 104, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9477, 0, 0, 97, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9478, 0, 60, 2, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9479, 95, 79, 35, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9480, 0, 0, 60, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9481, 0, 71, 7, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9482, 42, 61, 93, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9483, 3, 58, 44, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9484, 49, 96, 101, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9485, 39, 19, 30, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9486, 103, 0, 0, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9487, 38, 35, 9, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9488, 35, 89, 55, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9489, 80, 40, 26, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9490, 93, 27, 42, 2, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9491, 37, 0, 80, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9492, 0, 47, 33, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9493, 19, 0, 10, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9494, 77, 78, 0, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9495, 49, 45, 0, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9496, 100, 32, 8, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9497, 37, 86, 83, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9498, 0, 44, 12, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9499, 107, 97, 102, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9500, 39, 73, 26, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9501, 39, 60, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9502, 0, 61, 112, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9503, 92, 82, 38, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9504, 105, 109, 19, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9505, 95, 19, 2, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9506, 104, 96, 0, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9507, 95, 32, 64, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9508, 11, 61, 109, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9509, 94, 9, 53, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9510, 83, 0, 9, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9511, 70, 33, 49, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9512, 96, 29, 26, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9513, 88, 5, 0, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9514, 40, 26, 56, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9515, 0, 26, 71, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9516, 37, 0, 71, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9517, 88, 59, 78, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9518, 0, 8, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9519, 46, 101, 25, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9520, 63, 38, 83, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9521, 68, 64, 40, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9522, 73, 16, 98, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9523, 94, 9, 18, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9524, 61, 26, 56, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9525, 109, 27, 11, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9526, 69, 16, 49, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9527, 48, 58, 65, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9528, 77, 89, 0, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9529, 66, 26, 80, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9530, 108, 45, 105, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9531, 99, 60, 30, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9532, 82, 56, 50, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9533, 82, 72, 73, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9534, 0, 70, 54, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9535, 86, 40, 53, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9536, 5, 78, 29, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9537, 24, 28, 11, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9538, 17, 71, 46, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9539, 68, 57, 60, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9540, 98, 48, 30, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9541, 39, 31, 2, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9542, 106, 0, 19, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9543, 0, 87, 55, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9544, 59, 87, 44, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9545, 80, 9, 26, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9546, 106, 104, 39, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9547, 49, 97, 105, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9548, 98, 31, 67, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9549, 71, 41, 51, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9550, 22, 0, 77, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9551, 82, 62, 60, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9552, 20, 38, 56, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9553, 83, 20, 73, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9554, 86, 0, 35, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9555, 108, 100, 105, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9556, 26, 44, 86, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9557, 85, 86, 80, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9558, 99, 74, 16, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9559, 17, 25, 52, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9560, 102, 108, 19, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9561, 0, 41, 6, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9562, 26, 56, 21, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9563, 3, 78, 65, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9564, 82, 62, 63, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9565, 39, 40, 18, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9566, 67, 3, 94, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9567, 39, 74, 18, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9568, 51, 22, 80, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9569, 58, 24, 25, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9570, 92, 83, 61, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9571, 82, 64, 73, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9572, 14, 65, 58, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9573, 85, 38, 83, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9574, 12, 78, 0, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9575, 40, 26, 83, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9576, 0, 42, 74, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9577, 34, 58, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9578, 93, 0, 42, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9579, 102, 104, 66, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9580, 26, 84, 50, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9581, 0, 105, 89, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9582, 0, 68, 94, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9583, 26, 64, 50, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9584, 73, 33, 0, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9585, 82, 81, 79, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9586, 30, 25, 76, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9587, 55, 91, 96, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9588, 39, 79, 0, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9589, 39, 29, 3, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9590, 65, 47, 27, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9591, 26, 84, 9, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9592, 51, 86, 0, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9593, 60, 2, 99, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9594, 36, 76, 108, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9595, 12, 14, 55, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9596, 30, 71, 28, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9597, 86, 19, 26, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9598, 108, 70, 106, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9599, 39, 73, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9600, 32, 90, 44, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9601, 38, 0, 86, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9602, 83, 51, 73, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9603, 83, 20, 63, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9604, 9, 90, 65, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9605, 100, 19, 8, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9606, 78, 0, 11, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9607, 10, 26, 71, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9608, 108, 99, 68, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9609, 15, 90, 44, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9610, 38, 18, 79, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9611, 10, 22, 56, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9612, 6, 112, 0, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9613, 65, 6, 74, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9614, 17, 42, 7, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9615, 0, 72, 73, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9616, 67, 50, 95, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9617, 108, 99, 105, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9618, 109, 46, 70, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9619, 67, 68, 97, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9620, 8, 72, 63, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9621, 4, 78, 29, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9622, 86, 13, 81, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9623, 6, 28, 91, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9624, 95, 9, 26, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9625, 97, 19, 3, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9626, 39, 79, 64, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9627, 62, 86, 83, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9628, 20, 22, 80, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9629, 46, 92, 87, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9630, 39, 9, 30, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9631, 68, 84, 40, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9632, 8, 44, 86, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9633, 83, 51, 0, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9634, 8, 49, 75, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9635, 57, 38, 0, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9636, 45, 26, 56, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9637, 0, 75, 98, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9638, 80, 0, 18, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9639, 108, 55, 106, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9640, 19, 42, 7, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9641, 95, 73, 20, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9642, 62, 67, 83, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9643, 100, 29, 2, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9644, 95, 9, 53, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9645, 37, 52, 80, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9646, 78, 28, 47, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9647, 21, 105, 0, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9648, 80, 40, 81, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9649, 78, 27, 91, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9650, 14, 12, 17, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9651, 68, 85, 60, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9652, 52, 0, 72, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9653, 50, 100, 106, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9654, 8, 66, 73, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9655, 99, 32, 8, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9656, 70, 68, 100, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9657, 43, 26, 0, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9658, 99, 74, 57, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9659, 93, 27, 103, 2, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9660, 69, 0, 13, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9661, 86, 13, 35, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9662, 60, 3, 98, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9663, 6, 0, 107, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9664, 39, 73, 81, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9665, 94, 29, 20, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9666, 80, 9, 67, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9667, 42, 61, 15, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9668, 95, 32, 34, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9669, 75, 39, 25, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9670, 80, 60, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9671, 99, 40, 57, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9672, 93, 76, 47, 2, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9673, 0, 67, 56, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9674, 5, 14, 29, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9675, 82, 66, 50, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9676, 98, 0, 30, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9677, 27, 10, 6, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9678, 87, 50, 97, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9679, 97, 32, 34, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9680, 0, 26, 82, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9681, 30, 42, 5, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9682, 75, 24, 89, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9683, 0, 81, 50, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9684, 70, 68, 45, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9685, 107, 95, 101, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9686, 27, 41, 112, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9687, 38, 56, 0, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9688, 51, 67, 56, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9689, 49, 98, 0, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9690, 22, 10, 0, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9691, 96, 0, 0, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9692, 99, 19, 64, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9693, 96, 29, 35, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9694, 98, 74, 53, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9695, 67, 3, 96, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9696, 67, 91, 96, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9697, 97, 19, 2, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9698, 30, 47, 5, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9699, 67, 16, 32, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9700, 20, 26, 0, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9701, 40, 67, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9702, 78, 28, 42, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9703, 27, 36, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9704, 88, 65, 17, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9705, 29, 104, 19, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9706, 6, 46, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9707, 33, 58, 44, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9708, 96, 73, 35, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9709, 96, 48, 26, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9710, 13, 26, 83, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9711, 60, 68, 95, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9712, 38, 49, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9713, 82, 85, 86, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9714, 104, 0, 101, 2, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9715, 3, 90, 44, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9716, 99, 0, 16, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9717, 101, 107, 19, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9718, 96, 29, 67, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9719, 100, 19, 18, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9720, 0, 49, 63, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9721, 35, 90, 44, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9722, 0, 10, 43, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9723, 86, 40, 20, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9724, 8, 84, 12, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9725, 35, 0, 29, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9726, 4, 58, 29, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9727, 80, 73, 64, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9728, 96, 79, 57, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9729, 26, 20, 73, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9730, 112, 86, 82, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9731, 83, 53, 40, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9732, 97, 79, 8, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9733, 22, 61, 72, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9734, 81, 67, 83, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9735, 0, 25, 27, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9736, 19, 25, 46, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9737, 60, 54, 98, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9738, 26, 18, 63, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9739, 38, 20, 9, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9740, 82, 64, 9, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9741, 93, 27, 91, 2, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9742, 103, 70, 68, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9743, 108, 95, 101, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9744, 36, 27, 107, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9745, 27, 61, 43, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9746, 0, 73, 81, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9747, 29, 103, 39, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9748, 36, 0, 104, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9749, 82, 64, 0, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9750, 95, 31, 3, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9751, 34, 14, 69, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9752, 64, 22, 82, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9753, 35, 0, 69, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9754, 38, 81, 79, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9755, 43, 38, 71, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9756, 100, 0, 26, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9757, 30, 6, 28, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9758, 69, 2, 100, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9759, 26, 34, 12, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9760, 80, 79, 35, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9761, 26, 37, 79, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9762, 97, 60, 57, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9763, 0, 32, 8, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9764, 96, 74, 8, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9765, 83, 84, 86, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9766, 36, 46, 108, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9767, 68, 81, 63, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9768, 34, 87, 65, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9769, 80, 74, 3, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9770, 62, 52, 71, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9771, 16, 87, 69, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9772, 30, 43, 52, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9773, 21, 24, 90, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9774, 80, 13, 2, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9775, 19, 47, 27, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9776, 107, 99, 0, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9777, 19, 25, 76, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9778, 96, 31, 64, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9779, 55, 50, 100, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9780, 102, 107, 0, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9781, 82, 51, 21, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9782, 68, 56, 50, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9783, 83, 84, 40, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9784, 0, 79, 16, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9785, 26, 62, 0, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9786, 69, 16, 45, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9787, 107, 45, 101, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9788, 87, 75, 13, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9789, 6, 112, 104, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9790, 17, 42, 46, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9791, 39, 32, 8, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9792, 8, 44, 79, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9793, 61, 38, 83, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9794, 95, 40, 53, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9795, 103, 98, 105, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9796, 0, 46, 103, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9797, 41, 22, 0, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9798, 99, 32, 2, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9799, 83, 51, 50, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9800, 75, 7, 89, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9801, 95, 48, 53, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9802, 3, 78, 29, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9803, 86, 0, 81, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9804, 53, 67, 83, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9805, 0, 76, 91, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9806, 0, 93, 19, 2, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9807, 99, 48, 20, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9808, 100, 48, 30, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9809, 99, 32, 35, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9810, 68, 64, 75, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9811, 0, 40, 20, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9812, 106, 107, 19, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9813, 57, 0, 56, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9814, 31, 52, 82, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9815, 17, 47, 59, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9816, 78, 76, 103, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9817, 0, 52, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9818, 10, 22, 71, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9819, 0, 0, 38, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9820, 39, 32, 3, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9821, 80, 31, 35, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9822, 73, 0, 45, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9823, 69, 16, 98, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9824, 109, 27, 103, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9825, 0, 0, 62, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9826, 30, 47, 0, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9827, 0, 60, 34, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9828, 0, 42, 28, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9829, 31, 86, 83, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9830, 39, 0, 3, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9831, 25, 46, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9832, 28, 102, 87, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9833, 39, 73, 34, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9834, 55, 91, 13, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9835, 88, 4, 41, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9836, 39, 79, 26, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9837, 38, 84, 21, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9838, 79, 52, 82, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9839, 70, 54, 45, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9840, 9, 90, 55, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9841, 8, 84, 75, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9842, 78, 27, 92, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9843, 33, 17, 65, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9844, 86, 9, 81, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9845, 87, 68, 94, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9846, 82, 53, 86, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9847, 58, 106, 89, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9848, 70, 68, 96, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9849, 98, 73, 18, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9850, 96, 9, 8, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9851, 0, 100, 54, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9852, 94, 29, 2, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9853, 38, 56, 40, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9854, 96, 9, 81, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9855, 57, 86, 80, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9856, 27, 10, 72, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9857, 26, 44, 12, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9858, 80, 60, 81, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9859, 82, 64, 21, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9860, 80, 73, 20, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9861, 94, 31, 8, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9862, 81, 38, 82, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9863, 82, 72, 12, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9864, 77, 89, 69, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9865, 80, 40, 64, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9866, 11, 61, 51, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9867, 57, 0, 80, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9868, 17, 11, 59, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9869, 16, 87, 0, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9870, 94, 32, 16, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9871, 60, 33, 99, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9872, 99, 29, 16, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9873, 86, 29, 8, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9874, 17, 47, 33, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9875, 17, 6, 7, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9876, 83, 35, 9, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9877, 82, 44, 63, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9878, 94, 74, 53, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9879, 68, 64, 12, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9880, 2, 87, 69, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9881, 25, 0, 88, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9882, 0, 63, 38, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9883, 42, 36, 51, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9884, 94, 74, 67, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9885, 55, 8, 32, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9886, 68, 51, 75, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9887, 11, 10, 72, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9888, 34, 87, 55, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9889, 0, 35, 79, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9890, 72, 67, 56, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9891, 65, 6, 59, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9892, 87, 2, 13, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9893, 60, 91, 96, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9894, 36, 46, 88, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9895, 100, 9, 16, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9896, 83, 18, 21, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9897, 78, 28, 92, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9898, 104, 69, 105, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9899, 104, 97, 102, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9900, 69, 75, 100, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9901, 88, 5, 41, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9902, 0, 37, 63, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9903, 100, 73, 3, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9904, 58, 106, 25, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9905, 70, 0, 94, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9906, 0, 47, 10, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9907, 65, 6, 76, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9908, 0, 77, 78, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9909, 102, 104, 0, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9910, 112, 67, 82, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9911, 26, 34, 60, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9912, 79, 26, 80, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9913, 95, 74, 8, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9914, 31, 22, 0, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9915, 30, 42, 10, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9916, 60, 75, 97, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9917, 0, 20, 63, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9918, 98, 0, 18, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9919, 9, 58, 69, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9920, 72, 52, 80, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9921, 84, 52, 56, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9922, 0, 20, 60, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9923, 46, 106, 90, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9924, 30, 47, 27, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9925, 73, 3, 49, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9926, 19, 0, 24, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9927, 60, 33, 96, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9928, 55, 8, 95, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9929, 74, 58, 29, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9930, 0, 47, 5, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9931, 94, 79, 53, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9932, 44, 26, 56, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9933, 0, 6, 5, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9934, 80, 74, 34, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9935, 94, 74, 20, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9936, 19, 43, 33, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9937, 17, 71, 24, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9938, 59, 58, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9939, 45, 52, 71, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9940, 86, 48, 3, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9941, 95, 74, 67, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9942, 97, 9, 67, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9943, 68, 72, 86, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9944, 94, 0, 8, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9945, 103, 70, 0, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9946, 83, 72, 21, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9947, 53, 86, 80, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9948, 82, 64, 12, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9949, 20, 38, 83, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9950, 8, 57, 79, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9951, 10, 26, 56, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9952, 103, 94, 105, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9953, 95, 40, 18, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9954, 0, 73, 67, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9955, 98, 9, 18, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9956, 11, 36, 112, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9957, 94, 40, 34, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9958, 11, 10, 6, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9959, 26, 64, 9, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9960, 68, 51, 50, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9961, 95, 0, 26, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9962, 65, 71, 74, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9963, 94, 73, 16, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9964, 2, 78, 0, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9965, 30, 25, 27, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9966, 73, 68, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9967, 9, 14, 55, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9968, 70, 54, 49, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9969, 82, 34, 79, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9970, 95, 74, 81, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9971, 19, 6, 24, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9972, 98, 32, 30, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9973, 38, 62, 79, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9974, 52, 10, 109, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9975, 104, 0, 102, 2, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9976, 38, 66, 40, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9977, 104, 99, 102, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9978, 71, 10, 72, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9979, 83, 66, 0, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9980, 68, 64, 0, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9981, 77, 90, 55, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9982, 79, 26, 71, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9983, 94, 13, 3, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9984, 58, 105, 0, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9985, 36, 28, 107, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (9986, 95, 32, 8, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9987, 57, 38, 71, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9988, 8, 49, 60, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9989, 54, 38, 0, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9990, 22, 36, 43, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9991, 86, 73, 8, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9992, 84, 26, 71, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9993, 9, 58, 44, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9994, 95, 9, 81, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9995, 0, 21, 37, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9996, 71, 0, 43, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9997, 94, 48, 81, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (9998, 80, 32, 34, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (9999, 73, 2, 96, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10000, 44, 26, 80, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (10001, 77, 89, 29, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10002, 47, 61, 72, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (10003, 63, 26, 0, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (10004, 107, 100, 102, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10005, 65, 47, 46, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (10006, 34, 17, 29, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (10007, 50, 96, 101, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10008, 5, 90, 65, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10009, 0, 92, 89, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10010, 103, 95, 54, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10011, 88, 77, 58, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10012, 6, 46, 104, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10013, 67, 68, 32, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (10014, 49, 99, 101, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10015, 83, 18, 9, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (10016, 7, 27, 107, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10017, 5, 87, 69, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10018, 9, 89, 69, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10019, 58, 7, 0, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (10020, 82, 84, 86, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (10021, 19, 25, 5, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (10022, 18, 22, 83, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (10023, 15, 14, 55, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (10024, 19, 47, 28, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (10025, 0, 47, 27, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (10026, 94, 29, 30, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10027, 31, 0, 80, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (10028, 0, 29, 67, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (10029, 74, 89, 29, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10030, 80, 40, 20, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (10031, 8, 18, 63, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (10032, 9, 90, 44, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10033, 0, 106, 87, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10034, 0, 40, 16, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (10035, 45, 22, 0, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (10036, 78, 76, 91, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10037, 35, 90, 65, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10038, 97, 48, 34, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10039, 0, 61, 77, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (10040, 104, 45, 0, 2, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10041, 78, 76, 88, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10042, 98, 19, 35, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10043, 65, 71, 52, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (10044, 0, 47, 36, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (10045, 19, 11, 27, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (10046, 108, 96, 68, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10047, 80, 74, 30, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (10048, 0, 26, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (10049, 0, 21, 0, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (10050, 7, 76, 70, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (10051, 109, 46, 104, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10052, 30, 71, 33, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (10053, 60, 50, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (10054, 86, 74, 18, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (10055, 93, 0, 47, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10056, 74, 58, 55, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (10057, 80, 13, 30, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (10058, 97, 74, 81, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10059, 104, 97, 54, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10060, 66, 52, 82, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (10061, 51, 86, 80, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (10062, 76, 61, 15, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (10063, 38, 81, 21, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (10064, 109, 46, 47, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10065, 0, 84, 86, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (10066, 40, 22, 80, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (10067, 98, 9, 2, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10068, 89, 77, 17, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10069, 0, 58, 0, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (10070, 35, 58, 55, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (10071, 48, 87, 69, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10072, 50, 100, 54, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10073, 60, 3, 99, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10074, 53, 26, 56, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (10075, 16, 58, 69, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (10076, 11, 61, 77, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (10077, 103, 69, 0, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10078, 104, 96, 106, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10079, 60, 33, 13, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (10080, 12, 87, 29, 4, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10081, 55, 75, 96, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10082, 10, 26, 80, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (10083, 0, 6, 46, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (10084, 61, 0, 71, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (10085, 0, 71, 27, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (10086, 38, 64, 75, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (10087, 107, 100, 101, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10088, 40, 0, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (10089, 108, 45, 54, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10090, 78, 46, 42, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (10091, 0, 13, 30, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (10092, 0, 49, 86, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (10093, 35, 78, 0, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (10094, 95, 60, 34, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10095, 99, 29, 34, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10096, 91, 82, 37, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10097, 94, 60, 57, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10098, 94, 32, 57, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10099, 87, 3, 96, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10100, 0, 40, 30, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (10101, 26, 35, 21, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (10102, 0, 74, 20, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (10103, 19, 25, 59, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (10104, 25, 28, 70, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (10105, 49, 98, 54, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10106, 55, 91, 0, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10107, 58, 101, 90, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10108, 0, 112, 92, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10109, 37, 86, 56, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (10110, 97, 19, 57, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10111, 107, 99, 101, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10112, 105, 30, 0, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10113, 39, 74, 3, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (10114, 65, 47, 10, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (10115, 59, 89, 0, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10116, 2, 87, 65, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10117, 22, 10, 15, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (10118, 8, 34, 75, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (10119, 60, 16, 94, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10120, 46, 24, 25, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (10121, 0, 22, 80, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (10122, 30, 47, 59, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (10123, 0, 56, 12, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (10124, 86, 0, 0, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (10125, 67, 54, 49, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (10126, 72, 38, 83, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (10127, 86, 9, 34, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (10128, 24, 76, 42, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (10129, 68, 37, 9, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (10130, 56, 63, 0, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (10131, 28, 39, 90, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10132, 41, 52, 56, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (10133, 0, 19, 0, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (10134, 86, 31, 26, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (10135, 26, 34, 75, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (10136, 0, 31, 34, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (10137, 0, 76, 70, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (10138, 18, 0, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (10139, 97, 31, 64, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10140, 0, 98, 102, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10141, 90, 65, 58, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10142, 95, 40, 26, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10143, 37, 0, 82, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (10144, 0, 11, 5, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (10145, 45, 22, 80, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (10146, 73, 50, 49, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (10147, 30, 47, 22, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (10148, 53, 26, 71, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (10149, 97, 79, 53, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10150, 93, 28, 11, 2, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10151, 0, 88, 90, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10152, 87, 68, 32, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10153, 0, 18, 21, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (10154, 0, 44, 86, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (10155, 96, 29, 34, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10156, 8, 62, 60, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (10157, 83, 66, 50, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (10158, 19, 42, 27, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (10159, 49, 95, 102, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10160, 65, 6, 7, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (10161, 33, 78, 65, 6, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (10162, 81, 86, 80, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (10163, 0, 40, 2, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (10164, 76, 61, 6, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (10165, 34, 90, 69, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10166, 98, 29, 35, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10167, 0, 79, 64, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (10168, 98, 79, 26, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10169, 36, 46, 104, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10170, 54, 52, 82, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (10171, 19, 47, 59, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (10172, 11, 36, 43, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (10173, 18, 52, 83, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (10174, 0, 100, 105, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10175, 78, 76, 92, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10176, 108, 97, 102, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10177, 21, 7, 0, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (10178, 28, 39, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (10179, 17, 71, 5, 4, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (10180, 19, 47, 52, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (10181, 81, 52, 0, 3, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (10182, 86, 0, 2, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (10183, 50, 95, 105, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10184, 5, 90, 29, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10185, 78, 0, 0, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (10186, 85, 0, 83, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (10187, 108, 45, 0, 2, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10188, 112, 0, 56, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (10189, 39, 19, 53, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (10190, 103, 69, 101, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10191, 97, 32, 26, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10192, 100, 40, 35, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10193, 26, 44, 75, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (10194, 78, 28, 70, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (10195, 0, 42, 5, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (10196, 96, 19, 35, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10197, 95, 48, 8, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10198, 86, 48, 81, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (10199, 0, 48, 53, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (10200, 82, 64, 63, 2, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (10201, 55, 68, 13, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (10202, 7, 27, 42, 5, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (10203, 75, 0, 0, 1, 11, 6, 951, 404, 1001, 426, 2051, 1095), + (10204, 90, 4, 110, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10205, 110, 6, 14, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10206, 110, 42, 36, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10207, 110, 71, 74, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10208, 110, 25, 0, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10209, 110, 42, 74, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10210, 110, 71, 59, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10211, 56, 110, 62, 4, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10212, 14, 65, 110, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10213, 89, 59, 110, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10214, 110, 47, 22, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10215, 90, 59, 110, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10216, 110, 42, 27, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10217, 110, 25, 74, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10218, 0, 65, 110, 4, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10219, 110, 25, 14, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10220, 110, 6, 59, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10221, 110, 25, 22, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10222, 110, 71, 33, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10223, 0, 4, 110, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10224, 56, 110, 85, 4, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10225, 110, 47, 0, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10226, 89, 65, 110, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10227, 110, 25, 28, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10228, 110, 43, 7, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10229, 0, 59, 110, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10230, 110, 6, 52, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10231, 110, 43, 14, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10232, 110, 25, 36, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10233, 110, 6, 74, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10234, 110, 11, 28, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10235, 0, 110, 0, 4, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10236, 110, 6, 7, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10237, 110, 47, 5, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10238, 90, 65, 110, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10239, 110, 11, 76, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10240, 90, 5, 110, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10241, 110, 43, 76, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10242, 92, 110, 0, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10243, 14, 12, 110, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10244, 110, 71, 46, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10245, 89, 12, 110, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10246, 88, 4, 110, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10247, 90, 77, 110, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10248, 110, 71, 5, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10249, 14, 4, 110, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10250, 110, 42, 24, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10251, 14, 59, 110, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10252, 110, 71, 76, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10253, 89, 4, 110, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10254, 56, 110, 84, 4, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10255, 110, 6, 5, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10256, 110, 6, 33, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10257, 91, 110, 84, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10258, 110, 25, 24, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10259, 110, 11, 14, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10260, 110, 47, 52, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10261, 0, 110, 84, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10262, 0, 110, 62, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10263, 110, 71, 52, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10264, 92, 110, 38, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10265, 0, 15, 110, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10266, 92, 110, 61, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10267, 14, 0, 110, 4, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10268, 110, 25, 10, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10269, 14, 77, 110, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10270, 110, 71, 22, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10271, 110, 71, 14, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10272, 110, 71, 0, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10273, 110, 11, 52, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10274, 88, 15, 110, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10275, 110, 71, 7, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10276, 88, 12, 110, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10277, 110, 11, 0, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10278, 110, 42, 46, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10279, 110, 42, 28, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10280, 110, 25, 33, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10281, 110, 6, 46, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10282, 110, 0, 46, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10283, 91, 110, 0, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10284, 110, 43, 46, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10285, 91, 110, 85, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10286, 110, 71, 36, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10287, 110, 6, 76, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10288, 110, 47, 28, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10289, 110, 47, 46, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10290, 0, 12, 110, 4, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10291, 110, 0, 76, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10292, 110, 47, 14, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10293, 110, 71, 27, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10294, 110, 43, 33, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10295, 0, 77, 110, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10296, 110, 0, 59, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10297, 110, 0, 52, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10298, 110, 47, 24, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10299, 110, 71, 24, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10300, 110, 0, 36, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10301, 110, 11, 22, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10302, 14, 5, 110, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10303, 110, 42, 0, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10304, 91, 110, 61, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10305, 56, 110, 38, 4, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10306, 110, 43, 22, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10307, 88, 77, 110, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10308, 0, 110, 85, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10309, 110, 47, 27, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10310, 110, 43, 24, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10311, 110, 11, 27, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10312, 88, 65, 110, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10313, 110, 0, 22, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10314, 110, 47, 7, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10315, 110, 0, 0, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10316, 91, 110, 38, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10317, 110, 42, 7, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10318, 110, 0, 27, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10319, 92, 110, 37, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10320, 56, 110, 61, 4, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10321, 88, 5, 110, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10322, 110, 6, 0, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10323, 92, 110, 62, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10324, 110, 6, 24, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10325, 110, 43, 52, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10326, 0, 110, 61, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10327, 56, 110, 37, 4, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10328, 110, 47, 76, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10329, 110, 42, 10, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10330, 110, 43, 36, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10331, 110, 6, 36, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10332, 90, 0, 110, 4, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10333, 110, 25, 76, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10334, 91, 110, 62, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10335, 89, 15, 110, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10336, 110, 11, 10, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10337, 110, 0, 5, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10338, 90, 12, 110, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10339, 110, 0, 24, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10340, 110, 11, 5, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10341, 110, 0, 7, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10342, 110, 11, 46, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10343, 110, 0, 74, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10344, 110, 42, 33, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10345, 14, 15, 110, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10346, 110, 42, 52, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10347, 110, 42, 59, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10348, 110, 6, 22, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10349, 110, 11, 36, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10350, 110, 47, 74, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10351, 89, 77, 110, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10352, 110, 11, 24, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10353, 110, 71, 28, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10354, 110, 11, 74, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10355, 110, 11, 33, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10356, 110, 6, 28, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10357, 110, 11, 59, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10358, 92, 110, 85, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10359, 88, 0, 110, 4, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10360, 0, 110, 38, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10361, 90, 15, 110, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10362, 0, 5, 110, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10363, 110, 25, 52, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10364, 110, 0, 14, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10365, 110, 0, 10, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10366, 89, 5, 110, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10367, 110, 0, 28, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10368, 92, 110, 84, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10369, 110, 43, 28, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10370, 110, 43, 27, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10371, 91, 110, 37, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10372, 56, 110, 0, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10373, 110, 25, 59, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10374, 110, 43, 10, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10375, 110, 25, 27, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10376, 110, 47, 10, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10377, 88, 59, 110, 6, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10378, 110, 42, 14, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10379, 110, 42, 76, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10380, 110, 25, 46, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10381, 110, 6, 10, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10382, 89, 0, 110, 4, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10383, 110, 25, 7, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10384, 110, 43, 5, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10385, 110, 47, 36, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10386, 110, 71, 10, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10387, 110, 43, 74, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10388, 110, 42, 5, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10389, 110, 6, 27, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10390, 110, 11, 7, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10391, 110, 0, 33, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10392, 110, 43, 59, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10393, 0, 110, 37, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10394, 110, 47, 59, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10395, 110, 25, 5, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10396, 0, 0, 110, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10397, 110, 47, 33, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10398, 110, 43, 0, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10399, 110, 42, 22, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10400, 34, 0, 111, 4, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10401, 0, 111, 0, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10402, 59, 14, 111, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10403, 3, 14, 111, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10404, 111, 77, 41, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10405, 33, 90, 111, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10406, 29, 111, 66, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10407, 0, 14, 111, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10408, 102, 111, 31, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10409, 4, 14, 111, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10410, 0, 111, 31, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10411, 106, 111, 39, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10412, 77, 90, 111, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10413, 111, 5, 0, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10414, 0, 0, 111, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10415, 4, 78, 111, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10416, 48, 78, 111, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10417, 48, 87, 111, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10418, 102, 111, 0, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10419, 111, 4, 17, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10420, 12, 0, 111, 4, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10421, 0, 90, 111, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10422, 111, 5, 58, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10423, 33, 17, 111, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10424, 102, 111, 39, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10425, 111, 5, 110, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10426, 74, 0, 111, 4, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10427, 16, 89, 111, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10428, 12, 17, 111, 4, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10429, 3, 89, 111, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10430, 5, 0, 111, 4, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10431, 3, 78, 111, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10432, 29, 111, 31, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10433, 77, 89, 111, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10434, 111, 12, 17, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10435, 48, 17, 111, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10436, 111, 5, 41, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10437, 101, 111, 19, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10438, 111, 12, 110, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10439, 35, 14, 111, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10440, 35, 78, 111, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10441, 111, 4, 0, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10442, 111, 12, 41, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10443, 16, 17, 111, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10444, 105, 111, 19, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10445, 105, 111, 31, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10446, 15, 90, 111, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10447, 3, 17, 111, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10448, 33, 89, 111, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10449, 77, 58, 111, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10450, 9, 14, 111, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10451, 105, 111, 0, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10452, 74, 89, 111, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10453, 0, 89, 111, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10454, 33, 0, 111, 4, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10455, 5, 14, 111, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10456, 16, 0, 111, 4, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10457, 32, 87, 111, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10458, 4, 58, 111, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10459, 106, 111, 0, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10460, 59, 17, 111, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10461, 111, 5, 17, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10462, 111, 12, 58, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10463, 111, 0, 58, 4, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10464, 74, 87, 111, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10465, 101, 111, 39, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10466, 16, 90, 111, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10467, 77, 87, 111, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10468, 32, 58, 111, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10469, 12, 14, 111, 4, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10470, 34, 58, 111, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10471, 15, 0, 111, 4, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10472, 15, 14, 111, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10473, 2, 89, 111, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10474, 111, 65, 110, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10475, 0, 111, 39, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10476, 111, 5, 78, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10477, 32, 78, 111, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10478, 12, 78, 111, 4, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10479, 5, 90, 111, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10480, 74, 14, 111, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10481, 2, 0, 111, 4, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10482, 111, 65, 41, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10483, 16, 58, 111, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10484, 111, 59, 0, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10485, 34, 87, 111, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10486, 111, 15, 110, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10487, 106, 111, 31, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10488, 111, 15, 78, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10489, 12, 87, 111, 4, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10490, 111, 59, 17, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10491, 33, 58, 111, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10492, 32, 89, 111, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10493, 59, 78, 111, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10494, 111, 77, 17, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10495, 35, 89, 111, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10496, 111, 15, 17, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10497, 111, 77, 0, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10498, 4, 90, 111, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10499, 9, 58, 111, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10500, 101, 111, 66, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10501, 34, 17, 111, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10502, 15, 17, 111, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10503, 0, 111, 19, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10504, 111, 77, 110, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10505, 9, 89, 111, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10506, 2, 17, 111, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10507, 48, 14, 111, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10508, 0, 58, 111, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10509, 32, 17, 111, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10510, 4, 17, 111, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10511, 9, 0, 111, 4, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10512, 9, 17, 111, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10513, 102, 111, 19, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10514, 16, 78, 111, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10515, 111, 4, 58, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10516, 3, 0, 111, 4, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10517, 33, 87, 111, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10518, 111, 59, 78, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10519, 111, 65, 58, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10520, 35, 90, 111, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10521, 2, 58, 111, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10522, 77, 14, 111, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10523, 111, 0, 110, 4, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10524, 74, 58, 111, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10525, 34, 90, 111, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10526, 48, 58, 111, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10527, 111, 0, 78, 4, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10528, 12, 58, 111, 4, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10529, 111, 0, 17, 4, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10530, 48, 0, 111, 4, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10531, 111, 12, 0, 4, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10532, 35, 58, 111, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10533, 0, 78, 111, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10534, 111, 59, 58, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10535, 32, 90, 111, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10536, 32, 14, 111, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10537, 111, 4, 41, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10538, 105, 111, 39, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10539, 111, 0, 41, 4, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10540, 59, 90, 111, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10541, 15, 58, 111, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10542, 16, 87, 111, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10543, 111, 65, 0, 4, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10544, 15, 89, 111, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10545, 29, 111, 19, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10546, 111, 77, 58, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10547, 77, 78, 111, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10548, 5, 87, 111, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10549, 59, 87, 111, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10550, 77, 17, 111, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10551, 4, 87, 111, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10552, 12, 89, 111, 4, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10553, 59, 89, 111, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10554, 102, 111, 66, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10555, 4, 0, 111, 4, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10556, 9, 87, 111, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10557, 111, 59, 110, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10558, 111, 4, 78, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10559, 3, 87, 111, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10560, 0, 111, 66, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10561, 111, 4, 110, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10562, 4, 89, 111, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10563, 2, 87, 111, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10564, 59, 58, 111, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10565, 74, 17, 111, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10566, 9, 90, 111, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10567, 74, 90, 111, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10568, 111, 77, 78, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10569, 111, 65, 78, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10570, 0, 87, 111, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10571, 5, 78, 111, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10572, 35, 0, 111, 4, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10573, 3, 90, 111, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10574, 5, 89, 111, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10575, 111, 15, 41, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10576, 34, 14, 111, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10577, 29, 111, 0, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10578, 111, 15, 58, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10579, 2, 78, 111, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10580, 9, 78, 111, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10581, 35, 17, 111, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10582, 35, 87, 111, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10583, 111, 65, 17, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10584, 29, 111, 39, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10585, 59, 0, 111, 4, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10586, 3, 58, 111, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10587, 32, 0, 111, 4, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10588, 106, 111, 19, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10589, 48, 90, 111, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10590, 15, 87, 111, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10591, 2, 14, 111, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10592, 12, 90, 111, 4, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10593, 15, 78, 111, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10594, 5, 58, 111, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10595, 111, 0, 0, 4, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10596, 106, 111, 66, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10597, 101, 111, 31, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10598, 105, 111, 66, 3, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10599, 16, 14, 111, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10600, 77, 0, 111, 4, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10601, 111, 12, 78, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10602, 111, 15, 0, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10603, 33, 78, 111, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10604, 48, 89, 111, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10605, 33, 14, 111, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10606, 101, 111, 0, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10607, 2, 90, 111, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10608, 74, 78, 111, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10609, 34, 89, 111, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10610, 111, 59, 41, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10611, 34, 78, 111, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10612, 0, 17, 111, 4, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10613, 5, 17, 111, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10614, 0, 0, 130, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10615, 77, 0, 130, 4, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10616, 2, 0, 130, 4, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10617, 3, 0, 130, 4, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10618, 5, 0, 130, 4, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10619, 59, 0, 130, 4, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10620, 4, 0, 130, 4, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10621, 34, 0, 130, 4, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10622, 35, 0, 130, 4, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10623, 12, 0, 130, 4, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10624, 48, 0, 130, 4, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10625, 74, 0, 130, 4, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10626, 9, 0, 130, 4, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10627, 16, 0, 130, 4, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10628, 32, 0, 130, 4, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10629, 15, 0, 130, 4, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10630, 33, 0, 130, 4, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10631, 130, 0, 0, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10632, 130, 0, 73, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10633, 130, 0, 12, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10634, 130, 0, 60, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10635, 130, 0, 9, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10636, 130, 0, 40, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10637, 130, 0, 79, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10638, 130, 0, 50, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10639, 130, 0, 75, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10640, 130, 0, 86, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10641, 130, 0, 63, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10642, 130, 0, 21, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10643, 130, 37, 0, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10644, 130, 37, 73, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10645, 130, 37, 12, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10646, 130, 37, 60, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10647, 130, 37, 9, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10648, 130, 37, 40, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10649, 130, 37, 79, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10650, 130, 37, 50, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10651, 130, 37, 75, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10652, 130, 37, 86, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10653, 130, 37, 63, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10654, 130, 37, 21, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10655, 0, 17, 130, 4, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10656, 77, 17, 130, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10657, 2, 17, 130, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10658, 3, 17, 130, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10659, 5, 17, 130, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10660, 59, 17, 130, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10661, 4, 17, 130, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10662, 34, 17, 130, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10663, 35, 17, 130, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10664, 12, 17, 130, 4, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10665, 48, 17, 130, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10666, 74, 17, 130, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10667, 9, 17, 130, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10668, 16, 17, 130, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10669, 32, 17, 130, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10670, 15, 17, 130, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10671, 33, 17, 130, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10672, 130, 49, 0, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10673, 130, 49, 73, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10674, 130, 49, 12, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10675, 130, 49, 60, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10676, 130, 49, 9, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10677, 130, 49, 40, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10678, 130, 49, 79, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10679, 130, 49, 50, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10680, 130, 49, 75, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10681, 130, 49, 86, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10682, 130, 49, 63, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10683, 130, 49, 21, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10684, 130, 34, 0, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10685, 130, 34, 73, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10686, 130, 34, 12, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10687, 130, 34, 60, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10688, 130, 34, 9, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10689, 130, 34, 40, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10690, 130, 34, 79, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10691, 130, 34, 50, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10692, 130, 34, 75, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10693, 130, 34, 86, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10694, 130, 34, 63, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10695, 130, 34, 21, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10696, 130, 35, 0, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10697, 130, 35, 73, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10698, 130, 35, 12, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10699, 130, 35, 60, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10700, 130, 35, 9, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10701, 130, 35, 40, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10702, 130, 35, 79, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10703, 130, 35, 50, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10704, 130, 35, 75, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10705, 130, 35, 86, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10706, 130, 35, 63, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10707, 130, 35, 21, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10708, 130, 85, 0, 4, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10709, 130, 85, 73, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10710, 130, 85, 12, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10711, 130, 85, 60, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10712, 130, 85, 9, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10713, 130, 85, 40, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10714, 130, 85, 79, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10715, 130, 85, 50, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10716, 130, 85, 75, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10717, 130, 85, 86, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10718, 130, 85, 63, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10719, 130, 85, 21, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10720, 0, 58, 130, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10721, 77, 58, 130, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10722, 2, 58, 130, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10723, 3, 58, 130, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10724, 5, 58, 130, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10725, 59, 58, 130, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10726, 4, 58, 130, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10727, 34, 58, 130, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10728, 35, 58, 130, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10729, 12, 58, 130, 4, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10730, 48, 58, 130, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10731, 74, 58, 130, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10732, 9, 58, 130, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10733, 16, 58, 130, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10734, 32, 58, 130, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10735, 15, 58, 130, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10736, 33, 58, 130, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10737, 130, 72, 0, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10738, 130, 72, 73, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10739, 130, 72, 12, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10740, 130, 72, 60, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10741, 130, 72, 9, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10742, 130, 72, 40, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10743, 130, 72, 79, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10744, 130, 72, 50, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10745, 130, 72, 75, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10746, 130, 72, 86, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10747, 130, 72, 63, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10748, 130, 72, 21, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10749, 130, 81, 0, 2, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10750, 130, 81, 73, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10751, 130, 81, 12, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10752, 130, 81, 60, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10753, 130, 81, 9, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10754, 130, 81, 40, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10755, 130, 81, 79, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10756, 130, 81, 50, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10757, 130, 81, 75, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10758, 130, 81, 86, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10759, 130, 81, 63, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10760, 130, 81, 21, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10761, 130, 44, 0, 2, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10762, 130, 44, 73, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10763, 130, 44, 12, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10764, 130, 44, 60, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10765, 130, 44, 9, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10766, 130, 44, 40, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10767, 130, 44, 79, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10768, 130, 44, 50, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10769, 130, 44, 75, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10770, 130, 44, 86, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10771, 130, 44, 63, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10772, 130, 44, 21, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10773, 130, 62, 0, 2, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10774, 130, 62, 73, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10775, 130, 62, 12, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10776, 130, 62, 60, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10777, 130, 62, 9, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10778, 130, 62, 40, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10779, 130, 62, 79, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10780, 130, 62, 50, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10781, 130, 62, 75, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10782, 130, 62, 86, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10783, 130, 62, 63, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10784, 130, 62, 21, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10785, 130, 66, 0, 2, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10786, 130, 66, 73, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10787, 130, 66, 12, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10788, 130, 66, 60, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10789, 130, 66, 9, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10790, 130, 66, 40, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10791, 130, 66, 79, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10792, 130, 66, 50, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10793, 130, 66, 75, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10794, 130, 66, 86, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10795, 130, 66, 63, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10796, 130, 66, 21, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10797, 130, 56, 0, 4, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10798, 130, 56, 73, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10799, 130, 56, 12, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10800, 130, 56, 60, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10801, 130, 56, 9, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10802, 130, 56, 40, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10803, 130, 56, 79, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10804, 130, 56, 50, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10805, 130, 56, 75, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10806, 130, 56, 86, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10807, 130, 56, 63, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10808, 130, 56, 21, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10809, 0, 78, 130, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10810, 77, 78, 130, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10811, 2, 78, 130, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10812, 3, 78, 130, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10813, 5, 78, 130, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10814, 59, 78, 130, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10815, 4, 78, 130, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10816, 34, 78, 130, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10817, 35, 78, 130, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10818, 12, 78, 130, 4, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10819, 48, 78, 130, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10820, 74, 78, 130, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10821, 9, 78, 130, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10822, 16, 78, 130, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10823, 32, 78, 130, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10824, 15, 78, 130, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10825, 33, 78, 130, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10826, 0, 14, 130, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10827, 77, 14, 130, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10828, 2, 14, 130, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10829, 3, 14, 130, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10830, 5, 14, 130, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10831, 59, 14, 130, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10832, 4, 14, 130, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10833, 34, 14, 130, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10834, 35, 14, 130, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10835, 12, 14, 130, 4, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10836, 48, 14, 130, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10837, 74, 14, 130, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10838, 9, 14, 130, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10839, 16, 14, 130, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10840, 32, 14, 130, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10841, 15, 14, 130, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10842, 33, 14, 130, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10843, 130, 51, 0, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10844, 130, 51, 73, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10845, 130, 51, 12, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10846, 130, 51, 60, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10847, 130, 51, 9, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10848, 130, 51, 40, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10849, 130, 51, 79, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10850, 130, 51, 50, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10851, 130, 51, 75, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10852, 130, 51, 86, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10853, 130, 51, 63, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10854, 130, 51, 21, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10855, 130, 64, 0, 2, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10856, 130, 64, 73, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10857, 130, 64, 12, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10858, 130, 64, 60, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10859, 130, 64, 9, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10860, 130, 64, 40, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10861, 130, 64, 79, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10862, 130, 64, 50, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10863, 130, 64, 75, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10864, 130, 64, 86, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10865, 130, 64, 63, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10866, 130, 64, 21, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10867, 130, 57, 0, 2, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10868, 130, 57, 73, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10869, 130, 57, 12, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10870, 130, 57, 60, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10871, 130, 57, 9, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10872, 130, 57, 40, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10873, 130, 57, 79, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10874, 130, 57, 50, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10875, 130, 57, 75, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10876, 130, 57, 86, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10877, 130, 57, 63, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10878, 130, 57, 21, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10879, 130, 53, 0, 2, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10880, 130, 53, 73, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10881, 130, 53, 12, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10882, 130, 53, 60, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10883, 130, 53, 9, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10884, 130, 53, 40, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10885, 130, 53, 79, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10886, 130, 53, 50, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10887, 130, 53, 75, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10888, 130, 53, 86, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10889, 130, 53, 63, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10890, 130, 53, 21, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10891, 130, 20, 0, 2, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10892, 130, 20, 73, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10893, 130, 20, 12, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10894, 130, 20, 60, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10895, 130, 20, 9, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10896, 130, 20, 40, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10897, 130, 20, 79, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10898, 130, 20, 50, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10899, 130, 20, 75, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10900, 130, 20, 86, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10901, 130, 20, 63, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10902, 130, 20, 21, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10903, 130, 18, 0, 2, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10904, 130, 18, 73, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10905, 130, 18, 12, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10906, 130, 18, 60, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10907, 130, 18, 9, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10908, 130, 18, 40, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10909, 130, 18, 79, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10910, 130, 18, 50, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10911, 130, 18, 75, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10912, 130, 18, 86, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10913, 130, 18, 63, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10914, 130, 18, 21, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10915, 130, 84, 0, 4, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10916, 130, 84, 73, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10917, 130, 84, 12, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10918, 130, 84, 60, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10919, 130, 84, 9, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10920, 130, 84, 40, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10921, 130, 84, 79, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10922, 130, 84, 50, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10923, 130, 84, 75, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10924, 130, 84, 86, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10925, 130, 84, 63, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10926, 130, 84, 21, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10927, 0, 90, 130, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10928, 77, 90, 130, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10929, 2, 90, 130, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10930, 3, 90, 130, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10931, 5, 90, 130, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10932, 59, 90, 130, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10933, 4, 90, 130, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10934, 34, 90, 130, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10935, 35, 90, 130, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10936, 12, 90, 130, 4, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10937, 48, 90, 130, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10938, 74, 90, 130, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10939, 9, 90, 130, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10940, 16, 90, 130, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10941, 32, 90, 130, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10942, 15, 90, 130, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10943, 33, 90, 130, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10944, 0, 89, 130, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10945, 77, 89, 130, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10946, 2, 89, 130, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10947, 3, 89, 130, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10948, 5, 89, 130, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10949, 59, 89, 130, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10950, 4, 89, 130, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10951, 34, 89, 130, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10952, 35, 89, 130, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10953, 12, 89, 130, 4, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10954, 48, 89, 130, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10955, 74, 89, 130, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10956, 9, 89, 130, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10957, 16, 89, 130, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10958, 32, 89, 130, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10959, 15, 89, 130, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10960, 33, 89, 130, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10961, 0, 87, 130, 3, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10962, 77, 87, 130, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10963, 2, 87, 130, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10964, 3, 87, 130, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10965, 5, 87, 130, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10966, 59, 87, 130, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10967, 4, 87, 130, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10968, 34, 87, 130, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10969, 35, 87, 130, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10970, 12, 87, 130, 4, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10971, 48, 87, 130, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10972, 74, 87, 130, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10973, 9, 87, 130, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10974, 16, 87, 130, 5, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10975, 32, 87, 130, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10976, 15, 87, 130, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10977, 33, 87, 130, 6, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10978, 0, 130, 0, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10979, 0, 130, 25, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10980, 0, 130, 90, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10981, 0, 130, 89, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10982, 0, 130, 87, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10983, 46, 130, 0, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10984, 46, 130, 25, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10985, 46, 130, 90, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10986, 46, 130, 89, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10987, 46, 130, 87, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10988, 58, 130, 0, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10989, 58, 130, 25, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10990, 58, 130, 90, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10991, 58, 130, 89, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10992, 58, 130, 87, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10993, 75, 130, 0, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10994, 75, 130, 25, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10995, 75, 130, 90, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10996, 75, 130, 89, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10997, 75, 130, 87, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (10998, 28, 130, 0, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (10999, 28, 130, 25, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (11000, 28, 130, 90, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (11001, 28, 130, 89, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (11002, 28, 130, 87, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (11003, 21, 130, 0, 4, 11, 16, 1005, 464, 1001, 476, 2051, 1231), + (11004, 21, 130, 25, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (11005, 21, 130, 90, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (11006, 21, 130, 89, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095), + (11007, 21, 130, 87, 1, 11, 16, 1005, 414, 1001, 426, 2051, 1095); \ No newline at end of file diff --git a/modules/standard/implant/sql/ImplantType.sql b/modules/standard/implant/sql/ImplantType.sql new file mode 100644 index 0000000..e66aef6 --- /dev/null +++ b/modules/standard/implant/sql/ImplantType.sql @@ -0,0 +1,23 @@ +# noinspection LongLineForFile + +DROP TABLE IF EXISTS ImplantType; +CREATE TABLE IF NOT EXISTS ImplantType +( + ImplantTypeID INT NOT NULL PRIMARY KEY, + Name VARCHAR(20) NOT NULL, + ShortName VARCHAR(10) NOT NULL +); +INSERT INTO ImplantType (ImplantTypeID, Name, ShortName) +VALUES (1, 'Eye', 'eye'), + (2, 'Head', 'head'), + (3, 'Ear', 'ear'), + (4, 'Chest', 'chest'), + (5, 'Waist', 'waist'), + (6, 'Leg', 'legs'), + (7, 'Feet', 'feet'), + (8, 'Left Arm', 'larm'), + (9, 'Left Wrist', 'lwrist'), + (10, 'Left Hand', 'lhand'), + (11, 'Right Arm', 'rarm'), + (12, 'Right Wrist', 'rwrist'), + (13, 'Right Hand', 'rhand'); diff --git a/modules/standard/implant/sql/Profession.sql b/modules/standard/implant/sql/Profession.sql new file mode 100644 index 0000000..457e787 --- /dev/null +++ b/modules/standard/implant/sql/Profession.sql @@ -0,0 +1,23 @@ +# noinspection LongLineForFile + +DROP TABLE IF EXISTS Profession; +CREATE TABLE IF NOT EXISTS Profession +( + ID INT NOT NULL PRIMARY KEY, + Name VARCHAR(20) NOT NULL +); +INSERT INTO Profession (ID, Name) +VALUES (1, 'Adventurer'), + (2, 'Agent'), + (3, 'Bureaucrat'), + (4, 'Doctor'), + (5, 'Enforcer'), + (6, 'Engineer'), + (7, 'Fixer'), + (8, 'Keeper'), + (9, 'Martial Artist'), + (10, 'Meta-Physicist'), + (11, 'Nano-Technician'), + (12, 'Shade'), + (13, 'Soldier'), + (14, 'Trader'); diff --git a/modules/standard/implant/sql/Symbiant.sql b/modules/standard/implant/sql/Symbiant.sql new file mode 100644 index 0000000..25a0f02 --- /dev/null +++ b/modules/standard/implant/sql/Symbiant.sql @@ -0,0 +1,1125 @@ +# noinspection LongLineForFile + +DROP TABLE IF EXISTS Symbiant; +CREATE TABLE IF NOT EXISTS Symbiant +( + ID INT NOT NULL PRIMARY KEY, + Name VARCHAR(100) NOT NULL, + QL INT NOT NULL, + SlotID INT NOT NULL, + TreatmentReq INT NOT NULL, + LevelReq INT NOT NULL +); +INSERT INTO Symbiant (ID, Name, QL, SlotID, TreatmentReq, LevelReq) +VALUES (1, 'Active Brain Symbiant, Control Unit Aban', 170, 2, 1011, 125), + (2, 'Active Brain Symbiant, Extermination Unit Aban', 170, 2, 1011, 125), + (3, 'Active Chest Symbiant, Artillery Unit Aban', 170, 4, 1011, 125), + (4, 'Active Chest Symbiant, Control Unit Aban', 170, 4, 1011, 125), + (5, 'Active Chest Symbiant, Extermination Unit Aban', 170, 4, 1011, 125), + (6, 'Active Chest Symbiant, Infantry Unit Aban', 170, 4, 1011, 125), + (7, 'Active Ear Symbiant, Artillery Unit Aban', 170, 3, 1011, 125), + (8, 'Active Ear Symbiant, Control Unit Aban', 170, 3, 1011, 125), + (9, 'Active Ear Symbiant, Infantry Unit Aban', 170, 3, 1011, 125), + (10, 'Active Feet Symbiant, Artillery Unit Aban', 170, 7, 1011, 125), + (11, 'Active Feet Symbiant, Extermination Unit Aban', 170, 7, 1011, 125), + (12, 'Active Feet Symbiant, Infantry Unit Aban', 170, 7, 1011, 125), + (13, 'Active Feet Symbiant, Support Unit Aban', 170, 7, 1011, 125), + (14, 'Active Left Arm Symbiant, Control Unit Aban', 170, 8, 1011, 125), + (15, 'Active Left Arm Symbiant, Extermination Unit Aban', 170, 8, 1011, 125), + (16, 'Active Left Hand Symbiant, Support Unit Aban', 170, 10, 1011, 125), + (17, 'Active Left Wrist Symbiant, Extermination Unit Aban', 170, 9, 1011, 125), + (18, 'Active Ocular Symbiant, Artillery Unit Aban', 170, 1, 1011, 125), + (19, 'Active Ocular Symbiant, Extermination Unit Aban', 170, 1, 1011, 125), + (20, 'Active Ocular Symbiant, Support Unit Aban', 170, 1, 1011, 125), + (21, 'Active Right Arm Symbiant, Extermination Unit Aban', 170, 11, 1011, 125), + (22, 'Active Right Arm Symbiant, Infantry Unit Aban', 170, 11, 1011, 125), + (23, 'Active Right Arm Symbiant, Support Unit Aban', 170, 11, 1011, 125), + (24, 'Active Right Hand Symbiant, Artillery Unit Aban', 170, 13, 1011, 125), + (25, 'Active Right Hand Symbiant, Control Unit Aban', 170, 13, 1011, 125), + (26, 'Active Right Hand Symbiant, Extermination Unit Aban', 170, 13, 1011, 125), + (27, 'Active Right Hand Symbiant, Support Unit Aban', 170, 13, 1011, 125), + (28, 'Active Right Wrist Symbiant, Control Unit Aban', 170, 12, 1011, 125), + (29, 'Active Right Wrist Symbiant, Extermination Unit Aban', 170, 12, 1011, 125), + (30, 'Active Right Wrist Symbiant, Support Unit Aban', 170, 12, 1011, 125), + (31, 'Active Thigh Symbiant, Control Unit Aban', 170, 6, 1011, 125), + (32, 'Active Thigh Symbiant, Extermination Unit Aban', 170, 6, 1011, 125), + (33, 'Active Thigh Symbiant, Infantry Unit Aban', 170, 6, 1011, 125), + (34, 'Active Thigh Symbiant, Support Unit Aban', 170, 6, 1011, 125), + (35, 'Active Waist Symbiant, Artillery Unit Aban', 170, 5, 1011, 125), + (36, 'Active Waist Symbiant, Extermination Unit Aban', 170, 5, 1011, 125), + (37, 'Active Waist Symbiant, Infantry Unit Aban', 170, 5, 1011, 125), + (38, 'Active Waist Symbiant, Support Unit Aban', 170, 5, 1011, 125), + (39, 'Alert Brain Symbiant, Infantry Unit Aban', 280, 2, 2042, 205), + (40, 'Alert Brain Symbiant, Support Unit Aban', 280, 2, 2042, 205), + (41, 'Alert Chest Symbiant, Control Unit Aban', 280, 4, 2042, 205), + (42, 'Alert Ear Symbiant, Infantry Unit Aban', 280, 3, 2042, 205), + (43, 'Alert Feet Symbiant, Support Unit Aban', 280, 7, 2042, 205), + (44, 'Alert Left Arm Symbiant, Extermination Unit Aban', 280, 8, 2042, 205), + (45, 'Alert Left Hand Symbiant, Control Unit Aban', 280, 10, 2042, 205), + (46, 'Alert Left Hand Symbiant, Extermination Unit Aban', 280, 10, 2042, 205), + (47, 'Alert Left Wrist Symbiant, Artillery Unit Aban', 280, 9, 2042, 205), + (48, 'Alert Left Wrist Symbiant, Extermination Unit Aban', 280, 9, 2042, 205), + (49, 'Alert Ocular Symbiant, Control Unit Aban', 280, 1, 2042, 205), + (50, 'Alert Ocular Symbiant, Extermination Unit Aban', 280, 1, 2042, 205), + (51, 'Alert Ocular Symbiant, Infantry Unit Aban', 280, 1, 2042, 205), + (52, 'Alert Right Arm Symbiant, Extermination Unit Aban', 280, 11, 2042, 205), + (53, 'Alert Right Hand Symbiant, Artillery Unit Aban', 280, 13, 2042, 205), + (54, 'Alert Right Wrist Symbiant, Infantry Unit Aban', 280, 12, 2042, 205), + (55, 'Alert Thigh Symbiant, Artillery Unit Aban', 280, 6, 2042, 205), + (56, 'Alert Waist Symbiant, Artillery Unit Aban', 280, 5, 2042, 205), + (57, 'Alert Waist Symbiant, Extermination Unit Aban', 280, 5, 2042, 205), + (58, 'Alert Waist Symbiant, Support Unit Aban', 280, 5, 2042, 205), + (59, 'Animated Brain Symbiant, Extermination Unit Aban', 70, 2, 420, 52), + (60, 'Animated Chest Symbiant, Artillery Unit Aban', 70, 4, 420, 52), + (61, 'Animated Ear Symbiant, Control Unit Aban', 70, 3, 420, 52), + (62, 'Animated Ear Symbiant, Infantry Unit Aban', 70, 3, 420, 52), + (63, 'Animated Ear Symbiant, Support Unit Aban', 70, 3, 420, 52), + (64, 'Animated Feet Symbiant, Control Unit Aban', 70, 7, 420, 52), + (65, 'Animated Feet Symbiant, Extermination Unit Aban', 70, 7, 420, 52), + (66, 'Animated Left Arm Symbiant, Infantry Unit Aban', 70, 8, 420, 52), + (67, 'Animated Left Hand Symbiant, Extermination Unit Aban', 70, 10, 420, 52), + (68, 'Animated Left Wrist Symbiant, Infantry Unit Aban', 70, 9, 420, 52), + (69, 'Animated Ocular Symbiant, Artillery Unit Aban', 70, 1, 420, 52), + (70, 'Animated Ocular Symbiant, Control Unit Aban', 70, 1, 420, 52), + (71, 'Animated Ocular Symbiant, Extermination Unit Aban', 70, 1, 420, 52), + (72, 'Animated Ocular Symbiant, Infantry Unit Aban', 70, 1, 420, 52), + (73, 'Animated Ocular Symbiant, Support Unit Aban', 70, 1, 420, 52), + (74, 'Animated Right Arm Symbiant, Artillery Unit Aban', 70, 11, 420, 52), + (75, 'Animated Right Arm Symbiant, Extermination Unit Aban', 70, 11, 420, 52), + (76, 'Animated Right Hand Symbiant, Infantry Unit Aban', 70, 13, 420, 52), + (77, 'Animated Right Hand Symbiant, Support Unit Aban', 70, 13, 420, 52), + (78, 'Animated Right Wrist Symbiant, Artillery Unit Aban', 70, 12, 420, 52), + (79, 'Animated Right Wrist Symbiant, Control Unit Aban', 70, 12, 420, 52), + (80, 'Animated Right Wrist Symbiant, Extermination Unit Aban', 70, 12, 420, 52), + (81, 'Animated Right Wrist Symbiant, Infantry Unit Aban', 70, 12, 420, 52), + (82, 'Animated Right Wrist Symbiant, Support Unit Aban', 70, 12, 420, 52), + (83, 'Animated Thigh Symbiant, Control Unit Aban', 70, 6, 420, 52), + (84, 'Animated Thigh Symbiant, Extermination Unit Aban', 70, 6, 420, 52), + (85, 'Animated Thigh Symbiant, Support Unit Aban', 70, 6, 420, 52), + (86, 'Animated Waist Symbiant, Infantry Unit Aban', 70, 5, 420, 52), + (87, 'Animated Waist Symbiant, Support Unit Aban', 70, 5, 420, 52), + (88, 'Awakened Brain Symbiant, Artillery Unit Aban', 180, 2, 1070, 132), + (89, 'Awakened Brain Symbiant, Extermination Unit Aban', 180, 2, 1070, 132), + (90, 'Awakened Brain Symbiant, Infantry Unit Aban', 180, 2, 1070, 132), + (91, 'Awakened Chest Symbiant, Artillery Unit Aban', 180, 4, 1070, 132), + (92, 'Awakened Chest Symbiant, Control Unit Aban', 180, 4, 1070, 132), + (93, 'Awakened Chest Symbiant, Extermination Unit Aban', 180, 4, 1070, 132), + (94, 'Awakened Chest Symbiant, Infantry Unit Aban', 180, 4, 1070, 132), + (95, 'Awakened Chest Symbiant, Support Unit Aban', 180, 4, 1070, 132), + (96, 'Awakened Ear Symbiant, Artillery Unit Aban', 180, 3, 1070, 132), + (97, 'Awakened Ear Symbiant, Control Unit Aban', 180, 3, 1070, 132), + (98, 'Awakened Ear Symbiant, Extermination Unit Aban', 180, 3, 1070, 132), + (99, 'Awakened Ear Symbiant, Support Unit Aban', 180, 3, 1070, 132), + (100, 'Awakened Feet Symbiant, Support Unit Aban', 180, 7, 1070, 132), + (101, 'Awakened Left Arm Symbiant, Artillery Unit Aban', 180, 8, 1070, 132), + (102, 'Awakened Left Arm Symbiant, Extermination Unit Aban', 180, 8, 1070, 132), + (103, 'Awakened Left Arm Symbiant, Support Unit Aban', 180, 8, 1070, 132), + (104, 'Awakened Left Hand Symbiant, Extermination Unit Aban', 180, 10, 1070, 132), + (105, 'Awakened Left Wrist Symbiant, Extermination Unit Aban', 180, 9, 1070, 132), + (106, 'Awakened Left Wrist Symbiant, Infantry Unit Aban', 180, 9, 1070, 132), + (107, 'Awakened Left Wrist Symbiant, Support Unit Aban', 180, 9, 1070, 132), + (108, 'Awakened Right Arm Symbiant, Artillery Unit Aban', 180, 11, 1070, 132), + (109, 'Awakened Right Arm Symbiant, Infantry Unit Aban', 180, 11, 1070, 132), + (110, 'Awakened Right Arm Symbiant, Support Unit Aban', 180, 11, 1070, 132), + (111, 'Awakened Right Hand Symbiant, Control Unit Aban', 180, 13, 1070, 132), + (112, 'Awakened Right Hand Symbiant, Support Unit Aban', 180, 13, 1070, 132), + (113, 'Awakened Thigh Symbiant, Control Unit Aban', 180, 6, 1070, 132), + (114, 'Awakened Thigh Symbiant, Extermination Unit Aban', 180, 6, 1070, 132), + (115, 'Awakened Thigh Symbiant, Infantry Unit Aban', 180, 6, 1070, 132), + (116, 'Awakened Thigh Symbiant, Support Unit Aban', 180, 6, 1070, 132), + (117, 'Awakened Waist Symbiant, Control Unit Aban', 180, 5, 1070, 132), + (118, 'Awakened Waist Symbiant, Infantry Unit Aban', 180, 5, 1070, 132), + (119, 'Breathing Brain Symbiant, Artillery Unit Aban', 100, 2, 597, 73), + (120, 'Breathing Brain Symbiant, Extermination Unit Aban', 100, 2, 597, 73), + (121, 'Breathing Chest Symbiant, Extermination Unit Aban', 100, 4, 597, 73), + (122, 'Breathing Ear Symbiant, Artillery Unit Aban', 100, 3, 597, 73), + (123, 'Breathing Ear Symbiant, Infantry Unit Aban', 100, 3, 597, 73), + (124, 'Breathing Ear Symbiant, Support Unit Aban', 100, 3, 597, 73), + (125, 'Breathing Feet Symbiant, Support Unit Aban', 100, 7, 597, 73), + (126, 'Breathing Left Arm Symbiant, Artillery Unit Aban', 100, 8, 597, 73), + (127, 'Breathing Left Arm Symbiant, Control Unit Aban', 100, 8, 597, 73), + (128, 'Breathing Left Arm Symbiant, Infantry Unit Aban', 100, 8, 597, 73), + (129, 'Breathing Left Arm Symbiant, Support Unit Aban', 100, 8, 597, 73), + (130, 'Breathing Left Hand Symbiant, Control Unit Aban', 100, 10, 597, 73), + (131, 'Breathing Left Hand Symbiant, Extermination Unit Aban', 100, 10, 597, 73), + (132, 'Breathing Left Hand Symbiant, Support Unit Aban', 100, 10, 597, 73), + (133, 'Breathing Left Wrist Symbiant, Artillery Unit Aban', 100, 9, 597, 73), + (134, 'Breathing Left Wrist Symbiant, Infantry Unit Aban', 100, 9, 597, 73), + (135, 'Breathing Left Wrist Symbiant, Support Unit Aban', 100, 9, 597, 73), + (136, 'Breathing Ocular Symbiant, Artillery Unit Aban', 100, 1, 597, 73), + (137, 'Breathing Ocular Symbiant, Support Unit Aban', 100, 1, 597, 73), + (138, 'Breathing Right Arm Symbiant, Artillery Unit Aban', 100, 11, 597, 73), + (139, 'Breathing Right Arm Symbiant, Control Unit Aban', 100, 11, 597, 73), + (140, 'Breathing Right Arm Symbiant, Infantry Unit Aban', 100, 11, 597, 73), + (141, 'Breathing Right Arm Symbiant, Support Unit Aban', 100, 11, 597, 73), + (142, 'Breathing Right Hand Symbiant, Artillery Unit Aban', 100, 13, 597, 73), + (143, 'Breathing Right Hand Symbiant, Control Unit Aban', 100, 13, 597, 73), + (144, 'Breathing Right Hand Symbiant, Extermination Unit Aban', 100, 13, 597, 73), + (145, 'Breathing Right Hand Symbiant, Infantry Unit Aban', 100, 13, 597, 73), + (146, 'Breathing Right Hand Symbiant, Support Unit Aban', 100, 13, 597, 73), + (147, 'Breathing Right Wrist Symbiant, Artillery Unit Aban', 100, 12, 597, 73), + (148, 'Breathing Thigh Symbiant, Extermination Unit Aban', 100, 6, 597, 73), + (149, 'Breathing Thigh Symbiant, Infantry Unit Aban', 100, 6, 597, 73), + (150, 'Breathing Waist Symbiant, Infantry Unit Aban', 100, 5, 597, 73), + (151, 'Breathing Waist Symbiant, Support Unit Aban', 100, 5, 597, 73), + (152, 'Cognizant Brain Symbiant, Control Unit Aban', 270, 2, 1970, 198), + (153, 'Cognizant Brain Symbiant, Extermination Unit Aban', 270, 2, 1970, 198), + (154, 'Cognizant Chest Symbiant, Control Unit Aban', 270, 4, 1970, 198), + (155, 'Cognizant Chest Symbiant, Infantry Unit Aban', 270, 4, 1970, 198), + (156, 'Cognizant Chest Symbiant, Support Unit Aban', 270, 4, 1970, 198), + (157, 'Cognizant Ear Symbiant, Artillery Unit Aban', 270, 3, 1970, 198), + (158, 'Cognizant Ear Symbiant, Control Unit Aban', 270, 3, 1970, 198), + (159, 'Cognizant Ear Symbiant, Extermination Unit Aban', 270, 3, 1970, 198), + (160, 'Cognizant Ear Symbiant, Infantry Unit Aban', 270, 3, 1970, 198), + (161, 'Cognizant Feet Symbiant, Control Unit Aban', 270, 7, 1970, 198), + (162, 'Cognizant Feet Symbiant, Extermination Unit Aban', 270, 7, 1970, 198), + (163, 'Cognizant Feet Symbiant, Infantry Unit Aban', 270, 7, 1970, 198), + (164, 'Cognizant Feet Symbiant, Support Unit Aban', 270, 7, 1970, 198), + (165, 'Cognizant Left Arm Symbiant, Control Unit Aban', 270, 8, 1970, 198), + (166, 'Cognizant Left Arm Symbiant, Extermination Unit Aban', 270, 8, 1970, 198), + (167, 'Cognizant Left Arm Symbiant, Infantry Unit Aban', 270, 8, 1970, 198), + (168, 'Cognizant Left Arm Symbiant, Support Unit Aban', 270, 8, 1970, 198), + (169, 'Cognizant Left Hand Symbiant, Artillery Unit Aban', 270, 10, 1970, 198), + (170, 'Cognizant Left Hand Symbiant, Infantry Unit Aban', 270, 10, 1970, 198), + (171, 'Cognizant Left Wrist Symbiant, Artillery Unit Aban', 270, 9, 1970, 198), + (172, 'Cognizant Left Wrist Symbiant, Extermination Unit Aban', 270, 9, 1970, 198), + (173, 'Cognizant Left Wrist Symbiant, Support Unit Aban', 270, 9, 1970, 198), + (174, 'Cognizant Ocular Symbiant, Control Unit Aban', 270, 1, 1970, 198), + (175, 'Cognizant Ocular Symbiant, Extermination Unit Aban', 270, 1, 1970, 198), + (176, 'Cognizant Right Arm Symbiant, Control Unit Aban', 270, 11, 1970, 198), + (177, 'Cognizant Right Arm Symbiant, Support Unit Aban', 270, 11, 1970, 198), + (178, 'Cognizant Right Hand Symbiant, Support Unit Aban', 270, 13, 1970, 198), + (179, 'Cognizant Right Wrist Symbiant, Artillery Unit Aban', 270, 12, 1970, 198), + (180, 'Cognizant Right Wrist Symbiant, Control Unit Aban', 270, 12, 1970, 198), + (181, 'Cognizant Thigh Symbiant, Artillery Unit Aban', 270, 6, 1970, 198), + (182, 'Cognizant Thigh Symbiant, Extermination Unit Aban', 270, 6, 1970, 198), + (183, 'Cognizant Thigh Symbiant, Infantry Unit Aban', 270, 6, 1970, 198), + (184, 'Cognizant Waist Symbiant, Control Unit Aban', 270, 5, 1970, 198), + (185, 'Conscious Brain Symbiant, Artillery Unit Aban', 290, 2, 2115, 212), + (186, 'Conscious Brain Symbiant, Infantry Unit Aban', 290, 2, 2115, 212), + (187, 'Conscious Chest Symbiant, Artillery Unit Aban', 290, 4, 2115, 212), + (188, 'Conscious Chest Symbiant, Extermination Unit Aban', 290, 4, 2115, 212), + (189, 'Conscious Chest Symbiant, Support Unit Aban', 290, 4, 2115, 212), + (190, 'Conscious Feet Symbiant, Artillery Unit Aban', 290, 7, 2115, 212), + (191, 'Conscious Feet Symbiant, Extermination Unit Aban', 290, 7, 2115, 212), + (192, 'Conscious Feet Symbiant, Infantry Unit Aban', 290, 7, 2115, 212), + (193, 'Conscious Feet Symbiant, Support Unit Aban', 290, 7, 2115, 212), + (194, 'Conscious Left Arm Symbiant, Artillery Unit Aban', 290, 8, 2115, 212), + (195, 'Conscious Left Arm Symbiant, Support Unit Aban', 290, 8, 2115, 212), + (196, 'Conscious Left Hand Symbiant, Extermination Unit Aban', 290, 10, 2115, 212), + (197, 'Conscious Left Hand Symbiant, Infantry Unit Aban', 290, 10, 2115, 212), + (198, 'Conscious Left Wrist Symbiant, Artillery Unit Aban', 290, 9, 2115, 212), + (199, 'Conscious Left Wrist Symbiant, Control Unit Aban', 290, 9, 2115, 212), + (200, 'Conscious Left Wrist Symbiant, Infantry Unit Aban', 290, 9, 2115, 212), + (201, 'Conscious Ocular Symbiant, Artillery Unit Aban', 290, 1, 2115, 212), + (202, 'Conscious Ocular Symbiant, Extermination Unit Aban', 290, 1, 2115, 212), + (203, 'Conscious Right Arm Symbiant, Extermination Unit Aban', 290, 11, 2115, 212), + (204, 'Conscious Right Arm Symbiant, Support Unit Aban', 290, 11, 2115, 212), + (205, 'Conscious Right Hand Symbiant, Extermination Unit Aban', 290, 13, 2115, 212), + (206, 'Conscious Right Hand Symbiant, Infantry Unit Aban', 290, 13, 2115, 212), + (207, 'Conscious Right Wrist Symbiant, Control Unit Aban', 290, 12, 2115, 212), + (208, 'Conscious Right Wrist Symbiant, Extermination Unit Aban', 290, 12, 2115, 212), + (209, 'Conscious Right Wrist Symbiant, Infantry Unit Aban', 290, 12, 2115, 212), + (210, 'Conscious Thigh Symbiant, Artillery Unit Aban', 290, 6, 2115, 212), + (211, 'Conscious Thigh Symbiant, Control Unit Aban', 290, 6, 2115, 212), + (212, 'Conscious Thigh Symbiant, Extermination Unit Aban', 290, 6, 2115, 212), + (213, 'Conscious Thigh Symbiant, Support Unit Aban', 290, 6, 2115, 212), + (214, 'Conscious Waist Symbiant, Artillery Unit Aban', 290, 5, 2115, 212), + (215, 'Conscious Waist Symbiant, Extermination Unit Aban', 290, 5, 2115, 212), + (216, 'Conscious Waist Symbiant, Infantry Unit Aban', 290, 5, 2115, 212), + (217, 'Dispirited Brain Symbiant, Support Unit Aban', 50, 2, 301, 37), + (218, 'Dispirited Chest Symbiant, Artillery Unit Aban', 50, 4, 301, 37), + (219, 'Dispirited Chest Symbiant, Extermination Unit Aban', 50, 4, 301, 37), + (220, 'Dispirited Chest Symbiant, Support Unit Aban', 50, 4, 301, 37), + (221, 'Dispirited Ear Symbiant, Extermination Unit Aban', 50, 3, 301, 37), + (222, 'Dispirited Ear Symbiant, Support Unit Aban', 50, 3, 301, 37), + (223, 'Dispirited Feet Symbiant, Artillery Unit Aban', 50, 7, 301, 37), + (224, 'Dispirited Feet Symbiant, Control Unit Aban', 50, 7, 301, 37), + (225, 'Dispirited Feet Symbiant, Support Unit Aban', 50, 7, 301, 37), + (226, 'Dispirited Left Arm Symbiant, Artillery Unit Aban', 50, 8, 301, 37), + (227, 'Dispirited Left Arm Symbiant, Support Unit Aban', 50, 8, 301, 37), + (228, 'Dispirited Left Hand Symbiant, Control Unit Aban', 50, 10, 301, 37), + (229, 'Dispirited Left Hand Symbiant, Extermination Unit Aban', 50, 10, 301, 37), + (230, 'Dispirited Left Hand Symbiant, Infantry Unit Aban', 50, 10, 301, 37), + (231, 'Dispirited Left Wrist Symbiant, Control Unit Aban', 50, 9, 301, 37), + (232, 'Dispirited Left Wrist Symbiant, Infantry Unit Aban', 50, 9, 301, 37), + (233, 'Dispirited Left Wrist Symbiant, Support Unit Aban', 50, 9, 301, 37), + (234, 'Dispirited Ocular Symbiant, Artillery Unit Aban', 50, 1, 301, 37), + (235, 'Dispirited Ocular Symbiant, Extermination Unit Aban', 50, 1, 301, 37), + (236, 'Dispirited Ocular Symbiant, Support Unit Aban', 50, 1, 301, 37), + (237, 'Dispirited Right Arm Symbiant, Artillery Unit Aban', 50, 11, 301, 37), + (238, 'Dispirited Right Arm Symbiant, Infantry Unit Aban', 50, 11, 301, 37), + (239, 'Dispirited Right Hand Symbiant, Control Unit Aban', 50, 13, 301, 37), + (240, 'Dispirited Right Hand Symbiant, Extermination Unit Aban', 50, 13, 301, 37), + (241, 'Dispirited Thigh Symbiant, Extermination Unit Aban', 50, 6, 301, 37), + (242, 'Dispirited Waist Symbiant, Artillery Unit Aban', 50, 5, 301, 37), + (243, 'Dispirited Waist Symbiant, Control Unit Aban', 50, 5, 301, 37), + (244, 'Dispirited Waist Symbiant, Extermination Unit Aban', 50, 5, 301, 37), + (245, 'Dispirited Waist Symbiant, Support Unit Aban', 50, 5, 301, 37), + (246, 'Effective Chest Symbiant, Control Unit Aban', 240, 4, 1533, 176), + (247, 'Effective Chest Symbiant, Support Unit Aban', 240, 4, 1533, 176), + (248, 'Effective Ear Symbiant, Support Unit Aban', 240, 3, 1533, 176), + (249, 'Effective Feet Symbiant, Artillery Unit Aban', 240, 7, 1533, 176), + (250, 'Effective Feet Symbiant, Extermination Unit Aban', 240, 7, 1533, 176), + (251, 'Effective Feet Symbiant, Infantry Unit Aban', 240, 7, 1533, 176), + (252, 'Effective Feet Symbiant, Support Unit Aban', 240, 7, 1533, 176), + (253, 'Effective Left Arm Symbiant, Artillery Unit Aban', 240, 8, 1533, 176), + (254, 'Effective Left Arm Symbiant, Control Unit Aban', 240, 8, 1533, 176), + (255, 'Effective Left Arm Symbiant, Support Unit Aban', 240, 8, 1533, 176), + (256, 'Effective Left Hand Symbiant, Artillery Unit Aban', 240, 10, 1533, 176), + (257, 'Effective Left Hand Symbiant, Control Unit Aban', 240, 10, 1533, 176), + (258, 'Effective Left Hand Symbiant, Extermination Unit Aban', 240, 10, 1533, 176), + (259, 'Effective Left Wrist Symbiant, Control Unit Aban', 240, 9, 1533, 176), + (260, 'Effective Left Wrist Symbiant, Infantry Unit Aban', 240, 9, 1533, 176), + (261, 'Effective Ocular Symbiant, Control Unit Aban', 240, 1, 1533, 176), + (262, 'Effective Ocular Symbiant, Extermination Unit Aban', 240, 1, 1533, 176), + (263, 'Effective Right Arm Symbiant, Control Unit Aban', 240, 11, 1533, 176), + (264, 'Effective Right Arm Symbiant, Extermination Unit Aban', 240, 11, 1533, 176), + (265, 'Effective Right Arm Symbiant, Infantry Unit Aban', 240, 11, 1533, 176), + (266, 'Effective Right Arm Symbiant, Support Unit Aban', 240, 11, 1533, 176), + (267, 'Effective Right Hand Symbiant, Artillery Unit Aban', 240, 13, 1533, 176), + (268, 'Effective Right Wrist Symbiant, Artillery Unit Aban', 240, 12, 1533, 176), + (269, 'Effective Thigh Symbiant, Extermination Unit Aban', 240, 6, 1533, 176), + (270, 'Effective Thigh Symbiant, Support Unit Aban', 240, 6, 1533, 176), + (271, 'Effective Waist Symbiant, Extermination Unit Aban', 240, 5, 1533, 176), + (272, 'Effective Waist Symbiant, Infantry Unit Aban', 240, 5, 1533, 176), + (273, 'Enduring Brain Symbiant, Support Unit Aban', 190, 2, 1129, 139), + (274, 'Enduring Chest Symbiant, Artillery Unit Aban', 190, 4, 1129, 139), + (275, 'Enduring Ear Symbiant, Control Unit Aban', 190, 3, 1129, 139), + (276, 'Enduring Ear Symbiant, Extermination Unit Aban', 190, 3, 1129, 139), + (277, 'Enduring Feet Symbiant, Artillery Unit Aban', 190, 7, 1129, 139), + (278, 'Enduring Feet Symbiant, Control Unit Aban', 190, 7, 1129, 139), + (279, 'Enduring Feet Symbiant, Extermination Unit Aban', 190, 7, 1129, 139), + (280, 'Enduring Feet Symbiant, Infantry Unit Aban', 190, 7, 1129, 139), + (281, 'Enduring Left Arm Symbiant, Extermination Unit Aban', 190, 8, 1129, 139), + (282, 'Enduring Left Hand Symbiant, Extermination Unit Aban', 190, 10, 1129, 139), + (283, 'Enduring Left Hand Symbiant, Infantry Unit Aban', 190, 10, 1129, 139), + (284, 'Enduring Left Hand Symbiant, Support Unit Aban', 190, 10, 1129, 139), + (285, 'Enduring Left Wrist Symbiant, Artillery Unit Aban', 190, 9, 1129, 139), + (286, 'Enduring Left Wrist Symbiant, Control Unit Aban', 190, 9, 1129, 139), + (287, 'Enduring Left Wrist Symbiant, Extermination Unit Aban', 190, 9, 1129, 139), + (288, 'Enduring Ocular Symbiant, Artillery Unit Aban', 190, 1, 1129, 139), + (289, 'Enduring Right Arm Symbiant, Artillery Unit Aban', 190, 11, 1129, 139), + (290, 'Enduring Right Arm Symbiant, Support Unit Aban', 190, 11, 1129, 139), + (291, 'Enduring Right Hand Symbiant, Extermination Unit Aban', 190, 13, 1129, 139), + (292, 'Enduring Right Hand Symbiant, Infantry Unit Aban', 190, 13, 1129, 139), + (293, 'Enduring Right Wrist Symbiant, Control Unit Aban', 190, 12, 1129, 139), + (294, 'Enduring Right Wrist Symbiant, Support Unit Aban', 190, 12, 1129, 139), + (295, 'Enduring Thigh Symbiant, Artillery Unit Aban', 190, 6, 1129, 139), + (296, 'Enduring Waist Symbiant, Artillery Unit Aban', 190, 5, 1129, 139), + (297, 'Enduring Waist Symbiant, Control Unit Aban', 190, 5, 1129, 139), + (298, 'Excited Brain Symbiant, Artillery Unit Aban', 250, 2, 1824, 183), + (299, 'Excited Brain Symbiant, Control Unit Aban', 250, 2, 1824, 183), + (300, 'Excited Brain Symbiant, Extermination Unit Aban', 250, 2, 1824, 183), + (301, 'Excited Brain Symbiant, Support Unit Aban', 250, 2, 1824, 183), + (302, 'Excited Chest Symbiant, Artillery Unit Aban', 250, 4, 1824, 183), + (303, 'Excited Chest Symbiant, Control Unit Aban', 250, 4, 1824, 183), + (304, 'Excited Chest Symbiant, Extermination Unit Aban', 250, 4, 1824, 183), + (305, 'Excited Chest Symbiant, Support Unit Aban', 250, 4, 1824, 183), + (306, 'Excited Ear Symbiant, Extermination Unit Aban', 250, 3, 1824, 183), + (307, 'Excited Ear Symbiant, Infantry Unit Aban', 250, 3, 1824, 183), + (308, 'Excited Feet Symbiant, Artillery Unit Aban', 250, 7, 1824, 183), + (309, 'Excited Feet Symbiant, Control Unit Aban', 250, 7, 1824, 183), + (310, 'Excited Left Arm Symbiant, Control Unit Aban', 250, 8, 1824, 183), + (311, 'Excited Left Arm Symbiant, Extermination Unit Aban', 250, 8, 1824, 183), + (312, 'Excited Left Hand Symbiant, Artillery Unit Aban', 250, 10, 1824, 183), + (313, 'Excited Left Hand Symbiant, Control Unit Aban', 250, 10, 1824, 183), + (314, 'Excited Left Wrist Symbiant, Control Unit Aban', 250, 9, 1824, 183), + (315, 'Excited Left Wrist Symbiant, Extermination Unit Aban', 250, 9, 1824, 183), + (316, 'Excited Ocular Symbiant, Infantry Unit Aban', 250, 1, 1824, 183), + (317, 'Excited Ocular Symbiant, Support Unit Aban', 250, 1, 1824, 183), + (318, 'Excited Right Arm Symbiant, Extermination Unit Aban', 250, 11, 1824, 183), + (319, 'Excited Right Arm Symbiant, Infantry Unit Aban', 250, 11, 1824, 183), + (320, 'Excited Right Hand Symbiant, Control Unit Aban', 250, 13, 1824, 183), + (321, 'Excited Right Hand Symbiant, Infantry Unit Aban', 250, 13, 1824, 183), + (322, 'Excited Right Wrist Symbiant, Artillery Unit Aban', 250, 12, 1824, 183), + (323, 'Excited Right Wrist Symbiant, Infantry Unit Aban', 250, 12, 1824, 183), + (324, 'Excited Thigh Symbiant, Artillery Unit Aban', 250, 6, 1824, 183), + (325, 'Excited Thigh Symbiant, Control Unit Aban', 250, 6, 1824, 183), + (326, 'Excited Thigh Symbiant, Infantry Unit Aban', 250, 6, 1824, 183), + (327, 'Excited Thigh Symbiant, Support Unit Aban', 250, 6, 1824, 183), + (328, 'Excited Waist Symbiant, Extermination Unit Aban', 250, 5, 1824, 183), + (329, 'Growing Brain Symbiant, Artillery Unit Aban', 200, 2, 1188, 146), + (330, 'Growing Brain Symbiant, Control Unit Aban', 200, 2, 1188, 146), + (331, 'Growing Brain Symbiant, Extermination Unit Aban', 200, 2, 1188, 146), + (332, 'Growing Chest Symbiant, Artillery Unit Aban', 200, 4, 1188, 146), + (333, 'Growing Chest Symbiant, Extermination Unit Aban', 200, 4, 1188, 146), + (334, 'Growing Chest Symbiant, Infantry Unit Aban', 200, 4, 1188, 146), + (335, 'Growing Ear Symbiant, Extermination Unit Aban', 200, 3, 1188, 146), + (336, 'Growing Ear Symbiant, Infantry Unit Aban', 200, 3, 1188, 146), + (337, 'Growing Ear Symbiant, Support Unit Aban', 200, 3, 1188, 146), + (338, 'Growing Feet Symbiant, Artillery Unit Aban', 200, 7, 1188, 146), + (339, 'Growing Feet Symbiant, Control Unit Aban', 200, 7, 1188, 146), + (340, 'Growing Left Arm Symbiant, Control Unit Aban', 200, 8, 1188, 146), + (341, 'Growing Left Hand Symbiant, Control Unit Aban', 200, 10, 1188, 146), + (342, 'Growing Left Hand Symbiant, Extermination Unit Aban', 200, 10, 1188, 146), + (343, 'Growing Left Hand Symbiant, Infantry Unit Aban', 200, 10, 1188, 146), + (344, 'Growing Left Wrist Symbiant, Extermination Unit Aban', 200, 9, 1188, 146), + (345, 'Growing Left Wrist Symbiant, Infantry Unit Aban', 200, 9, 1188, 146), + (346, 'Growing Ocular Symbiant, Extermination Unit Aban', 200, 1, 1188, 146), + (347, 'Growing Ocular Symbiant, Infantry Unit Aban', 200, 1, 1188, 146), + (348, 'Growing Ocular Symbiant, Support Unit Aban', 200, 1, 1188, 146), + (349, 'Growing Right Arm Symbiant, Control Unit Aban', 200, 11, 1188, 146), + (350, 'Growing Right Arm Symbiant, Extermination Unit Aban', 200, 11, 1188, 146), + (351, 'Growing Right Hand Symbiant, Control Unit Aban', 200, 13, 1188, 146), + (352, 'Growing Thigh Symbiant, Artillery Unit Aban', 200, 6, 1188, 146), + (353, 'Growing Thigh Symbiant, Control Unit Aban', 200, 6, 1188, 146), + (354, 'Growing Thigh Symbiant, Extermination Unit Aban', 200, 6, 1188, 146), + (355, 'Growing Thigh Symbiant, Support Unit Aban', 200, 6, 1188, 146), + (356, 'Growing Waist Symbiant, Control Unit Aban', 200, 5, 1188, 146), + (357, 'Ignorant Brain Symbiant, Infantry Unit Aban', 10, 2, 65, 8), + (358, 'Ignorant Chest Symbiant, Control Unit Aban', 10, 4, 65, 8), + (359, 'Ignorant Ear Symbiant, Artillery Unit Aban', 10, 3, 65, 8), + (360, 'Ignorant Ear Symbiant, Control Unit Aban', 10, 3, 65, 8), + (361, 'Ignorant Feet Symbiant, Artillery Unit Aban', 10, 7, 65, 8), + (362, 'Ignorant Feet Symbiant, Control Unit Aban', 10, 7, 65, 8), + (363, 'Ignorant Feet Symbiant, Extermination Unit Aban', 10, 7, 65, 8), + (364, 'Ignorant Left Arm Symbiant, Artillery Unit Aban', 10, 8, 65, 8), + (365, 'Ignorant Left Arm Symbiant, Extermination Unit Aban', 10, 8, 65, 8), + (366, 'Ignorant Left Arm Symbiant, Infantry Unit Aban', 10, 8, 65, 8), + (367, 'Ignorant Left Hand Symbiant, Control Unit Aban', 10, 10, 65, 8), + (368, 'Ignorant Left Hand Symbiant, Infantry Unit Aban', 10, 10, 65, 8), + (369, 'Ignorant Left Wrist Symbiant, Artillery Unit Aban', 10, 9, 65, 8), + (370, 'Ignorant Left Wrist Symbiant, Extermination Unit Aban', 10, 9, 65, 8), + (371, 'Ignorant Left Wrist Symbiant, Support Unit Aban', 10, 9, 65, 8), + (372, 'Ignorant Ocular Symbiant, Extermination Unit Aban', 10, 1, 65, 8), + (373, 'Ignorant Right Arm Symbiant, Artillery Unit Aban', 10, 11, 65, 8), + (374, 'Ignorant Right Arm Symbiant, Control Unit Aban', 10, 11, 65, 8), + (375, 'Ignorant Right Arm Symbiant, Extermination Unit Aban', 10, 11, 65, 8), + (376, 'Ignorant Right Hand Symbiant, Artillery Unit Aban', 10, 13, 65, 8), + (377, 'Ignorant Right Hand Symbiant, Control Unit Aban', 10, 13, 65, 8), + (378, 'Ignorant Right Wrist Symbiant, Artillery Unit Aban', 10, 12, 65, 8), + (379, 'Ignorant Right Wrist Symbiant, Control Unit Aban', 10, 12, 65, 8), + (380, 'Ignorant Thigh Symbiant, Infantry Unit Aban', 10, 6, 65, 8), + (381, 'Ignorant Thigh Symbiant, Support Unit Aban', 10, 6, 65, 8), + (382, 'Ignorant Waist Symbiant, Extermination Unit Aban', 10, 5, 65, 8), + (383, 'Ignorant Waist Symbiant, Infantry Unit Aban', 10, 5, 65, 8), + (384, 'Ignorant Waist Symbiant, Support Unit Aban', 10, 5, 65, 8), + (385, 'Inattentive Brain Symbiant, Extermination Unit Aban', 15, 2, 95, 11), + (386, 'Inattentive Chest Symbiant, Artillery Unit Aban', 15, 4, 95, 11), + (387, 'Inattentive Chest Symbiant, Infantry Unit Aban', 15, 4, 95, 11), + (388, 'Inattentive Feet Symbiant, Infantry Unit Aban', 15, 7, 95, 11), + (389, 'Inattentive Left Arm Symbiant, Control Unit Aban', 15, 8, 95, 11), + (390, 'Inattentive Left Arm Symbiant, Extermination Unit Aban', 15, 8, 95, 11), + (391, 'Inattentive Left Arm Symbiant, Infantry Unit Aban', 15, 8, 95, 11), + (392, 'Inattentive Left Arm Symbiant, Support Unit Aban', 15, 8, 95, 11), + (393, 'Inattentive Left Hand Symbiant, Artillery Unit Aban', 15, 10, 95, 11), + (394, 'Inattentive Left Hand Symbiant, Support Unit Aban', 15, 10, 95, 11), + (395, 'Inattentive Left Wrist Symbiant, Extermination Unit Aban', 15, 9, 95, 11), + (396, 'Inattentive Left Wrist Symbiant, Support Unit Aban', 15, 9, 95, 11), + (397, 'Inattentive Ocular Symbiant, Artillery Unit Aban', 15, 1, 95, 11), + (398, 'Inattentive Ocular Symbiant, Extermination Unit Aban', 15, 1, 95, 11), + (399, 'Inattentive Ocular Symbiant, Support Unit Aban', 15, 1, 95, 11), + (400, 'Inattentive Right Arm Symbiant, Control Unit Aban', 15, 11, 95, 11), + (401, 'Inattentive Right Arm Symbiant, Extermination Unit Aban', 15, 11, 95, 11), + (402, 'Inattentive Right Hand Symbiant, Artillery Unit Aban', 15, 13, 95, 11), + (403, 'Inattentive Right Hand Symbiant, Control Unit Aban', 15, 13, 95, 11), + (404, 'Inattentive Right Hand Symbiant, Infantry Unit Aban', 15, 13, 95, 11), + (405, 'Inattentive Right Wrist Symbiant, Control Unit Aban', 15, 12, 95, 11), + (406, 'Inattentive Right Wrist Symbiant, Extermination Unit Aban', 15, 12, 95, 11), + (407, 'Inattentive Right Wrist Symbiant, Support Unit Aban', 15, 12, 95, 11), + (408, 'Inattentive Thigh Symbiant, Artillery Unit Aban', 15, 6, 95, 11), + (409, 'Inattentive Thigh Symbiant, Extermination Unit Aban', 15, 6, 95, 11), + (410, 'Inattentive Thigh Symbiant, Support Unit Aban', 15, 6, 95, 11), + (411, 'Inattentive Waist Symbiant, Control Unit Aban', 15, 5, 95, 11), + (412, 'Inattentive Waist Symbiant, Extermination Unit Aban', 15, 5, 95, 11), + (413, 'Intelligent Brain Symbiant, Artillery Unit Aban', 300, 2, 2188, 219), + (414, 'Intelligent Brain Symbiant, Control Unit Aban', 300, 2, 2188, 219), + (415, 'Intelligent Brain Symbiant, Extermination Unit Aban', 300, 2, 2188, 219), + (416, 'Intelligent Brain Symbiant, Infantry Unit Aban', 300, 2, 2188, 219), + (417, 'Intelligent Brain Symbiant, Support Unit Aban', 300, 2, 2188, 219), + (418, 'Intelligent Chest Symbiant, Artillery Unit Aban', 300, 4, 2188, 219), + (419, 'Intelligent Chest Symbiant, Control Unit Aban', 300, 4, 2188, 219), + (420, 'Intelligent Chest Symbiant, Extermination Unit Aban', 300, 4, 2188, 219), + (421, 'Intelligent Chest Symbiant, Infantry Unit Aban', 300, 4, 2188, 219), + (422, 'Intelligent Chest Symbiant, Support Unit Aban', 300, 4, 2188, 219), + (423, 'Intelligent Ear Symbiant, Artillery Unit Aban', 300, 3, 2188, 219), + (424, 'Intelligent Ear Symbiant, Control Unit Aban', 300, 3, 2188, 219), + (425, 'Intelligent Ear Symbiant, Extermination Unit Aban', 300, 3, 2188, 219), + (426, 'Intelligent Ear Symbiant, Infantry Unit Aban', 300, 3, 2188, 219), + (427, 'Intelligent Ear Symbiant, Support Unit Aban', 300, 3, 2188, 219), + (428, 'Intelligent Feet Symbiant, Artillery Unit Aban', 300, 7, 2188, 219), + (429, 'Intelligent Feet Symbiant, Control Unit Aban', 300, 7, 2188, 219), + (430, 'Intelligent Feet Symbiant, Extermination Unit Aban', 300, 7, 2188, 219), + (431, 'Intelligent Feet Symbiant, Infantry Unit Aban', 300, 7, 2188, 219), + (432, 'Intelligent Feet Symbiant, Support Unit Aban', 300, 7, 2188, 219), + (433, 'Intelligent Left Arm Symbiant, Artillery Unit Aban', 300, 8, 2188, 219), + (434, 'Intelligent Left Arm Symbiant, Control Unit Aban', 300, 8, 2188, 219), + (435, 'Intelligent Left Arm Symbiant, Extermination Unit Aban', 300, 8, 2188, 219), + (436, 'Intelligent Left Arm Symbiant, Infantry Unit Aban', 300, 8, 2188, 219), + (437, 'Intelligent Left Arm Symbiant, Support Unit Aban', 300, 8, 2188, 219), + (438, 'Intelligent Left Hand Symbiant, Artillery Unit Aban', 300, 10, 2188, 219), + (439, 'Intelligent Left Hand Symbiant, Control Unit Aban', 300, 10, 2188, 219), + (440, 'Intelligent Left Hand Symbiant, Extermination Unit Aban', 300, 10, 2188, 219), + (441, 'Intelligent Left Hand Symbiant, Infantry Unit Aban', 300, 10, 2188, 219), + (442, 'Intelligent Left Hand Symbiant, Support Unit Aban', 300, 10, 2188, 219), + (443, 'Intelligent Left Wrist Symbiant, Artillery Unit Aban', 300, 9, 2188, 219), + (444, 'Intelligent Left Wrist Symbiant, Control Unit Aban', 300, 9, 2188, 219), + (445, 'Intelligent Left Wrist Symbiant, Extermination Unit Aban', 300, 9, 2188, 219), + (446, 'Intelligent Left Wrist Symbiant, Infantry Unit Aban', 300, 9, 2188, 219), + (447, 'Intelligent Left Wrist Symbiant, Support Unit Aban', 300, 9, 2188, 219), + (448, 'Intelligent Ocular Symbiant, Artillery Unit Aban', 300, 1, 2188, 219), + (449, 'Intelligent Ocular Symbiant, Control Unit Aban', 300, 1, 2188, 219), + (450, 'Intelligent Ocular Symbiant, Extermination Unit Aban', 300, 1, 2188, 219), + (451, 'Intelligent Ocular Symbiant, Infantry Unit Aban', 300, 1, 2188, 219), + (452, 'Intelligent Ocular Symbiant, Support Unit Aban', 300, 1, 2188, 219), + (453, 'Intelligent Right Arm Symbiant, Artillery Unit Aban', 300, 11, 2188, 219), + (454, 'Intelligent Right Arm Symbiant, Control Unit Aban', 300, 11, 2188, 219), + (455, 'Intelligent Right Arm Symbiant, Extermination Unit Aban', 300, 11, 2188, 219), + (456, 'Intelligent Right Arm Symbiant, Infantry Unit Aban', 300, 11, 2188, 219), + (457, 'Intelligent Right Arm Symbiant, Support Unit Aban', 300, 11, 2188, 219), + (458, 'Intelligent Right Hand Symbiant, Artillery Unit Aban', 300, 13, 2188, 219), + (459, 'Intelligent Right Hand Symbiant, Control Unit Aban', 300, 13, 2188, 219), + (460, 'Intelligent Right Hand Symbiant, Extermination Unit Aban', 300, 13, 2188, 219), + (461, 'Intelligent Right Hand Symbiant, Infantry Unit Aban', 300, 13, 2188, 219), + (462, 'Intelligent Right Hand Symbiant, Support Unit Aban', 300, 13, 2188, 219), + (463, 'Intelligent Right Wrist Symbiant, Artillery Unit Aban', 300, 12, 2188, 219), + (464, 'Intelligent Right Wrist Symbiant, Control Unit Aban', 300, 12, 2188, 219), + (465, 'Intelligent Right Wrist Symbiant, Extermination Unit Aban', 300, 12, 2188, 219), + (466, 'Intelligent Right Wrist Symbiant, Infantry Unit Aban', 300, 12, 2188, 219), + (467, 'Intelligent Right Wrist Symbiant, Support Unit Aban', 300, 12, 2188, 219), + (468, 'Intelligent Thigh Symbiant, Artillery Unit Aban', 300, 6, 2188, 219), + (469, 'Intelligent Thigh Symbiant, Control Unit Aban', 300, 6, 2188, 219), + (470, 'Intelligent Thigh Symbiant, Extermination Unit Aban', 300, 6, 2188, 219), + (471, 'Intelligent Thigh Symbiant, Infantry Unit Aban', 300, 6, 2188, 219), + (472, 'Intelligent Thigh Symbiant, Support Unit Aban', 300, 6, 2188, 219), + (473, 'Intelligent Waist Symbiant, Artillery Unit Aban', 300, 5, 2188, 219), + (474, 'Intelligent Waist Symbiant, Control Unit Aban', 300, 5, 2188, 219), + (475, 'Intelligent Waist Symbiant, Extermination Unit Aban', 300, 5, 2188, 219), + (476, 'Intelligent Waist Symbiant, Infantry Unit Aban', 300, 5, 2188, 219), + (477, 'Intelligent Waist Symbiant, Support Unit Aban', 300, 5, 2188, 219), + (478, 'Lethargic Brain Symbiant, Infantry Unit Aban', 20, 2, 124, 15), + (479, 'Lethargic Chest Symbiant, Artillery Unit Aban', 20, 4, 124, 15), + (480, 'Lethargic Chest Symbiant, Control Unit Aban', 20, 4, 124, 15), + (481, 'Lethargic Ear Symbiant, Artillery Unit Aban', 20, 3, 124, 15), + (482, 'Lethargic Feet Symbiant, Artillery Unit Aban', 20, 7, 124, 15), + (483, 'Lethargic Left Arm Symbiant, Artillery Unit Aban', 20, 8, 124, 15), + (484, 'Lethargic Left Hand Symbiant, Extermination Unit Aban', 20, 10, 124, 15), + (485, 'Lethargic Left Hand Symbiant, Infantry Unit Aban', 20, 10, 124, 15), + (486, 'Lethargic Left Wrist Symbiant, Artillery Unit Aban', 20, 9, 124, 15), + (487, 'Lethargic Left Wrist Symbiant, Control Unit Aban', 20, 9, 124, 15), + (488, 'Lethargic Left Wrist Symbiant, Extermination Unit Aban', 20, 9, 124, 15), + (489, 'Lethargic Left Wrist Symbiant, Support Unit Aban', 20, 9, 124, 15), + (490, 'Lethargic Ocular Symbiant, Artillery Unit Aban', 20, 1, 124, 15), + (491, 'Lethargic Right Arm Symbiant, Control Unit Aban', 20, 11, 124, 15), + (492, 'Lethargic Right Arm Symbiant, Support Unit Aban', 20, 11, 124, 15), + (493, 'Lethargic Right Hand Symbiant, Control Unit Aban', 20, 13, 124, 15), + (494, 'Lethargic Right Hand Symbiant, Extermination Unit Aban', 20, 13, 124, 15), + (495, 'Lethargic Right Hand Symbiant, Infantry Unit Aban', 20, 13, 124, 15), + (496, 'Lethargic Right Hand Symbiant, Support Unit Aban', 20, 13, 124, 15), + (497, 'Lethargic Right Wrist Symbiant, Artillery Unit Aban', 20, 12, 124, 15), + (498, 'Lethargic Right Wrist Symbiant, Control Unit Aban', 20, 12, 124, 15), + (499, 'Lethargic Right Wrist Symbiant, Extermination Unit Aban', 20, 12, 124, 15), + (500, 'Lethargic Right Wrist Symbiant, Infantry Unit Aban', 20, 12, 124, 15), + (501, 'Lethargic Right Wrist Symbiant, Support Unit Aban', 20, 12, 124, 15), + (502, 'Lethargic Thigh Symbiant, Artillery Unit Aban', 20, 6, 124, 15), + (503, 'Lethargic Thigh Symbiant, Control Unit Aban', 20, 6, 124, 15), + (504, 'Lethargic Thigh Symbiant, Extermination Unit Aban', 20, 6, 124, 15), + (505, 'Lethargic Waist Symbiant, Support Unit Aban', 20, 5, 124, 15), + (506, 'Living Brain Symbiant, Support Unit Aban', 210, 2, 1342, 154), + (507, 'Living Chest Symbiant, Infantry Unit Aban', 210, 4, 1342, 154), + (508, 'Living Ear Symbiant, Extermination Unit Aban', 210, 3, 1342, 154), + (509, 'Living Ear Symbiant, Infantry Unit Aban', 210, 3, 1342, 154), + (510, 'Living Feet Symbiant, Artillery Unit Aban', 210, 7, 1342, 154), + (511, 'Living Feet Symbiant, Support Unit Aban', 210, 7, 1342, 154), + (512, 'Living Left Arm Symbiant, Infantry Unit Aban', 210, 8, 1342, 154), + (513, 'Living Left Arm Symbiant, Support Unit Aban', 210, 8, 1342, 154), + (514, 'Living Left Hand Symbiant, Artillery Unit Aban', 210, 10, 1342, 154), + (515, 'Living Left Hand Symbiant, Support Unit Aban', 210, 10, 1342, 154), + (516, 'Living Left Wrist Symbiant, Artillery Unit Aban', 210, 9, 1342, 154), + (517, 'Living Left Wrist Symbiant, Control Unit Aban', 210, 9, 1342, 154), + (518, 'Living Ocular Symbiant, Control Unit Aban', 210, 1, 1342, 154), + (519, 'Living Ocular Symbiant, Infantry Unit Aban', 210, 1, 1342, 154), + (520, 'Living Ocular Symbiant, Support Unit Aban', 210, 1, 1342, 154), + (521, 'Living Right Arm Symbiant, Infantry Unit Aban', 210, 11, 1342, 154), + (522, 'Living Right Arm Symbiant, Support Unit Aban', 210, 11, 1342, 154), + (523, 'Living Right Hand Symbiant, Artillery Unit Aban', 210, 13, 1342, 154), + (524, 'Living Right Hand Symbiant, Extermination Unit Aban', 210, 13, 1342, 154), + (525, 'Living Right Hand Symbiant, Infantry Unit Aban', 210, 13, 1342, 154), + (526, 'Living Right Wrist Symbiant, Artillery Unit Aban', 210, 12, 1342, 154), + (527, 'Living Right Wrist Symbiant, Control Unit Aban', 210, 12, 1342, 154), + (528, 'Living Right Wrist Symbiant, Infantry Unit Aban', 210, 12, 1342, 154), + (529, 'Living Thigh Symbiant, Artillery Unit Aban', 210, 6, 1342, 154), + (530, 'Living Thigh Symbiant, Control Unit Aban', 210, 6, 1342, 154), + (531, 'Living Thigh Symbiant, Support Unit Aban', 210, 6, 1342, 154), + (532, 'Living Waist Symbiant, Artillery Unit Aban', 210, 5, 1342, 154), + (533, 'Living Waist Symbiant, Infantry Unit Aban', 210, 5, 1342, 154), + (534, 'Lulled Brain Symbiant, Artillery Unit Aban', 60, 2, 361, 44), + (535, 'Lulled Brain Symbiant, Control Unit Aban', 60, 2, 361, 44), + (536, 'Lulled Brain Symbiant, Infantry Unit Aban', 60, 2, 361, 44), + (537, 'Lulled Brain Symbiant, Support Unit Aban', 60, 2, 361, 44), + (538, 'Lulled Chest Symbiant, Extermination Unit Aban', 60, 4, 361, 44), + (539, 'Lulled Chest Symbiant, Support Unit Aban', 60, 4, 361, 44), + (540, 'Lulled Ear Symbiant, Artillery Unit Aban', 60, 3, 361, 44), + (541, 'Lulled Ear Symbiant, Extermination Unit Aban', 60, 3, 361, 44), + (542, 'Lulled Ear Symbiant, Support Unit Aban', 60, 3, 361, 44), + (543, 'Lulled Feet Symbiant, Extermination Unit Aban', 60, 7, 361, 44), + (544, 'Lulled Feet Symbiant, Infantry Unit Aban', 60, 7, 361, 44), + (545, 'Lulled Feet Symbiant, Support Unit Aban', 60, 7, 361, 44), + (546, 'Lulled Left Arm Symbiant, Artillery Unit Aban', 60, 8, 361, 44), + (547, 'Lulled Left Arm Symbiant, Extermination Unit Aban', 60, 8, 361, 44), + (548, 'Lulled Left Arm Symbiant, Support Unit Aban', 60, 8, 361, 44), + (549, 'Lulled Left Hand Symbiant, Extermination Unit Aban', 60, 10, 361, 44), + (550, 'Lulled Left Hand Symbiant, Support Unit Aban', 60, 10, 361, 44), + (551, 'Lulled Left Wrist Symbiant, Artillery Unit Aban', 60, 9, 361, 44), + (552, 'Lulled Left Wrist Symbiant, Infantry Unit Aban', 60, 9, 361, 44), + (553, 'Lulled Left Wrist Symbiant, Support Unit Aban', 60, 9, 361, 44), + (554, 'Lulled Ocular Symbiant, Control Unit Aban', 60, 1, 361, 44), + (555, 'Lulled Ocular Symbiant, Extermination Unit Aban', 60, 1, 361, 44), + (556, 'Lulled Ocular Symbiant, Infantry Unit Aban', 60, 1, 361, 44), + (557, 'Lulled Right Arm Symbiant, Artillery Unit Aban', 60, 11, 361, 44), + (558, 'Lulled Right Arm Symbiant, Control Unit Aban', 60, 11, 361, 44), + (559, 'Lulled Right Hand Symbiant, Artillery Unit Aban', 60, 13, 361, 44), + (560, 'Lulled Right Hand Symbiant, Infantry Unit Aban', 60, 13, 361, 44), + (561, 'Lulled Right Hand Symbiant, Support Unit Aban', 60, 13, 361, 44), + (562, 'Lulled Right Wrist Symbiant, Extermination Unit Aban', 60, 12, 361, 44), + (563, 'Lulled Right Wrist Symbiant, Infantry Unit Aban', 60, 12, 361, 44), + (564, 'Lulled Right Wrist Symbiant, Support Unit Aban', 60, 12, 361, 44), + (565, 'Lulled Thigh Symbiant, Support Unit Aban', 60, 6, 361, 44), + (566, 'Lulled Waist Symbiant, Artillery Unit Aban', 60, 5, 361, 44), + (567, 'Lulled Waist Symbiant, Control Unit Aban', 60, 5, 361, 44), + (568, 'Lulled Waist Symbiant, Infantry Unit Aban', 60, 5, 361, 44), + (569, 'Lulled Waist Symbiant, Support Unit Aban', 60, 5, 361, 44), + (570, 'Moronic Brain Symbiant, Artillery Unit Aban', 5, 2, 36, 4), + (571, 'Moronic Brain Symbiant, Control Unit Aban', 5, 2, 36, 4), + (572, 'Moronic Brain Symbiant, Extermination Unit Aban', 5, 2, 36, 4), + (573, 'Moronic Brain Symbiant, Infantry Unit Aban', 5, 2, 36, 4), + (574, 'Moronic Brain Symbiant, Support Unit Aban', 5, 2, 36, 4), + (575, 'Moronic Chest Symbiant, Artillery Unit Aban', 5, 4, 36, 4), + (576, 'Moronic Chest Symbiant, Control Unit Aban', 5, 4, 36, 4), + (577, 'Moronic Chest Symbiant, Extermination Unit Aban', 5, 4, 36, 4), + (578, 'Moronic Chest Symbiant, Infantry Unit Aban', 5, 4, 36, 4), + (579, 'Moronic Chest Symbiant, Support Unit Aban', 5, 4, 36, 4), + (580, 'Moronic Ear Symbiant, Artillery Unit Aban', 5, 3, 36, 4), + (581, 'Moronic Ear Symbiant, Control Unit Aban', 5, 3, 36, 4), + (582, 'Moronic Ear Symbiant, Extermination Unit Aban', 5, 3, 36, 4), + (583, 'Moronic Ear Symbiant, Infantry Unit Aban', 5, 3, 36, 4), + (584, 'Moronic Ear Symbiant, Support Unit Aban', 5, 3, 36, 4), + (585, 'Moronic Feet Symbiant, Artillery Unit Aban', 5, 7, 36, 4), + (586, 'Moronic Feet Symbiant, Control Unit Aban', 5, 7, 36, 4), + (587, 'Moronic Feet Symbiant, Extermination Unit Aban', 5, 7, 36, 4), + (588, 'Moronic Feet Symbiant, Infantry Unit Aban', 5, 7, 36, 4), + (589, 'Moronic Feet Symbiant, Support Unit Aban', 5, 7, 36, 4), + (590, 'Moronic Left Arm Symbiant, Artillery Unit Aban', 5, 8, 36, 4), + (591, 'Moronic Left Arm Symbiant, Control Unit Aban', 5, 8, 36, 4), + (592, 'Moronic Left Arm Symbiant, Extermination Unit Aban', 5, 8, 36, 4), + (593, 'Moronic Left Arm Symbiant, Infantry Unit Aban', 5, 8, 36, 4), + (594, 'Moronic Left Arm Symbiant, Support Unit Aban', 5, 8, 36, 4), + (595, 'Moronic Left Hand Symbiant, Artillery Unit Aban', 5, 10, 36, 4), + (596, 'Moronic Left Hand Symbiant, Control Unit Aban', 5, 10, 36, 4), + (597, 'Moronic Left Hand Symbiant, Extermination Unit Aban', 5, 10, 36, 4), + (598, 'Moronic Left Hand Symbiant, Infantry Unit Aban', 5, 10, 36, 4), + (599, 'Moronic Left Hand Symbiant, Support Unit Aban', 5, 10, 36, 4), + (600, 'Moronic Left Wrist Symbiant, Artillery Unit Aban', 5, 9, 36, 4), + (601, 'Moronic Left Wrist Symbiant, Control Unit Aban', 5, 9, 36, 4), + (602, 'Moronic Left Wrist Symbiant, Extermination Unit Aban', 5, 9, 36, 4), + (603, 'Moronic Left Wrist Symbiant, Infantry Unit Aban', 5, 9, 36, 4), + (604, 'Moronic Left Wrist Symbiant, Support Unit Aban', 5, 9, 36, 4), + (605, 'Moronic Ocular Symbiant, Artillery Unit Aban', 5, 1, 36, 4), + (606, 'Moronic Ocular Symbiant, Control Unit Aban', 5, 1, 36, 4), + (607, 'Moronic Ocular Symbiant, Extermination Unit Aban', 5, 1, 36, 4), + (608, 'Moronic Ocular Symbiant, Infantry Unit Aban', 5, 1, 36, 4), + (609, 'Moronic Ocular Symbiant, Support Unit Aban', 5, 1, 36, 4), + (610, 'Moronic Right Arm Symbiant, Artillery Unit Aban', 5, 11, 36, 4), + (611, 'Moronic Right Arm Symbiant, Control Unit Aban', 5, 11, 36, 4), + (612, 'Moronic Right Arm Symbiant, Extermination Unit Aban', 5, 11, 36, 4), + (613, 'Moronic Right Arm Symbiant, Infantry Unit Aban', 5, 11, 36, 4), + (614, 'Moronic Right Arm Symbiant, Support Unit Aban', 5, 11, 36, 4), + (615, 'Moronic Right Hand Symbiant, Artillery Unit Aban', 5, 13, 36, 4), + (616, 'Moronic Right Hand Symbiant, Control Unit Aban', 5, 13, 36, 4), + (617, 'Moronic Right Hand Symbiant, Extermination Unit Aban', 5, 13, 36, 4), + (618, 'Moronic Right Hand Symbiant, Infantry Unit Aban', 5, 13, 36, 4), + (619, 'Moronic Right Hand Symbiant, Support Unit Aban', 5, 13, 36, 4), + (620, 'Moronic Right Wrist Symbiant, Artillery Unit Aban', 5, 12, 36, 4), + (621, 'Moronic Right Wrist Symbiant, Control Unit Aban', 5, 12, 36, 4), + (622, 'Moronic Right Wrist Symbiant, Extermination Unit Aban', 5, 12, 36, 4), + (623, 'Moronic Right Wrist Symbiant, Infantry Unit Aban', 5, 12, 36, 4), + (624, 'Moronic Right Wrist Symbiant, Support Unit Aban', 5, 12, 36, 4), + (625, 'Moronic Thigh Symbiant, Artillery Unit Aban', 5, 6, 36, 4), + (626, 'Moronic Thigh Symbiant, Control Unit Aban', 5, 6, 36, 4), + (627, 'Moronic Thigh Symbiant, Extermination Unit Aban', 5, 6, 36, 4), + (628, 'Moronic Thigh Symbiant, Infantry Unit Aban', 5, 6, 36, 4), + (629, 'Moronic Thigh Symbiant, Support Unit Aban', 5, 6, 36, 4), + (630, 'Moronic Waist Symbiant, Artillery Unit Aban', 5, 5, 36, 4), + (631, 'Moronic Waist Symbiant, Control Unit Aban', 5, 5, 36, 4), + (632, 'Moronic Waist Symbiant, Extermination Unit Aban', 5, 5, 36, 4), + (633, 'Moronic Waist Symbiant, Infantry Unit Aban', 5, 5, 36, 4), + (634, 'Moronic Waist Symbiant, Support Unit Aban', 5, 5, 36, 4), + (635, 'Moving Brain Symbiant, Artillery Unit Aban', 80, 2, 479, 59), + (636, 'Moving Brain Symbiant, Control Unit Aban', 80, 2, 479, 59), + (637, 'Moving Brain Symbiant, Support Unit Aban', 80, 2, 588, 59), + (638, 'Moving Chest Symbiant, Artillery Unit Aban', 80, 4, 479, 59), + (639, 'Moving Chest Symbiant, Control Unit Aban', 80, 4, 479, 59), + (640, 'Moving Chest Symbiant, Infantry Unit Aban', 80, 4, 479, 59), + (641, 'Moving Ear Symbiant, Artillery Unit Aban', 80, 3, 479, 59), + (642, 'Moving Ear Symbiant, Extermination Unit Aban', 80, 3, 479, 59), + (643, 'Moving Feet Symbiant, Artillery Unit Aban', 80, 7, 479, 59), + (644, 'Moving Feet Symbiant, Infantry Unit Aban', 80, 7, 479, 59), + (645, 'Moving Feet Symbiant, Support Unit Aban', 80, 7, 479, 59), + (646, 'Moving Left Arm Symbiant, Artillery Unit Aban', 80, 8, 479, 59), + (647, 'Moving Left Arm Symbiant, Infantry Unit Aban', 80, 8, 479, 59), + (648, 'Moving Left Hand Symbiant, Artillery Unit Aban', 80, 10, 479, 59), + (649, 'Moving Left Hand Symbiant, Infantry Unit Aban', 80, 10, 479, 59), + (650, 'Moving Left Hand Symbiant, Support Unit Aban', 80, 10, 479, 59), + (651, 'Moving Left Wrist Symbiant, Infantry Unit Aban', 80, 9, 588, 59), + (652, 'Moving Ocular Symbiant, Control Unit Aban', 80, 1, 479, 59), + (653, 'Moving Ocular Symbiant, Support Unit Aban', 80, 1, 479, 59), + (654, 'Moving Right Arm Symbiant, Artillery Unit Aban', 80, 11, 479, 59), + (655, 'Moving Right Arm Symbiant, Infantry Unit Aban', 80, 11, 479, 59), + (656, 'Moving Right Hand Symbiant, Artillery Unit Aban', 80, 13, 479, 59), + (657, 'Moving Right Hand Symbiant, Extermination Unit Aban', 80, 13, 479, 59), + (658, 'Moving Right Hand Symbiant, Infantry Unit Aban', 80, 13, 479, 59), + (659, 'Moving Right Wrist Symbiant, Extermination Unit Aban', 80, 12, 479, 59), + (660, 'Moving Right Wrist Symbiant, Infantry Unit Aban', 80, 12, 479, 59), + (661, 'Moving Right Wrist Symbiant, Support Unit Aban', 80, 12, 479, 59), + (662, 'Moving Thigh Symbiant, Artillery Unit Aban', 80, 6, 479, 59), + (663, 'Moving Thigh Symbiant, Control Unit Aban', 80, 6, 479, 59), + (664, 'Moving Thigh Symbiant, Extermination Unit Aban', 80, 6, 479, 59), + (665, 'Moving Thigh Symbiant, Infantry Unit Aban', 80, 6, 479, 59), + (666, 'Moving Waist Symbiant, Control Unit Aban', 80, 5, 479, 59), + (667, 'Neglectful Brain Symbiant, Control Unit Aban', 25, 2, 154, 19), + (668, 'Neglectful Brain Symbiant, Extermination Unit Aban', 25, 2, 154, 19), + (669, 'Neglectful Brain Symbiant, Infantry Unit Aban', 25, 2, 154, 19), + (670, 'Neglectful Brain Symbiant, Support Unit Aban', 25, 2, 154, 19), + (671, 'Neglectful Chest Symbiant, Extermination Unit Aban', 25, 4, 154, 19), + (672, 'Neglectful Ear Symbiant, Infantry Unit Aban', 25, 3, 154, 19), + (673, 'Neglectful Feet Symbiant, Control Unit Aban', 25, 7, 154, 19), + (674, 'Neglectful Left Arm Symbiant, Infantry Unit Aban', 25, 8, 154, 19), + (675, 'Neglectful Left Arm Symbiant, Support Unit Aban', 25, 8, 154, 19), + (676, 'Neglectful Left Hand Symbiant, Artillery Unit Aban', 25, 10, 154, 19), + (677, 'Neglectful Left Hand Symbiant, Control Unit Aban', 25, 10, 154, 19), + (678, 'Neglectful Left Hand Symbiant, Support Unit Aban', 25, 10, 154, 19), + (679, 'Neglectful Left Wrist Symbiant, Artillery Unit Aban', 25, 9, 154, 19), + (680, 'Neglectful Left Wrist Symbiant, Infantry Unit Aban', 25, 9, 154, 19), + (681, 'Neglectful Left Wrist Symbiant, Support Unit Aban', 25, 9, 154, 19), + (682, 'Neglectful Ocular Symbiant, Infantry Unit Aban', 25, 1, 154, 19), + (683, 'Neglectful Right Arm Symbiant, Artillery Unit Aban', 25, 11, 154, 19), + (684, 'Neglectful Right Arm Symbiant, Control Unit Aban', 25, 11, 154, 19), + (685, 'Neglectful Right Arm Symbiant, Extermination Unit Aban', 25, 11, 154, 19), + (686, 'Neglectful Right Arm Symbiant, Support Unit Aban', 25, 11, 154, 19), + (687, 'Neglectful Right Hand Symbiant, Artillery Unit Aban', 25, 13, 154, 19), + (688, 'Neglectful Right Hand Symbiant, Support Unit Aban', 25, 13, 154, 19), + (689, 'Neglectful Right Wrist Symbiant, Artillery Unit Aban', 25, 12, 154, 19), + (690, 'Neglectful Right Wrist Symbiant, Control Unit Aban', 25, 12, 154, 19), + (691, 'Neglectful Right Wrist Symbiant, Extermination Unit Aban', 25, 12, 154, 19), + (692, 'Neglectful Right Wrist Symbiant, Infantry Unit Aban', 25, 12, 154, 19), + (693, 'Neglectful Thigh Symbiant, Artillery Unit Aban', 25, 6, 154, 19), + (694, 'Neglectful Thigh Symbiant, Control Unit Aban', 25, 6, 154, 19), + (695, 'Neglectful Thigh Symbiant, Infantry Unit Aban', 25, 6, 154, 19), + (696, 'Neglectful Thigh Symbiant, Support Unit Aban', 25, 6, 154, 19), + (697, 'Neglectful Waist Symbiant, Artillery Unit Aban', 25, 5, 154, 19), + (698, 'Neglectful Waist Symbiant, Infantry Unit Aban', 25, 5, 154, 19), + (699, 'Neglectful Waist Symbiant, Support Unit Aban', 25, 5, 154, 19), + (700, 'Operative Brain Symbiant, Artillery Unit Aban', 110, 2, 656, 81), + (701, 'Operative Brain Symbiant, Control Unit Aban', 110, 2, 656, 81), + (702, 'Operative Brain Symbiant, Infantry Unit Aban', 110, 2, 656, 81), + (703, 'Operative Chest Symbiant, Control Unit Aban', 110, 4, 656, 81), + (704, 'Operative Chest Symbiant, Extermination Unit Aban', 110, 4, 656, 81), + (705, 'Operative Chest Symbiant, Support Unit Aban', 110, 4, 656, 81), + (706, 'Operative Ear Symbiant, Artillery Unit Aban', 110, 3, 656, 81), + (707, 'Operative Ear Symbiant, Control Unit Aban', 110, 3, 656, 81), + (708, 'Operative Ear Symbiant, Support Unit Aban', 110, 3, 656, 81), + (709, 'Operative Feet Symbiant, Control Unit Aban', 110, 7, 656, 81), + (710, 'Operative Feet Symbiant, Extermination Unit Aban', 110, 7, 656, 81), + (711, 'Operative Feet Symbiant, Infantry Unit Aban', 110, 7, 656, 81), + (712, 'Operative Left Arm Symbiant, Control Unit Aban', 110, 8, 656, 81), + (713, 'Operative Left Arm Symbiant, Extermination Unit Aban', 110, 8, 656, 81), + (714, 'Operative Left Arm Symbiant, Infantry Unit Aban', 110, 8, 656, 81), + (715, 'Operative Left Hand Symbiant, Artillery Unit Aban', 110, 10, 656, 81), + (716, 'Operative Left Hand Symbiant, Control Unit Aban', 110, 10, 656, 81), + (717, 'Operative Left Hand Symbiant, Extermination Unit Aban', 110, 10, 656, 81), + (718, 'Operative Left Hand Symbiant, Support Unit Aban', 110, 10, 656, 81), + (719, 'Operative Left Wrist Symbiant, Extermination Unit Aban', 110, 9, 656, 81), + (720, 'Operative Left Wrist Symbiant, Support Unit Aban', 110, 9, 656, 81), + (721, 'Operative Ocular Symbiant, Extermination Unit Aban', 110, 1, 656, 81), + (722, 'Operative Right Hand Symbiant, Artillery Unit Aban', 110, 13, 656, 81), + (723, 'Operative Right Hand Symbiant, Control Unit Aban', 110, 13, 656, 81), + (724, 'Operative Right Hand Symbiant, Support Unit Aban', 110, 13, 656, 81), + (725, 'Operative Right Wrist Symbiant, Extermination Unit Aban', 110, 12, 656, 81), + (726, 'Operative Right Wrist Symbiant, Support Unit Aban', 110, 12, 656, 81), + (727, 'Operative Thigh Symbiant, Artillery Unit Aban', 110, 6, 656, 81), + (728, 'Operative Thigh Symbiant, Infantry Unit Aban', 110, 6, 656, 81), + (729, 'Operative Waist Symbiant, Artillery Unit Aban', 110, 5, 656, 81), + (730, 'Operative Waist Symbiant, Control Unit Aban', 110, 5, 656, 81), + (731, 'Operative Waist Symbiant, Infantry Unit Aban', 110, 5, 656, 81), + (732, 'Operative Waist Symbiant, Support Unit Aban', 110, 5, 656, 81), + (733, 'Persisting Brain Symbiant, Artillery Unit Aban', 220, 2, 1406, 161), + (734, 'Persisting Brain Symbiant, Extermination Unit Aban', 220, 2, 1406, 161), + (735, 'Persisting Brain Symbiant, Support Unit Aban', 220, 2, 1406, 161), + (736, 'Persisting Chest Symbiant, Extermination Unit Aban', 220, 4, 1406, 161), + (737, 'Persisting Chest Symbiant, Infantry Unit Aban', 220, 4, 1406, 161), + (738, 'Persisting Ear Symbiant, Control Unit Aban', 220, 3, 1406, 161), + (739, 'Persisting Ear Symbiant, Support Unit Aban', 220, 3, 1406, 161), + (740, 'Persisting Feet Symbiant, Control Unit Aban', 220, 7, 1406, 161), + (741, 'Persisting Feet Symbiant, Extermination Unit Aban', 220, 7, 1406, 161), + (742, 'Persisting Left Arm Symbiant, Artillery Unit Aban', 220, 8, 1406, 161), + (743, 'Persisting Left Arm Symbiant, Control Unit Aban', 220, 8, 1406, 161), + (744, 'Persisting Left Arm Symbiant, Infantry Unit Aban', 220, 8, 1406, 161), + (745, 'Persisting Left Hand Symbiant, Artillery Unit Aban', 220, 10, 1406, 161), + (746, 'Persisting Left Hand Symbiant, Extermination Unit Aban', 220, 10, 1406, 161), + (747, 'Persisting Left Hand Symbiant, Support Unit Aban', 220, 10, 1406, 161), + (748, 'Persisting Left Wrist Symbiant, Control Unit Aban', 220, 9, 1406, 161), + (749, 'Persisting Left Wrist Symbiant, Extermination Unit Aban', 220, 9, 1406, 161), + (750, 'Persisting Left Wrist Symbiant, Support Unit Aban', 220, 9, 1406, 161), + (751, 'Persisting Ocular Symbiant, Artillery Unit Aban', 220, 1, 1406, 161), + (752, 'Persisting Ocular Symbiant, Control Unit Aban', 220, 1, 1406, 161), + (753, 'Persisting Ocular Symbiant, Infantry Unit Aban', 220, 1, 1406, 161), + (754, 'Persisting Right Arm Symbiant, Artillery Unit Aban', 220, 11, 1406, 161), + (755, 'Persisting Right Arm Symbiant, Control Unit Aban', 220, 11, 1406, 161), + (756, 'Persisting Right Arm Symbiant, Infantry Unit Aban', 220, 11, 1406, 161), + (757, 'Persisting Right Hand Symbiant, Artillery Unit Aban', 220, 13, 1406, 161), + (758, 'Persisting Right Hand Symbiant, Control Unit Aban', 220, 13, 1406, 161), + (759, 'Persisting Right Hand Symbiant, Extermination Unit Aban', 220, 13, 1406, 161), + (760, 'Persisting Right Hand Symbiant, Infantry Unit Aban', 220, 13, 1406, 161), + (761, 'Persisting Right Wrist Symbiant, Control Unit Aban', 220, 12, 1406, 161), + (762, 'Persisting Right Wrist Symbiant, Support Unit Aban', 220, 12, 1406, 161), + (763, 'Persisting Thigh Symbiant, Control Unit Aban', 220, 6, 1406, 161), + (764, 'Persisting Thigh Symbiant, Infantry Unit Aban', 220, 6, 1406, 161), + (765, 'Persisting Waist Symbiant, Control Unit Aban', 220, 5, 1406, 161), + (766, 'Persisting Waist Symbiant, Infantry Unit Aban', 220, 5, 1406, 161), + (767, 'Persisting Waist Symbiant, Support Unit Aban', 220, 5, 1406, 161), + (768, 'Prevailing Brain Symbiant, Artillery Unit Aban', 120, 2, 715, 88), + (769, 'Prevailing Brain Symbiant, Extermination Unit Aban', 120, 2, 715, 88), + (770, 'Prevailing Brain Symbiant, Support Unit Aban', 120, 2, 715, 88), + (771, 'Prevailing Chest Symbiant, Support Unit Aban', 120, 4, 715, 88), + (772, 'Prevailing Ear Symbiant, Extermination Unit Aban', 120, 3, 715, 88), + (773, 'Prevailing Feet Symbiant, Control Unit Aban', 120, 7, 715, 88), + (774, 'Prevailing Feet Symbiant, Infantry Unit Aban', 120, 7, 715, 88), + (775, 'Prevailing Feet Symbiant, Support Unit Aban', 120, 7, 715, 88), + (776, 'Prevailing Left Arm Symbiant, Extermination Unit Aban', 120, 8, 715, 88), + (777, 'Prevailing Left Arm Symbiant, Support Unit Aban', 120, 8, 715, 88), + (778, 'Prevailing Left Hand Symbiant, Artillery Unit Aban', 120, 10, 715, 88), + (779, 'Prevailing Left Hand Symbiant, Infantry Unit Aban', 120, 10, 715, 88), + (780, 'Prevailing Left Hand Symbiant, Support Unit Aban', 120, 10, 715, 88), + (781, 'Prevailing Left Wrist Symbiant, Artillery Unit Aban', 120, 9, 715, 88), + (782, 'Prevailing Left Wrist Symbiant, Control Unit Aban', 120, 9, 715, 88), + (783, 'Prevailing Left Wrist Symbiant, Extermination Unit Aban', 120, 9, 715, 88), + (784, 'Prevailing Ocular Symbiant, Infantry Unit Aban', 120, 1, 715, 88), + (785, 'Prevailing Ocular Symbiant, Support Unit Aban', 120, 1, 715, 88), + (786, 'Prevailing Right Arm Symbiant, Artillery Unit Aban', 120, 11, 715, 88), + (787, 'Prevailing Right Arm Symbiant, Extermination Unit Aban', 120, 11, 715, 88), + (788, 'Prevailing Right Arm Symbiant, Infantry Unit Aban', 120, 11, 715, 88), + (789, 'Prevailing Right Arm Symbiant, Support Unit Aban', 120, 11, 715, 88), + (790, 'Prevailing Right Hand Symbiant, Extermination Unit Aban', 120, 13, 715, 88), + (791, 'Prevailing Right Wrist Symbiant, Extermination Unit Aban', 120, 12, 715, 88), + (792, 'Prevailing Right Wrist Symbiant, Infantry Unit Aban', 120, 12, 715, 88), + (793, 'Prevailing Waist Symbiant, Artillery Unit Aban', 120, 5, 715, 88), + (794, 'Prevailing Waist Symbiant, Extermination Unit Aban', 120, 5, 715, 88), + (795, 'Prevailing Waist Symbiant, Support Unit Aban', 120, 5, 715, 88), + (796, 'Residing Brain Symbiant, Artillery Unit Aban', 130, 2, 774, 95), + (797, 'Residing Brain Symbiant, Infantry Unit Aban', 130, 2, 774, 95), + (798, 'Residing Chest Symbiant, Artillery Unit Aban', 130, 4, 774, 95), + (799, 'Residing Chest Symbiant, Extermination Unit Aban', 130, 4, 774, 95), + (800, 'Residing Ear Symbiant, Artillery Unit Aban', 130, 3, 774, 95), + (801, 'Residing Ear Symbiant, Infantry Unit Aban', 130, 3, 774, 95), + (802, 'Residing Feet Symbiant, Artillery Unit Aban', 130, 7, 774, 95), + (803, 'Residing Feet Symbiant, Control Unit Aban', 130, 7, 774, 95), + (804, 'Residing Feet Symbiant, Extermination Unit Aban', 130, 7, 774, 95), + (805, 'Residing Left Arm Symbiant, Support Unit Aban', 130, 8, 774, 95), + (806, 'Residing Left Hand Symbiant, Artillery Unit Aban', 130, 10, 774, 95), + (807, 'Residing Left Hand Symbiant, Control Unit Aban', 130, 10, 774, 95), + (808, 'Residing Left Hand Symbiant, Infantry Unit Aban', 130, 10, 774, 95), + (809, 'Residing Left Wrist Symbiant, Control Unit Aban', 130, 9, 774, 95), + (810, 'Residing Left Wrist Symbiant, Extermination Unit Aban', 130, 9, 774, 95), + (811, 'Residing Left Wrist Symbiant, Infantry Unit Aban', 130, 9, 774, 95), + (812, 'Residing Ocular Symbiant, Control Unit Aban', 130, 1, 774, 95), + (813, 'Residing Right Arm Symbiant, Artillery Unit Aban', 130, 11, 774, 95), + (814, 'Residing Right Arm Symbiant, Control Unit Aban', 130, 11, 774, 95), + (815, 'Residing Right Arm Symbiant, Infantry Unit Aban', 130, 11, 774, 95), + (816, 'Residing Right Hand Symbiant, Control Unit Aban', 130, 13, 774, 95), + (817, 'Residing Right Hand Symbiant, Extermination Unit Aban', 130, 13, 774, 95), + (818, 'Residing Right Hand Symbiant, Support Unit Aban', 130, 13, 774, 95), + (819, 'Residing Right Wrist Symbiant, Artillery Unit Aban', 130, 12, 774, 95), + (820, 'Residing Right Wrist Symbiant, Infantry Unit Aban', 130, 12, 774, 95), + (821, 'Residing Thigh Symbiant, Control Unit Aban', 130, 6, 774, 95), + (822, 'Residing Thigh Symbiant, Support Unit Aban', 130, 6, 774, 95), + (823, 'Residing Waist Symbiant, Infantry Unit Aban', 130, 5, 774, 95), + (824, 'Residing Waist Symbiant, Support Unit Aban', 130, 5, 774, 95), + (825, 'Running Brain Symbiant, Artillery Unit Aban', 140, 2, 833, 103), + (826, 'Running Brain Symbiant, Control Unit Aban', 140, 2, 833, 103), + (827, 'Running Brain Symbiant, Infantry Unit Aban', 140, 2, 833, 103), + (828, 'Running Chest Symbiant, Artillery Unit Aban', 140, 4, 833, 103), + (829, 'Running Chest Symbiant, Control Unit Aban', 140, 4, 833, 103), + (830, 'Running Chest Symbiant, Extermination Unit Aban', 140, 4, 833, 103), + (831, 'Running Chest Symbiant, Infantry Unit Aban', 140, 4, 833, 103), + (832, 'Running Chest Symbiant, Support Unit Aban', 140, 4, 833, 103), + (833, 'Running Ear Symbiant, Artillery Unit Aban', 140, 3, 833, 103), + (834, 'Running Ear Symbiant, Control Unit Aban', 140, 3, 833, 103), + (835, 'Running Ear Symbiant, Infantry Unit Aban', 140, 3, 833, 103), + (836, 'Running Left Arm Symbiant, Infantry Unit Aban', 140, 8, 833, 103), + (837, 'Running Left Hand Symbiant, Infantry Unit Aban', 140, 10, 833, 103), + (838, 'Running Left Hand Symbiant, Support Unit Aban', 140, 10, 833, 103), + (839, 'Running Left Wrist Symbiant, Control Unit Aban', 140, 9, 833, 103), + (840, 'Running Left Wrist Symbiant, Support Unit Aban', 140, 9, 833, 103), + (841, 'Running Ocular Symbiant, Artillery Unit Aban', 140, 1, 833, 103), + (842, 'Running Ocular Symbiant, Control Unit Aban', 140, 1, 833, 103), + (843, 'Running Ocular Symbiant, Infantry Unit Aban', 140, 1, 833, 103), + (844, 'Running Right Hand Symbiant, Extermination Unit Aban', 140, 13, 833, 103), + (845, 'Running Right Hand Symbiant, Infantry Unit Aban', 140, 13, 833, 103), + (846, 'Running Right Hand Symbiant, Support Unit Aban', 140, 13, 833, 103), + (847, 'Running Right Wrist Symbiant, Artillery Unit Aban', 140, 12, 833, 103), + (848, 'Running Right Wrist Symbiant, Support Unit Aban', 140, 12, 833, 103), + (849, 'Running Thigh Symbiant, Control Unit Aban', 140, 6, 833, 103), + (850, 'Running Thigh Symbiant, Extermination Unit Aban', 140, 6, 833, 103), + (851, 'Running Waist Symbiant, Control Unit Aban', 140, 5, 833, 103), + (852, 'Sleeping Brain Symbiant, Artillery Unit Aban', 30, 2, 183, 22), + (853, 'Sleeping Brain Symbiant, Control Unit Aban', 30, 2, 183, 22), + (854, 'Sleeping Brain Symbiant, Support Unit Aban', 30, 2, 183, 22), + (855, 'Sleeping Chest Symbiant, Control Unit Aban', 30, 4, 183, 22), + (856, 'Sleeping Chest Symbiant, Infantry Unit Aban', 30, 4, 183, 22), + (857, 'Sleeping Chest Symbiant, Support Unit Aban', 30, 4, 183, 22), + (858, 'Sleeping Ear Symbiant, Artillery Unit Aban', 30, 3, 183, 22), + (859, 'Sleeping Ear Symbiant, Control Unit Aban', 30, 3, 183, 22), + (860, 'Sleeping Ear Symbiant, Support Unit Aban', 30, 3, 183, 22), + (861, 'Sleeping Feet Symbiant, Artillery Unit Aban', 30, 7, 183, 22), + (862, 'Sleeping Feet Symbiant, Infantry Unit Aban', 30, 7, 183, 22), + (863, 'Sleeping Feet Symbiant, Support Unit Aban', 30, 7, 183, 22), + (864, 'Sleeping Left Arm Symbiant, Artillery Unit Aban', 30, 8, 183, 22), + (865, 'Sleeping Left Arm Symbiant, Control Unit Aban', 30, 8, 183, 22), + (866, 'Sleeping Left Arm Symbiant, Extermination Unit Aban', 30, 8, 183, 22), + (867, 'Sleeping Left Arm Symbiant, Infantry Unit Aban', 30, 8, 183, 22), + (868, 'Sleeping Left Arm Symbiant, Support Unit Aban', 30, 8, 183, 22), + (869, 'Sleeping Left Hand Symbiant, Control Unit Aban', 30, 10, 183, 22), + (870, 'Sleeping Left Wrist Symbiant, Artillery Unit Aban', 30, 9, 183, 22), + (871, 'Sleeping Left Wrist Symbiant, Infantry Unit Aban', 30, 9, 183, 22), + (872, 'Sleeping Ocular Symbiant, Artillery Unit Aban', 30, 1, 183, 22), + (873, 'Sleeping Ocular Symbiant, Infantry Unit Aban', 30, 1, 183, 22), + (874, 'Sleeping Ocular Symbiant, Support Unit Aban', 30, 1, 183, 22), + (875, 'Sleeping Right Arm Symbiant, Extermination Unit Aban', 30, 11, 183, 22), + (876, 'Sleeping Right Hand Symbiant, Extermination Unit Aban', 30, 13, 183, 22), + (877, 'Sleeping Right Wrist Symbiant, Artillery Unit Aban', 30, 12, 183, 22), + (878, 'Sleeping Right Wrist Symbiant, Support Unit Aban', 30, 12, 183, 22), + (879, 'Sleeping Thigh Symbiant, Control Unit Aban', 30, 6, 183, 22), + (880, 'Sleeping Waist Symbiant, Artillery Unit Aban', 30, 5, 183, 22), + (881, 'Sleeping Waist Symbiant, Control Unit Aban', 30, 5, 183, 22), + (882, 'Sleeping Waist Symbiant, Extermination Unit Aban', 30, 5, 183, 22), + (883, 'Sluggish Brain Symbiant, Artillery Unit Aban', 40, 2, 242, 30), + (884, 'Sluggish Chest Symbiant, Control Unit Aban', 40, 4, 242, 30), + (885, 'Sluggish Chest Symbiant, Infantry Unit Aban', 40, 4, 242, 30), + (886, 'Sluggish Chest Symbiant, Support Unit Aban', 40, 4, 242, 30), + (887, 'Sluggish Ear Symbiant, Artillery Unit Aban', 40, 3, 242, 30), + (888, 'Sluggish Ear Symbiant, Control Unit Aban', 40, 3, 242, 30), + (889, 'Sluggish Ear Symbiant, Extermination Unit Aban', 40, 3, 242, 30), + (890, 'Sluggish Ear Symbiant, Infantry Unit Aban', 40, 3, 242, 30), + (891, 'Sluggish Ear Symbiant, Support Unit Aban', 40, 3, 242, 30), + (892, 'Sluggish Feet Symbiant, Extermination Unit Aban', 40, 7, 242, 30), + (893, 'Sluggish Left Arm Symbiant, Control Unit Aban', 40, 8, 242, 30), + (894, 'Sluggish Ocular Symbiant, Control Unit Aban', 40, 1, 242, 30), + (895, 'Sluggish Ocular Symbiant, Infantry Unit Aban', 40, 1, 242, 30), + (896, 'Sluggish Right Arm Symbiant, Artillery Unit Aban', 40, 11, 242, 30), + (897, 'Sluggish Right Arm Symbiant, Control Unit Aban', 40, 11, 242, 30), + (898, 'Sluggish Right Arm Symbiant, Extermination Unit Aban', 40, 11, 242, 30), + (899, 'Sluggish Right Hand Symbiant, Artillery Unit Aban', 40, 13, 242, 30), + (900, 'Sluggish Right Hand Symbiant, Control Unit Aban', 40, 13, 242, 30), + (901, 'Sluggish Right Hand Symbiant, Infantry Unit Aban', 40, 13, 242, 30), + (902, 'Sluggish Right Wrist Symbiant, Extermination Unit Aban', 40, 12, 242, 30), + (903, 'Sluggish Waist Symbiant, Control Unit Aban', 40, 5, 242, 30), + (904, 'Surviving Brain Symbiant, Extermination Unit Aban', 150, 2, 892, 110), + (905, 'Surviving Chest Symbiant, Control Unit Aban', 150, 4, 892, 110), + (906, 'Surviving Ear Symbiant, Artillery Unit Aban', 150, 3, 892, 110), + (907, 'Surviving Ear Symbiant, Control Unit Aban', 150, 3, 892, 110), + (908, 'Surviving Ear Symbiant, Support Unit Aban', 150, 3, 892, 110), + (909, 'Surviving Feet Symbiant, Infantry Unit Aban', 150, 7, 892, 110), + (910, 'Surviving Left Arm Symbiant, Artillery Unit Aban', 150, 8, 892, 110), + (911, 'Surviving Left Arm Symbiant, Control Unit Aban', 150, 8, 892, 110), + (912, 'Surviving Left Arm Symbiant, Support Unit Aban', 150, 8, 892, 110), + (913, 'Surviving Left Hand Symbiant, Artillery Unit Aban', 150, 10, 892, 110), + (914, 'Surviving Left Hand Symbiant, Extermination Unit Aban', 150, 10, 892, 110), + (915, 'Surviving Left Hand Symbiant, Infantry Unit Aban', 150, 10, 892, 110), + (916, 'Surviving Left Hand Symbiant, Support Unit Aban', 150, 10, 892, 110), + (917, 'Surviving Left Wrist Symbiant, Artillery Unit Aban', 150, 9, 892, 110), + (918, 'Surviving Left Wrist Symbiant, Infantry Unit Aban', 150, 9, 892, 110), + (919, 'Surviving Left Wrist Symbiant, Support Unit Aban', 150, 9, 892, 110), + (920, 'Surviving Ocular Symbiant, Artillery Unit Aban', 150, 1, 892, 110), + (921, 'Surviving Ocular Symbiant, Extermination Unit Aban', 150, 1, 892, 110), + (922, 'Surviving Ocular Symbiant, Support Unit Aban', 150, 1, 892, 110), + (923, 'Surviving Right Arm Symbiant, Extermination Unit Aban', 150, 11, 892, 110), + (924, 'Surviving Right Arm Symbiant, Infantry Unit Aban', 150, 11, 892, 110), + (925, 'Surviving Right Hand Symbiant, Control Unit Aban', 150, 13, 892, 110), + (926, 'Surviving Right Wrist Symbiant, Artillery Unit Aban', 150, 12, 892, 110), + (927, 'Surviving Right Wrist Symbiant, Control Unit Aban', 150, 12, 892, 110), + (928, 'Surviving Right Wrist Symbiant, Infantry Unit Aban', 150, 12, 892, 110), + (929, 'Surviving Thigh Symbiant, Artillery Unit Aban', 150, 6, 892, 110), + (930, 'Surviving Thigh Symbiant, Infantry Unit Aban', 150, 6, 892, 110), + (931, 'Surviving Waist Symbiant, Artillery Unit Aban', 150, 5, 892, 110), + (932, 'Surviving Waist Symbiant, Control Unit Aban', 150, 5, 892, 110), + (933, 'Surviving Waist Symbiant, Extermination Unit Aban', 150, 5, 892, 110), + (934, 'Surviving Waist Symbiant, Support Unit Aban', 150, 5, 892, 110), + (935, 'Unconscious Brain Symbiant, Artillery Unit Aban', 1, 2, 12, 1), + (936, 'Unconscious Brain Symbiant, Control Unit Aban', 1, 2, 12, 1), + (937, 'Unconscious Brain Symbiant, Extermination Unit Aban', 1, 2, 12, 1), + (938, 'Unconscious Brain Symbiant, Infantry Unit Aban', 1, 2, 12, 1), + (939, 'Unconscious Brain Symbiant, Support Unit Aban', 1, 2, 12, 1), + (940, 'Unconscious Chest Symbiant, Artillery Unit Aban', 1, 4, 12, 1), + (941, 'Unconscious Chest Symbiant, Control Unit Aban', 1, 4, 12, 1), + (942, 'Unconscious Chest Symbiant, Extermination Unit Aban', 1, 4, 12, 1), + (943, 'Unconscious Chest Symbiant, Infantry Unit Aban', 1, 4, 12, 1), + (944, 'Unconscious Chest Symbiant, Support Unit Aban', 1, 4, 12, 1), + (945, 'Unconscious Ear Symbiant, Artillery Unit Aban', 1, 3, 12, 1), + (946, 'Unconscious Ear Symbiant, Control Unit Aban', 1, 3, 12, 1), + (947, 'Unconscious Ear Symbiant, Extermination Unit Aban', 1, 3, 12, 1), + (948, 'Unconscious Ear Symbiant, Infantry Unit Aban', 1, 3, 12, 1), + (949, 'Unconscious Ear Symbiant, Support Unit Aban', 1, 3, 12, 1), + (950, 'Unconscious Feet Symbiant, Artillery Unit Aban', 1, 7, 12, 1), + (951, 'Unconscious Feet Symbiant, Control Unit Aban', 1, 7, 12, 1), + (952, 'Unconscious Feet Symbiant, Extermination Unit Aban', 1, 7, 12, 1), + (953, 'Unconscious Feet Symbiant, Infantry Unit Aban', 1, 7, 12, 1), + (954, 'Unconscious Feet Symbiant, Support Unit Aban', 1, 7, 12, 1), + (955, 'Unconscious Left Arm Symbiant, Artillery Unit Aban', 1, 8, 12, 1), + (956, 'Unconscious Left Arm Symbiant, Control Unit Aban', 1, 8, 12, 1), + (957, 'Unconscious Left Arm Symbiant, Extermination Unit Aban', 1, 8, 12, 1), + (958, 'Unconscious Left Arm Symbiant, Infantry Unit Aban', 1, 8, 12, 1), + (959, 'Unconscious Left Arm Symbiant, Support Unit Aban', 1, 8, 12, 1), + (960, 'Unconscious Left Hand Symbiant, Artillery Unit Aban', 1, 10, 12, 1), + (961, 'Unconscious Left Hand Symbiant, Control Unit Aban', 1, 10, 12, 1), + (962, 'Unconscious Left Hand Symbiant, Extermination Unit Aban', 1, 10, 12, 1), + (963, 'Unconscious Left Hand Symbiant, Infantry Unit Aban', 1, 10, 12, 1), + (964, 'Unconscious Left Hand Symbiant, Support Unit Aban', 1, 10, 12, 1), + (965, 'Unconscious Left Wrist Symbiant, Artillery Unit Aban', 1, 9, 12, 1), + (966, 'Unconscious Left Wrist Symbiant, Control Unit Aban', 1, 9, 12, 1), + (967, 'Unconscious Left Wrist Symbiant, Extermination Unit Aban', 1, 9, 12, 1), + (968, 'Unconscious Left Wrist Symbiant, Infantry Unit Aban', 1, 9, 12, 1), + (969, 'Unconscious Left Wrist Symbiant, Support Unit Aban', 1, 9, 12, 1), + (970, 'Unconscious Ocular Symbiant, Artillery Unit Aban', 1, 1, 12, 1), + (971, 'Unconscious Ocular Symbiant, Control Unit Aban', 1, 1, 12, 1), + (972, 'Unconscious Ocular Symbiant, Extermination Unit Aban', 1, 1, 12, 1), + (973, 'Unconscious Ocular Symbiant, Infantry Unit Aban', 1, 1, 12, 1), + (974, 'Unconscious Ocular Symbiant, Support Unit Aban', 1, 1, 12, 1), + (975, 'Unconscious Right Arm Symbiant, Artillery Unit Aban', 1, 11, 12, 1), + (976, 'Unconscious Right Arm Symbiant, Control Unit Aban', 1, 11, 12, 1), + (977, 'Unconscious Right Arm Symbiant, Extermination Unit Aban', 1, 11, 12, 1), + (978, 'Unconscious Right Arm Symbiant, Infantry Unit Aban', 1, 11, 12, 1), + (979, 'Unconscious Right Arm Symbiant, Support Unit Aban', 1, 11, 12, 1), + (980, 'Unconscious Right Hand Symbiant, Artillery Unit Aban', 1, 13, 12, 1), + (981, 'Unconscious Right Hand Symbiant, Control Unit Aban', 1, 13, 12, 1), + (982, 'Unconscious Right Hand Symbiant, Extermination Unit Aban', 1, 13, 12, 1), + (983, 'Unconscious Right Hand Symbiant, Infantry Unit Aban', 1, 13, 12, 1), + (984, 'Unconscious Right Hand Symbiant, Support Unit Aban', 1, 13, 12, 1), + (985, 'Unconscious Right Wrist Symbiant, Artillery Unit Aban', 1, 12, 12, 1), + (986, 'Unconscious Right Wrist Symbiant, Control Unit Aban', 1, 12, 12, 1), + (987, 'Unconscious Right Wrist Symbiant, Extermination Unit Aban', 1, 12, 12, 1), + (988, 'Unconscious Right Wrist Symbiant, Infantry Unit Aban', 1, 12, 12, 1), + (989, 'Unconscious Right Wrist Symbiant, Support Unit Aban', 1, 12, 12, 1), + (990, 'Unconscious Thigh Symbiant, Artillery Unit Aban', 1, 6, 12, 1), + (991, 'Unconscious Thigh Symbiant, Control Unit Aban', 1, 6, 12, 1), + (992, 'Unconscious Thigh Symbiant, Extermination Unit Aban', 1, 6, 12, 1), + (993, 'Unconscious Thigh Symbiant, Infantry Unit Aban', 1, 6, 12, 1), + (994, 'Unconscious Thigh Symbiant, Support Unit Aban', 1, 6, 12, 1), + (995, 'Unconscious Waist Symbiant, Artillery Unit Aban', 1, 5, 12, 1), + (996, 'Unconscious Waist Symbiant, Control Unit Aban', 1, 5, 12, 1), + (997, 'Unconscious Waist Symbiant, Extermination Unit Aban', 1, 5, 12, 1), + (998, 'Unconscious Waist Symbiant, Infantry Unit Aban', 1, 5, 12, 1), + (999, 'Unconscious Waist Symbiant, Support Unit Aban', 1, 5, 12, 1), + (1000, 'Vibrating Brain Symbiant, Extermination Unit Aban', 90, 2, 538, 66), + (1001, 'Vibrating Brain Symbiant, Infantry Unit Aban', 90, 2, 538, 66), + (1002, 'Vibrating Chest Symbiant, Artillery Unit Aban', 90, 4, 538, 66), + (1003, 'Vibrating Chest Symbiant, Infantry Unit Aban', 90, 4, 538, 66), + (1004, 'Vibrating Chest Symbiant, Support Unit Aban', 90, 4, 538, 66), + (1005, 'Vibrating Ear Symbiant, Extermination Unit Aban', 90, 3, 538, 66), + (1006, 'Vibrating Ear Symbiant, Infantry Unit Aban', 90, 3, 538, 66), + (1007, 'Vibrating Ear Symbiant, Support Unit Aban', 90, 3, 538, 66), + (1008, 'Vibrating Feet Symbiant, Artillery Unit Aban', 90, 7, 538, 66), + (1009, 'Vibrating Feet Symbiant, Extermination Unit Aban', 90, 7, 538, 66), + (1010, 'Vibrating Feet Symbiant, Infantry Unit Aban', 90, 7, 538, 66), + (1011, 'Vibrating Left Arm Symbiant, Artillery Unit Aban', 90, 8, 538, 66), + (1012, 'Vibrating Left Arm Symbiant, Control Unit Aban', 90, 8, 538, 66), + (1013, 'Vibrating Left Arm Symbiant, Extermination Unit Aban', 90, 8, 538, 66), + (1014, 'Vibrating Left Arm Symbiant, Infantry Unit Aban', 90, 8, 538, 66), + (1015, 'Vibrating Left Hand Symbiant, Artillery Unit Aban', 90, 10, 538, 66), + (1016, 'Vibrating Left Hand Symbiant, Control Unit Aban', 90, 10, 538, 66), + (1017, 'Vibrating Left Wrist Symbiant, Control Unit Aban', 90, 9, 538, 66), + (1018, 'Vibrating Left Wrist Symbiant, Extermination Unit Aban', 90, 9, 538, 66), + (1019, 'Vibrating Left Wrist Symbiant, Support Unit Aban', 90, 9, 538, 66), + (1020, 'Vibrating Ocular Symbiant, Artillery Unit Aban', 90, 1, 538, 66), + (1021, 'Vibrating Right Arm Symbiant, Control Unit Aban', 90, 11, 538, 66), + (1022, 'Vibrating Right Arm Symbiant, Infantry Unit Aban', 90, 11, 538, 66), + (1023, 'Vibrating Right Hand Symbiant, Support Unit Aban', 90, 13, 538, 66), + (1024, 'Vibrating Right Wrist Symbiant, Control Unit Aban', 90, 12, 538, 66), + (1025, 'Vibrating Right Wrist Symbiant, Extermination Unit Aban', 90, 12, 538, 66), + (1026, 'Vibrating Thigh Symbiant, Control Unit Aban', 90, 6, 538, 66), + (1027, 'Vibrating Thigh Symbiant, Extermination Unit Aban', 90, 6, 538, 66), + (1028, 'Vibrating Thigh Symbiant, Infantry Unit Aban', 90, 6, 538, 66), + (1029, 'Vibrating Waist Symbiant, Artillery Unit Aban', 90, 5, 538, 66), + (1030, 'Vibrating Waist Symbiant, Extermination Unit Aban', 90, 5, 538, 66), + (1031, 'Vigorous Brain Symbiant, Control Unit Aban', 230, 2, 1679, 168), + (1032, 'Vigorous Brain Symbiant, Extermination Unit Aban', 230, 2, 1470, 168), + (1033, 'Vigorous Brain Symbiant, Support Unit Aban', 230, 2, 1470, 168), + (1034, 'Vigorous Ear Symbiant, Extermination Unit Aban', 230, 3, 1470, 168), + (1035, 'Vigorous Left Arm Symbiant, Artillery Unit Aban', 230, 8, 1470, 168), + (1036, 'Vigorous Left Arm Symbiant, Control Unit Aban', 230, 8, 1470, 168), + (1037, 'Vigorous Left Hand Symbiant, Infantry Unit Aban', 230, 10, 1470, 168), + (1038, 'Vigorous Left Wrist Symbiant, Artillery Unit Aban', 230, 9, 1470, 168), + (1039, 'Vigorous Left Wrist Symbiant, Control Unit Aban', 230, 9, 1470, 168), + (1040, 'Vigorous Ocular Symbiant, Artillery Unit Aban', 230, 1, 1470, 168), + (1041, 'Vigorous Ocular Symbiant, Infantry Unit Aban', 230, 1, 1470, 168), + (1042, 'Vigorous Right Arm Symbiant, Control Unit Aban', 230, 11, 1470, 168), + (1043, 'Vigorous Right Arm Symbiant, Infantry Unit Aban', 230, 11, 1470, 168), + (1044, 'Vigorous Right Hand Symbiant, Artillery Unit Aban', 230, 13, 1470, 168), + (1045, 'Vigorous Right Hand Symbiant, Extermination Unit Aban', 230, 13, 1470, 168), + (1046, 'Vigorous Right Hand Symbiant, Support Unit Aban', 230, 13, 1470, 168), + (1047, 'Vigorous Right Wrist Symbiant, Artillery Unit Aban', 230, 12, 1470, 168), + (1048, 'Vigorous Right Wrist Symbiant, Control Unit Aban', 230, 12, 1470, 168), + (1049, 'Vigorous Right Wrist Symbiant, Extermination Unit Aban', 230, 12, 1470, 168), + (1050, 'Vigorous Right Wrist Symbiant, Support Unit Aban', 230, 12, 1470, 168), + (1051, 'Vigorous Thigh Symbiant, Artillery Unit Aban', 230, 6, 1470, 168), + (1052, 'Vigorous Thigh Symbiant, Support Unit Aban', 230, 6, 1470, 168), + (1053, 'Vigorous Waist Symbiant, Extermination Unit Aban', 230, 5, 1470, 168), + (1054, 'Vigorous Waist Symbiant, Infantry Unit Aban', 230, 5, 1470, 168), + (1055, 'Vital Brain Symbiant, Artillery Unit Aban', 260, 2, 1897, 190), + (1056, 'Vital Brain Symbiant, Support Unit Aban', 260, 2, 1897, 190), + (1057, 'Vital Chest Symbiant, Artillery Unit Aban', 260, 4, 1897, 190), + (1058, 'Vital Chest Symbiant, Extermination Unit Aban', 260, 4, 1897, 190), + (1059, 'Vital Chest Symbiant, Infantry Unit Aban', 260, 4, 1897, 190), + (1060, 'Vital Chest Symbiant, Support Unit Aban', 260, 4, 1897, 190), + (1061, 'Vital Ear Symbiant, Artillery Unit Aban', 260, 3, 1897, 190), + (1062, 'Vital Ear Symbiant, Control Unit Aban', 260, 3, 1897, 190), + (1063, 'Vital Feet Symbiant, Extermination Unit Aban', 260, 7, 1897, 190), + (1064, 'Vital Feet Symbiant, Infantry Unit Aban', 260, 7, 1897, 190), + (1065, 'Vital Left Arm Symbiant, Control Unit Aban', 260, 8, 1897, 190), + (1066, 'Vital Left Arm Symbiant, Infantry Unit Aban', 260, 8, 1897, 190), + (1067, 'Vital Left Arm Symbiant, Support Unit Aban', 260, 8, 1897, 190), + (1068, 'Vital Left Hand Symbiant, Artillery Unit Aban', 260, 10, 1897, 190), + (1069, 'Vital Left Wrist Symbiant, Control Unit Aban', 260, 9, 1897, 190), + (1070, 'Vital Ocular Symbiant, Infantry Unit Aban', 260, 1, 1897, 190), + (1071, 'Vital Ocular Symbiant, Support Unit Aban', 260, 1, 1897, 190), + (1072, 'Vital Right Arm Symbiant, Control Unit Aban', 260, 11, 1897, 190), + (1073, 'Vital Right Arm Symbiant, Extermination Unit Aban', 260, 11, 1897, 190), + (1074, 'Vital Right Arm Symbiant, Support Unit Aban', 260, 11, 1897, 190), + (1075, 'Vital Right Hand Symbiant, Infantry Unit Aban', 260, 13, 1897, 190), + (1076, 'Vital Right Hand Symbiant, Support Unit Aban', 260, 13, 1897, 190), + (1077, 'Vital Right Wrist Symbiant, Control Unit Aban', 260, 12, 1897, 190), + (1078, 'Vital Right Wrist Symbiant, Infantry Unit Aban', 260, 12, 1897, 190), + (1079, 'Vital Right Wrist Symbiant, Support Unit Aban', 260, 12, 1897, 190), + (1080, 'Vital Thigh Symbiant, Infantry Unit Aban', 260, 6, 1897, 190), + (1081, 'Vital Waist Symbiant, Artillery Unit Aban', 260, 5, 1897, 190), + (1082, 'Vital Waist Symbiant, Control Unit Aban', 260, 5, 1897, 190), + (1083, 'Vital Waist Symbiant, Extermination Unit Aban', 260, 5, 1897, 190), + (1084, 'Working Brain Symbiant, Control Unit Aban', 160, 2, 951, 117), + (1085, 'Working Brain Symbiant, Infantry Unit Aban', 160, 2, 951, 117), + (1086, 'Working Brain Symbiant, Support Unit Aban', 160, 2, 951, 117), + (1087, 'Working Chest Symbiant, Support Unit Aban', 160, 4, 951, 117), + (1088, 'Working Ear Symbiant, Control Unit Aban', 160, 3, 951, 117), + (1089, 'Working Ear Symbiant, Extermination Unit Aban', 160, 3, 951, 117), + (1090, 'Working Ear Symbiant, Infantry Unit Aban', 160, 3, 951, 117), + (1091, 'Working Ear Symbiant, Support Unit Aban', 160, 3, 951, 117), + (1092, 'Working Feet Symbiant, Artillery Unit Aban', 160, 7, 951, 117), + (1093, 'Working Feet Symbiant, Control Unit Aban', 160, 7, 951, 117), + (1094, 'Working Feet Symbiant, Infantry Unit Aban', 160, 7, 951, 117), + (1095, 'Working Left Arm Symbiant, Extermination Unit Aban', 160, 8, 951, 117), + (1096, 'Working Left Hand Symbiant, Control Unit Aban', 160, 10, 951, 117), + (1097, 'Working Left Hand Symbiant, Infantry Unit Aban', 160, 10, 951, 117), + (1098, 'Working Left Wrist Symbiant, Infantry Unit Aban', 160, 9, 951, 117), + (1099, 'Working Left Wrist Symbiant, Support Unit Aban', 160, 9, 951, 117), + (1100, 'Working Ocular Symbiant, Control Unit Aban', 160, 1, 951, 117), + (1101, 'Working Ocular Symbiant, Support Unit Aban', 160, 1, 951, 117), + (1102, 'Working Right Arm Symbiant, Artillery Unit Aban', 160, 11, 951, 117), + (1103, 'Working Right Arm Symbiant, Support Unit Aban', 160, 11, 951, 117), + (1104, 'Working Right Hand Symbiant, Artillery Unit Aban', 160, 13, 951, 117), + (1105, 'Working Right Hand Symbiant, Control Unit Aban', 160, 13, 951, 117), + (1106, 'Working Right Hand Symbiant, Extermination Unit Aban', 160, 13, 951, 117), + (1107, 'Working Right Hand Symbiant, Infantry Unit Aban', 160, 13, 951, 117), + (1108, 'Working Right Wrist Symbiant, Extermination Unit Aban', 160, 12, 951, 117), + (1109, 'Working Right Wrist Symbiant, Support Unit Aban', 160, 12, 951, 117), + (1110, 'Working Thigh Symbiant, Extermination Unit Aban', 160, 6, 951, 117), + (1111, 'Working Thigh Symbiant, Infantry Unit Aban', 160, 6, 951, 117), + (1112, 'Working Waist Symbiant, Artillery Unit Aban', 160, 5, 951, 117); \ No newline at end of file diff --git a/modules/standard/implant/sql/SymbiantAbilityMatrix.sql b/modules/standard/implant/sql/SymbiantAbilityMatrix.sql new file mode 100644 index 0000000..9c7c368 --- /dev/null +++ b/modules/standard/implant/sql/SymbiantAbilityMatrix.sql @@ -0,0 +1,3346 @@ +# noinspection LongLineForFile + +DROP TABLE IF EXISTS SymbiantAbilityMatrix; +CREATE TABLE IF NOT EXISTS SymbiantAbilityMatrix +( + SymbiantID INT NOT NULL, + AbilityID INT NOT NULL, + Amount INT NOT NULL +); +INSERT INTO SymbiantAbilityMatrix (SymbiantID, AbilityID, Amount) +VALUES (945, 6, 3), + (945, 1, 3), + (945, 4, 3), + (948, 6, 3), + (948, 5, 3), + (948, 4, 3), + (947, 6, 3), + (947, 2, 3), + (947, 3, 3), + (949, 1, 3), + (949, 2, 3), + (949, 4, 3), + (946, 1, 3), + (946, 2, 3), + (946, 3, 3), + (580, 6, 12), + (580, 1, 12), + (580, 4, 12), + (583, 6, 12), + (583, 5, 12), + (583, 4, 12), + (582, 6, 12), + (582, 2, 12), + (582, 3, 12), + (584, 1, 12), + (584, 2, 12), + (584, 4, 12), + (581, 1, 12), + (581, 2, 12), + (581, 3, 12), + (359, 6, 23), + (359, 1, 23), + (359, 4, 23), + (360, 1, 23), + (360, 2, 23), + (360, 3, 23), + (481, 6, 46), + (481, 1, 46), + (481, 4, 46), + (672, 6, 57), + (672, 5, 57), + (672, 4, 57), + (858, 6, 69), + (858, 1, 69), + (858, 4, 69), + (860, 1, 69), + (860, 2, 69), + (860, 4, 69), + (859, 1, 69), + (859, 2, 69), + (859, 3, 69), + (887, 6, 91), + (887, 1, 91), + (887, 4, 91), + (890, 6, 91), + (890, 5, 91), + (890, 4, 91), + (889, 6, 91), + (889, 2, 91), + (889, 3, 91), + (891, 1, 91), + (891, 2, 91), + (891, 4, 91), + (888, 1, 91), + (888, 2, 91), + (888, 3, 91), + (221, 6, 113), + (221, 2, 113), + (221, 3, 113), + (222, 1, 113), + (222, 2, 113), + (222, 4, 113), + (540, 6, 136), + (540, 1, 136), + (540, 4, 136), + (541, 6, 136), + (541, 2, 136), + (541, 3, 136), + (542, 1, 136), + (542, 2, 136), + (542, 4, 136), + (62, 6, 159), + (62, 5, 159), + (62, 4, 159), + (63, 1, 159), + (63, 2, 159), + (63, 4, 159), + (61, 1, 159), + (61, 2, 159), + (61, 3, 159), + (641, 6, 181), + (641, 1, 181), + (641, 4, 181), + (642, 6, 181), + (642, 2, 181), + (642, 3, 181), + (1006, 6, 203), + (1006, 5, 203), + (1006, 4, 203), + (1005, 6, 203), + (1005, 2, 203), + (1005, 3, 203), + (1007, 1, 203), + (1007, 2, 203), + (1007, 4, 203), + (122, 6, 226), + (122, 1, 226), + (122, 4, 226), + (123, 6, 226), + (123, 5, 226), + (123, 4, 226), + (124, 1, 226), + (124, 2, 226), + (124, 4, 226), + (706, 6, 249), + (706, 1, 249), + (706, 4, 249), + (708, 1, 249), + (708, 2, 249), + (708, 4, 249), + (707, 1, 249), + (707, 2, 249), + (707, 3, 249), + (772, 6, 271), + (772, 2, 271), + (772, 3, 271), + (800, 6, 293), + (800, 1, 293), + (800, 4, 293), + (801, 6, 293), + (801, 5, 293), + (801, 4, 293), + (833, 6, 316), + (833, 1, 316), + (833, 4, 316), + (835, 6, 316), + (835, 5, 316), + (835, 4, 316), + (834, 1, 316), + (834, 2, 316), + (834, 3, 316), + (906, 6, 339), + (906, 1, 339), + (906, 4, 339), + (908, 1, 339), + (908, 2, 339), + (908, 4, 339), + (907, 1, 339), + (907, 2, 339), + (907, 3, 339), + (1090, 6, 361), + (1090, 5, 361), + (1090, 4, 361), + (1089, 6, 361), + (1089, 2, 361), + (1089, 3, 361), + (1091, 1, 361), + (1091, 2, 361), + (1091, 4, 361), + (1088, 1, 361), + (1088, 2, 361), + (1088, 3, 361), + (7, 6, 383), + (7, 1, 383), + (7, 4, 383), + (9, 6, 383), + (9, 5, 383), + (9, 4, 383), + (8, 1, 383), + (8, 2, 383), + (8, 3, 383), + (96, 6, 406), + (96, 1, 406), + (96, 4, 406), + (98, 6, 406), + (98, 2, 406), + (98, 3, 406), + (99, 1, 406), + (99, 2, 406), + (99, 4, 406), + (97, 1, 406), + (97, 2, 406), + (97, 3, 406), + (276, 6, 429), + (276, 2, 429), + (276, 3, 429), + (275, 1, 429), + (275, 2, 429), + (275, 3, 429), + (336, 6, 451), + (336, 5, 451), + (336, 4, 451), + (335, 6, 451), + (335, 2, 451), + (335, 3, 451), + (337, 1, 451), + (337, 2, 451), + (337, 4, 451), + (509, 6, 683), + (509, 5, 683), + (509, 4, 683), + (508, 6, 683), + (508, 2, 683), + (508, 3, 683), + (739, 1, 716), + (739, 2, 716), + (739, 4, 716), + (738, 1, 716), + (738, 2, 716), + (738, 3, 716), + (1034, 6, 749), + (1034, 2, 749), + (1034, 3, 749), + (248, 1, 781), + (248, 2, 781), + (248, 4, 781), + (307, 6, 1063), + (307, 5, 1063), + (307, 4, 1063), + (306, 6, 1063), + (306, 2, 1063), + (306, 3, 1063), + (1061, 6, 1106), + (1061, 1, 1106), + (1061, 4, 1106), + (1062, 1, 1106), + (1062, 2, 1106), + (1062, 3, 1106), + (157, 6, 1149), + (157, 1, 1149), + (157, 4, 1149), + (160, 6, 1149), + (160, 5, 1149), + (160, 4, 1149), + (159, 6, 1149), + (159, 2, 1149), + (159, 3, 1149), + (158, 1, 1149), + (158, 2, 1149), + (158, 3, 1149), + (42, 6, 1191), + (42, 5, 1191), + (42, 4, 1191), + (423, 6, 1276), + (423, 1, 1276), + (423, 4, 1276), + (426, 6, 1276), + (426, 5, 1276), + (426, 4, 1276), + (425, 6, 1276), + (425, 2, 1276), + (425, 3, 1276), + (427, 1, 1276), + (427, 2, 1276), + (427, 4, 1276), + (424, 1, 1276), + (424, 2, 1276), + (424, 3, 1276), + (990, 6, 3), + (990, 1, 3), + (990, 5, 3), + (993, 6, 3), + (993, 5, 3), + (993, 2, 3), + (992, 2, 3), + (992, 4, 3), + (992, 3, 3), + (994, 1, 3), + (994, 2, 3), + (994, 4, 3), + (991, 1, 3), + (991, 2, 3), + (991, 3, 3), + (625, 6, 12), + (625, 1, 12), + (625, 5, 12), + (628, 6, 12), + (628, 5, 12), + (628, 2, 12), + (627, 2, 12), + (627, 4, 12), + (627, 3, 12), + (629, 1, 12), + (629, 2, 12), + (629, 4, 12), + (626, 1, 12), + (626, 2, 12), + (626, 3, 12), + (380, 6, 23), + (380, 5, 23), + (380, 2, 23), + (381, 1, 23), + (381, 2, 23), + (381, 4, 23), + (408, 6, 35), + (408, 1, 35), + (408, 5, 35), + (409, 2, 35), + (409, 4, 35), + (409, 3, 35), + (410, 1, 35), + (410, 2, 35), + (410, 4, 35), + (502, 6, 46), + (502, 1, 46), + (502, 5, 46), + (504, 2, 46), + (504, 4, 46), + (504, 3, 46), + (503, 1, 46), + (503, 2, 46), + (503, 3, 46), + (693, 6, 57), + (693, 1, 57), + (693, 5, 57), + (695, 6, 57), + (695, 5, 57), + (695, 2, 57), + (696, 1, 57), + (696, 2, 57), + (696, 4, 57), + (694, 1, 57), + (694, 2, 57), + (694, 3, 57), + (879, 1, 69), + (879, 2, 69), + (879, 3, 69), + (241, 2, 113), + (241, 4, 113), + (241, 3, 113), + (565, 1, 136), + (565, 2, 136), + (565, 4, 136), + (84, 2, 159), + (84, 4, 159), + (84, 3, 159), + (85, 1, 159), + (85, 2, 159), + (85, 4, 159), + (83, 1, 159), + (83, 2, 159), + (83, 3, 159), + (662, 6, 181), + (662, 1, 181), + (662, 5, 181), + (665, 6, 181), + (665, 5, 181), + (665, 2, 181), + (664, 2, 181), + (664, 4, 181), + (664, 3, 181), + (663, 1, 181), + (663, 2, 181), + (663, 3, 181), + (1028, 6, 203), + (1028, 5, 203), + (1028, 2, 203), + (1027, 2, 203), + (1027, 4, 203), + (1027, 3, 203), + (1026, 1, 203), + (1026, 2, 203), + (1026, 3, 203), + (149, 6, 226), + (149, 5, 226), + (149, 2, 226), + (148, 2, 226), + (148, 4, 226), + (148, 3, 226), + (727, 6, 249), + (727, 1, 249), + (727, 5, 249), + (728, 6, 249), + (728, 5, 249), + (728, 2, 249), + (822, 1, 293), + (822, 2, 293), + (822, 4, 293), + (821, 1, 293), + (821, 2, 293), + (821, 3, 293), + (850, 2, 316), + (850, 4, 316), + (850, 3, 316), + (849, 1, 316), + (849, 2, 316), + (849, 3, 316), + (929, 6, 339), + (929, 1, 339), + (929, 5, 339), + (930, 6, 339), + (930, 5, 339), + (930, 2, 339), + (1111, 6, 361), + (1111, 5, 361), + (1111, 2, 361), + (1110, 2, 361), + (1110, 4, 361), + (1110, 3, 361), + (33, 6, 383), + (33, 5, 383), + (33, 2, 383), + (32, 2, 383), + (32, 4, 383), + (32, 3, 383), + (34, 1, 383), + (34, 2, 383), + (34, 4, 383), + (31, 1, 383), + (31, 2, 383), + (31, 3, 383), + (115, 6, 406), + (115, 5, 406), + (115, 2, 406), + (114, 2, 406), + (114, 4, 406), + (114, 3, 406), + (116, 1, 406), + (116, 2, 406), + (116, 4, 406), + (113, 1, 406), + (113, 2, 406), + (113, 3, 406), + (295, 6, 429), + (295, 1, 429), + (295, 5, 429), + (352, 6, 451), + (352, 1, 451), + (352, 5, 451), + (354, 2, 451), + (354, 4, 451), + (354, 3, 451), + (355, 1, 451), + (355, 2, 451), + (355, 4, 451), + (353, 1, 451), + (353, 2, 451), + (353, 3, 451), + (529, 6, 683), + (529, 1, 683), + (529, 5, 683), + (531, 1, 683), + (531, 2, 683), + (531, 4, 683), + (530, 1, 683), + (530, 2, 683), + (530, 3, 683), + (764, 6, 716), + (764, 5, 716), + (764, 2, 716), + (763, 1, 716), + (763, 2, 716), + (763, 3, 716), + (1051, 6, 749), + (1051, 1, 749), + (1051, 5, 749), + (1052, 1, 749), + (1052, 2, 749), + (1052, 4, 749), + (269, 2, 781), + (269, 4, 781), + (269, 3, 781), + (270, 1, 781), + (270, 2, 781), + (270, 4, 781), + (324, 6, 1063), + (324, 1, 1063), + (324, 5, 1063), + (326, 6, 1063), + (326, 5, 1063), + (326, 2, 1063), + (327, 1, 1063), + (327, 2, 1063), + (327, 4, 1063), + (325, 1, 1063), + (325, 2, 1063), + (325, 3, 1063), + (1080, 6, 1106), + (1080, 5, 1106), + (1080, 2, 1106), + (181, 6, 1149), + (181, 1, 1149), + (181, 5, 1149), + (183, 6, 1149), + (183, 5, 1149), + (183, 2, 1149), + (182, 2, 1149), + (182, 4, 1149), + (182, 3, 1149), + (55, 6, 1191), + (55, 1, 1191), + (55, 5, 1191), + (210, 6, 1233), + (210, 1, 1233), + (210, 5, 1233), + (212, 2, 1233), + (212, 4, 1233), + (212, 3, 1233), + (213, 1, 1233), + (213, 2, 1233), + (213, 4, 1233), + (211, 1, 1233), + (211, 2, 1233), + (211, 3, 1233), + (468, 6, 1276), + (468, 1, 1276), + (468, 5, 1276), + (471, 6, 1276), + (471, 5, 1276), + (471, 2, 1276), + (470, 2, 1276), + (470, 4, 1276), + (470, 3, 1276), + (472, 1, 1276), + (472, 2, 1276), + (472, 4, 1276), + (469, 1, 1276), + (469, 2, 1276), + (469, 3, 1276), + (975, 6, 3), + (975, 1, 3), + (975, 5, 3), + (978, 6, 3), + (978, 1, 3), + (978, 5, 3), + (977, 1, 3), + (977, 2, 3), + (977, 3, 3), + (979, 6, 3), + (979, 1, 3), + (979, 4, 3), + (976, 6, 3), + (976, 2, 3), + (976, 3, 3), + (610, 6, 12), + (610, 1, 12), + (610, 5, 12), + (613, 6, 12), + (613, 1, 12), + (613, 5, 12), + (612, 1, 12), + (612, 2, 12), + (612, 3, 12), + (614, 6, 12), + (614, 1, 12), + (614, 4, 12), + (611, 6, 12), + (611, 2, 12), + (611, 3, 12), + (373, 6, 23), + (373, 1, 23), + (373, 5, 23), + (375, 1, 23), + (375, 2, 23), + (375, 3, 23), + (374, 6, 23), + (374, 2, 23), + (374, 3, 23), + (401, 1, 35), + (401, 2, 35), + (401, 3, 35), + (400, 6, 35), + (400, 2, 35), + (400, 3, 35), + (492, 6, 46), + (492, 1, 46), + (492, 4, 46), + (491, 6, 46), + (491, 2, 46), + (491, 3, 46), + (683, 6, 57), + (683, 1, 57), + (683, 5, 57), + (685, 1, 57), + (685, 2, 57), + (685, 3, 57), + (686, 6, 57), + (686, 1, 57), + (686, 4, 57), + (684, 6, 57), + (684, 2, 57), + (684, 3, 57), + (875, 1, 69), + (875, 2, 69), + (875, 3, 69), + (896, 6, 91), + (896, 1, 91), + (896, 5, 91), + (898, 1, 91), + (898, 2, 91), + (898, 3, 91), + (897, 6, 91), + (897, 2, 91), + (897, 3, 91), + (237, 6, 113), + (237, 1, 113), + (237, 5, 113), + (238, 6, 113), + (238, 1, 113), + (238, 5, 113), + (557, 6, 136), + (557, 1, 136), + (557, 5, 136), + (558, 6, 136), + (558, 2, 136), + (558, 3, 136), + (74, 6, 159), + (74, 1, 159), + (74, 5, 159), + (75, 1, 159), + (75, 2, 159), + (75, 3, 159), + (654, 6, 181), + (654, 1, 181), + (654, 5, 181), + (655, 6, 181), + (655, 1, 181), + (655, 5, 181), + (1022, 6, 203), + (1022, 1, 203), + (1022, 5, 203), + (1021, 6, 203), + (1021, 2, 203), + (1021, 3, 203), + (138, 6, 226), + (138, 1, 226), + (138, 5, 226), + (140, 6, 226), + (140, 1, 226), + (140, 5, 226), + (141, 6, 226), + (141, 1, 226), + (141, 4, 226), + (139, 6, 226), + (139, 2, 226), + (139, 3, 226), + (786, 6, 271), + (786, 1, 271), + (786, 5, 271), + (788, 6, 271), + (788, 1, 271), + (788, 5, 271), + (787, 1, 271), + (787, 2, 271), + (787, 3, 271), + (789, 6, 271), + (789, 1, 271), + (789, 4, 271), + (813, 6, 293), + (813, 1, 293), + (813, 5, 293), + (815, 6, 293), + (815, 1, 293), + (815, 5, 293), + (814, 6, 293), + (814, 2, 293), + (814, 3, 293), + (924, 6, 339), + (924, 1, 339), + (924, 5, 339), + (923, 1, 339), + (923, 2, 339), + (923, 3, 339), + (1102, 6, 361), + (1102, 1, 361), + (1102, 5, 361), + (1103, 6, 361), + (1103, 1, 361), + (1103, 4, 361), + (22, 6, 383), + (22, 1, 383), + (22, 5, 383), + (21, 1, 383), + (21, 2, 383), + (21, 3, 383), + (23, 6, 383), + (23, 1, 383), + (23, 4, 383), + (108, 6, 406), + (108, 1, 406), + (108, 5, 406), + (109, 6, 406), + (109, 1, 406), + (109, 5, 406), + (110, 6, 406), + (110, 1, 406), + (110, 4, 406), + (289, 6, 429), + (289, 1, 429), + (289, 5, 429), + (290, 6, 429), + (290, 1, 429), + (290, 4, 429), + (350, 1, 451), + (350, 2, 451), + (350, 3, 451), + (349, 6, 451), + (349, 2, 451), + (349, 3, 451), + (521, 6, 683), + (521, 1, 683), + (521, 5, 683), + (522, 6, 683), + (522, 1, 683), + (522, 4, 683), + (754, 6, 716), + (754, 1, 716), + (754, 5, 716), + (756, 6, 716), + (756, 1, 716), + (756, 5, 716), + (755, 6, 716), + (755, 2, 716), + (755, 3, 716), + (1043, 6, 749), + (1043, 1, 749), + (1043, 5, 749), + (1042, 6, 749), + (1042, 2, 749), + (1042, 3, 749), + (265, 6, 781), + (265, 1, 781), + (265, 5, 781), + (264, 1, 781), + (264, 2, 781), + (264, 3, 781), + (266, 6, 781), + (266, 1, 781), + (266, 4, 781), + (263, 6, 781), + (263, 2, 781), + (263, 3, 781), + (319, 6, 1063), + (319, 1, 1063), + (319, 5, 1063), + (318, 1, 1063), + (318, 2, 1063), + (318, 3, 1063), + (1073, 1, 1106), + (1073, 2, 1106), + (1073, 3, 1106), + (1074, 6, 1106), + (1074, 1, 1106), + (1074, 4, 1106), + (1072, 6, 1106), + (1072, 2, 1106), + (1072, 3, 1106), + (177, 6, 1149), + (177, 1, 1149), + (177, 4, 1149), + (176, 6, 1149), + (176, 2, 1149), + (176, 3, 1149), + (52, 1, 1191), + (52, 2, 1191), + (52, 3, 1191), + (203, 1, 1233), + (203, 2, 1233), + (203, 3, 1233), + (204, 6, 1233), + (204, 1, 1233), + (204, 4, 1233), + (453, 6, 1276), + (453, 1, 1276), + (453, 5, 1276), + (456, 6, 1276), + (456, 1, 1276), + (456, 5, 1276), + (455, 1, 1276), + (455, 2, 1276), + (455, 3, 1276), + (457, 6, 1276), + (457, 1, 1276), + (457, 4, 1276), + (454, 6, 1276), + (454, 2, 1276), + (454, 3, 1276), + (970, 6, 3), + (970, 1, 3), + (970, 4, 3), + (973, 6, 3), + (973, 5, 3), + (973, 4, 3), + (972, 2, 3), + (972, 4, 3), + (972, 3, 3), + (974, 6, 3), + (974, 1, 3), + (974, 4, 3), + (971, 2, 3), + (971, 4, 3), + (971, 3, 3), + (605, 6, 12), + (605, 1, 12), + (605, 4, 12), + (608, 6, 12), + (608, 5, 12), + (608, 4, 12), + (607, 2, 12), + (607, 4, 12), + (607, 3, 12), + (609, 6, 12), + (609, 1, 12), + (609, 4, 12), + (606, 2, 12), + (606, 4, 12), + (606, 3, 12), + (372, 2, 23), + (372, 4, 23), + (372, 3, 23), + (397, 6, 35), + (397, 1, 35), + (397, 4, 35), + (398, 2, 35), + (398, 4, 35), + (398, 3, 35), + (399, 6, 35), + (399, 1, 35), + (399, 4, 35), + (490, 6, 46), + (490, 1, 46), + (490, 4, 46), + (682, 6, 57), + (682, 5, 57), + (682, 4, 57), + (872, 6, 69), + (872, 1, 69), + (872, 4, 69), + (873, 6, 69), + (873, 5, 69), + (873, 4, 69), + (874, 6, 69), + (874, 1, 69), + (874, 4, 69), + (895, 6, 91), + (895, 5, 91), + (895, 4, 91), + (894, 2, 91), + (894, 4, 91), + (894, 3, 91), + (234, 6, 113), + (234, 1, 113), + (234, 4, 113), + (235, 2, 113), + (235, 4, 113), + (235, 3, 113), + (236, 6, 113), + (236, 1, 113), + (236, 4, 113), + (556, 6, 136), + (556, 5, 136), + (556, 4, 136), + (555, 2, 136), + (555, 4, 136), + (555, 3, 136), + (554, 2, 136), + (554, 4, 136), + (554, 3, 136), + (69, 6, 159), + (69, 1, 159), + (69, 4, 159), + (72, 6, 159), + (72, 5, 159), + (72, 4, 159), + (71, 2, 159), + (71, 4, 159), + (71, 3, 159), + (73, 6, 159), + (73, 1, 159), + (73, 4, 159), + (70, 2, 159), + (70, 4, 159), + (70, 3, 159), + (653, 6, 181), + (653, 1, 181), + (653, 4, 181), + (652, 2, 181), + (652, 4, 181), + (652, 3, 181), + (1020, 6, 203), + (1020, 1, 203), + (1020, 4, 203), + (136, 6, 226), + (136, 1, 226), + (136, 4, 226), + (137, 6, 226), + (137, 1, 226), + (137, 4, 226), + (721, 2, 249), + (721, 4, 249), + (721, 3, 249), + (784, 6, 271), + (784, 5, 271), + (784, 4, 271), + (785, 6, 271), + (785, 1, 271), + (785, 4, 271), + (812, 2, 293), + (812, 4, 293), + (812, 3, 293), + (841, 6, 316), + (841, 1, 316), + (841, 4, 316), + (843, 6, 316), + (843, 5, 316), + (843, 4, 316), + (842, 2, 316), + (842, 4, 316), + (842, 3, 316), + (920, 6, 339), + (920, 1, 339), + (920, 4, 339), + (921, 2, 339), + (921, 4, 339), + (921, 3, 339), + (922, 6, 339), + (922, 1, 339), + (922, 4, 339), + (1101, 6, 361), + (1101, 1, 361), + (1101, 4, 361), + (1100, 2, 361), + (1100, 4, 361), + (1100, 3, 361), + (18, 6, 383), + (18, 1, 383), + (18, 4, 383), + (19, 2, 383), + (19, 4, 383), + (19, 3, 383), + (20, 6, 383), + (20, 1, 383), + (20, 4, 383), + (288, 6, 429), + (288, 1, 429), + (288, 4, 429), + (347, 6, 451), + (347, 5, 451), + (347, 4, 451), + (346, 2, 451), + (346, 4, 451), + (346, 3, 451), + (348, 6, 451), + (348, 1, 451), + (348, 4, 451), + (519, 6, 683), + (519, 5, 683), + (519, 4, 683), + (520, 6, 683), + (520, 1, 683), + (520, 4, 683), + (518, 2, 683), + (518, 4, 683), + (518, 3, 683), + (751, 6, 716), + (751, 1, 716), + (751, 4, 716), + (753, 6, 716), + (753, 5, 716), + (753, 4, 716), + (752, 2, 716), + (752, 4, 716), + (752, 3, 716), + (1040, 6, 749), + (1040, 1, 749), + (1040, 4, 749), + (1041, 6, 749), + (1041, 5, 749), + (1041, 4, 749), + (262, 2, 781), + (262, 4, 781), + (262, 3, 781), + (261, 2, 781), + (261, 4, 781), + (261, 3, 781), + (316, 6, 1063), + (316, 5, 1063), + (316, 4, 1063), + (317, 6, 1063), + (317, 1, 1063), + (317, 4, 1063), + (1070, 6, 1106), + (1070, 5, 1106), + (1070, 4, 1106), + (1071, 6, 1106), + (1071, 1, 1106), + (1071, 4, 1106), + (175, 2, 1149), + (175, 4, 1149), + (175, 3, 1149), + (174, 2, 1149), + (174, 4, 1149), + (174, 3, 1149), + (51, 6, 1191), + (51, 5, 1191), + (51, 4, 1191), + (50, 2, 1191), + (50, 4, 1191), + (50, 3, 1191), + (49, 2, 1191), + (49, 4, 1191), + (49, 3, 1191), + (201, 6, 1233), + (201, 1, 1233), + (201, 4, 1233), + (202, 2, 1233), + (202, 4, 1233), + (202, 3, 1233), + (448, 6, 1276), + (448, 1, 1276), + (448, 4, 1276), + (451, 6, 1276), + (451, 5, 1276), + (451, 4, 1276), + (450, 2, 1276), + (450, 4, 1276), + (450, 3, 1276), + (452, 6, 1276), + (452, 1, 1276), + (452, 4, 1276), + (449, 2, 1276), + (449, 4, 1276), + (449, 3, 1276), + (995, 6, 3), + (995, 1, 3), + (995, 5, 3), + (998, 6, 3), + (998, 5, 3), + (998, 2, 3), + (997, 6, 3), + (997, 2, 3), + (997, 3, 3), + (999, 6, 3), + (999, 1, 3), + (999, 4, 3), + (996, 1, 3), + (996, 2, 3), + (996, 3, 3), + (630, 6, 12), + (630, 1, 12), + (630, 5, 12), + (633, 6, 12), + (633, 5, 12), + (633, 2, 12), + (632, 6, 12), + (632, 2, 12), + (632, 3, 12), + (634, 6, 12), + (634, 1, 12), + (634, 4, 12), + (631, 1, 12), + (631, 2, 12), + (631, 3, 12), + (383, 6, 23), + (383, 5, 23), + (383, 2, 23), + (382, 6, 23), + (382, 2, 23), + (382, 3, 23), + (384, 6, 23), + (384, 1, 23), + (384, 4, 23), + (412, 6, 35), + (412, 2, 35), + (412, 3, 35), + (411, 1, 35), + (411, 2, 35), + (411, 3, 35), + (505, 6, 46), + (505, 1, 46), + (505, 4, 46), + (697, 6, 57), + (697, 1, 57), + (697, 5, 57), + (698, 6, 57), + (698, 5, 57), + (698, 2, 57), + (699, 6, 57), + (699, 1, 57), + (699, 4, 57), + (880, 6, 69), + (880, 1, 69), + (880, 5, 69), + (882, 6, 69), + (882, 2, 69), + (882, 3, 69), + (881, 1, 69), + (881, 2, 69), + (881, 3, 69), + (903, 1, 91), + (903, 2, 91), + (903, 3, 91), + (242, 6, 113), + (242, 1, 113), + (242, 5, 113), + (244, 6, 113), + (244, 2, 113), + (244, 3, 113), + (245, 6, 113), + (245, 1, 113), + (245, 4, 113), + (243, 1, 113), + (243, 2, 113), + (243, 3, 113), + (566, 6, 136), + (566, 1, 136), + (566, 5, 136), + (568, 6, 136), + (568, 5, 136), + (568, 2, 136), + (569, 6, 136), + (569, 1, 136), + (569, 4, 136), + (567, 1, 136), + (567, 2, 136), + (567, 3, 136), + (86, 6, 159), + (86, 5, 159), + (86, 2, 159), + (87, 6, 159), + (87, 1, 159), + (87, 4, 159), + (666, 1, 181), + (666, 2, 181), + (666, 3, 181), + (1029, 6, 203), + (1029, 1, 203), + (1029, 5, 203), + (1030, 6, 203), + (1030, 2, 203), + (1030, 3, 203), + (150, 6, 226), + (150, 5, 226), + (150, 2, 226), + (151, 6, 226), + (151, 1, 226), + (151, 4, 226), + (729, 6, 249), + (729, 1, 249), + (729, 5, 249), + (731, 6, 249), + (731, 5, 249), + (731, 2, 249), + (732, 6, 249), + (732, 1, 249), + (732, 4, 249), + (730, 1, 249), + (730, 2, 249), + (730, 3, 249), + (793, 6, 271), + (793, 1, 271), + (793, 5, 271), + (794, 6, 271), + (794, 2, 271), + (794, 3, 271), + (795, 6, 271), + (795, 1, 271), + (795, 4, 271), + (823, 6, 293), + (823, 5, 293), + (823, 2, 293), + (824, 6, 293), + (824, 1, 293), + (824, 4, 293), + (851, 1, 316), + (851, 2, 316), + (851, 3, 316), + (931, 6, 339), + (931, 1, 339), + (931, 5, 339), + (933, 6, 339), + (933, 2, 339), + (933, 3, 339), + (934, 6, 339), + (934, 1, 339), + (934, 4, 339), + (932, 1, 339), + (932, 2, 339), + (932, 3, 339), + (1112, 6, 361), + (1112, 1, 361), + (1112, 5, 361), + (35, 6, 383), + (35, 1, 383), + (35, 5, 383), + (37, 6, 383), + (37, 5, 383), + (37, 2, 383), + (36, 6, 383), + (36, 2, 383), + (36, 3, 383), + (38, 6, 383), + (38, 1, 383), + (38, 4, 383), + (118, 6, 406), + (118, 5, 406), + (118, 2, 406), + (117, 1, 406), + (117, 2, 406), + (117, 3, 406), + (296, 6, 429), + (296, 1, 429), + (296, 5, 429), + (297, 1, 429), + (297, 2, 429), + (297, 3, 429), + (356, 1, 451), + (356, 2, 451), + (356, 3, 451), + (532, 6, 683), + (532, 1, 683), + (532, 5, 683), + (533, 6, 683), + (533, 5, 683), + (533, 2, 683), + (766, 6, 716), + (766, 5, 716), + (766, 2, 716), + (767, 6, 716), + (767, 1, 716), + (767, 4, 716), + (765, 1, 716), + (765, 2, 716), + (765, 3, 716), + (1054, 6, 749), + (1054, 5, 749), + (1054, 2, 749), + (1053, 6, 749), + (1053, 2, 749), + (1053, 3, 749), + (272, 6, 781), + (272, 5, 781), + (272, 2, 781), + (271, 6, 781), + (271, 2, 781), + (271, 3, 781), + (328, 6, 1063), + (328, 2, 1063), + (328, 3, 1063), + (1081, 6, 1106), + (1081, 1, 1106), + (1081, 5, 1106), + (1083, 6, 1106), + (1083, 2, 1106), + (1083, 3, 1106), + (1082, 1, 1106), + (1082, 2, 1106), + (1082, 3, 1106), + (184, 1, 1149), + (184, 2, 1149), + (184, 3, 1149), + (56, 6, 1191), + (56, 1, 1191), + (56, 5, 1191), + (57, 6, 1191), + (57, 2, 1191), + (57, 3, 1191), + (58, 6, 1191), + (58, 1, 1191), + (58, 4, 1191), + (214, 6, 1233), + (214, 1, 1233), + (214, 5, 1233), + (216, 6, 1233), + (216, 5, 1233), + (216, 2, 1233), + (215, 6, 1233), + (215, 2, 1233), + (215, 3, 1233), + (473, 6, 1276), + (473, 1, 1276), + (473, 5, 1276), + (476, 6, 1276), + (476, 5, 1276), + (476, 2, 1276), + (475, 6, 1276), + (475, 2, 1276), + (475, 3, 1276), + (477, 6, 1276), + (477, 1, 1276), + (477, 4, 1276), + (474, 1, 1276), + (474, 2, 1276), + (474, 3, 1276), + (955, 6, 3), + (955, 1, 3), + (955, 3, 3), + (958, 6, 3), + (958, 5, 3), + (958, 3, 3), + (957, 6, 3), + (957, 2, 3), + (957, 3, 3), + (959, 1, 3), + (959, 4, 3), + (959, 3, 3), + (956, 2, 3), + (956, 4, 3), + (956, 3, 3), + (590, 6, 12), + (590, 1, 12), + (590, 3, 12), + (593, 6, 12), + (593, 5, 12), + (593, 3, 12), + (592, 6, 12), + (592, 2, 12), + (592, 3, 12), + (594, 1, 12), + (594, 4, 12), + (594, 3, 12), + (591, 2, 12), + (591, 4, 12), + (591, 3, 12), + (364, 6, 23), + (364, 1, 23), + (364, 3, 23), + (366, 6, 23), + (366, 5, 23), + (366, 3, 23), + (365, 6, 23), + (365, 2, 23), + (365, 3, 23), + (391, 6, 35), + (391, 5, 35), + (391, 3, 35), + (390, 6, 35), + (390, 2, 35), + (390, 3, 35), + (392, 1, 35), + (392, 4, 35), + (392, 3, 35), + (389, 2, 35), + (389, 4, 35), + (389, 3, 35), + (483, 6, 46), + (483, 1, 46), + (483, 3, 46), + (674, 6, 57), + (674, 5, 57), + (674, 3, 57), + (675, 1, 57), + (675, 4, 57), + (675, 3, 57), + (864, 6, 69), + (864, 1, 69), + (864, 3, 69), + (867, 6, 69), + (867, 5, 69), + (867, 3, 69), + (866, 6, 69), + (866, 2, 69), + (866, 3, 69), + (868, 1, 69), + (868, 4, 69), + (868, 3, 69), + (865, 2, 69), + (865, 4, 69), + (865, 3, 69), + (893, 2, 91), + (893, 4, 91), + (893, 3, 91), + (226, 6, 113), + (226, 1, 113), + (226, 3, 113), + (227, 1, 113), + (227, 4, 113), + (227, 3, 113), + (546, 6, 136), + (546, 1, 136), + (546, 3, 136), + (547, 6, 136), + (547, 2, 136), + (547, 3, 136), + (548, 1, 136), + (548, 4, 136), + (548, 3, 136), + (66, 6, 159), + (66, 5, 159), + (66, 3, 159), + (646, 6, 181), + (646, 1, 181), + (646, 3, 181), + (647, 6, 181), + (647, 5, 181), + (647, 3, 181), + (1011, 6, 203), + (1011, 1, 203), + (1011, 3, 203), + (1014, 6, 203), + (1014, 5, 203), + (1014, 3, 203), + (1013, 6, 203), + (1013, 2, 203), + (1013, 3, 203), + (1012, 2, 203), + (1012, 4, 203), + (1012, 3, 203), + (126, 6, 226), + (126, 1, 226), + (126, 3, 226), + (128, 6, 226), + (128, 5, 226), + (128, 3, 226), + (129, 1, 226), + (129, 4, 226), + (129, 3, 226), + (127, 2, 226), + (127, 4, 226), + (127, 3, 226), + (714, 6, 249), + (714, 5, 249), + (714, 3, 249), + (713, 6, 249), + (713, 2, 249), + (713, 3, 249), + (712, 2, 249), + (712, 4, 249), + (712, 3, 249), + (776, 6, 271), + (776, 2, 271), + (776, 3, 271), + (777, 1, 271), + (777, 4, 271), + (777, 3, 271), + (805, 1, 293), + (805, 4, 293), + (805, 3, 293), + (836, 6, 316), + (836, 5, 316), + (836, 3, 316), + (910, 6, 339), + (910, 1, 339), + (910, 3, 339), + (912, 1, 339), + (912, 4, 339), + (912, 3, 339), + (911, 2, 339), + (911, 4, 339), + (911, 3, 339), + (1095, 6, 361), + (1095, 2, 361), + (1095, 3, 361), + (15, 6, 383), + (15, 2, 383), + (15, 3, 383), + (14, 2, 383), + (14, 4, 383), + (14, 3, 383), + (101, 6, 406), + (101, 1, 406), + (101, 3, 406), + (102, 6, 406), + (102, 2, 406), + (102, 3, 406), + (103, 1, 406), + (103, 4, 406), + (103, 3, 406), + (281, 6, 429), + (281, 2, 429), + (281, 3, 429), + (340, 2, 451), + (340, 4, 451), + (340, 3, 451), + (512, 6, 683), + (512, 5, 683), + (512, 3, 683), + (513, 1, 683), + (513, 4, 683), + (513, 3, 683), + (742, 6, 716), + (742, 1, 716), + (742, 3, 716), + (744, 6, 716), + (744, 5, 716), + (744, 3, 716), + (743, 2, 716), + (743, 4, 716), + (743, 3, 716), + (1035, 6, 749), + (1035, 1, 749), + (1035, 3, 749), + (1036, 2, 749), + (1036, 4, 749), + (1036, 3, 749), + (253, 6, 781), + (253, 1, 781), + (253, 3, 781), + (255, 1, 781), + (255, 4, 781), + (255, 3, 781), + (254, 2, 781), + (254, 4, 781), + (254, 3, 781), + (311, 6, 1063), + (311, 2, 1063), + (311, 3, 1063), + (310, 2, 1063), + (310, 4, 1063), + (310, 3, 1063), + (1066, 6, 1106), + (1066, 5, 1106), + (1066, 3, 1106), + (1067, 1, 1106), + (1067, 4, 1106), + (1067, 3, 1106), + (1065, 2, 1106), + (1065, 4, 1106), + (1065, 3, 1106), + (167, 6, 1149), + (167, 5, 1149), + (167, 3, 1149), + (166, 6, 1149), + (166, 2, 1149), + (166, 3, 1149), + (168, 1, 1149), + (168, 4, 1149), + (168, 3, 1149), + (165, 2, 1149), + (165, 4, 1149), + (165, 3, 1149), + (44, 6, 1191), + (44, 2, 1191), + (44, 3, 1191), + (194, 6, 1233), + (194, 1, 1233), + (194, 3, 1233), + (195, 1, 1233), + (195, 4, 1233), + (195, 3, 1233), + (433, 6, 1276), + (433, 1, 1276), + (433, 3, 1276), + (436, 6, 1276), + (436, 5, 1276), + (436, 3, 1276), + (435, 6, 1276), + (435, 2, 1276), + (435, 3, 1276), + (437, 1, 1276), + (437, 4, 1276), + (437, 3, 1276), + (434, 2, 1276), + (434, 4, 1276), + (434, 3, 1276), + (985, 6, 3), + (985, 1, 3), + (985, 4, 3), + (988, 6, 3), + (988, 5, 3), + (988, 3, 3), + (987, 2, 3), + (987, 4, 3), + (987, 3, 3), + (989, 1, 3), + (989, 4, 3), + (989, 3, 3), + (986, 6, 3), + (986, 2, 3), + (986, 3, 3), + (620, 6, 12), + (620, 1, 12), + (620, 4, 12), + (623, 6, 12), + (623, 5, 12), + (623, 3, 12), + (622, 2, 12), + (622, 4, 12), + (622, 3, 12), + (624, 1, 12), + (624, 4, 12), + (624, 3, 12), + (621, 6, 12), + (621, 2, 12), + (621, 3, 12), + (378, 6, 23), + (378, 1, 23), + (378, 4, 23), + (379, 6, 23), + (379, 2, 23), + (379, 3, 23), + (406, 2, 35), + (406, 4, 35), + (406, 3, 35), + (407, 1, 35), + (407, 4, 35), + (407, 3, 35), + (405, 6, 35), + (405, 2, 35), + (405, 3, 35), + (497, 6, 46), + (497, 1, 46), + (497, 4, 46), + (500, 6, 46), + (500, 5, 46), + (500, 3, 46), + (499, 2, 46), + (499, 4, 46), + (499, 3, 46), + (501, 1, 46), + (501, 4, 46), + (501, 3, 46), + (498, 6, 46), + (498, 2, 46), + (498, 3, 46), + (689, 6, 57), + (689, 1, 57), + (689, 4, 57), + (692, 6, 57), + (692, 5, 57), + (692, 3, 57), + (691, 2, 57), + (691, 4, 57), + (691, 3, 57), + (690, 6, 57), + (690, 2, 57), + (690, 3, 57), + (877, 6, 69), + (877, 1, 69), + (877, 4, 69), + (878, 1, 69), + (878, 4, 69), + (878, 3, 69), + (902, 2, 91), + (902, 4, 91), + (902, 3, 91), + (563, 6, 136), + (563, 5, 136), + (563, 3, 136), + (562, 2, 136), + (562, 4, 136), + (562, 3, 136), + (564, 1, 136), + (564, 4, 136), + (564, 3, 136), + (78, 6, 159), + (78, 1, 159), + (78, 4, 159), + (81, 6, 159), + (81, 5, 159), + (81, 3, 159), + (80, 2, 159), + (80, 4, 159), + (80, 3, 159), + (82, 1, 159), + (82, 4, 159), + (82, 3, 159), + (79, 6, 159), + (79, 2, 159), + (79, 3, 159), + (660, 6, 181), + (660, 5, 181), + (660, 3, 181), + (659, 2, 181), + (659, 4, 181), + (659, 3, 181), + (661, 1, 181), + (661, 4, 181), + (661, 3, 181), + (1025, 2, 203), + (1025, 4, 203), + (1025, 3, 203), + (1024, 6, 203), + (1024, 2, 203), + (1024, 3, 203), + (147, 6, 226), + (147, 1, 226), + (147, 4, 226), + (725, 2, 249), + (725, 4, 249), + (725, 3, 249), + (726, 1, 249), + (726, 4, 249), + (726, 3, 249), + (792, 6, 271), + (792, 5, 271), + (792, 3, 271), + (791, 2, 271), + (791, 4, 271), + (791, 3, 271), + (819, 6, 293), + (819, 1, 293), + (819, 4, 293), + (820, 6, 293), + (820, 5, 293), + (820, 3, 293), + (847, 6, 316), + (847, 1, 316), + (847, 4, 316), + (848, 1, 316), + (848, 4, 316), + (848, 3, 316), + (926, 6, 339), + (926, 1, 339), + (926, 4, 339), + (928, 6, 339), + (928, 5, 339), + (928, 3, 339), + (927, 6, 339), + (927, 2, 339), + (927, 3, 339), + (1108, 2, 361), + (1108, 4, 361), + (1108, 3, 361), + (1109, 1, 361), + (1109, 4, 361), + (1109, 3, 361), + (29, 2, 383), + (29, 4, 383), + (29, 3, 383), + (30, 1, 383), + (30, 4, 383), + (30, 3, 383), + (28, 6, 383), + (28, 2, 383), + (28, 3, 383), + (294, 1, 429), + (294, 4, 429), + (294, 3, 429), + (293, 6, 429), + (293, 2, 429), + (293, 3, 429), + (526, 6, 683), + (526, 1, 683), + (526, 4, 683), + (528, 6, 683), + (528, 5, 683), + (528, 3, 683), + (527, 6, 683), + (527, 2, 683), + (527, 3, 683), + (762, 1, 716), + (762, 4, 716), + (762, 3, 716), + (761, 6, 716), + (761, 2, 716), + (761, 3, 716), + (1047, 6, 749), + (1047, 1, 749), + (1047, 4, 749), + (1049, 2, 749), + (1049, 4, 749), + (1049, 3, 749), + (1050, 1, 749), + (1050, 4, 749), + (1050, 3, 749), + (1048, 6, 749), + (1048, 2, 749), + (1048, 3, 749), + (268, 6, 781), + (268, 1, 781), + (268, 4, 781), + (322, 6, 1063), + (322, 1, 1063), + (322, 4, 1063), + (323, 6, 1063), + (323, 5, 1063), + (323, 3, 1063), + (1078, 6, 1106), + (1078, 5, 1106), + (1078, 3, 1106), + (1079, 1, 1106), + (1079, 4, 1106), + (1079, 3, 1106), + (1077, 6, 1106), + (1077, 2, 1106), + (1077, 3, 1106), + (179, 6, 1149), + (179, 1, 1149), + (179, 4, 1149), + (180, 6, 1149), + (180, 2, 1149), + (180, 3, 1149), + (54, 6, 1191), + (54, 5, 1191), + (54, 3, 1191), + (209, 6, 1233), + (209, 5, 1233), + (209, 3, 1233), + (208, 2, 1233), + (208, 4, 1233), + (208, 3, 1233), + (207, 6, 1233), + (207, 2, 1233), + (207, 3, 1233), + (463, 6, 1276), + (463, 1, 1276), + (463, 4, 1276), + (466, 6, 1276), + (466, 5, 1276), + (466, 3, 1276), + (465, 2, 1276), + (465, 4, 1276), + (465, 3, 1276), + (467, 1, 1276), + (467, 4, 1276), + (467, 3, 1276), + (464, 6, 1276), + (464, 2, 1276), + (464, 3, 1276), + (965, 6, 3), + (965, 1, 3), + (965, 2, 3), + (968, 6, 3), + (968, 5, 3), + (968, 4, 3), + (967, 1, 3), + (967, 2, 3), + (967, 3, 3), + (969, 1, 3), + (969, 2, 3), + (969, 4, 3), + (966, 2, 3), + (966, 4, 3), + (966, 3, 3), + (600, 6, 12), + (600, 1, 12), + (600, 2, 12), + (603, 6, 12), + (603, 5, 12), + (603, 4, 12), + (602, 1, 12), + (602, 2, 12), + (602, 3, 12), + (604, 1, 12), + (604, 2, 12), + (604, 4, 12), + (601, 2, 12), + (601, 4, 12), + (601, 3, 12), + (369, 6, 23), + (369, 1, 23), + (369, 2, 23), + (370, 1, 23), + (370, 2, 23), + (370, 3, 23), + (371, 1, 23), + (371, 2, 23), + (371, 4, 23), + (395, 1, 35), + (395, 2, 35), + (395, 3, 35), + (396, 1, 35), + (396, 2, 35), + (396, 4, 35), + (486, 6, 46), + (486, 1, 46), + (486, 2, 46), + (488, 1, 46), + (488, 2, 46), + (488, 3, 46), + (489, 1, 46), + (489, 2, 46), + (489, 4, 46), + (487, 2, 46), + (487, 4, 46), + (487, 3, 46), + (679, 6, 57), + (679, 1, 57), + (679, 2, 57), + (680, 6, 57), + (680, 5, 57), + (680, 4, 57), + (681, 1, 57), + (681, 2, 57), + (681, 4, 57), + (870, 6, 69), + (870, 1, 69), + (870, 2, 69), + (871, 6, 69), + (871, 5, 69), + (871, 4, 69), + (232, 6, 113), + (232, 5, 113), + (232, 4, 113), + (233, 1, 113), + (233, 2, 113), + (233, 4, 113), + (231, 2, 113), + (231, 4, 113), + (231, 3, 113), + (551, 6, 136), + (551, 1, 136), + (551, 2, 136), + (552, 6, 136), + (552, 5, 136), + (552, 4, 136), + (553, 1, 136), + (553, 2, 136), + (553, 4, 136), + (68, 6, 159), + (68, 5, 159), + (68, 4, 159), + (651, 6, 369), + (651, 5, 369), + (651, 4, 369), + (1018, 1, 203), + (1018, 2, 203), + (1018, 3, 203), + (1019, 1, 203), + (1019, 2, 203), + (1019, 4, 203), + (1017, 2, 203), + (1017, 4, 203), + (1017, 3, 203), + (133, 6, 226), + (133, 1, 226), + (133, 2, 226), + (134, 6, 226), + (134, 5, 226), + (134, 4, 226), + (135, 1, 226), + (135, 2, 226), + (135, 4, 226), + (719, 1, 249), + (719, 2, 249), + (719, 3, 249), + (720, 1, 249), + (720, 2, 249), + (720, 4, 249), + (781, 6, 271), + (781, 1, 271), + (781, 2, 271), + (783, 1, 271), + (783, 2, 271), + (783, 3, 271), + (782, 2, 271), + (782, 4, 271), + (782, 3, 271), + (811, 6, 293), + (811, 5, 293), + (811, 4, 293), + (810, 1, 293), + (810, 2, 293), + (810, 3, 293), + (809, 2, 293), + (809, 4, 293), + (809, 3, 293), + (840, 1, 316), + (840, 2, 316), + (840, 4, 316), + (839, 2, 316), + (839, 4, 316), + (839, 3, 316), + (917, 6, 339), + (917, 1, 339), + (917, 2, 339), + (918, 6, 339), + (918, 5, 339), + (918, 4, 339), + (919, 1, 339), + (919, 2, 339), + (919, 4, 339), + (1098, 6, 361), + (1098, 5, 361), + (1098, 4, 361), + (1099, 1, 361), + (1099, 2, 361), + (1099, 4, 361), + (17, 1, 383), + (17, 2, 383), + (17, 3, 383), + (106, 6, 406), + (106, 5, 406), + (106, 4, 406), + (105, 1, 406), + (105, 2, 406), + (105, 3, 406), + (107, 1, 406), + (107, 2, 406), + (107, 4, 406), + (285, 6, 429), + (285, 1, 429), + (285, 2, 429), + (287, 1, 429), + (287, 2, 429), + (287, 3, 429), + (286, 2, 429), + (286, 4, 429), + (286, 3, 429), + (345, 6, 451), + (345, 5, 451), + (345, 4, 451), + (344, 1, 451), + (344, 2, 451), + (344, 3, 451), + (516, 6, 683), + (516, 1, 683), + (516, 2, 683), + (517, 2, 683), + (517, 4, 683), + (517, 3, 683), + (749, 1, 716), + (749, 2, 716), + (749, 3, 716), + (750, 1, 716), + (750, 2, 716), + (750, 4, 716), + (748, 2, 716), + (748, 4, 716), + (748, 3, 716), + (1038, 6, 749), + (1038, 1, 749), + (1038, 2, 749), + (1039, 2, 749), + (1039, 4, 749), + (1039, 3, 749), + (260, 6, 781), + (260, 5, 781), + (260, 4, 781), + (259, 2, 781), + (259, 4, 781), + (259, 3, 781), + (315, 1, 1063), + (315, 2, 1063), + (315, 3, 1063), + (314, 2, 1063), + (314, 4, 1063), + (314, 3, 1063), + (1069, 2, 1106), + (1069, 4, 1106), + (1069, 3, 1106), + (171, 6, 1149), + (171, 1, 1149), + (171, 2, 1149), + (172, 1, 1149), + (172, 2, 1149), + (172, 3, 1149), + (173, 1, 1149), + (173, 2, 1149), + (173, 4, 1149), + (47, 6, 1191), + (47, 1, 1191), + (47, 2, 1191), + (48, 1, 1191), + (48, 2, 1191), + (48, 3, 1191), + (198, 6, 1233), + (198, 1, 1233), + (198, 2, 1233), + (200, 6, 1233), + (200, 5, 1233), + (200, 4, 1233), + (199, 2, 1233), + (199, 4, 1233), + (199, 3, 1233), + (443, 6, 1276), + (443, 1, 1276), + (443, 2, 1276), + (446, 6, 1276), + (446, 5, 1276), + (446, 4, 1276), + (445, 1, 1276), + (445, 2, 1276), + (445, 3, 1276), + (447, 1, 1276), + (447, 2, 1276), + (447, 4, 1276), + (444, 2, 1276), + (444, 4, 1276), + (444, 3, 1276), + (980, 6, 3), + (980, 1, 3), + (980, 3, 3), + (983, 6, 3), + (983, 5, 3), + (983, 4, 3), + (982, 5, 3), + (982, 2, 3), + (982, 3, 3), + (984, 6, 3), + (984, 1, 3), + (984, 4, 3), + (981, 6, 3), + (981, 2, 3), + (981, 3, 3), + (615, 6, 12), + (615, 1, 12), + (615, 3, 12), + (618, 6, 12), + (618, 5, 12), + (618, 4, 12), + (617, 5, 12), + (617, 2, 12), + (617, 3, 12), + (619, 6, 12), + (619, 1, 12), + (619, 4, 12), + (616, 6, 12), + (616, 2, 12), + (616, 3, 12), + (376, 6, 23), + (376, 1, 23), + (376, 3, 23), + (377, 6, 23), + (377, 2, 23), + (377, 3, 23), + (402, 6, 35), + (402, 1, 35), + (402, 3, 35), + (404, 6, 35), + (404, 5, 35), + (404, 4, 35), + (403, 6, 35), + (403, 2, 35), + (403, 3, 35), + (495, 6, 46), + (495, 5, 46), + (495, 4, 46), + (494, 5, 46), + (494, 2, 46), + (494, 3, 46), + (496, 6, 46), + (496, 1, 46), + (496, 4, 46), + (493, 6, 46), + (493, 2, 46), + (493, 3, 46), + (687, 6, 57), + (687, 1, 57), + (687, 3, 57), + (688, 6, 57), + (688, 1, 57), + (688, 4, 57), + (876, 5, 69), + (876, 2, 69), + (876, 3, 69), + (899, 6, 91), + (899, 1, 91), + (899, 3, 91), + (901, 6, 91), + (901, 5, 91), + (901, 4, 91), + (900, 6, 91), + (900, 2, 91), + (900, 3, 91), + (240, 5, 113), + (240, 2, 113), + (240, 3, 113), + (239, 6, 113), + (239, 2, 113), + (239, 3, 113), + (559, 6, 136), + (559, 1, 136), + (559, 3, 136), + (560, 6, 136), + (560, 5, 136), + (560, 4, 136), + (561, 6, 136), + (561, 1, 136), + (561, 4, 136), + (76, 6, 159), + (76, 5, 159), + (76, 4, 159), + (77, 6, 159), + (77, 1, 159), + (77, 4, 159), + (656, 6, 181), + (656, 1, 181), + (656, 3, 181), + (658, 6, 181), + (658, 5, 181), + (658, 4, 181), + (657, 5, 181), + (657, 2, 181), + (657, 3, 181), + (1023, 6, 203), + (1023, 1, 203), + (1023, 4, 203), + (142, 6, 226), + (142, 1, 226), + (142, 3, 226), + (145, 6, 226), + (145, 5, 226), + (145, 4, 226), + (144, 5, 226), + (144, 2, 226), + (144, 3, 226), + (146, 6, 226), + (146, 1, 226), + (146, 4, 226), + (143, 6, 226), + (143, 2, 226), + (143, 3, 226), + (722, 6, 249), + (722, 1, 249), + (722, 3, 249), + (724, 6, 249), + (724, 1, 249), + (724, 4, 249), + (723, 6, 249), + (723, 2, 249), + (723, 3, 249), + (790, 5, 271), + (790, 2, 271), + (790, 3, 271), + (817, 5, 293), + (817, 2, 293), + (817, 3, 293), + (818, 6, 293), + (818, 1, 293), + (818, 4, 293), + (816, 6, 293), + (816, 2, 293), + (816, 3, 293), + (845, 6, 316), + (845, 5, 316), + (845, 4, 316), + (844, 5, 316), + (844, 2, 316), + (844, 3, 316), + (846, 6, 316), + (846, 1, 316), + (846, 4, 316), + (925, 6, 339), + (925, 2, 339), + (925, 3, 339), + (1104, 6, 361), + (1104, 1, 361), + (1104, 3, 361), + (1107, 6, 361), + (1107, 5, 361), + (1107, 4, 361), + (1106, 5, 361), + (1106, 2, 361), + (1106, 3, 361), + (1105, 6, 361), + (1105, 2, 361), + (1105, 3, 361), + (24, 6, 383), + (24, 1, 383), + (24, 3, 383), + (26, 5, 383), + (26, 2, 383), + (26, 3, 383), + (27, 6, 383), + (27, 1, 383), + (27, 4, 383), + (25, 6, 383), + (25, 2, 383), + (25, 3, 383), + (112, 6, 406), + (112, 1, 406), + (112, 4, 406), + (111, 6, 406), + (111, 2, 406), + (111, 3, 406), + (292, 6, 429), + (292, 5, 429), + (292, 4, 429), + (291, 5, 429), + (291, 2, 429), + (291, 3, 429), + (351, 6, 451), + (351, 2, 451), + (351, 3, 451), + (523, 6, 683), + (523, 1, 683), + (523, 3, 683), + (525, 6, 683), + (525, 5, 683), + (525, 4, 683), + (524, 5, 683), + (524, 2, 683), + (524, 3, 683), + (757, 6, 716), + (757, 1, 716), + (757, 3, 716), + (760, 6, 716), + (760, 5, 716), + (760, 4, 716), + (759, 5, 716), + (759, 2, 716), + (759, 3, 716), + (758, 6, 716), + (758, 2, 716), + (758, 3, 716), + (1044, 6, 749), + (1044, 1, 749), + (1044, 3, 749), + (1045, 5, 749), + (1045, 2, 749), + (1045, 3, 749), + (1046, 6, 749), + (1046, 1, 749), + (1046, 4, 749), + (267, 6, 781), + (267, 1, 781), + (267, 3, 781), + (321, 6, 1063), + (321, 5, 1063), + (321, 4, 1063), + (320, 6, 1063), + (320, 2, 1063), + (320, 3, 1063), + (1075, 6, 1106), + (1075, 5, 1106), + (1075, 4, 1106), + (1076, 6, 1106), + (1076, 1, 1106), + (1076, 4, 1106), + (178, 6, 1149), + (178, 1, 1149), + (178, 4, 1149), + (53, 6, 1191), + (53, 1, 1191), + (53, 3, 1191), + (206, 6, 1233), + (206, 5, 1233), + (206, 4, 1233), + (205, 5, 1233), + (205, 2, 1233), + (205, 3, 1233), + (458, 6, 1276), + (458, 1, 1276), + (458, 3, 1276), + (461, 6, 1276), + (461, 5, 1276), + (461, 4, 1276), + (460, 5, 1276), + (460, 2, 1276), + (460, 3, 1276), + (462, 6, 1276), + (462, 1, 1276), + (462, 4, 1276), + (459, 6, 1276), + (459, 2, 1276), + (459, 3, 1276), + (960, 6, 3), + (960, 1, 3), + (960, 2, 3), + (963, 6, 3), + (963, 1, 3), + (963, 5, 3), + (962, 6, 3), + (962, 2, 3), + (962, 3, 3), + (964, 1, 3), + (964, 4, 3), + (964, 3, 3), + (961, 5, 3), + (961, 2, 3), + (961, 3, 3), + (595, 6, 12), + (595, 1, 12), + (595, 2, 12), + (598, 6, 12), + (598, 1, 12), + (598, 5, 12), + (597, 6, 12), + (597, 2, 12), + (597, 3, 12), + (599, 1, 12), + (599, 4, 12), + (599, 3, 12), + (596, 5, 12), + (596, 2, 12), + (596, 3, 12), + (368, 6, 23), + (368, 1, 23), + (368, 5, 23), + (367, 5, 23), + (367, 2, 23), + (367, 3, 23), + (393, 6, 35), + (393, 1, 35), + (393, 2, 35), + (394, 1, 35), + (394, 4, 35), + (394, 3, 35), + (485, 6, 46), + (485, 1, 46), + (485, 5, 46), + (484, 6, 46), + (484, 2, 46), + (484, 3, 46), + (676, 6, 57), + (676, 1, 57), + (676, 2, 57), + (678, 1, 57), + (678, 4, 57), + (678, 3, 57), + (677, 5, 57), + (677, 2, 57), + (677, 3, 57), + (869, 5, 69), + (869, 2, 69), + (869, 3, 69), + (230, 6, 113), + (230, 1, 113), + (230, 5, 113), + (229, 6, 113), + (229, 2, 113), + (229, 3, 113), + (228, 5, 113), + (228, 2, 113), + (228, 3, 113), + (549, 6, 136), + (549, 2, 136), + (549, 3, 136), + (550, 1, 136), + (550, 4, 136), + (550, 3, 136), + (67, 6, 159), + (67, 2, 159), + (67, 3, 159), + (648, 6, 181), + (648, 1, 181), + (648, 2, 181), + (649, 6, 181), + (649, 1, 181), + (649, 5, 181), + (650, 1, 181), + (650, 4, 181), + (650, 3, 181), + (1015, 6, 203), + (1015, 1, 203), + (1015, 2, 203), + (1016, 5, 203), + (1016, 2, 203), + (1016, 3, 203), + (131, 6, 226), + (131, 2, 226), + (131, 3, 226), + (132, 1, 226), + (132, 4, 226), + (132, 3, 226), + (130, 5, 226), + (130, 2, 226), + (130, 3, 226), + (715, 6, 249), + (715, 1, 249), + (715, 2, 249), + (717, 6, 249), + (717, 2, 249), + (717, 3, 249), + (718, 1, 249), + (718, 4, 249), + (718, 3, 249), + (716, 5, 249), + (716, 2, 249), + (716, 3, 249), + (778, 6, 271), + (778, 1, 271), + (778, 2, 271), + (779, 6, 271), + (779, 1, 271), + (779, 5, 271), + (780, 1, 271), + (780, 4, 271), + (780, 3, 271), + (806, 6, 293), + (806, 1, 293), + (806, 2, 293), + (808, 6, 293), + (808, 1, 293), + (808, 5, 293), + (807, 5, 293), + (807, 2, 293), + (807, 3, 293), + (837, 6, 316), + (837, 1, 316), + (837, 5, 316), + (838, 1, 316), + (838, 4, 316), + (838, 3, 316), + (913, 6, 339), + (913, 1, 339), + (913, 2, 339), + (915, 6, 339), + (915, 1, 339), + (915, 5, 339), + (914, 6, 339), + (914, 2, 339), + (914, 3, 339), + (916, 1, 339), + (916, 4, 339), + (916, 3, 339), + (1097, 6, 361), + (1097, 1, 361), + (1097, 5, 361), + (1096, 5, 361), + (1096, 2, 361), + (1096, 3, 361), + (16, 1, 383), + (16, 4, 383), + (16, 3, 383), + (104, 6, 406), + (104, 2, 406), + (104, 3, 406), + (283, 6, 429), + (283, 1, 429), + (283, 5, 429), + (282, 6, 429), + (282, 2, 429), + (282, 3, 429), + (284, 1, 429), + (284, 4, 429), + (284, 3, 429), + (343, 6, 451), + (343, 1, 451), + (343, 5, 451), + (342, 6, 451), + (342, 2, 451), + (342, 3, 451), + (341, 5, 451), + (341, 2, 451), + (341, 3, 451), + (514, 6, 683), + (514, 1, 683), + (514, 2, 683), + (515, 1, 683), + (515, 4, 683), + (515, 3, 683), + (745, 6, 716), + (745, 1, 716), + (745, 2, 716), + (746, 6, 716), + (746, 2, 716), + (746, 3, 716), + (747, 1, 716), + (747, 4, 716), + (747, 3, 716), + (1037, 6, 749), + (1037, 1, 749), + (1037, 5, 749), + (256, 6, 781), + (256, 1, 781), + (256, 2, 781), + (258, 6, 781), + (258, 2, 781), + (258, 3, 781), + (257, 5, 781), + (257, 2, 781), + (257, 3, 781), + (312, 6, 1063), + (312, 1, 1063), + (312, 2, 1063), + (313, 5, 1063), + (313, 2, 1063), + (313, 3, 1063), + (1068, 6, 1106), + (1068, 1, 1106), + (1068, 2, 1106), + (169, 6, 1149), + (169, 1, 1149), + (169, 2, 1149), + (170, 6, 1149), + (170, 1, 1149), + (170, 5, 1149), + (46, 6, 1191), + (46, 2, 1191), + (46, 3, 1191), + (45, 5, 1191), + (45, 2, 1191), + (45, 3, 1191), + (197, 6, 1233), + (197, 1, 1233), + (197, 5, 1233), + (196, 6, 1233), + (196, 2, 1233), + (196, 3, 1233), + (438, 6, 1276), + (438, 1, 1276), + (438, 2, 1276), + (441, 6, 1276), + (441, 1, 1276), + (441, 5, 1276), + (440, 6, 1276), + (440, 2, 1276), + (440, 3, 1276), + (442, 1, 1276), + (442, 4, 1276), + (442, 3, 1276), + (439, 5, 1276), + (439, 2, 1276), + (439, 3, 1276), + (940, 6, 3), + (940, 1, 3), + (940, 3, 3), + (943, 6, 3), + (943, 1, 3), + (943, 5, 3), + (942, 5, 3), + (942, 2, 3), + (942, 3, 3), + (944, 1, 3), + (944, 5, 3), + (944, 4, 3), + (941, 5, 3), + (941, 2, 3), + (941, 3, 3), + (575, 6, 12), + (575, 1, 12), + (575, 3, 12), + (578, 6, 12), + (578, 1, 12), + (578, 5, 12), + (577, 5, 12), + (577, 2, 12), + (577, 3, 12), + (579, 1, 12), + (579, 5, 12), + (579, 4, 12), + (576, 5, 12), + (576, 2, 12), + (576, 3, 12), + (358, 5, 23), + (358, 2, 23), + (358, 3, 23), + (386, 6, 35), + (386, 1, 35), + (386, 3, 35), + (387, 6, 35), + (387, 1, 35), + (387, 5, 35), + (479, 6, 46), + (479, 1, 46), + (479, 3, 46), + (480, 5, 46), + (480, 2, 46), + (480, 3, 46), + (671, 5, 57), + (671, 2, 57), + (671, 3, 57), + (856, 6, 69), + (856, 1, 69), + (856, 5, 69), + (857, 1, 69), + (857, 5, 69), + (857, 4, 69), + (855, 5, 69), + (855, 2, 69), + (855, 3, 69), + (885, 6, 91), + (885, 1, 91), + (885, 5, 91), + (886, 1, 91), + (886, 5, 91), + (886, 4, 91), + (884, 5, 91), + (884, 2, 91), + (884, 3, 91), + (218, 6, 113), + (218, 1, 113), + (218, 3, 113), + (219, 5, 113), + (219, 2, 113), + (219, 3, 113), + (220, 1, 113), + (220, 5, 113), + (220, 4, 113), + (538, 5, 136), + (538, 2, 136), + (538, 3, 136), + (539, 1, 136), + (539, 5, 136), + (539, 4, 136), + (60, 6, 159), + (60, 1, 159), + (60, 3, 159), + (638, 6, 181), + (638, 1, 181), + (638, 3, 181), + (640, 6, 181), + (640, 1, 181), + (640, 5, 181), + (639, 5, 181), + (639, 2, 181), + (639, 3, 181), + (1002, 6, 203), + (1002, 1, 203), + (1002, 3, 203), + (1003, 6, 203), + (1003, 1, 203), + (1003, 5, 203), + (1004, 1, 203), + (1004, 5, 203), + (1004, 4, 203), + (121, 5, 226), + (121, 2, 226), + (121, 3, 226), + (704, 5, 249), + (704, 2, 249), + (704, 3, 249), + (705, 1, 249), + (705, 5, 249), + (705, 4, 249), + (703, 5, 249), + (703, 2, 249), + (703, 3, 249), + (771, 1, 271), + (771, 5, 271), + (771, 4, 271), + (798, 6, 293), + (798, 1, 293), + (798, 3, 293), + (799, 5, 293), + (799, 2, 293), + (799, 3, 293), + (828, 6, 316), + (828, 1, 316), + (828, 3, 316), + (831, 6, 316), + (831, 1, 316), + (831, 5, 316), + (830, 5, 316), + (830, 2, 316), + (830, 3, 316), + (832, 1, 316), + (832, 5, 316), + (832, 4, 316), + (829, 5, 316), + (829, 2, 316), + (829, 3, 316), + (905, 5, 339), + (905, 2, 339), + (905, 3, 339), + (1087, 1, 361), + (1087, 5, 361), + (1087, 4, 361), + (3, 6, 383), + (3, 1, 383), + (3, 3, 383), + (6, 6, 383), + (6, 1, 383), + (6, 5, 383), + (5, 5, 383), + (5, 2, 383), + (5, 3, 383), + (4, 5, 383), + (4, 2, 383), + (4, 3, 383), + (91, 6, 406), + (91, 1, 406), + (91, 3, 406), + (94, 6, 406), + (94, 1, 406), + (94, 5, 406), + (93, 5, 406), + (93, 2, 406), + (93, 3, 406), + (95, 1, 406), + (95, 5, 406), + (95, 4, 406), + (92, 5, 406), + (92, 2, 406), + (92, 3, 406), + (274, 6, 429), + (274, 1, 429), + (274, 3, 429), + (332, 6, 451), + (332, 1, 451), + (332, 3, 451), + (334, 6, 451), + (334, 1, 451), + (334, 5, 451), + (333, 5, 451), + (333, 2, 451), + (333, 3, 451), + (507, 6, 683), + (507, 1, 683), + (507, 5, 683), + (737, 6, 716), + (737, 1, 716), + (737, 5, 716), + (736, 5, 716), + (736, 2, 716), + (736, 3, 716), + (247, 1, 781), + (247, 5, 781), + (247, 4, 781), + (246, 5, 781), + (246, 2, 781), + (246, 3, 781), + (302, 6, 1063), + (302, 1, 1063), + (302, 3, 1063), + (304, 5, 1063), + (304, 2, 1063), + (304, 3, 1063), + (305, 1, 1063), + (305, 5, 1063), + (305, 4, 1063), + (303, 5, 1063), + (303, 2, 1063), + (303, 3, 1063), + (1057, 6, 1106), + (1057, 1, 1106), + (1057, 3, 1106), + (1059, 6, 1106), + (1059, 1, 1106), + (1059, 5, 1106), + (1058, 5, 1106), + (1058, 2, 1106), + (1058, 3, 1106), + (1060, 1, 1106), + (1060, 5, 1106), + (1060, 4, 1106), + (155, 6, 1149), + (155, 1, 1149), + (155, 5, 1149), + (156, 1, 1149), + (156, 5, 1149), + (156, 4, 1149), + (154, 5, 1149), + (154, 2, 1149), + (154, 3, 1149), + (41, 5, 1191), + (41, 2, 1191), + (41, 3, 1191), + (187, 6, 1233), + (187, 1, 1233), + (187, 3, 1233), + (188, 5, 1233), + (188, 2, 1233), + (188, 3, 1233), + (189, 1, 1233), + (189, 5, 1233), + (189, 4, 1233), + (418, 6, 1276), + (418, 1, 1276), + (418, 3, 1276), + (421, 6, 1276), + (421, 1, 1276), + (421, 5, 1276), + (420, 5, 1276), + (420, 2, 1276), + (420, 3, 1276), + (422, 1, 1276), + (422, 5, 1276), + (422, 4, 1276), + (419, 5, 1276), + (419, 2, 1276), + (419, 3, 1276), + (935, 6, 3), + (935, 1, 3), + (935, 2, 3), + (938, 6, 3), + (938, 5, 3), + (938, 2, 3), + (937, 5, 3), + (937, 2, 3), + (937, 3, 3), + (939, 1, 3), + (939, 2, 3), + (939, 4, 3), + (936, 1, 3), + (936, 2, 3), + (936, 3, 3), + (570, 6, 12), + (570, 1, 12), + (570, 2, 12), + (573, 6, 12), + (573, 5, 12), + (573, 2, 12), + (572, 5, 12), + (572, 2, 12), + (572, 3, 12), + (574, 1, 12), + (574, 2, 12), + (574, 4, 12), + (571, 1, 12), + (571, 2, 12), + (571, 3, 12), + (357, 6, 23), + (357, 5, 23), + (357, 2, 23), + (385, 5, 35), + (385, 2, 35), + (385, 3, 35), + (478, 6, 46), + (478, 5, 46), + (478, 2, 46), + (669, 6, 57), + (669, 5, 57), + (669, 2, 57), + (668, 5, 57), + (668, 2, 57), + (668, 3, 57), + (670, 1, 57), + (670, 2, 57), + (670, 4, 57), + (667, 1, 57), + (667, 2, 57), + (667, 3, 57), + (852, 6, 69), + (852, 1, 69), + (852, 2, 69), + (854, 1, 69), + (854, 2, 69), + (854, 4, 69), + (853, 1, 69), + (853, 2, 69), + (853, 3, 69), + (883, 6, 91), + (883, 1, 91), + (883, 2, 91), + (217, 1, 113), + (217, 2, 113), + (217, 4, 113), + (534, 6, 136), + (534, 1, 136), + (534, 2, 136), + (536, 6, 136), + (536, 5, 136), + (536, 2, 136), + (537, 1, 136), + (537, 2, 136), + (537, 4, 136), + (535, 1, 136), + (535, 2, 136), + (535, 3, 136), + (59, 5, 159), + (59, 2, 159), + (59, 3, 159), + (637, 1, 369), + (637, 2, 369), + (637, 4, 369), + (635, 6, 181), + (635, 1, 181), + (635, 2, 181), + (636, 1, 181), + (636, 2, 181), + (636, 3, 181), + (1001, 6, 203), + (1001, 5, 203), + (1001, 2, 203), + (1000, 5, 203), + (1000, 2, 203), + (1000, 3, 203), + (119, 6, 226), + (119, 1, 226), + (119, 2, 226), + (120, 5, 226), + (120, 2, 226), + (120, 3, 226), + (700, 6, 249), + (700, 1, 249), + (700, 2, 249), + (702, 6, 249), + (702, 5, 249), + (702, 2, 249), + (701, 1, 249), + (701, 2, 249), + (701, 3, 249), + (768, 6, 271), + (768, 1, 271), + (768, 2, 271), + (769, 5, 271), + (769, 2, 271), + (769, 3, 271), + (770, 1, 271), + (770, 2, 271), + (770, 4, 271), + (796, 6, 293), + (796, 1, 293), + (796, 2, 293), + (797, 6, 293), + (797, 5, 293), + (797, 2, 293), + (825, 6, 316), + (825, 1, 316), + (825, 2, 316), + (827, 6, 316), + (827, 5, 316), + (827, 2, 316), + (826, 1, 316), + (826, 2, 316), + (826, 3, 316), + (904, 5, 339), + (904, 2, 339), + (904, 3, 339), + (1085, 6, 361), + (1085, 5, 361), + (1085, 2, 361), + (1086, 1, 361), + (1086, 2, 361), + (1086, 4, 361), + (1084, 1, 361), + (1084, 2, 361), + (1084, 3, 361), + (2, 5, 383), + (2, 2, 383), + (2, 3, 383), + (1, 1, 383), + (1, 2, 383), + (1, 3, 383), + (88, 6, 406), + (88, 1, 406), + (88, 2, 406), + (90, 6, 406), + (90, 5, 406), + (90, 2, 406), + (89, 5, 406), + (89, 2, 406), + (89, 3, 406), + (273, 1, 429), + (273, 2, 429), + (273, 4, 429), + (329, 6, 451), + (329, 1, 451), + (329, 2, 451), + (331, 5, 451), + (331, 2, 451), + (331, 3, 451), + (330, 1, 451), + (330, 2, 451), + (330, 3, 451), + (506, 1, 683), + (506, 2, 683), + (506, 4, 683), + (733, 6, 716), + (733, 1, 716), + (733, 2, 716), + (734, 5, 716), + (734, 2, 716), + (734, 3, 716), + (735, 1, 716), + (735, 2, 716), + (735, 4, 716), + (1031, 1, 1059), + (1031, 2, 1059), + (1031, 3, 1059), + (1032, 5, 749), + (1032, 2, 749), + (1032, 3, 749), + (1033, 1, 749), + (1033, 2, 749), + (1033, 4, 749), + (298, 6, 1063), + (298, 1, 1063), + (298, 2, 1063), + (300, 5, 1063), + (300, 2, 1063), + (300, 3, 1063), + (301, 1, 1063), + (301, 2, 1063), + (301, 4, 1063), + (299, 1, 1063), + (299, 2, 1063), + (299, 3, 1063), + (1055, 6, 1106), + (1055, 1, 1106), + (1055, 2, 1106), + (1056, 1, 1106), + (1056, 2, 1106), + (1056, 4, 1106), + (153, 5, 1149), + (153, 2, 1149), + (153, 3, 1149), + (152, 1, 1149), + (152, 2, 1149), + (152, 3, 1149), + (39, 6, 1191), + (39, 5, 1191), + (39, 2, 1191), + (40, 1, 1191), + (40, 2, 1191), + (40, 4, 1191), + (185, 6, 1233), + (185, 1, 1233), + (185, 2, 1233), + (186, 6, 1233), + (186, 5, 1233), + (186, 2, 1233), + (413, 6, 1276), + (413, 1, 1276), + (413, 2, 1276), + (416, 6, 1276), + (416, 5, 1276), + (416, 2, 1276), + (415, 5, 1276), + (415, 2, 1276), + (415, 3, 1276), + (417, 1, 1276), + (417, 2, 1276), + (417, 4, 1276), + (414, 1, 1276), + (414, 2, 1276), + (414, 3, 1276), + (10, 6, 383), + (10, 1, 383), + (10, 4, 383), + (11, 1, 383), + (11, 2, 383), + (11, 3, 383), + (12, 6, 383), + (12, 5, 383), + (12, 3, 383), + (13, 1, 383), + (13, 5, 383), + (13, 4, 383), + (43, 1, 1191), + (43, 5, 1191), + (43, 4, 1191), + (64, 2, 159), + (64, 4, 159), + (64, 3, 159), + (65, 1, 159), + (65, 2, 159), + (65, 3, 159), + (100, 1, 406), + (100, 5, 406), + (100, 4, 406), + (125, 1, 226), + (125, 5, 226), + (125, 4, 226), + (161, 2, 1149), + (161, 4, 1149), + (161, 3, 1149), + (162, 1, 1149), + (162, 2, 1149), + (162, 3, 1149), + (163, 6, 1149), + (163, 5, 1149), + (163, 3, 1149), + (164, 1, 1149), + (164, 5, 1149), + (164, 4, 1149), + (190, 6, 1233), + (190, 1, 1233), + (190, 4, 1233), + (191, 1, 1233), + (191, 2, 1233), + (191, 3, 1233), + (192, 6, 1233), + (192, 5, 1233), + (192, 3, 1233), + (193, 1, 1233), + (193, 5, 1233), + (193, 4, 1233), + (223, 6, 113), + (223, 1, 113), + (223, 4, 113), + (224, 2, 113), + (224, 4, 113), + (224, 3, 113), + (225, 1, 113), + (225, 5, 113), + (225, 4, 113), + (249, 6, 781), + (249, 1, 781), + (249, 4, 781), + (250, 1, 781), + (250, 2, 781), + (250, 3, 781), + (251, 6, 781), + (251, 5, 781), + (251, 3, 781), + (252, 1, 781), + (252, 5, 781), + (252, 4, 781), + (277, 6, 429), + (277, 1, 429), + (277, 4, 429), + (278, 2, 429), + (278, 4, 429), + (278, 3, 429), + (279, 1, 429), + (279, 2, 429), + (279, 3, 429), + (280, 6, 429), + (280, 5, 429), + (280, 3, 429), + (308, 6, 1063), + (308, 1, 1063), + (308, 4, 1063), + (309, 2, 1063), + (309, 4, 1063), + (309, 3, 1063), + (338, 6, 451), + (338, 1, 451), + (338, 4, 451), + (339, 2, 451), + (339, 4, 451), + (339, 3, 451), + (361, 6, 23), + (361, 1, 23), + (361, 4, 23), + (362, 2, 23), + (362, 4, 23), + (362, 3, 23), + (363, 1, 23), + (363, 2, 23), + (363, 3, 23), + (388, 6, 35), + (388, 5, 35), + (388, 3, 35), + (428, 6, 1276), + (428, 1, 1276), + (428, 4, 1276), + (429, 2, 1276), + (429, 4, 1276), + (429, 3, 1276), + (430, 1, 1276), + (430, 2, 1276), + (430, 3, 1276), + (431, 6, 1276), + (431, 5, 1276), + (431, 3, 1276), + (432, 1, 1276), + (432, 5, 1276), + (432, 4, 1276), + (482, 6, 46), + (482, 1, 46), + (482, 4, 46), + (510, 6, 683), + (510, 1, 683), + (510, 4, 683), + (511, 1, 683), + (511, 5, 683), + (511, 4, 683), + (543, 1, 136), + (543, 2, 136), + (543, 3, 136), + (544, 6, 136), + (544, 5, 136), + (544, 3, 136), + (545, 1, 136), + (545, 5, 136), + (545, 4, 136), + (585, 6, 12), + (585, 1, 12), + (585, 4, 12), + (586, 2, 12), + (586, 4, 12), + (586, 3, 12), + (587, 1, 12), + (587, 2, 12), + (587, 3, 12), + (588, 6, 12), + (588, 5, 12), + (588, 3, 12), + (589, 1, 12), + (589, 5, 12), + (589, 4, 12), + (643, 6, 181), + (643, 1, 181), + (643, 4, 181), + (644, 6, 181), + (644, 5, 181), + (644, 3, 181), + (645, 1, 181), + (645, 5, 181), + (645, 4, 181), + (673, 2, 57), + (673, 4, 57), + (673, 3, 57), + (709, 2, 249), + (709, 4, 249), + (709, 3, 249), + (710, 1, 249), + (710, 2, 249), + (710, 3, 249), + (711, 6, 249), + (711, 5, 249), + (711, 3, 249), + (740, 2, 716), + (740, 4, 716), + (740, 3, 716), + (741, 1, 716), + (741, 2, 716), + (741, 3, 716), + (773, 2, 271), + (773, 4, 271), + (773, 3, 271), + (774, 6, 271), + (774, 5, 271), + (774, 3, 271), + (775, 1, 271), + (775, 5, 271), + (775, 4, 271), + (802, 6, 293), + (802, 1, 293), + (802, 4, 293), + (803, 2, 293), + (803, 4, 293), + (803, 3, 293), + (804, 1, 293), + (804, 2, 293), + (804, 3, 293), + (861, 6, 69), + (861, 1, 69), + (861, 4, 69), + (862, 6, 69), + (862, 5, 69), + (862, 3, 69), + (863, 1, 69), + (863, 5, 69), + (863, 4, 69), + (892, 1, 91), + (892, 2, 91), + (892, 3, 91), + (909, 6, 339), + (909, 5, 339), + (909, 3, 339), + (950, 6, 3), + (950, 1, 3), + (950, 4, 3), + (951, 2, 3), + (951, 4, 3), + (951, 3, 3), + (952, 1, 3), + (952, 2, 3), + (952, 3, 3), + (953, 6, 3), + (953, 5, 3), + (953, 3, 3), + (954, 1, 3), + (954, 5, 3), + (954, 4, 3), + (1008, 6, 203), + (1008, 1, 203), + (1008, 4, 203), + (1009, 1, 203), + (1009, 2, 203), + (1009, 3, 203), + (1010, 6, 203), + (1010, 5, 203), + (1010, 3, 203), + (1063, 1, 1106), + (1063, 2, 1106), + (1063, 3, 1106), + (1064, 6, 1106), + (1064, 5, 1106), + (1064, 3, 1106), + (1092, 6, 361), + (1092, 1, 361), + (1092, 4, 361), + (1093, 2, 361), + (1093, 4, 361), + (1093, 3, 361), + (1094, 6, 361), + (1094, 5, 361), + (1094, 3, 361); \ No newline at end of file diff --git a/modules/standard/implant/sql/SymbiantClusterMatrix.sql b/modules/standard/implant/sql/SymbiantClusterMatrix.sql new file mode 100644 index 0000000..2063cd6 --- /dev/null +++ b/modules/standard/implant/sql/SymbiantClusterMatrix.sql @@ -0,0 +1,12887 @@ +# noinspection LongLineForFile + +DROP TABLE IF EXISTS SymbiantClusterMatrix; +CREATE TABLE IF NOT EXISTS SymbiantClusterMatrix +( + SymbiantID INT NOT NULL, + ClusterID INT NOT NULL, + Amount INT NOT NULL +); +INSERT INTO SymbiantClusterMatrix (SymbiantID, ClusterID, Amount) +VALUES (692, 2, 9), + (660, 2, 25), + (495, 2, 5), + (81, 2, 22), + (788, 2, 61), + (466, 2, 83), + (140, 2, 51), + (563, 2, 19), + (1022, 2, 46), + (845, 2, 29), + (655, 2, 41), + (54, 2, 77), + (815, 2, 66), + (901, 2, 9), + (209, 2, 80), + (613, 2, 3), + (1078, 2, 72), + (978, 2, 1), + (323, 2, 69), + (560, 2, 13), + (76, 2, 15), + (500, 2, 7), + (658, 2, 17), + (145, 2, 21), + (988, 2, 1), + (623, 2, 3), + (528, 2, 64), + (238, 2, 26), + (109, 2, 91), + (265, 2, 121), + (756, 2, 111), + (618, 2, 2), + (820, 2, 40), + (319, 2, 115), + (521, 2, 106), + (1043, 2, 116), + (456, 2, 137), + (404, 2, 4), + (924, 2, 76), + (792, 2, 37), + (928, 2, 46), + (22, 2, 86), + (983, 2, 1), + (292, 2, 39), + (1107, 2, 33), + (206, 2, 54), + (1075, 2, 48), + (525, 2, 43), + (321, 2, 46), + (461, 2, 56), + (760, 2, 45), + (978, 3, 1), + (319, 3, 115), + (323, 3, 69), + (618, 3, 2), + (560, 3, 13), + (456, 3, 137), + (623, 3, 3), + (76, 3, 15), + (1078, 3, 72), + (658, 3, 17), + (988, 3, 1), + (145, 3, 21), + (983, 3, 1), + (756, 3, 111), + (815, 3, 66), + (404, 3, 4), + (495, 3, 5), + (22, 3, 86), + (788, 3, 61), + (109, 3, 91), + (528, 3, 64), + (140, 3, 51), + (901, 3, 9), + (1022, 3, 46), + (265, 3, 121), + (655, 3, 41), + (54, 3, 77), + (238, 3, 26), + (924, 3, 76), + (1043, 3, 116), + (209, 3, 80), + (466, 3, 83), + (613, 3, 3), + (521, 3, 106), + (820, 3, 40), + (500, 3, 7), + (660, 3, 25), + (792, 3, 37), + (928, 3, 46), + (563, 3, 19), + (692, 3, 9), + (845, 3, 29), + (81, 3, 22), + (1107, 3, 33), + (206, 3, 54), + (321, 3, 46), + (292, 3, 39), + (1075, 3, 48), + (525, 3, 43), + (461, 3, 56), + (760, 3, 45), + (924, 4, 76), + (815, 4, 66), + (1014, 4, 28), + (647, 4, 25), + (22, 4, 86), + (109, 4, 91), + (66, 4, 22), + (521, 4, 106), + (167, 4, 75), + (788, 4, 61), + (756, 4, 111), + (140, 4, 51), + (1022, 4, 46), + (655, 4, 41), + (714, 4, 34), + (238, 4, 26), + (436, 4, 83), + (836, 4, 43), + (613, 4, 3), + (978, 4, 1), + (512, 4, 64), + (744, 4, 67), + (1066, 4, 72), + (128, 4, 31), + (319, 4, 115), + (1043, 4, 116), + (593, 4, 3), + (456, 4, 137), + (958, 4, 1), + (366, 4, 4), + (265, 4, 121), + (674, 4, 9), + (867, 4, 10), + (391, 4, 6), + (737, 4, 45), + (1003, 4, 19), + (856, 4, 7), + (507, 4, 43), + (943, 4, 1), + (831, 4, 29), + (1059, 4, 48), + (421, 4, 56), + (640, 4, 17), + (578, 4, 2), + (155, 4, 50), + (885, 4, 9), + (334, 4, 41), + (94, 4, 37), + (387, 4, 4), + (6, 4, 35), + (216, 5, 54), + (533, 5, 43), + (613, 5, 3), + (731, 5, 23), + (476, 5, 56), + (958, 5, 1), + (238, 5, 26), + (714, 5, 34), + (836, 5, 43), + (383, 5, 3), + (698, 5, 6), + (978, 5, 1), + (272, 5, 49), + (823, 5, 27), + (512, 5, 64), + (633, 5, 2), + (744, 5, 67), + (766, 5, 45), + (1054, 5, 47), + (1066, 5, 72), + (998, 5, 1), + (167, 5, 75), + (118, 5, 37), + (815, 5, 66), + (1043, 5, 116), + (521, 5, 106), + (568, 5, 13), + (66, 5, 22), + (265, 5, 121), + (86, 5, 15), + (109, 5, 91), + (22, 5, 86), + (319, 5, 115), + (867, 5, 10), + (1022, 5, 46), + (1014, 5, 28), + (655, 5, 41), + (674, 5, 9), + (456, 5, 137), + (788, 5, 61), + (150, 5, 21), + (128, 5, 31), + (391, 5, 6), + (140, 5, 51), + (756, 5, 111), + (366, 5, 4), + (647, 5, 25), + (593, 5, 3), + (924, 5, 76), + (37, 5, 35), + (436, 5, 83), + (567, 6, 19), + (530, 6, 106), + (764, 6, 111), + (408, 6, 9), + (568, 6, 19), + (698, 6, 9), + (1051, 6, 116), + (529, 6, 106), + (502, 6, 11), + (1028, 6, 46), + (86, 6, 22), + (324, 6, 115), + (356, 6, 61), + (763, 6, 111), + (380, 6, 6), + (326, 6, 115), + (503, 6, 11), + (353, 6, 101), + (903, 6, 13), + (881, 6, 10), + (352, 6, 101), + (295, 6, 96), + (993, 6, 1), + (533, 6, 64), + (113, 6, 91), + (628, 6, 3), + (474, 6, 83), + (243, 6, 16), + (55, 6, 128), + (469, 6, 137), + (663, 6, 41), + (823, 6, 40), + (665, 6, 41), + (117, 6, 55), + (471, 6, 137), + (468, 6, 137), + (730, 6, 34), + (662, 6, 41), + (83, 6, 36), + (211, 6, 133), + (731, 6, 34), + (1026, 6, 46), + (851, 6, 43), + (118, 6, 55), + (879, 6, 16), + (37, 6, 52), + (694, 6, 13), + (150, 6, 31), + (183, 6, 124), + (181, 6, 124), + (297, 6, 58), + (695, 6, 13), + (1080, 6, 119), + (693, 6, 13), + (325, 6, 115), + (666, 6, 25), + (626, 6, 3), + (210, 6, 133), + (821, 6, 66), + (33, 6, 86), + (1054, 6, 70), + (1111, 6, 81), + (766, 6, 67), + (383, 6, 4), + (728, 6, 56), + (930, 6, 76), + (216, 6, 80), + (272, 6, 73), + (727, 6, 56), + (991, 6, 1), + (929, 6, 76), + (184, 6, 75), + (476, 6, 83), + (1082, 6, 72), + (849, 6, 71), + (631, 6, 3), + (633, 6, 3), + (149, 6, 51), + (990, 6, 1), + (996, 6, 1), + (625, 6, 3), + (115, 6, 91), + (31, 6, 86), + (932, 6, 46), + (998, 6, 1), + (765, 6, 67), + (411, 6, 6), + (992, 7, 1), + (794, 7, 13), + (1030, 7, 10), + (696, 7, 7), + (795, 7, 13), + (271, 7, 25), + (694, 7, 7), + (997, 7, 1), + (996, 7, 1), + (632, 7, 2), + (1029, 7, 10), + (995, 7, 1), + (328, 7, 24), + (732, 7, 12), + (666, 7, 9), + (693, 7, 7), + (999, 7, 1), + (83, 7, 19), + (151, 7, 11), + (35, 7, 18), + (85, 7, 19), + (630, 7, 2), + (84, 7, 19), + (504, 7, 6), + (730, 7, 12), + (634, 7, 2), + (793, 7, 13), + (241, 7, 13), + (1053, 7, 24), + (662, 7, 21), + (767, 7, 23), + (994, 7, 1), + (879, 7, 9), + (765, 7, 23), + (729, 7, 12), + (296, 7, 20), + (117, 7, 19), + (565, 7, 16), + (882, 7, 4), + (297, 7, 20), + (664, 7, 21), + (214, 7, 27), + (384, 7, 2), + (242, 7, 6), + (532, 7, 22), + (903, 7, 5), + (881, 7, 4), + (412, 7, 3), + (629, 7, 2), + (244, 7, 6), + (215, 7, 27), + (245, 7, 6), + (880, 7, 4), + (411, 7, 3), + (699, 7, 4), + (473, 7, 28), + (505, 7, 3), + (474, 7, 28), + (477, 7, 28), + (475, 7, 28), + (697, 7, 4), + (625, 7, 2), + (627, 7, 2), + (410, 7, 5), + (87, 7, 8), + (503, 7, 6), + (1083, 7, 25), + (626, 7, 2), + (1082, 7, 25), + (990, 7, 1), + (502, 7, 6), + (567, 7, 7), + (184, 7, 26), + (631, 7, 2), + (382, 7, 2), + (569, 7, 7), + (1081, 7, 25), + (409, 7, 5), + (36, 7, 18), + (356, 7, 21), + (57, 7, 26), + (408, 7, 5), + (566, 7, 7), + (243, 7, 6), + (58, 7, 26), + (381, 7, 3), + (991, 7, 1), + (56, 7, 26), + (182, 7, 62), + (763, 7, 56), + (31, 7, 43), + (114, 7, 46), + (727, 7, 29), + (32, 7, 43), + (355, 7, 51), + (849, 7, 36), + (327, 7, 58), + (34, 7, 43), + (38, 7, 18), + (850, 7, 36), + (1027, 7, 23), + (324, 7, 58), + (470, 7, 69), + (270, 7, 61), + (55, 7, 65), + (933, 7, 16), + (822, 7, 33), + (468, 7, 69), + (929, 7, 39), + (931, 7, 16), + (269, 7, 61), + (353, 7, 51), + (295, 7, 49), + (352, 7, 51), + (934, 7, 16), + (824, 7, 14), + (472, 7, 69), + (1026, 7, 23), + (1052, 7, 59), + (851, 7, 15), + (325, 7, 58), + (469, 7, 69), + (213, 7, 67), + (212, 7, 67), + (116, 7, 46), + (531, 7, 53), + (1112, 7, 17), + (821, 7, 33), + (1051, 7, 59), + (211, 7, 67), + (210, 7, 67), + (113, 7, 46), + (932, 7, 16), + (663, 7, 21), + (530, 7, 53), + (354, 7, 51), + (529, 7, 53), + (181, 7, 62), + (1110, 7, 41), + (148, 7, 26), + (12, 7, 27), + (774, 7, 19), + (775, 7, 19), + (709, 7, 18), + (10, 7, 27), + (511, 7, 33), + (510, 7, 33), + (643, 7, 13), + (482, 7, 4), + (951, 7, 1), + (64, 7, 12), + (953, 7, 1), + (309, 7, 35), + (13, 7, 27), + (954, 7, 1), + (431, 7, 42), + (43, 7, 39), + (711, 7, 18), + (1008, 7, 15), + (1093, 7, 25), + (252, 7, 37), + (863, 7, 6), + (589, 7, 2), + (277, 7, 30), + (588, 7, 2), + (862, 7, 6), + (644, 7, 13), + (1094, 7, 25), + (280, 7, 30), + (278, 7, 30), + (909, 7, 24), + (544, 7, 10), + (586, 7, 2), + (585, 7, 2), + (950, 7, 1), + (673, 7, 5), + (251, 7, 37), + (545, 7, 10), + (308, 7, 35), + (861, 7, 6), + (432, 7, 42), + (645, 7, 13), + (190, 7, 41), + (740, 7, 34), + (193, 7, 41), + (1010, 7, 15), + (388, 7, 3), + (163, 7, 38), + (164, 7, 38), + (249, 7, 37), + (224, 7, 9), + (338, 7, 31), + (428, 7, 42), + (1064, 7, 36), + (192, 7, 41), + (1092, 7, 25), + (361, 7, 3), + (125, 7, 16), + (223, 7, 9), + (100, 7, 28), + (362, 7, 3), + (225, 7, 9), + (773, 7, 19), + (429, 7, 42), + (339, 7, 31), + (161, 7, 38), + (802, 7, 21), + (803, 7, 21), + (1020, 8, 46), + (347, 8, 101), + (1040, 8, 116), + (751, 8, 111), + (753, 8, 111), + (877, 8, 10), + (687, 8, 6), + (784, 8, 61), + (872, 8, 16), + (843, 8, 71), + (682, 8, 13), + (722, 8, 23), + (920, 8, 76), + (490, 8, 11), + (841, 8, 71), + (926, 8, 46), + (147, 8, 31), + (985, 8, 1), + (288, 8, 96), + (980, 8, 1), + (136, 8, 51), + (18, 8, 86), + (463, 8, 83), + (402, 8, 4), + (497, 8, 7), + (819, 8, 40), + (78, 8, 22), + (895, 8, 21), + (397, 8, 9), + (615, 8, 2), + (519, 8, 106), + (873, 8, 16), + (51, 8, 128), + (526, 8, 64), + (847, 8, 43), + (559, 8, 13), + (201, 8, 133), + (689, 8, 9), + (378, 8, 4), + (605, 8, 3), + (970, 8, 1), + (72, 8, 36), + (451, 8, 137), + (376, 8, 3), + (179, 8, 75), + (556, 8, 31), + (448, 8, 137), + (608, 8, 3), + (620, 8, 3), + (69, 8, 36), + (656, 8, 17), + (899, 8, 9), + (1047, 8, 70), + (268, 8, 73), + (234, 8, 26), + (316, 8, 115), + (142, 8, 21), + (973, 8, 1), + (322, 8, 69), + (1070, 8, 119), + (1041, 8, 116), + (1104, 8, 33), + (1044, 8, 47), + (24, 8, 35), + (458, 8, 56), + (267, 8, 49), + (523, 8, 43), + (757, 8, 45), + (53, 8, 52), + (975, 9, 1), + (559, 9, 19), + (841, 9, 29), + (448, 9, 56), + (18, 9, 35), + (397, 9, 4), + (201, 9, 54), + (722, 9, 34), + (373, 9, 6), + (813, 9, 66), + (920, 9, 31), + (980, 9, 1), + (754, 9, 111), + (872, 9, 7), + (654, 9, 41), + (970, 9, 1), + (490, 9, 5), + (376, 9, 4), + (610, 9, 3), + (69, 9, 15), + (605, 9, 2), + (899, 9, 13), + (656, 9, 25), + (136, 9, 21), + (142, 9, 31), + (786, 9, 61), + (687, 9, 9), + (896, 9, 21), + (402, 9, 6), + (751, 9, 45), + (1020, 9, 19), + (237, 9, 26), + (1102, 9, 81), + (1040, 9, 47), + (74, 9, 36), + (615, 9, 3), + (289, 9, 96), + (453, 9, 137), + (683, 9, 13), + (1104, 9, 49), + (234, 9, 11), + (288, 9, 39), + (138, 9, 51), + (108, 9, 91), + (557, 9, 31), + (267, 9, 73), + (1044, 9, 70), + (523, 9, 64), + (458, 9, 83), + (53, 9, 77), + (24, 9, 52), + (757, 9, 67), + (216, 10, 54), + (934, 10, 31), + (567, 10, 13), + (931, 10, 31), + (666, 10, 17), + (474, 10, 56), + (568, 10, 13), + (86, 10, 15), + (473, 10, 56), + (36, 10, 35), + (297, 10, 39), + (698, 10, 6), + (477, 10, 56), + (533, 10, 43), + (476, 10, 56), + (37, 10, 35), + (697, 10, 6), + (87, 10, 15), + (505, 10, 5), + (411, 10, 4), + (475, 10, 56), + (215, 10, 54), + (699, 10, 6), + (356, 10, 41), + (732, 10, 23), + (412, 10, 4), + (633, 10, 2), + (730, 10, 23), + (117, 10, 37), + (272, 10, 49), + (882, 10, 7), + (1053, 10, 47), + (532, 10, 43), + (793, 10, 25), + (271, 10, 49), + (824, 10, 27), + (328, 10, 46), + (634, 10, 2), + (1081, 10, 48), + (731, 10, 23), + (632, 10, 2), + (765, 10, 45), + (997, 10, 1), + (767, 10, 45), + (881, 10, 7), + (998, 10, 1), + (35, 10, 35), + (996, 10, 1), + (242, 10, 11), + (995, 10, 1), + (1083, 10, 48), + (1112, 10, 33), + (630, 10, 2), + (903, 10, 9), + (795, 10, 25), + (794, 10, 25), + (1054, 10, 47), + (823, 10, 27), + (933, 10, 31), + (1029, 10, 19), + (999, 10, 1), + (384, 10, 3), + (566, 10, 13), + (1030, 10, 19), + (214, 10, 54), + (382, 10, 3), + (243, 10, 11), + (150, 10, 21), + (58, 10, 52), + (383, 10, 3), + (38, 10, 35), + (118, 10, 37), + (57, 10, 52), + (184, 10, 50), + (244, 10, 11), + (729, 10, 23), + (1082, 10, 48), + (766, 10, 45), + (631, 10, 2), + (245, 10, 11), + (296, 10, 39), + (932, 10, 31), + (880, 10, 7), + (851, 10, 29), + (151, 10, 21), + (569, 10, 13), + (56, 10, 52), + (506, 10, 106), + (4, 10, 52), + (534, 10, 31), + (507, 10, 64), + (826, 10, 71), + (416, 10, 137), + (736, 10, 67), + (737, 10, 67), + (59, 10, 36), + (329, 10, 101), + (535, 10, 31), + (95, 10, 55), + (186, 10, 133), + (92, 10, 55), + (733, 10, 111), + (93, 10, 55), + (5, 10, 52), + (537, 10, 31), + (94, 10, 55), + (185, 10, 133), + (536, 10, 31), + (904, 10, 76), + (413, 10, 137), + (334, 10, 61), + (274, 10, 58), + (40, 10, 128), + (734, 10, 111), + (333, 10, 61), + (6, 10, 52), + (91, 10, 55), + (332, 10, 61), + (89, 10, 91), + (188, 10, 80), + (420, 10, 83), + (1084, 10, 81), + (422, 10, 83), + (419, 10, 83), + (670, 10, 13), + (935, 10, 1), + (273, 10, 96), + (668, 10, 13), + (938, 10, 1), + (937, 10, 1), + (939, 10, 1), + (421, 10, 83), + (2, 10, 86), + (852, 10, 16), + (936, 10, 1), + (478, 10, 11), + (570, 10, 3), + (90, 10, 91), + (573, 10, 3), + (385, 10, 9), + (88, 10, 91), + (572, 10, 3), + (574, 10, 3), + (357, 10, 6), + (1, 10, 86), + (571, 10, 3), + (669, 10, 13), + (1060, 10, 72), + (246, 10, 73), + (415, 10, 137), + (1085, 10, 81), + (302, 10, 69), + (304, 10, 69), + (305, 10, 69), + (217, 10, 26), + (303, 10, 69), + (330, 10, 101), + (883, 10, 21), + (1057, 10, 72), + (417, 10, 137), + (667, 10, 13), + (1058, 10, 72), + (247, 10, 73), + (853, 10, 16), + (1086, 10, 81), + (155, 10, 75), + (156, 10, 75), + (154, 10, 75), + (41, 10, 77), + (414, 10, 137), + (331, 10, 101), + (187, 10, 80), + (854, 10, 16), + (189, 10, 80), + (418, 10, 83), + (1059, 10, 72), + (828, 10, 43), + (1002, 10, 28), + (60, 10, 22), + (152, 10, 124), + (943, 10, 1), + (799, 10, 40), + (942, 10, 1), + (796, 10, 66), + (944, 10, 1), + (941, 10, 1), + (1032, 10, 116), + (825, 10, 71), + (940, 10, 1), + (301, 10, 115), + (575, 10, 3), + (220, 10, 16), + (1004, 10, 28), + (701, 10, 56), + (636, 10, 41), + (538, 10, 19), + (578, 10, 3), + (120, 10, 51), + (700, 10, 56), + (705, 10, 34), + (886, 10, 13), + (121, 10, 31), + (1001, 10, 46), + (702, 10, 56), + (704, 10, 34), + (1033, 10, 116), + (885, 10, 13), + (884, 10, 13), + (218, 10, 16), + (153, 10, 124), + (1031, 10, 116), + (856, 10, 10), + (1003, 10, 28), + (299, 10, 115), + (797, 10, 66), + (703, 10, 34), + (771, 10, 37), + (855, 10, 10), + (798, 10, 40), + (857, 10, 10), + (219, 10, 16), + (827, 10, 71), + (1056, 10, 119), + (539, 10, 19), + (300, 10, 115), + (768, 10, 61), + (387, 10, 6), + (640, 10, 25), + (479, 10, 7), + (829, 10, 43), + (905, 10, 46), + (639, 10, 25), + (769, 10, 61), + (635, 10, 41), + (298, 10, 115), + (1000, 10, 46), + (770, 10, 61), + (480, 10, 7), + (638, 10, 25), + (637, 10, 41), + (3, 10, 52), + (671, 10, 9), + (1087, 10, 49), + (1055, 10, 119), + (830, 10, 43), + (735, 10, 111), + (119, 10, 51), + (577, 10, 3), + (358, 10, 4), + (576, 10, 3), + (579, 10, 3), + (386, 10, 6), + (832, 10, 43), + (39, 10, 128), + (831, 10, 43), + (903, 11, 13), + (243, 11, 16), + (628, 11, 2), + (568, 11, 19), + (533, 11, 64), + (380, 11, 3), + (881, 11, 10), + (764, 11, 45), + (118, 11, 55), + (1111, 11, 33), + (117, 11, 55), + (766, 11, 67), + (728, 11, 23), + (184, 11, 75), + (471, 11, 56), + (932, 11, 46), + (216, 11, 80), + (272, 11, 73), + (1080, 11, 48), + (695, 11, 6), + (666, 11, 25), + (150, 11, 31), + (297, 11, 58), + (474, 11, 83), + (33, 11, 35), + (930, 11, 31), + (731, 11, 34), + (183, 11, 50), + (383, 11, 4), + (37, 11, 52), + (1082, 11, 72), + (851, 11, 43), + (631, 11, 3), + (730, 11, 34), + (476, 11, 83), + (115, 11, 37), + (86, 11, 22), + (998, 11, 1), + (996, 11, 1), + (149, 11, 21), + (823, 11, 40), + (1028, 11, 19), + (765, 11, 67), + (698, 11, 9), + (356, 11, 61), + (326, 11, 46), + (633, 11, 3), + (1054, 11, 70), + (411, 11, 6), + (567, 11, 19), + (993, 11, 1), + (665, 11, 17), + (885, 11, 21), + (640, 11, 41), + (737, 11, 111), + (6, 11, 86), + (421, 11, 137), + (1003, 11, 46), + (155, 11, 124), + (1059, 11, 119), + (387, 11, 9), + (94, 11, 91), + (578, 11, 3), + (831, 11, 71), + (943, 11, 1), + (507, 11, 106), + (334, 11, 101), + (856, 11, 16), + (391, 12, 6), + (751, 12, 45), + (195, 12, 80), + (1040, 12, 47), + (317, 12, 46), + (366, 12, 4), + (1071, 12, 48), + (201, 12, 54), + (609, 12, 2), + (364, 12, 4), + (194, 12, 80), + (452, 12, 56), + (605, 12, 2), + (448, 12, 56), + (168, 12, 75), + (653, 12, 17), + (785, 12, 25), + (959, 12, 1), + (874, 12, 7), + (137, 12, 21), + (136, 12, 21), + (167, 12, 75), + (958, 12, 1), + (841, 12, 29), + (73, 12, 15), + (234, 12, 11), + (955, 12, 1), + (236, 12, 11), + (1066, 12, 72), + (69, 12, 15), + (1020, 12, 19), + (920, 12, 31), + (594, 12, 3), + (348, 12, 41), + (288, 12, 39), + (20, 12, 35), + (397, 12, 4), + (18, 12, 35), + (872, 12, 7), + (922, 12, 31), + (1067, 12, 72), + (593, 12, 3), + (399, 12, 4), + (590, 12, 3), + (490, 12, 5), + (974, 12, 1), + (520, 12, 43), + (1101, 12, 33), + (1035, 12, 70), + (868, 12, 10), + (815, 12, 66), + (433, 12, 83), + (1014, 12, 28), + (675, 12, 9), + (1011, 12, 28), + (22, 12, 86), + (647, 12, 25), + (646, 12, 25), + (126, 12, 31), + (66, 12, 22), + (788, 12, 61), + (521, 12, 106), + (548, 12, 19), + (546, 12, 19), + (756, 12, 111), + (227, 12, 16), + (1043, 12, 116), + (226, 12, 16), + (265, 12, 121), + (253, 12, 73), + (109, 12, 91), + (238, 12, 26), + (512, 12, 64), + (978, 12, 1), + (103, 12, 55), + (613, 12, 3), + (436, 12, 83), + (101, 12, 55), + (912, 12, 46), + (910, 12, 46), + (836, 12, 43), + (744, 12, 67), + (777, 12, 37), + (924, 12, 76), + (513, 12, 64), + (714, 12, 34), + (655, 12, 41), + (437, 12, 83), + (1022, 12, 46), + (129, 12, 31), + (742, 12, 67), + (140, 12, 51), + (128, 12, 31), + (805, 12, 40), + (867, 12, 10), + (674, 12, 9), + (255, 12, 73), + (483, 12, 7), + (456, 12, 137), + (970, 12, 1), + (392, 12, 6), + (319, 12, 115), + (864, 12, 10), + (463, 13, 56), + (378, 13, 3), + (722, 13, 34), + (656, 13, 25), + (560, 13, 19), + (76, 13, 22), + (563, 13, 13), + (1047, 13, 47), + (54, 13, 52), + (497, 13, 5), + (618, 13, 3), + (928, 13, 31), + (660, 13, 17), + (877, 13, 7), + (495, 13, 7), + (687, 13, 9), + (615, 13, 3), + (147, 13, 21), + (322, 13, 46), + (404, 13, 6), + (209, 13, 54), + (526, 13, 43), + (142, 13, 31), + (78, 13, 15), + (402, 13, 6), + (792, 13, 25), + (983, 13, 1), + (620, 13, 2), + (81, 13, 15), + (500, 13, 5), + (528, 13, 43), + (985, 13, 1), + (179, 13, 50), + (1104, 13, 49), + (145, 13, 31), + (901, 13, 13), + (926, 13, 31), + (1078, 13, 48), + (819, 13, 27), + (847, 13, 29), + (820, 13, 27), + (559, 13, 19), + (980, 13, 1), + (466, 13, 56), + (376, 13, 4), + (988, 13, 1), + (658, 13, 25), + (899, 13, 13), + (845, 13, 43), + (692, 13, 6), + (623, 13, 2), + (689, 13, 6), + (323, 13, 46), + (268, 13, 49), + (1055, 13, 119), + (852, 13, 16), + (825, 13, 71), + (1044, 13, 70), + (329, 13, 101), + (119, 13, 51), + (700, 13, 56), + (827, 13, 71), + (702, 13, 56), + (883, 13, 21), + (461, 13, 83), + (760, 13, 67), + (186, 13, 133), + (935, 13, 1), + (478, 13, 11), + (321, 13, 69), + (1107, 13, 49), + (573, 13, 3), + (39, 13, 128), + (570, 13, 3), + (733, 13, 111), + (525, 13, 64), + (185, 13, 133), + (90, 13, 91), + (88, 13, 91), + (635, 13, 41), + (523, 13, 64), + (298, 13, 115), + (357, 13, 6), + (768, 13, 61), + (1001, 13, 46), + (757, 13, 67), + (24, 13, 52), + (938, 13, 1), + (458, 13, 83), + (534, 13, 31), + (1085, 13, 81), + (53, 13, 77), + (536, 13, 31), + (796, 13, 66), + (797, 13, 66), + (206, 13, 80), + (292, 13, 58), + (416, 13, 137), + (669, 13, 13), + (413, 13, 137), + (267, 13, 73), + (1075, 13, 72), + (613, 14, 3), + (788, 14, 37), + (391, 14, 9), + (823, 14, 27), + (512, 14, 106), + (978, 14, 1), + (383, 14, 3), + (998, 14, 1), + (118, 14, 37), + (167, 14, 124), + (128, 14, 51), + (766, 14, 45), + (731, 14, 23), + (238, 14, 16), + (714, 14, 56), + (150, 14, 21), + (674, 14, 13), + (272, 14, 49), + (1066, 14, 119), + (655, 14, 25), + (744, 14, 111), + (836, 14, 71), + (456, 14, 83), + (633, 14, 2), + (1022, 14, 28), + (436, 14, 137), + (1054, 14, 47), + (397, 34, 6), + (201, 34, 80), + (18, 34, 52), + (74, 34, 36), + (138, 34, 51), + (448, 34, 83), + (237, 34, 26), + (722, 34, 23), + (1102, 34, 81), + (980, 34, 1), + (1040, 34, 70), + (970, 34, 1), + (751, 34, 67), + (786, 34, 61), + (142, 34, 21), + (605, 34, 3), + (453, 34, 137), + (656, 34, 17), + (687, 34, 6), + (376, 34, 3), + (615, 34, 2), + (288, 34, 58), + (813, 34, 66), + (975, 34, 1), + (654, 34, 41), + (69, 34, 22), + (136, 34, 31), + (559, 34, 13), + (234, 34, 16), + (920, 34, 46), + (896, 34, 21), + (610, 34, 3), + (402, 34, 4), + (373, 34, 6), + (754, 34, 111), + (872, 34, 10), + (1020, 34, 28), + (289, 34, 96), + (108, 34, 91), + (683, 34, 13), + (899, 34, 9), + (490, 34, 7), + (841, 34, 43), + (523, 34, 43), + (1104, 34, 33), + (1044, 34, 47), + (458, 34, 56), + (757, 34, 45), + (24, 34, 35), + (53, 34, 52), + (267, 34, 49), + (868, 88, 9), + (867, 88, 9), + (31, 88, 18), + (253, 88, 61), + (365, 88, 3), + (434, 88, 69), + (930, 88, 16), + (864, 88, 9), + (512, 88, 53), + (326, 88, 24), + (866, 88, 9), + (728, 88, 12), + (391, 88, 5), + (548, 88, 16), + (390, 88, 5), + (547, 88, 16), + (744, 88, 56), + (879, 88, 4), + (991, 88, 1), + (1080, 88, 25), + (849, 88, 15), + (66, 88, 19), + (912, 88, 39), + (1036, 88, 59), + (83, 88, 8), + (149, 88, 11), + (865, 88, 9), + (910, 88, 39), + (471, 88, 28), + (226, 88, 13), + (675, 88, 7), + (195, 88, 67), + (227, 88, 13), + (483, 88, 6), + (674, 88, 7), + (626, 88, 2), + (893, 88, 11), + (1067, 88, 60), + (1026, 88, 10), + (115, 88, 19), + (211, 88, 27), + (836, 88, 36), + (628, 88, 2), + (743, 88, 56), + (1065, 88, 60), + (392, 88, 5), + (353, 88, 21), + (1035, 88, 59), + (165, 88, 62), + (513, 88, 53), + (380, 88, 2), + (325, 88, 24), + (194, 88, 67), + (742, 88, 56), + (389, 88, 5), + (44, 88, 65), + (546, 88, 16), + (958, 88, 1), + (102, 88, 46), + (128, 88, 26), + (1028, 88, 10), + (647, 88, 21), + (646, 88, 21), + (126, 88, 26), + (436, 88, 69), + (103, 88, 46), + (33, 88, 18), + (530, 88, 22), + (993, 88, 1), + (777, 88, 31), + (1012, 88, 23), + (183, 88, 26), + (694, 88, 4), + (590, 88, 2), + (101, 88, 46), + (663, 88, 9), + (957, 88, 1), + (503, 88, 3), + (127, 88, 26), + (1066, 88, 60), + (311, 88, 58), + (956, 88, 1), + (167, 88, 62), + (254, 88, 61), + (714, 88, 29), + (113, 88, 19), + (764, 88, 23), + (129, 88, 26), + (776, 88, 31), + (1095, 88, 41), + (14, 88, 43), + (959, 88, 1), + (168, 88, 62), + (366, 88, 3), + (469, 88, 28), + (364, 88, 3), + (763, 88, 23), + (340, 88, 51), + (591, 88, 2), + (15, 88, 43), + (593, 88, 2), + (821, 88, 14), + (805, 88, 33), + (911, 88, 39), + (435, 88, 69), + (310, 88, 58), + (712, 88, 29), + (437, 88, 69), + (665, 88, 9), + (1111, 88, 17), + (1013, 88, 23), + (695, 88, 4), + (255, 88, 61), + (433, 88, 69), + (1011, 88, 23), + (592, 88, 2), + (1014, 88, 23), + (955, 88, 1), + (166, 88, 62), + (594, 88, 2), + (713, 88, 29), + (281, 88, 49), + (362, 88, 3), + (673, 88, 5), + (429, 88, 42), + (586, 88, 2), + (589, 88, 2), + (432, 88, 42), + (545, 88, 10), + (709, 88, 18), + (511, 88, 33), + (645, 88, 13), + (309, 88, 35), + (339, 88, 31), + (951, 88, 1), + (1093, 88, 25), + (13, 88, 27), + (43, 88, 39), + (64, 88, 12), + (100, 88, 28), + (125, 88, 16), + (161, 88, 38), + (954, 88, 1), + (164, 88, 38), + (193, 88, 41), + (224, 88, 9), + (863, 88, 6), + (225, 88, 9), + (803, 88, 21), + (740, 88, 34), + (773, 88, 19), + (278, 88, 30), + (252, 88, 37), + (775, 88, 19), + (140, 35, 51), + (841, 35, 43), + (234, 35, 16), + (756, 35, 111), + (658, 35, 17), + (754, 35, 111), + (920, 35, 46), + (1043, 35, 116), + (1020, 35, 28), + (521, 35, 106), + (970, 35, 1), + (656, 35, 17), + (751, 35, 67), + (76, 35, 15), + (456, 35, 137), + (605, 35, 3), + (983, 35, 1), + (136, 35, 31), + (453, 35, 137), + (319, 35, 115), + (288, 35, 58), + (872, 35, 10), + (18, 35, 52), + (980, 35, 1), + (615, 35, 2), + (1040, 35, 70), + (145, 35, 21), + (397, 35, 6), + (618, 35, 2), + (722, 35, 23), + (490, 35, 7), + (265, 35, 121), + (69, 35, 22), + (1022, 35, 46), + (1102, 35, 81), + (613, 35, 3), + (975, 35, 1), + (560, 35, 13), + (495, 35, 5), + (22, 35, 86), + (687, 35, 6), + (655, 35, 41), + (402, 35, 4), + (901, 35, 9), + (654, 35, 41), + (813, 35, 66), + (815, 35, 66), + (978, 35, 1), + (138, 35, 51), + (404, 35, 4), + (373, 35, 6), + (201, 35, 80), + (924, 35, 76), + (448, 35, 83), + (557, 35, 31), + (610, 35, 3), + (237, 35, 26), + (845, 35, 29), + (289, 35, 96), + (238, 35, 26), + (896, 35, 21), + (788, 35, 61), + (786, 35, 61), + (109, 35, 91), + (376, 35, 3), + (683, 35, 13), + (108, 35, 91), + (559, 35, 13), + (142, 35, 21), + (899, 35, 9), + (74, 35, 36), + (458, 35, 56), + (321, 35, 46), + (206, 35, 54), + (461, 35, 56), + (1075, 35, 48), + (1104, 35, 33), + (760, 35, 45), + (1107, 35, 33), + (292, 35, 39), + (24, 35, 35), + (1044, 35, 47), + (525, 35, 43), + (523, 35, 43), + (267, 35, 49), + (53, 35, 52), + (757, 35, 45), + (708, 37, 12), + (584, 37, 2), + (860, 37, 4), + (236, 37, 9), + (1088, 37, 17), + (974, 37, 1), + (894, 37, 7), + (520, 37, 33), + (518, 37, 33), + (908, 37, 16), + (452, 37, 42), + (581, 37, 2), + (399, 37, 3), + (424, 37, 28), + (834, 37, 15), + (1100, 37, 25), + (427, 37, 28), + (425, 37, 28), + (1101, 37, 25), + (99, 37, 19), + (20, 37, 27), + (907, 37, 16), + (360, 37, 2), + (772, 37, 13), + (1089, 37, 17), + (842, 37, 22), + (449, 37, 42), + (922, 37, 24), + (158, 37, 26), + (582, 37, 2), + (159, 37, 26), + (812, 37, 21), + (874, 37, 6), + (707, 37, 12), + (348, 37, 31), + (1091, 37, 17), + (971, 37, 1), + (1062, 37, 25), + (609, 37, 2), + (98, 37, 19), + (949, 37, 1), + (542, 37, 7), + (1034, 37, 24), + (1005, 37, 10), + (221, 37, 6), + (222, 37, 6), + (49, 37, 39), + (642, 37, 9), + (8, 37, 18), + (888, 37, 5), + (70, 37, 12), + (739, 37, 23), + (261, 37, 37), + (1007, 37, 10), + (508, 37, 22), + (606, 37, 2), + (73, 37, 12), + (859, 37, 4), + (947, 37, 1), + (97, 37, 19), + (738, 37, 23), + (335, 37, 21), + (1071, 37, 36), + (306, 37, 24), + (653, 37, 13), + (785, 37, 19), + (317, 37, 35), + (752, 37, 34), + (63, 37, 8), + (124, 37, 11), + (137, 37, 16), + (275, 37, 20), + (541, 37, 7), + (61, 37, 8), + (554, 37, 10), + (889, 37, 5), + (891, 37, 5), + (174, 37, 38), + (652, 37, 13), + (946, 37, 1), + (248, 37, 25), + (337, 37, 21), + (276, 37, 20), + (853, 37, 9), + (299, 37, 58), + (735, 37, 56), + (904, 37, 39), + (1032, 37, 59), + (826, 37, 36), + (701, 37, 29), + (769, 37, 31), + (301, 37, 58), + (770, 37, 31), + (153, 37, 62), + (535, 37, 16), + (636, 37, 21), + (1031, 37, 59), + (1086, 37, 41), + (637, 37, 21), + (537, 37, 16), + (1056, 37, 60), + (120, 37, 26), + (1000, 37, 23), + (59, 37, 19), + (1033, 37, 59), + (217, 37, 13), + (152, 37, 62), + (273, 37, 49), + (300, 37, 58), + (670, 37, 7), + (415, 37, 69), + (571, 37, 2), + (2, 37, 43), + (939, 37, 1), + (734, 37, 56), + (330, 37, 51), + (668, 37, 7), + (574, 37, 2), + (385, 37, 5), + (1, 37, 43), + (937, 37, 1), + (89, 37, 46), + (506, 37, 53), + (417, 37, 69), + (572, 37, 2), + (936, 37, 1), + (414, 37, 69), + (1084, 37, 41), + (40, 37, 65), + (854, 37, 9), + (667, 37, 7), + (331, 37, 51), + (359, 38, 3), + (1100, 38, 81), + (423, 38, 56), + (907, 38, 31), + (945, 38, 1), + (653, 38, 41), + (97, 38, 37), + (652, 38, 41), + (424, 38, 56), + (360, 38, 3), + (1062, 38, 48), + (812, 38, 66), + (554, 38, 31), + (1061, 38, 48), + (785, 38, 61), + (8, 38, 35), + (236, 38, 26), + (580, 38, 2), + (7, 38, 35), + (1088, 38, 33), + (581, 38, 2), + (874, 38, 16), + (946, 38, 1), + (70, 38, 36), + (894, 38, 21), + (137, 38, 51), + (96, 38, 37), + (157, 38, 50), + (738, 38, 45), + (158, 38, 50), + (922, 38, 76), + (73, 38, 36), + (1101, 38, 81), + (275, 38, 39), + (842, 38, 71), + (752, 38, 111), + (449, 38, 137), + (481, 38, 5), + (858, 38, 7), + (971, 38, 1), + (707, 38, 23), + (520, 38, 106), + (518, 38, 106), + (974, 38, 1), + (399, 38, 9), + (452, 38, 137), + (348, 38, 101), + (706, 38, 23), + (859, 38, 7), + (887, 38, 9), + (122, 38, 21), + (888, 38, 9), + (49, 38, 128), + (261, 38, 121), + (317, 38, 115), + (540, 38, 13), + (641, 38, 17), + (1071, 38, 119), + (174, 38, 124), + (61, 38, 15), + (20, 38, 86), + (606, 38, 3), + (800, 38, 27), + (833, 38, 29), + (906, 38, 31), + (834, 38, 29), + (609, 38, 3), + (39, 38, 77), + (152, 38, 75), + (536, 38, 19), + (1031, 38, 70), + (186, 38, 80), + (357, 38, 4), + (414, 38, 83), + (1, 38, 52), + (667, 38, 9), + (826, 38, 43), + (478, 38, 7), + (535, 38, 19), + (938, 38, 1), + (571, 38, 3), + (299, 38, 69), + (701, 38, 34), + (330, 38, 61), + (1085, 38, 49), + (1084, 38, 49), + (636, 38, 25), + (90, 38, 55), + (827, 38, 43), + (416, 38, 83), + (702, 38, 34), + (1001, 38, 28), + (936, 38, 1), + (853, 38, 10), + (573, 38, 3), + (669, 38, 9), + (797, 38, 40), + (846, 39, 71), + (496, 39, 11), + (560, 39, 31), + (76, 39, 36), + (688, 39, 13), + (1023, 39, 46), + (404, 39, 9), + (145, 39, 51), + (845, 39, 71), + (140, 14, 31), + (366, 14, 6), + (319, 14, 69), + (958, 14, 1), + (593, 14, 3), + (533, 14, 43), + (1043, 14, 70), + (647, 14, 41), + (867, 14, 16), + (756, 14, 67), + (22, 14, 52), + (37, 14, 35), + (109, 14, 55), + (521, 14, 64), + (86, 14, 15), + (476, 14, 56), + (66, 14, 36), + (698, 14, 6), + (815, 14, 40), + (216, 14, 54), + (265, 14, 73), + (1014, 14, 46), + (924, 14, 46), + (568, 14, 13), + (195, 15, 80), + (310, 15, 69), + (254, 15, 73), + (548, 15, 19), + (513, 15, 64), + (868, 15, 10), + (805, 15, 40), + (712, 15, 34), + (103, 15, 55), + (255, 15, 73), + (956, 15, 1), + (168, 15, 75), + (865, 15, 10), + (389, 15, 6), + (893, 15, 13), + (227, 15, 16), + (959, 15, 1), + (1036, 15, 70), + (392, 15, 6), + (165, 15, 75), + (437, 15, 83), + (912, 15, 46), + (911, 15, 46), + (14, 15, 52), + (340, 15, 61), + (434, 15, 83), + (594, 15, 3), + (1065, 15, 72), + (675, 15, 9), + (129, 15, 31), + (1012, 15, 28), + (777, 15, 37), + (743, 15, 67), + (127, 15, 31), + (1067, 15, 72), + (591, 15, 3), + (575, 15, 2), + (60, 15, 15), + (218, 15, 11), + (3, 15, 35), + (386, 15, 4), + (187, 15, 54), + (940, 15, 1), + (418, 15, 56), + (479, 15, 5), + (798, 15, 27), + (1002, 15, 19), + (1057, 15, 48), + (274, 15, 39), + (828, 15, 29), + (332, 15, 41), + (302, 15, 46), + (638, 15, 17), + (91, 15, 37), + (689, 16, 9), + (722, 16, 23), + (926, 16, 46), + (402, 16, 4), + (985, 16, 1), + (899, 16, 9), + (615, 16, 2), + (847, 16, 43), + (179, 16, 75), + (526, 16, 64), + (463, 16, 83), + (620, 16, 3), + (78, 16, 22), + (378, 16, 4), + (497, 16, 7), + (376, 16, 3), + (1047, 16, 70), + (268, 16, 73), + (656, 16, 17), + (147, 16, 31), + (819, 16, 40), + (142, 16, 21), + (687, 16, 6), + (980, 16, 1), + (559, 16, 13), + (322, 16, 69), + (877, 16, 10), + (1104, 16, 33), + (24, 16, 35), + (458, 16, 56), + (757, 16, 45), + (1044, 16, 47), + (523, 16, 43), + (53, 16, 52), + (267, 16, 49), + (35, 17, 426), + (533, 17, 526), + (824, 17, 326), + (245, 17, 126), + (630, 17, 13), + (150, 17, 251), + (767, 17, 551), + (823, 17, 326), + (880, 17, 76), + (766, 17, 551), + (384, 17, 26), + (699, 17, 63), + (568, 17, 151), + (934, 17, 376), + (242, 17, 126), + (697, 17, 63), + (731, 17, 276), + (86, 17, 176), + (566, 17, 151), + (698, 17, 63), + (634, 17, 13), + (87, 17, 176), + (118, 17, 451), + (37, 17, 426), + (732, 17, 276), + (151, 17, 251), + (729, 17, 276), + (38, 17, 426), + (1112, 17, 401), + (505, 17, 51), + (383, 17, 26), + (793, 17, 301), + (532, 17, 526), + (931, 17, 376), + (569, 17, 151), + (795, 17, 301), + (633, 17, 13), + (1029, 17, 226), + (296, 17, 476), + (109, 17, 271), + (756, 17, 331), + (522, 17, 316), + (999, 17, 3), + (521, 17, 316), + (675, 17, 26), + (350, 17, 301), + (290, 17, 286), + (366, 17, 11), + (66, 17, 71), + (265, 17, 361), + (23, 17, 256), + (21, 17, 256), + (22, 17, 256), + (1103, 17, 241), + (647, 17, 81), + (923, 17, 226), + (924, 17, 226), + (815, 17, 196), + (110, 17, 271), + (1074, 17, 356), + (391, 17, 16), + (392, 17, 16), + (457, 17, 410), + (455, 17, 410), + (456, 17, 410), + (204, 17, 396), + (203, 17, 396), + (674, 17, 26), + (227, 17, 51), + (177, 17, 369), + (1043, 17, 346), + (1073, 17, 356), + (318, 17, 342), + (867, 17, 31), + (319, 17, 342), + (266, 17, 361), + (868, 17, 31), + (264, 17, 361), + (787, 17, 181), + (52, 17, 383), + (744, 17, 221), + (1014, 17, 91), + (614, 17, 9), + (612, 17, 9), + (613, 17, 9), + (979, 17, 3), + (103, 17, 181), + (977, 17, 3), + (978, 17, 3), + (375, 17, 16), + (513, 17, 211), + (836, 17, 141), + (255, 17, 241), + (1066, 17, 237), + (1067, 17, 237), + (167, 17, 246), + (168, 17, 246), + (195, 17, 265), + (436, 17, 274), + (437, 17, 274), + (512, 17, 211), + (238, 17, 76), + (548, 17, 61), + (788, 17, 181), + (141, 17, 151), + (128, 17, 101), + (140, 17, 151), + (129, 17, 101), + (1022, 17, 136), + (655, 17, 121), + (912, 17, 151), + (714, 17, 111), + (789, 17, 181), + (777, 17, 121), + (898, 17, 61), + (875, 17, 46), + (686, 17, 39), + (805, 17, 131), + (685, 17, 39), + (492, 17, 31), + (401, 17, 24), + (75, 17, 106), + (593, 17, 6), + (959, 17, 2), + (477, 17, 683), + (56, 17, 637), + (958, 17, 2), + (1081, 17, 592), + (998, 17, 3), + (216, 17, 660), + (214, 17, 660), + (594, 17, 6), + (473, 17, 683), + (476, 17, 683), + (272, 17, 601), + (58, 17, 637), + (1054, 17, 576), + (995, 17, 3), + (47, 94, 11), + (658, 94, 6), + (497, 94, 2), + (78, 94, 3), + (495, 94, 2), + (142, 94, 7), + (404, 94, 2), + (687, 94, 3), + (369, 94, 1), + (402, 94, 2), + (870, 94, 2), + (198, 94, 11), + (463, 94, 8), + (145, 94, 7), + (819, 94, 4), + (147, 94, 4), + (486, 94, 2), + (689, 94, 2), + (559, 94, 5), + (516, 94, 9), + (679, 94, 2), + (845, 94, 10), + (560, 94, 5), + (901, 94, 3), + (526, 94, 6), + (656, 94, 6), + (179, 94, 7), + (268, 94, 7), + (899, 94, 3), + (322, 94, 7), + (76, 94, 5), + (877, 94, 2), + (133, 94, 5), + (781, 94, 6), + (917, 94, 7), + (171, 94, 10), + (1038, 94, 10), + (378, 94, 1), + (985, 94, 1), + (722, 94, 8), + (600, 94, 1), + (551, 94, 3), + (443, 94, 11), + (926, 94, 5), + (615, 94, 1), + (1104, 94, 11), + (620, 94, 1), + (965, 94, 1), + (618, 94, 1), + (285, 94, 8), + (980, 94, 1), + (983, 94, 1), + (1047, 94, 7), + (376, 94, 2), + (847, 94, 5), + (523, 94, 14), + (321, 94, 15), + (757, 94, 15), + (760, 94, 15), + (461, 94, 18), + (292, 94, 13), + (24, 94, 12), + (458, 94, 18), + (267, 94, 16), + (206, 94, 17), + (1107, 94, 11), + (1044, 94, 15), + (525, 94, 14), + (53, 94, 17), + (1075, 94, 16), + (900, 18, 9), + (137, 18, 31), + (816, 18, 27), + (20, 18, 52), + (452, 18, 83), + (49, 18, 77), + (874, 18, 10), + (348, 18, 61), + (449, 18, 83), + (261, 18, 73), + (609, 18, 3), + (518, 18, 64), + (981, 18, 1), + (606, 18, 3), + (971, 18, 1), + (974, 18, 1), + (174, 18, 75), + (236, 18, 16), + (1071, 18, 72), + (399, 18, 6), + (723, 18, 23), + (317, 18, 69), + (520, 18, 64), + (785, 18, 37), + (925, 18, 31), + (752, 18, 67), + (239, 18, 11), + (894, 18, 13), + (554, 18, 19), + (842, 18, 43), + (812, 18, 40), + (653, 18, 25), + (403, 18, 4), + (493, 18, 5), + (73, 18, 22), + (70, 18, 22), + (922, 18, 46), + (143, 18, 21), + (1101, 18, 49), + (616, 18, 2), + (652, 18, 25), + (377, 18, 3), + (1100, 18, 49), + (1031, 18, 116), + (320, 18, 46), + (535, 18, 31), + (636, 18, 41), + (826, 18, 71), + (701, 18, 56), + (1084, 18, 81), + (299, 18, 115), + (459, 18, 56), + (152, 18, 124), + (330, 18, 101), + (1, 18, 86), + (25, 18, 35), + (667, 18, 13), + (758, 18, 45), + (1105, 18, 33), + (571, 18, 3), + (414, 18, 137), + (351, 18, 41), + (111, 18, 37), + (853, 18, 16), + (936, 18, 1), + (633, 19, 13), + (1054, 19, 576), + (818, 19, 196), + (38, 19, 426), + (118, 19, 451), + (35, 19, 426), + (145, 19, 151), + (998, 19, 3), + (931, 19, 376), + (999, 19, 3), + (1112, 19, 401), + (724, 19, 166), + (767, 19, 551), + (934, 19, 376), + (146, 19, 151), + (76, 19, 106), + (560, 19, 91), + (658, 19, 121), + (37, 19, 426), + (995, 19, 3), + (630, 19, 13), + (1023, 19, 136), + (561, 19, 91), + (77, 19, 106), + (568, 19, 151), + (404, 19, 24), + (87, 19, 176), + (473, 19, 683), + (505, 19, 51), + (86, 19, 176), + (476, 19, 683), + (697, 19, 63), + (569, 19, 151), + (619, 19, 9), + (729, 19, 276), + (477, 19, 683), + (216, 19, 660), + (532, 19, 526), + (566, 19, 151), + (618, 19, 9), + (699, 19, 63), + (245, 19, 126), + (880, 19, 76), + (242, 19, 126), + (533, 19, 526), + (984, 19, 3), + (983, 19, 3), + (698, 19, 63), + (56, 19, 637), + (272, 19, 601), + (823, 19, 326), + (795, 19, 301), + (901, 19, 61), + (634, 19, 13), + (793, 19, 301), + (1081, 19, 592), + (732, 19, 276), + (845, 19, 211), + (296, 19, 476), + (766, 19, 551), + (688, 19, 39), + (1029, 19, 226), + (731, 19, 276), + (58, 19, 637), + (151, 19, 251), + (496, 19, 31), + (214, 19, 660), + (495, 19, 31), + (150, 19, 251), + (384, 19, 26), + (846, 19, 211), + (824, 19, 326), + (383, 19, 26), + (283, 19, 191), + (230, 19, 51), + (913, 19, 151), + (1076, 19, 356), + (718, 19, 111), + (1097, 19, 161), + (525, 19, 316), + (650, 19, 81), + (649, 19, 81), + (916, 19, 151), + (1107, 19, 241), + (838, 19, 141), + (16, 19, 171), + (1015, 19, 91), + (178, 19, 369), + (206, 19, 396), + (915, 19, 151), + (648, 19, 81), + (321, 19, 342), + (550, 19, 61), + (132, 19, 101), + (292, 19, 286), + (715, 19, 111), + (462, 19, 410), + (779, 19, 121), + (368, 19, 11), + (461, 19, 410), + (599, 19, 6), + (745, 19, 221), + (598, 19, 6), + (760, 19, 331), + (1068, 19, 237), + (595, 19, 6), + (169, 19, 246), + (964, 19, 2), + (808, 19, 131), + (394, 19, 16), + (27, 19, 256), + (1037, 19, 231), + (1075, 19, 356), + (256, 19, 241), + (806, 19, 131), + (312, 19, 228), + (960, 19, 2), + (963, 19, 2), + (747, 19, 221), + (442, 19, 274), + (438, 19, 274), + (343, 19, 201), + (837, 19, 141), + (676, 19, 26), + (170, 19, 246), + (441, 19, 274), + (1046, 19, 346), + (780, 19, 121), + (485, 19, 21), + (197, 19, 265), + (514, 19, 211), + (393, 19, 16), + (112, 19, 271), + (515, 19, 211), + (678, 19, 26), + (778, 19, 121), + (284, 19, 191), + (69, 20, 22), + (784, 20, 37), + (721, 20, 34), + (377, 20, 3), + (136, 20, 31), + (652, 20, 25), + (653, 20, 25), + (658, 20, 17), + (70, 20, 22), + (73, 20, 22), + (874, 20, 10), + (72, 20, 22), + (812, 20, 40), + (554, 20, 19), + (555, 20, 19), + (656, 20, 17), + (556, 20, 19), + (236, 20, 16), + (235, 20, 16), + (234, 20, 16), + (894, 20, 13), + (895, 20, 13), + (752, 20, 67), + (71, 20, 22), + (18, 20, 52), + (753, 20, 67), + (751, 20, 67), + (518, 20, 64), + (520, 20, 64), + (519, 20, 64), + (142, 20, 21), + (348, 20, 61), + (346, 20, 61), + (347, 20, 61), + (288, 20, 58), + (785, 20, 37), + (19, 20, 52), + (657, 20, 17), + (1100, 20, 49), + (1101, 20, 49), + (1023, 20, 19), + (922, 20, 46), + (921, 20, 46), + (920, 20, 46), + (842, 20, 43), + (843, 20, 43), + (841, 20, 43), + (873, 20, 10), + (20, 20, 52), + (376, 20, 3), + (970, 20, 1), + (981, 20, 1), + (240, 20, 11), + (615, 20, 2), + (900, 20, 9), + (618, 20, 2), + (901, 20, 9), + (617, 20, 2), + (619, 20, 2), + (77, 20, 15), + (899, 20, 9), + (239, 20, 11), + (876, 20, 7), + (402, 20, 4), + (688, 20, 6), + (404, 20, 4), + (687, 20, 6), + (403, 20, 4), + (493, 20, 5), + (495, 20, 5), + (494, 20, 5), + (496, 20, 5), + (616, 20, 2), + (560, 20, 13), + (872, 20, 10), + (682, 20, 9), + (490, 20, 7), + (399, 20, 6), + (980, 20, 1), + (398, 20, 6), + (397, 20, 6), + (76, 20, 15), + (372, 20, 4), + (606, 20, 3), + (984, 20, 1), + (609, 20, 3), + (973, 20, 1), + (607, 20, 3), + (608, 20, 3), + (983, 20, 1), + (605, 20, 3), + (971, 20, 1), + (982, 20, 1), + (974, 20, 1), + (972, 20, 1), + (559, 20, 13), + (137, 20, 31), + (561, 20, 13), + (452, 20, 83), + (174, 20, 75), + (51, 20, 77), + (50, 20, 77), + (49, 20, 77), + (846, 20, 29), + (143, 20, 21), + (816, 20, 27), + (202, 20, 80), + (448, 20, 83), + (844, 20, 29), + (175, 20, 75), + (450, 20, 83), + (201, 20, 80), + (449, 20, 83), + (722, 20, 23), + (724, 20, 23), + (723, 20, 23), + (790, 20, 25), + (817, 20, 27), + (818, 20, 27), + (845, 20, 29), + (1020, 20, 28), + (1040, 20, 70), + (451, 20, 83), + (1041, 20, 70), + (316, 20, 69), + (261, 20, 73), + (925, 20, 31), + (317, 20, 69), + (262, 20, 73), + (144, 20, 21), + (145, 20, 21), + (1070, 20, 72), + (146, 20, 21), + (1071, 20, 72), + (574, 20, 3), + (300, 20, 115), + (571, 20, 3), + (90, 20, 91), + (572, 20, 3), + (298, 20, 115), + (1075, 20, 48), + (185, 20, 133), + (1076, 20, 48), + (88, 20, 91), + (734, 20, 111), + (735, 20, 111), + (40, 20, 128), + (329, 20, 101), + (152, 20, 124), + (458, 20, 56), + (935, 20, 1), + (417, 20, 137), + (1033, 20, 116), + (153, 20, 124), + (461, 20, 56), + (299, 20, 115), + (1055, 20, 119), + (205, 20, 54), + (460, 20, 56), + (414, 20, 137), + (462, 20, 56), + (331, 20, 101), + (1032, 20, 116), + (459, 20, 56), + (1056, 20, 119), + (330, 20, 101), + (413, 20, 137), + (186, 20, 133), + (573, 20, 3), + (733, 20, 111), + (39, 20, 128), + (301, 20, 115), + (570, 20, 3), + (53, 20, 52), + (938, 20, 1), + (936, 20, 1), + (415, 20, 137), + (1031, 20, 116), + (416, 20, 137), + (206, 20, 54), + (939, 20, 1), + (937, 20, 1), + (506, 20, 106), + (273, 20, 96), + (178, 20, 50), + (89, 20, 91), + (670, 20, 13), + (27, 20, 35), + (758, 20, 45), + (119, 20, 51), + (1084, 20, 81), + (854, 20, 16), + (120, 20, 51), + (26, 20, 35), + (700, 20, 56), + (291, 20, 39), + (1044, 20, 47), + (667, 20, 13), + (24, 20, 35), + (768, 20, 61), + (702, 20, 56), + (853, 20, 16), + (1046, 20, 47), + (797, 20, 66), + (1105, 20, 33), + (2, 20, 86), + (668, 20, 13), + (267, 20, 49), + (669, 20, 13), + (1106, 20, 33), + (478, 20, 11), + (796, 20, 66), + (701, 20, 56), + (1107, 20, 33), + (1045, 20, 47), + (1085, 20, 81), + (351, 20, 41), + (637, 20, 41), + (635, 20, 41), + (59, 20, 36), + (826, 20, 71), + (523, 20, 43), + (292, 20, 39), + (535, 20, 31), + (904, 20, 76), + (636, 20, 41), + (537, 20, 31), + (536, 20, 31), + (759, 20, 45), + (111, 20, 37), + (760, 20, 45), + (524, 20, 43), + (534, 20, 31), + (1001, 20, 46), + (757, 20, 45), + (112, 20, 37), + (217, 20, 26), + (1086, 20, 81), + (883, 20, 21), + (827, 20, 71), + (1000, 20, 46), + (25, 20, 35), + (825, 20, 71), + (852, 20, 16), + (525, 20, 43), + (1104, 20, 33), + (320, 20, 46), + (321, 20, 46), + (1, 20, 86), + (769, 20, 61), + (385, 20, 9), + (770, 20, 61), + (357, 20, 6), + (275, 21, 58), + (906, 21, 46), + (907, 21, 46), + (583, 21, 3), + (738, 21, 67), + (509, 21, 64), + (580, 21, 3), + (399, 21, 4), + (946, 21, 1), + (948, 21, 1), + (336, 21, 61), + (96, 21, 55), + (834, 21, 43), + (97, 21, 55), + (801, 21, 40), + (1088, 21, 49), + (945, 21, 1), + (606, 21, 2), + (9, 21, 52), + (8, 21, 52), + (1090, 21, 49), + (7, 21, 52), + (890, 21, 13), + (859, 21, 10), + (888, 21, 13), + (540, 21, 19), + (858, 21, 10), + (62, 21, 22), + (672, 21, 9), + (752, 21, 45), + (61, 21, 22), + (641, 21, 25), + (971, 21, 1), + (122, 21, 31), + (835, 21, 43), + (481, 21, 7), + (706, 21, 34), + (360, 21, 4), + (707, 21, 34), + (359, 21, 4), + (800, 21, 40), + (974, 21, 1), + (887, 21, 13), + (833, 21, 43), + (123, 21, 31), + (581, 21, 3), + (1006, 21, 28), + (1100, 21, 33), + (70, 21, 15), + (1101, 21, 33), + (653, 21, 17), + (652, 21, 17), + (520, 21, 43), + (137, 21, 21), + (261, 21, 49), + (785, 21, 25), + (449, 21, 56), + (174, 21, 50), + (518, 21, 43), + (609, 21, 2), + (307, 21, 69), + (348, 21, 41), + (812, 21, 27), + (317, 21, 46), + (49, 21, 52), + (842, 21, 29), + (20, 21, 35), + (922, 21, 31), + (1071, 21, 48), + (1061, 21, 72), + (874, 21, 7), + (1062, 21, 72), + (157, 21, 75), + (160, 21, 75), + (452, 21, 56), + (158, 21, 75), + (42, 21, 77), + (423, 21, 83), + (554, 21, 13), + (73, 21, 15), + (426, 21, 83), + (424, 21, 83), + (236, 21, 11), + (894, 21, 9), + (510, 21, 106), + (309, 21, 115), + (482, 21, 11), + (709, 21, 56), + (1093, 21, 81), + (338, 21, 101), + (740, 21, 111), + (803, 21, 66), + (64, 21, 36), + (643, 21, 41), + (1008, 21, 46), + (278, 21, 96), + (428, 21, 137), + (673, 21, 13), + (1092, 21, 81), + (429, 21, 137), + (861, 21, 16), + (161, 21, 124), + (190, 21, 133), + (950, 21, 1), + (308, 21, 115), + (361, 21, 6), + (223, 21, 26), + (951, 21, 1), + (773, 21, 61), + (802, 21, 66), + (10, 21, 86), + (362, 21, 6), + (585, 21, 3), + (224, 21, 26), + (249, 21, 121), + (339, 21, 101), + (586, 21, 3), + (277, 21, 96), + (685, 89, 10), + (166, 89, 154), + (686, 89, 10), + (237, 89, 20), + (897, 89, 16), + (805, 89, 82), + (836, 89, 89), + (898, 89, 16), + (168, 89, 154), + (684, 89, 10), + (896, 89, 16), + (875, 89, 12), + (435, 89, 171), + (714, 89, 70), + (1095, 89, 101), + (195, 89, 166), + (44, 89, 160), + (129, 89, 63), + (138, 89, 39), + (1021, 89, 35), + (165, 89, 154), + (1022, 89, 35), + (127, 89, 63), + (74, 89, 27), + (654, 89, 31), + (777, 89, 76), + (75, 89, 27), + (436, 89, 171), + (558, 89, 24), + (557, 89, 24), + (713, 89, 70), + (712, 89, 70), + (238, 89, 20), + (776, 89, 76), + (655, 89, 31), + (513, 89, 132), + (911, 89, 95), + (977, 89, 1), + (512, 89, 132), + (978, 89, 1), + (975, 89, 1), + (167, 89, 154), + (1065, 89, 149), + (434, 89, 171), + (281, 89, 120), + (140, 89, 39), + (437, 89, 171), + (744, 89, 139), + (1066, 89, 149), + (310, 89, 143), + (311, 89, 143), + (743, 89, 139), + (254, 89, 151), + (1036, 89, 145), + (255, 89, 151), + (1067, 89, 149), + (14, 89, 107), + (491, 89, 9), + (492, 89, 9), + (400, 89, 7), + (401, 89, 7), + (374, 89, 5), + (912, 89, 95), + (375, 89, 5), + (373, 89, 5), + (340, 89, 126), + (15, 89, 107), + (683, 89, 10), + (614, 89, 3), + (612, 89, 3), + (102, 89, 113), + (613, 89, 3), + (103, 89, 113), + (610, 89, 3), + (976, 89, 1), + (979, 89, 1), + (611, 89, 3), + (1073, 89, 90), + (264, 89, 91), + (203, 89, 100), + (675, 89, 17), + (52, 89, 96), + (176, 89, 93), + (177, 89, 93), + (867, 89, 20), + (453, 89, 103), + (1074, 89, 90), + (456, 89, 103), + (318, 89, 86), + (319, 89, 86), + (593, 89, 4), + (868, 89, 20), + (366, 89, 7), + (266, 89, 91), + (865, 89, 20), + (893, 89, 26), + (1072, 89, 90), + (289, 89, 72), + (956, 89, 2), + (592, 89, 4), + (959, 89, 2), + (957, 89, 2), + (594, 89, 4), + (591, 89, 4), + (958, 89, 2), + (204, 89, 100), + (365, 89, 7), + (263, 89, 91), + (391, 89, 10), + (390, 89, 10), + (392, 89, 10), + (389, 89, 10), + (454, 89, 103), + (457, 89, 103), + (455, 89, 103), + (674, 89, 17), + (141, 89, 39), + (813, 89, 50), + (21, 89, 65), + (22, 89, 65), + (1103, 89, 61), + (265, 89, 91), + (923, 89, 57), + (866, 89, 20), + (924, 89, 57), + (647, 89, 51), + (815, 89, 50), + (1102, 89, 61), + (1013, 89, 57), + (1012, 89, 57), + (789, 89, 46), + (787, 89, 46), + (128, 89, 63), + (788, 89, 46), + (786, 89, 46), + (139, 89, 39), + (814, 89, 50), + (755, 89, 84), + (547, 89, 39), + (548, 89, 39), + (522, 89, 80), + (1014, 89, 57), + (754, 89, 84), + (23, 89, 65), + (66, 89, 45), + (756, 89, 84), + (521, 89, 80), + (1043, 89, 87), + (1042, 89, 87), + (350, 89, 76), + (227, 89, 32), + (290, 89, 72), + (110, 89, 69), + (109, 89, 69), + (108, 89, 69), + (349, 89, 76), + (909, 89, 39), + (64, 89, 19), + (862, 89, 9), + (544, 89, 16), + (280, 89, 49), + (645, 89, 21), + (586, 89, 2), + (251, 89, 61), + (65, 89, 19), + (100, 89, 46), + (43, 89, 65), + (545, 89, 16), + (673, 89, 7), + (125, 89, 26), + (1009, 89, 24), + (430, 89, 69), + (589, 89, 2), + (892, 89, 11), + (952, 89, 1), + (588, 89, 2), + (11, 89, 44), + (279, 89, 49), + (511, 89, 54), + (863, 89, 9), + (951, 89, 1), + (587, 89, 2), + (432, 89, 69), + (250, 89, 61), + (431, 89, 69), + (252, 89, 61), + (13, 89, 44), + (1093, 89, 41), + (644, 89, 21), + (543, 89, 16), + (953, 89, 1), + (12, 89, 44), + (954, 89, 1), + (429, 89, 69), + (363, 89, 4), + (711, 89, 29), + (193, 89, 67), + (803, 89, 34), + (388, 89, 5), + (710, 89, 29), + (278, 89, 49), + (339, 89, 51), + (1010, 89, 24), + (225, 89, 14), + (164, 89, 62), + (192, 89, 67), + (163, 89, 62), + (773, 89, 31), + (309, 89, 58), + (804, 89, 34), + (1094, 89, 41), + (162, 89, 62), + (741, 89, 56), + (1064, 89, 60), + (1063, 89, 60), + (191, 89, 67), + (775, 89, 31), + (709, 89, 29), + (774, 89, 31), + (224, 89, 14), + (740, 89, 56), + (161, 89, 62), + (362, 89, 4), + (86, 22, 15), + (150, 22, 21), + (476, 22, 56), + (568, 22, 13), + (533, 22, 43), + (633, 22, 2), + (383, 22, 3), + (766, 22, 45), + (272, 22, 49), + (998, 22, 1), + (1054, 22, 47), + (698, 22, 6), + (37, 22, 35), + (823, 22, 27), + (216, 22, 54), + (118, 22, 37), + (731, 22, 23), + (90, 22, 55), + (217, 22, 16), + (301, 22, 69), + (387, 22, 9), + (94, 22, 91), + (574, 22, 3), + (637, 22, 25), + (155, 22, 124), + (1003, 22, 46), + (6, 22, 86), + (39, 22, 77), + (417, 22, 83), + (1059, 22, 119), + (1056, 22, 72), + (1085, 22, 49), + (854, 22, 10), + (357, 22, 4), + (640, 22, 41), + (578, 22, 3), + (797, 22, 40), + (40, 22, 77), + (1001, 22, 28), + (1086, 22, 49), + (507, 22, 106), + (669, 22, 9), + (536, 22, 19), + (770, 22, 37), + (421, 22, 137), + (273, 22, 58), + (702, 22, 34), + (737, 22, 111), + (670, 22, 9), + (831, 22, 71), + (938, 22, 1), + (885, 22, 21), + (334, 22, 101), + (1033, 22, 70), + (827, 22, 43), + (856, 22, 16), + (506, 22, 64), + (186, 22, 80), + (478, 22, 7), + (939, 22, 1), + (537, 22, 19), + (573, 22, 3), + (416, 22, 83), + (943, 22, 1), + (735, 22, 67), + (383, 24, 3), + (933, 24, 31), + (932, 24, 31), + (631, 24, 2), + (382, 24, 3), + (411, 24, 4), + (1112, 24, 33), + (766, 24, 45), + (633, 24, 2), + (412, 24, 4), + (630, 24, 2), + (990, 24, 1), + (996, 24, 1), + (632, 24, 2), + (35, 24, 35), + (502, 24, 11), + (995, 24, 1), + (409, 24, 9), + (408, 24, 9), + (37, 24, 35), + (380, 24, 6), + (993, 24, 1), + (627, 24, 3), + (992, 24, 1), + (628, 24, 3), + (998, 24, 1), + (625, 24, 3), + (991, 24, 1), + (997, 24, 1), + (931, 24, 31), + (626, 24, 3), + (793, 24, 25), + (697, 24, 6), + (86, 24, 15), + (666, 24, 17), + (297, 24, 39), + (1029, 24, 19), + (356, 24, 41), + (794, 24, 25), + (568, 24, 13), + (117, 24, 37), + (150, 24, 21), + (296, 24, 39), + (730, 24, 23), + (731, 24, 23), + (729, 24, 23), + (1030, 24, 19), + (903, 24, 9), + (533, 24, 43), + (851, 24, 29), + (698, 24, 6), + (880, 24, 7), + (882, 24, 7), + (567, 24, 13), + (881, 24, 7), + (118, 24, 37), + (242, 24, 11), + (244, 24, 11), + (532, 24, 43), + (243, 24, 11), + (566, 24, 13), + (504, 24, 11), + (823, 24, 27), + (295, 24, 96), + (214, 24, 54), + (530, 24, 106), + (529, 24, 106), + (353, 24, 101), + (474, 24, 56), + (475, 24, 56), + (354, 24, 101), + (763, 24, 111), + (352, 24, 101), + (1051, 24, 116), + (113, 24, 91), + (114, 24, 91), + (115, 24, 91), + (31, 24, 86), + (473, 24, 56), + (32, 24, 86), + (215, 24, 54), + (476, 24, 56), + (182, 24, 124), + (36, 24, 35), + (469, 24, 137), + (470, 24, 137), + (471, 24, 137), + (468, 24, 137), + (211, 24, 133), + (212, 24, 133), + (764, 24, 111), + (55, 24, 128), + (1110, 24, 81), + (183, 24, 124), + (181, 24, 124), + (1080, 24, 119), + (325, 24, 115), + (326, 24, 115), + (324, 24, 115), + (269, 24, 121), + (210, 24, 133), + (84, 24, 36), + (328, 24, 46), + (271, 24, 49), + (663, 24, 41), + (664, 24, 41), + (665, 24, 41), + (272, 24, 49), + (662, 24, 41), + (33, 24, 86), + (1053, 24, 47), + (1026, 24, 46), + (1054, 24, 47), + (241, 24, 26), + (879, 24, 16), + (694, 24, 13), + (695, 24, 13), + (765, 24, 45), + (693, 24, 13), + (83, 24, 36), + (821, 24, 66), + (503, 24, 11), + (1111, 24, 81), + (930, 24, 76), + (929, 24, 76), + (849, 24, 71), + (57, 24, 52), + (56, 24, 52), + (1028, 24, 46), + (184, 24, 50), + (1027, 24, 46), + (1082, 24, 48), + (728, 24, 56), + (727, 24, 56), + (1083, 24, 48), + (148, 24, 51), + (149, 24, 51), + (1081, 24, 48), + (216, 24, 54), + (850, 24, 71), + (643, 24, 25), + (308, 24, 69), + (861, 24, 10), + (774, 24, 37), + (586, 24, 3), + (740, 24, 67), + (804, 24, 40), + (741, 24, 67), + (278, 24, 58), + (909, 24, 46), + (709, 24, 34), + (892, 24, 13), + (710, 24, 34), + (673, 24, 9), + (277, 24, 58), + (587, 24, 3), + (1094, 24, 49), + (644, 24, 25), + (279, 24, 58), + (803, 24, 40), + (588, 24, 3), + (773, 24, 37), + (280, 24, 58), + (711, 24, 34), + (802, 24, 40), + (862, 24, 10), + (482, 24, 7), + (361, 24, 4), + (1063, 24, 72), + (191, 24, 80), + (65, 24, 22), + (11, 24, 52), + (1009, 24, 28), + (362, 24, 4), + (192, 24, 80), + (1008, 24, 28), + (64, 24, 22), + (338, 24, 61), + (12, 24, 52), + (161, 24, 75), + (430, 24, 83), + (309, 24, 69), + (953, 24, 1), + (1010, 24, 28), + (363, 24, 4), + (431, 24, 83), + (510, 24, 64), + (1092, 24, 49), + (1064, 24, 72), + (190, 24, 80), + (585, 24, 3), + (1093, 24, 49), + (429, 24, 83), + (162, 24, 75), + (544, 24, 19), + (339, 24, 61), + (249, 24, 73), + (950, 24, 1), + (10, 24, 52), + (428, 24, 83), + (163, 24, 75), + (251, 24, 73), + (951, 24, 1), + (223, 24, 16), + (250, 24, 73), + (543, 24, 19), + (952, 24, 1), + (388, 24, 6), + (224, 24, 16), + (211, 25, 133), + (476, 25, 83), + (1083, 25, 72), + (697, 25, 9), + (1110, 25, 81), + (296, 25, 58), + (212, 25, 133), + (83, 25, 36), + (991, 25, 1), + (210, 25, 133), + (931, 25, 46), + (698, 25, 9), + (1111, 25, 81), + (468, 25, 137), + (411, 25, 6), + (933, 25, 46), + (503, 25, 11), + (412, 25, 6), + (1027, 25, 46), + (181, 25, 124), + (215, 25, 80), + (471, 25, 137), + (628, 25, 3), + (881, 25, 10), + (695, 25, 13), + (1082, 25, 72), + (183, 25, 124), + (882, 25, 10), + (32, 25, 86), + (880, 25, 10), + (851, 25, 43), + (356, 25, 61), + (995, 25, 1), + (409, 25, 9), + (990, 25, 1), + (182, 25, 124), + (625, 25, 3), + (55, 25, 128), + (693, 25, 13), + (297, 25, 58), + (33, 25, 86), + (823, 25, 40), + (36, 25, 52), + (117, 25, 55), + (37, 25, 52), + (633, 25, 3), + (1053, 25, 70), + (1081, 25, 72), + (665, 25, 41), + (214, 25, 80), + (118, 25, 55), + (850, 25, 71), + (630, 25, 3), + (632, 25, 3), + (502, 25, 11), + (727, 25, 56), + (272, 25, 73), + (148, 25, 51), + (996, 25, 1), + (993, 25, 1), + (149, 25, 51), + (997, 25, 1), + (728, 25, 56), + (469, 25, 137), + (473, 25, 83), + (992, 25, 1), + (382, 25, 4), + (930, 25, 76), + (470, 25, 137), + (932, 25, 46), + (383, 25, 4), + (1026, 25, 46), + (821, 25, 66), + (929, 25, 76), + (1028, 25, 46), + (631, 25, 3), + (328, 25, 69), + (1112, 25, 49), + (998, 25, 1), + (849, 25, 71), + (662, 25, 41), + (35, 25, 52), + (271, 25, 73), + (504, 25, 11), + (57, 25, 77), + (566, 25, 19), + (1054, 25, 70), + (729, 25, 34), + (567, 25, 19), + (763, 25, 111), + (694, 25, 13), + (664, 25, 41), + (408, 25, 9), + (764, 25, 111), + (113, 25, 91), + (731, 25, 34), + (568, 25, 19), + (626, 25, 3), + (269, 25, 121), + (114, 25, 91), + (56, 25, 77), + (216, 25, 80), + (150, 25, 31), + (1030, 25, 28), + (353, 25, 101), + (241, 25, 26), + (529, 25, 106), + (1029, 25, 28), + (354, 25, 101), + (295, 25, 96), + (666, 25, 25), + (1051, 25, 116), + (765, 25, 67), + (530, 25, 106), + (352, 25, 101), + (475, 25, 83), + (380, 25, 6), + (86, 25, 22), + (766, 25, 67), + (879, 25, 16), + (31, 25, 86), + (793, 25, 37), + (242, 25, 16), + (903, 25, 13), + (532, 25, 64), + (325, 25, 115), + (115, 25, 91), + (1080, 25, 119), + (663, 25, 41), + (730, 25, 34), + (84, 25, 36), + (794, 25, 37), + (324, 25, 115), + (243, 25, 16), + (244, 25, 16), + (627, 25, 3), + (533, 25, 64), + (326, 25, 115), + (184, 25, 75), + (474, 25, 83), + (1010, 25, 19), + (711, 25, 23), + (278, 25, 39), + (249, 25, 49), + (163, 25, 50), + (804, 25, 27), + (428, 25, 56), + (388, 25, 4), + (802, 25, 27), + (224, 25, 11), + (774, 25, 25), + (338, 25, 41), + (339, 25, 41), + (279, 25, 39), + (223, 25, 11), + (773, 25, 25), + (1094, 25, 33), + (741, 25, 45), + (1064, 25, 48), + (190, 25, 54), + (192, 25, 54), + (362, 25, 3), + (1063, 25, 48), + (710, 25, 23), + (803, 25, 27), + (363, 25, 3), + (740, 25, 45), + (191, 25, 54), + (361, 25, 3), + (892, 25, 9), + (587, 25, 2), + (431, 25, 56), + (277, 25, 39), + (251, 25, 49), + (950, 25, 1), + (429, 25, 56), + (1092, 25, 33), + (12, 25, 35), + (644, 25, 17), + (510, 25, 43), + (64, 25, 15), + (11, 25, 35), + (952, 25, 1), + (588, 25, 2), + (308, 25, 46), + (1093, 25, 33), + (10, 25, 35), + (543, 25, 13), + (280, 25, 39), + (482, 25, 5), + (544, 25, 13), + (585, 25, 2), + (162, 25, 50), + (861, 25, 7), + (161, 25, 50), + (709, 25, 23), + (951, 25, 1), + (1009, 25, 19), + (953, 25, 1), + (909, 25, 31), + (643, 25, 17), + (673, 25, 6), + (309, 25, 46), + (430, 25, 56), + (1008, 25, 19), + (862, 25, 7), + (65, 25, 15), + (586, 25, 2), + (250, 25, 49), + (201, 26, 133), + (925, 26, 31), + (288, 26, 96), + (239, 26, 11), + (377, 26, 3), + (841, 26, 71), + (900, 26, 9), + (261, 26, 121), + (816, 26, 27), + (493, 26, 5), + (143, 26, 21), + (872, 26, 16), + (69, 26, 36), + (894, 26, 21), + (1040, 26, 116), + (920, 26, 76), + (403, 26, 4), + (970, 26, 1), + (752, 26, 111), + (174, 26, 124), + (449, 26, 137), + (397, 26, 9), + (606, 26, 3), + (18, 26, 86), + (1100, 26, 81), + (1020, 26, 46), + (518, 26, 106), + (723, 26, 23), + (971, 26, 1), + (981, 26, 1), + (554, 26, 31), + (616, 26, 2), + (136, 26, 51), + (448, 26, 137), + (490, 26, 11), + (652, 26, 41), + (234, 26, 26), + (605, 26, 3), + (70, 26, 36), + (49, 26, 128), + (842, 26, 71), + (812, 26, 66), + (751, 26, 111), + (701, 26, 34), + (1056, 26, 72), + (1031, 26, 70), + (770, 26, 37), + (111, 26, 37), + (1033, 26, 70), + (299, 26, 69), + (735, 26, 67), + (636, 26, 25), + (25, 26, 35), + (152, 26, 75), + (1105, 26, 33), + (301, 26, 69), + (320, 26, 46), + (506, 26, 64), + (1086, 26, 49), + (459, 26, 56), + (414, 26, 83), + (758, 26, 45), + (936, 26, 1), + (537, 26, 19), + (939, 26, 1), + (637, 26, 25), + (535, 26, 19), + (854, 26, 10), + (574, 26, 3), + (853, 26, 10), + (1, 26, 52), + (417, 26, 83), + (217, 26, 16), + (273, 26, 58), + (330, 26, 61), + (571, 26, 3), + (667, 26, 9), + (351, 26, 41), + (1084, 26, 49), + (40, 26, 77), + (826, 26, 43), + (670, 26, 9), + (990, 27, 3), + (628, 27, 9), + (381, 27, 16), + (408, 27, 24), + (629, 27, 9), + (533, 27, 211), + (1054, 27, 231), + (994, 27, 3), + (1028, 27, 136), + (476, 27, 274), + (665, 27, 121), + (998, 27, 2), + (118, 27, 181), + (766, 27, 221), + (993, 27, 3), + (380, 27, 16), + (767, 27, 221), + (625, 27, 9), + (477, 27, 274), + (327, 27, 342), + (270, 27, 361), + (732, 27, 111), + (216, 27, 265), + (115, 27, 271), + (245, 27, 51), + (324, 27, 342), + (699, 27, 26), + (326, 27, 342), + (1052, 27, 346), + (1080, 27, 356), + (695, 27, 39), + (34, 27, 256), + (384, 27, 11), + (795, 27, 121), + (183, 27, 369), + (696, 27, 39), + (151, 27, 101), + (352, 27, 301), + (87, 27, 71), + (529, 27, 316), + (150, 27, 101), + (531, 27, 316), + (295, 27, 286), + (116, 27, 271), + (58, 27, 256), + (731, 27, 111), + (633, 27, 6), + (565, 27, 91), + (764, 27, 331), + (569, 27, 61), + (1051, 27, 346), + (568, 27, 61), + (85, 27, 106), + (86, 27, 71), + (662, 27, 121), + (693, 27, 39), + (934, 27, 151), + (181, 27, 369), + (929, 27, 226), + (472, 27, 410), + (634, 27, 6), + (355, 27, 301), + (822, 27, 196), + (930, 27, 226), + (272, 27, 241), + (728, 27, 166), + (727, 27, 166), + (999, 27, 2), + (38, 27, 171), + (149, 27, 151), + (410, 27, 24), + (502, 27, 31), + (213, 27, 396), + (55, 27, 383), + (33, 27, 256), + (383, 27, 11), + (471, 27, 410), + (210, 27, 396), + (698, 27, 26), + (505, 27, 21), + (824, 27, 131), + (1111, 27, 241), + (468, 27, 410), + (37, 27, 171), + (823, 27, 131), + (156, 27, 615), + (944, 27, 3), + (1002, 27, 226), + (1003, 27, 226), + (578, 27, 13), + (1060, 27, 592), + (1059, 27, 592), + (638, 27, 201), + (575, 27, 13), + (155, 27, 615), + (302, 27, 569), + (886, 27, 101), + (218, 27, 126), + (885, 27, 101), + (422, 27, 683), + (220, 27, 126), + (421, 27, 683), + (418, 27, 683), + (857, 27, 76), + (187, 27, 660), + (940, 27, 3), + (1057, 27, 592), + (943, 27, 3), + (60, 27, 176), + (189, 27, 660), + (640, 27, 201), + (539, 27, 151), + (94, 27, 451), + (334, 27, 501), + (828, 27, 351), + (387, 27, 39), + (1004, 27, 226), + (274, 27, 476), + (831, 27, 351), + (386, 27, 39), + (479, 27, 51), + (332, 27, 501), + (832, 27, 351), + (91, 27, 451), + (856, 27, 76), + (1087, 27, 401), + (6, 27, 426), + (3, 27, 426), + (95, 27, 451), + (771, 27, 301), + (305, 27, 569), + (507, 27, 526), + (705, 27, 276), + (579, 27, 13), + (798, 27, 326), + (247, 27, 601), + (737, 27, 551), + (443, 95, 11), + (497, 95, 2), + (679, 95, 2), + (369, 95, 1), + (486, 95, 2), + (198, 95, 11), + (689, 95, 2), + (171, 95, 10), + (526, 95, 6), + (47, 95, 11), + (378, 95, 1), + (965, 95, 1), + (322, 95, 7), + (179, 95, 7), + (847, 95, 5), + (985, 95, 1), + (133, 95, 5), + (819, 95, 4), + (147, 95, 4), + (463, 95, 8), + (781, 95, 6), + (268, 95, 7), + (620, 95, 1), + (551, 95, 3), + (78, 95, 3), + (516, 95, 9), + (926, 95, 5), + (1038, 95, 10), + (600, 95, 1), + (1047, 95, 7), + (877, 95, 2), + (285, 95, 8), + (870, 95, 2), + (917, 95, 7), + (32, 28, 52), + (326, 28, 69), + (84, 28, 22), + (31, 28, 52), + (216, 28, 54), + (325, 28, 69), + (324, 28, 69), + (1080, 28, 72), + (181, 28, 75), + (115, 28, 55), + (269, 28, 73), + (114, 28, 55), + (1051, 28, 70), + (183, 28, 75), + (763, 28, 67), + (764, 28, 67), + (241, 28, 16), + (295, 28, 58), + (530, 28, 64), + (352, 28, 61), + (529, 28, 64), + (354, 28, 61), + (353, 28, 61), + (113, 28, 55), + (1027, 28, 28), + (212, 28, 80), + (662, 28, 25), + (821, 28, 40), + (473, 28, 56), + (727, 28, 34), + (148, 28, 31), + (849, 28, 43), + (1026, 28, 28), + (469, 28, 83), + (1028, 28, 28), + (474, 28, 56), + (663, 28, 25), + (476, 28, 56), + (664, 28, 25), + (475, 28, 56), + (149, 28, 31), + (211, 28, 80), + (33, 28, 52), + (55, 28, 77), + (1110, 28, 49), + (210, 28, 80), + (728, 28, 34), + (1111, 28, 49), + (850, 28, 43), + (215, 28, 54), + (182, 28, 75), + (468, 28, 83), + (930, 28, 46), + (83, 28, 22), + (471, 28, 83), + (470, 28, 83), + (929, 28, 46), + (665, 28, 25), + (729, 28, 23), + (356, 28, 41), + (36, 28, 35), + (730, 28, 23), + (996, 28, 1), + (243, 28, 11), + (566, 28, 13), + (997, 28, 1), + (632, 28, 2), + (990, 28, 1), + (568, 28, 13), + (242, 28, 11), + (993, 28, 1), + (630, 28, 2), + (118, 28, 37), + (995, 28, 1), + (992, 28, 1), + (567, 28, 13), + (117, 28, 37), + (86, 28, 15), + (991, 28, 1), + (296, 28, 39), + (297, 28, 39), + (625, 28, 3), + (998, 28, 1), + (823, 28, 27), + (851, 28, 29), + (697, 28, 6), + (411, 28, 4), + (931, 28, 31), + (933, 28, 31), + (412, 28, 4), + (382, 28, 3), + (383, 28, 3), + (932, 28, 31), + (698, 28, 6), + (244, 28, 11), + (1112, 28, 33), + (731, 28, 23), + (214, 28, 54), + (880, 28, 7), + (35, 28, 35), + (882, 28, 7), + (881, 28, 7), + (794, 28, 25), + (633, 28, 2), + (903, 28, 9), + (37, 28, 35), + (793, 28, 25), + (631, 28, 2), + (272, 28, 49), + (694, 28, 9), + (57, 28, 52), + (1054, 28, 47), + (1053, 28, 47), + (1081, 28, 48), + (56, 28, 52), + (666, 28, 17), + (184, 28, 50), + (408, 28, 6), + (1082, 28, 48), + (409, 28, 6), + (502, 28, 7), + (271, 28, 49), + (328, 28, 46), + (693, 28, 9), + (628, 28, 3), + (1083, 28, 48), + (504, 28, 7), + (503, 28, 7), + (695, 28, 9), + (532, 28, 43), + (626, 28, 3), + (879, 28, 10), + (533, 28, 43), + (627, 28, 3), + (150, 28, 21), + (766, 28, 45), + (1029, 28, 19), + (1030, 28, 19), + (765, 28, 45), + (380, 28, 4), + (339, 28, 101), + (429, 28, 137), + (1094, 28, 81), + (1010, 28, 46), + (362, 28, 6), + (280, 28, 96), + (279, 28, 96), + (162, 28, 124), + (308, 28, 115), + (224, 28, 26), + (161, 28, 124), + (361, 28, 6), + (430, 28, 137), + (1009, 28, 46), + (223, 28, 26), + (338, 28, 101), + (250, 28, 121), + (251, 28, 121), + (363, 28, 6), + (192, 28, 133), + (1063, 28, 119), + (1093, 28, 81), + (278, 28, 96), + (1092, 28, 81), + (163, 28, 124), + (1064, 28, 119), + (388, 28, 9), + (249, 28, 121), + (190, 28, 133), + (428, 28, 137), + (277, 28, 96), + (309, 28, 115), + (191, 28, 133), + (862, 28, 16), + (585, 28, 3), + (950, 28, 1), + (586, 28, 3), + (587, 28, 3), + (431, 28, 137), + (588, 28, 3), + (892, 28, 21), + (643, 28, 41), + (644, 28, 41), + (544, 28, 31), + (709, 28, 56), + (909, 28, 76), + (710, 28, 56), + (861, 28, 16), + (711, 28, 56), + (740, 28, 111), + (804, 28, 66), + (741, 28, 111), + (773, 28, 61), + (803, 28, 66), + (802, 28, 66), + (774, 28, 61), + (673, 28, 13), + (1008, 28, 46), + (64, 28, 36), + (951, 28, 1), + (510, 28, 106), + (953, 28, 1), + (12, 28, 86), + (11, 28, 86), + (543, 28, 31), + (482, 28, 11), + (10, 28, 86), + (65, 28, 36), + (952, 28, 1), + (801, 92, 2), + (55, 92, 2), + (879, 92, 1), + (693, 92, 1), + (248, 92, 3), + (307, 92, 3), + (821, 92, 2), + (708, 92, 2), + (1090, 92, 3), + (1088, 92, 3), + (503, 92, 1), + (834, 92, 2), + (1091, 92, 3), + (707, 92, 2), + (181, 92, 2), + (124, 92, 2), + (948, 92, 1), + (468, 92, 2), + (99, 92, 3), + (907, 92, 3), + (97, 92, 3), + (908, 92, 3), + (275, 92, 3), + (929, 92, 2), + (8, 92, 3), + (469, 92, 2), + (158, 92, 3), + (835, 92, 2), + (211, 92, 2), + (9, 92, 3), + (509, 92, 3), + (353, 92, 2), + (739, 92, 3), + (849, 92, 2), + (694, 92, 1), + (738, 92, 3), + (337, 92, 3), + (336, 92, 3), + (529, 92, 2), + (888, 92, 1), + (891, 92, 1), + (1051, 92, 2), + (890, 92, 1), + (1026, 92, 1), + (990, 92, 1), + (408, 92, 1), + (763, 92, 2), + (859, 92, 1), + (113, 92, 2), + (83, 92, 1), + (860, 92, 1), + (424, 92, 4), + (672, 92, 1), + (626, 92, 1), + (360, 92, 1), + (584, 92, 1), + (295, 92, 2), + (991, 92, 1), + (581, 92, 1), + (625, 92, 1), + (663, 92, 1), + (530, 92, 2), + (583, 92, 1), + (61, 92, 2), + (1062, 92, 3), + (123, 92, 2), + (160, 92, 3), + (325, 92, 2), + (1007, 92, 2), + (946, 92, 1), + (31, 92, 2), + (1006, 92, 2), + (502, 92, 1), + (42, 92, 4), + (210, 92, 2), + (324, 92, 2), + (63, 92, 2), + (426, 92, 4), + (62, 92, 2), + (662, 92, 1), + (427, 92, 4), + (352, 92, 2), + (542, 92, 2), + (222, 92, 1), + (949, 92, 1), + (727, 92, 1), + (430, 92, 3), + (1093, 92, 2), + (65, 92, 1), + (162, 92, 2), + (64, 92, 1), + (1009, 92, 2), + (279, 92, 2), + (161, 92, 2), + (773, 92, 2), + (804, 92, 2), + (429, 92, 3), + (803, 92, 2), + (741, 92, 2), + (278, 92, 2), + (740, 92, 2), + (11, 92, 2), + (363, 92, 1), + (1063, 92, 2), + (191, 92, 3), + (951, 92, 1), + (543, 92, 1), + (362, 92, 1), + (250, 92, 2), + (952, 92, 1), + (309, 92, 2), + (892, 92, 1), + (224, 92, 1), + (339, 92, 2), + (673, 92, 1), + (709, 92, 2), + (587, 92, 1), + (710, 92, 2), + (586, 92, 1), + (560, 29, 19), + (76, 29, 22), + (658, 29, 25), + (756, 29, 45), + (655, 29, 17), + (1022, 29, 19), + (788, 29, 25), + (495, 29, 7), + (815, 29, 27), + (924, 29, 31), + (404, 29, 6), + (238, 29, 11), + (109, 29, 37), + (521, 29, 43), + (1043, 29, 47), + (145, 29, 31), + (265, 29, 49), + (618, 29, 3), + (319, 29, 46), + (456, 29, 56), + (983, 29, 1), + (140, 29, 21), + (22, 29, 35), + (901, 29, 13), + (978, 29, 1), + (613, 29, 2), + (845, 29, 43), + (745, 29, 111), + (461, 29, 83), + (595, 29, 3), + (676, 29, 13), + (312, 29, 115), + (778, 29, 61), + (1097, 29, 81), + (256, 29, 121), + (779, 29, 61), + (1037, 29, 116), + (292, 29, 58), + (485, 29, 11), + (1068, 29, 119), + (808, 29, 66), + (598, 29, 3), + (960, 29, 1), + (837, 29, 71), + (514, 29, 106), + (760, 29, 67), + (343, 29, 101), + (206, 29, 80), + (368, 29, 6), + (913, 29, 76), + (525, 29, 64), + (915, 29, 76), + (283, 29, 96), + (393, 29, 9), + (806, 29, 66), + (649, 29, 41), + (230, 29, 26), + (1075, 29, 72), + (1107, 29, 49), + (963, 29, 1), + (648, 29, 41), + (441, 29, 137), + (438, 29, 137), + (197, 29, 133), + (1015, 29, 46), + (321, 29, 69), + (715, 29, 56), + (169, 29, 124), + (170, 29, 124), + (998, 30, 3), + (151, 30, 251), + (505, 30, 51), + (86, 30, 176), + (729, 30, 276), + (983, 30, 2), + (296, 30, 476), + (77, 30, 71), + (87, 30, 176), + (984, 30, 2), + (615, 30, 6), + (698, 30, 63), + (731, 30, 276), + (569, 30, 151), + (559, 30, 61), + (995, 30, 3), + (272, 30, 601), + (216, 30, 660), + (214, 30, 660), + (58, 30, 637), + (56, 30, 637), + (473, 30, 683), + (697, 30, 63), + (150, 30, 251), + (980, 30, 2), + (1029, 30, 226), + (618, 30, 6), + (1054, 30, 576), + (767, 30, 551), + (766, 30, 551), + (477, 30, 683), + (533, 30, 526), + (118, 30, 451), + (532, 30, 526), + (476, 30, 683), + (560, 30, 61), + (793, 30, 301), + (1081, 30, 592), + (633, 30, 13), + (561, 30, 61), + (495, 30, 21), + (242, 30, 126), + (934, 30, 376), + (496, 30, 21), + (699, 30, 63), + (823, 30, 326), + (687, 30, 26), + (688, 30, 26), + (795, 30, 301), + (901, 30, 41), + (899, 30, 41), + (37, 30, 426), + (880, 30, 76), + (383, 30, 26), + (384, 30, 26), + (619, 30, 6), + (568, 30, 151), + (76, 30, 71), + (824, 30, 326), + (999, 30, 3), + (732, 30, 276), + (404, 30, 16), + (35, 30, 426), + (634, 30, 13), + (931, 30, 376), + (376, 30, 11), + (1112, 30, 401), + (402, 30, 16), + (630, 30, 13), + (245, 30, 126), + (566, 30, 151), + (38, 30, 426), + (146, 30, 101), + (845, 30, 141), + (658, 30, 81), + (818, 30, 131), + (724, 30, 111), + (722, 30, 111), + (656, 30, 81), + (846, 30, 141), + (1023, 30, 91), + (145, 30, 101), + (142, 30, 101), + (1076, 30, 237), + (676, 30, 39), + (485, 30, 31), + (838, 30, 211), + (550, 30, 91), + (1046, 30, 231), + (321, 30, 228), + (913, 30, 226), + (718, 30, 166), + (393, 30, 24), + (230, 30, 76), + (915, 30, 226), + (916, 30, 226), + (757, 30, 221), + (267, 30, 241), + (649, 30, 121), + (1044, 30, 231), + (1015, 30, 136), + (132, 30, 151), + (678, 30, 39), + (779, 30, 181), + (780, 30, 181), + (837, 30, 211), + (650, 30, 121), + (394, 30, 24), + (806, 30, 196), + (715, 30, 166), + (53, 30, 256), + (178, 30, 246), + (648, 30, 121), + (760, 30, 221), + (778, 30, 181), + (525, 30, 211), + (27, 30, 171), + (292, 30, 191), + (1037, 30, 346), + (963, 30, 3), + (256, 30, 361), + (598, 30, 9), + (442, 30, 410), + (16, 30, 256), + (312, 30, 342), + (112, 30, 181), + (599, 30, 9), + (1068, 30, 356), + (747, 30, 331), + (169, 30, 369), + (461, 30, 274), + (170, 30, 369), + (1107, 30, 161), + (24, 30, 171), + (441, 30, 410), + (964, 30, 3), + (197, 30, 396), + (462, 30, 274), + (438, 30, 410), + (595, 30, 9), + (808, 30, 196), + (368, 30, 16), + (1104, 30, 161), + (458, 30, 274), + (343, 30, 301), + (514, 30, 316), + (284, 30, 286), + (283, 30, 286), + (523, 30, 211), + (206, 30, 265), + (515, 30, 316), + (1075, 30, 237), + (960, 30, 3), + (745, 30, 331), + (1097, 30, 241), + (560, 96, 5), + (870, 96, 2), + (322, 96, 7), + (877, 96, 2), + (965, 96, 1), + (402, 96, 2), + (68, 96, 4), + (820, 96, 4), + (376, 96, 2), + (147, 96, 4), + (285, 96, 8), + (551, 96, 3), + (871, 96, 2), + (811, 96, 6), + (1038, 96, 10), + (618, 96, 1), + (528, 96, 6), + (968, 96, 1), + (847, 96, 5), + (985, 96, 1), + (845, 96, 10), + (620, 96, 1), + (1047, 96, 7), + (209, 96, 8), + (899, 96, 3), + (1078, 96, 7), + (78, 96, 3), + (81, 96, 3), + (918, 96, 7), + (792, 96, 4), + (651, 96, 4), + (345, 96, 9), + (901, 96, 3), + (687, 96, 3), + (516, 96, 9), + (54, 96, 7), + (404, 96, 2), + (232, 96, 3), + (463, 96, 8), + (917, 96, 7), + (323, 96, 7), + (563, 96, 3), + (495, 96, 2), + (145, 96, 7), + (466, 96, 8), + (552, 96, 3), + (76, 96, 5), + (615, 96, 1), + (819, 96, 4), + (988, 96, 1), + (526, 96, 6), + (781, 96, 6), + (268, 96, 7), + (106, 96, 8), + (980, 96, 1), + (603, 96, 1), + (134, 96, 5), + (133, 96, 5), + (926, 96, 5), + (486, 96, 2), + (660, 96, 3), + (500, 96, 2), + (171, 96, 10), + (658, 96, 6), + (656, 96, 6), + (1104, 96, 11), + (198, 96, 11), + (446, 96, 11), + (179, 96, 7), + (378, 96, 1), + (497, 96, 2), + (928, 96, 5), + (200, 96, 11), + (443, 96, 11), + (722, 96, 8), + (142, 96, 7), + (369, 96, 1), + (47, 96, 11), + (260, 96, 10), + (600, 96, 1), + (679, 96, 2), + (680, 96, 2), + (1098, 96, 7), + (983, 96, 1), + (689, 96, 2), + (692, 96, 2), + (559, 96, 5), + (623, 96, 1), + (1075, 96, 16), + (321, 96, 15), + (24, 96, 12), + (760, 96, 15), + (461, 96, 18), + (525, 96, 14), + (1107, 96, 11), + (523, 96, 14), + (458, 96, 18), + (757, 96, 15), + (292, 96, 13), + (206, 96, 17), + (53, 96, 17), + (1044, 96, 15), + (267, 96, 16), + (146, 31, 31), + (984, 31, 1), + (817, 31, 40), + (496, 31, 7), + (560, 31, 19), + (845, 31, 43), + (618, 31, 3), + (901, 31, 13), + (561, 31, 19), + (657, 31, 25), + (925, 31, 46), + (494, 31, 7), + (688, 31, 9), + (818, 31, 40), + (240, 31, 16), + (658, 31, 25), + (844, 31, 43), + (876, 31, 10), + (981, 31, 1), + (143, 31, 31), + (723, 31, 34), + (76, 31, 22), + (377, 31, 4), + (493, 31, 7), + (983, 31, 1), + (816, 31, 40), + (144, 31, 31), + (982, 31, 1), + (790, 31, 37), + (145, 31, 31), + (404, 31, 6), + (619, 31, 3), + (239, 31, 16), + (495, 31, 7), + (617, 31, 3), + (724, 31, 34), + (616, 31, 3), + (900, 31, 13), + (77, 31, 22), + (846, 31, 43), + (403, 31, 6), + (1023, 31, 28), + (178, 31, 75), + (1076, 31, 72), + (459, 31, 83), + (462, 31, 83), + (460, 31, 83), + (90, 31, 91), + (573, 31, 3), + (936, 31, 1), + (938, 31, 1), + (206, 31, 80), + (205, 31, 80), + (273, 31, 96), + (939, 31, 1), + (461, 31, 83), + (25, 31, 52), + (535, 31, 31), + (637, 31, 41), + (351, 31, 61), + (291, 31, 58), + (826, 31, 71), + (292, 31, 58), + (636, 31, 41), + (111, 31, 55), + (1001, 31, 46), + (758, 31, 67), + (112, 31, 55), + (536, 31, 31), + (27, 31, 52), + (26, 31, 52), + (702, 31, 56), + (797, 31, 66), + (1105, 31, 49), + (1106, 31, 49), + (701, 31, 56), + (1107, 31, 49), + (770, 31, 61), + (827, 31, 71), + (667, 31, 13), + (1075, 31, 72), + (571, 31, 3), + (320, 31, 69), + (357, 31, 6), + (1, 31, 86), + (321, 31, 69), + (478, 31, 11), + (669, 31, 13), + (670, 31, 13), + (525, 31, 64), + (1045, 31, 70), + (537, 31, 31), + (1084, 31, 81), + (854, 31, 16), + (759, 31, 67), + (853, 31, 16), + (760, 31, 67), + (1086, 31, 81), + (217, 31, 26), + (524, 31, 64), + (1085, 31, 81), + (574, 31, 3), + (1046, 31, 70), + (715, 31, 23), + (1056, 31, 119), + (484, 31, 5), + (514, 31, 43), + (1096, 31, 33), + (648, 31, 17), + (1016, 31, 19), + (506, 31, 106), + (417, 31, 137), + (169, 31, 50), + (257, 31, 49), + (1033, 31, 116), + (394, 31, 4), + (393, 31, 4), + (717, 31, 23), + (229, 31, 11), + (228, 31, 11), + (367, 31, 3), + (745, 31, 45), + (1068, 31, 48), + (256, 31, 49), + (131, 31, 21), + (40, 31, 128), + (869, 31, 7), + (132, 31, 21), + (746, 31, 45), + (747, 31, 45), + (282, 31, 39), + (677, 31, 6), + (186, 31, 133), + (130, 31, 21), + (312, 31, 46), + (676, 31, 6), + (1031, 31, 116), + (807, 31, 27), + (104, 31, 37), + (515, 31, 43), + (258, 31, 49), + (16, 31, 35), + (718, 31, 23), + (678, 31, 6), + (439, 31, 56), + (838, 31, 29), + (650, 31, 17), + (780, 31, 25), + (299, 31, 115), + (416, 31, 137), + (595, 31, 2), + (961, 31, 1), + (916, 31, 31), + (342, 31, 41), + (550, 31, 13), + (414, 31, 137), + (67, 31, 15), + (806, 31, 27), + (152, 31, 124), + (962, 31, 1), + (735, 31, 111), + (301, 31, 115), + (960, 31, 1), + (964, 31, 1), + (330, 31, 101), + (46, 31, 52), + (914, 31, 31), + (549, 31, 13), + (45, 31, 52), + (196, 31, 54), + (438, 31, 56), + (596, 31, 2), + (341, 31, 41), + (597, 31, 2), + (440, 31, 56), + (778, 31, 25), + (39, 31, 128), + (442, 31, 56), + (716, 31, 23), + (913, 31, 31), + (599, 31, 2), + (1015, 31, 19), + (284, 31, 39), + (313, 31, 46), + (559, 32, 19), + (985, 32, 1), + (659, 32, 17), + (899, 32, 13), + (142, 32, 31), + (1104, 32, 49), + (79, 32, 15), + (975, 32, 1), + (180, 32, 50), + (896, 32, 21), + (373, 32, 6), + (610, 32, 3), + (683, 32, 13), + (80, 32, 15), + (179, 32, 50), + (28, 32, 35), + (498, 32, 5), + (108, 32, 91), + (376, 32, 4), + (293, 32, 39), + (620, 32, 2), + (690, 32, 6), + (453, 32, 137), + (615, 32, 3), + (691, 32, 6), + (689, 32, 6), + (754, 32, 111), + (980, 32, 1), + (877, 32, 7), + (499, 32, 5), + (621, 32, 2), + (526, 32, 43), + (722, 32, 34), + (497, 32, 5), + (378, 32, 3), + (379, 32, 3), + (405, 32, 4), + (406, 32, 4), + (622, 32, 2), + (463, 32, 56), + (78, 32, 15), + (557, 32, 31), + (527, 32, 43), + (74, 32, 36), + (208, 32, 54), + (654, 32, 41), + (207, 32, 54), + (687, 32, 9), + (138, 32, 51), + (464, 32, 56), + (786, 32, 61), + (237, 32, 26), + (987, 32, 1), + (813, 32, 66), + (902, 32, 9), + (1102, 32, 81), + (986, 32, 1), + (1025, 32, 19), + (465, 32, 56), + (402, 32, 6), + (289, 32, 96), + (562, 32, 13), + (819, 32, 27), + (29, 32, 35), + (1047, 32, 47), + (791, 32, 25), + (656, 32, 25), + (1108, 32, 33), + (725, 32, 23), + (847, 32, 29), + (268, 32, 49), + (1077, 32, 48), + (761, 32, 45), + (322, 32, 46), + (1024, 32, 19), + (147, 32, 21), + (1049, 32, 47), + (927, 32, 31), + (926, 32, 31), + (1048, 32, 47), + (523, 32, 64), + (458, 32, 83), + (267, 32, 73), + (53, 32, 77), + (1044, 32, 70), + (757, 32, 67), + (24, 32, 52), + (654, 33, 41), + (689, 33, 9), + (995, 33, 1), + (926, 33, 46), + (526, 33, 64), + (78, 33, 22), + (557, 33, 31), + (880, 33, 7), + (1047, 33, 70), + (1081, 33, 48), + (896, 33, 21), + (683, 33, 13), + (697, 33, 6), + (630, 33, 2), + (373, 33, 6), + (237, 33, 26), + (322, 33, 69), + (289, 33, 96), + (620, 33, 3), + (754, 33, 111), + (108, 33, 91), + (242, 33, 11), + (793, 33, 25), + (566, 33, 13), + (1102, 33, 81), + (847, 33, 43), + (463, 33, 83), + (877, 33, 10), + (138, 33, 51), + (819, 33, 40), + (813, 33, 66), + (453, 33, 137), + (786, 33, 61), + (74, 33, 36), + (296, 33, 39), + (56, 33, 52), + (378, 33, 4), + (729, 33, 23), + (532, 33, 43), + (1112, 33, 33), + (214, 33, 54), + (975, 33, 1), + (147, 33, 31), + (610, 33, 3), + (473, 33, 56), + (497, 33, 7), + (179, 33, 75), + (268, 33, 73), + (1029, 33, 19), + (985, 33, 1), + (931, 33, 31), + (35, 33, 35), + (557, 34, 31), + (724, 39, 56), + (618, 39, 3), + (983, 39, 1), + (495, 39, 11), + (619, 39, 3), + (561, 39, 31), + (77, 39, 36), + (901, 39, 21), + (658, 39, 41), + (818, 39, 66), + (984, 39, 1), + (146, 39, 51), + (206, 39, 133), + (192, 39, 80), + (27, 39, 86), + (862, 39, 10), + (292, 39, 96), + (251, 39, 73), + (163, 39, 75), + (774, 39, 37), + (953, 39, 1), + (178, 39, 124), + (112, 39, 91), + (909, 39, 46), + (462, 39, 137), + (1107, 39, 81), + (12, 39, 52), + (588, 39, 3), + (1064, 39, 72), + (280, 39, 58), + (1075, 39, 119), + (388, 39, 6), + (644, 39, 25), + (461, 39, 137), + (1046, 39, 116), + (760, 39, 111), + (321, 39, 115), + (1076, 39, 119), + (711, 39, 34), + (431, 39, 83), + (544, 39, 19), + (525, 39, 106), + (1094, 39, 49), + (1010, 39, 28), + (1071, 40, 48), + (175, 40, 50), + (137, 40, 21), + (845, 40, 43), + (1100, 40, 33), + (1041, 40, 47), + (18, 40, 35), + (136, 40, 21), + (49, 40, 52), + (262, 40, 49), + (1040, 40, 47), + (818, 40, 40), + (174, 40, 50), + (317, 40, 46), + (844, 40, 43), + (261, 40, 49), + (50, 40, 52), + (1070, 40, 48), + (51, 40, 52), + (201, 40, 54), + (790, 40, 37), + (316, 40, 46), + (652, 40, 17), + (519, 40, 43), + (841, 40, 29), + (20, 40, 35), + (452, 40, 56), + (843, 40, 29), + (722, 40, 34), + (520, 40, 43), + (448, 40, 56), + (449, 40, 56), + (1101, 40, 33), + (922, 40, 31), + (348, 40, 41), + (288, 40, 39), + (724, 40, 34), + (347, 40, 41), + (921, 40, 31), + (346, 40, 41), + (842, 40, 29), + (451, 40, 56), + (721, 40, 23), + (846, 40, 43), + (817, 40, 40), + (752, 40, 45), + (450, 40, 56), + (784, 40, 25), + (920, 40, 31), + (518, 40, 43), + (925, 40, 46), + (653, 40, 17), + (785, 40, 25), + (723, 40, 34), + (753, 40, 45), + (816, 40, 40), + (751, 40, 45), + (812, 40, 27), + (202, 40, 54), + (19, 40, 35), + (146, 40, 31), + (618, 40, 3), + (894, 40, 9), + (377, 40, 4), + (608, 40, 2), + (688, 40, 9), + (144, 40, 31), + (605, 40, 2), + (145, 40, 31), + (607, 40, 2), + (234, 40, 11), + (983, 40, 1), + (235, 40, 11), + (555, 40, 13), + (402, 40, 6), + (982, 40, 1), + (399, 40, 4), + (971, 40, 1), + (561, 40, 19), + (556, 40, 13), + (687, 40, 9), + (76, 40, 22), + (606, 40, 2), + (980, 40, 1), + (899, 40, 13), + (398, 40, 4), + (397, 40, 4), + (490, 40, 5), + (682, 40, 6), + (616, 40, 3), + (619, 40, 3), + (617, 40, 3), + (872, 40, 7), + (236, 40, 11), + (873, 40, 7), + (560, 40, 19), + (874, 40, 7), + (876, 40, 10), + (376, 40, 4), + (1023, 40, 28), + (609, 40, 2), + (895, 40, 9), + (657, 40, 25), + (372, 40, 3), + (71, 40, 15), + (970, 40, 1), + (972, 40, 1), + (559, 40, 19), + (1020, 40, 19), + (656, 40, 25), + (240, 40, 16), + (615, 40, 3), + (973, 40, 1), + (493, 40, 7), + (981, 40, 1), + (494, 40, 7), + (901, 40, 13), + (73, 40, 15), + (403, 40, 6), + (496, 40, 7), + (239, 40, 16), + (72, 40, 15), + (900, 40, 13), + (974, 40, 1), + (495, 40, 7), + (142, 40, 31), + (143, 40, 31), + (70, 40, 15), + (69, 40, 15), + (984, 40, 1), + (554, 40, 13), + (658, 40, 25), + (77, 40, 22), + (404, 40, 6), + (119, 40, 51), + (206, 40, 80), + (770, 40, 61), + (462, 40, 83), + (460, 40, 83), + (769, 40, 61), + (459, 40, 83), + (27, 40, 52), + (461, 40, 83), + (120, 40, 51), + (1107, 40, 49), + (26, 40, 52), + (700, 40, 56), + (939, 40, 1), + (701, 40, 56), + (935, 40, 1), + (458, 40, 83), + (938, 40, 1), + (937, 40, 1), + (1106, 40, 49), + (24, 40, 52), + (702, 40, 56), + (1105, 40, 49), + (205, 40, 80), + (768, 40, 61), + (217, 40, 26), + (1076, 40, 72), + (385, 40, 9), + (537, 40, 31), + (321, 40, 69), + (478, 40, 11), + (536, 40, 31), + (669, 40, 13), + (267, 40, 73), + (524, 40, 64), + (534, 40, 31), + (357, 40, 6), + (757, 40, 67), + (320, 40, 69), + (670, 40, 13), + (1046, 40, 70), + (1045, 40, 70), + (760, 40, 67), + (667, 40, 13), + (883, 40, 21), + (853, 40, 16), + (852, 40, 16), + (1044, 40, 70), + (759, 40, 67), + (573, 40, 3), + (668, 40, 13), + (291, 40, 58), + (25, 40, 52), + (1104, 40, 49), + (936, 40, 1), + (112, 40, 55), + (111, 40, 55), + (1001, 40, 46), + (570, 40, 3), + (53, 40, 77), + (292, 40, 58), + (636, 40, 41), + (525, 40, 64), + (854, 40, 16), + (1000, 40, 46), + (758, 40, 67), + (572, 40, 3), + (635, 40, 41), + (351, 40, 61), + (637, 40, 41), + (574, 40, 3), + (1075, 40, 72), + (59, 40, 36), + (571, 40, 3), + (523, 40, 64), + (535, 40, 31), + (178, 40, 75), + (89, 40, 91), + (797, 40, 66), + (331, 40, 101), + (330, 40, 101), + (88, 40, 91), + (300, 40, 115), + (40, 40, 128), + (39, 40, 128), + (733, 40, 111), + (1, 40, 86), + (1031, 40, 116), + (1032, 40, 116), + (152, 40, 124), + (2, 40, 86), + (273, 40, 96), + (153, 40, 124), + (298, 40, 115), + (1085, 40, 81), + (1056, 40, 119), + (1055, 40, 119), + (329, 40, 101), + (90, 40, 91), + (299, 40, 115), + (796, 40, 66), + (826, 40, 71), + (825, 40, 71), + (827, 40, 71), + (417, 40, 137), + (415, 40, 137), + (414, 40, 137), + (1084, 40, 81), + (506, 40, 106), + (301, 40, 115), + (185, 40, 133), + (416, 40, 137), + (735, 40, 111), + (734, 40, 111), + (186, 40, 133), + (904, 40, 76), + (1033, 40, 116), + (1086, 40, 81), + (413, 40, 137), + (777, 41, 25), + (365, 41, 3), + (14, 41, 35), + (956, 41, 1), + (101, 41, 37), + (102, 41, 37), + (959, 41, 1), + (483, 41, 5), + (590, 41, 2), + (391, 41, 4), + (389, 41, 4), + (434, 41, 56), + (390, 41, 4), + (714, 41, 23), + (435, 41, 56), + (364, 41, 3), + (911, 41, 31), + (591, 41, 2), + (392, 41, 4), + (1095, 41, 33), + (594, 41, 2), + (127, 41, 21), + (910, 41, 31), + (713, 41, 23), + (129, 41, 21), + (15, 41, 35), + (227, 41, 11), + (712, 41, 23), + (912, 41, 31), + (592, 41, 2), + (593, 41, 2), + (776, 41, 25), + (836, 41, 29), + (366, 41, 3), + (437, 41, 56), + (1011, 41, 19), + (44, 41, 52), + (893, 41, 9), + (1013, 41, 19), + (1014, 41, 19), + (744, 41, 45), + (165, 41, 50), + (226, 41, 11), + (866, 41, 7), + (310, 41, 46), + (128, 41, 21), + (674, 41, 6), + (743, 41, 45), + (168, 41, 50), + (742, 41, 45), + (647, 41, 17), + (868, 41, 7), + (311, 41, 46), + (646, 41, 17), + (1036, 41, 47), + (253, 41, 49), + (865, 41, 7), + (166, 41, 50), + (255, 41, 49), + (66, 41, 15), + (167, 41, 50), + (254, 41, 49), + (1035, 41, 47), + (1066, 41, 48), + (433, 41, 56), + (103, 41, 37), + (957, 41, 1), + (1067, 41, 48), + (281, 41, 39), + (958, 41, 1), + (195, 41, 54), + (805, 41, 27), + (546, 41, 13), + (436, 41, 56), + (548, 41, 13), + (126, 41, 21), + (867, 41, 7), + (1012, 41, 19), + (955, 41, 1), + (512, 41, 43), + (675, 41, 6), + (194, 41, 54), + (547, 41, 13), + (513, 41, 43), + (340, 41, 41), + (864, 41, 7), + (1065, 41, 48), + (358, 41, 4), + (938, 41, 1), + (419, 41, 83), + (480, 41, 7), + (273, 41, 96), + (576, 41, 3), + (329, 41, 101), + (300, 41, 115), + (421, 41, 83), + (386, 41, 6), + (420, 41, 83), + (479, 41, 7), + (671, 41, 9), + (935, 41, 1), + (387, 41, 6), + (59, 41, 36), + (422, 41, 83), + (884, 41, 13), + (1059, 41, 72), + (539, 41, 19), + (1058, 41, 72), + (538, 41, 19), + (1001, 41, 46), + (827, 41, 71), + (1060, 41, 72), + (220, 41, 16), + (155, 41, 75), + (219, 41, 16), + (218, 41, 16), + (156, 41, 75), + (1033, 41, 116), + (188, 41, 80), + (635, 41, 41), + (298, 41, 115), + (856, 41, 10), + (418, 41, 83), + (857, 41, 10), + (189, 41, 80), + (154, 41, 75), + (855, 41, 10), + (636, 41, 41), + (885, 41, 13), + (187, 41, 80), + (331, 41, 101), + (886, 41, 13), + (1056, 41, 119), + (637, 41, 41), + (826, 41, 71), + (670, 41, 13), + (941, 41, 1), + (152, 41, 124), + (357, 41, 6), + (1, 41, 86), + (385, 41, 9), + (39, 41, 128), + (478, 41, 11), + (40, 41, 128), + (217, 41, 26), + (669, 41, 13), + (2, 41, 86), + (185, 41, 133), + (534, 41, 31), + (186, 41, 133), + (571, 41, 3), + (413, 41, 137), + (883, 41, 21), + (667, 41, 13), + (414, 41, 137), + (416, 41, 137), + (1084, 41, 81), + (852, 41, 16), + (1086, 41, 81), + (415, 41, 137), + (854, 41, 16), + (417, 41, 137), + (853, 41, 16), + (668, 41, 13), + (570, 41, 3), + (535, 41, 31), + (937, 41, 1), + (577, 41, 3), + (578, 41, 3), + (301, 41, 115), + (939, 41, 1), + (575, 41, 3), + (89, 41, 91), + (904, 41, 76), + (41, 41, 77), + (936, 41, 1), + (537, 41, 31), + (153, 41, 124), + (942, 41, 1), + (579, 41, 3), + (943, 41, 1), + (940, 41, 1), + (90, 41, 91), + (573, 41, 3), + (299, 41, 115), + (572, 41, 3), + (536, 41, 31), + (1055, 41, 119), + (88, 41, 91), + (574, 41, 3), + (5, 41, 52), + (1085, 41, 81), + (944, 41, 1), + (825, 41, 71), + (798, 41, 40), + (1003, 41, 28), + (304, 41, 69), + (799, 41, 40), + (334, 41, 61), + (1002, 41, 28), + (733, 41, 111), + (701, 41, 56), + (302, 41, 69), + (332, 41, 61), + (119, 41, 51), + (831, 41, 43), + (830, 41, 43), + (305, 41, 69), + (639, 41, 25), + (274, 41, 58), + (796, 41, 66), + (506, 41, 106), + (700, 41, 56), + (736, 41, 67), + (705, 41, 34), + (704, 41, 34), + (247, 41, 73), + (737, 41, 67), + (703, 41, 34), + (333, 41, 61), + (246, 41, 73), + (1004, 41, 28), + (702, 41, 56), + (507, 41, 64), + (121, 41, 31), + (1031, 41, 116), + (120, 41, 51), + (771, 41, 37), + (828, 41, 43), + (797, 41, 66), + (905, 41, 46), + (1000, 41, 46), + (1057, 41, 72), + (638, 41, 25), + (91, 41, 55), + (832, 41, 43), + (1087, 41, 49), + (3, 41, 52), + (60, 41, 22), + (94, 41, 55), + (93, 41, 55), + (734, 41, 111), + (735, 41, 111), + (769, 41, 61), + (6, 41, 52), + (768, 41, 61), + (1032, 41, 116), + (330, 41, 101), + (303, 41, 69), + (640, 41, 25), + (92, 41, 55), + (4, 41, 52), + (95, 41, 55), + (770, 41, 61), + (829, 41, 43), + (632, 42, 7), + (356, 42, 241), + (35, 42, 205), + (469, 42, 219), + (728, 42, 89), + (1030, 42, 109), + (850, 42, 113), + (297, 42, 229), + (991, 42, 2), + (993, 42, 2), + (999, 42, 2), + (996, 42, 2), + (38, 42, 205), + (822, 42, 105), + (997, 42, 2), + (990, 42, 2), + (118, 42, 217), + (992, 42, 2), + (630, 42, 7), + (296, 42, 229), + (36, 42, 205), + (995, 42, 2), + (117, 42, 217), + (821, 42, 105), + (633, 42, 7), + (994, 42, 2), + (37, 42, 205), + (998, 42, 2), + (243, 42, 61), + (903, 42, 49), + (731, 42, 133), + (114, 42, 145), + (568, 42, 73), + (269, 42, 193), + (115, 42, 145), + (270, 42, 193), + (732, 42, 133), + (569, 42, 73), + (324, 42, 183), + (1051, 42, 185), + (730, 42, 133), + (245, 42, 61), + (326, 42, 183), + (244, 42, 61), + (793, 42, 145), + (327, 42, 183), + (242, 42, 61), + (31, 42, 137), + (505, 42, 25), + (566, 42, 73), + (295, 42, 153), + (355, 42, 161), + (354, 42, 161), + (353, 42, 161), + (1029, 42, 109), + (352, 42, 161), + (666, 42, 97), + (150, 42, 121), + (529, 42, 169), + (1052, 42, 185), + (531, 42, 169), + (794, 42, 145), + (530, 42, 169), + (151, 42, 121), + (86, 42, 85), + (764, 42, 177), + (113, 42, 145), + (729, 42, 133), + (763, 42, 177), + (567, 42, 73), + (116, 42, 145), + (87, 42, 85), + (382, 42, 13), + (325, 42, 183), + (411, 42, 19), + (933, 42, 181), + (213, 42, 212), + (211, 42, 212), + (412, 42, 19), + (384, 42, 13), + (934, 42, 181), + (1111, 42, 129), + (468, 42, 219), + (931, 42, 181), + (932, 42, 181), + (471, 42, 219), + (383, 42, 13), + (929, 42, 121), + (470, 42, 219), + (631, 42, 7), + (1112, 42, 193), + (472, 42, 219), + (634, 42, 7), + (930, 42, 121), + (183, 42, 197), + (34, 42, 137), + (881, 42, 37), + (1080, 42, 190), + (795, 42, 145), + (882, 42, 37), + (32, 42, 137), + (181, 42, 197), + (823, 42, 157), + (212, 42, 212), + (699, 42, 31), + (849, 42, 113), + (33, 42, 137), + (824, 42, 157), + (698, 42, 31), + (182, 42, 197), + (851, 42, 169), + (1110, 42, 129), + (697, 42, 31), + (55, 42, 205), + (210, 42, 212), + (880, 42, 37), + (663, 42, 65), + (272, 42, 289), + (381, 42, 9), + (765, 42, 265), + (662, 42, 65), + (380, 42, 9), + (57, 42, 306), + (409, 42, 13), + (58, 42, 306), + (148, 42, 81), + (477, 42, 328), + (475, 42, 328), + (184, 42, 296), + (533, 42, 253), + (695, 42, 21), + (241, 42, 41), + (1053, 42, 277), + (629, 42, 5), + (56, 42, 306), + (664, 42, 65), + (408, 42, 13), + (879, 42, 25), + (766, 42, 265), + (474, 42, 328), + (149, 42, 81), + (214, 42, 317), + (476, 42, 328), + (1054, 42, 277), + (627, 42, 5), + (84, 42, 57), + (1083, 42, 285), + (410, 42, 13), + (328, 42, 274), + (1026, 42, 73), + (502, 42, 17), + (693, 42, 21), + (565, 42, 49), + (473, 42, 328), + (665, 42, 65), + (1028, 42, 73), + (85, 42, 57), + (1081, 42, 285), + (504, 42, 17), + (215, 42, 317), + (625, 42, 5), + (532, 42, 253), + (1027, 42, 73), + (1082, 42, 285), + (83, 42, 57), + (628, 42, 5), + (727, 42, 89), + (767, 42, 265), + (626, 42, 5), + (271, 42, 289), + (216, 42, 317), + (696, 42, 21), + (503, 42, 17), + (694, 42, 21), + (771, 42, 241), + (575, 42, 11), + (3, 42, 341), + (705, 42, 221), + (358, 42, 21), + (6, 42, 341), + (578, 42, 11), + (91, 42, 361), + (737, 42, 441), + (577, 42, 11), + (576, 42, 11), + (4, 42, 341), + (703, 42, 221), + (736, 42, 441), + (5, 42, 341), + (940, 42, 3), + (832, 42, 281), + (274, 42, 381), + (92, 42, 361), + (829, 42, 281), + (830, 42, 281), + (332, 42, 401), + (579, 42, 11), + (386, 42, 31), + (95, 42, 361), + (334, 42, 401), + (798, 42, 261), + (828, 42, 281), + (941, 42, 3), + (799, 42, 261), + (333, 42, 401), + (93, 42, 361), + (943, 42, 3), + (1087, 42, 321), + (942, 42, 3), + (831, 42, 281), + (944, 42, 3), + (94, 42, 361), + (507, 42, 421), + (905, 42, 301), + (218, 42, 101), + (246, 42, 481), + (219, 42, 101), + (421, 42, 546), + (857, 42, 61), + (1003, 42, 181), + (420, 42, 546), + (671, 42, 51), + (121, 42, 201), + (305, 42, 456), + (1004, 42, 181), + (1002, 42, 181), + (886, 42, 81), + (302, 42, 456), + (220, 42, 101), + (187, 42, 528), + (885, 42, 81), + (639, 42, 161), + (1057, 42, 474), + (188, 42, 528), + (856, 42, 61), + (418, 42, 546), + (155, 42, 492), + (539, 42, 121), + (1059, 42, 474), + (855, 42, 61), + (387, 42, 31), + (60, 42, 141), + (419, 42, 546), + (884, 42, 81), + (247, 42, 481), + (640, 42, 161), + (480, 42, 41), + (303, 42, 456), + (538, 42, 121), + (1058, 42, 474), + (189, 42, 528), + (479, 42, 41), + (41, 42, 510), + (156, 42, 492), + (422, 42, 546), + (304, 42, 456), + (638, 42, 161), + (154, 42, 492), + (1060, 42, 474), + (704, 42, 221), + (631, 43, 7), + (730, 43, 133), + (632, 43, 7), + (243, 43, 61), + (57, 43, 306), + (794, 43, 145), + (1083, 43, 285), + (851, 43, 169), + (328, 43, 274), + (271, 43, 289), + (117, 43, 217), + (882, 43, 37), + (1082, 43, 285), + (411, 43, 19), + (184, 43, 296), + (881, 43, 37), + (474, 43, 328), + (903, 43, 49), + (765, 43, 265), + (412, 43, 19), + (36, 43, 205), + (1053, 43, 277), + (382, 43, 13), + (932, 43, 181), + (244, 43, 61), + (933, 43, 181), + (997, 43, 2), + (297, 43, 229), + (666, 43, 97), + (1030, 43, 109), + (356, 43, 241), + (215, 43, 317), + (996, 43, 2), + (567, 43, 73), + (475, 43, 328), + (40, 43, 510), + (735, 43, 441), + (2, 43, 341), + (884, 43, 33), + (385, 43, 31), + (95, 43, 145), + (832, 43, 113), + (152, 43, 492), + (1, 43, 341), + (305, 43, 183), + (156, 43, 197), + (667, 43, 51), + (417, 43, 546), + (5, 43, 137), + (415, 43, 546), + (854, 43, 61), + (1032, 43, 461), + (734, 43, 441), + (330, 43, 401), + (4, 43, 137), + (538, 43, 49), + (668, 43, 51), + (1058, 43, 190), + (829, 43, 113), + (1087, 43, 129), + (220, 43, 41), + (1060, 43, 190), + (331, 43, 401), + (670, 43, 51), + (905, 43, 121), + (219, 43, 41), + (303, 43, 183), + (93, 43, 145), + (1084, 43, 321), + (577, 43, 5), + (574, 43, 11), + (246, 43, 193), + (941, 43, 2), + (301, 43, 456), + (939, 43, 3), + (480, 43, 17), + (703, 43, 89), + (420, 43, 219), + (937, 43, 3), + (121, 43, 81), + (671, 43, 21), + (89, 43, 361), + (944, 43, 2), + (886, 43, 33), + (539, 43, 49), + (247, 43, 193), + (705, 43, 89), + (579, 43, 5), + (422, 43, 219), + (273, 43, 381), + (576, 43, 5), + (704, 43, 89), + (736, 43, 177), + (358, 43, 9), + (1031, 43, 461), + (304, 43, 183), + (153, 43, 492), + (92, 43, 145), + (571, 43, 11), + (154, 43, 197), + (830, 43, 113), + (1056, 43, 474), + (853, 43, 61), + (41, 43, 205), + (300, 43, 456), + (639, 43, 65), + (506, 43, 421), + (572, 43, 11), + (1033, 43, 461), + (299, 43, 456), + (855, 43, 25), + (799, 43, 105), + (188, 43, 212), + (857, 43, 25), + (189, 43, 212), + (942, 43, 2), + (771, 43, 97), + (936, 43, 3), + (333, 43, 161), + (1004, 43, 73), + (419, 43, 219), + (1000, 43, 181), + (414, 43, 546), + (637, 43, 161), + (636, 43, 161), + (826, 43, 281), + (769, 43, 241), + (59, 43, 141), + (701, 43, 221), + (904, 43, 301), + (120, 43, 201), + (770, 43, 241), + (537, 43, 121), + (535, 43, 121), + (1086, 43, 321), + (217, 43, 101), + (752, 44, 67), + (812, 44, 40), + (894, 44, 13), + (139, 44, 21), + (554, 44, 19), + (1021, 44, 19), + (176, 44, 50), + (755, 44, 45), + (454, 44, 56), + (971, 44, 1), + (449, 44, 83), + (349, 44, 41), + (174, 44, 75), + (842, 44, 43), + (518, 44, 64), + (558, 44, 13), + (897, 44, 9), + (1100, 44, 49), + (491, 44, 5), + (263, 44, 49), + (400, 44, 4), + (374, 44, 3), + (261, 44, 73), + (611, 44, 2), + (684, 44, 6), + (606, 44, 3), + (652, 44, 25), + (1072, 44, 48), + (976, 44, 1), + (70, 44, 22), + (49, 44, 77), + (1042, 44, 47), + (814, 44, 27), + (702, 44, 56), + (414, 44, 137), + (1031, 44, 116), + (797, 44, 66), + (667, 44, 13), + (1084, 44, 81), + (535, 44, 31), + (1001, 44, 46), + (826, 44, 71), + (669, 44, 13), + (573, 44, 3), + (536, 44, 31), + (416, 44, 137), + (1085, 44, 81), + (636, 44, 41), + (357, 44, 6), + (853, 44, 16), + (827, 44, 71), + (152, 44, 124), + (571, 44, 3), + (39, 44, 128), + (90, 44, 91), + (478, 44, 11), + (1, 44, 86), + (186, 44, 133), + (701, 44, 56), + (938, 44, 1), + (299, 44, 115), + (936, 44, 1), + (330, 44, 101), + (213, 47, 265), + (410, 47, 16), + (994, 47, 2), + (824, 47, 196), + (151, 47, 151), + (699, 47, 39), + (823, 47, 196), + (183, 47, 246), + (930, 47, 151), + (476, 47, 410), + (1028, 47, 91), + (272, 47, 361), + (698, 47, 39), + (934, 47, 226), + (33, 47, 171), + (565, 47, 61), + (87, 47, 106), + (1111, 47, 161), + (34, 47, 171), + (628, 47, 6), + (216, 47, 396), + (795, 47, 181), + (85, 47, 71), + (150, 47, 151), + (728, 47, 111), + (1080, 47, 237), + (533, 47, 316), + (531, 47, 211), + (569, 47, 91), + (993, 47, 2), + (634, 47, 9), + (695, 47, 26), + (999, 47, 3), + (477, 47, 410), + (38, 47, 256), + (732, 47, 166), + (58, 47, 383), + (380, 47, 11), + (1054, 47, 346), + (696, 47, 26), + (381, 47, 11), + (505, 47, 31), + (115, 47, 181), + (568, 47, 91), + (355, 47, 201), + (665, 47, 81), + (731, 47, 166), + (767, 47, 331), + (633, 47, 9), + (116, 47, 181), + (270, 47, 241), + (629, 47, 6), + (822, 47, 131), + (37, 47, 256), + (472, 47, 274), + (86, 47, 106), + (764, 47, 221), + (1052, 47, 231), + (998, 47, 3), + (326, 47, 228), + (471, 47, 274), + (384, 47, 16), + (149, 47, 101), + (383, 47, 16), + (766, 47, 331), + (118, 47, 271), + (245, 47, 76), + (327, 47, 228), + (943, 47, 3), + (640, 47, 201), + (832, 47, 351), + (507, 47, 526), + (156, 47, 615), + (944, 47, 3), + (155, 47, 615), + (771, 47, 301), + (1059, 47, 592), + (220, 47, 126), + (94, 47, 451), + (422, 47, 683), + (334, 47, 501), + (387, 47, 39), + (1004, 47, 226), + (705, 47, 276), + (421, 47, 683), + (856, 47, 76), + (6, 47, 426), + (831, 47, 351), + (1003, 47, 226), + (305, 47, 569), + (579, 47, 13), + (95, 47, 451), + (1087, 47, 401), + (1060, 47, 592), + (189, 47, 660), + (247, 47, 601), + (885, 47, 101), + (578, 47, 13), + (886, 47, 101), + (737, 47, 551), + (539, 47, 151), + (857, 47, 76), + (928, 97, 5), + (446, 97, 11), + (200, 97, 11), + (1078, 97, 7), + (792, 97, 4), + (658, 97, 6), + (811, 97, 6), + (323, 97, 7), + (500, 97, 2), + (603, 97, 1), + (134, 97, 5), + (76, 97, 5), + (651, 97, 4), + (820, 97, 4), + (918, 97, 7), + (260, 97, 10), + (552, 97, 3), + (145, 97, 7), + (871, 97, 2), + (404, 97, 2), + (68, 97, 4), + (345, 97, 9), + (81, 97, 3), + (466, 97, 8), + (106, 97, 8), + (845, 97, 10), + (660, 97, 3), + (1098, 97, 7), + (680, 97, 2), + (968, 97, 1), + (209, 97, 8), + (901, 97, 3), + (692, 97, 2), + (563, 97, 3), + (495, 97, 2), + (560, 97, 5), + (618, 97, 1), + (988, 97, 1), + (983, 97, 1), + (232, 97, 3), + (54, 97, 7), + (623, 97, 1), + (528, 97, 6), + (760, 97, 15), + (206, 97, 17), + (292, 97, 13), + (525, 97, 14), + (1107, 97, 11), + (461, 97, 18), + (321, 97, 15), + (1075, 97, 16), + (260, 45, 73), + (106, 45, 55), + (1098, 45, 49), + (603, 45, 3), + (552, 45, 19), + (651, 45, 25), + (232, 45, 16), + (68, 45, 22), + (446, 45, 83), + (345, 45, 61), + (134, 45, 31), + (871, 45, 10), + (200, 45, 80), + (680, 45, 9), + (968, 45, 1), + (918, 45, 46), + (811, 45, 40), + (1001, 45, 46), + (702, 45, 56), + (669, 45, 13), + (797, 45, 66), + (478, 45, 11), + (39, 45, 128), + (357, 45, 6), + (1085, 45, 81), + (573, 45, 3), + (90, 45, 91), + (938, 45, 1), + (186, 45, 133), + (536, 45, 31), + (827, 45, 71), + (416, 45, 137), + (115, 46, 55), + (633, 46, 2), + (665, 46, 25), + (728, 46, 34), + (628, 46, 3), + (216, 46, 54), + (150, 46, 21), + (86, 46, 15), + (533, 46, 43), + (476, 46, 56), + (118, 46, 37), + (731, 46, 23), + (998, 46, 1), + (993, 46, 1), + (149, 46, 31), + (766, 46, 45), + (380, 46, 4), + (568, 46, 13), + (37, 46, 35), + (764, 46, 67), + (823, 46, 27), + (272, 46, 49), + (183, 46, 75), + (33, 46, 52), + (383, 46, 3), + (471, 46, 83), + (1054, 46, 47), + (930, 46, 46), + (1028, 46, 28), + (695, 46, 9), + (326, 46, 69), + (1111, 46, 49), + (698, 46, 6), + (1080, 46, 72), + (1094, 46, 81), + (1010, 46, 46), + (192, 46, 133), + (862, 46, 16), + (1064, 46, 119), + (388, 46, 9), + (953, 46, 1), + (431, 46, 137), + (711, 46, 56), + (251, 46, 121), + (163, 46, 124), + (280, 46, 96), + (12, 46, 86), + (909, 46, 76), + (774, 46, 61), + (588, 46, 3), + (544, 46, 31), + (644, 46, 41), + (988, 49, 1), + (871, 49, 16), + (873, 49, 10), + (1098, 49, 81), + (519, 49, 64), + (134, 49, 51), + (200, 49, 133), + (753, 49, 67), + (1070, 49, 72), + (660, 49, 17), + (72, 49, 22), + (918, 49, 76), + (1078, 49, 48), + (563, 49, 13), + (466, 49, 56), + (451, 49, 83), + (232, 49, 26), + (603, 49, 3), + (792, 49, 25), + (345, 49, 101), + (651, 49, 41), + (682, 49, 9), + (528, 49, 43), + (608, 49, 3), + (446, 49, 137), + (51, 49, 77), + (928, 49, 31), + (500, 49, 5), + (552, 49, 31), + (968, 49, 1), + (68, 49, 36), + (843, 49, 43), + (209, 49, 54), + (260, 49, 121), + (811, 49, 66), + (973, 49, 1), + (347, 49, 61), + (680, 49, 13), + (556, 49, 19), + (1041, 49, 70), + (623, 49, 2), + (54, 49, 52), + (895, 49, 13), + (323, 49, 46), + (81, 49, 15), + (316, 49, 69), + (692, 49, 6), + (106, 49, 91), + (820, 49, 27), + (784, 49, 37), + (171, 50, 124), + (397, 50, 4), + (443, 50, 137), + (18, 50, 35), + (234, 50, 11), + (751, 50, 45), + (516, 50, 106), + (448, 50, 56), + (841, 50, 29), + (605, 50, 2), + (69, 50, 15), + (285, 50, 96), + (917, 50, 76), + (136, 50, 21), + (920, 50, 31), + (1038, 50, 116), + (198, 50, 133), + (781, 50, 61), + (490, 50, 5), + (1020, 50, 19), + (201, 50, 54), + (872, 50, 7), + (1040, 50, 47), + (288, 50, 39), + (970, 50, 1), + (47, 50, 128), + (378, 50, 4), + (551, 50, 31), + (847, 50, 43), + (497, 50, 7), + (965, 50, 1), + (463, 50, 83), + (600, 50, 3), + (1047, 50, 70), + (679, 50, 13), + (369, 50, 6), + (985, 50, 1), + (486, 50, 11), + (322, 50, 69), + (620, 50, 3), + (147, 50, 31), + (819, 50, 40), + (78, 50, 22), + (268, 50, 73), + (870, 50, 16), + (133, 50, 51), + (179, 50, 75), + (877, 50, 10), + (926, 50, 46), + (526, 50, 64), + (689, 50, 9), + (103, 110, -2), + (311, 110, -2), + (868, 110, 1), + (866, 110, 1), + (340, 110, -2), + (243, 110, -1), + (15, 110, -2), + (390, 110, 1), + (713, 110, -1), + (281, 110, -2), + (730, 110, -3), + (712, 110, -1), + (675, 110, 1), + (699, 110, 0), + (38, 110, -5), + (389, 110, 1), + (893, 110, 0), + (999, 110, 1), + (632, 110, 1), + (732, 110, -3), + (102, 110, -2), + (776, 110, -1), + (36, 110, -5), + (996, 110, 1), + (851, 110, -4), + (392, 110, 1), + (411, 110, 0), + (14, 110, -2), + (912, 110, -1), + (384, 110, 1), + (245, 110, -1), + (547, 110, 0), + (1012, 110, 0), + (166, 110, -3), + (382, 110, 1), + (932, 110, -5), + (1065, 110, -3), + (794, 110, -3), + (933, 110, -5), + (903, 110, -1), + (168, 110, -3), + (1067, 110, -3), + (254, 110, -3), + (795, 110, -3), + (934, 110, -5), + (881, 110, 0), + (310, 110, -2), + (412, 110, 0), + (129, 110, -1), + (127, 110, -1), + (244, 110, -1), + (865, 110, 1), + (505, 110, 0), + (777, 110, -1), + (634, 110, 1), + (997, 110, 1), + (434, 110, -3), + (743, 110, -2), + (227, 110, 0), + (1013, 110, 0), + (437, 110, -3), + (513, 110, -2), + (435, 110, -3), + (548, 110, 0), + (195, 110, -3), + (1036, 110, -2), + (44, 110, -3), + (882, 110, 0), + (165, 110, -3), + (255, 110, -3), + (631, 110, 1), + (772, 110, -2), + (666, 110, -2), + (61, 110, -1), + (642, 110, -1), + (1005, 110, -1), + (328, 110, -8), + (1007, 110, -1), + (124, 110, -1), + (708, 110, -1), + (1088, 110, -3), + (1083, 110, -8), + (541, 110, 0), + (87, 110, -2), + (1082, 110, -8), + (184, 110, -8), + (834, 110, -2), + (908, 110, -2), + (907, 110, -2), + (57, 110, -9), + (1095, 110, -1), + (151, 110, -3), + (707, 110, -1), + (859, 110, 0), + (947, 110, 1), + (1030, 110, -2), + (949, 110, 1), + (946, 110, 1), + (356, 110, -7), + (582, 110, 1), + (584, 110, 1), + (581, 110, 1), + (360, 110, 1), + (63, 110, -1), + (860, 110, 0), + (542, 110, 0), + (765, 110, -7), + (889, 110, 0), + (1053, 110, -8), + (891, 110, 0), + (271, 110, -8), + (888, 110, 0), + (221, 110, 0), + (222, 110, 0), + (1091, 110, -3), + (767, 110, -7), + (567, 110, -1), + (427, 110, -5), + (569, 110, -1), + (477, 110, -9), + (1034, 110, -4), + (8, 110, -3), + (424, 110, -5), + (1089, 110, -3), + (738, 110, -4), + (306, 110, -4), + (739, 110, -4), + (1062, 110, -4), + (957, 110, 1), + (959, 110, 1), + (956, 110, 1), + (159, 110, -5), + (158, 110, -5), + (425, 110, -5), + (117, 110, -6), + (248, 110, -4), + (276, 110, -3), + (805, 110, -1), + (98, 110, -3), + (824, 110, -4), + (99, 110, -3), + (97, 110, -3), + (911, 110, -1), + (297, 110, -6), + (58, 110, -9), + (474, 110, -9), + (275, 110, -3), + (215, 110, -9), + (335, 110, -4), + (591, 110, 1), + (337, 110, -4), + (508, 110, -4), + (594, 110, 1), + (475, 110, -9), + (592, 110, 1), + (365, 110, 1), + (491, 87, 4), + (977, 87, 1), + (492, 87, 4), + (400, 87, 3), + (976, 87, 1), + (401, 87, 3), + (180, 87, 62), + (374, 87, 3), + (375, 87, 3), + (612, 87, 2), + (614, 87, 2), + (263, 87, 37), + (611, 87, 2), + (979, 87, 1), + (1074, 87, 36), + (264, 87, 37), + (350, 87, 31), + (349, 87, 31), + (464, 87, 69), + (522, 87, 33), + (755, 87, 34), + (1042, 87, 36), + (266, 87, 37), + (467, 87, 69), + (1073, 87, 36), + (110, 87, 28), + (1072, 87, 36), + (177, 87, 38), + (176, 87, 38), + (52, 87, 39), + (203, 87, 41), + (204, 87, 41), + (455, 87, 42), + (457, 87, 42), + (454, 87, 42), + (318, 87, 35), + (141, 87, 16), + (686, 87, 5), + (684, 87, 5), + (875, 87, 6), + (898, 87, 7), + (897, 87, 7), + (208, 87, 67), + (558, 87, 10), + (75, 87, 12), + (290, 87, 30), + (1021, 87, 15), + (685, 87, 5), + (139, 87, 16), + (787, 87, 19), + (789, 87, 19), + (814, 87, 21), + (923, 87, 24), + (1103, 87, 25), + (465, 87, 69), + (21, 87, 27), + (23, 87, 27), + (207, 87, 67), + (1050, 87, 59), + (28, 87, 43), + (791, 87, 31), + (1024, 87, 23), + (622, 87, 2), + (1049, 87, 59), + (1109, 87, 41), + (80, 87, 19), + (624, 87, 2), + (725, 87, 29), + (726, 87, 29), + (690, 87, 7), + (498, 87, 6), + (848, 87, 36), + (501, 87, 6), + (379, 87, 3), + (499, 87, 6), + (406, 87, 5), + (1048, 87, 59), + (30, 87, 43), + (29, 87, 43), + (407, 87, 5), + (82, 87, 19), + (79, 87, 19), + (405, 87, 5), + (621, 87, 2), + (989, 87, 1), + (661, 87, 21), + (564, 87, 16), + (293, 87, 49), + (761, 87, 56), + (659, 87, 21), + (691, 87, 7), + (294, 87, 49), + (987, 87, 1), + (562, 87, 16), + (1079, 87, 60), + (902, 87, 11), + (927, 87, 39), + (986, 87, 1), + (1025, 87, 23), + (762, 87, 56), + (878, 87, 9), + (1108, 87, 41), + (527, 87, 53), + (1077, 87, 60), + (252, 87, 25), + (773, 87, 13), + (339, 87, 21), + (363, 87, 2), + (362, 87, 2), + (278, 87, 20), + (13, 87, 18), + (740, 87, 23), + (250, 87, 25), + (775, 87, 13), + (741, 87, 23), + (279, 87, 20), + (429, 87, 28), + (309, 87, 24), + (543, 87, 7), + (587, 87, 2), + (586, 87, 2), + (161, 87, 26), + (125, 87, 11), + (589, 87, 2), + (100, 87, 19), + (545, 87, 7), + (164, 87, 26), + (645, 87, 9), + (224, 87, 6), + (673, 87, 4), + (225, 87, 6), + (709, 87, 12), + (511, 87, 22), + (432, 87, 28), + (65, 87, 8), + (162, 87, 26), + (193, 87, 27), + (710, 87, 12), + (43, 87, 26), + (430, 87, 28), + (191, 87, 27), + (1093, 87, 17), + (804, 87, 14), + (64, 87, 8), + (952, 87, 1), + (803, 87, 14), + (1009, 87, 10), + (863, 87, 4), + (951, 87, 1), + (892, 87, 5), + (1063, 87, 25), + (954, 87, 1), + (11, 87, 18), + (922, 51, 46), + (449, 51, 83), + (1101, 51, 49), + (73, 51, 22), + (399, 51, 6), + (554, 51, 19), + (70, 51, 22), + (452, 51, 83), + (842, 51, 43), + (894, 51, 13), + (236, 51, 16), + (812, 51, 40), + (785, 51, 37), + (1100, 51, 49), + (652, 51, 25), + (137, 51, 31), + (874, 51, 10), + (20, 51, 52), + (261, 51, 73), + (653, 51, 25), + (752, 51, 67), + (1071, 51, 72), + (348, 51, 61), + (606, 51, 3), + (174, 51, 75), + (317, 51, 69), + (520, 51, 64), + (49, 51, 77), + (609, 51, 3), + (974, 51, 1), + (518, 51, 64), + (971, 51, 1), + (830, 51, 29), + (92, 51, 37), + (299, 51, 115), + (667, 51, 13), + (671, 51, 6), + (576, 51, 2), + (832, 51, 29), + (156, 51, 50), + (4, 51, 35), + (942, 51, 1), + (735, 51, 111), + (1058, 51, 48), + (539, 51, 13), + (771, 51, 25), + (701, 51, 56), + (419, 51, 56), + (799, 51, 27), + (538, 51, 13), + (1060, 51, 48), + (572, 51, 3), + (220, 51, 11), + (1031, 51, 116), + (670, 51, 13), + (219, 51, 11), + (330, 51, 101), + (769, 51, 61), + (358, 51, 3), + (904, 51, 76), + (853, 51, 16), + (579, 51, 2), + (884, 51, 9), + (414, 51, 137), + (939, 51, 1), + (637, 51, 41), + (535, 51, 31), + (855, 51, 7), + (93, 51, 37), + (905, 51, 31), + (89, 51, 91), + (577, 51, 2), + (937, 51, 1), + (1084, 51, 81), + (415, 51, 137), + (857, 51, 7), + (1087, 51, 33), + (189, 51, 54), + (188, 51, 54), + (734, 51, 111), + (333, 51, 41), + (95, 51, 37), + (331, 51, 101), + (944, 51, 1), + (154, 51, 50), + (829, 51, 29), + (301, 51, 115), + (537, 51, 31), + (273, 51, 96), + (886, 51, 9), + (1033, 51, 116), + (936, 51, 1), + (826, 51, 71), + (941, 51, 1), + (41, 51, 52), + (636, 51, 41), + (854, 51, 16), + (639, 51, 17), + (121, 51, 21), + (59, 51, 36), + (300, 51, 115), + (153, 51, 124), + (40, 51, 128), + (1086, 51, 81), + (120, 51, 51), + (770, 51, 61), + (246, 51, 49), + (480, 51, 5), + (506, 51, 106), + (420, 51, 56), + (422, 51, 56), + (736, 51, 45), + (305, 51, 46), + (417, 51, 137), + (703, 51, 23), + (1004, 51, 19), + (1, 51, 86), + (217, 51, 26), + (1000, 51, 46), + (668, 51, 13), + (5, 51, 35), + (304, 51, 46), + (152, 51, 124), + (247, 51, 49), + (385, 51, 9), + (704, 51, 23), + (705, 51, 23), + (571, 51, 3), + (1032, 51, 116), + (1056, 51, 119), + (574, 51, 3), + (303, 51, 46), + (2, 51, 86), + (1026, 93, -3), + (325, 93, -10), + (381, 93, 1), + (531, 93, -9), + (626, 93, 1), + (31, 93, -7), + (34, 93, -7), + (629, 93, 1), + (822, 93, -5), + (213, 93, -12), + (469, 93, -13), + (211, 93, -12), + (472, 93, -13), + (821, 93, -5), + (991, 93, 1), + (994, 93, 1), + (696, 93, 0), + (849, 93, -6), + (530, 93, -9), + (353, 93, -9), + (355, 93, -9), + (85, 93, -3), + (83, 93, -3), + (565, 93, -2), + (327, 93, -10), + (694, 93, 0), + (410, 93, 0), + (763, 93, -10), + (113, 93, -8), + (1052, 93, -11), + (116, 93, -8), + (503, 93, 0), + (270, 93, -11), + (663, 93, -3), + (879, 93, -1), + (154, 93, -4), + (422, 93, -4), + (367, 93, 1), + (704, 93, -1), + (5, 93, -2), + (838, 93, -3), + (93, 93, -3), + (886, 93, 0), + (944, 93, 1), + (284, 93, -5), + (807, 93, -3), + (855, 93, 0), + (189, 93, -4), + (916, 93, -4), + (577, 93, 1), + (905, 93, -2), + (678, 93, 0), + (247, 93, -4), + (121, 93, -1), + (857, 93, 0), + (1087, 93, -2), + (188, 93, -4), + (420, 93, -4), + (246, 93, -4), + (16, 93, -4), + (41, 93, -4), + (964, 93, 1), + (394, 93, 1), + (677, 93, 0), + (579, 93, 1), + (961, 93, 1), + (869, 93, 0), + (599, 93, 1), + (829, 93, -2), + (941, 93, 1), + (1004, 93, -1), + (736, 93, -3), + (1096, 93, -4), + (303, 93, -4), + (305, 93, -4), + (228, 93, -1), + (596, 93, 1), + (942, 93, 1), + (442, 93, -7), + (747, 93, -6), + (1016, 93, -2), + (220, 93, 0), + (716, 93, -2), + (358, 93, 1), + (650, 93, -1), + (1058, 93, -4), + (1060, 93, -4), + (799, 93, -2), + (45, 93, -7), + (130, 93, -2), + (538, 93, 0), + (419, 93, -4), + (718, 93, -2), + (257, 93, -6), + (771, 93, -1), + (313, 93, -6), + (333, 93, -3), + (132, 93, -2), + (156, 93, -4), + (4, 93, -2), + (304, 93, -4), + (95, 93, -3), + (480, 93, 1), + (832, 93, -2), + (539, 93, 0), + (341, 93, -5), + (705, 93, -1), + (884, 93, 0), + (703, 93, -1), + (515, 93, -5), + (576, 93, 1), + (830, 93, -2), + (671, 93, 0), + (439, 93, -7), + (219, 93, 0), + (780, 93, -3), + (550, 93, -1), + (92, 93, -3), + (639, 93, -1), + (474, 52, 56), + (569, 52, 13), + (732, 52, 23), + (730, 52, 23), + (996, 52, 1), + (245, 52, 11), + (477, 52, 56), + (632, 52, 2), + (243, 52, 11), + (999, 52, 1), + (997, 52, 1), + (117, 52, 37), + (38, 52, 35), + (184, 52, 50), + (932, 52, 31), + (765, 52, 45), + (1053, 52, 47), + (57, 52, 52), + (475, 52, 56), + (699, 52, 6), + (903, 52, 9), + (851, 52, 29), + (882, 52, 7), + (411, 52, 4), + (881, 52, 7), + (382, 52, 3), + (934, 52, 31), + (1083, 52, 48), + (1082, 52, 48), + (767, 52, 45), + (505, 52, 5), + (794, 52, 25), + (384, 52, 3), + (271, 52, 49), + (567, 52, 13), + (356, 52, 41), + (244, 52, 11), + (824, 52, 27), + (634, 52, 2), + (933, 52, 31), + (795, 52, 25), + (1030, 52, 19), + (151, 52, 21), + (666, 52, 17), + (58, 52, 52), + (215, 52, 54), + (36, 52, 35), + (631, 52, 2), + (87, 52, 15), + (412, 52, 4), + (328, 52, 46), + (297, 52, 39), + (422, 52, 137), + (734, 52, 67), + (59, 52, 22), + (769, 52, 37), + (480, 52, 11), + (857, 52, 16), + (671, 52, 13), + (5, 52, 86), + (4, 52, 86), + (420, 52, 137), + (305, 52, 115), + (701, 52, 34), + (506, 52, 64), + (1032, 52, 70), + (1058, 52, 119), + (799, 52, 66), + (539, 52, 31), + (333, 52, 101), + (771, 52, 61), + (1000, 52, 28), + (303, 52, 115), + (1060, 52, 119), + (703, 52, 56), + (735, 52, 67), + (736, 52, 111), + (1031, 52, 70), + (304, 52, 115), + (1004, 52, 46), + (705, 52, 56), + (121, 52, 51), + (330, 52, 61), + (246, 52, 121), + (704, 52, 56), + (247, 52, 121), + (639, 52, 41), + (829, 52, 71), + (1087, 52, 81), + (189, 52, 133), + (855, 52, 16), + (93, 52, 91), + (770, 52, 37), + (905, 52, 76), + (188, 52, 133), + (1033, 52, 70), + (886, 52, 21), + (41, 52, 128), + (538, 52, 31), + (95, 52, 91), + (637, 52, 25), + (154, 52, 124), + (92, 52, 91), + (219, 52, 26), + (156, 52, 124), + (120, 52, 31), + (220, 52, 26), + (636, 52, 25), + (331, 52, 61), + (832, 52, 71), + (830, 52, 71), + (884, 52, 21), + (574, 52, 3), + (1086, 52, 49), + (572, 52, 3), + (415, 52, 83), + (576, 52, 3), + (904, 52, 46), + (670, 52, 9), + (217, 52, 16), + (939, 52, 1), + (414, 52, 83), + (537, 52, 19), + (299, 52, 69), + (89, 52, 55), + (941, 52, 1), + (1084, 52, 49), + (668, 52, 9), + (571, 52, 3), + (153, 52, 75), + (300, 52, 69), + (1056, 52, 72), + (853, 52, 10), + (937, 52, 1), + (577, 52, 3), + (1, 52, 52), + (579, 52, 3), + (535, 52, 19), + (667, 52, 9), + (419, 52, 137), + (385, 52, 6), + (944, 52, 1), + (417, 52, 83), + (40, 52, 77), + (936, 52, 1), + (942, 52, 1), + (2, 52, 52), + (273, 52, 58), + (301, 52, 69), + (152, 52, 75), + (826, 52, 43), + (854, 52, 10), + (358, 52, 6), + (518, 53, 64), + (346, 53, 61), + (752, 53, 67), + (790, 53, 25), + (49, 53, 77), + (817, 53, 27), + (50, 53, 77), + (174, 53, 75), + (981, 53, 1), + (239, 53, 11), + (175, 53, 75), + (723, 53, 23), + (971, 53, 1), + (900, 53, 9), + (202, 53, 80), + (240, 53, 11), + (261, 53, 73), + (607, 53, 3), + (398, 53, 6), + (925, 53, 31), + (262, 53, 73), + (982, 53, 1), + (657, 53, 17), + (617, 53, 2), + (812, 53, 40), + (894, 53, 13), + (449, 53, 83), + (235, 53, 16), + (721, 53, 34), + (377, 53, 3), + (652, 53, 25), + (876, 53, 7), + (972, 53, 1), + (70, 53, 22), + (71, 53, 22), + (555, 53, 19), + (554, 53, 19), + (403, 53, 4), + (493, 53, 5), + (921, 53, 46), + (372, 53, 4), + (19, 53, 52), + (1100, 53, 49), + (494, 53, 5), + (143, 53, 21), + (616, 53, 2), + (450, 53, 83), + (844, 53, 29), + (606, 53, 3), + (816, 53, 27), + (842, 53, 43), + (144, 53, 21), + (1084, 53, 81), + (1045, 53, 47), + (414, 53, 137), + (153, 53, 124), + (758, 53, 45), + (904, 53, 76), + (759, 53, 45), + (205, 53, 54), + (1000, 53, 46), + (936, 53, 1), + (1105, 53, 33), + (459, 53, 56), + (571, 53, 3), + (734, 53, 111), + (415, 53, 137), + (701, 53, 56), + (636, 53, 41), + (1032, 53, 116), + (524, 53, 43), + (330, 53, 101), + (769, 53, 61), + (89, 53, 91), + (572, 53, 3), + (299, 53, 115), + (668, 53, 13), + (535, 53, 31), + (351, 53, 41), + (152, 53, 124), + (25, 53, 35), + (2, 53, 86), + (1, 53, 86), + (111, 53, 37), + (385, 53, 9), + (59, 53, 36), + (291, 53, 39), + (460, 53, 56), + (853, 53, 16), + (320, 53, 46), + (1031, 53, 116), + (826, 53, 71), + (120, 53, 51), + (937, 53, 1), + (300, 53, 115), + (667, 53, 13), + (331, 53, 101), + (26, 53, 35), + (1106, 53, 33), + (959, 111, 1), + (592, 111, 1), + (591, 111, 1), + (594, 111, 1), + (957, 111, 1), + (956, 111, 1), + (1065, 111, 13), + (654, 111, 3), + (492, 111, 1), + (311, 111, 12), + (491, 111, 1), + (127, 111, 6), + (310, 111, 12), + (683, 111, 2), + (1067, 111, 13), + (685, 111, 2), + (686, 111, 2), + (684, 111, 2), + (875, 111, 2), + (255, 111, 13), + (896, 111, 2), + (401, 111, 1), + (898, 111, 2), + (897, 111, 2), + (237, 111, 2), + (166, 111, 13), + (168, 111, 13), + (1012, 111, 5), + (557, 111, 2), + (558, 111, 2), + (1013, 111, 5), + (74, 111, 2), + (75, 111, 2), + (675, 111, 2), + (129, 111, 6), + (610, 111, 1), + (912, 111, 9), + (1095, 111, 9), + (805, 111, 7), + (975, 111, 1), + (777, 111, 7), + (15, 111, 9), + (14, 111, 9), + (977, 111, 1), + (102, 111, 10), + (979, 111, 1), + (103, 111, 10), + (976, 111, 1), + (254, 111, 13), + (281, 111, 11), + (44, 111, 14), + (712, 111, 7), + (340, 111, 11), + (513, 111, 11), + (612, 111, 1), + (614, 111, 1), + (713, 111, 7), + (743, 111, 12), + (611, 111, 1), + (373, 111, 1), + (375, 111, 1), + (1036, 111, 13), + (374, 111, 1), + (776, 111, 7), + (1074, 111, 6), + (165, 111, 13), + (349, 111, 5), + (522, 111, 5), + (754, 111, 5), + (911, 111, 9), + (755, 111, 5), + (400, 111, 1), + (1042, 111, 6), + (264, 111, 6), + (266, 111, 6), + (263, 111, 6), + (389, 111, 2), + (290, 111, 5), + (1073, 111, 6), + (289, 111, 5), + (1072, 111, 6), + (392, 111, 2), + (177, 111, 6), + (176, 111, 6), + (52, 111, 6), + (203, 111, 6), + (204, 111, 6), + (390, 111, 2), + (453, 111, 6), + (455, 111, 6), + (457, 111, 6), + (454, 111, 6), + (318, 111, 6), + (814, 111, 4), + (1021, 111, 3), + (138, 111, 3), + (195, 111, 14), + (141, 111, 3), + (139, 111, 3), + (786, 111, 3), + (435, 111, 15), + (548, 111, 4), + (787, 111, 3), + (437, 111, 15), + (789, 111, 3), + (547, 111, 4), + (350, 111, 5), + (434, 111, 15), + (365, 111, 1), + (227, 111, 3), + (923, 111, 4), + (893, 111, 3), + (1102, 111, 4), + (1103, 111, 4), + (865, 111, 3), + (21, 111, 4), + (23, 111, 4), + (108, 111, 5), + (868, 111, 3), + (866, 111, 3), + (110, 111, 5), + (813, 111, 4), + (439, 111, 9), + (132, 111, 4), + (515, 111, 7), + (440, 111, 9), + (914, 111, 6), + (130, 111, 4), + (442, 111, 9), + (916, 111, 6), + (67, 111, 3), + (838, 111, 5), + (747, 111, 8), + (807, 111, 5), + (550, 111, 3), + (780, 111, 5), + (284, 111, 7), + (746, 111, 8), + (282, 111, 7), + (717, 111, 4), + (131, 111, 4), + (1016, 111, 4), + (313, 111, 8), + (104, 111, 6), + (718, 111, 4), + (1096, 111, 6), + (341, 111, 7), + (650, 111, 3), + (46, 111, 9), + (258, 111, 8), + (16, 111, 6), + (45, 111, 9), + (716, 111, 4), + (257, 111, 8), + (196, 111, 9), + (342, 111, 7), + (229, 111, 3), + (869, 111, 2), + (596, 111, 1), + (367, 111, 1), + (961, 111, 1), + (964, 111, 1), + (962, 111, 1), + (228, 111, 3), + (597, 111, 1), + (484, 111, 2), + (677, 111, 2), + (599, 111, 1), + (394, 111, 1), + (549, 111, 3), + (678, 111, 2), + (287, 54, 39), + (293, 54, 58), + (928, 54, 46), + (199, 54, 54), + (719, 54, 23), + (29, 54, 52), + (180, 54, 75), + (173, 54, 50), + (405, 54, 6), + (1024, 54, 28), + (749, 54, 45), + (839, 54, 29), + (989, 54, 1), + (467, 54, 83), + (407, 54, 6), + (725, 54, 34), + (986, 54, 1), + (919, 54, 31), + (209, 54, 80), + (726, 54, 34), + (172, 54, 50), + (1109, 54, 49), + (444, 54, 56), + (517, 54, 43), + (988, 54, 1), + (604, 54, 2), + (840, 54, 29), + (294, 54, 58), + (82, 54, 22), + (1099, 54, 33), + (323, 54, 69), + (810, 54, 27), + (1108, 54, 49), + (878, 54, 10), + (987, 54, 1), + (621, 54, 3), + (1049, 54, 70), + (601, 54, 2), + (553, 54, 13), + (623, 54, 3), + (28, 54, 52), + (966, 54, 1), + (969, 54, 1), + (30, 54, 52), + (286, 54, 39), + (622, 54, 3), + (1050, 54, 70), + (80, 54, 22), + (748, 54, 45), + (395, 54, 4), + (692, 54, 9), + (48, 54, 52), + (820, 54, 40), + (624, 54, 3), + (54, 54, 77), + (464, 54, 83), + (528, 54, 64), + (659, 54, 25), + (562, 54, 19), + (406, 54, 6), + (782, 54, 25), + (750, 54, 45), + (681, 54, 6), + (1017, 54, 19), + (527, 54, 64), + (371, 54, 3), + (967, 54, 1), + (379, 54, 4), + (105, 54, 37), + (17, 54, 35), + (396, 54, 4), + (564, 54, 19), + (720, 54, 23), + (1039, 54, 47), + (1048, 54, 70), + (660, 54, 25), + (370, 54, 3), + (489, 54, 5), + (1018, 54, 19), + (208, 54, 80), + (848, 54, 43), + (500, 54, 7), + (902, 54, 13), + (107, 54, 37), + (791, 54, 37), + (1025, 54, 28), + (314, 54, 46), + (501, 54, 7), + (661, 54, 25), + (466, 54, 83), + (761, 54, 67), + (792, 54, 37), + (445, 54, 56), + (691, 54, 9), + (135, 54, 21), + (927, 54, 46), + (563, 54, 19), + (602, 54, 2), + (783, 54, 25), + (499, 54, 7), + (81, 54, 22), + (1077, 54, 72), + (809, 54, 27), + (488, 54, 5), + (233, 54, 11), + (259, 54, 49), + (1019, 54, 19), + (1069, 54, 48), + (487, 54, 5), + (231, 54, 11), + (344, 54, 41), + (1079, 54, 72), + (690, 54, 9), + (79, 54, 22), + (465, 54, 83), + (207, 54, 80), + (762, 54, 67), + (447, 54, 56), + (315, 54, 46), + (498, 54, 7), + (1078, 54, 72), + (1033, 54, 116), + (1056, 54, 119), + (535, 54, 31), + (1086, 54, 81), + (506, 54, 106), + (1032, 54, 116), + (186, 54, 133), + (939, 54, 1), + (574, 54, 3), + (1000, 54, 46), + (89, 54, 91), + (537, 54, 31), + (414, 54, 137), + (217, 54, 26), + (770, 54, 61), + (153, 54, 124), + (1031, 54, 116), + (357, 54, 6), + (734, 54, 111), + (637, 54, 41), + (415, 54, 137), + (668, 54, 13), + (937, 54, 1), + (1085, 54, 81), + (853, 54, 16), + (330, 54, 101), + (702, 54, 56), + (769, 54, 61), + (536, 54, 31), + (938, 54, 1), + (120, 54, 51), + (385, 54, 9), + (1, 54, 86), + (152, 54, 124), + (854, 54, 16), + (571, 54, 3), + (39, 54, 128), + (701, 54, 56), + (417, 54, 137), + (40, 54, 128), + (299, 54, 115), + (572, 54, 3), + (936, 54, 1), + (573, 54, 3), + (416, 54, 137), + (827, 54, 71), + (478, 54, 11), + (2, 54, 86), + (667, 54, 13), + (301, 54, 115), + (797, 54, 66), + (904, 54, 76), + (669, 54, 13), + (1084, 54, 81), + (273, 54, 96), + (636, 54, 41), + (735, 54, 111), + (331, 54, 101), + (670, 54, 13), + (1001, 54, 46), + (826, 54, 71), + (90, 54, 91), + (300, 54, 115), + (59, 54, 36), + (336, 91, 26), + (930, 91, 9), + (481, 91, 3), + (149, 91, 6), + (1026, 91, 6), + (1110, 91, 9), + (352, 91, 11), + (98, 91, 23), + (993, 91, 1), + (542, 91, 9), + (96, 91, 23), + (1111, 91, 9), + (63, 91, 10), + (624, 91, 1), + (424, 91, 35), + (529, 91, 12), + (408, 91, 2), + (1028, 91, 6), + (335, 91, 26), + (622, 91, 1), + (890, 91, 6), + (464, 91, 21), + (889, 91, 6), + (8, 91, 22), + (738, 91, 29), + (360, 91, 2), + (425, 91, 35), + (1027, 91, 6), + (353, 91, 11), + (380, 91, 2), + (355, 91, 11), + (1048, 91, 18), + (294, 91, 15), + (354, 91, 11), + (887, 91, 6), + (62, 91, 10), + (31, 91, 10), + (691, 91, 3), + (987, 91, 1), + (1049, 91, 18), + (848, 91, 12), + (849, 91, 8), + (7, 91, 22), + (508, 91, 27), + (690, 91, 3), + (275, 91, 25), + (888, 91, 6), + (858, 91, 5), + (381, 91, 2), + (427, 91, 35), + (222, 91, 7), + (509, 91, 27), + (276, 91, 25), + (527, 91, 17), + (822, 91, 8), + (850, 91, 8), + (114, 91, 10), + (821, 91, 8), + (990, 91, 1), + (115, 91, 10), + (221, 91, 7), + (1025, 91, 8), + (409, 91, 2), + (1109, 91, 13), + (989, 91, 1), + (659, 91, 7), + (207, 91, 21), + (148, 91, 6), + (295, 91, 11), + (728, 91, 7), + (661, 91, 7), + (860, 91, 5), + (891, 91, 6), + (986, 91, 1), + (99, 91, 23), + (739, 91, 29), + (762, 91, 18), + (727, 91, 7), + (1050, 91, 18), + (208, 91, 21), + (541, 91, 9), + (337, 91, 26), + (540, 91, 9), + (1024, 91, 8), + (929, 91, 9), + (113, 91, 10), + (32, 91, 10), + (672, 91, 4), + (97, 91, 23), + (859, 91, 5), + (116, 91, 10), + (33, 91, 10), + (834, 91, 19), + (1080, 91, 13), + (946, 91, 1), + (124, 91, 13), + (181, 91, 13), + (878, 91, 3), + (627, 91, 1), + (949, 91, 1), + (694, 91, 2), + (123, 91, 13), + (183, 91, 13), + (182, 91, 13), + (625, 91, 1), + (706, 91, 15), + (696, 91, 2), + (835, 91, 19), + (29, 91, 14), + (82, 91, 6), + (530, 91, 12), + (991, 91, 1), + (1007, 91, 12), + (405, 91, 2), + (327, 91, 12), + (565, 91, 4), + (908, 91, 20), + (122, 91, 13), + (1061, 91, 31), + (306, 91, 29), + (158, 91, 32), + (945, 91, 1), + (241, 91, 4), + (726, 91, 9), + (906, 91, 20), + (465, 91, 21), + (879, 91, 3), + (55, 91, 14), + (663, 91, 5), + (498, 91, 3), + (693, 91, 2), + (212, 91, 14), + (501, 91, 3), + (471, 91, 15), + (927, 91, 12), + (502, 91, 2), + (469, 91, 15), + (213, 91, 14), + (1079, 91, 19), + (503, 91, 2), + (468, 91, 15), + (160, 91, 32), + (772, 91, 16), + (504, 91, 2), + (1077, 91, 19), + (211, 91, 14), + (800, 91, 17), + (79, 91, 6), + (1062, 91, 31), + (708, 91, 15), + (695, 91, 2), + (472, 91, 15), + (833, 91, 19), + (499, 91, 3), + (470, 91, 15), + (948, 91, 1), + (791, 91, 10), + (628, 91, 1), + (947, 91, 1), + (707, 91, 15), + (157, 91, 32), + (159, 91, 32), + (210, 91, 14), + (902, 91, 4), + (580, 91, 2), + (801, 91, 17), + (1091, 91, 21), + (1088, 91, 21), + (581, 91, 2), + (763, 91, 12), + (662, 91, 5), + (379, 91, 2), + (626, 91, 1), + (28, 91, 14), + (293, 91, 15), + (564, 91, 6), + (1051, 91, 13), + (642, 91, 11), + (584, 91, 2), + (325, 91, 12), + (1052, 91, 13), + (84, 91, 5), + (269, 91, 13), + (248, 91, 31), + (61, 91, 10), + (531, 91, 12), + (621, 91, 1), + (426, 91, 35), + (992, 91, 1), + (9, 91, 22), + (359, 91, 2), + (1108, 91, 13), + (641, 91, 11), + (664, 91, 5), + (764, 91, 12), + (410, 91, 2), + (761, 91, 18), + (665, 91, 5), + (34, 91, 10), + (30, 91, 14), + (80, 91, 6), + (994, 91, 1), + (1034, 91, 30), + (467, 91, 21), + (1090, 91, 21), + (180, 91, 19), + (83, 91, 5), + (85, 91, 5), + (629, 91, 1), + (1005, 91, 12), + (307, 91, 29), + (583, 91, 2), + (406, 91, 2), + (407, 91, 2), + (270, 91, 13), + (324, 91, 12), + (326, 91, 12), + (42, 91, 33), + (1089, 91, 21), + (423, 91, 35), + (907, 91, 20), + (582, 91, 2), + (725, 91, 9), + (562, 91, 6), + (1006, 91, 12), + (683, 90, 3), + (237, 90, 5), + (744, 90, 29), + (910, 90, 20), + (610, 90, 1), + (373, 90, 2), + (896, 90, 4), + (714, 90, 15), + (128, 90, 13), + (1066, 90, 31), + (742, 90, 29), + (654, 90, 7), + (1014, 90, 12), + (453, 90, 21), + (194, 90, 34), + (958, 90, 1), + (1035, 90, 30), + (456, 90, 21), + (391, 90, 3), + (593, 90, 2), + (364, 90, 2), + (238, 90, 5), + (975, 90, 1), + (167, 90, 32), + (126, 90, 13), + (590, 90, 2), + (978, 90, 1), + (253, 90, 31), + (433, 90, 35), + (366, 90, 2), + (955, 90, 1), + (836, 90, 19), + (436, 90, 35), + (512, 90, 27), + (613, 90, 1), + (74, 90, 6), + (101, 90, 23), + (557, 90, 6), + (813, 90, 11), + (674, 90, 4), + (756, 90, 18), + (655, 90, 7), + (786, 90, 10), + (646, 90, 11), + (815, 90, 11), + (319, 90, 18), + (521, 90, 17), + (867, 90, 5), + (483, 90, 3), + (138, 90, 9), + (289, 90, 15), + (546, 90, 9), + (22, 90, 14), + (1043, 90, 18), + (66, 90, 10), + (647, 90, 11), + (1102, 90, 13), + (108, 90, 15), + (140, 90, 9), + (754, 90, 18), + (924, 90, 12), + (788, 90, 10), + (226, 90, 7), + (109, 90, 15), + (1022, 90, 8), + (864, 90, 5), + (1011, 90, 12), + (265, 90, 19), + (861, 90, 3), + (1064, 90, 13), + (388, 90, 2), + (10, 90, 10), + (862, 90, 3), + (804, 90, 8), + (280, 90, 11), + (1092, 90, 9), + (361, 90, 2), + (251, 90, 13), + (741, 90, 12), + (774, 90, 7), + (802, 90, 8), + (363, 90, 2), + (12, 90, 10), + (338, 90, 11), + (279, 90, 11), + (277, 90, 11), + (65, 90, 5), + (11, 90, 10), + (710, 90, 7), + (952, 90, 1), + (950, 90, 1), + (644, 90, 5), + (431, 90, 15), + (162, 90, 13), + (643, 90, 5), + (223, 90, 4), + (191, 90, 14), + (585, 90, 1), + (192, 90, 14), + (482, 90, 2), + (587, 90, 1), + (588, 90, 1), + (543, 90, 4), + (1094, 90, 9), + (510, 90, 12), + (190, 90, 14), + (1008, 90, 6), + (892, 90, 3), + (163, 90, 13), + (544, 90, 4), + (308, 90, 12), + (428, 90, 15), + (711, 90, 7), + (1010, 90, 6), + (249, 90, 13), + (909, 90, 9), + (953, 90, 1), + (1009, 90, 6), + (1063, 90, 13), + (430, 90, 15), + (250, 90, 13), + (407, 55, 9), + (989, 55, 1), + (750, 55, 67), + (1042, 55, 47), + (840, 55, 43), + (919, 55, 46), + (680, 55, 9), + (782, 55, 37), + (1021, 55, 19), + (209, 55, 133), + (109, 55, 37), + (564, 55, 31), + (788, 55, 25), + (1050, 55, 116), + (1099, 55, 49), + (651, 55, 25), + (260, 55, 73), + (611, 55, 2), + (1022, 55, 19), + (976, 55, 1), + (454, 55, 56), + (979, 55, 1), + (82, 55, 36), + (726, 55, 56), + (897, 55, 9), + (199, 55, 80), + (467, 55, 137), + (839, 55, 43), + (173, 55, 75), + (110, 55, 37), + (491, 55, 5), + (553, 55, 19), + (966, 55, 1), + (614, 55, 2), + (141, 55, 21), + (1074, 55, 48), + (969, 55, 1), + (54, 55, 128), + (820, 55, 66), + (720, 55, 34), + (528, 55, 106), + (286, 55, 58), + (492, 55, 5), + (374, 55, 3), + (140, 55, 21), + (624, 55, 3), + (1098, 55, 49), + (522, 55, 43), + (232, 55, 16), + (400, 55, 4), + (521, 55, 43), + (748, 55, 67), + (1043, 55, 47), + (928, 55, 76), + (684, 55, 6), + (345, 55, 61), + (692, 55, 13), + (265, 55, 49), + (200, 55, 80), + (686, 55, 6), + (371, 55, 4), + (1017, 55, 28), + (681, 55, 9), + (68, 55, 22), + (139, 55, 21), + (755, 55, 45), + (349, 55, 41), + (623, 55, 3), + (396, 55, 6), + (1039, 55, 70), + (756, 55, 45), + (878, 55, 16), + (613, 55, 2), + (290, 55, 39), + (814, 55, 27), + (968, 55, 1), + (81, 55, 36), + (1079, 55, 119), + (792, 55, 61), + (1069, 55, 72), + (447, 55, 83), + (558, 55, 13), + (815, 55, 27), + (988, 55, 1), + (263, 55, 49), + (466, 55, 137), + (176, 55, 50), + (1019, 55, 28), + (603, 55, 3), + (177, 55, 50), + (22, 55, 35), + (848, 55, 71), + (1103, 55, 33), + (501, 55, 11), + (1109, 55, 81), + (294, 55, 96), + (446, 55, 83), + (233, 55, 16), + (552, 55, 19), + (319, 55, 46), + (918, 55, 46), + (106, 55, 55), + (500, 55, 11), + (871, 55, 10), + (134, 55, 31), + (259, 55, 73), + (231, 55, 16), + (655, 55, 17), + (204, 55, 54), + (323, 55, 115), + (489, 55, 7), + (978, 55, 1), + (563, 55, 31), + (604, 55, 3), + (789, 55, 25), + (762, 55, 111), + (135, 55, 31), + (809, 55, 40), + (314, 55, 69), + (601, 55, 3), + (23, 55, 35), + (238, 55, 11), + (517, 55, 64), + (456, 55, 56), + (444, 55, 83), + (487, 55, 7), + (660, 55, 41), + (924, 55, 31), + (1072, 55, 48), + (661, 55, 41), + (266, 55, 49), + (1078, 55, 119), + (30, 55, 86), + (811, 55, 40), + (457, 55, 56), + (107, 55, 55), + (248, 56, 121), + (785, 56, 37), + (707, 56, 56), + (9, 56, 86), + (608, 56, 3), + (449, 56, 83), + (784, 56, 37), + (61, 56, 36), + (1041, 56, 70), + (426, 56, 137), + (49, 56, 77), + (236, 56, 16), + (948, 56, 1), + (606, 56, 3), + (1088, 56, 81), + (556, 56, 19), + (137, 56, 31), + (894, 56, 13), + (160, 56, 124), + (581, 56, 3), + (609, 56, 3), + (1007, 56, 46), + (174, 56, 75), + (946, 56, 1), + (124, 56, 51), + (653, 56, 25), + (1070, 56, 72), + (42, 56, 128), + (907, 56, 76), + (835, 56, 71), + (72, 56, 22), + (873, 56, 10), + (158, 56, 124), + (70, 56, 22), + (1071, 56, 72), + (123, 56, 51), + (73, 56, 22), + (908, 56, 76), + (682, 56, 9), + (583, 56, 3), + (316, 56, 69), + (261, 56, 73), + (1091, 56, 81), + (708, 56, 56), + (584, 56, 3), + (895, 56, 13), + (949, 56, 1), + (554, 56, 19), + (399, 56, 6), + (51, 56, 77), + (452, 56, 83), + (874, 56, 10), + (307, 56, 115), + (652, 56, 25), + (1006, 56, 46), + (834, 56, 71), + (1090, 56, 81), + (317, 56, 69), + (801, 56, 66), + (1062, 56, 119), + (738, 56, 111), + (62, 56, 36), + (427, 56, 137), + (888, 56, 21), + (672, 56, 13), + (519, 56, 64), + (451, 56, 83), + (509, 56, 106), + (275, 56, 96), + (97, 56, 91), + (859, 56, 16), + (518, 56, 64), + (8, 56, 86), + (753, 56, 67), + (520, 56, 64), + (860, 56, 16), + (739, 56, 111), + (922, 56, 46), + (973, 56, 1), + (971, 56, 1), + (222, 56, 26), + (752, 56, 67), + (1101, 56, 49), + (20, 56, 52), + (890, 56, 21), + (974, 56, 1), + (63, 56, 36), + (424, 56, 137), + (347, 56, 61), + (360, 56, 6), + (99, 56, 91), + (1100, 56, 49), + (812, 56, 40), + (842, 56, 43), + (336, 56, 101), + (542, 56, 31), + (891, 56, 21), + (337, 56, 101), + (348, 56, 61), + (843, 56, 43), + (670, 56, 6), + (413, 56, 56), + (700, 56, 23), + (770, 56, 25), + (701, 56, 23), + (667, 56, 6), + (735, 56, 45), + (414, 56, 56), + (702, 56, 23), + (185, 56, 54), + (796, 56, 27), + (883, 56, 9), + (852, 56, 7), + (417, 56, 56), + (1084, 56, 33), + (506, 56, 43), + (1085, 56, 33), + (186, 56, 54), + (733, 56, 45), + (416, 56, 56), + (1086, 56, 33), + (768, 56, 25), + (854, 56, 7), + (669, 56, 6), + (40, 56, 52), + (853, 56, 7), + (299, 56, 46), + (1056, 56, 48), + (797, 56, 27), + (537, 56, 13), + (119, 56, 21), + (535, 56, 13), + (273, 56, 39), + (635, 56, 17), + (571, 56, 2), + (536, 56, 13), + (939, 56, 1), + (1055, 56, 48), + (570, 56, 2), + (936, 56, 1), + (574, 56, 2), + (534, 56, 13), + (1001, 56, 19), + (827, 56, 29), + (1, 56, 35), + (90, 56, 37), + (825, 56, 29), + (1031, 56, 47), + (1033, 56, 47), + (298, 56, 46), + (329, 56, 41), + (217, 56, 11), + (938, 56, 1), + (301, 56, 46), + (637, 56, 17), + (826, 56, 29), + (636, 56, 17), + (152, 56, 50), + (935, 56, 1), + (88, 56, 37), + (478, 56, 5), + (330, 56, 41), + (357, 56, 3), + (573, 56, 2), + (39, 56, 52), + (984, 57, 1), + (925, 57, 31), + (493, 57, 5), + (653, 57, 25), + (520, 57, 64), + (974, 57, 1), + (619, 57, 2), + (900, 57, 9), + (652, 57, 25), + (399, 57, 6), + (377, 57, 3), + (317, 57, 69), + (842, 57, 43), + (874, 57, 10), + (816, 57, 27), + (236, 57, 16), + (403, 57, 4), + (49, 57, 77), + (894, 57, 13), + (1023, 57, 19), + (20, 57, 52), + (449, 57, 83), + (348, 57, 61), + (1101, 57, 49), + (1100, 57, 49), + (143, 57, 21), + (174, 57, 75), + (239, 57, 11), + (981, 57, 1), + (73, 57, 22), + (561, 57, 13), + (818, 57, 27), + (922, 57, 46), + (1071, 57, 72), + (70, 57, 22), + (518, 57, 64), + (554, 57, 19), + (723, 57, 23), + (77, 57, 15), + (812, 57, 40), + (688, 57, 6), + (724, 57, 23), + (496, 57, 5), + (452, 57, 83), + (606, 57, 3), + (785, 57, 37), + (137, 57, 31), + (261, 57, 73), + (971, 57, 1), + (146, 57, 21), + (752, 57, 67), + (616, 57, 2), + (846, 57, 29), + (609, 57, 3), + (667, 57, 13), + (1084, 57, 81), + (636, 57, 41), + (701, 57, 56), + (853, 57, 16), + (299, 57, 115), + (758, 57, 45), + (27, 57, 35), + (414, 57, 137), + (936, 57, 1), + (535, 57, 31), + (826, 57, 71), + (1, 57, 86), + (462, 57, 56), + (152, 57, 124), + (1076, 57, 48), + (25, 57, 35), + (320, 57, 46), + (459, 57, 56), + (111, 57, 37), + (351, 57, 41), + (1046, 57, 47), + (178, 57, 50), + (571, 57, 3), + (1031, 57, 116), + (1105, 57, 33), + (330, 57, 101), + (112, 57, 37), + (238, 58, 16), + (788, 58, 37), + (593, 58, 2), + (456, 58, 83), + (1066, 58, 48), + (521, 58, 64), + (23, 58, 52), + (756, 58, 67), + (958, 58, 1), + (978, 58, 1), + (789, 58, 37), + (457, 58, 83), + (255, 58, 49), + (266, 58, 73), + (512, 58, 43), + (168, 58, 50), + (109, 58, 55), + (513, 58, 43), + (1022, 58, 28), + (141, 58, 31), + (912, 58, 31), + (492, 58, 7), + (392, 58, 4), + (1074, 58, 72), + (66, 58, 15), + (924, 58, 46), + (836, 58, 29), + (675, 58, 6), + (177, 58, 75), + (594, 58, 2), + (437, 58, 56), + (436, 58, 56), + (655, 58, 25), + (103, 58, 37), + (805, 58, 27), + (868, 58, 7), + (979, 58, 1), + (777, 58, 25), + (195, 58, 54), + (22, 58, 52), + (522, 58, 64), + (647, 58, 17), + (319, 58, 69), + (227, 58, 11), + (1014, 58, 19), + (204, 58, 80), + (815, 58, 40), + (1103, 58, 49), + (129, 58, 21), + (391, 58, 4), + (290, 58, 58), + (613, 58, 3), + (110, 58, 55), + (686, 58, 9), + (959, 58, 1), + (674, 58, 6), + (614, 58, 3), + (867, 58, 7), + (1043, 58, 70), + (128, 58, 21), + (265, 58, 73), + (366, 58, 3), + (548, 58, 13), + (1067, 58, 48), + (140, 58, 31), + (167, 58, 50), + (714, 58, 23), + (744, 58, 45), + (1010, 58, 46), + (1064, 58, 119), + (164, 58, 124), + (251, 58, 121), + (252, 58, 121), + (225, 58, 26), + (544, 58, 31), + (432, 58, 137), + (193, 58, 133), + (388, 58, 9), + (511, 58, 106), + (192, 58, 133), + (431, 58, 137), + (589, 58, 3), + (909, 58, 76), + (280, 58, 96), + (588, 58, 3), + (545, 58, 31), + (711, 58, 56), + (774, 58, 61), + (13, 58, 86), + (645, 58, 41), + (775, 58, 61), + (644, 58, 41), + (100, 58, 91), + (125, 58, 51), + (12, 58, 86), + (954, 58, 1), + (43, 58, 128), + (163, 58, 124), + (953, 58, 1), + (863, 58, 16), + (1094, 58, 81), + (862, 58, 16), + (456, 59, 137), + (383, 59, 3), + (836, 59, 43), + (743, 59, 67), + (823, 59, 27), + (1066, 59, 72), + (756, 59, 111), + (655, 59, 41), + (714, 59, 34), + (1065, 59, 72), + (1022, 59, 46), + (1043, 59, 116), + (167, 59, 75), + (1054, 59, 47), + (674, 59, 9), + (1036, 59, 70), + (893, 59, 13), + (310, 59, 69), + (956, 59, 1), + (434, 59, 83), + (613, 59, 3), + (436, 59, 83), + (14, 59, 52), + (272, 59, 49), + (389, 59, 6), + (66, 59, 22), + (391, 59, 6), + (127, 59, 31), + (998, 59, 1), + (216, 59, 54), + (766, 59, 45), + (22, 59, 86), + (319, 59, 115), + (865, 59, 10), + (815, 59, 66), + (744, 59, 67), + (568, 59, 13), + (911, 59, 46), + (150, 59, 21), + (533, 59, 43), + (165, 59, 75), + (1014, 59, 28), + (140, 59, 51), + (731, 59, 23), + (512, 59, 64), + (591, 59, 3), + (109, 59, 91), + (238, 59, 26), + (265, 59, 121), + (521, 59, 106), + (593, 59, 3), + (924, 59, 76), + (37, 59, 35), + (340, 59, 61), + (698, 59, 6), + (476, 59, 56), + (254, 59, 73), + (118, 59, 37), + (647, 59, 25), + (1012, 59, 28), + (128, 59, 31), + (958, 59, 1), + (366, 59, 4), + (633, 59, 2), + (978, 59, 1), + (867, 59, 10), + (788, 59, 61), + (86, 59, 15), + (712, 59, 34), + (900, 60, 13), + (616, 60, 3), + (234, 60, 11), + (78, 60, 36), + (605, 60, 2), + (179, 60, 124), + (816, 60, 40), + (687, 60, 9), + (80, 60, 36), + (659, 60, 41), + (372, 60, 3), + (982, 60, 1), + (79, 60, 36), + (559, 60, 19), + (207, 60, 133), + (147, 60, 51), + (894, 60, 9), + (403, 60, 6), + (876, 60, 10), + (617, 60, 3), + (293, 60, 96), + (239, 60, 16), + (817, 60, 40), + (844, 60, 43), + (377, 60, 4), + (872, 60, 7), + (970, 60, 1), + (240, 60, 16), + (562, 60, 31), + (402, 60, 6), + (464, 60, 137), + (28, 60, 86), + (494, 60, 7), + (1024, 60, 46), + (490, 60, 5), + (980, 60, 1), + (180, 60, 124), + (1025, 60, 46), + (397, 60, 4), + (725, 60, 56), + (972, 60, 1), + (465, 60, 137), + (615, 60, 3), + (208, 60, 133), + (376, 60, 4), + (607, 60, 2), + (899, 60, 13), + (981, 60, 1), + (463, 60, 137), + (606, 60, 2), + (493, 60, 7), + (449, 60, 56), + (971, 60, 1), + (398, 60, 4), + (554, 60, 13), + (1020, 60, 19), + (652, 60, 17), + (69, 60, 15), + (721, 60, 23), + (518, 60, 43), + (657, 60, 25), + (656, 60, 25), + (405, 60, 9), + (987, 60, 1), + (902, 60, 21), + (202, 60, 54), + (497, 60, 11), + (1047, 60, 116), + (29, 60, 86), + (812, 60, 27), + (268, 60, 121), + (1049, 60, 116), + (288, 60, 39), + (175, 60, 50), + (142, 60, 31), + (819, 60, 66), + (926, 60, 76), + (841, 60, 29), + (71, 60, 15), + (620, 60, 3), + (622, 60, 3), + (144, 60, 31), + (18, 60, 35), + (752, 60, 45), + (526, 60, 106), + (70, 60, 15), + (527, 60, 106), + (621, 60, 3), + (19, 60, 35), + (378, 60, 6), + (450, 60, 56), + (723, 60, 34), + (925, 60, 46), + (262, 60, 49), + (1100, 60, 33), + (379, 60, 6), + (986, 60, 1), + (751, 60, 45), + (790, 60, 37), + (261, 60, 49), + (143, 60, 31), + (690, 60, 13), + (406, 60, 9), + (1040, 60, 47), + (847, 60, 71), + (174, 60, 50), + (498, 60, 11), + (499, 60, 11), + (448, 60, 56), + (761, 60, 111), + (346, 60, 41), + (985, 60, 1), + (927, 60, 76), + (201, 60, 54), + (1077, 60, 119), + (136, 60, 21), + (920, 60, 31), + (877, 60, 16), + (50, 60, 52), + (791, 60, 61), + (691, 60, 13), + (722, 60, 34), + (1108, 60, 81), + (689, 60, 13), + (555, 60, 13), + (842, 60, 29), + (921, 60, 31), + (1048, 60, 116), + (49, 60, 52), + (235, 60, 11), + (322, 60, 115), + (291, 60, 58), + (320, 60, 69), + (351, 60, 61), + (1045, 60, 70), + (1106, 60, 49), + (267, 60, 73), + (111, 60, 55), + (459, 60, 83), + (460, 60, 83), + (1105, 60, 49), + (757, 60, 67), + (205, 60, 80), + (759, 60, 67), + (24, 60, 52), + (758, 60, 67), + (26, 60, 52), + (1044, 60, 70), + (458, 60, 83), + (524, 60, 64), + (25, 60, 52), + (1104, 60, 49), + (523, 60, 64), + (53, 60, 77), + (625, 112, 9), + (993, 112, 3), + (662, 112, 121), + (930, 112, 226), + (324, 112, 342), + (326, 112, 342), + (994, 112, 3), + (727, 112, 166), + (628, 112, 9), + (327, 112, 342), + (693, 112, 39), + (149, 112, 151), + (33, 112, 256), + (381, 112, 16), + (468, 112, 410), + (531, 112, 316), + (408, 112, 24), + (665, 112, 121), + (295, 112, 286), + (1028, 112, 136), + (380, 112, 16), + (1080, 112, 356), + (629, 112, 9), + (270, 112, 361), + (728, 112, 166), + (34, 112, 256), + (410, 112, 24), + (1051, 112, 346), + (210, 112, 396), + (565, 112, 91), + (116, 112, 271), + (822, 112, 196), + (696, 112, 39), + (115, 112, 271), + (764, 112, 331), + (1052, 112, 346), + (55, 112, 383), + (355, 112, 301), + (472, 112, 410), + (929, 112, 226), + (352, 112, 301), + (990, 112, 3), + (529, 112, 316), + (695, 112, 39), + (502, 112, 31), + (1111, 112, 241), + (85, 112, 106), + (213, 112, 396), + (183, 112, 369), + (181, 112, 369), + (471, 112, 410), + (417, 112, 683), + (6, 112, 171), + (735, 112, 551), + (671, 112, 26), + (387, 112, 16), + (856, 112, 31), + (830, 112, 141), + (40, 112, 637), + (39, 112, 637), + (704, 112, 111), + (121, 112, 101), + (1003, 112, 91), + (186, 112, 660), + (799, 112, 131), + (640, 112, 81), + (1033, 112, 576), + (1056, 112, 592), + (577, 112, 6), + (538, 112, 61), + (416, 112, 683), + (219, 112, 51), + (943, 112, 2), + (942, 112, 2), + (885, 112, 41), + (301, 112, 569), + (578, 112, 6), + (831, 112, 141), + (90, 112, 451), + (1059, 112, 237), + (827, 112, 351), + (736, 112, 221), + (1001, 112, 226), + (536, 112, 151), + (420, 112, 274), + (217, 112, 126), + (770, 112, 301), + (1086, 112, 401), + (1085, 112, 401), + (737, 112, 221), + (333, 112, 201), + (94, 112, 181), + (506, 112, 526), + (854, 112, 76), + (273, 112, 476), + (702, 112, 276), + (1058, 112, 237), + (507, 112, 211), + (537, 112, 151), + (574, 112, 13), + (304, 112, 228), + (155, 112, 246), + (5, 112, 171), + (478, 112, 51), + (334, 112, 201), + (188, 112, 265), + (797, 112, 326), + (93, 112, 181), + (669, 112, 63), + (573, 112, 13), + (421, 112, 274), + (670, 112, 63), + (637, 112, 201), + (357, 112, 26), + (938, 112, 3), + (939, 112, 3), + (845, 98, 10), + (985, 98, 1), + (620, 98, 1), + (322, 98, 7), + (133, 98, 5), + (268, 98, 7), + (656, 98, 6), + (847, 98, 5), + (687, 98, 3), + (679, 98, 2), + (618, 98, 1), + (600, 98, 1), + (819, 98, 4), + (877, 98, 2), + (147, 98, 4), + (145, 98, 7), + (285, 98, 8), + (965, 98, 1), + (983, 98, 1), + (526, 98, 6), + (615, 98, 1), + (1104, 98, 11), + (376, 98, 2), + (870, 98, 2), + (1047, 98, 7), + (179, 98, 7), + (899, 98, 3), + (559, 98, 5), + (463, 98, 8), + (78, 98, 3), + (402, 98, 2), + (497, 98, 2), + (495, 98, 2), + (560, 98, 5), + (689, 98, 2), + (47, 98, 11), + (404, 98, 2), + (516, 98, 9), + (486, 98, 2), + (658, 98, 6), + (722, 98, 8), + (980, 98, 1), + (926, 98, 5), + (369, 98, 1), + (551, 98, 3), + (1038, 98, 10), + (171, 98, 10), + (917, 98, 7), + (443, 98, 11), + (378, 98, 1), + (142, 98, 7), + (901, 98, 3), + (198, 98, 11), + (76, 98, 5), + (781, 98, 6), + (53, 98, 17), + (461, 98, 18), + (1107, 98, 11), + (757, 98, 15), + (292, 98, 13), + (523, 98, 14), + (206, 98, 17), + (1044, 98, 15), + (458, 98, 18), + (321, 98, 15), + (760, 98, 15), + (267, 98, 16), + (1075, 98, 16), + (525, 98, 14), + (24, 98, 12), + (1111, 36, 401), + (568, 36, 61), + (33, 36, 426), + (151, 36, 101), + (993, 36, 3), + (352, 36, 501), + (118, 36, 181), + (999, 36, 2), + (295, 36, 476), + (934, 36, 151), + (381, 36, 26), + (408, 36, 39), + (34, 36, 426), + (764, 36, 551), + (383, 36, 11), + (990, 36, 3), + (731, 36, 111), + (38, 36, 171), + (994, 36, 3), + (115, 36, 451), + (795, 36, 121), + (529, 36, 526), + (355, 36, 501), + (998, 36, 2), + (58, 36, 256), + (380, 36, 26), + (116, 36, 451), + (384, 36, 11), + (531, 36, 526), + (272, 36, 241), + (55, 36, 637), + (533, 36, 211), + (699, 36, 26), + (85, 36, 176), + (86, 36, 71), + (183, 36, 615), + (87, 36, 71), + (181, 36, 615), + (732, 36, 111), + (502, 36, 51), + (37, 36, 171), + (665, 36, 201), + (1080, 36, 592), + (625, 36, 13), + (767, 36, 221), + (150, 36, 101), + (662, 36, 201), + (696, 36, 63), + (693, 36, 63), + (468, 36, 683), + (477, 36, 274), + (471, 36, 683), + (695, 36, 63), + (628, 36, 13), + (569, 36, 61), + (476, 36, 274), + (213, 36, 660), + (565, 36, 151), + (634, 36, 6), + (472, 36, 683), + (633, 36, 6), + (824, 36, 131), + (210, 36, 660), + (823, 36, 131), + (766, 36, 221), + (698, 36, 26), + (149, 36, 251), + (505, 36, 21), + (629, 36, 13), + (1054, 36, 231), + (410, 36, 39), + (728, 36, 276), + (324, 36, 569), + (727, 36, 276), + (245, 36, 51), + (326, 36, 569), + (822, 36, 326), + (270, 36, 601), + (216, 36, 265), + (1052, 36, 576), + (1028, 36, 226), + (929, 36, 376), + (930, 36, 376), + (327, 36, 569), + (1051, 36, 576), + (856, 36, 46), + (575, 36, 9), + (334, 36, 301), + (332, 36, 301), + (155, 36, 369), + (578, 36, 9), + (220, 36, 76), + (421, 36, 410), + (1060, 36, 356), + (828, 36, 211), + (386, 36, 24), + (831, 36, 211), + (1057, 36, 356), + (1002, 36, 136), + (1003, 36, 136), + (305, 36, 342), + (387, 36, 24), + (1004, 36, 136), + (302, 36, 342), + (422, 36, 410), + (640, 36, 121), + (507, 36, 316), + (247, 36, 361), + (798, 36, 196), + (705, 36, 166), + (638, 36, 121), + (579, 36, 9), + (737, 36, 331), + (60, 36, 106), + (274, 36, 286), + (771, 36, 181), + (1059, 36, 356), + (539, 36, 91), + (479, 36, 31), + (94, 36, 271), + (886, 36, 61), + (943, 36, 3), + (3, 36, 256), + (885, 36, 61), + (6, 36, 256), + (189, 36, 396), + (1087, 36, 241), + (95, 36, 271), + (187, 36, 396), + (832, 36, 211), + (91, 36, 271), + (857, 36, 46), + (418, 36, 410), + (156, 36, 369), + (940, 36, 3), + (944, 36, 3), + (218, 36, 76), + (899, 99, 3), + (133, 99, 5), + (516, 99, 9), + (722, 99, 8), + (689, 99, 2), + (287, 99, 8), + (486, 99, 2), + (344, 99, 9), + (526, 99, 6), + (142, 99, 7), + (985, 99, 1), + (497, 99, 2), + (499, 99, 2), + (847, 99, 5), + (1049, 99, 7), + (465, 99, 8), + (172, 99, 10), + (687, 99, 3), + (783, 99, 6), + (679, 99, 2), + (781, 99, 6), + (315, 99, 10), + (406, 99, 1), + (1108, 99, 5), + (1038, 99, 10), + (622, 99, 1), + (1018, 99, 4), + (171, 99, 10), + (926, 99, 5), + (378, 99, 1), + (208, 99, 8), + (80, 99, 3), + (810, 99, 6), + (17, 99, 7), + (691, 99, 2), + (376, 99, 2), + (987, 99, 1), + (402, 99, 2), + (78, 99, 3), + (659, 99, 3), + (488, 99, 2), + (105, 99, 8), + (285, 99, 8), + (620, 99, 1), + (1047, 99, 7), + (965, 99, 1), + (1104, 99, 11), + (551, 99, 3), + (870, 99, 2), + (463, 99, 8), + (615, 99, 1), + (719, 99, 5), + (749, 99, 9), + (268, 99, 7), + (602, 99, 1), + (559, 99, 5), + (48, 99, 11), + (179, 99, 7), + (917, 99, 7), + (656, 99, 6), + (395, 99, 2), + (980, 99, 1), + (29, 99, 5), + (791, 99, 4), + (369, 99, 1), + (198, 99, 11), + (147, 99, 4), + (562, 99, 3), + (322, 99, 7), + (725, 99, 4), + (1025, 99, 3), + (819, 99, 4), + (877, 99, 2), + (600, 99, 1), + (370, 99, 1), + (443, 99, 11), + (47, 99, 11), + (445, 99, 11), + (967, 99, 1), + (902, 99, 2), + (757, 99, 15), + (267, 99, 16), + (523, 99, 14), + (1044, 99, 15), + (24, 99, 12), + (53, 99, 17), + (458, 99, 18), + (1006, 61, 10), + (1005, 61, 10), + (908, 61, 16), + (889, 61, 5), + (584, 61, 2), + (425, 61, 28), + (946, 61, 1), + (99, 61, 19), + (707, 61, 12), + (307, 61, 24), + (124, 61, 11), + (835, 61, 15), + (1062, 61, 25), + (948, 61, 1), + (337, 61, 21), + (907, 61, 16), + (582, 61, 2), + (1091, 61, 17), + (123, 61, 11), + (275, 61, 20), + (248, 61, 25), + (541, 61, 7), + (426, 61, 28), + (834, 61, 15), + (63, 61, 8), + (62, 61, 8), + (42, 61, 26), + (9, 61, 18), + (160, 61, 26), + (424, 61, 28), + (583, 61, 2), + (891, 61, 5), + (335, 61, 21), + (859, 61, 4), + (772, 61, 13), + (642, 61, 9), + (739, 61, 23), + (159, 61, 26), + (336, 61, 21), + (221, 61, 6), + (949, 61, 1), + (1090, 61, 17), + (360, 61, 2), + (509, 61, 22), + (708, 61, 12), + (508, 61, 22), + (581, 61, 2), + (1007, 61, 10), + (97, 61, 19), + (947, 61, 1), + (672, 61, 4), + (98, 61, 19), + (222, 61, 6), + (276, 61, 20), + (158, 61, 26), + (888, 61, 5), + (427, 61, 28), + (738, 61, 23), + (8, 61, 18), + (1034, 61, 24), + (801, 61, 14), + (1088, 61, 17), + (61, 61, 8), + (542, 61, 7), + (890, 61, 5), + (860, 61, 4), + (1089, 61, 17), + (306, 61, 24), + (576, 61, 2), + (40, 61, 65), + (385, 61, 5), + (415, 61, 69), + (189, 61, 41), + (942, 61, 1), + (637, 61, 21), + (736, 61, 34), + (1033, 61, 59), + (886, 61, 7), + (1032, 61, 59), + (120, 61, 26), + (703, 61, 18), + (41, 61, 39), + (480, 61, 4), + (579, 61, 2), + (1000, 61, 23), + (1087, 61, 25), + (705, 61, 18), + (639, 61, 13), + (414, 61, 69), + (300, 61, 58), + (855, 61, 6), + (5, 61, 27), + (571, 61, 2), + (304, 61, 35), + (188, 61, 41), + (305, 61, 35), + (419, 61, 42), + (4, 61, 27), + (667, 61, 7), + (1084, 61, 41), + (1004, 61, 15), + (904, 61, 39), + (121, 61, 16), + (2, 61, 43), + (247, 61, 37), + (704, 61, 18), + (273, 61, 49), + (535, 61, 16), + (734, 61, 56), + (1031, 61, 59), + (330, 61, 51), + (422, 61, 42), + (854, 61, 9), + (358, 61, 3), + (153, 61, 62), + (636, 61, 21), + (701, 61, 29), + (303, 61, 35), + (95, 61, 28), + (154, 61, 38), + (92, 61, 28), + (799, 61, 21), + (671, 61, 5), + (59, 61, 19), + (572, 61, 2), + (853, 61, 9), + (1056, 61, 60), + (939, 61, 1), + (668, 61, 7), + (1086, 61, 41), + (936, 61, 1), + (770, 61, 31), + (577, 61, 2), + (832, 61, 22), + (829, 61, 22), + (246, 61, 37), + (331, 61, 51), + (538, 61, 10), + (826, 61, 36), + (1060, 61, 36), + (1, 61, 43), + (220, 61, 9), + (299, 61, 58), + (941, 61, 1), + (89, 61, 46), + (769, 61, 31), + (217, 61, 13), + (537, 61, 16), + (219, 61, 9), + (937, 61, 1), + (506, 61, 53), + (771, 61, 19), + (857, 61, 6), + (417, 61, 69), + (884, 61, 7), + (735, 61, 56), + (301, 61, 58), + (93, 61, 28), + (156, 61, 38), + (944, 61, 1), + (539, 61, 10), + (830, 61, 22), + (905, 61, 24), + (574, 61, 2), + (333, 61, 31), + (670, 61, 7), + (1058, 61, 36), + (152, 61, 62), + (420, 61, 42), + (49, 62, 77), + (426, 62, 56), + (359, 62, 3), + (490, 62, 7), + (948, 62, 1), + (70, 62, 22), + (1040, 62, 70), + (481, 62, 5), + (672, 62, 6), + (448, 62, 83), + (508, 62, 43), + (397, 62, 6), + (642, 62, 17), + (201, 62, 80), + (751, 62, 67), + (1090, 62, 33), + (945, 62, 1), + (235, 62, 16), + (652, 62, 25), + (425, 62, 56), + (842, 62, 43), + (738, 62, 45), + (157, 62, 50), + (753, 62, 67), + (1006, 62, 19), + (234, 62, 16), + (907, 62, 31), + (399, 62, 6), + (360, 62, 3), + (452, 62, 83), + (752, 62, 67), + (653, 62, 25), + (1005, 62, 19), + (398, 62, 6), + (1062, 62, 48), + (584, 62, 2), + (835, 62, 29), + (160, 62, 50), + (874, 62, 10), + (706, 62, 23), + (175, 62, 75), + (306, 62, 46), + (202, 62, 80), + (158, 62, 50), + (554, 62, 19), + (946, 62, 1), + (800, 62, 27), + (895, 62, 13), + (124, 62, 21), + (555, 62, 19), + (707, 62, 23), + (50, 62, 77), + (894, 62, 13), + (556, 62, 19), + (947, 62, 1), + (833, 62, 29), + (159, 62, 50), + (708, 62, 23), + (949, 62, 1), + (449, 62, 83), + (801, 62, 27), + (174, 62, 75), + (1061, 62, 48), + (580, 62, 2), + (51, 62, 77), + (123, 62, 21), + (1041, 62, 70), + (908, 62, 31), + (581, 62, 2), + (682, 62, 9), + (262, 62, 73), + (1034, 62, 47), + (122, 62, 21), + (73, 62, 22), + (423, 62, 56), + (906, 62, 31), + (72, 62, 22), + (261, 62, 73), + (71, 62, 22), + (1071, 62, 72), + (317, 62, 69), + (69, 62, 22), + (307, 62, 46), + (236, 62, 16), + (1070, 62, 72), + (873, 62, 10), + (248, 62, 49), + (583, 62, 2), + (872, 62, 10), + (42, 62, 52), + (582, 62, 2), + (316, 62, 69), + (739, 62, 45), + (518, 62, 64), + (1007, 62, 19), + (834, 62, 29), + (137, 62, 31), + (921, 62, 46), + (888, 62, 9), + (8, 62, 35), + (1101, 62, 49), + (772, 62, 25), + (971, 62, 1), + (276, 62, 39), + (721, 62, 34), + (288, 62, 58), + (841, 62, 43), + (61, 62, 15), + (922, 62, 46), + (63, 62, 15), + (347, 62, 61), + (891, 62, 9), + (542, 62, 13), + (96, 62, 37), + (346, 62, 61), + (843, 62, 43), + (970, 62, 1), + (335, 62, 41), + (784, 62, 37), + (18, 62, 52), + (785, 62, 37), + (608, 62, 3), + (9, 62, 35), + (7, 62, 35), + (607, 62, 3), + (19, 62, 52), + (275, 62, 39), + (609, 62, 3), + (889, 62, 9), + (887, 62, 9), + (20, 62, 52), + (1100, 62, 49), + (605, 62, 3), + (451, 62, 83), + (424, 62, 56), + (1088, 62, 33), + (890, 62, 9), + (812, 62, 40), + (336, 62, 41), + (62, 62, 15), + (348, 62, 61), + (973, 62, 1), + (509, 62, 43), + (427, 62, 56), + (974, 62, 1), + (1089, 62, 33), + (860, 62, 7), + (221, 62, 11), + (520, 62, 64), + (450, 62, 83), + (1020, 62, 28), + (972, 62, 1), + (519, 62, 64), + (920, 62, 46), + (606, 62, 3), + (859, 62, 7), + (222, 62, 11), + (99, 62, 37), + (858, 62, 7), + (337, 62, 41), + (541, 62, 13), + (136, 62, 31), + (540, 62, 13), + (97, 62, 37), + (372, 62, 4), + (98, 62, 37), + (1091, 62, 33), + (641, 62, 17), + (330, 62, 101), + (59, 62, 36), + (88, 62, 91), + (535, 62, 31), + (769, 62, 61), + (298, 62, 115), + (571, 62, 3), + (770, 62, 61), + (1033, 62, 116), + (331, 62, 101), + (537, 62, 31), + (854, 62, 16), + (1032, 62, 116), + (637, 62, 41), + (417, 62, 137), + (768, 62, 61), + (152, 62, 124), + (701, 62, 56), + (796, 62, 66), + (853, 62, 16), + (635, 62, 41), + (1056, 62, 119), + (153, 62, 124), + (385, 62, 9), + (904, 62, 76), + (329, 62, 101), + (357, 62, 6), + (826, 62, 71), + (574, 62, 3), + (668, 62, 13), + (536, 62, 31), + (1000, 62, 46), + (185, 62, 133), + (1084, 62, 81), + (2, 62, 86), + (825, 62, 71), + (40, 62, 128), + (827, 62, 71), + (938, 62, 1), + (669, 62, 13), + (1, 62, 86), + (217, 62, 26), + (1001, 62, 46), + (1086, 62, 81), + (186, 62, 133), + (1085, 62, 81), + (573, 62, 3), + (414, 62, 137), + (670, 62, 13), + (534, 62, 31), + (506, 62, 106), + (572, 62, 3), + (936, 62, 1), + (937, 62, 1), + (702, 62, 56), + (301, 62, 115), + (413, 62, 137), + (935, 62, 1), + (39, 62, 128), + (570, 62, 3), + (735, 62, 111), + (852, 62, 16), + (300, 62, 115), + (883, 62, 21), + (939, 62, 1), + (667, 62, 13), + (119, 62, 51), + (734, 62, 111), + (478, 62, 11), + (273, 62, 96), + (1055, 62, 119), + (415, 62, 137), + (90, 62, 91), + (416, 62, 137), + (1031, 62, 116), + (89, 62, 91), + (700, 62, 56), + (120, 62, 51), + (797, 62, 66), + (636, 62, 41), + (299, 62, 115), + (733, 62, 111), + (772, 63, 37), + (834, 63, 43), + (275, 63, 58), + (842, 63, 29), + (541, 63, 19), + (235, 63, 11), + (69, 63, 15), + (49, 63, 52), + (605, 63, 2), + (971, 63, 1), + (1100, 63, 33), + (872, 63, 7), + (751, 63, 45), + (582, 63, 3), + (234, 63, 11), + (972, 63, 1), + (202, 63, 54), + (158, 63, 75), + (920, 63, 31), + (98, 63, 55), + (921, 63, 31), + (174, 63, 50), + (841, 63, 29), + (1062, 63, 72), + (555, 63, 13), + (970, 63, 1), + (276, 63, 58), + (50, 63, 52), + (306, 63, 69), + (97, 63, 55), + (450, 63, 56), + (894, 63, 9), + (221, 63, 16), + (175, 63, 50), + (554, 63, 13), + (947, 63, 1), + (812, 63, 27), + (707, 63, 34), + (8, 63, 52), + (201, 63, 54), + (888, 63, 13), + (159, 63, 75), + (946, 63, 1), + (1005, 63, 28), + (448, 63, 56), + (335, 63, 61), + (490, 63, 5), + (1040, 63, 47), + (721, 63, 23), + (1088, 63, 49), + (424, 63, 83), + (288, 63, 39), + (752, 63, 45), + (907, 63, 46), + (360, 63, 4), + (346, 63, 41), + (1034, 63, 70), + (738, 63, 67), + (70, 63, 15), + (136, 63, 21), + (859, 63, 10), + (606, 63, 2), + (398, 63, 4), + (642, 63, 25), + (449, 63, 56), + (1020, 63, 19), + (372, 63, 3), + (397, 63, 4), + (518, 63, 43), + (652, 63, 17), + (1089, 63, 49), + (508, 63, 64), + (425, 63, 83), + (889, 63, 13), + (581, 63, 3), + (61, 63, 22), + (71, 63, 15), + (607, 63, 2), + (18, 63, 35), + (261, 63, 49), + (262, 63, 49), + (19, 63, 35), + (701, 63, 56), + (668, 63, 13), + (1032, 63, 116), + (937, 63, 1), + (415, 63, 137), + (414, 63, 137), + (59, 63, 36), + (299, 63, 115), + (1000, 63, 46), + (571, 63, 3), + (89, 63, 91), + (1, 63, 86), + (636, 63, 41), + (2, 63, 86), + (385, 63, 9), + (300, 63, 115), + (1031, 63, 116), + (120, 63, 51), + (667, 63, 13), + (734, 63, 111), + (769, 63, 61), + (153, 63, 124), + (936, 63, 1), + (331, 63, 101), + (904, 63, 76), + (330, 63, 101), + (853, 63, 16), + (535, 63, 31), + (572, 63, 3), + (826, 63, 71), + (152, 63, 124), + (1084, 63, 81), + (652, 64, 25), + (971, 64, 1), + (606, 64, 3), + (239, 64, 11), + (1100, 64, 49), + (752, 64, 67), + (261, 64, 73), + (925, 64, 31), + (403, 64, 4), + (449, 64, 83), + (816, 64, 27), + (174, 64, 75), + (842, 64, 43), + (894, 64, 13), + (723, 64, 23), + (900, 64, 9), + (377, 64, 3), + (518, 64, 64), + (49, 64, 77), + (493, 64, 5), + (616, 64, 2), + (981, 64, 1), + (70, 64, 22), + (812, 64, 40), + (554, 64, 19), + (143, 64, 21), + (351, 64, 41), + (1033, 64, 116), + (735, 64, 111), + (299, 64, 115), + (701, 64, 56), + (459, 64, 56), + (59, 64, 36), + (320, 64, 46), + (734, 64, 111), + (571, 64, 3), + (153, 64, 124), + (1086, 64, 81), + (535, 64, 31), + (1105, 64, 33), + (120, 64, 51), + (217, 64, 26), + (936, 64, 1), + (89, 64, 91), + (572, 64, 3), + (537, 64, 31), + (152, 64, 124), + (937, 64, 1), + (854, 64, 16), + (25, 64, 35), + (506, 64, 106), + (769, 64, 61), + (273, 64, 96), + (1, 64, 86), + (414, 64, 137), + (417, 64, 137), + (1032, 64, 116), + (826, 64, 71), + (300, 64, 115), + (331, 64, 101), + (758, 64, 45), + (853, 64, 16), + (574, 64, 3), + (636, 64, 41), + (1056, 64, 119), + (667, 64, 13), + (670, 64, 13), + (111, 64, 37), + (637, 64, 41), + (1084, 64, 81), + (904, 64, 76), + (40, 64, 128), + (939, 64, 1), + (330, 64, 101), + (1031, 64, 116), + (385, 64, 9), + (2, 64, 86), + (301, 64, 115), + (1000, 64, 46), + (415, 64, 137), + (668, 64, 13), + (770, 64, 61), + (238, 65, 51), + (815, 65, 131), + (437, 65, 410), + (1112, 65, 401), + (714, 65, 166), + (140, 65, 101), + (613, 65, 6), + (795, 65, 301), + (129, 65, 151), + (1066, 65, 356), + (384, 65, 26), + (1014, 65, 136), + (513, 65, 316), + (732, 65, 276), + (436, 65, 410), + (823, 65, 326), + (1022, 65, 91), + (141, 65, 101), + (167, 65, 369), + (245, 65, 126), + (195, 65, 396), + (934, 65, 376), + (912, 65, 226), + (731, 65, 276), + (227, 65, 76), + (512, 65, 316), + (788, 65, 121), + (647, 65, 121), + (103, 65, 271), + (66, 65, 106), + (777, 65, 181), + (880, 65, 76), + (614, 65, 6), + (793, 65, 301), + (242, 65, 126), + (568, 65, 151), + (931, 65, 376), + (548, 65, 91), + (492, 65, 21), + (836, 65, 211), + (1067, 65, 356), + (255, 65, 361), + (744, 65, 331), + (383, 65, 26), + (978, 65, 2), + (505, 65, 51), + (168, 65, 369), + (569, 65, 151), + (789, 65, 121), + (686, 65, 26), + (699, 65, 63), + (698, 65, 63), + (128, 65, 151), + (979, 65, 2), + (824, 65, 326), + (697, 65, 63), + (566, 65, 151), + (805, 65, 196), + (655, 65, 81), + (521, 65, 211), + (473, 65, 683), + (150, 65, 251), + (533, 65, 526), + (756, 65, 221), + (1029, 65, 226), + (56, 65, 637), + (675, 65, 39), + (476, 65, 683), + (214, 65, 660), + (995, 65, 3), + (594, 65, 9), + (998, 65, 3), + (867, 65, 46), + (633, 65, 13), + (290, 65, 191), + (532, 65, 526), + (296, 65, 476), + (477, 65, 683), + (110, 65, 181), + (767, 65, 551), + (593, 65, 9), + (109, 65, 181), + (522, 65, 211), + (1074, 65, 237), + (272, 65, 601), + (391, 65, 24), + (456, 65, 274), + (958, 65, 3), + (204, 65, 265), + (457, 65, 274), + (118, 65, 451), + (86, 65, 176), + (177, 65, 246), + (999, 65, 3), + (1043, 65, 231), + (729, 65, 276), + (630, 65, 13), + (216, 65, 660), + (58, 65, 637), + (319, 65, 228), + (38, 65, 426), + (366, 65, 16), + (766, 65, 551), + (266, 65, 241), + (265, 65, 241), + (674, 65, 39), + (1054, 65, 576), + (392, 65, 24), + (868, 65, 46), + (959, 65, 3), + (22, 65, 171), + (23, 65, 171), + (37, 65, 426), + (634, 65, 13), + (1103, 65, 161), + (35, 65, 426), + (151, 65, 251), + (1081, 65, 592), + (87, 65, 176), + (924, 65, 151), + (376, 100, 2), + (680, 100, 2), + (551, 100, 3), + (443, 100, 11), + (260, 100, 10), + (552, 100, 3), + (651, 100, 4), + (917, 100, 7), + (378, 100, 1), + (965, 100, 1), + (679, 100, 2), + (687, 100, 3), + (871, 100, 2), + (819, 100, 4), + (870, 100, 2), + (847, 100, 5), + (369, 100, 1), + (142, 100, 7), + (656, 100, 6), + (603, 100, 1), + (1038, 100, 10), + (615, 100, 1), + (877, 100, 2), + (497, 100, 2), + (106, 100, 8), + (1104, 100, 11), + (268, 100, 7), + (200, 100, 11), + (1047, 100, 7), + (985, 100, 1), + (526, 100, 6), + (285, 100, 8), + (968, 100, 1), + (559, 100, 5), + (899, 100, 3), + (179, 100, 7), + (198, 100, 11), + (980, 100, 1), + (78, 100, 3), + (781, 100, 6), + (322, 100, 7), + (722, 100, 8), + (1098, 100, 7), + (68, 100, 4), + (516, 100, 9), + (446, 100, 11), + (926, 100, 5), + (345, 100, 9), + (147, 100, 4), + (689, 100, 2), + (134, 100, 5), + (463, 100, 8), + (402, 100, 2), + (232, 100, 3), + (620, 100, 1), + (918, 100, 7), + (600, 100, 1), + (171, 100, 10), + (47, 100, 11), + (133, 100, 5), + (486, 100, 2), + (811, 100, 6), + (523, 100, 14), + (757, 100, 15), + (458, 100, 18), + (1044, 100, 15), + (53, 100, 17), + (267, 100, 16), + (24, 100, 12), + (201, 66, 80), + (136, 66, 31), + (872, 66, 10), + (1020, 66, 28), + (490, 66, 7), + (69, 66, 22), + (18, 66, 52), + (841, 66, 43), + (397, 66, 6), + (234, 66, 16), + (920, 66, 46), + (605, 66, 3), + (1040, 66, 70), + (970, 66, 1), + (288, 66, 58), + (448, 66, 83), + (751, 66, 67), + (960, 66, 1), + (570, 66, 3), + (197, 66, 54), + (1055, 66, 119), + (1068, 66, 48), + (169, 66, 50), + (935, 66, 1), + (595, 66, 2), + (170, 66, 50), + (534, 66, 31), + (1037, 66, 47), + (298, 66, 115), + (883, 66, 21), + (256, 66, 49), + (963, 66, 1), + (598, 66, 2), + (438, 66, 56), + (88, 66, 91), + (441, 66, 56), + (329, 66, 101), + (312, 66, 46), + (837, 66, 29), + (635, 66, 41), + (230, 66, 11), + (779, 66, 25), + (852, 66, 16), + (778, 66, 25), + (915, 66, 31), + (393, 66, 4), + (1097, 66, 33), + (649, 66, 17), + (1015, 66, 19), + (733, 66, 111), + (913, 66, 31), + (368, 66, 3), + (119, 66, 51), + (676, 66, 6), + (796, 66, 66), + (413, 66, 137), + (825, 66, 71), + (185, 66, 133), + (806, 66, 27), + (768, 66, 61), + (700, 66, 56), + (343, 66, 41), + (283, 66, 39), + (808, 66, 27), + (514, 66, 43), + (745, 66, 45), + (715, 66, 23), + (648, 66, 17), + (485, 66, 5), + (322, 67, 115), + (985, 67, 1), + (687, 67, 6), + (615, 67, 2), + (268, 67, 121), + (620, 67, 3), + (402, 67, 4), + (142, 67, 21), + (722, 67, 23), + (78, 67, 36), + (497, 67, 11), + (376, 67, 3), + (899, 67, 9), + (559, 67, 13), + (980, 67, 1), + (1047, 67, 116), + (847, 67, 71), + (147, 67, 51), + (926, 67, 76), + (877, 67, 16), + (179, 67, 124), + (463, 67, 137), + (819, 67, 66), + (378, 67, 6), + (526, 67, 106), + (656, 67, 17), + (689, 67, 13), + (523, 67, 43), + (825, 67, 43), + (24, 67, 35), + (88, 67, 55), + (1104, 67, 33), + (185, 67, 80), + (1044, 67, 47), + (796, 67, 40), + (119, 67, 31), + (768, 67, 37), + (298, 67, 69), + (1055, 67, 72), + (267, 67, 49), + (935, 67, 1), + (757, 67, 45), + (458, 67, 56), + (329, 67, 61), + (733, 67, 67), + (883, 67, 13), + (852, 67, 10), + (413, 67, 83), + (570, 67, 3), + (635, 67, 25), + (534, 67, 19), + (53, 67, 52), + (700, 67, 34), + (968, 68, 1), + (397, 68, 9), + (232, 68, 11), + (446, 68, 56), + (1040, 68, 116), + (1038, 68, 47), + (68, 68, 15), + (285, 68, 39), + (200, 68, 54), + (819, 68, 40), + (620, 68, 3), + (603, 68, 2), + (605, 68, 3), + (443, 68, 56), + (448, 68, 137), + (926, 68, 46), + (147, 68, 31), + (78, 68, 22), + (751, 68, 111), + (918, 68, 31), + (322, 68, 69), + (1098, 68, 33), + (234, 68, 26), + (369, 68, 3), + (870, 68, 7), + (179, 68, 75), + (1020, 68, 46), + (680, 68, 6), + (600, 68, 2), + (69, 68, 36), + (136, 68, 51), + (490, 68, 11), + (872, 68, 16), + (970, 68, 1), + (378, 68, 4), + (811, 68, 27), + (651, 68, 17), + (689, 68, 9), + (260, 68, 49), + (18, 68, 86), + (679, 68, 6), + (841, 68, 71), + (552, 68, 13), + (871, 68, 7), + (526, 68, 64), + (920, 68, 76), + (985, 68, 1), + (201, 68, 133), + (463, 68, 83), + (268, 68, 73), + (345, 68, 41), + (1047, 68, 70), + (847, 68, 43), + (134, 68, 21), + (781, 68, 25), + (133, 68, 21), + (965, 68, 1), + (288, 68, 96), + (106, 68, 37), + (516, 68, 43), + (551, 68, 13), + (917, 68, 31), + (877, 68, 10), + (171, 68, 50), + (486, 68, 5), + (198, 68, 54), + (497, 68, 7), + (47, 68, 52), + (840, 69, 43), + (756, 69, 45), + (1022, 69, 19), + (135, 69, 31), + (720, 69, 34), + (681, 69, 9), + (521, 69, 43), + (1043, 69, 47), + (680, 69, 9), + (68, 69, 22), + (396, 69, 6), + (323, 69, 115), + (134, 69, 31), + (928, 69, 76), + (446, 69, 83), + (54, 69, 128), + (623, 69, 3), + (918, 69, 46), + (173, 69, 75), + (969, 69, 1), + (750, 69, 67), + (692, 69, 13), + (1019, 69, 28), + (788, 69, 25), + (820, 69, 66), + (563, 69, 31), + (109, 69, 37), + (604, 69, 3), + (265, 69, 49), + (871, 69, 10), + (553, 69, 19), + (1078, 69, 119), + (1098, 69, 49), + (613, 69, 2), + (140, 69, 21), + (232, 69, 16), + (238, 69, 11), + (447, 69, 83), + (655, 69, 17), + (22, 69, 35), + (200, 69, 80), + (603, 69, 3), + (489, 69, 7), + (811, 69, 40), + (552, 69, 19), + (260, 69, 73), + (1099, 69, 49), + (319, 69, 46), + (978, 69, 1), + (815, 69, 27), + (988, 69, 1), + (792, 69, 61), + (233, 69, 16), + (924, 69, 31), + (345, 69, 61), + (456, 69, 56), + (968, 69, 1), + (81, 69, 36), + (651, 69, 25), + (371, 69, 4), + (106, 69, 55), + (500, 69, 11), + (528, 69, 106), + (466, 69, 137), + (209, 69, 133), + (660, 69, 41), + (919, 69, 46), + (107, 69, 55), + (810, 70, 40), + (446, 70, 83), + (1027, 70, 19), + (1039, 70, 70), + (1110, 70, 33), + (31, 70, 35), + (690, 70, 13), + (489, 70, 7), + (1077, 70, 119), + (918, 70, 46), + (180, 70, 124), + (488, 70, 7), + (622, 70, 3), + (171, 70, 75), + (408, 70, 4), + (444, 70, 83), + (114, 70, 37), + (625, 70, 2), + (210, 70, 54), + (314, 70, 69), + (212, 70, 54), + (1047, 70, 116), + (468, 70, 56), + (840, 70, 43), + (470, 70, 56), + (172, 70, 75), + (603, 70, 3), + (624, 70, 3), + (1049, 70, 116), + (563, 70, 31), + (1018, 70, 28), + (663, 70, 17), + (719, 70, 34), + (378, 70, 6), + (32, 70, 35), + (720, 70, 34), + (179, 70, 124), + (445, 70, 83), + (487, 70, 7), + (1019, 70, 28), + (447, 70, 83), + (791, 70, 61), + (211, 70, 54), + (469, 70, 56), + (621, 70, 3), + (1069, 70, 72), + (30, 70, 86), + (268, 70, 121), + (604, 70, 3), + (987, 70, 1), + (878, 70, 16), + (809, 70, 40), + (529, 70, 43), + (552, 70, 19), + (985, 70, 1), + (200, 70, 80), + (1108, 70, 81), + (29, 70, 86), + (198, 70, 80), + (324, 70, 46), + (353, 70, 41), + (48, 70, 77), + (929, 70, 31), + (989, 70, 1), + (691, 70, 13), + (134, 70, 31), + (396, 70, 6), + (370, 70, 4), + (926, 70, 76), + (821, 70, 27), + (820, 70, 66), + (345, 70, 61), + (988, 70, 1), + (651, 70, 25), + (763, 70, 45), + (395, 70, 6), + (850, 70, 29), + (269, 70, 49), + (626, 70, 2), + (761, 70, 111), + (530, 70, 43), + (409, 70, 4), + (1051, 70, 47), + (260, 70, 73), + (526, 70, 106), + (371, 70, 4), + (849, 70, 29), + (762, 70, 111), + (322, 70, 115), + (623, 70, 3), + (1109, 70, 81), + (181, 70, 50), + (47, 70, 77), + (527, 70, 106), + (1050, 70, 116), + (113, 70, 37), + (627, 70, 2), + (839, 70, 43), + (199, 70, 80), + (902, 70, 21), + (486, 70, 7), + (1079, 70, 119), + (182, 70, 50), + (1026, 70, 19), + (315, 70, 69), + (232, 70, 16), + (173, 70, 75), + (55, 70, 52), + (819, 70, 66), + (848, 70, 71), + (325, 70, 46), + (602, 70, 3), + (877, 70, 16), + (727, 70, 23), + (323, 70, 115), + (917, 70, 46), + (680, 70, 9), + (369, 70, 4), + (443, 70, 83), + (295, 70, 39), + (1017, 70, 28), + (1078, 70, 119), + (354, 70, 41), + (620, 70, 3), + (148, 70, 21), + (352, 70, 41), + (1048, 70, 116), + (679, 70, 9), + (601, 70, 3), + (847, 70, 71), + (986, 70, 1), + (259, 70, 73), + (564, 70, 31), + (969, 70, 1), + (407, 70, 9), + (600, 70, 3), + (379, 70, 6), + (294, 70, 96), + (1025, 70, 46), + (694, 70, 6), + (78, 70, 36), + (692, 70, 13), + (726, 70, 56), + (927, 70, 76), + (992, 70, 1), + (502, 70, 5), + (285, 70, 58), + (681, 70, 9), + (693, 70, 6), + (1038, 70, 70), + (919, 70, 46), + (68, 70, 22), + (662, 70, 17), + (82, 70, 36), + (661, 70, 41), + (991, 70, 1), + (133, 70, 31), + (725, 70, 56), + (966, 70, 1), + (928, 70, 76), + (783, 70, 37), + (965, 70, 1), + (499, 70, 11), + (782, 70, 37), + (406, 70, 9), + (748, 70, 67), + (54, 70, 128), + (463, 70, 137), + (500, 70, 11), + (659, 70, 41), + (498, 70, 11), + (107, 70, 55), + (551, 70, 19), + (517, 70, 64), + (83, 70, 15), + (871, 70, 10), + (464, 70, 137), + (501, 70, 11), + (80, 70, 36), + (17, 70, 52), + (870, 70, 10), + (105, 70, 55), + (553, 70, 19), + (497, 70, 11), + (990, 70, 1), + (562, 70, 31), + (503, 70, 5), + (1099, 70, 49), + (781, 70, 37), + (28, 70, 86), + (287, 70, 58), + (466, 70, 137), + (811, 70, 40), + (689, 70, 13), + (81, 70, 36), + (749, 70, 67), + (79, 70, 36), + (84, 70, 15), + (147, 70, 51), + (1024, 70, 46), + (660, 70, 41), + (208, 70, 133), + (967, 70, 1), + (344, 70, 61), + (286, 70, 58), + (233, 70, 16), + (231, 70, 16), + (467, 70, 137), + (207, 70, 133), + (792, 70, 61), + (750, 70, 67), + (135, 70, 31), + (879, 70, 7), + (516, 70, 64), + (968, 70, 1), + (106, 70, 55), + (504, 70, 5), + (209, 70, 133), + (528, 70, 106), + (465, 70, 137), + (405, 70, 9), + (664, 70, 17), + (1098, 70, 49), + (241, 70, 11), + (293, 70, 96), + (57, 71, 39), + (475, 71, 42), + (1053, 71, 36), + (117, 71, 28), + (36, 71, 27), + (215, 71, 41), + (297, 71, 30), + (382, 71, 3), + (996, 71, 1), + (412, 71, 3), + (666, 71, 13), + (933, 71, 24), + (932, 71, 24), + (881, 71, 6), + (997, 71, 1), + (411, 71, 3), + (882, 71, 6), + (243, 71, 9), + (474, 71, 42), + (244, 71, 9), + (271, 71, 37), + (765, 71, 34), + (632, 71, 2), + (1082, 71, 36), + (184, 71, 38), + (1030, 71, 15), + (567, 71, 10), + (851, 71, 22), + (328, 71, 35), + (631, 71, 2), + (730, 71, 18), + (356, 71, 31), + (794, 71, 19), + (903, 71, 7), + (1083, 71, 36), + (703, 71, 29), + (937, 71, 1), + (736, 71, 56), + (330, 71, 21), + (40, 71, 26), + (938, 71, 1), + (1084, 71, 17), + (300, 71, 24), + (701, 71, 12), + (577, 71, 2), + (217, 71, 6), + (771, 71, 31), + (89, 71, 19), + (669, 71, 4), + (333, 71, 51), + (667, 71, 4), + (799, 71, 33), + (1001, 71, 10), + (798, 71, 33), + (579, 71, 2), + (936, 71, 1), + (830, 71, 36), + (905, 71, 39), + (186, 71, 27), + (944, 71, 1), + (90, 71, 19), + (769, 71, 13), + (670, 71, 4), + (93, 71, 46), + (797, 71, 14), + (3, 71, 43), + (1085, 71, 17), + (940, 71, 1), + (942, 71, 1), + (91, 71, 46), + (120, 71, 11), + (734, 71, 23), + (301, 71, 24), + (5, 71, 43), + (4, 71, 43), + (1087, 71, 41), + (575, 71, 2), + (828, 71, 36), + (506, 71, 22), + (1000, 71, 10), + (735, 71, 23), + (332, 71, 51), + (416, 71, 28), + (668, 71, 4), + (576, 71, 2), + (95, 71, 46), + (572, 71, 2), + (853, 71, 4), + (274, 71, 49), + (939, 71, 1), + (832, 71, 36), + (573, 71, 2), + (414, 71, 28), + (92, 71, 46), + (829, 71, 36), + (941, 71, 1), + (770, 71, 13), + (1, 71, 18), + (60, 71, 19), + (417, 71, 28), + (704, 71, 29), + (154, 71, 62), + (705, 71, 29), + (638, 71, 21), + (637, 71, 9), + (539, 71, 16), + (418, 71, 69), + (420, 71, 69), + (1057, 71, 60), + (415, 71, 28), + (422, 71, 69), + (884, 71, 11), + (479, 71, 6), + (59, 71, 8), + (303, 71, 58), + (480, 71, 6), + (153, 71, 26), + (571, 71, 2), + (156, 71, 62), + (220, 71, 13), + (219, 71, 13), + (1032, 71, 24), + (331, 71, 21), + (1056, 71, 25), + (1058, 71, 60), + (537, 71, 7), + (639, 71, 21), + (218, 71, 13), + (1060, 71, 60), + (857, 71, 9), + (574, 71, 2), + (854, 71, 4), + (357, 71, 2), + (671, 71, 7), + (538, 71, 16), + (188, 71, 67), + (827, 71, 15), + (826, 71, 15), + (1004, 71, 23), + (702, 71, 12), + (39, 71, 26), + (302, 71, 58), + (886, 71, 11), + (299, 71, 24), + (855, 71, 9), + (358, 71, 3), + (478, 71, 3), + (246, 71, 61), + (904, 71, 16), + (1033, 71, 24), + (247, 71, 61), + (636, 71, 9), + (121, 71, 26), + (385, 71, 3), + (1086, 71, 17), + (41, 71, 65), + (273, 71, 20), + (1031, 71, 24), + (152, 71, 26), + (419, 71, 69), + (189, 71, 67), + (1002, 71, 23), + (305, 71, 58), + (2, 71, 18), + (535, 71, 7), + (386, 71, 5), + (304, 71, 58), + (187, 71, 67), + (536, 71, 7), + (73, 72, 22), + (605, 72, 3), + (784, 72, 37), + (653, 72, 25), + (51, 72, 77), + (346, 72, 61), + (751, 72, 67), + (490, 72, 7), + (18, 72, 52), + (785, 72, 37), + (608, 72, 3), + (317, 72, 69), + (70, 72, 22), + (288, 72, 58), + (19, 72, 52), + (72, 72, 22), + (202, 72, 80), + (262, 72, 73), + (682, 72, 9), + (175, 72, 75), + (452, 72, 83), + (20, 72, 52), + (971, 72, 1), + (895, 72, 13), + (974, 72, 1), + (520, 72, 64), + (71, 72, 22), + (1101, 72, 49), + (1100, 72, 49), + (921, 72, 46), + (1070, 72, 72), + (451, 72, 83), + (136, 72, 31), + (753, 72, 67), + (1040, 72, 70), + (894, 72, 13), + (137, 72, 31), + (721, 72, 34), + (518, 72, 64), + (450, 72, 83), + (399, 72, 6), + (607, 72, 3), + (972, 72, 1), + (1071, 72, 72), + (554, 72, 19), + (50, 72, 77), + (606, 72, 3), + (348, 72, 61), + (398, 72, 6), + (973, 72, 1), + (316, 72, 69), + (1020, 72, 28), + (261, 72, 73), + (841, 72, 43), + (555, 72, 19), + (236, 72, 16), + (752, 72, 67), + (873, 72, 10), + (843, 72, 43), + (556, 72, 19), + (448, 72, 83), + (609, 72, 3), + (1041, 72, 70), + (922, 72, 46), + (174, 72, 75), + (397, 72, 6), + (234, 72, 16), + (449, 72, 83), + (519, 72, 64), + (874, 72, 10), + (69, 72, 22), + (49, 72, 77), + (347, 72, 61), + (372, 72, 4), + (970, 72, 1), + (872, 72, 10), + (812, 72, 40), + (652, 72, 25), + (201, 72, 80), + (920, 72, 46), + (842, 72, 43), + (235, 72, 16), + (153, 72, 124), + (770, 72, 61), + (417, 72, 137), + (667, 72, 13), + (1086, 72, 81), + (416, 72, 137), + (413, 72, 137), + (571, 72, 3), + (1, 72, 86), + (668, 72, 13), + (40, 72, 128), + (853, 72, 16), + (572, 72, 3), + (669, 72, 13), + (2, 72, 86), + (768, 72, 61), + (185, 72, 133), + (1055, 72, 119), + (478, 72, 11), + (39, 72, 128), + (415, 72, 137), + (854, 72, 16), + (299, 72, 115), + (1084, 72, 81), + (385, 72, 9), + (5, 72, 35), + (852, 72, 16), + (152, 72, 124), + (574, 72, 3), + (357, 72, 6), + (670, 72, 13), + (1056, 72, 119), + (186, 72, 133), + (883, 72, 21), + (573, 72, 3), + (88, 72, 91), + (830, 72, 29), + (422, 72, 56), + (535, 72, 31), + (1033, 72, 116), + (41, 72, 52), + (703, 72, 23), + (154, 72, 50), + (825, 72, 71), + (826, 72, 71), + (92, 72, 37), + (832, 72, 29), + (156, 72, 50), + (855, 72, 7), + (218, 72, 11), + (59, 72, 36), + (219, 72, 11), + (155, 72, 50), + (331, 72, 101), + (1060, 72, 48), + (274, 72, 39), + (733, 72, 111), + (220, 72, 11), + (884, 72, 9), + (418, 72, 56), + (94, 72, 37), + (387, 72, 4), + (479, 72, 5), + (420, 72, 56), + (905, 72, 31), + (480, 72, 5), + (421, 72, 56), + (537, 72, 31), + (671, 72, 6), + (187, 72, 54), + (93, 72, 37), + (735, 72, 111), + (796, 72, 66), + (829, 72, 29), + (298, 72, 115), + (856, 72, 7), + (701, 72, 56), + (189, 72, 54), + (857, 72, 7), + (188, 72, 54), + (95, 72, 37), + (329, 72, 101), + (507, 72, 43), + (798, 72, 27), + (333, 72, 41), + (304, 72, 46), + (1003, 72, 19), + (1031, 72, 116), + (330, 72, 101), + (302, 72, 46), + (771, 72, 25), + (1004, 72, 19), + (1058, 72, 48), + (636, 72, 41), + (799, 72, 27), + (121, 72, 21), + (247, 72, 49), + (827, 72, 71), + (704, 72, 23), + (736, 72, 45), + (702, 72, 56), + (705, 72, 23), + (737, 72, 45), + (1001, 72, 46), + (246, 72, 49), + (828, 72, 29), + (885, 72, 9), + (831, 72, 29), + (119, 72, 51), + (940, 72, 1), + (579, 72, 2), + (1059, 72, 48), + (539, 72, 13), + (637, 72, 41), + (1000, 72, 46), + (1002, 72, 19), + (1057, 72, 48), + (506, 72, 106), + (60, 72, 15), + (332, 72, 41), + (635, 72, 41), + (638, 72, 17), + (303, 72, 46), + (640, 72, 17), + (305, 72, 46), + (639, 72, 17), + (334, 72, 41), + (538, 72, 13), + (1032, 72, 116), + (886, 72, 9), + (419, 72, 56), + (904, 72, 76), + (941, 72, 1), + (1085, 72, 81), + (939, 72, 1), + (89, 72, 91), + (536, 72, 31), + (577, 72, 2), + (935, 72, 1), + (4, 72, 35), + (944, 72, 1), + (358, 72, 3), + (217, 72, 26), + (700, 72, 56), + (91, 72, 37), + (578, 72, 2), + (937, 72, 1), + (273, 72, 96), + (3, 72, 35), + (576, 72, 2), + (300, 72, 115), + (120, 72, 51), + (938, 72, 1), + (534, 72, 31), + (575, 72, 2), + (942, 72, 1), + (797, 72, 66), + (769, 72, 61), + (301, 72, 115), + (90, 72, 91), + (734, 72, 111), + (414, 72, 137), + (936, 72, 1), + (6, 72, 35), + (1087, 72, 33), + (570, 72, 3), + (386, 72, 4), + (943, 72, 1), + (448, 73, 56), + (404, 73, 6), + (660, 73, 41), + (18, 73, 35), + (201, 73, 54), + (689, 73, 13), + (970, 73, 1), + (322, 73, 115), + (136, 73, 21), + (926, 73, 76), + (347, 73, 41), + (526, 73, 106), + (920, 73, 31), + (722, 73, 34), + (268, 73, 121), + (618, 73, 3), + (451, 73, 56), + (656, 73, 25), + (288, 73, 39), + (877, 73, 16), + (376, 73, 4), + (841, 73, 29), + (463, 73, 137), + (843, 73, 29), + (51, 73, 52), + (847, 73, 71), + (615, 73, 3), + (820, 73, 66), + (81, 73, 36), + (497, 73, 11), + (402, 73, 6), + (528, 73, 106), + (988, 73, 1), + (985, 73, 1), + (466, 73, 137), + (687, 73, 9), + (784, 73, 25), + (658, 73, 25), + (692, 73, 13), + (519, 73, 43), + (500, 73, 11), + (1047, 73, 116), + (142, 73, 31), + (490, 73, 5), + (69, 73, 15), + (145, 73, 31), + (179, 73, 124), + (753, 73, 45), + (845, 73, 43), + (78, 73, 36), + (323, 73, 115), + (605, 73, 2), + (495, 73, 7), + (620, 73, 3), + (1040, 73, 47), + (209, 73, 133), + (751, 73, 45), + (895, 73, 9), + (147, 73, 51), + (72, 73, 15), + (819, 73, 66), + (563, 73, 31), + (556, 73, 13), + (928, 73, 76), + (54, 73, 128), + (1020, 73, 19), + (76, 73, 22), + (608, 73, 2), + (559, 73, 19), + (980, 73, 1), + (234, 73, 11), + (316, 73, 46), + (397, 73, 4), + (560, 73, 19), + (901, 73, 13), + (623, 73, 3), + (1078, 73, 119), + (983, 73, 1), + (792, 73, 61), + (872, 73, 7), + (1070, 73, 48), + (899, 73, 13), + (973, 73, 1), + (682, 73, 6), + (873, 73, 7), + (1041, 73, 47), + (378, 73, 6), + (525, 73, 64), + (24, 73, 52), + (267, 73, 73), + (206, 73, 80), + (1104, 73, 49), + (1075, 73, 72), + (321, 73, 69), + (458, 73, 83), + (523, 73, 64), + (1107, 73, 49), + (760, 73, 67), + (1044, 73, 70), + (53, 73, 77), + (292, 73, 58), + (757, 73, 67), + (461, 73, 83), + (603, 101, 1), + (232, 101, 3), + (871, 101, 2), + (1098, 101, 6), + (260, 101, 8), + (552, 101, 3), + (651, 101, 3), + (106, 101, 6), + (345, 101, 7), + (680, 101, 2), + (968, 101, 1), + (68, 101, 3), + (811, 101, 5), + (446, 101, 9), + (200, 101, 9), + (134, 101, 4), + (918, 101, 6), + (915, 101, 12), + (779, 101, 10), + (1094, 101, 8), + (485, 101, 3), + (711, 101, 6), + (388, 101, 2), + (280, 101, 10), + (862, 101, 2), + (1064, 101, 12), + (909, 101, 8), + (197, 101, 21), + (343, 101, 16), + (963, 101, 1), + (283, 101, 15), + (808, 101, 11), + (644, 101, 5), + (431, 101, 13), + (368, 101, 2), + (837, 101, 11), + (588, 101, 1), + (544, 101, 4), + (1097, 101, 13), + (1010, 101, 5), + (441, 101, 21), + (12, 101, 9), + (953, 101, 1), + (251, 101, 12), + (170, 101, 19), + (649, 101, 7), + (163, 101, 12), + (230, 101, 5), + (1037, 101, 18), + (192, 101, 13), + (774, 101, 6), + (598, 101, 1), + (200, 102, 9), + (811, 102, 5), + (651, 102, 3), + (106, 102, 6), + (1098, 102, 6), + (260, 102, 8), + (680, 102, 2), + (68, 102, 3), + (134, 102, 4), + (871, 102, 2), + (552, 102, 3), + (603, 102, 1), + (345, 102, 7), + (232, 102, 3), + (968, 102, 1), + (918, 102, 6), + (446, 102, 9), + (909, 102, 8), + (1010, 102, 5), + (588, 102, 1), + (963, 102, 1), + (1094, 102, 8), + (644, 102, 5), + (544, 102, 4), + (1097, 102, 13), + (774, 102, 6), + (12, 102, 9), + (230, 102, 5), + (649, 102, 7), + (915, 102, 12), + (388, 102, 2), + (170, 102, 19), + (808, 102, 11), + (598, 102, 1), + (280, 102, 10), + (837, 102, 11), + (192, 102, 13), + (779, 102, 10), + (431, 102, 13), + (1064, 102, 12), + (197, 102, 21), + (1037, 102, 18), + (283, 102, 15), + (368, 102, 2), + (953, 102, 1), + (711, 102, 6), + (862, 102, 2), + (441, 102, 21), + (343, 102, 16), + (485, 102, 3), + (251, 102, 12), + (163, 102, 12), + (396, 103, 2), + (183, 103, 8), + (106, 102, 15), + (173, 103, 19), + (604, 103, 1), + (232, 102, 5), + (447, 103, 21), + (134, 102, 9), + (695, 103, 2), + (720, 103, 9), + (213, 103, 9), + (994, 103, 1), + (728, 103, 4), + (380, 103, 1), + (930, 103, 6), + (1019, 103, 8), + (270, 103, 8), + (1028, 103, 4), + (968, 102, 1), + (565, 103, 3), + (628, 103, 1), + (840, 103, 11), + (696, 103, 2), + (471, 103, 9), + (355, 103, 7), + (116, 103, 6), + (33, 103, 6), + (107, 103, 15), + (1098, 102, 13), + (233, 103, 5), + (680, 102, 3), + (34, 103, 6), + (871, 102, 3), + (651, 102, 7), + (750, 103, 17), + (85, 103, 3), + (822, 103, 5), + (764, 103, 8), + (200, 102, 21), + (665, 103, 3), + (603, 102, 1), + (681, 103, 3), + (1111, 103, 6), + (919, 103, 12), + (629, 103, 1), + (327, 103, 8), + (993, 103, 1), + (472, 103, 9), + (381, 103, 1), + (326, 103, 8), + (410, 103, 1), + (918, 102, 12), + (553, 103, 5), + (811, 102, 11), + (1099, 103, 13), + (489, 103, 3), + (531, 103, 7), + (446, 102, 21), + (969, 103, 1), + (260, 102, 19), + (149, 103, 4), + (552, 102, 5), + (1080, 103, 8), + (371, 103, 2), + (135, 103, 9), + (345, 102, 16), + (68, 102, 6), + (115, 103, 6), + (1052, 103, 8), + (915, 102, 8), + (808, 102, 7), + (1037, 102, 11), + (963, 102, 1), + (1097, 102, 8), + (598, 102, 1), + (230, 102, 3), + (485, 102, 2), + (441, 102, 13), + (368, 102, 1), + (170, 102, 12), + (197, 102, 13), + (649, 102, 5), + (343, 102, 10), + (837, 102, 7), + (779, 102, 6), + (283, 102, 10), + (34, 104, 6), + (552, 104, 5), + (811, 104, 11), + (447, 104, 21), + (665, 104, 3), + (919, 104, 12), + (471, 104, 9), + (381, 104, 1), + (33, 104, 6), + (603, 104, 1), + (472, 104, 9), + (410, 104, 1), + (115, 104, 6), + (1111, 104, 6), + (173, 104, 19), + (116, 104, 6), + (840, 104, 11), + (930, 104, 6), + (489, 104, 3), + (681, 104, 3), + (106, 104, 15), + (213, 104, 9), + (1028, 104, 4), + (1080, 104, 8), + (764, 104, 8), + (85, 104, 3), + (969, 104, 1), + (553, 104, 5), + (134, 104, 9), + (968, 104, 1), + (149, 104, 4), + (1019, 104, 8), + (531, 104, 7), + (446, 104, 21), + (651, 104, 7), + (604, 104, 1), + (396, 104, 2), + (183, 104, 8), + (871, 104, 3), + (629, 104, 1), + (728, 104, 4), + (270, 104, 8), + (565, 104, 3), + (822, 104, 5), + (371, 104, 2), + (1052, 104, 8), + (260, 104, 19), + (918, 104, 12), + (200, 104, 21), + (233, 104, 5), + (326, 104, 8), + (750, 104, 17), + (327, 104, 8), + (993, 104, 1), + (68, 104, 6), + (680, 104, 3), + (355, 104, 7), + (1099, 104, 13), + (695, 104, 2), + (232, 104, 5), + (696, 104, 2), + (628, 104, 1), + (1098, 104, 13), + (994, 104, 1), + (380, 104, 1), + (107, 104, 15), + (135, 104, 9), + (720, 104, 9), + (345, 104, 16), + (808, 104, 7), + (915, 104, 8), + (312, 104, 11), + (778, 104, 6), + (963, 104, 1), + (913, 104, 8), + (230, 104, 3), + (676, 104, 2), + (256, 104, 12), + (169, 104, 12), + (837, 104, 7), + (598, 104, 1), + (438, 104, 13), + (368, 104, 1), + (283, 104, 10), + (170, 104, 12), + (197, 104, 13), + (441, 104, 13), + (595, 104, 1), + (648, 104, 5), + (745, 104, 11), + (960, 104, 1), + (1068, 104, 12), + (343, 104, 10), + (485, 104, 2), + (779, 104, 6), + (715, 104, 6), + (649, 104, 5), + (1097, 104, 8), + (1015, 104, 5), + (514, 104, 10), + (393, 104, 2), + (1037, 104, 11), + (806, 104, 7), + (811, 105, 5), + (968, 105, 1), + (106, 105, 6), + (200, 105, 9), + (552, 105, 3), + (651, 105, 3), + (603, 105, 1), + (680, 105, 2), + (871, 105, 2), + (232, 105, 3), + (260, 105, 8), + (446, 105, 9), + (345, 105, 7), + (68, 105, 3), + (918, 105, 6), + (134, 105, 4), + (1098, 105, 6), + (779, 105, 10), + (1068, 105, 19), + (837, 105, 11), + (595, 105, 1), + (960, 105, 1), + (808, 105, 11), + (806, 105, 11), + (963, 105, 1), + (588, 105, 1), + (953, 105, 1), + (163, 105, 12), + (676, 105, 3), + (544, 105, 4), + (312, 105, 18), + (169, 105, 19), + (778, 105, 10), + (251, 105, 12), + (192, 105, 13), + (12, 105, 9), + (1064, 105, 12), + (648, 105, 7), + (715, 105, 9), + (283, 105, 15), + (649, 105, 7), + (1010, 105, 5), + (230, 105, 5), + (393, 105, 2), + (343, 105, 16), + (745, 105, 17), + (711, 105, 6), + (388, 105, 2), + (368, 105, 2), + (197, 105, 21), + (280, 105, 10), + (438, 105, 21), + (1015, 105, 8), + (598, 105, 1), + (774, 105, 6), + (485, 105, 3), + (913, 105, 12), + (1094, 105, 8), + (256, 105, 19), + (170, 105, 19), + (915, 105, 12), + (441, 105, 21), + (644, 105, 5), + (909, 105, 8), + (514, 105, 17), + (431, 105, 13), + (862, 105, 2), + (1097, 105, 13), + (1037, 105, 18), + (446, 106, 9), + (134, 106, 4), + (1098, 106, 6), + (200, 106, 9), + (811, 106, 5), + (552, 106, 3), + (68, 106, 3), + (918, 106, 6), + (106, 106, 6), + (603, 106, 1), + (968, 106, 1), + (260, 106, 8), + (680, 106, 2), + (651, 106, 3), + (232, 106, 3), + (871, 106, 2), + (345, 106, 7), + (644, 106, 5), + (649, 106, 7), + (862, 106, 2), + (774, 106, 6), + (779, 106, 10), + (1010, 106, 5), + (230, 106, 5), + (711, 106, 6), + (283, 106, 15), + (280, 106, 10), + (909, 106, 8), + (368, 106, 2), + (953, 106, 1), + (192, 106, 13), + (431, 106, 13), + (163, 106, 12), + (1094, 106, 8), + (915, 106, 12), + (388, 106, 2), + (1037, 106, 18), + (1064, 106, 12), + (251, 106, 12), + (343, 106, 16), + (1097, 106, 13), + (598, 106, 1), + (588, 106, 1), + (441, 106, 21), + (485, 106, 3), + (12, 106, 9), + (544, 106, 4), + (808, 106, 11), + (837, 106, 11), + (197, 106, 21), + (963, 106, 1), + (170, 106, 19), + (665, 107, 3), + (149, 107, 4), + (410, 107, 1), + (680, 107, 3), + (728, 107, 4), + (840, 107, 11), + (871, 107, 3), + (681, 107, 3), + (232, 107, 5), + (719, 107, 9), + (1019, 107, 8), + (260, 107, 19), + (85, 107, 3), + (135, 107, 9), + (750, 107, 17), + (696, 107, 2), + (822, 107, 5), + (695, 107, 2), + (344, 107, 16), + (930, 107, 6), + (1028, 107, 4), + (315, 107, 18), + (1111, 107, 6), + (749, 107, 17), + (565, 107, 3), + (810, 107, 11), + (116, 107, 6), + (552, 107, 5), + (553, 107, 5), + (968, 107, 1), + (602, 107, 1), + (396, 107, 2), + (1052, 107, 8), + (918, 107, 12), + (445, 107, 21), + (395, 107, 2), + (371, 107, 2), + (233, 107, 5), + (993, 107, 1), + (488, 107, 3), + (183, 107, 8), + (107, 107, 15), + (969, 107, 1), + (200, 107, 21), + (48, 107, 20), + (355, 107, 7), + (106, 107, 15), + (33, 107, 6), + (380, 107, 1), + (446, 107, 21), + (1018, 107, 8), + (764, 107, 8), + (651, 107, 7), + (447, 107, 21), + (134, 107, 9), + (967, 107, 1), + (1080, 107, 8), + (471, 107, 9), + (919, 107, 12), + (68, 107, 6), + (628, 107, 1), + (994, 107, 1), + (213, 107, 9), + (327, 107, 8), + (629, 107, 1), + (105, 107, 15), + (34, 107, 6), + (489, 107, 3), + (326, 107, 8), + (1099, 107, 13), + (811, 107, 11), + (17, 107, 14), + (472, 107, 9), + (1098, 107, 13), + (270, 107, 8), + (115, 107, 6), + (173, 107, 19), + (720, 107, 9), + (783, 107, 10), + (287, 107, 15), + (370, 107, 2), + (604, 107, 1), + (531, 107, 7), + (172, 107, 19), + (381, 107, 1), + (603, 107, 1), + (345, 107, 16), + (256, 107, 12), + (514, 107, 10), + (1015, 107, 5), + (441, 107, 13), + (960, 107, 1), + (963, 107, 1), + (1037, 107, 11), + (1068, 107, 12), + (230, 107, 3), + (312, 107, 11), + (438, 107, 13), + (197, 107, 13), + (648, 107, 5), + (595, 107, 1), + (170, 107, 12), + (649, 107, 5), + (169, 107, 12), + (598, 107, 1), + (393, 107, 2), + (778, 107, 6), + (676, 107, 2), + (808, 107, 7), + (837, 107, 7), + (745, 107, 11), + (343, 107, 10), + (915, 107, 8), + (485, 107, 2), + (1097, 107, 8), + (913, 107, 8), + (715, 107, 6), + (283, 107, 10), + (779, 107, 6), + (806, 107, 7), + (368, 107, 1), + (720, 108, 9), + (604, 108, 1), + (446, 108, 21), + (764, 108, 8), + (696, 108, 2), + (371, 108, 2), + (260, 108, 19), + (629, 108, 1), + (651, 108, 7), + (327, 108, 8), + (695, 108, 2), + (326, 108, 8), + (811, 108, 11), + (1080, 108, 8), + (85, 108, 3), + (969, 108, 1), + (183, 108, 8), + (1028, 108, 4), + (680, 108, 3), + (396, 108, 2), + (822, 108, 5), + (1052, 108, 8), + (993, 108, 1), + (149, 108, 4), + (200, 108, 21), + (107, 108, 15), + (233, 108, 5), + (173, 108, 19), + (565, 108, 3), + (106, 108, 15), + (472, 108, 9), + (213, 108, 9), + (135, 108, 9), + (681, 108, 3), + (552, 108, 5), + (134, 108, 9), + (1111, 108, 6), + (1019, 108, 8), + (1099, 108, 13), + (1098, 108, 13), + (115, 108, 6), + (919, 108, 12), + (381, 108, 1), + (489, 108, 3), + (968, 108, 1), + (665, 108, 3), + (34, 108, 6), + (33, 108, 6), + (994, 108, 1), + (345, 108, 16), + (603, 108, 1), + (628, 108, 1), + (750, 108, 17), + (68, 108, 6), + (840, 108, 11), + (410, 108, 1), + (553, 108, 5), + (531, 108, 7), + (116, 108, 6), + (918, 108, 12), + (930, 108, 6), + (728, 108, 4), + (380, 108, 1), + (270, 108, 8), + (232, 108, 5), + (871, 108, 3), + (355, 108, 7), + (447, 108, 21), + (471, 108, 9), + (915, 108, 8), + (485, 108, 2), + (197, 108, 13), + (343, 108, 10), + (837, 108, 7), + (170, 108, 12), + (649, 108, 5), + (779, 108, 6), + (598, 108, 1), + (368, 108, 1), + (808, 108, 7), + (441, 108, 13), + (1097, 108, 8), + (1037, 108, 11), + (963, 108, 1), + (283, 108, 10), + (230, 108, 3), + (722, 74, 34), + (654, 74, 41), + (138, 74, 51), + (610, 74, 3), + (630, 74, 2), + (754, 74, 111), + (995, 74, 1), + (566, 74, 13), + (557, 74, 31), + (74, 74, 36), + (473, 74, 56), + (1029, 74, 19), + (697, 74, 6), + (373, 74, 6), + (559, 74, 19), + (453, 74, 137), + (683, 74, 13), + (687, 74, 9), + (376, 74, 4), + (975, 74, 1), + (980, 74, 1), + (56, 74, 52), + (214, 74, 54), + (615, 74, 3), + (142, 74, 31), + (786, 74, 61), + (931, 74, 31), + (813, 74, 66), + (35, 74, 35), + (1104, 74, 49), + (237, 74, 26), + (896, 74, 21), + (402, 74, 6), + (108, 74, 91), + (899, 74, 13), + (296, 74, 39), + (656, 74, 25), + (289, 74, 96), + (729, 74, 23), + (793, 74, 25), + (1112, 74, 33), + (242, 74, 11), + (880, 74, 7), + (532, 74, 43), + (1102, 74, 81), + (1081, 74, 48), + (267, 74, 73), + (24, 74, 52), + (458, 74, 83), + (53, 74, 77), + (1044, 74, 70), + (757, 74, 67), + (523, 74, 64), + (694, 109, 0), + (991, 109, 1), + (879, 109, -1), + (355, 109, -9), + (470, 109, -13), + (531, 109, -9), + (325, 109, -10), + (211, 109, -12), + (34, 109, -7), + (32, 109, -7), + (353, 109, -9), + (1027, 109, -3), + (1110, 109, -7), + (664, 109, -3), + (114, 109, -8), + (116, 109, -8), + (663, 109, -3), + (565, 109, -2), + (409, 109, 0), + (504, 109, 0), + (469, 109, -13), + (31, 109, -7), + (113, 109, -8), + (381, 109, 1), + (241, 109, -1), + (354, 109, -9), + (472, 109, -13), + (503, 109, 0), + (849, 109, -6), + (182, 109, -11), + (85, 109, -3), + (850, 109, -6), + (148, 109, -4), + (696, 109, 0), + (627, 109, 1), + (629, 109, 1), + (269, 109, -11), + (992, 109, 1), + (763, 109, -10), + (410, 109, 0), + (83, 109, -3), + (270, 109, -11), + (1026, 109, -3), + (994, 109, 1), + (213, 109, -12), + (822, 109, -5), + (821, 109, -5), + (626, 109, 1), + (84, 109, -3), + (1052, 109, -11), + (327, 109, -10), + (530, 109, -9), + (212, 109, -12), + (229, 109, -1), + (484, 109, 0), + (228, 109, -1), + (960, 109, 1), + (962, 109, 1), + (676, 109, 0), + (964, 109, 1), + (961, 109, 1), + (595, 109, 1), + (678, 109, 0), + (393, 109, 1), + (597, 109, 1), + (599, 109, 1), + (677, 109, 0), + (367, 109, 1), + (596, 109, 1), + (869, 109, 0), + (394, 109, 1), + (284, 109, -5), + (257, 109, -6), + (258, 109, -6), + (256, 109, -6), + (154, 109, -4), + (884, 109, 0), + (747, 109, -6), + (746, 109, -6), + (745, 109, -6), + (515, 109, -5), + (358, 109, 1), + (341, 109, -5), + (838, 109, -3), + (219, 109, 0), + (313, 109, -6), + (282, 109, -5), + (538, 109, 0), + (1058, 109, -4), + (104, 109, -4), + (16, 109, -4), + (799, 109, -2), + (1096, 109, -4), + (916, 109, -4), + (914, 109, -4), + (913, 109, -4), + (303, 109, -4), + (342, 109, -5), + (442, 109, -7), + (92, 109, -3), + (577, 109, 1), + (830, 109, -2), + (941, 109, 1), + (576, 109, 1), + (419, 109, -4), + (942, 109, 1), + (829, 109, -2), + (420, 109, -4), + (480, 109, 1), + (671, 109, 0), + (41, 109, -4), + (549, 109, -1), + (312, 109, -6), + (440, 109, -7), + (93, 109, -3), + (438, 109, -7), + (196, 109, -7), + (45, 109, -7), + (905, 109, -2), + (46, 109, -7), + (855, 109, 0), + (188, 109, -4), + (169, 109, -6), + (1068, 109, -6), + (514, 109, -5), + (439, 109, -7), + (718, 109, -2), + (780, 109, -3), + (716, 109, -2), + (4, 109, -2), + (736, 109, -3), + (1015, 109, -2), + (130, 109, -2), + (717, 109, -2), + (704, 109, -1), + (67, 109, -1), + (778, 109, -3), + (648, 109, -1), + (304, 109, -4), + (132, 109, -2), + (650, 109, -1), + (715, 109, -2), + (5, 109, -2), + (1016, 109, -2), + (121, 109, -1), + (131, 109, -2), + (806, 109, -3), + (246, 109, -4), + (639, 109, -1), + (807, 109, -3), + (703, 109, -1), + (333, 109, -3), + (550, 109, -1), + (786, 48, 61), + (453, 48, 137), + (373, 48, 6), + (687, 48, 9), + (722, 48, 34), + (654, 48, 41), + (557, 48, 31), + (610, 48, 3), + (980, 48, 1), + (376, 48, 4), + (754, 48, 111), + (1102, 48, 81), + (813, 48, 66), + (402, 48, 6), + (142, 48, 31), + (138, 48, 51), + (559, 48, 19), + (656, 48, 25), + (108, 48, 91), + (896, 48, 21), + (615, 48, 3), + (289, 48, 96), + (683, 48, 13), + (899, 48, 13), + (237, 48, 26), + (975, 48, 1), + (74, 48, 36), + (940, 48, 1), + (798, 48, 27), + (332, 48, 41), + (302, 48, 46), + (218, 48, 11), + (53, 48, 77), + (828, 48, 29), + (187, 48, 54), + (418, 48, 56), + (24, 48, 52), + (757, 48, 67), + (3, 48, 35), + (523, 48, 64), + (60, 48, 15), + (267, 48, 73), + (458, 48, 83), + (1057, 48, 48), + (386, 48, 4), + (1044, 48, 70), + (1104, 48, 49), + (274, 48, 39), + (479, 48, 5), + (575, 48, 2), + (1002, 48, 19), + (91, 48, 37), + (638, 48, 17), + (316, 75, 46), + (973, 75, 1), + (147, 75, 31), + (1070, 75, 48), + (209, 75, 80), + (497, 75, 7), + (78, 75, 22), + (608, 75, 2), + (928, 75, 46), + (81, 75, 22), + (54, 75, 77), + (820, 75, 40), + (1078, 75, 72), + (819, 75, 40), + (692, 75, 9), + (51, 75, 52), + (72, 75, 15), + (926, 75, 46), + (322, 75, 69), + (988, 75, 1), + (784, 75, 25), + (753, 75, 45), + (519, 75, 43), + (620, 75, 3), + (877, 75, 10), + (985, 75, 1), + (268, 75, 73), + (843, 75, 29), + (347, 75, 41), + (847, 75, 43), + (451, 75, 56), + (689, 75, 9), + (466, 75, 83), + (1047, 75, 70), + (660, 75, 25), + (895, 75, 9), + (682, 75, 6), + (1041, 75, 47), + (528, 75, 64), + (378, 75, 4), + (873, 75, 7), + (323, 75, 69), + (792, 75, 37), + (463, 75, 83), + (563, 75, 19), + (500, 75, 7), + (179, 75, 75), + (556, 75, 13), + (526, 75, 64), + (623, 75, 3), + (1064, 75, 119), + (1094, 75, 81), + (12, 75, 86), + (251, 75, 121), + (10, 75, 86), + (953, 75, 1), + (249, 75, 121), + (588, 75, 3), + (862, 75, 16), + (338, 75, 101), + (585, 75, 3), + (1008, 75, 46), + (711, 75, 56), + (223, 75, 26), + (774, 75, 61), + (190, 75, 133), + (192, 75, 133), + (1092, 75, 81), + (163, 75, 124), + (361, 75, 6), + (861, 75, 16), + (388, 75, 9), + (308, 75, 115), + (544, 75, 31), + (950, 75, 1), + (1010, 75, 46), + (802, 75, 66), + (431, 75, 137), + (428, 75, 137), + (644, 75, 41), + (643, 75, 41), + (280, 75, 96), + (909, 75, 76), + (510, 75, 106), + (277, 75, 96), + (482, 75, 11), + (696, 76, 5), + (356, 76, 21), + (503, 76, 4), + (533, 76, 22), + (630, 76, 2), + (1112, 76, 17), + (38, 76, 18), + (732, 76, 12), + (932, 76, 16), + (35, 76, 18), + (634, 76, 2), + (999, 76, 1), + (694, 76, 5), + (569, 76, 7), + (566, 76, 7), + (567, 76, 7), + (633, 76, 2), + (631, 76, 2), + (37, 76, 18), + (879, 76, 6), + (532, 76, 22), + (996, 76, 1), + (695, 76, 5), + (729, 76, 12), + (383, 76, 2), + (822, 76, 21), + (471, 76, 42), + (272, 76, 25), + (58, 76, 26), + (380, 76, 3), + (764, 76, 34), + (795, 76, 13), + (763, 76, 34), + (821, 76, 21), + (214, 76, 27), + (849, 76, 22), + (1052, 76, 36), + (531, 76, 33), + (270, 76, 37), + (216, 76, 27), + (880, 76, 4), + (326, 76, 35), + (728, 76, 18), + (730, 76, 12), + (1054, 76, 24), + (327, 76, 35), + (325, 76, 35), + (473, 76, 28), + (626, 76, 2), + (1111, 76, 25), + (1081, 76, 25), + (34, 76, 27), + (33, 76, 27), + (242, 76, 6), + (793, 76, 13), + (297, 76, 20), + (31, 76, 27), + (666, 76, 9), + (115, 76, 28), + (530, 76, 33), + (116, 76, 28), + (296, 76, 20), + (1082, 76, 25), + (113, 76, 28), + (903, 76, 5), + (184, 76, 26), + (56, 76, 26), + (930, 76, 24), + (355, 76, 31), + (353, 76, 31), + (881, 76, 4), + (150, 76, 11), + (381, 76, 3), + (931, 76, 16), + (767, 76, 23), + (1029, 76, 10), + (697, 76, 4), + (851, 76, 15), + (665, 76, 13), + (991, 76, 1), + (505, 76, 3), + (995, 76, 1), + (86, 76, 8), + (823, 76, 14), + (243, 76, 6), + (663, 76, 13), + (411, 76, 3), + (83, 76, 12), + (766, 76, 23), + (151, 76, 11), + (85, 76, 12), + (384, 76, 2), + (934, 76, 16), + (993, 76, 1), + (565, 76, 10), + (998, 76, 1), + (994, 76, 1), + (477, 76, 28), + (118, 76, 19), + (629, 76, 2), + (1080, 76, 36), + (245, 76, 6), + (568, 76, 7), + (476, 76, 28), + (183, 76, 38), + (149, 76, 16), + (410, 76, 3), + (699, 76, 4), + (117, 76, 19), + (213, 76, 41), + (469, 76, 42), + (765, 76, 23), + (211, 76, 41), + (824, 76, 14), + (698, 76, 4), + (628, 76, 2), + (474, 76, 28), + (1028, 76, 15), + (731, 76, 12), + (472, 76, 42), + (87, 76, 8), + (1026, 76, 15), + (387, 76, 5), + (539, 76, 16), + (305, 76, 58), + (386, 76, 5), + (419, 76, 69), + (507, 76, 53), + (703, 76, 29), + (576, 76, 2), + (771, 76, 31), + (303, 76, 58), + (274, 76, 49), + (1057, 76, 60), + (832, 76, 36), + (358, 76, 3), + (579, 76, 2), + (332, 76, 51), + (737, 76, 56), + (638, 76, 21), + (1002, 76, 23), + (220, 76, 13), + (1059, 76, 60), + (60, 76, 19), + (640, 76, 21), + (247, 76, 61), + (831, 76, 36), + (886, 76, 11), + (189, 76, 67), + (246, 76, 61), + (855, 76, 9), + (187, 76, 67), + (418, 76, 69), + (302, 76, 58), + (334, 76, 51), + (857, 76, 9), + (798, 76, 33), + (884, 76, 11), + (422, 76, 69), + (1004, 76, 23), + (1060, 76, 60), + (154, 76, 62), + (705, 76, 29), + (421, 76, 69), + (218, 76, 13), + (856, 76, 9), + (578, 76, 2), + (828, 76, 36), + (1003, 76, 23), + (156, 76, 62), + (480, 76, 6), + (155, 76, 62), + (885, 76, 11), + (479, 76, 6), + (41, 76, 65), + (829, 76, 36), + (3, 76, 43), + (92, 76, 46), + (941, 76, 1), + (940, 76, 1), + (943, 76, 1), + (4, 76, 43), + (94, 76, 46), + (95, 76, 46), + (905, 76, 39), + (639, 76, 21), + (575, 76, 2), + (1087, 76, 41), + (91, 76, 46), + (944, 76, 1), + (6, 76, 43), + (1021, 77, 23), + (103, 77, 28), + (684, 77, 7), + (897, 77, 11), + (128, 77, 16), + (126, 77, 16), + (238, 77, 13), + (1012, 77, 15), + (558, 77, 16), + (1013, 77, 15), + (1014, 77, 15), + (1011, 77, 15), + (129, 77, 16), + (1022, 77, 23), + (127, 77, 16), + (647, 77, 13), + (140, 77, 26), + (592, 77, 2), + (141, 77, 26), + (139, 77, 26), + (66, 77, 12), + (788, 77, 31), + (548, 77, 10), + (789, 77, 31), + (547, 77, 10), + (546, 77, 10), + (655, 77, 21), + (976, 77, 1), + (102, 77, 28), + (101, 77, 28), + (14, 77, 27), + (15, 77, 27), + (1095, 77, 25), + (911, 77, 24), + (912, 77, 24), + (910, 77, 24), + (836, 77, 22), + (805, 77, 21), + (777, 77, 19), + (686, 77, 7), + (979, 77, 1), + (227, 77, 9), + (776, 77, 19), + (712, 77, 18), + (613, 77, 2), + (713, 77, 18), + (614, 77, 2), + (611, 77, 2), + (374, 77, 3), + (714, 77, 18), + (400, 77, 5), + (492, 77, 6), + (491, 77, 6), + (978, 77, 1), + (365, 77, 3), + (389, 77, 3), + (319, 77, 58), + (1074, 77, 60), + (1072, 77, 60), + (392, 77, 3), + (177, 77, 62), + (176, 77, 62), + (390, 77, 3), + (204, 77, 67), + (456, 77, 69), + (391, 77, 3), + (815, 77, 33), + (454, 77, 69), + (483, 77, 4), + (955, 77, 1), + (958, 77, 1), + (957, 77, 1), + (366, 77, 3), + (959, 77, 1), + (364, 77, 3), + (956, 77, 1), + (591, 77, 2), + (590, 77, 2), + (594, 77, 2), + (593, 77, 2), + (457, 77, 69), + (349, 77, 51), + (646, 77, 13), + (924, 77, 39), + (226, 77, 9), + (893, 77, 7), + (1103, 77, 41), + (22, 77, 43), + (865, 77, 6), + (23, 77, 43), + (868, 77, 6), + (866, 77, 6), + (109, 77, 46), + (263, 77, 61), + (290, 77, 49), + (266, 77, 61), + (867, 77, 6), + (521, 77, 53), + (522, 77, 53), + (864, 77, 6), + (756, 77, 56), + (675, 77, 5), + (755, 77, 56), + (1043, 77, 59), + (1042, 77, 59), + (674, 77, 5), + (265, 77, 61), + (814, 77, 33), + (110, 77, 46), + (44, 77, 39), + (742, 77, 34), + (744, 77, 34), + (433, 77, 42), + (1065, 77, 36), + (743, 77, 34), + (435, 77, 42), + (1067, 77, 36), + (1035, 77, 36), + (167, 77, 38), + (1066, 77, 36), + (195, 77, 41), + (1036, 77, 36), + (253, 77, 37), + (194, 77, 41), + (255, 77, 37), + (310, 77, 35), + (254, 77, 37), + (281, 77, 30), + (434, 77, 42), + (311, 77, 35), + (437, 77, 42), + (168, 77, 38), + (340, 77, 31), + (436, 77, 42), + (512, 77, 33), + (513, 77, 33), + (165, 77, 38), + (166, 77, 38), + (302, 77, 24), + (671, 77, 4), + (4, 77, 18), + (1003, 77, 10), + (421, 77, 28), + (1059, 77, 25), + (333, 77, 21), + (304, 77, 24), + (480, 77, 3), + (943, 77, 1), + (940, 77, 1), + (479, 77, 3), + (420, 77, 28), + (828, 77, 15), + (905, 77, 16), + (638, 77, 9), + (798, 77, 14), + (94, 77, 19), + (188, 77, 27), + (799, 77, 14), + (187, 77, 27), + (93, 77, 19), + (3, 77, 18), + (640, 77, 9), + (91, 77, 19), + (418, 77, 28), + (1057, 77, 25), + (639, 77, 9), + (332, 77, 21), + (60, 77, 8), + (334, 77, 21), + (885, 77, 5), + (855, 77, 4), + (303, 77, 24), + (737, 77, 23), + (942, 77, 1), + (941, 77, 1), + (387, 77, 3), + (274, 77, 20), + (5, 77, 18), + (155, 77, 26), + (830, 77, 15), + (6, 77, 18), + (736, 77, 23), + (576, 77, 2), + (219, 77, 6), + (703, 77, 12), + (577, 77, 2), + (578, 77, 2), + (575, 77, 2), + (218, 77, 6), + (507, 77, 22), + (92, 77, 19), + (358, 77, 2), + (419, 77, 28), + (41, 77, 26), + (884, 77, 5), + (831, 77, 15), + (538, 77, 7), + (121, 77, 11), + (246, 77, 25), + (386, 77, 3), + (829, 77, 15), + (856, 77, 4), + (154, 77, 26), + (704, 77, 12), + (1058, 77, 25), + (1002, 77, 10), + (109, 78, 55), + (457, 78, 83), + (665, 78, 41), + (456, 78, 83), + (558, 78, 19), + (663, 78, 41), + (755, 78, 67), + (893, 78, 9), + (1042, 78, 70), + (204, 78, 80), + (226, 78, 11), + (310, 78, 46), + (113, 78, 91), + (821, 78, 66), + (788, 78, 37), + (115, 78, 91), + (238, 78, 16), + (454, 78, 83), + (1012, 78, 19), + (764, 78, 111), + (483, 78, 5), + (930, 78, 76), + (756, 78, 67), + (126, 78, 21), + (993, 78, 1), + (789, 78, 37), + (924, 78, 46), + (265, 78, 73), + (254, 78, 49), + (139, 78, 31), + (319, 78, 69), + (149, 78, 51), + (1074, 78, 72), + (1065, 78, 48), + (1043, 78, 70), + (389, 78, 4), + (591, 78, 2), + (1072, 78, 72), + (1026, 78, 46), + (434, 78, 56), + (646, 78, 17), + (815, 78, 40), + (1011, 78, 19), + (546, 78, 13), + (165, 78, 50), + (140, 78, 31), + (141, 78, 31), + (814, 78, 40), + (176, 78, 75), + (1021, 78, 28), + (655, 78, 25), + (353, 78, 101), + (177, 78, 75), + (728, 78, 56), + (1022, 78, 28), + (380, 78, 6), + (263, 78, 73), + (266, 78, 73), + (1028, 78, 46), + (22, 78, 52), + (742, 78, 45), + (349, 78, 61), + (469, 78, 137), + (23, 78, 52), + (956, 78, 1), + (864, 78, 7), + (978, 78, 1), + (471, 78, 137), + (695, 78, 13), + (979, 78, 1), + (374, 78, 4), + (976, 78, 1), + (955, 78, 1), + (694, 78, 13), + (326, 78, 115), + (911, 78, 31), + (183, 78, 124), + (110, 78, 55), + (101, 78, 37), + (433, 78, 56), + (340, 78, 41), + (14, 78, 35), + (628, 78, 3), + (1080, 78, 119), + (590, 78, 2), + (211, 78, 133), + (290, 78, 58), + (33, 78, 86), + (325, 78, 115), + (910, 78, 31), + (712, 78, 23), + (503, 78, 11), + (1111, 78, 81), + (743, 78, 45), + (400, 78, 6), + (626, 78, 3), + (492, 78, 7), + (194, 78, 54), + (522, 78, 64), + (127, 78, 21), + (253, 78, 49), + (763, 78, 111), + (686, 78, 9), + (530, 78, 106), + (684, 78, 9), + (849, 78, 71), + (897, 78, 13), + (491, 78, 7), + (1103, 78, 49), + (865, 78, 7), + (613, 78, 3), + (991, 78, 1), + (1035, 78, 47), + (521, 78, 64), + (83, 78, 36), + (614, 78, 3), + (1036, 78, 47), + (611, 78, 3), + (31, 78, 86), + (364, 78, 3), + (879, 78, 16), + (70, 79, 15), + (72, 79, 15), + (1023, 79, 28), + (175, 79, 50), + (616, 79, 3), + (376, 79, 4), + (73, 79, 15), + (377, 79, 4), + (652, 79, 17), + (653, 79, 17), + (71, 79, 15), + (452, 79, 56), + (397, 79, 4), + (682, 79, 6), + (972, 79, 1), + (49, 79, 52), + (490, 79, 5), + (974, 79, 1), + (984, 79, 1), + (399, 79, 4), + (449, 79, 56), + (980, 79, 1), + (398, 79, 4), + (234, 79, 11), + (845, 79, 43), + (844, 79, 43), + (971, 79, 1), + (722, 79, 34), + (982, 79, 1), + (605, 79, 2), + (372, 79, 3), + (201, 79, 54), + (606, 79, 2), + (609, 79, 2), + (608, 79, 2), + (983, 79, 1), + (607, 79, 2), + (724, 79, 34), + (235, 79, 11), + (69, 79, 15), + (619, 79, 3), + (554, 79, 13), + (846, 79, 43), + (617, 79, 3), + (174, 79, 50), + (145, 79, 31), + (555, 79, 13), + (618, 79, 3), + (556, 79, 13), + (144, 79, 31), + (973, 79, 1), + (236, 79, 11), + (872, 79, 7), + (615, 79, 3), + (146, 79, 31), + (894, 79, 9), + (50, 79, 52), + (895, 79, 9), + (981, 79, 1), + (874, 79, 7), + (970, 79, 1), + (143, 79, 31), + (873, 79, 7), + (142, 79, 31), + (51, 79, 52), + (519, 79, 43), + (18, 79, 35), + (753, 79, 45), + (1100, 79, 33), + (816, 79, 40), + (1101, 79, 33), + (240, 79, 16), + (1070, 79, 48), + (1020, 79, 19), + (496, 79, 7), + (656, 79, 25), + (76, 79, 22), + (925, 79, 46), + (494, 79, 7), + (920, 79, 31), + (752, 79, 45), + (451, 79, 56), + (658, 79, 25), + (842, 79, 29), + (922, 79, 31), + (448, 79, 56), + (899, 79, 13), + (348, 79, 41), + (520, 79, 43), + (316, 79, 46), + (876, 79, 10), + (346, 79, 41), + (317, 79, 46), + (818, 79, 40), + (900, 79, 13), + (347, 79, 41), + (19, 79, 35), + (901, 79, 13), + (288, 79, 39), + (688, 79, 9), + (518, 79, 43), + (751, 79, 45), + (20, 79, 35), + (687, 79, 9), + (921, 79, 31), + (77, 79, 22), + (723, 79, 34), + (790, 79, 37), + (657, 79, 25), + (493, 79, 7), + (137, 79, 21), + (136, 79, 21), + (785, 79, 25), + (812, 79, 27), + (817, 79, 40), + (450, 79, 56), + (784, 79, 25), + (262, 79, 49), + (404, 79, 6), + (721, 79, 23), + (560, 79, 19), + (561, 79, 19), + (1071, 79, 48), + (402, 79, 6), + (239, 79, 16), + (559, 79, 19), + (261, 79, 49), + (1040, 79, 47), + (202, 79, 54), + (843, 79, 29), + (495, 79, 7), + (841, 79, 29), + (1041, 79, 47), + (403, 79, 6), + (1, 79, 86), + (321, 79, 69), + (1106, 79, 49), + (854, 79, 16), + (267, 79, 73), + (39, 79, 128), + (1000, 79, 46), + (417, 79, 137), + (330, 79, 101), + (291, 79, 58), + (637, 79, 41), + (152, 79, 124), + (357, 79, 6), + (385, 79, 9), + (769, 79, 61), + (760, 79, 67), + (186, 79, 133), + (758, 79, 67), + (292, 79, 58), + (670, 79, 13), + (759, 79, 67), + (1031, 79, 116), + (111, 79, 55), + (2, 79, 86), + (1104, 79, 49), + (636, 79, 41), + (1001, 79, 46), + (413, 79, 137), + (827, 79, 71), + (768, 79, 61), + (416, 79, 137), + (667, 79, 13), + (506, 79, 106), + (757, 79, 67), + (1105, 79, 49), + (1046, 79, 70), + (635, 79, 41), + (826, 79, 71), + (702, 79, 56), + (1032, 79, 116), + (1045, 79, 70), + (936, 79, 1), + (852, 79, 16), + (700, 79, 56), + (1084, 79, 81), + (40, 79, 128), + (1044, 79, 70), + (669, 79, 13), + (112, 79, 55), + (415, 79, 137), + (185, 79, 133), + (668, 79, 13), + (478, 79, 11), + (770, 79, 61), + (1086, 79, 81), + (88, 79, 91), + (414, 79, 137), + (27, 79, 52), + (24, 79, 52), + (1107, 79, 49), + (178, 79, 75), + (735, 79, 111), + (935, 79, 1), + (298, 79, 115), + (119, 79, 51), + (89, 79, 91), + (120, 79, 51), + (1076, 79, 72), + (904, 79, 76), + (825, 79, 71), + (535, 79, 31), + (525, 79, 64), + (797, 79, 66), + (570, 79, 3), + (206, 79, 80), + (537, 79, 31), + (300, 79, 115), + (883, 79, 21), + (572, 79, 3), + (459, 79, 83), + (299, 79, 115), + (53, 79, 77), + (329, 79, 101), + (90, 79, 91), + (205, 79, 80), + (153, 79, 124), + (573, 79, 3), + (1055, 79, 119), + (26, 79, 52), + (460, 79, 83), + (853, 79, 16), + (574, 79, 3), + (59, 79, 36), + (937, 79, 1), + (524, 79, 64), + (939, 79, 1), + (534, 79, 31), + (351, 79, 61), + (217, 79, 26), + (796, 79, 66), + (301, 79, 115), + (571, 79, 3), + (25, 79, 52), + (461, 79, 83), + (1033, 79, 116), + (320, 79, 69), + (273, 79, 96), + (1075, 79, 72), + (536, 79, 31), + (462, 79, 83), + (331, 79, 101), + (938, 79, 1), + (458, 79, 83), + (701, 79, 56), + (523, 79, 64), + (733, 79, 111), + (734, 79, 111), + (1085, 79, 81), + (1056, 79, 119), + (377, 80, 6), + (239, 80, 26), + (925, 80, 76), + (616, 80, 3), + (900, 80, 21), + (816, 80, 66), + (493, 80, 11), + (981, 80, 1), + (143, 80, 51), + (723, 80, 56), + (403, 80, 9), + (130, 80, 31), + (758, 80, 111), + (228, 80, 16), + (670, 80, 6), + (1016, 80, 28), + (939, 80, 1), + (869, 80, 10), + (217, 80, 11), + (770, 80, 25), + (459, 80, 137), + (677, 80, 9), + (111, 80, 91), + (25, 80, 86), + (637, 80, 17), + (273, 80, 39), + (313, 80, 69), + (807, 80, 40), + (1105, 80, 81), + (506, 80, 43), + (417, 80, 56), + (1086, 80, 33), + (367, 80, 4), + (735, 80, 45), + (257, 80, 73), + (574, 80, 2), + (854, 80, 7), + (320, 80, 115), + (596, 80, 3), + (341, 80, 61), + (351, 80, 101), + (1096, 80, 49), + (961, 80, 1), + (301, 80, 46), + (45, 80, 77), + (1033, 80, 47), + (1056, 80, 48), + (716, 80, 34), + (40, 80, 52), + (537, 80, 13), + (439, 80, 83), + (845, 81, 29), + (449, 81, 83), + (520, 81, 64), + (925, 81, 31), + (609, 81, 3), + (201, 81, 80), + (873, 81, 10), + (872, 81, 10), + (372, 81, 4), + (448, 81, 83), + (1040, 81, 70), + (397, 81, 6), + (1041, 81, 70), + (752, 81, 67), + (980, 81, 1), + (316, 81, 69), + (753, 81, 67), + (518, 81, 64), + (490, 81, 7), + (262, 81, 73), + (261, 81, 73), + (398, 81, 6), + (751, 81, 67), + (606, 81, 3), + (682, 81, 9), + (399, 81, 6), + (73, 81, 22), + (921, 81, 46), + (174, 81, 75), + (69, 81, 22), + (920, 81, 46), + (72, 81, 22), + (1071, 81, 72), + (842, 81, 43), + (202, 81, 80), + (450, 81, 83), + (71, 81, 22), + (288, 81, 58), + (841, 81, 43), + (554, 81, 19), + (452, 81, 83), + (70, 81, 22), + (785, 81, 37), + (784, 81, 37), + (721, 81, 34), + (653, 81, 25), + (175, 81, 75), + (137, 81, 31), + (846, 81, 29), + (652, 81, 25), + (136, 81, 31), + (843, 81, 43), + (236, 81, 16), + (874, 81, 10), + (317, 81, 69), + (895, 81, 13), + (49, 81, 77), + (348, 81, 61), + (844, 81, 29), + (346, 81, 61), + (50, 81, 77), + (894, 81, 13), + (234, 81, 16), + (347, 81, 61), + (922, 81, 46), + (812, 81, 40), + (1101, 81, 49), + (1020, 81, 28), + (20, 81, 52), + (556, 81, 19), + (451, 81, 83), + (1070, 81, 72), + (19, 81, 52), + (51, 81, 77), + (18, 81, 52), + (555, 81, 19), + (1100, 81, 49), + (519, 81, 64), + (235, 81, 16), + (876, 81, 7), + (402, 81, 4), + (1023, 81, 19), + (688, 81, 6), + (143, 81, 21), + (145, 81, 21), + (901, 81, 9), + (974, 81, 1), + (687, 81, 6), + (818, 81, 27), + (657, 81, 17), + (377, 81, 3), + (899, 81, 9), + (658, 81, 17), + (376, 81, 3), + (615, 81, 2), + (973, 81, 1), + (981, 81, 1), + (403, 81, 4), + (816, 81, 27), + (495, 81, 5), + (970, 81, 1), + (142, 81, 21), + (984, 81, 1), + (496, 81, 5), + (972, 81, 1), + (404, 81, 4), + (619, 81, 2), + (493, 81, 5), + (724, 81, 23), + (723, 81, 23), + (982, 81, 1), + (494, 81, 5), + (240, 81, 11), + (617, 81, 2), + (656, 81, 17), + (560, 81, 13), + (561, 81, 13), + (559, 81, 13), + (790, 81, 25), + (616, 81, 2), + (608, 81, 3), + (722, 81, 23), + (239, 81, 11), + (983, 81, 1), + (605, 81, 3), + (77, 81, 15), + (607, 81, 3), + (144, 81, 21), + (971, 81, 1), + (817, 81, 27), + (618, 81, 2), + (76, 81, 15), + (146, 81, 21), + (900, 81, 9), + (523, 81, 43), + (120, 81, 51), + (292, 81, 39), + (506, 81, 106), + (119, 81, 51), + (733, 81, 111), + (524, 81, 43), + (351, 81, 41), + (797, 81, 66), + (291, 81, 39), + (825, 81, 71), + (1000, 81, 46), + (757, 81, 45), + (525, 81, 43), + (735, 81, 111), + (111, 81, 37), + (700, 81, 56), + (734, 81, 111), + (573, 81, 3), + (1085, 81, 81), + (417, 81, 137), + (1056, 81, 119), + (1107, 81, 33), + (574, 81, 3), + (88, 81, 91), + (1055, 81, 119), + (853, 81, 16), + (572, 81, 3), + (768, 81, 61), + (153, 81, 124), + (883, 81, 21), + (571, 81, 3), + (90, 81, 91), + (570, 81, 3), + (414, 81, 137), + (301, 81, 115), + (459, 81, 56), + (769, 81, 61), + (936, 81, 1), + (24, 81, 35), + (462, 81, 56), + (701, 81, 56), + (299, 81, 115), + (478, 81, 11), + (667, 81, 13), + (413, 81, 137), + (1084, 81, 81), + (416, 81, 137), + (670, 81, 13), + (186, 81, 133), + (852, 81, 16), + (1105, 81, 33), + (668, 81, 13), + (185, 81, 133), + (1, 81, 86), + (40, 81, 128), + (939, 81, 1), + (39, 81, 128), + (2, 81, 86), + (415, 81, 137), + (385, 81, 9), + (152, 81, 124), + (770, 81, 61), + (854, 81, 16), + (1106, 81, 33), + (357, 81, 6), + (1086, 81, 81), + (669, 81, 13), + (1045, 81, 47), + (460, 81, 56), + (826, 81, 71), + (320, 81, 46), + (321, 81, 46), + (59, 81, 36), + (25, 81, 35), + (331, 81, 101), + (267, 81, 49), + (1032, 81, 116), + (637, 81, 41), + (1075, 81, 48), + (1046, 81, 47), + (535, 81, 31), + (1044, 81, 47), + (112, 81, 37), + (1031, 81, 116), + (330, 81, 101), + (758, 81, 45), + (636, 81, 41), + (827, 81, 71), + (759, 81, 45), + (1104, 81, 33), + (760, 81, 45), + (702, 81, 56), + (635, 81, 41), + (536, 81, 31), + (461, 81, 56), + (89, 81, 91), + (217, 81, 26), + (937, 81, 1), + (534, 81, 31), + (300, 81, 115), + (938, 81, 1), + (458, 81, 56), + (904, 81, 76), + (27, 81, 35), + (796, 81, 66), + (1001, 81, 46), + (935, 81, 1), + (205, 81, 54), + (206, 81, 54), + (329, 81, 101), + (537, 81, 31), + (53, 81, 52), + (26, 81, 35), + (298, 81, 115), + (178, 81, 50), + (1076, 81, 48), + (1033, 81, 116), + (273, 81, 96), + (784, 82, 61), + (61, 82, 22), + (785, 82, 61), + (843, 82, 71), + (124, 82, 31), + (50, 82, 128), + (452, 82, 137), + (63, 82, 22), + (812, 82, 66), + (72, 82, 36), + (160, 82, 75), + (62, 82, 22), + (739, 82, 67), + (738, 82, 67), + (653, 82, 41), + (248, 82, 73), + (70, 82, 36), + (652, 82, 41), + (122, 82, 31), + (891, 82, 13), + (542, 82, 19), + (949, 82, 1), + (721, 82, 56), + (307, 82, 69), + (1062, 82, 72), + (137, 82, 51), + (641, 82, 25), + (123, 82, 31), + (1007, 82, 28), + (157, 82, 75), + (1006, 82, 28), + (51, 82, 128), + (71, 82, 36), + (73, 82, 36), + (1071, 82, 119), + (426, 82, 83), + (519, 82, 106), + (520, 82, 106), + (860, 82, 10), + (518, 82, 106), + (858, 82, 10), + (672, 82, 9), + (580, 82, 3), + (753, 82, 111), + (481, 82, 7), + (348, 82, 101), + (360, 82, 4), + (175, 82, 124), + (359, 82, 4), + (1041, 82, 116), + (262, 82, 121), + (581, 82, 3), + (261, 82, 121), + (584, 82, 3), + (583, 82, 3), + (1070, 82, 119), + (316, 82, 115), + (317, 82, 115), + (752, 82, 111), + (174, 82, 124), + (842, 82, 71), + (450, 82, 137), + (158, 82, 75), + (540, 82, 19), + (222, 82, 16), + (921, 82, 76), + (42, 82, 77), + (922, 82, 76), + (1101, 82, 81), + (423, 82, 83), + (859, 82, 10), + (888, 82, 13), + (946, 82, 1), + (1061, 82, 72), + (19, 82, 86), + (427, 82, 83), + (20, 82, 86), + (424, 82, 83), + (451, 82, 137), + (890, 82, 13), + (347, 82, 101), + (887, 82, 13), + (346, 82, 101), + (1100, 82, 81), + (682, 82, 13), + (973, 82, 1), + (49, 82, 128), + (707, 82, 34), + (399, 82, 9), + (895, 82, 21), + (96, 82, 55), + (834, 82, 43), + (835, 82, 43), + (275, 82, 58), + (907, 82, 46), + (1090, 82, 49), + (556, 82, 31), + (398, 82, 9), + (908, 82, 46), + (974, 82, 1), + (99, 82, 55), + (906, 82, 46), + (972, 82, 1), + (873, 82, 16), + (97, 82, 55), + (874, 82, 16), + (235, 82, 26), + (236, 82, 26), + (948, 82, 1), + (971, 82, 1), + (894, 82, 21), + (706, 82, 34), + (337, 82, 61), + (607, 82, 3), + (801, 82, 40), + (945, 82, 1), + (449, 82, 137), + (1088, 82, 49), + (7, 82, 52), + (509, 82, 64), + (202, 82, 133), + (708, 82, 34), + (606, 82, 3), + (554, 82, 31), + (800, 82, 40), + (1091, 82, 49), + (9, 82, 52), + (372, 82, 6), + (608, 82, 3), + (8, 82, 52), + (609, 82, 3), + (833, 82, 43), + (555, 82, 31), + (336, 82, 61), + (701, 82, 23), + (636, 82, 17), + (535, 82, 13), + (826, 82, 29), + (414, 82, 56), + (667, 82, 6), + (1084, 82, 33), + (152, 82, 50), + (853, 82, 7), + (571, 82, 2), + (1, 82, 35), + (330, 82, 41), + (299, 82, 46), + (936, 82, 1), + (1031, 82, 47), + (174, 83, 124), + (158, 83, 75), + (97, 83, 55), + (842, 83, 71), + (894, 83, 21), + (888, 83, 13), + (946, 83, 1), + (834, 83, 43), + (424, 83, 83), + (859, 83, 10), + (907, 83, 46), + (518, 83, 106), + (8, 83, 52), + (752, 83, 111), + (360, 83, 4), + (581, 83, 3), + (606, 83, 3), + (261, 83, 121), + (1088, 83, 49), + (971, 83, 1), + (49, 83, 128), + (652, 83, 41), + (554, 83, 31), + (449, 83, 137), + (70, 83, 36), + (738, 83, 67), + (275, 83, 58), + (61, 83, 22), + (1100, 83, 81), + (707, 83, 34), + (812, 83, 66), + (1062, 83, 72), + (1031, 83, 47), + (330, 83, 41), + (826, 83, 29), + (414, 83, 56), + (701, 83, 23), + (152, 83, 50), + (667, 83, 6), + (1, 83, 35), + (1084, 83, 33), + (535, 83, 13), + (936, 83, 1), + (571, 83, 2), + (299, 83, 46), + (853, 83, 7), + (636, 83, 17), + (834, 84, 29), + (890, 84, 9), + (275, 84, 39), + (360, 84, 3), + (753, 84, 67), + (1071, 84, 72), + (20, 84, 52), + (752, 84, 67), + (137, 84, 31), + (738, 84, 45), + (236, 84, 16), + (973, 84, 1), + (426, 84, 56), + (61, 84, 15), + (707, 84, 23), + (873, 84, 10), + (9, 84, 35), + (1090, 84, 33), + (907, 84, 31), + (520, 84, 64), + (399, 84, 6), + (971, 84, 1), + (1006, 84, 19), + (556, 84, 19), + (519, 84, 64), + (518, 84, 64), + (452, 84, 83), + (672, 84, 6), + (653, 84, 25), + (348, 84, 61), + (336, 84, 41), + (974, 84, 1), + (8, 84, 35), + (859, 84, 7), + (449, 84, 83), + (347, 84, 61), + (424, 84, 56), + (51, 84, 77), + (70, 84, 22), + (682, 84, 9), + (652, 84, 25), + (946, 84, 1), + (609, 84, 3), + (1100, 84, 49), + (73, 84, 22), + (842, 84, 43), + (785, 84, 37), + (801, 84, 27), + (554, 84, 19), + (843, 84, 43), + (160, 84, 50), + (123, 84, 21), + (895, 84, 13), + (894, 84, 13), + (261, 84, 73), + (72, 84, 22), + (316, 84, 69), + (1088, 84, 33), + (49, 84, 77), + (317, 84, 69), + (583, 84, 2), + (812, 84, 40), + (62, 84, 15), + (1062, 84, 48), + (948, 84, 1), + (1070, 84, 72), + (307, 84, 46), + (581, 84, 2), + (509, 84, 43), + (451, 84, 83), + (1101, 84, 49), + (835, 84, 29), + (1041, 84, 70), + (888, 84, 9), + (42, 84, 52), + (174, 84, 75), + (97, 84, 37), + (874, 84, 10), + (784, 84, 37), + (606, 84, 3), + (608, 84, 3), + (158, 84, 50), + (922, 84, 46), + (414, 84, 137), + (1084, 84, 81), + (1, 84, 86), + (826, 84, 71), + (853, 84, 16), + (667, 84, 13), + (535, 84, 31), + (571, 84, 3), + (152, 84, 124), + (299, 84, 115), + (936, 84, 1), + (330, 84, 101), + (636, 84, 41), + (1031, 84, 116), + (701, 84, 56), + (8, 85, 35), + (606, 85, 3), + (70, 85, 22), + (738, 85, 45), + (581, 85, 2), + (907, 85, 31), + (360, 85, 3), + (518, 85, 64), + (261, 85, 73), + (554, 85, 19), + (752, 85, 67), + (158, 85, 50), + (1062, 85, 48), + (1088, 85, 33), + (449, 85, 83), + (707, 85, 23), + (61, 85, 15), + (834, 85, 29), + (275, 85, 39), + (888, 85, 9), + (894, 85, 13), + (971, 85, 1), + (812, 85, 40), + (1100, 85, 49), + (424, 85, 56), + (842, 85, 43), + (859, 85, 7), + (174, 85, 75), + (946, 85, 1), + (652, 85, 25), + (49, 85, 77), + (97, 85, 37), + (853, 85, 16), + (414, 85, 137), + (636, 85, 41), + (1084, 85, 81), + (667, 85, 13), + (152, 85, 124), + (571, 85, 3), + (299, 85, 115), + (936, 85, 1), + (330, 85, 101), + (1031, 85, 116), + (1, 85, 86), + (701, 85, 56), + (826, 85, 71), + (535, 85, 31), + (234, 130, 3), + (1020, 130, 5), + (970, 130, 1), + (841, 130, 8), + (453, 130, 6), + (786, 130, 3), + (1102, 130, 4), + (754, 130, 5), + (920, 130, 9), + (448, 130, 15), + (813, 130, 4), + (108, 130, 5), + (896, 130, 2), + (683, 130, 2), + (237, 130, 2), + (490, 130, 2), + (289, 130, 5), + (201, 130, 14), + (557, 130, 2), + (373, 130, 1), + (751, 130, 12), + (136, 130, 6), + (397, 130, 2), + (74, 130, 2), + (1040, 130, 13), + (654, 130, 3), + (288, 130, 11), + (872, 130, 3), + (605, 130, 1), + (69, 130, 5), + (138, 130, 3), + (610, 130, 1), + (975, 130, 1), + (18, 130, 9), + (308, 130, 8), + (428, 130, 9), + (249, 130, 8), + (482, 130, 2), + (277, 130, 7), + (585, 130, 1), + (1092, 130, 6), + (950, 130, 1), + (338, 130, 7), + (361, 130, 1), + (802, 130, 5), + (861, 130, 2), + (643, 130, 3), + (1008, 130, 4), + (10, 130, 6), + (190, 130, 9), + (223, 130, 3), + (510, 130, 7), + (656, 86, 41), + (174, 86, 50), + (142, 86, 51), + (722, 86, 56), + (145, 86, 51), + (1104, 86, 81), + (1070, 86, 48), + (658, 86, 41), + (51, 86, 52), + (723, 86, 56), + (49, 86, 52), + (143, 86, 51), + (615, 86, 3), + (403, 86, 9), + (402, 86, 9), + (652, 86, 17), + (377, 86, 6), + (70, 86, 15), + (376, 86, 6), + (72, 86, 15), + (616, 86, 3), + (554, 86, 13), + (618, 86, 3), + (784, 86, 25), + (845, 86, 71), + (925, 86, 76), + (894, 86, 9), + (895, 86, 9), + (981, 86, 1), + (873, 86, 7), + (973, 86, 1), + (682, 86, 6), + (980, 86, 1), + (449, 86, 56), + (606, 86, 2), + (983, 86, 1), + (608, 86, 2), + (556, 86, 13), + (519, 86, 43), + (76, 86, 36), + (261, 86, 49), + (560, 86, 31), + (1041, 86, 47), + (559, 86, 31), + (239, 86, 26), + (752, 86, 45), + (753, 86, 45), + (900, 86, 21), + (518, 86, 43), + (404, 86, 9), + (899, 86, 21), + (316, 86, 46), + (816, 86, 66), + (347, 86, 41), + (687, 86, 13), + (493, 86, 11), + (1100, 86, 33), + (451, 86, 56), + (842, 86, 29), + (495, 86, 11), + (843, 86, 29), + (971, 86, 1), + (812, 86, 27), + (901, 86, 21), + (1107, 86, 81), + (525, 86, 106), + (458, 86, 137), + (523, 86, 106), + (1075, 86, 119), + (292, 86, 96), + (573, 86, 3), + (299, 86, 69), + (757, 86, 111), + (152, 86, 75), + (320, 86, 115), + (1001, 86, 28), + (90, 86, 55), + (25, 86, 86), + (459, 86, 137), + (938, 86, 1), + (414, 86, 83), + (797, 86, 40), + (351, 86, 101), + (1031, 86, 70), + (330, 86, 61), + (461, 86, 137), + (1085, 86, 49), + (321, 86, 115), + (936, 86, 1), + (111, 86, 91), + (53, 86, 128), + (416, 86, 83), + (1044, 86, 116), + (827, 86, 43), + (206, 86, 133), + (853, 86, 10), + (186, 86, 80), + (1084, 86, 49), + (758, 86, 111), + (702, 86, 34), + (669, 86, 9), + (760, 86, 111), + (39, 86, 77), + (357, 86, 4), + (636, 86, 25), + (1105, 86, 81), + (701, 86, 34), + (536, 86, 19), + (667, 86, 9), + (826, 86, 43), + (535, 86, 19), + (571, 86, 3), + (267, 86, 121), + (24, 86, 86), + (1, 86, 52), + (478, 86, 7); \ No newline at end of file diff --git a/modules/standard/implant/sql/SymbiantProfessionMatrix.sql b/modules/standard/implant/sql/SymbiantProfessionMatrix.sql new file mode 100644 index 0000000..96b57d5 --- /dev/null +++ b/modules/standard/implant/sql/SymbiantProfessionMatrix.sql @@ -0,0 +1,5123 @@ +# noinspection LongLineForFile + +DROP TABLE IF EXISTS SymbiantProfessionMatrix; +CREATE TABLE IF NOT EXISTS SymbiantProfessionMatrix +( + SymbiantID INT NOT NULL, + ProfessionID INT NOT NULL +); +INSERT INTO SymbiantProfessionMatrix (SymbiantID, ProfessionID) +VALUES (472, 8), + (472, 4), + (472, 7), + (469, 14), + (469, 3), + (469, 10), + (469, 6), + (975, 14), + (975, 1), + (975, 2), + (975, 13), + (975, 7), + (978, 1), + (978, 5), + (978, 9), + (978, 8), + (977, 11), + (977, 3), + (977, 10), + (979, 14), + (979, 1), + (979, 10), + (979, 9), + (979, 8), + (979, 4), + (979, 7), + (976, 14), + (976, 3), + (976, 10), + (976, 6), + (610, 14), + (610, 1), + (610, 2), + (610, 13), + (610, 7), + (613, 1), + (613, 5), + (613, 9), + (613, 8), + (612, 11), + (612, 3), + (612, 10), + (614, 14), + (614, 1), + (614, 10), + (614, 9), + (614, 8), + (614, 4), + (614, 7), + (611, 14), + (611, 3), + (611, 10), + (611, 6), + (373, 14), + (373, 1), + (373, 2), + (373, 13), + (373, 7), + (375, 11), + (375, 3), + (375, 10), + (374, 14), + (374, 3), + (374, 10), + (374, 6), + (401, 11), + (401, 3), + (401, 10), + (400, 14), + (400, 3), + (400, 10), + (400, 6), + (492, 14), + (492, 1), + (492, 10), + (492, 9), + (492, 8), + (492, 4), + (492, 7), + (491, 14), + (491, 3), + (491, 10), + (491, 6), + (683, 14), + (683, 1), + (683, 2), + (683, 13), + (683, 7), + (685, 11), + (685, 3), + (685, 10), + (686, 14), + (686, 1), + (686, 10), + (686, 9), + (686, 8), + (686, 4), + (686, 7), + (684, 14), + (684, 3), + (684, 10), + (684, 6), + (875, 11), + (875, 3), + (875, 10), + (896, 14), + (896, 1), + (896, 2), + (896, 13), + (896, 7), + (898, 11), + (898, 3), + (898, 10), + (897, 14), + (897, 3), + (897, 10), + (897, 6), + (237, 14), + (237, 1), + (237, 2), + (237, 13), + (237, 7), + (238, 1), + (238, 5), + (238, 9), + (238, 8), + (557, 14), + (557, 1), + (557, 2), + (557, 13), + (557, 7), + (558, 14), + (558, 3), + (558, 10), + (558, 6), + (74, 14), + (74, 1), + (74, 2), + (74, 13), + (74, 7), + (75, 11), + (75, 3), + (75, 10), + (654, 14), + (654, 1), + (654, 2), + (654, 13), + (654, 7), + (655, 1), + (655, 5), + (655, 9), + (655, 8), + (1022, 1), + (1022, 5), + (1022, 9), + (1022, 8), + (1021, 14), + (1021, 3), + (1021, 10), + (1021, 6), + (138, 14), + (138, 1), + (138, 2), + (138, 13), + (138, 7), + (140, 1), + (140, 5), + (140, 9), + (140, 8), + (141, 14), + (141, 1), + (141, 10), + (141, 9), + (141, 8), + (141, 4), + (141, 7), + (139, 14), + (139, 3), + (139, 10), + (139, 6), + (786, 14), + (786, 1), + (786, 2), + (786, 13), + (786, 7), + (788, 1), + (788, 5), + (788, 9), + (788, 8), + (787, 11), + (787, 3), + (787, 10), + (789, 14), + (789, 1), + (789, 10), + (789, 9), + (789, 8), + (789, 4), + (789, 7), + (813, 14), + (813, 1), + (813, 2), + (813, 13), + (813, 7), + (815, 1), + (815, 5), + (815, 9), + (815, 8), + (814, 14), + (814, 3), + (814, 10), + (814, 6), + (924, 1), + (924, 5), + (924, 9), + (924, 8), + (923, 11), + (923, 3), + (923, 10), + (1102, 14), + (1102, 1), + (1102, 2), + (1102, 13), + (1102, 7), + (1103, 14), + (1103, 1), + (1103, 10), + (1103, 9), + (1103, 8), + (1103, 4), + (1103, 7), + (22, 1), + (22, 5), + (22, 9), + (22, 8), + (21, 11), + (21, 3), + (21, 10), + (23, 14), + (23, 1), + (23, 10), + (23, 9), + (23, 8), + (23, 4), + (23, 7), + (108, 14), + (108, 1), + (108, 2), + (108, 13), + (108, 7), + (109, 1), + (109, 5), + (109, 9), + (109, 8), + (110, 14), + (110, 1), + (110, 10), + (110, 9), + (110, 8), + (110, 4), + (110, 7), + (289, 14), + (289, 1), + (289, 2), + (289, 13), + (289, 7), + (290, 14), + (290, 1), + (290, 10), + (290, 9), + (290, 8), + (290, 4), + (290, 7), + (350, 11), + (350, 3), + (350, 10), + (349, 14), + (349, 3), + (349, 10), + (349, 6), + (521, 1), + (521, 5), + (521, 9), + (521, 8), + (522, 14), + (522, 1), + (522, 10), + (522, 9), + (522, 8), + (522, 4), + (522, 7), + (754, 14), + (754, 1), + (754, 2), + (754, 13), + (754, 7), + (756, 1), + (756, 5), + (756, 9), + (756, 8), + (755, 14), + (755, 3), + (755, 10), + (755, 6), + (1043, 1), + (1043, 5), + (1043, 9), + (1043, 8), + (1042, 14), + (1042, 3), + (1042, 10), + (1042, 6), + (265, 1), + (265, 5), + (265, 9), + (265, 8), + (264, 11), + (264, 3), + (264, 10), + (266, 14), + (266, 1), + (266, 10), + (266, 9), + (266, 8), + (266, 4), + (266, 7), + (263, 14), + (263, 3), + (263, 10), + (263, 6), + (319, 1), + (319, 5), + (319, 9), + (319, 8), + (318, 11), + (318, 3), + (318, 10), + (1073, 11), + (1073, 3), + (1073, 10), + (1074, 14), + (1074, 1), + (1074, 10), + (1074, 9), + (1074, 8), + (1074, 4), + (1074, 7), + (1072, 14), + (1072, 3), + (1072, 10), + (1072, 6), + (177, 14), + (177, 1), + (177, 10), + (177, 9), + (177, 8), + (177, 4), + (177, 7), + (176, 14), + (176, 3), + (176, 10), + (176, 6), + (52, 11), + (52, 3), + (52, 10), + (203, 11), + (203, 3), + (203, 10), + (204, 14), + (204, 1), + (204, 10), + (204, 9), + (204, 8), + (204, 4), + (204, 7), + (453, 14), + (453, 1), + (453, 2), + (453, 13), + (453, 7), + (456, 1), + (456, 5), + (456, 9), + (456, 8), + (455, 11), + (455, 3), + (455, 10), + (457, 14), + (457, 1), + (457, 10), + (457, 9), + (457, 8), + (457, 4), + (457, 7), + (454, 14), + (454, 3), + (454, 10), + (454, 6), + (970, 14), + (970, 1), + (970, 2), + (970, 13), + (970, 7), + (973, 1), + (973, 5), + (973, 9), + (973, 8), + (972, 11), + (972, 3), + (972, 10), + (974, 14), + (974, 1), + (974, 10), + (974, 9), + (974, 8), + (974, 4), + (974, 7), + (971, 14), + (971, 3), + (971, 10), + (971, 6), + (605, 14), + (605, 1), + (605, 2), + (605, 13), + (605, 7), + (608, 1), + (608, 5), + (608, 9), + (608, 8), + (607, 11), + (607, 3), + (607, 10), + (609, 14), + (609, 1), + (609, 10), + (609, 9), + (609, 8), + (609, 4), + (609, 7), + (606, 14), + (606, 3), + (606, 10), + (606, 6), + (372, 11), + (372, 3), + (372, 10), + (397, 14), + (397, 1), + (397, 2), + (397, 13), + (397, 7), + (398, 11), + (398, 3), + (398, 10), + (399, 14), + (399, 1), + (399, 10), + (399, 9), + (399, 8), + (399, 4), + (399, 7), + (490, 14), + (490, 1), + (490, 2), + (490, 13), + (490, 7), + (682, 1), + (682, 5), + (682, 9), + (682, 8), + (872, 14), + (872, 1), + (872, 2), + (872, 13), + (872, 7), + (873, 1), + (873, 5), + (873, 9), + (873, 8), + (874, 14), + (874, 1), + (874, 10), + (874, 9), + (874, 8), + (874, 4), + (874, 7), + (895, 1), + (895, 5), + (895, 9), + (895, 8), + (894, 14), + (894, 3), + (894, 10), + (894, 6), + (234, 14), + (234, 1), + (234, 2), + (234, 13), + (234, 7), + (235, 11), + (235, 3), + (235, 10), + (236, 14), + (236, 1), + (236, 10), + (236, 9), + (236, 8), + (236, 4), + (236, 7), + (15, 3), + (15, 10), + (14, 14), + (14, 3), + (14, 10), + (14, 6), + (101, 14), + (101, 1), + (101, 2), + (101, 13), + (101, 7), + (102, 11), + (102, 3), + (102, 10), + (103, 14), + (103, 1), + (103, 10), + (103, 9), + (103, 8), + (103, 4), + (103, 7), + (281, 11), + (281, 3), + (281, 10), + (340, 14), + (340, 3), + (340, 10), + (340, 6), + (512, 1), + (512, 5), + (512, 9), + (512, 8), + (513, 14), + (513, 1), + (513, 10), + (513, 9), + (513, 8), + (513, 4), + (513, 7), + (742, 14), + (742, 1), + (742, 2), + (742, 13), + (742, 7), + (744, 1), + (744, 5), + (744, 9), + (744, 8), + (743, 14), + (743, 3), + (743, 10), + (743, 6), + (1035, 14), + (1035, 1), + (1035, 2), + (1035, 13), + (1035, 7), + (1036, 14), + (1036, 3), + (1036, 10), + (1036, 6), + (253, 14), + (253, 1), + (253, 2), + (253, 13), + (253, 7), + (255, 14), + (255, 1), + (255, 10), + (255, 9), + (255, 8), + (255, 4), + (255, 7), + (254, 14), + (254, 3), + (254, 10), + (254, 6), + (311, 11), + (311, 3), + (311, 10), + (310, 14), + (310, 3), + (310, 10), + (310, 6), + (1066, 1), + (1066, 5), + (1066, 9), + (1066, 8), + (1067, 14), + (1067, 1), + (1067, 10), + (1067, 9), + (1067, 8), + (1067, 4), + (1067, 7), + (1065, 14), + (1065, 3), + (1065, 10), + (1065, 6), + (167, 1), + (167, 5), + (167, 9), + (167, 8), + (166, 11), + (166, 3), + (166, 10), + (168, 14), + (168, 1), + (168, 10), + (168, 9), + (168, 8), + (168, 4), + (168, 7), + (165, 14), + (165, 3), + (165, 10), + (165, 6), + (44, 11), + (44, 3), + (44, 10), + (194, 14), + (194, 1), + (194, 2), + (194, 13), + (194, 7), + (195, 14), + (195, 1), + (195, 10), + (195, 9), + (195, 8), + (195, 4), + (195, 7), + (433, 14), + (433, 1), + (433, 2), + (433, 13), + (433, 7), + (436, 1), + (436, 5), + (436, 9), + (436, 8), + (435, 11), + (435, 3), + (435, 10), + (437, 14), + (437, 1), + (437, 10), + (437, 9), + (437, 8), + (437, 4), + (437, 7), + (434, 14), + (434, 3), + (434, 10), + (434, 6), + (985, 14), + (985, 1), + (985, 2), + (985, 13), + (985, 7), + (988, 1), + (988, 5), + (988, 9), + (988, 8), + (987, 11), + (987, 3), + (987, 10), + (989, 14), + (989, 1), + (989, 10), + (989, 9), + (989, 8), + (989, 4), + (989, 7), + (986, 14), + (986, 3), + (986, 10), + (986, 6), + (620, 14), + (620, 1), + (620, 2), + (620, 13), + (620, 7), + (623, 1), + (623, 5), + (623, 9), + (623, 8), + (622, 11), + (622, 3), + (622, 10), + (624, 14), + (624, 1), + (624, 10), + (624, 9), + (624, 8), + (624, 4), + (624, 7), + (621, 14), + (621, 3), + (621, 10), + (621, 6), + (378, 14), + (378, 1), + (378, 2), + (378, 13), + (378, 7), + (379, 14), + (379, 3), + (379, 10), + (379, 6), + (406, 11), + (406, 3), + (406, 10), + (407, 14), + (407, 1), + (407, 10), + (407, 9), + (407, 8), + (407, 4), + (407, 7), + (405, 14), + (405, 3), + (405, 10), + (405, 6), + (497, 14), + (497, 1), + (497, 2), + (497, 13), + (497, 7), + (500, 1), + (500, 5), + (500, 9), + (500, 8), + (945, 14), + (945, 1), + (945, 2), + (945, 13), + (945, 7), + (948, 1), + (948, 5), + (948, 9), + (948, 8), + (947, 11), + (947, 3), + (947, 10), + (949, 14), + (949, 1), + (949, 10), + (949, 9), + (949, 8), + (949, 4), + (949, 7), + (946, 14), + (946, 3), + (946, 10), + (946, 6), + (580, 14), + (580, 1), + (580, 2), + (580, 13), + (580, 7), + (583, 1), + (583, 5), + (583, 9), + (583, 8), + (582, 11), + (582, 3), + (582, 10), + (584, 14), + (584, 1), + (584, 10), + (584, 9), + (584, 8), + (584, 4), + (584, 7), + (581, 14), + (581, 3), + (581, 10), + (581, 6), + (359, 14), + (359, 1), + (359, 2), + (359, 13), + (359, 7), + (360, 14), + (360, 3), + (360, 10), + (360, 6), + (481, 14), + (481, 1), + (481, 2), + (481, 13), + (481, 7), + (672, 1), + (672, 5), + (672, 9), + (672, 8), + (858, 14), + (858, 1), + (858, 2), + (858, 13), + (858, 7), + (860, 14), + (860, 1), + (860, 10), + (860, 9), + (860, 8), + (860, 4), + (860, 7), + (859, 14), + (859, 3), + (859, 10), + (859, 6), + (887, 14), + (887, 1), + (887, 2), + (887, 13), + (887, 7), + (890, 1), + (890, 5), + (890, 9), + (890, 8), + (889, 11), + (889, 3), + (889, 10), + (891, 14), + (891, 1), + (891, 10), + (891, 9), + (891, 8), + (891, 4), + (891, 7), + (888, 14), + (888, 3), + (888, 10), + (888, 6), + (221, 11), + (221, 3), + (221, 10), + (222, 14), + (222, 1), + (222, 10), + (222, 9), + (222, 8), + (222, 4), + (222, 7), + (540, 14), + (540, 1), + (540, 2), + (540, 13), + (540, 7), + (541, 11), + (541, 3), + (541, 10), + (542, 14), + (542, 1), + (542, 10), + (542, 9), + (542, 8), + (542, 4), + (542, 7), + (62, 1), + (62, 5), + (62, 9), + (62, 8), + (63, 14), + (63, 1), + (63, 10), + (63, 9), + (63, 8), + (63, 4), + (63, 7), + (61, 14), + (61, 3), + (61, 10), + (61, 6), + (641, 14), + (641, 1), + (641, 2), + (641, 13), + (641, 7), + (642, 11), + (642, 3), + (642, 10), + (1006, 1), + (1006, 5), + (1006, 9), + (1006, 8), + (1005, 11), + (1005, 3), + (1005, 10), + (1007, 14), + (1007, 1), + (1007, 10), + (1007, 9), + (1007, 8), + (1007, 4), + (1007, 7), + (122, 14), + (122, 1), + (122, 2), + (122, 13), + (122, 7), + (123, 1), + (123, 5), + (123, 9), + (123, 8), + (124, 14), + (124, 1), + (124, 10), + (124, 9), + (124, 8), + (124, 4), + (124, 7), + (706, 14), + (706, 1), + (706, 2), + (706, 13), + (706, 7), + (708, 14), + (708, 1), + (708, 10), + (708, 9), + (708, 8), + (708, 4), + (708, 7), + (707, 14), + (707, 3), + (707, 10), + (707, 6), + (772, 11), + (772, 3), + (772, 10), + (800, 14), + (800, 1), + (800, 2), + (800, 13), + (800, 7), + (801, 1), + (801, 5), + (801, 9), + (801, 8), + (833, 14), + (833, 1), + (833, 2), + (833, 13), + (833, 7), + (835, 1), + (835, 5), + (835, 9), + (835, 8), + (834, 14), + (834, 3), + (834, 10), + (834, 6), + (906, 14), + (906, 1), + (906, 2), + (906, 13), + (906, 7), + (908, 14), + (908, 1), + (908, 10), + (908, 9), + (908, 8), + (908, 4), + (908, 7), + (907, 14), + (907, 3), + (907, 10), + (907, 6), + (1090, 1), + (1090, 5), + (1090, 9), + (1090, 8), + (1089, 11), + (1089, 3), + (1089, 10), + (1091, 14), + (1091, 1), + (1091, 10), + (1091, 9), + (1091, 8), + (1091, 4), + (1091, 7), + (1088, 14), + (1088, 3), + (1088, 10), + (1088, 6), + (7, 14), + (7, 1), + (7, 2), + (7, 13), + (7, 7), + (9, 1), + (9, 5), + (9, 9), + (9, 8), + (8, 14), + (8, 3), + (8, 10), + (8, 6), + (96, 14), + (96, 1), + (96, 2), + (96, 13), + (96, 7), + (98, 11), + (98, 3), + (98, 10), + (99, 14), + (99, 1), + (99, 10), + (99, 9), + (99, 8), + (99, 4), + (99, 7), + (97, 14), + (97, 3), + (97, 10), + (97, 6), + (276, 11), + (276, 3), + (276, 10), + (275, 14), + (275, 3), + (275, 10), + (275, 6), + (336, 1), + (336, 5), + (336, 9), + (336, 8), + (335, 11), + (335, 3), + (335, 10), + (337, 14), + (337, 1), + (337, 10), + (337, 9), + (337, 8), + (337, 4), + (337, 7), + (509, 1), + (509, 5), + (509, 9), + (509, 8), + (508, 11), + (508, 3), + (508, 10), + (739, 14), + (739, 1), + (739, 10), + (739, 9), + (739, 8), + (739, 4), + (739, 7), + (738, 14), + (738, 3), + (738, 10), + (738, 6), + (1034, 11), + (1034, 3), + (1034, 10), + (248, 14), + (248, 1), + (248, 10), + (248, 9), + (248, 8), + (248, 4), + (248, 7), + (307, 1), + (307, 5), + (307, 9), + (307, 8), + (306, 11), + (306, 3), + (306, 10), + (1061, 14), + (1061, 1), + (1061, 2), + (1061, 13), + (1061, 7), + (1062, 14), + (1062, 3), + (1062, 10), + (1062, 6), + (157, 14), + (157, 1), + (157, 2), + (157, 13), + (157, 7), + (160, 1), + (160, 5), + (160, 9), + (160, 8), + (159, 11), + (159, 3), + (159, 10), + (158, 14), + (158, 3), + (158, 10), + (158, 6), + (42, 1), + (42, 5), + (42, 9), + (42, 8), + (423, 14), + (423, 1), + (423, 2), + (423, 13), + (423, 7), + (426, 1), + (426, 5), + (426, 9), + (426, 8), + (425, 11), + (425, 3), + (425, 10), + (427, 14), + (427, 1), + (427, 10), + (427, 9), + (427, 8), + (427, 4), + (427, 7), + (424, 14), + (424, 3), + (424, 10), + (424, 6), + (990, 14), + (990, 1), + (990, 2), + (990, 13), + (990, 7), + (993, 1), + (993, 5), + (993, 9), + (993, 8), + (992, 11), + (992, 3), + (992, 10), + (994, 14), + (994, 1), + (994, 10), + (994, 9), + (994, 8), + (994, 4), + (994, 7), + (991, 14), + (991, 3), + (991, 10), + (991, 6), + (625, 14), + (625, 1), + (625, 2), + (625, 13), + (625, 7), + (628, 1), + (628, 5), + (628, 9), + (628, 8), + (627, 11), + (627, 3), + (627, 10), + (629, 14), + (629, 1), + (629, 10), + (629, 9), + (629, 8), + (629, 4), + (629, 7), + (626, 14), + (626, 3), + (626, 10), + (626, 6), + (380, 1), + (380, 5), + (380, 9), + (380, 8), + (381, 14), + (381, 1), + (381, 10), + (381, 9), + (381, 8), + (381, 4), + (381, 7), + (408, 14), + (408, 1), + (408, 2), + (408, 13), + (408, 7), + (409, 11), + (409, 3), + (409, 10), + (410, 14), + (410, 1), + (410, 10), + (410, 9), + (410, 8), + (410, 4), + (410, 7), + (502, 14), + (502, 1), + (502, 2), + (502, 13), + (502, 7), + (504, 11), + (504, 3), + (504, 10), + (503, 14), + (503, 3), + (503, 10), + (503, 6), + (693, 14), + (693, 1), + (693, 2), + (693, 13), + (693, 7), + (695, 1), + (695, 5), + (695, 9), + (695, 8), + (696, 14), + (696, 1), + (696, 10), + (696, 9), + (696, 8), + (696, 4), + (696, 7), + (694, 14), + (694, 3), + (694, 10), + (694, 6), + (879, 14), + (879, 3), + (879, 10), + (879, 6), + (241, 11), + (241, 3), + (241, 10), + (565, 14), + (565, 1), + (565, 10), + (565, 9), + (565, 8), + (565, 4), + (565, 7), + (84, 11), + (84, 3), + (84, 10), + (85, 14), + (85, 1), + (85, 10), + (85, 9), + (85, 8), + (85, 4), + (85, 7), + (83, 14), + (83, 3), + (83, 10), + (83, 6), + (662, 14), + (662, 1), + (662, 2), + (662, 13), + (662, 7), + (665, 1), + (665, 5), + (665, 9), + (665, 8), + (664, 11), + (664, 3), + (664, 10), + (663, 14), + (663, 3), + (663, 10), + (663, 6), + (1028, 1), + (1028, 5), + (1028, 9), + (1028, 8), + (1027, 11), + (1027, 3), + (1027, 10), + (1026, 14), + (1026, 3), + (1026, 10), + (1026, 6), + (149, 1), + (149, 5), + (149, 9), + (149, 8), + (148, 11), + (148, 3), + (148, 10), + (727, 14), + (727, 1), + (727, 2), + (727, 13), + (727, 7), + (728, 1), + (728, 5), + (728, 9), + (728, 8), + (822, 14), + (822, 1), + (822, 10), + (822, 9), + (822, 8), + (822, 4), + (822, 7), + (821, 14), + (821, 3), + (821, 10), + (821, 6), + (850, 11), + (850, 3), + (850, 10), + (849, 14), + (849, 3), + (849, 10), + (849, 6), + (929, 14), + (929, 1), + (929, 2), + (929, 13), + (929, 7), + (930, 1), + (930, 5), + (930, 9), + (930, 8), + (1111, 1), + (1111, 5), + (1111, 9), + (1111, 8), + (1110, 11), + (1110, 3), + (1110, 10), + (33, 1), + (33, 5), + (33, 9), + (33, 8), + (32, 11), + (32, 3), + (32, 10), + (34, 14), + (34, 1), + (34, 10), + (34, 9), + (34, 8), + (34, 4), + (34, 7), + (31, 14), + (31, 3), + (31, 10), + (31, 6), + (115, 1), + (115, 5), + (115, 9), + (115, 8), + (114, 11), + (114, 3), + (114, 10), + (116, 14), + (116, 1), + (116, 10), + (116, 9), + (116, 8), + (116, 4), + (116, 7), + (113, 14), + (113, 3), + (113, 10), + (113, 6), + (295, 14), + (295, 1), + (295, 2), + (295, 13), + (295, 7), + (352, 14), + (352, 1), + (352, 2), + (352, 13), + (352, 7), + (354, 11), + (354, 3), + (354, 10), + (355, 14), + (355, 1), + (355, 10), + (355, 9), + (355, 8), + (355, 4), + (355, 7), + (353, 14), + (353, 3), + (353, 10), + (353, 6), + (529, 14), + (529, 1), + (529, 2), + (529, 13), + (529, 7), + (531, 14), + (531, 1), + (531, 10), + (531, 9), + (531, 8), + (531, 4), + (531, 7), + (530, 14), + (530, 3), + (530, 10), + (530, 6), + (764, 1), + (764, 5), + (764, 9), + (764, 8), + (763, 14), + (763, 3), + (763, 10), + (763, 6), + (1051, 14), + (1051, 1), + (1051, 2), + (1051, 13), + (1051, 7), + (1052, 14), + (1052, 1), + (1052, 10), + (1052, 9), + (1052, 8), + (1052, 4), + (1052, 7), + (269, 11), + (269, 3), + (269, 10), + (270, 14), + (270, 1), + (270, 10), + (270, 9), + (270, 8), + (270, 4), + (270, 7), + (324, 14), + (324, 1), + (324, 2), + (324, 13), + (324, 7), + (326, 1), + (326, 5), + (326, 9), + (326, 8), + (327, 14), + (327, 1), + (327, 10), + (327, 9), + (327, 8), + (327, 4), + (327, 7), + (325, 14), + (325, 3), + (325, 10), + (325, 6), + (1080, 1), + (1080, 5), + (1080, 9), + (1080, 8), + (181, 14), + (181, 1), + (181, 2), + (181, 13), + (181, 7), + (183, 1), + (183, 5), + (183, 9), + (183, 8), + (182, 11), + (182, 3), + (182, 10), + (55, 14), + (55, 1), + (55, 2), + (55, 13), + (55, 7), + (210, 14), + (210, 1), + (210, 2), + (210, 13), + (210, 7), + (212, 11), + (212, 3), + (212, 10), + (213, 14), + (213, 1), + (213, 10), + (213, 9), + (213, 8), + (213, 4), + (213, 7), + (211, 14), + (211, 3), + (211, 10), + (211, 6), + (468, 14), + (468, 1), + (468, 2), + (468, 13), + (468, 7), + (471, 1), + (471, 5), + (471, 9), + (471, 8), + (470, 11), + (470, 3), + (470, 10), + (472, 14), + (472, 1), + (472, 10), + (472, 9), + (556, 1), + (556, 5), + (556, 9), + (556, 8), + (555, 11), + (555, 3), + (555, 10), + (554, 14), + (554, 3), + (554, 10), + (554, 6), + (69, 14), + (69, 1), + (69, 2), + (69, 13), + (69, 7), + (72, 1), + (72, 5), + (72, 9), + (72, 8), + (71, 11), + (71, 3), + (71, 10), + (73, 14), + (73, 1), + (73, 10), + (73, 9), + (73, 8), + (73, 4), + (73, 7), + (70, 14), + (70, 3), + (70, 10), + (70, 6), + (653, 14), + (653, 1), + (653, 10), + (653, 9), + (653, 8), + (653, 4), + (653, 7), + (652, 14), + (652, 3), + (652, 10), + (652, 6), + (1020, 14), + (1020, 1), + (1020, 2), + (1020, 13), + (1020, 7), + (136, 14), + (136, 1), + (136, 2), + (136, 13), + (136, 7), + (137, 14), + (137, 1), + (137, 10), + (137, 9), + (137, 8), + (137, 4), + (137, 7), + (721, 11), + (721, 3), + (721, 10), + (784, 1), + (784, 5), + (784, 9), + (784, 8), + (785, 14), + (785, 1), + (785, 10), + (785, 9), + (785, 8), + (785, 4), + (785, 7), + (812, 14), + (812, 3), + (812, 10), + (812, 6), + (841, 14), + (841, 1), + (841, 2), + (841, 13), + (841, 7), + (843, 1), + (843, 5), + (843, 9), + (843, 8), + (842, 14), + (842, 3), + (842, 10), + (842, 6), + (920, 14), + (920, 1), + (920, 2), + (920, 13), + (920, 7), + (921, 11), + (921, 3), + (921, 10), + (922, 14), + (922, 1), + (922, 10), + (922, 9), + (922, 8), + (922, 4), + (922, 7), + (1101, 14), + (1101, 1), + (1101, 10), + (1101, 9), + (1101, 8), + (1101, 4), + (1101, 7), + (1100, 14), + (1100, 3), + (1100, 10), + (1100, 6), + (18, 14), + (18, 1), + (18, 2), + (18, 13), + (18, 7), + (19, 11), + (19, 3), + (19, 10), + (20, 14), + (20, 1), + (20, 10), + (20, 9), + (20, 8), + (20, 4), + (20, 7), + (288, 14), + (288, 1), + (288, 2), + (288, 13), + (288, 7), + (347, 1), + (347, 5), + (347, 9), + (347, 8), + (346, 11), + (346, 3), + (346, 10), + (348, 14), + (348, 1), + (348, 10), + (348, 9), + (348, 8), + (348, 4), + (348, 7), + (519, 1), + (519, 5), + (519, 9), + (519, 8), + (520, 14), + (520, 1), + (520, 10), + (520, 9), + (520, 8), + (520, 4), + (520, 7), + (518, 14), + (518, 3), + (518, 10), + (518, 6), + (751, 14), + (751, 1), + (751, 2), + (751, 13), + (751, 7), + (753, 1), + (753, 5), + (753, 9), + (753, 8), + (752, 14), + (752, 3), + (752, 10), + (752, 6), + (1040, 14), + (1040, 1), + (1040, 2), + (1040, 13), + (1040, 7), + (1041, 1), + (1041, 5), + (1041, 9), + (1041, 8), + (262, 11), + (262, 3), + (262, 10), + (261, 14), + (261, 3), + (261, 10), + (261, 6), + (316, 1), + (316, 5), + (316, 9), + (316, 8), + (317, 14), + (317, 1), + (317, 10), + (317, 9), + (317, 8), + (317, 4), + (317, 7), + (1070, 1), + (1070, 5), + (1070, 9), + (1070, 8), + (1071, 14), + (1071, 1), + (1071, 10), + (1071, 9), + (1071, 8), + (1050, 4), + (1050, 7), + (1048, 14), + (1048, 3), + (1048, 10), + (1048, 6), + (268, 14), + (268, 1), + (268, 2), + (268, 13), + (268, 7), + (322, 14), + (322, 1), + (322, 2), + (322, 13), + (322, 7), + (323, 1), + (323, 5), + (323, 9), + (323, 8), + (1078, 1), + (1078, 5), + (1078, 9), + (1078, 8), + (1079, 14), + (1079, 1), + (1079, 10), + (1079, 9), + (1079, 8), + (1079, 4), + (1079, 7), + (1077, 14), + (1077, 3), + (1077, 10), + (1077, 6), + (179, 14), + (179, 1), + (179, 2), + (179, 13), + (179, 7), + (180, 14), + (180, 3), + (180, 10), + (180, 6), + (54, 1), + (54, 5), + (54, 9), + (54, 8), + (209, 1), + (209, 5), + (209, 9), + (209, 8), + (208, 11), + (208, 3), + (208, 10), + (207, 14), + (207, 3), + (207, 10), + (207, 6), + (463, 14), + (463, 1), + (463, 2), + (463, 13), + (463, 7), + (466, 1), + (466, 5), + (466, 9), + (466, 8), + (465, 11), + (465, 3), + (465, 10), + (467, 14), + (467, 1), + (467, 10), + (467, 9), + (467, 8), + (467, 4), + (467, 7), + (464, 14), + (464, 3), + (464, 10), + (464, 6), + (965, 14), + (965, 1), + (965, 2), + (965, 13), + (965, 7), + (968, 1), + (968, 5), + (968, 9), + (968, 8), + (967, 11), + (967, 3), + (967, 10), + (969, 14), + (969, 1), + (969, 10), + (969, 9), + (969, 8), + (969, 4), + (969, 7), + (966, 14), + (966, 3), + (966, 10), + (966, 6), + (600, 14), + (600, 1), + (600, 2), + (600, 13), + (600, 7), + (603, 1), + (603, 5), + (603, 9), + (603, 8), + (602, 11), + (602, 3), + (602, 10), + (604, 14), + (1071, 4), + (1071, 7), + (175, 11), + (175, 3), + (175, 10), + (174, 14), + (174, 3), + (174, 10), + (174, 6), + (51, 1), + (51, 5), + (51, 9), + (51, 8), + (50, 11), + (50, 3), + (50, 10), + (49, 14), + (49, 3), + (49, 10), + (49, 6), + (201, 14), + (201, 1), + (201, 2), + (201, 13), + (201, 7), + (202, 11), + (202, 3), + (202, 10), + (448, 14), + (448, 1), + (448, 2), + (448, 13), + (448, 7), + (451, 1), + (451, 5), + (451, 9), + (451, 8), + (450, 11), + (450, 3), + (450, 10), + (452, 14), + (452, 1), + (452, 10), + (452, 9), + (452, 8), + (452, 4), + (452, 7), + (449, 14), + (449, 3), + (449, 10), + (449, 6), + (995, 14), + (995, 1), + (995, 2), + (995, 13), + (995, 7), + (998, 1), + (998, 5), + (998, 9), + (998, 8), + (997, 11), + (997, 3), + (997, 10), + (999, 14), + (999, 1), + (999, 10), + (999, 9), + (999, 8), + (999, 4), + (999, 7), + (996, 14), + (996, 3), + (996, 10), + (996, 6), + (630, 14), + (630, 1), + (630, 2), + (630, 13), + (630, 7), + (633, 1), + (633, 5), + (633, 9), + (633, 8), + (632, 11), + (632, 3), + (632, 10), + (634, 14), + (634, 1), + (634, 10), + (634, 9), + (634, 8), + (634, 4), + (634, 7), + (631, 14), + (631, 3), + (631, 10), + (631, 6), + (383, 1), + (383, 5), + (383, 9), + (383, 8), + (382, 11), + (382, 3), + (382, 10), + (384, 14), + (384, 1), + (384, 10), + (384, 9), + (384, 8), + (384, 4), + (384, 7), + (412, 11), + (412, 3), + (412, 10), + (411, 14), + (411, 3), + (411, 10), + (411, 6), + (505, 14), + (505, 1), + (505, 10), + (505, 9), + (505, 8), + (505, 4), + (505, 7), + (697, 14), + (697, 1), + (697, 2), + (697, 13), + (697, 7), + (698, 1), + (698, 5), + (698, 9), + (698, 8), + (699, 14), + (699, 1), + (699, 10), + (699, 9), + (699, 8), + (699, 4), + (699, 7), + (880, 14), + (880, 1), + (880, 2), + (880, 13), + (880, 7), + (882, 11), + (882, 3), + (882, 10), + (881, 14), + (881, 3), + (881, 10), + (881, 6), + (903, 14), + (903, 3), + (903, 10), + (903, 6), + (242, 14), + (242, 1), + (242, 2), + (242, 13), + (242, 7), + (244, 11), + (244, 3), + (244, 10), + (245, 14), + (245, 1), + (245, 10), + (245, 9), + (245, 8), + (245, 4), + (245, 7), + (243, 14), + (243, 3), + (243, 10), + (243, 6), + (566, 14), + (566, 1), + (566, 2), + (566, 13), + (566, 7), + (568, 1), + (568, 5), + (568, 9), + (568, 8), + (569, 14), + (569, 1), + (569, 10), + (569, 9), + (569, 8), + (569, 4), + (569, 7), + (567, 14), + (567, 3), + (567, 10), + (567, 6), + (86, 1), + (86, 5), + (86, 9), + (86, 8), + (87, 14), + (87, 1), + (87, 10), + (87, 9), + (87, 8), + (87, 4), + (87, 7), + (666, 14), + (666, 3), + (666, 10), + (666, 6), + (1029, 14), + (1029, 1), + (1029, 2), + (1029, 13), + (1029, 7), + (1030, 11), + (1030, 3), + (1030, 10), + (150, 1), + (150, 5), + (150, 9), + (150, 8), + (151, 14), + (151, 1), + (151, 10), + (151, 9), + (151, 8), + (151, 4), + (151, 7), + (729, 14), + (729, 1), + (729, 2), + (729, 13), + (729, 7), + (731, 1), + (731, 5), + (731, 9), + (731, 8), + (732, 14), + (732, 1), + (732, 10), + (732, 9), + (732, 8), + (732, 4), + (732, 7), + (730, 14), + (730, 3), + (730, 10), + (730, 6), + (793, 14), + (793, 1), + (793, 2), + (793, 13), + (793, 7), + (794, 11), + (794, 3), + (794, 10), + (795, 14), + (795, 1), + (795, 10), + (795, 9), + (795, 8), + (795, 4), + (795, 7), + (823, 1), + (823, 5), + (823, 9), + (823, 8), + (824, 14), + (824, 1), + (824, 10), + (824, 9), + (824, 8), + (824, 4), + (824, 7), + (851, 14), + (851, 3), + (851, 10), + (851, 6), + (931, 14), + (931, 1), + (931, 2), + (931, 13), + (931, 7), + (933, 11), + (933, 3), + (933, 10), + (934, 14), + (934, 1), + (934, 10), + (934, 9), + (934, 8), + (934, 4), + (934, 7), + (932, 14), + (932, 3), + (932, 10), + (932, 6), + (1112, 14), + (1112, 1), + (1112, 2), + (1112, 13), + (1112, 7), + (35, 14), + (35, 1), + (35, 2), + (35, 13), + (35, 7), + (37, 1), + (37, 5), + (37, 9), + (37, 8), + (36, 11), + (36, 3), + (36, 10), + (38, 14), + (38, 1), + (38, 10), + (38, 9), + (38, 8), + (38, 4), + (38, 7), + (118, 1), + (118, 5), + (118, 9), + (118, 8), + (117, 14), + (117, 3), + (117, 10), + (117, 6), + (296, 14), + (296, 1), + (296, 2), + (296, 13), + (296, 7), + (297, 14), + (297, 3), + (297, 10), + (297, 6), + (356, 14), + (356, 3), + (356, 10), + (356, 6), + (532, 14), + (532, 1), + (532, 2), + (532, 13), + (532, 7), + (533, 1), + (533, 5), + (533, 9), + (533, 8), + (766, 1), + (766, 5), + (766, 9), + (766, 8), + (767, 14), + (767, 1), + (767, 10), + (767, 9), + (767, 8), + (767, 4), + (767, 7), + (765, 14), + (765, 3), + (765, 10), + (765, 6), + (1054, 1), + (1054, 5), + (1054, 9), + (1054, 8), + (1053, 11), + (1053, 3), + (1053, 10), + (272, 1), + (272, 5), + (272, 9), + (272, 8), + (271, 11), + (271, 3), + (271, 10), + (328, 11), + (328, 3), + (328, 10), + (1081, 14), + (1081, 1), + (1081, 2), + (1081, 13), + (1081, 7), + (1083, 11), + (1083, 3), + (1083, 10), + (1082, 14), + (1082, 3), + (1082, 10), + (1082, 6), + (184, 14), + (184, 3), + (184, 10), + (184, 6), + (56, 14), + (56, 1), + (56, 2), + (56, 13), + (56, 7), + (57, 11), + (57, 3), + (57, 10), + (58, 14), + (58, 1), + (58, 10), + (58, 9), + (58, 8), + (58, 4), + (58, 7), + (214, 14), + (214, 1), + (214, 2), + (214, 13), + (214, 7), + (216, 1), + (216, 5), + (216, 9), + (216, 8), + (215, 11), + (215, 3), + (215, 10), + (473, 14), + (473, 1), + (473, 2), + (473, 13), + (473, 7), + (476, 1), + (476, 5), + (476, 9), + (476, 8), + (475, 11), + (475, 3), + (475, 10), + (477, 14), + (477, 1), + (477, 10), + (477, 9), + (477, 8), + (477, 4), + (477, 7), + (474, 14), + (474, 3), + (474, 10), + (474, 6), + (955, 14), + (955, 1), + (955, 2), + (955, 13), + (955, 7), + (958, 1), + (958, 5), + (958, 9), + (958, 8), + (957, 11), + (957, 3), + (957, 10), + (959, 14), + (959, 1), + (959, 10), + (959, 9), + (959, 8), + (959, 4), + (959, 7), + (956, 14), + (956, 3), + (956, 10), + (956, 6), + (590, 14), + (590, 1), + (590, 2), + (590, 13), + (590, 7), + (593, 1), + (593, 5), + (593, 9), + (593, 8), + (592, 11), + (592, 3), + (592, 10), + (594, 14), + (594, 1), + (594, 10), + (594, 9), + (594, 8), + (594, 4), + (594, 7), + (591, 14), + (591, 3), + (591, 10), + (591, 6), + (364, 14), + (364, 1), + (364, 2), + (364, 13), + (364, 7), + (366, 1), + (366, 5), + (366, 9), + (366, 8), + (365, 11), + (365, 3), + (365, 10), + (391, 1), + (391, 5), + (391, 9), + (391, 8), + (390, 11), + (390, 3), + (390, 10), + (392, 14), + (392, 1), + (392, 10), + (392, 9), + (392, 8), + (392, 4), + (392, 7), + (389, 14), + (389, 3), + (389, 10), + (389, 6), + (483, 14), + (483, 1), + (483, 2), + (483, 13), + (483, 7), + (674, 1), + (674, 5), + (674, 9), + (674, 8), + (675, 14), + (675, 1), + (675, 10), + (675, 9), + (675, 8), + (675, 4), + (675, 7), + (864, 14), + (864, 1), + (864, 2), + (864, 13), + (864, 7), + (867, 1), + (867, 5), + (867, 9), + (867, 8), + (866, 11), + (866, 3), + (866, 10), + (868, 14), + (868, 1), + (868, 10), + (868, 9), + (868, 8), + (868, 4), + (868, 7), + (865, 14), + (865, 3), + (865, 10), + (865, 6), + (893, 14), + (893, 3), + (893, 10), + (893, 6), + (226, 14), + (226, 1), + (226, 2), + (226, 13), + (226, 7), + (227, 14), + (227, 1), + (227, 10), + (227, 9), + (227, 8), + (227, 4), + (227, 7), + (546, 14), + (546, 1), + (546, 2), + (546, 13), + (546, 7), + (547, 11), + (547, 3), + (547, 10), + (548, 14), + (548, 1), + (548, 10), + (548, 9), + (548, 8), + (548, 4), + (548, 7), + (66, 1), + (66, 5), + (66, 9), + (66, 8), + (646, 14), + (646, 1), + (646, 2), + (646, 13), + (646, 7), + (647, 1), + (647, 5), + (647, 9), + (647, 8), + (1011, 14), + (1011, 1), + (1011, 2), + (1011, 13), + (1011, 7), + (1014, 1), + (1014, 5), + (1014, 9), + (1014, 8), + (1013, 11), + (1013, 3), + (1013, 10), + (1012, 14), + (1012, 3), + (1012, 10), + (1012, 6), + (126, 14), + (126, 1), + (126, 2), + (126, 13), + (126, 7), + (128, 1), + (128, 5), + (128, 9), + (128, 8), + (129, 14), + (129, 1), + (129, 10), + (129, 9), + (129, 8), + (129, 4), + (129, 7), + (127, 14), + (127, 3), + (127, 10), + (127, 6), + (714, 1), + (714, 5), + (714, 9), + (714, 8), + (713, 11), + (713, 3), + (713, 10), + (712, 14), + (712, 3), + (712, 10), + (712, 6), + (776, 11), + (776, 3), + (776, 10), + (777, 14), + (777, 1), + (777, 10), + (777, 9), + (777, 8), + (777, 4), + (777, 7), + (805, 14), + (805, 1), + (805, 10), + (805, 9), + (805, 8), + (805, 4), + (805, 7), + (836, 1), + (836, 5), + (836, 9), + (836, 8), + (910, 14), + (910, 1), + (910, 2), + (910, 13), + (910, 7), + (912, 14), + (912, 1), + (912, 10), + (912, 9), + (912, 8), + (912, 4), + (912, 7), + (911, 14), + (911, 3), + (911, 10), + (911, 6), + (1095, 11), + (1095, 3), + (1095, 10), + (15, 11), + (499, 11), + (499, 3), + (499, 10), + (501, 14), + (501, 1), + (501, 10), + (501, 9), + (501, 8), + (501, 4), + (501, 7), + (498, 14), + (498, 3), + (498, 10), + (498, 6), + (689, 14), + (689, 1), + (689, 2), + (689, 13), + (689, 7), + (692, 1), + (692, 5), + (692, 9), + (692, 8), + (691, 11), + (691, 3), + (691, 10), + (690, 14), + (690, 3), + (690, 10), + (690, 6), + (877, 14), + (877, 1), + (877, 2), + (877, 13), + (877, 7), + (878, 14), + (878, 1), + (878, 10), + (878, 9), + (878, 8), + (878, 4), + (878, 7), + (902, 11), + (902, 3), + (902, 10), + (563, 1), + (563, 5), + (563, 9), + (563, 8), + (562, 11), + (562, 3), + (562, 10), + (564, 14), + (564, 1), + (564, 10), + (564, 9), + (564, 8), + (564, 4), + (564, 7), + (78, 14), + (78, 1), + (78, 2), + (78, 13), + (78, 7), + (81, 1), + (81, 5), + (81, 9), + (81, 8), + (80, 11), + (80, 3), + (80, 10), + (82, 14), + (82, 1), + (82, 10), + (82, 9), + (82, 8), + (82, 4), + (82, 7), + (79, 14), + (79, 3), + (79, 10), + (79, 6), + (660, 1), + (660, 5), + (660, 9), + (660, 8), + (659, 11), + (659, 3), + (659, 10), + (661, 14), + (661, 1), + (661, 10), + (661, 9), + (661, 8), + (661, 4), + (661, 7), + (1025, 11), + (1025, 3), + (1025, 10), + (1024, 14), + (1024, 3), + (1024, 10), + (1024, 6), + (147, 14), + (147, 1), + (147, 2), + (147, 13), + (147, 7), + (725, 11), + (725, 3), + (725, 10), + (726, 14), + (726, 1), + (726, 10), + (726, 9), + (726, 8), + (726, 4), + (726, 7), + (792, 1), + (792, 5), + (792, 9), + (792, 8), + (791, 11), + (791, 3), + (791, 10), + (819, 14), + (819, 1), + (819, 2), + (819, 13), + (819, 7), + (820, 1), + (820, 5), + (820, 9), + (820, 8), + (847, 14), + (847, 1), + (847, 2), + (847, 13), + (847, 7), + (848, 14), + (848, 1), + (848, 10), + (848, 9), + (848, 8), + (848, 4), + (848, 7), + (926, 14), + (926, 1), + (926, 2), + (926, 13), + (926, 7), + (928, 1), + (928, 5), + (928, 9), + (928, 8), + (927, 14), + (927, 3), + (927, 10), + (927, 6), + (1108, 11), + (1108, 3), + (1108, 10), + (1109, 14), + (1109, 1), + (1109, 10), + (1109, 9), + (1109, 8), + (1109, 4), + (1109, 7), + (29, 11), + (29, 3), + (29, 10), + (30, 14), + (30, 1), + (30, 10), + (30, 9), + (30, 8), + (30, 4), + (30, 7), + (28, 14), + (28, 3), + (28, 10), + (28, 6), + (294, 14), + (294, 1), + (294, 10), + (294, 9), + (294, 8), + (294, 4), + (294, 7), + (293, 14), + (293, 3), + (293, 10), + (293, 6), + (526, 14), + (526, 1), + (526, 2), + (526, 13), + (526, 7), + (528, 1), + (528, 5), + (528, 9), + (528, 8), + (527, 14), + (527, 3), + (527, 10), + (527, 6), + (762, 14), + (762, 1), + (762, 10), + (762, 9), + (762, 8), + (762, 4), + (762, 7), + (761, 14), + (761, 3), + (761, 10), + (761, 6), + (1047, 14), + (1047, 1), + (1047, 2), + (1047, 13), + (1047, 7), + (1049, 11), + (1049, 3), + (1049, 10), + (1050, 14), + (1050, 1), + (1050, 10), + (1050, 9), + (1050, 8), + (604, 1), + (604, 10), + (604, 9), + (604, 8), + (604, 4), + (604, 7), + (601, 14), + (601, 3), + (601, 10), + (601, 6), + (369, 14), + (369, 1), + (369, 2), + (369, 13), + (369, 7), + (370, 11), + (370, 3), + (370, 10), + (371, 14), + (371, 1), + (371, 10), + (371, 9), + (371, 8), + (371, 4), + (371, 7), + (395, 11), + (395, 3), + (395, 10), + (396, 14), + (396, 1), + (396, 10), + (396, 9), + (396, 8), + (396, 4), + (396, 7), + (486, 14), + (486, 1), + (486, 2), + (486, 13), + (486, 7), + (488, 11), + (488, 3), + (488, 10), + (489, 14), + (489, 1), + (489, 10), + (489, 9), + (489, 8), + (489, 4), + (489, 7), + (487, 14), + (487, 3), + (487, 10), + (487, 6), + (679, 14), + (679, 1), + (679, 2), + (679, 13), + (679, 7), + (680, 1), + (680, 5), + (680, 9), + (680, 8), + (681, 14), + (681, 1), + (681, 10), + (681, 9), + (681, 8), + (681, 4), + (681, 7), + (870, 14), + (870, 1), + (870, 2), + (870, 13), + (870, 7), + (871, 1), + (871, 5), + (871, 9), + (871, 8), + (232, 1), + (232, 5), + (232, 9), + (232, 8), + (233, 14), + (233, 1), + (233, 10), + (233, 9), + (233, 8), + (233, 4), + (233, 7), + (231, 14), + (231, 3), + (231, 10), + (231, 6), + (551, 14), + (551, 1), + (551, 2), + (551, 13), + (551, 7), + (552, 1), + (552, 5), + (552, 9), + (552, 8), + (553, 14), + (553, 1), + (553, 10), + (553, 9), + (553, 8), + (553, 4), + (553, 7), + (68, 1), + (68, 5), + (68, 9), + (68, 8), + (651, 1), + (651, 5), + (651, 9), + (651, 8), + (1018, 11), + (1018, 3), + (1018, 10), + (1019, 14), + (1019, 1), + (1019, 10), + (1019, 9), + (1019, 8), + (1019, 4), + (1019, 7), + (1017, 14), + (1017, 3), + (1017, 10), + (1017, 6), + (133, 14), + (133, 1), + (133, 2), + (133, 13), + (133, 7), + (134, 1), + (134, 5), + (134, 9), + (134, 8), + (135, 14), + (135, 1), + (135, 10), + (135, 9), + (135, 8), + (135, 4), + (135, 7), + (719, 11), + (719, 3), + (719, 10), + (720, 14), + (720, 1), + (720, 10), + (720, 9), + (720, 8), + (720, 4), + (720, 7), + (781, 14), + (781, 1), + (781, 2), + (781, 13), + (781, 7), + (783, 11), + (783, 3), + (783, 10), + (782, 14), + (782, 3), + (782, 10), + (782, 6), + (811, 1), + (811, 5), + (811, 9), + (811, 8), + (810, 11), + (810, 3), + (810, 10), + (809, 14), + (809, 3), + (809, 10), + (809, 6), + (840, 14), + (840, 1), + (840, 10), + (840, 9), + (840, 8), + (840, 4), + (840, 7), + (839, 14), + (839, 3), + (839, 10), + (839, 6), + (917, 14), + (917, 1), + (917, 2), + (917, 13), + (917, 7), + (918, 1), + (918, 5), + (918, 9), + (918, 8), + (919, 14), + (919, 1), + (919, 10), + (919, 9), + (919, 8), + (919, 4), + (919, 7), + (1098, 1), + (1098, 5), + (1098, 9), + (1098, 8), + (1099, 14), + (1099, 1), + (1099, 10), + (1099, 9), + (1099, 8), + (1099, 4), + (1099, 7), + (17, 11), + (17, 3), + (17, 10), + (106, 1), + (106, 5), + (106, 9), + (106, 8), + (105, 11), + (105, 3), + (105, 10), + (107, 14), + (107, 1), + (107, 10), + (107, 9), + (107, 8), + (107, 4), + (107, 7), + (285, 14), + (285, 1), + (285, 2), + (285, 13), + (285, 7), + (287, 11), + (287, 3), + (287, 10), + (286, 14), + (286, 3), + (286, 10), + (286, 6), + (345, 1), + (345, 5), + (345, 9), + (345, 8), + (344, 11), + (344, 3), + (344, 10), + (516, 14), + (516, 1), + (516, 2), + (516, 13), + (516, 7), + (517, 14), + (517, 3), + (517, 10), + (517, 6), + (749, 11), + (749, 3), + (749, 10), + (750, 14), + (750, 1), + (750, 10), + (750, 9), + (750, 8), + (750, 4), + (750, 7), + (748, 14), + (748, 3), + (748, 10), + (748, 6), + (1038, 14), + (1038, 1), + (1038, 2), + (1038, 13), + (1038, 7), + (1039, 14), + (1039, 3), + (1039, 10), + (1039, 6), + (260, 1), + (260, 5), + (260, 9), + (260, 8), + (259, 14), + (259, 3), + (259, 10), + (259, 6), + (315, 11), + (315, 3), + (315, 10), + (314, 14), + (314, 3), + (314, 10), + (314, 6), + (1069, 14), + (1069, 3), + (1069, 10), + (1069, 6), + (171, 14), + (171, 1), + (171, 2), + (171, 13), + (171, 7), + (172, 11), + (172, 3), + (172, 10), + (173, 14), + (173, 1), + (173, 10), + (173, 9), + (173, 8), + (173, 4), + (173, 7), + (47, 14), + (47, 1), + (47, 2), + (47, 13), + (47, 7), + (48, 11), + (48, 3), + (48, 10), + (198, 14), + (198, 1), + (198, 2), + (198, 13), + (198, 7), + (200, 1), + (200, 5), + (200, 9), + (200, 8), + (199, 14), + (199, 3), + (199, 10), + (199, 6), + (443, 14), + (443, 1), + (443, 2), + (443, 13), + (443, 7), + (446, 1), + (446, 5), + (446, 9), + (446, 8), + (445, 11), + (445, 3), + (445, 10), + (447, 14), + (447, 1), + (447, 10), + (447, 9), + (447, 8), + (447, 4), + (447, 7), + (444, 14), + (444, 3), + (444, 10), + (444, 6), + (980, 14), + (980, 1), + (980, 2), + (980, 13), + (980, 7), + (983, 1), + (983, 5), + (983, 9), + (983, 8), + (982, 11), + (982, 3), + (982, 10), + (984, 14), + (984, 1), + (984, 10), + (984, 9), + (984, 8), + (984, 4), + (984, 7), + (981, 14), + (981, 3), + (981, 10), + (981, 6), + (615, 14), + (615, 1), + (615, 2), + (615, 13), + (615, 7), + (618, 1), + (618, 5), + (618, 9), + (618, 8), + (617, 11), + (617, 3), + (617, 10), + (619, 14), + (619, 1), + (619, 10), + (619, 9), + (619, 8), + (619, 4), + (619, 7), + (616, 14), + (616, 3), + (616, 10), + (616, 6), + (376, 14), + (376, 1), + (376, 2), + (376, 13), + (376, 7), + (377, 14), + (377, 3), + (377, 10), + (377, 6), + (402, 14), + (402, 1), + (402, 2), + (402, 13), + (402, 7), + (404, 1), + (404, 5), + (404, 9), + (404, 8), + (403, 14), + (403, 3), + (403, 10), + (403, 6), + (495, 1), + (495, 5), + (495, 9), + (495, 8), + (494, 11), + (494, 3), + (494, 10), + (496, 14), + (496, 1), + (496, 10), + (496, 9), + (496, 8), + (496, 4), + (496, 7), + (493, 14), + (493, 3), + (493, 10), + (493, 6), + (687, 14), + (687, 1), + (687, 2), + (687, 13), + (687, 7), + (688, 14), + (688, 1), + (688, 10), + (688, 9), + (688, 8), + (688, 4), + (688, 7), + (876, 11), + (876, 3), + (876, 10), + (899, 14), + (899, 1), + (899, 2), + (899, 13), + (899, 7), + (901, 1), + (901, 5), + (901, 9), + (901, 8), + (900, 14), + (900, 3), + (900, 10), + (900, 6), + (240, 11), + (240, 3), + (240, 10), + (239, 14), + (239, 3), + (239, 10), + (239, 6), + (559, 14), + (559, 1), + (559, 2), + (559, 13), + (559, 7), + (560, 1), + (560, 5), + (560, 9), + (560, 8), + (561, 14), + (561, 1), + (561, 10), + (561, 9), + (561, 8), + (561, 4), + (561, 7), + (76, 1), + (76, 5), + (76, 9), + (76, 8), + (77, 14), + (77, 1), + (77, 10), + (77, 9), + (77, 8), + (77, 4), + (77, 7), + (656, 14), + (656, 1), + (656, 2), + (656, 13), + (656, 7), + (658, 1), + (658, 5), + (658, 9), + (658, 8), + (657, 11), + (657, 3), + (657, 10), + (1023, 14), + (1023, 1), + (1023, 10), + (1023, 9), + (1023, 8), + (1023, 4), + (1023, 7), + (142, 14), + (142, 1), + (142, 2), + (142, 13), + (142, 7), + (145, 1), + (145, 5), + (145, 9), + (145, 8), + (144, 11), + (144, 3), + (144, 10), + (146, 14), + (146, 1), + (146, 10), + (146, 9), + (146, 8), + (146, 4), + (146, 7), + (143, 14), + (143, 3), + (143, 10), + (143, 6), + (722, 14), + (722, 1), + (722, 2), + (722, 13), + (722, 7), + (724, 14), + (724, 1), + (724, 10), + (724, 9), + (724, 8), + (724, 4), + (724, 7), + (723, 14), + (723, 3), + (723, 10), + (723, 6), + (790, 11), + (790, 3), + (790, 10), + (817, 11), + (817, 3), + (817, 10), + (818, 14), + (818, 1), + (818, 10), + (818, 9), + (818, 8), + (818, 4), + (818, 7), + (816, 14), + (816, 3), + (816, 10), + (816, 6), + (845, 1), + (845, 5), + (845, 9), + (845, 8), + (844, 11), + (844, 3), + (844, 10), + (846, 14), + (846, 1), + (846, 10), + (846, 9), + (846, 8), + (846, 4), + (846, 7), + (925, 14), + (925, 3), + (925, 10), + (925, 6), + (1104, 14), + (1104, 1), + (1104, 2), + (1104, 13), + (1104, 7), + (1107, 1), + (1107, 5), + (1107, 9), + (1107, 8), + (1106, 11), + (1106, 3), + (1106, 10), + (1105, 14), + (1105, 3), + (1105, 10), + (1105, 6), + (24, 14), + (24, 1), + (24, 2), + (24, 13), + (24, 7), + (26, 11), + (26, 3), + (26, 10), + (27, 14), + (27, 1), + (27, 10), + (27, 9), + (27, 8), + (27, 4), + (27, 7), + (25, 14), + (25, 3), + (25, 10), + (25, 6), + (112, 14), + (112, 1), + (112, 10), + (112, 9), + (112, 8), + (112, 4), + (112, 7), + (111, 14), + (111, 3), + (111, 10), + (111, 6), + (292, 1), + (292, 5), + (292, 9), + (292, 8), + (291, 11), + (291, 3), + (291, 10), + (351, 14), + (351, 3), + (351, 10), + (351, 6), + (523, 14), + (523, 1), + (523, 2), + (523, 13), + (523, 7), + (525, 1), + (525, 5), + (525, 9), + (525, 8), + (524, 11), + (524, 3), + (524, 10), + (757, 14), + (757, 1), + (757, 2), + (757, 13), + (757, 7), + (760, 1), + (760, 5), + (760, 9), + (760, 8), + (759, 11), + (759, 3), + (759, 10), + (758, 14), + (758, 3), + (758, 10), + (758, 6), + (1044, 14), + (1044, 1), + (1044, 2), + (1044, 13), + (1044, 7), + (1045, 11), + (1045, 3), + (1045, 10), + (1046, 14), + (1046, 1), + (1046, 10), + (1046, 9), + (1046, 8), + (1046, 4), + (1046, 7), + (267, 14), + (267, 1), + (267, 2), + (267, 13), + (267, 7), + (321, 1), + (321, 5), + (321, 9), + (321, 8), + (320, 14), + (320, 3), + (320, 10), + (320, 6), + (1075, 1), + (1075, 5), + (1075, 9), + (1075, 8), + (1076, 14), + (1076, 1), + (1076, 10), + (1076, 9), + (1076, 8), + (1076, 4), + (1076, 7), + (178, 14), + (178, 1), + (178, 10), + (178, 9), + (178, 8), + (178, 4), + (178, 7), + (53, 14), + (53, 1), + (53, 2), + (53, 13), + (53, 7), + (206, 1), + (206, 5), + (206, 9), + (206, 8), + (205, 11), + (205, 3), + (205, 10), + (458, 14), + (458, 1), + (458, 2), + (458, 13), + (458, 7), + (461, 1), + (461, 5), + (461, 9), + (461, 8), + (460, 11), + (460, 3), + (460, 10), + (462, 14), + (462, 1), + (462, 10), + (462, 9), + (462, 8), + (462, 4), + (462, 7), + (459, 14), + (459, 3), + (459, 10), + (459, 6), + (960, 14), + (960, 1), + (960, 2), + (960, 13), + (960, 7), + (963, 1), + (963, 5), + (963, 9), + (963, 8), + (962, 11), + (962, 3), + (962, 10), + (964, 14), + (964, 1), + (964, 10), + (964, 9), + (964, 8), + (964, 4), + (964, 7), + (961, 14), + (961, 3), + (961, 10), + (961, 6), + (595, 14), + (595, 1), + (595, 2), + (595, 13), + (595, 7), + (598, 1), + (598, 5), + (598, 9), + (598, 8), + (597, 11), + (597, 3), + (597, 10), + (599, 14), + (599, 1), + (599, 10), + (599, 9), + (599, 8), + (599, 4), + (599, 7), + (596, 14), + (596, 3), + (596, 10), + (596, 6), + (368, 1), + (368, 5), + (368, 9), + (368, 8), + (367, 14), + (367, 3), + (367, 10), + (367, 6), + (393, 14), + (393, 1), + (393, 2), + (393, 13), + (393, 7), + (394, 14), + (394, 1), + (394, 10), + (394, 9), + (394, 8), + (394, 4), + (394, 7), + (485, 1), + (485, 5), + (485, 9), + (485, 8), + (484, 11), + (484, 3), + (484, 10), + (676, 14), + (676, 1), + (676, 2), + (676, 13), + (676, 7), + (678, 14), + (678, 1), + (678, 10), + (678, 9), + (678, 8), + (678, 4), + (678, 7), + (677, 14), + (677, 3), + (677, 10), + (677, 6), + (869, 14), + (869, 3), + (869, 10), + (869, 6), + (230, 1), + (230, 5), + (230, 9), + (230, 8), + (229, 11), + (229, 3), + (229, 10), + (228, 14), + (228, 3), + (228, 10), + (228, 6), + (549, 11), + (549, 3), + (549, 10), + (550, 14), + (550, 1), + (550, 10), + (550, 9), + (550, 8), + (550, 4), + (550, 7), + (67, 11), + (67, 3), + (67, 10), + (648, 14), + (648, 1), + (648, 2), + (648, 13), + (648, 7), + (649, 1), + (649, 5), + (649, 9), + (649, 8), + (650, 14), + (650, 1), + (650, 10), + (650, 9), + (650, 8), + (650, 4), + (650, 7), + (1015, 14), + (1015, 1), + (1015, 2), + (1015, 13), + (1015, 7), + (1016, 14), + (1016, 3), + (1016, 10), + (1016, 6), + (131, 11), + (131, 3), + (131, 10), + (132, 14), + (132, 1), + (132, 10), + (132, 9), + (132, 8), + (132, 4), + (132, 7), + (130, 14), + (130, 3), + (130, 10), + (130, 6), + (715, 14), + (715, 1), + (715, 2), + (715, 13), + (715, 7), + (717, 11), + (717, 3), + (717, 10), + (718, 14), + (718, 1), + (718, 10), + (718, 9), + (718, 8), + (718, 4), + (718, 7), + (716, 14), + (716, 3), + (716, 10), + (716, 6), + (778, 14), + (778, 1), + (778, 2), + (778, 13), + (778, 7), + (779, 1), + (779, 5), + (779, 9), + (779, 8), + (780, 14), + (780, 1), + (780, 10), + (780, 9), + (780, 8), + (780, 4), + (780, 7), + (806, 14), + (806, 1), + (806, 2), + (806, 13), + (806, 7), + (808, 1), + (808, 5), + (808, 9), + (808, 8), + (807, 14), + (807, 3), + (807, 10), + (807, 6), + (837, 1), + (837, 5), + (837, 9), + (837, 8), + (838, 14), + (838, 1), + (838, 10), + (838, 9), + (838, 8), + (838, 4), + (838, 7), + (913, 14), + (913, 1), + (913, 2), + (913, 13), + (913, 7), + (915, 1), + (915, 5), + (915, 9), + (915, 8), + (914, 11), + (914, 3), + (914, 10), + (916, 14), + (916, 1), + (916, 10), + (916, 9), + (916, 8), + (916, 4), + (916, 7), + (1097, 1), + (1097, 5), + (1097, 9), + (1097, 8), + (1096, 14), + (1096, 3), + (1096, 10), + (1096, 6), + (16, 14), + (16, 1), + (16, 10), + (16, 9), + (16, 8), + (16, 4), + (16, 7), + (104, 11), + (104, 3), + (104, 10), + (283, 1), + (283, 5), + (283, 9), + (283, 8), + (282, 11), + (282, 3), + (282, 10), + (284, 14), + (284, 1), + (284, 10), + (284, 9), + (284, 8), + (284, 4), + (284, 7), + (343, 1), + (343, 5), + (343, 9), + (343, 8), + (342, 11), + (342, 3), + (342, 10), + (341, 14), + (341, 3), + (341, 10), + (341, 6), + (514, 14), + (514, 1), + (514, 2), + (514, 13), + (514, 7), + (515, 14), + (515, 1), + (515, 10), + (515, 9), + (515, 8), + (515, 4), + (515, 7), + (745, 14), + (745, 1), + (745, 2), + (745, 13), + (745, 7), + (746, 11), + (746, 3), + (746, 10), + (747, 14), + (747, 1), + (747, 10), + (747, 9), + (747, 8), + (747, 4), + (747, 7), + (1037, 1), + (1037, 5), + (1037, 9), + (1037, 8), + (256, 14), + (256, 1), + (256, 2), + (256, 13), + (256, 7), + (258, 11), + (258, 3), + (258, 10), + (257, 14), + (257, 3), + (257, 10), + (257, 6), + (312, 14), + (312, 1), + (312, 2), + (312, 13), + (312, 7), + (313, 14), + (313, 3), + (313, 10), + (313, 6), + (1068, 14), + (1068, 1), + (1068, 2), + (1068, 13), + (1068, 7), + (169, 14), + (169, 1), + (169, 2), + (169, 13), + (169, 7), + (170, 1), + (170, 5), + (170, 9), + (170, 8), + (46, 11), + (46, 3), + (46, 10), + (45, 14), + (45, 3), + (45, 10), + (45, 6), + (197, 1), + (197, 5), + (197, 9), + (197, 8), + (196, 11), + (196, 3), + (196, 10), + (438, 14), + (438, 1), + (438, 2), + (438, 13), + (438, 7), + (441, 1), + (441, 5), + (441, 9), + (441, 8), + (440, 11), + (440, 3), + (440, 10), + (442, 14), + (442, 1), + (442, 10), + (442, 9), + (442, 8), + (442, 4), + (442, 7), + (439, 14), + (439, 3), + (439, 10), + (439, 6), + (940, 14), + (940, 1), + (940, 2), + (940, 13), + (940, 7), + (943, 1), + (943, 5), + (943, 9), + (943, 8), + (942, 11), + (942, 3), + (942, 10), + (944, 14), + (944, 1), + (944, 10), + (944, 9), + (944, 8), + (944, 4), + (944, 7), + (941, 14), + (941, 3), + (941, 10), + (941, 6), + (575, 14), + (575, 1), + (575, 2), + (575, 13), + (575, 7), + (578, 1), + (578, 5), + (578, 9), + (578, 8), + (577, 11), + (577, 3), + (577, 10), + (579, 14), + (579, 1), + (579, 10), + (579, 9), + (579, 8), + (579, 4), + (579, 7), + (576, 14), + (576, 3), + (576, 10), + (576, 6), + (358, 14), + (358, 3), + (358, 10), + (358, 6), + (386, 14), + (386, 1), + (386, 2), + (386, 13), + (386, 7), + (387, 1), + (387, 5), + (387, 9), + (387, 8), + (479, 14), + (479, 1), + (479, 2), + (479, 13), + (479, 7), + (480, 14), + (480, 3), + (480, 10), + (480, 6), + (671, 11), + (671, 3), + (671, 10), + (856, 1), + (856, 5), + (856, 9), + (856, 8), + (857, 14), + (857, 1), + (857, 10), + (857, 9), + (857, 8), + (857, 4), + (857, 7), + (855, 14), + (855, 3), + (855, 10), + (855, 6), + (885, 1), + (885, 5), + (885, 9), + (885, 8), + (886, 14), + (886, 1), + (886, 10), + (886, 9), + (886, 8), + (886, 4), + (886, 7), + (884, 14), + (884, 3), + (884, 10), + (884, 6), + (218, 14), + (218, 1), + (218, 2), + (218, 13), + (218, 7), + (219, 11), + (219, 3), + (219, 10), + (220, 14), + (220, 1), + (220, 10), + (220, 9), + (220, 8), + (220, 4), + (220, 7), + (538, 11), + (538, 3), + (538, 10), + (539, 14), + (539, 1), + (539, 10), + (539, 9), + (539, 8), + (539, 4), + (539, 7), + (60, 14), + (60, 1), + (60, 2), + (60, 13), + (60, 7), + (638, 14), + (638, 1), + (638, 2), + (638, 13), + (638, 7), + (640, 1), + (640, 5), + (640, 9), + (640, 8), + (639, 14), + (639, 3), + (639, 10), + (639, 6), + (1002, 14), + (1002, 1), + (1002, 2), + (1002, 13), + (1002, 7), + (1003, 1), + (1003, 5), + (1003, 9), + (1003, 8), + (1004, 14), + (1004, 1), + (1004, 10), + (1004, 9), + (1004, 8), + (1004, 4), + (1004, 7), + (121, 11), + (121, 3), + (121, 10), + (704, 11), + (704, 3), + (704, 10), + (705, 14), + (705, 1), + (705, 10), + (705, 9), + (705, 8), + (705, 4), + (705, 7), + (703, 14), + (703, 3), + (703, 10), + (703, 6), + (771, 14), + (771, 1), + (771, 10), + (771, 9), + (771, 8), + (771, 4), + (771, 7), + (798, 14), + (798, 1), + (798, 2), + (798, 13), + (798, 7), + (799, 11), + (799, 3), + (799, 10), + (828, 14), + (828, 1), + (828, 2), + (828, 13), + (828, 7), + (831, 1), + (831, 5), + (831, 9), + (831, 8), + (830, 11), + (830, 3), + (830, 10), + (832, 14), + (832, 1), + (832, 10), + (832, 9), + (832, 8), + (832, 4), + (832, 7), + (829, 14), + (829, 3), + (829, 10), + (829, 6), + (905, 14), + (905, 3), + (905, 10), + (905, 6), + (1087, 14), + (1087, 1), + (1087, 10), + (1087, 9), + (1087, 8), + (1087, 4), + (1087, 7), + (3, 14), + (3, 1), + (3, 2), + (3, 13), + (3, 7), + (6, 1), + (6, 5), + (6, 9), + (6, 8), + (5, 11), + (5, 3), + (5, 10), + (4, 14), + (4, 3), + (4, 10), + (4, 6), + (91, 14), + (91, 1), + (91, 2), + (91, 13), + (91, 7), + (94, 1), + (94, 5), + (94, 9), + (94, 8), + (93, 11), + (93, 3), + (93, 10), + (95, 14), + (95, 1), + (95, 10), + (95, 9), + (95, 8), + (95, 4), + (95, 7), + (92, 14), + (92, 3), + (92, 10), + (92, 6), + (274, 14), + (274, 1), + (274, 2), + (274, 13), + (274, 7), + (332, 14), + (332, 1), + (332, 2), + (332, 13), + (332, 7), + (334, 1), + (334, 5), + (334, 9), + (334, 8), + (333, 11), + (333, 3), + (333, 10), + (507, 1), + (507, 5), + (507, 9), + (507, 8), + (737, 1), + (737, 5), + (737, 9), + (737, 8), + (736, 11), + (736, 3), + (736, 10), + (247, 14), + (247, 1), + (247, 10), + (247, 9), + (247, 8), + (247, 4), + (247, 7), + (246, 14), + (246, 3), + (246, 10), + (246, 6), + (302, 14), + (302, 1), + (302, 2), + (302, 13), + (302, 7), + (304, 11), + (304, 3), + (304, 10), + (305, 14), + (305, 1), + (305, 10), + (305, 9), + (305, 8), + (305, 4), + (305, 7), + (303, 14), + (303, 3), + (303, 10), + (303, 6), + (1057, 14), + (1057, 1), + (1057, 2), + (1057, 13), + (1057, 7), + (1059, 1), + (1059, 5), + (1059, 9), + (1059, 8), + (1058, 11), + (1058, 3), + (1058, 10), + (1060, 14), + (1060, 1), + (1060, 10), + (1060, 9), + (1060, 8), + (1060, 4), + (1060, 7), + (155, 1), + (155, 5), + (155, 9), + (155, 8), + (156, 14), + (156, 1), + (156, 10), + (156, 9), + (156, 8), + (156, 4), + (156, 7), + (154, 14), + (154, 3), + (154, 10), + (154, 6), + (41, 14), + (41, 3), + (41, 10), + (41, 6), + (187, 14), + (187, 1), + (187, 2), + (187, 13), + (187, 7), + (188, 11), + (188, 3), + (188, 10), + (189, 14), + (189, 1), + (189, 10), + (189, 9), + (189, 8), + (189, 4), + (189, 7), + (418, 14), + (418, 1), + (418, 2), + (418, 13), + (418, 7), + (421, 1), + (421, 5), + (421, 9), + (421, 8), + (420, 11), + (420, 3), + (420, 10), + (422, 14), + (422, 1), + (422, 10), + (422, 9), + (422, 8), + (422, 4), + (422, 7), + (419, 14), + (419, 3), + (419, 10), + (419, 6), + (935, 14), + (935, 1), + (935, 2), + (935, 13), + (935, 7), + (938, 1), + (938, 5), + (938, 9), + (938, 8), + (937, 11), + (937, 3), + (937, 10), + (939, 14), + (939, 1), + (939, 10), + (939, 9), + (939, 8), + (939, 4), + (939, 7), + (936, 14), + (936, 3), + (936, 10), + (936, 6), + (570, 14), + (570, 1), + (570, 2), + (570, 13), + (570, 7), + (573, 1), + (573, 5), + (573, 9), + (573, 8), + (572, 11), + (572, 3), + (572, 10), + (574, 14), + (574, 1), + (574, 10), + (574, 9), + (574, 8), + (574, 4), + (574, 7), + (571, 14), + (571, 3), + (571, 10), + (571, 6), + (357, 1), + (357, 5), + (357, 9), + (357, 8), + (385, 11), + (385, 3), + (385, 10), + (478, 1), + (478, 5), + (478, 9), + (478, 8), + (669, 1), + (669, 5), + (669, 9), + (669, 8), + (668, 11), + (668, 3), + (668, 10), + (670, 14), + (670, 1), + (670, 10), + (670, 9), + (670, 8), + (670, 4), + (670, 7), + (667, 14), + (667, 3), + (667, 10), + (667, 6), + (852, 14), + (852, 1), + (852, 2), + (852, 13), + (852, 7), + (854, 14), + (854, 1), + (854, 10), + (854, 9), + (854, 8), + (854, 4), + (854, 7), + (853, 14), + (853, 3), + (853, 10), + (853, 6), + (883, 14), + (883, 1), + (883, 2), + (883, 13), + (883, 7), + (217, 14), + (217, 1), + (217, 10), + (217, 9), + (217, 8), + (217, 4), + (217, 7), + (534, 14), + (534, 1), + (534, 2), + (534, 13), + (534, 7), + (536, 1), + (536, 5), + (536, 9), + (536, 8), + (537, 14), + (537, 1), + (537, 10), + (537, 9), + (537, 8), + (537, 4), + (537, 7), + (535, 14), + (535, 3), + (535, 10), + (535, 6), + (59, 11), + (59, 3), + (59, 10), + (637, 14), + (637, 1), + (637, 10), + (637, 9), + (637, 8), + (637, 4), + (637, 7), + (635, 14), + (635, 1), + (635, 2), + (635, 13), + (635, 7), + (636, 14), + (636, 3), + (636, 10), + (636, 6), + (1001, 1), + (1001, 5), + (1001, 9), + (1001, 8), + (1000, 11), + (1000, 3), + (1000, 10), + (119, 14), + (119, 1), + (119, 2), + (119, 13), + (119, 7), + (120, 11), + (120, 3), + (120, 10), + (700, 14), + (700, 1), + (700, 2), + (700, 13), + (700, 7), + (702, 1), + (702, 5), + (702, 9), + (702, 8), + (701, 14), + (701, 3), + (701, 10), + (701, 6), + (768, 14), + (768, 1), + (768, 2), + (768, 13), + (768, 7), + (769, 11), + (769, 3), + (769, 10), + (770, 14), + (770, 1), + (770, 10), + (770, 9), + (770, 8), + (770, 4), + (770, 7), + (796, 14), + (796, 1), + (796, 2), + (796, 13), + (796, 7), + (797, 1), + (797, 5), + (797, 9), + (797, 8), + (825, 14), + (825, 1), + (825, 2), + (825, 13), + (825, 7), + (827, 1), + (827, 5), + (827, 9), + (827, 8), + (826, 14), + (826, 3), + (826, 10), + (826, 6), + (904, 11), + (904, 3), + (904, 10), + (1085, 1), + (1085, 5), + (1085, 9), + (1085, 8), + (1086, 14), + (1086, 1), + (1086, 10), + (1086, 9), + (1086, 8), + (1086, 4), + (1086, 7), + (1084, 14), + (1084, 3), + (1084, 10), + (1084, 6), + (2, 11), + (2, 3), + (2, 10), + (1, 14), + (1, 3), + (1, 10), + (1, 6), + (88, 14), + (88, 1), + (88, 2), + (88, 13), + (88, 7), + (90, 1), + (90, 5), + (90, 9), + (90, 8), + (89, 11), + (89, 3), + (89, 10), + (273, 14), + (273, 1), + (273, 10), + (273, 9), + (273, 8), + (273, 4), + (273, 7), + (329, 14), + (329, 1), + (329, 2), + (329, 13), + (329, 7), + (331, 11), + (331, 3), + (331, 10), + (330, 14), + (330, 3), + (330, 10), + (330, 6), + (506, 14), + (506, 1), + (506, 10), + (506, 9), + (506, 8), + (506, 4), + (506, 7), + (733, 14), + (733, 1), + (733, 2), + (733, 13), + (733, 7), + (734, 11), + (734, 3), + (734, 10), + (735, 14), + (735, 1), + (735, 10), + (735, 9), + (735, 8), + (735, 4), + (735, 7), + (1031, 14), + (1031, 3), + (1031, 10), + (1031, 6), + (1032, 11), + (1032, 3), + (1032, 10), + (1033, 14), + (1033, 1), + (1033, 10), + (1033, 9), + (1033, 8), + (1033, 4), + (1033, 7), + (298, 14), + (298, 1), + (298, 2), + (298, 13), + (298, 7), + (300, 11), + (300, 3), + (300, 10), + (301, 14), + (301, 1), + (301, 10), + (301, 9), + (301, 8), + (301, 4), + (301, 7), + (299, 14), + (299, 3), + (299, 10), + (299, 6), + (1055, 14), + (1055, 1), + (1055, 2), + (1055, 13), + (1055, 7), + (1056, 14), + (1056, 1), + (1056, 10), + (1056, 9), + (1056, 8), + (1056, 4), + (1056, 7), + (153, 11), + (153, 3), + (153, 10), + (152, 14), + (152, 3), + (152, 10), + (152, 6), + (39, 1), + (39, 5), + (39, 9), + (39, 8), + (40, 14), + (40, 1), + (40, 10), + (40, 9), + (40, 8), + (40, 4), + (40, 7), + (185, 14), + (185, 1), + (185, 2), + (185, 13), + (185, 7), + (186, 1), + (186, 5), + (186, 9), + (186, 8), + (413, 14), + (413, 1), + (413, 2), + (413, 13), + (413, 7), + (416, 1), + (416, 5), + (416, 9), + (416, 8), + (415, 11), + (415, 3), + (415, 10), + (417, 14), + (417, 1), + (417, 10), + (417, 9), + (417, 8), + (417, 4), + (417, 7), + (414, 14), + (414, 3), + (414, 10), + (414, 6), + (10, 14), + (10, 1), + (10, 2), + (10, 13), + (10, 7), + (11, 11), + (11, 3), + (11, 10), + (12, 1), + (12, 5), + (12, 9), + (12, 8), + (13, 14), + (13, 1), + (13, 10), + (13, 9), + (13, 8), + (13, 4), + (13, 7), + (43, 14), + (43, 1), + (43, 10), + (43, 9), + (43, 8), + (43, 4), + (43, 7), + (64, 14), + (64, 3), + (64, 10), + (64, 6), + (65, 11), + (65, 3), + (65, 10), + (100, 14), + (100, 1), + (100, 10), + (100, 9), + (100, 8), + (100, 4), + (100, 7), + (125, 14), + (125, 1), + (125, 10), + (125, 9), + (125, 8), + (125, 4), + (125, 7), + (161, 14), + (161, 3), + (161, 10), + (161, 6), + (162, 11), + (162, 3), + (162, 10), + (163, 1), + (163, 5), + (163, 9), + (163, 8), + (164, 14), + (164, 1), + (164, 10), + (164, 9), + (164, 8), + (164, 4), + (164, 7), + (190, 14), + (190, 1), + (190, 2), + (190, 13), + (190, 7), + (191, 11), + (191, 3), + (191, 10), + (192, 1), + (192, 5), + (192, 9), + (192, 8), + (193, 14), + (193, 1), + (193, 10), + (193, 9), + (193, 8), + (193, 4), + (193, 7), + (223, 14), + (223, 1), + (223, 2), + (223, 13), + (223, 7), + (224, 14), + (224, 3), + (224, 10), + (224, 6), + (225, 14), + (225, 1), + (225, 10), + (225, 9), + (225, 8), + (225, 4), + (225, 7), + (249, 14), + (249, 1), + (249, 2), + (249, 13), + (249, 7), + (250, 11), + (250, 3), + (250, 10), + (251, 1), + (251, 5), + (251, 9), + (251, 8), + (252, 14), + (252, 1), + (252, 10), + (252, 9), + (252, 8), + (252, 4), + (252, 7), + (277, 14), + (277, 1), + (277, 2), + (277, 13), + (277, 7), + (278, 14), + (278, 3), + (278, 10), + (278, 6), + (279, 11), + (279, 3), + (279, 10), + (280, 1), + (280, 5), + (280, 9), + (280, 8), + (308, 14), + (308, 1), + (308, 2), + (308, 13), + (308, 7), + (309, 14), + (309, 3), + (309, 10), + (309, 6), + (338, 14), + (338, 1), + (338, 2), + (338, 13), + (338, 7), + (339, 14), + (339, 3), + (339, 10), + (339, 6), + (361, 14), + (361, 1), + (361, 2), + (361, 13), + (361, 7), + (362, 14), + (362, 3), + (362, 10), + (362, 6), + (363, 11), + (363, 3), + (363, 10), + (388, 1), + (388, 5), + (388, 9), + (388, 8), + (428, 14), + (428, 1), + (428, 2), + (428, 13), + (428, 7), + (429, 14), + (429, 3), + (429, 10), + (429, 6), + (430, 11), + (430, 3), + (430, 10), + (431, 1), + (431, 5), + (431, 9), + (431, 8), + (432, 14), + (432, 1), + (432, 10), + (432, 9), + (432, 8), + (432, 4), + (432, 7), + (482, 14), + (482, 1), + (482, 2), + (482, 13), + (482, 7), + (510, 14), + (510, 1), + (510, 2), + (510, 13), + (510, 7), + (511, 14), + (511, 1), + (511, 10), + (511, 9), + (511, 8), + (511, 4), + (511, 7), + (543, 11), + (543, 3), + (543, 10), + (544, 1), + (544, 5), + (544, 9), + (544, 8), + (545, 14), + (545, 1), + (545, 10), + (545, 9), + (545, 8), + (545, 4), + (545, 7), + (585, 14), + (585, 1), + (585, 2), + (585, 13), + (585, 7), + (586, 14), + (586, 3), + (586, 10), + (586, 6), + (587, 11), + (587, 3), + (587, 10), + (588, 1), + (588, 5), + (588, 9), + (588, 8), + (589, 14), + (589, 1), + (589, 10), + (589, 9), + (589, 8), + (589, 4), + (589, 7), + (643, 14), + (643, 1), + (643, 2), + (643, 13), + (643, 7), + (644, 1), + (644, 5), + (644, 9), + (644, 8), + (645, 14), + (645, 1), + (645, 10), + (645, 9), + (645, 8), + (645, 4), + (645, 7), + (673, 14), + (673, 3), + (673, 10), + (673, 6), + (709, 14), + (709, 3), + (709, 10), + (709, 6), + (710, 11), + (710, 3), + (710, 10), + (711, 1), + (711, 5), + (711, 9), + (711, 8), + (740, 14), + (740, 3), + (740, 10), + (740, 6), + (741, 11), + (741, 3), + (741, 10), + (773, 14), + (773, 3), + (773, 10), + (773, 6), + (774, 1), + (774, 5), + (774, 9), + (774, 8), + (775, 14), + (775, 1), + (775, 10), + (775, 9), + (775, 8), + (775, 4), + (775, 7), + (802, 14), + (802, 1), + (802, 2), + (802, 13), + (802, 7), + (803, 14), + (803, 3), + (803, 10), + (803, 6), + (804, 11), + (804, 3), + (804, 10), + (861, 14), + (861, 1), + (861, 2), + (861, 13), + (861, 7), + (862, 1), + (862, 5), + (862, 9), + (862, 8), + (863, 14), + (863, 1), + (863, 10), + (863, 9), + (863, 8), + (863, 4), + (863, 7), + (892, 11), + (892, 3), + (892, 10), + (909, 1), + (909, 5), + (909, 9), + (909, 8), + (950, 14), + (950, 1), + (950, 2), + (950, 13), + (950, 7), + (951, 14), + (951, 3), + (951, 10), + (951, 6), + (952, 11), + (952, 3), + (952, 10), + (953, 1), + (953, 5), + (953, 9), + (953, 8), + (954, 14), + (954, 1), + (954, 10), + (954, 9), + (954, 8), + (954, 4), + (954, 7), + (1008, 14), + (1008, 1), + (1008, 2), + (1008, 13), + (1008, 7), + (1009, 11), + (1009, 3), + (1009, 10), + (1010, 1), + (1010, 5), + (1010, 9), + (1010, 8), + (1063, 11), + (1063, 3), + (1063, 10), + (1064, 1), + (1064, 5), + (1064, 9), + (1064, 8), + (1092, 14), + (1092, 1), + (1092, 2), + (1092, 13), + (1092, 7), + (1093, 14), + (1093, 3), + (1093, 10), + (1093, 6), + (1094, 1), + (1094, 5), + (1094, 9), + (1094, 8); \ No newline at end of file diff --git a/modules/standard/implant/sql/implant_requirements.sql b/modules/standard/implant/sql/implant_requirements.sql new file mode 100644 index 0000000..bab43ab --- /dev/null +++ b/modules/standard/implant/sql/implant_requirements.sql @@ -0,0 +1,317 @@ +# noinspection LongLineForFile + +DROP TABLE IF EXISTS implant_requirement; +CREATE TABLE IF NOT EXISTS implant_requirement +( + ql INTEGER NOT NULL PRIMARY KEY, + treatment INTEGER NOT NULL, + ability INTEGER NOT NULL, + ability_shiny INTEGER NOT NULL, + ability_bright INTEGER NOT NULL, + ability_faded INTEGER NOT NULL, + skill_shiny INTEGER NOT NULL, + skill_bright INTEGER NOT NULL, + skill_faded INTEGER NOT NULL +); +INSERT INTO implant_requirement (ql, treatment, ability, ability_shiny, ability_bright, ability_faded, skill_shiny, + skill_bright, skill_faded) +VALUES (1, 11, 6, 5, 3, 2, 6, 3, 2), + (2, 16, 8, 5, 3, 2, 6, 3, 2), + (3, 20, 10, 6, 3, 2, 7, 4, 2), + (4, 25, 12, 6, 3, 2, 7, 4, 3), + (5, 30, 14, 6, 4, 2, 8, 4, 3), + (6, 35, 16, 6, 4, 3, 8, 5, 3), + (7, 39, 18, 7, 4, 3, 9, 5, 3), + (8, 44, 20, 7, 4, 3, 9, 5, 3), + (9, 49, 22, 7, 4, 3, 10, 5, 4), + (10, 54, 24, 7, 4, 3, 10, 6, 4), + (11, 58, 26, 8, 5, 3, 11, 6, 4), + (12, 63, 28, 8, 5, 3, 11, 6, 4), + (13, 68, 30, 8, 5, 3, 12, 7, 4), + (14, 72, 32, 8, 5, 3, 12, 7, 5), + (15, 77, 34, 9, 5, 3, 13, 7, 5), + (16, 82, 36, 9, 5, 4, 13, 8, 5), + (17, 87, 38, 9, 5, 4, 14, 8, 5), + (18, 91, 40, 9, 6, 4, 14, 8, 5), + (19, 96, 42, 10, 6, 4, 15, 8, 6), + (20, 101, 44, 10, 6, 4, 15, 9, 6), + (21, 105, 46, 10, 6, 4, 16, 9, 6), + (22, 110, 48, 10, 6, 4, 16, 9, 6), + (23, 115, 50, 11, 6, 4, 17, 10, 6), + (24, 120, 52, 11, 6, 4, 17, 10, 7), + (25, 124, 54, 11, 7, 4, 18, 10, 7), + (26, 129, 56, 11, 7, 5, 18, 11, 7), + (27, 134, 58, 12, 7, 5, 19, 11, 7), + (28, 139, 60, 12, 7, 5, 19, 11, 7), + (29, 143, 62, 12, 7, 5, 20, 11, 8), + (30, 148, 64, 12, 7, 5, 20, 12, 8), + (31, 153, 66, 13, 8, 5, 21, 12, 8), + (32, 157, 68, 13, 8, 5, 21, 12, 8), + (33, 162, 70, 13, 8, 5, 22, 13, 8), + (34, 167, 72, 13, 8, 5, 22, 13, 9), + (35, 172, 74, 14, 8, 5, 23, 13, 9), + (36, 176, 76, 14, 8, 6, 23, 14, 9), + (37, 181, 78, 14, 8, 6, 24, 14, 9), + (38, 186, 80, 14, 9, 6, 24, 14, 9), + (39, 190, 82, 15, 9, 6, 25, 14, 10), + (40, 195, 84, 15, 9, 6, 25, 15, 10), + (41, 200, 86, 15, 9, 6, 26, 15, 10), + (42, 205, 88, 15, 9, 6, 26, 15, 10), + (43, 209, 90, 16, 9, 6, 27, 16, 10), + (44, 214, 92, 16, 9, 6, 27, 16, 11), + (45, 219, 94, 16, 10, 6, 28, 16, 11), + (46, 224, 96, 16, 10, 7, 28, 17, 11), + (47, 228, 98, 17, 10, 7, 29, 17, 11), + (48, 233, 100, 17, 10, 7, 29, 17, 11), + (49, 238, 102, 17, 10, 7, 30, 17, 12), + (50, 242, 104, 17, 10, 7, 30, 18, 12), + (51, 247, 106, 18, 11, 7, 31, 18, 12), + (52, 252, 108, 18, 11, 7, 31, 18, 12), + (53, 257, 110, 18, 11, 7, 32, 19, 12), + (54, 261, 112, 18, 11, 7, 32, 19, 13), + (55, 266, 114, 19, 11, 7, 33, 19, 13), + (56, 271, 116, 19, 11, 8, 33, 20, 13), + (57, 276, 118, 19, 11, 8, 34, 20, 13), + (58, 280, 120, 19, 12, 8, 34, 20, 13), + (59, 285, 122, 20, 12, 8, 35, 20, 14), + (60, 290, 124, 20, 12, 8, 35, 21, 14), + (61, 294, 126, 20, 12, 8, 36, 21, 14), + (62, 299, 128, 20, 12, 8, 36, 21, 14), + (63, 304, 130, 21, 12, 8, 37, 22, 14), + (64, 309, 132, 21, 12, 8, 37, 22, 15), + (65, 313, 134, 21, 13, 8, 38, 22, 15), + (66, 318, 136, 21, 13, 9, 38, 23, 15), + (67, 323, 138, 22, 13, 9, 39, 23, 15), + (68, 327, 140, 22, 13, 9, 39, 23, 15), + (69, 332, 142, 22, 13, 9, 40, 24, 16), + (70, 337, 144, 22, 13, 9, 40, 24, 16), + (71, 342, 146, 23, 14, 9, 41, 24, 16), + (72, 346, 148, 23, 14, 9, 41, 24, 16), + (73, 351, 150, 23, 14, 9, 42, 25, 16), + (74, 356, 152, 23, 14, 9, 42, 25, 17), + (75, 361, 154, 24, 14, 9, 43, 25, 17), + (76, 365, 156, 24, 14, 10, 43, 26, 17), + (77, 370, 158, 24, 14, 10, 44, 26, 17), + (78, 375, 160, 24, 15, 10, 44, 26, 17), + (79, 379, 162, 25, 15, 10, 45, 27, 18), + (80, 384, 164, 25, 15, 10, 45, 27, 18), + (81, 389, 166, 25, 15, 10, 46, 27, 18), + (82, 394, 168, 25, 15, 10, 46, 27, 18), + (83, 398, 170, 26, 15, 10, 47, 28, 18), + (84, 403, 172, 26, 16, 10, 47, 28, 19), + (85, 408, 174, 26, 16, 10, 48, 28, 19), + (86, 413, 176, 26, 16, 11, 48, 29, 19), + (87, 417, 178, 27, 16, 11, 49, 29, 19), + (88, 422, 180, 27, 16, 11, 49, 29, 19), + (89, 427, 182, 27, 16, 11, 50, 30, 20), + (90, 431, 184, 27, 16, 11, 50, 30, 20), + (91, 436, 186, 28, 17, 11, 51, 30, 20), + (92, 441, 188, 28, 17, 11, 51, 30, 20), + (93, 446, 190, 28, 17, 11, 52, 31, 20), + (94, 450, 192, 28, 17, 11, 52, 31, 21), + (95, 455, 194, 29, 17, 11, 53, 31, 21), + (96, 460, 196, 29, 17, 12, 53, 32, 21), + (97, 464, 198, 29, 17, 12, 54, 32, 21), + (98, 469, 200, 29, 18, 12, 54, 32, 21), + (99, 474, 202, 30, 18, 12, 55, 33, 22), + (100, 479, 204, 30, 18, 12, 55, 33, 22), + (101, 483, 206, 30, 18, 12, 56, 33, 22), + (102, 488, 208, 30, 18, 12, 56, 33, 22), + (103, 493, 210, 31, 18, 12, 57, 34, 23), + (104, 498, 212, 31, 19, 12, 57, 34, 23), + (105, 502, 214, 31, 19, 12, 58, 34, 23), + (106, 507, 216, 31, 19, 13, 58, 35, 23), + (107, 512, 218, 32, 19, 13, 59, 35, 23), + (108, 516, 220, 32, 19, 13, 59, 35, 24), + (109, 521, 222, 32, 19, 13, 60, 36, 24), + (110, 526, 224, 32, 19, 13, 60, 36, 24), + (111, 531, 226, 33, 20, 13, 61, 36, 24), + (112, 535, 228, 33, 20, 13, 61, 36, 24), + (113, 540, 230, 33, 20, 13, 62, 37, 25), + (114, 545, 232, 33, 20, 13, 62, 37, 25), + (115, 549, 234, 34, 20, 13, 63, 37, 25), + (116, 554, 236, 34, 20, 14, 63, 38, 25), + (117, 559, 238, 34, 20, 14, 64, 38, 25), + (118, 564, 240, 34, 21, 14, 64, 38, 26), + (119, 568, 242, 35, 21, 14, 65, 39, 26), + (120, 573, 244, 35, 21, 14, 65, 39, 26), + (121, 578, 246, 35, 21, 14, 66, 39, 26), + (122, 583, 248, 35, 21, 14, 66, 39, 26), + (123, 587, 250, 36, 21, 14, 67, 40, 27), + (124, 592, 252, 36, 22, 14, 67, 40, 27), + (125, 597, 254, 36, 22, 14, 68, 40, 27), + (126, 601, 256, 36, 22, 15, 68, 41, 27), + (127, 606, 258, 37, 22, 15, 69, 41, 27), + (128, 611, 260, 37, 22, 15, 69, 41, 28), + (129, 616, 262, 37, 22, 15, 70, 42, 28), + (130, 620, 264, 37, 22, 15, 70, 42, 28), + (131, 625, 266, 38, 23, 15, 71, 42, 28), + (132, 630, 268, 38, 23, 15, 71, 42, 28), + (133, 635, 270, 38, 23, 15, 72, 43, 29), + (134, 639, 272, 38, 23, 15, 72, 43, 29), + (135, 644, 274, 39, 23, 15, 73, 43, 29), + (136, 649, 276, 39, 23, 16, 73, 44, 29), + (137, 653, 278, 39, 24, 16, 74, 44, 29), + (138, 658, 280, 39, 24, 16, 74, 44, 30), + (139, 663, 282, 40, 24, 16, 75, 45, 30), + (140, 668, 284, 40, 24, 16, 75, 45, 30), + (141, 672, 286, 40, 24, 16, 76, 45, 30), + (142, 677, 288, 40, 24, 16, 76, 46, 30), + (143, 682, 290, 41, 24, 16, 77, 46, 31), + (144, 686, 292, 41, 25, 16, 77, 46, 31), + (145, 691, 294, 41, 25, 16, 78, 46, 31), + (146, 696, 296, 41, 25, 17, 78, 47, 31), + (147, 701, 298, 42, 25, 17, 79, 47, 31), + (148, 705, 300, 42, 25, 17, 79, 47, 32), + (149, 710, 302, 42, 25, 17, 80, 48, 32), + (150, 715, 304, 42, 25, 17, 80, 48, 32), + (151, 720, 306, 43, 26, 17, 81, 48, 32), + (152, 724, 308, 43, 26, 17, 81, 49, 32), + (153, 729, 310, 43, 26, 17, 82, 49, 33), + (154, 734, 312, 43, 26, 17, 82, 49, 33), + (155, 738, 314, 44, 26, 17, 83, 49, 33), + (156, 743, 316, 44, 26, 18, 83, 50, 33), + (157, 748, 318, 44, 27, 18, 84, 50, 33), + (158, 753, 320, 44, 27, 18, 84, 50, 34), + (159, 757, 322, 45, 27, 18, 85, 51, 34), + (160, 762, 324, 45, 27, 18, 85, 51, 34), + (161, 767, 326, 45, 27, 18, 86, 51, 34), + (162, 772, 328, 45, 27, 18, 86, 52, 34), + (163, 776, 330, 46, 27, 18, 87, 52, 35), + (164, 781, 332, 46, 28, 18, 87, 52, 35), + (165, 786, 334, 46, 28, 18, 88, 52, 35), + (166, 790, 336, 46, 28, 19, 88, 53, 35), + (167, 795, 338, 47, 28, 19, 89, 53, 35), + (168, 800, 340, 47, 28, 19, 89, 53, 36), + (169, 805, 342, 47, 28, 19, 90, 54, 36), + (170, 809, 344, 47, 28, 19, 90, 54, 36), + (171, 814, 346, 48, 29, 19, 91, 54, 36), + (172, 819, 348, 48, 29, 19, 91, 55, 36), + (173, 823, 350, 48, 29, 19, 92, 55, 37), + (174, 828, 352, 48, 29, 19, 92, 55, 37), + (175, 833, 354, 49, 29, 19, 93, 55, 37), + (176, 838, 356, 49, 29, 20, 93, 56, 37), + (177, 842, 358, 49, 30, 20, 94, 56, 37), + (178, 847, 360, 49, 30, 20, 94, 56, 38), + (179, 852, 362, 50, 30, 20, 95, 57, 38), + (180, 857, 364, 50, 30, 20, 95, 57, 38), + (181, 861, 366, 50, 30, 20, 96, 57, 38), + (182, 866, 368, 50, 30, 20, 96, 58, 38), + (183, 871, 370, 51, 30, 20, 97, 58, 39), + (184, 875, 372, 51, 31, 20, 97, 58, 39), + (185, 880, 374, 51, 31, 20, 98, 58, 39), + (186, 885, 376, 51, 31, 21, 98, 59, 39), + (187, 890, 378, 52, 31, 21, 99, 59, 39), + (188, 894, 380, 52, 31, 21, 99, 59, 40), + (189, 899, 382, 52, 31, 21, 100, 60, 40), + (190, 904, 384, 52, 31, 21, 100, 60, 40), + (191, 908, 386, 53, 32, 21, 101, 60, 40), + (192, 913, 388, 53, 32, 21, 101, 61, 40), + (193, 918, 390, 53, 32, 21, 102, 61, 41), + (194, 923, 392, 53, 32, 21, 102, 61, 41), + (195, 927, 394, 54, 32, 21, 103, 61, 41), + (196, 932, 396, 54, 32, 22, 103, 62, 41), + (197, 937, 398, 54, 33, 22, 104, 62, 41), + (198, 942, 400, 54, 33, 22, 104, 62, 42), + (199, 946, 402, 55, 33, 22, 105, 63, 42), + (200, 951, 404, 55, 33, 22, 105, 63, 42), + (201, 1001, 426, 55, 33, 22, 106, 63, 42), + (202, 1012, 433, 55, 33, 22, 106, 63, 42), + (203, 1022, 440, 55, 33, 22, 107, 63, 42), + (204, 1033, 446, 56, 33, 22, 107, 64, 42), + (205, 1043, 453, 56, 33, 22, 107, 64, 43), + (206, 1054, 460, 56, 34, 22, 108, 64, 43), + (207, 1065, 467, 56, 34, 22, 108, 64, 43), + (208, 1075, 473, 56, 34, 22, 108, 65, 43), + (209, 1086, 480, 56, 34, 23, 109, 65, 43), + (210, 1096, 487, 57, 34, 23, 109, 65, 43), + (211, 1107, 494, 57, 34, 23, 110, 65, 44), + (212, 1118, 500, 57, 34, 23, 110, 65, 44), + (213, 1128, 507, 57, 34, 23, 110, 66, 44), + (214, 1139, 514, 57, 34, 23, 111, 66, 44), + (215, 1149, 521, 58, 35, 23, 111, 66, 44), + (216, 1160, 527, 58, 35, 23, 111, 66, 44), + (217, 1171, 534, 58, 35, 23, 112, 67, 44), + (218, 1181, 541, 58, 35, 23, 112, 67, 45), + (219, 1192, 548, 58, 35, 23, 112, 67, 45), + (220, 1203, 554, 58, 35, 23, 113, 67, 45), + (221, 1213, 561, 59, 35, 23, 113, 67, 45), + (222, 1224, 568, 59, 35, 23, 113, 68, 45), + (223, 1234, 575, 59, 35, 24, 114, 68, 45), + (224, 1245, 581, 59, 36, 24, 114, 68, 45), + (225, 1256, 588, 59, 36, 24, 114, 68, 46), + (226, 1266, 595, 60, 36, 24, 115, 69, 46), + (227, 1277, 602, 60, 36, 24, 115, 69, 46), + (228, 1287, 608, 60, 36, 24, 116, 69, 46), + (229, 1298, 615, 60, 36, 24, 116, 69, 46), + (230, 1309, 622, 60, 36, 24, 116, 69, 46), + (231, 1319, 629, 60, 36, 24, 117, 70, 47), + (232, 1330, 635, 61, 36, 24, 117, 70, 47), + (233, 1340, 642, 61, 37, 24, 117, 70, 47), + (234, 1351, 649, 61, 37, 24, 118, 70, 47), + (235, 1362, 656, 61, 37, 24, 118, 71, 47), + (236, 1372, 663, 61, 37, 24, 118, 71, 47), + (237, 1383, 669, 62, 37, 25, 119, 71, 47), + (238, 1393, 676, 62, 37, 25, 119, 71, 48), + (239, 1404, 683, 62, 37, 25, 119, 71, 48), + (240, 1415, 690, 62, 37, 25, 120, 72, 48), + (241, 1425, 696, 62, 37, 25, 120, 72, 48), + (242, 1436, 703, 62, 38, 25, 120, 72, 48), + (243, 1446, 710, 63, 38, 25, 121, 72, 48), + (244, 1457, 717, 63, 38, 25, 121, 73, 49), + (245, 1468, 723, 63, 38, 25, 122, 73, 49), + (246, 1478, 730, 63, 38, 25, 122, 73, 49), + (247, 1489, 737, 63, 38, 25, 122, 73, 49), + (248, 1499, 744, 64, 38, 25, 123, 73, 49), + (249, 1510, 750, 64, 38, 25, 123, 74, 49), + (250, 1521, 757, 64, 38, 25, 123, 74, 49), + (251, 1531, 764, 64, 39, 26, 124, 74, 50), + (252, 1542, 771, 64, 39, 26, 124, 74, 50), + (253, 1553, 777, 64, 39, 26, 124, 75, 50), + (254, 1563, 784, 65, 39, 26, 125, 75, 50), + (255, 1574, 791, 65, 39, 26, 125, 75, 50), + (256, 1584, 798, 65, 39, 26, 125, 75, 50), + (257, 1595, 804, 65, 39, 26, 126, 75, 50), + (258, 1606, 811, 65, 39, 26, 126, 76, 51), + (259, 1616, 818, 66, 39, 26, 127, 76, 51), + (260, 1627, 825, 66, 40, 26, 127, 76, 51), + (261, 1637, 831, 66, 40, 26, 127, 76, 51), + (262, 1648, 838, 66, 40, 26, 128, 77, 51), + (263, 1659, 845, 66, 40, 26, 128, 77, 51), + (264, 1669, 852, 66, 40, 26, 128, 77, 52), + (265, 1680, 858, 67, 40, 27, 129, 77, 52), + (266, 1690, 865, 67, 40, 27, 129, 77, 52), + (267, 1701, 872, 67, 40, 27, 129, 78, 52), + (268, 1712, 879, 67, 40, 27, 130, 78, 52), + (269, 1722, 886, 67, 41, 27, 130, 78, 52), + (270, 1733, 892, 68, 41, 27, 130, 78, 52), + (271, 1743, 899, 68, 41, 27, 131, 79, 53), + (272, 1754, 906, 68, 41, 27, 131, 79, 53), + (273, 1765, 913, 68, 41, 27, 131, 79, 53), + (274, 1775, 919, 68, 41, 27, 132, 79, 53), + (275, 1786, 926, 68, 41, 27, 132, 79, 53), + (276, 1796, 933, 69, 41, 27, 133, 80, 53), + (277, 1807, 940, 69, 41, 27, 133, 80, 54), + (278, 1818, 946, 69, 42, 27, 133, 80, 54), + (279, 1828, 953, 69, 42, 28, 134, 80, 54), + (280, 1839, 960, 69, 42, 28, 134, 81, 54), + (281, 1849, 967, 70, 42, 28, 134, 81, 54), + (282, 1860, 973, 70, 42, 28, 135, 81, 54), + (283, 1871, 980, 70, 42, 28, 135, 81, 54), + (284, 1881, 987, 70, 42, 28, 135, 81, 55), + (285, 1892, 994, 70, 42, 28, 136, 82, 55), + (286, 1903, 1000, 70, 42, 28, 136, 82, 55), + (287, 1913, 1007, 71, 43, 28, 136, 82, 55), + (288, 1924, 1014, 71, 43, 28, 137, 82, 55), + (289, 1934, 1021, 71, 43, 28, 137, 83, 55), + (290, 1945, 1027, 71, 43, 28, 137, 83, 55), + (291, 1956, 1034, 71, 43, 28, 138, 83, 56), + (292, 1966, 1041, 72, 43, 28, 138, 83, 56), + (293, 1977, 1048, 72, 43, 29, 139, 83, 56), + (294, 1987, 1054, 72, 43, 29, 139, 84, 56), + (295, 1998, 1061, 72, 43, 29, 139, 84, 56), + (296, 2009, 1068, 72, 44, 29, 140, 84, 56), + (297, 2019, 1075, 72, 44, 29, 140, 84, 57), + (298, 2030, 1081, 73, 44, 29, 140, 85, 57), + (299, 2040, 1088, 73, 44, 29, 141, 85, 57), + (300, 2051, 1095, 73, 44, 29, 141, 85, 57); \ No newline at end of file diff --git a/modules/standard/implant/sql/premade_implant.sql b/modules/standard/implant/sql/premade_implant.sql new file mode 100644 index 0000000..e621725 --- /dev/null +++ b/modules/standard/implant/sql/premade_implant.sql @@ -0,0 +1,185 @@ +# noinspection LongLineForFile + +DROP TABLE IF EXISTS premade_implant; +CREATE TABLE IF NOT EXISTS premade_implant +( + ImplantTypeID INT NOT NULL, + ProfessionID INT NOT NULL, + AbilityID INT NOT NULL, + ShinyClusterID INT NOT NULL, + BrightClusterID INT NOT NULL, + FadedClusterID INT NOT NULL +); +INSERT INTO premade_implant (ImplantTypeID, ProfessionID, AbilityID, ShinyClusterID, BrightClusterID, FadedClusterID) +VALUES (4, 1, 5, 42, 41, 72), + (4, 2, 3, 52, 10, 72), + (4, 3, 3, 52, 10, 72), + (4, 4, 5, 42, 41, 43), + (4, 5, 5, 42, 41, 4), + (4, 6, 3, 52, 10, 51), + (4, 7, 5, 42, 41, 72), + (4, 8, 5, 42, 10, 77), + (4, 9, 3, 22, 10, 72), + (4, 10, 3, 52, 41, 72), + (4, 11, 3, 52, 41, 72), + (4, 13, 5, 42, 36, 43), + (4, 14, 5, 76, 41, 77), + (3, 1, 4, 56, 82, 37), + (3, 2, 4, 56, 21, 62), + (3, 3, 2, 0, 63, 62), + (3, 4, 2, 0, 82, 37), + (3, 5, 1, 0, 21, 62), + (3, 6, 2, 0, 82, 37), + (3, 7, 2, 0, 82, 61), + (3, 8, 2, 0, 63, 62), + (3, 9, 2, 0, 82, 62), + (3, 10, 2, 0, 82, 37), + (3, 11, 4, 56, 82, 37), + (3, 13, 1, 0, 21, 62), + (3, 14, 4, 56, 82, 37), + (1, 1, 1, 0, 35, 40), + (1, 2, 1, 68, 62, 79), + (1, 3, 2, 26, 62, 79), + (1, 4, 2, 0, 81, 40), + (1, 5, 3, 0, 72, 40), + (1, 6, 2, 82, 37, 79), + (1, 7, 2, 82, 72, 79), + (1, 8, 2, 0, 62, 79), + (1, 9, 2, 82, 62, 79), + (1, 10, 2, 82, 62, 79), + (1, 11, 2, 82, 20, 40), + (1, 13, 1, 8, 66, 9), + (1, 14, 4, 38, 62, 79), + (7, 1, 1, 46, 7, 25), + (7, 2, 1, 21, 7, 25), + (7, 3, 1, 28, 24, 25), + (7, 4, 1, 28, 24, 25), + (7, 5, 1, 28, 7, 25), + (7, 6, 1, 28, 7, 25), + (7, 7, 1, 28, 7, 25), + (7, 8, 1, 46, 24, 0), + (7, 9, 1, 58, 39, 25), + (7, 10, 1, 28, 7, 25), + (7, 11, 1, 28, 24, 25), + (7, 13, 1, 28, 7, 25), + (7, 14, 1, 28, 7, 25), + (2, 1, 2, 10, 38, 71), + (2, 2, 3, 72, 67, 71), + (2, 3, 2, 40, 52, 82), + (2, 4, 2, 10, 52, 71), + (2, 5, 1, 10, 0, 71), + (2, 6, 2, 40, 52, 82), + (2, 7, 2, 61, 52, 82), + (2, 8, 3, 72, 22, 71), + (2, 9, 4, 31, 22, 71), + (2, 10, 2, 40, 52, 71), + (2, 11, 3, 40, 52, 0), + (2, 13, 1, 66, 67, 0), + (2, 14, 2, 62, 67, 71), + (8, 1, 6, 14, 77, 41), + (8, 2, 1, 0, 15, 41), + (8, 3, 1, 0, 15, 41), + (8, 4, 5, 0, 77, 41), + (8, 5, 6, 14, 4, 41), + (8, 6, 2, 0, 0, 41), + (8, 7, 1, 0, 15, 41), + (8, 8, 1, 14, 5, 0), + (8, 9, 6, 14, 77, 58), + (8, 10, 1, 0, 15, 41), + (8, 11, 2, 0, 0, 41), + (8, 13, 5, 0, 77, 41), + (8, 14, 5, 0, 77, 41), + (6, 1, 5, 7, 46, 42), + (6, 2, 1, 7, 28, 0), + (6, 3, 5, 7, 28, 11), + (6, 4, 1, 24, 28, 42), + (6, 5, 1, 24, 28, 42), + (6, 6, 1, 7, 28, 0), + (6, 8, 1, 24, 28, 42), + (6, 9, 5, 7, 28, 42), + (6, 10, 5, 7, 76, 70), + (6, 11, 1, 24, 28, 11), + (6, 13, 5, 7, 76, 42), + (6, 14, 5, 7, 28, 42), + (10, 1, 1, 29, 80, 31), + (10, 2, 1, 0, 80, 31), + (10, 3, 5, 0, 30, 31), + (10, 4, 5, 0, 30, 31), + (10, 5, 1, 29, 30, 19), + (10, 6, 4, 0, 0, 31), + (10, 7, 1, 0, 80, 31), + (10, 8, 5, 29, 0, 31), + (10, 9, 5, 0, 30, 39), + (10, 10, 5, 0, 30, 31), + (10, 11, 1, 0, 80, 31), + (10, 13, 5, 0, 30, 66), + (10, 14, 5, 0, 30, 31), + (9, 1, 1, 49, 70, 54), + (9, 2, 1, 0, 70, 68), + (9, 3, 1, 50, 70, 54), + (9, 4, 1, 0, 70, 54), + (9, 5, 1, 49, 70, 54), + (9, 6, 3, 0, 0, 54), + (9, 7, 1, 0, 70, 54), + (9, 8, 3, 0, 70, 0), + (9, 9, 1, 0, 70, 54), + (9, 10, 1, 49, 70, 54), + (9, 11, 1, 0, 70, 54), + (9, 13, 1, 0, 70, 54), + (9, 14, 1, 50, 70, 54), + (11, 1, 1, 3, 14, 29), + (11, 2, 1, 32, 78, 44), + (11, 3, 1, 74, 17, 44), + (11, 4, 1, 15, 17, 65), + (11, 5, 6, 2, 14, 29), + (11, 5, 6, 4, 14, 29), + (11, 7, 1, 48, 17, 65), + (11, 8, 1, 5, 14, 29), + (11, 9, 5, 6, 58, 65), + (11, 10, 6, 2, 17, 65), + (11, 13, 1, 9, 78, 65), + (11, 14, 1, 74, 17, 65), + (13, 1, 1, 0, 29, 3), + (13, 1, 1, 80, 60, 16), + (13, 2, 2, 0, 79, 20), + (13, 3, 2, 0, 79, 81), + (13, 4, 2, 0, 40, 81), + (13, 5, 2, 0, 40, 2), + (13, 5, 2, 0, 40, 81), + (13, 6, 2, 0, 79, 81), + (13, 7, 2, 0, 79, 16), + (13, 8, 2, 0, 79, 81), + (13, 9, 1, 39, 31, 81), + (13, 10, 2, 0, 79, 2), + (13, 11, 2, 0, 40, 20), + (13, 13, 1, 0, 9, 16), + (13, 14, 1, 80, 79, 20), + (12, 1, 1, 55, 3, 49), + (12, 1, 1, 60, 50, 32), + (12, 2, 1, 67, 68, 32), + (12, 3, 1, 67, 54, 32), + (12, 4, 1, 60, 54, 32), + (12, 5, 1, 70, 2, 49), + (12, 5, 1, 70, 54, 49), + (12, 6, 1, 60, 54, 32), + (12, 7, 5, 70, 16, 0), + (12, 8, 1, 55, 0, 0), + (12, 9, 3, 69, 54, 0), + (12, 10, 1, 70, 2, 49), + (12, 11, 1, 60, 54, 32), + (12, 13, 1, 70, 16, 32), + (12, 14, 1, 67, 16, 32), + (5, 1, 4, 17, 71, 7), + (5, 1, 6, 0, 0, 14), + (5, 2, 1, 0, 25, 10), + (5, 3, 4, 65, 43, 74), + (5, 4, 4, 17, 43, 76), + (5, 5, 5, 19, 42, 14), + (5, 6, 3, 0, 43, 10), + (5, 7, 5, 30, 42, 76), + (5, 8, 5, 0, 42, 10), + (5, 9, 4, 65, 42, 28), + (5, 10, 4, 17, 43, 10), + (5, 11, 3, 0, 43, 10), + (5, 13, 5, 19, 42, 76), + (5, 14, 4, 17, 43, 74); \ No newline at end of file diff --git a/modules/standard/info/info/atrox.txt b/modules/standard/info/info/atrox.txt new file mode 100644 index 0000000..0afe1c8 --- /dev/null +++ b/modules/standard/info/info/atrox.txt @@ -0,0 +1,404 @@ +
:::::: Atrox ::::::
+ +These fellas (if that's the appropriate term, since they are genderless) are +the big workhorse breed of Anarchy Online. They receive the most Health per +point of Body Development, and have bonuses to Stamina and Strength. They make +ideal melee combatants and tanks, but their intelligence-based skills and +nanoskills suffer. Pick them if you want to be able to dish out a lot of melee +damage and take a lot of punishment. It is a good choice for the early levels, +but in the later levels you'll find yourself hurting in the nanoskill +department. + +Most of the Atrox-only items are geared toward melee weaponry and strength, +including the Silken Legchopper Gloves. Certain "large" weapons are also Atrox +only, such as the Support Beams and the Diamondine Kick Pistol. Oddly enough, +because Atrox is genderless, in many cases they can wear both male and female +outfits. + + + ::: Atrox Breed Caps ::: + +* Strength 512/912 +* Agility 480/780 +* Stamina 512/912 +* Intelligence 400/600 +* Sense 400/600 +* Psychic 400/600 + +Atrox HP/NP ratio, -Nanocost cap % + +Max % Add Nano Cost -45% + +4 max health per 1 point of bodydev +2 max nano per 1 point of nanopool + + ::: Atrox Shadowbreeds List ::: + +Atrox (Clan) Shadowbreed + +1: Luminous +Casts: Screen of light + +On Self: +Boots Nano Resist by 2k +Allows you to absorb 7 attacks + +2: Splendent +Casts: Shield of Light + +On Self: +Boosts Add all Def by 200 +Breaks Roots + +AoE +Allows affected players to absorb 12 hits + +3: Metoric +Casts: Fortress of Light + +On Self: +Boosts Add all Def by 800 +Will Absorb 1000 Damage from Special Attacks +Will give Root and Snare resistance + +AoE: +Allows affected players to absorb 15 hits + +Atrox (Omni) Shadowbreed + +1: Dusky +Casts: Blackfist + +On Self: +Boosts your Add all Off by 400 +Raises your Critical Chance by 10 + +2: Gloomy +Casts: Slam of Darkness + +On Self: +Boosts your Add all Damage by 400 + +Hostile AoE +Casts a DoT (1k, 6 hits, 3 sec delay) +Lowers Run Speed by 1k + +3: Nocturnal +Casts: Scream of Death + +On Self: +Absorbs 10 hits +Absorbs 30 Special Attacks + +Hostile AoE +Casts a DoT (1.5k, 6 hits, 5 sec delay) +Lowers Run Speed by 2k and fears all monsters for 30 seconds + +Atrox (Neutral) Shadowbreed + +1: Unsettled +Casts: Blackfist + +On Self: +Boosts your Add all Off by 400 +Raises your Critical Chance by 10 + +2: Undetermined +Casts: Screen of light + +On Self: +Boots Nano Resist by 2k +Allows you to absorb 7 attacks + +3: Undecided +Casts: Slam of Darkness + +On Self: +Boosts your Add all Damage by 400 + +Hostile AoE +Casts a DoT (1k, 6 hits, 3 sec delay) +Lowers Run Speed by 1k + + ::: Atrox Alien Invasion Perks ::: + +Atrox Primary Genome + +1. Requirements: + +Level from 15 +Breed = Atrox + +Modifies: + +Strength = +2 +Stamina = +2 + +2. Requirements: + +Level from 15 +Breed = Atrox +Must have perk: Atrox Primary Genome 1 + +Modifies: + +Strength = +3 +Stamina = +3 + +3. Requirements: + +Level from 35 +Breed = Atrox +Must have perk: Atrox Primary Genome 2 + +Modifies: + +Strength = +3 +Stamina = +3 + +Enables Special: Body Tackle + +The effect of this special is an Atrox favorite, slow but fatal attack. It'll grow much efficient when you train more Atrox Primary Genome perks. + +Duration: 2 Seconds +Recharge: 2 Minutes, 10 Seconds + +http://aoitems.com/item/252487 + +4. Requirements: + +Level from 55 +Breed = Atrox +Must have perk: Atrox Primary Genome 3 + +Modifies: + +Strength = +3 +Stamina = +3 + +5. Requirements: + +Level from 55 +Breed = Atrox +Must have perk: Atrox Primary Genome 4 + +Modifies: + +Strength = +4 +Stamina = +4 + +6. Requirements: + +Level from 55 +Breed = Atrox +Must have perk: Atrox Primary Genome 5 + +Modifies: + +Strength = +4 +Stamina = +4 + +7. Requirements: + +Level from 115 +Breed = Atrox +Must have perk: Atrox Primary Genome 6 + +Modifies: + +Strength = +4 +Stamina = +4 + +8. Requirements: + +Level from 115 +Breed = Atrox +Must have perk: Atrox Primary Genome 7 + +Modifies: + +Strength = +5 +Stamina = +5 + +9. Requirements: + +Level from 202 +Breed = Atrox +Must have perk: Atrox Primary Genome 8 + +Modifies: + +Strength = +7 +Stamina = +7 + +10. Requirements: + +Level from 207 +Breed = Atrox +Must have perk: Atrox Primary Genome 9 + +Modifies: + +Strength = +14 +Stamina = +14 + +Enables Special: Mongo Rage + +Ths effect of this special will increase your attack rating by a massive amount for a short while, then you will have a cool down period. + +Duration: 10 Seconds +Recharge: 2 Minutes, 30 Seconds + +http://aoitems.com/item/252490 + +Atrox Secondary Genome + +1. Requirements: + +Level from 15 +Breed = Atrox + +Modifies: + +Agility = +1 +Sense = +1 +Intelligence = +1 +Psychic = +1 + +2. Requirements: + +Level from 15 +Breed = Atrox +Must have perk: Atrox Secondary Genome 1 + +Modifies: + +Agility = +1 +Sense = +1 +Intelligence = +1 +Psychic = +1 + +3. Requirements: + +Level from 35 +Breed = Atrox +Must have perk: Atrox Secondary Genome 2 + +Modifies: + +Agility = +1 +Sense = +1 +Intelligence = +1 +Psychic = +1 + +Enables Special: Wit of the Atrox + +The effect of this special is an evade and damage buff. + +Duration: 30 Seconds +Recharge: 1 Minute. 30 Seconds + +http://aoitems.com/item/252508 + +4. Requirements: + +Level from 55 +Breed = Atrox +Must have perk: Atrox Secondary Genome 3 + +Modifies: + +Agility = +1 +Sense = +1 +Intelligence = +1 +Psychic = +1 + +5. Requirements: + +Level from 55 +Breed = Atrox +Must have perk: Atrox Secondary Genome 4 + +Modifies: + +Agility = +2 +Sense = +2 +Intelligence = +2 +Psychic = +2 + +6. Requirements: + +Level from 55 +Breed = Atrox +Must have perk: Atrox Secondary Genome 5 + +Modifies: + +Agility = +2 +Sense = +2 +Intelligence = +2 +Psychic = +2 + +7. Requirements: + +Level from 115 +Breed = Atrox +Must have perk: Atrox Secondary Genome 6 + +Modifies: + +Agility = +2 +Sense = +2 +Intelligence = +2 +Psychic = +2 + +8. Requirements: + +Level from 115 +Breed = Atrox +Must have perk: Atrox Secondary Genome 7 + +Modifies: + +Agility = +3 +Sense = +3 +Intelligence = +3 +Psychic = +3 + +9. Requirements: + +Level from 202 +Breed = Atrox +Must have perk: Atrox Secondary Genome 8 + +Modifies: + +Agility = +4 +Sense = +4 +Intelligence = +4 +Psychic = +4 + +10. Requirements: + +Level from 207 +Breed = Atrox +Must have perk: Atrox Secondary Genome 9 + +Modifies: + +Agility = +8 +Sense = +8 +Intelligence = +8 +Psychic = +8 + +Enables Special: My Own Fortress + +The effect of this special is an attack and armor buff. + +Duration: 30 Seconds +Recharge: 1 Minute, 30 Seconds + +http://aoitems.com/item/252511 + +By Curlycat (RK2), Mdkdoc420 (RK2) +original version at http://aocrimson.darkbb.com/t126-comprehensive-breeds-guide-very-detailed diff --git a/modules/standard/info/info/breed.txt b/modules/standard/info/info/breed.txt new file mode 100644 index 0000000..3fff9e9 --- /dev/null +++ b/modules/standard/info/info/breed.txt @@ -0,0 +1,49 @@ +
:::::: Breeds ::::::
+ + ::: Solitus ::: Guide +Ability Rubi-ka / Shadowlands +Strength 472 / 772 +Agility 480 / 780 +Stamina 480 / 780 +Intelligence 480 / 780 +Sense 480 / 780 +Psychic 480 / 780 +Max % Add Nano Cost -50% +3 max health per 1 point of bodydev +3 max nano per 1 point of nanopool + + ::: Nanomage ::: Guide +Ability Rubi-ka / Shadowlands +Strength 464 / 664 +Agility 464 / 664 +Stamina 448 / 748 +Intelligence 512 / 912 +Sense 480 / 780 +Psychic 512 / 912 +Max % Add Nano Cost -55% +2 max health per 1 point of bodydev +4 max nano per 1 point of nanopool + + ::: Opifex ::: Guide +Ability Rubi-ka / Shadowlands +Strength 464 / 764 +Agility 544 / 944 +Stamina 480 / 680 +Intelligence 464 / 764 +Sense 512 / 912 +Psychic 448 / 748 +Max % Add Nano Cost -50% +3 max health per 1 point of bodydev +3 max nano per 1 point of nanopool + + ::: Atrox ::: Guide +Ability Rubi-ka / Shadowlands +Strength 512 / 912 +Agility 480 / 780 +Stamina 512 / 912 +Intelligence 400 / 600 +Sense 400 / 600 +Psychic 400 / 600 +Max % Add Nano Cost -45% +4 max health per 1 point of bodydev +2 max nano per 1 point of nanopool diff --git a/modules/standard/info/info/chat_commands.txt b/modules/standard/info/info/chat_commands.txt new file mode 100644 index 0000000..19ffa6d --- /dev/null +++ b/modules/standard/info/info/chat_commands.txt @@ -0,0 +1,48 @@ +
::::: Chat Commands :::::
+ +Here u can find an overview of some commands with samples. + +Playtime + +/played + +Tells you for how long you have played this character. Also gives you the local time, both in-game and real-time. + +Example Here + + ::: Date of Birth ::: + +/born + +Tells you when character was created. + +Example Here + + ::: Stucked ::: + +/stuck + +When you are stuck, sit down and use this command and you will be moved + +Example Here + + ::: Tip of the Day Infowindow ::: + +/TipOfTheDay + +Will bring up the next tip. + +Example Here + + ::: Messagebox ::: + +/messagebox [text] + +Opens a messagebox with [text] in it and a OK button to close it. + +Example Here + + +Source: http://wiki.aodb.us/wiki/Chat_command + +by longsdale diff --git a/modules/standard/info/info/deflect.txt b/modules/standard/info/info/deflect.txt new file mode 100644 index 0000000..af8ce2c --- /dev/null +++ b/modules/standard/info/info/deflect.txt @@ -0,0 +1,30 @@ +
::::: Deflect :::::
+ +Parry has been renamed to Deflect. +Deflect is a defensive stat and not a melee special. Deflect increases the chance that incoming attacks become Glancing Hits. +A Glancing Hit deals 50% damage. Glance chance is 0%->10%, between 0->3000 Deflect skill. + +*Fast Attack: Glancing hit will deal normal damage. +*Fling Shot: Glancing hit will deal normal damage. +*Sneak Attack: Glance is 50% damage. +*Aimed Shot: Glance counts as a miss with 0 damage. +*Backstab: Glance is 50% damage (on the damage calculated before applying the backstab multiplier). +*Brawl: Glance is 50% damage. +*Burst: Per bullet: Glance is 50% damage. +*Dimach: Glance is 50% damage. +*Full Auto: If a shot is glanced, all subsequent bullets will do 50% damage. + +Chance 0%->1% @ 0->300 Deflect Skill +Chance 1%->2% @ 301->600 Deflect Skill +Chance 2%->3% @ 601->900 Deflect Skill +Chance 3%->4% @ 901->1200 Deflect Skill +Chance 4%->5% @ 1201->1500 Deflect Skill +Chance 5%->6% @ 1501->1800 Deflect Skill +Chance 6%->7% @ 1801->2100 Deflect Skill +Chance 7%->8% @ 2101->2400 Deflect Skill +Chance 8%->9% @ 2401->2700 Deflect Skill +Chance 9%->10% @ 2700->3000 Deflect Skill + +source: https://forums.anarchy-online.com/showthread.php?613558-18-7-0-Update-Release-Notes + +by longsdale diff --git a/modules/standard/info/info/doja.txt b/modules/standard/info/info/doja.txt new file mode 100644 index 0000000..e88ba00 --- /dev/null +++ b/modules/standard/info/info/doja.txt @@ -0,0 +1,57 @@ +
:::::: Doja Chips ::::::
+ +Below you can read about where to loot DOJA Chips. This information will show you the level requirements and the mobs that will drop the DOJA Chips for each level range. There are two types of Doja Chips, normal and special. You can turn one normal and one special chip in each day. Clicking the monster links below will set a waypoint to help you find your way. + + ::: Normal DOJA Chips ::: + +Nascense + +Level Range: 1-60 +Looted from: Cripplers of Growth, Hiathlins, Malah-Anas, Predator Strikers, and Spinetooth Hatchlings + +Elysium + +Level Range: 61-100 +Looted from: Bony Spinetooths, Callous Mortiigs, Heartland Predators and Shunpike Dryads + +Scheol + +Level Range: 101-130 +Looted from: Arcorashs, Esoteric Hiathlins, Glurashs and Rock Rafters + +Adonis + +Level Range: 131-160 +Looted from: Creepos, Somphos and Stingers + +Penumbra + +Level Range: 161-204 +Looted from: Icy Predators, Vortexoids, Demons of Water, Icy Shadows and Frosty Rafters + +Inferno + +Level Range: 205-220 +Looted from: Demons of Shadow, Fiery Chimeras and Somphos Logees + + + ::: Special DOJA Chips ::: +Anything in these zones can drop a chip except maybe adds, special mobs and bosses. + +Dark Ruins(Team) + +Level Range: Below 201 (instance is level 150-200) + +Alappaa + +Level Range: 201-210 + +Albtraum + +Level Range: 211-219 + +Pandemonium + +Level Range: 220 + +Written by Mackten (RK1), with special thanks to Marebone (RK2) diff --git a/modules/standard/info/info/fgrid.txt b/modules/standard/info/info/fgrid.txt new file mode 100644 index 0000000..7e4e680 --- /dev/null +++ b/modules/standard/info/info/fgrid.txt @@ -0,0 +1,79 @@ +
:::::: Fixer Grid exits ::::::
+ +The Fixer Grid is accessible by all fixers (over level 40) who have completed the first Fixer Grid quest. + +Other professions may access the Fixer Grid when teamed with a fixer (over level 100) who has completed the second Fixer Grid quest. + +Unlike the regular Grid, the Fixer Grid is circular, has 10 levels, and has no Computer Literacy requirements to use any of the exits. Most of the levels have more than 1 exit per destination as shown below: L = Left, M = Middle, R = Right + +Typically, the higher the level of the exit, the higher level mobs you will likely find in that destination, so be wary. + + ::: Level 1 ::: +Newland City +Tir +West Athen +Old Athen +Borealis +Omni-1 Entertainment +Omni-1 HQ +Omni-1 Trade + + ::: Level 2 ::: +Newland +Tir County +Athen Shire +Holes in the wall +Rome Green +Rome Red +Rome Blue +Omni forest + + ::: Level 3 ::: +Newland Desert +Greater Tir County +Wailing Wastes +Stret West Bank [L,R] +Mutant Domain +Lush Fields +Greater Omni forest + + ::: Level 4 ::: +Varmint Woods +Aegean +Wartorn Valley +Clondyke [L,R] +Galway Shire +Galway County +Varmint Woods + + ::: Level 5 ::: +4 Holes [L,M,R] +Andromeda [L,M,R] +Pleasant Meadows [L,R] + + ::: Level 6 ::: +The Longest Road [L,M,R] +Stret East Bank [L,M,R] +Milky Way [L,R] + + ::: Level 7 ::: +Southern Fouls Hills [L,R] +Upper Stret East Bank [L,M,R] +Souther Artery Valley [L,M,R] + + ::: Level 8 ::: +Avalon [L,R] +Central Artery Valley [L,M,R] +Belial Forest [L,M,R] + + ::: Level 9 ::: +Mort [L,M,R] +Deep Artery Valley [L,M,R] +Broken Shores [L,R] + + ::: Level 10 ::: +Perpetual Wastelands [L,M,R] +Eastern Fouls Plains [L,M,R] + +Written by Shassandrafx (RK2) +Submitted By Spectin (RK2) diff --git a/modules/standard/info/info/gos.txt b/modules/standard/info/info/gos.txt new file mode 100644 index 0000000..f6f99aa --- /dev/null +++ b/modules/standard/info/info/gos.txt @@ -0,0 +1,16 @@ +
:::::: Guardian of Shadow ::::::
+ +Faction requirements for using different SL portals: +Elysium 1 + +Scheol1001 + +Adonis5000 + +Penerumba 10000 + +Inferno 18000 + +Pandemonium 30000 + +By DrUrban (RK1) diff --git a/modules/standard/info/info/governing_forms.txt b/modules/standard/info/info/governing_forms.txt new file mode 100644 index 0000000..d413f08 --- /dev/null +++ b/modules/standard/info/info/governing_forms.txt @@ -0,0 +1,38 @@ +
:::::: Governing Forms ::::::
+ + ::: Anarchism ::: +Anarchist + + ::: Monarchy ::: +Monarch +Counsil +Follower + + :::Feudalism ::: +Lord +Knight +Vassal +Peasant + + ::: Republic ::: +President +Advisor +Veteran +Member +Applicant + + ::: Faction ::: +Director +Board Member +Executive +Member +Applicant + + ::: Department ::: +President +General +Squad Commander +Unit Commander +Unit Leader +Unit Member +Applicant diff --git a/modules/standard/info/info/grid.txt b/modules/standard/info/info/grid.txt new file mode 100644 index 0000000..4ac2e63 --- /dev/null +++ b/modules/standard/info/info/grid.txt @@ -0,0 +1,40 @@ +
:::::: Guide to The Grid ::::::
+ +The grid is a fast way to teleport to other locations within Rubi-Ka. Fixers have their own grid, but the public grid is available for all characters to use. The Grid requires a certain amount of Computer Literacy to exit or enter the various grid terminals. There are three floors to the Grid, each with different ranges of Computer Literacy needed: + + ::: First Floor ::: +*0 : Emergency Exit +*0 : Organization Exit +*75 : Omni-1 Trade +*80 : Old Athen +*80 : Tir +*90 : Borealis +*90 : ICC +*90 : Newland +*90 : 3 Craters East +*90 : 3 Craters West +*90 : Coast of Peace +*90 : Coast of Tranquility +*90 : Unicorn Defence Hub + + ::: Second Floor ::: +*75 : Omni-1 Entertainment +*80 : 2HO (Stret East Bank) +*90 : Meetmedere (Newland Desert) +*100 : Rome Red +*120 : Galway +*120 : Harry's +*120 : Lush Hills (Resort) +*130 : (West) Athens +*150 : Clondyke +*180 : 4 Holes +*250 : Broken Shores + + ::: Third Floor ::: +*150 Omni-1 HQ +*440 Sentinels (Mort) +*450 Camelot (Avalon) + +* denotes CompLit needed to use the exit. + +Updates from Shassandrafx (RK2), Spectin(RK2) diff --git a/modules/standard/info/info/healdelta.txt b/modules/standard/info/info/healdelta.txt new file mode 100644 index 0000000..8118cef --- /dev/null +++ b/modules/standard/info/info/healdelta.txt @@ -0,0 +1,63 @@ +
:::::: Heal Delta ::::::
+ +Stamina -> HD tick standing/sitting + +000->29s / 14s +030->28s / 14s +060->27s / 13s + +090->26s / 13s +120->25s / 12s +150->24s / 12s + +180->23s / 11s +210->22s / 11s +240->21s / 10s + +270->20s / 10s +300->19s / 09s +330->18s / 09s + +360->17s / 08s +390->16s / 08s +420->15s / 07s + +450->14s / 07s +480->13s / 06s +510->12s / 06s + +540->11s / 05s +570->10s / 05s +600->09s / 04s + +630->08s / 04s +660->07s / 03s +690->06s / 03s + +720->05s / 02s +750->04s / 02s +780->03s / 01s + +810->02s / 01s + + +by Imoutochan (RK1) + + ::: Hitpoints by Breed ::: + +Atrox 4 hitpoints from each point in bodydev +Opifex 3 hitpoints +Solitus 3 hitpoints +Nanomage 2 hitpoints + +The amount of healdelta you get is: +base + (bodydev / 100) + healdelta items +Base is 4 for atrox, 3 for opi/sol, 2 for nanomage + +healdelta tickrate formula: +(870 - stam) / 30 = tickrate + +example (870-810)/30=2 secs + +http://forums.anarchy-online.com/showthread.php?t=525410 +http://forums.anarchy-online.com/showthread.php?t=435274 diff --git a/modules/standard/info/info/lag.txt b/modules/standard/info/info/lag.txt new file mode 100644 index 0000000..eac2bec --- /dev/null +++ b/modules/standard/info/info/lag.txt @@ -0,0 +1,32 @@ +
:::::: Lag Tweaks ::::::
+ + ::: Environment and Visual (No Zoning Required) ::: +Enable Disable Character names show over head +Enable Disable Display Simple Clouds +Enable Disable Display Realistic Clouds +Enable Disable Display Realistic Moons +Enable Disable Star rotation at night +Enable Disable Show wildlife +Enable Disable Show Space Ships +Enable Disable Show Ground Shadows + + ::: Environment and Visual (Zoning Required) ::: +Enable Disable Show Buff Effects +Enable Disable Show Environment Effects +Enable Disable Show Muzzle Flash +Enable Disable Show Nano Effects (Calms, Damage Shields, etc.) +Enable Disable Show Tracers +Enable Disable Show Others Effects + + ::: Audio Settings (No Zoning Required) ::: +Enable Disable Sound Master +Enable Disable Sound Effects +Enable Disable Music +Enable Disable Voices + + ::: View Distance Settings (No Zoning Required) ::: +Min Low Medium High Max View Distance +Min Low Medium High Max Character View Distance + +* Based off the Client Lag Tweaks module for Bebot by Glarawyn (RK1) +* Ported to Budabot by Tyrence (RK2) diff --git a/modules/standard/info/info/light.txt b/modules/standard/info/info/light.txt new file mode 100644 index 0000000..eb89390 --- /dev/null +++ b/modules/standard/info/info/light.txt @@ -0,0 +1,19 @@ +
:::::: Light Settings ::::::
+ +RKLight + +SLBasicLight + +CausticsLight + +PenumbraLight + +InfernoLight + +PandemoniumLight + +GlobalLight + +(zone to reset light settings) + +By DrUrban (RK1) diff --git a/modules/standard/info/info/nanodelta.txt b/modules/standard/info/info/nanodelta.txt new file mode 100644 index 0000000..7d160d4 --- /dev/null +++ b/modules/standard/info/info/nanodelta.txt @@ -0,0 +1,49 @@ +
:::::: Nano Delta ::::::
+ +Psychic -> tick delay + +000->28s +060->26s +120->24s + +180->22s +240->20s +300->18s + +360->16s +420->14s +480->12s + +540->10s +600->08s +660->06s + +720->04s +780->02s + + +by Imoutochan (RK1) + + ::: Nanopoints by Breed ::: + +Atrox gets 2 nano for each point in nanopool +Opifex gets 3 nano +Solitus gets 3 nano +Nanomage gets 4 nano + +The amount of nanodelta you get is: +base + (bodydev / 100) + nanodelta items +Body Dev plays a part in the base tick amount for nano delta. +Base tick amount for Solitus is 3 nano per tick. +By "base amount" I mean if you have no +nanodelta modifiers at all. +This base amount is then increased by +1 for every 100 points in +Body Dev -- i.e. with 800 body dev, a Solitus will have a base tick of 11 nano (3+8). + +Nano tickrate formula ; 28-(psy/30)=tickrate + +example 28-(780/30)=2 secs + +The most you can get per tick is 200. + +http://forums.anarchy-online.com/showthread.php?t=435274 +http://forums.anarchy-online.com/showthread.php?t=417764 diff --git a/modules/standard/info/info/nanomage.txt b/modules/standard/info/info/nanomage.txt new file mode 100644 index 0000000..5c32ded --- /dev/null +++ b/modules/standard/info/info/nanomage.txt @@ -0,0 +1,433 @@ +
:::::: Nanomage ::::::
+ +This breed is difficult to play for most new players due to the hits they take +in the Health department and is not recommended until you have a better grasp +of the game. They have superior abilities in Nano-related skills and overall +Nanopoints, but have less Health. They have penalties in Strength and Agility. + +Later on in the game, they get access to breed-only buff items such as the +Shades of Lucubration, but these items tend to be out of the grasp of a new +player anyway. It's something to think about for veteran players. Typically, +playing a Nanomage is a challenging proposition and is one way to ramp up the +difficulty of the game. + + + ::: Nanomage Breed Caps ::: + +* Strength 464/664 +* Agility 464/664 +* Stamina 448/748 +* Intelligence 512/912 +* Sense 480/780 +* Psychic 512/912 + +Nanomage HP/NP ratio, -Nanocost cap % + +Max % Add Nano Cost -55% + +2 max health per 1 point of bodydev +4 max nano per 1 point of nanopool + + + ::: Nanomage Shadowbreeds List ::: + +Nanomage (Clan) Shadowbreed + +1: Radient +Casts: Morning + +On Self: +Raises you Max Nano by 1k +Boosts your Nano Init by 300 +Gives a Nano HoT + +AoE: +Lowers your enemies nano by 1500 + +2: Splendid +Casts: Hope + +On Self: +Buffs your Agg/Def by 150 +Raises your Max Nano by 3k +Gives a Nano HoT +Gives root/Snare/Calm Resistances + +Friendly AoE: +Raises Nano Init by 800 + +Hostile AoE: +Lowers Nano Init by 400 + +3: Blazing +Casts: Life + +AoE: +Gives a Nano Hot +Buffs your Agg/Def by 200 +Boosts your Nano Init by 1k +Raises your Max Nano by 4k +Gives root/Snare/Calm Resistances + +Nanomage (Omni) Shadowbreed + +1: Benighted +Casts: Silence + +On Self: +Gives a Nano HoT (500, 7 hits, 3 secs delay) +Boosts your Nano Init by 1k + +Hostile AoE +Casts a Nano DoT (-500, 5 hits, 3 secs delay) + +2: Noctivagant +Casts: Misery + +On Self: +Boosts your Agg/Def by 200 +Gives a 1k Damage Shield + +Target Debuff: +Lowers Nano Init by 1k + +Friendly AoE: +Raises you Nano Init by 1k + +Hostile AoE: +Casts a 4k Nuke + +3: Noctivagous +Casts: Death + +Friendly AoE: +Casts a HoT (1k, 5 hits, 4 secs delay) +Boosts your Agg/Def by 200 +Raises your Nano Init by 1k +Gives a 1k Damage Shield + +Hostile AoE: +Cast a 8k Nuke + +Nanomage (Neutral) Shadowbreed + +1: Balanced +Casts: Silence + +On Self: +Gives a Nano HoT (500, 7 hits, 3 secs delay) +Boosts your Nano Init by 1k + +Hostile AoE +Casts a Nano DoT (-500, 5 hits, 3 secs delay) + +2: Casual +Casts: Morning + +On Self: +Raises you Max Nano by 1k +Boosts your Nano Init by 300 +Gives a Nano HoT + +AoE: +Lowers your enemies nano by 1500 + +3: Uncertain +Casts: Misery + +On Self: +Boosts your Agg/Def by 200 +Gives a 1k Damage Shield + +Target Debuff: +Lowers Nano Init by 1k + +Friendly AoE: +Raises you Nano Init by 1k + +Hostile AoE: +Casts a 4k Nuke + + + ::: Nanomage Alien Invasion Perks ::: + +Nanobreed Primary Genome + +1. Requirements: + +Level from 15 +Breed = Nanomage + +Modifies: + +Intelligence = +2 +Psychic = +2 + +2. Requirements: + +Level from 15 +Breed = Nanomage +Must have perk: Nanobreed Primary Genome 1 + +Modifies: + +Intelligence = +3 +Psychic = +3 + +3. Requirements: + +Level from 35 +Breed = Nanomage +Must have perk: Nanobreed Primary Genome 2 + +Modifies: + +Intelligence = +3 +Psychic = +3 + +Enables Special: Reject + +The effect of this special is a minor direct damage to the target. + +Duration: N/A +Recharge: 30 Seconds + +http://aoitems.com/item/254313 + +4. Requirements: + +Level from 55 +Breed = Nanomage +Must have perk: Nanobreed Primary Genome 3 + +Modifies: + +Intelligence = +3 +Psychic = +3 + +5. Requirements: + +Level from 55 +Breed = Nanomage +Must have perk: Nanobreed Primary Genome 4 + +Modifies: + +Intelligence = +3 +Psychic = +3 + +6. Requirements: + +Level from 55 +Breed = Nanomage +Must have perk: Nanobreed Primary Genome 5 + +Modifies: + +Intelligence = +4 +Psychic = +4 + +7. Requirements: + +Level from 115 +Breed = Nanomage +Must have perk: Nanobreed Primary Genome 6 + +Modifies: + +Intelligence = +4 +Psychic = +4 + +8. Requirements: + +Level from 115 +Breed = Nanomage +Must have perk: Nanobreed Primary Genome 7 + +Modifies: + +Intelligence = +5 +Psychic = +5 + +9. Requirements: + +Level from 202 +Breed = Nanomage +Must have perk: Nanobreed Primary Genome 8 + +Modifies: + +Intelligence = +7 +Psychic = +7 + +10. Requirements: + +Level from 207 +Breed = Nanomage +Must have perk: Nanobreed Primary Genome 9 + +Modifies: + +Intelligence = +14 +Psychic = +14 + +Enables Special: Sword + +The effect of this attack is a special buff that increases the targets nanocost by 100% + +Duration: 30 Seconds +Recharge: 1 Minute, 15 Seconds + +http://aoitems.com/item/252559 + +Nanobreed Secondary Genome + +1. Requirements: + +Level from 15 +Breed = Nanomage + +Modifies: + +Strength = +1 +Stamina = +1 +Sense = +1 +Agility = +1 + +2. Requirements: + +Level from 15 +Breed = Nanomage +Must have perk: Nanobreed Secondary Genome 1 + +Modifies: + +Strength = +1 +Stamina = +1 +Sense = +1 +Agility = +1 + +3. Requirements: + +Level from 35 +Breed = Nanomage +Must have perk: Nanobreed Secondary Genome 2 + +Modifies: + +Strength = +1 +Stamina = +1 +Sense = +1 +Agility = +1 + +Enables Special: Pen + +The effect of this special is a direct damage to the target. It will also lower the targets runspeed. This special will grow more efficient upon training more perks. + +Duration: 30 Seconds +Recharge: 1 Minute, 40 Seconds + +http://aoitems.com/item/253014 + +4. Requirements: + +Level from 55 +Breed = Nanomage +Must have perk: Nanobreed Secondary Genome 3 + +Modifies: + +Strength = +1 +Stamina = +1 +Sense = +1 +Agility = +1 + +5. Requirements: + +Level from 55 +Breed = Nanomage +Must have perk: Nanobreed Secondary Genome 4 + +Modifies: + +Strength = +2 +Stamina = +2 +Sense = +2 +Agility = +2 + +6. Requirements: + +Level from 55 +Breed = Nanomage +Must have perk: Nanobreed Secondary Genome 5 + +Modifies: + +Strength = +2 +Stamina = +2 +Sense = +2 +Agility = +2 + +7. Requirements: + +Level from 115 +Breed = Nanomage +Must have perk: Nanobreed Secondary Genome 6 + +Modifies: + +Strength = +2 +Stamina = +2 +Sense = +2 +Agility = +2 + +8. Requirements: + +Level from 115 +Breed = Nanomage +Must have perk: Nanobreed Secondary Genome 7 + +Modifies: + +Strength = +3 +Stamina = +3 +Sense = +3 +Agility = +3 + +9. Requirements: + +Level from 202 +Breed = Nanomage +Must have perk: Nanobreed Secondary Genome 8 + +Modifies: + +Strength = +3 +Stamina = +3 +Sense = +3 +Agility = +3 + +10. Requirements: + +Level from 207 +Breed = Nanomage +Must have perk: Nanobreed Secondary Genome 9 + +Modifies: + +Strength = +8 +Stamina = +8 +Sense = +8 +Agility = +8 + +Enables Special: Notum Shield + +The effect of this special is a shield that will deflect 15% amount of damage taken. Once this shield is active you will not be able to stop it until you go below 5000 nanopool. + +Duration: 10 Seconds (Reoccurring) +Recharge: 1 Minute, 15 Seconds + +http://aoitems.com/item/253017 + +By Curlycat (RK2), Mdkdoc420 (RK2) +original version at http://aocrimson.darkbb.com/t126-comprehensive-breeds-guide-very-detailed diff --git a/modules/standard/info/info/opifex.txt b/modules/standard/info/info/opifex.txt new file mode 100644 index 0000000..b506c59 --- /dev/null +++ b/modules/standard/info/info/opifex.txt @@ -0,0 +1,399 @@ +
:::::: Opifex ::::::
+ +This grey-skinned breed is more slender and agile than Humans. They have bonuses +to Agility and Sense (which are Light Green for them) and a penalty to Stamina +(which is Dark Blue). This makes the Opifex ideal for ranged combat, especially +Pistol Adventurers, Fixers, and Agents. They are also pretty decent Martial +Artists and Shades. Opifex gain the same amount of Health and Nano points as a Solitus per +point of Body Dev/Nano Pool, but tend to have less in each due to their racial +Ability penalties. + +Most of the Opifex-only items are geared toward Agility and Sense, but these +items are few and far between. + + ::: Opifex Breed Caps ::: + +* Strength 464/764 +* Agility 544/944 +* Stamina 480/680 +* Intelligence 464/764 +* Sense 512/912 +* Psychic 448/748 + +Opifex HP/NP ratio, -Nanocost cap % + +Max % Add Nano Cost -50% + +3 max health per 1 point of bodydev +3 max nano per 1 point of nanopool + + + ::: Opifex Shadowbreeds List ::: + +Opifex (Clan) Shadowbreed + +1: Cloudless +Casts: Lightstep + +On Self: +Boosts Run Speed and Swimming by 1.5k +Allows you to absorb 5 hits +Allows you to absorb 10 special attacks + +2: Loustrous +Casts: Gather Light + +On Self: +Boosts your Perception by 2k +Boosts your Add all Def by 2k +Boosts your Add all Damage by 500 + +3: Shiny +Casts: Rain of Light + +On Self: +Boosts Perception by 2k +Boosts Add all Damage by 800 +Allows you to Absorb 9 hits +Allows you to Absorb 25 Special Attacks + +AoE: +Boosts Add all Def by 1k + +Opifex (Omni) Shadowbreed + +1: Shady +Casts: Blackstep + +On Self: +Boosts Run Speed by 2k +Raises Critical Chance by 10 + +2: Adumbrated +Casts: Obscure Vision + +On Self: +Boosts your Run Speed by 2k +Boosts your Concealment by 4k +Boosts your Add all Off by 200 +Raises your Critical Chance by 12 + +3: Darkened +Casts: Gather Darkness + +On Self: +Boosts your Run Speed by 1k +Boosts your Concealment by 2k +Boosts your Add all Off by 800 +Raises your Critical Chance by 15 + +Opifex (Neutral) Shadowbreed + +1: Doubtful +Casts: Blackstep + +On Self: +Boosts Run Speed by 2k +Raises Critical Chance by 10 + +2: Dubious +Casts: Gather Light + +On Self: +Boosts your Perception by 2k +Boosts your Add all Def by 2k +Boosts your Add all Damage by 500 + +3: Undefinable +Casts: Obscure Vision + +On Self: +Boosts your Run Speed by 2k +Boosts your Concealment by 4k +Boosts your Add all Off by 200 +Raises your Critical Chance by 12 + + + ::: Opifex Alien Invasion Perks ::: + +Opifex Primary Genome + +1. Requirements: + +Level from 15 +Breed = Opifex + +Modifies: + +Sense = +2 +Agility = +2 + +2. Requirements: + +Level from 15 +Breed = Opifex +Must have perk = Opifex Primary Genome 1 + +Modifies: + +Sense = +3 +Agility = +3 + +3. Requirements: + +Level from 35 +Breed = Opifex +Must have perk = Opifex Primary Genome 2 + +Modifies: + +Sense = +3 +Agility = +3 + +Enables Special: Opening + +This opifex attack was usually used as an opening attack, hence the name Opening. Due to the demanding physics of such an attack, it has a rather slow recycle. + +Duration: N/A +Recharge: 2 Minutes, 15 Seconds + +http://aoitems.com/item/252523 + +4. Requirements: + +Level from 55 +Breed = Opifex +Must have perk = Opifex Primary Genome 3 + +Modifies: + +Sense = +3 +Agility = +3 + +5. Requirements: + +Level from 55 +Breed = Opifex +Must have perk = Opifex Primary Genome 4 + +Modifies: + +Sense = +3 +Agility = +3 + +6. Requirements: + +Level from 55 +Breed = Opifex +Must have perk = Opifex Primary Genome 5 + +Modifies: + +Sense = +4 +Agility = +4 + +7. Requirements: + +Level from 115 +Breed = Opifex +Must have perk = Opifex Primary Genome 6 + +Modifies: + +Sense = +4 +Agility = +4 + +8. Requirements: + +Level from 115 +Breed = Opifex +Must have perk = Opifex Primary Genome 7 + +Modifies: + +Sense = +5 +Agility = +5 + +9. Requirements: + +Level from 202 +Breed = Opifex +Must have perk = Opifex Primary Genome 8 + +Modifies: + +Sense = +7 +Agility = +7 + +10. Requirements: + +Level from 207 +Breed = Opifex +Must have perk = Opifex Primary Genome 9 + +Modifies: + +Sense = +14 +Agility = +14 + +Enables Special: Derivate + +This is a special poison that the opifex can use on its target. It requires that you stand behind the target. + +Duration: 35 Seconds +Recharge: 1 Minute, 50 Seconds + +http://aoitems.com/item/252526 + +Opifex Secondary Genome + +1. Requirements: + +Level from 15 +Breed = Opifex + +Modifies: + +Strength = +1 +Stamina = +1 +Psychic = +1 +Intelligence = +1 + +2. Requirements: + +Level from 15 +Breed = Opifex +Must have perk = Opifex Secondary Genome 1 + +Modifies: + +Strength = +1 +Stamina = +1 +Psychic = +1 +Intelligence = +1 + +3. Requirements: + +Level from 35 +Breed = Opifex +Must have perk = Opifex Secondary Genome 2 + +Modifies: + +Strength = +1 +Stamina = +1 +Psychic = +1 +Intelligence = +1 + +Enables Special: Blinded by Delights + +The effect of this special is a target blind. It will also reduce the targets nanoskills. + +Duration: 25 Seconds +Recharge: 1 Minute, 50 Seconds + +http://aoitems.com/item/252539 + +4. Requirements: + +Level from 55 +Breed = Opifex +Must have perk = Opifex Secondary Genome 3 + +Modifies: + +Strength = +1 +Stamina = +1 +Psychic = +1 +Intelligence = +1 + +5. Requirements: + +Level from 55 +Breed = Opifex +Must have perk = Opifex Secondary Genome 4 + +Modifies: + +Strength = +2 +Stamina = +2 +Psychic = +2 +Intelligence = +2 + +6. Requirements: + +Level from 55 +Breed = Opifex +Must have perk = Opifex Secondary Genome 5 + +Modifies: + +Strength = +2 +Stamina = +2 +Psychic = +2 +Intelligence = +2 + +7. Requirements: + +Level from 115 +Breed = Opifex +Must have perk = Opifex Secondary Genome 6 + +Modifies: + +Strength = +2 +Stamina = +2 +Psychic = +2 +Intelligence = +2 + +8. Requirements: + +Level from 115 +Breed = Opifex +Must have perk = Opifex Secondary Genome 7 + +Modifies: + +Strength = +3 +Stamina = +3 +Psychic = +3 +Intelligence = +3 + +9. Requirements: + +Level from 202 +Breed = Opifex +Must have perk = Opifex Secondary Genome 8 + +Modifies: + +Strength = +3 +Stamina = +3 +Psychic = +3 +Intelligence = +3 + +10. Requirements: + +Level from 207 +Breed = Opifex +Must have perk = Opifex Secondary Genome 9 +Must have Blinded by Delights running + +Modifies: + +Strength = +8 +Stamina = +8 +Psychic = +8 +Intelligence = +8 + +Enables Special: Dizzying Heights + +The effect of this special is a direct damage only available on the target that has Blinded by Delights running. + +Duration: N/A +Recharge: 1 Minute, 40 Seconds + +http://aoitems.com/item/252541 + +By Curlycat (RK2), Mdkdoc420 (RK2) +original version at http://aocrimson.darkbb.com/t126-comprehensive-breeds-guide-very-detailed diff --git a/modules/standard/info/info/solitus.txt b/modules/standard/info/info/solitus.txt new file mode 100644 index 0000000..4643fd5 --- /dev/null +++ b/modules/standard/info/info/solitus.txt @@ -0,0 +1,415 @@ +
:::::: Solitus ::::::
+ +The Solitus breed is what normally passes for "Human" in most games. It is also +the most versatile breed with no glaring strengths or weaknesses. You can't go +wrong with picking Solitus as your breed. All of your core abilities will cost +the same to raise, and most of your abilities will cap at 480 (with the notable +exception of Strength at 472). + +Many folks pick Solitus for cosmetic reasons, as it is the only breed that has +the same skin tone and body build as a "normal" human. A handful of Solitus +breed-locked items exist, as well, and they tend to be well-rounded. + + + ::: Solitus Breed Caps ::: + +* Strength 472/772 +* Agility 480/780 +* Stamina 480/780 +* Intelligence 480/780 +* Sense 480/780 +* Psychic 480/780 + +Solitus HP/NP ratio, -Nanocost cap % + +Max % Add Nano Cost -50% + +3 max health per 1 point of bodydev +3 max nano per 1 point of nanopool + + + ::: Solitus Shadowbreeds List ::: + +Solitus (Clan) Shadowbreeds + +1: Vivid +Casts: Path of Light + +On Self: +Heals 5k health +Boosts Perception by 300 +Gives a 100 Damage Shield +Breaks roots + +2: Bright +Casts: Tunnel of Light + +On Self: +Heals 10k health +Gives a 150 Damage Shield + +AOE: +Boosts perception by 400 +Breaks roots and Snares + +3: Scintillant +Casts: The Choice + +AoE: +Heals 15k Health +Boosts perception by 1k +Gives a 200 Damage Shield +Breaks Roots, Snares and Calms + +Solitus (Omni) Shadowbreeds + +1: Murky +Casts: Path of Darkness + +On Self: +Boosts Perception by 400 +Boosts Concealment by 400 + +AoE: +Casts a DoT (500, 5 hits, 3 sec delay) +Debuffs Run Speed by 1.8k + +2: Dark +Casts: Road to Darkness + +On Self: +Boosts Concealment by 700 +Raises your Critical Chance by 7 + +AoE: +Casts a DoT (1k, 8 hits, 3 sec delay) +Roots your opponents + +3: Black +Casts: The Choice + +Friendly AoE: +Boosts your Run Speed by 500 +Boosts your Concealment by 1k +Raises your Critical Chance by 10 + +Hostile AoE: +Casts a DoT (1k, 10 hits, 3 sec delay) +Roots your opponents + +Solitus (Neutral) Shadowbreeds + +1: Vague +Casts: Path of Darkness + +On Self: +Boosts Perception by 400 +Boosts Concealment by 400 + +AoE: +Casts a DoT (500, 5 hits, 3 sec delay) +Debuffs Run Speed by 1.8k + +2: Indeterminated +Casts: Path of Light + +On Self: +Heals 5k health +Boosts Perception by 300 +Gives a 100 Damage Shield +Breaks roots + +3: Ambigous +Casts :Road to Darkness + +On Self: +Boosts Concealment by 700 +Raises your Critical Chance by 7 + +AoE: +Casts a DoT (1k, 8 hits, 3 sec delay) +Roots your opponents + + + ::: Solitus Alien Invasion Perks ::: + +Solitus Alpha Genome + +1. Requirements: + +Level from 15 +Breed = Solitus + +Modifies: + +Strength = +1 +Stamina = +1 +Agility = +1 + +2. Requirements: + +Level from 15 +Breed = Solitus +Must have perk = Solitus Alpha Genome 1 + +Modifies: + +Strength = +2 +Stamina = +2 +Agility = +2 + +3. Requirements: + +Level from 35 +Breed = Solitus +Must have perk = Solitus Alpha Genome 2 + +Modifies: + +Strength = +2 +Stamina = +2 +Agility = +2 + +Enables Special: Tacky Hack + +The effect of this special is a root resist buff. This one will provide 90% protection against most known roots. + +Duration = 15 Seconds +Recharge = 1 Minute, 45 Seconds + +http://aoitems.com/item/253030 + +4. Requirements: + +Level from 55 +Breed = Solitus +Must have perk = Solitus Alpha Genome 3 + +Modifies: + +Strength = +2 +Stamina = +2 +Agility = +2 + +5. Requirements: + +Level from 55 +Breed = Solitus +Must have perk = Solitus Alpha Genome 4 + +Modifies: + +Strength = +2 +Stamina = +2 +Agility = +2 + +6. Requirements: + +Level from 55 +Breed = Solitus +Must have perk = Solitus Alpha Genome 5 + +Modifies: + +Strength = +3 +Stamina = +3 +Agility = +3 + +7. Requirements: + +Level from 115 +Breed = Solitus +Must have perk = Solitus Alpha Genome 6 + +Modifies: + +Strength = +3 +Stamina = +3 +Agility = +3 + +8. Requirements: + +Level from 115 +Breed = Solitus +Must have perk = Solitus Alpha Genome 7 + +Modifies: + +Strength = +4 +Stamina = +4 +Agility = +4 + +9. Requirements: + +Level from 202 +Breed = Solitus +Must have perk = Solitus Alpha Genome 8 + +Modifies: + +Strength = +5 +Stamina = +5 +Agility = +5 + +10. Requirements: + +Level from 207 +Breed = Solitus +Must have perk = Solitus Alpha Genome 9 + +Modifies: + +Strength = +10 +Stamina = +10 +Agility = +10 + +Enables Special: Sphere + +The effect of this special is a team buff that will increase the teams offense and defense. In addition is will give the team a small critical chance bonus. + +Duration = 25 Seconds +Recharge = 1 Minute, 40 Seconds + +http//aoitems.com/item/253033/ + +Solitus Beta Genome + +1. Requirements: + +Level from 15 +Breed = Solitus + +Modifies: + +Intelligence = +1 +Sense = +1 +Psychic = +1 + +2. Requirements: + +Level from 15 +Breed = Solitus +Must have perk = Solitus Beta Genome 1 + +Modifies: + +Intelligence = +2 +Sense = +2 +Psychic = +2 + +3. Requirements: + +Level from 35 +Breed = Solitus +Must have perk = Solitus Beta Genome 2 + +Modifies: + +Intelligence = +2 +Sense = +2 +Psychic = +2 + +Enables Special: Feel + +The effect of this special will do a minor direct damage to the target. This perk special will grow more efficient upon training more perks in this line. + +Duration = N/A +Recharge = 1 Minute, 45 Seconds + +http://aoitems.com/item/253045 + +4. Requirements: + +Level from 55 +Breed = Solitus +Must have perk = Solitus Beta Genome 3 + +Modifies: + +Intelligence = +2 +Sense = +2 +Psychic = +2 + +5. Requirements: + +Level from 55 +Breed = Solitus +Must have perk = Solitus Beta Genome 4 + +Modifies: + +Intelligence = +2 +Sense = +2 +Psychic = +2 + +6. Requirements: + +Level from 55 +Breed = Solitus +Must have perk = Solitus Beta Genome 5 + +Modifies: + +Intelligence = +3 +Sense = +3 +Psychic = +3 + +7. Requirements: + +Level from 115 +Breed = Solitus +Must have perk = Solitus Beta Genome 6 + +Modifies: + +Intelligence = +3 +Sense = +3 +Psychic = +3 + +8. Requirements: + +Level from 115 +Breed = Solitus +Must have perk = Solitus Beta Genome 7 + +Modifies: + +Intelligence = +4 +Sense = +4 +Psychic = +4 + +9. Requirements: + +Level from 202 +Breed = Solitus +Must have perk = Solitus Beta Genome 8 + +Modifies: + +Intelligence = +5 +Sense = +5 +Psychic = +5 + +10. Requirements: + +Level from 207 +Breed = Solitus +Must have perk = Solitus Beta Genome 9 + +Modifies: + +Intelligence = +10 +Sense = +10 +Psychic = +10 + +Enables Effect: Survival + +The effect of this special is a team heal over time. + +Duration = 30 Seconds +Recharge = 2 Minutes + +http://aoitems.com/item/253048 + +By Curlycat (RK2), Mdkdoc420 (RK2) +original version at http://aocrimson.darkbb.com/t126-comprehensive-breeds-guide-very-detailed diff --git a/modules/standard/info/info/spamfilter.txt b/modules/standard/info/info/spamfilter.txt new file mode 100644 index 0000000..9bb7c14 --- /dev/null +++ b/modules/standard/info/info/spamfilter.txt @@ -0,0 +1,30 @@ +
:::::: How to use the Chatfilter for Creditspammer :::::
+ +First we add specific letters to the filter for Egpal: + +/filter add [eE][- _.]*[gG][- _.]*[pP][- _.]*[aA][- _.]*[lL] +Singleclick to add + +Then we add MMOOK creditspammer to filter: + +/filter add [Mm][Mm][Oo][Oo][Kk] +Singleclick to add + +Now we enable the filter: + +/filter enable +Singleclick to enable + +To see if the filter is correct and look at the entries: + +/filter list +Singleclick to list + + +Now u can block all the annoying cred spammers, be aware that all are talking about "Egpal" or "MMOOK" will get blocked too! +Same goes for this guide in all channels because it contain the filtered words. (but not for a seperate private window with the bot) + + +Source: AO forum and AOU + +by longsdale diff --git a/modules/standard/info/info/stats.txt b/modules/standard/info/info/stats.txt new file mode 100644 index 0000000..2910c6f --- /dev/null +++ b/modules/standard/info/info/stats.txt @@ -0,0 +1,95 @@ +
:::::: Stats ::::::
+ +::: Offense / Defense ::: +Offense (Addall-Off) +Defense (Addall-Def) +Aggdef-Slider +Attack Speed + +::: Critical Strike ::: +Crit increase +Crit decrease + +::: Heal ::: +Heal delta (interval) (tick in secs) +Heal delta (amount) +Heal modifier +Heal reactivity + +::: Nano ::: +Nano delta (interval) (tick in secs) +Nano delta (amount) +Nano execution cost +Nano modifier +Interrupt modifier +Range Increase Nanoformula + +::: Add Damage (Amount) ::: ++Damage - Melee ++Damage - Energy ++Damage - Chemical ++Damage - Radiation ++Damage - Projectile ++Damage - Cold ++Damage - Nano ++Damage - Fire ++Damage - Poison + +::: Reflect Shield (Percentage) ::: +ReflectProjectileAC +ReflectMeleeAC +ReflectEnergyAC +ReflectChemicalAC +ReflectRadiationAC +ReflectColdAC +ReflectNanoAC +ReflectFireAC +ReflectPoisonAC + +::: Reflect Shield (Amount) ::: +MaxReflectedProjectileDmg +MaxReflectedMeleeDmg +MaxReflectedEnergyDmg +MaxReflectedChemicalDmg +MaxReflectedRadiationDmg +MaxReflectedColdDmg +MaxReflectedNanoDmg +MaxReflectedFireDmg +MaxReflectedPoisonDmg + +::: Damage Shield (Amount) ::: +ShieldProjectileAC +ShieldMeleeAC +ShieldEnergyAC +ShieldChemicalAC +ShieldRadiationAC +ShieldColdAC +ShieldNanoAC +ShieldFireAC +ShieldPoisonAC + +::: Damage Absorb (Amount) ::: +AbsorbProjectileAC +AbsorbMeleeAC +AbsorbEnergyAC +AbsorbChemicalAC +AbsorbRadiationAC +AbsorbColdAC +AbsorbFireAC +AbsorbPoisonAC +AbsorbNanoAC + +::: Misc ::: +XP Bonus +SkillLockModifier +Weapon Range Increase +Special Attack Blockers +Reset Points +Scale +Profession Duel Kills +Profession Duel Deaths +Solo Deaths +Team Deaths +Number of fighting opponents + +Compiled by Tyrence (RK2) diff --git a/modules/standard/info/info/wrangle.txt b/modules/standard/info/info/wrangle.txt new file mode 100644 index 0000000..4724bf5 --- /dev/null +++ b/modules/standard/info/info/wrangle.txt @@ -0,0 +1,88 @@ +
:::::: Guide to Wrangles ::::::
+ +Regular wrangles are in YELLOW +Team wrangles are in WHITE (requires teaming with Trader to have it cast) + +132 Bonus 58 NCU - Team Skill Wrangler (Premium) +131 Bonus 58 NCU - Skill Wrangler (Premium) +121 Bonus 54 NCU - Skill Wrangler (Exceptional) +118 Bonus 52 NCU - Team Skill Wrangler (Exceptional) +112 Bonus 50 NCU - Skill Wrangler (Superb) +109 Bonus 49 NCU - Team Skill Wrangler (Sophisticated) +106 Bonus 48 NCU - Skill Wrangler (Sophisticated) +102 Bonus 47 NCU - Team Skill Wrangler (Greater) + 99 Bonus 46 NCU - Skill Wrangler (Greater) + 93 Bonus 43 NCU - Team Skill Wrangler (Superior) + 85 Bonus 39 NCU - Skill Wrangler (Superior) + 82 Bonus 38 NCU - Team Skill Wrangler (Advanced) + 74 Bonus 35 NCU - Skill Wrangler (Advanced) + 71 Bonus 33 NCU - Team Skill Wrangler (Major) + 65 Bonus 30 NCU - Skill Wrangler (Major) + 62 Bonus 29 NCU - Team Skill Wrangler + 56 Bonus 26 NCU - Skill Wrangler + 50 Bonus 24 NCU - Team Skill Wrangler (Lesser) + 46 Bonus 22 NCU - Skill Wrangler (Inferior) + 40 Bonus 19 NCU - Team Skill Wrangler (Lossy) + 37 Bonus 17 NCU - Skill Wrangler (Lesser) + 32 Bonus 15 NCU - Team Skill Wrangler (Commonplace) + 27 Bonus 13 NCU - Skill Wrangler (Lossy) + 24 Bonus 12 NCU - Team Skill Wrangler (Minor) + 22 Bonus 11 NCU - Skill Wrangler (Commonplace) + 18 Bonus 9 NCU - Team Skill Wrangler (Patchy) + 13 Bonus 7 NCU - Skill Wrangler (Minor) + 10 Bonus 6 NCU - Team Skill Wrangler (Weak) + 9 Bonus 5 NCU - Skill Wrangler (Patchy) + 3 Bonus 3 NCU - Skill Wrangler (Weak) + +Dedicated to Ferrell and all other Traders, whose patience is extraordinary, if not legendary. + +Ok, you've heard about it, listen to others ask for it, but what IS it exactly? + +A wrangle is a nanoprogram buff that traders can cast. They can boost your skills by a certain amount of points for 3 minutes, making it ideal for 'twinking' new weapons that have requirements far above your skill, or casting robot shells/grid armor above your current nanoskill ability. + +The normal Skill Wrangler nanos only affect a single target and lower the abilities of the trader while raising the abilities of the target. There are also Team Skill Wrangler nanos, which boost the abilities of everyone teamed with the trader, while draining some of the Trader's abilities. Umbral Wranglers, available only to those who possess expansions, are special level-locked Team Wranglers that do not reduce the trader's skills, and act as a long-lasting aura. + +Sometimes, a trader needs to 'drain' before casting the wrangle. Drains are a nanoprogram that traders can use to temporarily raise their abilities, allowing them to cast higher wrangles (or other nanoprograms). Often, this means that the trader will need to be in a place where there are monsters wandering about. Popular places include the lawn outside the Subway in Rome Stretch and the Holoworld in the Backyards. + +When asking for a wrangle, be sure to note exactly how many points that you need and be sure to check if you have enough NCU for the wrangle that you want. And please, always tip a trader. + +Wrangles boost the following skills: + +Martial arts +1h Blunt +1h Edged +2h Edged +2h Blunt +Melee energy +Ranged energy +Piercing +Sharp objects +Grenade +Heavy weapons +Bow +Pistol +Rifle +Smg +Shotgun +Assault rifle +Sensory improvement +Matter metamorphosis +Biological metamorphosis +Psychological modifications +Matter creation +Time and space + +Wrangles DO NOT boost the following skills: + +All Abilities (Strength, Agility, etc.) +Aimed Shot +Burst +Fast Attack +First Aid +Fling Shot +Full Auto +Multi-ranged +Multi-melee +Treatment +Sneak Attack + diff --git a/modules/standard/info/info_controller.py b/modules/standard/info/info_controller.py new file mode 100644 index 0000000..a876a06 --- /dev/null +++ b/modules/standard/info/info_controller.py @@ -0,0 +1,75 @@ +import os +import pathlib + +from core.chat_blob import ChatBlob +from core.command_param_types import Any +from core.decorators import instance, command + + +@instance() +class InfoController: + FILE_EXT = ".txt" + CUSTOM_DATA_DIRECTORY = "./data/info" + + def __init__(self): + self.paths = [] + self.paths.append(os.path.dirname(os.path.realpath(__file__)) + os.sep + "info") + self.paths.append(self.CUSTOM_DATA_DIRECTORY) + + def inject(self, registry): + self.text = registry.get_instance("text") + self.command_alias_service = registry.get_instance("command_alias_service") + + def start(self): + self.command_alias_service.add_alias("guides", "info") + self.command_alias_service.add_alias("breed", "info breed") + self.command_alias_service.add_alias("healdelta", "info healdelta") + self.command_alias_service.add_alias("nanodelta", "info nanodelta") + self.command_alias_service.add_alias("lag", "info lag") + self.command_alias_service.add_alias("stats", "info stats") + self.command_alias_service.add_alias("light", "info light") + self.command_alias_service.add_alias("doja", "info doja") + + pathlib.Path(self.CUSTOM_DATA_DIRECTORY).mkdir(parents=True, exist_ok=True) + + @command(command="info", params=[], access_level="member", + description="Show the list of info topics") + def info_list_cmd(self, _): + topics = self.get_all_topics() + + blob = "" + for topic in topics: + blob += self.text.make_tellcmd(topic, "info " + topic) + "\n" + + return ChatBlob("Info Topics (%d)" % len(topics), blob) + + @command(command="info", params=[Any("topic")], access_level="member", + description="Show the info topic details") + def info_show_cmd(self, _, topic_name): + topic = self.get_topic_info(topic_name) + + if topic: + return ChatBlob(topic_name.capitalize(), topic) + else: + return "Could not find info topic %s." % topic_name + + def register_path(self, path): + self.paths.append(path) + + def get_topic_info(self, name): + name = name.lower() + for base in reversed(self.paths): + file_path = base + os.sep + name + self.FILE_EXT + try: + with open(file_path, mode="r", encoding="UTF-8") as f: + return f.read() + except FileNotFoundError: + pass + + return None + + def get_all_topics(self): + topics = [] + for base in reversed(self.paths): + topics += [f[:-len(self.FILE_EXT)] for f in os.listdir(base) if f.endswith(self.FILE_EXT)] + return sorted(set(topics)) diff --git a/modules/standard/items/aodb.sql b/modules/standard/items/aodb.sql new file mode 100644 index 0000000..393a90f --- /dev/null +++ b/modules/standard/items/aodb.sql @@ -0,0 +1,3 @@ +DROP TABLE IF EXISTS aodb; +CREATE TABLE IF NOT EXISTS aodb (lowid INT, highid INT, lowql INT, highql INT, name VARCHAR(150), icon INT, INDEX `ID` (`highid`, `lowid`) USING BTREE, INDEX `ql` (`lowql`, `highql`) USING BTREE, INDEX `name` (`name`) USING BTREE); +INSERT INTO aodb VALUES (275403, 275403, 1, 1, '"A History of Rubi-Ka" by Prof. Arthur B. Diggins', 136331), (294853, 294853, 1, 1, '"Chocolate Exultation" Gift Box', 295054), (119592, 119592, 1, 1, '"Green Lava" Floor Lamp', 119170), (119585, 119585, 1, 1, '"Green Lava" Table-Lamp', 119165), (119590, 119590, 1, 1, '"Notum" Floor Lamp', 119168), (119583, 119583, 1, 1, '"Notum" Table-Lamp', 119163), (275402, 275402, 1, 1, '"The Monster In The Sea" by D. Saved', 37961), (119591, 119591, 1, 1, '"Volcano" Floor Lamp', 119169), (119584, 119584, 1, 1, '"Volcano" Table-Lamp', 119164), (166121, 166122, 1, 200, '% Add All Def. Jobe Cluster - Bright (Right-Arm)', 36011), (166117, 166118, 1, 200, '% Add All Def. Jobe Cluster - Faded (Feet)', 36009), (166125, 166126, 1, 200, '% Add All Def. Jobe Cluster - Shiny (Left-Arm)', 36012), (166123, 166124, 201, 300, '% Add All Def. Refined Jobe Cluster - Bright (Right-Arm)', 36011), (166119, 166120, 201, 300, '% Add All Def. Refined Jobe Cluster - Faded (Feet)', 36009), (166127, 166128, 201, 300, '% Add All Def. Refined Jobe Cluster - Shiny (Left-Arm)', 36012), (166109, 166110, 1, 200, '% Add All Off Jobe Cluster - Bright (Right-Arm)', 36011), (166105, 166106, 1, 200, '% Add All Off Jobe Cluster - Faded (Feet)', 36009), (166113, 166114, 1, 200, '% Add All Off Jobe Cluster - Shiny (Left-Arm)', 36012), (166111, 166112, 201, 300, '% Add All Off Refined Jobe Cluster - Bright (Right-Arm)', 36011), (166107, 166108, 201, 300, '% Add All Off Refined Jobe Cluster - Faded (Feet)', 36009), (166115, 166116, 201, 300, '% Add All Off Refined Jobe Cluster - Shiny (Left-Arm)', 36012), (166169, 166170, 1, 200, '% Add. Chem. Dam. Jobe Cluster - Bright (Left-Wrist)', 36017), (166165, 166166, 1, 200, '% Add. Chem. Dam. Jobe Cluster - Faded (Right-Wrist)', 36016), (166173, 166174, 1, 200, '% Add. Chem. Dam. Jobe Cluster - Shiny (Right-Hand)', 36018), (166171, 166172, 201, 300, '% Add. Chem. Dam. Refined Jobe Cluster - Bright (Left-Wrist)', 36017), (166167, 166168, 201, 300, '% Add. Chem. Dam. Refined Jobe Cluster - Faded (Right-Wrist)', 36016), (166175, 166176, 201, 300, '% Add. Chem. Dam. Refined Jobe Cluster - Shiny (Right-Hand)', 36018), (166157, 166158, 1, 200, '% Add. Energy Dam. Jobe Cluster - Bright (Left-Wrist)', 36017), (166153, 166154, 1, 200, '% Add. Energy Dam. Jobe Cluster - Faded (Right-Wrist)', 36016), (166161, 166162, 1, 200, '% Add. Energy Dam. Jobe Cluster - Shiny (Right-Hand)', 36018), (166159, 166160, 201, 300, '% Add. Energy Dam. Refined Jobe Cluster - Bright (Left-Wrist)', 36017), (166155, 166156, 201, 300, '% Add. Energy Dam. Refined Jobe Cluster - Faded (Right-Wrist)', 36016), (166163, 166164, 201, 300, '% Add. Energy Dam. Refined Jobe Cluster - Shiny (Right-Hand)', 36018), (166193, 166194, 1, 200, '% Add. Fire Dam. Jobe Cluster - Bright (Left-Wrist)', 36017), (166189, 166190, 1, 200, '% Add. Fire Dam. Jobe Cluster - Faded (Right-Wrist)', 36016), (166197, 166198, 1, 200, '% Add. Fire Dam. Jobe Cluster - Shiny (Right-Hand)', 36018), (166195, 166196, 201, 300, '% Add. Fire Dam. Refined Jobe Cluster - Bright (Left-Wrist)', 36017), (166191, 166192, 201, 300, '% Add. Fire Dam. Refined Jobe Cluster - Faded (Right-Wrist)', 36016), (166199, 166200, 201, 300, '% Add. Fire Dam. Refined Jobe Cluster - Shiny (Right-Hand)', 36018), (166145, 166146, 1, 200, '% Add. Melee Dam. Jobe Cluster - Bright (Left-Wrist)', 36017), (166141, 166142, 1, 200, '% Add. Melee Dam. Jobe Cluster - Faded (Right-Wrist)', 36016), (166149, 166150, 1, 200, '% Add. Melee Dam. Jobe Cluster - Shiny (Right-Hand)', 36018), (166147, 166148, 201, 300, '% Add. Melee Dam. Refined Jobe Cluster - Bright (Left-Wrist)', 36017), (166143, 166144, 201, 300, '% Add. Melee Dam. Refined Jobe Cluster - Faded (Right-Wrist)', 36016), (166151, 166152, 201, 300, '% Add. Melee Dam. Refined Jobe Cluster - Shiny (Right-Hand)', 36018), (166205, 166206, 1, 200, '% Add. Poison Dam. Jobe Cluster - Bright (Left-Wrist)', 36017), (166201, 166202, 1, 200, '% Add. Poison Dam. Jobe Cluster - Faded (Right-Wrist)', 36016), (166209, 166210, 1, 200, '% Add. Poison Dam. Jobe Cluster - Shiny (Right-Hand)', 36018), (166207, 166208, 201, 300, '% Add. Poison Dam. Refined Jobe Cluster - Bright (Left-Wrist)', 36017), (166203, 166204, 201, 300, '% Add. Poison Dam. Refined Jobe Cluster - Faded (Right-Wrist)', 36016), (166211, 166212, 201, 300, '% Add. Poison Dam. Refined Jobe Cluster - Shiny (Right-Hand)', 36018), (166133, 166134, 1, 200, '% Add. Proj. Dam. Jobe Cluster - Bright (Left-Wrist)', 36017), (166129, 166130, 1, 200, '% Add. Proj. Dam. Jobe Cluster - Faded (Right-Wrist)', 36016), (166137, 166138, 1, 200, '% Add. Proj. Dam. Jobe Cluster - Shiny (Right-Hand)', 36018), (166135, 166136, 201, 300, '% Add. Proj. Dam. Refined Jobe Cluster - Bright (Left-Wrist)', 36017), (166131, 166132, 201, 300, '% Add. Proj. Dam. Refined Jobe Cluster - Faded (Right-Wrist)', 36016), (166139, 166140, 201, 300, '% Add. Proj. Dam. Refined Jobe Cluster - Shiny (Right-Hand)', 36018), (166229, 166230, 1, 200, '% Add. Xp Jobe Cluster - Bright (Feet)', 36011), (166225, 166226, 1, 200, '% Add. Xp Jobe Cluster - Faded (Leg)', 36009), (166233, 166234, 1, 200, '% Add. Xp Jobe Cluster - Shiny (Ear)', 36012), (166231, 166232, 201, 300, '% Add. Xp Refined Jobe Cluster - Bright (Feet)', 36011), (166227, 166228, 201, 300, '% Add. Xp Refined Jobe Cluster - Faded (Leg)', 36009), (166235, 166236, 201, 300, '% Add. Xp Refined Jobe Cluster - Shiny (Ear)', 36012), (166181, 166182, 1, 200, '% Add.Rad. Dam. Jobe Cluster - Bright (Left-Wrist)', 36017), (166177, 166178, 1, 200, '% Add.Rad. Dam. Jobe Cluster - Faded (Right-Wrist)', 36016), (166185, 166186, 1, 200, '% Add.Rad. Dam. Jobe Cluster - Shiny (Right-Hand)', 36018), (166183, 166184, 201, 300, '% Add.Rad. Dam. Refined Jobe Cluster - Bright (Left-Wrist)', 36017), (166179, 166180, 201, 300, '% Add.Rad. Dam. Refined Jobe Cluster - Faded (Right-Wrist)', 36016), (166187, 166188, 201, 300, '% Add.Rad. Dam. Refined Jobe Cluster - Shiny (Right-Hand)', 36018), (275254, 275254, 1, 1, '''Age of Colin'' Hologame', 275253), (277903, 277904, 1, 300, '1-Hand Blunt Memory Cell', 276922), (278310, 278311, 1, 199, '1-Hand Blunt Skill NCU (1/6)', 276930), (278312, 278313, 200, 299, '1-Hand Blunt Skill NCU (1/6)', 276930), (278314, 278314, 300, 300, '1-Hand Blunt Skill NCU (1/6)', 276930), (278315, 278316, 1, 199, '1-Hand Blunt Skill NCU (2/6)', 276931), (278317, 278318, 200, 299, '1-Hand Blunt Skill NCU (2/6)', 276931), (278319, 278319, 300, 300, '1-Hand Blunt Skill NCU (2/6)', 276931), (278320, 278321, 1, 199, '1-Hand Blunt Skill NCU (3/6)', 276932), (278322, 278323, 200, 299, '1-Hand Blunt Skill NCU (3/6)', 276932), (278324, 278324, 300, 300, '1-Hand Blunt Skill NCU (3/6)', 276932), (278325, 278326, 1, 199, '1-Hand Blunt Skill NCU (4/6)', 276933), (278327, 278328, 200, 299, '1-Hand Blunt Skill NCU (4/6)', 276933), (278329, 278329, 300, 300, '1-Hand Blunt Skill NCU (4/6)', 276933), (278330, 278331, 1, 199, '1-Hand Blunt Skill NCU (5/6)', 276934), (278332, 278333, 200, 299, '1-Hand Blunt Skill NCU (5/6)', 276934), (278334, 278334, 300, 300, '1-Hand Blunt Skill NCU (5/6)', 276934), (278335, 278336, 1, 199, '1-Hand Blunt Skill NCU (6/6)', 276935), (278337, 278338, 200, 299, '1-Hand Blunt Skill NCU (6/6)', 276935), (278339, 278339, 300, 300, '1-Hand Blunt Skill NCU (6/6)', 276935), (278340, 278341, 1, 199, '1-Hand Edge Skill NCU (1/6)', 276930), (278342, 278343, 200, 299, '1-Hand Edge Skill NCU (1/6)', 276930), (278344, 278344, 300, 300, '1-Hand Edge Skill NCU (1/6)', 276930), (278345, 278346, 1, 199, '1-Hand Edge Skill NCU (2/6)', 276931), (278347, 278348, 200, 299, '1-Hand Edge Skill NCU (2/6)', 276931), (278349, 278349, 300, 300, '1-Hand Edge Skill NCU (2/6)', 276931), (278350, 278351, 1, 199, '1-Hand Edge Skill NCU (3/6)', 276932), (278352, 278353, 200, 299, '1-Hand Edge Skill NCU (3/6)', 276932), (278354, 278354, 300, 300, '1-Hand Edge Skill NCU (3/6)', 276932), (278355, 278356, 1, 199, '1-Hand Edge Skill NCU (4/6)', 276933), (278357, 278358, 200, 299, '1-Hand Edge Skill NCU (4/6)', 276933), (278359, 278359, 300, 300, '1-Hand Edge Skill NCU (4/6)', 276933), (278360, 278361, 1, 199, '1-Hand Edge Skill NCU (5/6)', 276934), (278362, 278363, 200, 299, '1-Hand Edge Skill NCU (5/6)', 276934), (278364, 278364, 300, 300, '1-Hand Edge Skill NCU (5/6)', 276934), (278365, 278366, 1, 199, '1-Hand Edge Skill NCU (6/6)', 276935), (278367, 278368, 200, 299, '1-Hand Edge Skill NCU (6/6)', 276935), (278369, 278369, 300, 300, '1-Hand Edge Skill NCU (6/6)', 276935), (277907, 277908, 1, 300, '1-Hand Edged Memory Cell', 276922), (303990, 303990, 215, 215, '100 NCU Memory', 269989), (129045, 129046, 1, 20, '10th level Ninja Katana', 113999), (152068, 152069, 41, 60, '1244 Co - Mathis Multi-Energy Rifle', 13314), (153410, 153410, 1, 1, '1244 Co - Mathis Multi-Energy Rifle Construction Manual', 37932), (152076, 152077, 121, 140, '1244 Co - Senior Mathis Multi-Energy Rifle', 13314), (153476, 153476, 1, 1, '1244 Co - Senior Mathis Multi-Energy Rifle Construction Manual', 136332), (36780, 36781, 50, 119, '16 - 31 NCU Memory', 13370), (101335, 101336, 1, 200, '1h Blunt Cluster - Bright (Right-Wrist)', 35999), (101406, 101334, 1, 200, '1h Blunt Cluster - Faded (Right-Hand)', 35998), (101337, 101338, 1, 200, '1h Blunt Cluster - Shiny (Right-Arm)', 36000), (165549, 165550, 201, 300, '1h Blunt Refined Cluster - Bright (Right-Wrist)', 35999), (165547, 165548, 201, 300, '1h Blunt Refined Cluster - Faded (Right-Hand)', 35998), (165551, 165552, 201, 300, '1h Blunt Refined Cluster - Shiny (Right-Arm)', 36000), (142892, 142893, 1, 200, '1h Blunt Weapon Base', 130862), (101341, 101342, 1, 200, '1h Edged Weapon Cluster - Bright (Right-Wrist)', 35981), (101339, 101340, 1, 200, '1h Edged Weapon Cluster - Faded (Right-Hand)', 35980), (101343, 101344, 1, 200, '1h Edged Weapon Cluster - Shiny (Right-Arm)', 35982), (165555, 165556, 201, 300, '1h Edged Weapon Refined Cluster - Bright (Right-Wrist)', 35981), (165553, 165554, 201, 300, '1h Edged Weapon Refined Cluster - Faded (Right-Hand)', 35980), (165557, 165558, 201, 300, '1h Edged Weapon Refined Cluster - Shiny (Right-Arm)', 35982), (199804, 199805, 225, 230, '1st Improvement Omni-Internops Armor Boots', 13270), (199825, 199826, 225, 230, '1st Improvement Omni-Internops Armor Gloves', 13283), (199846, 199847, 225, 230, '1st Improvement Omni-Internops Armor Helmet', 10840), (199867, 199868, 225, 230, '1st Improvement Omni-Internops Armor Pants', 13300), (199888, 199889, 225, 230, '1st Improvement Omni-Internops Armor Sleeves', 13232), (199909, 199910, 225, 230, '1st Improvement Omni-Internops Body Armor', 13253), (199930, 199931, 225, 230, '1st Improvement Omni-Internops Elite Armor Boots', 21866), (199951, 199952, 225, 230, '1st Improvement Omni-Internops Elite Armor Gloves', 21872), (199972, 199973, 225, 230, '1st Improvement Omni-Internops Elite Armor Helmet', 22269), (199993, 199994, 225, 230, '1st Improvement Omni-Internops Elite Armor Pants', 21879), (200014, 200015, 225, 230, '1st Improvement Omni-Internops Elite Armor Sleeves', 21850), (200035, 200036, 225, 230, '1st Improvement Omni-Internops Elite Body Armor', 19816), (162012, 162013, 230, 239, '1st Rate Bau Cyber Armor Helmet', 31738), (162013, 162014, 240, 250, '1st Rate Bau Cyber Armor Helmet', 31738), (128734, 128735, 1, 55, '1st edition Pistola Di Macchina Mini Automatico 2', 21148), (247228, 247229, 1, 55, '1st edition Pistola Di Macchina Mini Automatico 2', 21148), (129063, 129063, 200, 200, '1st level Ninja Katana', 113999), (129068, 129068, 200, 200, '1st level Ninja Tanto', 113986), (125467, 125467, 200, 200, '1st level Ninja Wakisashi', 113984), (36779, 36778, 1, 19, '2 - 3 NCU Memory', 119135), (277905, 277906, 1, 300, '2-Hand Blunt Memory Cell', 276922), (278400, 278401, 1, 199, '2-Hand Blunt Skill NCU (1/6)', 276930), (278402, 278403, 200, 299, '2-Hand Blunt Skill NCU (1/6)', 276930), (278404, 278404, 300, 300, '2-Hand Blunt Skill NCU (1/6)', 276930), (278405, 278406, 1, 199, '2-Hand Blunt Skill NCU (2/6)', 276931), (278407, 278408, 200, 299, '2-Hand Blunt Skill NCU (2/6)', 276931), (278409, 278409, 300, 300, '2-Hand Blunt Skill NCU (2/6)', 276931), (278410, 278411, 1, 199, '2-Hand Blunt Skill NCU (3/6)', 276932), (278412, 278413, 200, 299, '2-Hand Blunt Skill NCU (3/6)', 276932), (278414, 278414, 300, 300, '2-Hand Blunt Skill NCU (3/6)', 276932), (278415, 278416, 1, 199, '2-Hand Blunt Skill NCU (4/6)', 276933), (278417, 278418, 200, 299, '2-Hand Blunt Skill NCU (4/6)', 276933), (278419, 278419, 300, 300, '2-Hand Blunt Skill NCU (4/6)', 276933), (278420, 278421, 1, 199, '2-Hand Blunt Skill NCU (5/6)', 276934), (278422, 278423, 200, 299, '2-Hand Blunt Skill NCU (5/6)', 276934), (278424, 278424, 300, 300, '2-Hand Blunt Skill NCU (5/6)', 276934), (278425, 278426, 1, 199, '2-Hand Blunt Skill NCU (6/6)', 276935), (278427, 278428, 200, 299, '2-Hand Blunt Skill NCU (6/6)', 276935), (278429, 278429, 300, 300, '2-Hand Blunt Skill NCU (6/6)', 276935), (278430, 278431, 1, 199, '2-Hand Edge Skill NCU (1/6)', 276930), (278432, 278433, 200, 299, '2-Hand Edge Skill NCU (1/6)', 276930), (278434, 278434, 300, 300, '2-Hand Edge Skill NCU (1/6)', 276930), (278435, 278436, 1, 199, '2-Hand Edge Skill NCU (2/6)', 276931), (278437, 278438, 200, 299, '2-Hand Edge Skill NCU (2/6)', 276931), (278439, 278439, 300, 300, '2-Hand Edge Skill NCU (2/6)', 276931), (278440, 278441, 1, 199, '2-Hand Edge Skill NCU (3/6)', 276932), (278442, 278443, 200, 299, '2-Hand Edge Skill NCU (3/6)', 276932), (278444, 278444, 300, 300, '2-Hand Edge Skill NCU (3/6)', 276932), (278445, 278446, 1, 199, '2-Hand Edge Skill NCU (4/6)', 276933), (278447, 278448, 200, 299, '2-Hand Edge Skill NCU (4/6)', 276933), (278449, 278449, 300, 300, '2-Hand Edge Skill NCU (4/6)', 276933), (278450, 278451, 1, 199, '2-Hand Edge Skill NCU (5/6)', 276934), (278452, 278453, 200, 299, '2-Hand Edge Skill NCU (5/6)', 276934), (278454, 278454, 300, 300, '2-Hand Edge Skill NCU (5/6)', 276934), (278455, 278456, 1, 199, '2-Hand Edge Skill NCU (6/6)', 276935), (278457, 278458, 200, 299, '2-Hand Edge Skill NCU (6/6)', 276935), (278459, 278459, 300, 300, '2-Hand Edge Skill NCU (6/6)', 276935), (277909, 277910, 1, 300, '2-Hand Edged Memory Cell', 276922), (303992, 303987, 60, 99, '25 NCU Memory', 119137), (296571, 296571, 1, 1, '2560-Bit Encryption Compiler', 297389), (289451, 289451, 1, 1, '29485 Glasses', 289449), (142898, 142899, 1, 200, '2H Blunt Weapon Base', 130864), (142900, 142901, 1, 200, '2H Edged Weapon Base', 130870), (101365, 101366, 1, 200, '2h Blunt Cluster - Bright (Left-Arm)', 35999), (101363, 101364, 1, 200, '2h Blunt Cluster - Faded (Chest)', 35998), (101367, 101368, 1, 200, '2h Blunt Cluster - Shiny (Right-Arm)', 36000), (165579, 165580, 201, 300, '2h Blunt Refined Cluster - Bright (Left-Arm)', 35999), (165577, 165578, 201, 300, '2h Blunt Refined Cluster - Faded (Chest)', 35998), (165581, 165582, 201, 300, '2h Blunt Refined Cluster - Shiny (Right-Arm)', 36000), (101353, 101354, 1, 200, '2h Edged Cluster - Bright (Left-Arm)', 35981), (101351, 101352, 1, 200, '2h Edged Cluster - Faded (Waist)', 35980), (101355, 101356, 1, 200, '2h Edged Cluster - Shiny (Right-Arm)', 35982), (165567, 165568, 201, 300, '2h Edged Refined Cluster - Bright (Left-Arm)', 35981), (165565, 165566, 201, 300, '2h Edged Refined Cluster - Faded (Waist)', 35980), (165569, 165570, 201, 300, '2h Edged Refined Cluster - Shiny (Right-Arm)', 35982), (85458, 85459, 1, 250, '2handed Edged Weapons Field Primer', 83463), (128736, 128737, 56, 175, '2nd edition Pistola Di Macchina Mini Automatico 21', 21148), (247230, 247230, 56, 56, '2nd edition Tuned Pistola Di Macchina Mini Automatico 21', 21148), (199806, 199807, 235, 240, '2nd improvement Omni-Internops Armor Boots', 13270), (199827, 199828, 235, 240, '2nd improvement Omni-Internops Armor Gloves', 13283), (199848, 199849, 235, 240, '2nd improvement Omni-Internops Armor Helmet', 10840), (199869, 199870, 235, 240, '2nd improvement Omni-Internops Armor Pants', 13300), (199890, 199891, 235, 240, '2nd improvement Omni-Internops Armor Sleeves', 13232), (199911, 199912, 235, 240, '2nd improvement Omni-Internops Body Armor', 13253), (199932, 199933, 235, 240, '2nd improvement Omni-Internops Elite Armor Boots', 21866), (199953, 199954, 235, 240, '2nd improvement Omni-Internops Elite Armor Gloves', 21872), (199974, 199975, 235, 240, '2nd improvement Omni-Internops Elite Armor Helmet', 22269), (199995, 199996, 235, 240, '2nd improvement Omni-Internops Elite Armor Pants', 21879), (200016, 200017, 235, 240, '2nd improvement Omni-Internops Elite Armor Sleeves', 21850), (200037, 200038, 235, 240, '2nd improvement Omni-Internops Elite Body Armor', 19816), (129061, 129062, 161, 199, '2nd level Ninja Katana', 113999), (129066, 129067, 99, 199, '2nd level Ninja Tanto', 113986), (125465, 125466, 151, 199, '2nd level Ninja Wakisashi', 113984), (142916, 142917, 1, 200, '2x Layer Carbon-Notum Alloy Blade', 130834), (142922, 142923, 1, 200, '2x Layer Carbon-Notum Alloy Rod', 130831), (304504, 303991, 1, 24, '3 NCU Memory', 119135), (36781, 95520, 120, 199, '32 - 63 NCU Memory', 119136), (295600, 295600, 1, 1, '32-V Docker Chassis', 290417), (295601, 295601, 1, 1, '32-V Docker Chassis', 290417), (303987, 303988, 100, 149, '35 NCU Memory', 119136), (199808, 199809, 245, 250, '3rd Improvement Omni-Internops Armor Boots', 13270), (199829, 199830, 245, 250, '3rd Improvement Omni-Internops Armor Gloves', 13283), (199850, 199851, 245, 250, '3rd Improvement Omni-Internops Armor Helmet', 10840), (199871, 199872, 245, 250, '3rd Improvement Omni-Internops Armor Pants', 13300), (199892, 199893, 245, 250, '3rd Improvement Omni-Internops Armor Sleeves', 13232), (199913, 199914, 245, 250, '3rd Improvement Omni-Internops Body Armor', 13253), (199934, 199935, 245, 250, '3rd Improvement Omni-Internops Elite Armor Boots', 21866), (199955, 199956, 245, 250, '3rd Improvement Omni-Internops Elite Armor Gloves', 21872), (199976, 199977, 245, 250, '3rd Improvement Omni-Internops Elite Armor Helmet', 22269), (199997, 199998, 245, 250, '3rd Improvement Omni-Internops Elite Armor Pants', 21879), (200018, 200019, 245, 250, '3rd Improvement Omni-Internops Elite Armor Sleeves', 21850), (200039, 200040, 245, 250, '3rd Improvement Omni-Internops Elite Body Armor', 19816), (128738, 128738, 176, 176, '3rd edition Pistola Di Macchina Mini Automatico 21', 21148), (129059, 129059, 141, 141, '3rd level Ninja Katana', 113999), (129064, 129065, 1, 98, '3rd level Ninja Tanto', 113986), (125463, 125464, 101, 150, '3rd level Ninja Wakisashi', 113984), (36778, 36786, 20, 39, '4 - 7 NCU Memory', 119135), (303988, 303989, 150, 199, '45 NCU Memory', 276919), (199810, 199811, 255, 260, '4th Improvement Omni-Internops Armor Boots', 13270), (199831, 199832, 255, 260, '4th Improvement Omni-Internops Armor Gloves', 13283), (199852, 199853, 255, 260, '4th Improvement Omni-Internops Armor Helmet', 10840), (199873, 199874, 255, 260, '4th Improvement Omni-Internops Armor Pants', 13300), (199894, 199895, 255, 260, '4th Improvement Omni-Internops Armor Sleeves', 13232), (199915, 199916, 255, 260, '4th Improvement Omni-Internops Body Armor', 13253), (199936, 199937, 255, 260, '4th Improvement Omni-Internops Elite Armor Boots', 21866), (199957, 199958, 255, 260, '4th Improvement Omni-Internops Elite Armor Gloves', 21872), (199978, 199979, 255, 260, '4th Improvement Omni-Internops Elite Armor Helmet', 22269), (199999, 200000, 255, 260, '4th Improvement Omni-Internops Elite Armor Pants', 21879), (200020, 200021, 255, 260, '4th Improvement Omni-Internops Elite Armor Sleeves', 21850), (200041, 200042, 255, 260, '4th Improvement Omni-Internops Elite Body Armor', 19816), (129057, 129058, 121, 140, '4th level Ninja Katana', 113999), (125461, 125462, 51, 100, '4th level Ninja Wakisashi', 113984), (142918, 142919, 1, 200, '4x Layer Carbon-Notum Alloy Blade', 130835), (142924, 142925, 1, 200, '4x Layer Carbon-Notum Alloy Rod', 130832), (199686, 199686, 265, 265, '5-Star Nadir Homage Armor Boots', 22876), (199707, 199707, 265, 265, '5-Star Nadir Homage Armor Gloves', 22931), (199728, 199728, 265, 265, '5-Star Nadir Homage Armor Helmet', 31733), (199749, 199749, 265, 265, '5-Star Nadir Homage Armor Pants', 22914), (199770, 199770, 265, 265, '5-Star Nadir Homage Armor Sleeves', 22960), (199791, 199791, 265, 265, '5-Star Nadir Homage Body Armor', 22985), (303989, 303990, 200, 214, '55 NCU Memory', 119134), (199812, 199813, 265, 270, '5th Improvement Omni-Internops Armor Boots', 13270), (199833, 199834, 265, 270, '5th Improvement Omni-Internops Armor Gloves', 13283), (199854, 199855, 265, 270, '5th Improvement Omni-Internops Armor Helmet', 10840), (199875, 199876, 265, 270, '5th Improvement Omni-Internops Armor Pants', 13300), (199896, 199897, 265, 270, '5th Improvement Omni-Internops Armor Sleeves', 13232), (199917, 199918, 265, 270, '5th Improvement Omni-Internops Body Armor', 13253), (199938, 199939, 265, 270, '5th Improvement Omni-Internops Elite Armor Boots', 21866), (199959, 199960, 265, 270, '5th Improvement Omni-Internops Elite Armor Gloves', 21872), (199980, 199981, 265, 270, '5th Improvement Omni-Internops Elite Armor Helmet', 22269), (200001, 200002, 265, 270, '5th Improvement Omni-Internops Elite Armor Pants', 21879), (200022, 200023, 265, 270, '5th Improvement Omni-Internops Elite Armor Sleeves', 21850), (200043, 200044, 265, 270, '5th Improvement Omni-Internops Elite Body Armor', 19816), (129055, 129056, 101, 120, '5th level Ninja Katana', 113999), (125459, 125460, 1, 50, '5th level Ninja Wakisashi', 113984), (95520, 95520, 200, 200, '64 NCU Memory', 119134), (199814, 199815, 275, 280, '6th Improvement Omni-Internops Armor Boots', 13270), (199835, 199836, 275, 280, '6th Improvement Omni-Internops Armor Gloves', 13283), (199856, 199857, 275, 280, '6th Improvement Omni-Internops Armor Helmet', 10840), (199877, 199878, 275, 280, '6th Improvement Omni-Internops Armor Pants', 13300), (199898, 199899, 275, 280, '6th Improvement Omni-Internops Armor Sleeves', 13232), (199919, 199920, 275, 280, '6th Improvement Omni-Internops Body Armor', 13253), (199940, 199941, 275, 280, '6th Improvement Omni-Internops Elite Armor Boots', 21866), (199961, 199962, 275, 280, '6th Improvement Omni-Internops Elite Armor Gloves', 21872), (199982, 199983, 275, 280, '6th Improvement Omni-Internops Elite Armor Helmet', 22269), (200003, 200004, 275, 280, '6th Improvement Omni-Internops Elite Armor Pants', 21879), (200024, 200025, 275, 280, '6th Improvement Omni-Internops Elite Armor Sleeves', 21850), (200045, 200046, 275, 280, '6th Improvement Omni-Internops Elite Body Armor', 19816), (129053, 129054, 81, 100, '6th level Ninja Katana', 113999), (129051, 129052, 61, 80, '7th level Ninja Katana', 113999), (36786, 36780, 40, 49, '8 - 15 NCU Memory', 119137), (303991, 303992, 25, 59, '8 NCU Memory', 119135), (129049, 129050, 41, 60, '8th level Ninja Katana', 113999), (142920, 142921, 1, 200, '8x Layer Carbon-Notum Alloy Blade', 130836), (142926, 142927, 1, 200, '8x Layer Carbon-Notum Alloy Rod', 130833), (129047, 129048, 21, 40, '9th level Ninja Katana', 113999), (130621, 130621, 1, 1, 'A Beer Jug', 37965), (166253, 166254, 1, 200, 'A Bright NanoCluster of Nano Regeneration', 211113), (213436, 213436, 1, 1, 'A Broken Android', 20412), (154907, 154907, 200, 200, 'A Broken Immortal Katana', 154506), (234876, 234876, 1, 1, 'A Burnt Out Memory Chip', 119135), (156766, 156766, 1, 1, 'A Christmas Gift', 156098), (213437, 213437, 1, 1, 'A Crashed Android', 20412), (203235, 203235, 1, 1, 'A DCSD containing 1 BBI Minami-90 Sticky Love Rain', 284827), (203193, 203193, 1, 1, 'A DCSD containing 1 Fine-Tuned Westinghouse', 284816), (203247, 203247, 1, 1, 'A DCSD containing 1 M150 N.A. Booster Edition', 284841), (203244, 203244, 1, 1, 'A DCSD containing 10 BBI Minami-90 Sticky Love Rains', 284836), (203202, 203202, 1, 1, 'A DCSD containing 10 Fine-Tuned Westinghouses', 284825), (203258, 203258, 1, 1, 'A DCSD containing 10 M150 N.A. Booster Editions', 284840), (203245, 203245, 1, 1, 'A DCSD containing 11 BBI Minami-90 Sticky Love Rains', 284837), (203203, 203203, 1, 1, 'A DCSD containing 11 Fine-Tuned Westinghouses', 284826), (203259, 203259, 1, 1, 'A DCSD containing 11 M150 N.A. Booster Editions', 284850), (203246, 203246, 1, 1, 'A DCSD containing 12 BBI Minami-90 Sticky Love Rains', 284838), (203204, 203204, 1, 1, 'A DCSD containing 12 Fine-Tuned Westinghouses', 284820), (203260, 203260, 1, 1, 'A DCSD containing 12 M150 N.A. Booster Editions', 284839), (203236, 203236, 1, 1, 'A DCSD containing 2 BBI Minami-90 Sticky Love Rains', 284828), (203152, 203152, 1, 1, 'A DCSD containing 2 Fine-Tuned Westinghouses', 284817), (203248, 203248, 1, 1, 'A DCSD containing 2 M150 N.A. Booster Editions', 284842), (203237, 203237, 1, 1, 'A DCSD containing 3 BBI Minami-90 Sticky Love Rains', 284829), (203195, 203195, 1, 1, 'A DCSD containing 3 Fine-Tuned Westinghouses', 284818), (203249, 203249, 1, 1, 'A DCSD containing 3 M150 N.A. Booster Editions', 284843), (203238, 203238, 1, 1, 'A DCSD containing 4 BBI Minami-90 Sticky Love Rains', 284830), (203196, 203196, 1, 1, 'A DCSD containing 4 Fine-Tuned Westinghouses', 284819), (203250, 203250, 1, 1, 'A DCSD containing 4 M150 N.A. Booster Editions', 284844), (203239, 203239, 1, 1, 'A DCSD containing 5 BBI Minami-90 Sticky Love Rains', 284831), (203197, 203197, 1, 1, 'A DCSD containing 5 Fine-Tuned Westinghouses', 284815), (203252, 203252, 1, 1, 'A DCSD containing 5 M150 N.A. Booster Editions', 284845), (203240, 203240, 1, 1, 'A DCSD containing 6 BBI Minami-90 Sticky Love Rains', 284832), (203198, 203198, 1, 1, 'A DCSD containing 6 Fine-Tuned Westinghouses', 284821), (203253, 203253, 1, 1, 'A DCSD containing 6 M150 N.A. Booster Editions', 284846), (203241, 203241, 1, 1, 'A DCSD containing 7 BBI Minami-90 Sticky Love Rains', 284833), (203199, 203199, 1, 1, 'A DCSD containing 7 Fine-Tuned Westinghouses', 284822), (203254, 203254, 1, 1, 'A DCSD containing 7 M150 N.A. Booster Editions', 284847), (203242, 203242, 1, 1, 'A DCSD containing 8 BBI Minami-90 Sticky Love Rains', 284834), (203200, 203200, 1, 1, 'A DCSD containing 8 Fine-Tuned Westinghouses', 284823), (203255, 203255, 1, 1, 'A DCSD containing 8 M150 N.A. Booster Editions', 284848), (203243, 203243, 1, 1, 'A DCSD containing 9 BBI Minami-90 Sticky Love Rains', 284835), (203201, 203201, 1, 1, 'A DCSD containing 9 Fine-Tuned Westinghouses', 284824), (203257, 203257, 1, 1, 'A DCSD containing 9 M150 N.A. Booster Editions', 284849), (203279, 203279, 1, 1, 'A Dimension Crushing Storage Device', 154190), (154893, 154893, 200, 200, 'A Faded Immortal Katana', 154506), (269449, 269449, 1, 1, 'A Fine Quality Jar', 154195), (269485, 269485, 1, 1, 'A Fine Quality Jar', 154195), (152276, 152277, 1, 200, 'A Friendly Whisperer', 149948), (161833, 161833, 1, 1, 'A Guide to Creating Useful Medical Libraries', 154678), (302038, 302038, 1, 1, 'A Heart Breaker', 302036), (275466, 275466, 1, 1, 'A Highly Sustainable Device', 205512), (154505, 154505, 200, 200, 'A Immortal Katana', 154506), (264061, 264061, 1, 1, 'A Jar', 154195), (156599, 156599, 1, 1, 'A Leet Doll', 156598), (157981, 157981, 1, 1, 'A Minor Booze', 157905), (262604, 262604, 1, 1, 'A Never-ending Being of Light', 262646), (203263, 203263, 1, 1, 'A Note to Supply Master Eel', 284925), (203264, 203264, 1, 1, 'A Note to Supply Master Eel', 284927), (203265, 203265, 1, 1, 'A Note to Supply Master Eel', 284926), (203266, 203266, 1, 1, 'A Note to Supply Master Smug', 284925), (203267, 203267, 1, 1, 'A Note to Supply Master Smug', 284927), (203268, 203268, 1, 1, 'A Note to Supply Master Smug', 284926), (234918, 234918, 1, 1, 'A Page From The Yomi Grimoire', 234927), (303203, 303203, 1, 1, 'A Parcel for Palmiero', 154191), (154449, 154449, 1, 1, 'A Quick Guide for Making Emergency Treatment Labs', 37930), (154448, 154448, 1, 1, 'A Recipe for the Creation of Common Stimulant Injectors', 37932), (213435, 213435, 1, 1, 'A Rotting Skeleton', 20412), (265356, 265356, 1, 1, 'A Scepter', 265359), (265380, 265380, 1, 1, 'A Shadowleet Doll', 265381), (166257, 166258, 1, 200, 'A Shining NanoCluster of Nano Regeneration', 211113), (203276, 203276, 1, 1, 'A Silver Platter', 203551), (234897, 234897, 1, 1, 'A Simple Latex Mask', 205759), (156038, 156038, 200, 200, 'A Single Charged Liquid Bomb', 131257), (293809, 293809, 1, 1, 'A Single Strand of Glowing Dark Energy', 293810), (293659, 293659, 1, 1, 'A Single Strand of Glowing Dark Energy yaaaaa', 293800), (289461, 289461, 1, 1, 'A Ski', 289457), (213439, 213439, 1, 1, 'A Skull', 20412), (285738, 285738, 1, 1, 'A Small Sample of Alien Tissue', 285739), (152936, 152937, 1, 250, 'A Smoke Bomb', 100305), (239766, 239767, 1, 300, 'A Smoke Bomb Shadowlands', 100305), (296666, 296666, 1, 1, 'A Snowman Body and Head', 296586), (300527, 300527, 250, 250, 'A Special Snowlfake', 25795), (154795, 154795, 1, 1, 'A Strong String', 37931), (130622, 130622, 1, 1, 'A Very Nice Glass', 37966), (157900, 157900, 200, 200, 'A Well Shaped Tool of Torturing', 85160), (301759, 301759, 1, 1, 'A Yuletide Visage', 301812), (212909, 212909, 1, 1, 'A bag', 20412), (213434, 213434, 1, 1, 'A blasted Skeleton', 20412), (212959, 212960, 1, 250, 'A cache of Fleas...', 100305), (239768, 239769, 1, 300, 'A cache of Fleas... Shadowlands', 100305), (204567, 204567, 1, 1, 'A canister of notum constricted uranium', 100305), (130620, 130620, 1, 1, 'A cup.', 37964), (232915, 232916, 1, 149, 'A fisherman', 149935), (232916, 232917, 150, 199, 'A fisherman', 149935), (232917, 232918, 200, 249, 'A fisherman', 149935), (232918, 232919, 250, 400, 'A fisherman', 149935), (152935, 152934, 1, 250, 'A frozen rat', 100305), (239764, 239765, 1, 300, 'A frozen rat Shadowlands', 100305), (163556, 163556, 1, 1, 'A handful of enigma fibers', 163575), (212966, 212967, 1, 250, 'A lair of lizards', 100305), (239770, 239771, 1, 300, 'A lair of lizards Shadowlands', 100305), (203737, 203737, 1, 1, 'A little brown book', 136330), (203738, 203738, 1, 1, 'A little brown book', 136330), (236664, 236664, 1, 1, 'A message to Finding Serenity', 136332), (130615, 130615, 1, 1, 'A nice Glass', 37959), (236666, 236666, 1, 1, 'A note to The One Who Endlessly Tries from The Milliner', 154677), (239830, 239830, 1, 1, 'A note you got from Leading Blossom', 154679), (239829, 239829, 1, 1, 'A note you got from The Long One Making Sounds', 154675), (281098, 281098, 1, 1, 'A piece of cloth', 281096), (163559, 163559, 1, 1, 'A serious bunch of enigma fibers', 163575), (239831, 239831, 1, 1, 'A shoppinglist you made while talking to the Ergo Adonis terminal.', 154679), (234925, 234925, 1, 1, 'A slightly dented molar from the great ice golem', 20405), (273587, 273587, 1, 1, 'A-9000 Guardbot Controller', 218764), (281185, 281185, 300, 300, 'A.F.D. Twohander', 281180), (202786, 202786, 299, 299, 'AF Atomic', 21151), (202787, 202787, 300, 300, 'AF Atomic', 21151), (152078, 152079, 141, 160, 'ANEX - Blue Mathis M-E', 13314), (153493, 153493, 1, 1, 'ANEX - Blue Mathis M-E Construction Manual', 136329), (152064, 152065, 1, 20, 'ANEX - Mathis Multi-Energy Rifle', 13314), (153378, 153378, 1, 1, 'ANEX - Mathis Multi-Energy Rifle Construction Manual', 37931), (152082, 152082, 200, 200, 'ANEX - Red Mathis M-E', 13314), (153529, 153529, 1, 1, 'ANEX - Red Mathis M-E Construction Manual', 136330), (152080, 152081, 161, 199, 'ANEX - Yellow Mathis M-E', 13314), (153512, 153512, 1, 1, 'ANEX - Yellow Mathis M-E Construction Manual', 136329), (297202, 297202, 1, 1, 'AO Con 2012 T-shirt - Black', 297203), (297204, 297204, 1, 1, 'AO Con 2012 T-shirt - Purple', 297205), (137075, 137075, 1, 1, 'ARK Assistant Advisor program initiation', 43121), (286631, 286631, 300, 300, 'ARK Bug Hunters Assistant Director Shoulderpad', 245036), (286630, 286630, 300, 300, 'ARK Bug Hunters Coordinator Shoulderpad', 245036), (286628, 286628, 300, 300, 'ARK Bug Hunters Director Shoulderpad', 245036), (286629, 286629, 300, 300, 'ARK Bug Hunters Guardian Shoulderpad', 245036), (286635, 286635, 300, 300, 'ARK Community Relations Assistant Director Shoulderpad', 245036), (286634, 286634, 300, 300, 'ARK Community Relations Coordinator Shoulderpad', 245036), (286632, 286632, 300, 300, 'ARK Community Relations Director Shoulderpad', 245036), (286633, 286633, 300, 300, 'ARK Community Relations Guardian Shoulderpad', 245036), (279490, 279490, 1, 1, 'ARK Event Protection', 158233), (286606, 286606, 300, 300, 'ARK Events Assistant Director Shoulderpad', 245036), (286605, 286605, 300, 300, 'ARK Events Coordinator Shoulderpad', 245036), (286607, 286607, 300, 300, 'ARK Events Director Shoulderpad', 245036), (286589, 286589, 300, 300, 'ARK Events Guardian Shoulderpad', 245036), (137668, 137668, 1, 1, 'ARK Guardian program initiation', 43125), (286699, 286699, 300, 300, 'ARK Operations Assistant Director Shoulderpad', 245036), (286698, 286698, 300, 300, 'ARK Operations Coordinator Shoulderpad', 245036), (286696, 286696, 300, 300, 'ARK Operations Director Shoulderpad', 245036), (286697, 286697, 300, 300, 'ARK Operations Guardian Shoulderpad', 245036), (286700, 286700, 300, 300, 'ARK Personnel Assistant Director Shoulderpad', 245036), (286701, 286701, 300, 300, 'ARK Personnel Coordinator Shoulderpad', 245036), (286703, 286703, 300, 300, 'ARK Personnel Director Shoulderpad', 245036), (286702, 286702, 300, 300, 'ARK Personnel Guardian Shoulderpad', 245036), (287376, 287376, 1, 1, 'ARK Recruitment Poster - Blue', 287380), (287378, 287378, 1, 1, 'ARK Recruitment Poster - Green', 287379), (231353, 231353, 1, 1, 'ARK Staffing Suit', 99997), (137669, 137669, 300, 300, 'ARK wind boots', 37122), (206153, 206153, 1, 1, 'Abaddon Upgrade: Defense', 43126), (206156, 206156, 1, 1, 'Abaddon Upgrade: Essence', 43121), (206151, 206151, 1, 1, 'Abaddon Upgrade: Life', 43135), (206154, 206154, 1, 1, 'Abaddon Upgrade: Nano', 43126), (206152, 206152, 1, 1, 'Abaddon Upgrade: Offense', 43135), (206155, 206155, 1, 1, 'Abaddon Upgrade: Skill', 43121), (258496, 258496, 1, 1, 'Aban Blueprint Pattern of the Projection of Cama', 235327), (258498, 258498, 1, 1, 'Aban Blueprint Pattern of the Projection of Dalja', 235326), (258495, 258495, 1, 1, 'Aban Blueprint Pattern of the Projection of Gilthar', 235327), (258497, 258497, 1, 1, 'Aban Blueprint Pattern of the Projection of Lord Galahad', 235327), (258500, 258500, 1, 1, 'Aban Blueprint Pattern of the Projection of Lord Mordeth', 235326), (258499, 258499, 1, 1, 'Aban Blueprint Pattern of the Projection of Vanya', 235326), (223683, 223683, 40, 40, 'Aban Fala''s Bracer of Apprehension', 84057), (223677, 223677, 40, 40, 'Aban Fala''s Bracer of Brute Force', 84057), (223679, 223679, 40, 40, 'Aban Fala''s Bracer of Dexterity', 84057), (223678, 223678, 40, 40, 'Aban Fala''s Bracer of Endurance', 84057), (223681, 223681, 40, 40, 'Aban Fala''s Bracer of Logic', 84057), (223684, 223684, 40, 40, 'Aban Fala''s Bracer of Mental Strength', 84057), (294002, 294002, 275, 275, 'Aban Pattern ''Wistful Apparition''', 294177), (232637, 232637, 200, 200, 'Aban Pattern of ''Arch Demon of Inferno''', 229134), (232592, 232592, 200, 200, 'Aban Pattern of ''Cama''', 229134), (232565, 232565, 170, 170, 'Aban Pattern of ''Dalja''', 229134), (232583, 232583, 140, 140, 'Aban Pattern of ''Diviner Gil Kald-Thar''', 229134), (232628, 232628, 200, 200, 'Aban Pattern of ''Lady Genevra Di’Venague''', 229134), (232538, 232538, 140, 140, 'Aban Pattern of ''Ocra''', 229134), (232556, 232556, 170, 170, 'Aban Pattern of ''Redeemed Gilthar''', 229134), (232610, 232610, 200, 200, 'Aban Pattern of ''Redeemed Lord Galahad''', 229134), (232547, 232547, 140, 140, 'Aban Pattern of ''Roch''', 229134), (232619, 232619, 200, 200, 'Aban Pattern of ''Unredeemed Lord Mordeth''', 229134), (232601, 232601, 200, 200, 'Aban Pattern of ''Vanya''', 229134), (258515, 258515, 1, 1, 'Aban-Bhotaar Blueprint Pattern of the Projection of Cama', 235344), (258518, 258518, 1, 1, 'Aban-Bhotaar Blueprint Pattern of the Projection of Dalja', 235343), (258516, 258516, 1, 1, 'Aban-Bhotaar Blueprint Pattern of the Projection of Gilthar', 235344), (258517, 258517, 1, 1, 'Aban-Bhotaar Blueprint Pattern of the Projection of Lord Galahad', 235344), (258520, 258520, 1, 1, 'Aban-Bhotaar Blueprint Pattern of the Projection of Lord Mordeth', 235343), (258519, 258519, 1, 1, 'Aban-Bhotaar Blueprint Pattern of the Projection of Vanya', 235343), (231526, 231526, 125, 125, 'Aban-Bhotar Assembly of ''Adobe Suzerain''', 229135), (234256, 234256, 220, 220, 'Aban-Bhotar Assembly of ''Aesma Daeva''', 229135), (234157, 234157, 255, 255, 'Aban-Bhotar Assembly of ''Agent of Decay''', 229135), (234130, 234130, 255, 255, 'Aban-Bhotar Assembly of ''Agent of Putrefaction''', 229135), (234166, 234166, 220, 220, 'Aban-Bhotar Assembly of ''Ahpta''', 229135), (231967, 231967, 188, 188, 'Aban-Bhotar Assembly of ''Alatyr''', 229135), (234229, 234229, 255, 255, 'Aban-Bhotar Assembly of ''Anansi', 229135), (234368, 234368, 255, 255, 'Aban-Bhotar Assembly of ''Anansi''', 229135), (239611, 239611, 30, 30, 'Aban-Bhotar Assembly of ''Anarir''', 229135), (231859, 231859, 185, 185, 'Aban-Bhotar Assembly of ''Anya''', 229135), (231985, 231985, 210, 210, 'Aban-Bhotar Assembly of ''Aray''', 229135), (234323, 234323, 255, 255, 'Aban-Bhotar Assembly of ''Arch Bigot Aliel''', 229135), (234265, 234265, 220, 220, 'Aban-Bhotar Assembly of ''Arch Bigot Biap''', 229135), (234305, 234305, 255, 255, 'Aban-Bhotar Assembly of ''Arch Bigot Lohel''', 229135), (232641, 232641, 200, 200, 'Aban-Bhotar Assembly of ''Arch Demon of Inferno''', 229135), (231733, 231733, 125, 125, 'Aban-Bhotar Assembly of ''Argil Suzerain''', 229135), (234314, 234314, 255, 255, 'Aban-Bhotar Assembly of ''Asase Ya''', 229135), (231598, 231598, 125, 125, 'Aban-Bhotar Assembly of ''Ashmara Ravin''', 229135), (234285, 234285, 220, 220, 'Aban-Bhotar Assembly of ''Ats', 229135), (231544, 231544, 125, 125, 'Aban-Bhotar Assembly of ''Auger''', 229135), (231553, 231553, 125, 125, 'Aban-Bhotar Assembly of ''Awl''', 229135), (231913, 231913, 185, 185, 'Aban-Bhotar Assembly of ''Bagaspati''', 229135), (231571, 231571, 125, 125, 'Aban-Bhotar Assembly of ''Beatific Spirit''', 229135), (231724, 231724, 125, 125, 'Aban-Bhotar Assembly of ''Bellowing Chimera''', 229135), (231661, 231661, 125, 125, 'Aban-Bhotar Assembly of ''Bhinaji Navi''', 229135), (234211, 234211, 255, 255, 'Aban-Bhotar Assembly of ''Bia''', 229135), (231418, 231418, 80, 80, 'Aban-Bhotar Assembly of ''Black Fang''', 229135), (231625, 231625, 125, 125, 'Aban-Bhotar Assembly of ''Blight''', 229135), (231562, 231562, 125, 125, 'Aban-Bhotar Assembly of ''Borer''', 229135), (231931, 231931, 178, 178, 'Aban-Bhotar Assembly of ''Breaker Teuvo''', 229135), (231904, 231904, 175, 175, 'Aban-Bhotar Assembly of ''Brutal Rafter''', 229135), (231454, 231454, 85, 85, 'Aban-Bhotar Assembly of ''Brutal Soul Dredge''', 229135), (232596, 232596, 200, 200, 'Aban-Bhotar Assembly of ''Cama''', 229135), (239539, 239539, 40, 40, 'Aban-Bhotar Assembly of ''Canceroid Cupid''', 229135), (234332, 234332, 220, 220, 'Aban-Bhotar Assembly of ''Captured Spirit''', 229135), (239557, 239557, 45, 45, 'Aban-Bhotar Assembly of ''Careening Blight''', 229135), (239566, 239566, 45, 45, 'Aban-Bhotar Assembly of ''Careening Death''', 229135), (232129, 232129, 195, 195, 'Aban-Bhotar Assembly of ''Churn''', 229135), (231445, 231445, 85, 85, 'Aban-Bhotar Assembly of ''Circumbendibum''', 229135), (231409, 231409, 80, 80, 'Aban-Bhotar Assembly of ''Circumbendibus''', 229135), (231652, 231652, 125, 125, 'Aban-Bhotar Assembly of ''Contorted Soul Dredge''', 229135), (232569, 232569, 170, 170, 'Aban-Bhotar Assembly of ''Dalja''', 229135), (231823, 231823, 220, 220, 'Aban-Bhotar Assembly of ''Defiler of Scheol''', 229135), (231841, 231841, 220, 220, 'Aban-Bhotar Assembly of ''Destroyer of Scheol''', 229135), (231832, 231832, 220, 220, 'Aban-Bhotar Assembly of ''Devastator of Scheol''', 229135), (231814, 231814, 205, 205, 'Aban-Bhotar Assembly of ''Devourer of Scheol''', 229135), (232587, 242532, 140, 150, 'Aban-Bhotar Assembly of ''Diviner Gil Kald-Thar''', 229135), (239638, 239638, 180, 180, 'Aban-Bhotar Assembly of ''Eidolean Soul Dredge''', 229135), (239684, 239684, 220, 220, 'Aban-Bhotar Assembly of ''Exsequiae''', 229135), (234148, 234148, 220, 220, 'Aban-Bhotar Assembly of ''Fester Leila''', 229135), (231688, 231688, 125, 125, 'Aban-Bhotar Assembly of ''Flinty''', 229135), (239647, 239647, 188, 188, 'Aban-Bhotar Assembly of ''Glitter''', 229135), (231499, 231499, 115, 115, 'Aban-Bhotar Assembly of ''Gracious Soul Dredge''', 229135), (231706, 231706, 125, 125, 'Aban-Bhotar Assembly of ''Gunk''', 229135), (231994, 231994, 210, 210, 'Aban-Bhotar Assembly of ''Hadur''', 229135), (234184, 234184, 220, 220, 'Aban-Bhotar Assembly of ''Haqa''', 229135), (231634, 231634, 125, 125, 'Aban-Bhotar Assembly of ''Hemut''', 229135), (239674, 239674, 220, 220, 'Aban-Bhotar Assembly of ''Ho''', 229135), (231517, 231517, 125, 125, 'Aban-Bhotar Assembly of ''Ignis Fatui''', 229135), (231580, 231580, 125, 125, 'Aban-Bhotar Assembly of ''Ignis Fatuus''', 229135), (232003, 232003, 182, 182, 'Aban-Bhotar Assembly of ''Imk', 229135), (232578, 232578, 160, 160, 'Aban-Bhotar Assembly of ''Infernal Demon''', 229135), (231535, 231535, 125, 125, 'Aban-Bhotar Assembly of ''Iunmin''', 229135), (232012, 232012, 182, 182, 'Aban-Bhotar Assembly of ''Juma''', 229135), (234103, 234103, 220, 220, 'Aban-Bhotar Assembly of ''K', 229135), (232021, 232021, 182, 182, 'Aban-Bhotar Assembly of ''Kaleva''', 229135), (231769, 231769, 125, 125, 'Aban-Bhotar Assembly of ''Kaoline Suzerain''', 229135), (231643, 231643, 125, 125, 'Aban-Bhotar Assembly of ''Khemhet''', 229135), (232632, 232632, 200, 200, 'Aban-Bhotar Assembly of ''Lady Genevra Di''Venague''', 229135), (231607, 231607, 125, 125, 'Aban-Bhotar Assembly of ''Lethargic Spirit''', 229135), (231742, 231742, 125, 125, 'Aban-Bhotar Assembly of ''Loessial Suzerain''', 229135), (239665, 239665, 125, 125, 'Aban-Bhotar Assembly of ''Loltonunon''', 229135), (232075, 232075, 165, 165, 'Aban-Bhotar Assembly of ''Lurky''', 229135), (234220, 234220, 220, 220, 'Aban-Bhotar Assembly of ''Lya''', 229135), (239530, 239530, 40, 40, 'Aban-Bhotar Assembly of ''Malah-Animus''', 229135), (239521, 239521, 40, 40, 'Aban-Bhotar Assembly of ''Malah-At''', 229135), (239512, 239512, 40, 40, 'Aban-Bhotar Assembly of ''Malah-Auris''', 229135), (239575, 239575, 25, 25, 'Aban-Bhotar Assembly of ''Maledicta''', 229135), (231589, 231589, 125, 125, 'Aban-Bhotar Assembly of ''Marem''', 229135), (231670, 231670, 125, 125, 'Aban-Bhotar Assembly of ''Marly Suzerain''', 229135), (239593, 239593, 50, 50, 'Aban-Bhotar Assembly of ''Mawi''', 229135), (231616, 231616, 125, 125, 'Aban-Bhotar Assembly of ''Misery''', 229135), (232093, 232093, 165, 165, 'Aban-Bhotar Assembly of ''Moochy''', 229135), (231886, 231886, 215, 215, 'Aban-Bhotar Assembly of ''Morrow''', 229135), (239485, 239485, 255, 255, 'Aban-Bhotar Assembly of ''Nyame''', 229135), (232542, 232542, 140, 140, 'Aban-Bhotar Assembly of ''Ocra''', 229135), (234379, 234379, 220, 220, 'Aban-Bhotar Assembly of ''Odqan''', 229135), (232030, 232030, 165, 165, 'Aban-Bhotar Assembly of ''Old Salty''', 229135), (231751, 231751, 125, 125, 'Aban-Bhotar Assembly of ''Ooze''', 229135), (234247, 234247, 220, 220, 'Aban-Bhotar Assembly of ''Pazuzu''', 229135), (232120, 232120, 195, 195, 'Aban-Bhotar Assembly of ''Quake''', 229135), (231877, 231877, 215, 215, 'Aban-Bhotar Assembly of ''Quondam''', 229135), (234296, 234296, 235, 235, 'Aban-Bhotar Assembly of ''Rallies Fete''', 229135), (234350, 234350, 255, 255, 'Aban-Bhotar Assembly of ''Razor the Battletoad''', 229135), (242541, 242541, 200, 200, 'Aban-Bhotar Assembly of ''Redeemed Cama''', 229135), (232560, 232560, 170, 170, 'Aban-Bhotar Assembly of ''Redeemed Gilthar''', 229135), (242514, 242514, 170, 170, 'Aban-Bhotar Assembly of ''Redeemed Gilthar''', 229135), (232614, 234436, 200, 255, 'Aban-Bhotar Assembly of ''Redeemed Lord Galahad''', 229135), (242496, 242496, 140, 140, 'Aban-Bhotar Assembly of ''Redeemed Ocra''', 229135), (234121, 234121, 220, 220, 'Aban-Bhotar Assembly of ''Relief Teals''', 229135), (232551, 232551, 140, 140, 'Aban-Bhotar Assembly of ''Roch''', 229135), (239548, 239548, 35, 35, 'Aban-Bhotar Assembly of ''Sabretooth Slicer''', 229135), (231850, 231850, 185, 185, 'Aban-Bhotar Assembly of ''Sampsa''', 229135), (234202, 234202, 220, 220, 'Aban-Bhotar Assembly of ''Sasabonsam''', 229135), (234094, 234094, 220, 220, 'Aban-Bhotar Assembly of ''Sashu''', 229135), (239656, 239656, 125, 125, 'Aban-Bhotar Assembly of ''Satkamear''', 229135), (239602, 239602, 50, 50, 'Aban-Bhotar Assembly of ''Sawi''', 229135), (231427, 231427, 80, 80, 'Aban-Bhotar Assembly of ''Scratch''', 229135), (231436, 231436, 80, 80, 'Aban-Bhotar Assembly of ''Screech''', 229135), (232210, 232102, 192, 195, 'Aban-Bhotar Assembly of ''Shake''', 229135), (232201, 232201, 192, 192, 'Aban-Bhotar Assembly of ''Shiver''', 229135), (234359, 234359, 255, 255, 'Aban-Bhotar Assembly of ''Shullat''', 229135), (231400, 231400, 80, 80, 'Aban-Bhotar Assembly of ''Silver Fang''', 229135), (232084, 232084, 165, 165, 'Aban-Bhotar Assembly of ''Skulky''', 229135), (232066, 232066, 165, 165, 'Aban-Bhotar Assembly of ''Slinky''', 229135), (232039, 232039, 165, 165, 'Aban-Bhotar Assembly of ''Smee''', 229135), (231508, 231508, 115, 115, 'Aban-Bhotar Assembly of ''Spiritless Soul Dredge''', 229135), (231949, 231949, 180, 180, 'Aban-Bhotar Assembly of ''Srahir''', 229135), (234193, 234193, 220, 220, 'Aban-Bhotar Assembly of ''Taille Frees''', 229135), (239702, 239702, 48, 48, 'Aban-Bhotar Assembly of ''Tcheser''', 229135), (239494, 239494, 160, 160, 'Aban-Bhotar Assembly of ''The Abysmal Lord''', 229135), (232192, 232192, 165, 165, 'Aban-Bhotar Assembly of ''The Abyssal Widow''', 229135), (239693, 239693, 120, 120, 'Aban-Bhotar Assembly of ''The Achbile Guardian''', 229135), (232147, 232147, 165, 165, 'Aban-Bhotar Assembly of ''The Adonian Soul Dredge''', 229135), (232174, 232174, 165, 165, 'Aban-Bhotar Assembly of ''The Adonis Spirit Master''', 229135), (231778, 231778, 120, 120, 'Aban-Bhotar Assembly of ''The Archbile Queen''', 229135), (239620, 239620, 185, 185, 'Aban-Bhotar Assembly of ''The Brobdingnagian Mother''', 229135), (232165, 232165, 165, 165, 'Aban-Bhotar Assembly of ''The Dredge Driver''', 229135), (234238, 234238, 220, 220, 'Aban-Bhotar Assembly of ''The Dryad Demigod''', 229135), (231940, 231940, 185, 185, 'Aban-Bhotar Assembly of ''The Dryad Shuffle''', 229135), (231463, 231463, 90, 90, 'Aban-Bhotar Assembly of ''The Dune Suzerain''', 229135), (231490, 231490, 90, 90, 'Aban-Bhotar Assembly of ''The Elysian Soul Dredge''', 229135), (231805, 231805, 120, 120, 'Aban-Bhotar Assembly of ''The Enrapt One''', 229135), (239720, 239720, 210, 210, 'Aban-Bhotar Assembly of ''The Great Ice Golem''', 229135), (234276, 234276, 220, 220, 'Aban-Bhotar Assembly of ''The Indomitable Chimera''', 229135), (242454, 242454, 220, 220, 'Aban-Bhotar Assembly of ''The Infernal Soul Dredge''', 229135), (231868, 231868, 205, 205, 'Aban-Bhotar Assembly of ''The Maggot Lord''', 229135), (234139, 234139, 255, 255, 'Aban-Bhotar Assembly of ''The Mortificator''', 229135), (231796, 231796, 120, 120, 'Aban-Bhotar Assembly of ''The Numb One''', 229135), (231895, 231895, 165, 165, 'Aban-Bhotar Assembly of ''The Penumbral Spirit Hunter''', 229135), (232057, 232057, 172, 172, 'Aban-Bhotar Assembly of ''The Peristaltic Abomination''', 229135), (232048, 232048, 172, 172, 'Aban-Bhotar Assembly of ''The Peristaltic Aversion''', 229135), (232183, 232183, 165, 165, 'Aban-Bhotar Assembly of ''The Proprietrix''', 229135), (231760, 231760, 125, 125, 'Aban-Bhotar Assembly of ''The Scheolian Soul Dredge''', 229135), (239629, 239629, 185, 185, 'Aban-Bhotar Assembly of ''The Stupendous Breeder''', 229135), (231472, 231472, 90, 90, 'Aban-Bhotar Assembly of ''The Talus Suzerain''', 229135), (232156, 232156, 165, 165, 'Aban-Bhotar Assembly of ''The Watchdog''', 229135), (231976, 231976, 202, 202, 'Aban-Bhotar Assembly of ''The Worm King''', 229135), (231715, 231715, 125, 125, 'Aban-Bhotar Assembly of ''Thunderous Chimera''', 229135), (232111, 232111, 195, 195, 'Aban-Bhotar Assembly of ''Toss''', 229135), (231679, 231679, 125, 125, 'Aban-Bhotar Assembly of ''Tough''', 229135), (231481, 231481, 90, 90, 'Aban-Bhotar Assembly of ''Ungulera''', 229135), (242523, 242523, 170, 170, 'Aban-Bhotar Assembly of ''Unredeemed Dalja''', 229135), (232623, 234447, 200, 255, 'Aban-Bhotar Assembly of ''Unredeemed Lord Mordeth''', 229135), (242505, 242505, 140, 140, 'Aban-Bhotar Assembly of ''Unredeemed Roch''', 229135), (242550, 242550, 200, 200, 'Aban-Bhotar Assembly of ''Unredeemed Vanya''', 229135), (239711, 239711, 48, 48, 'Aban-Bhotar Assembly of ''Upenpet''', 229135), (234175, 234175, 220, 220, 'Aban-Bhotar Assembly of ''Ushqa''', 229135), (232605, 232605, 200, 200, 'Aban-Bhotar Assembly of ''Vanya''', 229135), (232138, 232138, 165, 165, 'Aban-Bhotar Assembly of ''Viscious Visitant''', 229135), (231697, 231697, 125, 125, 'Aban-Bhotar Assembly of ''Wacky Suzerain''', 229135), (239584, 239584, 50, 50, 'Aban-Bhotar Assembly of ''Wala''', 229135), (234112, 234112, 220, 220, 'Aban-Bhotar Assembly of ''Waqa''', 229135), (242656, 242656, 135, 135, 'Aban-Bhotar Assembly of ''Weary Empath Min-Ji Liu''', 229135), (231787, 231787, 120, 120, 'Aban-Bhotar Assembly of ''White''', 229135), (294006, 294006, 275, 275, 'Aban-Bhotar Assembly of ''Wistful Apparition''', 294178), (234341, 234341, 255, 255, 'Aban-Bhotar Assembly of ''Xark the Battletoad''', 229135), (231958, 231958, 180, 180, 'Aban-Bhotar Assembly of ''Zoetic Oak''', 229135), (231527, 231527, 125, 125, 'Aban-Bhotar-Chi Assembly ''Adobe Suzerain''', 229136), (234257, 234257, 220, 220, 'Aban-Bhotar-Chi Assembly ''Aesma Daeva''', 229136), (234158, 234158, 255, 255, 'Aban-Bhotar-Chi Assembly ''Agent of Decay''', 229136), (234131, 234131, 255, 255, 'Aban-Bhotar-Chi Assembly ''Agent of Putrefaction''', 229136), (234167, 234167, 220, 220, 'Aban-Bhotar-Chi Assembly ''Ahpta''', 229136), (231968, 231968, 188, 188, 'Aban-Bhotar-Chi Assembly ''Alatyr''', 229136), (234230, 234230, 255, 255, 'Aban-Bhotar-Chi Assembly ''Anansi', 229136), (234369, 234369, 255, 255, 'Aban-Bhotar-Chi Assembly ''Anansi''', 229136), (239612, 239612, 30, 30, 'Aban-Bhotar-Chi Assembly ''Anarir''', 229136), (231860, 231860, 185, 185, 'Aban-Bhotar-Chi Assembly ''Anya''', 229136), (231986, 231986, 210, 210, 'Aban-Bhotar-Chi Assembly ''Aray''', 229136), (234324, 234324, 255, 255, 'Aban-Bhotar-Chi Assembly ''Arch Bigot Aliel''', 229136), (234268, 234268, 220, 220, 'Aban-Bhotar-Chi Assembly ''Arch Bigot Biap''', 229136), (234306, 234306, 255, 255, 'Aban-Bhotar-Chi Assembly ''Arch Bigot Lohel''', 229136), (232642, 232642, 200, 200, 'Aban-Bhotar-Chi Assembly ''Arch Demon of Inferno''', 229136), (231734, 231734, 125, 125, 'Aban-Bhotar-Chi Assembly ''Argil Suzerain''', 229136), (234315, 234315, 255, 255, 'Aban-Bhotar-Chi Assembly ''Asase Ya''', 229136), (231599, 231599, 125, 125, 'Aban-Bhotar-Chi Assembly ''Ashmara Ravin''', 229136), (234286, 234286, 220, 220, 'Aban-Bhotar-Chi Assembly ''Ats', 229136), (231545, 231545, 125, 125, 'Aban-Bhotar-Chi Assembly ''Auger''', 229136), (231554, 231554, 125, 125, 'Aban-Bhotar-Chi Assembly ''Awl''', 229136), (231914, 231914, 185, 185, 'Aban-Bhotar-Chi Assembly ''Bagaspati''', 229136), (231572, 231572, 125, 125, 'Aban-Bhotar-Chi Assembly ''Beatific Spirit''', 229136), (231725, 231725, 125, 125, 'Aban-Bhotar-Chi Assembly ''Bellowing Chimera''', 229136), (231662, 231662, 125, 125, 'Aban-Bhotar-Chi Assembly ''Bhinaji Navi''', 229136), (234212, 234212, 255, 255, 'Aban-Bhotar-Chi Assembly ''Bia''', 229136), (231419, 231419, 80, 80, 'Aban-Bhotar-Chi Assembly ''Black Fang''', 229136), (231626, 231626, 125, 125, 'Aban-Bhotar-Chi Assembly ''Blight''', 229136), (231563, 231563, 125, 125, 'Aban-Bhotar-Chi Assembly ''Borer''', 229136), (231932, 231932, 178, 178, 'Aban-Bhotar-Chi Assembly ''Breaker Teuvo''', 229136), (231905, 231905, 175, 175, 'Aban-Bhotar-Chi Assembly ''Brutal Rafter''', 229136), (231455, 231455, 85, 85, 'Aban-Bhotar-Chi Assembly ''Brutal Soul Dredge''', 229136), (232597, 232597, 200, 200, 'Aban-Bhotar-Chi Assembly ''Cama''', 229136), (239540, 239540, 40, 40, 'Aban-Bhotar-Chi Assembly ''Canceroid Cupid''', 229136), (234333, 234333, 220, 220, 'Aban-Bhotar-Chi Assembly ''Captured Spirit''', 229136), (239558, 239558, 45, 45, 'Aban-Bhotar-Chi Assembly ''Careening Blight''', 229136), (239567, 239567, 45, 45, 'Aban-Bhotar-Chi Assembly ''Careening Death''', 229136), (232130, 232130, 195, 195, 'Aban-Bhotar-Chi Assembly ''Churn''', 229136), (231446, 231446, 85, 85, 'Aban-Bhotar-Chi Assembly ''Circumbendibum''', 229136), (231410, 231410, 80, 80, 'Aban-Bhotar-Chi Assembly ''Circumbendibus''', 229136), (231653, 231653, 125, 125, 'Aban-Bhotar-Chi Assembly ''Contorted Soul Dredge''', 229136), (232570, 232570, 170, 170, 'Aban-Bhotar-Chi Assembly ''Dalja''', 229136), (231824, 231824, 220, 220, 'Aban-Bhotar-Chi Assembly ''Defiler of Scheol''', 229136), (231842, 231842, 220, 220, 'Aban-Bhotar-Chi Assembly ''Destroyer of Scheol''', 229136), (231833, 231833, 220, 220, 'Aban-Bhotar-Chi Assembly ''Devastator of Scheol''', 229136), (231815, 231815, 205, 205, 'Aban-Bhotar-Chi Assembly ''Devourer of Scheol''', 229136), (232588, 242533, 140, 150, 'Aban-Bhotar-Chi Assembly ''Diviner Gil Kald-Thar''', 229136), (239639, 239639, 180, 180, 'Aban-Bhotar-Chi Assembly ''Eidolean Soul Dredge''', 229136), (239685, 239685, 220, 220, 'Aban-Bhotar-Chi Assembly ''Exsequiae''', 229136), (234149, 234149, 220, 220, 'Aban-Bhotar-Chi Assembly ''Fester Leila''', 229136), (231689, 231689, 125, 125, 'Aban-Bhotar-Chi Assembly ''Flinty''', 229136), (239648, 239648, 188, 188, 'Aban-Bhotar-Chi Assembly ''Glitter''', 229136), (231500, 231500, 115, 115, 'Aban-Bhotar-Chi Assembly ''Gracious Soul Dredge''', 229136), (231707, 231707, 125, 125, 'Aban-Bhotar-Chi Assembly ''Gunk''', 229136), (231995, 231995, 210, 210, 'Aban-Bhotar-Chi Assembly ''Hadur''', 229136), (234185, 234185, 220, 220, 'Aban-Bhotar-Chi Assembly ''Haqa''', 229136), (231635, 231635, 125, 125, 'Aban-Bhotar-Chi Assembly ''Hemut''', 229136), (239675, 239675, 220, 220, 'Aban-Bhotar-Chi Assembly ''Ho''', 229136), (231518, 231518, 125, 125, 'Aban-Bhotar-Chi Assembly ''Ignis Fatui''', 229136), (231581, 231581, 125, 125, 'Aban-Bhotar-Chi Assembly ''Ignis Fatuus''', 229136), (232004, 232004, 182, 182, 'Aban-Bhotar-Chi Assembly ''Imk', 229136), (232579, 232579, 160, 160, 'Aban-Bhotar-Chi Assembly ''Infernal Demon''', 229136), (231536, 231536, 125, 125, 'Aban-Bhotar-Chi Assembly ''Iunmin''', 229136), (232013, 232013, 182, 182, 'Aban-Bhotar-Chi Assembly ''Juma''', 229136), (234104, 234104, 220, 220, 'Aban-Bhotar-Chi Assembly ''K', 229136), (232022, 232022, 182, 182, 'Aban-Bhotar-Chi Assembly ''Kaleva''', 229136), (231770, 231770, 125, 125, 'Aban-Bhotar-Chi Assembly ''Kaoline Suzerain''', 229136), (231644, 231644, 125, 125, 'Aban-Bhotar-Chi Assembly ''Khemhet''', 229136), (232633, 232633, 200, 200, 'Aban-Bhotar-Chi Assembly ''Lady Genevra Di''Venague''', 229136), (231608, 231608, 125, 125, 'Aban-Bhotar-Chi Assembly ''Lethargic Spirit''', 229136), (231743, 231743, 125, 125, 'Aban-Bhotar-Chi Assembly ''Loessial Suzerain''', 229136), (239666, 239666, 125, 125, 'Aban-Bhotar-Chi Assembly ''Loltonunon''', 229136), (232076, 232076, 165, 165, 'Aban-Bhotar-Chi Assembly ''Lurky''', 229136), (234221, 234221, 220, 220, 'Aban-Bhotar-Chi Assembly ''Lya''', 229136), (239531, 239531, 40, 40, 'Aban-Bhotar-Chi Assembly ''Malah-Animus''', 229136), (239522, 239522, 40, 40, 'Aban-Bhotar-Chi Assembly ''Malah-At''', 229136), (239513, 239513, 40, 40, 'Aban-Bhotar-Chi Assembly ''Malah-Auris''', 229136), (239576, 239576, 25, 25, 'Aban-Bhotar-Chi Assembly ''Maledicta''', 229136), (231590, 231590, 125, 125, 'Aban-Bhotar-Chi Assembly ''Marem''', 229136), (231671, 231671, 125, 125, 'Aban-Bhotar-Chi Assembly ''Marly Suzerain''', 229136), (239594, 239594, 50, 50, 'Aban-Bhotar-Chi Assembly ''Mawi''', 229136), (231617, 231617, 125, 125, 'Aban-Bhotar-Chi Assembly ''Misery''', 229136), (232094, 232094, 165, 165, 'Aban-Bhotar-Chi Assembly ''Moochy''', 229136), (231887, 231887, 215, 215, 'Aban-Bhotar-Chi Assembly ''Morrow''', 229136), (239486, 239486, 255, 255, 'Aban-Bhotar-Chi Assembly ''Nyame''', 229136), (232543, 232543, 140, 140, 'Aban-Bhotar-Chi Assembly ''Ocra''', 229136), (234381, 234381, 220, 220, 'Aban-Bhotar-Chi Assembly ''Odqan''', 229136), (232031, 232031, 165, 165, 'Aban-Bhotar-Chi Assembly ''Old Salty''', 229136), (231752, 231752, 125, 125, 'Aban-Bhotar-Chi Assembly ''Ooze''', 229136), (234248, 234248, 220, 220, 'Aban-Bhotar-Chi Assembly ''Pazuzu''', 229136), (232121, 232121, 195, 195, 'Aban-Bhotar-Chi Assembly ''Quake''', 229136), (231878, 231878, 215, 215, 'Aban-Bhotar-Chi Assembly ''Quondam''', 229136), (234297, 234297, 235, 235, 'Aban-Bhotar-Chi Assembly ''Rallies Fete''', 229136), (234351, 234351, 255, 255, 'Aban-Bhotar-Chi Assembly ''Razor the Battletoad''', 229136), (242542, 242542, 200, 200, 'Aban-Bhotar-Chi Assembly ''Redeemed Cama''', 229136), (232561, 232561, 170, 170, 'Aban-Bhotar-Chi Assembly ''Redeemed Gilthar''', 229136), (242515, 242515, 170, 170, 'Aban-Bhotar-Chi Assembly ''Redeemed Gilthar''', 229136), (232615, 234437, 200, 255, 'Aban-Bhotar-Chi Assembly ''Redeemed Lord Galahad''', 229136), (242497, 242497, 140, 140, 'Aban-Bhotar-Chi Assembly ''Redeemed Ocra''', 229136), (234122, 234122, 220, 220, 'Aban-Bhotar-Chi Assembly ''Relief Teals''', 229136), (232552, 232552, 140, 140, 'Aban-Bhotar-Chi Assembly ''Roch''', 229136), (239549, 239549, 35, 35, 'Aban-Bhotar-Chi Assembly ''Sabretooth Slicer''', 229136), (231851, 231851, 185, 185, 'Aban-Bhotar-Chi Assembly ''Sampsa''', 229136), (234203, 234203, 220, 220, 'Aban-Bhotar-Chi Assembly ''Sasabonsam''', 229136), (234095, 234095, 220, 220, 'Aban-Bhotar-Chi Assembly ''Sashu''', 229136), (239657, 239657, 125, 125, 'Aban-Bhotar-Chi Assembly ''Satkamear''', 229136), (239603, 239603, 50, 50, 'Aban-Bhotar-Chi Assembly ''Sawi''', 229136), (231428, 231428, 80, 80, 'Aban-Bhotar-Chi Assembly ''Scratch''', 229136), (231437, 231437, 80, 80, 'Aban-Bhotar-Chi Assembly ''Screech''', 229136), (232211, 232103, 192, 195, 'Aban-Bhotar-Chi Assembly ''Shake''', 229136), (232202, 232202, 192, 192, 'Aban-Bhotar-Chi Assembly ''Shiver''', 229136), (234360, 234360, 255, 255, 'Aban-Bhotar-Chi Assembly ''Shullat''', 229136), (231401, 231401, 80, 80, 'Aban-Bhotar-Chi Assembly ''Silver Fang''', 229136), (232085, 232085, 165, 165, 'Aban-Bhotar-Chi Assembly ''Skulky''', 229136), (232067, 232067, 165, 165, 'Aban-Bhotar-Chi Assembly ''Slinky''', 229136), (232040, 232040, 165, 165, 'Aban-Bhotar-Chi Assembly ''Smee''', 229136), (231509, 231509, 115, 115, 'Aban-Bhotar-Chi Assembly ''Spiritless Soul Dredge''', 229136), (231950, 231950, 180, 180, 'Aban-Bhotar-Chi Assembly ''Srahir''', 229136), (234194, 234194, 220, 220, 'Aban-Bhotar-Chi Assembly ''Taille Frees''', 229136), (239703, 239703, 48, 48, 'Aban-Bhotar-Chi Assembly ''Tcheser''', 229136), (239495, 239495, 160, 160, 'Aban-Bhotar-Chi Assembly ''The Abysmal Lord''', 229136), (232193, 232193, 165, 165, 'Aban-Bhotar-Chi Assembly ''The Abyssal Widow''', 229136), (239694, 239694, 120, 120, 'Aban-Bhotar-Chi Assembly ''The Achbile Guardian''', 229136), (232148, 232148, 165, 165, 'Aban-Bhotar-Chi Assembly ''The Adonian Soul Dredge''', 229136), (232175, 232175, 165, 165, 'Aban-Bhotar-Chi Assembly ''The Adonis Spirit Master''', 229136), (231779, 231779, 120, 120, 'Aban-Bhotar-Chi Assembly ''The Archbile Queen''', 229136), (239621, 239621, 185, 185, 'Aban-Bhotar-Chi Assembly ''The Brobdingnagian Mother''', 229136), (232166, 232166, 165, 165, 'Aban-Bhotar-Chi Assembly ''The Dredge Driver''', 229136), (234239, 234239, 220, 220, 'Aban-Bhotar-Chi Assembly ''The Dryad Demigod''', 229136), (231941, 231941, 185, 185, 'Aban-Bhotar-Chi Assembly ''The Dryad Shuffle''', 229136), (231464, 231464, 90, 90, 'Aban-Bhotar-Chi Assembly ''The Dune Suzerain''', 229136), (231491, 231491, 90, 90, 'Aban-Bhotar-Chi Assembly ''The Elysian Soul Dredge''', 229136), (231806, 231806, 120, 120, 'Aban-Bhotar-Chi Assembly ''The Enrapt One''', 229136), (239721, 239721, 210, 210, 'Aban-Bhotar-Chi Assembly ''The Great Ice Golem''', 229136), (234277, 234277, 220, 220, 'Aban-Bhotar-Chi Assembly ''The Indomitable Chimera''', 229136), (242455, 242455, 220, 220, 'Aban-Bhotar-Chi Assembly ''The Infernal Soul Dredge''', 229136), (231869, 231869, 205, 205, 'Aban-Bhotar-Chi Assembly ''The Maggot Lord''', 229136), (234140, 234140, 255, 255, 'Aban-Bhotar-Chi Assembly ''The Mortificator''', 229136), (231797, 231797, 120, 120, 'Aban-Bhotar-Chi Assembly ''The Numb One''', 229136), (231896, 231896, 165, 165, 'Aban-Bhotar-Chi Assembly ''The Penumbral Spirit Hunter''', 229136), (232058, 232058, 172, 172, 'Aban-Bhotar-Chi Assembly ''The Peristaltic Abomination''', 229136), (232049, 232049, 172, 172, 'Aban-Bhotar-Chi Assembly ''The Peristaltic Aversion''', 229136), (232184, 232184, 165, 165, 'Aban-Bhotar-Chi Assembly ''The Proprietrix''', 229136), (231761, 231761, 125, 125, 'Aban-Bhotar-Chi Assembly ''The Scheolian Soul Dredge''', 229136), (239630, 239630, 185, 185, 'Aban-Bhotar-Chi Assembly ''The Stupendous Breeder''', 229136), (231473, 231473, 90, 90, 'Aban-Bhotar-Chi Assembly ''The Talus Suzerain''', 229136), (232157, 232157, 165, 165, 'Aban-Bhotar-Chi Assembly ''The Watchdog''', 229136), (231977, 231977, 202, 202, 'Aban-Bhotar-Chi Assembly ''The Worm King''', 229136), (231716, 231716, 125, 125, 'Aban-Bhotar-Chi Assembly ''Thunderous Chimera''', 229136), (232112, 232112, 195, 195, 'Aban-Bhotar-Chi Assembly ''Toss''', 229136), (231680, 231680, 125, 125, 'Aban-Bhotar-Chi Assembly ''Tough''', 229136), (231482, 231482, 90, 90, 'Aban-Bhotar-Chi Assembly ''Ungulera''', 229136), (242524, 242524, 170, 170, 'Aban-Bhotar-Chi Assembly ''Unredeemed Dalja''', 229136), (232624, 234448, 200, 255, 'Aban-Bhotar-Chi Assembly ''Unredeemed Lord Mordeth''', 229136), (242506, 242506, 140, 140, 'Aban-Bhotar-Chi Assembly ''Unredeemed Roch''', 229136), (242551, 242551, 200, 200, 'Aban-Bhotar-Chi Assembly ''Unredeemed Vanya''', 229136), (239712, 239712, 48, 48, 'Aban-Bhotar-Chi Assembly ''Upenpet''', 229136), (234176, 234176, 220, 220, 'Aban-Bhotar-Chi Assembly ''Ushqa''', 229136), (232606, 232606, 200, 200, 'Aban-Bhotar-Chi Assembly ''Vanya''', 229136), (232139, 232139, 165, 165, 'Aban-Bhotar-Chi Assembly ''Viscious Visitant''', 229136), (231698, 231698, 125, 125, 'Aban-Bhotar-Chi Assembly ''Wacky Suzerain''', 229136), (239585, 239585, 50, 50, 'Aban-Bhotar-Chi Assembly ''Wala''', 229136), (234113, 234113, 220, 220, 'Aban-Bhotar-Chi Assembly ''Waqa''', 229136), (242657, 242657, 135, 135, 'Aban-Bhotar-Chi Assembly ''Weary Empath Min-Ji Liu''', 229136), (231788, 231788, 120, 120, 'Aban-Bhotar-Chi Assembly ''White''', 229136), (234342, 234342, 255, 255, 'Aban-Bhotar-Chi Assembly ''Xark the Battletoad''', 229136), (231959, 231959, 180, 180, 'Aban-Bhotar-Chi Assembly ''Zoetic Oak''', 229136), (294007, 294007, 275, 275, 'Aban-Bhotar-Chi Assembly of ''Wistful Apparition''', 294179), (280717, 280717, 300, 300, 'Abandonment of the Xan', 280914), (302319, 302319, 1, 1, 'Abeadan''s T-shirt', 302303), (302320, 302320, 1, 1, 'Abeadan''s T-shirt Spawner', 302303), (200055, 200056, 220, 225, 'Abereeji Nippon-Tech Armor', 96106), (200076, 200077, 220, 225, 'Abereeji Nippon-Tech Armor Boots', 13275), (200097, 200098, 220, 225, 'Abereeji Nippon-Tech Armor Gloves', 13287), (200118, 200119, 220, 225, 'Abereeji Nippon-Tech Armor Helmet', 96140), (200139, 200140, 220, 225, 'Abereeji Nippon-Tech Armor Pants', 13305), (200160, 200161, 220, 225, 'Abereeji Nippon-Tech Armor Sleeves', 13237), (200181, 200182, 220, 225, 'Abereeji Nippon-Tech Body Armor', 13258), (242687, 242687, 125, 125, 'Abhan Pattern ''Adobe Suzerain''', 229134), (242781, 242781, 220, 220, 'Abhan Pattern ''Aesma Daeva''', 229134), (242770, 242770, 255, 255, 'Abhan Pattern ''Agent of Decay''', 229134), (242767, 242767, 255, 255, 'Abhan Pattern ''Agent of Putrefaction''', 229134), (242771, 242771, 220, 220, 'Abhan Pattern ''Ahpta''', 229134), (242735, 242735, 188, 188, 'Abhan Pattern ''Alatyr''', 229134), (242778, 242778, 255, 255, 'Abhan Pattern ''Anansi', 229134), (242793, 242793, 255, 255, 'Abhan Pattern ''Anansi''', 229134), (242809, 242809, 30, 30, 'Abhan Pattern ''Anarir''', 229134), (242724, 242724, 185, 185, 'Abhan Pattern ''Anya''', 229134), (242737, 242737, 210, 210, 'Abhan Pattern ''Aray''', 229134), (242788, 242788, 255, 255, 'Abhan Pattern ''Arch Bigot Aliel''', 229134), (242782, 242782, 220, 220, 'Abhan Pattern ''Arch Bigot Biap''', 229134), (242786, 242786, 255, 255, 'Abhan Pattern ''Arch Bigot Lohel''', 229134), (242672, 242672, 200, 200, 'Abhan Pattern ''Arch Demon of Inferno''', 229134), (242710, 242710, 125, 125, 'Abhan Pattern ''Argil Suzerain''', 229134), (242787, 242787, 255, 255, 'Abhan Pattern ''Asase Ya''', 229134), (242695, 242695, 125, 125, 'Abhan Pattern ''Ashmara Ravin''', 229134), (242784, 242784, 220, 220, 'Abhan Pattern ''Ats', 229134), (242689, 242689, 125, 125, 'Abhan Pattern ''Auger''', 229134), (242690, 242690, 125, 125, 'Abhan Pattern ''Awl''', 229134), (242730, 242730, 185, 185, 'Abhan Pattern ''Bagaspati''', 229134), (242692, 242692, 125, 125, 'Abhan Pattern ''Beatific Spirit''', 229134), (242709, 242709, 125, 125, 'Abhan Pattern ''Bellowing Chimera''', 229134), (242702, 242702, 125, 125, 'Abhan Pattern ''Bhinaji Navi''', 229134), (242776, 242776, 255, 255, 'Abhan Pattern ''Bia''', 229134), (242675, 242675, 80, 80, 'Abhan Pattern ''Black Fang''', 229134), (242698, 242698, 125, 125, 'Abhan Pattern ''Blight''', 229134), (242691, 242691, 125, 125, 'Abhan Pattern ''Borer''', 229134), (242731, 242731, 178, 178, 'Abhan Pattern ''Breaker Teuvo''', 229134), (242729, 242729, 175, 175, 'Abhan Pattern ''Brutal Rafter''', 229134), (242679, 242679, 85, 85, 'Abhan Pattern ''Brutal Soul Dredge''', 229134), (242801, 242801, 40, 40, 'Abhan Pattern ''Canceroid Cupid''', 229134), (242789, 242789, 220, 220, 'Abhan Pattern ''Captured Spirit''', 229134), (242803, 242803, 45, 45, 'Abhan Pattern ''Careening Blight''', 229134), (242804, 242804, 45, 45, 'Abhan Pattern ''Careening Death''', 229134), (242753, 242753, 195, 195, 'Abhan Pattern ''Churn''', 229134), (242678, 242678, 85, 85, 'Abhan Pattern ''Circumbendibum''', 229134), (242674, 242674, 80, 80, 'Abhan Pattern ''Circumbendibus''', 229134), (242701, 242701, 125, 125, 'Abhan Pattern ''Contorted Soul Dredge''', 229134), (242720, 242720, 220, 220, 'Abhan Pattern ''Defiler of Scheol''', 229134), (242722, 242722, 220, 220, 'Abhan Pattern ''Destroyer of Scheol''', 229134), (242721, 242721, 220, 220, 'Abhan Pattern ''Devastator of Scheol''', 229134), (242719, 242719, 205, 205, 'Abhan Pattern ''Devourer of Scheol''', 229134), (242666, 242666, 150, 150, 'Abhan Pattern ''Diviner Gil Kald-Thar''', 229134), (242812, 242812, 180, 180, 'Abhan Pattern ''Eidolean Soul Dredge''', 229134), (242817, 242817, 220, 220, 'Abhan Pattern ''Exsequiae''', 229134), (242769, 242769, 220, 220, 'Abhan Pattern ''Fester Leila''', 229134), (242705, 242705, 125, 125, 'Abhan Pattern ''Flinty''', 229134), (242813, 242813, 188, 188, 'Abhan Pattern ''Glitter''', 229134), (242684, 242684, 115, 115, 'Abhan Pattern ''Gracious Soul Dredge''', 229134), (242707, 242707, 125, 125, 'Abhan Pattern ''Gunk''', 229134), (242738, 242738, 210, 210, 'Abhan Pattern ''Hadur''', 229134), (242773, 242773, 220, 220, 'Abhan Pattern ''Haqa''', 229134), (242699, 242699, 125, 125, 'Abhan Pattern ''Hemut''', 229134), (242816, 242816, 220, 220, 'Abhan Pattern ''Ho''', 229134), (242686, 242686, 125, 125, 'Abhan Pattern ''Ignis Fatui''', 229134), (242693, 242693, 125, 125, 'Abhan Pattern ''Ignis Fatuus''', 229134), (242739, 242739, 182, 182, 'Abhan Pattern ''Imk', 229134), (242665, 242665, 160, 160, 'Abhan Pattern ''Infernal Demon''', 229134), (242688, 242688, 125, 125, 'Abhan Pattern ''Iunmin''', 229134), (242740, 242740, 182, 182, 'Abhan Pattern ''Juma''', 229134), (242764, 242764, 220, 220, 'Abhan Pattern ''K', 229134), (242741, 242741, 182, 182, 'Abhan Pattern ''Kaleva''', 229134), (242714, 242714, 125, 125, 'Abhan Pattern ''Kaoline Suzerain''', 229134), (242700, 242700, 125, 125, 'Abhan Pattern ''Khemhet''', 229134), (242671, 242671, 200, 200, 'Abhan Pattern ''Lady Genevra Di’Venague''', 229134), (242696, 242696, 125, 125, 'Abhan Pattern ''Lethargic Spirit''', 229134), (242711, 242711, 125, 125, 'Abhan Pattern ''Loessial Suzerain''', 229134), (242815, 242815, 125, 125, 'Abhan Pattern ''Loltonunon''', 229134), (242747, 242747, 165, 165, 'Abhan Pattern ''Lurky''', 229134), (242777, 242777, 220, 220, 'Abhan Pattern ''Lya''', 229134), (242800, 242800, 40, 40, 'Abhan Pattern ''Malah-Animus''', 229134), (242799, 242799, 40, 40, 'Abhan Pattern ''Malah-At''', 229134), (242798, 242798, 40, 40, 'Abhan Pattern ''Malah-Auris''', 229134), (242805, 242805, 25, 25, 'Abhan Pattern ''Maledicta''', 229134), (242694, 242694, 125, 125, 'Abhan Pattern ''Marem''', 229134), (242703, 242703, 125, 125, 'Abhan Pattern ''Marly Suzerain''', 229134), (242807, 242807, 50, 50, 'Abhan Pattern ''Mawi''', 229134), (242697, 242697, 125, 125, 'Abhan Pattern ''Misery''', 229134), (242749, 242749, 165, 165, 'Abhan Pattern ''Moochy''', 229134), (242727, 242727, 215, 215, 'Abhan Pattern ''Morrow''', 229134), (242795, 242795, 255, 255, 'Abhan Pattern ''Nyame''', 229134), (242794, 242794, 220, 220, 'Abhan Pattern ''Odqan''', 229134), (242742, 242742, 165, 165, 'Abhan Pattern ''Old Salty''', 229134), (242712, 242712, 125, 125, 'Abhan Pattern ''Ooze''', 229134), (242780, 242780, 220, 220, 'Abhan Pattern ''Pazuzu''', 229134), (242752, 242752, 195, 195, 'Abhan Pattern ''Quake''', 229134), (242726, 242726, 215, 215, 'Abhan Pattern ''Quondam''', 229134), (242785, 242785, 235, 235, 'Abhan Pattern ''Rallies Fete''', 229134), (242791, 242791, 255, 255, 'Abhan Pattern ''Razor the Battletoad''', 229134), (242667, 242667, 200, 200, 'Abhan Pattern ''Redeemed Cama''', 229134), (242663, 242663, 170, 170, 'Abhan Pattern ''Redeemed Gilthar''', 229134), (242669, 242669, 255, 255, 'Abhan Pattern ''Redeemed Lord Galahad''', 229134), (242661, 242661, 140, 140, 'Abhan Pattern ''Redeemed Ocra''', 229134), (242766, 242766, 220, 220, 'Abhan Pattern ''Relief Teals''', 229134), (242802, 242802, 35, 35, 'Abhan Pattern ''Sabretooth Slicer''', 229134), (242723, 242723, 185, 185, 'Abhan Pattern ''Sampsa''', 229134), (242775, 242775, 220, 220, 'Abhan Pattern ''Sasabonsam''', 229134), (242763, 242763, 220, 220, 'Abhan Pattern ''Sashu''', 229134), (242814, 242814, 125, 125, 'Abhan Pattern ''Satkamear''', 229134), (242808, 242808, 50, 50, 'Abhan Pattern ''Sawi''', 229134), (242676, 242676, 80, 80, 'Abhan Pattern ''Scratch''', 229134), (242677, 242677, 80, 80, 'Abhan Pattern ''Screech''', 229134), (242762, 242750, 192, 195, 'Abhan Pattern ''Shake''', 229134), (242761, 242761, 192, 192, 'Abhan Pattern ''Shiver''', 229134), (242792, 242792, 255, 255, 'Abhan Pattern ''Shullat''', 229134), (242673, 242673, 80, 80, 'Abhan Pattern ''Silver Fang''', 229134), (242748, 242748, 165, 165, 'Abhan Pattern ''Skulky''', 229134), (242746, 242746, 165, 165, 'Abhan Pattern ''Slinky''', 229134), (242743, 242743, 165, 165, 'Abhan Pattern ''Smee''', 229134), (242685, 242685, 115, 115, 'Abhan Pattern ''Spiritless Soul Dredge''', 229134), (242733, 242733, 180, 180, 'Abhan Pattern ''Srahir''', 229134), (242774, 242774, 220, 220, 'Abhan Pattern ''Taille Frees''', 229134), (242819, 242819, 48, 48, 'Abhan Pattern ''Tcheser''', 229134), (242796, 242796, 160, 160, 'Abhan Pattern ''The Abysmal Lord''', 229134), (242760, 242760, 165, 165, 'Abhan Pattern ''The Abyssal Widow''', 229134), (242818, 242818, 120, 120, 'Abhan Pattern ''The Achbile Guardian''', 229134), (242755, 242755, 165, 165, 'Abhan Pattern ''The Adonian Soul Dredge''', 229134), (242758, 242758, 165, 165, 'Abhan Pattern ''The Adonis Spirit Master''', 229134), (242715, 242715, 120, 120, 'Abhan Pattern ''The Archbile Queen''', 229134), (242810, 242810, 185, 185, 'Abhan Pattern ''The Brobdingnagian Mother''', 229134), (242757, 242757, 165, 165, 'Abhan Pattern ''The Dredge Driver''', 229134), (242779, 242779, 220, 220, 'Abhan Pattern ''The Dryad Demigod''', 229134), (242732, 242732, 185, 185, 'Abhan Pattern ''The Dryad Shuffle''', 229134), (242680, 242680, 90, 90, 'Abhan Pattern ''The Dune Suzerain''', 229134), (242683, 242683, 90, 90, 'Abhan Pattern ''The Elysian Soul Dredge''', 229134), (242718, 242718, 120, 120, 'Abhan Pattern ''The Enrapt One''', 229134), (242821, 242821, 210, 210, 'Abhan Pattern ''The Great Ice Golem''', 229134), (242783, 242783, 220, 220, 'Abhan Pattern ''The Indomitable Chimera''', 229134), (242797, 242797, 220, 220, 'Abhan Pattern ''The Infernal Soul Dredge''', 229134), (242725, 242725, 205, 205, 'Abhan Pattern ''The Maggot Lord''', 229134), (242768, 242768, 255, 255, 'Abhan Pattern ''The Mortificator''', 229134), (242717, 242717, 120, 120, 'Abhan Pattern ''The Numb One''', 229134), (242728, 242728, 165, 165, 'Abhan Pattern ''The Penumbral Spirit Hunter''', 229134), (242745, 242745, 172, 172, 'Abhan Pattern ''The Peristaltic Abomination''', 229134), (242744, 242744, 172, 172, 'Abhan Pattern ''The Peristaltic Aversion''', 229134), (242759, 242759, 165, 165, 'Abhan Pattern ''The Proprietrix''', 229134), (242713, 242713, 125, 125, 'Abhan Pattern ''The Scheolian Soul Dredge''', 229134), (242811, 242811, 185, 185, 'Abhan Pattern ''The Stupendous Breeder''', 229134), (242681, 242681, 90, 90, 'Abhan Pattern ''The Talus Suzerain''', 229134), (242756, 242756, 165, 165, 'Abhan Pattern ''The Watchdog''', 229134), (242736, 242736, 202, 202, 'Abhan Pattern ''The Worm King''', 229134), (242708, 242708, 125, 125, 'Abhan Pattern ''Thunderous Chimera''', 229134), (242751, 242751, 195, 195, 'Abhan Pattern ''Toss''', 229134), (242704, 242704, 125, 125, 'Abhan Pattern ''Tough''', 229134), (242682, 242682, 90, 90, 'Abhan Pattern ''Ungulera''', 229134), (242664, 242664, 170, 170, 'Abhan Pattern ''Unredeemed Dalja''', 229134), (242670, 242670, 255, 255, 'Abhan Pattern ''Unredeemed Lord Mordeth''', 229134), (242662, 242662, 140, 140, 'Abhan Pattern ''Unredeemed Roch''', 229134), (242668, 242668, 200, 200, 'Abhan Pattern ''Unredeemed Vanya''', 229134), (242820, 242820, 48, 48, 'Abhan Pattern ''Upenpet''', 229134), (242772, 242772, 220, 220, 'Abhan Pattern ''Ushqa''', 229134), (242754, 242754, 165, 165, 'Abhan Pattern ''Viscious Visitant''', 229134), (242706, 242706, 125, 125, 'Abhan Pattern ''Wacky Suzerain''', 229134), (242806, 242806, 50, 50, 'Abhan Pattern ''Wala''', 229134), (242765, 242765, 220, 220, 'Abhan Pattern ''Waqa''', 229134), (242652, 242652, 135, 135, 'Abhan Pattern ''Weary Empath Min-Ji Liu''', 229134), (242716, 242716, 120, 120, 'Abhan Pattern ''White''', 229134), (242790, 242790, 255, 255, 'Abhan Pattern ''Xark the Battletoad''', 229134), (242734, 242734, 180, 180, 'Abhan Pattern ''Zoetic Oak''', 229134), (211191, 211192, 1, 299, 'Abhorrent Hammer', 33167), (152087, 152088, 61, 90, 'Abigail', 13314), (153580, 153580, 1, 1, 'Abigail Construction Manual', 37933), (277042, 277043, 1, 199, 'Abilities NCU - Type 01 (1/6)', 276924), (277044, 277045, 200, 299, 'Abilities NCU - Type 01 (1/6)', 276924), (277046, 277046, 300, 300, 'Abilities NCU - Type 01 (1/6)', 276924), (277047, 277048, 1, 199, 'Abilities NCU - Type 02 (1/6)', 276924), (277049, 277050, 200, 299, 'Abilities NCU - Type 02 (1/6)', 276924), (277051, 277051, 300, 300, 'Abilities NCU - Type 02 (1/6)', 276924), (277057, 277058, 1, 199, 'Abilities NCU - Type 03 (2/6)', 276925), (277059, 277060, 200, 299, 'Abilities NCU - Type 03 (2/6)', 276925), (277061, 277061, 300, 300, 'Abilities NCU - Type 03 (2/6)', 276925), (277052, 277053, 1, 199, 'Abilities NCU - Type 04 (1/6)', 276924), (277054, 277055, 200, 299, 'Abilities NCU - Type 04 (1/6)', 276924), (277056, 277056, 300, 300, 'Abilities NCU - Type 04 (1/6)', 276924), (277062, 277063, 1, 199, 'Abilities NCU - Type 05 (2/6)', 276925), (277064, 277065, 200, 299, 'Abilities NCU - Type 05 (2/6)', 276925), (277066, 277066, 300, 300, 'Abilities NCU - Type 05 (2/6)', 276925), (277208, 277209, 1, 199, 'Abilities NCU - Type 06 (2/6)', 276925), (277210, 277211, 200, 299, 'Abilities NCU - Type 06 (2/6)', 276925), (277212, 277212, 300, 300, 'Abilities NCU - Type 06 (2/6)', 276925), (277072, 277073, 1, 199, 'Abilities NCU - Type 07 (3/6)', 276926), (277074, 277075, 200, 299, 'Abilities NCU - Type 07 (3/6)', 276926), (277076, 277076, 300, 300, 'Abilities NCU - Type 07 (3/6)', 276926), (277183, 277184, 1, 199, 'Abilities NCU - Type 08 (1/6)', 276924), (277185, 277186, 200, 299, 'Abilities NCU - Type 08 (1/6)', 276924), (277187, 277187, 300, 300, 'Abilities NCU - Type 08 (1/6)', 276924), (277067, 277068, 1, 199, 'Abilities NCU - Type 09 (2/6)', 276925), (277069, 277070, 200, 299, 'Abilities NCU - Type 09 (2/6)', 276925), (277071, 277071, 300, 300, 'Abilities NCU - Type 09 (2/6)', 276925), (277213, 277214, 1, 199, 'Abilities NCU - Type 0A (2/6)', 276925), (277215, 277216, 200, 299, 'Abilities NCU - Type 0A (2/6)', 276925), (277217, 277217, 300, 300, 'Abilities NCU - Type 0A (2/6)', 276925), (277077, 277078, 1, 199, 'Abilities NCU - Type 0B (3/6)', 276926), (277079, 277080, 200, 299, 'Abilities NCU - Type 0B (3/6)', 276926), (277081, 277081, 300, 300, 'Abilities NCU - Type 0B (3/6)', 276926), (277228, 277229, 1, 199, 'Abilities NCU - Type 0C (2/6)', 276925), (277230, 277231, 200, 299, 'Abilities NCU - Type 0C (2/6)', 276925), (277232, 277232, 300, 300, 'Abilities NCU - Type 0C (2/6)', 276925), (277092, 277093, 1, 199, 'Abilities NCU - Type 0D (3/6)', 276926), (277094, 277095, 200, 299, 'Abilities NCU - Type 0D (3/6)', 276926), (277096, 277096, 300, 300, 'Abilities NCU - Type 0D (3/6)', 276926), (277282, 277283, 1, 199, 'Abilities NCU - Type 0E (3/6)', 276926), (277284, 277285, 200, 299, 'Abilities NCU - Type 0E (3/6)', 276926), (277286, 277286, 300, 300, 'Abilities NCU - Type 0E (3/6)', 276926), (277102, 277103, 1, 199, 'Abilities NCU - Type 0F (4/6)', 276927), (277104, 277105, 200, 299, 'Abilities NCU - Type 0F (4/6)', 276927), (277106, 277106, 300, 300, 'Abilities NCU - Type 0F (4/6)', 276927), (277188, 277189, 1, 199, 'Abilities NCU - Type 10 (1/6)', 276924), (277190, 277191, 200, 299, 'Abilities NCU - Type 10 (1/6)', 276924), (277192, 277192, 300, 300, 'Abilities NCU - Type 10 (1/6)', 276924), (277198, 277199, 1, 199, 'Abilities NCU - Type 11 (2/6)', 276925), (277200, 277201, 200, 299, 'Abilities NCU - Type 11 (2/6)', 276925), (277202, 277202, 300, 300, 'Abilities NCU - Type 11 (2/6)', 276925), (277218, 277219, 1, 199, 'Abilities NCU - Type 12 (2/6)', 276925), (277220, 277221, 200, 299, 'Abilities NCU - Type 12 (2/6)', 276925), (277222, 277222, 300, 300, 'Abilities NCU - Type 12 (2/6)', 276925), (277082, 277083, 1, 199, 'Abilities NCU - Type 13 (3/6)', 276926), (277084, 277085, 200, 299, 'Abilities NCU - Type 13 (3/6)', 276926), (277086, 277086, 300, 300, 'Abilities NCU - Type 13 (3/6)', 276926), (277233, 277234, 1, 199, 'Abilities NCU - Type 14 (2/6)', 276925), (277235, 277236, 200, 299, 'Abilities NCU - Type 14 (2/6)', 276925), (277237, 277237, 300, 300, 'Abilities NCU - Type 14 (2/6)', 276925), (277097, 277098, 1, 199, 'Abilities NCU - Type 15 (3/6)', 276926), (277099, 277100, 200, 299, 'Abilities NCU - Type 15 (3/6)', 276926), (277101, 277101, 300, 300, 'Abilities NCU - Type 15 (3/6)', 276926), (277287, 277288, 1, 199, 'Abilities NCU - Type 16 (3/6)', 276926), (277289, 277290, 200, 299, 'Abilities NCU - Type 16 (3/6)', 276926), (277291, 277291, 300, 300, 'Abilities NCU - Type 16 (3/6)', 276926), (277107, 277108, 1, 199, 'Abilities NCU - Type 17 (4/6)', 276927), (277109, 277110, 200, 299, 'Abilities NCU - Type 17 (4/6)', 276927), (277111, 277111, 300, 300, 'Abilities NCU - Type 17 (4/6)', 276927), (277243, 277244, 1, 199, 'Abilities NCU - Type 18 (2/6)', 276925), (277245, 277246, 200, 299, 'Abilities NCU - Type 18 (2/6)', 276925), (277247, 277247, 300, 300, 'Abilities NCU - Type 18 (2/6)', 276925), (277267, 277268, 1, 199, 'Abilities NCU - Type 19 (3/6)', 276926), (277269, 277270, 200, 299, 'Abilities NCU - Type 19 (3/6)', 276926), (277271, 277271, 300, 300, 'Abilities NCU - Type 19 (3/6)', 276926), (277297, 277298, 1, 199, 'Abilities NCU - Type 1A (3/6)', 276926), (277299, 277300, 200, 299, 'Abilities NCU - Type 1A (3/6)', 276926), (277301, 277301, 300, 300, 'Abilities NCU - Type 1A (3/6)', 276926), (277117, 277118, 1, 199, 'Abilities NCU - Type 1B (4/6)', 276927), (277119, 277120, 200, 299, 'Abilities NCU - Type 1B (4/6)', 276927), (277121, 277121, 300, 300, 'Abilities NCU - Type 1B (4/6)', 276927), (277312, 277313, 1, 199, 'Abilities NCU - Type 1C (3/6)', 276926), (277314, 277315, 200, 299, 'Abilities NCU - Type 1C (3/6)', 276926), (277316, 277316, 300, 300, 'Abilities NCU - Type 1C (3/6)', 276926), (277332, 277333, 1, 199, 'Abilities NCU - Type 1D (4/6)', 276927), (277334, 277335, 200, 299, 'Abilities NCU - Type 1D (4/6)', 276927), (277336, 277336, 300, 300, 'Abilities NCU - Type 1D (4/6)', 276927), (277352, 277353, 1, 199, 'Abilities NCU - Type 1E (4/6)', 276927), (277354, 277355, 200, 299, 'Abilities NCU - Type 1E (4/6)', 276927), (277356, 277356, 300, 300, 'Abilities NCU - Type 1E (4/6)', 276927), (277132, 277133, 1, 199, 'Abilities NCU - Type 1F (5/6)', 276928), (277134, 277135, 200, 299, 'Abilities NCU - Type 1F (5/6)', 276928), (277136, 277136, 300, 300, 'Abilities NCU - Type 1F (5/6)', 276928), (277193, 277194, 1, 199, 'Abilities NCU - Type 20 (1/6)', 276924), (277195, 277196, 200, 299, 'Abilities NCU - Type 20 (1/6)', 276924), (277197, 277197, 300, 300, 'Abilities NCU - Type 20 (1/6)', 276924), (277203, 277204, 1, 199, 'Abilities NCU - Type 21 (2/6)', 276925), (277205, 277206, 200, 299, 'Abilities NCU - Type 21 (2/6)', 276925), (277207, 277207, 300, 300, 'Abilities NCU - Type 21 (2/6)', 276925), (277223, 277224, 1, 199, 'Abilities NCU - Type 22 (2/6)', 276925), (277225, 277226, 200, 299, 'Abilities NCU - Type 22 (2/6)', 276925), (277227, 277227, 300, 300, 'Abilities NCU - Type 22 (2/6)', 276925), (277087, 277088, 1, 199, 'Abilities NCU - Type 23 (3/6)', 276926), (277089, 277090, 200, 299, 'Abilities NCU - Type 23 (3/6)', 276926), (277091, 277091, 300, 300, 'Abilities NCU - Type 23 (3/6)', 276926), (277238, 277239, 1, 199, 'Abilities NCU - Type 24 (2/6)', 276925), (277240, 277241, 200, 299, 'Abilities NCU - Type 24 (2/6)', 276925), (277242, 277242, 300, 300, 'Abilities NCU - Type 24 (2/6)', 276925), (277262, 277263, 1, 199, 'Abilities NCU - Type 25 (3/6)', 276926), (277264, 277265, 200, 299, 'Abilities NCU - Type 25 (3/6)', 276926), (277266, 277266, 300, 300, 'Abilities NCU - Type 25 (3/6)', 276926), (277292, 277293, 1, 199, 'Abilities NCU - Type 26 (3/6)', 276926), (277294, 277295, 200, 299, 'Abilities NCU - Type 26 (3/6)', 276926), (277296, 277296, 300, 300, 'Abilities NCU - Type 26 (3/6)', 276926), (277112, 277113, 1, 199, 'Abilities NCU - Type 27 (4/6)', 276927), (277114, 277115, 200, 299, 'Abilities NCU - Type 27 (4/6)', 276927), (277116, 277116, 300, 300, 'Abilities NCU - Type 27 (4/6)', 276927), (277248, 277249, 1, 199, 'Abilities NCU - Type 28 (2/6)', 276925), (277250, 277251, 200, 299, 'Abilities NCU - Type 28 (2/6)', 276925), (277252, 277252, 300, 300, 'Abilities NCU - Type 28 (2/6)', 276925), (277272, 277273, 1, 199, 'Abilities NCU - Type 29 (3/6)', 276926), (277274, 277275, 200, 299, 'Abilities NCU - Type 29 (3/6)', 276926), (277276, 277276, 300, 300, 'Abilities NCU - Type 29 (3/6)', 276926), (277302, 277303, 1, 199, 'Abilities NCU - Type 2A (3/6)', 276926), (277304, 277305, 200, 299, 'Abilities NCU - Type 2A (3/6)', 276926), (277306, 277306, 300, 300, 'Abilities NCU - Type 2A (3/6)', 276926), (277122, 277123, 1, 199, 'Abilities NCU - Type 2B (4/6)', 276927), (277124, 277125, 200, 299, 'Abilities NCU - Type 2B (4/6)', 276927), (277126, 277126, 300, 300, 'Abilities NCU - Type 2B (4/6)', 276927), (277317, 277318, 1, 199, 'Abilities NCU - Type 2C (3/6)', 276926), (277319, 277320, 200, 299, 'Abilities NCU - Type 2C (3/6)', 276926), (277321, 277321, 300, 300, 'Abilities NCU - Type 2C (3/6)', 276926), (277337, 277338, 1, 199, 'Abilities NCU - Type 2D (4/6)', 276927), (277339, 277340, 200, 299, 'Abilities NCU - Type 2D (4/6)', 276927), (277341, 277341, 300, 300, 'Abilities NCU - Type 2D (4/6)', 276927), (277357, 277358, 1, 199, 'Abilities NCU - Type 2E (4/6)', 276927), (277359, 277360, 200, 299, 'Abilities NCU - Type 2E (4/6)', 276927), (277361, 277361, 300, 300, 'Abilities NCU - Type 2E (4/6)', 276927), (277137, 277138, 1, 199, 'Abilities NCU - Type 2F (5/6)', 276928), (277139, 277140, 200, 299, 'Abilities NCU - Type 2F (5/6)', 276928), (277141, 277141, 300, 300, 'Abilities NCU - Type 2F (5/6)', 276928), (277253, 277254, 1, 199, 'Abilities NCU - Type 30 (2/6)', 276925), (277255, 277256, 200, 299, 'Abilities NCU - Type 30 (2/6)', 276925), (277257, 277257, 300, 300, 'Abilities NCU - Type 30 (2/6)', 276925), (277277, 277278, 1, 199, 'Abilities NCU - Type 31 (3/6)', 276926), (277279, 277280, 200, 299, 'Abilities NCU - Type 31 (3/6)', 276926), (277281, 277281, 300, 300, 'Abilities NCU - Type 31 (3/6)', 276926), (277307, 277308, 1, 199, 'Abilities NCU - Type 32 (3/6)', 276926), (277309, 277310, 200, 299, 'Abilities NCU - Type 32 (3/6)', 276926), (277311, 277311, 300, 300, 'Abilities NCU - Type 32 (3/6)', 276926), (277127, 277128, 1, 199, 'Abilities NCU - Type 33 (4/6)', 276927), (277129, 277130, 200, 299, 'Abilities NCU - Type 33 (4/6)', 276927), (277131, 277131, 300, 300, 'Abilities NCU - Type 33 (4/6)', 276927), (277322, 277323, 1, 199, 'Abilities NCU - Type 34 (3/6)', 276926), (277324, 277325, 200, 299, 'Abilities NCU - Type 34 (3/6)', 276926), (277326, 277326, 300, 300, 'Abilities NCU - Type 34 (3/6)', 276926), (277342, 277343, 1, 199, 'Abilities NCU - Type 35 (4/6)', 276927), (277344, 277345, 200, 299, 'Abilities NCU - Type 35 (4/6)', 276927), (277346, 277346, 300, 300, 'Abilities NCU - Type 35 (4/6)', 276927), (277362, 277363, 1, 199, 'Abilities NCU - Type 36 (4/6)', 276927), (277364, 277365, 200, 299, 'Abilities NCU - Type 36 (4/6)', 276927), (277366, 277366, 300, 300, 'Abilities NCU - Type 36 (4/6)', 276927), (277142, 277143, 1, 199, 'Abilities NCU - Type 37 (5/6)', 276928), (277144, 277145, 200, 299, 'Abilities NCU - Type 37 (5/6)', 276928), (277146, 277146, 300, 300, 'Abilities NCU - Type 37 (5/6)', 276928), (277327, 277328, 1, 199, 'Abilities NCU - Type 38 (3/6)', 276926), (277329, 277330, 200, 299, 'Abilities NCU - Type 38 (3/6)', 276926), (277331, 277331, 300, 300, 'Abilities NCU - Type 38 (3/6)', 276926), (277347, 277348, 1, 199, 'Abilities NCU - Type 39 (4/6)', 276927), (277349, 277350, 200, 299, 'Abilities NCU - Type 39 (4/6)', 276927), (277351, 277351, 300, 300, 'Abilities NCU - Type 39 (4/6)', 276927), (277367, 277368, 1, 199, 'Abilities NCU - Type 3A (4/6)', 276927), (277369, 277370, 200, 299, 'Abilities NCU - Type 3A (4/6)', 276927), (277371, 277371, 300, 300, 'Abilities NCU - Type 3A (4/6)', 276927), (277147, 277148, 1, 199, 'Abilities NCU - Type 3B (5/6)', 276928), (277149, 277150, 200, 299, 'Abilities NCU - Type 3B (5/6)', 276928), (277151, 277151, 300, 300, 'Abilities NCU - Type 3B (5/6)', 276928), (277372, 277373, 1, 199, 'Abilities NCU - Type 3C (4/6)', 276927), (277374, 277375, 200, 299, 'Abilities NCU - Type 3C (4/6)', 276927), (277376, 277376, 300, 300, 'Abilities NCU - Type 3C (4/6)', 276927), (277152, 277153, 1, 199, 'Abilities NCU - Type 3D (5/6)', 276928), (277154, 277155, 200, 299, 'Abilities NCU - Type 3D (5/6)', 276928), (277156, 277156, 300, 300, 'Abilities NCU - Type 3D (5/6)', 276928), (277157, 277158, 1, 199, 'Abilities NCU - Type 3E (5/6)', 276928), (277159, 277160, 200, 299, 'Abilities NCU - Type 3E (5/6)', 276928), (277161, 277161, 300, 300, 'Abilities NCU - Type 3E (5/6)', 276928), (277162, 277163, 1, 199, 'Abilities NCU - Type 3F (6/6)', 276929), (277164, 277165, 200, 299, 'Abilities NCU - Type 3F (6/6)', 276929), (277166, 277166, 300, 300, 'Abilities NCU - Type 3F (6/6)', 276929), (159074, 159074, 3, 3, 'Able Seaman - Sugarfree Rum', 37934), (199691, 199691, 290, 290, 'Abnormal Nadir Homage Armor Boots', 22876), (199712, 199712, 290, 290, 'Abnormal Nadir Homage Armor Gloves', 22931), (199733, 199733, 290, 290, 'Abnormal Nadir Homage Armor Helmet', 31733), (199754, 199754, 290, 290, 'Abnormal Nadir Homage Armor Pants', 22914), (199775, 199775, 290, 290, 'Abnormal Nadir Homage Armor Sleeves', 22960), (199796, 199796, 290, 290, 'Abnormal Nadir Homage Body Armor', 22985), (163560, 163560, 1, 1, 'About as much enigma fibers as you can carry', 163575), (199678, 199678, 225, 225, 'Above Average Nadir Homage Armor Boots', 22876), (199699, 199699, 225, 225, 'Above Average Nadir Homage Armor Gloves', 22931), (199720, 199720, 225, 225, 'Above Average Nadir Homage Armor Helmet', 31733), (199741, 199741, 225, 225, 'Above Average Nadir Homage Armor Pants', 22914), (199762, 199762, 225, 225, 'Above Average Nadir Homage Armor Sleeves', 22960), (199783, 199783, 225, 225, 'Above Average Nadir Homage Body Armor', 22985), (157380, 157380, 1, 1, 'Above Seventeen Hare Advantage', 81775), (163561, 163561, 1, 1, 'Absolutely as much enigma fibers as you can carry', 163575), (206058, 206058, 1, 1, 'Abyssal Desecrator', 204827), (226128, 226129, 1, 500, 'Accelerate Decaying Quarks', 239175), (226130, 226131, 1, 500, 'Accelerate Decaying Quarks', 239175), (226132, 226133, 1, 500, 'Accelerate Decaying Quarks', 239175), (164603, 164604, 1, 19, 'Accelerated NCU Memory', 13367), (164604, 164605, 20, 39, 'Accelerated NCU Memory', 13367), (164605, 164606, 40, 49, 'Accelerated NCU Memory', 13367), (164606, 164607, 50, 119, 'Accelerated NCU Memory', 13367), (164607, 164608, 120, 200, 'Accelerated NCU Memory', 13367), (32534, 32534, 1, 1, 'Access Card', 99179), (249721, 249721, 1, 1, 'Access Card - Borealis', 149945), (249718, 249718, 1, 1, 'Access Card - Rome Blue', 149945), (249699, 249699, 1, 1, 'Access Card - West Athens', 149945), (227312, 227312, 1, 1, 'Access Notum Source', 239189), (267047, 267047, 1, 1, 'Accomplished Victory Transfer', 259105), (260673, 260673, 205, 205, 'Accurate Wen-Wen', 268035), (303000, 303000, 300, 300, 'Achaean Conqueror', 210184), (236138, 236138, 1, 1, 'Achromic Ring', 84064), (226065, 226065, 1, 1, 'Achromic Ring for the Artillery Unit', 151932), (226066, 226066, 1, 1, 'Achromic Ring for the Control Unit', 151932), (226067, 226067, 1, 1, 'Achromic Ring for the Extermination Unit', 151932), (226068, 226068, 1, 1, 'Achromic Ring for the Infantry Unit', 151932), (226069, 226069, 1, 1, 'Achromic Ring for the Support Unit', 151932), (267743, 267743, 250, 250, 'Acid Gland Sample', 144703), (260731, 260731, 200, 200, 'Acid Splash Special', 233215), (305466, 305466, 1, 1, 'Acolyte Purified Robe', 159573), (204763, 204763, 1, 1, 'Acolyte Robe', 159573), (161702, 161702, 1, 1, 'Acolyte Robe (monster wear)', 159573), (152366, 152366, 200, 200, 'Acroblade of Eternal Glory', 113986), (257960, 257960, 250, 250, 'Action Probability Estimator', 203502), (280757, 280757, 1, 1, 'Activated Adventurer Nanodeck', 281042), (280758, 280758, 1, 1, 'Activated Agent Nanodeck', 281042), (267750, 267750, 250, 250, 'Activated Ancient Engineering Device', 156094), (280759, 280759, 1, 1, 'Activated Bureaucrat Nanodeck', 281042), (280756, 280756, 1, 1, 'Activated Doctor Nanodeck', 281042), (280760, 280760, 1, 1, 'Activated Enforcer Nanodeck', 281042), (280761, 280761, 1, 1, 'Activated Engineer Nanodeck', 281042), (280762, 280762, 1, 1, 'Activated Fixer Nanodeck', 281042), (280763, 280763, 1, 1, 'Activated Keeper Nanodeck', 281042), (280764, 280764, 1, 1, 'Activated Martial Artist Nanodeck', 281042), (280765, 280765, 1, 1, 'Activated Meta-Physicist Nanodeck', 281042), (280766, 280766, 1, 1, 'Activated Nano-Technician Nanodeck', 281042), (164953, 164954, 1, 200, 'Activated OT Metamorphing Liquid Nanobots', 156492), (287983, 287983, 1, 1, 'Activated Power Core', 12711), (280767, 280767, 1, 1, 'Activated Shade Nanodeck', 281042), (280768, 280768, 1, 1, 'Activated Soldier Nanodeck', 281042), (206065, 206065, 1, 1, 'Activated Soul Siphon', 149936), (280769, 280769, 1, 1, 'Activated Trader Nanodeck', 281042), (262225, 262225, 1, 1, 'Activation Code', 262224), (267747, 267747, 250, 250, 'Active Ancient Bracer', 290847), (267795, 267795, 250, 250, 'Active Ancient Circuit', 158233), (267914, 267914, 250, 250, 'Active Ancient Medical Device', 218774), (236309, 236309, 170, 170, 'Active Brain Symbiant, Control Unit Aban', 215189), (235859, 235859, 170, 170, 'Active Brain Symbiant, Extermination Unit Aban', 215189), (235468, 235468, 170, 170, 'Active Chest Symbiant, Artillery Unit Aban', 215181), (236360, 236360, 170, 170, 'Active Chest Symbiant, Control Unit Aban', 215183), (235911, 235911, 170, 170, 'Active Chest Symbiant, Extermination Unit Aban', 215181), (235689, 235689, 170, 170, 'Active Chest Symbiant, Infantry Unit Aban', 215181), (235436, 235436, 170, 170, 'Active Ear Symbiant, Artillery Unit Aban', 230977), (236325, 236325, 170, 170, 'Active Ear Symbiant, Control Unit Aban', 230977), (235657, 235657, 170, 170, 'Active Ear Symbiant, Infantry Unit Aban', 230977), (235607, 235607, 170, 170, 'Active Feet Symbiant, Artillery Unit Aban', 215185), (236050, 236050, 170, 170, 'Active Feet Symbiant, Extermination Unit Aban', 215186), (235827, 235827, 170, 170, 'Active Feet Symbiant, Infantry Unit Aban', 215187), (236277, 236277, 170, 170, 'Active Feet Symbiant, Support Unit Aban', 215187), (236376, 236376, 170, 170, 'Active Left Arm Symbiant, Control Unit Aban', 215177), (235929, 235929, 170, 170, 'Active Left Arm Symbiant, Extermination Unit Aban', 215175), (236264, 236264, 170, 170, 'Active Left Hand Symbiant, Support Unit Aban', 215171), (235979, 235979, 170, 170, 'Active Left Wrist Symbiant, Extermination Unit Aban', 215198), (219135, 219135, 170, 170, 'Active Ocular Symbiant, Artillery Unit Aban', 230979), (235843, 235843, 170, 170, 'Active Ocular Symbiant, Extermination Unit Aban', 230979), (236069, 236069, 170, 170, 'Active Ocular Symbiant, Support Unit Aban', 230980), (235894, 235894, 170, 170, 'Active Right Arm Symbiant, Extermination Unit Aban', 215178), (235673, 235673, 170, 170, 'Active Right Arm Symbiant, Infantry Unit Aban', 215180), (236116, 236116, 170, 170, 'Active Right Arm Symbiant, Support Unit Aban', 215178), (235556, 235556, 170, 170, 'Active Right Hand Symbiant, Artillery Unit Aban', 215173), (236450, 236450, 170, 170, 'Active Right Hand Symbiant, Control Unit Aban', 215173), (235999, 235999, 170, 170, 'Active Right Hand Symbiant, Extermination Unit Aban', 215173), (236230, 236230, 170, 170, 'Active Right Hand Symbiant, Support Unit Aban', 215174), (236394, 236394, 170, 170, 'Active Right Wrist Symbiant, Control Unit Aban', 215170), (235949, 235949, 170, 170, 'Active Right Wrist Symbiant, Extermination Unit Aban', 215170), (236178, 236178, 170, 170, 'Active Right Wrist Symbiant, Support Unit Aban', 215197), (236466, 236466, 170, 170, 'Active Thigh Symbiant, Control Unit Aban', 215191), (236017, 236017, 170, 170, 'Active Thigh Symbiant, Extermination Unit Aban', 215192), (235792, 235792, 170, 170, 'Active Thigh Symbiant, Infantry Unit Aban', 215191), (236244, 236244, 170, 170, 'Active Thigh Symbiant, Support Unit Aban', 215190), (283784, 283784, 1, 1, 'Active Time Bomb', 277964), (276914, 276914, 1, 1, 'Active Toxin Sample', 99670), (288106, 288106, 200, 200, 'Active Viral CPU Upgrade', 288101), (288125, 288125, 200, 200, 'Active Viral Computer Deck Range Increaser', 288104), (288129, 288129, 200, 200, 'Active Viral NCU Coolant Sink', 288098), (235521, 235521, 170, 170, 'Active Waist Symbiant, Artillery Unit Aban', 215194), (235962, 235962, 170, 170, 'Active Waist Symbiant, Extermination Unit Aban', 215193), (235739, 235739, 170, 170, 'Active Waist Symbiant, Infantry Unit Aban', 215193), (236197, 236197, 170, 170, 'Active Waist Symbiant, Support Unit Aban', 215193), (124094, 124095, 38, 109, 'AcuTek Cruncher', 13321), (124098, 124099, 184, 199, 'AcuTek Cruncher Konig', 13321), (124100, 124100, 200, 200, 'AcuTek Cruncher Milkmaid', 13321), (124096, 124097, 110, 183, 'AcuTek Cruncher Prinz', 13321), (161496, 161508, 1, 49, 'Adapted Notum Crystal - Creation I', 161139), (161509, 161510, 50, 99, 'Adapted Notum Crystal - Creation II', 161139), (161511, 161512, 100, 149, 'Adapted Notum Crystal - Creation III', 161139), (161513, 161514, 150, 199, 'Adapted Notum Crystal - Creation IV', 161139), (161515, 161515, 200, 200, 'Adapted Notum Crystal - Creation V', 161139), (161558, 161559, 1, 49, 'Adapted Notum Crystal - E=MC^2 I', 161137), (161560, 161561, 50, 99, 'Adapted Notum Crystal - E=MC^2 II', 161137), (161562, 161563, 100, 149, 'Adapted Notum Crystal - E=MC^2 III', 161137), (161572, 161573, 150, 199, 'Adapted Notum Crystal - E=MC^2 IV', 161137), (161574, 161574, 200, 200, 'Adapted Notum Crystal - E=MC^2 V', 161137), (161487, 161488, 1, 49, 'Adapted Notum Crystal - Polymorphing I', 161132), (161489, 161490, 50, 99, 'Adapted Notum Crystal - Polymorphing II', 161132), (161491, 161492, 100, 149, 'Adapted Notum Crystal - Polymorphing III', 161132), (161493, 161494, 150, 199, 'Adapted Notum Crystal - Polymorphing IV', 161132), (161495, 161495, 200, 200, 'Adapted Notum Crystal - Polymorphing V', 161132), (161541, 161542, 1, 49, 'Adapted Notum Crystal - Psychobabble I', 161142), (161543, 161544, 50, 99, 'Adapted Notum Crystal - Psychobabble II', 161142), (161545, 161546, 100, 149, 'Adapted Notum Crystal - Psychobabble III', 161142), (161547, 161556, 150, 199, 'Adapted Notum Crystal - Psychobabble IV', 161142), (161557, 161557, 200, 200, 'Adapted Notum Crystal - Psychobabble V', 161142), (161524, 161525, 1, 49, 'Adapted Notum Crystal - Sensitivity I', 161136), (161526, 161527, 50, 99, 'Adapted Notum Crystal - Sensitivity II', 161136), (161528, 161529, 100, 149, 'Adapted Notum Crystal - Sensitivity III', 161136), (161530, 161531, 150, 199, 'Adapted Notum Crystal - Sensitivity IV', 161136), (161540, 161540, 200, 200, 'Adapted Notum Crystal - Sensitivity V', 161136), (161478, 161479, 1, 49, 'Adapted Notum Crystal - Transformation I', 161133), (161480, 161481, 50, 99, 'Adapted Notum Crystal - Transformation II', 161133), (161482, 161483, 100, 149, 'Adapted Notum Crystal - Transformation III', 161133), (161484, 161485, 150, 199, 'Adapted Notum Crystal - Transformation IV', 161133), (161486, 161486, 200, 200, 'Adapted Notum Crystal - Transformation V', 161133), (248308, 248308, 1, 1, 'Adapted Power Supply', 20402), (287334, 287334, 1, 1, 'Addict Shirt - Black', 287347), (289279, 289279, 1, 1, 'Addict Shirt - Black', 287347), (287345, 287345, 1, 1, 'Addict Shirt - White', 287346), (289280, 289280, 1, 1, 'Addict Shirt - White', 287346), (259801, 259801, 1, 1, 'Adenium rutilua', 259800), (259803, 259803, 1, 1, 'Adenium rutilus', 259800), (159081, 159081, 9, 9, 'Admiral - Sugarfree Rum', 37934), (142833, 142834, 161, 199, 'Admiral Zalgor Co Survival Knife', 40783), (295082, 295082, 1, 1, 'Adonis Garden Access', 295098), (295121, 295121, 1, 1, 'Adonis Mission Reward', 281837), (295108, 295108, 1, 1, 'Adonis Sanctuary Access', 295097), (302007, 302007, 1, 1, 'Adorable Feelers', 302029), (251800, 251801, 1, 300, 'Adrenaline Factory', 161869), (294702, 294702, 1, 1, 'Adrienne''s Cherubic Recurve Bow', 294834), (215392, 215392, 1, 1, 'Adumbrated', 82197), (152093, 152094, 151, 180, 'Advanced Abigail', 13314), (153631, 153631, 1, 1, 'Advanced Abigail Construction Manual', 136329), (156029, 156029, 200, 200, 'Advanced Active Tube', 156093), (265664, 265664, 1, 1, 'Advanced Alloy Fuse', 265378), (157661, 157661, 200, 200, 'Advanced Alsaqri Chemical Rifle', 13312), (267682, 267682, 250, 250, 'Advanced Ancient Combat Tuner', 218767), (201254, 201255, 150, 199, 'Advanced BBI Gyro Gun', 33153), (271068, 271069, 1, 300, 'Advanced Baseballbat - 000', 13335), (271070, 271071, 1, 300, 'Advanced Baseballbat - 010', 13335), (271072, 271073, 1, 300, 'Advanced Baseballbat - 050', 13335), (271074, 271075, 1, 300, 'Advanced Baseballbat - 070', 13335), (271076, 271077, 1, 300, 'Advanced Baseballbat - 870', 13335), (154332, 154332, 200, 200, 'Advanced Bio-Comminutor', 149951), (160655, 160655, 200, 200, 'Advanced Black Organic Combat Suit', 88046), (160653, 160653, 200, 200, 'Advanced Blue Organic Combat Suit', 88042), (156059, 156059, 200, 200, 'Advanced Calculator', 156319), (152770, 152771, 81, 120, 'Advanced Click Stabber', 13346), (70251, 70251, 200, 200, 'Advanced Damage Shield Projector', 12678), (292567, 292567, 250, 250, 'Advanced Dust Brigade Notum Infuser', 292570), (152104, 152105, 121, 150, 'Advanced Fiddle Rifle', 13312), (153747, 153747, 1, 1, 'Advanced Fiddle Rifle Construction Manual', 136332), (87814, 87814, 200, 200, 'Advanced Hacker Tool', 99282), (160731, 160731, 200, 200, 'Advanced Head Skinchip - Energy Protection', 160724), (160737, 160737, 200, 200, 'Advanced Head Skinchip - ICC Engineer', 160726), (160735, 160735, 200, 200, 'Advanced Head Skinchip - Liquid Protection', 160725), (160729, 160729, 200, 200, 'Advanced Head Skinchip - Physical Protection', 160721), (160733, 160733, 200, 200, 'Advanced Head Skinchip - Temperature Modification', 160722), (262470, 262471, 1, 300, 'Advanced Hostile Engagement Armor Footwear', 256339), (262466, 262467, 1, 300, 'Advanced Hostile Engagement Armor Gloves', 256340), (262468, 262469, 1, 300, 'Advanced Hostile Engagement Armor Legwear', 256342), (262464, 262465, 1, 300, 'Advanced Hostile Engagement Armor Sleeves', 256337), (262462, 262463, 1, 300, 'Advanced Hostile Engagement Body Armor', 256338), (227908, 227908, 160, 160, 'Advanced Jobe Suit Helmet', 214733), (227907, 227907, 160, 160, 'Advanced Jobe Suit Shoulderpad', 160886), (227906, 227906, 160, 160, 'Advanced Jobe Suit Support System', 214741), (201261, 201261, 200, 200, 'Advanced Joint Clans Scout Pistol', 29116), (200960, 200960, 200, 200, 'Advanced MTI Martins Simple AR01', 13320), (155589, 155589, 105, 105, 'Advanced Mass Relocating Robot', 155928), (156765, 156765, 2, 2, 'Advanced Microphone', 156761), (216266, 216266, 150, 150, 'Advanced Nano Breed Survival Headwear', 205758), (25821, 160278, 200, 399, 'Advanced Nano Recharger', 37991), (160278, 160278, 400, 400, 'Advanced Nano Recharger', 37991), (201092, 201092, 300, 300, 'Advanced Omni Life Guard Armor Boots', 21866), (201095, 201095, 300, 300, 'Advanced Omni Life Guard Armor Gloves', 21872), (201098, 201098, 300, 300, 'Advanced Omni Life Guard Armor Helmet', 22269), (201103, 201103, 300, 300, 'Advanced Omni Life Guard Armor Pants', 21879), (201086, 201086, 300, 300, 'Advanced Omni Life Guard Armor Sleeves', 21850), (201089, 201089, 300, 300, 'Advanced Omni Life Guard Body Armor', 19816), (300751, 300751, 1, 1, 'Advanced Personal Grid Converter', 205463), (43551, 43551, 200, 200, 'Advanced Portable Surgery Clinic', 13369), (152117, 152118, 121, 150, 'Advanced Pow Bow', 85167), (168927, 168927, 200, 200, 'Advanced Primus Head Skinchip', 160727), (168930, 168930, 200, 200, 'Advanced Quartus Head Skinchip', 160727), (154272, 154272, 200, 200, 'Advanced Restoration Kit', 11714), (206740, 206741, 20, 75, 'Advanced Salesman''s Hat', 205771), (152130, 152131, 121, 150, 'Advanced Sapphistic Bow', 85167), (152215, 270391, 1, 200, 'Advanced Scent Sensor', 130667), (168928, 168928, 200, 200, 'Advanced Secundus Head Skinchip', 160727), (246061, 246061, 260, 260, 'Advanced Spirit Tech Toolbox', 100328), (160708, 160708, 200, 200, 'Advanced Standard Bureaucrat Suit', 156355), (227431, 227431, 1, 1, 'Advanced Teleportation 1', 239271), (227432, 227432, 1, 1, 'Advanced Teleportation 2', 239273), (168929, 168929, 200, 200, 'Advanced Tertius Head Skinchip', 160727), (160657, 160657, 200, 200, 'Advanced Turquoise Organic Combat Suit', 88041), (202583, 202583, 300, 300, 'Advanced Turret Construction Base', 203578), (202585, 202585, 300, 300, 'Advanced Turret Controller', 203579), (81792, 81792, 10, 10, 'Advantage - 1h blunt skill', 81775), (239476, 239476, 1, 1, 'Advent of the Benign', 43071), (239480, 239480, 1, 1, 'Advent of the Impetuous', 25796), (239475, 239475, 1, 1, 'Advent of the Industrious', 136597), (239479, 239479, 1, 1, 'Advent of the Passionate', 43072), (239478, 239478, 1, 1, 'Advent of the Prudent', 136593), (162386, 162386, 10, 10, 'Adventure Shield', 33152), (290193, 290193, 1, 1, 'Adventurer Action Figure', 290569), (270750, 270750, 1, 1, 'Adventurer Nanodeck', 270749), (248255, 248255, 1, 1, 'Adventurer Nanoprogram Container', 292131), (290082, 290082, 1, 1, 'Adventurer Shirt', 287356), (28742, 28742, 1, 1, 'Adventurer: Startup Crystal - Quick Heal', 12228), (101581, 101582, 1, 200, 'Adventuring Cluster - Bright (Waist)', 35984), (101579, 101580, 1, 200, 'Adventuring Cluster - Faded (Chest)', 35983), (101583, 101584, 1, 200, 'Adventuring Cluster - Shiny (Leg)', 35985), (165759, 165760, 201, 300, 'Adventuring Refined Cluster - Bright (Waist)', 35984), (165757, 165758, 201, 300, 'Adventuring Refined Cluster - Faded (Chest)', 35983), (165761, 165762, 201, 300, 'Adventuring Refined Cluster - Shiny (Leg)', 35985), (152826, 152826, 1, 1, 'Advisor Galla Uniform', 151876), (305519, 305519, 1, 1, 'Aegis Circuit Board', 149938), (271569, 271570, 1, 300, 'Aero Borealis Corona - 000', 33147), (271573, 271574, 1, 300, 'Aero Borealis Corona - 401', 33147), (271575, 271576, 1, 300, 'Aero Borealis Corona - C01', 33147), (301017, 301017, 1, 1, 'Afirce''s World Catalogue of Books', 301013), (301019, 301019, 1, 1, 'Afirce''s World Catalogue of Books - Volume 1 - 2', 301015), (301018, 301018, 1, 1, 'Afirce''s World Catalogue of Books - Volume 1 - 3', 301014), (226286, 226286, 1, 1, 'Afirce''s World Catalogue of Books - Volume Five', 301016), (226285, 226285, 1, 1, 'Afirce''s World Catalogue of Books - Volume Four', 301009), (226271, 226271, 1, 1, 'Afirce''s World Catalogue of Books - Volume One', 301012), (226280, 226280, 1, 1, 'Afirce''s World Catalogue of Books - Volume Three', 301010), (226275, 226275, 1, 1, 'Afirce''s World Catalogue of Books - Volume Two', 301011), (156697, 156697, 1, 1, 'Aged Brandy', 37947), (284689, 284689, 1, 1, 'Agency Beacon Warp', 285272), (289609, 289609, 1, 1, 'Agency Laser Tagging Device', 266694), (290891, 290891, 1, 1, 'Agency Laser Tagging Device', 266694), (287561, 287561, 1, 1, 'Agency NCU Analyzer', 289401), (290171, 290171, 1, 1, 'Agent Action Figure', 290570), (160571, 160571, 1, 1, 'Agent Gear: Kevlar Wool Balaclava', 100311), (270751, 270751, 1, 1, 'Agent Nanodeck', 270749), (248256, 248256, 1, 1, 'Agent Nanoprogram Container', 292132), (290083, 290083, 1, 1, 'Agent Shirt', 287356), (160637, 160635, 1, 200, 'Agent Undercover Kit - Clan', 157283), (160636, 160639, 1, 200, 'Agent Undercover Kit - Neutral', 157283), (160634, 160638, 1, 200, 'Agent Undercover Kit - Omni-Tek', 157369), (43383, 43383, 1, 1, 'Agent: Startup Crystal - Minor Nano Augmentation', 12225), (29191, 29191, 1, 1, 'Agent: Startup Crystal - Shadow Veil', 12226), (267582, 267583, 1, 300, 'Agents'' Ring of Aim', 151931), (83920, 83919, 1, 199, 'Aggression Enhancer', 12683), (152029, 152028, 1, 199, 'Aggression Enhancer (Jealousy Augmented)', 12683), (83919, 83919, 200, 200, 'Aggression Multiplier', 12683), (152028, 152028, 200, 200, 'Aggression Multiplier (Jealousy Augmented)', 12683), (275019, 275019, 215, 215, 'Aggressive Staff of Julian Redfire', 156102), (101779, 101780, 1, 200, 'Agility Cluster - Bright (Feet)', 35984), (101777, 101778, 1, 200, 'Agility Cluster - Faded (Waist)', 35983), (101781, 101782, 1, 200, 'Agility Cluster - Shiny (Leg)', 35985), (277167, 277168, 1, 300, 'Agility Memory Cell', 276921), (165951, 165952, 201, 300, 'Agility Refined Cluster - Bright (Feet)', 35984), (165949, 165950, 201, 300, 'Agility Refined Cluster - Faded (Waist)', 35983), (165953, 165954, 201, 300, 'Agility Refined Cluster - Shiny (Leg)', 35985), (152268, 152269, 1, 200, 'Ai-X44 Android Head', 130697), (244637, 244637, 250, 250, 'Aim of Libra', 130840), (284043, 284043, 1, 1, 'Aimbat', 284018), (82215, 82215, 1, 1, 'Aimed Shot', 82200), (101659, 101660, 1, 200, 'Aimed Shot Cluster - Bright (Right-Wrist)', 35981), (101657, 101658, 1, 200, 'Aimed Shot Cluster - Faded (Right-Hand)', 35980), (101661, 101662, 1, 200, 'Aimed Shot Cluster - Shiny (Eye)', 35982), (165837, 165838, 201, 300, 'Aimed Shot Refined Cluster - Bright (Right-Wrist)', 35981), (165835, 165836, 201, 300, 'Aimed Shot Refined Cluster - Faded (Right-Hand)', 35980), (165839, 165840, 201, 300, 'Aimed Shot Refined Cluster - Shiny (Eye)', 35982), (272296, 272297, 1, 300, 'AimedShot Weapons Upgrade Kit', 272252), (229050, 229050, 220, 220, 'Air Glyph of Judgement', 227547), (229051, 229051, 220, 220, 'Air Glyph of the World', 227547), (157381, 157381, 1, 1, 'Air Thirtyone Mamba Advantage', 81775), (130585, 130585, 1, 1, 'Air and Sugar Cake', 130515), (160390, 160389, 1, 199, 'Albrecht Heavy Tank Armor', 22395), (160389, 160389, 200, 200, 'Albrecht Heavy Tank Armor', 22392), (253241, 253241, 300, 300, 'Aleksander''s Blooded Punchknife', 213075), (253505, 253505, 1, 1, 'Aleksander''s Cheap Metal Bench', 255964), (253512, 253512, 1, 1, 'Aleksander''s Cheap Metal Chair', 255965), (253506, 253506, 1, 1, 'Aleksander''s Long Metal Table', 255966), (253237, 253238, 1, 149, 'Aleksander''s Punchknife', 213075), (253239, 253240, 150, 299, 'Aleksander''s Punchknife', 213075), (253507, 253507, 1, 1, 'Aleksander''s Small Table', 255967), (235644, 235644, 280, 280, 'Alert Brain Symbiant, Infantry Unit Aban', 215189), (236090, 236090, 280, 280, 'Alert Brain Symbiant, Support Unit Aban', 215188), (236365, 236365, 280, 280, 'Alert Chest Symbiant, Control Unit Aban', 215183), (235662, 235662, 280, 280, 'Alert Ear Symbiant, Infantry Unit Aban', 230977), (236282, 236282, 280, 280, 'Alert Feet Symbiant, Support Unit Aban', 215187), (235934, 235934, 280, 280, 'Alert Left Arm Symbiant, Extermination Unit Aban', 215175), (236488, 236488, 280, 280, 'Alert Left Hand Symbiant, Control Unit Aban', 215172), (236038, 236038, 280, 280, 'Alert Left Hand Symbiant, Extermination Unit Aban', 215172), (235542, 235542, 280, 280, 'Alert Left Wrist Symbiant, Artillery Unit Aban', 215196), (235986, 235986, 280, 280, 'Alert Left Wrist Symbiant, Extermination Unit Aban', 215198), (236298, 236298, 280, 280, 'Alert Ocular Symbiant, Control Unit Aban', 230979), (235847, 235847, 280, 280, 'Alert Ocular Symbiant, Extermination Unit Aban', 230979), (235630, 235630, 280, 280, 'Alert Ocular Symbiant, Infantry Unit Aban', 230980), (235899, 235899, 280, 280, 'Alert Right Arm Symbiant, Extermination Unit Aban', 215178), (235561, 235561, 280, 280, 'Alert Right Hand Symbiant, Artillery Unit Aban', 215173), (235727, 235727, 280, 280, 'Alert Right Wrist Symbiant, Infantry Unit Aban', 215197), (235577, 235577, 280, 280, 'Alert Thigh Symbiant, Artillery Unit Aban', 215190), (235525, 235525, 280, 280, 'Alert Waist Symbiant, Artillery Unit Aban', 215194), (235967, 235967, 280, 280, 'Alert Waist Symbiant, Extermination Unit Aban', 215193), (236199, 236199, 280, 280, 'Alert Waist Symbiant, Support Unit Aban', 215193), (157382, 157382, 1, 1, 'Alfa Fourtynine Dragon Moderation', 81780), (284991, 284991, 1, 1, 'Alfa Matrix Presents: Ayria - Poster #1', 283902), (284993, 284993, 1, 1, 'Alfa Matrix Presents: Ayria - Poster Three', 283902), (284992, 284992, 1, 1, 'Alfa Matrix Presents: Ayria - Poster Two', 283902), (275871, 275871, 1, 1, 'Algorithm: Intelligent Multi-Repeater', 278514), (275869, 275869, 1, 1, 'Algorithm: Optimized Sensor', 100339), (275870, 275870, 1, 1, 'Algorithm: Pseudo-Random Generator', 278513), (288453, 288453, 1, 1, 'Algorithm: Replotting Matrix', 100339), (157124, 157124, 40, 40, 'Alice''s Bitter Brew', 156495), (157125, 157125, 40, 40, 'Alice''s Sweet Brew', 156499), (287957, 287957, 1, 1, 'Alien Abduction Script Item', 16248), (268478, 268478, 150, 150, 'Alien Activation Crystal', 12252), (268508, 268508, 150, 150, 'Alien Armor Materials', 292649), (268467, 268467, 150, 150, 'Alien Augmentation Device - Combat', 218750), (268469, 268469, 150, 150, 'Alien Augmentation Device - Defensive', 218750), (268472, 268472, 150, 150, 'Alien Augmentation Device - Insight', 218750), (268471, 268471, 150, 150, 'Alien Augmentation Device - Medical', 218750), (268468, 268468, 150, 150, 'Alien Augmentation Device - Nano Technology', 218750), (268473, 268473, 150, 150, 'Alien Augmentation Device - Protection', 218750), (268470, 268470, 150, 150, 'Alien Augmentation Device - Technical Knowledge', 218750), (268497, 268497, 150, 150, 'Alien Battery', 220419), (268495, 268495, 150, 150, 'Alien Beacon', 220420), (285745, 285745, 1, 1, 'Alien Claw', 227904), (257469, 257469, 1, 1, 'Alien Cloak', 12703), (287016, 287016, 1, 1, 'Alien Cocoon Terminator', 287467), (267528, 267528, 300, 300, 'Alien Combat Directive Controller', 99264), (268362, 268362, 200, 200, 'Alien Costume Back', 268388), (268361, 268361, 200, 200, 'Alien Costume Helmet', 268395), (268792, 268792, 200, 200, 'Alien Costume Left Hand', 268393), (268365, 268365, 200, 200, 'Alien Costume Right Hand', 268393), (290606, 290606, 1, 1, 'Alien Daily Mission Mini-XP Reward', 284425), (288545, 288545, 1, 1, 'Alien Daily Mission XP Reward', 284425), (268466, 268466, 150, 150, 'Alien Data Storage Crystal - Alpha', 83872), (268479, 268479, 150, 150, 'Alien Data Storage Crystal - Combat', 83069), (268481, 268481, 150, 150, 'Alien Data Storage Crystal - Defense', 83069), (268484, 268484, 150, 150, 'Alien Data Storage Crystal - Insight', 83069), (268483, 268483, 150, 150, 'Alien Data Storage Crystal - Medical', 83069), (268480, 268480, 150, 150, 'Alien Data Storage Crystal - Nano Technology', 83069), (268485, 268485, 150, 150, 'Alien Data Storage Crystal - Protection', 83069), (268482, 268482, 150, 150, 'Alien Data Storage Crystal - Technical', 83069), (275625, 275625, 1, 1, 'Alien Deoxyribonucleic Acid', 100310), (267123, 267123, 1, 1, 'Alien Detonator XX', 266694), (288073, 288073, 1, 1, 'Alien Distress Beacon', 12711), (285741, 285741, 1, 1, 'Alien Flesh Ripper', 285748), (288066, 288066, 1, 1, 'Alien Gene Bank', 12711), (284276, 284276, 1, 1, 'Alien Knowledge', 284425), (253170, 253171, 1, 300, 'Alien Language Matrix', 144714), (268509, 268509, 150, 150, 'Alien Material Conversion kit', 99667), (275706, 275706, 215, 215, 'Alien Matrix Alpha Box', 275887), (275854, 275854, 215, 215, 'Alien Matrix Beta Box', 275889), (252555, 252556, 1, 300, 'Alien Probe', 159123), (268498, 268498, 150, 150, 'Alien Reflex Modifier', 220417), (267213, 267213, 1, 1, 'Alien Signal Tower Report', 154677), (268503, 268503, 150, 150, 'Alien Tank Armor', 22401), (251226, 251227, 1, 300, 'Alien Tissue Sample', 144706), (254434, 254434, 1, 1, 'Alien Tracker', 99267), (268476, 268476, 150, 150, 'Alien Translation Device', 12693), (275607, 275607, 250, 250, 'Alien Vortex Spinning Weapon', 21150), (290971, 290971, 1, 1, 'Alien Weapon', 264841), (281576, 281576, 1, 1, 'All Turrets Disabled', 273626), (281577, 281577, 1, 1, 'All Turrets Disabled', 273626), (281578, 281578, 1, 1, 'All Turrets Disabled', 273626), (281579, 281579, 1, 1, 'All Turrets Disabled', 273626), (156539, 156540, 20, 80, 'All-Match Augmented Bow Tie', 156358), (225385, 225385, 175, 175, 'Allyssas'' Ballistic Boots', 13260), (225389, 225389, 175, 175, 'Allyssas'' Precise Sleeve', 13221), (225388, 225388, 175, 175, 'Allyssas'' Swift Pants', 13288), (232762, 232763, 1, 149, 'Almandine', 286890), (232763, 232765, 150, 199, 'Almandine', 286890), (232765, 232766, 200, 249, 'Almandine', 286890), (232766, 232767, 250, 400, 'Almandine', 286890), (284298, 284298, 200, 200, 'Alpha Compiler Unit', 284332), (284295, 284295, 200, 200, 'Alpha Crystal - Left Fragment', 284334), (284296, 284296, 200, 200, 'Alpha Crystal - Right Fragment', 284335), (275918, 275918, 1, 1, 'Alpha Program Chip', 275970), (284291, 284291, 200, 200, 'Alpha Signal Relay', 284321), (284297, 284297, 200, 200, 'Alpha Tuning Crystal', 284333), (284299, 284299, 200, 200, 'Alpha Tuning Unit', 284326), (284433, 284433, 200, 200, 'Alpha Tuning Unit - Inactive', 284326), (157659, 157660, 95, 199, 'Alsaqri Chemical Rifle', 13312), (265490, 265490, 1, 1, 'Altitude Report', 163072), (265491, 265491, 1, 1, 'Altitude Report', 163072), (265492, 265492, 1, 1, 'Altitude Report', 163072), (165136, 165137, 15, 200, 'Aluminum Armband of Ambidexterity', 151928), (164632, 164633, 1, 200, 'Aluminum Throwing Dagger', 131270), (155722, 155722, 1, 1, 'Alvin''s Card I', 43132), (156545, 156545, 1, 1, 'Alvin''s Card II', 43116), (305986, 305986, 100, 100, 'Amalgamated Research Attunement Device', 161873), (259773, 259773, 1, 1, 'Amanita Muscaria', 255418), (232828, 232829, 1, 149, 'Amber', 286892), (232829, 232831, 150, 199, 'Amber', 286892), (232831, 232832, 200, 249, 'Amber', 286892), (232832, 232833, 250, 400, 'Amber', 286892), (205779, 205779, 1, 1, 'Amber Arcanum Specs', 205746), (157383, 157383, 1, 1, 'Amber Nine Tiger Advantage', 81779), (151685, 151686, 1, 200, 'Ambidextrous Plasteel Gloves', 21979), (230908, 230908, 1, 1, 'Ambigous', 82197), (165174, 165174, 200, 200, 'Ambitious Suit Boots', 82873), (165173, 165173, 200, 200, 'Ambitious Suit Pants', 82872), (165169, 165169, 200, 200, 'Ambitious Suit Shirt', 82875), (165170, 165170, 200, 200, 'Ambitious Suit Sleeves', 82874), (266845, 266845, 1, 1, 'Ammo: Antivehicle Rockets', 161144), (125219, 125219, 1, 1, 'Ammo: Arrows', 32115), (273501, 273501, 1, 1, 'Ammo: Box of Arrows', 273497), (302017, 302017, 1, 1, 'Ammo: Box of Arrows', 273497), (273496, 273496, 1, 1, 'Ammo: Box of Bullets', 26693), (302015, 302015, 1, 1, 'Ammo: Box of Bullets', 26693), (273502, 273502, 1, 1, 'Ammo: Box of Energy Weapon Ammo', 273498), (302018, 302018, 1, 1, 'Ammo: Box of Energy Weapon Ammo', 273498), (273503, 273503, 1, 1, 'Ammo: Box of Flamethrower Ammunition', 32171), (302019, 302019, 1, 1, 'Ammo: Box of Flamethrower Ammunition', 32171), (273504, 273504, 1, 1, 'Ammo: Box of Launcher Grenades', 26692), (302020, 302020, 1, 1, 'Ammo: Box of Launcher Grenades', 26692), (273500, 273500, 1, 1, 'Ammo: Box of Shotgun Shells', 273499), (302016, 302016, 1, 1, 'Ammo: Box of Shotgun Shells', 273499), (21605, 21605, 1, 1, 'Ammo: Bullets', 26690), (21609, 21609, 1, 1, 'Ammo: Energy Weapon Ammo', 26686), (21601, 21601, 1, 1, 'Ammo: Flamethrower Ammunition', 32168), (126757, 126757, 1, 1, 'Ammo: Launcher Grenades', 26684), (21613, 21613, 1, 1, 'Ammo: Shotgun Shells', 33174), (157384, 157384, 1, 1, 'Ammoniac Fourtyseven Fowl Advantage', 81769), (302037, 302037, 1, 1, 'Amorous Shortbow', 302035), (260691, 260691, 250, 250, 'Amplification Unit', 218766), (257143, 257143, 300, 300, 'Amplified Kyr''Ozch Carbine - Type 12', 255466), (257142, 257142, 300, 300, 'Amplified Kyr''Ozch Carbine - Type 13', 255466), (257144, 257144, 300, 300, 'Amplified Kyr''Ozch Carbine - Type 5', 255466), (257126, 257126, 300, 300, 'Amplified Sleek Cannon', 13342), (234905, 234905, 1, 1, 'Amulet of Algid Amber', 84066), (163550, 163550, 1, 1, 'Amulet of grizzly teeth', 151933), (245863, 245863, 250, 250, 'Amused Spirit', 99998), (260683, 260683, 250, 250, 'Amused Spirit', 99998), (150225, 150226, 41, 80, 'Amytlo Executioner', 114001), (153323, 153323, 1, 1, 'Amytlo Executioner Construction Manual', 37932), (163537, 163537, 1, 1, 'An Empty Chain', 151933), (155863, 155863, 200, 200, 'An Improved Immortal Katana', 154506), (154447, 154447, 1, 1, 'An Introduction to the Business of Making Stimulant Injectors', 154675), (205874, 205874, 1, 1, 'Ancarim Sun Tan Lotion', 156504), (200051, 200052, 200, 205, 'Anchoku Nippon-Tech Armor', 96106), (200072, 200073, 200, 205, 'Anchoku Nippon-Tech Armor Boots', 13275), (200093, 200094, 200, 205, 'Anchoku Nippon-Tech Armor Gloves', 13287), (200114, 200115, 200, 205, 'Anchoku Nippon-Tech Armor Helmet', 96140), (200135, 200136, 200, 205, 'Anchoku Nippon-Tech Armor Pants', 13305), (200156, 200157, 200, 205, 'Anchoku Nippon-Tech Armor Sleeves', 13237), (200177, 200178, 200, 205, 'Anchoku Nippon-Tech Body Armor', 13258), (275218, 275218, 1, 1, 'Anchor Tattoo', 275217), (163584, 163584, 200, 200, 'Ancient Adventurer Sword', 113987), (302924, 302924, 100, 100, 'Ancient Aggressive Webbing', 244359), (163593, 163593, 200, 200, 'Ancient Blade', 130835), (163596, 163596, 200, 200, 'Ancient Blade with Crossguard', 163595), (163598, 163598, 200, 200, 'Ancient Blade with Crossguard and Hilt', 113987), (267722, 267722, 250, 250, 'Ancient Chemical Generation Device', 218769), (267721, 267721, 250, 250, 'Ancient Cold Generation Device', 218769), (267753, 267753, 250, 250, 'Ancient Combat Bracer', 290856), (267678, 267678, 250, 250, 'Ancient Combat Tuner', 218765), (224098, 224098, 150, 150, 'Ancient Container', 224099), (224110, 224110, 150, 150, 'Ancient Container', 224099), (163594, 163594, 200, 200, 'Ancient Crossguard', 130878), (302458, 302458, 1, 1, 'Ancient Cyberdeck', 218706), (267725, 267725, 250, 250, 'Ancient Damage Generation Device', 218770), (267627, 267627, 250, 250, 'Ancient Defender', 218752), (214998, 214998, 1, 1, 'Ancient Device', 227242), (267751, 267751, 250, 250, 'Ancient Engineering Device', 156095), (130051, 130052, 1, 20, 'Ancient Featherwood Staff', 136738), (267720, 267720, 250, 250, 'Ancient Fire Generation Device', 218769), (264070, 264070, 1, 1, 'Ancient Insignia of Ocra', 263908), (264069, 264069, 1, 1, 'Ancient Insignia of Roch', 263909), (155686, 155686, 1, 1, 'Ancient Looking Lamp Relay', 156552), (267651, 267651, 250, 250, 'Ancient Manual Aiming Aid', 218779), (267752, 267752, 250, 250, 'Ancient Medical Bracer', 290851), (267736, 267736, 250, 250, 'Ancient Medical Device', 218775), (267712, 267712, 250, 250, 'Ancient Nano Enhancer', 218768), (229870, 229870, 1, 1, 'Ancient Novictum Refiner', 205503), (214783, 214783, 1, 1, 'Ancient Pattern Analyzer', 227242), (214785, 214785, 1, 1, 'Ancient Pattern Analyzer favored by the Chosen One', 227244), (214784, 214784, 1, 1, 'Ancient Pattern Analyzer graced by the Faithful', 227251), (267724, 267724, 250, 250, 'Ancient Poison Generation Device', 218769), (163599, 163599, 200, 200, 'Ancient Pommel', 25802), (292925, 292925, 1, 1, 'Ancient Positron Collider', 292922), (292940, 292940, 1, 1, 'Ancient Positron Collider', 292922), (287297, 287297, 1, 1, 'Ancient Poster Design', 287302), (302923, 302923, 100, 100, 'Ancient Protective Drone', 244361), (292924, 292924, 1, 1, 'Ancient Protonic Ionization Pack', 292923), (292939, 292939, 1, 1, 'Ancient Protonic Ionization Pack', 292923), (267723, 267723, 250, 250, 'Ancient Radiation Generation Device', 218769), (302925, 302925, 100, 100, 'Ancient Resorative Fungus', 244360), (267680, 267680, 250, 250, 'Ancient Scrap of Condensed Spirit Knowledge', 163575), (267679, 267679, 250, 250, 'Ancient Scrap of Saturated Spirit Knowledge', 300973), (267681, 267681, 250, 250, 'Ancient Scrap of Spirit Combat Knowledge', 163575), (267677, 267677, 250, 250, 'Ancient Scrap of Spirit Knowledge', 300974), (267727, 267727, 250, 250, 'Ancient Scrap of Spirit Medical Knowledge', 163575), (267703, 267703, 250, 250, 'Ancient Scrap of Spirit Technical Knowledge', 163575), (267652, 267652, 250, 250, 'Ancient Skills Library', 218759), (267625, 267625, 250, 250, 'Ancient Speed Preservation Unit', 218753), (267792, 267793, 1, 300, 'Ancient Spirit Purge', 218305), (267772, 267773, 1, 300, 'Ancient Spirit Remedy', 231393), (163587, 163587, 200, 200, 'Ancient Sword', 113987), (163597, 163597, 200, 200, 'Ancient Sword-Grip', 130863), (267754, 267754, 250, 250, 'Ancient Technical Bracer', 290852), (217041, 217041, 1, 1, 'Ancient Tracking Device', 100311), (235293, 235293, 1, 1, 'Ancient Triggerless Cannon', 235270), (267626, 267626, 250, 250, 'Ancient Vision Preservation Unit', 218752), (263858, 263858, 1, 1, 'Ancient device', 205503), (259864, 259864, 1, 1, 'Ancient text', 136332), (292589, 292589, 1, 1, 'Ancient-Looking Wen-Wen - Black', 291531), (292726, 292726, 1, 1, 'Ancient-Looking Wen-Wen - Black', 291531), (292588, 292588, 1, 1, 'Ancient-Looking Wen-Wen - Blue', 291532), (292727, 292727, 1, 1, 'Ancient-Looking Wen-Wen - Blue', 291532), (292587, 292587, 1, 1, 'Ancient-Looking Wen-Wen - Green', 291533), (292728, 292728, 1, 1, 'Ancient-Looking Wen-Wen - Green', 291533), (292586, 292586, 1, 1, 'Ancient-Looking Wen-Wen - Orange', 291534), (292729, 292729, 1, 1, 'Ancient-Looking Wen-Wen - Orange', 291534), (292585, 292585, 1, 1, 'Ancient-Looking Wen-Wen - Purple', 291535), (292730, 292730, 1, 1, 'Ancient-Looking Wen-Wen - Purple', 291535), (292584, 292584, 1, 1, 'Ancient-Looking Wen-Wen - Red', 291536), (292731, 292731, 1, 1, 'Ancient-Looking Wen-Wen - Red', 291536), (292583, 292583, 1, 1, 'Ancient-Looking Wen-Wen - White', 291537), (292732, 292732, 1, 1, 'Ancient-Looking Wen-Wen - White', 291537), (292582, 292582, 1, 1, 'Ancient-Looking Wen-Wen - Yellow', 291538), (292733, 292733, 1, 1, 'Ancient-Looking Wen-Wen - Yellow', 291538), (255579, 255579, 1, 1, 'Andre''s Statue of the Hero', 256381), (162903, 162903, 1, 1, 'Andrew''s Nano Remover', 130563), (269840, 269840, 200, 200, 'Android NCU Injector', 43129), (150306, 150307, 1, 200, 'Android NCU Upgrade', 13370), (202526, 202526, 75, 75, 'Android Service Tower Brain', 203577), (202532, 202532, 75, 75, 'Android Service Tower Library', 83296), (281808, 281808, 1, 1, 'Angel Wings', 281816), (70608, 70607, 35, 199, 'Angel of Night', 43101), (70607, 204331, 200, 300, 'Angel of Night', 43101), (225647, 225648, 1, 300, 'Angellin''s Wristband', 41176), (234752, 234752, 1, 1, 'Anger of the Somphos', 130862), (280722, 280722, 300, 300, 'Anger of the Xan', 280915), (280723, 280723, 300, 300, 'Angst of the Xan', 280920), (246123, 246123, 100, 100, 'Anillo Casero de la Cripta', 151925), (263182, 263182, 1, 1, 'Animal Status List', 156341), (235854, 235854, 70, 70, 'Animated Brain Symbiant, Extermination Unit Aban', 215189), (235463, 235463, 70, 70, 'Animated Chest Symbiant, Artillery Unit Aban', 215181), (236320, 236320, 70, 70, 'Animated Ear Symbiant, Control Unit Aban', 230977), (235651, 235651, 70, 70, 'Animated Ear Symbiant, Infantry Unit Aban', 230977), (236098, 236098, 70, 70, 'Animated Ear Symbiant, Support Unit Aban', 230977), (236495, 236495, 70, 70, 'Animated Feet Symbiant, Control Unit Aban', 215185), (236046, 236046, 70, 70, 'Animated Feet Symbiant, Extermination Unit Aban', 215186), (235703, 235703, 70, 70, 'Animated Left Arm Symbiant, Infantry Unit Aban', 215179), (236029, 236029, 70, 70, 'Animated Left Hand Symbiant, Extermination Unit Aban', 215172), (235753, 235753, 70, 70, 'Animated Left Wrist Symbiant, Infantry Unit Aban', 215198), (219130, 219130, 70, 70, 'Animated Ocular Symbiant, Artillery Unit Aban', 230979), (236289, 236289, 70, 70, 'Animated Ocular Symbiant, Control Unit Aban', 230979), (235840, 235840, 70, 70, 'Animated Ocular Symbiant, Extermination Unit Aban', 230979), (235621, 235621, 70, 70, 'Animated Ocular Symbiant, Infantry Unit Aban', 230980), (236063, 236063, 70, 70, 'Animated Ocular Symbiant, Support Unit Aban', 230980), (235448, 235448, 70, 70, 'Animated Right Arm Symbiant, Artillery Unit Aban', 215176), (235891, 235891, 70, 70, 'Animated Right Arm Symbiant, Extermination Unit Aban', 215178), (235770, 235770, 70, 70, 'Animated Right Hand Symbiant, Infantry Unit Aban', 215174), (236224, 236224, 70, 70, 'Animated Right Hand Symbiant, Support Unit Aban', 215174), (235499, 235499, 70, 70, 'Animated Right Wrist Symbiant, Artillery Unit Aban', 215170), (236391, 236391, 70, 70, 'Animated Right Wrist Symbiant, Control Unit Aban', 215170), (235943, 235943, 70, 70, 'Animated Right Wrist Symbiant, Extermination Unit Aban', 215170), (235719, 235719, 70, 70, 'Animated Right Wrist Symbiant, Infantry Unit Aban', 215197), (236172, 236172, 70, 70, 'Animated Right Wrist Symbiant, Support Unit Aban', 215197), (236461, 236461, 70, 70, 'Animated Thigh Symbiant, Control Unit Aban', 215191), (236011, 236011, 70, 70, 'Animated Thigh Symbiant, Extermination Unit Aban', 215192), (236242, 236242, 70, 70, 'Animated Thigh Symbiant, Support Unit Aban', 215190), (235735, 235735, 70, 70, 'Animated Waist Symbiant, Infantry Unit Aban', 215193), (236191, 236191, 70, 70, 'Animated Waist Symbiant, Support Unit Aban', 215193), (268583, 268583, 1, 1, 'Ankari Khazoh Ra', 37931), (227218, 227218, 1, 1, 'Annihilate Notum Molecules', 239175), (275378, 275378, 1, 1, 'Anniversary Gift', 205832), (275393, 275393, 1, 1, 'Anniversary Painting', 255921), (157978, 157978, 2, 2, 'Another Beer', 157904), (273306, 273306, 200, 200, 'Another Immortal Katana', 154506), (203094, 204581, 25, 250, 'Anti-Aircraft Pulse Turret', 202218), (203095, 204582, 25, 250, 'Anti-Aircraft Pulse Turret', 202218), (207242, 207242, 150, 150, 'Anti-Gravity Unit', 99661), (266992, 266993, 1, 300, 'Anti-Mech Rocket Launcher', 154361), (266994, 266995, 1, 300, 'Anti-Mech Rocket Launcher', 264797), (267312, 267313, 1, 300, 'Anti-Mech Rocket Launcher', 264797), (273580, 273581, 1, 300, 'Anti-Mech Rocket Launcher', 264797), (269314, 269314, 1, 1, 'Anti-Molokh Tissue Sample', 19856), (265510, 265511, 1, 300, 'Anti-Personel Weapon', 13321), (265512, 265513, 1, 300, 'Anti-Personel Weapon - Upgrade', 13321), (246924, 246924, 1, 1, 'Anti-Perspiring Padding', 161082), (265508, 265509, 1, 300, 'Anti-Vehicle Weapon', 13321), (265506, 265507, 1, 300, 'Anti-Vehicle Weapon - Upgrade', 13321), (234887, 234887, 1, 1, 'Antigravitational Metal Sphere', 205528), (158297, 158297, 200, 200, 'Antiquated Sword', 113987), (285455, 285455, 50, 50, 'Antique Atrox GeneSol Canister', 154419), (154329, 154329, 1, 1, 'Antiseptic Jar', 37966), (246931, 246931, 1, 1, 'Antiseptic Protector', 21876), (251766, 251766, 1, 1, 'Antitrust', 255619), (295765, 295765, 1, 1, 'Antivehicle Rockets', 161144), (296672, 296672, 1, 1, 'Antlers', 296599), (248306, 248306, 1, 1, 'Antonio''s Adaptation Factory', 205493), (273257, 273257, 1, 1, 'Anun Beaks', 273256), (248931, 248932, 1, 200, 'Anun Leg', 144706), (248927, 248928, 1, 200, 'Anun Membrane Gloves', 159134), (248917, 248918, 125, 200, 'Anun Tooth Trophy', 236564), (248929, 248930, 1, 200, 'Anun Wing', 144705), (165215, 165215, 200, 200, 'Anything', 130728), (285962, 285962, 1, 1, 'AoE', 158233), (206904, 206904, 1, 1, 'Apartment application form', 81776), (204605, 204605, 1, 1, 'Ape Fist of Khalum', 43091), (200198, 200198, 200, 200, 'Aphrodite ICC Armor Boots', 22884), (200219, 200219, 200, 200, 'Aphrodite ICC Armor Gloves', 31656), (200240, 200240, 200, 200, 'Aphrodite ICC Armor Helmet', 31734), (200261, 200261, 200, 200, 'Aphrodite ICC Armor Pants', 22919), (200282, 200282, 200, 200, 'Aphrodite ICC Armor Sleeves', 31644), (200303, 200303, 200, 200, 'Aphrodite ICC Body Armor', 31648), (245966, 245967, 10, 200, 'Apocalypse Leather Armor Boots', 13264), (245968, 245969, 10, 200, 'Apocalypse Leather Armor Gloves', 245962), (245974, 245975, 10, 200, 'Apocalypse Leather Armor Helmet', 10835), (245970, 245971, 10, 200, 'Apocalypse Leather Armor Pants', 245961), (245972, 245973, 10, 200, 'Apocalypse Leather Armor Sleeves', 245960), (245964, 245965, 10, 200, 'Apocalypse Leather Body Armor', 245963), (130618, 130618, 1, 1, 'Appetizer Glass', 37962), (158596, 158597, 1, 100, 'Apple Seed - Special Arrows', 32116), (246095, 246095, 250, 250, 'Apprehensive Spirit Pitcher', 119173), (152768, 152769, 41, 80, 'Apprentice Click Stabber', 13346), (130042, 130043, 1, 49, 'Apprentice G-Staff', 136738), (231123, 231124, 1, 19, 'Apprentice Sword of Sir Tristram', 40781), (249698, 249698, 1, 1, 'Aqua Tank Top of Alpha Omega', 255388), (81971, 81971, 1, 1, 'Aquaan Trenchcoat', 81976), (82914, 82914, 1, 1, 'Aquaan Trenchcoat Hood', 82924), (232750, 232751, 1, 149, 'Aquamarine', 286894), (232751, 232753, 150, 199, 'Aquamarine', 286894), (232753, 232754, 200, 249, 'Aquamarine', 286894), (232754, 232755, 250, 400, 'Aquamarine', 286894), (234426, 234426, 1, 1, 'Aquan Effect', 130862), (244357, 244357, 250, 250, 'Aquarius'' Boots of Small Steps', 37596), (244376, 244376, 250, 250, 'Aquarius''s Multitask Calculator', 205528), (168509, 168509, 80, 80, 'Arbiter Gem of Burning Plasma', 286751), (168793, 168793, 80, 80, 'Arbiter Gem of Corroded Glory', 286745), (230292, 230292, 80, 80, 'Arbiter Gem of Decayed Glory', 286735), (230088, 230088, 80, 80, 'Arbiter Gem of Fiery Plasma', 286740), (230041, 230041, 80, 80, 'Arbiter Gem of the Broken Moebius', 286739), (168469, 168469, 80, 80, 'Arbiter Gem of the Bruised Brawler', 286743), (230212, 230212, 80, 80, 'Arbiter Gem of the Craggy Landscape', 286738), (230132, 230132, 80, 80, 'Arbiter Gem of the Empty Desert', 286734), (165385, 165385, 80, 80, 'Arbiter Gem of the Eternal Juggernaut', 286747), (229980, 229980, 80, 80, 'Arbiter Gem of the Frail Juggernaut', 286736), (168616, 168616, 80, 80, 'Arbiter Gem of the Frozen Tundra', 286752), (230172, 230172, 80, 80, 'Arbiter Gem of the Icy Tundra', 286742), (168428, 168428, 80, 80, 'Arbiter Gem of the Infinite Moebius', 286750), (230332, 230332, 80, 80, 'Arbiter Gem of the Insidious Killer', 286737), (168713, 168713, 80, 80, 'Arbiter Gem of the Jagged Landscape', 286749), (230047, 230047, 80, 80, 'Arbiter Gem of the Novice Brawler', 286733), (168753, 168753, 80, 80, 'Arbiter Gem of the Rainbow-hued Sky', 286746), (230252, 230252, 80, 80, 'Arbiter Gem of the Scarlet Sky', 286741), (168549, 168549, 80, 80, 'Arbiter Gem of the Searing Desert', 286744), (168839, 168839, 80, 80, 'Arbiter Gem of the Silent Killer', 286748), (206194, 206194, 1, 1, 'Archdeacon Robe', 159571), (205947, 205947, 1, 1, 'Archdeacon Robe (monster wear)', 159571), (100298, 100298, 154, 154, 'Archive Storage Unit 43^52^972Gb', 100308), (234900, 234900, 1, 1, 'Arctic Leet Eyeball', 144708), (249025, 249026, 41, 110, 'Arctic Metaplast Mace', 13333), (128631, 128632, 101, 150, 'Ares Arms AR-90 Jet Rifle', 21149), (150234, 150235, 40, 79, 'Ares Bio-Staff', 136738), (200199, 200199, 205, 205, 'Ares ICC Armor Boots', 22884), (200220, 200220, 205, 205, 'Ares ICC Armor Gloves', 31656), (200241, 200241, 205, 205, 'Ares ICC Armor Helmet', 31734), (200262, 200262, 205, 205, 'Ares ICC Armor Pants', 22919), (200283, 200283, 205, 205, 'Ares ICC Armor Sleeves', 31644), (200304, 200304, 205, 205, 'Ares ICC Body Armor', 31648), (243799, 243800, 200, 224, 'Argent Blaster', 210170), (243801, 243802, 225, 249, 'Argent Blaster', 210170), (243803, 243804, 250, 274, 'Argent Blaster', 210170), (243805, 243806, 275, 299, 'Argent Blaster', 210170), (243807, 243807, 300, 300, 'Argent Blaster', 210170), (279364, 279364, 1, 1, 'Arid Rift', 227904), (244540, 244540, 250, 250, 'Aries'' Tiara of the Quick Witted', 84061), (246569, 246570, 1, 300, 'Arithmetic Armor Footwear', 256315), (246565, 246566, 1, 300, 'Arithmetic Armor Gloves', 256316), (246561, 246562, 1, 300, 'Arithmetic Armor Headwear', 256317), (246567, 246568, 1, 300, 'Arithmetic Armor Legwear', 256318), (246563, 246564, 1, 300, 'Arithmetic Armor Sleeves', 256313), (246559, 246560, 1, 300, 'Arithmetic Body Armor', 256314), (247144, 247145, 1, 300, 'Arithmetic Lead Viralbots', 290349), (258341, 258341, 1, 1, 'Ark Tank Top', 258340), (255585, 255585, 1, 1, 'Arlov''s Omni-Tek Propoganda Statue', 256384), (223989, 223990, 80, 120, 'Arm Tattoo''s of Eric Miller', 226597), (223974, 223975, 80, 120, 'Arm Tattoo''s of Min-Li Jiu', 226605), (157385, 157385, 1, 1, 'Arm Three Ostrich Advantage', 81777), (253448, 253448, 1, 1, 'Armless Chair', 255924), (163447, 163447, 1, 1, 'Armor Creation with Mass Relocating Robots', 136330), (225876, 225877, 1, 500, 'Armor Piercing Shot', 239089), (225878, 225879, 1, 500, 'Armor Piercing Shot', 239089), (225880, 225881, 1, 500, 'Armor Piercing Shot', 239089), (284053, 284053, 300, 300, 'Armour Test for Tony', 268010), (285377, 285377, 300, 300, 'Armour Test for Tony - Part Two', 268010), (244712, 244712, 300, 300, 'Armplates of Elimination', 245029), (245855, 245855, 250, 250, 'Armplates of Meteorite Assembly', 245844), (304482, 304483, 1, 220, 'Armplates of the Eight', 305040), (160427, 160428, 1, 200, 'Arms of the Servants of Eight', 22966), (251184, 251185, 1, 500, 'Arouse Anger', 255740), (251186, 251187, 1, 500, 'Arouse Anger', 255740), (251188, 251189, 1, 500, 'Arouse Anger', 255740), (292016, 292016, 1, 1, 'Arriviste''s QQ Shirt', 293632), (275722, 275722, 1, 1, 'Arrowhead', 277963), (100352, 100352, 1, 1, 'Art Container', 20406), (200200, 200200, 210, 210, 'Arthemis ICC Armor Boots', 22884), (200221, 200221, 210, 210, 'Arthemis ICC Armor Gloves', 31656), (200242, 200242, 210, 210, 'Arthemis ICC Armor Helmet', 31734), (200263, 200263, 210, 210, 'Arthemis ICC Armor Pants', 22919), (200284, 200284, 210, 210, 'Arthemis ICC Armor Sleeves', 31644), (200305, 200305, 210, 210, 'Arthemis ICC Body Armor', 31648), (215602, 215603, 25, 300, 'Artillery Boots', 214751), (215440, 215441, 75, 300, 'Artillery Chest Cover', 214746), (223105, 223106, 1, 300, 'Artillery Crepuscule Leather Boots', 13265), (223097, 223098, 1, 300, 'Artillery Crepuscule Leather Gloves', 13279), (223101, 223102, 1, 300, 'Artillery Crepuscule Leather Jacket', 13249), (223103, 223104, 1, 300, 'Artillery Crepuscule Leather Pants', 213574), (223099, 223100, 1, 300, 'Artillery Crepuscule Leather Sleeve', 213487), (223095, 223096, 1, 300, 'Artillery Crepuscule Skinchip', 160726), (215608, 215609, 25, 300, 'Artillery Gloves', 214752), (215610, 215611, 75, 300, 'Artillery Helmet', 213619), (215600, 215601, 25, 300, 'Artillery Pants', 214753), (215606, 215607, 25, 300, 'Artillery Sleeves', 214749), (215604, 215605, 25, 300, 'Artillery Vest', 214750), (271872, 271873, 1, 300, 'Arwen MM-50 Grenade Launcher - 000', 13336), (271876, 271877, 1, 300, 'Arwen MM-50 Grenade Launcher - 401', 13336), (271878, 271879, 1, 300, 'Arwen MM-50 Grenade Launcher - C01', 13336), (158965, 158966, 100, 199, 'Arwen MO-404 Grenade Launcher', 13322), (262311, 262311, 1, 1, 'Ashen Viper Eye', 144708), (155650, 155710, 1, 200, 'Ashes of Leet Fur', 99239), (294443, 294443, 1, 1, 'Asi Holly Drink', 294444), (152070, 152071, 61, 80, 'Asia Toys - Mathis Multi-Energy Rifle', 13314), (153427, 153427, 1, 1, 'Asia Toys - Mathis Multi-Energy Rifle Construction Manual', 37933), (154896, 154896, 116, 116, 'Asp of Semol', 154363), (275848, 275848, 215, 215, 'Asp of Titaniush', 154366), (305984, 305984, 250, 250, 'Aspect of Paralyzing Fear', 20406), (296325, 296325, 1, 1, 'Aspect of the Quabbit', 296324), (303218, 303218, 1, 1, 'Aspect of the Quabbit', 296324), (214244, 214244, 1, 1, 'Assassinate', 154367), (226496, 226496, 1, 1, 'Assassinate', 239095), (160192, 160192, 200, 200, 'Assassins FDA Caterwaul 913', 33155), (152319, 152320, 91, 140, 'Assault Partizan', 21140), (101473, 101474, 1, 200, 'Assault Rif Cluster - Bright (Right-Hand)', 35981), (101471, 101472, 1, 200, 'Assault Rif Cluster - Faded (Eye)', 35980), (101475, 101476, 1, 200, 'Assault Rif Cluster - Shiny (Right-Arm)', 35982), (165633, 165634, 201, 300, 'Assault Rif Refined Cluster - Bright (Right-Hand)', 35981), (165631, 165632, 201, 300, 'Assault Rif Refined Cluster - Faded (Eye)', 35980), (165635, 165636, 201, 300, 'Assault Rif Refined Cluster - Shiny (Right-Arm)', 35982), (85436, 85437, 1, 250, 'Assault Rifle Field Primer', 83342), (277923, 277924, 1, 300, 'Assault Rifle Memory Cell', 276922), (278130, 278131, 1, 199, 'Assault Rifle Skill NCU (1/6)', 276930), (278132, 278133, 200, 299, 'Assault Rifle Skill NCU (1/6)', 276930), (278134, 278134, 300, 300, 'Assault Rifle Skill NCU (1/6)', 276930), (278135, 278136, 1, 199, 'Assault Rifle Skill NCU (2/6)', 276931), (278137, 278138, 200, 299, 'Assault Rifle Skill NCU (2/6)', 276931), (278139, 278139, 300, 300, 'Assault Rifle Skill NCU (2/6)', 276931), (278140, 278141, 1, 199, 'Assault Rifle Skill NCU (3/6)', 276932), (278142, 278143, 200, 299, 'Assault Rifle Skill NCU (3/6)', 276932), (278144, 278144, 300, 300, 'Assault Rifle Skill NCU (3/6)', 276932), (278145, 278146, 1, 199, 'Assault Rifle Skill NCU (4/6)', 276933), (278147, 278148, 200, 299, 'Assault Rifle Skill NCU (4/6)', 276933), (278149, 278149, 300, 300, 'Assault Rifle Skill NCU (4/6)', 276933), (278150, 278151, 1, 199, 'Assault Rifle Skill NCU (5/6)', 276934), (278152, 278153, 200, 299, 'Assault Rifle Skill NCU (5/6)', 276934), (278154, 278154, 300, 300, 'Assault Rifle Skill NCU (5/6)', 276934), (278155, 278156, 1, 199, 'Assault Rifle Skill NCU (6/6)', 276935), (278157, 278158, 200, 299, 'Assault Rifle Skill NCU (6/6)', 276935), (278159, 278159, 300, 300, 'Assault Rifle Skill NCU (6/6)', 276935), (22142, 22142, 200, 200, 'Assault-Issue Omni-Pol Armor Boots', 13270), (22196, 22196, 200, 200, 'Assault-Issue Omni-Pol Armor Gloves', 13283), (22246, 22246, 200, 200, 'Assault-Issue Omni-Pol Armor Helmet', 10840), (22331, 22331, 200, 200, 'Assault-Issue Omni-Pol Armor Pants', 13300), (21955, 21955, 200, 200, 'Assault-Issue Omni-Pol Armor Sleeves', 13232), (88069, 88069, 200, 200, 'Assault-Issue Omni-Pol Battle Suit', 41161), (22064, 22064, 200, 200, 'Assault-Issue Omni-Pol Body Armor', 13253), (27392, 27392, 200, 200, 'Assault-Issue Omni-Pol Desert Armor Boots', 27665), (27396, 27396, 200, 200, 'Assault-Issue Omni-Pol Desert Armor Gloves', 27664), (27402, 27402, 200, 200, 'Assault-Issue Omni-Pol Desert Armor Helmet', 27709), (27394, 27394, 200, 200, 'Assault-Issue Omni-Pol Desert Armor Pants', 27663), (27400, 27400, 200, 200, 'Assault-Issue Omni-Pol Desert Armor Sleeves', 27666), (27398, 27398, 200, 200, 'Assault-Issue Omni-Pol Desert Body Armor', 22991), (22146, 22146, 200, 200, 'Assault-Issue Omni-Pol Elite Armor Boots', 21866), (22200, 22200, 200, 200, 'Assault-Issue Omni-Pol Elite Armor Gloves', 21872), (22250, 22250, 200, 200, 'Assault-Issue Omni-Pol Elite Armor Helmet', 22269), (22335, 22335, 200, 200, 'Assault-Issue Omni-Pol Elite Armor Pants', 21879), (21959, 21959, 200, 200, 'Assault-Issue Omni-Pol Elite Armor Sleeves', 21850), (88077, 88077, 200, 200, 'Assault-Issue Omni-Pol Elite Battle Suit', 41163), (22068, 22068, 200, 200, 'Assault-Issue Omni-Pol Elite Body Armor', 19816), (22150, 22150, 200, 200, 'Assault-Issue Omni-Pol Forest Armor Boots', 13271), (22204, 22204, 200, 200, 'Assault-Issue Omni-Pol Forest Armor Gloves', 13284), (22254, 22254, 200, 200, 'Assault-Issue Omni-Pol Forest Armor Helmet', 10841), (22339, 22339, 200, 200, 'Assault-Issue Omni-Pol Forest Armor Pants', 13301), (21963, 21963, 200, 200, 'Assault-Issue Omni-Pol Forest Armor Sleeves', 13233), (22072, 22072, 200, 200, 'Assault-Issue Omni-Pol Forest Body Armor', 13254), (156576, 156576, 68, 68, 'Assault-class Tank Armor', 41168), (272282, 272283, 1, 300, 'AssaultRifle Weapons Basic Upgrade Kit', 272250), (152825, 152825, 1, 1, 'Assistant Advisor Galla Uniform', 151877), (234892, 234892, 1, 1, 'Assorted Metal Dust', 20407), (252383, 252383, 1, 1, 'Assume Target', 239171), (200201, 200201, 215, 215, 'Athene ICC Armor Boots', 22884), (200222, 200222, 215, 215, 'Athene ICC Armor Gloves', 31656), (200243, 200243, 215, 215, 'Athene ICC Armor Helmet', 31734), (200264, 200264, 215, 215, 'Athene ICC Armor Pants', 22919), (200285, 200285, 215, 215, 'Athene ICC Armor Sleeves', 31644), (200306, 200306, 215, 215, 'Athene ICC Body Armor', 31648), (123870, 123871, 30, 54, 'Atlas Bern C.V.', 113993), (123872, 123873, 55, 69, 'Atlas Bern C.V. Dominator', 113993), (123878, 123878, 100, 100, 'Atlas Bern C.V. Sarcastic', 113993), (123874, 123875, 70, 81, 'Atlas Bern C.V. Vanilla', 113993), (123876, 123877, 82, 99, 'Atlas Bern C.V. Vanilla Dream', 113993), (203092, 203092, 300, 300, 'Atomic Turret', 202198), (203093, 203093, 300, 300, 'Atomic Turret', 202198), (202586, 202586, 300, 300, 'Atomic Turret Controller', 203580), (226356, 226357, 1, 500, 'Atrophy', 239237), (226358, 226359, 1, 500, 'Atrophy', 239237), (226360, 226361, 1, 500, 'Atrophy', 239237), (268692, 268692, 1, 1, 'Atrox Boxing Glove - Left Hand', 268657), (268694, 268694, 1, 1, 'Atrox Boxing Glove - Right Hand', 268657), (234763, 234763, 1, 1, 'Atrox Energy', 130862), (155669, 155670, 1, 200, 'Atrox Eye Jelly', 144708), (289570, 289570, 1, 1, 'Atrox Mittens - Left Hand', 289561), (289571, 289571, 1, 1, 'Atrox Mittens - Right Hand', 289561), (289481, 289481, 1, 1, 'Atrox Ski Rack', 289480), (288083, 288083, 1, 1, 'Atrox Thong-Prevention Glasses', 45780), (258546, 258546, 1, 1, 'Atrox Wonder Pie', 130518), (43145, 43146, 1, 199, 'Attack of the Snake', 43086), (43146, 204330, 200, 300, 'Attack of the Snake', 43086), (258522, 305225, 25, 75, 'Attuned Controller Recompiler Unit', 297737), (202784, 202784, 274, 274, 'Augias X-11 Ejector', 31808), (202785, 202785, 275, 275, 'Augias X-11 Ejector', 31808), (211232, 211232, 300, 300, 'Augmented Ballistic Launcher Pistol', 13311), (142694, 142694, 200, 200, 'Augmented Biomech Armor Boots', 96103), (142646, 142646, 200, 200, 'Augmented Biomech Armor Cloak', 159128), (142693, 142693, 200, 200, 'Augmented Biomech Armor Gloves', 96101), (142692, 142692, 200, 200, 'Augmented Biomech Armor Helmet', 96142), (142691, 142691, 200, 200, 'Augmented Biomech Armor Pants', 96102), (142696, 142696, 200, 200, 'Augmented Biomech Armor Sleeves', 96104), (142695, 142695, 200, 200, 'Augmented Biomech Body Armor', 96105), (149919, 149919, 200, 200, 'Augmented Body Coolant Pad', 149940), (149927, 149927, 200, 200, 'Augmented Body Defrost Pad', 149939), (149915, 149915, 200, 200, 'Augmented Calluses Pad', 149947), (233265, 233265, 1, 1, 'Augmented Cyberdeck', 218706), (233266, 233266, 1, 1, 'Augmented Cyberdeck', 218706), (233428, 233428, 1, 1, 'Augmented Cyberdeck', 218706), (233429, 233429, 1, 1, 'Augmented Cyberdeck', 218706), (233430, 233430, 1, 1, 'Augmented Cyberdeck', 218706), (233431, 233431, 1, 1, 'Augmented Cyberdeck', 218706), (233432, 233432, 1, 1, 'Augmented Cyberdeck', 218706), (233433, 233433, 1, 1, 'Augmented Cyberdeck', 218706), (233434, 233434, 1, 1, 'Augmented Cyberdeck', 218706), (233435, 233435, 1, 1, 'Augmented Cyberdeck', 218706), (233436, 233436, 1, 1, 'Augmented Cyberdeck', 218706), (233437, 233437, 1, 1, 'Augmented Cyberdeck', 218706), (233438, 233438, 1, 1, 'Augmented Cyberdeck', 218706), (233439, 233439, 1, 1, 'Augmented Cyberdeck', 218706), (154405, 154405, 77, 77, 'Augmented Cyborg Arm Armor', 31643), (154403, 154403, 77, 77, 'Augmented Cyborg Boots', 22883), (154404, 154404, 77, 77, 'Augmented Cyborg Chest Armor', 31647), (154402, 154402, 77, 77, 'Augmented Cyborg Gloves', 31655), (154401, 154401, 77, 77, 'Augmented Cyborg Helmet', 31735), (154400, 154400, 77, 77, 'Augmented Cyborg Leg Armor', 22921), (149907, 149907, 200, 200, 'Augmented Deflector Pad', 149948), (206048, 206048, 1, 1, 'Augmented Deimos'' Bio-Enhanced Feedback Rifle', 114015), (149911, 149911, 200, 200, 'Augmented Detox Pad', 149938), (154847, 154847, 1, 1, 'Augmented Devastator shield', 84059), (149923, 149923, 200, 200, 'Augmented Energy Container Pad', 149942), (154844, 154844, 1, 1, 'Augmented Eradiactor shield', 84059), (85613, 85613, 200, 200, 'Augmented Flowers Tech Armor Boots', 22886), (85573, 85573, 200, 200, 'Augmented Flowers Tech Armor Gloves', 22933), (85534, 85534, 200, 200, 'Augmented Flowers Tech Armor Helmet', 31731), (85487, 85487, 200, 200, 'Augmented Flowers Tech Armor Pants', 22912), (85717, 85717, 200, 200, 'Augmented Flowers Tech Armor Sleeves', 22911), (85660, 85660, 200, 200, 'Augmented Flowers Tech Body Armor', 22990), (85658, 85658, 200, 200, 'Augmented Flowers Tech Female Body Armor', 22909), (202278, 202278, 80, 80, 'Augmented Hellfury Assault Cannon', 154362), (154846, 154846, 1, 1, 'Augmented Hellfury shield', 84059), (201939, 201939, 190, 190, 'Augmented Hellspinner Shock Cannon', 154361), (22124, 22124, 200, 200, 'Augmented Martial Artist Suit Boots', 13267), (22313, 22313, 200, 200, 'Augmented Martial Artist Suit Pants', 13297), (22046, 22046, 200, 200, 'Augmented Martial Artist Suit Shirt', 22094), (21937, 21937, 200, 200, 'Augmented Martial Artist Suit Sleeves', 13229), (274973, 274973, 300, 300, 'Augmented Master Engineer Pistol', 264789), (21805, 21805, 200, 200, 'Augmented Nano Armor Boots', 13269), (21797, 21797, 200, 200, 'Augmented Nano Armor Cloak', 22968), (21809, 21809, 200, 200, 'Augmented Nano Armor Gloves', 13282), (21813, 21813, 200, 200, 'Augmented Nano Armor Helmet', 10839), (31835, 31835, 200, 200, 'Augmented Nano Armor Hood', 23004), (21817, 21817, 200, 200, 'Augmented Nano Armor Pants', 13299), (21793, 21793, 200, 200, 'Augmented Nano Armor Sleeves', 13231), (21801, 21801, 200, 200, 'Augmented Nano Body Armor', 13252), (149931, 149931, 200, 200, 'Augmented Neutralizer Pad', 149937), (160423, 160424, 1, 200, 'Augmented OT Ring', 286193), (149903, 149903, 200, 200, 'Augmented Radiation Reduction Pad', 149934), (293236, 293236, 300, 300, 'Augmented Subturbine', 21151), (22162, 22162, 200, 200, 'Augmented Tech Armor Boots', 13275), (22216, 22216, 200, 200, 'Augmented Tech Armor Gloves', 13287), (22266, 22266, 200, 200, 'Augmented Tech Armor Helmet', 10844), (22351, 22351, 200, 200, 'Augmented Tech Armor Pants', 13305), (21975, 21975, 200, 200, 'Augmented Tech Armor Sleeves', 13237), (22084, 22084, 200, 200, 'Augmented Tech Body Armor', 13258), (22088, 22088, 200, 200, 'Augmented Tech Female Body Armor', 31555), (88075, 88075, 200, 200, 'Augmented Urban Battle Suit', 41164), (158798, 158798, 100, 100, 'Aura Magnifier', 12663), (223706, 223707, 20, 80, 'Aurea''s Boots of Escape', 13272), (223704, 223705, 20, 80, 'Aurea''s Heated Cloak', 218276), (207719, 207719, 10, 10, 'Auto Paint - Adaga Paint Remover', 100331), (204204, 204204, 1, 1, 'Auto Paint v. 301 - XL Vivid Red', 20403), (204205, 204205, 1, 1, 'Auto Paint v. 303 - XL Gold Flash', 20403), (203815, 203815, 1, 1, 'Auto Paint v. 309 - Elegante', 20403), (203816, 203816, 1, 1, 'Auto Paint v. 310 - Brutal', 20403), (137289, 137290, 1, 200, 'Auto Targeting C. -IIR 3 -Clairvoyant-', 130760), (137293, 137294, 1, 200, 'Auto Targeting C. -IIR 5 -Powermolder-', 130762), (137285, 137286, 1, 200, 'Auto Targeting Computer -IIR 1', 130758), (137287, 137288, 1, 200, 'Auto Targeting Computer -IIR 2-Groper-', 130759), (137291, 137292, 1, 200, 'Auto Targeting Computer -IIR 4 -Ultra-', 130761), (227076, 227076, 1, 1, 'Avalanche', 239265), (160463, 160466, 1, 200, 'Avangeline Terrigena Web Cloak', 160451), (286213, 286213, 200, 200, 'Avarice-Infused Wax', 284331), (165207, 165207, 100, 100, 'Average Gloves', 37106), (199676, 199676, 215, 215, 'Average Nadir Homage Armor Boots', 22876), (199697, 199697, 215, 215, 'Average Nadir Homage Armor Gloves', 22931), (199718, 199718, 215, 215, 'Average Nadir Homage Armor Helmet', 31733), (199739, 199739, 215, 215, 'Average Nadir Homage Armor Pants', 22914), (199760, 199760, 215, 215, 'Average Nadir Homage Armor Sleeves', 22960), (199781, 199781, 215, 215, 'Average Nadir Homage Body Armor', 22985), (302724, 302724, 300, 300, 'Awakened Armplates of Elimination', 302967), (302726, 302726, 300, 300, 'Awakened Boots of Concourse', 302954), (235416, 235416, 180, 180, 'Awakened Brain Symbiant, Artillery Unit Aban', 215189), (235860, 235860, 180, 180, 'Awakened Brain Symbiant, Extermination Unit Aban', 215189), (235643, 235643, 180, 180, 'Awakened Brain Symbiant, Infantry Unit Aban', 215189), (302730, 302730, 300, 300, 'Awakened Burden of Competence', 302952), (235469, 235469, 180, 180, 'Awakened Chest Symbiant, Artillery Unit Aban', 215181), (236361, 236361, 180, 180, 'Awakened Chest Symbiant, Control Unit Aban', 215183), (235912, 235912, 180, 180, 'Awakened Chest Symbiant, Extermination Unit Aban', 215181), (235690, 235690, 180, 180, 'Awakened Chest Symbiant, Infantry Unit Aban', 215181), (236136, 236136, 180, 180, 'Awakened Chest Symbiant, Support Unit Aban', 215181), (302729, 302729, 300, 300, 'Awakened Cuirass of Obstinacy', 302953), (235437, 235437, 180, 180, 'Awakened Ear Symbiant, Artillery Unit Aban', 230977), (236326, 236326, 180, 180, 'Awakened Ear Symbiant, Control Unit Aban', 230977), (235876, 235876, 180, 180, 'Awakened Ear Symbiant, Extermination Unit Aban', 230977), (236104, 236104, 180, 180, 'Awakened Ear Symbiant, Support Unit Aban', 230977), (236278, 236278, 180, 180, 'Awakened Feet Symbiant, Support Unit Aban', 215187), (302722, 302722, 300, 300, 'Awakened Gauntlets of Deformation', 302955), (302727, 302727, 300, 300, 'Awakened Greaves of Malfeasance', 302957), (302728, 302728, 300, 300, 'Awakened Helmet of Hypocrisy', 302956), (235487, 235487, 180, 180, 'Awakened Left Arm Symbiant, Artillery Unit Aban', 215179), (235930, 235930, 180, 180, 'Awakened Left Arm Symbiant, Extermination Unit Aban', 215175), (236157, 236157, 180, 180, 'Awakened Left Arm Symbiant, Support Unit Aban', 215175), (236033, 236033, 180, 180, 'Awakened Left Hand Symbiant, Extermination Unit Aban', 215172), (235980, 235980, 180, 180, 'Awakened Left Wrist Symbiant, Extermination Unit Aban', 215198), (235759, 235759, 180, 180, 'Awakened Left Wrist Symbiant, Infantry Unit Aban', 215198), (236215, 236215, 180, 180, 'Awakened Left Wrist Symbiant, Support Unit Aban', 215198), (235454, 235454, 180, 180, 'Awakened Right Arm Symbiant, Artillery Unit Aban', 215176), (235674, 235674, 180, 180, 'Awakened Right Arm Symbiant, Infantry Unit Aban', 215180), (236117, 236117, 180, 180, 'Awakened Right Arm Symbiant, Support Unit Aban', 215178), (236451, 236451, 180, 180, 'Awakened Right Hand Symbiant, Control Unit Aban', 215173), (236231, 236231, 180, 180, 'Awakened Right Hand Symbiant, Support Unit Aban', 215174), (302725, 302725, 300, 300, 'Awakened Shoulderplates of Sabotage', 302958), (302723, 302723, 300, 300, 'Awakened Sleeves of Senseless Violence', 302951), (274727, 274727, 1, 1, 'Awakened Soul Crystal', 274673), (236467, 236467, 180, 180, 'Awakened Thigh Symbiant, Control Unit Aban', 215191), (236018, 236018, 180, 180, 'Awakened Thigh Symbiant, Extermination Unit Aban', 215192), (235793, 235793, 180, 180, 'Awakened Thigh Symbiant, Infantry Unit Aban', 215191), (236245, 236245, 180, 180, 'Awakened Thigh Symbiant, Support Unit Aban', 215190), (236414, 236414, 180, 180, 'Awakened Waist Symbiant, Control Unit Aban', 215193), (235740, 235740, 180, 180, 'Awakened Waist Symbiant, Infantry Unit Aban', 215193), (302921, 302921, 1, 1, 'Awakened Xan Combat Merit Board', 279442), (302922, 302922, 1, 1, 'Awakened Xan Defense Merit Board', 279443), (251237, 251237, 1, 1, 'Awakening', 255628), (211242, 211243, 1, 299, 'Ax of Violeta', 21136), (263291, 263291, 150, 150, 'Aythem''s Coat of Information', 159128), (275447, 275447, 1, 1, 'Aythem''s Summer Top', 275187), (154902, 154902, 198, 198, 'Azure Cobra of Orma', 154363), (162247, 162247, 10, 10, 'B.B.I. - Nano Enhanced B-12 Tanning Acid', 156490), (203477, 203478, 100, 200, 'BBAS Engine', 203505), (203481, 203482, 100, 200, 'BBAS Turbo Tempus', 203506), (124374, 124375, 22, 54, 'BBI AS-90', 84025), (124382, 124382, 185, 185, 'BBI AS-90 Gold Star', 84025), (124380, 124381, 130, 184, 'BBI AS-90 Silver Liner', 84025), (124376, 124377, 55, 89, 'BBI AS-90 Tuft', 84025), (124378, 124379, 90, 129, 'BBI AS-90 Tussock', 84025), (159037, 159038, 99, 199, 'BBI Faithful 100', 113994), (305980, 305980, 200, 200, 'BBI Faithful 1000', 113994), (159035, 159036, 1, 98, 'BBI Faithful 22', 113994), (159039, 159039, 200, 200, 'BBI Faithful 750', 113994), (201252, 201253, 30, 149, 'BBI Gyro Gun', 33153), (201256, 201256, 200, 200, 'BBI Gyro Top Gun', 33153), (160207, 160208, 1, 199, 'BBI Mamba GGFC 1217', 114014), (160209, 160209, 200, 200, 'BBI Mamba GGFC 2388', 114014), (124433, 124434, 30, 49, 'BBI Minami-90', 13312), (124439, 124440, 115, 159, 'BBI Minami-90 Light Spring Dance', 13312), (124443, 124443, 186, 186, 'BBI Minami-90 Muddy Intestines', 13312), (124435, 124436, 50, 79, 'BBI Minami-90 Scent of Female Ant', 13312), (124437, 124438, 80, 114, 'BBI Minami-90 Slide on Rusted Lid', 13312), (124441, 124442, 160, 185, 'BBI Minami-90 Sticky Love Rain', 13312), (124075, 124076, 26, 43, 'BBI PS500', 33155), (271489, 271490, 1, 300, 'BBI PS500 - 000', 33155), (271491, 271492, 1, 300, 'BBI PS500 - 002', 33155), (271493, 271494, 1, 300, 'BBI PS500 - 402', 33155), (271495, 271496, 1, 300, 'BBI PS500 - C02', 33155), (124081, 124082, 90, 110, 'BBI PS500 Beck', 33155), (124079, 124080, 68, 89, 'BBI PS500 Gaudi', 33155), (124087, 124088, 150, 174, 'BBI PS500 Hugo', 33155), (124091, 124091, 200, 200, 'BBI PS500 Kid Loco', 33155), (124077, 124078, 44, 67, 'BBI PS500 Kipling', 33155), (124089, 124090, 175, 199, 'BBI PS500 Marine', 33155), (124083, 124084, 111, 129, 'BBI PS500 Schjerfbeck', 33155), (124085, 124086, 130, 149, 'BBI PS500 Wilde', 33155), (124458, 124459, 1, 7, 'BBI Ranged Restraint Carbine (Joith gun)', 33153), (124460, 124461, 8, 13, 'BBI Ranged Restraint Carbine (Joith gun)', 33153), (124462, 124463, 14, 19, 'BBI Ranged Restraint Carbine (Joith gun)', 33153), (124464, 124464, 20, 20, 'BBI Ranged Restraint Carbine (Joith gun)', 33153), (271609, 271610, 1, 300, 'BBI Sigma III - 000', 13318), (271613, 271614, 1, 300, 'BBI Sigma III - 401', 13318), (271615, 271616, 1, 300, 'BBI Sigma III - C01', 13318), (152257, 152258, 1, 200, 'BBQ Shoulder Pillow', 85162), (119146, 119146, 154, 154, 'BE Remote Controller', 99273), (248347, 248347, 1, 1, 'BO-18 (Blue Offset)', 13313), (275481, 275481, 1, 1, 'BOTN Biological Transceiver Dropper Item', 84059), (284984, 284984, 1, 1, 'BROKEN', 284909), (203479, 203480, 100, 200, 'BSEC', 203507), (154658, 154658, 1, 1, 'Baboons - VIP card', 154592), (234879, 234879, 1, 1, 'Baby Molok Oil', 100309), (165375, 165375, 100, 100, 'Baby Spider Poison Gland', 38055), (248933, 248934, 1, 220, 'Bacchante''s Anun Wings', 99288), (253500, 253500, 1, 1, 'Bacchante''s Fancy Blue Hanging Lanterns', 255957), (253501, 253501, 1, 1, 'Bacchante''s Fancy Red Hanging Lanterns', 255958), (253502, 253502, 1, 1, 'Bacchante''s Fancy Yellow Hanging Lanterns', 255959), (253484, 253484, 1, 1, 'Bacchante''s Frosted Glass Table', 255969), (225689, 225690, 1, 300, 'Bacchante''s Harmonic Circlet', 151921), (258207, 258207, 1, 1, 'Bacchante''s Pie', 130518), (248996, 248996, 1, 1, 'Back Tattoo of KAZE', 255289), (248995, 248995, 1, 1, 'Back Tattoo of the Opposing Force', 255288), (206730, 206731, 50, 150, 'Backpack of Survival', 99659), (275714, 275714, 1, 1, 'Backpack of Various Supplies', 99669), (207779, 207779, 1, 1, 'Backstab', 117745), (304490, 304490, 1, 1, 'Backyard Explorer Pack', 304443), (304573, 304573, 1, 1, 'Backyard Explorer Pack', 304443), (283929, 283929, 1, 1, 'Bad Brew', 283975), (267580, 267581, 1, 300, 'Baffle''s Ring of Fling', 151931), (23153, 23153, 1, 1, 'Bag', 154189), (206724, 206724, 100, 100, 'Bag of Exchange', 99666), (206725, 206725, 100, 100, 'Bag of Exchange', 99666), (206726, 206726, 100, 100, 'Bag of Exchange', 99666), (206727, 206727, 100, 100, 'Bag of Exchange', 99666), (206728, 206728, 100, 100, 'Bag of Exchange', 99666), (206729, 206729, 100, 100, 'Bag of Exchange', 99666), (150910, 150910, 10, 10, 'Balance Adjuster - Left', 130563), (150911, 150911, 10, 10, 'Balance Adjuster - Right', 130564), (227044, 227045, 1, 500, 'Balance of Yin and Yang', 239149), (227046, 227047, 1, 500, 'Balance of Yin and Yang', 239149), (227048, 227049, 1, 500, 'Balance of Yin and Yang', 239149), (227050, 227051, 1, 500, 'Balance of Yin and Yang', 239149), (230903, 230903, 1, 1, 'Balanced', 82197), (122627, 122628, 121, 140, 'Balanced Aero Borealis Corona', 33147), (248924, 248925, 60, 69, 'Balanced Airframed Blaster Betatype', 33158), (128883, 128884, 121, 140, 'Balanced Arwen MM-50 Grenade Launcher', 13336), (152321, 152322, 141, 170, 'Balanced Assault Partizan', 21140), (123640, 123641, 121, 140, 'Balanced BBI Sigma III', 13318), (124761, 124762, 121, 140, 'Balanced BBI WMMA CAW', 13311), (122513, 122514, 121, 140, 'Balanced Biogun', 38056), (122019, 122020, 121, 140, 'Balanced Blackened Blaster', 13321), (139765, 139765, 1, 1, 'Balanced Blackened Blaster Construction Manual', 136332), (122095, 122096, 121, 140, 'Balanced Blackened Blaster Rifle', 13313), (161318, 161318, 1, 1, 'Balanced Blackened Blaster Rifle Construction Manual', 136332), (122000, 122001, 121, 140, 'Balanced Blackened Miniblaster', 13316), (139563, 139563, 1, 1, 'Balanced Blackened Miniblaster Construction Manual', 136332), (122608, 122609, 121, 140, 'Balanced Blackhole Mk IX', 33171), (141297, 141297, 1, 1, 'Balanced Blackhole Mk IX Construction Manual', 136332), (122779, 122780, 121, 140, 'Balanced Bow-Blaster', 114013), (121867, 121868, 121, 140, 'Balanced Chunkprojector', 21144), (138794, 138794, 1, 1, 'Balanced Chunkprojector Construction Manual', 136332), (122209, 122210, 241, 280, 'Balanced DNA-Locked Blaster Rifle', 13313), (123107, 123108, 121, 140, 'Balanced DNA-Targeted Executioner Pistol', 13323), (121810, 121811, 121, 140, 'Balanced Disaffiliation Sniper', 21146), (138068, 138068, 1, 1, 'Balanced Disaffiliation Sniper Construction Manual', 136332), (249846, 249848, 121, 140, 'Balanced Dual Razor Disaffiliation Sniper', 21146), (122133, 122134, 121, 140, 'Balanced E-Beamer', 21150), (138426, 138426, 1, 1, 'Balanced E-Beamer Construction Manual', 136332), (122475, 122476, 121, 140, 'Balanced El Diablo', 31812), (122456, 122457, 121, 140, 'Balanced El Dieu', 31809), (122247, 122248, 121, 140, 'Balanced Electrical Pacifier', 21150), (123183, 123184, 121, 140, 'Balanced Electron-Charged Pistol', 13316), (141801, 141801, 1, 1, 'Balanced Electron-Charged Pistol Construction Manual', 136332), (123317, 123318, 121, 140, 'Balanced Enriched Uranium Sprayer', 21148), (122266, 122267, 121, 140, 'Balanced Eradicator XCI-52', 13314), (142865, 142866, 111, 130, 'Balanced Eye Wind Onehander', 13341), (124742, 124743, 121, 140, 'Balanced FN P00', 21148), (128770, 128771, 121, 140, 'Balanced Fabrique Des Armes Bizon 20-19', 21144), (121924, 121925, 121, 140, 'Balanced Flamethrower', 19800), (139383, 139383, 1, 1, 'Balanced Flamethrower Construction Manual', 136332), (124886, 124887, 131, 170, 'Balanced GE ME30 Mom', 13322), (124979, 124980, 121, 140, 'Balanced GE XM-559 Man-Portable Laser', 21151), (128727, 128728, 121, 140, 'Balanced Galahad Inc. 077 Personal Weapon', 21148), (128751, 128752, 121, 140, 'Balanced Galahad Inc. Tactical Machine Pistol 102', 21147), (121943, 121944, 121, 140, 'Balanced Gatling Saw 20k', 84025), (122879, 122880, 121, 140, 'Balanced Grenade-Thrower', 13336), (141604, 141604, 1, 1, 'Balanced Grenade-Thrower Construction Manual', 136332), (128667, 128668, 121, 140, 'Balanced HSR Arms Tech Assault IV', 21148), (128686, 128687, 121, 140, 'Balanced HSR Arms Tech Assault V', 21148), (130158, 130159, 141, 160, 'Balanced Hayfork', 85168), (123145, 123146, 123, 140, 'Balanced Heavy Gamma-Beamer', 33158), (121905, 121906, 121, 140, 'Balanced Heavy Grinner', 21147), (139181, 139181, 1, 1, 'Balanced Heavy Grinner Construction Manual', 136332), (122684, 122685, 121, 140, 'Balanced Heavy Lead Sprayer', 21148), (141467, 141467, 1, 1, 'Balanced Heavy Lead Sprayer Construction Manual', 136332), (124941, 124942, 121, 140, 'Balanced IEC Flashpoint Laser Rifle', 33146), (123507, 123508, 121, 140, 'Balanced IMI Desert Reet 1000', 13334), (122494, 122495, 121, 140, 'Balanced Ingram Blaster 23-X', 13317), (125017, 125018, 121, 140, 'Balanced Joint Clans Exocet II', 85167), (125036, 125037, 121, 140, 'Balanced Joint Clans Patriot', 114013), (248571, 248572, 121, 140, 'Balanced Kaetans Supernova', 33146), (124655, 124656, 121, 140, 'Balanced Kalinkanov ZU-113 Security Weapon', 21148), (122722, 122723, 121, 140, 'Balanced Kevlar Bow', 85167), (123545, 123546, 123, 140, 'Balanced Khemo-Tech Model 07 (Pocket 20)', 113995), (123526, 123527, 121, 140, 'Balanced Khemo-Tech Model 200', 113994), (123564, 123565, 123, 140, 'Balanced Knights Inc. Special-Purpose Pistol 2902', 13318), (122993, 122994, 121, 140, 'Balanced Kolt 58 Magnum', 13334), (141765, 141765, 1, 1, 'Balanced Kolt 58 Magnum Construction Manual', 136332), (122285, 122286, 121, 140, 'Balanced Kolt PDW-37', 13315), (140541, 140541, 1, 1, 'Balanced Kolt PDW-37 Construction Manual', 136332), (123164, 123165, 131, 146, 'Balanced Light Beamer Pistol', 33157), (142538, 142538, 1, 1, 'Balanced Light Beamer Pistol Construction Manual', 136332), (152166, 152167, 126, 165, 'Balanced Light Tube-Bow', 85167), (128620, 128621, 121, 140, 'Balanced MTI G-36K', 33155), (124610, 124611, 141, 160, 'Balanced MTI MP200', 21147), (124693, 124694, 121, 140, 'Balanced MTI MPK-22 Briefcase Gun', 13311), (124636, 124637, 131, 140, 'Balanced MTI UMP22', 114016), (123488, 123489, 121, 140, 'Balanced MTI USP 21', 113993), (142797, 142798, 121, 140, 'Balanced Madam Freeze', 13336), (124674, 124675, 121, 140, 'Balanced Malorian Arms M25 Goodgun', 33153), (122437, 122438, 121, 140, 'Balanced Mausser Particle Streamer', 31807), (140911, 140911, 1, 1, 'Balanced Mausser Particle Streamer Construction Manual', 136332), (123050, 123051, 121, 140, 'Balanced Medium Shotgun', 13340), (122190, 122191, 121, 140, 'Balanced Megajolt', 13322), (140337, 140337, 1, 1, 'Balanced Megajolt Construction Manual', 136332), (248601, 248602, 121, 140, 'Balanced Merren Flamethrower', 19800), (123031, 123032, 121, 140, 'Balanced Mini-Shotgun', 13341), (142180, 142180, 1, 1, 'Balanced Mini-Shotgun Construction Manual', 136332), (122898, 122899, 121, 140, 'Balanced Minielectronium', 13323), (122342, 122343, 121, 140, 'Balanced Minigrinner', 33156), (140708, 140708, 1, 1, 'Balanced Minigrinner Construction Manual', 136332), (123221, 123222, 140, 154, 'Balanced Nano-Charged Assault Rifle', 45783), (123241, 123242, 140, 154, 'Balanced Nano-Charged Rifle', 45782), (123431, 123432, 121, 140, 'Balanced Netgun', 13322), (253227, 253228, 180, 209, 'Balanced Nizno''s Bomb Blaster', 13336), (124723, 124724, 121, 140, 'Balanced Nord Armwerk MAX', 21144), (123279, 123280, 124, 142, 'Balanced Nova Flow - Mk IV', 33144), (128851, 128852, 121, 140, 'Balanced OET Co. MP-21 Tactical Machine Pistol', 21148), (123583, 123584, 123, 140, 'Balanced OT 0220 22mm Combat Magnum', 31808), (123469, 123470, 121, 140, 'Balanced OT Boomer+.90AE', 113995), (128804, 128805, 121, 140, 'Balanced OT Cobra M-33', 21148), (124903, 124904, 121, 140, 'Balanced OT M-00 Crystal', 13336), (124810, 124811, 121, 140, 'Balanced OT M-110 Renegade SAW', 13336), (124829, 124830, 121, 140, 'Balanced OT M-70 HardRain GPMG', 13336), (124572, 124573, 121, 140, 'Balanced OT Saladin', 21148), (124591, 124592, 121, 140, 'Balanced OT Viper IX', 21148), (122304, 122305, 121, 140, 'Balanced Omni-Flamer Mk IV', 33161), (122532, 122533, 121, 140, 'Balanced Omni-Flamer Strategic', 33159), (122551, 122552, 121, 140, 'Balanced Omni-Pol Standard Flamer', 33160), (125093, 125094, 121, 140, 'Balanced Oneida Razor Half-Bow', 114013), (123621, 123622, 121, 140, 'Balanced PNG M1007A1 Tactical Revolver', 113997), (124867, 124868, 121, 140, 'Balanced Planet Gripon Arms Hard-Boomer', 13311), (121886, 121887, 121, 140, 'Balanced Plasmaprojector', 21145), (138961, 138961, 1, 1, 'Balanced Plasmaprojector Construction Manual', 136332), (249861, 249862, 121, 140, 'Balanced Razorback Disaffiliation Sniper', 21146), (125055, 125056, 121, 140, 'Balanced Reet-Tech Junior Urban Crossbow', 114013), (124998, 124999, 121, 140, 'Balanced Reet-Tech Stryker X', 85167), (125074, 125075, 121, 140, 'Balanced Reet-Tech Venom Compound Bow', 85167), (123678, 123679, 121, 140, 'Balanced River MV', 29116), (123697, 123698, 121, 140, 'Balanced Seburo Bobsons', 13330), (128648, 128649, 121, 140, 'Balanced Seburo C-99a', 21144), (123602, 123603, 123, 140, 'Balanced Sentinel 20mm Snub Pistol', 31811), (123659, 123660, 121, 140, 'Balanced Sentinels ETE Strike Gun', 31810), (248533, 248534, 121, 140, 'Balanced Sharky''s Kevlar Bow', 85167), (122665, 122666, 121, 140, 'Balanced Silver Miniblaster', 13316), (121848, 121849, 121, 140, 'Balanced Sleekblaster', 13329), (138672, 138672, 1, 1, 'Balanced Sleekblaster Construction Manual', 136332), (123088, 123089, 121, 140, 'Balanced Sleekblaster Major', 13328), (142372, 142372, 1, 1, 'Balanced Sleekblaster Major Construction Manual', 136332), (121829, 121830, 121, 140, 'Balanced Sleekblaster Minor', 13327), (138242, 138242, 1, 1, 'Balanced Sleekblaster Minor Construction Manual', 136332), (160493, 160494, 141, 160, 'Balanced Sleekmaster Classic', 13329), (123298, 123299, 131, 146, 'Balanced Slugger', 33154), (122323, 122324, 121, 140, 'Balanced Stanton Stunner IV', 13313), (128902, 128903, 121, 140, 'Balanced Steiner LM-5 Assault Laser', 33171), (122228, 122229, 121, 140, 'Balanced Stigma Rifle', 33155), (121791, 121792, 121, 140, 'Balanced Subturbine', 21151), (137822, 137822, 1, 1, 'Balanced Subturbine Construction Manual', 136332), (122570, 122571, 121, 140, 'Balanced Sunburst Mk III', 33148), (143856, 143857, 121, 140, 'Balanced Sunburst Mk IV', 33148), (122589, 122590, 121, 140, 'Balanced Supernova Mk VI', 33146), (141105, 141105, 1, 1, 'Balanced Supernova Mk VI Construction Manual', 136332), (123202, 123203, 121, 140, 'Balanced Suppressor', 31807), (141959, 141959, 1, 1, 'Balanced Suppressor Construction Manual', 136332), (124960, 124961, 121, 140, 'Balanced Techtronica Neural Disruptor', 21145), (122646, 122647, 121, 140, 'Balanced The Original Plasma-Emitter', 33145), (122038, 122039, 121, 140, 'Balanced Triplejolt', 13320), (139965, 139965, 1, 1, 'Balanced Triplejolt Construction Manual', 136332), (124791, 124792, 121, 140, 'Balanced Tsunami Raiden MP-Drum', 13311), (123450, 123451, 121, 140, 'Balanced Ultra-Light Missile Pistol Raid 9-X', 13315), (124848, 124849, 121, 140, 'Balanced Vektor M-31 Automatic Grenade Launcher', 13336), (248353, 248353, 1, 1, 'Balanced War Hammer', 33167), (124922, 124923, 121, 140, 'Balanced Westinghouse IM-50 Plasma Burner', 33146), (248620, 248621, 121, 140, 'Balanced Xnemth Plasmaprojector', 21145), (128823, 128824, 121, 140, 'Balanced Zastaba M0-2 Assault Weapon (Zero)', 33153), (232774, 232775, 1, 149, 'Balas ruby', 286896), (232775, 232777, 150, 199, 'Balas ruby', 286896), (232777, 232778, 200, 249, 'Balas ruby', 286896), (232778, 232779, 250, 400, 'Balas ruby', 286896), (260242, 260242, 200, 200, 'Ball Proc', 154361), (211230, 211231, 1, 299, 'Ballistic Launcher Pistol', 13311), (284851, 284851, 1, 1, 'Balloon Propeller', 264785), (130635, 130635, 1, 1, 'Banana Surprise', 37976), (130636, 130636, 1, 1, 'Banana Surprise III', 37978), (165483, 165483, 200, 200, 'Band of Beeswax', 151931), (267564, 267565, 1, 300, 'Band of Bravery', 151931), (165476, 165476, 200, 200, 'Band of Dog Molars', 84067), (165480, 165480, 200, 200, 'Band of Snake Skin', 151927), (225595, 225596, 1, 300, 'Band of So''Jhin', 41174), (165481, 165481, 200, 200, 'Band of the Bear Claw', 151917), (165486, 165486, 200, 200, 'Band of the Frog Tongue', 151930), (225991, 225992, 1, 300, 'Band of the Third Pact', 151929), (163497, 163498, 1, 200, 'Banded Ring of Hope', 84063), (230401, 230401, 1, 1, 'Bane of Eldini', 82201), (230400, 230400, 1, 1, 'Bane of Elyn', 82201), (230402, 230402, 1, 1, 'Bane of Farzad', 82201), (269992, 269992, 250, 250, 'Bane of Ice', 25795), (230403, 230403, 1, 1, 'Bane of Jareck', 82201), (230404, 230404, 1, 1, 'Bane of Nadira', 82201), (230415, 230415, 1, 1, 'Bane of the Challenger', 82201), (289800, 289800, 1, 1, 'Bane of the Giseleh', 82201), (208027, 208027, 200, 200, 'Bang of Thunder', 85167), (160197, 160198, 121, 170, 'Bang-Bang Glove', 45784), (267759, 267759, 1, 1, 'Banishing Eye of the Stygian Witch', 37931), (168925, 168925, 1, 1, 'Banishment Pulser Wearable', 84059), (297302, 297302, 1, 1, 'Bank of Rubi-Ka Credit Card', 297308), (297315, 297315, 1, 1, 'Bank of Rubi-Ka Credit Card', 297308), (275678, 275678, 1, 1, 'Barrage Jammer', 275675), (23163, 23163, 1, 1, 'Barrel', 20412), (246874, 246874, 250, 250, 'Barrel of Bacam-Xum', 130706), (163589, 163589, 200, 200, 'Barrel of an Old Pistol', 130715), (124369, 124370, 1, 99, 'Barret M-00 Anti-Material Rifle', 33158), (124371, 124371, 100, 100, 'Barret M-00 William', 33158), (208043, 208044, 40, 49, 'Barret R-05 A-M Sniper', 33158), (208045, 208045, 50, 50, 'Barret R-06 A-M Sniper', 33158), (204653, 204653, 1, 1, 'Barrow Strength', 144709), (164933, 164934, 1, 200, 'Barter Armor Boots', 13269), (164935, 164936, 1, 200, 'Barter Armor Gloves', 13282), (164937, 164938, 1, 200, 'Barter Armor Helmet', 10839), (164939, 164940, 1, 200, 'Barter Armor Pants', 13299), (164931, 164932, 1, 200, 'Barter Armor Sleeves', 13231), (164941, 164942, 1, 200, 'Barter Body Armor', 13252), (277432, 277433, 1, 199, 'Base NCU - Type 00 (0/6)', 276942), (277434, 277435, 200, 299, 'Base NCU - Type 00 (0/6)', 276942), (277436, 277436, 300, 300, 'Base NCU - Type 00 (0/6)', 276942), (234416, 234416, 1, 1, 'Base Redeemed Defense', 130862), (288131, 288131, 200, 200, 'Basic Belt', 288089), (292263, 292263, 1, 1, 'Basic Belt Component Platform', 119145), (154331, 154331, 1, 1, 'Basic Bio-Comminutor', 149951), (120594, 142694, 1, 199, 'Basic Biomech Armor Boots', 96103), (142632, 142646, 1, 199, 'Basic Biomech Armor Cloak', 159128), (120593, 142693, 1, 199, 'Basic Biomech Armor Gloves', 96101), (120592, 142692, 1, 199, 'Basic Biomech Armor Helmet', 96142), (120591, 142691, 1, 199, 'Basic Biomech Armor Pants', 96102), (120596, 142696, 1, 199, 'Basic Biomech Armor Sleeves', 96104), (120595, 142695, 1, 199, 'Basic Biomech Body Armor', 96105), (149920, 149919, 1, 199, 'Basic Body Coolant Pad', 149940), (149928, 149927, 1, 199, 'Basic Body Defrost Pad', 149939), (156058, 156058, 1, 1, 'Basic Calculator', 156319), (149916, 149915, 1, 199, 'Basic Calluses Pad', 149947), (101165, 101166, 1, 200, 'Basic Chest Implant', 297764), (142928, 142929, 1, 200, 'Basic Co-Weapon Interface', 130802), (233255, 233255, 1, 1, 'Basic Cyberdeck', 218706), (233256, 233256, 1, 1, 'Basic Cyberdeck', 218706), (233257, 233257, 1, 1, 'Basic Cyberdeck', 218706), (233258, 233258, 1, 1, 'Basic Cyberdeck', 218706), (233259, 233259, 1, 1, 'Basic Cyberdeck', 218706), (233260, 233260, 1, 1, 'Basic Cyberdeck', 218706), (233261, 233261, 1, 1, 'Basic Cyberdeck', 218706), (233262, 233262, 1, 1, 'Basic Cyberdeck', 218706), (233263, 233263, 1, 1, 'Basic Cyberdeck', 218706), (233264, 233264, 1, 1, 'Basic Cyberdeck', 218706), (233267, 233267, 1, 1, 'Basic Cyberdeck', 218706), (233268, 233268, 1, 1, 'Basic Cyberdeck', 218706), (233269, 233269, 1, 1, 'Basic Cyberdeck', 218706), (233270, 233270, 1, 1, 'Basic Cyberdeck', 218706), (149908, 149907, 1, 199, 'Basic Deflector Pad', 149948), (149912, 149911, 1, 199, 'Basic Detox Pad', 149938), (101133, 101134, 1, 200, 'Basic Ear Implant', 297769), (149924, 149923, 1, 199, 'Basic Energy Container Pad', 149942), (101101, 101102, 1, 200, 'Basic Eye Implant', 297768), (247169, 247169, 1, 1, 'Basic Fashion Cloak', 22895), (247167, 247167, 1, 1, 'Basic Fashion Footwear', 245925), (247166, 247166, 1, 1, 'Basic Fashion Gloves', 245926), (247157, 247157, 1, 1, 'Basic Fashion Headwear', 160726), (247165, 247165, 1, 1, 'Basic Fashion Legwear', 245928), (247164, 247164, 1, 1, 'Basic Fashion Sleeve', 245923), (247163, 247163, 1, 1, 'Basic Fashion Vest', 245924), (101293, 101294, 1, 200, 'Basic Feet Implant', 297767), (227165, 227166, 1, 14, 'Basic Firearm', 13311), (227167, 227167, 15, 15, 'Basic Firearm', 13311), (156012, 156013, 1, 200, 'Basic Flexible Shaft', 156088), (85614, 85613, 1, 199, 'Basic Flowers Tech Armor Boots', 22886), (85574, 85573, 1, 199, 'Basic Flowers Tech Armor Gloves', 22933), (85535, 85534, 1, 199, 'Basic Flowers Tech Armor Helmet', 31731), (85488, 85487, 1, 199, 'Basic Flowers Tech Armor Pants', 22912), (85718, 85717, 1, 199, 'Basic Flowers Tech Armor Sleeves', 22911), (85661, 85660, 1, 199, 'Basic Flowers Tech Body Armor', 22990), (85659, 85658, 1, 199, 'Basic Flowers Tech Female Body Armor', 22909), (101117, 101118, 1, 200, 'Basic Head Implant', 297766), (274541, 274541, 250, 250, 'Basic Infused Dust Brigade Bracer', 290459), (275872, 275872, 1, 1, 'Basic Jammer', 278512), (101181, 101182, 1, 200, 'Basic Left Arm Implant', 297765), (101277, 101278, 1, 200, 'Basic Left Hand Implant', 297776), (101229, 101230, 1, 200, 'Basic Left Wrist Implant', 297775), (101261, 101262, 1, 200, 'Basic Leg Implant', 297774), (85639, 22124, 1, 199, 'Basic Martial Artist Suit Boots', 13267), (85513, 22313, 1, 199, 'Basic Martial Artist Suit Pants', 13297), (85687, 22046, 1, 199, 'Basic Martial Artist Suit Shirt', 22094), (85743, 21937, 1, 199, 'Basic Martial Artist Suit Sleeves', 13229), (156010, 156011, 1, 200, 'Basic Mechanical Motion Drive', 156083), (85634, 21805, 1, 199, 'Basic Nano Armor Boots', 13269), (85716, 21797, 1, 199, 'Basic Nano Armor Cloak', 88054), (85594, 21809, 1, 199, 'Basic Nano Armor Gloves', 13282), (85555, 21813, 1, 199, 'Basic Nano Armor Helmet', 10839), (85715, 31835, 1, 199, 'Basic Nano Armor Hood', 23004), (85508, 21817, 1, 199, 'Basic Nano Armor Pants', 13299), (85738, 21793, 1, 199, 'Basic Nano Armor Sleeves', 13231), (85682, 21801, 1, 199, 'Basic Nano Body Armor', 13252), (25820, 25821, 1, 199, 'Basic Nano Recharger', 37992), (149932, 149931, 1, 199, 'Basic Neutralizer Pad', 149937), (199799, 199800, 200, 204, 'Basic Omni-Internops Armor Boots', 13270), (199800, 199801, 205, 210, 'Basic Omni-Internops Armor Boots', 13270), (199820, 199821, 200, 204, 'Basic Omni-Internops Armor Gloves', 13283), (199821, 199822, 205, 210, 'Basic Omni-Internops Armor Gloves', 13283), (199841, 199842, 200, 204, 'Basic Omni-Internops Armor Helmet', 10840), (199842, 199843, 205, 210, 'Basic Omni-Internops Armor Helmet', 10840), (199862, 199863, 200, 204, 'Basic Omni-Internops Armor Pants', 13300), (199863, 199864, 205, 210, 'Basic Omni-Internops Armor Pants', 13300), (199883, 199884, 200, 204, 'Basic Omni-Internops Armor Sleeves', 13232), (199884, 199885, 205, 210, 'Basic Omni-Internops Armor Sleeves', 13232), (199904, 199905, 200, 204, 'Basic Omni-Internops Body Armor', 13253), (199905, 199906, 205, 210, 'Basic Omni-Internops Body Armor', 13253), (199925, 199926, 200, 204, 'Basic Omni-Internops Elite Armor Boots', 21866), (199926, 199927, 205, 210, 'Basic Omni-Internops Elite Armor Boots', 21866), (199946, 199947, 200, 204, 'Basic Omni-Internops Elite Armor Gloves', 21872), (199947, 199948, 205, 210, 'Basic Omni-Internops Elite Armor Gloves', 21872), (199967, 199968, 200, 204, 'Basic Omni-Internops Elite Armor Helmet', 22269), (199968, 199969, 205, 210, 'Basic Omni-Internops Elite Armor Helmet', 22269), (199988, 199989, 200, 204, 'Basic Omni-Internops Elite Armor Pants', 21879), (199989, 199990, 205, 210, 'Basic Omni-Internops Elite Armor Pants', 21879), (200009, 200010, 200, 204, 'Basic Omni-Internops Elite Armor Sleeves', 21850), (200010, 200011, 205, 210, 'Basic Omni-Internops Elite Armor Sleeves', 21850), (200030, 200031, 200, 204, 'Basic Omni-Internops Elite Body Armor', 19816), (200031, 200032, 205, 210, 'Basic Omni-Internops Elite Body Armor', 19816), (149904, 149903, 1, 199, 'Basic Radiation Reduction Pad', 149934), (101149, 101150, 1, 200, 'Basic Right Arm Implant', 297773), (101245, 101246, 1, 200, 'Basic Right Hand Implant', 297772), (101197, 101198, 1, 200, 'Basic Right Wrist Implant', 297771), (156022, 156023, 1, 200, 'Basic Robot Brain', 156085), (85615, 22162, 1, 199, 'Basic Tech Armor Boots', 13275), (85575, 22216, 1, 199, 'Basic Tech Armor Gloves', 13287), (85536, 22266, 1, 199, 'Basic Tech Armor Helmet', 10844), (85489, 22351, 1, 199, 'Basic Tech Armor Pants', 13305), (85719, 21975, 1, 199, 'Basic Tech Armor Sleeves', 13237), (85663, 22084, 1, 199, 'Basic Tech Body Armor', 13258), (85662, 22088, 1, 199, 'Basic Tech Female Body Armor', 31555), (114018, 114019, 1, 200, 'Basic Trade Skill Item for Weapons', 83326), (88076, 88075, 1, 199, 'Basic Urban Battle Suit', 41164), (101213, 101214, 1, 200, 'Basic Waist Implant', 297770), (153982, 153982, 78, 78, 'Bastion of Deimos', 22396), (265365, 265365, 1, 1, 'Bat Shirt', 85945), (283982, 283982, 1, 1, 'Bat Wings', 283920), (124372, 124373, 1, 21, 'Battered BBI AS-90', 84025), (88078, 88067, 1, 199, 'Battered Battle Suit', 41166), (248578, 248579, 1, 21, 'Battered Fantaghiro BBI-Viral', 84025), (85517, 27360, 1, 199, 'Battered Flak Armor Pants', 22923), (85746, 27391, 1, 199, 'Battered Flak Armor Sleeves', 22910), (85693, 27389, 1, 199, 'Battered Flak Body Armor', 22905), (123828, 123829, 10, 39, 'Battered Freedom Arms 3927', 113997), (128834, 128835, 21, 30, 'Battered Freedom Arms Defender', 33153), (124025, 124026, 1, 23, 'Battered Galahad Inc. 055', 13321), (85645, 85644, 1, 199, 'Battered Leather Armor Boots', 13264), (85602, 85601, 1, 199, 'Battered Leather Armor Gloves', 13278), (85562, 85561, 1, 199, 'Battered Leather Armor Helmet', 10835), (85521, 85520, 1, 199, 'Battered Leather Armor Pants', 13293), (85750, 85749, 1, 199, 'Battered Leather Armor Sleeves', 13226), (85697, 85696, 1, 199, 'Battered Leather Body Armor', 13244), (85481, 85690, 1, 199, 'Battered Leather Vest', 19812), (85657, 85656, 1, 199, 'Battered Light Combat Armor Boots', 13261), (85533, 85532, 1, 199, 'Battered Light Combat Armor Pants', 13289), (85761, 85760, 1, 199, 'Battered Light Combat Armor Sleeves', 13222), (85714, 85713, 1, 199, 'Battered Light Combat Body Armor', 13240), (70558, 85640, 1, 199, 'Battered Low-Tech Armor Boots', 13266), (70562, 85597, 1, 199, 'Battered Low-Tech Armor Gloves', 13280), (70563, 85558, 1, 199, 'Battered Low-Tech Armor Helmet', 10837), (70564, 85515, 1, 199, 'Battered Low-Tech Armor Pants', 13295), (70565, 85514, 1, 199, 'Battered Low-Tech Armor Shorts', 13296), (70561, 85744, 1, 199, 'Battered Low-Tech Armor Sleeves', 13228), (70559, 85689, 1, 199, 'Battered Low-Tech Body Armor', 13250), (70560, 85688, 1, 199, 'Battered Low-Tech Female Body Armor', 13247), (124162, 124163, 1, 13, 'Battered MTI SL70 Rifle', 33155), (248730, 248741, 1, 13, 'Battered MTI SL70R Razorback Rifle', 33155), (85633, 85632, 1, 199, 'Battered Nomad Armor Boots', 21865), (85593, 85592, 1, 199, 'Battered Nomad Armor Gloves', 21871), (85554, 85553, 1, 199, 'Battered Nomad Armor Helmet', 22268), (85507, 85506, 1, 199, 'Battered Nomad Armor Pants', 21878), (85737, 85736, 1, 199, 'Battered Nomad Armor Sleeves', 21849), (85681, 85680, 1, 199, 'Battered Nomad Body Armor', 21859), (124348, 124349, 1, 24, 'Battered OT M500 SWAT Rifle', 13312), (128789, 128790, 12, 79, 'Battered Old English Trading Co. SPP-502', 21148), (85643, 85642, 1, 199, 'Battered Sid''s Leather Armor Boots', 22882), (85600, 85599, 1, 199, 'Battered Sid''s Leather Armor Gloves', 22936), (85560, 85559, 1, 199, 'Battered Sid''s Leather Armor Helmet', 31728), (85519, 85518, 1, 199, 'Battered Sid''s Leather Armor Pants', 22924), (85748, 85747, 1, 199, 'Battered Sid''s Leather Armor Sleeves', 22958), (85695, 85694, 1, 199, 'Battered Sid''s Leather Body Armor', 22980), (262956, 262956, 1, 1, 'Battle Award', 149944), (271209, 271210, 1, 300, 'Battle Axe - 000', 21135), (271211, 271212, 1, 300, 'Battle Axe - 010', 21135), (271213, 271214, 1, 300, 'Battle Axe - 050', 21135), (271215, 271216, 1, 300, 'Battle Axe - 070', 21135), (271217, 271218, 1, 300, 'Battle Axe - 870', 21135), (204267, 204268, 1, 199, 'Battle Prepared Nano Recharge Kit', 37982), (204268, 204269, 200, 300, 'Battle Prepared Nano Recharge Kit', 37982), (204270, 204271, 1, 199, 'Battle Prepared Treatment Kit', 37994), (204271, 204272, 200, 300, 'Battle Prepared Treatment Kit', 37994), (275151, 275152, 1, 49, 'Battle Station Battle Prepared Virus Scanner', 156490), (275152, 275153, 50, 99, 'Battle Station Battle Prepared Virus Scanner', 156490), (275153, 275154, 100, 199, 'Battle Station Battle Prepared Virus Scanner', 156490), (275154, 275155, 200, 300, 'Battle Station Battle Prepared Virus Scanner', 156490), (275156, 275157, 1, 49, 'Battle Station Enhanced Free Movement', 11756), (275157, 275158, 50, 99, 'Battle Station Enhanced Free Movement', 11756), (275158, 275159, 100, 199, 'Battle Station Enhanced Free Movement', 11756), (275159, 275160, 200, 300, 'Battle Station Enhanced Free Movement', 11756), (275161, 275162, 1, 199, 'Battle Station Enhanced Health Laboratory', 37989), (275162, 275163, 200, 400, 'Battle Station Enhanced Health Laboratory', 37990), (275164, 275165, 1, 199, 'Battle Station Enhanced Nano Recharger', 37992), (275165, 275166, 200, 400, 'Battle Station Enhanced Nano Recharger', 37991), (275146, 275147, 1, 49, 'Battle Station Virus Scanner', 156490), (275147, 275148, 50, 99, 'Battle Station Virus Scanner', 156490), (275148, 275149, 100, 199, 'Battle Station Virus Scanner', 156490), (275149, 275150, 200, 300, 'Battle Station Virus Scanner', 156490), (121643, 121644, 162, 184, 'BattleAxe NCU Supreme', 21135), (215456, 215456, 1, 1, 'Battlegroup Heal 1', 239149), (215457, 215457, 1, 1, 'Battlegroup Heal 2', 239151), (215458, 215458, 1, 1, 'Battlegroup Heal 3', 239153), (215459, 215459, 1, 1, 'Battlegroup Heal 4', 239155), (290289, 290289, 1, 1, 'Battlestation Playfield Map', 287380), (267400, 267400, 1, 1, 'Battlestation Reputation item', 154677), (256081, 256081, 1, 1, 'Bazzit''s Alien Library', 292808), (303319, 303319, 1, 1, 'Beacon of the Harvester', 277896), (85438, 85438, 1, 1, 'Beam Weapons Field Primer', 83388), (85439, 85439, 250, 250, 'Beam Weapons Rifle Field Primer', 83388), (199385, 199385, 235, 235, 'Beaming Bau Charger Armor Boots', 22878), (199406, 199406, 235, 235, 'Beaming Bau Charger Armor Gloves', 22939), (199427, 199427, 235, 235, 'Beaming Bau Charger Armor Helmet', 31738), (199448, 199448, 235, 235, 'Beaming Bau Charger Armor Pants', 22928), (199469, 199469, 235, 235, 'Beaming Bau Charger Armor Sleeves', 22889), (199490, 199490, 235, 235, 'Beaming Bau Charger Body Armor', 22981), (199511, 199511, 235, 235, 'Beaming Bau Charger Female Body Armor', 22942), (289509, 289509, 1, 1, 'Bearded Box with a Bow', 289512), (289578, 289578, 1, 1, 'Bearded Box with a Bow', 289512), (227713, 227713, 1, 1, 'Bearhug', 239261), (288636, 288636, 1, 1, 'Beast Nanospray', 288631), (119099, 119099, 1, 1, 'Beautiful Cactus', 119063), (289911, 289911, 1, 1, 'Beautiful Ribbon Bow', 289910), (251230, 251230, 1, 1, 'Beckoning', 255624), (294747, 294747, 1, 1, 'Bed of Roses Nanospray', 294823), (294838, 294838, 1, 1, 'Bed of Roses Nanospray', 294824), (216284, 216284, 1, 1, 'Beefeater''s Merit Board', 216287), (165201, 165201, 200, 200, 'Beeping Backpack', 99659), (157977, 157977, 1, 1, 'Beer', 157904), (158481, 158481, 2, 2, 'Beer and Booze Artifact', 157929), (158409, 158409, 1, 1, 'Beer and Booze Souvenir', 157929), (152766, 152767, 1, 40, 'Beginner Click Stabber', 13346), (263641, 263641, 1, 1, 'Beit Bones', 263643), (226073, 226073, 1, 1, 'Belith''s Ring Of Transport', 151930), (248840, 248840, 1, 1, 'Bellhop Jacket of the Northern Shadowrunners', 255318), (248841, 248841, 1, 1, 'Bellhop Pants of the Northern Shadowrunners', 255197), (248842, 248842, 1, 1, 'Bellhop Shoes of the Northern Shadowrunners', 255361), (248839, 248839, 1, 1, 'Bellhop Sleeves of the Northern Shadowrunners', 255261), (245866, 245866, 250, 250, 'Bellum Badonis Armor Boots', 245851), (245884, 245884, 250, 250, 'Bellum Badonis Armor Gloves', 245850), (245889, 245889, 250, 250, 'Bellum Badonis Armor Helmet', 245862), (245880, 245880, 250, 250, 'Bellum Badonis Armor Sleeves', 245845), (245891, 245891, 250, 250, 'Bellum Badonis Body Armor', 213514), (245893, 245893, 250, 250, 'Bellum Badonis Coat', 245847), (260681, 260681, 250, 250, 'Bellum Badonis Coat', 245847), (245894, 245894, 250, 250, 'Bellum Badonis Shoulderpads', 245861), (260680, 260680, 250, 250, 'Bellum Badonis Shoulderpads', 245861), (249084, 249084, 1, 1, 'Belly Dancer Hand Ornaments of the Forsaken', 255373), (250260, 250260, 1, 1, 'Belly Dancer Hood', 255402), (249001, 249001, 1, 1, 'Belly Dancer Sleeves of the Forsaken', 255232), (249000, 249000, 1, 1, 'Belly Dancer Top of the Forsaken', 255290), (199674, 199674, 205, 205, 'Below Average Nadir Homage Armor Boots', 22876), (199695, 199695, 205, 205, 'Below Average Nadir Homage Armor Gloves', 22931), (199716, 199716, 205, 205, 'Below Average Nadir Homage Armor Helmet', 31733), (199737, 199737, 205, 205, 'Below Average Nadir Homage Armor Pants', 22914), (199758, 199758, 205, 205, 'Below Average Nadir Homage Armor Sleeves', 22960), (199779, 199779, 205, 205, 'Below Average Nadir Homage Body Armor', 22985), (157386, 157386, 1, 1, 'Below Eighteen Rat Advantage', 81769), (303993, 303994, 25, 59, 'Belt Component Platform 300X', 119145), (36782, 36777, 30, 39, 'Belt Component Platform 300X', 119142), (36777, 36785, 40, 59, 'Belt Component Platform 300X', 119142), (36777, 36785, 60, 79, 'Belt Component Platform 4IX', 119142), (303994, 303995, 60, 99, 'Belt Component Platform 4IX', 119145), (36785, 36784, 80, 99, 'Belt Component Platform 4IX', 119142), (36785, 36784, 100, 119, 'Belt Component Platform 5000', 119144), (303995, 303997, 100, 149, 'Belt Component Platform 5000', 119142), (36784, 36787, 120, 159, 'Belt Component Platform 5000', 119144), (303996, 303997, 150, 199, 'Belt Component Platform 6K-X', 119142), (36784, 36787, 160, 200, 'Belt Component Platform 6K-X', 119143), (303997, 303998, 200, 214, 'Belt Component Platform 6K-X', 119144), (303998, 303998, 215, 215, 'Belt Component Platform 6K-X', 119143), (36783, 36782, 1, 9, 'Belt Component Platform Ti-100X', 119145), (304503, 303993, 1, 24, 'Belt Component Platform Ti-200X', 119145), (36783, 36782, 10, 19, 'Belt Component Platform Ti-200X', 119145), (36782, 36777, 20, 29, 'Belt Component Platform Ti-200X', 119145), (306001, 306001, 1, 1, 'Belt of Great Justice', 119145), (202733, 202734, 1, 19, 'Belt of Justice', 119145), (202734, 202735, 20, 39, 'Belt of Justice', 119145), (202735, 202736, 40, 80, 'Belt of Justice', 119142), (202736, 202737, 80, 119, 'Belt of Justice', 119142), (202737, 202738, 120, 199, 'Belt of Justice', 119144), (202738, 202738, 200, 200, 'Belt of Justice', 119143), (288132, 288132, 200, 200, 'Belt with Control Component', 288093), (154932, 154932, 144, 144, 'Belthior''s Flame Ward', 154367), (215393, 215393, 1, 1, 'Benighted', 82197), (249019, 249020, 11, 20, 'Bent Arctic Metaplast Mace', 13333), (124431, 124432, 1, 29, 'Bent BBI Minami-90', 13312), (130199, 130200, 11, 20, 'Bent Bloodworm Carapace', 85166), (130127, 130128, 21, 40, 'Bent Denunciatory Spear', 33163), (206082, 206083, 50, 99, 'Bent Incan Blood Tainter', 113986), (152388, 152389, 21, 30, 'Bent Khemo-Tech Platinum Wakisashi', 113983), (125332, 125333, 30, 53, 'Bent Large Rider Squibber', 114008), (130216, 130217, 12, 21, 'Bent Light Spear', 33163), (130073, 130074, 12, 27, 'Bent Light Staff', 136738), (125364, 125365, 21, 40, 'Bent Merchant Executioner', 114003), (125313, 125314, 21, 40, 'Bent Merchant Squibber', 114007), (142838, 142839, 11, 20, 'Bent Metaplast Mace', 13333), (130093, 130094, 61, 80, 'Bent Native Alloy Staff', 136738), (130172, 130173, 1, 39, 'Bent OT Sword', 113987), (128921, 128922, 21, 40, 'Bent Peasant Executioner', 114001), (125298, 125299, 23, 47, 'Bent Peasant Squibber', 114005), (125402, 125403, 21, 40, 'Bent Protector Executioner', 114002), (125345, 125346, 21, 40, 'Bent Protector Squibber', 114006), (125383, 125384, 21, 40, 'Bent Rider Executioner', 114004), (144065, 144066, 11, 20, 'Bent Survival Axe', 40782), (249038, 249039, 11, 20, 'Bent Survival Axe of Genevra', 40782), (144082, 144083, 1, 10, 'Bent Tanto', 113986), (152734, 152735, 21, 30, 'Bent Tear Blade', 13347), (125421, 125422, 21, 40, 'Bent Torch', 85172), (249060, 249061, 1, 10, 'Bent Variable Density Tanto', 113986), (150256, 150257, 21, 40, 'Bent Wall-Blade', 113983), (280032, 280032, 1, 1, 'Berens''s Access Card', 273282), (157387, 157387, 1, 1, 'Beta Fifty Unicorn Moderation', 81781), (275919, 275919, 1, 1, 'Beta Program Chip', 275969), (199683, 199683, 250, 250, 'Better Nadir Homage Armor Boots', 22876), (199704, 199704, 250, 250, 'Better Nadir Homage Armor Gloves', 22931), (199725, 199725, 250, 250, 'Better Nadir Homage Armor Helmet', 31733), (199746, 199746, 250, 250, 'Better Nadir Homage Armor Pants', 22914), (199767, 199767, 250, 250, 'Better Nadir Homage Armor Sleeves', 22960), (199788, 199788, 250, 250, 'Better Nadir Homage Body Armor', 22985), (199679, 199679, 230, 230, 'Bettered Nadir Homage Armor Boots', 22876), (199700, 199700, 230, 230, 'Bettered Nadir Homage Armor Gloves', 22931), (199721, 199721, 230, 230, 'Bettered Nadir Homage Armor Helmet', 31733), (199742, 199742, 230, 230, 'Bettered Nadir Homage Armor Pants', 22914), (199763, 199763, 230, 230, 'Bettered Nadir Homage Armor Sleeves', 22960), (199784, 199784, 230, 230, 'Bettered Nadir Homage Body Armor', 22985), (281504, 281504, 300, 300, 'Bhan''Zor Hammer', 281584), (258503, 258503, 1, 1, 'Bhotaar Blueprint Pattern of the Projection of Cama', 235349), (258506, 258506, 1, 1, 'Bhotaar Blueprint Pattern of the Projection of Dalja', 235348), (258504, 258504, 1, 1, 'Bhotaar Blueprint Pattern of the Projection of Gilthar', 235349), (258505, 258505, 1, 1, 'Bhotaar Blueprint Pattern of the Projection of Lord Galahad', 235349), (258508, 258508, 1, 1, 'Bhotaar Blueprint Pattern of the Projection of Lord Mordeth', 235348), (258507, 258507, 1, 1, 'Bhotaar Blueprint Pattern of the Projection of Vanya', 235348), (231523, 231523, 125, 125, 'Bhotaar Pattern ''Adobe Suzerain''', 229142), (234253, 234253, 220, 220, 'Bhotaar Pattern ''Aesma Daeva''', 229142), (234154, 234154, 255, 255, 'Bhotaar Pattern ''Agent of Decay''', 229142), (234127, 234127, 255, 255, 'Bhotaar Pattern ''Agent of Putrefaction''', 229142), (234163, 234163, 220, 220, 'Bhotaar Pattern ''Ahpta''', 229142), (231964, 231964, 188, 188, 'Bhotaar Pattern ''Alatyr''', 229142), (234226, 234226, 255, 255, 'Bhotaar Pattern ''Anansi', 229142), (234365, 234365, 255, 255, 'Bhotaar Pattern ''Anansi''', 229142), (239608, 239608, 30, 30, 'Bhotaar Pattern ''Anarir''', 229142), (231856, 231856, 185, 185, 'Bhotaar Pattern ''Anya''', 229142), (231982, 231982, 210, 210, 'Bhotaar Pattern ''Aray''', 229142), (234320, 234320, 255, 255, 'Bhotaar Pattern ''Arch Bigot Aliel''', 229142), (234262, 234262, 220, 220, 'Bhotaar Pattern ''Arch Bigot Biap''', 229142), (234302, 234302, 255, 255, 'Bhotaar Pattern ''Arch Bigot Lohel''', 229142), (232638, 232638, 200, 200, 'Bhotaar Pattern ''Arch Demon of Inferno''', 229142), (231730, 231730, 125, 125, 'Bhotaar Pattern ''Argil Suzerain''', 229142), (234311, 234311, 255, 255, 'Bhotaar Pattern ''Asase Ya''', 229142), (231595, 231595, 125, 125, 'Bhotaar Pattern ''Ashmara Ravin''', 229142), (234282, 234282, 220, 220, 'Bhotaar Pattern ''Ats', 229142), (231541, 231541, 125, 125, 'Bhotaar Pattern ''Auger''', 229142), (231550, 231550, 125, 125, 'Bhotaar Pattern ''Awl''', 229142), (231910, 231910, 185, 185, 'Bhotaar Pattern ''Bagaspati''', 229142), (231568, 231568, 125, 125, 'Bhotaar Pattern ''Beatific Spirit''', 229142), (231721, 231721, 125, 125, 'Bhotaar Pattern ''Bellowing Chimera''', 229142), (231658, 231658, 125, 125, 'Bhotaar Pattern ''Bhinaji Navi''', 229142), (234208, 234208, 255, 255, 'Bhotaar Pattern ''Bia''', 229142), (231415, 231415, 80, 80, 'Bhotaar Pattern ''Black Fang''', 229142), (231622, 231622, 125, 125, 'Bhotaar Pattern ''Blight''', 229142), (231559, 231559, 125, 125, 'Bhotaar Pattern ''Borer''', 229142), (231928, 231928, 178, 178, 'Bhotaar Pattern ''Breaker Teuvo''', 229142), (231901, 231901, 175, 175, 'Bhotaar Pattern ''Brutal Rafter''', 229142), (231451, 231451, 85, 85, 'Bhotaar Pattern ''Brutal Soul Dredge''', 229142), (232593, 232593, 200, 200, 'Bhotaar Pattern ''Cama''', 229142), (239536, 239536, 40, 40, 'Bhotaar Pattern ''Canceroid Cupid''', 229142), (234329, 234329, 220, 220, 'Bhotaar Pattern ''Captured Spirit''', 229142), (239554, 239554, 45, 45, 'Bhotaar Pattern ''Careening Blight''', 229142), (239563, 239563, 45, 45, 'Bhotaar Pattern ''Careening Death''', 229142), (232126, 232126, 195, 195, 'Bhotaar Pattern ''Churn''', 229142), (231442, 231442, 85, 85, 'Bhotaar Pattern ''Circumbendibum''', 229142), (231406, 231406, 80, 80, 'Bhotaar Pattern ''Circumbendibus''', 229142), (231649, 231649, 125, 125, 'Bhotaar Pattern ''Contorted Soul Dredge''', 229142), (232566, 232566, 170, 170, 'Bhotaar Pattern ''Dalja''', 229142), (231820, 231820, 220, 220, 'Bhotaar Pattern ''Defiler of Scheol''', 229142), (231838, 231838, 220, 220, 'Bhotaar Pattern ''Destroyer of Scheol''', 229142), (231829, 231829, 220, 220, 'Bhotaar Pattern ''Devastator of Scheol''', 229142), (231811, 231811, 205, 205, 'Bhotaar Pattern ''Devourer of Scheol''', 229142), (232584, 242529, 140, 150, 'Bhotaar Pattern ''Diviner Gil Kald-Thar''', 229142), (239635, 239635, 180, 180, 'Bhotaar Pattern ''Eidolean Soul Dredge''', 229142), (239681, 239681, 220, 220, 'Bhotaar Pattern ''Exsequiae''', 229142), (234145, 234145, 220, 220, 'Bhotaar Pattern ''Fester Leila''', 229142), (231685, 231685, 125, 125, 'Bhotaar Pattern ''Flinty''', 229142), (239644, 239644, 188, 188, 'Bhotaar Pattern ''Glitter''', 229142), (231496, 231496, 115, 115, 'Bhotaar Pattern ''Gracious Soul Dredge''', 229142), (231703, 231703, 125, 125, 'Bhotaar Pattern ''Gunk''', 229142), (231991, 231991, 210, 210, 'Bhotaar Pattern ''Hadur''', 229142), (234181, 234181, 220, 220, 'Bhotaar Pattern ''Haqa''', 229142), (231631, 231631, 125, 125, 'Bhotaar Pattern ''Hemut''', 229142), (239671, 239671, 220, 220, 'Bhotaar Pattern ''Ho''', 229142), (231514, 231514, 125, 125, 'Bhotaar Pattern ''Ignis Fatui''', 229142), (231577, 231577, 125, 125, 'Bhotaar Pattern ''Ignis Fatuus''', 229142), (232000, 232000, 182, 182, 'Bhotaar Pattern ''Imk', 229142), (232575, 232575, 160, 160, 'Bhotaar Pattern ''Infernal Demon''', 229142), (231532, 231532, 125, 125, 'Bhotaar Pattern ''Iunmin''', 229142), (232009, 232009, 182, 182, 'Bhotaar Pattern ''Juma''', 229142), (234100, 234100, 220, 220, 'Bhotaar Pattern ''K', 229142), (232018, 232018, 182, 182, 'Bhotaar Pattern ''Kaleva''', 229142), (231766, 231766, 125, 125, 'Bhotaar Pattern ''Kaoline Suzerain''', 229142), (231640, 231640, 125, 125, 'Bhotaar Pattern ''Khemhet''', 229142), (232629, 232629, 200, 200, 'Bhotaar Pattern ''Lady Genevra Di’Venague''', 229142), (231604, 231604, 125, 125, 'Bhotaar Pattern ''Lethargic Spirit''', 229142), (231739, 231739, 125, 125, 'Bhotaar Pattern ''Loessial Suzerain''', 229142), (239662, 239662, 125, 125, 'Bhotaar Pattern ''Loltonunon''', 229142), (232072, 232072, 165, 165, 'Bhotaar Pattern ''Lurky''', 229142), (234217, 234217, 220, 220, 'Bhotaar Pattern ''Lya''', 229142), (239527, 239527, 40, 40, 'Bhotaar Pattern ''Malah-Animus''', 229142), (239518, 239518, 40, 40, 'Bhotaar Pattern ''Malah-At''', 229142), (239509, 239509, 40, 40, 'Bhotaar Pattern ''Malah-Auris''', 229142), (239572, 239572, 25, 25, 'Bhotaar Pattern ''Maledicta''', 229142), (231586, 231586, 125, 125, 'Bhotaar Pattern ''Marem''', 229142), (231667, 231667, 125, 125, 'Bhotaar Pattern ''Marly Suzerain''', 229142), (239590, 239590, 50, 50, 'Bhotaar Pattern ''Mawi''', 229142), (231613, 231613, 125, 125, 'Bhotaar Pattern ''Misery''', 229142), (232090, 232090, 165, 165, 'Bhotaar Pattern ''Moochy''', 229142), (231883, 231883, 215, 215, 'Bhotaar Pattern ''Morrow''', 229142), (239482, 239482, 255, 255, 'Bhotaar Pattern ''Nyame''', 229142), (232539, 232539, 140, 140, 'Bhotaar Pattern ''Ocra''', 229142), (234374, 234374, 220, 220, 'Bhotaar Pattern ''Odqan''', 229142), (232027, 232027, 165, 165, 'Bhotaar Pattern ''Old Salty''', 229142), (231748, 231748, 125, 125, 'Bhotaar Pattern ''Ooze''', 229142), (234244, 234244, 220, 220, 'Bhotaar Pattern ''Pazuzu''', 229142), (232117, 232117, 195, 195, 'Bhotaar Pattern ''Quake''', 229142), (231874, 231874, 215, 215, 'Bhotaar Pattern ''Quondam''', 229142), (234293, 234293, 235, 235, 'Bhotaar Pattern ''Rallies Fete''', 229142), (234347, 234347, 255, 255, 'Bhotaar Pattern ''Razor the Battletoad''', 229142), (242538, 242538, 200, 200, 'Bhotaar Pattern ''Redeemed Cama''', 229142), (232557, 232557, 170, 170, 'Bhotaar Pattern ''Redeemed Gilthar''', 229142), (242511, 242511, 170, 170, 'Bhotaar Pattern ''Redeemed Gilthar''', 229142), (232611, 234431, 200, 255, 'Bhotaar Pattern ''Redeemed Lord Galahad''', 229142), (242493, 242493, 140, 140, 'Bhotaar Pattern ''Redeemed Ocra''', 229142), (234118, 234118, 220, 220, 'Bhotaar Pattern ''Relief Teals''', 229142), (232548, 232548, 140, 140, 'Bhotaar Pattern ''Roch''', 229142), (239545, 239545, 35, 35, 'Bhotaar Pattern ''Sabretooth Slicer''', 229142), (231847, 231847, 185, 185, 'Bhotaar Pattern ''Sampsa''', 229142), (234199, 234199, 220, 220, 'Bhotaar Pattern ''Sasabonsam''', 229142), (234091, 234091, 220, 220, 'Bhotaar Pattern ''Sashu''', 229142), (239653, 239653, 125, 125, 'Bhotaar Pattern ''Satkamear''', 229142), (239599, 239599, 50, 50, 'Bhotaar Pattern ''Sawi''', 229142), (231424, 231424, 80, 80, 'Bhotaar Pattern ''Scratch''', 229142), (231433, 231433, 80, 80, 'Bhotaar Pattern ''Screech''', 229142), (232207, 232099, 192, 195, 'Bhotaar Pattern ''Shake''', 229142), (232198, 232198, 192, 192, 'Bhotaar Pattern ''Shiver''', 229142), (234356, 234356, 255, 255, 'Bhotaar Pattern ''Shullat''', 229142), (231397, 231397, 80, 80, 'Bhotaar Pattern ''Silver Fang''', 229142), (232081, 232081, 165, 165, 'Bhotaar Pattern ''Skulky''', 229142), (232063, 232063, 165, 165, 'Bhotaar Pattern ''Slinky''', 229142), (232036, 232036, 165, 165, 'Bhotaar Pattern ''Smee''', 229142), (231505, 231505, 115, 115, 'Bhotaar Pattern ''Spiritless Soul Dredge''', 229142), (231946, 231946, 180, 180, 'Bhotaar Pattern ''Srahir''', 229142), (234190, 234190, 220, 220, 'Bhotaar Pattern ''Taille Frees''', 229142), (239699, 239699, 48, 48, 'Bhotaar Pattern ''Tcheser''', 229142), (239491, 239491, 160, 160, 'Bhotaar Pattern ''The Abysmal Lord''', 229142), (232189, 232189, 165, 165, 'Bhotaar Pattern ''The Abyssal Widow''', 229142), (239690, 239690, 120, 120, 'Bhotaar Pattern ''The Achbile Guardian''', 229142), (232144, 232144, 165, 165, 'Bhotaar Pattern ''The Adonian Soul Dredge''', 229142), (232171, 232171, 165, 165, 'Bhotaar Pattern ''The Adonis Spirit Master''', 229142), (231775, 231775, 120, 120, 'Bhotaar Pattern ''The Archbile Queen''', 229142), (239617, 239617, 185, 185, 'Bhotaar Pattern ''The Brobdingnagian Mother''', 229142), (232162, 232162, 165, 165, 'Bhotaar Pattern ''The Dredge Driver''', 229142), (234235, 234235, 220, 220, 'Bhotaar Pattern ''The Dryad Demigod''', 229142), (231937, 231937, 185, 185, 'Bhotaar Pattern ''The Dryad Shuffle''', 229142), (231460, 231460, 90, 90, 'Bhotaar Pattern ''The Dune Suzerain''', 229142), (231487, 231487, 90, 90, 'Bhotaar Pattern ''The Elysian Soul Dredge''', 229142), (231802, 231802, 120, 120, 'Bhotaar Pattern ''The Enrapt One''', 229142), (239717, 239717, 210, 210, 'Bhotaar Pattern ''The Great Ice Golem''', 229142), (234273, 234273, 220, 220, 'Bhotaar Pattern ''The Indomitable Chimera''', 229142), (242451, 242451, 220, 220, 'Bhotaar Pattern ''The Infernal Soul Dredge''', 229142), (231865, 231865, 205, 205, 'Bhotaar Pattern ''The Maggot Lord''', 229142), (234136, 234136, 255, 255, 'Bhotaar Pattern ''The Mortificator''', 229142), (231793, 231793, 120, 120, 'Bhotaar Pattern ''The Numb One''', 229142), (231892, 231892, 165, 165, 'Bhotaar Pattern ''The Penumbral Spirit Hunter''', 229142), (232054, 232054, 172, 172, 'Bhotaar Pattern ''The Peristaltic Abomination''', 229142), (232045, 232045, 172, 172, 'Bhotaar Pattern ''The Peristaltic Aversion''', 229142), (232180, 232180, 165, 165, 'Bhotaar Pattern ''The Proprietrix''', 229142), (231757, 231757, 125, 125, 'Bhotaar Pattern ''The Scheolian Soul Dredge''', 229142), (239626, 239626, 185, 185, 'Bhotaar Pattern ''The Stupendous Breeder''', 229142), (231469, 231469, 90, 90, 'Bhotaar Pattern ''The Talus Suzerain''', 229142), (232153, 232153, 165, 165, 'Bhotaar Pattern ''The Watchdog''', 229142), (231973, 231973, 202, 202, 'Bhotaar Pattern ''The Worm King''', 229142), (231712, 231712, 125, 125, 'Bhotaar Pattern ''Thunderous Chimera''', 229142), (232108, 232108, 195, 195, 'Bhotaar Pattern ''Toss''', 229142), (231676, 231676, 125, 125, 'Bhotaar Pattern ''Tough''', 229142), (231478, 231478, 90, 90, 'Bhotaar Pattern ''Ungulera''', 229142), (242520, 242520, 170, 170, 'Bhotaar Pattern ''Unredeemed Dalja''', 229142), (232620, 234444, 200, 255, 'Bhotaar Pattern ''Unredeemed Lord Mordeth''', 229142), (242502, 242502, 140, 140, 'Bhotaar Pattern ''Unredeemed Roch''', 229142), (242547, 242547, 200, 200, 'Bhotaar Pattern ''Unredeemed Vanya''', 229142), (239708, 239708, 48, 48, 'Bhotaar Pattern ''Upenpet''', 229142), (234172, 234172, 220, 220, 'Bhotaar Pattern ''Ushqa''', 229142), (232602, 232602, 200, 200, 'Bhotaar Pattern ''Vanya''', 229142), (232135, 232135, 165, 165, 'Bhotaar Pattern ''Viscious Visitant''', 229142), (231694, 231694, 125, 125, 'Bhotaar Pattern ''Wacky Suzerain''', 229142), (239581, 239581, 50, 50, 'Bhotaar Pattern ''Wala''', 229142), (234109, 234109, 220, 220, 'Bhotaar Pattern ''Waqa''', 229142), (242653, 242653, 135, 135, 'Bhotaar Pattern ''Weary Empath Min-Ji Liu''', 229142), (231784, 231784, 120, 120, 'Bhotaar Pattern ''White''', 229142), (234338, 234338, 255, 255, 'Bhotaar Pattern ''Xark the Battletoad''', 229142), (231955, 231955, 180, 180, 'Bhotaar Pattern ''Zoetic Oak''', 229142), (294003, 294003, 275, 275, 'Bhotar Pattern ''Wistful Apparition''', 294180), (292528, 292528, 1, 1, 'Bi-Isotropic Nano Media', 292778), (211223, 211223, 300, 300, 'Big Braggadocio', 21144), (282068, 282068, 1, 1, 'Big Ed''s Zombie Brew', 283492), (225847, 225848, 1, 500, 'Big Smash', 239257), (225849, 225850, 1, 500, 'Big Smash', 239257), (225851, 225852, 1, 500, 'Big Smash', 239257), (296603, 296603, 1, 1, 'Big Snowball', 296667), (123881, 123882, 50, 99, 'BigBurger Inc.', 113994), (123883, 123884, 100, 199, 'BigBurger Inc. Chapman', 113994), (123885, 123885, 200, 200, 'BigBurger Inc. Chapman Max', 113994), (245773, 245773, 250, 250, 'Bigot''s Armband of Sacrifice', 41176), (245771, 245771, 250, 250, 'Bigot''s Bracer of Sacrifice', 151930), (245780, 245780, 250, 250, 'Bigot''s Earring of Sacrifice', 245779), (245774, 245774, 250, 250, 'Bigot''s Necklace of Sacrifice', 130728), (245770, 245770, 250, 250, 'Bigot''s Ring of Sacrifice', 245769), (248413, 248413, 1, 1, 'Biker Boots of the Devil''s Advocate', 255337), (248414, 248414, 1, 1, 'Biker Gloves of the Devil''s Advocate', 255374), (248412, 248412, 1, 1, 'Biker Jacket of the Devil''s Advocate', 255291), (248415, 248415, 1, 1, 'Biker Pants of the Devil''s Advocate', 255179), (248411, 248411, 1, 1, 'Biker Sleeves of the Devil''s Advocate', 255233), (248336, 248336, 1, 1, 'Bile Cartridge', 130819), (156020, 156021, 1, 200, 'Bio Analyzing Computer', 156084), (215577, 215577, 1, 1, 'Bio Cocoon', 238999), (215599, 215599, 1, 1, 'Bio Regrowth', 239149), (215578, 215578, 1, 1, 'Bio Rejuvenation', 239147), (215595, 215595, 1, 1, 'Bio Rejuvenation', 239147), (215596, 215596, 1, 1, 'Bio Rejuvenation', 239147), (215597, 215597, 1, 1, 'Bio Rejuvenation', 239147), (215568, 215568, 1, 1, 'Bio Shield', 238997), (268743, 268743, 1, 1, 'Bio Signal And Communication Tracker', 163066), (247795, 247795, 100, 100, 'Bio-Mechanical Computer', 247793), (248807, 248808, 1, 300, 'Bio-Tech Coordination Enhancer', 11714), (248798, 248799, 1, 300, 'Bio-Tech Reaction Enhancer', 11753), (254286, 254287, 1, 99, 'Bio-technology Central Controller', 9013), (254287, 254288, 100, 199, 'Bio-technology Central Controller', 9013), (254288, 254289, 200, 349, 'Bio-technology Central Controller', 9013), (254289, 254290, 350, 500, 'Bio-technology Central Controller', 9013), (101545, 101546, 1, 200, 'Bio.Metamor Cluster - Bright (Chest)', 36014), (101543, 101544, 1, 200, 'Bio.Metamor Cluster - Faded (Waist)', 36013), (101547, 101548, 1, 200, 'Bio.Metamor Cluster - Shiny (Head)', 36015), (165705, 165706, 201, 300, 'Bio.Metamor Refined Cluster - Bright (Chest)', 36014), (165703, 165704, 201, 300, 'Bio.Metamor Refined Cluster - Faded (Waist)', 36013), (165707, 165708, 201, 300, 'Bio.Metamor Refined Cluster - Shiny (Head)', 36015), (275828, 275828, 1, 1, 'Biochemistry Sampling Tool', 275961), (292894, 292894, 1, 1, 'Biofreak Helping Hand - Left', 269964), (292897, 292897, 1, 1, 'Biofreak Helping Hand - Left', 293308), (292895, 292895, 1, 1, 'Biofreak Helping Hand - Right', 293309), (122509, 122510, 81, 100, 'Biogun', 38056), (271745, 271746, 1, 300, 'Biogun - 000', 38056), (271749, 271750, 1, 300, 'Biogun - 401', 38056), (271751, 271752, 1, 300, 'Biogun - C01', 38056), (277830, 277831, 1, 300, 'Biological Metamorphosis Memory Cell', 276920), (296574, 296574, 1, 1, 'Biological Survey Nanobots', 297388), (257166, 257166, 1, 1, 'Biological Transceiver', 12711), (260217, 260217, 1, 1, 'Biological Transceiver', 12711), (277989, 277989, 1, 1, 'Biological Transceiver', 12711), (281903, 281903, 1, 1, 'Biological Transceiver', 12711), (303435, 303435, 1, 1, 'Biomare Explorer Pack', 304442), (304568, 304568, 1, 1, 'Biomare Explorer Pack', 304442), (223760, 223760, 1, 1, 'Biomarker Sensor', 227245), (253160, 253161, 1, 300, 'Biomaterial Defensive Shield', 136593), (253150, 253151, 1, 300, 'Biomaterial Tubing', 156553), (245449, 245449, 125, 125, 'Biomechanical Graft', 149937), (262213, 262213, 1, 1, 'Biomechanical Medicine', 156487), (236661, 236661, 1, 1, 'Bionic Cooling Liquid', 236568), (245156, 245156, 100, 100, 'Bioremediation Stim', 11710), (275916, 275916, 1, 1, 'Biotech Matrix', 275972), (268356, 268356, 1, 1, 'Biran-Keir Wear Items', 37931), (125425, 125426, 61, 80, 'Birch Torch', 85172), (70610, 70609, 10, 199, 'Bird of Prey', 43097), (70609, 204329, 200, 300, 'Bird of Prey', 43097), (287281, 287281, 1, 1, 'Birthday Cake', 287309), (290559, 290559, 1, 1, 'Birthday Cake - Tenth Anniversary', 290524), (287256, 287256, 1, 1, 'Birthday Cake Mr. Squeaky', 287142), (275241, 275241, 1, 1, 'Birthday Placard', 275239), (281788, 281788, 1, 1, 'Birthday Placard - Coming Soon', 281757), (281791, 281791, 1, 1, 'Birthday Placard - Duckie!', 281760), (281790, 281790, 1, 1, 'Birthday Placard - Gief Cake', 281759), (281792, 281792, 1, 1, 'Birthday Placard - No Duckie!', 281761), (281793, 281793, 1, 1, 'Birthday Placard - OMG Cyclop!!', 281900), (281787, 281787, 1, 1, 'Birthday Placard - QQ', 281756), (281789, 281789, 1, 1, 'Birthday Placard - Sign This', 281758), (281748, 281748, 1, 1, 'Birthday Squeaky', 281754), (199532, 199532, 235, 235, 'Bismuth Periodic Tech Armor Boots', 22886), (199553, 199553, 235, 235, 'Bismuth Periodic Tech Armor Gloves', 22933), (199574, 199574, 235, 235, 'Bismuth Periodic Tech Armor Helmet', 31731), (199596, 199596, 235, 235, 'Bismuth Periodic Tech Armor Pants', 22912), (199617, 199617, 235, 235, 'Bismuth Periodic Tech Armor Sleeves', 22911), (199638, 199638, 235, 235, 'Bismuth Periodic Tech Body Armor', 22990), (199659, 199659, 235, 235, 'Bismuth Periodic Tech Female Body Armor', 22909), (154901, 154901, 133, 133, 'Bitis Striker', 154366), (224709, 224709, 1, 1, 'Bitter Brain Spirit of Offence', 230992), (224726, 224726, 1, 1, 'Bitter Essence Brain Spirit', 230992), (224930, 224930, 1, 1, 'Bitter Heart Spirit of Essence', 230984), (224916, 224916, 1, 1, 'Bitter Heart Spirit of Knowledge', 230984), (224947, 224947, 1, 1, 'Bitter Heart Spirit of Strength', 230984), (224964, 224964, 1, 1, 'Bitter Heart Spirit of Weakness', 230984), (225195, 225195, 1, 1, 'Bitter Left Hand Spirit of Defence', 230994), (225213, 225213, 1, 1, 'Bitter Left Hand Spirit of Strength', 230994), (225033, 225033, 1, 1, 'Bitter Left Limb Spirit of Essence', 230995), (225015, 225015, 1, 1, 'Bitter Left Limb Spirit of Strength', 230995), (224981, 224981, 1, 1, 'Bitter Left Limb Spirit of Understanding', 230995), (224997, 224997, 1, 1, 'Bitter Left Limb Spirit of Weakness', 230995), (224845, 224845, 1, 1, 'Bitter Midriff Spirit of Essence', 230976), (224863, 224863, 1, 1, 'Bitter Midriff Spirit of Knowledge', 230976), (224899, 224899, 1, 1, 'Bitter Midriff Spirit of Strength', 230976), (224881, 224881, 1, 1, 'Bitter Midriff Spirit of Weakness', 230976), (225138, 225138, 1, 1, 'Bitter Right Hand Defencive Spirit', 231002), (225121, 225121, 1, 1, 'Bitter Right Hand Strength Spirit', 231002), (224829, 224829, 1, 1, 'Bitter Right Limb Spirit of Essence', 231004), (224796, 224796, 1, 1, 'Bitter Right Limb Spirit of Strength', 231004), (224813, 224813, 1, 1, 'Bitter Right Limb Spirit of Weakness', 231004), (224694, 224694, 1, 1, 'Bitter Spirit of Clear Thought', 230992), (225171, 225171, 1, 1, 'Bitter Spirit of Defense', 230998), (224661, 224661, 1, 1, 'Bitter Spirit of Discerning Weakness', 230988), (224677, 224677, 1, 1, 'Bitter Spirit of Essence', 230998), (224778, 224778, 1, 1, 'Bitter Spirit of Essence Whispered', 230986), (225247, 225247, 1, 1, 'Bitter Spirit of Feet Defense', 230990), (225229, 225229, 1, 1, 'Bitter Spirit of Feet Strength', 230990), (225155, 225155, 1, 1, 'Bitter Spirit of Insight - Right Hand', 231002), (224743, 224743, 1, 1, 'Bitter Spirit of Knowledge Whispered', 230986), (225085, 225085, 1, 1, 'Bitter Spirit of Left Wrist Defense', 231000), (225103, 225103, 1, 1, 'Bitter Spirit of Left Wrist Strength', 231000), (225051, 225051, 1, 1, 'Bitter Spirit of Right Wrist Offence', 231006), (225068, 225068, 1, 1, 'Bitter Spirit of Right Wrist Weakness', 231006), (224760, 224760, 1, 1, 'Bitter Spirit of Strength Whispered', 230986), (224645, 224645, 1, 1, 'Bitter Spirit of True Seeing', 230988), (215394, 215394, 1, 1, 'Black', 82197), (152708, 152708, 175, 175, 'Black Agent Cloak', 22898), (41094, 41094, 1, 1, 'Black Armbands', 41176), (293372, 293372, 1, 1, 'Black Bat Nanospray', 293388), (130631, 130631, 1, 1, 'Black Bodum-Larga', 37972), (40845, 40845, 1, 1, 'Black Book of Secrets', 37961), (27377, 27377, 1, 1, 'Black Boots', 13260), (206662, 206662, 200, 200, 'Black Clan Heavy Tank Armor', 22395), (31517, 31517, 1, 1, 'Black Cloak', 22898), (31534, 225459, 1, 175, 'Black Cloak Hood', 23003), (295657, 295657, 1, 1, 'Black Coral Shell Fragment', 233133), (285862, 285862, 200, 200, 'Black Fiber', 284331), (144692, 144692, 900, 900, 'Black GM hood of enlightenment', 23004), (118182, 118182, 1, 1, 'Black Gloves', 118189), (302011, 302011, 1, 1, 'Black Heart Lantern', 302034), (268164, 268165, 1, 300, 'Black Knight Armor Set', 226641), (41051, 41051, 1, 1, 'Black Leather Boots', 41193), (41028, 41028, 1, 1, 'Black Leather Pants', 41195), (41071, 41071, 1, 1, 'Black Leather Shirt', 41182), (41006, 41006, 1, 1, 'Black Leather Trenchcoat', 41178), (119190, 119190, 1, 1, 'Black Marble Jar', 119184), (119582, 119582, 1, 1, 'Black Marble Vase', 119173), (272458, 272458, 250, 250, 'Black Molybdenum-Matrix of Xan', 272534), (31506, 31506, 1, 1, 'Black Omni-Tek Commander Cloak', 88052), (160654, 160655, 1, 199, 'Black Organic Combat Suit', 88046), (27378, 27378, 1, 1, 'Black Pants', 13288), (160221, 160222, 71, 199, 'Black Pete', 33170), (31512, 31512, 1, 1, 'Black Pumps', 21863), (27379, 27379, 1, 1, 'Black Shirt', 13239), (31244, 31244, 1, 1, 'Black Shorts', 31236), (27380, 27380, 1, 1, 'Black Sleeves', 13221), (248904, 248904, 1, 1, 'Black Sneakers', 255336), (42352, 42352, 1, 1, 'Black Sweat-Shirt', 42295), (42353, 42353, 1, 1, 'Black Sweater Sleeves', 42305), (290254, 290254, 1, 1, 'Black Thong', 290250), (31505, 31505, 1, 1, 'Black Trenchcoat', 18849), (82111, 82111, 1, 1, 'Black Trenchskirt', 81995), (157388, 157388, 1, 1, 'Black Twentyfour Blackbird Advantage', 81779), (285889, 285889, 200, 200, 'Black Wax', 284331), (285879, 285879, 200, 200, 'Black Wick', 284331), (285861, 285861, 200, 200, 'Black Wire', 284331), (31494, 31494, 1, 1, 'Black dress', 88047), (232792, 232793, 1, 149, 'Black opal', 286898), (232793, 232795, 150, 199, 'Black opal', 286898), (232795, 232796, 200, 249, 'Black opal', 286898), (232796, 232797, 250, 400, 'Black opal', 286898), (246720, 246721, 100, 102, 'Blackbird', 33154), (246722, 246722, 103, 103, 'Blackbird', 33154), (246723, 246723, 104, 104, 'Blackbird', 33154), (122015, 122016, 81, 100, 'Blackened Blaster', 13321), (271465, 271466, 1, 300, 'Blackened Blaster - 000', 13321), (271467, 271468, 1, 300, 'Blackened Blaster - 002', 13321), (271469, 271470, 1, 300, 'Blackened Blaster - 402', 13321), (271471, 271472, 1, 300, 'Blackened Blaster - C02', 13321), (139725, 139725, 1, 1, 'Blackened Blaster Construction Manual', 37933), (122091, 122092, 81, 100, 'Blackened Blaster Rifle', 13313), (271473, 271474, 1, 300, 'Blackened Blaster Rifle - 000', 13313), (271475, 271476, 1, 300, 'Blackened Blaster Rifle - 002', 13313), (271477, 271478, 1, 300, 'Blackened Blaster Rifle - 402', 13313), (271479, 271480, 1, 300, 'Blackened Blaster Rifle - C02', 13313), (161276, 161276, 1, 1, 'Blackened Blaster Rifle Construction Manual', 37933), (271545, 271546, 1, 300, 'Blackened Miniblaster - 000', 13316), (271549, 271550, 1, 300, 'Blackened Miniblaster - 401', 13316), (271551, 271552, 1, 300, 'Blackened Miniblaster - C01', 13316), (121597, 121598, 70, 92, 'Blackened Moon Edge', 13343), (215356, 215356, 1, 1, 'Blackfist', 239341), (215487, 215487, 1, 1, 'Blackfist', 82197), (239355, 239355, 1, 1, 'Blackfist', 239341), (122604, 122605, 81, 100, 'Blackhole Mk IX', 33171), (271753, 271754, 1, 300, 'Blackhole Mk IX - 000', 33171), (271757, 271758, 1, 300, 'Blackhole Mk IX - 401', 33171), (271759, 271760, 1, 300, 'Blackhole Mk IX - C01', 33171), (141259, 141259, 1, 1, 'Blackhole Mk IX Construction Manual', 37933), (271078, 271079, 1, 300, 'Blackjack - 000', 33169), (271080, 271081, 1, 300, 'Blackjack - 010', 33169), (271082, 271083, 1, 300, 'Blackjack - 050', 33169), (271084, 271085, 1, 300, 'Blackjack - 070', 33169), (271086, 271087, 1, 300, 'Blackjack - 870', 33169), (271350, 271351, 1, 300, 'Blackjohn - 000', 33170), (271352, 271353, 1, 300, 'Blackjohn - 010', 33170), (271354, 271355, 1, 300, 'Blackjohn - 050', 33170), (271356, 271357, 1, 300, 'Blackjohn - 850', 33170), (260026, 260026, 1, 1, 'Blackmane''s Belt', 119145), (252158, 252158, 1, 1, 'Blackmane''s Belt Component Platform', 119145), (257383, 257383, 300, 300, 'Blackmane''s Combined Officer''s Headwear', 256323), (206732, 206732, 1, 1, 'Blackmane''s Flight Enabler', 84064), (248893, 248893, 1, 1, 'Blackmane''s Leather Cloak of Balance', 255296), (206704, 206704, 1, 1, 'Blackmane''s Stat Buffer', 84065), (295769, 295769, 1, 1, 'Blackmane''s Upgraded Belt Component Platform', 119142), (245657, 245657, 150, 150, 'Blackpack', 224100), (152712, 152712, 110, 110, 'Blackshirt of Zuwadza', 13239), (215350, 215350, 1, 1, 'Blackstep', 239341), (215478, 215478, 1, 1, 'Blackstep', 82197), (239346, 239346, 1, 1, 'Blackstep', 239341), (234901, 234901, 1, 1, 'Bladder of Abyssal Shark Bile', 144702), (226853, 226853, 1, 1, 'Blade Whirlwind', 239119), (208072, 208073, 70, 74, 'Blade of Aesthetic Rage', 114008), (269513, 269513, 1, 1, 'Blade of Khione', 270359), (275134, 275134, 1, 1, 'Blade of Khione''s Will', 270359), (125100, 125101, 100, 119, 'Blade of Mourning', 114011), (125102, 125103, 120, 139, 'Blade of Mourning', 114011), (125104, 125105, 140, 159, 'Blade of Mourning', 114011), (125106, 125107, 160, 179, 'Blade of Mourning', 114011), (125108, 125109, 180, 199, 'Blade of Mourning', 114011), (125110, 125110, 200, 200, 'Blade of Mourning', 114011), (227328, 227328, 1, 1, 'Blade of Night', 239101), (304618, 304618, 175, 175, 'Blademaster Armguard', 84057), (257147, 257147, 300, 300, 'Blades of Boltar', 257716), (121614, 121615, 47, 69, 'Bladestaff', 21140), (271199, 271200, 1, 300, 'Bladestaff - 000', 21140), (271201, 271202, 1, 300, 'Bladestaff - 010', 21140), (271203, 271204, 1, 300, 'Bladestaff - 050', 21140), (271205, 271206, 1, 300, 'Bladestaff - 070', 21140), (271207, 271208, 1, 300, 'Bladestaff - 870', 21140), (143067, 143067, 1, 1, 'Bladestaff Construction Manual', 37932), (296575, 296575, 1, 1, 'Blank ICC ID Chip', 297387), (296570, 296570, 1, 1, 'Blank Info Chip', 297392), (227320, 227320, 1, 1, 'Blast Nano', 239169), (215395, 215395, 1, 1, 'Blazing', 82197), (306150, 306150, 1, 1, 'Blazing Jester Mask', 306120), (163578, 163578, 200, 200, 'Blazing Pistol of the Buccaneer', 113988), (227363, 227363, 1, 1, 'Bleeding Wounds', 239141), (164106, 164107, 121, 140, 'Blessed Knife of Truth', 13346), (214868, 214868, 1, 1, 'Blessed Pattern of Min-Ji Liu', 227246), (70613, 70613, 55, 55, 'Blessed With Thunder', 43080), (70612, 204327, 200, 300, 'Blessed with Thunder', 43080), (216602, 216602, 1, 1, 'Blessing of Life', 239149), (305511, 305511, 1, 1, 'Blessing of the Gripper', 12671), (206011, 206011, 1, 1, 'Blighted Soulmark', 25794), (246724, 246724, 105, 105, 'Blinded Blackbird', 33154), (252539, 252539, 1, 1, 'Blinded by Delights', 239039), (225862, 225863, 1, 500, 'Blindside Blow', 239265), (225864, 225865, 1, 500, 'Blindside Blow', 239265), (225866, 225867, 1, 500, 'Blindside Blow', 239265), (121645, 121646, 185, 199, 'Blistering Axe', 21135), (233470, 233470, 180, 180, 'Blizzard Boots', 270251), (165130, 165130, 200, 200, 'Blood Bat', 13335), (165127, 165127, 200, 200, 'Blood Mace', 13333), (154358, 154359, 1, 200, 'Blood Plasma', 19857), (258537, 258537, 1, 1, 'Blood Red Carnation', 258542), (280581, 280581, 1, 1, 'Blood Red Notum Crystal', 276941), (246085, 246085, 250, 250, 'Blood-Soaked Cloak of Dishonour', 218532), (165128, 165129, 1, 199, 'Blood-Stained Bat', 13335), (165125, 165126, 1, 199, 'Blood-Stained Mace', 13333), (163720, 163721, 1, 200, 'Blood-Washed Helmet of Passion', 22270), (304616, 304616, 200, 200, 'Bloodjack', 33169), (204596, 204596, 1, 1, 'Bloodleech Ring', 84066), (226685, 226685, 1, 1, 'Bloodletting', 239141), (247057, 247058, 1, 49, 'Bloodlust', 218710), (247059, 247060, 50, 99, 'Bloodlust', 218710), (247061, 247062, 100, 149, 'Bloodlust', 218710), (247063, 247064, 150, 199, 'Bloodlust', 218710), (247065, 247066, 200, 249, 'Bloodlust', 218710), (247067, 247068, 250, 299, 'Bloodlust', 218710), (247069, 247069, 300, 300, 'Bloodlust', 218710), (206006, 206006, 1, 1, 'Bloodmark', 25796), (206196, 206196, 1, 1, 'Bloodseal of the Infernal Tyrant', 25801), (206248, 206248, 1, 1, 'Bloodshed Armband', 84050), (206201, 206201, 1, 1, 'Bloodslave Ring', 84066), (165466, 165466, 1, 1, 'Bloodstained Dog-tag', 149944), (305495, 305495, 1, 1, 'Bloodthrall Ring', 84066), (130207, 130208, 51, 150, 'Bloodworm Carapace', 85166), (152794, 152794, 25, 25, 'Blue Baby Bronto Boots', 42278), (87493, 87493, 1, 1, 'Blue Bikini', 99797), (40822, 40822, 1, 1, 'Blue Book of Secrets', 37932), (31246, 31246, 1, 1, 'Blue Boots', 30928), (165134, 165135, 15, 200, 'Blue Bracer of Balance', 151926), (224710, 224710, 5, 5, 'Blue Brain Spirit of Offence', 230992), (31503, 31503, 1, 1, 'Blue Cloak', 22897), (31533, 31533, 1, 1, 'Blue Cloak Hood', 23002), (259989, 259989, 1, 1, 'Blue Corundum', 289779), (205936, 205936, 1, 1, 'Blue Crystal Ring Of Notum For The Worthy', 151920), (292515, 292515, 1, 1, 'Blue Data Crystal', 292780), (273247, 273247, 1, 1, 'Blue Desert Orchid', 273613), (273248, 273248, 1, 1, 'Blue Desert Orchid', 273613), (273272, 273272, 1, 1, 'Blue Desert Orchid Container full of Flowers', 273548), (273271, 273271, 1, 1, 'Blue Desert Orchid Container with five Flowers', 273548), (273270, 273270, 1, 1, 'Blue Desert Orchid Container with four Flowers', 273548), (273267, 273267, 1, 1, 'Blue Desert Orchid Container with one Flower', 273548), (273269, 273269, 1, 1, 'Blue Desert Orchid Container with three Flowers', 273548), (273268, 273268, 1, 1, 'Blue Desert Orchid Container with two Flowers', 273548), (249702, 249702, 1, 1, 'Blue Dress', 255395), (224727, 224727, 5, 5, 'Blue Essence Brain Spirit', 230992), (42341, 42341, 1, 1, 'Blue Fancy Pants', 42290), (42342, 42342, 1, 1, 'Blue Fancy Shirt', 42300), (42343, 42343, 1, 1, 'Blue Fancy Sleeves', 42308), (31250, 31250, 1, 1, 'Blue Female Oriental Suit', 88045), (285869, 285869, 200, 200, 'Blue Fiber', 284331), (235362, 235363, 1, 300, 'Blue Force Tight Boots', 213557), (235356, 235357, 1, 300, 'Blue Force Tight Shirt', 213518), (235358, 235359, 1, 300, 'Blue Force Tight Sleeves', 213475), (235360, 235361, 1, 300, 'Blue Force Tights', 213599), (42318, 42318, 1, 1, 'Blue Fret Boots', 42278), (42315, 42315, 1, 1, 'Blue Fret Thigh High Boots', 42269), (218348, 218348, 220, 220, 'Blue Glyph of Aban', 227527), (227702, 227702, 220, 220, 'Blue Glyph of Aban - Revived', 227530), (218349, 218349, 220, 220, 'Blue Glyph of Enel', 227544), (227703, 227703, 220, 220, 'Blue Glyph of Enel - Revived', 227547), (218350, 218350, 220, 220, 'Blue Glyph of Ocra', 227581), (227704, 227704, 220, 220, 'Blue Glyph of Ocra - Revived', 227584), (224931, 224931, 5, 5, 'Blue Heart Spirit of Essence', 230984), (224917, 224917, 5, 5, 'Blue Heart Spirit of Knowledge', 230984), (224948, 224948, 5, 5, 'Blue Heart Spirit of Strength', 230984), (224965, 224965, 5, 5, 'Blue Heart Spirit of Weakness', 230984), (275194, 275194, 1, 1, 'Blue Islander Shirt', 275183), (275936, 275936, 1, 1, 'Blue Keycard', 279550), (275549, 275549, 1, 1, 'Blue Keycard Fragment - Left', 279550), (275550, 275550, 1, 1, 'Blue Keycard Fragment - Right', 279550), (225196, 225196, 5, 5, 'Blue Left Hand Spirit of Defence', 230994), (225214, 225214, 5, 5, 'Blue Left Hand Spirit of Strength', 230994), (225034, 225034, 5, 5, 'Blue Left Limb Spirit of Essence', 230995), (225016, 225016, 5, 5, 'Blue Left Limb Spirit of Strength', 230995), (224982, 224982, 5, 5, 'Blue Left Limb Spirit of Understanding', 230995), (224998, 224998, 5, 5, 'Blue Left Limb Spirit of Weakness', 230995), (253791, 253791, 1, 1, 'Blue Lightning Boots', 253708), (253788, 253788, 1, 1, 'Blue Lightning Pants', 253728), (253789, 253789, 1, 1, 'Blue Lightning Shirt', 253669), (253790, 253790, 1, 1, 'Blue Lightning Sleeves', 253691), (269351, 269351, 1, 1, 'Blue Luminite', 269352), (119581, 119581, 1, 1, 'Blue Marble Vase', 119174), (224864, 224864, 5, 5, 'Blue Midriff Spirit of Knowledge', 230976), (224900, 224900, 5, 5, 'Blue Midriff Spirit of Strength', 230976), (224882, 224882, 5, 5, 'Blue Midriff Spirit of Weakness', 230976), (157389, 157389, 1, 1, 'Blue Nineteen Nightingale Advantage', 81779), (225693, 225694, 1, 300, 'Blue Offset''s Harmonic Circlet', 151921), (160652, 160653, 1, 199, 'Blue Organic Combat Suit', 88042), (31261, 31261, 1, 1, 'Blue Oriental Suit', 88042), (249697, 249697, 1, 1, 'Blue Pajamas Jacket of Shadow Ops', 255396), (249696, 249696, 1, 1, 'Blue Pajamas Pants of Shadow Ops', 255408), (249695, 249695, 1, 1, 'Blue Pajamas Sleeves of Shadow Ops', 255387), (119205, 119205, 1, 1, 'Blue Paper Bin', 119209), (25824, 25824, 150, 150, 'Blue Pearl', 286900), (25830, 25830, 1, 1, 'Blue Pearl by Conner', 301030), (225139, 225139, 5, 5, 'Blue Right Hand Defencive Spirit', 231002), (225122, 225122, 5, 5, 'Blue Right Hand Strength Spirit', 231002), (224830, 224830, 5, 5, 'Blue Right Limb Spirit of Essence', 231004), (224797, 224797, 5, 5, 'Blue Right Limb Spirit of Strength', 231004), (224814, 224814, 5, 5, 'Blue Right Limb Spirit of Weakness', 231004), (27350, 27350, 1, 1, 'Blue Rubber Pants', 22915), (27351, 27351, 1, 1, 'Blue Rubber Shirt', 22970), (27352, 27352, 1, 1, 'Blue Rubbershirt Sleeves', 22948), (31105, 31105, 1, 1, 'Blue Shirt with a Dragon Print', 30923), (42321, 42321, 1, 1, 'Blue Short Fret Top', 42273), (293583, 293583, 1, 1, 'Blue Skull Boots', 293590), (119594, 119594, 1, 1, 'Blue Sky - Rocket Lamp', 119159), (224695, 224695, 5, 5, 'Blue Spirit of Clear Thought', 230992), (225172, 225172, 5, 5, 'Blue Spirit of Defense', 230998), (224662, 224662, 5, 5, 'Blue Spirit of Discerning Weakness', 230988), (224678, 224678, 5, 5, 'Blue Spirit of Essence', 230998), (224779, 224779, 5, 5, 'Blue Spirit of Essence Whispered', 230986), (225248, 225248, 5, 5, 'Blue Spirit of Feet Defense', 230990), (225230, 225230, 5, 5, 'Blue Spirit of Feet Strength', 230990), (225156, 225156, 5, 5, 'Blue Spirit of Insight - Right Hand', 231002), (224744, 224744, 5, 5, 'Blue Spirit of Knowledge Whispered', 230986), (225086, 225086, 5, 5, 'Blue Spirit of Left Wrist Defense', 231000), (225104, 225104, 5, 5, 'Blue Spirit of Left Wrist Strength', 231000), (225052, 225052, 5, 5, 'Blue Spirit of Right Wrist Offence', 231006), (225069, 225069, 5, 5, 'Blue Spirit of Right Wrist Weakness', 231006), (224761, 224761, 5, 5, 'Blue Spirit of Strength Whispered', 230986), (224646, 224646, 5, 5, 'Blue Spirit of True Seeing', 230988), (42311, 42311, 1, 1, 'Blue Sweat-Shirt', 42297), (42337, 42337, 1, 1, 'Blue Sweater Sleeves', 42304), (87487, 87487, 1, 1, 'Blue Swimmingtrunks', 96132), (290253, 290253, 1, 1, 'Blue Thong', 290249), (253755, 253755, 1, 1, 'Blue Tulips Boots', 253702), (253752, 253752, 1, 1, 'Blue Tulips Pants', 253718), (253753, 253753, 1, 1, 'Blue Tulips Shirt', 253676), (253754, 253754, 1, 1, 'Blue Tulips Sleeves', 253681), (285896, 285896, 200, 200, 'Blue Wax', 284331), (285872, 285872, 200, 200, 'Blue Wick', 284331), (285854, 285854, 200, 200, 'Blue Wire', 284331), (150241, 150242, 1, 30, 'Blue Zenith Taichi', 113987), (130633, 130633, 1, 1, 'Blue and Yellow Giant Pollen', 37974), (41092, 41092, 1, 1, 'Blue armbands', 41174), (119603, 119603, 1, 1, 'Blue drawer', 119176), (152341, 152342, 21, 40, 'Bluebell Parry Stick', 136738), (247768, 247768, 100, 100, 'Blueprint - Regular Building Structure', 247770), (231147, 231147, 1, 1, 'Blueprint Attuned to Lady Genevra', 227246), (214864, 214864, 1, 1, 'Blueprint Pattern containing information about a Trapped Soul', 227287), (214886, 214886, 1, 1, 'Blueprint of Apprentice Diviner', 130748), (214900, 214900, 1, 1, 'Blueprint of Dalja', 130748), (214883, 214883, 1, 1, 'Blueprint of Demon', 130748), (214898, 214898, 1, 1, 'Blueprint of Gilthar', 130748), (259760, 259760, 1, 1, 'Bluetooth (Hydnum cerulean) Fungus Sample', 255426), (213251, 213251, 1, 1, 'Bluff', 49559), (250150, 250151, 61, 80, 'Blunt Adapting Notum Lever', 33163), (122697, 122698, 61, 80, 'Blunt Advanced Baseballbat', 13335), (123330, 123331, 22, 25, 'Blunt Banjo', 85159), (122735, 122736, 61, 80, 'Blunt Blackjack', 33169), (122930, 122931, 61, 80, 'Blunt Blackjohn', 33170), (123120, 123121, 61, 80, 'Blunt Bow Split', 21134), (122070, 122071, 61, 80, 'Blunt Clean Slay Axe', 21141), (122146, 122147, 61, 80, 'Blunt Cutlass', 13347), (130131, 130132, 61, 80, 'Blunt Denunciatory Spear', 33163), (122165, 122166, 61, 80, 'Blunt E-Blade', 13337), (153089, 153090, 150, 199, 'Blunt G-Staff', 136738), (122811, 122812, 61, 80, 'Blunt Gofle-Prod', 33168), (123349, 123350, 61, 80, 'Blunt Hand Axe', 13345), (121728, 121729, 61, 80, 'Blunt Haxor 9922', 13339), (206595, 206596, 61, 80, 'Blunt Improved Clean Slay Axe', 21141), (161741, 161742, 61, 80, 'Blunt Improved Stun-Baton', 13348), (121975, 121976, 61, 80, 'Blunt Katana', 13326), (152392, 152393, 41, 60, 'Blunt Khemo-Tech Platinum Wakisashi', 113983), (123368, 123369, 61, 80, 'Blunt Lead Pipe', 85166), (130220, 130221, 32, 41, 'Blunt Light Spear', 33163), (122051, 122052, 61, 80, 'Blunt Longmoon', 13338), (122949, 122950, 61, 80, 'Blunt Mace', 13333), (123387, 123388, 61, 80, 'Blunt Meat-Cleaver', 85169), (125368, 125369, 61, 80, 'Blunt Merchant Executioner', 114003), (125317, 125318, 61, 80, 'Blunt Merchant Squibber', 114007), (128963, 128964, 61, 80, 'Blunt Merchant Warblade', 114011), (121766, 121767, 61, 80, 'Blunt Mini Axe', 13345), (143551, 143551, 1, 1, 'Blunt Mini Axe Construction Manual', 37933), (123254, 123255, 102, 115, 'Blunt Nano-Charged Stun Glove', 45784), (130112, 130113, 61, 80, 'Blunt Notum Lever', 33163), (123006, 123007, 61, 80, 'Blunt Notum Spear', 21135), (143779, 143779, 1, 1, 'Blunt Notum Spear Construction Manual', 37933), (122968, 122969, 61, 80, 'Blunt Notum Staff', 33162), (143677, 143677, 1, 1, 'Blunt Notum Staff Construction Manual', 37933), (128925, 128926, 61, 80, 'Blunt Peasant Executioner', 114001), (125302, 125303, 71, 90, 'Blunt Peasant Squibber', 114005), (128944, 128945, 61, 80, 'Blunt Peasant Warblade', 114009), (125406, 125407, 61, 80, 'Blunt Protector Executioner', 114002), (125349, 125350, 61, 80, 'Blunt Protector Squibber', 114006), (129001, 129002, 61, 80, 'Blunt Protector Warblade', 114010), (125387, 125388, 61, 80, 'Blunt Rider Executioner', 114004), (128982, 128983, 61, 80, 'Blunt Rider Warblade', 114012), (121747, 121748, 61, 80, 'Blunt Right Slice', 21142), (143523, 143523, 1, 1, 'Blunt Right Slice Construction Manual', 37933), (123063, 123064, 61, 80, 'Blunt Ritual Krys Knife', 13346), (121956, 121957, 61, 80, 'Blunt Slank Chop', 21143), (143593, 143593, 1, 1, 'Blunt Slank Chop Construction Manual', 37933), (122108, 122109, 61, 80, 'Blunt Stabber', 13346), (122854, 122855, 61, 80, 'Blunt Stun-Baton', 13348), (122911, 122912, 61, 80, 'Blunt Support Beam', 33143), (122792, 122793, 61, 80, 'Blunt Sword of Sir Galahad', 40781), (144086, 144087, 21, 30, 'Blunt Tanto', 113986), (152738, 152739, 41, 50, 'Blunt Tear Blade', 13347), (122835, 122836, 61, 80, 'Blunt Titanium Crowbar', 33166), (122754, 122755, 61, 80, 'Blunt Two-Handed Blackjack', 33170), (249065, 249066, 21, 30, 'Blunt Variable Density Tanto', 113986), (150260, 150261, 61, 80, 'Blunt Wall-Blade', 113983), (121709, 121710, 61, 80, 'Blunt Whings', 21139), (253060, 253060, 1, 1, 'Bluntness', 239075), (248113, 248113, 1, 1, 'Blur', 255629), (151678, 151679, 1, 200, 'Blushing Ruby', 25796), (199819, 199819, 300, 300, 'Board-Member Omni-Internops Armor Boots', 13270), (199840, 199840, 300, 300, 'Board-Member Omni-Internops Armor Gloves', 13283), (199861, 199861, 300, 300, 'Board-Member Omni-Internops Armor Helmet', 10840), (199882, 199882, 300, 300, 'Board-Member Omni-Internops Armor Pants', 13300), (199903, 199903, 300, 300, 'Board-Member Omni-Internops Armor Sleeves', 13232), (199924, 199924, 300, 300, 'Board-Member Omni-Internops Body Armor', 13253), (199945, 199945, 300, 300, 'Board-Member Omni-Internops Elite Armor Boots', 21866), (199966, 199966, 300, 300, 'Board-Member Omni-Internops Elite Armor Gloves', 21872), (199987, 199987, 300, 300, 'Board-Member Omni-Internops Elite Armor Helmet', 22269), (200008, 200008, 300, 300, 'Board-Member Omni-Internops Elite Armor Pants', 21879), (200029, 200029, 300, 300, 'Board-Member Omni-Internops Elite Armor Sleeves', 21850), (200050, 200050, 300, 300, 'Board-Member Omni-Internops Elite Body Armor', 19816), (150182, 150183, 51, 100, 'Bodum-Larga Club', 85172), (151731, 151732, 1, 19, 'Bodum-Larga NCU', 37967), (151732, 151733, 20, 39, 'Bodum-Larga NCU', 37967), (151733, 151734, 40, 49, 'Bodum-Larga NCU', 37967), (151734, 151735, 50, 119, 'Bodum-Larga NCU', 37967), (151735, 151736, 120, 200, 'Bodum-Larga NCU', 37967), (101665, 101666, 1, 200, 'Body Dev Cluster - Bright (Waist)', 35984), (101663, 101664, 1, 200, 'Body Dev Cluster - Faded (Leg)', 35983), (101667, 101668, 1, 200, 'Body Dev Cluster - Shiny (Chest)', 35985), (165843, 165844, 201, 300, 'Body Dev Refined Cluster - Bright (Waist)', 35984), (165841, 165842, 201, 300, 'Body Dev Refined Cluster - Faded (Leg)', 35983), (165845, 165846, 201, 300, 'Body Dev Refined Cluster - Shiny (Chest)', 35985), (246929, 246929, 1, 1, 'Body Heat Pattern Analyzer', 205506), (252487, 252487, 1, 1, 'Body Tackle', 255730), (99999, 99999, 1, 1, 'Body Tattoo, Back', 96111), (100006, 100006, 1, 1, 'Body Tattoo, Back', 96112), (100009, 100009, 1, 1, 'Body Tattoo, Back', 96113), (100010, 100010, 1, 1, 'Body Tattoo, Back', 96115), (100004, 100004, 1, 1, 'Body Tattoo, Front', 99998), (100005, 100005, 1, 1, 'Body Tattoo, Front', 96109), (100007, 100007, 1, 1, 'Body Tattoo, Front', 96110), (100011, 100011, 1, 1, 'Body Tattoo, Front', 96114), (275248, 275248, 1, 1, 'Body back and chest tattoo', 255294), (160429, 160430, 1, 200, 'Body of the Servants of Eight', 96107), (233220, 233221, 1, 149, 'Bodyguard Blaster', 218701), (233222, 233223, 150, 299, 'Bodyguard Blaster', 218701), (300626, 300626, 1, 1, 'Bodyguard Outfit', 300627), (199539, 199539, 270, 270, 'Bohrium Periodic Tech Armor Boots', 22886), (199560, 199560, 270, 270, 'Bohrium Periodic Tech Armor Gloves', 22933), (199581, 199581, 270, 270, 'Bohrium Periodic Tech Armor Helmet', 31731), (199603, 199603, 270, 270, 'Bohrium Periodic Tech Armor Pants', 22912), (199624, 199624, 270, 270, 'Bohrium Periodic Tech Armor Sleeves', 22911), (199645, 199645, 270, 270, 'Bohrium Periodic Tech Body Armor', 22990), (199666, 199666, 270, 270, 'Bohrium Periodic Tech Female Body Armor', 22909), (85442, 85443, 1, 250, 'Bolt Weapons Field Primer', 83388), (254425, 254425, 1, 1, 'Boltar Brain Blaster', 154418), (272037, 272038, 1, 300, 'Bolter Cannon 42mm - 000', 21149), (272039, 272040, 1, 300, 'Bolter Cannon 42mm - 008', 21149), (272041, 272042, 1, 300, 'Bolter Cannon 42mm - 00C', 21149), (272043, 272044, 1, 300, 'Bolter Cannon 42mm - 40C', 21149), (272045, 272046, 1, 300, 'Bolter Cannon 42mm - C0C', 21149), (121698, 121699, 162, 184, 'Bolter Cannon IX 42mm', 21149), (137517, 137517, 1, 1, 'Bolter Cannon IX 42mm Construction Manual', 136329), (121700, 121701, 185, 199, 'Bolter Cannon XX 42mm', 21149), (137542, 137542, 1, 1, 'Bolter Cannon XX 42mm Construction Manual', 136329), (95576, 95576, 1, 1, 'Bomb Disarmament Tools', 130561), (283788, 283788, 1, 1, 'Bomb Kit', 285137), (248416, 248416, 1, 1, 'Bomber Jacket Sleeves of R.U.R.', 255235), (248417, 248417, 1, 1, 'Bomber Jacket of R.U.R.', 255292), (200074, 200075, 210, 215, 'Bon', 13275), (200095, 200096, 210, 215, 'Bon', 13287), (200158, 200159, 210, 215, 'Bon', 13237), (200179, 200180, 210, 215, 'Bon', 13258), (200053, 200054, 210, 215, 'Bon''you Nippon-Tech Armor', 96106), (200116, 200117, 210, 215, 'Bon''you Nippon-Tech Armor Helmet', 96140), (200137, 200138, 210, 215, 'Bon''you Nippon-Tech Armor Pants', 13305), (248324, 248324, 1, 1, 'Bone Cross Guard', 130859), (227176, 227177, 1, 15, 'Bone Handle', 130862), (248310, 248310, 1, 1, 'Bone Plates', 162297), (214176, 214177, 100, 199, 'Bone Sculptor', 213076), (214178, 214179, 200, 299, 'Bone Sculptor', 213076), (305524, 305524, 1, 1, 'Bone Staff of The Immortal Summoner', 296406), (248312, 248312, 1, 1, 'Bone Stock', 130862), (306174, 306174, 300, 300, 'Bone of a Champion', 295745), (153975, 153975, 90, 90, 'Bonehammer', 33167), (223774, 223774, 1, 1, 'Bonfire', 20412), (223786, 223786, 1, 1, 'Bonfire', 20412), (259930, 259930, 1, 1, 'Bonfire', 20412), (223773, 223773, 1, 1, 'Bonfire Kit', 205499), (259786, 259786, 1, 1, 'Bony Spinetooth Claw', 259785), (284197, 284197, 1, 1, 'Boo Skull Poster', 284196), (99302, 99302, 1, 1, 'Book of Knowledge', 99281), (150449, 150449, 1, 1, 'Book: How To Create A Nano Crystal', 136328), (150450, 150450, 1, 1, 'Book: How To Create A Nano Crystal', 136328), (151356, 151356, 1, 1, 'Book: How To Make An Arul Saba Bracelet', 37961), (151357, 151357, 1, 1, 'Book: How To Make An Arul Saba Bracelet', 37961), (151660, 151660, 1, 1, 'Book: How To Make Jewellery', 37930), (151661, 151661, 1, 1, 'Book: How To Make Jewellery', 37930), (85807, 85807, 1, 1, 'Book: Implant Creation Instruction Manual', 37961), (85808, 85808, 1, 1, 'Book: On Implants and Nano Clusters', 37930), (85809, 85809, 1, 1, 'Book: On Item Creations', 37931), (281456, 281456, 1, 1, 'Bookshelf', 227904), (295323, 295323, 1, 1, 'Boom Ball Pet (Test Reward Series 1)', 220432), (244405, 244405, 250, 250, 'Boon of Aries', 205497), (199383, 199383, 225, 225, 'Boosted Bau Charger Armor Boots', 22878), (199404, 199404, 225, 225, 'Boosted Bau Charger Armor Gloves', 22939), (199425, 199425, 225, 225, 'Boosted Bau Charger Armor Helmet', 31738), (199446, 199446, 225, 225, 'Boosted Bau Charger Armor Pants', 22928), (199467, 199467, 225, 225, 'Boosted Bau Charger Armor Sleeves', 22889), (199488, 199488, 225, 225, 'Boosted Bau Charger Body Armor', 22981), (199509, 199509, 225, 225, 'Boosted Bau Charger Female Body Armor', 22942), (233346, 233346, 300, 300, 'Boosted Bow of Belith', 233216), (202279, 202279, 80, 80, 'Boosted Hellfury Assault Cannon', 154362), (201940, 201940, 190, 190, 'Boosted Hellspinner Shock Cannon', 154361), (55697, 55696, 1, 200, 'Boosted Stim', 11753), (88399, 127243, 12, 200, 'Boosted-Graft: 1H Blunt Weapon Expertise', 11647), (88410, 127247, 13, 200, 'Boosted-Graft: 1H Blunt Weapon Incompetence', 11647), (88421, 127251, 6, 200, 'Boosted-Graft: 1H Blunt Weapon Inexperience', 11652), (88436, 127255, 5, 200, 'Boosted-Graft: 1H Blunt Weapon Proficiency', 11652), (88451, 127683, 12, 200, 'Boosted-Graft: 1H Edged Weapon Expertise', 11647), (88472, 127687, 13, 200, 'Boosted-Graft: 1H Edged Weapon Incompetence', 11647), (88489, 127691, 6, 200, 'Boosted-Graft: 1H Edged Weapon Inexperience', 11652), (88508, 127695, 5, 200, 'Boosted-Graft: 1H Edged Weapon Proficiency', 11652), (88526, 127699, 12, 200, 'Boosted-Graft: 2H Blunt Weapon Expertise', 11647), (88544, 127703, 13, 200, 'Boosted-Graft: 2H Blunt Weapon Incompetence', 11647), (88563, 127707, 6, 200, 'Boosted-Graft: 2H Blunt Weapon Inexperience', 11652), (88580, 127711, 5, 200, 'Boosted-Graft: 2H Blunt Weapon Proficiency', 11652), (88598, 127715, 12, 200, 'Boosted-Graft: 2H Edged Weapon Expertise', 11647), (88617, 127719, 13, 200, 'Boosted-Graft: 2H Edged Weapon Incompetence', 11647), (88635, 127723, 6, 200, 'Boosted-Graft: 2H Edged Weapon Inexperience', 11652), (88652, 127727, 5, 200, 'Boosted-Graft: 2H Edged Weapon Proficiency', 11652), (88669, 127279, 12, 200, 'Boosted-Graft: Adrenaline Pump', 11647), (94593, 128273, 98, 200, 'Boosted-Graft: Advanced Shielding Barrier', 11653), (89446, 127423, 12, 200, 'Boosted-Graft: Adventuring Expertise', 11647), (88687, 127259, 6, 200, 'Boosted-Graft: Agility Boost', 11652), (88704, 127263, 13, 200, 'Boosted-Graft: Aimed Shot Expertise', 11647), (88720, 127267, 14, 200, 'Boosted-Graft: Aimed Shot Incompetence', 11647), (88737, 127271, 7, 200, 'Boosted-Graft: Aimed Shot Inexperience', 11652), (88755, 127275, 6, 200, 'Boosted-Graft: Aimed Shot Proficiency', 11652), (94594, 128099, 2, 200, 'Boosted-Graft: Armor Megaboost', 11652), (88805, 127359, 12, 200, 'Boosted-Graft: Assault Rifle Expertise', 11647), (88823, 127287, 13, 200, 'Boosted-Graft: Assault Rifle Incompetence', 11647), (88840, 127291, 6, 200, 'Boosted-Graft: Assault Rifle Inexperience', 11652), (88856, 127295, 5, 200, 'Boosted-Graft: Assault Rifle Proficiency', 11652), (88874, 127299, 3, 200, 'Boosted-Graft: Augment Agility', 11652), (88891, 127303, 3, 200, 'Boosted-Graft: Augment Intelligence', 11652), (88908, 127307, 3, 200, 'Boosted-Graft: Augment Psychic', 11652), (88924, 127311, 3, 200, 'Boosted-Graft: Augment Sense', 11652), (88942, 127315, 3, 200, 'Boosted-Graft: Augment Stamina', 11652), (88958, 127319, 3, 200, 'Boosted-Graft: Augment Strength', 11652), (94590, 128135, 4, 200, 'Boosted-Graft: Avenging Shield', 11652), (95256, 128119, 8, 200, 'Boosted-Graft: Balanced Striker', 11647), (94595, 128207, 35, 200, 'Boosted-Graft: Basic Defensive Screen', 11648), (94596, 128211, 30, 200, 'Boosted-Graft: Basic Protective Field', 11648), (94597, 128215, 24, 200, 'Boosted-Graft: Basic Shielding Barrier', 11648), (88975, 127323, 12, 200, 'Boosted-Graft: BioMet Expertise', 11647), (88993, 127327, 13, 200, 'Boosted-Graft: BioMet Incompetence', 11647), (89010, 127331, 6, 200, 'Boosted-Graft: BioMet Inexperience', 11652), (89024, 127335, 5, 200, 'Boosted-Graft: BioMet Proficiency', 11652), (94585, 128079, 23, 200, 'Boosted-Graft: Blood Circle', 11648), (89042, 127339, 5, 200, 'Boosted-Graft: Bot Mass Migration', 11652), (89060, 127343, 3, 200, 'Boosted-Graft: Bot Migration', 11652), (89077, 127347, 12, 200, 'Boosted-Graft: Bow Expertise', 11647), (89095, 127351, 13, 200, 'Boosted-Graft: Bow Incompetence', 11647), (89112, 127355, 6, 200, 'Boosted-Graft: Bow Inexperience', 11652), (89128, 127283, 5, 200, 'Boosted-Graft: Bow Proficiency', 11652), (89144, 127427, 13, 200, 'Boosted-Graft: Bow Special Attack Expertise', 11647), (89163, 127363, 14, 200, 'Boosted-Graft: Bow Special Attack Incompetence', 11647), (89181, 127367, 7, 200, 'Boosted-Graft: Bow Special Attack Inexperience', 11652), (89196, 127371, 6, 200, 'Boosted-Graft: Bow Special Attack Proficiency', 11652), (89212, 127375, 13, 200, 'Boosted-Graft: Brawl Expertise', 11647), (89228, 127379, 14, 200, 'Boosted-Graft: Brawl Incompetence', 11647), (89245, 127383, 7, 200, 'Boosted-Graft: Brawl Inexperience', 11652), (89263, 127387, 6, 200, 'Boosted-Graft: Brawl Proficiency', 11652), (89278, 127391, 12, 200, 'Boosted-Graft: Breaking and Entering Expertise', 11647), (89295, 127395, 5, 200, 'Boosted-Graft: Breaking and Entering Proficiency', 11652), (89313, 127399, 13, 200, 'Boosted-Graft: Burst Expertise', 11647), (89330, 127403, 14, 200, 'Boosted-Graft: Burst Incompetence', 11647), (89346, 127407, 7, 200, 'Boosted-Graft: Burst Inexperience', 11652), (89362, 127411, 6, 200, 'Boosted-Graft: Burst Proficiency', 11652), (89412, 127415, 12, 200, 'Boosted-Graft: Chemistry Expertise', 11647), (89429, 127419, 5, 200, 'Boosted-Graft: Chemistry Proficiency', 11652), (94569, 128151, 42, 200, 'Boosted-Graft: Cloak of Fire', 11649), (94586, 128131, 36, 200, 'Boosted-Graft: Company Policy', 11648), (89509, 127527, 12, 200, 'Boosted-Graft: Computer Literacy Expertise', 11647), (89524, 127435, 5, 200, 'Boosted-Graft: Computer Literacy Proficiency', 11652), (89542, 127439, 12, 200, 'Boosted-Graft: Concealment Expertise', 11647), (95259, 127443, 5, 200, 'Boosted-Graft: Concealment Proficiency', 11652), (95244, 128087, 46, 200, 'Boosted-Graft: Damage Amplifier', 11649), (95245, 128091, 7, 200, 'Boosted-Graft: Damage Multiplier', 11652), (94581, 128171, 3, 200, 'Boosted-Graft: Detain Suspect', 11652), (94614, 127447, 14, 200, 'Boosted-Graft: Dimach Incompetence', 11647), (94615, 127451, 7, 200, 'Boosted-Graft: Dimach Inexperience', 11652), (94616, 127455, 5, 200, 'Boosted-Graft: Diminish Agility', 11652), (94617, 127459, 5, 200, 'Boosted-Graft: Diminish Intelligence', 11652), (94618, 127463, 5, 200, 'Boosted-Graft: Diminish Psychic', 11652), (94619, 127467, 5, 200, 'Boosted-Graft: Diminish Sense', 11652), (94620, 127471, 5, 200, 'Boosted-Graft: Diminish Stamina', 11652), (94621, 127475, 5, 200, 'Boosted-Graft: Diminish Strength', 11652), (94622, 127479, 12, 200, 'Boosted-Graft: Disarm Traps Expertise', 11647), (94623, 127483, 5, 200, 'Boosted-Graft: Disarm Traps Proficiency', 11652), (94624, 127487, 9, 200, 'Boosted-Graft: Drain Agility', 11647), (94625, 127491, 9, 200, 'Boosted-Graft: Drain Intelligence', 11647), (94626, 127495, 9, 200, 'Boosted-Graft: Drain Psychic', 11647), (94627, 127499, 9, 200, 'Boosted-Graft: Drain Sense', 11647), (94628, 127503, 9, 200, 'Boosted-Graft: Drain Stamina', 11647), (94629, 127507, 9, 200, 'Boosted-Graft: Drain Strength', 11647), (94598, 128147, 20, 200, 'Boosted-Graft: Electrical Chastiser', 11647), (94630, 127511, 12, 200, 'Boosted-Graft: Electrical Engineering Expertise', 11647), (94631, 128075, 5, 200, 'Boosted-Graft: Electrical Engineering Proficiency', 11652), (94632, 127515, 12, 200, 'Boosted-Graft: Energy Melee Expertise', 11647), (94633, 127519, 5, 200, 'Boosted-Graft: Energy Melee Incompetence', 11652), (94634, 127523, 12, 200, 'Boosted-Graft: Energy Melee Inexperience', 11647), (94635, 127431, 5, 200, 'Boosted-Graft: Energy Melee Proficiency', 11652), (94599, 128103, 33, 200, 'Boosted-Graft: Energy Spike', 11648), (125881, 125882, 29, 200, 'Boosted-Graft: Enhanced Senses', 11648), (94642, 127551, 13, 200, 'Boosted-Graft: Fast Attack Expertise', 11647), (94643, 127555, 14, 200, 'Boosted-Graft: Fast Attack Incompetence', 11647), (94644, 127559, 7, 200, 'Boosted-Graft: Fast Attack Inexperience', 11652), (94645, 127563, 6, 200, 'Boosted-Graft: Fast Attack Proficiency', 11652), (95243, 128163, 12, 200, 'Boosted-Graft: Feet of Stone', 11647), (94646, 127567, 12, 200, 'Boosted-Graft: Field Quantum Physics Expertise', 11647), (94647, 127571, 5, 200, 'Boosted-Graft: Field Quantum Physics Proficiency', 11652), (94591, 128139, 24, 200, 'Boosted-Graft: Field of Sparks', 11648), (94650, 127575, 12, 200, 'Boosted-Graft: First Aid Expertise', 11647), (94651, 127579, 5, 200, 'Boosted-Graft: First Aid Proficiency', 11652), (94600, 128219, 18, 200, 'Boosted-Graft: Flawed Defensive Screen', 11647), (94601, 128239, 12, 200, 'Boosted-Graft: Flawed Protective Field', 11647), (94602, 128267, 8, 200, 'Boosted-Graft: Flawed Shielding Barrier', 11647), (94652, 127583, 13, 200, 'Boosted-Graft: Fling Shot Expertise', 11647), (94653, 127587, 14, 200, 'Boosted-Graft: Fling Shot Incompetence', 11647), (94654, 127591, 7, 200, 'Boosted-Graft: Fling Shot Inexperience', 11652), (94655, 127595, 6, 200, 'Boosted-Graft: Fling Shot Proficiency', 11652), (94570, 128159, 10, 200, 'Boosted-Graft: Frost With Snow', 11647), (94656, 127599, 13, 200, 'Boosted-Graft: Full Auto Expertise', 11647), (94657, 127603, 14, 200, 'Boosted-Graft: Full Auto Incompetence', 11647), (94658, 127607, 7, 200, 'Boosted-Graft: Full Auto Inexperience', 11652), (94659, 127611, 6, 200, 'Boosted-Graft: Full Auto Proficiency', 11652), (94592, 128095, 34, 200, 'Boosted-Graft: Glowing Retribution', 11648), (94603, 128277, 5, 200, 'Boosted-Graft: Greater Armor Megaboost', 11652), (94664, 127735, 12, 200, 'Boosted-Graft: Grenade Expertise', 11647), (94665, 127679, 13, 200, 'Boosted-Graft: Grenade Incompetence', 11647), (94666, 127675, 6, 200, 'Boosted-Graft: Grenade Inexperience', 11652), (94667, 127739, 5, 200, 'Boosted-Graft: Grenade Proficiency', 11652), (94604, 128107, 10, 200, 'Boosted-Graft: Gun Enhancement', 11647), (94612, 128325, 47, 200, 'Boosted-Graft: Hasty Augmentation Cloud', 11649), (94670, 127647, 5, 200, 'Boosted-Graft: Healing', 11652), (95242, 128337, 49, 200, 'Boosted-Graft: Healing Touch', 11649), (94660, 127615, 12, 200, 'Boosted-Graft: Heavy Weapons Expertise', 11647), (94661, 127619, 13, 200, 'Boosted-Graft: Heavy Weapons Incompetence', 11647), (94662, 127623, 6, 200, 'Boosted-Graft: Heavy Weapons Inexperience', 11652), (94663, 127627, 5, 200, 'Boosted-Graft: Heavy Weapons Proficiency', 11652), (93630, 128333, 30, 200, 'Boosted-Graft: Hired Hands', 11648), (94671, 127743, 7, 200, 'Boosted-Graft: Improve Health', 11652), (94587, 128083, 1, 200, 'Boosted-Graft: Improved Healing', 11652), (94672, 127747, 6, 200, 'Boosted-Graft: Intelligence Boost', 11652), (94571, 128155, 18, 200, 'Boosted-Graft: Jacket of Blades', 11647), (94638, 127535, 12, 200, 'Boosted-Graft: LR Energy Weapon Expertise', 11647), (94639, 127539, 13, 200, 'Boosted-Graft: LR Energy Weapon Incompetence', 11647), (94640, 127543, 6, 200, 'Boosted-Graft: LR Energy Weapon Inexp', 11652), (94641, 127547, 5, 200, 'Boosted-Graft: LR Energy Weapon Proficiency', 11652), (94588, 128123, 13, 200, 'Boosted-Graft: Lasting Heal', 11647), (94677, 127659, 6, 200, 'Boosted-Graft: Leaden Feet', 11652), (95246, 128301, 40, 200, 'Boosted-Graft: Lesser Absorption Shield', 11649), (94582, 128321, 9, 200, 'Boosted-Graft: Lesser Anatomy Lesson', 11647), (95247, 128305, 24, 200, 'Boosted-Graft: Lesser Combat Barrier', 11648), (94605, 128281, 54, 200, 'Boosted-Graft: Lesser Defensive Screen', 11650), (95248, 128195, 28, 200, 'Boosted-Graft: Lesser Deflection Shield', 11648), (95249, 128199, 37, 200, 'Boosted-Graft: Lesser Deflection Shield (Extended)', 11648), (94613, 128329, 11, 200, 'Boosted-Graft: Lesser Nano Boost', 11647), (94583, 128167, 35, 200, 'Boosted-Graft: Lesser Paralyze with Indecision', 11648), (94574, 128353, 48, 200, 'Boosted-Graft: Lesser Playful Cub', 11649), (94606, 128285, 48, 200, 'Boosted-Graft: Lesser Protective Field', 11649), (94607, 128143, 36, 200, 'Boosted-Graft: Lesser Retaliatory Barrier', 11648), (94608, 128203, 42, 200, 'Boosted-Graft: Lesser Shielding Barrier', 11649), (94577, 128345, 3, 200, 'Boosted-Graft: Lesser Sparrow Flight', 11652), (94572, 128293, 22, 200, 'Boosted-Graft: Lesser Wilderness Protection', 11647), (94678, 127663, 6, 200, 'Boosted-Graft: Lethargy', 11652), (94683, 127775, 12, 200, 'Boosted-Graft: Martial Arts Expertise', 11647), (94684, 127779, 13, 200, 'Boosted-Graft: Martial Arts Incompetence', 11647), (94685, 127783, 6, 200, 'Boosted-Graft: Martial Arts Inexperience', 11652), (94686, 127787, 5, 200, 'Boosted-Graft: Martial Arts Proficiency', 11652), (94687, 127791, 12, 200, 'Boosted-Graft: MatCrea Expertise', 11647), (94688, 127795, 13, 200, 'Boosted-Graft: MatCrea Incompetence', 11647), (94689, 127799, 6, 200, 'Boosted-Graft: MatCrea Inexperience', 11652), (94690, 127803, 5, 200, 'Boosted-Graft: MatCrea Proficiency', 11652), (94695, 127823, 12, 200, 'Boosted-Graft: MatMet Expertise', 11647), (94696, 127827, 13, 200, 'Boosted-Graft: MatMet Incompetence', 11647), (94697, 127831, 6, 200, 'Boosted-Graft: MatMet Inexperience', 11652), (94698, 127835, 5, 200, 'Boosted-Graft: MatMet Proficiency', 11652), (94699, 127839, 12, 200, 'Boosted-Graft: Mechanical Engineering Expertise', 11647), (94700, 127843, 5, 200, 'Boosted-Graft: Mechanical Engineering Proficiency', 11652), (95250, 128309, 14, 200, 'Boosted-Graft: Minor Absorption Shield', 11647), (95251, 128313, 6, 200, 'Boosted-Graft: Minor Combat Barrier', 11652), (95252, 128191, 16, 200, 'Boosted-Graft: Minor Deflection Shield', 11647), (95253, 128187, 21, 200, 'Boosted-Graft: Minor Deflection Shield (Extended)', 11647), (94703, 127643, 2, 200, 'Boosted-Graft: Minor Healing', 11652), (94573, 128297, 4, 200, 'Boosted-Graft: Minor Wilderness Protection', 11652), (94584, 128317, 23, 200, 'Boosted-Graft: Nano Augmentation', 11648), (94705, 127847, 12, 200, 'Boosted-Graft: Nano Programming Expertise', 11647), (94706, 127851, 5, 200, 'Boosted-Graft: Nano Programming Proficiency', 11652), (94708, 127855, 9, 200, 'Boosted-Graft: Nano Restoration', 11647), (94710, 127859, 13, 200, 'Boosted-Graft: Parry Expertise', 11647), (94711, 127863, 14, 200, 'Boosted-Graft: Parry Incompetence', 11647), (94712, 127867, 7, 200, 'Boosted-Graft: Parry Inexperience', 11652), (94713, 127871, 6, 200, 'Boosted-Graft: Parry Proficiency', 11652), (95254, 128183, 3, 200, 'Boosted-Graft: Partial Deflection Shield', 11652), (95255, 128179, 9, 200, 'Boosted-Graft: Partial Deflection Shield (Extended)', 11647), (94609, 128175, 27, 200, 'Boosted-Graft: Partial Harmonic Cocoon', 11648), (94589, 128127, 26, 200, 'Boosted-Graft: Periodic Checkup', 11648), (94714, 127875, 12, 200, 'Boosted-Graft: Pharmaceutical Expertise', 11647), (94715, 127879, 5, 200, 'Boosted-Graft: Pharmaceutical Proficiency', 11652), (94716, 127631, 12, 200, 'Boosted-Graft: Piercing Expert', 11647), (94717, 127635, 13, 200, 'Boosted-Graft: Piercing Incompetence', 11647), (94718, 127639, 6, 200, 'Boosted-Graft: Piercing Inexperience', 11652), (94719, 127531, 5, 200, 'Boosted-Graft: Piercing Proficiency', 11652), (94720, 127883, 12, 200, 'Boosted-Graft: Pistol Expertise', 11647), (94721, 127887, 13, 200, 'Boosted-Graft: Pistol Incompetence', 11647), (94722, 127891, 6, 200, 'Boosted-Graft: Pistol Inexperience', 11652), (94723, 127731, 5, 200, 'Boosted-Graft: Pistol Proficiency', 11652), (94731, 127907, 12, 200, 'Boosted-Graft: PsyMod Expertise', 11647), (94732, 127911, 13, 200, 'Boosted-Graft: PsyMod Incompetence', 11647), (94733, 127915, 6, 200, 'Boosted-Graft: PsyMod Inexperience', 11652), (94734, 127919, 5, 200, 'Boosted-Graft: PsyMod Proficiency', 11652), (94728, 127895, 6, 200, 'Boosted-Graft: Psychic Boost', 11652), (94729, 127899, 12, 200, 'Boosted-Graft: Psychology Expertise', 11647), (94730, 127903, 5, 200, 'Boosted-Graft: Psychology Proficiency', 11652), (94575, 127651, 1, 200, 'Boosted-Graft: Quick Heal', 11652), (94735, 127923, 20, 200, 'Boosted-Graft: Quickness', 11647), (94736, 127927, 3, 200, 'Boosted-Graft: Radiation Shield', 11652), (94737, 127931, 8, 200, 'Boosted-Graft: Radiation Ward', 11647), (94738, 127935, 12, 200, 'Boosted-Graft: Regeneration', 11647), (94739, 127939, 12, 200, 'Boosted-Graft: Rifle Expertise', 11647), (94740, 127943, 13, 200, 'Boosted-Graft: Rifle Incompetence', 11647), (94741, 127947, 6, 200, 'Boosted-Graft: Rifle Inexperience', 11652), (94742, 127951, 5, 200, 'Boosted-Graft: Rifle Proficiency', 11652), (94743, 127955, 13, 200, 'Boosted-Graft: Riposte Expertise', 11647), (94744, 127959, 14, 200, 'Boosted-Graft: Riposte Incompetence', 11647), (94745, 127963, 7, 200, 'Boosted-Graft: Riposte Inexperience', 11652), (94746, 127967, 6, 200, 'Boosted-Graft: Riposte Proficiency', 11652), (94576, 128341, 8, 200, 'Boosted-Graft: Rough Stitching', 11647), (94747, 127971, 6, 200, 'Boosted-Graft: Sense Boost', 11652), (94748, 127975, 12, 200, 'Boosted-Graft: Sense Imp Expertise', 11647), (94749, 127979, 13, 200, 'Boosted-Graft: Sense Imp Incomp', 11647), (94750, 127983, 6, 200, 'Boosted-Graft: Sense Imp Inexperience', 11652), (94751, 127987, 5, 200, 'Boosted-Graft: Sense Imp Proficiency', 11652), (94752, 127991, 12, 200, 'Boosted-Graft: Shotgun Expertise', 11647), (94753, 127995, 13, 200, 'Boosted-Graft: Shotgun Incompetence', 11647), (94754, 127999, 6, 200, 'Boosted-Graft: Shotgun Inexperience', 11652), (94755, 128003, 5, 200, 'Boosted-Graft: Shotgun Proficiency', 11652), (94756, 128007, 13, 200, 'Boosted-Graft: Sneak Attack Expertise', 11647), (94757, 128011, 14, 200, 'Boosted-Graft: Sneak Attack Incompetence', 11647), (94758, 128015, 7, 200, 'Boosted-Graft: Sneak Attack Inexperience', 11652), (94759, 128019, 6, 200, 'Boosted-Graft: Sneak Attack Proficiency', 11652), (94691, 127807, 12, 200, 'Boosted-Graft: SpaceTime Expertise', 11647), (94692, 127811, 13, 200, 'Boosted-Graft: SpaceTime Incompetence', 11647), (94693, 127815, 6, 200, 'Boosted-Graft: SpaceTime Inexperience', 11652), (94694, 127819, 5, 200, 'Boosted-Graft: SpaceTime Proficiency', 11652), (94610, 128111, 51, 200, 'Boosted-Graft: Spike Armor', 11649), (94611, 128115, 6, 200, 'Boosted-Graft: Spike Shield', 11652), (94760, 128023, 6, 200, 'Boosted-Graft: Stamina Boost', 11652), (94761, 128027, 6, 200, 'Boosted-Graft: Strength Boost', 11652), (94679, 127759, 12, 200, 'Boosted-Graft: Submachine Gun Expertise', 11647), (94680, 127763, 13, 200, 'Boosted-Graft: Submachine Gun Incompetence', 11647), (94681, 127767, 6, 200, 'Boosted-Graft: Submachine Gun Inexperience', 11652), (94682, 127771, 5, 200, 'Boosted-Graft: Submachine Gun Proficiency', 11652), (94764, 128031, 5, 200, 'Boosted-Graft: Swiftness', 11652), (94579, 127655, 5, 200, 'Boosted-Graft: Team Quick Heal', 11652), (94673, 127751, 12, 200, 'Boosted-Graft: Throwing Knife Expertise', 11647), (94674, 127671, 13, 200, 'Boosted-Graft: Throwing Knife Incompetence', 11647), (94675, 127667, 6, 200, 'Boosted-Graft: Throwing Knife Inexperience', 11652), (94676, 127755, 5, 200, 'Boosted-Graft: Throwing Knife Proficiency', 11652), (94767, 128043, 12, 200, 'Boosted-Graft: Treatment Expertise', 11647), (94768, 128047, 5, 200, 'Boosted-Graft: Treatment Proficiency', 11652), (94769, 128051, 12, 200, 'Boosted-Graft: Tutoring Expertise', 11647), (94770, 128055, 5, 200, 'Boosted-Graft: Tutoring Proficiency', 11652), (94779, 128059, 8, 200, 'Boosted-Graft: Weapon Augmentation', 11647), (94780, 128063, 17, 200, 'Boosted-Graft: Weapon Enhancement', 11647), (94781, 128067, 12, 200, 'Boosted-Graft: Weapon Smithing Expertise', 11647), (94782, 128071, 5, 200, 'Boosted-Graft: Weapon Smithing Proficiency', 11652), (94580, 128289, 46, 200, 'Boosted-Graft: Wilderness Protection', 11649), (233080, 233080, 5, 5, 'Boot Algae Sample', 164950), (227004, 227005, 1, 300, 'Bootlegger''s Armor Boots', 213554), (226996, 226997, 1, 300, 'Bootlegger''s Armor Gloves', 21871), (226998, 226999, 1, 300, 'Bootlegger''s Armor Sleeve', 13225), (227002, 227003, 1, 300, 'Bootlegger''s Armor Trousers', 213454), (227000, 227001, 1, 300, 'Bootlegger''s Body Armor', 37545), (252502, 252502, 1, 1, 'Boots for Penelope', 42298), (165305, 165305, 200, 200, 'Boots of Azure Reveries', 22884), (244714, 244714, 300, 300, 'Boots of Concourse', 245032), (305995, 305995, 1, 1, 'Boots of Gridspace Distortion', 13267), (202722, 202723, 1, 200, 'Boots of Infinite Speed', 13267), (245857, 245857, 250, 250, 'Boots of Stolen Comet Speed', 245848), (207289, 207290, 1, 199, 'Boots of Violent Motion', 13272), (207290, 207291, 200, 250, 'Boots of Violent Motion', 13272), (208202, 208203, 100, 200, 'Boots of Yearning', 37128), (206656, 206657, 1, 99, 'Boots of the Dancing King', 21862), (206657, 206658, 100, 300, 'Boots of the Dancing King', 21862), (304486, 304487, 1, 220, 'Boots of the Eight', 305042), (282113, 282113, 150, 150, 'Boots of the Goddess', 281508), (246094, 246094, 250, 250, 'Boots of the Imaginative', 213538), (248989, 248989, 1, 1, 'Boots of the King', 254853), (41047, 41047, 1, 1, 'Boots with a Blue Leopard Print', 37131), (41040, 41040, 1, 1, 'Boots with a Blue Zebra Print', 37123), (41043, 41043, 1, 1, 'Boots with a Grey Waterlily Print', 37125), (41048, 41048, 1, 1, 'Boots with a Leopard Print', 37130), (41046, 41046, 1, 1, 'Boots with a Rainbow Leopard Print', 37129), (42329, 42329, 1, 1, 'Boots with a Stars Print', 42293), (41042, 41042, 1, 1, 'Boots with a Waterlily Print', 37126), (41044, 41044, 1, 1, 'Boots with a White Leopard Print', 37128), (41041, 41041, 1, 1, 'Boots with a Zebra Print', 37122), (157975, 157975, 1, 1, 'Booze', 157928), (253078, 253078, 1, 1, 'Bore', 239141), (305034, 305034, 1, 1, 'Boreal Blade of Inobak', 296404), (258267, 258267, 1, 1, 'Borealis Mutant Population Study', 37931), (262800, 262800, 1, 1, 'Borealis Protest Placard - Borealis = Neutral', 262807), (262811, 262811, 1, 1, 'Borealis Protest Placard - Free Borealis', 262808), (262802, 262802, 1, 1, 'Borealis Protest Placard - No Unicorns', 262809), (262801, 262801, 1, 1, 'Borealis Protest Placard - Omni Go Home!', 262810), (300570, 300570, 1, 1, 'Borealis T-shirt', 300569), (225587, 225588, 1, 300, 'Borek''s Finger', 11615), (285736, 285736, 300, 300, 'Boss Calm Immunity', 268019), (253122, 253122, 1, 1, 'Bot Confinement', 239175), (130593, 130593, 1, 1, 'Bottle of Fresh Water', 37941), (212905, 212905, 1, 1, 'Bottles and Garbage', 20412), (290060, 290060, 1, 1, 'Boudart''s Pink Tuxedo', 285074), (285022, 285022, 1, 1, 'Boudart''s Pink Tuxedo - Deluxe Edition', 285074), (253760, 253760, 1, 1, 'Bougainvillea Boots', 253715), (253763, 253763, 1, 1, 'Bougainvillea Pants', 253735), (253762, 253762, 1, 1, 'Bougainvillea Shirt', 253663), (253761, 253761, 1, 1, 'Bougainvillea Sleeves', 253698), (297743, 297743, 1, 1, 'Bouquet of Lillies', 284947), (259937, 259937, 1, 1, 'Bouquet of Winter', 258542), (101443, 101444, 1, 200, 'Bow Cluster - Bright (Left-Arm)', 35987), (101441, 101442, 1, 200, 'Bow Cluster - Faded (Eye)', 35986), (101445, 101446, 1, 200, 'Bow Cluster - Shiny (Right-Arm)', 35988), (277919, 277920, 1, 300, 'Bow Memory Cell', 276922), (165603, 165604, 201, 300, 'Bow Refined Cluster - Bright (Left-Arm)', 35987), (165601, 165602, 201, 300, 'Bow Refined Cluster - Faded (Eye)', 35986), (165605, 165606, 201, 300, 'Bow Refined Cluster - Shiny (Right-Arm)', 35988), (278160, 278161, 1, 199, 'Bow Skill NCU (1/6)', 276930), (278162, 278163, 200, 299, 'Bow Skill NCU (1/6)', 276930), (278164, 278164, 300, 300, 'Bow Skill NCU (1/6)', 276930), (278165, 278166, 1, 199, 'Bow Skill NCU (2/6)', 276931), (278167, 278168, 200, 299, 'Bow Skill NCU (2/6)', 276931), (278169, 278169, 300, 300, 'Bow Skill NCU (2/6)', 276931), (278170, 278171, 1, 199, 'Bow Skill NCU (3/6)', 276932), (278172, 278173, 200, 299, 'Bow Skill NCU (3/6)', 276932), (278174, 278174, 300, 300, 'Bow Skill NCU (3/6)', 276932), (278175, 278176, 1, 199, 'Bow Skill NCU (4/6)', 276933), (278177, 278178, 200, 299, 'Bow Skill NCU (4/6)', 276933), (278179, 278179, 300, 300, 'Bow Skill NCU (4/6)', 276933), (278180, 278181, 1, 199, 'Bow Skill NCU (5/6)', 276934), (278182, 278183, 200, 299, 'Bow Skill NCU (5/6)', 276934), (278184, 278184, 300, 300, 'Bow Skill NCU (5/6)', 276934), (278185, 278186, 1, 199, 'Bow Skill NCU (6/6)', 276935), (278187, 278188, 200, 299, 'Bow Skill NCU (6/6)', 276935), (278189, 278189, 300, 300, 'Bow Skill NCU (6/6)', 276935), (101503, 101504, 1, 200, 'Bow Spc Att Cluster - Bright (Right-Hand)', 35987), (101501, 101502, 1, 200, 'Bow Spc Att Cluster - Faded (Right-Wrist)', 35986), (101505, 101506, 1, 200, 'Bow Spc Att Cluster - Shiny (Head)', 35988), (165663, 165664, 201, 300, 'Bow Spc Att Refined Cluster - Bright (Right-Hand)', 35987), (165661, 165662, 201, 300, 'Bow Spc Att Refined Cluster - Faded (Right-Wrist)', 35986), (165665, 165666, 201, 300, 'Bow Spc Att Refined Cluster - Shiny (Head)', 35988), (271109, 271110, 1, 300, 'Bow Split - 000', 21134), (271111, 271112, 1, 300, 'Bow Split - 010', 21134), (271113, 271114, 1, 300, 'Bow Split - 050', 21134), (271115, 271116, 1, 300, 'Bow Split - 070', 21134), (271117, 271118, 1, 300, 'Bow Split - 870', 21134), (272278, 272279, 1, 300, 'Bow Weapons Basic Upgrade Kit', 272250), (233340, 233341, 1, 99, 'Bow of Belith', 233216), (233342, 233343, 100, 199, 'Bow of Belith', 233216), (233344, 233345, 200, 299, 'Bow of Belith', 233216), (165055, 165056, 1, 119, 'Bow of Ferocious Appetite', 165054), (211209, 211210, 1, 299, 'Bow of Premonition', 85167), (214342, 214342, 300, 300, 'Bow of Solace', 210172), (214338, 214339, 100, 199, 'Bow of Sympathy', 210172), (214340, 214341, 200, 299, 'Bow of Sympathy', 210172), (211254, 211255, 1, 299, 'Bow of the Double Nimbus', 165054), (211256, 211256, 300, 300, 'Bow of the Triple Nimbus', 165054), (123225, 123225, 1, 1, 'Bow special attack', 123969), (129083, 129084, 1, 500, 'Bow special attack Item', 13326), (122775, 122776, 81, 100, 'Bow-Blaster', 114013), (271433, 271434, 1, 300, 'Bow-Blaster - 000', 114013), (271435, 271436, 1, 300, 'Bow-Blaster - 002', 114013), (271437, 271438, 1, 300, 'Bow-Blaster - 402', 114013), (271439, 271440, 1, 300, 'Bow-Blaster - C02', 114013), (85440, 85440, 1, 1, 'Bows Field Primer', 83349), (85441, 85441, 250, 250, 'Bows Rifle Field Primer', 83349), (212906, 212906, 1, 1, 'Box', 20412), (287175, 287175, 1, 1, 'Box Head', 287298), (303129, 303129, 1, 1, 'Box of Arrows', 273497), (304170, 304170, 1, 1, 'Box of Guns', 205832), (207039, 207039, 1, 1, 'Box of Mint and Liquorice Valentine''s Candies', 207018), (239761, 239761, 1, 1, 'Box of Nanocrystals', 156512), (304168, 304169, 1, 220, 'Box of Nanocrystals', 156512), (239760, 239760, 300, 300, 'Box of Nanocrystals', 156512), (251961, 251961, 1, 1, 'Box of Security Passes - Biodome 1', 154192), (251960, 251960, 1, 1, 'Box of Security Passes - Biodome 2', 154192), (251958, 251958, 1, 1, 'Box of Security Passes - Biodome 3', 154192), (251973, 251973, 1, 1, 'Box of Security Passes - Research Dome 1', 154192), (251974, 251974, 1, 1, 'Box of Security Passes - Research Dome 2', 154192), (251975, 251975, 1, 1, 'Box of Security Passes - Research Dome 3', 154192), (258582, 258582, 200, 200, 'Box of Silirrion Scones', 99290), (284682, 284682, 1, 1, 'Box of Stims', 20189), (286425, 286425, 1, 1, 'Box of Stuff', 154191), (286426, 286426, 1, 1, 'Box of Stuff', 154191), (286427, 286427, 1, 1, 'Box of Stuff', 154191), (286428, 286428, 1, 1, 'Box of Stuff', 154191), (286429, 286429, 1, 1, 'Box of Stuff', 154191), (286431, 286431, 1, 1, 'Box of Stuff', 154191), (286433, 286433, 1, 1, 'Box of Stuff', 154191), (286434, 286434, 1, 1, 'Box of Stuff', 154191), (286435, 286435, 1, 1, 'Box of Stuff', 154191), (286436, 286436, 1, 1, 'Box of Stuff', 154191), (286437, 286437, 1, 1, 'Box of Stuff', 154191), (286442, 286442, 1, 1, 'Box of Stuff', 154191), (304587, 304587, 1, 1, 'Box of Stuff', 301822), (305221, 305221, 1, 1, 'Box of Things and Garbage', 281837), (305222, 305222, 1, 1, 'Box of Things and Garbage', 281837), (305223, 305223, 1, 1, 'Box of Things and Garbage', 281837), (305224, 305224, 1, 1, 'Box of Things and Garbage', 281837), (305226, 305226, 1, 1, 'Box of Things and Garbage', 281837), (305227, 305227, 1, 1, 'Box of Things and Garbage', 281837), (305228, 305228, 1, 1, 'Box of Things and Garbage', 281837), (305229, 305229, 1, 1, 'Box of Things and Garbage', 281837), (305230, 305230, 1, 1, 'Box of Things and Garbage', 281837), (305231, 305231, 1, 1, 'Box of Things and Garbage', 281837), (305232, 305232, 1, 1, 'Box of Things and Garbage', 281837), (305233, 305233, 1, 1, 'Box of Things and Garbage', 281837), (305234, 305234, 1, 1, 'Box of Things and Garbage', 281837), (305235, 305235, 1, 1, 'Box of Things and Garbage', 281837), (305236, 305236, 1, 1, 'Box of Things and Garbage', 281837), (305237, 305237, 1, 1, 'Box of Things and Garbage', 281837), (305238, 305238, 1, 1, 'Box of Things and Garbage', 281837), (305239, 305239, 1, 1, 'Box of Things and Garbage', 281837), (305240, 305240, 1, 1, 'Box of Things and Garbage', 281837), (245456, 245456, 150, 150, 'Box with Swim Wear', 20407), (292932, 292932, 1, 1, 'Box with a Pumpkin Head', 292921), (304087, 304087, 1, 1, 'Box with a Skull Face', 304088), (304086, 304086, 1, 1, 'Box with a Zombie Face', 304089), (31513, 31513, 1, 1, 'Boxers with Pink Spots', 21877), (268691, 268691, 1, 1, 'Boxing Glove - Left Hand', 268657), (268693, 268693, 1, 1, 'Boxing Glove - Right Hand', 268657), (150928, 150927, 1, 250, 'Bracelet Circuitry', 149937), (204756, 204756, 1, 1, 'Bracelet of Amplified Sound', 84053), (230011, 230011, 80, 80, 'Bracelet of Arul Saba (Broken Moebius - 1/1 - Left)', 151026), (230026, 230026, 80, 80, 'Bracelet of Arul Saba (Broken Moebius - 1/1 - Right)', 151026), (168479, 168479, 80, 80, 'Bracelet of Arul Saba (Bruised Brawler - 1/1 - Left)', 151026), (168494, 168494, 80, 80, 'Bracelet of Arul Saba (Bruised Brawler - 1/1 - Right)', 151026), (168480, 168480, 110, 110, 'Bracelet of Arul Saba (Bruised Brawler - 1/2 - Left)', 151026), (168495, 168495, 110, 110, 'Bracelet of Arul Saba (Bruised Brawler - 1/2 - Right)', 151026), (168481, 168481, 130, 130, 'Bracelet of Arul Saba (Bruised Brawler - 1/3 - Left)', 151026), (168496, 168496, 130, 130, 'Bracelet of Arul Saba (Bruised Brawler - 1/3 - Right)', 151026), (168482, 168482, 165, 165, 'Bracelet of Arul Saba (Bruised Brawler - 1/4 - Left)', 151026), (168497, 168497, 165, 165, 'Bracelet of Arul Saba (Bruised Brawler - 1/4 - Right)', 151026), (168483, 168483, 200, 200, 'Bracelet of Arul Saba (Bruised Brawler - 1/5 - Left)', 151026), (168498, 168498, 200, 200, 'Bracelet of Arul Saba (Bruised Brawler - 1/5 - Right)', 151026), (168484, 168484, 110, 110, 'Bracelet of Arul Saba (Bruised Brawler - 2/2 - Left)', 151023), (168499, 168499, 110, 110, 'Bracelet of Arul Saba (Bruised Brawler - 2/2 - Right)', 151023), (168485, 168485, 130, 130, 'Bracelet of Arul Saba (Bruised Brawler - 2/3 - Left)', 151023), (168500, 168500, 130, 130, 'Bracelet of Arul Saba (Bruised Brawler - 2/3 - Right)', 151023), (168486, 168486, 165, 165, 'Bracelet of Arul Saba (Bruised Brawler - 2/4 - Left)', 151023), (168501, 168501, 165, 165, 'Bracelet of Arul Saba (Bruised Brawler - 2/4 - Right)', 151023), (168487, 168487, 200, 200, 'Bracelet of Arul Saba (Bruised Brawler - 2/5 - Left)', 151023), (168502, 168502, 200, 200, 'Bracelet of Arul Saba (Bruised Brawler - 2/5 - Right)', 151023), (168488, 168488, 130, 130, 'Bracelet of Arul Saba (Bruised Brawler - 3/3 - Left)', 151024), (168503, 168503, 130, 130, 'Bracelet of Arul Saba (Bruised Brawler - 3/3 - Right)', 151024), (168489, 168489, 165, 165, 'Bracelet of Arul Saba (Bruised Brawler - 3/4 - Left)', 151024), (168504, 168504, 165, 165, 'Bracelet of Arul Saba (Bruised Brawler - 3/4 - Right)', 151024), (168490, 168490, 200, 200, 'Bracelet of Arul Saba (Bruised Brawler - 3/5 - Left)', 151024), (168505, 168505, 200, 200, 'Bracelet of Arul Saba (Bruised Brawler - 3/5 - Right)', 151024), (168491, 168491, 165, 165, 'Bracelet of Arul Saba (Bruised Brawler - 4/4 - Left)', 151025), (168506, 168506, 165, 165, 'Bracelet of Arul Saba (Bruised Brawler - 4/4 - Right)', 151025), (168492, 168492, 200, 200, 'Bracelet of Arul Saba (Bruised Brawler - 4/5 - Left)', 151025), (168507, 168507, 200, 200, 'Bracelet of Arul Saba (Bruised Brawler - 4/5 - Right)', 151025), (168493, 168493, 200, 200, 'Bracelet of Arul Saba (Bruised Brawler - 5/5 - Left)', 151022), (168508, 168508, 200, 200, 'Bracelet of Arul Saba (Bruised Brawler - 5/5 - Right)', 151022), (168519, 168519, 80, 80, 'Bracelet of Arul Saba (Burning Plasma - 1/1 - Left)', 151026), (168534, 168534, 80, 80, 'Bracelet of Arul Saba (Burning Plasma - 1/1 - Right)', 151026), (168520, 168520, 110, 110, 'Bracelet of Arul Saba (Burning Plasma - 1/2 - Left)', 151026), (168535, 168535, 110, 110, 'Bracelet of Arul Saba (Burning Plasma - 1/2 - Right)', 151026), (168521, 168521, 130, 130, 'Bracelet of Arul Saba (Burning Plasma - 1/3 - Left)', 151026), (168536, 168536, 130, 130, 'Bracelet of Arul Saba (Burning Plasma - 1/3 - Right)', 151026), (168522, 168522, 165, 165, 'Bracelet of Arul Saba (Burning Plasma - 1/4 - Left)', 151026), (168537, 168537, 165, 165, 'Bracelet of Arul Saba (Burning Plasma - 1/4 - Right)', 151026), (168523, 168523, 200, 200, 'Bracelet of Arul Saba (Burning Plasma - 1/5 - Left)', 151026), (168538, 168538, 200, 200, 'Bracelet of Arul Saba (Burning Plasma - 1/5 - Right)', 151026), (168524, 168524, 110, 110, 'Bracelet of Arul Saba (Burning Plasma - 2/2 - Left)', 151023), (168539, 168539, 110, 110, 'Bracelet of Arul Saba (Burning Plasma - 2/2 - Right)', 151023), (168525, 168525, 130, 130, 'Bracelet of Arul Saba (Burning Plasma - 2/3 - Left)', 151023), (168540, 168540, 130, 130, 'Bracelet of Arul Saba (Burning Plasma - 2/3 - Right)', 151023), (168526, 168526, 165, 165, 'Bracelet of Arul Saba (Burning Plasma - 2/4 - Left)', 151023), (168541, 168541, 165, 165, 'Bracelet of Arul Saba (Burning Plasma - 2/4 - Right)', 151023), (168527, 168527, 200, 200, 'Bracelet of Arul Saba (Burning Plasma - 2/5 - Left)', 151023), (168542, 168542, 200, 200, 'Bracelet of Arul Saba (Burning Plasma - 2/5 - Right)', 151023), (168528, 168528, 130, 130, 'Bracelet of Arul Saba (Burning Plasma - 3/3 - Left)', 151024), (168543, 168543, 130, 130, 'Bracelet of Arul Saba (Burning Plasma - 3/3 - Right)', 151024), (168529, 168529, 165, 165, 'Bracelet of Arul Saba (Burning Plasma - 3/4 - Left)', 151024), (168544, 168544, 165, 165, 'Bracelet of Arul Saba (Burning Plasma - 3/4 - Right)', 151024), (168530, 168530, 200, 200, 'Bracelet of Arul Saba (Burning Plasma - 3/5 - Left)', 151024), (168545, 168545, 200, 200, 'Bracelet of Arul Saba (Burning Plasma - 3/5 - Right)', 151024), (168531, 168531, 165, 165, 'Bracelet of Arul Saba (Burning Plasma - 4/4 - Left)', 151025), (168546, 168546, 165, 165, 'Bracelet of Arul Saba (Burning Plasma - 4/4 - Right)', 151025), (168532, 168532, 200, 200, 'Bracelet of Arul Saba (Burning Plasma - 4/5 - Left)', 151025), (168547, 168547, 200, 200, 'Bracelet of Arul Saba (Burning Plasma - 4/5 - Right)', 151025), (168533, 168533, 200, 200, 'Bracelet of Arul Saba (Burning Plasma - 5/5 - Left)', 151022), (168548, 168548, 200, 200, 'Bracelet of Arul Saba (Burning Plasma - 5/5 - Right)', 151022), (168803, 168803, 80, 80, 'Bracelet of Arul Saba (Corroded Glory - 1/1 - Left)', 151026), (168818, 168818, 80, 80, 'Bracelet of Arul Saba (Corroded Glory - 1/1 - Right)', 151026), (168804, 168804, 110, 110, 'Bracelet of Arul Saba (Corroded Glory - 1/2 - Left)', 151026), (168819, 168819, 110, 110, 'Bracelet of Arul Saba (Corroded Glory - 1/2 - Right)', 151026), (168805, 168805, 130, 130, 'Bracelet of Arul Saba (Corroded Glory - 1/3 - Left)', 151026), (168820, 168820, 130, 130, 'Bracelet of Arul Saba (Corroded Glory - 1/3 - Right)', 151026), (168806, 168806, 165, 165, 'Bracelet of Arul Saba (Corroded Glory - 1/4 - Left)', 151026), (168821, 168821, 165, 165, 'Bracelet of Arul Saba (Corroded Glory - 1/4 - Right)', 151026), (168807, 168807, 200, 200, 'Bracelet of Arul Saba (Corroded Glory - 1/5 - Left)', 151026), (168822, 168822, 200, 200, 'Bracelet of Arul Saba (Corroded Glory - 1/5 - Right)', 151026), (168808, 168808, 110, 110, 'Bracelet of Arul Saba (Corroded Glory - 2/2 - Left)', 151023), (168823, 168823, 110, 110, 'Bracelet of Arul Saba (Corroded Glory - 2/2 - Right)', 151023), (168809, 168809, 130, 130, 'Bracelet of Arul Saba (Corroded Glory - 2/3 - Left)', 151023), (168824, 168824, 130, 130, 'Bracelet of Arul Saba (Corroded Glory - 2/3 - Right)', 151023), (168810, 168810, 165, 165, 'Bracelet of Arul Saba (Corroded Glory - 2/4 - Left)', 151023), (168825, 168825, 165, 165, 'Bracelet of Arul Saba (Corroded Glory - 2/4 - Right)', 151023), (168811, 168811, 200, 200, 'Bracelet of Arul Saba (Corroded Glory - 2/5 - Left)', 151023), (168826, 168826, 200, 200, 'Bracelet of Arul Saba (Corroded Glory - 2/5 - Right)', 151023), (168812, 168812, 130, 130, 'Bracelet of Arul Saba (Corroded Glory - 3/3 - Left)', 151024), (168827, 168827, 130, 130, 'Bracelet of Arul Saba (Corroded Glory - 3/3 - Right)', 151024), (168813, 168813, 165, 165, 'Bracelet of Arul Saba (Corroded Glory - 3/4 - Left)', 151024), (168828, 168828, 165, 165, 'Bracelet of Arul Saba (Corroded Glory - 3/4 - Right)', 151024), (168814, 168814, 200, 200, 'Bracelet of Arul Saba (Corroded Glory - 3/5 - Left)', 151024), (168829, 168829, 200, 200, 'Bracelet of Arul Saba (Corroded Glory - 3/5 - Right)', 151024), (168815, 168815, 165, 165, 'Bracelet of Arul Saba (Corroded Glory - 4/4 - Left)', 151025), (168830, 168830, 165, 165, 'Bracelet of Arul Saba (Corroded Glory - 4/4 - Right)', 151025), (168816, 168816, 200, 200, 'Bracelet of Arul Saba (Corroded Glory - 4/5 - Left)', 151025), (168831, 168831, 200, 200, 'Bracelet of Arul Saba (Corroded Glory - 4/5 - Right)', 151025), (168817, 168817, 200, 200, 'Bracelet of Arul Saba (Corroded Glory - 5/5 - Left)', 151022), (168832, 168832, 200, 200, 'Bracelet of Arul Saba (Corroded Glory - 5/5 - Right)', 151022), (230222, 230222, 80, 80, 'Bracelet of Arul Saba (Craggy Landscape - 1/1 - Left)', 151026), (230237, 230237, 80, 80, 'Bracelet of Arul Saba (Craggy Landscape - 1/1 - Right)', 151026), (230302, 230302, 80, 80, 'Bracelet of Arul Saba (Decayed Glory - 1/1 - Left)', 151026), (230317, 230317, 80, 80, 'Bracelet of Arul Saba (Decayed Glory - 1/1 - Right)', 151026), (230142, 230142, 80, 80, 'Bracelet of Arul Saba (Empty Desert - 1/1 - Left)', 151026), (230157, 230157, 80, 80, 'Bracelet of Arul Saba (Empty Desert - 1/1 - Right)', 151026), (165395, 165395, 80, 80, 'Bracelet of Arul Saba (Eternal Juggernaut - 1/1 - Left)', 151026), (165410, 165410, 80, 80, 'Bracelet of Arul Saba (Eternal Juggernaut - 1/1 - Right)', 151026), (165396, 165396, 110, 110, 'Bracelet of Arul Saba (Eternal Juggernaut - 1/2 - Left)', 151026), (165411, 165411, 110, 110, 'Bracelet of Arul Saba (Eternal Juggernaut - 1/2 - Right)', 151026), (165397, 165397, 130, 130, 'Bracelet of Arul Saba (Eternal Juggernaut - 1/3 - Left)', 151026), (165412, 165412, 130, 130, 'Bracelet of Arul Saba (Eternal Juggernaut - 1/3 - Right)', 151026), (165398, 165398, 165, 165, 'Bracelet of Arul Saba (Eternal Juggernaut - 1/4 - Left)', 151026), (165413, 165413, 165, 165, 'Bracelet of Arul Saba (Eternal Juggernaut - 1/4 - Right)', 151026), (165399, 165399, 200, 200, 'Bracelet of Arul Saba (Eternal Juggernaut - 1/5 - Left)', 151026), (165414, 165414, 200, 200, 'Bracelet of Arul Saba (Eternal Juggernaut - 1/5 - Right)', 151026), (165400, 165400, 110, 110, 'Bracelet of Arul Saba (Eternal Juggernaut - 2/2 - Left)', 151023), (165415, 165415, 110, 110, 'Bracelet of Arul Saba (Eternal Juggernaut - 2/2 - Right)', 151023), (165401, 165401, 130, 130, 'Bracelet of Arul Saba (Eternal Juggernaut - 2/3 - Left)', 151023), (165416, 165416, 130, 130, 'Bracelet of Arul Saba (Eternal Juggernaut - 2/3 - Right)', 151023), (165402, 165402, 165, 165, 'Bracelet of Arul Saba (Eternal Juggernaut - 2/4 - Left)', 151023), (165417, 165417, 165, 165, 'Bracelet of Arul Saba (Eternal Juggernaut - 2/4 - Right)', 151023), (165403, 165403, 200, 200, 'Bracelet of Arul Saba (Eternal Juggernaut - 2/5 - Left)', 151023), (165418, 165418, 200, 200, 'Bracelet of Arul Saba (Eternal Juggernaut - 2/5 - Right)', 151023), (165404, 165404, 130, 130, 'Bracelet of Arul Saba (Eternal Juggernaut - 3/3 - Left)', 151024), (165419, 165419, 130, 130, 'Bracelet of Arul Saba (Eternal Juggernaut - 3/3 - Right)', 151024), (165405, 165405, 165, 165, 'Bracelet of Arul Saba (Eternal Juggernaut - 3/4 - Left)', 151024), (165420, 165420, 165, 165, 'Bracelet of Arul Saba (Eternal Juggernaut - 3/4 - Right)', 151024), (165406, 165406, 200, 200, 'Bracelet of Arul Saba (Eternal Juggernaut - 3/5 - Left)', 151024), (165421, 165421, 200, 200, 'Bracelet of Arul Saba (Eternal Juggernaut - 3/5 - Right)', 151024), (165407, 165407, 165, 165, 'Bracelet of Arul Saba (Eternal Juggernaut - 4/4 - Left)', 151025), (165422, 165422, 165, 165, 'Bracelet of Arul Saba (Eternal Juggernaut - 4/4 - Right)', 151025), (165408, 165408, 200, 200, 'Bracelet of Arul Saba (Eternal Juggernaut - 4/5 - Left)', 151025), (165423, 165423, 200, 200, 'Bracelet of Arul Saba (Eternal Juggernaut - 4/5 - Right)', 151025), (165409, 165409, 200, 200, 'Bracelet of Arul Saba (Eternal Juggernaut - 5/5 - Left)', 151022), (165424, 165424, 200, 200, 'Bracelet of Arul Saba (Eternal Juggernaut - 5/5 - Right)', 151022), (230099, 230099, 80, 80, 'Bracelet of Arul Saba (Fiery Plasma - 1/1 - Left)', 151026), (230114, 230114, 80, 80, 'Bracelet of Arul Saba (Fiery Plasma - 1/1 - Right)', 151026), (229990, 229990, 80, 80, 'Bracelet of Arul Saba (Frail Juggernaut - 1/1 - Left)', 151026), (229973, 229973, 80, 80, 'Bracelet of Arul Saba (Frail Juggernaut - 1/1 - Right)', 151026), (168626, 168626, 80, 80, 'Bracelet of Arul Saba (Frozen Tundra - 1/1 - Left)', 151026), (168641, 168641, 80, 80, 'Bracelet of Arul Saba (Frozen Tundra - 1/1 - Right)', 151026), (168627, 168627, 110, 110, 'Bracelet of Arul Saba (Frozen Tundra - 1/2 - Left)', 151026), (168642, 168642, 110, 110, 'Bracelet of Arul Saba (Frozen Tundra - 1/2 - Right)', 151026), (168628, 168628, 130, 130, 'Bracelet of Arul Saba (Frozen Tundra - 1/3 - Left)', 151026), (168643, 168643, 130, 130, 'Bracelet of Arul Saba (Frozen Tundra - 1/3 - Right)', 151026), (168629, 168629, 165, 165, 'Bracelet of Arul Saba (Frozen Tundra - 1/4 - Left)', 151026), (168644, 168644, 165, 165, 'Bracelet of Arul Saba (Frozen Tundra - 1/4 - Right)', 151026), (168630, 168630, 200, 200, 'Bracelet of Arul Saba (Frozen Tundra - 1/5 - Left)', 151026), (168645, 168645, 200, 200, 'Bracelet of Arul Saba (Frozen Tundra - 1/5 - Right)', 151026), (168631, 168631, 110, 110, 'Bracelet of Arul Saba (Frozen Tundra - 2/2 - Left)', 151023), (168646, 168646, 110, 110, 'Bracelet of Arul Saba (Frozen Tundra - 2/2 - Right)', 151023), (168632, 168632, 130, 130, 'Bracelet of Arul Saba (Frozen Tundra - 2/3 - Left)', 151023), (168647, 168647, 130, 130, 'Bracelet of Arul Saba (Frozen Tundra - 2/3 - Right)', 151023), (168633, 168633, 165, 165, 'Bracelet of Arul Saba (Frozen Tundra - 2/4 - Left)', 151023), (168648, 168648, 165, 165, 'Bracelet of Arul Saba (Frozen Tundra - 2/4 - Right)', 151023), (168634, 168634, 200, 200, 'Bracelet of Arul Saba (Frozen Tundra - 2/5 - Left)', 151023), (168649, 168649, 200, 200, 'Bracelet of Arul Saba (Frozen Tundra - 2/5 - Right)', 151023), (168635, 168635, 130, 130, 'Bracelet of Arul Saba (Frozen Tundra - 3/3 - Left)', 151024), (168650, 168650, 130, 130, 'Bracelet of Arul Saba (Frozen Tundra - 3/3 - Right)', 151024), (168636, 168636, 165, 165, 'Bracelet of Arul Saba (Frozen Tundra - 3/4 - Left)', 151024), (168651, 168651, 165, 165, 'Bracelet of Arul Saba (Frozen Tundra - 3/4 - Right)', 151024), (168637, 168637, 200, 200, 'Bracelet of Arul Saba (Frozen Tundra - 3/5 - Left)', 151024), (168652, 168652, 200, 200, 'Bracelet of Arul Saba (Frozen Tundra - 3/5 - Right)', 151024), (168638, 168638, 165, 165, 'Bracelet of Arul Saba (Frozen Tundra - 4/4 - Left)', 151025), (168653, 168653, 165, 165, 'Bracelet of Arul Saba (Frozen Tundra - 4/4 - Right)', 151025), (168639, 168639, 200, 200, 'Bracelet of Arul Saba (Frozen Tundra - 4/5 - Left)', 151025), (168654, 168654, 200, 200, 'Bracelet of Arul Saba (Frozen Tundra - 4/5 - Right)', 151025), (168640, 168640, 200, 200, 'Bracelet of Arul Saba (Frozen Tundra - 5/5 - Left)', 151022), (168655, 168655, 200, 200, 'Bracelet of Arul Saba (Frozen Tundra - 5/5 - Right)', 151022), (230182, 230182, 80, 80, 'Bracelet of Arul Saba (Icy Tundra - 1/1 - Left)', 151026), (230197, 230197, 80, 80, 'Bracelet of Arul Saba (Icy Tundra - 1/1 - Right)', 151026), (168438, 168438, 80, 80, 'Bracelet of Arul Saba (Infinite Moebius - 1/1 - Left)', 151026), (168453, 168453, 80, 80, 'Bracelet of Arul Saba (Infinite Moebius - 1/1 - Right)', 151026), (168439, 168439, 110, 110, 'Bracelet of Arul Saba (Infinite Moebius - 1/2 - Left)', 151026), (168454, 168454, 110, 110, 'Bracelet of Arul Saba (Infinite Moebius - 1/2 - Right)', 151026), (168440, 168440, 130, 130, 'Bracelet of Arul Saba (Infinite Moebius - 1/3 - Left)', 151026), (168455, 168455, 130, 130, 'Bracelet of Arul Saba (Infinite Moebius - 1/3 - Right)', 151026), (168441, 168441, 165, 165, 'Bracelet of Arul Saba (Infinite Moebius - 1/4 - Left)', 151026), (168456, 168456, 165, 165, 'Bracelet of Arul Saba (Infinite Moebius - 1/4 - Right)', 151026), (168442, 168442, 200, 200, 'Bracelet of Arul Saba (Infinite Moebius - 1/5 - Left)', 151026), (168457, 168457, 200, 200, 'Bracelet of Arul Saba (Infinite Moebius - 1/5 - Right)', 151026), (168443, 168443, 110, 110, 'Bracelet of Arul Saba (Infinite Moebius - 2/2 - Left)', 151023), (168458, 168458, 110, 110, 'Bracelet of Arul Saba (Infinite Moebius - 2/2 - Right)', 151023), (168444, 168444, 130, 130, 'Bracelet of Arul Saba (Infinite Moebius - 2/3 - Left)', 151023), (168459, 168459, 130, 130, 'Bracelet of Arul Saba (Infinite Moebius - 2/3 - Right)', 151023), (168445, 168445, 165, 165, 'Bracelet of Arul Saba (Infinite Moebius - 2/4 - Left)', 151023), (168460, 168460, 165, 165, 'Bracelet of Arul Saba (Infinite Moebius - 2/4 - Right)', 151023), (168446, 168446, 200, 200, 'Bracelet of Arul Saba (Infinite Moebius - 2/5 - Left)', 151023), (168461, 168461, 200, 200, 'Bracelet of Arul Saba (Infinite Moebius - 2/5 - Right)', 151023), (168447, 168447, 130, 130, 'Bracelet of Arul Saba (Infinite Moebius - 3/3 - Left)', 151024), (168462, 168462, 130, 130, 'Bracelet of Arul Saba (Infinite Moebius - 3/3 - Right)', 151024), (168448, 168448, 165, 165, 'Bracelet of Arul Saba (Infinite Moebius - 3/4 - Left)', 151024), (168463, 168463, 165, 165, 'Bracelet of Arul Saba (Infinite Moebius - 3/4 - Right)', 151024), (168449, 168449, 200, 200, 'Bracelet of Arul Saba (Infinite Moebius - 3/5 - Left)', 151024), (168464, 168464, 200, 200, 'Bracelet of Arul Saba (Infinite Moebius - 3/5 - Right)', 151024), (168450, 168450, 165, 165, 'Bracelet of Arul Saba (Infinite Moebius - 4/4 - Left)', 151025), (168465, 168465, 165, 165, 'Bracelet of Arul Saba (Infinite Moebius - 4/4 - Right)', 151025), (168451, 168451, 200, 200, 'Bracelet of Arul Saba (Infinite Moebius - 4/5 - Left)', 151025), (168466, 168466, 200, 200, 'Bracelet of Arul Saba (Infinite Moebius - 4/5 - Right)', 151025), (168452, 168452, 200, 200, 'Bracelet of Arul Saba (Infinite Moebius - 5/5 - Left)', 151022), (168467, 168467, 200, 200, 'Bracelet of Arul Saba (Infinite Moebius - 5/5 - Right)', 151022), (230342, 230342, 80, 80, 'Bracelet of Arul Saba (Insidious Killer - 1/1 - Left)', 151026), (230357, 230357, 80, 80, 'Bracelet of Arul Saba (Insidious Killer - 1/1 - Right)', 151026), (168723, 168723, 80, 80, 'Bracelet of Arul Saba (Jagged Landscape - 1/1 - Left)', 151026), (168738, 168738, 80, 80, 'Bracelet of Arul Saba (Jagged Landscape - 1/1 - Right)', 151026), (168724, 168724, 110, 110, 'Bracelet of Arul Saba (Jagged Landscape - 1/2 - Left)', 151026), (168739, 168739, 110, 110, 'Bracelet of Arul Saba (Jagged Landscape - 1/2 - Right)', 151026), (168725, 168725, 130, 130, 'Bracelet of Arul Saba (Jagged Landscape - 1/3 - Left)', 151026), (168740, 168740, 130, 130, 'Bracelet of Arul Saba (Jagged Landscape - 1/3 - Right)', 151026), (168726, 168726, 165, 165, 'Bracelet of Arul Saba (Jagged Landscape - 1/4 - Left)', 151026), (168741, 168741, 165, 165, 'Bracelet of Arul Saba (Jagged Landscape - 1/4 - Right)', 151026), (168727, 168727, 200, 200, 'Bracelet of Arul Saba (Jagged Landscape - 1/5 - Left)', 151026), (168742, 168742, 200, 200, 'Bracelet of Arul Saba (Jagged Landscape - 1/5 - Right)', 151026), (168728, 168728, 110, 110, 'Bracelet of Arul Saba (Jagged Landscape - 2/2 - Left)', 151023), (168743, 168743, 110, 110, 'Bracelet of Arul Saba (Jagged Landscape - 2/2 - Right)', 151023), (168729, 168729, 130, 130, 'Bracelet of Arul Saba (Jagged Landscape - 2/3 - Left)', 151023), (168744, 168744, 130, 130, 'Bracelet of Arul Saba (Jagged Landscape - 2/3 - Right)', 151023), (168730, 168730, 165, 165, 'Bracelet of Arul Saba (Jagged Landscape - 2/4 - Left)', 151023), (168745, 168745, 165, 165, 'Bracelet of Arul Saba (Jagged Landscape - 2/4 - Right)', 151023), (168731, 168731, 200, 200, 'Bracelet of Arul Saba (Jagged Landscape - 2/5 - Left)', 151023), (168746, 168746, 200, 200, 'Bracelet of Arul Saba (Jagged Landscape - 2/5 - Right)', 151023), (168732, 168732, 130, 130, 'Bracelet of Arul Saba (Jagged Landscape - 3/3 - Left)', 151024), (168747, 168747, 130, 130, 'Bracelet of Arul Saba (Jagged Landscape - 3/3 - Right)', 151024), (168733, 168733, 165, 165, 'Bracelet of Arul Saba (Jagged Landscape - 3/4 - Left)', 151024), (168748, 168748, 165, 165, 'Bracelet of Arul Saba (Jagged Landscape - 3/4 - Right)', 151024), (168734, 168734, 200, 200, 'Bracelet of Arul Saba (Jagged Landscape - 3/5 - Left)', 151024), (168749, 168749, 200, 200, 'Bracelet of Arul Saba (Jagged Landscape - 3/5 - Right)', 151024), (168735, 168735, 165, 165, 'Bracelet of Arul Saba (Jagged Landscape - 4/4 - Left)', 151025), (168750, 168750, 165, 165, 'Bracelet of Arul Saba (Jagged Landscape - 4/4 - Right)', 151025), (168736, 168736, 200, 200, 'Bracelet of Arul Saba (Jagged Landscape - 4/5 - Left)', 151025), (168751, 168751, 200, 200, 'Bracelet of Arul Saba (Jagged Landscape - 4/5 - Right)', 151025), (168737, 168737, 200, 200, 'Bracelet of Arul Saba (Jagged Landscape - 5/5 - Left)', 151022), (168752, 168752, 200, 200, 'Bracelet of Arul Saba (Jagged Landscape - 5/5 - Right)', 151022), (230057, 230057, 80, 80, 'Bracelet of Arul Saba (Novice Brawler - 1/1 - Left)', 151026), (230072, 230072, 80, 80, 'Bracelet of Arul Saba (Novice Brawler - 1/1 - Right)', 151026), (168763, 168763, 80, 80, 'Bracelet of Arul Saba (Rainbow-hued Sky - 1/1 - Left)', 151026), (168778, 168778, 80, 80, 'Bracelet of Arul Saba (Rainbow-hued Sky - 1/1 - Right)', 151026), (168764, 168764, 110, 110, 'Bracelet of Arul Saba (Rainbow-hued Sky - 1/2 - Left)', 151026), (168779, 168779, 110, 110, 'Bracelet of Arul Saba (Rainbow-hued Sky - 1/2 - Right)', 151026), (168765, 168765, 130, 130, 'Bracelet of Arul Saba (Rainbow-hued Sky - 1/3 - Left)', 151026), (168780, 168780, 130, 130, 'Bracelet of Arul Saba (Rainbow-hued Sky - 1/3 - Right)', 151026), (168766, 168766, 165, 165, 'Bracelet of Arul Saba (Rainbow-hued Sky - 1/4 - Left)', 151026), (168781, 168781, 165, 165, 'Bracelet of Arul Saba (Rainbow-hued Sky - 1/4 - Right)', 151026), (168767, 168767, 200, 200, 'Bracelet of Arul Saba (Rainbow-hued Sky - 1/5 - Left)', 151026), (168782, 168782, 200, 200, 'Bracelet of Arul Saba (Rainbow-hued Sky - 1/5 - Right)', 151026), (168768, 168768, 110, 110, 'Bracelet of Arul Saba (Rainbow-hued Sky - 2/2 - Left)', 151023), (168783, 168783, 110, 110, 'Bracelet of Arul Saba (Rainbow-hued Sky - 2/2 - Right)', 151023), (168769, 168769, 130, 130, 'Bracelet of Arul Saba (Rainbow-hued Sky - 2/3 - Left)', 151023), (168784, 168784, 130, 130, 'Bracelet of Arul Saba (Rainbow-hued Sky - 2/3 - Right)', 151023), (168770, 168770, 165, 165, 'Bracelet of Arul Saba (Rainbow-hued Sky - 2/4 - Left)', 151023), (168785, 168785, 165, 165, 'Bracelet of Arul Saba (Rainbow-hued Sky - 2/4 - Right)', 151023), (168771, 168771, 200, 200, 'Bracelet of Arul Saba (Rainbow-hued Sky - 2/5 - Left)', 151023), (168786, 168786, 200, 200, 'Bracelet of Arul Saba (Rainbow-hued Sky - 2/5 - Right)', 151023), (168772, 168772, 130, 130, 'Bracelet of Arul Saba (Rainbow-hued Sky - 3/3 - Left)', 151024), (168787, 168787, 130, 130, 'Bracelet of Arul Saba (Rainbow-hued Sky - 3/3 - Right)', 151024), (168773, 168773, 165, 165, 'Bracelet of Arul Saba (Rainbow-hued Sky - 3/4 - Left)', 151024), (168788, 168788, 165, 165, 'Bracelet of Arul Saba (Rainbow-hued Sky - 3/4 - Right)', 151024), (168774, 168774, 200, 200, 'Bracelet of Arul Saba (Rainbow-hued Sky - 3/5 - Left)', 151024), (168789, 168789, 200, 200, 'Bracelet of Arul Saba (Rainbow-hued Sky - 3/5 - Right)', 151024), (168775, 168775, 165, 165, 'Bracelet of Arul Saba (Rainbow-hued Sky - 4/4 - Left)', 151025), (168790, 168790, 165, 165, 'Bracelet of Arul Saba (Rainbow-hued Sky - 4/4 - Right)', 151025), (168776, 168776, 200, 200, 'Bracelet of Arul Saba (Rainbow-hued Sky - 4/5 - Left)', 151025), (168791, 168791, 200, 200, 'Bracelet of Arul Saba (Rainbow-hued Sky - 4/5 - Right)', 151025), (168777, 168777, 200, 200, 'Bracelet of Arul Saba (Rainbow-hued Sky - 5/5 - Left)', 151022), (168792, 168792, 200, 200, 'Bracelet of Arul Saba (Rainbow-hued Sky - 5/5 - Right)', 151022), (230262, 230262, 80, 80, 'Bracelet of Arul Saba (Scarlet Sky - 1/1 - Left)', 151026), (230277, 230277, 80, 80, 'Bracelet of Arul Saba (Scarlet Sky - 1/1 - Right)', 151026), (168559, 168559, 80, 80, 'Bracelet of Arul Saba (Searing Desert - 1/1 - Left)', 151026), (168574, 168574, 80, 80, 'Bracelet of Arul Saba (Searing Desert - 1/1 - Right)', 151026), (168575, 168575, 110, 110, 'Bracelet of Arul Saba (Searing Desert - 1/2 - Right)', 151026), (168561, 168561, 130, 130, 'Bracelet of Arul Saba (Searing Desert - 1/3 - Left)', 151026), (168576, 168576, 130, 130, 'Bracelet of Arul Saba (Searing Desert - 1/3 - Right)', 151026), (168562, 168562, 165, 165, 'Bracelet of Arul Saba (Searing Desert - 1/4 - Left)', 151026), (168577, 168577, 165, 165, 'Bracelet of Arul Saba (Searing Desert - 1/4 - Right)', 151026), (168563, 168563, 200, 200, 'Bracelet of Arul Saba (Searing Desert - 1/5 - Left)', 151026), (168578, 168578, 200, 200, 'Bracelet of Arul Saba (Searing Desert - 1/5 - Right)', 151026), (168564, 168564, 110, 110, 'Bracelet of Arul Saba (Searing Desert - 2/2 - Left)', 151023), (168579, 168579, 110, 110, 'Bracelet of Arul Saba (Searing Desert - 2/2 - Right)', 151023), (168565, 168565, 130, 130, 'Bracelet of Arul Saba (Searing Desert - 2/3 - Left)', 151023), (168580, 168580, 130, 130, 'Bracelet of Arul Saba (Searing Desert - 2/3 - Right)', 151023), (168566, 168566, 165, 165, 'Bracelet of Arul Saba (Searing Desert - 2/4 - Left)', 151023), (168581, 168581, 165, 165, 'Bracelet of Arul Saba (Searing Desert - 2/4 - Right)', 151023), (168567, 168567, 200, 200, 'Bracelet of Arul Saba (Searing Desert - 2/5 - Left)', 151023), (168582, 168582, 200, 200, 'Bracelet of Arul Saba (Searing Desert - 2/5 - Right)', 151023), (168568, 168568, 130, 130, 'Bracelet of Arul Saba (Searing Desert - 3/3 - Left)', 151024), (168583, 168583, 130, 130, 'Bracelet of Arul Saba (Searing Desert - 3/3 - Right)', 151024), (168569, 168569, 165, 165, 'Bracelet of Arul Saba (Searing Desert - 3/4 - Left)', 151024), (168584, 168584, 165, 165, 'Bracelet of Arul Saba (Searing Desert - 3/4 - Right)', 151024), (168570, 168570, 200, 200, 'Bracelet of Arul Saba (Searing Desert - 3/5 - Left)', 151024), (168585, 168585, 200, 200, 'Bracelet of Arul Saba (Searing Desert - 3/5 - Right)', 151024), (168571, 168571, 165, 165, 'Bracelet of Arul Saba (Searing Desert - 4/4 - Left)', 151025), (168586, 168586, 165, 165, 'Bracelet of Arul Saba (Searing Desert - 4/4 - Right)', 151025), (168572, 168572, 200, 200, 'Bracelet of Arul Saba (Searing Desert - 4/5 - Left)', 151025), (168587, 168587, 200, 200, 'Bracelet of Arul Saba (Searing Desert - 4/5 - Right)', 151025), (168573, 168573, 200, 200, 'Bracelet of Arul Saba (Searing Desert - 5/5 - Left)', 151022), (168588, 168588, 200, 200, 'Bracelet of Arul Saba (Searing Desert - 5/5 - Right)', 151022), (168849, 168849, 80, 80, 'Bracelet of Arul Saba (Silent Killer - 1/1 - Left)', 151026), (168864, 168864, 80, 80, 'Bracelet of Arul Saba (Silent Killer - 1/1 - Right)', 151026), (168850, 168850, 110, 110, 'Bracelet of Arul Saba (Silent Killer - 1/2 - Left)', 151026), (168865, 168865, 110, 110, 'Bracelet of Arul Saba (Silent Killer - 1/2 - Right)', 151026), (168851, 168851, 130, 130, 'Bracelet of Arul Saba (Silent Killer - 1/3 - Left)', 151026), (168866, 168866, 130, 130, 'Bracelet of Arul Saba (Silent Killer - 1/3 - Right)', 151026), (168852, 168852, 165, 165, 'Bracelet of Arul Saba (Silent Killer - 1/4 - Left)', 151026), (168867, 168867, 165, 165, 'Bracelet of Arul Saba (Silent Killer - 1/4 - Right)', 151026), (168853, 168853, 200, 200, 'Bracelet of Arul Saba (Silent Killer - 1/5 - Left)', 151026), (168868, 168868, 200, 200, 'Bracelet of Arul Saba (Silent Killer - 1/5 - Right)', 151026), (168854, 168854, 110, 110, 'Bracelet of Arul Saba (Silent Killer - 2/2 - Left)', 151023), (168869, 168869, 110, 110, 'Bracelet of Arul Saba (Silent Killer - 2/2 - Right)', 151023), (168855, 168855, 130, 130, 'Bracelet of Arul Saba (Silent Killer - 2/3 - Left)', 151023), (168870, 168870, 130, 130, 'Bracelet of Arul Saba (Silent Killer - 2/3 - Right)', 151023), (168856, 168856, 165, 165, 'Bracelet of Arul Saba (Silent Killer - 2/4 - Left)', 151023), (168871, 168871, 165, 165, 'Bracelet of Arul Saba (Silent Killer - 2/4 - Right)', 151023), (168857, 168857, 200, 200, 'Bracelet of Arul Saba (Silent Killer - 2/5 - Left)', 151023), (168872, 168872, 200, 200, 'Bracelet of Arul Saba (Silent Killer - 2/5 - Right)', 151023), (168858, 168858, 130, 130, 'Bracelet of Arul Saba (Silent Killer - 3/3 - Left)', 151024), (168873, 168873, 130, 130, 'Bracelet of Arul Saba (Silent Killer - 3/3 - Right)', 151024), (168859, 168859, 165, 165, 'Bracelet of Arul Saba (Silent Killer - 3/4 - Left)', 151024), (168874, 168874, 165, 165, 'Bracelet of Arul Saba (Silent Killer - 3/4 - Right)', 151024), (168860, 168860, 200, 200, 'Bracelet of Arul Saba (Silent Killer - 3/5 - Left)', 151024), (168875, 168875, 200, 200, 'Bracelet of Arul Saba (Silent Killer - 3/5 - Right)', 151024), (168861, 168861, 165, 165, 'Bracelet of Arul Saba (Silent Killer - 4/4 - Left)', 151025), (168876, 168876, 165, 165, 'Bracelet of Arul Saba (Silent Killer - 4/4 - Right)', 151025), (168862, 168862, 200, 200, 'Bracelet of Arul Saba (Silent Killer - 4/5 - Left)', 151025), (168877, 168877, 200, 200, 'Bracelet of Arul Saba (Silent Killer - 4/5 - Right)', 151025), (168863, 168863, 200, 200, 'Bracelet of Arul Saba (Silent Killer - 5/5 - Left)', 151022), (168878, 168878, 200, 200, 'Bracelet of Arul Saba (Silent Killer - 5/5 - Right)', 151022), (136618, 136619, 1, 200, 'Bracelet of Ka', 84050), (84140, 84188, 50, 200, 'Bracelet of Pacifism', 84058), (269354, 269354, 1, 1, 'Bracelet of Penumbra', 269353), (245597, 245597, 150, 150, 'Bracelet of Theory', 151917), (301679, 301679, 1, 1, 'Bracer of Brother Malevolence', 290847), (251767, 251768, 1, 99, 'Bracer of Focused Concentration', 290718), (251768, 251769, 100, 199, 'Bracer of Focused Concentration', 290718), (251769, 251770, 200, 300, 'Bracer of Focused Concentration', 290718), (84139, 84187, 50, 200, 'Bracer of Growing Flesh', 84047), (223762, 223762, 1, 1, 'Bracer of Jobe', 227249), (251761, 251762, 1, 99, 'Bracer of Killing Intent', 290714), (251762, 251763, 100, 199, 'Bracer of Killing Intent', 290714), (251763, 251764, 200, 300, 'Bracer of Killing Intent', 290714), (245276, 245276, 100, 100, 'Bracer of Recondite Flames', 84058), (84186, 84185, 15, 200, 'Bracer of Reflection - Elements', 84049), (84184, 84183, 15, 200, 'Bracer of Reflection - Energy', 84062), (84182, 84181, 15, 200, 'Bracer of Reflection - Melee', 84051), (84180, 84179, 15, 200, 'Bracer of Reflection - Nano', 84055), (84178, 84177, 15, 200, 'Bracer of Reflection - Physics', 84052), (84176, 84175, 15, 200, 'Bracer of Reflection - Projectile', 84056), (84174, 84173, 15, 200, 'Bracer of Shielding - Elements', 84049), (84172, 84171, 15, 200, 'Bracer of Shielding - Energy', 84062), (84170, 84169, 15, 200, 'Bracer of Shielding - Melee', 84051), (84168, 84167, 15, 200, 'Bracer of Shielding - Nano', 84055), (84166, 84165, 15, 200, 'Bracer of Shielding - Physics', 84052), (84164, 84163, 15, 200, 'Bracer of Shielding - Projectile', 84056), (84162, 84161, 50, 200, 'Bracer of Shrinking Flesh', 84049), (223771, 223771, 1, 1, 'Bracer of Strength', 84047), (251298, 251299, 1, 99, 'Bracer of Striking Force', 290715), (251299, 251755, 100, 199, 'Bracer of Striking Force', 290715), (251755, 251756, 200, 300, 'Bracer of Striking Force', 290715), (245278, 245278, 100, 100, 'Bracer of the Dark Flame', 84053), (225987, 225988, 1, 300, 'Bracer of the First Pact', 151917), (293908, 293908, 1, 1, 'Brad Test Nano', 12228), (211221, 211222, 1, 299, 'Braggadocio', 21144), (165280, 165280, 1, 1, 'Brain Module X349', 144712), (152024, 152024, 44, 44, 'Brainchopper', 114012), (160201, 160201, 200, 200, 'Brand New Bang-Bang Glove', 45784), (82210, 82210, 1, 1, 'Brawl', 82197), (70292, 70293, 1, 500, 'Brawl Item', 13326), (211401, 211402, 1, 500, 'Brawl Item', 13326), (211403, 211404, 1, 500, 'Brawl Item', 13326), (272302, 272303, 1, 300, 'Brawl Weapons Upgrade Kit', 272252), (101611, 101612, 1, 200, 'Brawling Cluster - Bright (Right-Arm)', 35999), (101609, 101610, 1, 200, 'Brawling Cluster - Faded (Waist)', 35998), (101613, 101614, 1, 200, 'Brawling Cluster - Shiny (Left-Arm)', 36000), (165789, 165790, 201, 300, 'Brawling Refined Cluster - Bright (Right-Arm)', 35999), (165787, 165788, 201, 300, 'Brawling Refined Cluster - Faded (Waist)', 35998), (165791, 165792, 201, 300, 'Brawling Refined Cluster - Shiny (Left-Arm)', 36000), (213413, 213413, 1, 1, 'Breach Defenses', 239011), (253063, 253063, 1, 1, 'Break', 255645), (101737, 101738, 1, 200, 'Break & Entry Cluster - Bright (Left-Arm)', 35981), (101735, 101736, 1, 200, 'Break & Entry Cluster - Faded (Chest)', 35980), (101739, 101740, 1, 200, 'Break & Entry Cluster - Shiny (Right-Arm)', 35982), (165915, 165916, 201, 300, 'Break & Entry Refined Cluster - Bright (Left-Arm)', 35981), (165913, 165914, 201, 300, 'Break & Entry Refined Cluster - Faded (Chest)', 35980), (165917, 165918, 201, 300, 'Break & Entry Refined Cluster - Shiny (Right-Arm)', 35982), (165304, 165304, 200, 200, 'Breastplate of Azure Reveries', 31648), (165428, 165428, 200, 200, 'Breastplate of Spiritual Rites', 37545), (165427, 165427, 200, 200, 'Breastplate of Technical Ceremonies', 37545), (235411, 235411, 100, 100, 'Breathing Brain Symbiant, Artillery Unit Aban', 215189), (235856, 235856, 100, 100, 'Breathing Brain Symbiant, Extermination Unit Aban', 215189), (235907, 235907, 100, 100, 'Breathing Chest Symbiant, Extermination Unit Aban', 215181), (235431, 235431, 100, 100, 'Breathing Ear Symbiant, Artillery Unit Aban', 230977), (235653, 235653, 100, 100, 'Breathing Ear Symbiant, Infantry Unit Aban', 230977), (236100, 236100, 100, 100, 'Breathing Ear Symbiant, Support Unit Aban', 230977), (236275, 236275, 100, 100, 'Breathing Feet Symbiant, Support Unit Aban', 215187), (235485, 235485, 100, 100, 'Breathing Left Arm Symbiant, Artillery Unit Aban', 215179), (236373, 236373, 100, 100, 'Breathing Left Arm Symbiant, Control Unit Aban', 215177), (235706, 235706, 100, 100, 'Breathing Left Arm Symbiant, Infantry Unit Aban', 215179), (236153, 236153, 100, 100, 'Breathing Left Arm Symbiant, Support Unit Aban', 215175), (236481, 236481, 100, 100, 'Breathing Left Hand Symbiant, Control Unit Aban', 215172), (236030, 236030, 100, 100, 'Breathing Left Hand Symbiant, Extermination Unit Aban', 215172), (236259, 236259, 100, 100, 'Breathing Left Hand Symbiant, Support Unit Aban', 215171), (235535, 235535, 100, 100, 'Breathing Left Wrist Symbiant, Artillery Unit Aban', 215196), (235755, 235755, 100, 100, 'Breathing Left Wrist Symbiant, Infantry Unit Aban', 215198), (236210, 236210, 100, 100, 'Breathing Left Wrist Symbiant, Support Unit Aban', 215198), (219132, 219132, 100, 100, 'Breathing Ocular Symbiant, Artillery Unit Aban', 230979), (236065, 236065, 100, 100, 'Breathing Ocular Symbiant, Support Unit Aban', 230980), (235450, 235450, 100, 100, 'Breathing Right Arm Symbiant, Artillery Unit Aban', 215176), (236341, 236341, 100, 100, 'Breathing Right Arm Symbiant, Control Unit Aban', 215180), (235669, 235669, 100, 100, 'Breathing Right Arm Symbiant, Infantry Unit Aban', 215180), (236113, 236113, 100, 100, 'Breathing Right Arm Symbiant, Support Unit Aban', 215178), (235553, 235553, 100, 100, 'Breathing Right Hand Symbiant, Artillery Unit Aban', 215173), (236445, 236445, 100, 100, 'Breathing Right Hand Symbiant, Control Unit Aban', 215173), (235994, 235994, 100, 100, 'Breathing Right Hand Symbiant, Extermination Unit Aban', 215173), (235772, 235772, 100, 100, 'Breathing Right Hand Symbiant, Infantry Unit Aban', 215174), (236226, 236226, 100, 100, 'Breathing Right Hand Symbiant, Support Unit Aban', 215174), (235500, 235500, 100, 100, 'Breathing Right Wrist Symbiant, Artillery Unit Aban', 215170), (129071, 129072, 30, 59, 'Breathing Space', 13349), (236014, 236014, 100, 100, 'Breathing Thigh Symbiant, Extermination Unit Aban', 215192), (235788, 235788, 100, 100, 'Breathing Thigh Symbiant, Infantry Unit Aban', 215191), (235736, 235736, 100, 100, 'Breathing Waist Symbiant, Infantry Unit Aban', 215193), (236192, 236192, 100, 100, 'Breathing Waist Symbiant, Support Unit Aban', 215193), (296262, 296262, 1, 1, 'Breed Change: Atrox', 296261), (303365, 303365, 1, 1, 'Breed Change: Atrox', 296261), (296268, 296268, 1, 1, 'Breed Change: Nanomage Female', 296260), (303371, 303371, 1, 1, 'Breed Change: Nanomage Female', 296260), (296266, 296266, 1, 1, 'Breed Change: Nanomage Male', 296259), (303368, 303368, 1, 1, 'Breed Change: Nanomage Male', 296259), (296267, 296267, 1, 1, 'Breed Change: Opifex Female', 296258), (303369, 303369, 1, 1, 'Breed Change: Opifex Female', 296258), (296265, 296265, 1, 1, 'Breed Change: Opifex Male', 296257), (303367, 303367, 1, 1, 'Breed Change: Opifex Male', 296257), (296263, 296263, 1, 1, 'Breed Change: Solitus Female', 296256), (303366, 303366, 1, 1, 'Breed Change: Solitus Female', 296256), (296251, 296251, 1, 1, 'Breed Change: Solitus Male', 296255), (303364, 303364, 1, 1, 'Breed Change: Solitus Male', 296255), (40830, 40830, 1, 1, 'Breeding Tubes', 20399), (205736, 205736, 100, 100, 'Briefcase of Holding', 99662), (253883, 253883, 100, 100, 'Briefcase with Hidden Compartment', 99662), (222956, 222956, 1, 1, 'Briefing', 227247), (215396, 215396, 1, 1, 'Bright', 82197), (70611, 70617, 30, 199, 'Bright, Blue, Cloudless Sky', 43098), (70617, 204328, 200, 300, 'Bright, Blue, Cloudless Sky', 43098), (160183, 160183, 200, 200, 'Brilliant OT 12', 21149), (262212, 262212, 1, 1, 'Brimstone Heart', 262214), (226536, 226536, 1, 1, 'Bring the Pain', 239071), (94004, 94051, 5, 12, 'Broken Armor', 301136), (94488, 94578, 5, 12, 'Broken Armor', 301136), (94766, 94801, 5, 12, 'Broken Armor', 301136), (95177, 128033, 5, 200, 'Broken Armor', 301136), (93650, 93650, 12, 12, 'Broken Armor', 301136), (94002, 94002, 12, 12, 'Broken Armor', 301136), (94486, 94486, 12, 12, 'Broken Armor', 301136), (94765, 94765, 12, 12, 'Broken Armor', 301136), (95175, 95175, 12, 12, 'Broken Armor', 301136), (128034, 128034, 200, 200, 'Broken Armor', 301136), (128035, 128035, 200, 200, 'Broken Armor', 301136), (128036, 128036, 200, 200, 'Broken Armor', 301136), (128037, 128037, 200, 200, 'Broken Armor', 301136), (128038, 128038, 200, 200, 'Broken Armor', 301136), (128039, 128039, 200, 200, 'Broken Armor', 301136), (128040, 128040, 200, 200, 'Broken Armor', 301136), (128347, 128347, 200, 200, 'Broken Armor', 301136), (128348, 128348, 200, 200, 'Broken Armor', 301136), (128349, 128349, 200, 200, 'Broken Armor', 301136), (128350, 270793, 200, 215, 'Broken Armor', 301136), (262505, 262505, 1, 1, 'Broken Chimera Tooth', 262504), (254153, 254154, 1, 300, 'Broken City Building', 297177), (254155, 254156, 1, 300, 'Broken City Building', 297177), (254157, 254158, 1, 300, 'Broken City Building', 297177), (254165, 254166, 1, 300, 'Broken City Building', 297177), (254167, 254168, 1, 300, 'Broken City Building', 297177), (254169, 254170, 1, 300, 'Broken City Building', 297177), (255499, 255500, 1, 300, 'Broken City Building', 297177), (255501, 255502, 1, 300, 'Broken City Building', 297177), (255503, 255504, 1, 300, 'Broken City Building', 297177), (255505, 255506, 1, 300, 'Broken City Building', 297177), (255507, 255508, 1, 300, 'Broken City Building', 297177), (255509, 255510, 1, 300, 'Broken City Building', 297177), (254201, 254202, 101, 300, 'Broken City Building', 297177), (254203, 254204, 101, 300, 'Broken City Building', 297177), (254205, 254206, 101, 300, 'Broken City Building', 297177), (254330, 254330, 5, 5, 'Broken Controller Recompiler Unit', 297741), (254331, 254331, 6, 6, 'Broken Controller Recompiler Unit', 297741), (254332, 254332, 7, 7, 'Broken Controller Recompiler Unit', 297741), (254333, 254333, 8, 8, 'Broken Controller Recompiler Unit', 297741), (254334, 254334, 9, 9, 'Broken Controller Recompiler Unit', 297741), (254335, 254335, 10, 10, 'Broken Controller Recompiler Unit', 297741), (254336, 254336, 11, 11, 'Broken Controller Recompiler Unit', 297741), (254337, 254337, 12, 12, 'Broken Controller Recompiler Unit', 297741), (254338, 254338, 13, 13, 'Broken Controller Recompiler Unit', 297741), (254339, 254339, 14, 14, 'Broken Controller Recompiler Unit', 297741), (254340, 254340, 15, 15, 'Broken Controller Recompiler Unit', 297741), (254341, 254341, 16, 16, 'Broken Controller Recompiler Unit', 297741), (254342, 254342, 17, 17, 'Broken Controller Recompiler Unit', 297741), (254343, 254343, 18, 18, 'Broken Controller Recompiler Unit', 297741), (254344, 254344, 19, 19, 'Broken Controller Recompiler Unit', 297741), (254345, 254345, 20, 20, 'Broken Controller Recompiler Unit', 297741), (254346, 254346, 21, 21, 'Broken Controller Recompiler Unit', 297741), (254347, 254347, 22, 22, 'Broken Controller Recompiler Unit', 297741), (254348, 254349, 23, 23, 'Broken Controller Recompiler Unit', 297741), (254349, 254351, 24, 26, 'Broken Controller Recompiler Unit', 297741), (254352, 254352, 27, 27, 'Broken Controller Recompiler Unit', 297741), (254353, 254353, 28, 28, 'Broken Controller Recompiler Unit', 297741), (254354, 254355, 29, 29, 'Broken Controller Recompiler Unit', 297741), (254355, 254356, 30, 34, 'Broken Controller Recompiler Unit', 297741), (254356, 254357, 35, 39, 'Broken Controller Recompiler Unit', 297741), (254357, 254358, 40, 44, 'Broken Controller Recompiler Unit', 297741), (254358, 254365, 45, 54, 'Broken Controller Recompiler Unit', 297741), (254365, 254360, 55, 59, 'Broken Controller Recompiler Unit', 297741), (254360, 254366, 60, 64, 'Broken Controller Recompiler Unit', 297741), (254366, 254361, 65, 69, 'Broken Controller Recompiler Unit', 297741), (254361, 254362, 70, 79, 'Broken Controller Recompiler Unit', 297741), (254362, 254368, 80, 84, 'Broken Controller Recompiler Unit', 297741), (254368, 254363, 85, 89, 'Broken Controller Recompiler Unit', 297741), (254363, 254369, 90, 95, 'Broken Controller Recompiler Unit', 297741), (257125, 257125, 300, 300, 'Broken Device', 85162), (257203, 257203, 300, 300, 'Broken Device', 85162), (257204, 257204, 300, 300, 'Broken Device', 85162), (285448, 285448, 1, 1, 'Broken Disposable Camera', 156092), (285445, 285445, 200, 200, 'Broken Extreme Low Light Targeting Scope', 99270), (254794, 254794, 100, 100, 'Broken Floorplan', 297178), (254796, 254796, 100, 100, 'Broken Floorplan', 297178), (255479, 255479, 100, 100, 'Broken Floorplan', 297178), (255480, 255480, 100, 100, 'Broken Floorplan', 297178), (255483, 255483, 100, 100, 'Broken Floorplan', 297178), (255484, 255484, 100, 100, 'Broken Floorplan', 297178), (255493, 255493, 100, 100, 'Broken Floorplan', 297178), (255494, 255494, 100, 100, 'Broken Floorplan', 297178), (255495, 255495, 100, 100, 'Broken Floorplan', 297178), (255496, 255496, 100, 100, 'Broken Floorplan', 297178), (255497, 255497, 100, 100, 'Broken Floorplan', 297178), (255498, 255498, 100, 100, 'Broken Floorplan', 297178), (254802, 254802, 101, 101, 'Broken Floorplan', 297178), (254810, 254810, 101, 101, 'Broken Floorplan', 297178), (254814, 254814, 101, 101, 'Broken Floorplan', 297178), (154905, 154906, 1, 199, 'Broken Immortal Katana', 154506), (285446, 285446, 50, 50, 'Broken Instruction Disc (Kamikaze Robot)', 83466), (281940, 281940, 1, 1, 'Broken Jobe Suit Armor', 214750), (251954, 251954, 1, 1, 'Broken Keycard', 43120), (251979, 251979, 1, 1, 'Broken Keycard', 43123), (212907, 212907, 1, 1, 'Broken Machine', 20412), (204176, 204176, 1, 1, 'Broken Piece of an NCU', 13371), (204177, 204177, 1, 1, 'Broken Piece of an NCU', 13371), (251218, 251219, 1, 300, 'Broken Projector Mechanism', 130677), (275861, 275861, 1, 1, 'Broken Rejuvenation Socket - Bottom', 277970), (275860, 275860, 1, 1, 'Broken Rejuvenation Socket - Top', 277971), (300437, 300438, 1, 500, 'Broken Shadow Crystal', 300933), (246242, 246242, 198, 198, 'Broken Sword of Dawn', 246241), (246243, 246243, 199, 199, 'Broken Sword of Dawn', 246241), (246254, 246254, 198, 198, 'Broken Sword of Dusk', 246240), (246255, 246255, 199, 199, 'Broken Sword of Dusk', 246240), (274312, 274312, 1, 1, 'Broken Toy Crate', 20412), (265352, 265352, 1, 1, 'Broken Xan Prayer Urn', 265351), (284280, 284280, 200, 200, 'Broken and Powerless Signal Amplifier', 284331), (284281, 284281, 200, 200, 'Broken and Powerless Signal Amplifier', 284331), (284282, 284282, 200, 200, 'Broken and Powerless Signal Amplifier', 284331), (208101, 208102, 100, 199, 'Bronto Anaesthetic Pistol', 33161), (130623, 130623, 1, 1, 'Bronto Burger', 130567), (258676, 258676, 1, 1, 'Bronto Burger', 130567), (297042, 297042, 1, 1, 'Bronto Burger', 130569), (285504, 285504, 1, 1, 'Bronto Burger Gift Voucher', 154679), (130624, 130624, 1, 1, 'Bronto Cheese', 130568), (162207, 162208, 1, 200, 'Bronto Hide Boots', 13261), (162209, 162210, 1, 200, 'Bronto Hide Gloves', 21871), (162211, 162212, 1, 200, 'Bronto Hide Hood', 22999), (162215, 162216, 1, 200, 'Bronto Hide Legwear', 13289), (162203, 162204, 1, 200, 'Bronto Hide Sleeves', 37423), (162205, 162206, 1, 200, 'Bronto Hide Tunic', 13240), (296226, 296226, 1, 1, 'Bronto Hot Dog', 292560), (296237, 296238, 1, 300, 'Bronto Hot Dog Stand', 292557), (296962, 296962, 1, 1, 'Bronto Mama Helmet', 296882), (165275, 165275, 1, 1, 'Bronto Meat', 144701), (258251, 258251, 1, 1, 'Bronto Sausage Recipe', 156343), (231110, 231111, 40, 59, 'Bronto Vet Lancet', 131263), (231112, 231113, 60, 99, 'Bronto Vet Lancet', 131263), (231114, 231115, 100, 149, 'Bronto Vet Lancet', 131263), (231116, 231117, 150, 199, 'Bronto Vet Lancet', 131263), (165276, 165276, 1, 1, 'Bronto prime rib', 144706), (165278, 165278, 1, 1, 'Bronto rib burger', 130568), (165277, 165277, 1, 1, 'Bronto stew', 99290), (286438, 286438, 1, 1, 'Bronze Chest of the Collector', 286443), (204571, 204571, 1, 1, 'Bronze Ring of the Three', 286790), (157390, 157390, 1, 1, 'Bronze Thirty Bark Beetle Advantage', 81778), (269388, 269388, 1, 1, 'Brooch of Penumbra', 269389), (216373, 216372, 150, 300, 'Brood Champion Gauntlets', 21870), (246223, 246223, 100, 100, 'Brother''s Brass Knuckles', 13280), (31502, 31502, 1, 1, 'Brown Cloak', 22896), (31532, 31532, 1, 1, 'Brown Cloak Hood', 23001), (275197, 275197, 1, 1, 'Brown Islander Shirt', 275184), (31509, 31509, 1, 1, 'Brown Leather Miniskirt with Split', 22902), (245306, 245306, 150, 150, 'Brumal Chest Symbiant of Endurance', 215183), (152021, 152021, 45, 45, 'Brutal Hands', 21979), (281229, 281229, 1, 1, 'Brute''s Cut Gem', 281223), (281213, 281213, 1, 1, 'Brute''s Gem', 281224), (281199, 281199, 1, 1, 'Brute''s Signet of The Apocalypse', 281195), (259904, 259904, 1, 1, 'Bubble Blower', 25800), (155634, 155635, 1, 200, 'Bubbling Essence of Leet Blood', 100331), (155715, 155716, 1, 200, 'Bubbling Nanite Brew', 99234), (155713, 155714, 20, 200, 'Bubbling Nanite Jelly', 156514), (155748, 155748, 1, 1, 'Bubbling Notum Infected Nanite Brew', 100330), (155744, 155744, 1, 1, 'Bubbling Notum Infected Nanite Jelly', 100332), (248838, 248838, 1, 1, 'Buccaneer Boots of The Kindred', 255358), (291590, 291590, 20, 20, 'Bucket Helmet', 291589), (304220, 304220, 1, 1, 'Buckled Boots', 304276), (295131, 295131, 1, 1, 'Bug Destroyer Shirt', 295263), (295260, 295260, 1, 1, 'Bug Exterminator Suit', 295335), (295125, 295125, 1, 1, 'Bug Finder Shirt', 295263), (295130, 295130, 1, 1, 'Bug Stomper Shirt', 295263), (295129, 295129, 1, 1, 'Bug Tracker Shirt', 295263), (285505, 285505, 1, 1, 'Bugged Nano Crystal (Izgimmer''s Fold Time and Space: X, Y, Z)', 220415), (151884, 151884, 1, 1, 'Bughunters Protective Suit', 151873), (281230, 281230, 1, 1, 'Builder''s Cut Gem', 281223), (281214, 281214, 1, 1, 'Builder''s Gem', 281224), (281200, 281200, 1, 1, 'Builder''s Signet of The Apocalypse', 281195), (211215, 211216, 1, 299, 'Bulwark Blaster', 114015), (304488, 304489, 1, 220, 'Bulwark of the Eight', 305041), (268374, 268374, 1, 1, 'Bundle Of Fish', 268375), (269671, 269671, 1, 1, 'Bundle Of Leet Tails', 144710), (155683, 155683, 1, 1, 'Bundle of Nano-Tubes', 156553), (303443, 303443, 1, 1, 'Bundle of Opulence', 99664), (246218, 246218, 100, 100, 'Bundle of Twisting Nerves', 156557), (248419, 248419, 1, 1, 'Bunny Body of Gridstream Productions', 255293), (245656, 245656, 150, 150, 'Bunny Boots', 13270), (248420, 248420, 1, 1, 'Bunny Boots of Gridstream Productions', 255338), (248518, 248518, 1, 1, 'Bunny Longs of Gridstream Productions', 255180), (248418, 248418, 1, 1, 'Bunny Sleeves of Gridstream Productions', 255236), (244718, 244718, 300, 300, 'Burden of Competence', 245030), (290189, 290189, 1, 1, 'Bureaucrat Action Figure', 290571), (96208, 150760, 90, 119, 'Bureaucrat Administrator-Droid Shell', 99971), (150760, 150759, 120, 124, 'Bureaucrat Administrator-Droid Shell', 99971), (150759, 150758, 125, 134, 'Bureaucrat Administrator-Droid Shell', 99971), (150758, 150757, 135, 144, 'Bureaucrat Administrator-Droid Shell', 99971), (150757, 150756, 145, 149, 'Bureaucrat Administrator-Droid Shell', 99971), (150756, 96209, 150, 195, 'Bureaucrat Administrator-Droid Shell', 99971), (96204, 150755, 50, 69, 'Bureaucrat Aide-Droid Shell', 99973), (150755, 150754, 70, 74, 'Bureaucrat Aide-Droid Shell', 99973), (150754, 150753, 75, 79, 'Bureaucrat Aide-Droid Shell', 99973), (150753, 150752, 80, 84, 'Bureaucrat Aide-Droid Shell', 99973), (150752, 150751, 85, 89, 'Bureaucrat Aide-Droid Shell', 99973), (150751, 150750, 90, 94, 'Bureaucrat Aide-Droid Shell', 99973), (150750, 96205, 95, 130, 'Bureaucrat Aide-Droid Shell', 99973), (96202, 150749, 25, 49, 'Bureaucrat Assistant-Droid Shell', 99974), (150749, 150748, 50, 54, 'Bureaucrat Assistant-Droid Shell', 99974), (150748, 150747, 55, 59, 'Bureaucrat Assistant-Droid Shell', 99974), (150747, 150746, 60, 64, 'Bureaucrat Assistant-Droid Shell', 99974), (150746, 150745, 65, 69, 'Bureaucrat Assistant-Droid Shell', 99974), (150745, 96203, 70, 90, 'Bureaucrat Assistant-Droid Shell', 99974), (96200, 150798, 10, 29, 'Bureaucrat Attendant-Droid Shell', 99976), (150798, 150744, 30, 34, 'Bureaucrat Attendant-Droid Shell', 99976), (150744, 150743, 35, 39, 'Bureaucrat Attendant-Droid Shell', 99976), (150743, 150742, 40, 44, 'Bureaucrat Attendant-Droid Shell', 99976), (150742, 96201, 45, 50, 'Bureaucrat Attendant-Droid Shell', 99976), (96212, 150741, 130, 174, 'Bureaucrat Bodyguard Shell', 99981), (150741, 150740, 175, 179, 'Bureaucrat Bodyguard Shell', 99981), (150740, 150739, 180, 184, 'Bureaucrat Bodyguard Shell', 99981), (150739, 150738, 185, 189, 'Bureaucrat Bodyguard Shell', 99981), (150738, 150737, 190, 194, 'Bureaucrat Bodyguard Shell', 99981), (150737, 96213, 195, 200, 'Bureaucrat Bodyguard Shell', 99981), (46344, 46343, 2, 200, 'Bureaucrat Droid Shell', 99970), (239828, 273301, 205, 215, 'Bureaucrat Guardian Shell', 274349), (96198, 150736, 10, 14, 'Bureaucrat Helper-Droid Shell', 99972), (150736, 150735, 15, 19, 'Bureaucrat Helper-Droid Shell', 99972), (150735, 150734, 20, 24, 'Bureaucrat Helper-Droid Shell', 99972), (150734, 150733, 25, 29, 'Bureaucrat Helper-Droid Shell', 99972), (150733, 96199, 30, 50, 'Bureaucrat Helper-Droid Shell', 99972), (96210, 150732, 90, 149, 'Bureaucrat Minion Shell', 99977), (150732, 150731, 150, 154, 'Bureaucrat Minion Shell', 99977), (150731, 150730, 155, 164, 'Bureaucrat Minion Shell', 99977), (150730, 150729, 165, 174, 'Bureaucrat Minion Shell', 99977), (150729, 96211, 175, 195, 'Bureaucrat Minion Shell', 99977), (215236, 215236, 100, 100, 'Bureaucrat NICS', 158233), (270752, 270752, 1, 1, 'Bureaucrat Nanodeck', 270749), (248257, 248257, 1, 1, 'Bureaucrat Nanoprogram Container', 292133), (96206, 150728, 50, 94, 'Bureaucrat Secretary-Droid Shell', 99975), (150728, 150727, 95, 99, 'Bureaucrat Secretary-Droid Shell', 99975), (150727, 150726, 100, 104, 'Bureaucrat Secretary-Droid Shell', 99975), (150726, 150725, 105, 109, 'Bureaucrat Secretary-Droid Shell', 99975), (150725, 150724, 110, 114, 'Bureaucrat Secretary-Droid Shell', 99975), (150724, 150723, 115, 119, 'Bureaucrat Secretary-Droid Shell', 99975), (150723, 96207, 120, 130, 'Bureaucrat Secretary-Droid Shell', 99975), (290084, 290084, 1, 1, 'Bureaucrat Shirt', 287356), (96235, 150722, 1, 4, 'Bureaucrat Worker-Droid Shell', 99970), (150722, 150721, 5, 9, 'Bureaucrat Worker-Droid Shell', 99970), (150721, 150720, 10, 14, 'Bureaucrat Worker-Droid Shell', 99970), (150720, 96197, 15, 25, 'Bureaucrat Worker-Droid Shell', 99970), (43381, 43381, 1, 1, 'Bureaucrat: Startup Crystal - Momentary Daze', 12224), (29625, 29625, 1, 1, 'Bureaucrat: Startup Crystal - Winter''s Bite', 12224), (268307, 268308, 1, 300, 'Bureaucrats'' Ring of Order', 151931), (123942, 123943, 1, 13, 'Burned-Out Galahad Inc T70', 13317), (144154, 144155, 81, 100, 'Burning Copper Katana', 113998), (152723, 152724, 1, 49, 'Burning Crescent - Star Five', 13343), (152725, 152726, 50, 99, 'Burning Cresent - Star Four', 13343), (152731, 152731, 200, 200, 'Burning Cresent - Star One', 13343), (152727, 152728, 100, 149, 'Burning Cresent - Star Three', 13343), (152729, 152730, 150, 199, 'Burning Cresent - Star Two', 13343), (154686, 154686, 1, 1, 'Burning Desire', 37944), (82211, 82211, 1, 1, 'Burst', 82198), (101755, 101756, 1, 200, 'Burst Cluster - Bright (Right-Wrist)', 35984), (101753, 101754, 1, 200, 'Burst Cluster - Faded (Right-Hand)', 35983), (101757, 101758, 1, 200, 'Burst Cluster - Shiny (Right-Arm)', 35985), (165933, 165934, 201, 300, 'Burst Refined Cluster - Bright (Right-Wrist)', 35984), (165931, 165932, 201, 300, 'Burst Refined Cluster - Faded (Right-Hand)', 35983), (165935, 165936, 201, 300, 'Burst Refined Cluster - Shiny (Right-Arm)', 35985), (272298, 272299, 1, 300, 'Burst Weapons Upgrade Kit', 272252), (85368, 85369, 1, 200, 'Burst of Speed Stim', 11749), (230702, 230702, 1, 1, 'Burst of Speed of the Predator', 130862), (200071, 200071, 300, 300, 'Bushin Nippon-Tech Armor', 96106), (200092, 200092, 300, 300, 'Bushin Nippon-Tech Armor Boots', 13275), (200113, 200113, 300, 300, 'Bushin Nippon-Tech Armor Gloves', 13287), (200134, 200134, 300, 300, 'Bushin Nippon-Tech Armor Helmet', 96140), (200155, 200155, 300, 300, 'Bushin Nippon-Tech Armor Pants', 13305), (200176, 200176, 300, 300, 'Bushin Nippon-Tech Armor Sleeves', 13237), (200197, 200197, 300, 300, 'Bushin Nippon-Tech Body Armor', 13258), (275430, 275430, 1, 1, 'Business Card', 154679), (258658, 258658, 220, 220, 'Business Card (Decision by Committee)', 258540), (275442, 275442, 1, 1, 'Business Card with Scribble On the Back', 154679), (130086, 130086, 90, 90, 'Buzzing Magical Stave of Inferno', 136738), (250295, 250295, 1, 1, 'Byom''s Blue Ski Mask', 160562), (164999, 165000, 1, 200, 'CAS Symbiotic Armor Boots', 37596), (165001, 165002, 1, 200, 'CAS Symbiotic Armor Gloves', 21871), (165007, 165008, 1, 200, 'CAS Symbiotic Armor Helmet', 22269), (165003, 165004, 1, 200, 'CAS Symbiotic Armor Pants', 37674), (165005, 165006, 1, 200, 'CAS Symbiotic Armor Sleeves', 22967), (164997, 164998, 1, 200, 'CAS Symbiotic Body Armor', 37545), (242823, 242823, 1, 1, 'COME AND BUY!', 151033), (242824, 242824, 1, 1, 'COME AND BUY!', 154679), (95512, 95513, 40, 199, 'CPU Upgrade', 119138), (276612, 276612, 250, 250, 'Cage: Data Extractor', 156503), (285507, 285507, 1, 1, 'Calia''s Feather', 285807), (234893, 234893, 1, 1, 'Calibrated Palladium Alloy Trace Base', 163353), (236680, 236681, 1, 300, 'Calibration Tuner', 218773), (236678, 236679, 1, 300, 'Calibration Tuner - Set to wrong Offset', 218773), (236146, 236146, 1, 1, 'Caliginous Ring', 84064), (226005, 226005, 1, 1, 'Caliginous Ring for the Artillery Unit', 84059), (226023, 226023, 1, 1, 'Caliginous Ring for the Control Unit', 84059), (226127, 226127, 1, 1, 'Caliginous Ring for the Extermination Unit', 84059), (226126, 226126, 1, 1, 'Caliginous Ring for the Infantry Unit', 84059), (226125, 226125, 1, 1, 'Caliginous Ring for the Support Unit', 84059), (211200, 211201, 1, 299, 'Callous Cudgel', 13333), (155717, 155717, 20, 20, 'Calming Cocktail', 156512), (234924, 234924, 1, 1, 'Cama''s Beating Heart', 290513), (236668, 236668, 1, 1, 'Cama''s Lifeless Heart', 290510), (225380, 225380, 175, 175, 'Cama''s Pearl of the Left Brain', 290782), (225379, 225379, 175, 175, 'Cama''s Pearl of the Right Brain', 290783), (258760, 258760, 1, 1, 'Camera Scrambler', 156546), (248801, 248801, 1, 1, 'Camouflage Boots of 3305 Local', 255355), (250273, 250273, 1, 1, 'Camouflage Hood of 3305 Local', 255405), (248800, 248800, 1, 1, 'Camouflage Jacket of 3305 Local', 255311), (248827, 248827, 1, 1, 'Camouflage Pants of 3305 Local', 255192), (248797, 248797, 1, 1, 'Camouflage Sleeves of 3305 Local', 255255), (244559, 244559, 250, 250, 'Cancer''s Gloves of Automatic Knowledge', 37106), (244560, 244560, 250, 250, 'Cancer''s Ring of Circumspection', 84063), (244543, 244543, 250, 250, 'Cancer''s Silver Boots of the Autodidact', 37127), (244558, 244558, 250, 250, 'Cancer''s Time-Saving Memory', 205514), (151708, 151709, 15, 200, 'Candied Fruit Armband', 37976), (285885, 285885, 200, 200, 'Candle of Avarice', 284331), (285883, 285883, 200, 200, 'Candle of Compassion', 284331), (285880, 285880, 200, 200, 'Candle of Death', 284331), (285881, 285881, 200, 200, 'Candle of Destiny', 284331), (285884, 285884, 200, 200, 'Candle of Fear', 284331), (285887, 285887, 200, 200, 'Candle of Hope', 284331), (285882, 285882, 200, 200, 'Candle of Love', 284331), (285888, 285888, 200, 200, 'Candle of Rage', 284331), (285886, 285886, 200, 200, 'Candle of Will', 284331), (274175, 274175, 1, 1, 'Candy Cane', 274176), (301706, 301706, 1, 1, 'Candy Cane', 274176), (289587, 289587, 1, 1, 'Candy Canes Nanospray', 289585), (151745, 151746, 1, 200, 'Candy Cord', 130732), (288581, 288581, 1, 1, 'Candy Corn Nanospray', 288580), (200433, 200433, 100, 100, 'Candy Lard - Nutritious Cake', 130515), (296545, 296545, 1, 1, 'Candy Shoulderpads', 296539), (253152, 253153, 1, 300, 'Canister of Powder', 290358), (223445, 223446, 1, 300, 'Canister of Pure Liquid Notum', 100305), (245339, 245339, 150, 150, 'Cantankerous''s Headwear', 205768), (263818, 263818, 1, 1, 'Canyon Spider Egg Sac', 37972), (206553, 206553, 15, 15, 'Cap of the Besieger', 205761), (254327, 254359, 2, 50, 'Capable Controller Recompiler Unit', 297738), (274582, 274582, 1, 1, 'Capacious Bookshelves of Conator', 255928), (244564, 244564, 250, 250, 'Capricorn Bracer of Toxication', 205519), (244563, 244563, 250, 250, 'Capricorn''s Guide to Alchemy', 136332), (244561, 244561, 250, 250, 'Capricorn''s Reliable Memory', 205523), (244209, 244209, 225, 225, 'Capsule of Fulminating Novictum', 100308), (151743, 151744, 1, 200, 'Capsule of Thin Blood', 100309), (159080, 159080, 8, 8, 'Captain - Sugarfree Rum', 37934), (296164, 296164, 1, 1, 'Captain Anarchy Costume Suit', 296190), (296163, 296163, 1, 1, 'Captain Anarchy Mask', 296191), (296215, 296215, 1, 1, 'Captain Anarchy Shield', 296189), (296186, 296186, 1, 1, 'Captain Anarchy Shield - Atrox Edition', 296189), (304666, 304667, 1, 200, 'Captain Anarchy Turbo Body Armor', 304786), (304672, 304673, 1, 200, 'Captain Anarchy Turbo Boots', 304781), (304670, 304671, 1, 200, 'Captain Anarchy Turbo Gloves', 304783), (304660, 304661, 1, 200, 'Captain Anarchy Turbo Helmet', 304784), (304662, 304663, 1, 200, 'Captain Anarchy Turbo Jetpack', 304780), (304664, 304665, 1, 200, 'Captain Anarchy Turbo Legwear', 304785), (304668, 304669, 1, 200, 'Captain Anarchy Turbo Sleeves', 304779), (249688, 249688, 1, 1, 'Captain Cloak of the Disciples of Omni-Tek', 255391), (268595, 268595, 1, 1, 'Captain Enno''s Pirate Parrot of Impending Doom', 268596), (289802, 289802, 1, 1, 'Captain Enno''s Pirate Parrot of Impending Doom', 268596), (289813, 289813, 1, 1, 'Captain Enno''s Pirate Parrot of Impending Doom', 268596), (216285, 216285, 1, 1, 'Captain Lotto''s Merit Board', 216287), (168416, 168416, 70, 70, 'Captain of Tir Ring', 290368), (225440, 225440, 1, 1, 'Capture Essence', 239029), (225455, 225455, 1, 1, 'Capture Spirit', 239031), (225439, 225439, 1, 1, 'Capture Vigor', 239027), (225456, 225456, 1, 1, 'Capture Vitality', 239033), (285808, 285808, 1, 1, 'Car Key', 285811), (205957, 205957, 1, 1, 'Carapace of the Infernal Tyrant (Body)', 21977), (205960, 205960, 1, 1, 'Carapace of the Infernal Tyrant (Boots)', 21978), (205959, 205959, 1, 1, 'Carapace of the Infernal Tyrant (Gloves)', 21979), (205961, 205961, 1, 1, 'Carapace of the Infernal Tyrant (Helmet)', 22270), (205958, 205958, 1, 1, 'Carapace of the Infernal Tyrant (Pants)', 21980), (205956, 205956, 1, 1, 'Carapace of the Infernal Tyrant (Sleeves)', 21976), (218471, 218471, 100, 100, 'Carbonized Novictum Stone', 20407), (144770, 144767, 1, 99, 'Carbonrich Ore', 72766), (144767, 144769, 100, 199, 'Carbonrich Ore', 72767), (144769, 144768, 200, 255, 'Carbonrich Ore', 72768), (150274, 150273, 1, 255, 'Carbonrich Rock', 72772), (162431, 162432, 1, 200, 'Carbonum Breastplate', 162421), (162429, 162430, 1, 200, 'Carbonum Plate Arms', 162420), (162435, 162436, 1, 200, 'Carbonum Plate Boots', 162422), (162427, 162428, 1, 200, 'Carbonum Plate Gloves', 162423), (162426, 162437, 1, 200, 'Carbonum Plate Helmet', 10833), (162433, 162434, 1, 200, 'Carbonum Plate Legs', 162425), (23147, 23147, 1, 1, 'Cardboard Box', 154191), (258800, 258800, 1, 1, 'Cardiac Tissue Sample', 144703), (285300, 285300, 1, 1, 'Cargo Box Transformation', 285301), (157277, 157277, 1, 1, 'Carioso Menthol Pseudo-Coffee Block', 156510), (225390, 225390, 175, 175, 'Carlos'' Danger Boots', 13261), (225391, 225391, 175, 175, 'Carlos''s Danger Pants', 13289), (225392, 225392, 175, 175, 'Carlos''s Danger Sleeve', 13222), (275717, 275717, 1, 1, 'Carmine Rune', 227563), (253792, 253792, 1, 1, 'Carnation Boots', 253707), (253795, 253795, 1, 1, 'Carnation Pants', 253727), (253794, 253794, 1, 1, 'Carnation Shirt', 253668), (253793, 253793, 1, 1, 'Carnation Sleeves', 253690), (233103, 233103, 100, 100, 'Carnival Fungus', 161083), (159076, 159076, 4, 4, 'Carpenter - Sugarfree Rum', 37934), (96086, 96087, 50, 200, 'Carrier Craft', 202452), (296605, 296605, 1, 1, 'Carrot', 296617), (122693, 122694, 21, 40, 'Cast-Off Advanced Baseballbat', 13335), (122617, 122618, 21, 40, 'Cast-Off Aero Borealis Corona', 33147), (123630, 123631, 21, 40, 'Cast-Off BBI Sigma III', 13318), (124751, 124752, 21, 40, 'Cast-Off BBI WMMA CAW', 13311), (248423, 248424, 21, 40, 'Cast-Off Bio-Energy Shield', 33152), (122503, 122504, 21, 40, 'Cast-Off Biogun', 38056), (122009, 122010, 21, 40, 'Cast-Off Blackened Blaster', 13321), (139656, 139656, 1, 1, 'Cast-Off Blackened Blaster Construction Manual', 37932), (122085, 122086, 21, 40, 'Cast-Off Blackened Blaster Rifle', 13313), (161213, 161213, 1, 1, 'Cast-Off Blackened Blaster Rifle Construction Manual', 37932), (121990, 121991, 21, 40, 'Cast-Off Blackened Miniblaster', 13316), (139476, 139476, 1, 1, 'Cast-Off Blackened Miniblaster Construction Manual', 37932), (122598, 122599, 21, 40, 'Cast-Off Blackhole Mk IX', 33171), (141198, 141198, 1, 1, 'Cast-Off Blackhole Mk IX Construction Manual', 37932), (122731, 122732, 21, 40, 'Cast-Off Blackjack', 33169), (123116, 123117, 21, 40, 'Cast-Off Bow Split', 21134), (122769, 122770, 21, 40, 'Cast-Off Bow-Blaster', 114013), (121857, 121858, 21, 40, 'Cast-Off Chunkprojector', 21144), (138773, 138773, 1, 1, 'Cast-Off Chunkprojector Construction Manual', 37932), (122066, 122067, 21, 40, 'Cast-Off Clean Slay Axe', 21141), (122142, 122143, 21, 40, 'Cast-Off Cutlass', 13347), (122199, 122200, 41, 80, 'Cast-Off DNA-Locked Blaster Rifle', 13313), (123097, 123098, 21, 40, 'Cast-Off DNA-Targeted Executioner Pistol', 13323), (121800, 121801, 21, 40, 'Cast-Off Disaffiliation Sniper', 21146), (137945, 137945, 1, 1, 'Cast-Off Disaffiliation Sniper Construction Manual', 37932), (248628, 249836, 21, 40, 'Cast-Off Dual Razor Disaffiliation Sniper', 21146), (122123, 122124, 21, 40, 'Cast-Off E-Beamer', 21150), (138307, 138307, 1, 1, 'Cast-Off E-Beamer Construction Manual', 37932), (122465, 122466, 21, 40, 'Cast-Off El Diablo', 31812), (122446, 122447, 21, 40, 'Cast-Off El Dieu', 31809), (122237, 122238, 21, 40, 'Cast-Off Electrical Pacifier', 21150), (123173, 123174, 21, 40, 'Cast-Off Electron-Charged Pistol', 13316), (142609, 142609, 1, 1, 'Cast-Off Electron-Charged Pistol Construction Manual', 37932), (122408, 122409, 21, 40, 'Cast-Off Energy Buckler', 33151), (122370, 122371, 21, 40, 'Cast-Off Energy Shield', 33152), (123307, 123308, 21, 40, 'Cast-Off Enriched Uranium Sprayer', 21148), (122256, 122257, 21, 40, 'Cast-Off Eradicator XCI-52', 13314), (122389, 122390, 21, 40, 'Cast-Off Esoteric Energy Buckler', 33149), (124732, 124733, 21, 40, 'Cast-Off FN P00', 21148), (121914, 121915, 21, 40, 'Cast-Off Flamethrower', 19800), (139282, 139282, 1, 1, 'Cast-Off Flamethrower Construction Manual', 37932), (124876, 124877, 21, 40, 'Cast-Off GE ME30 Mom', 13322), (124969, 124970, 21, 40, 'Cast-Off GE XM-559 Man-Portable Laser', 21151), (121933, 121934, 21, 40, 'Cast-Off Gatling Saw 20k', 84025), (122869, 122870, 21, 40, 'Cast-Off Grenade-Thrower', 13336), (123345, 123346, 21, 40, 'Cast-Off Hand Axe', 13345), (123135, 123136, 33, 50, 'Cast-Off Heavy Gamma-Beamer', 33158), (121895, 121896, 21, 40, 'Cast-Off Heavy Grinner', 21147), (139080, 139080, 1, 1, 'Cast-Off Heavy Grinner Construction Manual', 37932), (122674, 122675, 21, 40, 'Cast-Off Heavy Lead Sprayer', 21148), (124931, 124932, 21, 40, 'Cast-Off IEC Flashpoint Laser Rifle', 33146), (123497, 123498, 21, 40, 'Cast-Off IMI Desert Reet 1000', 13334), (206591, 206592, 21, 40, 'Cast-Off Improved Clean Slay Axe', 21141), (161737, 161738, 21, 40, 'Cast-Off Improved Stun-Baton', 13348), (122484, 122485, 21, 40, 'Cast-Off Ingram Blaster 23-X', 13317), (125007, 125008, 21, 40, 'Cast-Off Joint Clans Exocet II', 85167), (125026, 125027, 21, 40, 'Cast-Off Joint Clans Patriot', 114013), (248560, 248561, 21, 40, 'Cast-Off Kaetans Supernova', 33146), (124645, 124646, 21, 40, 'Cast-Off Kalinkanov ZU-113 Security Weapon', 21148), (122712, 122713, 21, 40, 'Cast-Off Kevlar Bow', 85167), (123535, 123536, 33, 50, 'Cast-Off Khemo-Tech Model 07 (Pocket 20)', 113995), (123516, 123517, 21, 40, 'Cast-Off Khemo-Tech Model 200', 113994), (123554, 123555, 33, 50, 'Cast-Off Knights Inc. Special-Purpose Pistol 2902', 13318), (122983, 122984, 21, 40, 'Cast-Off Kolt 58 Magnum', 13334), (141670, 141670, 1, 1, 'Cast-Off Kolt 58 Magnum Construction Manual', 37932), (122275, 122276, 21, 40, 'Cast-Off Kolt PDW-37', 13315), (140452, 140452, 1, 1, 'Cast-Off Kolt PDW-37 Construction Manual', 37932), (123364, 123365, 21, 40, 'Cast-Off Lead Pipe', 85166), (123154, 123155, 51, 66, 'Cast-Off Light Beamer Pistol', 33157), (142463, 142463, 1, 1, 'Cast-Off Light Beamer Pistol Construction Manual', 37932), (124600, 124601, 21, 30, 'Cast-Off MTI MP200', 21147), (124683, 124684, 21, 40, 'Cast-Off MTI MPK-22 Briefcase Gun', 13311), (124626, 124627, 21, 40, 'Cast-Off MTI UMP22', 114016), (123478, 123479, 21, 40, 'Cast-Off MTI USP 21', 113993), (122945, 122946, 21, 40, 'Cast-Off Mace', 13333), (124664, 124665, 21, 40, 'Cast-Off Malorian Arms M25 Goodgun', 33153), (122427, 122428, 21, 40, 'Cast-Off Mausser Particle Streamer', 31807), (140810, 140810, 1, 1, 'Cast-Off Mausser Particle Streamer Construction Manual', 37932), (123383, 123384, 21, 40, 'Cast-Off Meat-Cleaver', 85169), (123040, 123041, 21, 40, 'Cast-Off Medium Shotgun', 13340), (122180, 122181, 21, 40, 'Cast-Off Megajolt', 13322), (140230, 140230, 1, 1, 'Cast-Off Megajolt Construction Manual', 37932), (248591, 248592, 21, 40, 'Cast-Off Merren Flamethrower', 19800), (122351, 122352, 21, 40, 'Cast-Off Metaphysic Energy Shield', 33150), (121762, 121763, 21, 40, 'Cast-Off Mini Axe', 13345), (143543, 143543, 1, 1, 'Cast-Off Mini Axe Construction Manual', 37932), (123021, 123022, 21, 40, 'Cast-Off Mini-Shotgun', 13341), (142095, 142095, 1, 1, 'Cast-Off Mini-Shotgun Construction Manual', 37932), (122888, 122889, 21, 40, 'Cast-Off Minielectronium', 13323), (122332, 122333, 21, 40, 'Cast-Off Minigrinner', 33156), (140611, 140611, 1, 1, 'Cast-Off Minigrinner Construction Manual', 37932), (123211, 123212, 65, 79, 'Cast-Off Nano-Charged Assault Rifle', 45783), (123231, 123232, 65, 79, 'Cast-Off Nano-Charged Rifle', 45782), (123250, 123251, 74, 87, 'Cast-Off Nano-Charged Stun Glove', 45784), (123421, 123422, 21, 40, 'Cast-Off Netgun', 13322), (124713, 124714, 21, 40, 'Cast-Off Nord Armwerk MAX', 21144), (123269, 123270, 29, 47, 'Cast-Off Nova Flow - Mk IV', 33144), (123573, 123574, 33, 50, 'Cast-Off OT 0220 22mm Combat Magnum', 31808), (124770, 124771, 21, 40, 'Cast-Off OT ARL-10 Micromissile Launcher', 13311), (123459, 123460, 21, 40, 'Cast-Off OT Boomer+.90AE', 113995), (124893, 124894, 21, 40, 'Cast-Off OT M-00 Crystal', 13336), (124800, 124801, 21, 40, 'Cast-Off OT M-110 Renegade SAW', 13336), (124819, 124820, 21, 40, 'Cast-Off OT M-70 HardRain GPMG', 13336), (124562, 124563, 21, 40, 'Cast-Off OT Saladin', 21148), (124581, 124582, 21, 40, 'Cast-Off OT Viper IX', 21148), (122294, 122295, 21, 40, 'Cast-Off Omni-Flamer Mk IV', 33161), (122522, 122523, 21, 40, 'Cast-Off Omni-Flamer Strategic', 33159), (122541, 122542, 21, 40, 'Cast-Off Omni-Pol Standard Flamer', 33160), (125083, 125084, 21, 40, 'Cast-Off Oneida Razor Half-Bow', 114013), (123611, 123612, 21, 40, 'Cast-Off PNG M1007A1 Tactical Revolver', 113997), (124857, 124858, 21, 40, 'Cast-Off Planet Gripon Arms Hard-Boomer', 13311), (121876, 121877, 21, 40, 'Cast-Off Plasmaprojector', 21145), (138944, 138944, 1, 1, 'Cast-Off Plasmaprojector Construction Manual', 37932), (248722, 248723, 21, 40, 'Cast-Off Razorback Disaffiliation Sniper', 21146), (125045, 125046, 21, 40, 'Cast-Off Reet-Tech Junior Urban Crossbow', 114013), (124988, 124989, 21, 40, 'Cast-Off Reet-Tech Stryker X', 85167), (125064, 125065, 21, 40, 'Cast-Off Reet-Tech Venom Compound Bow', 85167), (121743, 121744, 21, 40, 'Cast-Off Right Slice', 21142), (143513, 143513, 1, 1, 'Cast-Off Right Slice Construction Manual', 37932), (123059, 123060, 21, 40, 'Cast-Off Ritual Krys Knife', 13346), (123668, 123669, 21, 40, 'Cast-Off River MV', 29116), (123687, 123688, 21, 40, 'Cast-Off Seburo Bobsons', 13330), (124702, 124703, 16, 19, 'Cast-Off Seburo C-19a', 21149), (123592, 123593, 33, 50, 'Cast-Off Sentinel 20mm Snub Pistol', 31811), (123649, 123650, 21, 40, 'Cast-Off Sentinels ETE Strike Gun', 31810), (248523, 248524, 21, 40, 'Cast-Off Sharky''s Kevlar Bow', 85167), (122655, 122656, 21, 40, 'Cast-Off Silver Miniblaster', 13316), (121952, 121953, 21, 40, 'Cast-Off Slank Chop', 21143), (143577, 143577, 1, 1, 'Cast-Off Slank Chop Construction Manual', 37932), (121838, 121839, 21, 40, 'Cast-Off Sleekblaster', 13329), (138567, 138567, 1, 1, 'Cast-Off Sleekblaster Construction Manual', 37932), (123078, 123079, 21, 40, 'Cast-Off Sleekblaster Major', 13328), (142271, 142271, 1, 1, 'Cast-Off Sleekblaster Major Construction Manual', 37932), (121819, 121820, 21, 40, 'Cast-Off Sleekblaster Minor', 13327), (138176, 138176, 1, 1, 'Cast-Off Sleekblaster Minor Construction Manual', 37932), (123288, 123289, 51, 66, 'Cast-Off Slugger', 33154), (122104, 122105, 21, 40, 'Cast-Off Stabber', 13346), (122313, 122314, 21, 40, 'Cast-Off Stanton Stunner IV', 13313), (122218, 122219, 21, 40, 'Cast-Off Stigma Rifle', 33155), (122850, 122851, 21, 40, 'Cast-Off Stun-Baton', 13348), (121781, 121782, 21, 40, 'Cast-Off Subturbine', 21151), (137695, 137695, 1, 1, 'Cast-Off Subturbine Construction Manual', 37932), (122560, 122561, 21, 40, 'Cast-Off Sunburst Mk III', 33148), (143846, 143847, 21, 40, 'Cast-Off Sunburst Mk IV', 33148), (122579, 122580, 21, 40, 'Cast-Off Supernova Mk VI', 33146), (141004, 141004, 1, 1, 'Cast-Off Supernova Mk VI Construction Manual', 37932), (123192, 123193, 21, 40, 'Cast-Off Suppressor', 31807), (141878, 141878, 1, 1, 'Cast-Off Suppressor Construction Manual', 37932), (124950, 124951, 21, 40, 'Cast-Off Techtronica Neural Disruptor', 21145), (122636, 122637, 21, 40, 'Cast-Off The Original Plasma-Emitter', 33145), (122831, 122832, 21, 40, 'Cast-Off Titanium Crowbar', 33166), (122028, 122029, 21, 40, 'Cast-Off Triplejolt', 13320), (139868, 139868, 1, 1, 'Cast-Off Triplejolt Construction Manual', 37932), (124781, 124782, 21, 40, 'Cast-Off Tsunami Raiden MP-Drum', 13311), (123440, 123441, 21, 40, 'Cast-Off Ultra-Light Missile Pistol Raid 9-X', 13315), (124838, 124839, 21, 40, 'Cast-Off Vektor M-31 Automatic Grenade Launcher', 13336), (124912, 124913, 21, 40, 'Cast-Off Westinghouse IM-50 Plasma Burner', 33146), (248610, 248611, 21, 40, 'Cast-Off Xnemth Plasmaprojector', 21145), (128873, 128874, 21, 40, 'Cast-off Arwen MM-50 Grenade Launcher', 13336), (142855, 142856, 1, 20, 'Cast-off Eye Wind Onehander', 13341), (128760, 128761, 21, 40, 'Cast-off Fabrique Des Armes Bizon 20-19', 21144), (144103, 144104, 21, 30, 'Cast-off Freedom Arms 4200', 113997), (128717, 128718, 21, 40, 'Cast-off Galahad Inc. 077 Personal Weapon', 21148), (128741, 128742, 21, 40, 'Cast-off Galahad Inc. Tactical Machine Pistol 102', 21147), (128657, 128658, 21, 40, 'Cast-off HSR Arms Tech Assault IV', 21148), (128676, 128677, 21, 40, 'Cast-off HSR Arms Tech Assault V', 21148), (128610, 128611, 21, 40, 'Cast-off MTI G-36K', 33155), (128860, 128861, 22, 32, 'Cast-off MTI MPK-22', 33153), (253217, 253218, 30, 59, 'Cast-off Nizno''s Bomb Blaster', 13336), (128841, 128842, 21, 40, 'Cast-off OET Co. MP-21 Tactical Machine Pistol', 21148), (128794, 128795, 21, 40, 'Cast-off OT Cobra M-33', 21148), (128638, 128639, 21, 40, 'Cast-off Seburo C-99a', 21144), (160483, 160484, 11, 20, 'Cast-off Sleekmaster Classic', 13329), (128892, 128893, 21, 40, 'Cast-off Steiner LM-5 Assault Laser', 33171), (128813, 128814, 21, 40, 'Cast-off Zastaba M0-2 Assault Weapon (Zero)', 33153), (230904, 230904, 1, 1, 'Casual', 82197), (214976, 229949, 220, 300, 'Cataclysmic Birth of Novictum', 233132), (225687, 225688, 1, 300, 'Catbik''s Ring of Chemistry', 151931), (293830, 293830, 1, 1, 'Catgirl Companion Remote Control', 293833), (225657, 225658, 1, 300, 'Catila Amano''s Ring of the Mechanic', 151919), (41065, 41065, 1, 1, 'Catsuit Top with a Hole and a Star Print', 41188), (41064, 41064, 1, 1, 'Catsuit Top with a Star Print', 41187), (297191, 297191, 1, 1, 'Cauldron', 293266), (251190, 251190, 1, 1, 'Cause of Anger', 255742), (248342, 248342, 1, 1, 'Caustic Meta Shield', 33150), (218476, 218476, 100, 100, 'Caustic Novictum', 20407), (211212, 211213, 1, 299, 'Cavalier Pistol', 38055), (225675, 225676, 1, 300, 'Cbik''s Ring of the Electric', 151926), (258601, 258601, 200, 200, 'Cease and Desist Order', 156341), (283988, 283988, 1, 1, 'Ceiling Leet', 283974), (266363, 266364, 1, 300, 'Cell Templates', 281970), (266360, 266361, 150, 300, 'Cell Templates', 281970), (275467, 275467, 1, 1, 'Cellular Assembler with Wire Sticking Out', 205511), (211002, 211024, 1, 99, 'Central Controller', 9013), (211024, 211025, 100, 199, 'Central Controller', 9013), (211025, 211156, 200, 349, 'Central Controller', 9013), (211156, 211157, 350, 500, 'Central Controller', 9013), (211026, 211026, 1, 1, 'Central Controller Off', 9013), (305520, 305520, 300, 300, 'Ceremonial Blade', 233353), (206455, 206456, 180, 200, 'Ceremonial Chief''s Headwear', 205760), (206459, 206460, 140, 180, 'Ceremonial Watchman''s Hood', 205773), (248348, 248348, 1, 1, 'Cerset Zapper Rifle', 13321), (165283, 165284, 50, 200, 'Chain of Concealment', 130731), (163546, 163546, 1, 1, 'Chain with eight teeth', 151933), (163549, 163549, 1, 1, 'Chain with eleven teeth', 151933), (163543, 163543, 1, 1, 'Chain with five teeth', 151933), (163542, 163542, 1, 1, 'Chain with four teeth', 151933), (163547, 163547, 1, 1, 'Chain with nine teeth', 151933), (163539, 163539, 1, 1, 'Chain with one tooth', 151933), (163545, 163545, 1, 1, 'Chain with seven teeth', 151933), (163544, 163544, 1, 1, 'Chain with six teeth', 151933), (163548, 163548, 1, 1, 'Chain with ten teeth', 151933), (163541, 163541, 1, 1, 'Chain with three teeth', 151933), (163540, 163540, 1, 1, 'Chain with two teeth', 151933), (122826, 122827, 21, 40, 'Chair', 33164), (234601, 234601, 1, 1, 'Challengers Tooth', 236564), (248983, 248983, 1, 1, 'Champion Body of the Band of Brothers', 255331), (248984, 248984, 1, 1, 'Champion Boots of the Band of Brothers', 255370), (248985, 248985, 1, 1, 'Champion Gloves of the Band of Brothers', 255173), (248986, 248986, 1, 1, 'Champion Pants of the Band of Brothers', 255204), (248982, 248982, 1, 1, 'Champion Sleeves of the Band of Brothers', 255276), (231139, 231139, 300, 300, 'Champion Sword of Sir Tristram', 40781), (227693, 227693, 1, 1, 'Channel Rage', 239205), (248127, 248127, 1, 1, 'Chaos Ritual', 255633), (280726, 280726, 300, 300, 'Chaos of the Xan', 280924), (252462, 252462, 1, 1, 'Chaotic Assumption', 239175), (227788, 227788, 1, 1, 'Chaotic Energy', 239205), (227700, 227700, 1, 1, 'Chaotic Modulation', 239207), (227817, 227818, 1, 500, 'Charge', 239067), (227819, 227820, 1, 500, 'Charge', 239067), (227821, 227822, 1, 500, 'Charge', 239067), (163416, 163417, 1, 200, 'Charge of Repair', 37993), (121692, 121693, 93, 115, 'Charged Bolter M9 42mm', 21149), (137444, 137444, 1, 1, 'Charged Bolter M9 42mm Construction Manual', 37933), (249646, 249646, 100, 100, 'Charged Energy Core', 20405), (231149, 231149, 1, 1, 'Charged Glowing Blueprint Attuned to Lady G.', 227269), (214890, 214890, 1, 1, 'Charged Glowing Blueprint of Apprentice Diviner', 227253), (214885, 214885, 1, 1, 'Charged Glowing Blueprint of Demon', 227258), (284807, 284807, 189, 189, 'Charged Nano Critter (Temporary Charm - Enigma Dog)', 11703), (290663, 290663, 29, 29, 'Charged Nano Critter (Temporary Charm - Zix Spider)', 11703), (95548, 95546, 1, 200, 'Charged Plastic Explosives', 100305), (239762, 239763, 1, 300, 'Charged Plastic Explosives Shadowlands', 100305), (302927, 302927, 300, 300, 'Charged Sigil of Alighieri', 234926), (302929, 302929, 300, 300, 'Charged Sigil of Machiavelli', 235333), (199816, 199816, 285, 285, 'Charger Omni-Internops Armor Boots', 13270), (199837, 199837, 285, 285, 'Charger Omni-Internops Armor Gloves', 13283), (199858, 199858, 285, 285, 'Charger Omni-Internops Armor Helmet', 10840), (199879, 199879, 285, 285, 'Charger Omni-Internops Armor Pants', 13300), (199900, 199900, 285, 285, 'Charger Omni-Internops Armor Sleeves', 13232), (199921, 199921, 285, 285, 'Charger Omni-Internops Body Armor', 13253), (199942, 199942, 285, 285, 'Charger Omni-Internops Elite Armor Boots', 21866), (199963, 199963, 285, 285, 'Charger Omni-Internops Elite Armor Gloves', 21872), (199984, 199984, 285, 285, 'Charger Omni-Internops Elite Armor Helmet', 22269), (200005, 200005, 285, 285, 'Charger Omni-Internops Elite Armor Pants', 21879), (200026, 200026, 285, 285, 'Charger Omni-Internops Elite Armor Sleeves', 21850), (200047, 200047, 285, 285, 'Charger Omni-Internops Elite Body Armor', 19816), (275669, 275669, 1, 1, 'Charlie Moss'' Notebook', 247828), (206136, 206136, 1, 1, 'Charred Abaddon Chassis', 41163), (206137, 206137, 1, 1, 'Charred Abaddon Chassis', 41163), (206138, 206138, 1, 1, 'Charred Abaddon Chassis', 41163), (206139, 206139, 1, 1, 'Charred Abaddon Chassis', 41163), (206140, 206140, 1, 1, 'Charred Abaddon Chassis', 41163), (206141, 206141, 1, 1, 'Charred Abaddon Chassis', 41163), (206142, 206142, 1, 1, 'Charred Abaddon Chassis', 41163), (206143, 206143, 1, 1, 'Charred Abaddon Chassis', 41163), (206144, 206144, 1, 1, 'Charred Abaddon Chassis', 41163), (206145, 206145, 1, 1, 'Charred Abaddon Chassis', 41163), (206146, 206146, 1, 1, 'Charred Abaddon Chassis', 41163), (206147, 206147, 1, 1, 'Charred Abaddon Chassis', 41163), (206148, 206148, 1, 1, 'Charred Abaddon Chassis', 41163), (206149, 206149, 1, 1, 'Charred Abaddon Chassis', 41163), (206150, 206150, 1, 1, 'Charred Abaddon Chassis', 41163), (163568, 163568, 1, 1, 'Charred and torn pieces of an old diary', 136332), (163569, 163569, 1, 1, 'Charred parts and pieces of an old diary', 136332), (163565, 163565, 1, 1, 'Charred pieces of a diary', 136332), (152083, 152084, 1, 30, 'Cheap Abigail', 13314), (153546, 153546, 1, 1, 'Cheap Abigail Construction Manual', 37931), (157657, 157658, 1, 94, 'Cheap Alsaqri Chemical Rifle', 13312), (150223, 150224, 1, 40, 'Cheap Amytlo Executioner', 114001), (153320, 153320, 1, 1, 'Cheap Amytlo Executioner Construction Manual', 37932), (201250, 201251, 1, 29, 'Cheap BBI Gyro Gun', 33153), (160219, 160220, 1, 70, 'Cheap Black Pete', 33170), (208099, 208100, 1, 99, 'Cheap Bronto Anaesthetic Pistol', 33161), (159083, 159087, 1, 79, 'Cheap Collins IX Bio-Energy Rifle', 114015), (163318, 163319, 1, 49, 'Cheap Division 9 Plasmaprojector', 21145), (160127, 160128, 21, 40, 'Cheap Edwards RS Knife', 13349), (160186, 160187, 21, 90, 'Cheap FDA Caterwaul 913', 33155), (152096, 152097, 1, 30, 'Cheap Fiddle Rifle', 13312), (153674, 153674, 1, 1, 'Cheap Fiddle Rifle Construction Manual', 37931), (157662, 157663, 1, 89, 'Cheap HSR Explorer 661', 29116), (160224, 160225, 1, 50, 'Cheap Heavy Chop', 21143), (160134, 160135, 1, 20, 'Cheap Heavy Suppressor', 31811), (157620, 157621, 1, 48, 'Cheap IMI Tellus TT', 13313), (233799, 233800, 1, 99, 'Cheap Inner Circle Strategic Flamer', 33159), (201257, 201258, 1, 109, 'Cheap Joint Clans Scout Pistol', 29116), (160264, 160265, 1, 50, 'Cheap Kaen-Archibald Kolt', 13334), (160145, 160146, 1, 44, 'Cheap Light Suppressor', 31809), (152298, 154071, 1, 60, 'Cheap Luxembourg Inferno Rifle', 13314), (152576, 152576, 1, 1, 'Cheap Luxembourg Inferno Rifle Construction Manual', 37932), (159109, 159110, 1, 50, 'Cheap MTI - Russian Good Day', 21148), (152326, 152327, 1, 20, 'Cheap MTI Aleph 99', 21148), (153825, 153825, 1, 1, 'Cheap MTI Aleph 99 Construction Manual', 37931), (161653, 161654, 81, 100, 'Cheap MTI Defender', 161057), (162775, 162776, 1, 79, 'Cheap MTI Grey', 13317), (200956, 200957, 1, 109, 'Cheap MTI Martins Simple AR01', 13320), (155546, 155546, 35, 35, 'Cheap Mass Relocating Robot', 155928), (157708, 157709, 1, 50, 'Cheap Mausser Chemical Streamer', 33154), (253481, 253481, 1, 1, 'Cheap Metal Chair', 255916), (253482, 253482, 1, 1, 'Cheap Metal Chair with Arm Rests', 255917), (253483, 253483, 1, 1, 'Cheap Metal Table', 255920), (152279, 152280, 1, 20, 'Cheap Michael Patriot Ffi 29A', 21148), (153114, 153114, 1, 1, 'Cheap Michael Patriot Ffi 29A Construction Manual', 37931), (152289, 152290, 101, 120, 'Cheap Michael Patriot Ffi 29B', 21148), (153224, 153224, 1, 1, 'Cheap Michael Patriot Ffi 29B Construction Manual', 136332), (160245, 160246, 1, 20, 'Cheap OT Army Officer Pistol', 113993), (160476, 160477, 1, 98, 'Cheap OT Kerans Automatic Grinner', 21147), (152109, 152110, 1, 30, 'Cheap Pow Bow', 85167), (162928, 162927, 1, 65, 'Cheap River Seasons XP', 29116), (160202, 160203, 1, 98, 'Cheap SSC Byom Blade', 114011), (154070, 150196, 1, 40, 'Cheap Santiago Crossblade', 113983), (152122, 152123, 1, 30, 'Cheap Sapphistic Bow', 85167), (160421, 160421, 100, 100, 'Cheap Search Glasses', 45780), (137183, 137184, 1, 200, 'Cheap Simple Crosshair Target', 130840), (157636, 157637, 1, 50, 'Cheap Soft Pepper Pistol', 113995), (206668, 206669, 1, 99, 'Cheap Uncle Bazzit Diplomatic', 113988), (208083, 208084, 100, 114, 'Cheap Unionist Arbalest', 114013), (161126, 161127, 1, 48, 'Cheap Yatamutchy X-3 Counter-Sniper Rifle', 33155), (152042, 152043, 1, 199, 'Cheeping Flamethrower of Zuwadza', 19800), (245584, 245584, 160, 160, 'Chef Cleaver', 131274), (101329, 101330, 1, 200, 'Chemical AC Cluster - Bright (Right-Arm)', 35987), (101327, 101328, 1, 200, 'Chemical AC Cluster - Faded (Left-Arm)', 35986), (101331, 101332, 1, 200, 'Chemical AC Cluster - Shiny (Waist)', 35988), (165507, 165508, 201, 300, 'Chemical AC Refined Cluster - Bright (Right-Arm)', 35987), (165505, 165506, 201, 300, 'Chemical AC Refined Cluster - Faded (Left-Arm)', 35986), (165509, 165510, 201, 300, 'Chemical AC Refined Cluster - Shiny (Waist)', 35988), (162388, 162388, 10, 10, 'Chemical Adventure Shield', 33149), (158578, 158579, 1, 200, 'Chemical Arrowheads', 159117), (214368, 214368, 1, 1, 'Chemical Blindness', 239039), (269383, 269383, 1, 1, 'Chemical Data Parser', 218767), (158019, 158019, 10, 10, 'Chemical Deflection Shield', 33149), (142910, 142911, 1, 200, 'Chemical Impact Injector', 130815), (245274, 245274, 100, 100, 'Chemical Poison Sample', 100338), (248316, 248316, 1, 1, 'Chemical Tempering Fluid', 100305), (223708, 223709, 20, 80, 'Chemist''s Pad', 156512), (101725, 101726, 1, 200, 'Chemistry Cluster - Bright (Eye)', 36014), (101723, 101724, 1, 200, 'Chemistry Cluster - Faded (Right-Hand)', 36013), (101727, 101728, 1, 200, 'Chemistry Cluster - Shiny (Head)', 36015), (165903, 165904, 201, 300, 'Chemistry Refined Cluster - Bright (Eye)', 36014), (165901, 165902, 201, 300, 'Chemistry Refined Cluster - Faded (Right-Hand)', 36013), (165905, 165906, 201, 300, 'Chemistry Refined Cluster - Shiny (Head)', 36015), (55688, 55677, 1, 200, 'Chemistry Tutoring Device', 300890), (130628, 130628, 1, 1, 'Cherry', 37969), (294731, 294731, 1, 1, 'Cherubic Quiver', 294716), (294892, 294892, 1, 1, 'Cherubic Recurve Bow', 294834), (248997, 248997, 1, 1, 'Chest Tattoo of the Illuminati', 255294), (157391, 157391, 1, 1, 'Chest Two Albatros Advantage', 81769), (122828, 122828, 41, 41, 'Chesterfield Dining Chair', 33164), (289904, 289904, 1, 1, 'Chewed Chewing Gum', 289912), (248890, 248890, 1, 1, 'Cheyenne Leather Boots of the Rising Phoenix', 255362), (248889, 248889, 1, 1, 'Cheyenne Leather Jacket of the Rising Phoenix', 255319), (248891, 248891, 1, 1, 'Cheyenne Leather Pants of the Rising Phoenix', 255198), (248845, 248845, 1, 1, 'Cheyenne Leather Sleeves of the Rising Phoenix', 255262), (258509, 258509, 1, 1, 'Chi Blueprint Pattern of the Projection of Cama', 235325), (258512, 258512, 1, 1, 'Chi Blueprint Pattern of the Projection of Dalja', 235324), (258510, 258510, 1, 1, 'Chi Blueprint Pattern of the Projection of Gilthar', 235325), (258511, 258511, 1, 1, 'Chi Blueprint Pattern of the Projection of Lord Galahad', 235325), (258514, 258514, 1, 1, 'Chi Blueprint Pattern of the Projection of Lord Mordeth', 235324), (258513, 258513, 1, 1, 'Chi Blueprint Pattern of the Projection of Vanya', 235324), (226170, 226171, 1, 500, 'Chi Conductor', 239217), (226172, 226173, 1, 500, 'Chi Conductor', 239217), (226174, 226175, 1, 500, 'Chi Conductor', 239217), (294004, 294004, 275, 275, 'Chi Pattern ''Wistful Apparition''', 294181), (231524, 231524, 125, 125, 'Chi Pattern of ''Adobe Suzerain''', 229137), (234254, 234254, 220, 220, 'Chi Pattern of ''Aesma Daeva''', 229137), (234155, 234155, 255, 255, 'Chi Pattern of ''Agent of Decay''', 229137), (234128, 234128, 255, 255, 'Chi Pattern of ''Agent of Putrefaction''', 229137), (234164, 234164, 220, 220, 'Chi Pattern of ''Ahpta''', 229137), (231965, 231965, 188, 188, 'Chi Pattern of ''Alatyr''', 229137), (234227, 234227, 255, 255, 'Chi Pattern of ''Anansi', 229137), (234366, 234366, 255, 255, 'Chi Pattern of ''Anansi''', 229137), (239609, 239609, 30, 30, 'Chi Pattern of ''Anarir''', 229137), (231857, 231857, 185, 185, 'Chi Pattern of ''Anya''', 229137), (231983, 231983, 210, 210, 'Chi Pattern of ''Aray''', 229137), (234321, 234321, 255, 255, 'Chi Pattern of ''Arch Bigot Aliel''', 229137), (234263, 234263, 220, 220, 'Chi Pattern of ''Arch Bigot Biap''', 229137), (234303, 234303, 255, 255, 'Chi Pattern of ''Arch Bigot Lohel''', 229137), (232639, 232639, 200, 200, 'Chi Pattern of ''Arch Demon of Inferno''', 229137), (231731, 231731, 125, 125, 'Chi Pattern of ''Argil Suzerain''', 229137), (234312, 234312, 255, 255, 'Chi Pattern of ''Asase Ya''', 229137), (231596, 231596, 125, 125, 'Chi Pattern of ''Ashmara Ravin''', 229137), (234283, 234283, 220, 220, 'Chi Pattern of ''Ats', 229137), (231542, 231542, 125, 125, 'Chi Pattern of ''Auger''', 229137), (231551, 231551, 125, 125, 'Chi Pattern of ''Awl''', 229137), (231911, 231911, 185, 185, 'Chi Pattern of ''Bagaspati''', 229137), (231569, 231569, 125, 125, 'Chi Pattern of ''Beatific Spirit''', 229137), (231722, 231722, 125, 125, 'Chi Pattern of ''Bellowing Chimera''', 229137), (231659, 231659, 125, 125, 'Chi Pattern of ''Bhinaji Navi''', 229137), (234209, 234209, 255, 255, 'Chi Pattern of ''Bia''', 229137), (231416, 231416, 80, 80, 'Chi Pattern of ''Black Fang''', 229137), (231623, 231623, 125, 125, 'Chi Pattern of ''Blight''', 229137), (231560, 231560, 125, 125, 'Chi Pattern of ''Borer''', 229137), (231929, 231929, 178, 178, 'Chi Pattern of ''Breaker Teuvo''', 229137), (231902, 231902, 175, 175, 'Chi Pattern of ''Brutal Rafter''', 229137), (231452, 231452, 85, 85, 'Chi Pattern of ''Brutal Soul Dredge''', 229137), (232594, 232594, 200, 200, 'Chi Pattern of ''Cama''', 229137), (239537, 239537, 40, 40, 'Chi Pattern of ''Canceroid Cupid''', 229137), (234330, 234330, 220, 220, 'Chi Pattern of ''Captured Spirit''', 229137), (239555, 239555, 45, 45, 'Chi Pattern of ''Careening Blight''', 229137), (239564, 239564, 45, 45, 'Chi Pattern of ''Careening Death''', 229137), (232127, 232127, 195, 195, 'Chi Pattern of ''Churn''', 229137), (231443, 231443, 85, 85, 'Chi Pattern of ''Circumbendibum''', 229137), (231407, 231407, 80, 80, 'Chi Pattern of ''Circumbendibus''', 229137), (231650, 231650, 125, 125, 'Chi Pattern of ''Contorted Soul Dredge''', 229137), (232567, 232567, 170, 170, 'Chi Pattern of ''Dalja''', 229137), (231821, 231821, 220, 220, 'Chi Pattern of ''Defiler of Scheol''', 229137), (231839, 231839, 220, 220, 'Chi Pattern of ''Destroyer of Scheol''', 229137), (231830, 231830, 220, 220, 'Chi Pattern of ''Devastator of Scheol''', 229137), (231812, 231812, 205, 205, 'Chi Pattern of ''Devourer of Scheol''', 229137), (232585, 242530, 140, 150, 'Chi Pattern of ''Diviner Gil Kald-Thar''', 229137), (239636, 239636, 180, 180, 'Chi Pattern of ''Eidolean Soul Dredge''', 229137), (239682, 239682, 220, 220, 'Chi Pattern of ''Exsequiae''', 229137), (234146, 234146, 220, 220, 'Chi Pattern of ''Fester Leila''', 229137), (231686, 231686, 125, 125, 'Chi Pattern of ''Flinty''', 229137), (239645, 239645, 188, 188, 'Chi Pattern of ''Glitter''', 229137), (231497, 231497, 115, 115, 'Chi Pattern of ''Gracious Soul Dredge''', 229137), (231704, 231704, 125, 125, 'Chi Pattern of ''Gunk''', 229137), (231992, 231992, 210, 210, 'Chi Pattern of ''Hadur''', 229137), (234182, 234182, 220, 220, 'Chi Pattern of ''Haqa''', 229137), (231632, 231632, 125, 125, 'Chi Pattern of ''Hemut''', 229137), (239672, 239672, 220, 220, 'Chi Pattern of ''Ho''', 229137), (231515, 231515, 125, 125, 'Chi Pattern of ''Ignis Fatui''', 229137), (231578, 231578, 125, 125, 'Chi Pattern of ''Ignis Fatuus''', 229137), (232001, 232001, 182, 182, 'Chi Pattern of ''Imk', 229137), (232576, 232576, 160, 160, 'Chi Pattern of ''Infernal Demon''', 229137), (231533, 231533, 125, 125, 'Chi Pattern of ''Iunmin''', 229137), (232010, 232010, 182, 182, 'Chi Pattern of ''Juma''', 229137), (234101, 234101, 220, 220, 'Chi Pattern of ''K', 229137), (232019, 232019, 182, 182, 'Chi Pattern of ''Kaleva''', 229137), (231767, 231767, 125, 125, 'Chi Pattern of ''Kaoline Suzerain''', 229137), (231641, 231641, 125, 125, 'Chi Pattern of ''Khemhet''', 229137), (232630, 232630, 200, 200, 'Chi Pattern of ''Lady Genevra Di’Venague''', 229137), (231605, 231605, 125, 125, 'Chi Pattern of ''Lethargic Spirit''', 229137), (231740, 231740, 125, 125, 'Chi Pattern of ''Loessial Suzerain''', 229137), (239663, 239663, 125, 125, 'Chi Pattern of ''Loltonunon''', 229137), (232073, 232073, 165, 165, 'Chi Pattern of ''Lurky''', 229137), (234218, 234218, 220, 220, 'Chi Pattern of ''Lya''', 229137), (239528, 239528, 40, 40, 'Chi Pattern of ''Malah-Animus''', 229137), (239519, 239519, 40, 40, 'Chi Pattern of ''Malah-At''', 229137), (239510, 239510, 40, 40, 'Chi Pattern of ''Malah-Auris''', 229137), (239573, 239573, 25, 25, 'Chi Pattern of ''Maledicta''', 229137), (231587, 231587, 125, 125, 'Chi Pattern of ''Marem''', 229137), (231668, 231668, 125, 125, 'Chi Pattern of ''Marly Suzerain''', 229137), (239591, 239591, 50, 50, 'Chi Pattern of ''Mawi''', 229137), (231614, 231614, 125, 125, 'Chi Pattern of ''Misery''', 229137), (232091, 232091, 165, 165, 'Chi Pattern of ''Moochy''', 229137), (231884, 231884, 215, 215, 'Chi Pattern of ''Morrow''', 229137), (239483, 239483, 255, 255, 'Chi Pattern of ''Nyame''', 229137), (232540, 232540, 140, 140, 'Chi Pattern of ''Ocra''', 229137), (234375, 234375, 220, 220, 'Chi Pattern of ''Odqan''', 229137), (232028, 232028, 165, 165, 'Chi Pattern of ''Old Salty''', 229137), (231749, 231749, 125, 125, 'Chi Pattern of ''Ooze''', 229137), (234245, 234245, 220, 220, 'Chi Pattern of ''Pazuzu''', 229137), (232118, 232118, 195, 195, 'Chi Pattern of ''Quake''', 229137), (231875, 231875, 215, 215, 'Chi Pattern of ''Quondam''', 229137), (234294, 234294, 235, 235, 'Chi Pattern of ''Rallies Fete''', 229137), (234348, 234348, 255, 255, 'Chi Pattern of ''Razor the Battletoad''', 229137), (242539, 242539, 200, 200, 'Chi Pattern of ''Redeemed Cama''', 229137), (232558, 232558, 170, 170, 'Chi Pattern of ''Redeemed Gilthar''', 229137), (242512, 242512, 170, 170, 'Chi Pattern of ''Redeemed Gilthar''', 229137), (232612, 234432, 200, 255, 'Chi Pattern of ''Redeemed Lord Galahad''', 229137), (242494, 242494, 140, 140, 'Chi Pattern of ''Redeemed Ocra''', 229137), (234119, 234119, 220, 220, 'Chi Pattern of ''Relief Teals''', 229137), (232549, 232549, 140, 140, 'Chi Pattern of ''Roch''', 229137), (239546, 239546, 35, 35, 'Chi Pattern of ''Sabretooth Slicer''', 229137), (231848, 231848, 185, 185, 'Chi Pattern of ''Sampsa''', 229137), (234200, 234200, 220, 220, 'Chi Pattern of ''Sasabonsam''', 229137), (234092, 234092, 220, 220, 'Chi Pattern of ''Sashu''', 229137), (239654, 239654, 125, 125, 'Chi Pattern of ''Satkamear''', 229137), (239600, 239600, 50, 50, 'Chi Pattern of ''Sawi''', 229137), (231425, 231425, 80, 80, 'Chi Pattern of ''Scratch''', 229137), (231434, 231434, 80, 80, 'Chi Pattern of ''Screech''', 229137), (232208, 232100, 192, 195, 'Chi Pattern of ''Shake''', 229137), (232199, 232199, 192, 192, 'Chi Pattern of ''Shiver''', 229137), (234357, 234357, 255, 255, 'Chi Pattern of ''Shullat''', 229137), (231398, 231398, 80, 80, 'Chi Pattern of ''Silver Fang''', 229137), (232082, 232082, 165, 165, 'Chi Pattern of ''Skulky''', 229137), (232064, 232064, 165, 165, 'Chi Pattern of ''Slinky''', 229137), (232037, 232037, 165, 165, 'Chi Pattern of ''Smee''', 229137), (231506, 231506, 115, 115, 'Chi Pattern of ''Spiritless Soul Dredge''', 229137), (231947, 231947, 180, 180, 'Chi Pattern of ''Srahir''', 229137), (234191, 234191, 220, 220, 'Chi Pattern of ''Taille Frees''', 229137), (239700, 239700, 48, 48, 'Chi Pattern of ''Tcheser''', 229137), (239492, 239492, 160, 160, 'Chi Pattern of ''The Abysmal Lord''', 229137), (232190, 232190, 165, 165, 'Chi Pattern of ''The Abyssal Widow''', 229137), (239691, 239691, 120, 120, 'Chi Pattern of ''The Achbile Guardian''', 229137), (232145, 232145, 165, 165, 'Chi Pattern of ''The Adonian Soul Dredge''', 229137), (232172, 232172, 165, 165, 'Chi Pattern of ''The Adonis Spirit Master''', 229137), (231776, 231776, 120, 120, 'Chi Pattern of ''The Archbile Queen''', 229137), (239618, 239618, 185, 185, 'Chi Pattern of ''The Brobdingnagian Mother''', 229137), (232163, 232163, 165, 165, 'Chi Pattern of ''The Dredge Driver''', 229137), (234236, 234236, 220, 220, 'Chi Pattern of ''The Dryad Demigod''', 229137), (231938, 231938, 185, 185, 'Chi Pattern of ''The Dryad Shuffle''', 229137), (231461, 231461, 90, 90, 'Chi Pattern of ''The Dune Suzerain''', 229137), (231488, 231488, 90, 90, 'Chi Pattern of ''The Elysian Soul Dredge''', 229137), (231803, 231803, 120, 120, 'Chi Pattern of ''The Enrapt One''', 229137), (239718, 239718, 210, 210, 'Chi Pattern of ''The Great Ice Golem''', 229137), (234274, 234274, 220, 220, 'Chi Pattern of ''The Indomitable Chimera''', 229137), (242452, 242452, 220, 220, 'Chi Pattern of ''The Infernal Soul Dredge''', 229137), (231866, 231866, 205, 205, 'Chi Pattern of ''The Maggot Lord''', 229137), (234137, 234137, 255, 255, 'Chi Pattern of ''The Mortificator''', 229137), (231794, 231794, 120, 120, 'Chi Pattern of ''The Numb One''', 229137), (231893, 231893, 165, 165, 'Chi Pattern of ''The Penumbral Spirit Hunter''', 229137), (232055, 232055, 172, 172, 'Chi Pattern of ''The Peristaltic Abomination''', 229137), (232046, 232046, 172, 172, 'Chi Pattern of ''The Peristaltic Aversion''', 229137), (232181, 232181, 165, 165, 'Chi Pattern of ''The Proprietrix''', 229137), (231758, 231758, 125, 125, 'Chi Pattern of ''The Scheolian Soul Dredge''', 229137), (239627, 239627, 185, 185, 'Chi Pattern of ''The Stupendous Breeder''', 229137), (231470, 231470, 90, 90, 'Chi Pattern of ''The Talus Suzerain''', 229137), (232154, 232154, 165, 165, 'Chi Pattern of ''The Watchdog''', 229137), (231974, 231974, 202, 202, 'Chi Pattern of ''The Worm King''', 229137), (231713, 231713, 125, 125, 'Chi Pattern of ''Thunderous Chimera''', 229137), (232109, 232109, 195, 195, 'Chi Pattern of ''Toss''', 229137), (231677, 231677, 125, 125, 'Chi Pattern of ''Tough''', 229137), (231479, 231479, 90, 90, 'Chi Pattern of ''Ungulera''', 229137), (242521, 242521, 170, 170, 'Chi Pattern of ''Unredeemed Dalja''', 229137), (232621, 234445, 200, 255, 'Chi Pattern of ''Unredeemed Lord Mordeth''', 229137), (242503, 242503, 140, 140, 'Chi Pattern of ''Unredeemed Roch''', 229137), (242548, 242548, 200, 200, 'Chi Pattern of ''Unredeemed Vanya''', 229137), (239709, 239709, 48, 48, 'Chi Pattern of ''Upenpet''', 229137), (234173, 234173, 220, 220, 'Chi Pattern of ''Ushqa''', 229137), (232603, 232603, 200, 200, 'Chi Pattern of ''Vanya''', 229137), (232136, 232136, 165, 165, 'Chi Pattern of ''Viscious Visitant''', 229137), (231695, 231695, 125, 125, 'Chi Pattern of ''Wacky Suzerain''', 229137), (239582, 239582, 50, 50, 'Chi Pattern of ''Wala''', 229137), (234110, 234110, 220, 220, 'Chi Pattern of ''Waqa''', 229137), (242654, 242654, 135, 135, 'Chi Pattern of ''Weary Empath Min-Ji Liu''', 229137), (231785, 231785, 120, 120, 'Chi Pattern of ''White''', 229137), (234339, 234339, 255, 255, 'Chi Pattern of ''Xark the Battletoad''', 229137), (231956, 231956, 180, 180, 'Chi Pattern of ''Zoetic Oak''', 229137), (207973, 207975, 140, 149, 'Chicanery', 131270), (207976, 207976, 150, 150, 'Chicanery of Independence', 131270), (233224, 233224, 300, 300, 'Chief Bodyguard Blaster', 218701), (245582, 245583, 140, 159, 'Chief Cook Cleaver', 131274), (233229, 233229, 300, 300, 'Chief Investigator Blaster', 218702), (233193, 233193, 300, 300, 'Chief Pilot Blaster', 218700), (154052, 154052, 1, 1, 'Childhood Memory', 154062), (269216, 269216, 1, 1, 'Chilled Chimera Bone', 269285), (270838, 270838, 1, 1, 'Chilled Chimera Bone', 269285), (227119, 227121, 1, 14, 'Chimera Machine Gun', 13322), (227180, 227181, 1, 15, 'Chimera Metal Bone Pipe', 130704), (227135, 227137, 1, 14, 'Chimera Pistol', 13322), (227106, 227107, 1, 14, 'Chimera Rifle', 13314), (227103, 227104, 1, 14, 'Chimera Shotgun', 13314), (216381, 216381, 150, 150, 'Chip of the Eight', 43118), (250152, 250153, 81, 100, 'Chipped Adapting Notum Lever', 33163), (122699, 122700, 81, 100, 'Chipped Advanced Baseballbat', 13335), (249023, 249024, 31, 40, 'Chipped Arctic Metaplast Mace', 13333), (152317, 152318, 71, 90, 'Chipped Assault Partizan', 21140), (123332, 123333, 26, 29, 'Chipped Banjo', 85159), (249003, 249004, 81, 100, 'Chipped Bio-Energy Shield', 33152), (122737, 122738, 81, 100, 'Chipped Blackjack', 33169), (122932, 122933, 81, 100, 'Chipped Blackjohn', 33170), (130205, 130206, 41, 50, 'Chipped Bloodworm Carapace', 85166), (123122, 123123, 81, 100, 'Chipped Bow Split', 21134), (144152, 144153, 61, 80, 'Chipped Burning Copper Katana', 113998), (122072, 122073, 81, 100, 'Chipped Clean Slay Axe', 21141), (122148, 122149, 81, 100, 'Chipped Cutlass', 13347), (130133, 130134, 81, 100, 'Chipped Denunciatory Spear', 33163), (122167, 122168, 81, 100, 'Chipped E-Blade', 13337), (122414, 122415, 81, 100, 'Chipped Energy Buckler', 33151), (122376, 122377, 81, 100, 'Chipped Energy Shield', 33152), (122395, 122395, 81, 81, 'Chipped Esoteric Energy Buckler', 33149), (128832, 128833, 11, 20, 'Chipped Freedom Arms Defender', 33153), (153091, 153091, 200, 200, 'Chipped G-Staff', 136738), (122813, 122814, 81, 100, 'Chipped Gofle-Prod', 33168), (123351, 123352, 81, 100, 'Chipped Hand Axe', 13345), (121730, 121731, 81, 100, 'Chipped Haxor 9922', 13339), (130152, 130153, 81, 100, 'Chipped Hayfork', 85168), (206597, 206598, 81, 100, 'Chipped Improved Clean Slay Axe', 21141), (161743, 161744, 81, 100, 'Chipped Improved Stun-Baton', 13348), (121977, 121978, 81, 100, 'Chipped Katana', 13326), (152394, 152395, 61, 80, 'Chipped Khemo-Tech Platinum Wakisashi', 113983), (123370, 123371, 81, 100, 'Chipped Lead Pipe', 85166), (130222, 130223, 42, 49, 'Chipped Light Spear', 33163), (122053, 122054, 81, 100, 'Chipped Longmoon', 13338), (122951, 122952, 81, 100, 'Chipped Mace', 13333), (123389, 123390, 81, 100, 'Chipped Meat-Cleaver', 85169), (125370, 125371, 81, 100, 'Chipped Merchant Executioner', 114003), (125319, 125320, 81, 100, 'Chipped Merchant Squibber', 114007), (128965, 128966, 81, 100, 'Chipped Merchant Warblade', 114011), (122357, 122358, 81, 100, 'Chipped Metaphysic Energy Shield', 33150), (142842, 142843, 31, 40, 'Chipped Metaplast Mace', 13333), (121768, 121769, 81, 100, 'Chipped Mini Axe', 13345), (143556, 143556, 1, 1, 'Chipped Mini Axe Construction Manual', 37933), (123256, 123257, 116, 129, 'Chipped Nano-Charged Stun Glove', 45784), (130095, 130096, 81, 100, 'Chipped Native Alloy Staff', 136738), (130114, 130115, 81, 100, 'Chipped Notum Lever', 33163), (123008, 123009, 81, 100, 'Chipped Notum Spear', 21135), (143786, 143786, 1, 1, 'Chipped Notum Spear Construction Manual', 37933), (122970, 122971, 81, 100, 'Chipped Notum Staff', 33162), (143690, 143690, 1, 1, 'Chipped Notum Staff Construction Manual', 37933), (130174, 130175, 40, 79, 'Chipped OT Sword', 113987), (128927, 128928, 81, 100, 'Chipped Peasant Executioner', 114001), (128946, 128947, 81, 100, 'Chipped Peasant Warblade', 114009), (121648, 121649, 1, 23, 'Chipped Polearm', 21137), (125408, 125409, 81, 100, 'Chipped Protector Executioner', 114002), (125351, 125352, 81, 100, 'Chipped Protector Squibber', 114006), (129003, 129004, 81, 100, 'Chipped Protector Warblade', 114010), (125389, 125390, 81, 100, 'Chipped Rider Executioner', 114004), (128984, 128985, 81, 100, 'Chipped Rider Warblade', 114012), (121749, 121750, 81, 100, 'Chipped Right Slice', 21142), (123065, 123066, 81, 100, 'Chipped Ritual Krys Knife', 13346), (121958, 121959, 81, 100, 'Chipped Slank Chop', 21143), (143600, 143600, 1, 1, 'Chipped Slank Chop Construction Manual', 37933), (122110, 122111, 81, 100, 'Chipped Stabber', 13346), (122856, 122857, 81, 100, 'Chipped Stun-Baton', 13348), (122913, 122914, 81, 100, 'Chipped Support Beam', 33143), (144069, 144070, 31, 40, 'Chipped Survival Axe', 40782), (249042, 249043, 31, 40, 'Chipped Survival Axe of Genevra', 40782), (122794, 122795, 81, 100, 'Chipped Sword of Sir Galahad', 40781), (144088, 144089, 31, 40, 'Chipped Tanto', 113986), (122837, 122838, 81, 100, 'Chipped Titanium Crowbar', 33166), (122756, 122757, 81, 100, 'Chipped Two-Handed Blackjack', 33170), (249067, 249068, 31, 40, 'Chipped Variable Density Tanto', 113986), (150262, 150263, 81, 100, 'Chipped Wall-Blade', 113983), (121711, 121712, 81, 100, 'Chipped Whings', 21139), (281805, 281805, 1, 1, 'Chips Play Costume', 281755), (207262, 207262, 20, 20, 'Chirop Exoskeleton Wing Mesh', 151028), (246710, 246711, 100, 102, 'Chiroptera', 21142), (246712, 246712, 103, 103, 'Chiroptera', 21142), (246713, 246713, 104, 104, 'Chiroptera', 21142), (200059, 200060, 240, 244, 'Choberigu Nippon-Tech Armor', 96106), (200060, 200061, 245, 250, 'Choberigu Nippon-Tech Armor', 96106), (200080, 200081, 240, 244, 'Choberigu Nippon-Tech Armor Boots', 13275), (200081, 200082, 245, 250, 'Choberigu Nippon-Tech Armor Boots', 13275), (200101, 200102, 240, 244, 'Choberigu Nippon-Tech Armor Gloves', 13287), (200102, 200103, 245, 250, 'Choberigu Nippon-Tech Armor Gloves', 13287), (200122, 200123, 240, 244, 'Choberigu Nippon-Tech Armor Helmet', 96140), (200123, 200124, 245, 250, 'Choberigu Nippon-Tech Armor Helmet', 96140), (200143, 200144, 240, 244, 'Choberigu Nippon-Tech Armor Pants', 13305), (200144, 200145, 245, 250, 'Choberigu Nippon-Tech Armor Pants', 13305), (200164, 200165, 240, 244, 'Choberigu Nippon-Tech Armor Sleeves', 13237), (200165, 200166, 245, 250, 'Choberigu Nippon-Tech Armor Sleeves', 13237), (200185, 200186, 240, 244, 'Choberigu Nippon-Tech Body Armor', 13258), (200186, 200187, 245, 250, 'Choberigu Nippon-Tech Body Armor', 13258), (130583, 130583, 1, 1, 'Chocolate Cake', 130518), (130581, 130581, 1, 1, 'Chocolate Chip Muffin', 130516), (129019, 129020, 51, 100, 'Chocolate Surprise', 85164), (121654, 121655, 70, 92, 'Choppa-Whoppa Polearm', 21137), (218587, 218588, 220, 300, 'Chosen Adventurer Body Armor', 213495), (218589, 218590, 220, 300, 'Chosen Adventurer Boots', 213536), (218583, 218584, 220, 300, 'Chosen Adventurer Gloves', 13281), (218581, 218582, 220, 300, 'Chosen Adventurer Helmet', 213622), (218591, 218592, 220, 300, 'Chosen Adventurer Pants', 213576), (218579, 218580, 220, 300, 'Chosen Adventurer Shoulder Cover', 213664), (218585, 218586, 220, 300, 'Chosen Adventurer Sleeves', 213456), (218577, 218578, 220, 300, 'Chosen Adventurer Support System', 218595), (218545, 218546, 220, 300, 'Chosen Agent Body Armor', 213498), (218547, 218548, 220, 300, 'Chosen Agent Boots', 213539), (218541, 218542, 220, 300, 'Chosen Agent Gloves', 21872), (218539, 218540, 220, 300, 'Chosen Agent Helmet', 213625), (218535, 218536, 220, 300, 'Chosen Agent Manteau', 218533), (218549, 218550, 220, 300, 'Chosen Agent Pants', 213582), (218537, 218538, 220, 300, 'Chosen Agent Shoulderpad', 160889), (218543, 218544, 220, 300, 'Chosen Agent Sleeves', 213459), (219025, 219026, 220, 300, 'Chosen Bureaucrat Boots', 213542), (219049, 219050, 220, 300, 'Chosen Bureaucrat Cloak', 213501), (219037, 219038, 220, 300, 'Chosen Bureaucrat Gloves', 22940), (219041, 219042, 220, 300, 'Chosen Bureaucrat Headgear', 213628), (219023, 219024, 220, 300, 'Chosen Bureaucrat Pants', 213595), (219045, 219046, 220, 300, 'Chosen Bureaucrat Shoulderpad', 160889), (219033, 219034, 220, 300, 'Chosen Bureaucrat Sleeves', 213462), (219029, 219030, 220, 300, 'Chosen Bureaucrat Vest', 213501), (214843, 214844, 220, 300, 'Chosen Doctor Body', 213504), (214841, 214842, 220, 300, 'Chosen Doctor Boots', 213543), (214847, 214848, 220, 300, 'Chosen Doctor Gloves', 13281), (214849, 214850, 220, 300, 'Chosen Doctor Helmet', 213643), (214853, 214854, 220, 300, 'Chosen Doctor Life Support', 217692), (214857, 214858, 220, 300, 'Chosen Doctor Pants', 213586), (214851, 214852, 220, 300, 'Chosen Doctor Shoulderpad', 213659), (214845, 214846, 220, 300, 'Chosen Doctor Sleeves', 213463), (220283, 220284, 220, 300, 'Chosen Enforcer Boots', 213547), (220281, 220282, 220, 300, 'Chosen Enforcer Breastplate', 213507), (220277, 220278, 220, 300, 'Chosen Enforcer Gauntlets', 31654), (220275, 220276, 220, 300, 'Chosen Enforcer Helmet', 213631), (220269, 220270, 220, 300, 'Chosen Enforcer Mantle', 220291), (220295, 220296, 220, 300, 'Chosen Enforcer Mantle', 220291), (220287, 220288, 220, 300, 'Chosen Enforcer Pants', 213589), (220271, 220272, 220, 300, 'Chosen Enforcer Shoulderplate', 213658), (220279, 220280, 220, 300, 'Chosen Enforcer Sleeves', 213467), (218182, 218183, 220, 300, 'Chosen Engineer Body', 213510), (218184, 218185, 220, 300, 'Chosen Engineer Boots', 213550), (218178, 218179, 220, 300, 'Chosen Engineer Gloves', 22940), (218176, 218177, 220, 300, 'Chosen Engineer Helmet', 213634), (218172, 218173, 220, 300, 'Chosen Engineer Helper', 214740), (218186, 218187, 220, 300, 'Chosen Engineer Pants', 213592), (218174, 218175, 220, 300, 'Chosen Engineer Shoulderpad', 160889), (218180, 218181, 220, 300, 'Chosen Engineer Sleeves', 213470), (218283, 218284, 220, 300, 'Chosen Fixer Body Armor', 213513), (218281, 218282, 220, 300, 'Chosen Fixer Boots', 213553), (218287, 218288, 220, 300, 'Chosen Fixer Gloves', 22940), (218289, 218290, 220, 300, 'Chosen Fixer Helmet', 213637), (218293, 218294, 220, 300, 'Chosen Fixer Manteau', 218278), (218279, 218280, 220, 300, 'Chosen Fixer Pants', 213595), (218291, 218292, 220, 300, 'Chosen Fixer Shoulderpad', 160889), (218285, 218286, 220, 300, 'Chosen Fixer Sleeves', 213473), (218006, 218007, 220, 300, 'Chosen Keeper Barbute', 216709), (218012, 218013, 220, 300, 'Chosen Keeper Cuirass', 226609), (218008, 218009, 220, 300, 'Chosen Keeper Gauntlets', 226642), (218016, 218017, 220, 300, 'Chosen Keeper Greaves', 226657), (218004, 218005, 220, 300, 'Chosen Keeper Pauldron', 216714), (218014, 218015, 220, 300, 'Chosen Keeper Sabatons', 226627), (218002, 218003, 220, 300, 'Chosen Keeper Support System', 217816), (218010, 218011, 220, 300, 'Chosen Keeper Vambrace', 226594), (217645, 217646, 220, 300, 'Chosen Martial Artist Body Armor', 213518), (217647, 217648, 220, 300, 'Chosen Martial Artist Boots', 213557), (217635, 217636, 220, 300, 'Chosen Martial Artist Cuirass', 216906), (217641, 217642, 220, 300, 'Chosen Martial Artist Gloves', 31654), (217639, 217640, 220, 300, 'Chosen Martial Artist Helmet', 31736), (217649, 217650, 220, 300, 'Chosen Martial Artist Pants', 213599), (217637, 217638, 220, 300, 'Chosen Martial Artist Shoulderpads', 160889), (217643, 217644, 220, 300, 'Chosen Martial Artist Sleeves', 213475), (222609, 222610, 220, 300, 'Chosen Metaphysicist Body Armor', 213524), (222605, 222606, 220, 300, 'Chosen Metaphysicist Boots', 213564), (222613, 222614, 220, 300, 'Chosen Metaphysicist Gloves', 22940), (222617, 222618, 220, 300, 'Chosen Metaphysicist Headgear', 213646), (222603, 222604, 220, 300, 'Chosen Metaphysicist Pants', 213606), (222621, 222622, 220, 300, 'Chosen Metaphysicist Shoulder Cover', 213663), (222611, 222612, 220, 300, 'Chosen Metaphysicist Sleeves', 213483), (222625, 222626, 220, 300, 'Chosen Metaphysicist Wings', 221530), (214796, 214797, 220, 300, 'Chosen Nano Technician Body Armor', 213527), (214794, 214795, 220, 300, 'Chosen Nano Technician Boots', 213567), (214806, 214807, 220, 300, 'Chosen Nano Technician Cloak', 213609), (214800, 214801, 220, 300, 'Chosen Nano Technician Gloves', 22940), (214802, 214803, 220, 300, 'Chosen Nano Technician Helmet', 213649), (214888, 214889, 220, 300, 'Chosen Nano Technician Pants', 213592), (214804, 214805, 220, 300, 'Chosen Nano Technician Shoulderpad', 160905), (214798, 214799, 220, 300, 'Chosen Nano Technician Sleeves', 213486), (222669, 222670, 220, 300, 'Chosen Shade Arm Tattoos', 226603), (222667, 222668, 220, 300, 'Chosen Shade Body Wraps', 226620), (222663, 222664, 220, 300, 'Chosen Shade Foot Covers', 226632), (222673, 222674, 220, 300, 'Chosen Shade Hand Wraps', 226651), (222677, 222678, 220, 300, 'Chosen Shade Headgear', 214732), (222661, 222662, 220, 300, 'Chosen Shade Leg Covers', 226666), (222681, 222682, 220, 300, 'Chosen Shade Shoulder Tattoos', 226649), (222683, 222684, 220, 300, 'Chosen Shade Support System', 214737), (216926, 216927, 220, 300, 'Chosen Soldier Body Armor', 213530), (216928, 216929, 220, 300, 'Chosen Soldier Boots', 213570), (216916, 216917, 220, 300, 'Chosen Soldier Cuirass', 216906), (216922, 216923, 220, 300, 'Chosen Soldier Gloves', 13279), (216920, 216921, 220, 300, 'Chosen Soldier Helmet', 213652), (216930, 216931, 220, 300, 'Chosen Soldier Pants', 213612), (216918, 216919, 220, 300, 'Chosen Soldier Shoulderplate', 213666), (216924, 216925, 220, 300, 'Chosen Soldier Sleeves', 213487), (230920, 230921, 10, 200, 'Chosen Spirit Tower of Control', 202178), (230924, 230925, 10, 200, 'Chosen Spirit Tower of Control', 202178), (230922, 230923, 201, 300, 'Chosen Spirit Tower of Control', 202166), (230926, 230927, 201, 300, 'Chosen Spirit Tower of Control', 202166), (230928, 230929, 40, 200, 'Chosen Spirit Tower of Illusion', 202150), (230932, 230933, 40, 200, 'Chosen Spirit Tower of Illusion', 202150), (230930, 230931, 201, 300, 'Chosen Spirit Tower of Illusion', 202150), (230934, 230935, 201, 300, 'Chosen Spirit Tower of Illusion', 202150), (230936, 230937, 40, 200, 'Chosen Spirit Tower of Manipulation', 202184), (230940, 230941, 40, 200, 'Chosen Spirit Tower of Manipulation', 202184), (230938, 230939, 201, 300, 'Chosen Spirit Tower of Manipulation', 202184), (230942, 230943, 201, 300, 'Chosen Spirit Tower of Manipulation', 202184), (230944, 230945, 40, 200, 'Chosen Spirit Tower of Power', 202204), (230948, 230949, 40, 200, 'Chosen Spirit Tower of Power', 202204), (230946, 230947, 201, 250, 'Chosen Spirit Tower of Power', 202204), (230950, 230951, 201, 250, 'Chosen Spirit Tower of Power', 202204), (218903, 218904, 220, 300, 'Chosen Trader Body Armor', 213533), (218905, 218906, 220, 300, 'Chosen Trader Boots', 213573), (218899, 218900, 220, 300, 'Chosen Trader Gloves', 22940), (218885, 218886, 220, 300, 'Chosen Trader Helmet', 213655), (218907, 218908, 220, 300, 'Chosen Trader Pants', 213595), (218883, 218884, 220, 300, 'Chosen Trader Shoulderpad', 160889), (218901, 218902, 220, 300, 'Chosen Trader Sleeves', 213492), (218881, 218882, 220, 300, 'Chosen Trader Survival Gear', 218874), (255580, 255580, 1, 1, 'Christian''s Statue of the Wild', 256385), (205842, 205842, 1, 1, 'Christmas Gift', 274182), (205843, 205843, 1, 1, 'Christmas Gift', 274182), (205844, 205844, 1, 1, 'Christmas Gift', 274182), (259916, 259916, 1, 1, 'Christmas Gift', 156098), (259917, 259917, 1, 1, 'Christmas Gift', 156098), (274208, 274208, 1, 1, 'Christmas Gift', 274182), (274209, 274209, 1, 1, 'Christmas Gift', 274183), (274210, 274210, 1, 1, 'Christmas Gift', 274178), (274211, 274211, 1, 1, 'Christmas Gift', 274179), (274212, 274212, 1, 1, 'Christmas Gift', 274180), (274213, 274213, 1, 1, 'Christmas Gift', 274181), (274314, 274314, 1, 1, 'Christmas Gift', 274182), (274315, 274315, 1, 1, 'Christmas Gift', 274183), (274316, 274316, 1, 1, 'Christmas Gift', 274178), (274317, 274317, 1, 1, 'Christmas Gift', 274179), (274318, 274318, 1, 1, 'Christmas Gift', 274180), (274319, 274319, 1, 1, 'Christmas Gift', 274181), (285002, 285002, 1, 1, 'Christmas Gift', 274182), (285003, 285003, 1, 1, 'Christmas Gift', 274183), (285004, 285004, 1, 1, 'Christmas Gift', 205832), (285005, 285005, 1, 1, 'Christmas Gift', 274183), (285006, 285006, 1, 1, 'Christmas Gift', 274183), (285007, 285007, 1, 1, 'Christmas Gift', 274178), (285008, 285008, 1, 1, 'Christmas Gift', 274178), (285009, 285009, 1, 1, 'Christmas Gift', 274178), (285010, 285010, 1, 1, 'Christmas Gift', 274179), (285011, 285011, 1, 1, 'Christmas Gift', 274179), (285012, 285012, 1, 1, 'Christmas Gift', 274179), (285013, 285013, 1, 1, 'Christmas Gift', 274180), (285014, 285014, 1, 1, 'Christmas Gift', 274180), (285015, 285015, 1, 1, 'Christmas Gift', 274180), (285016, 285016, 1, 1, 'Christmas Gift', 274181), (285017, 285017, 1, 1, 'Christmas Gift', 274181), (285018, 285018, 1, 1, 'Christmas Gift', 274181), (285019, 285019, 1, 1, 'Christmas Gift', 274181), (285020, 285020, 1, 1, 'Christmas Gift', 205832), (294532, 294532, 1, 1, 'Christmas Gift', 274181), (294533, 294533, 1, 1, 'Christmas Gift', 274181), (294534, 294534, 1, 1, 'Christmas Gift', 274182), (294535, 294535, 1, 1, 'Christmas Gift', 274183), (294536, 294536, 1, 1, 'Christmas Gift', 274179), (294537, 294537, 1, 1, 'Christmas Gift', 274178), (294538, 294538, 1, 1, 'Christmas Gift', 274180), (294539, 294539, 1, 1, 'Christmas Gift', 274181), (294051, 294051, 1, 1, 'Christmas Icicle Lights', 294365), (284613, 284613, 1, 1, 'Christmas Lights', 284629), (289479, 289479, 1, 1, 'Christmas Poinsettia', 289468), (284659, 284659, 1, 1, 'Christmas Root Beer', 284654), (284708, 284708, 1, 1, 'Christmas Stocking Nanospray', 284711), (245611, 245611, 1, 1, 'Christmas Tree', 245610), (259901, 259901, 1, 1, 'Christmas Tree', 245610), (245649, 245649, 1, 1, 'Christmas Tree Ornaments', 99240), (152347, 152348, 81, 100, 'Chrysantemum Parry Stick', 136738), (232810, 232811, 1, 149, 'Chrysoberyl', 286902), (232811, 232813, 150, 199, 'Chrysoberyl', 286902), (232813, 232814, 200, 249, 'Chrysoberyl', 286902), (232814, 232815, 250, 400, 'Chrysoberyl', 286902), (244206, 244206, 175, 175, 'Chunk of Eternal Ice', 136594), (232679, 232680, 1, 149, 'Chunk of Gold ore', 292646), (232680, 232682, 150, 199, 'Chunk of Gold ore', 292646), (232682, 232683, 200, 249, 'Chunk of Gold ore', 292646), (232683, 232684, 250, 400, 'Chunk of Gold ore', 292646), (232685, 232686, 1, 149, 'Chunk of Iridium ore', 290484), (232686, 232687, 150, 199, 'Chunk of Iridium ore', 290484), (232687, 232688, 200, 249, 'Chunk of Iridium ore', 290484), (232688, 232689, 250, 400, 'Chunk of Iridium ore', 290484), (158892, 158892, 100, 100, 'Chunk of Living Dragon Flesh', 144709), (232674, 232675, 1, 149, 'Chunk of Platinum ore', 290483), (232675, 232676, 150, 199, 'Chunk of Platinum ore', 290483), (232676, 232677, 200, 249, 'Chunk of Platinum ore', 290483), (232677, 232678, 250, 400, 'Chunk of Platinum ore', 290483), (232690, 232691, 1, 149, 'Chunk of Silver ore', 301024), (232691, 232693, 150, 199, 'Chunk of Silver ore', 301024), (232693, 232694, 200, 249, 'Chunk of Silver ore', 301024), (232694, 232695, 250, 400, 'Chunk of Silver ore', 301024), (234603, 234603, 1, 1, 'Chunk of smoking rock', 236565), (121863, 121864, 81, 100, 'Chunkprojector', 21144), (271721, 271722, 1, 300, 'Chunkprojector - 000', 21144), (271725, 271726, 1, 300, 'Chunkprojector - 401', 21144), (271727, 271728, 1, 300, 'Chunkprojector - C01', 21144), (138836, 138836, 1, 1, 'Chunkprojector Construction Manual', 37933), (290916, 290916, 1, 1, 'Cirachi''s T-shirt', 290955), (234875, 234875, 1, 1, 'Circuit board', 119133), (253154, 253155, 1, 300, 'Circular Kyr''Ozch Chip Mold', 130740), (244986, 244987, 100, 200, 'Circus Throwing Dagger', 131275), (275379, 275379, 1, 1, 'Citizenship Companion', 159123), (280642, 280642, 1, 1, 'City Access Card', 99180), (214197, 214198, 100, 199, 'City Blaster', 210173), (214199, 214200, 200, 299, 'City Blaster', 210173), (249767, 249767, 1, 1, 'City Controller', 218750), (286457, 286457, 1, 1, 'City Resettlement Beacon', 159122), (286458, 286458, 1, 1, 'City Resettlement Beacon', 290825), (254278, 254278, 1, 1, 'City Terminal Recharger', 84059), (296318, 296318, 1, 1, 'City Voucher', 297111), (297198, 297198, 1, 1, 'Clan AO Logo Sculpture', 291988), (285303, 285303, 1, 1, 'Clan Access Card', 285302), (285171, 285171, 1, 1, 'Clan Access Hacking Tool', 285170), (285180, 285180, 1, 1, 'Clan Access Hacking Tool with 1 Access Password', 285177), (285183, 285183, 1, 1, 'Clan Access Hacking Tool with 2 Access Passwords', 285178), (285184, 285184, 1, 1, 'Clan Access Hacking Tool with 3 Access Passwords', 285179), (285185, 285185, 1, 1, 'Clan Access Hacking Tool with 4 Access Passwords', 285172), (285186, 285186, 1, 1, 'Clan Access Hacking Tool with 5 Access Passwords', 285173), (285187, 285187, 1, 1, 'Clan Access Hacking Tool with 6 Access Passwords', 285174), (285188, 285188, 1, 1, 'Clan Access Hacking Tool with 7 Access Passwords', 285175), (285189, 285189, 1, 1, 'Clan Access Hacking Tool with 8 Access Passwords', 285176), (296363, 296363, 1, 1, 'Clan Advancement - Basic Board', 296359), (296366, 296366, 4, 4, 'Clan Advancement - Blossoms of Summer', 296362), (296368, 296368, 6, 6, 'Clan Advancement - Dawn', 296357), (296370, 296370, 8, 8, 'Clan Advancement - Double Sun', 296355), (296367, 296367, 5, 5, 'Clan Advancement - Late Night', 296358), (296365, 296365, 3, 3, 'Clan Advancement - Leaves of Spring', 296361), (296369, 296369, 7, 7, 'Clan Advancement - Sunrise', 296356), (296380, 296380, 1, 1, 'Clan Advancement - Triumphant Double Sun', 296354), (296364, 296364, 2, 2, 'Clan Advancement - Twig of Hope', 296360), (285379, 285379, 1, 1, 'Clan Agency Communication Unit', 285191), (248789, 248789, 1, 1, 'Clan Anarchist Syndicate Arm Tattoo', 255251), (285155, 285155, 1, 1, 'Clan Armor', 22990), (259040, 259040, 1, 1, 'Clan Banner', 259041), (158422, 158422, 1, 1, 'Clan Bravery Token', 290822), (296241, 296242, 1, 300, 'Clan City Park', 292041), (285383, 285383, 1, 1, 'Clan Daily Missions', 277964), (256400, 256401, 1, 300, 'Clan ECM Tower', 255792), (263971, 263971, 1, 1, 'Clan EMP Mine', 20412), (263970, 263970, 1, 1, 'Clan Explosive Mine', 20412), (254139, 254140, 1, 300, 'Clan Grid House', 255794), (254175, 254176, 1, 300, 'Clan Guard House', 255795), (263964, 263964, 1, 1, 'Clan Immobilization Mine', 20412), (268739, 268739, 1, 1, 'Clan Issued Identification Chip', 156319), (300620, 300620, 1, 1, 'Clan Jean Trenchcoat', 300623), (254151, 254152, 1, 300, 'Clan Landing Pad', 255797), (81797, 81797, 10, 10, 'Clan Member Chip - Omni Style', 81773), (302912, 302912, 1, 1, 'Clan Merits - Awakened Combat Paragon', 302908), (302914, 302914, 1, 1, 'Clan Merits - Awakened Defense Paragon', 302887), (96358, 96358, 1, 1, 'Clan Merits - Basic Board', 99655), (96353, 96353, 4, 4, 'Clan Merits - Blossoms of Summer', 99245), (96355, 96355, 6, 6, 'Clan Merits - Dawn', 99247), (96357, 96357, 8, 8, 'Clan Merits - Double Sun', 99249), (96354, 96354, 5, 5, 'Clan Merits - Late Night', 99246), (96352, 96352, 3, 3, 'Clan Merits - Leaves of Spring', 99244), (257113, 257113, 1, 1, 'Clan Merits - Paragon', 82981), (96356, 96356, 7, 7, 'Clan Merits - Sunrise', 99248), (262954, 262954, 1, 1, 'Clan Merits - Triumphant Double Sun', 99249), (96351, 96351, 2, 2, 'Clan Merits - Twig of Hope', 99243), (279436, 279436, 1, 1, 'Clan Merits - Xan Combat Paragon', 82976), (279437, 279437, 1, 1, 'Clan Merits - Xan Defense Paragon', 82977), (254181, 254182, 1, 300, 'Clan Mining Operations', 255796), (96350, 96350, 1, 1, 'Clan Mission Token', 293806), (290666, 290666, 1, 1, 'Clan Nano-Spray', 300968), (284701, 284701, 1, 1, 'Clan Notum Bounty', 282143), (254145, 254146, 1, 300, 'Clan Notum Silo', 255801), (285289, 285289, 1, 1, 'Clan Outfit', 37158), (263967, 263967, 1, 1, 'Clan Restraining Mine', 20412), (163640, 163641, 1, 200, 'Clan Ring of Salvation', 286194), (254893, 254894, 1, 300, 'Clan Satellite Uplink', 255798), (287305, 287305, 1, 1, 'Clan Sauna', 287234), (158086, 158086, 1, 1, 'Clan Shoulderpads for the Learned', 31538), (158087, 158087, 1, 1, 'Clan Shoulderpads for the Suspicious', 31538), (158085, 158085, 1, 1, 'Clan Shoulderpads for the Veracious', 31538), (254187, 254188, 1, 300, 'Clan Sidewalk Cafe', 255791), (254193, 254194, 1, 300, 'Clan Sky Bar', 255800), (40833, 40833, 1, 1, 'Clan Storage Crystal', 20412), (254163, 254164, 1, 300, 'Clan Swimming Pool', 255802), (275221, 275221, 1, 1, 'Clan Tattoo', 275222), (296418, 296419, 1, 200, 'Clan Tax Refund Office', 296434), (300617, 300617, 1, 1, 'Clan Trenchcoat', 300621), (208313, 208313, 50, 50, 'Clanalizer', 301021), (130588, 130588, 1, 1, 'Clandestine Tomb Fresh Water', 37936), (248899, 248899, 1, 1, 'Clanner''s Leather Boots of The Concillium', 255339), (248900, 248900, 1, 1, 'Clanner''s Leather Gloves of Analog Myth', 255375), (295853, 295853, 1, 1, 'Clans', 277964), (156346, 156346, 1, 1, 'Clans Multi-Form', 156342), (161966, 161966, 200, 200, 'Classic Bau Cyber Armor Boots', 22878), (162009, 162010, 200, 209, 'Classic Bau Cyber Armor Helmet', 31738), (162010, 162011, 210, 220, 'Classic Bau Cyber Armor Helmet', 31738), (268738, 268738, 1, 1, 'Classified Documents', 163065), (271159, 271160, 1, 300, 'Clean Slay Axe - 000', 21141), (271161, 271162, 1, 300, 'Clean Slay Axe - 010', 21141), (271163, 271164, 1, 300, 'Clean Slay Axe - 050', 21141), (271165, 271166, 1, 300, 'Clean Slay Axe - 070', 21141), (271167, 271168, 1, 300, 'Clean Slay Axe - 870', 21141), (303204, 303204, 1, 1, 'Cleanup', 273626), (252344, 252345, 1, 500, 'Clearshot', 255634), (252346, 252347, 1, 500, 'Clearshot', 255634), (252349, 252350, 1, 500, 'Clearshot', 255634), (252355, 252355, 1, 1, 'Clearsight', 255638), (226032, 226033, 1, 500, 'Cleave', 239097), (226034, 226035, 1, 500, 'Cleave', 239097), (226036, 226037, 1, 500, 'Cleave', 239097), (248956, 248956, 1, 1, 'Clerk Shirt of Omni-Tek Wolf Pack', 255325), (256389, 256389, 1, 1, 'Clinique Plastique', 136596), (272308, 272309, 1, 300, 'Clip Weapons Upgrade Kit', 272252), (248196, 248196, 1, 1, 'Clipfever', 255641), (277478, 277478, 198, 198, 'Cloak of the Harvester', 154554), (274697, 274697, 100, 100, 'Cloak of the Reanimated Gladiator (1/5)', 274691), (274699, 274699, 100, 100, 'Cloak of the Reanimated Gladiator (2/5)', 274691), (274700, 274700, 100, 100, 'Cloak of the Reanimated Gladiator (3/5)', 274691), (274701, 274701, 100, 100, 'Cloak of the Reanimated Gladiator (4/5)', 274691), (274702, 274702, 100, 100, 'Cloak of the Reanimated Gladiator (5/5)', 274691), (274703, 274703, 100, 100, 'Cloak of the Reanimated Healer (1/5)', 274689), (274704, 274704, 100, 100, 'Cloak of the Reanimated Healer (2/5)', 274689), (274705, 274705, 100, 100, 'Cloak of the Reanimated Healer (3/5)', 274689), (274706, 274706, 100, 100, 'Cloak of the Reanimated Healer (4/5)', 274689), (274707, 274707, 100, 100, 'Cloak of the Reanimated Healer (5/5)', 274689), (274713, 274713, 100, 100, 'Cloak of the Reanimated Illusionist (1/5)', 274692), (274714, 274714, 100, 100, 'Cloak of the Reanimated Illusionist (2/5)', 274692), (275139, 275139, 100, 100, 'Cloak of the Reanimated Illusionist (3/5)', 274692), (274716, 274716, 100, 100, 'Cloak of the Reanimated Illusionist (4/5)', 274692), (274717, 274717, 100, 100, 'Cloak of the Reanimated Illusionist (5/5)', 274692), (274718, 274718, 100, 100, 'Cloak of the Reanimated Jester (1/5)', 274687), (274719, 274719, 100, 100, 'Cloak of the Reanimated Jester (2/5)', 274687), (274720, 274720, 100, 100, 'Cloak of the Reanimated Jester (3/5)', 274687), (274721, 274721, 100, 100, 'Cloak of the Reanimated Jester (4/5)', 274687), (274722, 274722, 100, 100, 'Cloak of the Reanimated Jester (5/5)', 274687), (274669, 274669, 100, 100, 'Cloak of the Reanimated Ranger (1/5)', 274690), (274693, 274693, 100, 100, 'Cloak of the Reanimated Ranger (2/5)', 274690), (274694, 274694, 100, 100, 'Cloak of the Reanimated Ranger (3/5)', 274690), (274695, 274695, 100, 100, 'Cloak of the Reanimated Ranger (4/5)', 274690), (274696, 274696, 100, 100, 'Cloak of the Reanimated Ranger (5/5)', 274690), (274708, 274708, 100, 100, 'Cloak of the Reanimated Summoner (1/5)', 274688), (274709, 274709, 100, 100, 'Cloak of the Reanimated Summoner (2/5)', 274688), (274710, 274710, 100, 100, 'Cloak of the Reanimated Summoner (3/5)', 274688), (274711, 274711, 100, 100, 'Cloak of the Reanimated Summoner (4/5)', 274688), (274712, 274712, 100, 100, 'Cloak of the Reanimated Summoner (5/5)', 274688), (245135, 245135, 100, 100, 'Cloak of the Revoked', 22896), (158788, 158788, 1, 1, 'Cloak of the Wandering Knight', 22891), (84160, 84159, 30, 200, 'Cloaking Device', 12703), (119604, 119604, 1, 1, 'Clock Radio', 119179), (248144, 248144, 1, 1, 'Close Call', 255666), (248145, 248145, 1, 1, 'Close Call', 255666), (225745, 225746, 1, 300, 'Close Combat Fighter''s Manual of Control', 205502), (225743, 225744, 1, 300, 'Close Combat Fighter''s Manual of Focus', 205502), (225739, 225740, 1, 300, 'Close Combat Fighter''s Manual of Force', 205502), (225737, 225738, 1, 300, 'Close Combat Fighter''s Manual of Skill', 205502), (225741, 225742, 1, 300, 'Close Combat Fighter''s Manual of Speed', 205502), (41058, 41058, 1, 1, 'Closed Top with a Zebra Print', 37148), (275624, 275624, 1, 1, 'Clot of Alien Blood', 275962), (234903, 234903, 1, 1, 'Clot of Blood From a Fiery Imp', 100326), (202534, 202534, 160, 160, 'Cloud of Infuriated Nanobots', 300991), (202536, 202537, 1, 300, 'Cloud of Polychromic Nanobots', 203581), (215397, 215397, 1, 1, 'Cloudless', 82197), (248746, 248746, 1, 1, 'Clown Boots of The League of Fabulous Ninjas', 255341), (248748, 248748, 1, 1, 'Clown Gloves of The League of Fabulous Ninjas', 255165), (248747, 248747, 1, 1, 'Clown Pants of The League of Fabulous Ninjas', 255181), (248563, 248563, 1, 1, 'Clown Sleeves of The League of Fabulous Ninjas', 255240), (248745, 248745, 1, 1, 'Clown Vest of The League of Fabulous Ninjas', 255298), (130605, 130605, 1, 1, 'Club-Beer Can', 37951), (158951, 158952, 1, 199, 'Cluster Bullets', 26685), (158952, 300944, 200, 300, 'Cluster Bullets', 26685), (262350, 262350, 1, 1, 'Coal Lizard Skin', 161081), (280584, 280584, 1, 1, 'Cobalt Blue Notum Crystal', 72771), (163722, 163723, 1, 200, 'Cobalt Mask of Mourning', 31736), (246088, 246088, 250, 250, 'Codex Clavis', 136332), (269827, 269827, 250, 250, 'Codex Divello', 269476), (295639, 295639, 1, 1, 'Codex of Galahad', 233133), (295644, 295644, 1, 1, 'Codex of Mordeth', 233133), (253186, 253187, 1, 200, 'Codex of the Insulting Emerto', 131266), (236313, 236313, 270, 270, 'Cognizant Brain Symbiant, Control Unit Aban', 215189), (235865, 235865, 270, 270, 'Cognizant Brain Symbiant, Extermination Unit Aban', 215189), (236364, 236364, 270, 270, 'Cognizant Chest Symbiant, Control Unit Aban', 215183), (235695, 235695, 270, 270, 'Cognizant Chest Symbiant, Infantry Unit Aban', 215181), (236141, 236141, 270, 270, 'Cognizant Chest Symbiant, Support Unit Aban', 215181), (235439, 235439, 270, 270, 'Cognizant Ear Symbiant, Artillery Unit Aban', 230977), (236330, 236330, 270, 270, 'Cognizant Ear Symbiant, Control Unit Aban', 230977), (235882, 235882, 270, 270, 'Cognizant Ear Symbiant, Extermination Unit Aban', 230977), (235661, 235661, 270, 270, 'Cognizant Ear Symbiant, Infantry Unit Aban', 230977), (236504, 236504, 270, 270, 'Cognizant Feet Symbiant, Control Unit Aban', 215185), (236055, 236055, 270, 270, 'Cognizant Feet Symbiant, Extermination Unit Aban', 215186), (235831, 235831, 270, 270, 'Cognizant Feet Symbiant, Infantry Unit Aban', 215187), (236281, 236281, 270, 270, 'Cognizant Feet Symbiant, Support Unit Aban', 215187), (236383, 236383, 270, 270, 'Cognizant Left Arm Symbiant, Control Unit Aban', 215177), (235933, 235933, 270, 270, 'Cognizant Left Arm Symbiant, Extermination Unit Aban', 215175), (235712, 235712, 270, 270, 'Cognizant Left Arm Symbiant, Infantry Unit Aban', 215179), (236162, 236162, 270, 270, 'Cognizant Left Arm Symbiant, Support Unit Aban', 215175), (235595, 235595, 270, 270, 'Cognizant Left Hand Symbiant, Artillery Unit Aban', 215171), (235813, 235813, 270, 270, 'Cognizant Left Hand Symbiant, Infantry Unit Aban', 215172), (235541, 235541, 270, 270, 'Cognizant Left Wrist Symbiant, Artillery Unit Aban', 215196), (235985, 235985, 270, 270, 'Cognizant Left Wrist Symbiant, Extermination Unit Aban', 215198), (236217, 236217, 270, 270, 'Cognizant Left Wrist Symbiant, Support Unit Aban', 215198), (236297, 236297, 270, 270, 'Cognizant Ocular Symbiant, Control Unit Aban', 230979), (235846, 235846, 270, 270, 'Cognizant Ocular Symbiant, Extermination Unit Aban', 230979), (236348, 236348, 270, 270, 'Cognizant Right Arm Symbiant, Control Unit Aban', 215180), (236122, 236122, 270, 270, 'Cognizant Right Arm Symbiant, Support Unit Aban', 215178), (236234, 236234, 270, 270, 'Cognizant Right Hand Symbiant, Support Unit Aban', 215174), (235508, 235508, 270, 270, 'Cognizant Right Wrist Symbiant, Artillery Unit Aban', 215170), (236400, 236400, 270, 270, 'Cognizant Right Wrist Symbiant, Control Unit Aban', 215170), (235576, 235576, 270, 270, 'Cognizant Thigh Symbiant, Artillery Unit Aban', 215190), (236021, 236021, 270, 270, 'Cognizant Thigh Symbiant, Extermination Unit Aban', 215192), (235797, 235797, 270, 270, 'Cognizant Thigh Symbiant, Infantry Unit Aban', 215191), (236419, 236419, 270, 270, 'Cognizant Waist Symbiant, Control Unit Aban', 215193), (218596, 218597, 100, 109, 'Coil of Health', 218304), (218597, 218598, 110, 119, 'Coil of Health', 218304), (218598, 218599, 120, 129, 'Coil of Health', 218304), (218599, 218600, 130, 139, 'Coil of Health', 218304), (218600, 218601, 140, 149, 'Coil of Health', 218304), (218601, 218602, 150, 159, 'Coil of Health', 218304), (218602, 218603, 160, 169, 'Coil of Health', 218304), (218603, 218604, 170, 179, 'Coil of Health', 218304), (218604, 218605, 180, 190, 'Coil of Health', 218304), (291056, 291057, 100, 109, 'Coil of Health and Nano', 290999), (291057, 291058, 110, 119, 'Coil of Health and Nano', 290999), (291058, 291059, 120, 129, 'Coil of Health and Nano', 290999), (291059, 291060, 130, 139, 'Coil of Health and Nano', 290999), (291060, 291061, 140, 149, 'Coil of Health and Nano', 290999), (291061, 291062, 150, 159, 'Coil of Health and Nano', 290999), (291062, 291063, 160, 169, 'Coil of Health and Nano', 290999), (291063, 291064, 170, 179, 'Coil of Health and Nano', 290999), (291064, 291065, 180, 190, 'Coil of Health and Nano', 290999), (218832, 218833, 100, 109, 'Coil of Nano Energy', 218301), (218833, 218834, 110, 119, 'Coil of Nano Energy', 218301), (218834, 218835, 120, 129, 'Coil of Nano Energy', 218301), (218835, 218836, 130, 139, 'Coil of Nano Energy', 218301), (218836, 218837, 140, 149, 'Coil of Nano Energy', 218301), (218837, 218838, 150, 159, 'Coil of Nano Energy', 218301), (218838, 218839, 160, 169, 'Coil of Nano Energy', 218301), (218839, 218840, 170, 179, 'Coil of Nano Energy', 218301), (218840, 218841, 180, 190, 'Coil of Nano Energy', 218301), (101378, 101379, 1, 200, 'Cold AC Cluster - Bright (Right-Hand)', 35984), (101376, 101377, 1, 200, 'Cold AC Cluster - Faded (Left-Hand)', 35983), (101380, 101381, 1, 200, 'Cold AC Cluster - Shiny (Waist)', 35985), (165519, 165520, 201, 300, 'Cold AC Refined Cluster - Bright (Right-Hand)', 35984), (165517, 165518, 201, 300, 'Cold AC Refined Cluster - Faded (Left-Hand)', 35983), (165521, 165522, 201, 300, 'Cold AC Refined Cluster - Shiny (Waist)', 35985), (162385, 162385, 10, 10, 'Cold Adventure Shield', 12702), (211202, 211202, 300, 300, 'Cold Callous Cudgel', 13333), (158037, 158037, 10, 10, 'Cold Deflection Shield', 12702), (203076, 203077, 160, 200, 'Cold Laser Turret', 202242), (203080, 203081, 160, 200, 'Cold Laser Turret', 202242), (203078, 203079, 201, 300, 'Cold Laser Turret', 202242), (203082, 203083, 201, 300, 'Cold Laser Turret', 202242), (202587, 202588, 160, 300, 'Cold Laser Turret Controller', 203580), (208061, 208061, 50, 50, 'Cold Morning Icebreaker', 33165), (152428, 152431, 1, 199, 'Cold Ray Orb', 152424), (245302, 245302, 150, 150, 'Cold Snakeskin Sleeve', 22954), (226001, 226002, 1, 300, 'Cold Star Pendant', 131268), (136648, 136649, 1, 200, 'Cold Stone', 286904), (231228, 231228, 1, 1, 'Cold Vulnerable Reflect', 84059), (214221, 214221, 300, 300, 'Collaborator Assault Rifle', 210186), (253090, 253090, 1, 1, 'Collapser', 239061), (246125, 246125, 100, 100, 'Collar Casero de la Cripta', 290655), (259265, 259265, 100, 100, 'Collar of Amplification', 290649), (259266, 259266, 100, 100, 'Collar of Amplification', 290650), (259267, 259267, 100, 100, 'Collar of Amplification', 290651), (259268, 259268, 100, 100, 'Collar of Amplification', 290652), (259269, 259269, 100, 100, 'Collar of Amplification', 290653), (259270, 259270, 100, 100, 'Collar of Amplification', 290654), (292523, 292523, 1, 1, 'Collatz Pattern Programming Utility Device', 292781), (292537, 292537, 1, 1, 'Collatz Upgrade Plate', 292782), (286205, 286205, 200, 200, 'Collected Distillation of Avarice', 284331), (286207, 286207, 200, 200, 'Collected Distillation of Compassion', 284331), (286209, 286209, 200, 200, 'Collected Distillation of Death', 284331), (286208, 286208, 200, 200, 'Collected Distillation of Destiny', 284331), (286206, 286206, 200, 200, 'Collected Distillation of Fear', 284331), (286203, 286203, 200, 200, 'Collected Distillation of Hope', 284331), (286217, 286217, 200, 200, 'Collected Distillation of Love', 284331), (286202, 286202, 200, 200, 'Collected Distillation of Rage', 284331), (286204, 286204, 200, 200, 'Collected Distillation of Will', 284331), (244566, 244566, 250, 250, 'Collector Pants of Gemini', 30938), (159088, 159089, 80, 199, 'Collins IX Bio-Energy Rifle', 114015), (295831, 295831, 1, 1, 'Colonist Survival Pack', 268734), (296977, 296977, 1, 1, 'Colonist Survival Pack', 268734), (153957, 153957, 1, 1, 'Colour Me Green!', 84059), (305975, 305975, 210, 210, 'Combat Assist Wen-Wen', 268035), (269938, 269938, 250, 250, 'Combat Attuned Permafrost Armor Component', 269936), (267739, 267739, 250, 250, 'Combat Knowledge Crystal', 151030), (156575, 156575, 54, 54, 'Combat Medic''s Light Tank Armor', 41170), (296328, 296328, 1, 1, 'Combat Nano Can: Blessing of the Xan', 296323), (296320, 296320, 1, 1, 'Combat Nano Can: Blood of the Broods', 296319), (296333, 296333, 1, 1, 'Combat Nano Can: Charged by the Machine', 296327), (296322, 296322, 1, 1, 'Combat Nano Can: Chill of the Ice Golem', 296321), (288786, 288786, 1, 1, 'Combat Nano Can: Greater Experience Boost', 296598), (288787, 288787, 1, 1, 'Combat Nano Can: Greater Experience Boost', 296598), (288788, 288788, 1, 1, 'Combat Nano Can: Greater Experience Boost', 296598), (288790, 288790, 1, 1, 'Combat Nano Can: Lesser Experience Boost', 296598), (288791, 288791, 1, 1, 'Combat Nano Can: Lesser Experience Boost', 296598), (288792, 288792, 1, 1, 'Combat Nano Can: Lesser Experience Boost', 296598), (288769, 288769, 1, 1, 'Combat Nano Can: Premium Experience Boost', 296598), (288771, 288771, 1, 1, 'Combat Nano Can: Premium Experience Boost', 296598), (288772, 288772, 1, 1, 'Combat Nano Can: Premium Experience Boost', 296598), (303376, 303376, 1, 1, 'Combat Nano Can: Premium Experience Boost', 296598), (296334, 296334, 1, 1, 'Combat Nano Can: The Awakening', 296326), (269946, 269946, 250, 250, 'Combat Program', 269949), (248358, 248358, 1, 1, 'Combat Status Report', 131267), (130610, 130610, 1, 1, 'Combat-Can', 37956), (267777, 267777, 250, 250, 'Combined Bio Samples - Stage Four', 100323), (267774, 267774, 250, 250, 'Combined Bio Samples - Stage One', 100323), (267776, 267776, 250, 250, 'Combined Bio Samples - Stage Three', 100323), (267775, 267775, 250, 250, 'Combined Bio Samples - Stage Two', 100323), (246667, 246668, 1, 300, 'Combined Commando''s Footwear', 256309), (246663, 246664, 1, 300, 'Combined Commando''s Gloves', 256310), (246657, 246658, 1, 300, 'Combined Commando''s Headwear', 256311), (246659, 246660, 1, 300, 'Combined Commando''s Jacket', 256308), (246665, 246666, 1, 300, 'Combined Commando''s Legwear', 256312), (246661, 246662, 1, 300, 'Combined Commando''s Sleeves', 256307), (267705, 267705, 250, 250, 'Combined Crystalised Combat Memories', 300987), (267729, 267729, 250, 250, 'Combined Crystalised Medical Memories', 300988), (267702, 267702, 250, 250, 'Combined Crystalised Technical Memories', 300986), (246645, 246646, 1, 300, 'Combined Mercenary''s Footwear', 256357), (246641, 246642, 1, 300, 'Combined Mercenary''s Gloves', 256358), (246635, 246636, 1, 300, 'Combined Mercenary''s Headwear', 256359), (246637, 246638, 1, 300, 'Combined Mercenary''s Jacket', 256356), (246643, 246644, 1, 300, 'Combined Mercenary''s Legwear', 256360), (246639, 246640, 1, 300, 'Combined Mercenary''s Sleeves', 256355), (274967, 274967, 50, 50, 'Combined Nightmare Ether', 290658), (274968, 274968, 50, 50, 'Combined Nightmare Ether', 290658), (274969, 274969, 50, 50, 'Combined Nightmare Ether', 290658), (246679, 246680, 1, 300, 'Combined Officer''s Footwear', 256321), (246675, 246676, 1, 300, 'Combined Officer''s Gloves', 256322), (246669, 246670, 1, 300, 'Combined Officer''s Headwear', 256323), (246671, 246672, 1, 300, 'Combined Officer''s Jacket', 256320), (246677, 246678, 1, 300, 'Combined Officer''s Legwear', 256324), (246673, 246674, 1, 300, 'Combined Officer''s Sleeves', 256319), (246655, 246656, 1, 300, 'Combined Paramedic''s Footwear', 256351), (246651, 246652, 1, 300, 'Combined Paramedic''s Gloves', 256352), (246631, 246632, 1, 300, 'Combined Paramedic''s Headwear', 256353), (246647, 246648, 1, 300, 'Combined Paramedic''s Jacket', 256350), (246653, 246654, 1, 300, 'Combined Paramedic''s Legwear', 256354), (246649, 246650, 1, 300, 'Combined Paramedic''s Sleeves', 256349), (246691, 246692, 1, 300, 'Combined Scout''s Footwear', 256327), (246687, 246688, 1, 300, 'Combined Scout''s Gloves', 256328), (246681, 246682, 1, 300, 'Combined Scout''s Headwear', 256329), (246683, 246684, 1, 300, 'Combined Scout''s Jacket', 256326), (246689, 246690, 1, 300, 'Combined Scout''s Legwear', 256330), (246685, 246686, 1, 300, 'Combined Scout''s Sleeves', 256325), (246703, 246704, 1, 300, 'Combined Sharpshooter''s Footwear', 256303), (246699, 246700, 1, 300, 'Combined Sharpshooter''s Gloves', 256298), (246693, 246694, 1, 300, 'Combined Sharpshooter''s Headwear', 256305), (246695, 246696, 1, 300, 'Combined Sharpshooter''s Jacket', 256302), (246701, 246702, 1, 300, 'Combined Sharpshooter''s Legwear', 256306), (246697, 246698, 1, 300, 'Combined Sharpshooter''s Sleeves', 256301), (226148, 226149, 1, 500, 'Combust', 239171), (226150, 226151, 1, 500, 'Combust', 239171), (226152, 226153, 1, 500, 'Combust', 239171), (244645, 244645, 250, 250, 'Comfort of the Sagittarius', 37969), (224711, 224711, 10, 10, 'Comfortless Brain Spirit of Offence', 230992), (224728, 224728, 10, 10, 'Comfortless Essence Brain Spirit', 230992), (224932, 224932, 10, 10, 'Comfortless Heart Spirit of Essence', 230984), (224918, 224918, 10, 10, 'Comfortless Heart Spirit of Knowledge', 230984), (224949, 224949, 10, 10, 'Comfortless Heart Spirit of Strength', 230984), (225197, 225197, 10, 10, 'Comfortless Left Hand Spirit of Defence', 230994), (225215, 225215, 10, 10, 'Comfortless Left Hand Spirit of Strength', 230994), (225035, 225035, 10, 10, 'Comfortless Left Limb Spirit of Essence', 230995), (224847, 224847, 10, 10, 'Comfortless Midriff Spirit of Essence', 230976), (224865, 224865, 10, 10, 'Comfortless Midriff Spirit of Knowledge', 230976), (224901, 224901, 10, 10, 'Comfortless Midriff Spirit of Strength', 230976), (224831, 224831, 10, 10, 'Comfortless Right Limb Spirit of Essence', 231004), (224815, 224815, 10, 10, 'Comfortless Right Limb Spirit of Weakness', 231004), (225173, 225173, 10, 10, 'Comfortless Spirit of Defense', 230998), (295715, 295715, 10, 10, 'Comfortless Spirit of Defense', 230998), (224663, 224663, 10, 10, 'Comfortless Spirit of Discerning Weakness', 230988), (225189, 225189, 10, 10, 'Comfortless Spirit of Essence', 230998), (225249, 225249, 10, 10, 'Comfortless Spirit of Feet Defense', 230990), (224745, 224745, 10, 10, 'Comfortless Spirit of Knowledge Whispered', 230986), (225087, 225087, 10, 10, 'Comfortless Spirit of Left Wrist Defense', 231000), (225105, 225105, 10, 10, 'Comfortless Spirit of Left Wrist Strength', 231000), (225053, 225053, 10, 10, 'Comfortless Spirit of Right Wrist Offence', 231006), (199818, 199818, 295, 295, 'Commander Omni-Internops Armor Boots', 13270), (199839, 199839, 295, 295, 'Commander Omni-Internops Armor Gloves', 13283), (199860, 199860, 295, 295, 'Commander Omni-Internops Armor Helmet', 10840), (199881, 199881, 295, 295, 'Commander Omni-Internops Armor Pants', 13300), (199902, 199902, 295, 295, 'Commander Omni-Internops Armor Sleeves', 13232), (199923, 199923, 295, 295, 'Commander Omni-Internops Body Armor', 13253), (199944, 199944, 295, 295, 'Commander Omni-Internops Elite Armor Boots', 21866), (199965, 199965, 295, 295, 'Commander Omni-Internops Elite Armor Gloves', 21872), (199986, 199986, 295, 295, 'Commander Omni-Internops Elite Armor Helmet', 22269), (200007, 200007, 295, 295, 'Commander Omni-Internops Elite Armor Pants', 21879), (200028, 200028, 295, 295, 'Commander Omni-Internops Elite Armor Sleeves', 21850), (200049, 200049, 295, 295, 'Commander Omni-Internops Elite Body Armor', 19816), (165220, 165220, 1, 1, 'Commander dog-tag', 149944), (168417, 168417, 120, 120, 'Commander of Tir Ring', 290369), (245357, 245357, 150, 150, 'Commander''s Ceremonial Chest Plate', 213514), (294650, 294650, 1, 1, 'Commemorative Marriage Painting: Broken Shores', 294672), (294651, 294651, 1, 1, 'Commemorative Marriage Painting: Camelot Castle', 294673), (294652, 294652, 1, 1, 'Commemorative Marriage Painting: Desert Temple', 294674), (294653, 294653, 1, 1, 'Commemorative Marriage Painting: Elysium', 294675), (294654, 294654, 1, 1, 'Commemorative Marriage Painting: Elysium', 294676), (294655, 294655, 1, 1, 'Commemorative Marriage Painting: Ember Woods', 294677), (294656, 294656, 1, 1, 'Commemorative Marriage Painting: Galway Castle', 294678), (294648, 294648, 1, 1, 'Commemorative Marriage Painting: Garden of Aban', 294670), (294649, 294649, 1, 1, 'Commemorative Marriage Painting: Garden of Aban', 294671), (294657, 294657, 1, 1, 'Commemorative Marriage Painting: Lava Flow', 294679), (294663, 294663, 1, 1, 'Commemorative Marriage Painting: Lush Fields Springs', 294680), (294658, 294658, 1, 1, 'Commemorative Marriage Painting: Mystic Circle', 294681), (294659, 294659, 1, 1, 'Commemorative Marriage Painting: Nascence', 294682), (294660, 294660, 1, 1, 'Commemorative Marriage Painting: Nascence', 294683), (294661, 294661, 1, 1, 'Commemorative Marriage Painting: Notum Tree', 294684), (294662, 294662, 1, 1, 'Commemorative Marriage Painting: Rome Park', 294685), (294664, 294664, 1, 1, 'Commemorative Marriage Painting: Thrak Garden', 294686), (294665, 294665, 1, 1, 'Commemorative Marriage Painting: Thrak Garden', 294687), (294666, 294666, 1, 1, 'Commemorative Marriage Painting: Tir Falls', 294688), (294667, 294667, 1, 1, 'Commemorative Marriage Painting: Versailles Tower', 294689), (300600, 300600, 1, 1, 'Commemorative T-shirt Spawner', 300569), (261602, 261602, 1, 1, 'Commendation', 151933), (261603, 261603, 1, 1, 'Commendation', 151933), (206891, 206891, 20, 20, 'Communication Device', 11606), (158230, 158230, 1, 1, 'Communication Processing Unit ID=BiB', 158233), (158226, 158226, 1, 1, 'Communication Processing Unit ID=EU', 158233), (158228, 158228, 1, 1, 'Communication Processing Unit ID=GJ', 158233), (158232, 158232, 1, 1, 'Communication Processing Unit ID=GV', 158233), (158229, 158229, 1, 1, 'Communication Processing Unit ID=LM', 158233), (158231, 158231, 1, 1, 'Communication Processing Unit ID=MM', 158233), (158227, 158227, 1, 1, 'Communication Processing Unit ID=NB', 158233), (158225, 158225, 1, 1, 'Communication Processing Unit ID=TKL', 158233), (158223, 158223, 1, 1, 'Communication Processing Unit Rack with 1 Empty Slot', 158234), (158222, 158222, 1, 1, 'Communication Processing Unit Rack with 2 Empty Slots', 158234), (158210, 158210, 1, 1, 'Communication Processing Unit Rack with 3 Empty Slots', 158234), (158209, 158209, 1, 1, 'Communication Processing Unit Rack with 4 Empty Slots', 158234), (158208, 158208, 1, 1, 'Communication Processing Unit Rack with 5 Empty Slots', 158234), (158207, 158207, 1, 1, 'Communication Processing Unit Rack with 6 Empty Slots', 158234), (158206, 158206, 1, 1, 'Communication Processing Unit Rack with 7 Empty Slots', 158234), (158205, 158205, 1, 1, 'Communication Processing Unit Rack with 8 Empty Slots', 158234), (258612, 258612, 200, 200, 'Communications Device', 156319), (252992, 252993, 1, 300, 'Communications Relay', 13368), (152884, 152884, 1, 1, 'Community Representative Suit', 151874), (258291, 258291, 1, 1, 'Community Representative Suit', 258288), (101713, 101714, 1, 200, 'Comp. Liter Cluster - Bright (Eye)', 36014), (101711, 101712, 1, 200, 'Comp. Liter Cluster - Faded (Right-Hand)', 36013), (101715, 101716, 1, 200, 'Comp. Liter Cluster - Shiny (Head)', 36015), (165891, 165892, 201, 300, 'Comp. Liter Refined Cluster - Bright (Eye)', 36014), (165889, 165890, 201, 300, 'Comp. Liter Refined Cluster - Faded (Right-Hand)', 36013), (165893, 165894, 201, 300, 'Comp. Liter Refined Cluster - Shiny (Head)', 36015), (296780, 296780, 1, 1, 'Compact Fire Suppressant Container', 296779), (259949, 259949, 1, 1, 'Compact Message Datadisc', 259953), (259950, 259950, 1, 1, 'Compact Message Datadisc', 259953), (259951, 259951, 1, 1, 'Compact Message Datadisc', 259953), (259952, 259952, 1, 1, 'Compact Message Datadisc', 259953), (259959, 259959, 1, 1, 'Compact Message Datadisc', 259969), (259961, 259961, 1, 1, 'Compact Message Datadisc', 259969), (259962, 259962, 1, 1, 'Compact Message Datadisc', 259969), (259963, 259963, 1, 1, 'Compact Message Datadisc', 259969), (259964, 259964, 1, 1, 'Compact Message Datadisc', 259969), (259971, 259971, 1, 1, 'Compact Message Datadisc', 259969), (259973, 259973, 1, 1, 'Compact Message Datadisc', 259969), (259975, 259975, 1, 1, 'Compact Message Datadisc', 259969), (259976, 259976, 1, 1, 'Compact Message Datadisc', 259969), (259977, 259977, 1, 1, 'Compact Message Datadisc', 259969), (262653, 262653, 1, 1, 'Compact Message Datadisc', 262652), (218473, 218473, 100, 100, 'Compact Novictum Stone', 20407), (246084, 246084, 250, 250, 'Compagnero', 11697), (286214, 286214, 200, 200, 'Compassion-Infused Wax', 284331), (203218, 203218, 199, 199, 'Compiled Algorithm (A DCSD containing 1 BBI Minami-90 Sticky Love Rain)', 83092), (145848, 145848, 179, 179, 'Compiled Algorithm (A Maker''s Touch)', 83118), (145573, 145573, 80, 80, 'Compiled Algorithm (Abscess Explosion)', 83080), (160841, 160841, 142, 142, 'Compiled Algorithm (Absolute Concentration)', 82990), (145772, 145772, 140, 140, 'Compiled Algorithm (Absorb Punishment)', 144169), (146403, 146403, 66, 66, 'Compiled Algorithm (Absorption Shield)', 144270), (146152, 146152, 33, 33, 'Compiled Algorithm (Abyssal Flames)', 83246), (146153, 146153, 24, 24, 'Compiled Algorithm (Accelerated Decay)', 83264), (146154, 146154, 24, 24, 'Compiled Algorithm (Accelerated Titanium Pellet)', 83258), (146485, 146485, 74, 74, 'Compiled Algorithm (Accomplished Health Haggler)', 83116), (145574, 145574, 152, 152, 'Compiled Algorithm (Accumulate Scars)', 83117), (146155, 146155, 27, 27, 'Compiled Algorithm (Acidic Conversion)', 83222), (145575, 145575, 149, 149, 'Compiled Algorithm (Acidic Lesions)', 83081), (146156, 146156, 7, 7, 'Compiled Algorithm (Acidic Projection)', 83222), (145993, 145993, 33, 33, 'Compiled Algorithm (Active Distributed Entanglement)', 83131), (145994, 145994, 20, 20, 'Compiled Algorithm (Active Micro Entanglement)', 83131), (145576, 145576, 33, 33, 'Compiled Algorithm (Active Remedy)', 83112), (145577, 145577, 53, 53, 'Compiled Algorithm (Active Viral Agent)', 83080), (163131, 163131, 149, 149, 'Compiled Algorithm (Active Viral Compressor)', 83065), (146404, 146404, 132, 132, 'Compiled Algorithm (Advanced Absorption Shield)', 144272), (145402, 145402, 136, 136, 'Compiled Algorithm (Advanced Administrator-Droid)', 83176), (145403, 145403, 80, 80, 'Compiled Algorithm (Advanced Aide-Droid)', 83175), (145849, 145849, 40, 40, 'Compiled Algorithm (Advanced Android)', 83170), (145404, 145404, 57, 57, 'Compiled Algorithm (Advanced Assistant-Droid)', 83175), (145405, 145405, 37, 37, 'Compiled Algorithm (Advanced Attendant-Droid)', 83175), (145995, 145995, 142, 142, 'Compiled Algorithm (Advanced Augmentation Cloud)', 144313), (145850, 145850, 14, 14, 'Compiled Algorithm (Advanced Automaton)', 83170), (145406, 145406, 165, 165, 'Compiled Algorithm (Advanced Bodyguard)', 83177), (145578, 145578, 136, 136, 'Compiled Algorithm (Advanced Cellular Rebuild)', 83117), (146157, 146157, 163, 163, 'Compiled Algorithm (Advanced Collapsing Barrier)', 144168), (146405, 146405, 119, 119, 'Compiled Algorithm (Advanced Combat Barrier)', 144272), (145851, 145851, 126, 126, 'Compiled Algorithm (Advanced Defensive Screen)', 144168), (146486, 146486, 123, 123, 'Compiled Algorithm (Advanced Delayed Health Payment)', 83117), (145317, 145317, 150, 150, 'Compiled Algorithm (Advanced Face Graft)', 83270), (145852, 145852, 179, 179, 'Compiled Algorithm (Advanced Force Field)', 144170), (145853, 145853, 80, 80, 'Compiled Algorithm (Advanced Gladiatorbot)', 83175), (145854, 145854, 116, 116, 'Compiled Algorithm (Advanced Guardbot)', 83176), (146487, 146487, 103, 103, 'Compiled Algorithm (Advanced Health Freeloader)', 144190), (146488, 146488, 30, 30, 'Compiled Algorithm (Advanced Health Funnel)', 144187), (146489, 146489, 169, 169, 'Compiled Algorithm (Advanced Health Plunder)', 144194), (145407, 145407, 20, 20, 'Compiled Algorithm (Advanced Helper)', 83170), (145996, 145996, 103, 103, 'Compiled Algorithm (Advanced Insurance Hack)', 83115), (146158, 146158, 107, 107, 'Compiled Algorithm (Advanced Layered Protection)', 144166), (145408, 145408, 149, 149, 'Compiled Algorithm (Advanced Minion)', 83177), (145580, 145580, 93, 93, 'Compiled Algorithm (Advanced Nano Gorger)', 83080), (145997, 145997, 142, 142, 'Compiled Algorithm (Advanced Policy Skim)', 83116), (145855, 145855, 119, 119, 'Compiled Algorithm (Advanced Protective Field)', 144168), (145409, 145409, 109, 109, 'Compiled Algorithm (Advanced Secretary-Droid)', 83176), (145856, 145856, 109, 109, 'Compiled Algorithm (Advanced Shielding Barrier)', 144168), (145214, 145214, 146, 146, 'Compiled Algorithm (Advanced Survival Technique)', 83114), (144827, 144827, 93, 93, 'Compiled Algorithm (Advanced Symbol Manipulation)', 83164), (145857, 145857, 152, 152, 'Compiled Algorithm (Advanced Warbot)', 83176), (145858, 145858, 169, 169, 'Compiled Algorithm (Advanced Warmachine)', 83177), (145410, 145410, 7, 7, 'Compiled Algorithm (Advanced Worker)', 83170), (145859, 145859, 189, 189, 'Compiled Algorithm (Aegis Barrier)', 144170), (146406, 146406, 90, 90, 'Compiled Algorithm (Aggressive Captivation)', 83090), (145773, 145773, 27, 27, 'Compiled Algorithm (Aggressive Instincts)', 83090), (146159, 146159, 30, 30, 'Compiled Algorithm (Aggressive Mutagen)', 83234), (145581, 145581, 159, 159, 'Compiled Algorithm (All-Consuming Toxin)', 83081), (145215, 145215, 50, 50, 'Compiled Algorithm (Alleviate Pain)', 83113), (145411, 145411, 136, 136, 'Compiled Algorithm (Allure of Servitude)', 83192), (145582, 145582, 185, 185, 'Compiled Algorithm (Alpha and Omega)', 82991), (146490, 146490, 4, 4, 'Compiled Algorithm (Amateur Health Haggler)', 83112), (145318, 145318, 40, 40, 'Compiled Algorithm (Anatomy Lesson)', 144311), (145860, 145860, 33, 33, 'Compiled Algorithm (Android)', 83170), (145412, 145412, 27, 27, 'Compiled Algorithm (Anger Addlement)', 83122), (144828, 144828, 4, 4, 'Compiled Algorithm (Anger Manifestation)', 144223), (161405, 161405, 103, 103, 'Compiled Algorithm (Anger of the Porcupine)', 83068), (151846, 151846, 110, 110, 'Compiled Algorithm (Anima of Fathomless Rage)', 83142), (151847, 151847, 156, 156, 'Compiled Algorithm (Anima of Implacable Hatred)', 83142), (151848, 151848, 189, 189, 'Compiled Algorithm (Anima of Maddening Wrath)', 83142), (151849, 151849, 212, 212, 'Compiled Algorithm (Anima of Pure Malevolence)', 83142), (151843, 151843, 67, 67, 'Compiled Algorithm (Anima of Relentless Fury)', 83142), (151850, 151850, 239, 239, 'Compiled Algorithm (Anima of The Abomination)', 83142), (151844, 151844, 37, 37, 'Compiled Algorithm (Anima of Unleashed Malice)', 83142), (151845, 151845, 14, 14, 'Compiled Algorithm (Anima of Unrestrained Ferocity)', 83142), (146160, 146160, 165, 165, 'Compiled Algorithm (Annihilating Hadron String)', 83269), (146407, 146407, 70, 70, 'Compiled Algorithm (Annoying Presence)', 83090), (144829, 144829, 50, 50, 'Compiled Algorithm (Anticipation of Retaliation)', 83096), (202894, 202894, 133, 133, 'Compiled Algorithm (Anvils Bane)', 83000), (203897, 203897, 74, 74, 'Compiled Algorithm (Appeal for Freedom)', 83060), (146493, 146493, 17, 17, 'Compiled Algorithm (Apprentice Health Haggler)', 83113), (146491, 146491, 24, 24, 'Compiled Algorithm (Apprentice: Electrical Engineering)', 83091), (146492, 146492, 27, 27, 'Compiled Algorithm (Apprentice: Field Quantum Physics)', 83099), (146494, 146494, 30, 30, 'Compiled Algorithm (Apprentice: Mechanical Engineering)', 83156), (146495, 146495, 33, 33, 'Compiled Algorithm (Apprentice: Pharmaceuticals)', 83178), (146496, 146496, 33, 33, 'Compiled Algorithm (Apprentice: Weapon Smithing)', 83278), (145774, 145774, 37, 37, 'Compiled Algorithm (Arctic Cloak)', 83068), (145216, 145216, 83, 83, 'Compiled Algorithm (Arctic Gale)', 83068), (146161, 146161, 73, 73, 'Compiled Algorithm (Arctic Welcome)', 83230), (145861, 145861, 1, 1, 'Compiled Algorithm (Armor Megaboost)', 83046), (146497, 146497, 185, 185, 'Compiled Algorithm (Armor Trade-In)', 144184), (203163, 203163, 161, 161, 'Compiled Algorithm (Art of peace)', 83047), (145319, 145319, 139, 139, 'Compiled Algorithm (Assassin''s Grin)', 144314), (146408, 146408, 50, 50, 'Compiled Algorithm (Assault Rifle Mastery)', 83047), (205270, 205270, 117, 117, 'Compiled Algorithm (Assist Aggression Subsystem)', 83172), (205255, 205255, 15, 15, 'Compiled Algorithm (Assist Combat Array)', 83172), (145320, 145320, 86, 86, 'Compiled Algorithm (Assume Profession: Adventurer)', 83210), (145321, 145321, 109, 109, 'Compiled Algorithm (Assume Profession: Bureaucrat)', 83210), (145322, 145322, 103, 103, 'Compiled Algorithm (Assume Profession: Doctor)', 83210), (145323, 145323, 76, 76, 'Compiled Algorithm (Assume Profession: Enforcer)', 83210), (145324, 145324, 90, 90, 'Compiled Algorithm (Assume Profession: Engineer)', 83210), (145325, 145325, 96, 96, 'Compiled Algorithm (Assume Profession: Fixer)', 83210), (145326, 145326, 83, 83, 'Compiled Algorithm (Assume Profession: Martial Artist)', 83210), (145327, 145327, 113, 113, 'Compiled Algorithm (Assume Profession: Meta-Physicist)', 83210), (145328, 145328, 119, 119, 'Compiled Algorithm (Assume Profession: Nanotechnician)', 83210), (145329, 145329, 80, 80, 'Compiled Algorithm (Assume Profession: Soldier)', 83210), (145330, 145330, 99, 99, 'Compiled Algorithm (Assume Profession: Trader)', 83210), (146162, 146162, 159, 159, 'Compiled Algorithm (Atomic Collapse)', 83268), (146409, 146409, 27, 27, 'Compiled Algorithm (Attack Booster)', 83049), (145998, 145998, 106, 106, 'Compiled Algorithm (Augmentation Cloud)', 144312), (146163, 146163, 50, 50, 'Compiled Algorithm (Augmented Energized Beam)', 83241), (145413, 145413, 43, 43, 'Compiled Algorithm (Authority Figure)', 83194), (146410, 146410, 106, 106, 'Compiled Algorithm (Automatic Targeting)', 83048), (145862, 145862, 7, 7, 'Compiled Algorithm (Automaton)', 83170), (145583, 145583, 146, 146, 'Compiled Algorithm (Autonomous Viral Agent)', 83081), (145775, 145775, 4, 4, 'Compiled Algorithm (Avenging Shield)', 83068), (146584, 146584, 44, 44, 'Compiled Algorithm (Average Delayed Health Payment)', 83114), (146585, 146585, 70, 70, 'Compiled Algorithm (Average Health Freeloader)', 144189), (146586, 146586, 10, 10, 'Compiled Algorithm (Average Health Funnel)', 144186), (146587, 146587, 149, 149, 'Compiled Algorithm (Average Health Plunder)', 144192), (145999, 145999, 57, 57, 'Compiled Algorithm (Back Pain)', 83205), (162761, 162761, 132, 132, 'Compiled Algorithm (Backyard Revitalization)', 83117), (146164, 146164, 10, 10, 'Compiled Algorithm (Bacterial Invasion)', 83234), (146067, 146067, 24, 24, 'Compiled Algorithm (Bad Blood)', 83090), (146498, 146498, 7, 7, 'Compiled Algorithm (Balanced Striker)', 83280), (145776, 145776, 57, 57, 'Compiled Algorithm (Baleful Stare)', 83090), (146165, 146165, 106, 106, 'Compiled Algorithm (Ball and Chain)', 83128), (161420, 161420, 47, 47, 'Compiled Algorithm (Ballad of Smoke)', 83179), (161423, 161423, 99, 99, 'Compiled Algorithm (Ballad of the Desperado)', 83179), (161426, 161426, 142, 142, 'Compiled Algorithm (Ballad of the Pistolero)', 83179), (161429, 161429, 169, 169, 'Compiled Algorithm (Ballad of the Plains Wanderer)', 83179), (146166, 146166, 113, 113, 'Compiled Algorithm (Bane of the Living)', 83237), (145777, 145777, 83, 83, 'Compiled Algorithm (Barbaric Blades)', 83068), (203695, 203695, 168, 168, 'Compiled Algorithm (Bargain with Fate)', 83060), (146167, 146167, 96, 96, 'Compiled Algorithm (Barrage of Blades)', 83027), (146168, 146168, 109, 109, 'Compiled Algorithm (Barrage of Fire)', 83022), (145414, 145414, 129, 129, 'Compiled Algorithm (Basic Administrator)', 83176), (145415, 145415, 70, 70, 'Compiled Algorithm (Basic Aide-Droid)', 83175), (145416, 145416, 47, 47, 'Compiled Algorithm (Basic Assistant-Droid)', 83175), (145417, 145417, 27, 27, 'Compiled Algorithm (Basic Attendant-Droid)', 83170), (145418, 145418, 159, 159, 'Compiled Algorithm (Basic Bodyguard)', 83177), (146169, 146169, 73, 73, 'Compiled Algorithm (Basic Crystalizing Ray)', 83230), (145863, 145863, 37, 37, 'Compiled Algorithm (Basic Defensive Screen)', 144166), (145864, 145864, 159, 159, 'Compiled Algorithm (Basic Force Field)', 144169), (145419, 145419, 14, 14, 'Compiled Algorithm (Basic Helper-Droid)', 83170), (146170, 146170, 17, 17, 'Compiled Algorithm (Basic Humidity Extractor)', 83166), (146000, 146000, 4, 4, 'Compiled Algorithm (Basic Insurance Hack)', 83112), (145420, 145420, 142, 142, 'Compiled Algorithm (Basic Minion)', 83177), (145584, 145584, 149, 149, 'Compiled Algorithm (Basic Omni-Med Enhancement)', 144175), (146001, 146001, 66, 66, 'Compiled Algorithm (Basic Policy Skim)', 83114), (145865, 145865, 33, 33, 'Compiled Algorithm (Basic Protective Field)', 144166), (145421, 145421, 96, 96, 'Compiled Algorithm (Basic Secretary-Droid)', 83176), (145866, 145866, 27, 27, 'Compiled Algorithm (Basic Shielding Barrier)', 83046), (145422, 145422, 1, 1, 'Compiled Algorithm (Basic Worker-Droid)', 83170), (145423, 145423, 17, 17, 'Compiled Algorithm (Baton of Authority)', 83271), (145424, 145424, 162, 162, 'Compiled Algorithm (Baton of Command)', 83271), (145425, 145425, 99, 99, 'Compiled Algorithm (Baton of Leadership)', 83271), (146411, 146411, 152, 152, 'Compiled Algorithm (Battlefield Endurance)', 144179), (154917, 154917, 90, 90, 'Compiled Algorithm (Beacon Warp)', 83270), (203891, 203891, 24, 24, 'Compiled Algorithm (Beg for Freedom)', 83060), (145426, 145426, 33, 33, 'Compiled Algorithm (Bend Will)', 83192), (203990, 203990, 78, 78, 'Compiled Algorithm (Beseech Freedom)', 83060), (145585, 145585, 146, 146, 'Compiled Algorithm (Bestow Healing)', 83117), (146171, 146171, 30, 30, 'Compiled Algorithm (Bewilder)', 83122), (145586, 145586, 24, 24, 'Compiled Algorithm (Bind Wounds)', 83113), (146172, 146172, 119, 119, 'Compiled Algorithm (Bio-Acid Spray)', 83225), (144830, 144830, 37, 37, 'Compiled Algorithm (BioMet Mastery)', 83051), (162752, 162752, 93, 93, 'Compiled Algorithm (Biosign Rejuvenator)', 83115), (145588, 145588, 27, 27, 'Compiled Algorithm (Biotoxin MK I)', 83076), (145589, 145589, 43, 43, 'Compiled Algorithm (Biotoxin MK II)', 83076), (145590, 145590, 73, 73, 'Compiled Algorithm (Biotoxin MK III)', 83080), (145591, 145591, 93, 93, 'Compiled Algorithm (Biotoxin MK IV)', 83081), (161411, 161411, 103, 103, 'Compiled Algorithm (Bite of the Wind)', 83202), (145217, 145217, 126, 126, 'Compiled Algorithm (Biting Blades)', 83068), (162749, 162749, 70, 70, 'Compiled Algorithm (Blackmarket Prescription)', 83115), (146173, 146173, 86, 86, 'Compiled Algorithm (Blade Chaos)', 83254), (161393, 161393, 66, 66, 'Compiled Algorithm (Blanket of Shadows)', 83066), (146174, 146174, 169, 169, 'Compiled Algorithm (Blaze of Hephaestos)', 83023), (146175, 146175, 33, 33, 'Compiled Algorithm (Blight)', 83080), (145427, 145427, 50, 50, 'Compiled Algorithm (Blizzard of Red Tape)', 83127), (145592, 145592, 24, 24, 'Compiled Algorithm (Blood Circle)', 83112), (146002, 146002, 116, 116, 'Compiled Algorithm (Blood Makes Noise)', 83169), (145593, 145593, 129, 129, 'Compiled Algorithm (Bloom of Health)', 83117), (162345, 162345, 159, 159, 'Compiled Algorithm (Blur of Claws)', 144312), (145594, 145594, 43, 43, 'Compiled Algorithm (Bodily Amplification)', 83207), (145595, 145595, 146, 146, 'Compiled Algorithm (Bodily Purification)', 83118), (145596, 145596, 10, 10, 'Compiled Algorithm (Bodily Reinforcement)', 144175), (146176, 146176, 152, 152, 'Compiled Algorithm (Boil Blood)', 83077), (146177, 146177, 126, 126, 'Compiled Algorithm (Boil from Within)', 83084), (205279, 205279, 174, 174, 'Compiled Algorithm (Boost Aggression Subsystem)', 83172), (205264, 205264, 77, 77, 'Compiled Algorithm (Boost Combat Array)', 83172), (146412, 146412, 17, 17, 'Compiled Algorithm (Boot Camp Toughness)', 83053), (155418, 155418, 67, 67, 'Compiled Algorithm (Bootleg Beamers ''n Bolters (OP-C))', 144301), (155413, 155413, 120, 120, 'Compiled Algorithm (Bootleg Beamers ''n Bolters (OP-CC))', 144302), (155415, 155415, 107, 107, 'Compiled Algorithm (Bootleg Beamers ''n Bolters (OP-CLX))', 144302), (155414, 155414, 113, 113, 'Compiled Algorithm (Bootleg Beamers ''n Bolters (OP-CLXXX))', 144302), (155416, 155416, 103, 103, 'Compiled Algorithm (Bootleg Beamers ''n Bolters (OP-CXL))', 144301), (155417, 155417, 90, 90, 'Compiled Algorithm (Bootleg Beamers ''n Bolters (OP-CXX))', 144301), (155420, 155420, 34, 34, 'Compiled Algorithm (Bootleg Beamers ''n Bolters (OP-LX))', 144300), (155419, 155419, 54, 54, 'Compiled Algorithm (Bootleg Beamers ''n Bolters (OP-LXXX))', 144300), (155421, 155421, 21, 21, 'Compiled Algorithm (Bootleg Beamers ''n Bolters (OP-XL))', 144300), (155422, 155422, 8, 8, 'Compiled Algorithm (Bootleg Beamers ''n Bolters (OP-XX))', 144300), (155408, 155408, 67, 67, 'Compiled Algorithm (Bootleg Blades ''n Blunts (OP-C))', 144298), (155403, 155403, 120, 120, 'Compiled Algorithm (Bootleg Blades ''n Blunts (OP-CC))', 144299), (155405, 155405, 107, 107, 'Compiled Algorithm (Bootleg Blades ''n Blunts (OP-CLX))', 144299), (155404, 155404, 113, 113, 'Compiled Algorithm (Bootleg Blades ''n Blunts (OP-CLXXX))', 144299), (155406, 155406, 103, 103, 'Compiled Algorithm (Bootleg Blades ''n Blunts (OP-CXL))', 144298), (155407, 155407, 90, 90, 'Compiled Algorithm (Bootleg Blades ''n Blunts (OP-CXX))', 144298), (155410, 155410, 34, 34, 'Compiled Algorithm (Bootleg Blades ''n Blunts (OP-LX))', 144297), (155409, 155409, 54, 54, 'Compiled Algorithm (Bootleg Blades ''n Blunts (OP-LXXX))', 144297), (155411, 155411, 21, 21, 'Compiled Algorithm (Bootleg Blades ''n Blunts (OP-XL))', 144297), (155412, 155412, 8, 8, 'Compiled Algorithm (Bootleg Blades ''n Blunts (OP-XX))', 144297), (203937, 203937, 80, 80, 'Compiled Algorithm (Bought Freedom)', 83060), (203943, 203943, 160, 160, 'Compiled Algorithm (Bought Indulgence)', 83060), (146178, 146178, 149, 149, 'Compiled Algorithm (Boundless Humidity Extractor)', 83166), (146499, 146499, 97, 97, 'Compiled Algorithm (Brain Bender)', 83123), (146500, 146500, 50, 50, 'Compiled Algorithm (Brain Swap)', 83122), (145779, 145779, 142, 142, 'Compiled Algorithm (Brave Challenger to Behemoth)', 144216), (145780, 145780, 119, 119, 'Compiled Algorithm (Brave Challenger to Colossus)', 144214), (145784, 145784, 14, 14, 'Compiled Algorithm (Brave Challenger to Cyclops)', 83106), (145781, 145781, 76, 76, 'Compiled Algorithm (Brave Challenger to Gargantua)', 144213), (145782, 145782, 132, 132, 'Compiled Algorithm (Brave Challenger to Leviathan)', 144215), (145783, 145783, 40, 40, 'Compiled Algorithm (Brave Challenger to Titan)', 144212), (204014, 204014, 52, 52, 'Compiled Algorithm (Break Chains)', 83060), (203903, 203903, 149, 149, 'Compiled Algorithm (Bribe for Freedom)', 83060), (145331, 145331, 47, 47, 'Compiled Algorithm (Brief Interrogation)', 83127), (146179, 146179, 24, 24, 'Compiled Algorithm (Brief Poison Fog)', 83007), (146501, 146501, 33, 33, 'Compiled Algorithm (Bright Shiny Sparkling Thing)', 83122), (145785, 145785, 73, 73, 'Compiled Algorithm (Bristling Guard)', 83068), (145786, 145786, 10, 10, 'Compiled Algorithm (Bristling Shield)', 83068), (146180, 146180, 159, 159, 'Compiled Algorithm (Brutal Cornea Attack)', 83167), (145787, 145787, 76, 76, 'Compiled Algorithm (Brutal Thug)', 83052), (146502, 146502, 96, 96, 'Compiled Algorithm (Bulk Trader)', 83194), (146181, 146181, 189, 189, 'Compiled Algorithm (Burden of Atlas)', 83129), (146182, 146182, 93, 93, 'Compiled Algorithm (Burn From Within)', 83248), (146183, 146183, 182, 182, 'Compiled Algorithm (Burning Bones)', 83251), (146184, 146184, 57, 57, 'Compiled Algorithm (Burning Orb)', 83247), (146185, 146185, 126, 126, 'Compiled Algorithm (Burning Quartet)', 83249), (146186, 146186, 93, 93, 'Compiled Algorithm (Burning Triumvirate)', 83248), (204043, 204043, 63, 63, 'Compiled Algorithm (Burst Bonds (Other))', 83060), (203689, 203689, 53, 53, 'Compiled Algorithm (Burst Bonds)', 83060), (203704, 203704, 62, 62, 'Compiled Algorithm (Bypass Limitations)', 83060), (145219, 145219, 179, 179, 'Compiled Algorithm (Calia''s Form: Pit Lizard (Other))', 83185), (145220, 145220, 182, 182, 'Compiled Algorithm (Calia''s Form: Pit Lizard (Team))', 83185), (145218, 145218, 172, 172, 'Compiled Algorithm (Calia''s Form: Pit Lizard)', 83185), (145225, 145225, 165, 165, 'Compiled Algorithm (Calia''s Form: Sabretooth (Other))', 83183), (145226, 145226, 175, 175, 'Compiled Algorithm (Calia''s Form: Sabretooth (Team))', 83183), (145224, 145224, 159, 159, 'Compiled Algorithm (Calia''s Form: Sabretooth)', 83183), (145228, 145228, 159, 159, 'Compiled Algorithm (Calia''s Form: Wolf (Other))', 83189), (145229, 145229, 162, 162, 'Compiled Algorithm (Calia''s Form: Wolf (Team))', 83189), (145227, 145227, 156, 156, 'Compiled Algorithm (Calia''s Form: Wolf)', 83189), (144816, 144816, 156, 156, 'Compiled Algorithm (Calling of Altumus)', 144229), (144817, 144817, 186, 186, 'Compiled Algorithm (Calling of Belamorte)', 144230), (144831, 144831, 169, 169, 'Compiled Algorithm (Calling of Curatem The Grand)', 144229), (144832, 144832, 17, 17, 'Compiled Algorithm (Calling of Medinos)', 144227), (144833, 144833, 113, 113, 'Compiled Algorithm (Calling of Restite)', 144228), (144834, 144834, 37, 37, 'Compiled Algorithm (Calling of Salvinous)', 144227), (144835, 144835, 87, 87, 'Compiled Algorithm (Calling of Sanoo)', 144228), (144836, 144836, 143, 143, 'Compiled Algorithm (Calling of The Vivificator)', 144228), (202891, 202891, 197, 197, 'Compiled Algorithm (Calling of Thor)', 83052), (144837, 144837, 57, 57, 'Compiled Algorithm (Calling of Valentyia)', 144227), (145597, 145597, 33, 33, 'Compiled Algorithm (Cancerous Burrower)', 83076), (146503, 146503, 34, 34, 'Compiled Algorithm (Capable Health Haggler)', 83114), (145429, 145429, 66, 66, 'Compiled Algorithm (Captivate Crowd)', 83127), (145430, 145430, 109, 109, 'Compiled Algorithm (Captivated Thoughts)', 83192), (145431, 145431, 152, 152, 'Compiled Algorithm (Captivating Speech)', 83129), (145432, 145432, 40, 40, 'Compiled Algorithm (Capture Attention)', 83126), (146187, 146187, 175, 175, 'Compiled Algorithm (Cascade of the Storm)', 83245), (162764, 162764, 146, 146, 'Compiled Algorithm (Cellular Crashcart)', 83118), (146188, 146188, 40, 40, 'Compiled Algorithm (Cellular Decay)', 83235), (145598, 145598, 156, 156, 'Compiled Algorithm (Cellular Dismantlement)', 83081), (145599, 145599, 47, 47, 'Compiled Algorithm (Cellular Grafting)', 83114), (145600, 145600, 86, 86, 'Compiled Algorithm (Cellular Rebuild)', 83115), (145230, 145230, 83, 83, 'Compiled Algorithm (Cellular Reformation)', 83113), (145433, 145433, 165, 165, 'Compiled Algorithm (Chains of Iron)', 83121), (145789, 145789, 139, 139, 'Compiled Algorithm (Challenger to Behemoth)', 144216), (145790, 145790, 103, 103, 'Compiled Algorithm (Challenger to Colossus)', 144214), (145791, 145791, 4, 4, 'Compiled Algorithm (Challenger to Cyclops)', 83106), (145792, 145792, 66, 66, 'Compiled Algorithm (Challenger to Gargantua)', 144213), (145793, 145793, 132, 132, 'Compiled Algorithm (Challenger to Leviathan)', 144215), (145794, 145794, 33, 33, 'Compiled Algorithm (Challenger to Titan)', 144212), (144838, 144838, 130, 130, 'Compiled Algorithm (Chant of Effortless Strikes)', 83059), (144839, 144839, 87, 87, 'Compiled Algorithm (Chant of Frenzied Blows)', 83059), (146189, 146189, 139, 139, 'Compiled Algorithm (Chaos Lights)', 83243), (146190, 146190, 47, 47, 'Compiled Algorithm (Chaotic Entropy)', 83241), (155623, 155623, 173, 173, 'Compiled Algorithm (Character Assassin)', 83194), (145434, 145434, 169, 169, 'Compiled Algorithm (Charismatic Rapture)', 83192), (146191, 146191, 24, 24, 'Compiled Algorithm (Chemical Burn)', 83222), (145332, 145332, 63, 63, 'Compiled Algorithm (Chemical Concoction)', 83062), (146192, 146192, 103, 103, 'Compiled Algorithm (Chemical Liquefaction)', 83224), (144840, 144840, 116, 116, 'Compiled Algorithm (Chill Spear)', 83230), (146193, 146193, 33, 33, 'Compiled Algorithm (Chilling Stream)', 83228), (146068, 146068, 142, 142, 'Compiled Algorithm (Chirp of the Mournful Cricket)', 144313), (146195, 146195, 60, 60, 'Compiled Algorithm (Circle Scythe)', 83026), (145601, 145601, 149, 149, 'Compiled Algorithm (Circle of Renewal)', 83117), (146194, 146194, 50, 50, 'Compiled Algorithm (Circle of Winter)', 83002), (145602, 145602, 129, 129, 'Compiled Algorithm (Circulate Health)', 83116), (203707, 203707, 109, 109, 'Compiled Algorithm (Circumvent Restrictions)', 83060), (145867, 145867, 149, 149, 'Compiled Algorithm (Citadel of Spikes)', 83068), (146196, 146196, 7, 7, 'Compiled Algorithm (Claw Eyes)', 83167), (145603, 145603, 96, 96, 'Compiled Algorithm (Cleanse Wounds)', 83115), (145231, 145231, 37, 37, 'Compiled Algorithm (Cloak of Fire)', 83068), (161387, 161387, 129, 129, 'Compiled Algorithm (Cloak of Night)', 83066), (203680, 203680, 164, 164, 'Compiled Algorithm (Close Escape)', 83060), (145604, 145604, 90, 90, 'Compiled Algorithm (Close Wounds)', 83116), (145232, 145232, 1, 1, 'Compiled Algorithm (Coat of Barbs)', 83068), (146197, 146197, 40, 40, 'Compiled Algorithm (Coherent Nano Pathway)', 83060), (144841, 144841, 90, 90, 'Compiled Algorithm (Coherent Notum Web)', 83166), (204446, 204446, 193, 193, 'Compiled Algorithm (Coherent Polarized Screening)', 144169), (146198, 146198, 142, 142, 'Compiled Algorithm (Coherent Positron Stream)', 83244), (204464, 204464, 193, 193, 'Compiled Algorithm (Coherent Sloughing Assault Shield)', 82989), (204458, 204458, 133, 133, 'Compiled Algorithm (Coherent Sloughing Defensive Shield)', 82989), (204452, 204452, 83, 83, 'Compiled Algorithm (Coherent Sloughing Protective Barrier)', 82989), (146199, 146199, 63, 63, 'Compiled Algorithm (Cohesion Amplifier)', 83060), (146069, 146069, 132, 132, 'Compiled Algorithm (Cohort)', 83107), (146200, 146200, 146, 146, 'Compiled Algorithm (Collapsing Barrier)', 144167), (146201, 146201, 149, 149, 'Compiled Algorithm (Collapsing Hadron String)', 83268), (145605, 145605, 116, 116, 'Compiled Algorithm (Colossal Health)', 144175), (146413, 146413, 50, 50, 'Compiled Algorithm (Combat Barrier)', 144270), (146414, 146414, 33, 33, 'Compiled Algorithm (Combat Hardening)', 144175), (145868, 145868, 30, 30, 'Compiled Algorithm (Common Android)', 83170), (145869, 145869, 7, 7, 'Compiled Algorithm (Common Automaton)', 83170), (145870, 145870, 66, 66, 'Compiled Algorithm (Common Gladiatorbot)', 83175), (145871, 145871, 103, 103, 'Compiled Algorithm (Common Guardbot)', 83175), (145872, 145872, 146, 146, 'Compiled Algorithm (Common Warbot)', 83176), (145873, 145873, 165, 165, 'Compiled Algorithm (Common Warmachine)', 83177), (146504, 146504, 37, 37, 'Compiled Algorithm (Commonplace Delayed Health Payment)', 83114), (146202, 146202, 165, 165, 'Compiled Algorithm (Compacted Neutron Missile)', 83256), (145606, 145606, 37, 37, 'Compiled Algorithm (Company Policy)', 83113), (145607, 145607, 169, 169, 'Compiled Algorithm (Complete Healing)', 83119), (145608, 145608, 146, 146, 'Compiled Algorithm (Complex Nano Contagion)', 83081), (145609, 145609, 152, 152, 'Compiled Algorithm (Compress Wounds)', 83118), (146203, 146203, 70, 70, 'Compiled Algorithm (Compressed Shockwave)', 83254), (146204, 146204, 30, 30, 'Compiled Algorithm (Condensed Halon Jet)', 83228), (146205, 146205, 99, 99, 'Compiled Algorithm (Condensed Pellet of Fire)', 83248), (146206, 146206, 156, 156, 'Compiled Algorithm (Conduction Stream)', 83244), (203916, 203916, 128, 128, 'Compiled Algorithm (Conductive Spike)', 83060), (145610, 145610, 182, 182, 'Compiled Algorithm (Conglomerate Health Plan)', 83119), (145611, 145611, 146, 146, 'Compiled Algorithm (Constitution Magnification)', 144283), (145612, 145612, 106, 106, 'Compiled Algorithm (Consuming Toxin)', 83080), (145613, 145613, 106, 106, 'Compiled Algorithm (Consummate Carer)', 83115), (146003, 146003, 27, 27, 'Compiled Algorithm (Contact Poison)', 83280), (146207, 146207, 136, 136, 'Compiled Algorithm (Contained Plasma Sphere)', 83249), (155579, 155579, 189, 189, 'Compiled Algorithm (Contemplation)', 83125), (145614, 145614, 126, 126, 'Compiled Algorithm (Continuous Cellular Reconditioning)', 83115), (146505, 146505, 176, 176, 'Compiled Algorithm (Control Ends and Means)', 83125), (145874, 145874, 99, 99, 'Compiled Algorithm (Controlled Energy Overload)', 144311), (146208, 146208, 76, 76, 'Compiled Algorithm (Convergent Energy Beam)', 83242), (146209, 146209, 96, 96, 'Compiled Algorithm (Cornea Attack)', 83167), (146210, 146210, 132, 132, 'Compiled Algorithm (Coronet of Frost)', 83231), (145233, 145233, 132, 132, 'Compiled Algorithm (Corrosive Barrier)', 83068), (161898, 161898, 179, 179, 'Compiled Algorithm (Corrosive Cloud)', 83083), (146070, 146070, 37, 37, 'Compiled Algorithm (Corrosive Fists)', 144310), (146211, 146211, 10, 10, 'Compiled Algorithm (Corrosive Spray)', 83222), (146212, 146212, 103, 103, 'Compiled Algorithm (Corrupt Molecular Integrity)', 83236), (146213, 146213, 4, 4, 'Compiled Algorithm (Corruption)', 83076), (145795, 145795, 146, 146, 'Compiled Algorithm (Coruscating Screen)', 83068), (145616, 145616, 50, 50, 'Compiled Algorithm (Counteract Damage)', 83114), (145617, 145617, 86, 86, 'Compiled Algorithm (Course of Treatment)', 83114), (146004, 146004, 14, 14, 'Compiled Algorithm (Cracker''s Luck)', 83169), (146071, 146071, 10, 10, 'Compiled Algorithm (Crash of Thunder)', 83280), (155019, 155019, 116, 116, 'Compiled Algorithm (Creation: Asp of Semol)', 144298), (155018, 155018, 215, 215, 'Compiled Algorithm (Creation: Azure Cobra of Orma)', 144298), (155017, 155017, 147, 147, 'Compiled Algorithm (Creation: Belthior''s Flame Ward)', 144298), (155016, 155016, 136, 136, 'Compiled Algorithm (Creation: Bitis Striker)', 144298), (155013, 155013, 90, 90, 'Compiled Algorithm (Creation: Coplan''s Hand Taipan)', 144298), (155015, 155015, 177, 177, 'Compiled Algorithm (Creation: Death Ward)', 144298), (155014, 155014, 190, 190, 'Compiled Algorithm (Creation: Gold Acantophis)', 144298), (155012, 155012, 112, 112, 'Compiled Algorithm (Creation: Living Shield of Evernan)', 144298), (155011, 155011, 187, 187, 'Compiled Algorithm (Creation: Mocham''s Guard)', 144298), (155010, 155010, 72, 72, 'Compiled Algorithm (Creation: Notum Defender)', 144298), (155003, 155003, 205, 205, 'Compiled Algorithm (Creation: Shield of Asmodian)', 144298), (155008, 155008, 85, 85, 'Compiled Algorithm (Creation: Solar Guard)', 144298), (155007, 155007, 48, 48, 'Compiled Algorithm (Creation: The Crotalus)', 144298), (155006, 155006, 66, 66, 'Compiled Algorithm (Creation: Viper Staff)', 144298), (155005, 155005, 59, 59, 'Compiled Algorithm (Creation: Vital Bucker)', 144298), (155004, 155004, 129, 129, 'Compiled Algorithm (Creation: Wave Breaker)', 144298), (155009, 155009, 160, 160, 'Compiled Algorithm (Creation: Wixel''s Notum Python)', 144298), (145875, 145875, 20, 20, 'Compiled Algorithm (Crowbar Subtlety)', 83057), (203166, 203166, 68, 68, 'Compiled Algorithm (Crowd Disperser)', 83203), (146214, 146214, 156, 156, 'Compiled Algorithm (Crown of Frost)', 83232), (146215, 146215, 10, 10, 'Compiled Algorithm (CrunchCom Code Sieve)', 83166), (146217, 146217, 123, 123, 'Compiled Algorithm (CrunchCom Nano Compressor Pro)', 83166), (146216, 146216, 47, 47, 'Compiled Algorithm (CrunchCom Nano Compressor)', 83166), (145435, 145435, 110, 110, 'Compiled Algorithm (Crush Bravery)', 83200), (146218, 146218, 103, 103, 'Compiled Algorithm (Crystalizing Ray)', 83230), (145436, 145436, 103, 103, 'Compiled Algorithm (Cubicle Dweller)', 83124), (144842, 144842, 169, 169, 'Compiled Algorithm (Curse of Chronos)', 83121), (145618, 145618, 30, 30, 'Compiled Algorithm (Cursory Examination)', 83113), (146219, 146219, 47, 47, 'Compiled Algorithm (Curtain of Darkness)', 83167), (145619, 145619, 149, 149, 'Compiled Algorithm (Cycle of Life)', 83116), (145620, 145620, 179, 179, 'Compiled Algorithm (Cycle of Reconstruction)', 83119), (146415, 146415, 40, 40, 'Compiled Algorithm (Damage Amplifier)', 144311), (146416, 146416, 7, 7, 'Compiled Algorithm (Damage Multiplier)', 83280), (161441, 161441, 165, 165, 'Compiled Algorithm (Dance of the Dervish)', 83148), (146220, 146220, 90, 90, 'Compiled Algorithm (Dark Movement)', 83096), (145621, 145621, 47, 47, 'Compiled Algorithm (Dark Venom)', 83080), (145796, 145796, 133, 133, 'Compiled Algorithm (Deaden Pain)', 144168), (145333, 145333, 142, 142, 'Compiled Algorithm (Death''s Gaze)', 83121), (145334, 145334, 136, 136, 'Compiled Algorithm (Death''s Knocking)', 83083), (145622, 145622, 182, 182, 'Compiled Algorithm (Deathless Blessing)', 83119), (163108, 163108, 93, 93, 'Compiled Algorithm (Deck Recoder)', 83065), (145876, 145876, 179, 179, 'Compiled Algorithm (Decommissioned Wardroid)', 83177), (144843, 144843, 146, 146, 'Compiled Algorithm (Dedication of Thought)', 83194), (146221, 146221, 76, 76, 'Compiled Algorithm (Deep Chemical Burn)', 83224), (146222, 146222, 17, 17, 'Compiled Algorithm (Deep Slash)', 83252), (146506, 146506, 74, 74, 'Compiled Algorithm (Deep Thought)', 83123), (145624, 145624, 159, 159, 'Compiled Algorithm (Deep Tissue Repair)', 83119), (145625, 145625, 169, 169, 'Compiled Algorithm (Deep Wound Cleanser)', 83118), (155621, 155621, 130, 130, 'Compiled Algorithm (Defamation 101)', 83194), (145877, 145877, 83, 83, 'Compiled Algorithm (Defensive Screen)', 144167), (146418, 146418, 37, 37, 'Compiled Algorithm (Deflection Shield (Extended))', 144276), (146417, 146417, 33, 33, 'Compiled Algorithm (Deflection Shield)', 144276), (145335, 145335, 57, 57, 'Compiled Algorithm (Delay Pursuers)', 83131), (146005, 146005, 60, 60, 'Compiled Algorithm (Delay Retreat)', 83127), (145336, 145336, 63, 63, 'Compiled Algorithm (Delay the Inevitable)', 83127), (145337, 145337, 169, 169, 'Compiled Algorithm (Delayed Assassin)', 83084), (146507, 146507, 70, 70, 'Compiled Algorithm (Delayed Health Payment)', 83115), (203996, 203996, 169, 169, 'Compiled Algorithm (Demand Freedom)', 83060), (204020, 204020, 154, 154, 'Compiled Algorithm (Demolish Shackles)', 83060), (145438, 145438, 80, 80, 'Compiled Algorithm (Demotivate)', 83123), (157555, 157555, 113, 113, 'Compiled Algorithm (Demotivational Speech: 10 Thumbs)', 83048), (157571, 157571, 83, 83, 'Compiled Algorithm (Demotivational Speech: Administrative Error)', 83166), (157570, 157570, 179, 179, 'Compiled Algorithm (Demotivational Speech: Certainty of Defeat)', 83048), (157569, 157569, 34, 34, 'Compiled Algorithm (Demotivational Speech: Factory Recall)', 83166), (157568, 157568, 21, 21, 'Compiled Algorithm (Demotivational Speech: Fumble Fingers)', 83048), (157567, 157567, 44, 44, 'Compiled Algorithm (Demotivational Speech: Let''s Make a Committee)', 83165), (157566, 157566, 186, 186, 'Compiled Algorithm (Demotivational Speech: Mourner''s March)', 83165), (157564, 157564, 182, 182, 'Compiled Algorithm (Demotivational Speech: Retreat to Glory)', 83166), (157563, 157563, 126, 126, 'Compiled Algorithm (Demotivational Speech: Surge in the System)', 83166), (157562, 157562, 159, 159, 'Compiled Algorithm (Demotivational Speech: Swapdisk Mayhem)', 83166), (157565, 157565, 100, 100, 'Compiled Algorithm (Demotivational Speech: That is not on the Agenda)', 83165), (157561, 157561, 153, 153, 'Compiled Algorithm (Demotivational Speech: Who Writes the Minutes?)', 83165), (146224, 146224, 86, 86, 'Compiled Algorithm (Dense Matter Missile MK II)', 83260), (146223, 146223, 43, 43, 'Compiled Algorithm (Dense Matter Missile)', 83259), (146225, 146225, 103, 103, 'Compiled Algorithm (Dense Poison Fog)', 83009), (156147, 156147, 41, 41, 'Compiled Algorithm (Deranged Mindreaver)', 144232), (146006, 146006, 73, 73, 'Compiled Algorithm (Detailed Medical Claim)', 83114), (146515, 146515, 109, 109, 'Compiled Algorithm (Detain Customer)', 83127), (145338, 145338, 1, 1, 'Compiled Algorithm (Detain Suspect)', 83126), (146072, 146072, 142, 142, 'Compiled Algorithm (Diamond Skin)', 144221), (161438, 161438, 139, 139, 'Compiled Algorithm (Dichotomy of Nature)', 83148), (145626, 145626, 140, 140, 'Compiled Algorithm (Digitizing Sequencer)', 83270), (204029, 204029, 166, 166, 'Compiled Algorithm (Dire Circumstance)', 83060), (145439, 145439, 142, 142, 'Compiled Algorithm (Director-Grade Administrator-Droid)', 83177), (145440, 145440, 90, 90, 'Compiled Algorithm (Director-Grade Aide-Droid)', 83176), (145441, 145441, 66, 66, 'Compiled Algorithm (Director-Grade Assistant-Droid)', 83175), (145442, 145442, 43, 43, 'Compiled Algorithm (Director-Grade Attendant-Droid)', 83175), (145443, 145443, 169, 169, 'Compiled Algorithm (Director-Grade Bodyguard)', 83177), (145444, 145444, 27, 27, 'Compiled Algorithm (Director-Grade Helper-Droid)', 83170), (145445, 145445, 156, 156, 'Compiled Algorithm (Director-Grade Minion)', 83177), (145446, 145446, 123, 123, 'Compiled Algorithm (Director-Grade Secretary-Droid)', 83176), (145447, 145447, 14, 14, 'Compiled Algorithm (Director-Grade Worker-Droid)', 83170), (146073, 146073, 33, 33, 'Compiled Algorithm (Dirty Fighter)', 83056), (145448, 145448, 149, 149, 'Compiled Algorithm (Disciplinary Action)', 83243), (146226, 146226, 129, 129, 'Compiled Algorithm (Discourage Involvement)', 83124), (145449, 145449, 175, 175, 'Compiled Algorithm (Disjointed From Reality)', 83125), (145450, 145450, 162, 162, 'Compiled Algorithm (Disjointed Psyche)', 83124), (146227, 146227, 106, 106, 'Compiled Algorithm (Dispersed Nanoblade Cloud)', 83255), (145451, 145451, 189, 189, 'Compiled Algorithm (Displace Thought Patterns)', 83192), (145452, 145452, 185, 185, 'Compiled Algorithm (Disrupted Psyche)', 83125), (154756, 154756, 113, 113, 'Compiled Algorithm (Disruptive Barrier Negator)', 144187), (154755, 154755, 107, 107, 'Compiled Algorithm (Disruptive Cocoon Harmonics)', 144181), (154754, 154754, 41, 41, 'Compiled Algorithm (Disruptive Field Harmonics)', 144180), (154753, 154753, 17, 17, 'Compiled Algorithm (Disruptive Field Negator)', 144185), (154752, 154752, 156, 156, 'Compiled Algorithm (Disruptive Phase Harmonics)', 144182), (154751, 154751, 83, 83, 'Compiled Algorithm (Disruptive Photon Absorber)', 144171), (154750, 154750, 149, 149, 'Compiled Algorithm (Disruptive Photon Annihilator)', 144172), (154749, 154749, 41, 41, 'Compiled Algorithm (Disruptive Photon Deflector)', 144171), (154748, 154748, 120, 120, 'Compiled Algorithm (Disruptive Photon Devourer)', 144172), (154747, 154747, 153, 153, 'Compiled Algorithm (Disruptive Retaliatory Negator)', 144188), (154746, 154746, 182, 182, 'Compiled Algorithm (Disruptive Retributive Negator)', 144189), (154745, 154745, 57, 57, 'Compiled Algorithm (Disruptive Shielding Negator)', 144186), (154744, 154744, 166, 166, 'Compiled Algorithm (Disruptive Void Projector)', 144173), (145627, 145627, 10, 10, 'Compiled Algorithm (Dissolve Molecular Bonding)', 83076), (146228, 146228, 109, 109, 'Compiled Algorithm (Dissolving Sphere)', 83225), (146517, 146517, 20, 20, 'Compiled Algorithm (Distract with Trinkets)', 83122), (145453, 145453, 10, 10, 'Compiled Algorithm (Distracted Gaze)', 83122), (146518, 146518, 47, 47, 'Compiled Algorithm (Distracting Baubles)', 83123), (146074, 146074, 53, 53, 'Compiled Algorithm (Distracting Nuisance)', 83090), (156161, 156161, 11, 11, 'Compiled Algorithm (Distracting Sphere)', 144231), (145628, 145628, 175, 175, 'Compiled Algorithm (Distributed Care)', 83119), (161417, 161417, 169, 169, 'Compiled Algorithm (Division of the Winds)', 83202), (145629, 145629, 7, 7, 'Compiled Algorithm (Doctor''s Grace)', 83112), (203674, 203674, 57, 57, 'Compiled Algorithm (Dodge Persuers)', 83060), (145797, 145797, 150, 150, 'Compiled Algorithm (Dominate Foe)', 83200), (145454, 145454, 47, 47, 'Compiled Algorithm (Dominate Psyche)', 83192), (144844, 144844, 142, 142, 'Compiled Algorithm (Dominate: BioMet)', 83051), (144845, 144845, 142, 142, 'Compiled Algorithm (Dominate: MatCrea)', 83153), (144847, 144847, 139, 139, 'Compiled Algorithm (Dominate: MatMet)', 83155), (144848, 144848, 142, 142, 'Compiled Algorithm (Dominate: PsyMod)', 83193), (144849, 144849, 142, 142, 'Compiled Algorithm (Dominate: SenseImp)', 83201), (144846, 144846, 139, 139, 'Compiled Algorithm (Dominate: SpaceTime)', 83154), (144850, 144850, 14, 14, 'Compiled Algorithm (Douse Anger)', 144311), (162767, 162767, 152, 152, 'Compiled Algorithm (Dr Hack ''n Quack)', 83119), (146527, 146527, 159, 159, 'Compiled Algorithm (Draw AC (Advanced))', 144183), (146528, 146528, 165, 165, 'Compiled Algorithm (Draw AC (Greater))', 144183), (146529, 146529, 179, 179, 'Compiled Algorithm (Draw AC (Invasive))', 144184), (146530, 146530, 149, 149, 'Compiled Algorithm (Draw AC (Major))', 144182), (146531, 146531, 113, 113, 'Compiled Algorithm (Draw AC (Minor))', 144181), (146532, 146532, 93, 93, 'Compiled Algorithm (Draw AC (Weak))', 144180), (146526, 146526, 136, 136, 'Compiled Algorithm (Draw AC)', 144181), (146419, 146419, 14, 14, 'Compiled Algorithm (Draw Attention)', 83090), (145630, 145630, 10, 10, 'Compiled Algorithm (Dress Wounds)', 83112), (145455, 145455, 37, 37, 'Compiled Algorithm (Drill Missile)', 83258), (145456, 145456, 136, 136, 'Compiled Algorithm (Droid Overhaul)', 83113), (145457, 145457, 70, 70, 'Compiled Algorithm (Droid Repair)', 83112), (146229, 146229, 20, 20, 'Compiled Algorithm (Dual Energized Beams)', 83240), (146230, 146230, 60, 60, 'Compiled Algorithm (Dual Ion Stream)', 83265), (146533, 146533, 99, 99, 'Compiled Algorithm (Dubious Accounting)', 83192), (145234, 145234, 76, 76, 'Compiled Algorithm (Eagle Eye)', 83169), (144851, 144851, 24, 24, 'Compiled Algorithm (Ease of Execution)', 83166), (145631, 145631, 50, 50, 'Compiled Algorithm (Easing Touch)', 83113), (202824, 202824, 173, 173, 'Compiled Algorithm (Edge of Diamond)', 83202), (202799, 202799, 89, 89, 'Compiled Algorithm (Edge of Molybdenum)', 83202), (202796, 202796, 133, 133, 'Compiled Algorithm (Edge of Titanium)', 83202), (202778, 202778, 59, 59, 'Compiled Algorithm (Edge of the Buccaneer)', 83202), (146231, 146231, 80, 80, 'Compiled Algorithm (Efficient Humidity Extractor)', 83166), (146420, 146420, 4, 4, 'Compiled Algorithm (Ego Taunt)', 83090), (145878, 145878, 24, 24, 'Compiled Algorithm (Electrical Chastiser)', 83068), (145879, 145879, 76, 76, 'Compiled Algorithm (Electrical Discharge Field)', 83068), (146232, 146232, 185, 185, 'Compiled Algorithm (Electrifying Containment)', 83245), (161886, 161886, 60, 60, 'Compiled Algorithm (Eleet Friend)', 144247), (146534, 146534, 31, 31, 'Compiled Algorithm (Elementary Delayed Health Payment)', 83113), (145632, 145632, 14, 14, 'Compiled Algorithm (Elementary Nano Contagion)', 83076), (146075, 146075, 37, 37, 'Compiled Algorithm (Elusive Target)', 83096), (146535, 146535, 76, 76, 'Compiled Algorithm (Embrace of Greed)', 83127), (146007, 146007, 27, 27, 'Compiled Algorithm (Embrace of Shadows)', 83066), (145633, 145633, 162, 162, 'Compiled Algorithm (Emergency Medical Response)', 83119), (145634, 145634, 4, 4, 'Compiled Algorithm (Emergency Stitching)', 83112), (146233, 146233, 142, 142, 'Compiled Algorithm (Encircle With Blades)', 83256), (145635, 145635, 80, 80, 'Compiled Algorithm (Encode DNA Sequence)', 83270), (146076, 146076, 86, 86, 'Compiled Algorithm (Encourage Hatred)', 83090), (145235, 145235, 86, 86, 'Compiled Algorithm (Encourage Regrowth)', 83114), (203928, 203928, 40, 40, 'Compiled Algorithm (Energize Shell)', 83060), (146234, 146234, 4, 4, 'Compiled Algorithm (Energized Beam)', 83240), (145458, 145458, 4, 4, 'Compiled Algorithm (Energized Bolt)', 83241), (203922, 203922, 197, 197, 'Compiled Algorithm (Energized Casing of the Faithful Servant)', 83060), (146235, 146235, 113, 113, 'Compiled Algorithm (Energized Collapse)', 83267), (146077, 146077, 20, 20, 'Compiled Algorithm (Energized Fists)', 83280), (145880, 145880, 113, 113, 'Compiled Algorithm (Energy Cocoon)', 83068), (146236, 146236, 53, 53, 'Compiled Algorithm (Energy Projectile)', 83241), (145881, 145881, 37, 37, 'Compiled Algorithm (Energy Spike)', 144310), (145459, 145459, 63, 63, 'Compiled Algorithm (Enforce Rest Break)', 83127), (146536, 146536, 40, 40, 'Compiled Algorithm (Enforced Loan)', 83192), (145460, 145460, 60, 60, 'Compiled Algorithm (Enforced Sloth)', 83131), (150644, 150644, 156, 156, 'Compiled Algorithm (Enfraam''s Augmented Fortification)', 144221), (150654, 150654, 47, 47, 'Compiled Algorithm (Enfraam''s Fortification)', 144218), (150653, 150653, 140, 140, 'Compiled Algorithm (Enfraam''s Glorious Fortification)', 144221), (150652, 150652, 93, 93, 'Compiled Algorithm (Enfraam''s Greater Fortification)', 144220), (150651, 150651, 37, 37, 'Compiled Algorithm (Enfraam''s Lesser Fortification)', 144218), (150650, 150650, 80, 80, 'Compiled Algorithm (Enfraam''s Major Fortification)', 144219), (150649, 150649, 24, 24, 'Compiled Algorithm (Enfraam''s Minor Fortification)', 144217), (150648, 150648, 166, 166, 'Compiled Algorithm (Enfraam''s Perfected Fortification)', 144222), (150647, 150647, 60, 60, 'Compiled Algorithm (Enfraam''s Superior Fortification)', 144219), (150646, 150646, 113, 113, 'Compiled Algorithm (Enfraam''s Supreme Fortification)', 144220), (205163, 205163, 80, 80, 'Compiled Algorithm (Enfraam''s Toolkit)', 83164), (150645, 150645, 14, 14, 'Compiled Algorithm (Enfraam''s Trivial Fortification)', 144217), (144852, 144852, 47, 47, 'Compiled Algorithm (Engrossing Activity)', 83194), (146237, 146237, 149, 149, 'Compiled Algorithm (Engulf in Flame)', 83250), (205276, 205276, 158, 158, 'Compiled Algorithm (Enhance Aggression Subsystem)', 83172), (205261, 205261, 56, 56, 'Compiled Algorithm (Enhance Combat Array)', 83172), (145636, 145636, 27, 27, 'Compiled Algorithm (Enhance Constitution)', 144175), (146238, 146238, 20, 20, 'Compiled Algorithm (Enhance Nano Cohesion)', 83060), (146239, 146239, 4, 4, 'Compiled Algorithm (Enhance Nano Communication)', 83060), (145637, 145637, 1, 1, 'Compiled Algorithm (Enhance Team Health)', 144175), (145638, 145638, 14, 14, 'Compiled Algorithm (Enhanced First Aid)', 83101), (145639, 145639, 132, 132, 'Compiled Algorithm (Enhanced Health Surge)', 144283), (145339, 145339, 27, 27, 'Compiled Algorithm (Enhanced Senses)', 83200), (160850, 160850, 126, 126, 'Compiled Algorithm (Enhanced Sureshot)', 82990), (160853, 160853, 146, 146, 'Compiled Algorithm (Enhanced Trueshot)', 82990), (145640, 145640, 37, 37, 'Compiled Algorithm (Enlarge)', 83209), (146078, 146078, 142, 142, 'Compiled Algorithm (Enlightened Aura of Healing)', 83115), (144853, 144853, 159, 159, 'Compiled Algorithm (Enmity Personification)', 144226), (146422, 146422, 30, 30, 'Compiled Algorithm (Enraged Mind)', 83090), (145461, 145461, 149, 149, 'Compiled Algorithm (Enrapturing Bondage)', 83192), (145236, 145236, 24, 24, 'Compiled Algorithm (Enshroud with Barbs)', 83068), (145340, 145340, 142, 142, 'Compiled Algorithm (Entrap Victim)', 83129), (146537, 146537, 182, 182, 'Compiled Algorithm (Entrepreneurial Thrall)', 83129), (146240, 146240, 30, 30, 'Compiled Algorithm (Entropy Beam)', 83240), (145882, 145882, 149, 149, 'Compiled Algorithm (Entropy Weapon)', 144312), (146241, 146241, 57, 57, 'Compiled Algorithm (Enveloping Darkness)', 83167), (145462, 145462, 162, 162, 'Compiled Algorithm (Erasing Ray)', 83243), (146242, 146242, 76, 76, 'Compiled Algorithm (Eroding Spray)', 83224), (145463, 145463, 142, 142, 'Compiled Algorithm (Erratic Laser)', 83242), (204037, 204037, 73, 73, 'Compiled Algorithm (Escape Captivation)', 83060), (145798, 145798, 152, 152, 'Compiled Algorithm (Essence of Behemoth)', 144179), (145799, 145799, 33, 33, 'Compiled Algorithm (Essence of Boundless Health)', 144175), (145800, 145800, 132, 132, 'Compiled Algorithm (Essence of Colossus)', 144178), (145801, 145801, 57, 57, 'Compiled Algorithm (Essence of Cyclops)', 144176), (145802, 145802, 123, 123, 'Compiled Algorithm (Essence of Gargantua)', 144177), (145237, 145237, 169, 169, 'Compiled Algorithm (Essence of Life)', 83115), (145805, 145805, 24, 24, 'Compiled Algorithm (Essence of Might)', 144175), (145807, 145807, 14, 14, 'Compiled Algorithm (Essence of Vitality)', 83053), (146079, 146079, 162, 162, 'Compiled Algorithm (Eternal Enmity)', 83090), (203710, 203710, 146, 146, 'Compiled Algorithm (Evade Responsibility)', 83060), (203677, 203677, 110, 110, 'Compiled Algorithm (Evade the Chase)', 83060), (146243, 146243, 152, 152, 'Compiled Algorithm (Eviscerate Eyes)', 83167), (205200, 205200, 85, 85, 'Compiled Algorithm (Evocation of Fathomless Rage)', 83142), (205203, 205203, 115, 115, 'Compiled Algorithm (Evocation of Implacable Hatred)', 83142), (205206, 205206, 140, 140, 'Compiled Algorithm (Evocation of Maddening Wrath)', 83142), (205209, 205209, 177, 177, 'Compiled Algorithm (Evocation of Pure Malevolence)', 83142), (205212, 205212, 58, 58, 'Compiled Algorithm (Evocation of Relentless Fury)', 83142), (205215, 205215, 200, 200, 'Compiled Algorithm (Evocation of The Abomination)', 83142), (205218, 205218, 34, 34, 'Compiled Algorithm (Evocation of Unleashed Malice)', 83142), (205221, 205221, 16, 16, 'Compiled Algorithm (Evocation of Unrestrained Ferocity)', 83142), (145641, 145641, 80, 80, 'Compiled Algorithm (Exaggerated Health)', 144175), (146538, 146538, 169, 169, 'Compiled Algorithm (Exceptional Delayed Health Payment)', 83119), (145464, 145464, 139, 139, 'Compiled Algorithm (Executive-Grade Administrator-Droid)', 83176), (145465, 145465, 86, 86, 'Compiled Algorithm (Executive-Grade Aide-Droid)', 83176), (145466, 145466, 63, 63, 'Compiled Algorithm (Executive-Grade Assistant-Droid)', 83175), (145467, 145467, 40, 40, 'Compiled Algorithm (Executive-Grade Attendant-Droid)', 83175), (145468, 145468, 169, 169, 'Compiled Algorithm (Executive-Grade Bodyguard)', 83177), (145469, 145469, 24, 24, 'Compiled Algorithm (Executive-Grade Helper-Droid)', 83170), (145470, 145470, 152, 152, 'Compiled Algorithm (Executive-Grade Minion)', 83177), (145471, 145471, 119, 119, 'Compiled Algorithm (Executive-Grade Secretary-Droid)', 83176), (145472, 145472, 10, 10, 'Compiled Algorithm (Executive-Grade Worker-Droid)', 83170), (203882, 203882, 107, 107, 'Compiled Algorithm (Exoskeleton Pulse)', 83060), (146244, 146244, 70, 70, 'Compiled Algorithm (Expanding Neutron Pulse)', 83041), (145643, 145643, 103, 103, 'Compiled Algorithm (Experimental Panacea)', 83116), (146539, 146539, 97, 97, 'Compiled Algorithm (Expert Health Haggler)', 83117), (146540, 146540, 50, 50, 'Compiled Algorithm (Extended Line of Credit)', 83192), (145883, 145883, 139, 139, 'Compiled Algorithm (Extreme Prejudice)', 83111), (146245, 146245, 169, 169, 'Compiled Algorithm (Eye of Light)', 83079), (146246, 146246, 139, 139, 'Compiled Algorithm (Eyeblighter)', 83167), (145341, 145341, 77, 77, 'Compiled Algorithm (Face Graft)', 83270), (145473, 145473, 57, 57, 'Compiled Algorithm (Face in the Crowd)', 83066), (145808, 145808, 150, 150, 'Compiled Algorithm (Failing Impregnability)', 144170), (145474, 145474, 132, 132, 'Compiled Algorithm (Faithful Administrator-Droid)', 83176), (145475, 145475, 76, 76, 'Compiled Algorithm (Faithful Aide-Droid)', 83175), (145476, 145476, 53, 53, 'Compiled Algorithm (Faithful Assistant-Droid)', 83175), (145477, 145477, 33, 33, 'Compiled Algorithm (Faithful Attendant-Droid)', 83175), (145478, 145478, 162, 162, 'Compiled Algorithm (Faithful Bodyguard)', 83177), (145479, 145479, 17, 17, 'Compiled Algorithm (Faithful Helper-Droid)', 83170), (145480, 145480, 146, 146, 'Compiled Algorithm (Faithful Minion)', 83177), (145481, 145481, 106, 106, 'Compiled Algorithm (Faithful Secretary-Droid)', 83176), (145482, 145482, 4, 4, 'Compiled Algorithm (Faithful Worker-Droid)', 83170), (145342, 145342, 17, 17, 'Compiled Algorithm (False Profession: Adventurer)', 83210), (145343, 145343, 33, 33, 'Compiled Algorithm (False Profession: Bureaucrat)', 83210), (145344, 145344, 30, 30, 'Compiled Algorithm (False Profession: Doctor)', 83210), (145352, 145352, 10, 10, 'Compiled Algorithm (False Profession: Enforcer)', 83210), (145345, 145345, 20, 20, 'Compiled Algorithm (False Profession: Engineer)', 83210), (145350, 145350, 24, 24, 'Compiled Algorithm (False Profession: Fixer)', 83210), (145346, 145346, 14, 14, 'Compiled Algorithm (False Profession: Martial Artist)', 83210), (145347, 145347, 37, 37, 'Compiled Algorithm (False Profession: Meta-Physicist)', 83210), (145348, 145348, 40, 40, 'Compiled Algorithm (False Profession: Nanotechnician)', 83210), (145349, 145349, 14, 14, 'Compiled Algorithm (False Profession: Soldier)', 83210), (145351, 145351, 27, 27, 'Compiled Algorithm (False Profession: Trader)', 83210), (146009, 146009, 30, 30, 'Compiled Algorithm (Falsify Medical Records)', 83113), (161435, 161435, 93, 93, 'Compiled Algorithm (Fangs of the Snake)', 83148), (145644, 145644, 80, 80, 'Compiled Algorithm (Fast Team Tissue Repair)', 83114), (145483, 145483, 169, 169, 'Compiled Algorithm (Fear of Attention)', 83128), (145809, 145809, 37, 37, 'Compiled Algorithm (Fearsome Shout)', 83200), (145884, 145884, 20, 20, 'Compiled Algorithm (Feeble Android)', 83170), (145885, 145885, 1, 1, 'Compiled Algorithm (Feeble Automaton)', 83170), (146247, 146247, 7, 7, 'Compiled Algorithm (Feeble Blade Chaos)', 83252), (146541, 146541, 8, 8, 'Compiled Algorithm (Feeble Delayed Health Payment)', 83112), (145886, 145886, 47, 47, 'Compiled Algorithm (Feeble Gladiatorbot)', 83175), (146248, 146248, 90, 90, 'Compiled Algorithm (Feeble Gravitational Anomaly)', 83254), (145887, 145887, 90, 90, 'Compiled Algorithm (Feeble Guardbot)', 83175), (145888, 145888, 129, 129, 'Compiled Algorithm (Feeble Warbot)', 83176), (145889, 145889, 156, 156, 'Compiled Algorithm (Feeble Warmachine)', 83176), (204530, 204530, 90, 90, 'Compiled Algorithm (Feelings of Mortality)', 83113), (146249, 146249, 73, 73, 'Compiled Algorithm (Feet of Iron)', 83127), (146250, 146250, 165, 165, 'Compiled Algorithm (Feet of Lead)', 83129), (146251, 146251, 14, 14, 'Compiled Algorithm (Feet of Stone)', 83126), (145353, 145353, 53, 53, 'Compiled Algorithm (Feline Grace)', 83070), (162342, 162342, 146, 146, 'Compiled Algorithm (Feline Rage)', 144311), (146252, 146252, 162, 162, 'Compiled Algorithm (Ferocious Impactor Missile)', 83262), (145646, 145646, 10, 10, 'Compiled Algorithm (Field Dressings)', 83112), (145890, 145890, 120, 120, 'Compiled Algorithm (Field Workshop)', 83116), (145811, 145811, 20, 20, 'Compiled Algorithm (Field of Sparks)', 83068), (146253, 146253, 142, 142, 'Compiled Algorithm (Fiery Blast)', 83249), (145238, 145238, 136, 136, 'Compiled Algorithm (Fiery Vengeance)', 83068), (145239, 145239, 63, 63, 'Compiled Algorithm (Fiery Wrap)', 83068), (146542, 146542, 126, 126, 'Compiled Algorithm (Fine Tuning)', 144312), (146254, 146254, 27, 27, 'Compiled Algorithm (Fire Snake)', 83246), (146255, 146255, 7, 7, 'Compiled Algorithm (Fire Stream)', 83246), (145240, 145240, 30, 30, 'Compiled Algorithm (Firefly''s Fury)', 83068), (146080, 146080, 96, 96, 'Compiled Algorithm (First Strike)', 83139), (145647, 145647, 116, 116, 'Compiled Algorithm (First-Degree Burns)', 83249), (146081, 146081, 66, 66, 'Compiled Algorithm (Fists of Fire)', 144311), (146082, 146082, 47, 47, 'Compiled Algorithm (Fists of Shocking Touch)', 144310), (146083, 146083, 165, 165, 'Compiled Algorithm (Fists of Stellar Harmony)', 144314), (146084, 146084, 146, 146, 'Compiled Algorithm (Fists of the Lightning Crane)', 144313), (146085, 146085, 86, 86, 'Compiled Algorithm (Fists of the Maelstrom)', 144311), (146086, 146086, 106, 106, 'Compiled Algorithm (Fists of the Polar Star)', 144312), (146087, 146087, 126, 126, 'Compiled Algorithm (Fists of the Sorrowful Toad)', 144312), (145891, 145891, 27, 27, 'Compiled Algorithm (Flawed Android)', 83170), (145892, 145892, 4, 4, 'Compiled Algorithm (Flawed Automaton)', 83170), (145893, 145893, 20, 20, 'Compiled Algorithm (Flawed Defensive Screen)', 83046), (145894, 145894, 156, 156, 'Compiled Algorithm (Flawed Force Field)', 144169), (145895, 145895, 63, 63, 'Compiled Algorithm (Flawed Gladiatorbot)', 83175), (145896, 145896, 99, 99, 'Compiled Algorithm (Flawed Guardbot)', 83175), (145897, 145897, 14, 14, 'Compiled Algorithm (Flawed Protective Field)', 83046), (145898, 145898, 7, 7, 'Compiled Algorithm (Flawed Shielding Barrier)', 83046), (145899, 145899, 146, 146, 'Compiled Algorithm (Flawed Warbot)', 83176), (145900, 145900, 162, 162, 'Compiled Algorithm (Flawed Warmachine)', 83177), (146010, 146010, 129, 129, 'Compiled Algorithm (Flawless Medical Claim)', 83116), (145241, 145241, 143, 143, 'Compiled Algorithm (Flawless Stitching)', 83114), (146088, 146088, 83, 83, 'Compiled Algorithm (Fleet Foot)', 83096), (146256, 146256, 182, 182, 'Compiled Algorithm (Fleeting Immunity)', 144169), (146543, 146543, 132, 132, 'Compiled Algorithm (Flow of Time)', 83128), (203716, 203716, 88, 88, 'Compiled Algorithm (Fluctuate Manifestation)', 83060), (145812, 145812, 60, 60, 'Compiled Algorithm (Focused Anger)', 83049), (146257, 146257, 116, 116, 'Compiled Algorithm (Focused Ray)', 83243), (145901, 145901, 169, 169, 'Compiled Algorithm (Force Field)', 144169), (203227, 203227, 63, 63, 'Compiled Algorithm (Force of the Thunderclap)', 83092), (146544, 146544, 185, 185, 'Compiled Algorithm (Forced Bankruptcy)', 83192), (146089, 146089, 165, 165, 'Compiled Algorithm (Form of Tessai)', 144222), (160871, 160871, 179, 179, 'Compiled Algorithm (Form of The Executioner)', 144314), (145813, 145813, 120, 120, 'Compiled Algorithm (Fortify)', 144167), (145902, 145902, 175, 175, 'Compiled Algorithm (Fortress of Spikes)', 83068), (204052, 204052, 198, 198, 'Compiled Algorithm (Fortune''s Smile)', 83060), (146258, 146258, 90, 90, 'Compiled Algorithm (Foul Bane)', 83236), (146259, 146259, 162, 162, 'Compiled Algorithm (Foul Eyeblighter)', 83167), (146090, 146090, 169, 169, 'Compiled Algorithm (Four Fists of Kali)', 83108), (145245, 145245, 43, 43, 'Compiled Algorithm (Free Movement)', 83163), (146260, 146260, 96, 96, 'Compiled Algorithm (Freezing Surge)', 83230), (144854, 144854, 129, 129, 'Compiled Algorithm (Frenzy Embodiment)', 144225), (162348, 162348, 179, 179, 'Compiled Algorithm (Frenzy of Fur)', 144313), (162514, 162514, 169, 169, 'Compiled Algorithm (Frenzy of Shells)', 83158), (146545, 146545, 20, 20, 'Compiled Algorithm (Frequent Customer)', 83065), (144855, 144855, 64, 64, 'Compiled Algorithm (Frigid Blast)', 83229), (146261, 146261, 159, 159, 'Compiled Algorithm (Frigid Landscape)', 83005), (144856, 144856, 17, 17, 'Compiled Algorithm (Frost Slivers)', 83228), (145246, 145246, 7, 7, 'Compiled Algorithm (Frost With Snow)', 83068), (146262, 146262, 43, 43, 'Compiled Algorithm (Frosty Welcome)', 83229), (146263, 146263, 185, 185, 'Compiled Algorithm (Full-Body Acid Coating)', 83227), (146264, 146264, 83, 83, 'Compiled Algorithm (Furious Assault)', 83260), (146265, 146265, 103, 103, 'Compiled Algorithm (Furious Wind Blade)', 83255), (144857, 144857, 20, 20, 'Compiled Algorithm (Fury Externalization)', 144223), (205312, 205312, 71, 71, 'Compiled Algorithm (Gallant Hero: The Aggravated Servant)', 83172), (205318, 205318, 110, 110, 'Compiled Algorithm (Gallant Hero: The Angry Servitor)', 83172), (205321, 205321, 131, 131, 'Compiled Algorithm (Gallant Hero: The Bitter Clerk)', 83172), (205306, 205306, 30, 30, 'Compiled Algorithm (Gallant Hero: The Enraged Drone)', 83172), (205327, 205327, 173, 173, 'Compiled Algorithm (Gallant Hero: The Incensed Retainer)', 83172), (205315, 205315, 92, 92, 'Compiled Algorithm (Gallant Hero: The Indignant Flunky)', 83172), (205309, 205309, 52, 52, 'Compiled Algorithm (Gallant Hero: The Infuriated Minion)', 83172), (205324, 205324, 152, 152, 'Compiled Algorithm (Gallant Hero: The Irate Attache)', 83172), (205330, 205330, 199, 199, 'Compiled Algorithm (Gallant Hero: The Vengeful Butler)', 83172), (146266, 146266, 37, 37, 'Compiled Algorithm (Gaping Puncture)', 83259), (145648, 145648, 165, 165, 'Compiled Algorithm (Gargantuan Health)', 144175), (162330, 162330, 139, 139, 'Compiled Algorithm (Gaze of the Hunter)', 83169), (204061, 204061, 170, 170, 'Compiled Algorithm (Gift of the Travelling Salesman)', 83060), (145814, 145814, 90, 90, 'Compiled Algorithm (Gird for Punishment)', 144167), (146091, 146091, 7, 7, 'Compiled Algorithm (Give Energy: 10)', 83166), (146092, 146092, 53, 53, 'Compiled Algorithm (Give Energy: 100)', 83166), (146093, 146093, 14, 14, 'Compiled Algorithm (Give Energy: 25)', 83166), (146094, 146094, 27, 27, 'Compiled Algorithm (Give Energy: 50)', 83166), (146095, 146095, 7, 7, 'Compiled Algorithm (Give Life: 10)', 83112), (146096, 146096, 50, 50, 'Compiled Algorithm (Give Life: 100)', 83112), (146097, 146097, 14, 14, 'Compiled Algorithm (Give Life: 25)', 83112), (146098, 146098, 27, 27, 'Compiled Algorithm (Give Life: 50)', 83112), (146267, 146267, 50, 50, 'Compiled Algorithm (Glacial Advance)', 83229), (145815, 145815, 132, 132, 'Compiled Algorithm (Glacial Cloak)', 83068), (146268, 146268, 175, 175, 'Compiled Algorithm (Glacial Finality)', 83233), (144858, 144858, 159, 159, 'Compiled Algorithm (Glacial Lance)', 83231), (145903, 145903, 70, 70, 'Compiled Algorithm (Gladiatorbot)', 83175), (146546, 146546, 136, 136, 'Compiled Algorithm (Glib Health Haggler)', 83118), (146547, 146547, 106, 106, 'Compiled Algorithm (Glittering Plaything)', 83124), (145247, 145247, 156, 156, 'Compiled Algorithm (Glorious Healing)', 83115), (145816, 145816, 27, 27, 'Compiled Algorithm (Glowing Retribution)', 83068), (160856, 160856, 169, 169, 'Compiled Algorithm (Gnat''s Wing)', 82990), (146269, 146269, 27, 27, 'Compiled Algorithm (Gouge Eyes)', 83167), (145649, 145649, 70, 70, 'Compiled Algorithm (Gouge Flesh)', 83255), (146270, 146270, 169, 169, 'Compiled Algorithm (Gravitational Anomaly)', 83257), (146011, 146011, 126, 126, 'Compiled Algorithm (Gravity Bindings)', 83133), (146271, 146271, 149, 149, 'Compiled Algorithm (Gravity Pull)', 83128), (145484, 145484, 80, 80, 'Compiled Algorithm (Great Weight of the Guilty)', 83131), (145354, 145354, 106, 106, 'Compiled Algorithm (Greater Anatomy Lesson)', 144313), (144859, 144859, 7, 7, 'Compiled Algorithm (Greater Anger Manifestation)', 144223), (145904, 145904, 4, 4, 'Compiled Algorithm (Greater Armor Megaboost)', 83046), (146272, 146272, 119, 119, 'Compiled Algorithm (Greater Blade Chaos)', 83255), (145650, 145650, 156, 156, 'Compiled Algorithm (Greater Bloom of Health)', 83119), (145651, 145651, 109, 109, 'Compiled Algorithm (Greater Cellular Grafting)', 83116), (146273, 146273, 70, 70, 'Compiled Algorithm (Greater Chilling Stream)', 83229), (203919, 203919, 154, 154, 'Compiled Algorithm (Greater Conductive Spike)', 83060), (146274, 146274, 139, 139, 'Compiled Algorithm (Greater Crystalizing Ray)', 83231), (145355, 145355, 149, 149, 'Compiled Algorithm (Greater Death''s Knocking)', 83084), (146424, 146424, 57, 57, 'Compiled Algorithm (Greater Deflection Shield (Extended))', 144276), (146423, 146423, 50, 50, 'Compiled Algorithm (Greater Deflection Shield)', 144276), (145356, 145356, 109, 109, 'Compiled Algorithm (Greater Delay Pursuers)', 83132), (146012, 146012, 139, 139, 'Compiled Algorithm (Greater Delay Retreat)', 83129), (145357, 145357, 90, 90, 'Compiled Algorithm (Greater Delay the Inevitable)', 83128), (146548, 146548, 149, 149, 'Compiled Algorithm (Greater Delayed Health Payment)', 83118), (156160, 156160, 50, 50, 'Compiled Algorithm (Greater Deranged Mindreaver)', 144232), (146549, 146549, 169, 169, 'Compiled Algorithm (Greater Detain Customer)', 83129), (145358, 145358, 66, 66, 'Compiled Algorithm (Greater Detain Suspect)', 83127), (156159, 156159, 17, 17, 'Compiled Algorithm (Greater Distracting Sphere)', 144231), (146550, 146550, 149, 149, 'Compiled Algorithm (Greater Embrace of Greed)', 83128), (145248, 145248, 142, 142, 'Compiled Algorithm (Greater Encourage Regrowth)', 83115), (203931, 203931, 76, 76, 'Compiled Algorithm (Greater Energize Shell)', 83060), (145485, 145485, 146, 146, 'Compiled Algorithm (Greater Enforced Sloth)', 83132), (144860, 144860, 165, 165, 'Compiled Algorithm (Greater Enmity Personification)', 144226), (203888, 203888, 192, 192, 'Compiled Algorithm (Greater Exoskeleton Pulse)', 83060), (145486, 145486, 179, 179, 'Compiled Algorithm (Greater Fear of Attention)', 83128), (145652, 145652, 149, 149, 'Compiled Algorithm (Greater Field Dressings)', 83118), (144861, 144861, 146, 146, 'Compiled Algorithm (Greater Frenzy Embodiment)', 144225), (144862, 144862, 27, 27, 'Compiled Algorithm (Greater Fury Externalization)', 144223), (146013, 146013, 90, 90, 'Compiled Algorithm (Greater Halt Flight)', 83128), (145905, 145905, 159, 159, 'Compiled Algorithm (Greater Harmonic Cocoon)', 144279), (146099, 146099, 99, 99, 'Compiled Algorithm (Greater Healing Touch)', 83114), (146551, 146551, 113, 113, 'Compiled Algorithm (Greater Health Freeloader)', 144191), (146552, 146552, 33, 33, 'Compiled Algorithm (Greater Health Funnel)', 144187), (146553, 146553, 175, 175, 'Compiled Algorithm (Greater Health Plunder)', 144194), (145359, 145359, 83, 83, 'Compiled Algorithm (Greater Hold Victim)', 83128), (145487, 145487, 146, 146, 'Compiled Algorithm (Greater Illusory Paralysis)', 83128), (145653, 145653, 93, 93, 'Compiled Algorithm (Greater Lasting Heal)', 83114), (145488, 145488, 126, 126, 'Compiled Algorithm (Greater Mass Illusory Paralysis)', 83127), (145489, 145489, 162, 162, 'Compiled Algorithm (Greater Musculature Command)', 83129), (145360, 145360, 146, 146, 'Compiled Algorithm (Greater Mysterious Causes)', 83083), (146014, 146014, 136, 136, 'Compiled Algorithm (Greater Nano Boost)', 144312), (146015, 146015, 103, 103, 'Compiled Algorithm (Greater Nano Net)', 83128), (146016, 146016, 119, 119, 'Compiled Algorithm (Greater Net Cast Wide)', 83132), (145361, 145361, 149, 149, 'Compiled Algorithm (Greater Paralyze with Indecision)', 83129), (145654, 145654, 142, 142, 'Compiled Algorithm (Greater Periodic Checkup)', 83116), (204443, 204443, 149, 149, 'Compiled Algorithm (Greater Polarized Screening)', 144168), (145655, 145655, 172, 172, 'Compiled Algorithm (Greater Policy Payout)', 83115), (146017, 146017, 152, 152, 'Compiled Algorithm (Greater Prolong Encounter)', 83129), (145249, 145249, 43, 43, 'Compiled Algorithm (Greater Quick Heal)', 83113), (146275, 146275, 129, 129, 'Compiled Algorithm (Greater RNA Reaper)', 83267), (144863, 144863, 53, 53, 'Compiled Algorithm (Greater Rage Materialization)', 144224), (146426, 146426, 132, 132, 'Compiled Algorithm (Greater Reflective Field (Extended))', 144279), (146425, 146425, 129, 129, 'Compiled Algorithm (Greater Reflective Field)', 144279), (146100, 146100, 129, 129, 'Compiled Algorithm (Greater Restore Essence)', 83115), (145250, 145250, 130, 130, 'Compiled Algorithm (Greater Restore Health)', 83114), (145490, 145490, 99, 99, 'Compiled Algorithm (Greater Restrict Movement)', 83128), (145906, 145906, 165, 165, 'Compiled Algorithm (Greater Retaliatory Barrier)', 83068), (146276, 146276, 172, 172, 'Compiled Algorithm (Greater Searing Stream)', 83227), (146101, 146101, 132, 132, 'Compiled Algorithm (Greater Shen Protection)', 144220), (146277, 146277, 132, 132, 'Compiled Algorithm (Greater Shower with Sludge)', 83225), (146102, 146102, 86, 86, 'Compiled Algorithm (Greater Steel Skin)', 144219), (146554, 146554, 80, 80, 'Compiled Algorithm (Greater Strip Assets)', 83192), (145491, 145491, 106, 106, 'Compiled Algorithm (Greater Stumbling Steps)', 83128), (145362, 145362, 116, 116, 'Compiled Algorithm (Greater Suspicious Death)', 83082), (146103, 146103, 106, 106, 'Compiled Algorithm (Greater Team Healing Touch)', 83113), (145656, 145656, 76, 76, 'Compiled Algorithm (Greater Team Healing)', 83114), (145251, 145251, 57, 57, 'Compiled Algorithm (Greater Team Quick Heal)', 83113), (146104, 146104, 132, 132, 'Compiled Algorithm (Greater Team Restore Essence)', 83114), (146105, 146105, 123, 123, 'Compiled Algorithm (Greater Titanium Skin)', 144220), (146278, 146278, 83, 83, 'Compiled Algorithm (Greater Toxic Field)', 83224), (146279, 146279, 179, 179, 'Compiled Algorithm (Greater Viral Assault)', 83239), (145252, 145252, 96, 96, 'Compiled Algorithm (Greater Wilderness Protection)', 144273), (146106, 146106, 53, 53, 'Compiled Algorithm (Greater Wooden Skin)', 144218), (144864, 144864, 93, 93, 'Compiled Algorithm (Greater Wrath Incarnation)', 144225), (146018, 146018, 123, 123, 'Compiled Algorithm (Grid Excursion)', 83270), (146555, 146555, 166, 166, 'Compiled Algorithm (Grid Gateway)', 83270), (162606, 162606, 132, 132, 'Compiled Algorithm (Grid Phase Accelerator (Team))', 144239), (146019, 146019, 136, 136, 'Compiled Algorithm (Grid Phase Accelerator)', 83163), (146020, 146020, 20, 20, 'Compiled Algorithm (Grid Phreak)', 83270), (162609, 162609, 40, 40, 'Compiled Algorithm (Grid Runner (Team))', 144236), (146021, 146021, 43, 43, 'Compiled Algorithm (Grid Runner)', 83163), (162612, 162612, 76, 76, 'Compiled Algorithm (Grid Surfer (Team))', 144237), (146022, 146022, 83, 83, 'Compiled Algorithm (Grid Surfer)', 83163), (162615, 162615, 156, 156, 'Compiled Algorithm (Gridspace Freedom (Team))', 144240), (146023, 146023, 156, 156, 'Compiled Algorithm (Gridspace Freedom)', 83163), (204026, 204026, 94, 94, 'Compiled Algorithm (Grim Circumstance)', 83060), (145254, 145254, 90, 90, 'Compiled Algorithm (Grinning Hunter (Other))', 83182), (145255, 145255, 93, 93, 'Compiled Algorithm (Grinning Hunter (Team))', 83182), (145253, 145253, 83, 83, 'Compiled Algorithm (Grinning Hunter)', 83182), (146556, 146556, 149, 149, 'Compiled Algorithm (Guard Convoy)', 144313), (145256, 145256, 90, 90, 'Compiled Algorithm (Guard of the Grizzly)', 83068), (145907, 145907, 109, 109, 'Compiled Algorithm (Guardbot)', 83175), (160862, 160862, 93, 93, 'Compiled Algorithm (Guidance of The Executioner)', 144311), (203713, 203713, 200, 200, 'Compiled Algorithm (Guile of the Snake Oil Seller)', 83060), (145908, 145908, 10, 10, 'Compiled Algorithm (Gun Enhancement)', 83280), (145492, 145492, 14, 14, 'Compiled Algorithm (Gunslinger)', 83179), (162618, 162618, 27, 27, 'Compiled Algorithm (Hack Grid Vector (Team))', 144235), (146024, 146024, 30, 30, 'Compiled Algorithm (Hack Grid Vector)', 83163), (162743, 162743, 37, 37, 'Compiled Algorithm (Hacked Diagnosis)', 83114), (203190, 203190, 80, 80, 'Compiled Algorithm (Hail of Metal)', 83109), (145657, 145657, 146, 146, 'Compiled Algorithm (Hale and Hearty)', 83118), (145658, 145658, 172, 172, 'Compiled Algorithm (Halo of Health)', 83119), (146280, 146280, 20, 20, 'Compiled Algorithm (Halon Cloud)', 83228), (146025, 146025, 4, 4, 'Compiled Algorithm (Halt Flight)', 83126), (146107, 146107, 14, 14, 'Compiled Algorithm (Harden Skin)', 83157), (145909, 145909, 139, 139, 'Compiled Algorithm (Harmonic Cocoon)', 144278), (146026, 146026, 43, 43, 'Compiled Algorithm (Hasty Augmentation Cloud)', 144310), (145817, 145817, 30, 30, 'Compiled Algorithm (Headcracker)', 83052), (145659, 145659, 123, 123, 'Compiled Algorithm (Healer''s Hands)', 83117), (146108, 146108, 73, 73, 'Compiled Algorithm (Healing Aura)', 83114), (145660, 145660, 116, 116, 'Compiled Algorithm (Healing Light)', 83117), (145257, 145257, 156, 156, 'Compiled Algorithm (Healing Rays of Sunrise)', 83115), (146109, 146109, 43, 43, 'Compiled Algorithm (Healing Touch)', 83113), (145661, 145661, 156, 156, 'Compiled Algorithm (Health Assembler)', 144284), (145662, 145662, 4, 4, 'Compiled Algorithm (Health Augmentation)', 83207), (145663, 145663, 165, 165, 'Compiled Algorithm (Health Cartel)', 83118), (146557, 146557, 86, 86, 'Compiled Algorithm (Health Freeloader)', 144190), (146558, 146558, 20, 20, 'Compiled Algorithm (Health Funnel)', 144186), (145664, 145664, 17, 17, 'Compiled Algorithm (Health Graft)', 144175), (146559, 146559, 159, 159, 'Compiled Algorithm (Health Plunder)', 144193), (145665, 145665, 60, 60, 'Compiled Algorithm (Health Pump)', 83113), (145666, 145666, 30, 30, 'Compiled Algorithm (Health Surge)', 83207), (146427, 146427, 159, 159, 'Compiled Algorithm (Heavy Assault Absorption Shield)', 144274), (146428, 146428, 152, 152, 'Compiled Algorithm (Heavy Assault Combat Barrier)', 144274), (145910, 145910, 185, 185, 'Compiled Algorithm (Heavy Assault Force Field)', 144170), (146429, 146429, 139, 139, 'Compiled Algorithm (Helepolis of the Besieger)', 144313), (145363, 145363, 40, 40, 'Compiled Algorithm (Hidden Killer)', 83080), (144865, 144865, 182, 182, 'Compiled Algorithm (High Chant of Effortless Strikes)', 83059), (144866, 144866, 156, 156, 'Compiled Algorithm (High Chant of Frenzied Blows)', 83059), (146560, 146560, 30, 30, 'Compiled Algorithm (Hired Hands)', 144310), (146281, 146281, 57, 57, 'Compiled Algorithm (Hoary Seep)', 83229), (145364, 145364, 132, 132, 'Compiled Algorithm (Hold Victim)', 83127), (146110, 146110, 149, 149, 'Compiled Algorithm (Horde)', 83107), (145493, 145493, 179, 179, 'Compiled Algorithm (Horror From The Darkest Pit)', 83200), (146561, 146561, 90, 90, 'Compiled Algorithm (Hostile Takeover)', 83192), (146282, 146282, 14, 14, 'Compiled Algorithm (Hot Foot)', 83246), (162130, 162130, 126, 126, 'Compiled Algorithm (Howl of the Wolf)', 83189), (146283, 146283, 40, 40, 'Compiled Algorithm (Humidity Extractor)', 83166), (146430, 146430, 132, 132, 'Compiled Algorithm (Id Assault)', 83090), (144867, 144867, 90, 90, 'Compiled Algorithm (Ignore External Events)', 83194), (145494, 145494, 80, 80, 'Compiled Algorithm (Illusory Paralysis)', 83127), (146562, 146562, 146, 146, 'Compiled Algorithm (Imaginary Distractions)', 83124), (203224, 203224, 121, 121, 'Compiled Algorithm (Imminent Storm)', 83092), (145818, 145818, 63, 63, 'Compiled Algorithm (Immolation Shield)', 83068), (146284, 146284, 123, 123, 'Compiled Algorithm (Impactor Missile)', 83261), (146285, 146285, 139, 139, 'Compiled Algorithm (Impaling Tracer)', 83262), (145258, 145258, 153, 153, 'Compiled Algorithm (Implacability of Life)', 83115), (145495, 145495, 86, 86, 'Compiled Algorithm (Impose Will)', 83192), (146563, 146563, 146, 146, 'Compiled Algorithm (Impoverish Accounts)', 83192), (145668, 145668, 126, 126, 'Compiled Algorithm (Incandescent Venom)', 83080), (161895, 161895, 172, 172, 'Compiled Algorithm (Incinerate)', 83250), (145669, 145669, 126, 126, 'Compiled Algorithm (Induce Musculature Spasms)', 83139), (145670, 145670, 30, 30, 'Compiled Algorithm (Infected Wounds)', 83076), (145911, 145911, 24, 24, 'Compiled Algorithm (Inferior Android)', 83170), (144868, 144868, 1, 1, 'Compiled Algorithm (Inferior Anger Manifestation)', 144223), (145912, 145912, 4, 4, 'Compiled Algorithm (Inferior Automaton)', 83170), (145671, 145671, 14, 14, 'Compiled Algorithm (Inferior Cleanse Wounds)', 83112), (144869, 144869, 159, 159, 'Compiled Algorithm (Inferior Enmity Personification)', 144226), (144870, 144870, 123, 123, 'Compiled Algorithm (Inferior Frenzy Embodiment)', 144225), (144871, 144871, 17, 17, 'Compiled Algorithm (Inferior Fury Externalization)', 144223), (145913, 145913, 57, 57, 'Compiled Algorithm (Inferior Gladiatorbot)', 83175), (145914, 145914, 96, 96, 'Compiled Algorithm (Inferior Guardbot)', 83175), (144872, 144872, 40, 40, 'Compiled Algorithm (Inferior Rage Materialization)', 144224), (145915, 145915, 139, 139, 'Compiled Algorithm (Inferior Warbot)', 83176), (145916, 145916, 162, 162, 'Compiled Algorithm (Inferior Warmachine)', 83177), (145672, 145672, 4, 4, 'Compiled Algorithm (Inferior Wound Bindings)', 83112), (144873, 144873, 83, 83, 'Compiled Algorithm (Inferior Wrath Incarnation)', 144224), (145673, 145673, 7, 7, 'Compiled Algorithm (Inflict Harm)', 83253), (151786, 151786, 123, 123, 'Compiled Algorithm (Infuse With Knowledge: Biological Metamorphose)', 83051), (151785, 151785, 130, 130, 'Compiled Algorithm (Infuse With Knowledge: Material Creation)', 83153), (151783, 151783, 126, 126, 'Compiled Algorithm (Infuse With Knowledge: Material Metamorphose)', 83155), (151782, 151782, 136, 136, 'Compiled Algorithm (Infuse With Knowledge: Psychological Modification)', 83193), (151781, 151781, 133, 133, 'Compiled Algorithm (Infuse With Knowledge: Sensory Improvement)', 83201), (151784, 151784, 130, 130, 'Compiled Algorithm (Infuse With Knowledge: Time and Space)', 83154), (145674, 145674, 156, 156, 'Compiled Algorithm (Infuse with Life)', 144175), (145496, 145496, 132, 132, 'Compiled Algorithm (Inhibit Motion)', 83128), (145365, 145365, 14, 14, 'Compiled Algorithm (Inject Poison)', 83076), (145366, 145366, 66, 66, 'Compiled Algorithm (Inject Venom)', 83080), (146111, 146111, 169, 169, 'Compiled Algorithm (Inner Peace, Outward Rage)', 144314), (145497, 145497, 152, 152, 'Compiled Algorithm (Insidious Beguilement)', 83192), (146564, 146564, 123, 123, 'Compiled Algorithm (Insolvency)', 83192), (146027, 146027, 74, 74, 'Compiled Algorithm (Instantaneous Encoding)', 83270), (144874, 144874, 166, 166, 'Compiled Algorithm (Instill With Enduring Wrath)', 83059), (144875, 144875, 113, 113, 'Compiled Algorithm (Instill With Ferocious Purpose)', 83059), (144876, 144876, 41, 41, 'Compiled Algorithm (Instill With Fury)', 83059), (144877, 144877, 189, 189, 'Compiled Algorithm (Instill With Malign Intent)', 83059), (144878, 144878, 21, 21, 'Compiled Algorithm (Instill With Rage)', 83059), (144879, 144879, 150, 150, 'Compiled Algorithm (Instill With Righteous Frenzy)', 83059), (144880, 144880, 74, 74, 'Compiled Algorithm (Instill With Terrible Anger)', 83059), (146028, 146028, 47, 47, 'Compiled Algorithm (Insurance Hack)', 83113), (145259, 145259, 142, 142, 'Compiled Algorithm (Interlocking Barbs)', 83068), (146286, 146286, 162, 162, 'Compiled Algorithm (Internal Combustion)', 83250), (145676, 145676, 175, 175, 'Compiled Algorithm (Internal Decomposition)', 83081), (144881, 144881, 14, 14, 'Compiled Algorithm (Internal Focus)', 83194), (145677, 145677, 156, 156, 'Compiled Algorithm (Internal Renewal)', 83118), (145917, 145917, 156, 156, 'Compiled Algorithm (Intricate Repairs)', 83117), (145498, 145498, 132, 132, 'Compiled Algorithm (Introspective Engagement)', 83124), (204482, 204482, 60, 60, 'Compiled Algorithm (Intrusive Aura Cancellation)', 83060), (204470, 204470, 97, 97, 'Compiled Algorithm (Intrusive Aura of Binding)', 83130), (204467, 204467, 60, 60, 'Compiled Algorithm (Intrusive Aura of Entanglement)', 83130), (204473, 204473, 132, 132, 'Compiled Algorithm (Intrusive Aura of Malaise)', 83131), (204476, 204476, 166, 166, 'Compiled Algorithm (Intrusive Aura of Sloth)', 83131), (204479, 204479, 199, 199, 'Compiled Algorithm (Intrusive Aura of the Humble Servant)', 83132), (146029, 146029, 63, 63, 'Compiled Algorithm (Invasive Distributed Entanglement)', 83131), (146030, 146030, 73, 73, 'Compiled Algorithm (Invasive Micro Entanglement)', 83132), (146287, 146287, 70, 70, 'Compiled Algorithm (Invasive Presence)', 83235), (145499, 145499, 162, 162, 'Compiled Algorithm (Inveigle Support)', 83192), (145260, 145260, 159, 159, 'Compiled Algorithm (Invocation of the Phoenix)', 83115), (146288, 146288, 14, 14, 'Compiled Algorithm (Ion Stream)', 83264), (145678, 145678, 83, 83, 'Compiled Algorithm (Iron Circle)', 83209), (146112, 146112, 4, 4, 'Compiled Algorithm (Iron Fist)', 83280), (146565, 146565, 149, 149, 'Compiled Algorithm (Irresistible Health Haggler)', 83118), (146289, 146289, 50, 50, 'Compiled Algorithm (Isotope Deluge)', 83265), (146290, 146290, 146, 146, 'Compiled Algorithm (Isotope Waves)', 83043), (146291, 146291, 182, 182, 'Compiled Algorithm (Izgimmer''s Enveloping Flame)', 83142), (146292, 146292, 212, 212, 'Compiled Algorithm (Izgimmer''s Last Word)', 83144), (146293, 146293, 185, 185, 'Compiled Algorithm (Izgimmer''s Little Nuke)', 83145), (150655, 150655, 182, 182, 'Compiled Algorithm (Izgimmer''s Mockery)', 144222), (146294, 146294, 179, 179, 'Compiled Algorithm (Izgimmer''s Obfuscated Recompiler)', 83166), (145261, 145261, 17, 17, 'Compiled Algorithm (Jacket of Blades)', 83068), (204023, 204023, 200, 200, 'Compiled Algorithm (Jail Break)', 83060), (146295, 146295, 152, 152, 'Compiled Algorithm (Jobe Nano Libraries)', 83166), (146566, 146566, 80, 80, 'Compiled Algorithm (Journeyman: Electrical Engineering)', 83091), (146567, 146567, 80, 80, 'Compiled Algorithm (Journeyman: Field Quantum Physics)', 83099), (146568, 146568, 83, 83, 'Compiled Algorithm (Journeyman: Mechanical Engineer)', 83156), (146569, 146569, 86, 86, 'Compiled Algorithm (Journeyman: Pharmaceutical)', 83178), (146570, 146570, 86, 86, 'Compiled Algorithm (Journeyman: Weapon Smithing)', 83278), (163105, 163105, 63, 63, 'Compiled Algorithm (Jury-rigged NCU Analyzer)', 83065), (156072, 156297, 30, 50, 'Compiled Algorithm (Kamikaze Robot I)', 83171), (156076, 156300, 130, 150, 'Compiled Algorithm (Kamikaze Robot II)', 83171), (146031, 146031, 152, 152, 'Compiled Algorithm (Karma Harvest)', 83169), (146296, 146296, 212, 212, 'Compiled Algorithm (Kel''s Neutronium Plaything)', 83145), (162746, 162746, 53, 53, 'Compiled Algorithm (Kitchen-sink Surgery)', 83114), (146113, 146113, 139, 139, 'Compiled Algorithm (Last Minute Adjustments)', 83048), (145679, 145679, 14, 14, 'Compiled Algorithm (Lasting Heal)', 83112), (146297, 146297, 80, 80, 'Compiled Algorithm (Layered Protection)', 83046), (162133, 162133, 152, 152, 'Compiled Algorithm (Leader of the Pack)', 144268), (162621, 162621, 57, 57, 'Compiled Algorithm (Leech Grid Vector (Team))', 144236), (146032, 146032, 63, 63, 'Compiled Algorithm (Leech Grid Vector)', 83163), (161883, 161883, 30, 30, 'Compiled Algorithm (Leet Friend)', 144247), (161889, 161889, 106, 106, 'Compiled Algorithm (Leetas Friend)', 144247), (146298, 146298, 162, 162, 'Compiled Algorithm (Legions of the Eyeblighter)', 83167), (145367, 145367, 165, 165, 'Compiled Algorithm (Leisurely Interrogation)', 83129), (146571, 146571, 24, 24, 'Compiled Algorithm (Lend Nano: 100)', 83166), (146575, 146575, 172, 172, 'Compiled Algorithm (Lend Nano: 1000)', 83166), (146572, 146572, 53, 53, 'Compiled Algorithm (Lend Nano: 250)', 83166), (146573, 146573, 10, 10, 'Compiled Algorithm (Lend Nano: 50)', 83166), (146574, 146574, 116, 116, 'Compiled Algorithm (Lend Nano: 500)', 83166), (146431, 146431, 37, 37, 'Compiled Algorithm (Lesser Absorption Shield)', 144270), (145368, 145368, 10, 10, 'Compiled Algorithm (Lesser Anatomy Lesson)', 83280), (145918, 145918, 24, 24, 'Compiled Algorithm (Lesser Android)', 83170), (145919, 145919, 4, 4, 'Compiled Algorithm (Lesser Automaton)', 83170), (146299, 146299, 40, 40, 'Compiled Algorithm (Lesser Bane of the Living)', 83235), (145500, 145500, 7, 7, 'Compiled Algorithm (Lesser Blizzard of Red Tape)', 83130), (145680, 145680, 63, 63, 'Compiled Algorithm (Lesser Bloom of Health)', 83115), (145681, 145681, 1, 1, 'Compiled Algorithm (Lesser Cellular Grafting)', 83112), (145501, 145501, 96, 96, 'Compiled Algorithm (Lesser Charismatic Rapture)', 83192), (145682, 145682, 47, 47, 'Compiled Algorithm (Lesser Circle of Renewal)', 83113), (146432, 146432, 20, 20, 'Compiled Algorithm (Lesser Combat Barrier)', 83191), (203913, 203913, 102, 102, 'Compiled Algorithm (Lesser Conductive Spike)', 83060), (146300, 146300, 109, 109, 'Compiled Algorithm (Lesser Coronet of Frost)', 83231), (145369, 145369, 93, 93, 'Compiled Algorithm (Lesser Death''s Knocking)', 83082), (145920, 145920, 57, 57, 'Compiled Algorithm (Lesser Defensive Screen)', 144166), (146434, 146434, 30, 30, 'Compiled Algorithm (Lesser Deflection Shield (Extended))', 144276), (146433, 146433, 24, 24, 'Compiled Algorithm (Lesser Deflection Shield)', 83196), (145370, 145370, 27, 27, 'Compiled Algorithm (Lesser Delay Pursuers)', 83130), (145371, 145371, 37, 37, 'Compiled Algorithm (Lesser Delay the Inevitable)', 83126), (146576, 146576, 57, 57, 'Compiled Algorithm (Lesser Delayed Health Payment)', 83115), (156158, 156158, 34, 34, 'Compiled Algorithm (Lesser Deranged Mindreaver)', 144232), (146577, 146577, 1, 1, 'Compiled Algorithm (Lesser Detain Customer)', 83126), (156157, 156157, 4, 4, 'Compiled Algorithm (Lesser Distracting Sphere)', 144231), (146578, 146578, 14, 14, 'Compiled Algorithm (Lesser Embrace of Greed)', 83126), (146301, 146301, 47, 47, 'Compiled Algorithm (Lesser Encircle With Blades)', 83253), (203925, 203925, 14, 14, 'Compiled Algorithm (Lesser Energize Shell)', 83060), (145502, 145502, 14, 14, 'Compiled Algorithm (Lesser Enforced Sloth)', 83130), (144883, 144883, 156, 156, 'Compiled Algorithm (Lesser Enmity Personification)', 144226), (203879, 203879, 71, 71, 'Compiled Algorithm (Lesser Exoskeleton Pulse)', 83060), (146302, 146302, 86, 86, 'Compiled Algorithm (Lesser Eyeblighter)', 83167), (145503, 145503, 149, 149, 'Compiled Algorithm (Lesser Fear of Attention)', 83128), (145921, 145921, 162, 162, 'Compiled Algorithm (Lesser Force Field)', 144169), (144884, 144884, 113, 113, 'Compiled Algorithm (Lesser Frenzy Embodiment)', 144225), (144885, 144885, 14, 14, 'Compiled Algorithm (Lesser Fury Externalization)', 144223), (145922, 145922, 53, 53, 'Compiled Algorithm (Lesser Gladiatorbot)', 83175), (145923, 145923, 93, 93, 'Compiled Algorithm (Lesser Guardbot)', 83175), (145924, 145924, 96, 96, 'Compiled Algorithm (Lesser Harmonic Cocoon)', 144277), (146114, 146114, 10, 10, 'Compiled Algorithm (Lesser Healing Touch)', 83112), (146579, 146579, 80, 80, 'Compiled Algorithm (Lesser Health Freeloader)', 144189), (146580, 146580, 17, 17, 'Compiled Algorithm (Lesser Health Funnel)', 144186), (146581, 146581, 156, 156, 'Compiled Algorithm (Lesser Health Plunder)', 144193), (145372, 145372, 17, 17, 'Compiled Algorithm (Lesser Hold Victim)', 83126), (145504, 145504, 4, 4, 'Compiled Algorithm (Lesser Illusory Paralysis)', 83126), (145683, 145683, 17, 17, 'Compiled Algorithm (Lesser Muscle Atrophy)', 83139), (145505, 145505, 33, 33, 'Compiled Algorithm (Lesser Musculature Command)', 83127), (145373, 145373, 27, 27, 'Compiled Algorithm (Lesser Mysterious Causes)', 83076), (145684, 145684, 17, 17, 'Compiled Algorithm (Lesser Nano Bandage)', 83113), (146033, 146033, 10, 10, 'Compiled Algorithm (Lesser Nano Boost)', 83280), (146034, 146034, 10, 10, 'Compiled Algorithm (Lesser Nano Net)', 83126), (145685, 145685, 24, 24, 'Compiled Algorithm (Lesser Nano Surgery)', 83113), (146035, 146035, 20, 20, 'Compiled Algorithm (Lesser Net Cast Wide)', 83130), (145374, 145374, 33, 33, 'Compiled Algorithm (Lesser Paralyze with Indecision)', 83126), (145506, 145506, 27, 27, 'Compiled Algorithm (Lesser Pheromone Control)', 83192), (204440, 204440, 52, 52, 'Compiled Algorithm (Lesser Polarized Screening)', 144165), (145686, 145686, 109, 109, 'Compiled Algorithm (Lesser Policy Payout)', 83115), (146036, 146036, 27, 27, 'Compiled Algorithm (Lesser Prolong Encounter)', 83127), (145925, 145925, 50, 50, 'Compiled Algorithm (Lesser Protective Field)', 144166), (146303, 146303, 14, 14, 'Compiled Algorithm (Lesser RNA Reaper)', 83264), (144886, 144886, 37, 37, 'Compiled Algorithm (Lesser Rage Materialization)', 144224), (146436, 146436, 123, 123, 'Compiled Algorithm (Lesser Reflective Field (Extended))', 144278), (146435, 146435, 123, 123, 'Compiled Algorithm (Lesser Reflective Field)', 144278), (145262, 145262, 21, 21, 'Compiled Algorithm (Lesser Restore to Health)', 83112), (145926, 145926, 37, 37, 'Compiled Algorithm (Lesser Retaliatory Barrier)', 83068), (146115, 146115, 33, 33, 'Compiled Algorithm (Lesser Shen Protection)', 144218), (145927, 145927, 43, 43, 'Compiled Algorithm (Lesser Shielding Barrier)', 144166), (145507, 145507, 4, 4, 'Compiled Algorithm (Lesser Stumbling Steps)', 83130), (162517, 162517, 14, 14, 'Compiled Algorithm (Lesser Suppressor)', 83158), (145375, 145375, 4, 4, 'Compiled Algorithm (Lesser Suspicious Death)', 83076), (145928, 145928, 136, 136, 'Compiled Algorithm (Lesser Warbot)', 83176), (145929, 145929, 159, 159, 'Compiled Algorithm (Lesser Warmachine)', 83176), (145508, 145508, 37, 37, 'Compiled Algorithm (Lesser Weighty Announcement)', 83130), (145263, 145263, 20, 20, 'Compiled Algorithm (Lesser Wilderness Protection)', 144270), (144887, 144887, 76, 76, 'Compiled Algorithm (Lesser Wrath Incarnation)', 144224), (161933, 161933, 146, 146, 'Compiled Algorithm (Lick Wounds)', 83115), (145821, 145821, 136, 136, 'Compiled Algorithm (Lick of Fire)', 83068), (145687, 145687, 152, 152, 'Compiled Algorithm (Life Balm)', 83118), (145688, 145688, 182, 182, 'Compiled Algorithm (Life Channeler)', 144284), (145689, 145689, 50, 50, 'Compiled Algorithm (Life Reinforcement)', 144282), (146037, 146037, 90, 90, 'Compiled Algorithm (Lifebane Modification)', 144311), (145690, 145690, 165, 165, 'Compiled Algorithm (Lifegiving Elixir)', 83119), (145822, 145822, 106, 106, 'Compiled Algorithm (Lightning Shield)', 83068), (146304, 146304, 80, 80, 'Compiled Algorithm (Lightning Strike)', 83242), (145264, 145264, 152, 152, 'Compiled Algorithm (Lightning''s Child)', 83068), (146116, 146116, 17, 17, 'Compiled Algorithm (Limbo Mastery)', 83096), (145509, 145509, 132, 132, 'Compiled Algorithm (Limited Administrator-Droid)', 83176), (145510, 145510, 73, 73, 'Compiled Algorithm (Limited Aide-Droid)', 83175), (145511, 145511, 50, 50, 'Compiled Algorithm (Limited Assistant-Droid)', 83175), (145512, 145512, 30, 30, 'Compiled Algorithm (Limited Attendant-Droid)', 83170), (145513, 145513, 162, 162, 'Compiled Algorithm (Limited Bodyguard)', 83177), (162624, 162624, 14, 14, 'Compiled Algorithm (Limited Grid Jump (Team))', 144235), (146038, 146038, 17, 17, 'Compiled Algorithm (Limited Grid Jump)', 83163), (145514, 145514, 17, 17, 'Compiled Algorithm (Limited Helper-Bot)', 83170), (145515, 145515, 146, 146, 'Compiled Algorithm (Limited Minion)', 83177), (145691, 145691, 7, 7, 'Compiled Algorithm (Limited Nano Reaper)', 83076), (145516, 145516, 99, 99, 'Compiled Algorithm (Limited Secretary-Droid)', 83176), (146305, 146305, 83, 83, 'Compiled Algorithm (Limited Shrapnel Spray)', 83036), (145517, 145517, 1, 1, 'Compiled Algorithm (Limited Worker-Droid)', 83170), (146582, 146582, 7, 7, 'Compiled Algorithm (Line of Credit)', 83192), (146306, 146306, 159, 159, 'Compiled Algorithm (Linear Acceleration)', 83262), (146307, 146307, 132, 132, 'Compiled Algorithm (Liquefying Sphere)', 83225), (146583, 146583, 156, 156, 'Compiled Algorithm (Liquidation)', 83192), (205166, 205166, 166, 166, 'Compiled Algorithm (Living Codex of Izgimmer)', 83164), (145518, 145518, 175, 175, 'Compiled Algorithm (Living Embalming)', 83121), (146308, 146308, 189, 189, 'Compiled Algorithm (Localized Dimensional Inversion)', 83257), (146117, 146117, 27, 27, 'Compiled Algorithm (Lotus on Water)', 83280), (146039, 146039, 83, 83, 'Compiled Algorithm (Luck''s Fickle Fate)', 83096), (203698, 203698, 200, 200, 'Compiled Algorithm (Luck''s Lost Twin)', 83060), (144888, 144888, 162, 162, 'Compiled Algorithm (Lull Wrath)', 83280), (162324, 162324, 53, 53, 'Compiled Algorithm (Lupus Oculus)', 83169), (161402, 161402, 57, 57, 'Compiled Algorithm (Lure of the Pincushion)', 83068), (146588, 146588, 152, 152, 'Compiled Algorithm (Maestro: Electrical Engineering)', 83091), (146589, 146589, 152, 152, 'Compiled Algorithm (Maestro: Field Quantum Physics)', 83099), (146590, 146590, 152, 152, 'Compiled Algorithm (Maestro: Mechanical Engineering)', 83156), (146591, 146591, 156, 156, 'Compiled Algorithm (Maestro: Pharmaceutical)', 83178), (146592, 146592, 156, 156, 'Compiled Algorithm (Maestro: Weapon Smithing)', 83278), (145265, 145265, 109, 109, 'Compiled Algorithm (Magma Coating)', 83068), (146593, 146593, 189, 189, 'Compiled Algorithm (Major Armor Distributor)', 144184), (146309, 146309, 146, 146, 'Compiled Algorithm (Major Chemical Burn)', 83226), (146438, 146438, 70, 70, 'Compiled Algorithm (Major Deflection Shield (Extended))', 144277), (146437, 146437, 63, 63, 'Compiled Algorithm (Major Deflection Shield)', 144277), (146594, 146594, 100, 100, 'Compiled Algorithm (Major Delayed Health Payment)', 83116), (146595, 146595, 93, 93, 'Compiled Algorithm (Major Health Freeloader)', 144190), (146596, 146596, 24, 24, 'Compiled Algorithm (Major Health Funnel)', 144187), (145692, 145692, 93, 93, 'Compiled Algorithm (Major Health Graft)', 144175), (146597, 146597, 162, 162, 'Compiled Algorithm (Major Health Plunder)', 144193), (145376, 145376, 80, 80, 'Compiled Algorithm (Major Nano Augmentation)', 144312), (146440, 146440, 139, 139, 'Compiled Algorithm (Major Reflective Field (Extended))', 144280), (146439, 146439, 136, 136, 'Compiled Algorithm (Major Reflective Field)', 144280), (146118, 146118, 99, 99, 'Compiled Algorithm (Major Shen Protection)', 144219), (162502, 162502, 73, 73, 'Compiled Algorithm (Major Suppressor)', 83158), (145266, 145266, 70, 70, 'Compiled Algorithm (Major Wilderness Protection)', 144272), (145267, 145267, 74, 74, 'Compiled Algorithm (Makeshift Bandaging)', 83113), (146310, 146310, 149, 149, 'Compiled Algorithm (Malign Devourer)', 83238), (146598, 146598, 14, 14, 'Compiled Algorithm (Margin Call)', 83192), (160623, 160623, 126, 126, 'Compiled Algorithm (Mark of Danger)', 83048), (160626, 160626, 159, 159, 'Compiled Algorithm (Mark of Peril)', 83048), (160620, 160620, 57, 57, 'Compiled Algorithm (Mark of Risk)', 83048), (146119, 146119, 50, 50, 'Compiled Algorithm (Martial Arts Mastery)', 83152), (146311, 146311, 20, 20, 'Compiled Algorithm (Mass Claw Eyes)', 83167), (146312, 146312, 109, 109, 'Compiled Algorithm (Mass Cornea Attack)', 83167), (145519, 145519, 10, 10, 'Compiled Algorithm (Mass Daze)', 83126), (146040, 146040, 136, 136, 'Compiled Algorithm (Mass Gravity Bindings)', 83133), (145520, 145520, 27, 27, 'Compiled Algorithm (Mass Illusory Paralysis)', 83126), (146313, 146313, 132, 132, 'Compiled Algorithm (Mass Pronounce Blindness)', 83167), (204040, 204040, 169, 169, 'Compiled Algorithm (Master Escapologist)', 83060), (146599, 146599, 116, 116, 'Compiled Algorithm (Masterly Health Haggler)', 83117), (144889, 144889, 43, 43, 'Compiled Algorithm (MatCrea Mastery)', 83153), (144891, 144891, 50, 50, 'Compiled Algorithm (MatMet Mastery)', 83155), (145695, 145695, 57, 57, 'Compiled Algorithm (Medic''s Call)', 83114), (145696, 145696, 47, 47, 'Compiled Algorithm (Medic''s Respite)', 144175), (146041, 146041, 17, 17, 'Compiled Algorithm (Medical Claim)', 83112), (145693, 145693, 132, 132, 'Compiled Algorithm (Medical Response)', 83117), (145694, 145694, 70, 70, 'Compiled Algorithm (Medical Sequencer)', 83113), (146120, 146120, 40, 40, 'Compiled Algorithm (Meditate on an Autumn Leaf)', 144310), (161384, 161384, 169, 169, 'Compiled Algorithm (Meld With Background)', 83066), (146600, 146600, 34, 34, 'Compiled Algorithm (Mental Switcheroo)', 83122), (146314, 146314, 123, 123, 'Compiled Algorithm (Mephitic Ichor)', 83237), (146315, 146315, 103, 103, 'Compiled Algorithm (Meson Blast)', 83242), (146316, 146316, 136, 136, 'Compiled Algorithm (Meta-Dioxin Spray)', 83225), (145697, 145697, 119, 119, 'Compiled Algorithm (Metabolic Disassembly)', 83080), (145698, 145698, 33, 33, 'Compiled Algorithm (Metabolism Booster)', 144175), (203181, 203181, 170, 170, 'Compiled Algorithm (Metal Barrage)', 83109), (203187, 203187, 106, 106, 'Compiled Algorithm (Metal Storm)', 83109), (203184, 203184, 140, 140, 'Compiled Algorithm (Metal Strike)', 83109), (146318, 146318, 116, 116, 'Compiled Algorithm (Micro Flechette Swarm)', 83261), (146317, 146317, 17, 17, 'Compiled Algorithm (Micro Flechette)', 83258), (146319, 146319, 47, 47, 'Compiled Algorithm (Microblade Whirlwind)', 83082), (145824, 145824, 149, 149, 'Compiled Algorithm (Mighty Challenger to Behemoth)', 144216), (145825, 145825, 129, 129, 'Compiled Algorithm (Mighty Challenger to Colossus)', 144214), (145826, 145826, 24, 24, 'Compiled Algorithm (Mighty Challenger to Cyclops)', 83106), (145827, 145827, 90, 90, 'Compiled Algorithm (Mighty Challenger to Gargantua)', 144213), (145828, 145828, 136, 136, 'Compiled Algorithm (Mighty Challenger to Leviathan)', 144215), (145829, 145829, 53, 53, 'Compiled Algorithm (Mighty Challenger to Titan)', 144212), (146320, 146320, 37, 37, 'Compiled Algorithm (Mild Toxic Spill)', 82995), (145930, 145930, 156, 156, 'Compiled Algorithm (Military-Grade Warbot)', 83176), (145931, 145931, 175, 175, 'Compiled Algorithm (Military-Grade Warmachine)', 83177), (145377, 145377, 152, 152, 'Compiled Algorithm (Mimic Profession: Adventurer)', 83210), (145378, 145378, 165, 165, 'Compiled Algorithm (Mimic Profession: Bureaucrat)', 83210), (145379, 145379, 162, 162, 'Compiled Algorithm (Mimic Profession: Doctor)', 83210), (145380, 145380, 146, 146, 'Compiled Algorithm (Mimic Profession: Enforcer)', 83210), (145381, 145381, 156, 156, 'Compiled Algorithm (Mimic Profession: Engineer)', 83210), (145382, 145382, 159, 159, 'Compiled Algorithm (Mimic Profession: Fixer)', 83210), (145383, 145383, 149, 149, 'Compiled Algorithm (Mimic Profession: Martial Artist)', 83210), (145387, 145387, 165, 165, 'Compiled Algorithm (Mimic Profession: Meta-Physicist)', 83210), (145384, 145384, 169, 169, 'Compiled Algorithm (Mimic Profession: Nanotechnician)', 83210), (145385, 145385, 146, 146, 'Compiled Algorithm (Mimic Profession: Soldier)', 83210), (145386, 145386, 162, 162, 'Compiled Algorithm (Mimic Profession: Trader)', 83210), (144892, 144892, 146, 146, 'Compiled Algorithm (Mind Banshee)', 83243), (144893, 144893, 87, 87, 'Compiled Algorithm (Mind Howl)', 83242), (144895, 144895, 173, 173, 'Compiled Algorithm (Mind Quake)', 83244), (144896, 144896, 50, 50, 'Compiled Algorithm (Mind Scream)', 83241), (146441, 146441, 14, 14, 'Compiled Algorithm (Minor Absorption Shield)', 83191), (145699, 145699, 40, 40, 'Compiled Algorithm (Minor Balm)', 83114), (146321, 146321, 57, 57, 'Compiled Algorithm (Minor Bane)', 83235), (146442, 146442, 4, 4, 'Compiled Algorithm (Minor Combat Barrier)', 83191), (145700, 145700, 37, 37, 'Compiled Algorithm (Minor Consuming Toxin)', 83076), (146444, 146444, 17, 17, 'Compiled Algorithm (Minor Deflection Shield (Extended))', 83196), (146443, 146443, 14, 14, 'Compiled Algorithm (Minor Deflection Shield)', 83196), (146601, 146601, 21, 21, 'Compiled Algorithm (Minor Delayed Health Payment)', 83113), (203876, 203876, 36, 36, 'Compiled Algorithm (Minor Exoskeleton Pulse)', 83060), (145932, 145932, 66, 66, 'Compiled Algorithm (Minor Harmonic Cocoon)', 144276), (146602, 146602, 60, 60, 'Compiled Algorithm (Minor Health Freeloader)', 144189), (146603, 146603, 7, 7, 'Compiled Algorithm (Minor Health Funnel)', 144185), (146604, 146604, 146, 146, 'Compiled Algorithm (Minor Health Plunder)', 144192), (146446, 146446, 119, 119, 'Compiled Algorithm (Minor Reflective Field (Extended))', 144278), (146445, 146445, 113, 113, 'Compiled Algorithm (Minor Reflective Field)', 144278), (146121, 146121, 7, 7, 'Compiled Algorithm (Minor Shen Protection)', 83157), (145701, 145701, 7, 7, 'Compiled Algorithm (Minor Team Healing)', 83112), (145702, 145702, 33, 33, 'Compiled Algorithm (Minor Team Purification)', 83113), (146322, 146322, 1, 1, 'Compiled Algorithm (Minor Toxic Barb)', 83234), (146323, 146323, 10, 10, 'Compiled Algorithm (Minor Toxic Field)', 83222), (145268, 145268, 4, 4, 'Compiled Algorithm (Minor Wilderness Protection)', 83191), (144897, 144897, 165, 165, 'Compiled Algorithm (Mocham''s Gift: BioMet)', 83162), (144898, 144898, 165, 165, 'Compiled Algorithm (Mocham''s Gift: MatCrea)', 83162), (144900, 144900, 162, 162, 'Compiled Algorithm (Mocham''s Gift: MatMet)', 83162), (144901, 144901, 169, 169, 'Compiled Algorithm (Mocham''s Gift: PsyMod)', 83162), (144902, 144902, 165, 165, 'Compiled Algorithm (Mocham''s Gift: SenseImp)', 83162), (144899, 144899, 162, 162, 'Compiled Algorithm (Mocham''s Gift: SpaceTime)', 83162), (144903, 144903, 159, 159, 'Compiled Algorithm (Mocham''s Neural Interface-Web)', 83166), (203719, 203719, 120, 120, 'Compiled Algorithm (Modulate Manifestation)', 83060), (146324, 146324, 185, 185, 'Compiled Algorithm (Molecular Deconstruction)', 83239), (146325, 146325, 165, 165, 'Compiled Algorithm (Molecular Flechettes)', 83262), (145703, 145703, 156, 156, 'Compiled Algorithm (Molecular Rejuvenation)', 83117), (146326, 146326, 17, 17, 'Compiled Algorithm (Molecule Lance)', 83258), (146327, 146327, 123, 123, 'Compiled Algorithm (Momentum Impaler)', 83261), (205273, 205273, 136, 136, 'Compiled Algorithm (Monitor Aggression Subsystem)', 83172), (205258, 205258, 37, 37, 'Compiled Algorithm (Monitor Combat Array)', 83172), (145521, 145521, 169, 169, 'Compiled Algorithm (Monofilament Cat-O', 83256), (145522, 145522, 152, 152, 'Compiled Algorithm (Monofilament Scourger)', 83255), (145523, 145523, 50, 50, 'Compiled Algorithm (Monofilament Whip)', 83253), (146122, 146122, 152, 152, 'Compiled Algorithm (Monomolecular Skin)', 144222), (145269, 145269, 176, 176, 'Compiled Algorithm (Moonbeam)', 83115), (145704, 145704, 172, 172, 'Compiled Algorithm (Morgue Longings)', 83081), (157560, 157560, 156, 156, 'Compiled Algorithm (Motivational Speech: Assassin''s Focus)', 83048), (155815, 155815, 83, 83, 'Compiled Algorithm (Motivational Speech: Bravery Overcomes)', 83048), (155818, 155818, 156, 156, 'Compiled Algorithm (Motivational Speech: Glorious Leader)', 83048), (155817, 155817, 186, 186, 'Compiled Algorithm (Motivational Speech: Heroic Measures)', 83048), (157559, 157559, 149, 149, 'Compiled Algorithm (Motivational Speech: Implement Through Iteration)', 83165), (157558, 157558, 149, 149, 'Compiled Algorithm (Motivational Speech: Improvise and Adapt)', 83165), (155816, 155816, 37, 37, 'Compiled Algorithm (Motivational Speech: Lead From The Front)', 83048), (157557, 157557, 50, 50, 'Compiled Algorithm (Motivational Speech: Only the Paranoid Will Survive!)', 83165), (157556, 157556, 87, 87, 'Compiled Algorithm (Motivational Speech: Opportunity Knocks)', 83048), (157572, 157572, 97, 97, 'Compiled Algorithm (Motivational Speech: Organizational Opportunitites)', 83165), (155819, 155819, 130, 130, 'Compiled Algorithm (Motivational Speech: Triumphant Pose)', 83048), (155622, 155622, 44, 44, 'Compiled Algorithm (Mud Slinger)', 83194), (145524, 145524, 126, 126, 'Compiled Algorithm (Muddled Psyche)', 83123), (146123, 146123, 70, 70, 'Compiled Algorithm (Muscle Booster)', 83209), (146124, 146124, 20, 20, 'Compiled Algorithm (Muscle Stim)', 83209), (145525, 145525, 116, 116, 'Compiled Algorithm (Musculature Command)', 83128), (146605, 146605, 186, 186, 'Compiled Algorithm (My Brain For Your Brain)', 83125), (145388, 145388, 83, 83, 'Compiled Algorithm (Mysterious Causes)', 83081), (163099, 163099, 20, 20, 'Compiled Algorithm (NCU Compressor)', 83065), (145389, 145389, 24, 24, 'Compiled Algorithm (Nano Augmentation)', 144310), (145706, 145706, 73, 73, 'Compiled Algorithm (Nano Bandage)', 83115), (146043, 146043, 80, 80, 'Compiled Algorithm (Nano Boost)', 144311), (162755, 162755, 109, 109, 'Compiled Algorithm (Nano Cauterization)', 83116), (146328, 146328, 149, 149, 'Compiled Algorithm (Nano Cloud Supplement)', 83060), (146329, 146329, 53, 53, 'Compiled Algorithm (Nano Contagion)', 83235), (146044, 146044, 37, 37, 'Compiled Algorithm (Nano Net)', 83131), (145707, 145707, 99, 99, 'Compiled Algorithm (Nano Reaper)', 83080), (144904, 144904, 162, 162, 'Compiled Algorithm (Nano Shutdown)', 83166), (145709, 145709, 93, 93, 'Compiled Algorithm (Nano Surgery)', 83116), (146330, 146330, 142, 142, 'Compiled Algorithm (Nanoblade Cloud)', 83256), (145270, 145270, 34, 34, 'Compiled Algorithm (Natural Cure)', 83112), (145271, 145271, 90, 90, 'Compiled Algorithm (Natural Remedy)', 83113), (145272, 145272, 162, 162, 'Compiled Algorithm (Nature''s Blessing)', 83115), (203900, 203900, 101, 101, 'Compiled Algorithm (Negotiate for Freedom)', 83060), (145273, 145273, 99, 99, 'Compiled Algorithm (Nest of Vipers)', 83068), (146045, 146045, 43, 43, 'Compiled Algorithm (Net Cast Wide)', 83131), (146046, 146046, 159, 159, 'Compiled Algorithm (Neural Interfaced Augmentation Cloud)', 144314), (146331, 146331, 152, 152, 'Compiled Algorithm (Neural Stunner)', 83121), (144905, 144905, 129, 129, 'Compiled Algorithm (Neuron-Notum Interface)', 83166), (146332, 146332, 66, 66, 'Compiled Algorithm (Neutron Spiral)', 83265), (146047, 146047, 14, 14, 'Compiled Algorithm (No Escape Possible)', 83126), (144906, 144906, 60, 60, 'Compiled Algorithm (Notum Attunement)', 83166), (146333, 146333, 175, 175, 'Compiled Algorithm (Notum Overload)', 83060), (144907, 144907, 149, 149, 'Compiled Algorithm (Notum Rejection)', 83166), (146606, 146606, 11, 11, 'Compiled Algorithm (Novice Health Haggler)', 83112), (154743, 154743, 189, 189, 'Compiled Algorithm (Null Space Disruptor)', 144183), (150532, 150532, 159, 159, 'Compiled Algorithm (Nullity Sphere MK II)', 144278), (150531, 150531, 90, 90, 'Compiled Algorithm (Nullity Sphere)', 144275), (144908, 144908, 165, 165, 'Compiled Algorithm (Odin''s Missing Eye)', 83167), (146447, 146447, 156, 156, 'Compiled Algorithm (Offensive Steamroller)', 83049), (146334, 146334, 96, 96, 'Compiled Algorithm (Ol'' Faithful)', 83260), (146048, 146048, 149, 149, 'Compiled Algorithm (Omni-Med Incursion)', 83117), (205285, 205285, 200, 200, 'Compiled Algorithm (Omni-Pol Pacification Logic System)', 83172), (146335, 146335, 73, 73, 'Compiled Algorithm (On-The-Fly Compression)', 83166), (204533, 204533, 180, 180, 'Compiled Algorithm (One Foot in the Grave)', 83113), (144909, 144909, 162, 162, 'Compiled Algorithm (One Mind, One Purpose)', 83194), (145274, 145274, 182, 182, 'Compiled Algorithm (One With Nature)', 83115), (146448, 146448, 76, 76, 'Compiled Algorithm (One-More-Hit Healing)', 83112), (146449, 146449, 152, 152, 'Compiled Algorithm (Only You, Only Me)', 83090), (146336, 146336, 7, 7, 'Compiled Algorithm (Open Wound)', 83252), (145526, 145526, 152, 152, 'Compiled Algorithm (Oppressive Weight of the Guilty)', 83129), (146607, 146607, 24, 24, 'Compiled Algorithm (Overdraught)', 83192), (205282, 205282, 193, 193, 'Compiled Algorithm (Overdrive Aggression Subsystem)', 83172), (205267, 205267, 96, 96, 'Compiled Algorithm (Overdrive Combat Array)', 83172), (162127, 162127, 66, 66, 'Compiled Algorithm (Pack Hunter)', 83188), (145390, 145390, 99, 99, 'Compiled Algorithm (Paralyze with Indecision)', 83128), (145710, 145710, 40, 40, 'Compiled Algorithm (Parasitic Affliction)', 83076), (145711, 145711, 152, 152, 'Compiled Algorithm (Parasitic Horde)', 83081), (146451, 146451, 7, 7, 'Compiled Algorithm (Partial Deflection Shield (Extended))', 83196), (146450, 146450, 1, 1, 'Compiled Algorithm (Partial Deflection Shield)', 83196), (146125, 146125, 136, 136, 'Compiled Algorithm (Partial Diamond Skin)', 144221), (162627, 162627, 106, 106, 'Compiled Algorithm (Partial Grid Jump (Team))', 144238), (146049, 146049, 113, 113, 'Compiled Algorithm (Partial Grid Jump)', 83163), (145933, 145933, 30, 30, 'Compiled Algorithm (Partial Harmonic Cocoon)', 83196), (146453, 146453, 99, 99, 'Compiled Algorithm (Partial Reflective Field (Extended))', 144278), (146452, 146452, 96, 96, 'Compiled Algorithm (Partial Reflective Field)', 144277), (146337, 146337, 123, 123, 'Compiled Algorithm (Particle Accelerator)', 83243), (146338, 146338, 129, 129, 'Compiled Algorithm (Particle Flare)', 83267), (146339, 146339, 90, 90, 'Compiled Algorithm (Particle Shower)', 83266), (204055, 204055, 67, 67, 'Compiled Algorithm (Passage for One)', 83060), (146050, 146050, 7, 7, 'Compiled Algorithm (Passive Distributed Entanglement)', 83130), (146051, 146051, 4, 4, 'Compiled Algorithm (Passive Micro Entanglement)', 83126), (145275, 145275, 41, 41, 'Compiled Algorithm (Patch Wounds)', 83112), (145934, 145934, 20, 20, 'Compiled Algorithm (Patchwork Android)', 83170), (145935, 145935, 1, 1, 'Compiled Algorithm (Patchwork Automaton)', 83170), (145936, 145936, 50, 50, 'Compiled Algorithm (Patchwork Gladiatorbot)', 83175), (145937, 145937, 90, 90, 'Compiled Algorithm (Patchwork Guardbot)', 83175), (145938, 145938, 132, 132, 'Compiled Algorithm (Patchwork Warbot)', 83176), (145939, 145939, 159, 159, 'Compiled Algorithm (Patchwork Warmachine)', 83176), (146608, 146608, 14, 14, 'Compiled Algorithm (Patchy Delayed Health Payment)', 83112), (146609, 146609, 50, 50, 'Compiled Algorithm (Patchy Health Freeloader)', 144188), (146610, 146610, 4, 4, 'Compiled Algorithm (Patchy Health Funnel)', 144185), (146611, 146611, 142, 142, 'Compiled Algorithm (Patchy Health Plunder)', 144192), (145940, 145940, 34, 34, 'Compiled Algorithm (Patchy Repairs)', 83113), (160868, 160868, 149, 149, 'Compiled Algorithm (Path of The Executioner)', 144313), (146612, 146612, 185, 185, 'Compiled Algorithm (Pawnbroker''s Armor)', 144184), (203909, 203909, 199, 199, 'Compiled Algorithm (Pay Bail)', 83060), (146613, 146613, 169, 169, 'Compiled Algorithm (Pay the Pauper)', 83192), (146340, 146340, 159, 159, 'Compiled Algorithm (Peaceful Intentions)', 83125), (146341, 146341, 83, 83, 'Compiled Algorithm (Pellet of Fire)', 83248), (146454, 146454, 142, 142, 'Compiled Algorithm (Perfected Absorption Shield)', 144273), (145941, 145941, 40, 40, 'Compiled Algorithm (Perfected Android)', 83175), (145942, 145942, 14, 14, 'Compiled Algorithm (Perfected Automaton)', 83170), (146455, 146455, 139, 139, 'Compiled Algorithm (Perfected Combat Barrier)', 144273), (145943, 145943, 149, 149, 'Compiled Algorithm (Perfected Defensive Screen)', 144169), (145944, 145944, 83, 83, 'Compiled Algorithm (Perfected Gladiatorbot)', 83175), (145945, 145945, 119, 119, 'Compiled Algorithm (Perfected Guardbot)', 83176), (145946, 145946, 146, 146, 'Compiled Algorithm (Perfected Protective Field)', 144168), (145947, 145947, 139, 139, 'Compiled Algorithm (Perfected Shielding Barrier)', 144168), (145948, 145948, 152, 152, 'Compiled Algorithm (Perfected Warbot)', 83176), (145949, 145949, 172, 172, 'Compiled Algorithm (Perfected Warmachine)', 83177), (145527, 145527, 43, 43, 'Compiled Algorithm (Performance Review)', 83231), (145712, 145712, 27, 27, 'Compiled Algorithm (Periodic Checkup)', 83112), (145713, 145713, 136, 136, 'Compiled Algorithm (Perpetuating Nano Reaper)', 83081), (146456, 146456, 57, 57, 'Compiled Algorithm (Persistent Damage Amplifier)', 144312), (146457, 146457, 17, 17, 'Compiled Algorithm (Persistent Damage Multiplier)', 144310), (145276, 145276, 149, 149, 'Compiled Algorithm (Personal Blizzard)', 83068), (146614, 146614, 100, 100, 'Compiled Algorithm (Personal Grid Beacon)', 83270), (146126, 146126, 4, 4, 'Compiled Algorithm (Personal Healing)', 83112), (145528, 145528, 53, 53, 'Compiled Algorithm (Personal Magnetism)', 83192), (146342, 146342, 169, 169, 'Compiled Algorithm (Personal Notum Harvester)', 83166), (203894, 203894, 49, 49, 'Compiled Algorithm (Persuade for Freedom)', 83060), (203993, 203993, 124, 124, 'Compiled Algorithm (Petition Freedom)', 83060), (145529, 145529, 76, 76, 'Compiled Algorithm (Pheromone Control)', 83192), (145950, 145950, 53, 53, 'Compiled Algorithm (Philosopher''s Stone)', 83062), (146343, 146343, 37, 37, 'Compiled Algorithm (Phoenix Swarm)', 83246), (146344, 146344, 83, 83, 'Compiled Algorithm (Phosphor Torch)', 83248), (146345, 146345, 172, 172, 'Compiled Algorithm (Photon Deflector)', 83167), (145834, 145834, 113, 113, 'Compiled Algorithm (Physical Dominance)', 83139), (145715, 145715, 33, 33, 'Compiled Algorithm (Physician''s Skill)', 83113), (145951, 145951, 93, 93, 'Compiled Algorithm (Pillar of Spikes)', 83068), (146458, 146458, 24, 24, 'Compiled Algorithm (Pistol Mastery)', 83179), (146346, 146346, 50, 50, 'Compiled Algorithm (Plasma Lights)', 83241), (145952, 145952, 185, 185, 'Compiled Algorithm (Plasma Shield)', 83068), (146347, 146347, 76, 76, 'Compiled Algorithm (Plasma Swirl)', 83014), (145278, 145278, 53, 53, 'Compiled Algorithm (Playful Cub (Other))', 83188), (145279, 145279, 70, 70, 'Compiled Algorithm (Playful Cub (Team))', 83188), (145277, 145277, 47, 47, 'Compiled Algorithm (Playful Cub)', 83188), (146348, 146348, 30, 30, 'Compiled Algorithm (Poison Missile)', 83234), (146052, 146052, 1, 1, 'Compiled Algorithm (Poison Modification)', 83280), (145835, 145835, 47, 47, 'Compiled Algorithm (Poison Stingers)', 83068), (146349, 146349, 4, 4, 'Compiled Algorithm (Poke Eyes)', 83167), (204434, 204434, 84, 84, 'Compiled Algorithm (Polarized Screening)', 144166), (146053, 146053, 119, 119, 'Compiled Algorithm (Policy Skim)', 83115), (145280, 145280, 53, 53, 'Compiled Algorithm (Porcupine Barrier)', 83068), (145716, 145716, 169, 169, 'Compiled Algorithm (Positive Life Reinforcement)', 83118), (146350, 146350, 96, 96, 'Compiled Algorithm (Positron Stream)', 83242), (145391, 145391, 14, 14, 'Compiled Algorithm (Postpone Encounter)', 83130), (203175, 203175, 64, 64, 'Compiled Algorithm (Power Burst)', 83058), (203221, 203221, 163, 163, 'Compiled Algorithm (Power of the Thunderhead)', 83092), (145530, 145530, 136, 136, 'Compiled Algorithm (Powerful Blizzard of Red Tape)', 83132), (146622, 146622, 27, 27, 'Compiled Algorithm (Practiced Health Haggler)', 83113), (145281, 145281, 93, 93, 'Compiled Algorithm (Practiced Stitching)', 83114), (145717, 145717, 139, 139, 'Compiled Algorithm (Pre-Combat Conditioning)', 144175), (146459, 146459, 43, 43, 'Compiled Algorithm (Precognition)', 83096), (146623, 146623, 159, 159, 'Compiled Algorithm (Preeminent Health Haggler)', 83119), (145718, 145718, 37, 37, 'Compiled Algorithm (Premium Cover)', 83114), (146624, 146624, 182, 182, 'Compiled Algorithm (Premium Delayed Health Payment)', 83119), (163127, 163127, 152, 152, 'Compiled Algorithm (Presence of the Dominator)', 83200), (163121, 163121, 43, 43, 'Compiled Algorithm (Presence of the Master)', 83200), (163124, 163124, 113, 113, 'Compiled Algorithm (Presence of the Overlord)', 83200), (145531, 145531, 57, 57, 'Compiled Algorithm (Prey On Fear)', 83200), (145532, 145532, 159, 159, 'Compiled Algorithm (Primal Fear)', 83200), (145836, 145836, 139, 139, 'Compiled Algorithm (Primal Hatred)', 83090), (145719, 145719, 20, 20, 'Compiled Algorithm (Primitive Nano Gorger)', 83076), (145720, 145720, 4, 4, 'Compiled Algorithm (Primitive Viral Agent)', 83076), (145837, 145837, 136, 136, 'Compiled Algorithm (Prodigious Strength)', 83209), (145721, 145721, 93, 93, 'Compiled Algorithm (Professional Care)', 83115), (146625, 146625, 87, 87, 'Compiled Algorithm (Professional Health Haggler)', 83116), (146626, 146626, 41, 41, 'Compiled Algorithm (Proficient Health Haggler)', 83114), (146627, 146627, 159, 159, 'Compiled Algorithm (Profit Preoccupation)', 83128), (146628, 146628, 37, 37, 'Compiled Algorithm (Profiteer''s Grip)', 83126), (146351, 146351, 60, 60, 'Compiled Algorithm (Project Calm)', 83123), (146629, 146629, 17, 17, 'Compiled Algorithm (Project Thought Patterns)', 83122), (145392, 145392, 73, 73, 'Compiled Algorithm (Projectile Magnet)', 83096), (146054, 146054, 123, 123, 'Compiled Algorithm (Prolong Encounter)', 83128), (145393, 145393, 119, 119, 'Compiled Algorithm (Prolonged Interrogation)', 83128), (146352, 146352, 119, 119, 'Compiled Algorithm (Pronounce Blindness)', 83167), (145283, 145283, 149, 149, 'Compiled Algorithm (Pronouncement of Greatness (Other))', 144247), (145282, 145282, 20, 20, 'Compiled Algorithm (Pronouncement of Greatness)', 144247), (145284, 145284, 116, 116, 'Compiled Algorithm (Protection of the Storm)', 83068), (145953, 145953, 73, 73, 'Compiled Algorithm (Protective Field)', 144167), (145722, 145722, 17, 17, 'Compiled Algorithm (Protein Breakdown)', 83076), (144910, 144910, 47, 47, 'Compiled Algorithm (PsyMod Mastery)', 83193), (145533, 145533, 10, 10, 'Compiled Algorithm (Punishing Blade)', 83252), (146630, 146630, 83, 83, 'Compiled Algorithm (Pyramid Marketing)', 83127), (146631, 146631, 87, 87, 'Compiled Algorithm (Quality Delayed Health Payment)', 83116), (146632, 146632, 139, 139, 'Compiled Algorithm (Quantum Uncertainty)', 83096), (144911, 144911, 103, 103, 'Compiled Algorithm (Quantum Wings)', 83279), (146353, 146353, 182, 182, 'Compiled Algorithm (Quark Collapse)', 83269), (163114, 163114, 132, 132, 'Compiled Algorithm (QuarkStor NCU Core)', 83065), (144912, 144912, 30, 30, 'Compiled Algorithm (Quell Anger)', 144311), (144913, 144913, 40, 40, 'Compiled Algorithm (Quench Anger)', 144311), (145954, 145954, 14, 14, 'Compiled Algorithm (Quick Fix)', 83112), (145955, 145955, 40, 40, 'Compiled Algorithm (Quick Weapon)', 83139), (146460, 146460, 17, 17, 'Compiled Algorithm (Quickshot)', 83139), (145838, 145838, 70, 70, 'Compiled Algorithm (Quivering Wreck)', 83200), (146358, 146358, 63, 63, 'Compiled Algorithm (RNA Reaper)', 83265), (145723, 145723, 123, 123, 'Compiled Algorithm (Radiant Heal)', 83116), (146354, 146354, 4, 4, 'Compiled Algorithm (Radiation Pulse)', 83040), (146355, 146355, 76, 76, 'Compiled Algorithm (Radiation Scour)', 83266), (146356, 146356, 99, 99, 'Compiled Algorithm (Radioactive Cloud)', 83266), (144914, 144914, 93, 93, 'Compiled Algorithm (Rage Abolishment)', 144311), (144915, 144915, 116, 116, 'Compiled Algorithm (Rage Eradication)', 144311), (144916, 144916, 47, 47, 'Compiled Algorithm (Rage Materialization)', 144224), (144917, 144917, 76, 76, 'Compiled Algorithm (Rage Suppression)', 144311), (202900, 202900, 197, 197, 'Compiled Algorithm (Rampage of Juggernaut)', 83000), (202821, 202821, 197, 197, 'Compiled Algorithm (Rampage of the Berserker)', 83202), (145724, 145724, 165, 165, 'Compiled Algorithm (Rampant Decay)', 83081), (146421, 146421, 63, 63, 'Compiled Algorithm (Ranged Energy Weapon Mastery)', 83093), (145956, 145956, 129, 129, 'Compiled Algorithm (Rapid Weapon)', 83139), (145285, 145285, 139, 139, 'Compiled Algorithm (Razor Barrier)', 83068), (146056, 146056, 169, 169, 'Compiled Algorithm (Re-Matrix Grid Vector)', 83270), (145957, 145957, 182, 182, 'Compiled Algorithm (Reactivated Wardroid)', 83177), (146462, 146462, 83, 83, 'Compiled Algorithm (Reactive Deflection Shield (Extended))', 144277), (146461, 146461, 76, 76, 'Compiled Algorithm (Reactive Deflection Shield)', 144277), (145958, 145958, 179, 179, 'Compiled Algorithm (Reactive Harmonic Cocoon)', 144280), (146464, 146464, 142, 142, 'Compiled Algorithm (Reactive Reflective Field (Extended))', 144280), (146463, 146463, 142, 142, 'Compiled Algorithm (Reactive Reflective Field)', 144280), (162740, 162740, 24, 24, 'Compiled Algorithm (Rebinding Sutures)', 83113), (145959, 145959, 84, 84, 'Compiled Algorithm (Rebuild Casing)', 83115), (146055, 146055, 47, 47, 'Compiled Algorithm (Reckless Digitization)', 83270), (163111, 163111, 123, 123, 'Compiled Algorithm (Recompiling Memory Analyzer)', 83065), (145960, 145960, 50, 50, 'Compiled Algorithm (Recondition Parts)', 83114), (145726, 145726, 162, 162, 'Compiled Algorithm (Recuperative Respite)', 83119), (145727, 145727, 40, 40, 'Compiled Algorithm (Recurrent Remedy)', 83113), (145534, 145534, 116, 116, 'Compiled Algorithm (Red Tape)', 83049), (146641, 146641, 165, 165, 'Compiled Algorithm (Redeem AC (Advanced))', 144182), (146642, 146642, 175, 175, 'Compiled Algorithm (Redeem AC (Greater))', 144183), (146643, 146643, 129, 129, 'Compiled Algorithm (Redeem AC (Lesser))', 144181), (146644, 146644, 156, 156, 'Compiled Algorithm (Redeem AC (Major))', 144182), (146645, 146645, 106, 106, 'Compiled Algorithm (Redeem AC (Minor))', 144180), (146646, 146646, 90, 90, 'Compiled Algorithm (Redeem AC (Weak))', 144180), (146640, 146640, 149, 149, 'Compiled Algorithm (Redeem AC)', 144181), (146647, 146647, 149, 149, 'Compiled Algorithm (Redirect Neural Signals)', 83124), (146127, 146127, 136, 136, 'Compiled Algorithm (Reduce Inertia)', 83096), (145728, 145728, 66, 66, 'Compiled Algorithm (Refined Nano Contagion)', 83080), (146466, 146466, 126, 126, 'Compiled Algorithm (Reflective Field (Extended))', 144279), (146465, 146465, 126, 126, 'Compiled Algorithm (Reflective Field)', 144279), (145287, 145287, 126, 126, 'Compiled Algorithm (Relation to Cerberus (Other))', 83188), (145288, 145288, 132, 132, 'Compiled Algorithm (Relation to Cerberus (Team))', 83188), (145286, 145286, 119, 119, 'Compiled Algorithm (Relation to Cerberus)', 83188), (146648, 146648, 159, 159, 'Compiled Algorithm (Relentless Slayer)', 144314), (145729, 145729, 20, 20, 'Compiled Algorithm (Relief from Pain)', 83113), (162737, 162737, 7, 7, 'Compiled Algorithm (Relieving Salve)', 83113), (145730, 145730, 159, 159, 'Compiled Algorithm (Remedy Dissemination)', 83118), (145535, 145535, 109, 109, 'Compiled Algorithm (Remembered Pain)', 83255), (204049, 204049, 152, 152, 'Compiled Algorithm (Rend Bonds (Other))', 83060), (203692, 203692, 133, 133, 'Compiled Algorithm (Rend Bonds)', 83060), (204497, 204497, 139, 139, 'Compiled Algorithm (Rend Constraints)', 83060), (146357, 146357, 129, 129, 'Compiled Algorithm (Rend Flesh)', 83255), (145731, 145731, 142, 142, 'Compiled Algorithm (Repeated Cellular Trauma)', 83081), (203987, 203987, 36, 36, 'Compiled Algorithm (Request Freedom)', 83060), (204058, 204058, 118, 118, 'Compiled Algorithm (Reroute Impediments)', 83060), (152190, 152190, 107, 107, 'Compiled Algorithm (Restock Ammo (Level OP-C))', 144287), (152194, 152194, 107, 107, 'Compiled Algorithm (Restock Ammo (Level OP-CC))', 144287), (146057, 146057, 4, 4, 'Compiled Algorithm (Restock Ammo (Level OP-I))', 144285), (152193, 152193, 18, 18, 'Compiled Algorithm (Restock Ammo (Level OP-II))', 144285), (152192, 152192, 60, 60, 'Compiled Algorithm (Restock Ammo (Level OP-X))', 144286), (152191, 152191, 74, 74, 'Compiled Algorithm (Restock Ammo (Level OP-XX))', 144286), (145732, 145732, 40, 40, 'Compiled Algorithm (Restorative Boost)', 83114), (146128, 146128, 20, 20, 'Compiled Algorithm (Restore Essence)', 83113), (145290, 145290, 107, 107, 'Compiled Algorithm (Restore Vitality)', 83114), (145289, 145289, 64, 64, 'Compiled Algorithm (Restore to Health)', 83113), (145536, 145536, 24, 24, 'Compiled Algorithm (Restrict Movement)', 83126), (145961, 145961, 132, 132, 'Compiled Algorithm (Retaliatory Barrier)', 83068), (145291, 145291, 159, 159, 'Compiled Algorithm (Retaliatory Venom Spit)', 83068), (163102, 163102, 40, 40, 'Compiled Algorithm (Retool NCU)', 83065), (145292, 145292, 169, 169, 'Compiled Algorithm (Retribution of the Aesir)', 83068), (146129, 146129, 146, 146, 'Compiled Algorithm (Return Attack)', 83199), (145293, 145293, 165, 165, 'Compiled Algorithm (Revenge of the Valkyrie)', 83068), (145537, 145537, 47, 47, 'Compiled Algorithm (Revoke Movement License)', 83127), (146649, 146649, 80, 80, 'Compiled Algorithm (Riding Shotgun)', 144311), (146467, 146467, 37, 37, 'Compiled Algorithm (Rifle Mastery)', 83206), (145538, 145538, 93, 93, 'Compiled Algorithm (Rigid Stance)', 83127), (146468, 146468, 126, 126, 'Compiled Algorithm (Riot Control)', 83058), (145839, 145839, 116, 116, 'Compiled Algorithm (Roar of Aggression)', 83090), (145294, 145294, 136, 136, 'Compiled Algorithm (Robust Treatment)', 83272), (145295, 145295, 7, 7, 'Compiled Algorithm (Rough Stitching)', 83112), (146130, 146130, 24, 24, 'Compiled Algorithm (Rubber Skin)', 83157), (146359, 146359, 1, 1, 'Compiled Algorithm (Rudimentary Humidity Extractor)', 83166), (145539, 145539, 179, 179, 'Compiled Algorithm (Rule of One)', 83245), (146360, 146360, 33, 33, 'Compiled Algorithm (Run-Time Recompiler)', 83166), (145395, 145395, 96, 96, 'Compiled Algorithm (Ruse of Taren - Phase 2)', 83141), (145396, 145396, 162, 162, 'Compiled Algorithm (Ruse of Taren - Phase 3)', 83141), (145394, 145394, 40, 40, 'Compiled Algorithm (Ruse of Taren: Phase 1)', 83141), (146131, 146131, 76, 76, 'Compiled Algorithm (Sadness of the Willow)', 144311), (204034, 204034, 21, 21, 'Compiled Algorithm (Scatter Bonds (Other))', 83060), (203683, 203683, 10, 10, 'Compiled Algorithm (Scatter Bonds)', 83060), (145840, 145840, 139, 139, 'Compiled Algorithm (Screen of Blades)', 83068), (145733, 145733, 86, 86, 'Compiled Algorithm (Scythe A Virus)', 83080), (145734, 145734, 182, 182, 'Compiled Algorithm (Scythe B Virus)', 83081), (146361, 146361, 80, 80, 'Compiled Algorithm (Searing Agony)', 83082), (145540, 145540, 93, 93, 'Compiled Algorithm (Searing Bolt)', 83241), (146362, 146362, 152, 152, 'Compiled Algorithm (Searing Circle)', 83250), (146363, 146363, 159, 159, 'Compiled Algorithm (Searing Stream)', 83226), (145296, 145296, 169, 169, 'Compiled Algorithm (Seed Life)', 83116), (145735, 145735, 60, 60, 'Compiled Algorithm (Seethe with Germs)', 83080), (146132, 146132, 136, 136, 'Compiled Algorithm (Seething Resentment)', 83090), (145962, 145962, 43, 43, 'Compiled Algorithm (Semi-Sentient Android)', 83175), (146060, 146060, 169, 169, 'Compiled Algorithm (Semi-Sentient Augmentation Cloud)', 144314), (145963, 145963, 17, 17, 'Compiled Algorithm (Semi-Sentient Automaton)', 83170), (145964, 145964, 86, 86, 'Compiled Algorithm (Semi-Sentient Gladiatorbot)', 83175), (145965, 145965, 123, 123, 'Compiled Algorithm (Semi-Sentient Guardbot)', 83176), (145966, 145966, 156, 156, 'Compiled Algorithm (Semi-Sentient Warbot)', 83176), (145967, 145967, 182, 182, 'Compiled Algorithm (Semi-Sentient Wardroid)', 83177), (145968, 145968, 175, 175, 'Compiled Algorithm (Semi-Sentient Warmachine)', 83177), (144918, 144918, 43, 43, 'Compiled Algorithm (Sense Imp Mastery)', 83201), (145736, 145736, 185, 185, 'Compiled Algorithm (Sentient Nano Gorger)', 83081), (163117, 163117, 162, 162, 'Compiled Algorithm (Sentient Viral Recoder)', 83065), (163414, 163414, 172, 172, 'Compiled Algorithm (Serene Sky)', 83124), (145541, 145541, 172, 172, 'Compiled Algorithm (Shackles of Obedience)', 83129), (145397, 145397, 20, 20, 'Compiled Algorithm (Shadow Crown)', 83066), (161390, 161390, 17, 17, 'Compiled Algorithm (Shadow Filter)', 83066), (146650, 146650, 63, 63, 'Compiled Algorithm (Shady Acquisition)', 83192), (162336, 162336, 80, 80, 'Compiled Algorithm (Sharpen Claws)', 144309), (204046, 204046, 107, 107, 'Compiled Algorithm (Shatter Bonds (Other))', 83060), (203686, 203686, 90, 90, 'Compiled Algorithm (Shatter Bonds)', 83060), (145737, 145737, 37, 37, 'Compiled Algorithm (Shatter Bone)', 83254), (204017, 204017, 103, 103, 'Compiled Algorithm (Shatter Chains)', 83060), (144919, 144919, 7, 7, 'Compiled Algorithm (Shed Anger)', 144311), (146133, 146133, 66, 66, 'Compiled Algorithm (Shen Protection)', 144218), (145969, 145969, 63, 63, 'Compiled Algorithm (Shielding Barrier)', 144166), (145841, 145841, 70, 70, 'Compiled Algorithm (Shock Absorber)', 144166), (146364, 146364, 14, 14, 'Compiled Algorithm (Shockball)', 83013), (146365, 146365, 66, 66, 'Compiled Algorithm (Shockwave Slash)', 83253), (162511, 162511, 156, 156, 'Compiled Algorithm (Shower With Lead)', 83158), (146366, 146366, 40, 40, 'Compiled Algorithm (Shower With Sludge)', 83223), (146367, 146367, 123, 123, 'Compiled Algorithm (Shrapnel Burst)', 83037), (146368, 146368, 66, 66, 'Compiled Algorithm (Shroud of Darkness)', 83167), (146369, 146369, 182, 182, 'Compiled Algorithm (Shroud of the Grave)', 83167), (145842, 145842, 136, 136, 'Compiled Algorithm (Shrug Off Blows)', 144168), (203701, 203701, 22, 22, 'Compiled Algorithm (Sidestep the Blame)', 83060), (146651, 146651, 162, 162, 'Compiled Algorithm (Simple Mind, Simple Pleasures)', 83125), (146653, 146653, 152, 152, 'Compiled Algorithm (Siphon AC (Advanced))', 144182), (146654, 146654, 162, 162, 'Compiled Algorithm (Siphon AC (Greater))', 144183), (146655, 146655, 172, 172, 'Compiled Algorithm (Siphon AC (Invasive))', 144184), (146656, 146656, 146, 146, 'Compiled Algorithm (Siphon AC (Major))', 144182), (146657, 146657, 103, 103, 'Compiled Algorithm (Siphon AC (Minor))', 144180), (146658, 146658, 86, 86, 'Compiled Algorithm (Siphon AC (Weak))', 144180), (146652, 146652, 123, 123, 'Compiled Algorithm (Siphon AC)', 144181), (145542, 145542, 123, 123, 'Compiled Algorithm (Siren Call)', 83192), (146660, 146660, 113, 113, 'Compiled Algorithm (Skill Wrangler (Advanced))', 144199), (146661, 146661, 34, 34, 'Compiled Algorithm (Skill Wrangler (Commonplace))', 144196), (146662, 146662, 176, 176, 'Compiled Algorithm (Skill Wrangler (Exceptional))', 144203), (146663, 146663, 150, 150, 'Compiled Algorithm (Skill Wrangler (Greater))', 144200), (146664, 146664, 70, 70, 'Compiled Algorithm (Skill Wrangler (Inferior))', 144198), (146666, 146666, 41, 41, 'Compiled Algorithm (Skill Wrangler (Lossy))', 144197), (146667, 146667, 97, 97, 'Compiled Algorithm (Skill Wrangler (Major))', 144199), (146668, 146668, 21, 21, 'Compiled Algorithm (Skill Wrangler (Minor))', 144196), (146669, 146669, 14, 14, 'Compiled Algorithm (Skill Wrangler (Patchy))', 144195), (146670, 146670, 189, 189, 'Compiled Algorithm (Skill Wrangler (Premium))', 144204), (146671, 146671, 156, 156, 'Compiled Algorithm (Skill Wrangler (Sophisticated))', 144201), (146672, 146672, 163, 163, 'Compiled Algorithm (Skill Wrangler (Superb))', 144202), (146673, 146673, 126, 126, 'Compiled Algorithm (Skill Wrangler (Superior))', 144200), (146674, 146674, 8, 8, 'Compiled Algorithm (Skill Wrangler (Weak))', 144195), (146665, 146665, 54, 54, 'Compiled Algorithm (Skill Wrangler Lesser)', 144197), (146659, 146659, 84, 84, 'Compiled Algorithm (Skill Wrangler)', 144198), (202876, 202876, 133, 133, 'Compiled Algorithm (Skill of the Guardian)', 83151), (202882, 202882, 197, 197, 'Compiled Algorithm (Skill of the Guillotine)', 83151), (202873, 202873, 89, 89, 'Compiled Algorithm (Skill of the Highlander)', 83202), (202879, 202879, 173, 173, 'Compiled Algorithm (Skill of the Reaper)', 83151), (146675, 146675, 47, 47, 'Compiled Algorithm (Skilled Health Haggler)', 83115), (145297, 145297, 73, 73, 'Compiled Algorithm (Skin of the Toad)', 83068), (145970, 145970, 189, 189, 'Compiled Algorithm (Slayerdroid Guardian)', 83177), (145971, 145971, 185, 185, 'Compiled Algorithm (Slayerdroid Protector)', 83177), (145972, 145972, 189, 189, 'Compiled Algorithm (Slayerdroid Sentinel)', 83177), (145973, 145973, 185, 185, 'Compiled Algorithm (Slayerdroid Transference)', 83181), (145974, 145974, 185, 185, 'Compiled Algorithm (Slayerdroid Warden)', 83177), (145543, 145543, 43, 43, 'Compiled Algorithm (Sleep)', 83123), (146370, 146370, 93, 93, 'Compiled Algorithm (Slime Cascade)', 83083), (145298, 145298, 14, 14, 'Compiled Algorithm (Slipshod Bandaging)', 83112), (204461, 204461, 181, 181, 'Compiled Algorithm (Sloughing Assault Shield)', 82989), (204491, 204491, 196, 196, 'Compiled Algorithm (Sloughing Combat Field)', 82989), (204455, 204455, 107, 107, 'Compiled Algorithm (Sloughing Defensive Shield)', 82989), (204449, 204449, 72, 72, 'Compiled Algorithm (Sloughing Protective Barrier)', 82989), (204485, 204485, 93, 93, 'Compiled Algorithm (Sloughing Protective Field)', 82989), (204488, 204488, 141, 141, 'Compiled Algorithm (Sloughing Shielding Field)', 82989), (146372, 146372, 57, 57, 'Compiled Algorithm (Smiting Missile Mk II)', 83259), (146371, 146371, 24, 24, 'Compiled Algorithm (Smiting Missile)', 83258), (155398, 155398, 70, 70, 'Compiled Algorithm (Smuggler Shipment (OP-C))', 144289), (155393, 155393, 120, 120, 'Compiled Algorithm (Smuggler Shipment (OP-CC))', 144290), (155395, 155395, 107, 107, 'Compiled Algorithm (Smuggler Shipment (OP-CLX))', 144290), (155394, 155394, 113, 113, 'Compiled Algorithm (Smuggler Shipment (OP-CLXXX))', 144290), (155396, 155396, 103, 103, 'Compiled Algorithm (Smuggler Shipment (OP-CXL))', 144289), (155397, 155397, 90, 90, 'Compiled Algorithm (Smuggler Shipment (OP-CXX))', 144289), (155400, 155400, 34, 34, 'Compiled Algorithm (Smuggler Shipment (OP-LX))', 144288), (155399, 155399, 54, 54, 'Compiled Algorithm (Smuggler Shipment (OP-LXXX))', 144288), (155401, 155401, 24, 24, 'Compiled Algorithm (Smuggler Shipment (OP-XL))', 144288), (155402, 155402, 8, 8, 'Compiled Algorithm (Smuggler Shipment (OP-XX))', 144288), (145544, 145544, 83, 83, 'Compiled Algorithm (Sneaking Terror)', 83090), (145398, 145398, 43, 43, 'Compiled Algorithm (Sniper''s Bliss)', 83206), (145545, 145545, 40, 40, 'Compiled Algorithm (Soft Siren Call)', 83192), (146373, 146373, 152, 152, 'Compiled Algorithm (Solar Wind)', 83268), (203178, 203178, 200, 200, 'Compiled Algorithm (Soldier Clip Junkie)', 83109), (161892, 161892, 152, 152, 'Compiled Algorithm (Soleet Friend)', 144247), (203999, 203999, 200, 200, 'Compiled Algorithm (Solicit Freedom)', 83060), (145546, 145546, 63, 63, 'Compiled Algorithm (Solicit Support)', 83192), (163402, 163402, 24, 24, 'Compiled Algorithm (Soothing Breeze)', 83122), (146676, 146676, 156, 156, 'Compiled Algorithm (Sophisticated Delayed Health Payment)', 83118), (146677, 146677, 123, 123, 'Compiled Algorithm (Sophisticated Health Freeloader)', 144191), (146678, 146678, 40, 40, 'Compiled Algorithm (Sophisticated Health Funnel)', 144188), (146679, 146679, 182, 182, 'Compiled Algorithm (Sophisticated Health Plunder)', 144194), (144890, 144890, 40, 40, 'Compiled Algorithm (SpaceTime Mastery)', 83154), (145299, 145299, 47, 47, 'Compiled Algorithm (Sparking Touch)', 83068), (145975, 145975, 159, 159, 'Compiled Algorithm (Sparkling Field Array)', 83068), (145300, 145300, 24, 24, 'Compiled Algorithm (Sparrow Flight)', 144260), (145738, 145738, 33, 33, 'Compiled Algorithm (Specialist Treatment)', 83272), (145976, 145976, 53, 53, 'Compiled Algorithm (Spike Armor)', 83068), (145977, 145977, 7, 7, 'Compiled Algorithm (Spike Shield)', 83068), (146061, 146061, 156, 156, 'Compiled Algorithm (Spin Nanoweb)', 83133), (146062, 146062, 96, 96, 'Compiled Algorithm (Spin Weak Nanoweb)', 83132), (145843, 145843, 130, 130, 'Compiled Algorithm (Spine of Jelly)', 83200), (145548, 145548, 123, 123, 'Compiled Algorithm (Splinter Missile)', 83260), (162508, 162508, 136, 136, 'Compiled Algorithm (Spray With Lead)', 83158), (145739, 145739, 27, 27, 'Compiled Algorithm (Spreading Health)', 83112), (146063, 146063, 70, 70, 'Compiled Algorithm (Stack the Odds)', 83169), (162333, 162333, 162, 162, 'Compiled Algorithm (Stare of Cerberus)', 83169), (146374, 146374, 156, 156, 'Compiled Algorithm (Stargasp)', 83244), (146134, 146134, 76, 76, 'Compiled Algorithm (Steel Skin)', 144219), (160865, 160865, 132, 132, 'Compiled Algorithm (Steps of The Executioner)', 144312), (146680, 146680, 24, 24, 'Compiled Algorithm (Sticky Ground)', 83126), (144920, 144920, 53, 53, 'Compiled Algorithm (Stifle Rage)', 144311), (146376, 146376, 179, 179, 'Compiled Algorithm (Stinging Missile Swarm)', 83263), (146375, 146375, 63, 63, 'Compiled Algorithm (Stinging Missile)', 83259), (145549, 145549, 63, 63, 'Compiled Algorithm (Stinging Reminder)', 83261), (161414, 161414, 142, 142, 'Compiled Algorithm (Stormedge)', 83202), (161432, 161432, 40, 40, 'Compiled Algorithm (Strength of the Hummingbird)', 83148), (145740, 145740, 66, 66, 'Compiled Algorithm (Strengthen Resolve)', 144282), (146681, 146681, 33, 33, 'Compiled Algorithm (Strip Assets)', 83192), (145550, 145550, 30, 30, 'Compiled Algorithm (Stumbling Steps)', 83127), (146135, 146135, 30, 30, 'Compiled Algorithm (Subconscious Guiding)', 83048), (203906, 203906, 174, 174, 'Compiled Algorithm (Subpoena for Freedom)', 83060), (145551, 145551, 20, 20, 'Compiled Algorithm (Subsonic Blast)', 83253), (146682, 146682, 54, 54, 'Compiled Algorithm (Successful Health Haggler)', 83115), (203722, 203722, 163, 163, 'Compiled Algorithm (Succor of Expediuum)', 83060), (146377, 146377, 162, 162, 'Compiled Algorithm (Sudden Affliction)', 83238), (146378, 146378, 24, 24, 'Compiled Algorithm (Sudden Chill)', 83228), (145552, 145552, 37, 37, 'Compiled Algorithm (Sudden Scare)', 83200), (146136, 146136, 152, 152, 'Compiled Algorithm (Summer Rain)', 144314), (144921, 144921, 189, 189, 'Compiled Algorithm (Summon Cacodemon)', 144226), (144922, 144922, 189, 189, 'Compiled Algorithm (Summon Demon)', 144226), (144923, 144923, 182, 182, 'Compiled Algorithm (Summon Fiend)', 144226), (155194, 155194, 60, 60, 'Compiled Algorithm (Summon Grid Armor Mk I)', 83197), (155196, 155196, 93, 93, 'Compiled Algorithm (Summon Grid Armor Mk II)', 83197), (155195, 155195, 116, 116, 'Compiled Algorithm (Summon Grid Armor Mk III)', 83197), (155197, 155197, 140, 140, 'Compiled Algorithm (Summon Grid Armor Mk IV)', 83197), (144924, 144924, 179, 179, 'Compiled Algorithm (Summon Lemur)', 144226), (156156, 156156, 83, 83, 'Compiled Algorithm (Summoning of Absuum)', 144233), (156155, 156155, 176, 176, 'Compiled Algorithm (Summoning of Balbuto the Gibberer)', 144234), (156154, 156154, 166, 166, 'Compiled Algorithm (Summoning of Confane)', 144234), (156153, 156153, 120, 120, 'Compiled Algorithm (Summoning of Demenus)', 144233), (156152, 156152, 159, 159, 'Compiled Algorithm (Summoning of Distral)', 144234), (156151, 156151, 153, 153, 'Compiled Algorithm (Summoning of Duoco)', 144233), (156150, 156150, 100, 100, 'Compiled Algorithm (Summoning of Ignatus Mind-Clouder)', 144233), (156162, 156162, 189, 189, 'Compiled Algorithm (Summoning of Tumulten)', 144234), (204500, 204500, 180, 180, 'Compiled Algorithm (Sunder Constraints)', 83060), (146137, 146137, 93, 93, 'Compiled Algorithm (Sunrise over Pond)', 144311), (146469, 146469, 99, 99, 'Compiled Algorithm (Superior Absorption Shield)', 144271), (144925, 144925, 4, 4, 'Compiled Algorithm (Superior Anger Manifestation)', 144223), (145741, 145741, 57, 57, 'Compiled Algorithm (Superior Bodily Reinforcement)', 144175), (146470, 146470, 83, 83, 'Compiled Algorithm (Superior Combat Barrier)', 144271), (145978, 145978, 103, 103, 'Compiled Algorithm (Superior Defensive Screen)', 144167), (146683, 146683, 140, 140, 'Compiled Algorithm (Superior Delayed Health Payment)', 83117), (145742, 145742, 96, 96, 'Compiled Algorithm (Superior Dress Wounds)', 83116), (144926, 144926, 162, 162, 'Compiled Algorithm (Superior Enmity Personification)', 144226), (203885, 203885, 150, 150, 'Compiled Algorithm (Superior Exoskeleton Pulse)', 83060), (145743, 145743, 119, 119, 'Compiled Algorithm (Superior First Aid)', 83101), (145979, 145979, 172, 172, 'Compiled Algorithm (Superior Force Field)', 144170), (144927, 144927, 139, 139, 'Compiled Algorithm (Superior Frenzy Embodiment)', 144225), (144928, 144928, 24, 24, 'Compiled Algorithm (Superior Fury Externalization)', 144223), (145744, 145744, 30, 30, 'Compiled Algorithm (Superior Healing)', 83113), (145745, 145745, 83, 83, 'Compiled Algorithm (Superior Health Augmentation)', 144282), (145746, 145746, 162, 162, 'Compiled Algorithm (Superior Health Pump)', 83117), (146379, 146379, 99, 99, 'Compiled Algorithm (Superior Humidity Extractor)', 83166), (145747, 145747, 169, 169, 'Compiled Algorithm (Superior Life Reinforcement)', 144284), (146380, 146380, 172, 172, 'Compiled Algorithm (Superior Malign Devourer)', 83239), (145748, 145748, 152, 152, 'Compiled Algorithm (Superior Metabolism Booster)', 144175), (145749, 145749, 142, 142, 'Compiled Algorithm (Superior Nano Bandage)', 83117), (146381, 146381, 93, 93, 'Compiled Algorithm (Superior Nano Command)', 83060), (145750, 145750, 179, 179, 'Compiled Algorithm (Superior Omni-Med Enhancement)', 144175), (204437, 204437, 118, 118, 'Compiled Algorithm (Superior Polarized Screening)', 144167), (145980, 145980, 96, 96, 'Compiled Algorithm (Superior Protective Field)', 144167), (144929, 144929, 50, 50, 'Compiled Algorithm (Superior Rage Materialization)', 144224), (145981, 145981, 86, 86, 'Compiled Algorithm (Superior Shielding Barrier)', 144167), (145751, 145751, 80, 80, 'Compiled Algorithm (Superior Wound Bindings)', 83115), (144930, 144930, 90, 90, 'Compiled Algorithm (Superior Wrath Incarnation)', 144225), (145553, 145553, 136, 136, 'Compiled Algorithm (Supervisor-Grade Administrator-Droid)', 83176), (145554, 145554, 83, 83, 'Compiled Algorithm (Supervisor-Grade Aide-Droid)', 83176), (145555, 145555, 60, 60, 'Compiled Algorithm (Supervisor-Grade Assistant-Droid)', 83175), (145556, 145556, 37, 37, 'Compiled Algorithm (Supervisor-Grade Attendant-Droid)', 83175), (145557, 145557, 165, 165, 'Compiled Algorithm (Supervisor-Grade Bodyguard)', 83177), (145558, 145558, 20, 20, 'Compiled Algorithm (Supervisor-Grade Helper-Droid)', 83170), (145559, 145559, 152, 152, 'Compiled Algorithm (Supervisor-Grade Minion)', 83177), (145560, 145560, 113, 113, 'Compiled Algorithm (Supervisor-Grade Secretary-Droid)', 83176), (145561, 145561, 7, 7, 'Compiled Algorithm (Supervisor-Grade Worker-Droid)', 83170), (162499, 162499, 33, 33, 'Compiled Algorithm (Suppressor)', 83158), (144931, 144931, 7, 7, 'Compiled Algorithm (Supreme Anger Manifestation)', 144223), (156149, 156149, 67, 67, 'Compiled Algorithm (Supreme Deranged Mindreaver)', 144232), (156148, 156148, 24, 24, 'Compiled Algorithm (Supreme Distracting Sphere)', 144231), (144932, 144932, 172, 172, 'Compiled Algorithm (Supreme Enmity Personification)', 144226), (144933, 144933, 149, 149, 'Compiled Algorithm (Supreme Frenzy Embodiment)', 144225), (144934, 144934, 30, 30, 'Compiled Algorithm (Supreme Fury Externalization)', 144224), (144935, 144935, 60, 60, 'Compiled Algorithm (Supreme Rage Materialization)', 144224), (146138, 146138, 146, 146, 'Compiled Algorithm (Supreme Shen Protection)', 144221), (162505, 162505, 106, 106, 'Compiled Algorithm (Supreme Suppressor)', 83158), (145303, 145303, 123, 123, 'Compiled Algorithm (Supreme Wilderness Protection)', 144274), (144936, 144936, 96, 96, 'Compiled Algorithm (Supreme Wrath Incarnation)', 144225), (160844, 160844, 40, 40, 'Compiled Algorithm (Sureshot)', 82990), (145752, 145752, 53, 53, 'Compiled Algorithm (Surgeon''s Touch)', 83114), (145753, 145753, 14, 14, 'Compiled Algorithm (Survivability Booster)', 83207), (145304, 145304, 33, 33, 'Compiled Algorithm (Survival Aid)', 83101), (145306, 145306, 27, 27, 'Compiled Algorithm (Survival Technique)', 83113), (145305, 145305, 116, 116, 'Compiled Algorithm (Survival of the Fittest)', 83114), (146471, 146471, 139, 139, 'Compiled Algorithm (Survivor''s Resilience)', 144178), (145399, 145399, 47, 47, 'Compiled Algorithm (Suspicious Death)', 83080), (146684, 146684, 4, 4, 'Compiled Algorithm (Swap Psyche)', 83122), (146139, 146139, 113, 113, 'Compiled Algorithm (Sway of Bamboo)', 144312), (145982, 145982, 1, 1, 'Compiled Algorithm (Swift Weapon)', 83139), (203169, 203169, 178, 178, 'Compiled Algorithm (Swiss Cheese)', 83203), (144937, 144937, 10, 10, 'Compiled Algorithm (Symbol Helper)', 83164), (154612, 154612, 34, 34, 'Compiled Algorithm (Sympathetic Armor Boost)', 144205), (154611, 154611, 80, 80, 'Compiled Algorithm (Sympathetic Arms Enhancement)', 144309), (154610, 154610, 146, 146, 'Compiled Algorithm (Sympathetic Defensive Screen)', 144208), (154609, 154609, 153, 153, 'Compiled Algorithm (Sympathetic Energy Cocoon)', 83068), (154608, 154608, 176, 176, 'Compiled Algorithm (Sympathetic Entropy Infusion)', 144310), (154607, 154607, 163, 163, 'Compiled Algorithm (Sympathetic Force Field)', 144209), (154606, 154606, 189, 189, 'Compiled Algorithm (Sympathetic Fortress Screen)', 144210), (154605, 154605, 116, 116, 'Compiled Algorithm (Sympathetic Harmonic Cocoon)', 144277), (154604, 154604, 90, 90, 'Compiled Algorithm (Sympathetic Harmonic Field)', 144276), (154603, 154603, 189, 189, 'Compiled Algorithm (Sympathetic Plasma Shielding)', 83068), (154602, 154602, 97, 97, 'Compiled Algorithm (Sympathetic Protective Field)', 144207), (154601, 154601, 186, 186, 'Compiled Algorithm (Sympathetic Reactive Cocoon)', 144279), (154600, 154600, 159, 159, 'Compiled Algorithm (Sympathetic Reactive Field)', 144278), (154599, 154599, 93, 93, 'Compiled Algorithm (Sympathetic Retaliatory Barrier)', 83068), (154598, 154598, 70, 70, 'Compiled Algorithm (Sympathetic Shielding Barrier)', 144206), (145754, 145754, 86, 86, 'Compiled Algorithm (Syndicated Healing)', 83115), (162758, 162758, 123, 123, 'Compiled Algorithm (Systolic Equalizer)', 83116), (145755, 145755, 57, 57, 'Compiled Algorithm (Tailored Cure)', 83115), (145400, 145400, 152, 152, 'Compiled Algorithm (Take the Shot)', 82990), (202912, 202912, 93, 93, 'Compiled Algorithm (Talon of the Anun)', 83050), (202906, 202906, 174, 174, 'Compiled Algorithm (Talon of the Dragon)', 83050), (202909, 202909, 129, 129, 'Compiled Algorithm (Talon of the Roc)', 83050), (146064, 146064, 149, 149, 'Compiled Algorithm (Targeted Augmentation Cloud)', 144313), (145844, 145844, 7, 7, 'Compiled Algorithm (Taunting Glare)', 83090), (151792, 151792, 18, 18, 'Compiled Algorithm (Teachings of Biological Metamorphose)', 83051), (151791, 151791, 21, 21, 'Compiled Algorithm (Teachings of Material Creation)', 83153), (151789, 151789, 17, 17, 'Compiled Algorithm (Teachings of Material Metamorphose)', 83155), (151788, 151788, 24, 24, 'Compiled Algorithm (Teachings of Psychological Modification)', 83193), (151787, 151787, 21, 21, 'Compiled Algorithm (Teachings of Sensory Improvement)', 83201), (151790, 151790, 21, 21, 'Compiled Algorithm (Teachings of Time and Space)', 83154), (154918, 154918, 159, 159, 'Compiled Algorithm (Team Beacon Warp)', 83270), (145756, 145756, 60, 60, 'Compiled Algorithm (Team Cellular Rebuild)', 83114), (145757, 145757, 70, 70, 'Compiled Algorithm (Team Checkup)', 83114), (145758, 145758, 159, 159, 'Compiled Algorithm (Team Compress Wounds)', 83118), (145307, 145307, 113, 113, 'Compiled Algorithm (Team Eagle Eye)', 83169), (145759, 145759, 20, 20, 'Compiled Algorithm (Team Field Dressings)', 83112), (145308, 145308, 66, 66, 'Compiled Algorithm (Team Free Movement)', 144236), (146065, 146065, 57, 57, 'Compiled Algorithm (Team Grid Phreak)', 83270), (146140, 146140, 70, 70, 'Compiled Algorithm (Team Healing Aura)', 83113), (146141, 146141, 40, 40, 'Compiled Algorithm (Team Healing Touch)', 83112), (145760, 145760, 40, 40, 'Compiled Algorithm (Team Healing)', 83113), (145761, 145761, 113, 113, 'Compiled Algorithm (Team Nano Bandage)', 83116), (145309, 145309, 116, 116, 'Compiled Algorithm (Team Practiced Stitching)', 83114), (145762, 145762, 156, 156, 'Compiled Algorithm (Team Purification)', 83117), (145310, 145310, 4, 4, 'Compiled Algorithm (Team Quick Heal)', 83112), (146142, 146142, 17, 17, 'Compiled Algorithm (Team Restore Essence)', 83112), (145311, 145311, 17, 17, 'Compiled Algorithm (Team Rough Stitching)', 83112), (146686, 146686, 123, 123, 'Compiled Algorithm (Team Skill Wrangler (Advanced))', 144199), (146687, 146687, 47, 47, 'Compiled Algorithm (Team Skill Wrangler (Commonplace))', 144196), (146688, 146688, 169, 169, 'Compiled Algorithm (Team Skill Wrangler (Exceptional))', 144203), (146689, 146689, 153, 153, 'Compiled Algorithm (Team Skill Wrangler (Greater))', 144201), (146690, 146690, 77, 77, 'Compiled Algorithm (Team Skill Wrangler (Lesser))', 144197), (146691, 146691, 60, 60, 'Compiled Algorithm (Team Skill Wrangler (Lossy))', 144197), (146692, 146692, 107, 107, 'Compiled Algorithm (Team Skill Wrangler (Major))', 144198), (146693, 146693, 37, 37, 'Compiled Algorithm (Team Skill Wrangler (Minor))', 144196), (146694, 146694, 27, 27, 'Compiled Algorithm (Team Skill Wrangler (Patchy))', 144195), (146695, 146695, 189, 189, 'Compiled Algorithm (Team Skill Wrangler (Premium))', 144204), (146696, 146696, 159, 159, 'Compiled Algorithm (Team Skill Wrangler (Sophisticated))', 144202), (146697, 146697, 140, 140, 'Compiled Algorithm (Team Skill Wrangler (Superior))', 144200), (146698, 146698, 18, 18, 'Compiled Algorithm (Team Skill Wrangler (Weak))', 144195), (146685, 146685, 93, 93, 'Compiled Algorithm (Team Skill Wrangler)', 144198), (145312, 145312, 33, 33, 'Compiled Algorithm (Team Survival Technique)', 83113), (145313, 145313, 24, 24, 'Compiled Algorithm (Team Terrain Knowledge)', 144236), (145763, 145763, 139, 139, 'Compiled Algorithm (Team Tissue Repair)', 83116), (150382, 150382, 97, 97, 'Compiled Algorithm (Team Warp Time and Space: Borealis)', 83270), (204494, 204494, 68, 68, 'Compiled Algorithm (Tear Constraints)', 83060), (146382, 146382, 116, 116, 'Compiled Algorithm (Tear Flesh)', 83255), (144938, 144938, 136, 136, 'Compiled Algorithm (Temper Wrath)', 144311), (145562, 145562, 159, 159, 'Compiled Algorithm (Temporary Allegiance)', 83192), (145764, 145764, 90, 90, 'Compiled Algorithm (Temporary Cellular Enhancement)', 144283), (145563, 145563, 20, 20, 'Compiled Algorithm (Temporary Glamor)', 83192), (145314, 145314, 10, 10, 'Compiled Algorithm (Terrain Knowledge)', 83163), (145564, 145564, 90, 90, 'Compiled Algorithm (Terror Blast)', 83200), (204002, 204002, 42, 42, 'Compiled Algorithm (The Claim to Freedom)', 83060), (203172, 203172, 88, 88, 'Compiled Algorithm (The Power of Three)', 83058), (204008, 204008, 137, 137, 'Compiled Algorithm (The Prerogative of Mobility)', 83060), (204011, 204011, 180, 180, 'Compiled Algorithm (The Privilege of Speed)', 83060), (204005, 204005, 94, 94, 'Compiled Algorithm (The Right to Movement)', 83060), (145845, 145845, 37, 37, 'Compiled Algorithm (Thicken Skin)', 83046), (161396, 161396, 142, 142, 'Compiled Algorithm (Thorn of the Rose)', 83068), (145765, 145765, 83, 83, 'Compiled Algorithm (Thorough Examination)', 83115), (145565, 145565, 166, 166, 'Compiled Algorithm (Thorough Overhaul)', 83114), (146699, 146699, 126, 126, 'Compiled Algorithm (Thought Controller)', 83124), (146700, 146700, 159, 159, 'Compiled Algorithm (Thought Juggler)', 83124), (202885, 202885, 133, 133, 'Compiled Algorithm (Thugs Glory)', 83052), (202888, 202888, 173, 173, 'Compiled Algorithm (Thugs Jubilation)', 83052), (146383, 146383, 60, 60, 'Compiled Algorithm (Thunderclap)', 83253), (146384, 146384, 43, 43, 'Compiled Algorithm (Thunderous Blow)', 83253), (145766, 145766, 7, 7, 'Compiled Algorithm (Tired Limbs)', 83139), (145767, 145767, 113, 113, 'Compiled Algorithm (Tissue Repair)', 83116), (146472, 146472, 113, 113, 'Compiled Algorithm (Titan Physique)', 144177), (146143, 146143, 109, 109, 'Compiled Algorithm (Titanium Skin)', 144220), (162339, 162339, 116, 116, 'Compiled Algorithm (Toothy Grin)', 144310), (160835, 160835, 24, 24, 'Compiled Algorithm (Total Concentration)', 82990), (146473, 146473, 136, 136, 'Compiled Algorithm (Total Focus)', 83047), (145566, 145566, 179, 179, 'Compiled Algorithm (Total Mental Domination)', 83192), (146474, 146474, 10, 10, 'Compiled Algorithm (Total Mirror Shield Mk I)', 83196), (146475, 146475, 27, 27, 'Compiled Algorithm (Total Mirror Shield Mk II)', 83196), (146476, 146476, 47, 47, 'Compiled Algorithm (Total Mirror Shield Mk III)', 144276), (146477, 146477, 60, 60, 'Compiled Algorithm (Total Mirror Shield Mk IV)', 144276), (146478, 146478, 132, 132, 'Compiled Algorithm (Total Mirror Shield Mk IX)', 144280), (146479, 146479, 86, 86, 'Compiled Algorithm (Total Mirror Shield Mk V)', 144277), (146480, 146480, 106, 106, 'Compiled Algorithm (Total Mirror Shield Mk VI)', 144278), (146481, 146481, 126, 126, 'Compiled Algorithm (Total Mirror Shield Mk VII)', 144279), (146482, 146482, 129, 129, 'Compiled Algorithm (Total Mirror Shield Mk VIII)', 144279), (146483, 146483, 146, 146, 'Compiled Algorithm (Total Mirror Shield Mk X)', 144280), (145567, 145567, 175, 175, 'Compiled Algorithm (Total Musculature Command)', 83129), (146484, 146484, 63, 63, 'Compiled Algorithm (Tough as Nails)', 144176), (146144, 146144, 1, 1, 'Compiled Algorithm (Toughen Skin)', 83157), (145846, 145846, 126, 126, 'Compiled Algorithm (Toxic Barrier)', 83068), (146385, 146385, 37, 37, 'Compiled Algorithm (Toxic Field)', 83223), (146386, 146386, 126, 126, 'Compiled Algorithm (Toxic Sphere)', 83225), (146387, 146387, 132, 132, 'Compiled Algorithm (Toxic Spill)', 82998), (146701, 146701, 165, 165, 'Compiled Algorithm (Trading Mogul)', 83194), (146703, 146703, 172, 172, 'Compiled Algorithm (Traffic AC (Advanced))', 144182), (146704, 146704, 182, 182, 'Compiled Algorithm (Traffic AC (Greater))', 144183), (146705, 146705, 139, 139, 'Compiled Algorithm (Traffic AC (Lesser))', 144181), (146706, 146706, 159, 159, 'Compiled Algorithm (Traffic AC (Major))', 144182), (146707, 146707, 119, 119, 'Compiled Algorithm (Traffic AC (Minor))', 144180), (146708, 146708, 96, 96, 'Compiled Algorithm (Traffic AC (Weak))', 144180), (146702, 146702, 152, 152, 'Compiled Algorithm (Traffic AC)', 144181), (160859, 160859, 53, 53, 'Compiled Algorithm (Training of The Executioner)', 144310), (163411, 163411, 139, 139, 'Compiled Algorithm (Tranquility of the Vale)', 83123), (144939, 144939, 10, 10, 'Compiled Algorithm (Transcendent Anger Manifestation)', 144223), (144940, 144940, 175, 175, 'Compiled Algorithm (Transcendent Enmity Personification)', 144226), (144941, 144941, 152, 152, 'Compiled Algorithm (Transcendent Frenzy Embodiment)', 144225), (144942, 144942, 33, 33, 'Compiled Algorithm (Transcendent Fury Externalization)', 144224), (144943, 144943, 70, 70, 'Compiled Algorithm (Transcendent Rage Materialization)', 144224), (146145, 146145, 159, 159, 'Compiled Algorithm (Transcendent Shen Protection)', 144222), (144944, 144944, 106, 106, 'Compiled Algorithm (Transcendent Wrath Incarnation)', 144225), (145983, 145983, 73, 73, 'Compiled Algorithm (Trap Artifice)', 83072), (146388, 146388, 175, 175, 'Compiled Algorithm (Tremor)', 83273), (146389, 146389, 109, 109, 'Compiled Algorithm (Tri-Ion Stream)', 83267), (146709, 146709, 63, 63, 'Compiled Algorithm (Trinkets and Toys)', 83123), (160847, 160847, 76, 76, 'Compiled Algorithm (Trueshot)', 82990), (145984, 145984, 189, 189, 'Compiled Algorithm (Ultimate Force Field)', 144170), (145768, 145768, 185, 185, 'Compiled Algorithm (Uncontrollable Body Tremors)', 83139), (145401, 145401, 136, 136, 'Compiled Algorithm (Unexpected Attack)', 83205), (146710, 146710, 17, 17, 'Compiled Algorithm (Unfriendly Merger)', 83192), (146146, 146146, 169, 169, 'Compiled Algorithm (Universal Vulnerability Compendium)', 83048), (144945, 144945, 73, 73, 'Compiled Algorithm (Unmake: BioMet)', 83051), (144946, 144946, 73, 73, 'Compiled Algorithm (Unmake: MatCrea)', 83153), (144948, 144948, 63, 63, 'Compiled Algorithm (Unmake: MatMet)', 83155), (144949, 144949, 70, 70, 'Compiled Algorithm (Unmake: PsyMod)', 83193), (144950, 144950, 66, 66, 'Compiled Algorithm (Unmake: SenseImp)', 83201), (144947, 144947, 66, 66, 'Compiled Algorithm (Unmake: SpaceTime)', 83154), (146390, 146390, 119, 119, 'Compiled Algorithm (Unstable Hadron String)', 83267), (145985, 145985, 37, 37, 'Compiled Algorithm (Upgraded Android)', 83170), (145986, 145986, 10, 10, 'Compiled Algorithm (Upgraded Automaton)', 83170), (145987, 145987, 76, 76, 'Compiled Algorithm (Upgraded Gladiatorbot)', 83175), (145988, 145988, 113, 113, 'Compiled Algorithm (Upgraded Guardbot)', 83176), (145989, 145989, 149, 149, 'Compiled Algorithm (Upgraded Warbot)', 83176), (145990, 145990, 169, 169, 'Compiled Algorithm (Upgraded Warmachine)', 83177), (160838, 160838, 73, 73, 'Compiled Algorithm (Utter Concentration)', 82990), (204521, 204521, 119, 119, 'Compiled Algorithm (Vaccine of Deprivation)', 83178), (204527, 204527, 197, 197, 'Compiled Algorithm (Vaccine of Divestiture)', 83178), (204524, 204524, 164, 164, 'Compiled Algorithm (Vaccine of Plundering)', 83178), (204518, 204518, 77, 77, 'Compiled Algorithm (Vaccine of Ransacking)', 83178), (146147, 146147, 60, 60, 'Compiled Algorithm (Velocity)', 83163), (161399, 161399, 169, 169, 'Compiled Algorithm (Vengeance of Nature)', 83068), (146066, 146066, 60, 60, 'Compiled Algorithm (Venom Modification)', 144310), (146391, 146391, 66, 66, 'Compiled Algorithm (Viral Assault)', 83235), (162327, 162327, 103, 103, 'Compiled Algorithm (Vision of the Wolf)', 83169), (145568, 145568, 130, 130, 'Compiled Algorithm (Visions of a Doomed Future)', 83200), (146392, 146392, 189, 189, 'Compiled Algorithm (Visions of the Void)', 83167), (202903, 202903, 197, 197, 'Compiled Algorithm (Vlad''s Revenge)', 83050), (145569, 145569, 182, 182, 'Compiled Algorithm (Void Inertia)', 83129), (146393, 146393, 86, 86, 'Compiled Algorithm (Void Warmth)', 83230), (146394, 146394, 182, 182, 'Compiled Algorithm (Volcanic Eruption)', 83277), (146395, 146395, 113, 113, 'Compiled Algorithm (Vulcan Flechette)', 83261), (146148, 146148, 90, 90, 'Compiled Algorithm (Vulnerability Seeker)', 83048), (146149, 146149, 132, 132, 'Compiled Algorithm (Waiting Panda)', 144313), (145570, 145570, 156, 156, 'Compiled Algorithm (Wandering Mind)', 83125), (145991, 145991, 149, 149, 'Compiled Algorithm (Warbot)', 83176), (145847, 145847, 54, 54, 'Compiled Algorithm (Ward from Harm)', 144166), (145992, 145992, 165, 165, 'Compiled Algorithm (Warmachine)', 83177), (146396, 146396, 189, 189, 'Compiled Algorithm (Warmth of the Grave)', 83233), (150376, 150376, 87, 87, 'Compiled Algorithm (Warp Time and Space: Borealis)', 83270), (146397, 146397, 57, 57, 'Compiled Algorithm (Weak Chemical Liquefaction)', 83223), (146398, 146398, 33, 33, 'Compiled Algorithm (Weak Gravity Collapse)', 83252), (146399, 146399, 40, 40, 'Compiled Algorithm (Weak Gravity Pull)', 83127), (146712, 146712, 47, 47, 'Compiled Algorithm (Weak Health Freeloader)', 144188), (146713, 146713, 132, 132, 'Compiled Algorithm (Weak Health Plunder)', 144191), (146400, 146400, 1, 1, 'Compiled Algorithm (Weak Smiting Missile)', 83258), (145770, 145770, 4, 4, 'Compiled Algorithm (Weak Team Heal)', 83112), (145571, 145571, 17, 17, 'Compiled Algorithm (Weight of the Guilty)', 83130), (145572, 145572, 83, 83, 'Compiled Algorithm (Weighty Announcement)', 83131), (146401, 146401, 37, 37, 'Compiled Algorithm (Wild Eye Gouger)', 83167), (145315, 145315, 43, 43, 'Compiled Algorithm (Wilderness Protection)', 144271), (146402, 146402, 27, 27, 'Compiled Algorithm (Wind Blade)', 83252), (161408, 161408, 47, 47, 'Compiled Algorithm (Wind Slicer)', 83202), (146150, 146150, 57, 57, 'Compiled Algorithm (Wind-Blown Blossom)', 144310), (145316, 145316, 162, 162, 'Compiled Algorithm (Wings of the Phoenix)', 83068), (146151, 146151, 43, 43, 'Compiled Algorithm (Wooden Skin)', 144218), (145771, 145771, 179, 179, 'Compiled Algorithm (Wrack and Ruin)', 83081), (144951, 144951, 179, 179, 'Compiled Algorithm (Wrath Abatement)', 144311), (144952, 144952, 149, 149, 'Compiled Algorithm (Wrath Ebb)', 144311), (144953, 144953, 86, 86, 'Compiled Algorithm (Wrath Incarnation)', 144224), (202897, 202897, 173, 173, 'Compiled Algorithm (Wrecking Ball)', 83000), (203934, 203934, 40, 40, 'Compiled Algorithm (Writ of Mobility)', 83060), (203940, 203940, 120, 120, 'Compiled Algorithm (Writ of Passage)', 83060), (203946, 203946, 200, 200, 'Compiled Algorithm (Writ of the Errant Salesman)', 83060), (231528, 231528, 125, 125, 'Complete Blueprint Pattern of ''Adobe Suzerain''', 229138), (234258, 234258, 220, 220, 'Complete Blueprint Pattern of ''Aesma Daeva''', 229138), (234159, 234159, 255, 255, 'Complete Blueprint Pattern of ''Agent of Decay''', 229138), (234132, 234132, 255, 255, 'Complete Blueprint Pattern of ''Agent of Putrefaction''', 229138), (234168, 234168, 220, 220, 'Complete Blueprint Pattern of ''Ahpta''', 229138), (231969, 231969, 188, 188, 'Complete Blueprint Pattern of ''Alatyr''', 229138), (234231, 234231, 255, 255, 'Complete Blueprint Pattern of ''Anansi', 229138), (234370, 234370, 255, 255, 'Complete Blueprint Pattern of ''Anansi''', 229138), (239613, 239613, 30, 30, 'Complete Blueprint Pattern of ''Anarir''', 229138), (231861, 231861, 185, 185, 'Complete Blueprint Pattern of ''Anya''', 229138), (231987, 231987, 210, 210, 'Complete Blueprint Pattern of ''Aray''', 229138), (234325, 234325, 255, 255, 'Complete Blueprint Pattern of ''Arch Bigot Aliel''', 229138), (234269, 234269, 220, 220, 'Complete Blueprint Pattern of ''Arch Bigot Biap''', 229138), (234307, 234307, 255, 255, 'Complete Blueprint Pattern of ''Arch Bigot Lohel''', 229138), (232643, 232643, 200, 200, 'Complete Blueprint Pattern of ''Arch Demon of Inferno''', 229138), (231735, 231735, 125, 125, 'Complete Blueprint Pattern of ''Argil Suzerain''', 229138), (234316, 234316, 255, 255, 'Complete Blueprint Pattern of ''Asase Ya''', 229138), (231600, 231600, 125, 125, 'Complete Blueprint Pattern of ''Ashmara Ravin''', 229138), (234287, 234287, 220, 220, 'Complete Blueprint Pattern of ''Ats', 229138), (231546, 231546, 125, 125, 'Complete Blueprint Pattern of ''Auger''', 229138), (231555, 231555, 125, 125, 'Complete Blueprint Pattern of ''Awl''', 229138), (231915, 231915, 185, 185, 'Complete Blueprint Pattern of ''Bagaspati''', 229138), (231573, 231573, 125, 125, 'Complete Blueprint Pattern of ''Beatific Spirit''', 229138), (231726, 231726, 125, 125, 'Complete Blueprint Pattern of ''Bellowing Chimera''', 229138), (231663, 231663, 125, 125, 'Complete Blueprint Pattern of ''Bhinaji Navi''', 229138), (234213, 234213, 255, 255, 'Complete Blueprint Pattern of ''Bia''', 229138), (231420, 231420, 80, 80, 'Complete Blueprint Pattern of ''Black Fang''', 229138), (231627, 231627, 125, 125, 'Complete Blueprint Pattern of ''Blight''', 229138), (231564, 231564, 125, 125, 'Complete Blueprint Pattern of ''Borer''', 229138), (231933, 231933, 178, 178, 'Complete Blueprint Pattern of ''Breaker Teuvo''', 229138), (231906, 231906, 175, 175, 'Complete Blueprint Pattern of ''Brutal Rafter''', 229138), (231456, 231456, 85, 85, 'Complete Blueprint Pattern of ''Brutal Soul Dredge''', 229138), (239541, 239541, 40, 40, 'Complete Blueprint Pattern of ''Canceroid Cupid''', 229138), (234334, 234334, 220, 220, 'Complete Blueprint Pattern of ''Captured Spirit''', 229138), (239559, 239559, 45, 45, 'Complete Blueprint Pattern of ''Careening Blight''', 229138), (239568, 239568, 45, 45, 'Complete Blueprint Pattern of ''Careening Death''', 229138), (232131, 232131, 195, 195, 'Complete Blueprint Pattern of ''Churn''', 229138), (231447, 231447, 85, 85, 'Complete Blueprint Pattern of ''Circumbendibum''', 229138), (231411, 231411, 80, 80, 'Complete Blueprint Pattern of ''Circumbendibus''', 229138), (231654, 231654, 125, 125, 'Complete Blueprint Pattern of ''Contorted Soul Dredge''', 229138), (232571, 232571, 170, 170, 'Complete Blueprint Pattern of ''Dalja''', 229138), (231825, 231825, 220, 220, 'Complete Blueprint Pattern of ''Defiler of Scheol''', 229138), (231843, 231843, 220, 220, 'Complete Blueprint Pattern of ''Destroyer of Scheol''', 229138), (231834, 231834, 220, 220, 'Complete Blueprint Pattern of ''Devastator of Scheol''', 229138), (231816, 231816, 205, 205, 'Complete Blueprint Pattern of ''Devourer of Scheol''', 229138), (242534, 242534, 150, 150, 'Complete Blueprint Pattern of ''Diviner Gil Kald-Thar''', 229138), (239640, 239640, 180, 180, 'Complete Blueprint Pattern of ''Eidolean Soul Dredge''', 229138), (239686, 239686, 220, 220, 'Complete Blueprint Pattern of ''Exsequiae''', 229138), (234150, 234150, 220, 220, 'Complete Blueprint Pattern of ''Fester Leila''', 229138), (231690, 231690, 125, 125, 'Complete Blueprint Pattern of ''Flinty''', 229138), (239649, 239649, 188, 188, 'Complete Blueprint Pattern of ''Glitter''', 229138), (231501, 231501, 115, 115, 'Complete Blueprint Pattern of ''Gracious Soul Dredge''', 229138), (231708, 231708, 125, 125, 'Complete Blueprint Pattern of ''Gunk''', 229138), (231996, 231996, 210, 210, 'Complete Blueprint Pattern of ''Hadur''', 229138), (234186, 234186, 220, 220, 'Complete Blueprint Pattern of ''Haqa''', 229138), (231636, 231636, 125, 125, 'Complete Blueprint Pattern of ''Hemut''', 229138), (239676, 239676, 220, 220, 'Complete Blueprint Pattern of ''Ho''', 229138), (231519, 231519, 125, 125, 'Complete Blueprint Pattern of ''Ignis Fatui''', 229138), (231582, 231582, 125, 125, 'Complete Blueprint Pattern of ''Ignis Fatuus''', 229138), (232005, 232005, 182, 182, 'Complete Blueprint Pattern of ''Imk', 229138), (232580, 232580, 160, 160, 'Complete Blueprint Pattern of ''Infernal Demon''', 229138), (231537, 231537, 125, 125, 'Complete Blueprint Pattern of ''Iunmin''', 229138), (232014, 232014, 182, 182, 'Complete Blueprint Pattern of ''Juma''', 229138), (234105, 234105, 220, 220, 'Complete Blueprint Pattern of ''K', 229138), (232023, 232023, 182, 182, 'Complete Blueprint Pattern of ''Kaleva''', 229138), (231771, 231771, 125, 125, 'Complete Blueprint Pattern of ''Kaoline Suzerain''', 229138), (231645, 231645, 125, 125, 'Complete Blueprint Pattern of ''Khemhet''', 229138), (232634, 232634, 200, 200, 'Complete Blueprint Pattern of ''Lady Genevra Di''Venague''', 229138), (231609, 231609, 125, 125, 'Complete Blueprint Pattern of ''Lethargic Spirit''', 229138), (231744, 231744, 125, 125, 'Complete Blueprint Pattern of ''Loessial Suzerain''', 229138), (239667, 239667, 125, 125, 'Complete Blueprint Pattern of ''Loltonunon''', 229138), (232077, 232077, 165, 165, 'Complete Blueprint Pattern of ''Lurky''', 229138), (234222, 234222, 220, 220, 'Complete Blueprint Pattern of ''Lya''', 229138), (239532, 239532, 40, 40, 'Complete Blueprint Pattern of ''Malah-Animus''', 229138), (239523, 239523, 40, 40, 'Complete Blueprint Pattern of ''Malah-At''', 229138), (239514, 239514, 40, 40, 'Complete Blueprint Pattern of ''Malah-Auris''', 229138), (239577, 239577, 25, 25, 'Complete Blueprint Pattern of ''Maledicta''', 229138), (231591, 231591, 125, 125, 'Complete Blueprint Pattern of ''Marem''', 229138), (231672, 231672, 125, 125, 'Complete Blueprint Pattern of ''Marly Suzerain''', 229138), (239595, 239595, 50, 50, 'Complete Blueprint Pattern of ''Mawi''', 229138), (231618, 231618, 125, 125, 'Complete Blueprint Pattern of ''Misery''', 229138), (232095, 232095, 165, 165, 'Complete Blueprint Pattern of ''Moochy''', 229138), (231888, 231888, 215, 215, 'Complete Blueprint Pattern of ''Morrow''', 229138), (239487, 239487, 255, 255, 'Complete Blueprint Pattern of ''Nyame''', 229138), (234383, 234383, 220, 220, 'Complete Blueprint Pattern of ''Odqan''', 229138), (232032, 232032, 165, 165, 'Complete Blueprint Pattern of ''Old Salty''', 229138), (231753, 231753, 125, 125, 'Complete Blueprint Pattern of ''Ooze''', 229138), (234249, 234249, 220, 220, 'Complete Blueprint Pattern of ''Pazuzu''', 229138), (232122, 232122, 195, 195, 'Complete Blueprint Pattern of ''Quake''', 229138), (231879, 231879, 215, 215, 'Complete Blueprint Pattern of ''Quondam''', 229138), (234298, 234298, 235, 235, 'Complete Blueprint Pattern of ''Rallies Fete''', 229138), (234352, 234352, 255, 255, 'Complete Blueprint Pattern of ''Razor the Battletoad''', 229138), (242543, 242543, 200, 200, 'Complete Blueprint Pattern of ''Redeemed Cama''', 229138), (242516, 242516, 170, 170, 'Complete Blueprint Pattern of ''Redeemed Gilthar''', 229138), (234439, 234439, 255, 255, 'Complete Blueprint Pattern of ''Redeemed Lord Galahad''', 229138), (242498, 242498, 140, 140, 'Complete Blueprint Pattern of ''Redeemed Ocra''', 229138), (234123, 234123, 220, 220, 'Complete Blueprint Pattern of ''Relief Teals''', 229138), (239550, 239550, 35, 35, 'Complete Blueprint Pattern of ''Sabretooth Slicer''', 229138), (231852, 231852, 185, 185, 'Complete Blueprint Pattern of ''Sampsa''', 229138), (234204, 234204, 220, 220, 'Complete Blueprint Pattern of ''Sasabonsam''', 229138), (234096, 234096, 220, 220, 'Complete Blueprint Pattern of ''Sashu''', 229138), (239658, 239658, 125, 125, 'Complete Blueprint Pattern of ''Satkamear''', 229138), (239604, 239604, 50, 50, 'Complete Blueprint Pattern of ''Sawi''', 229138), (231429, 231429, 80, 80, 'Complete Blueprint Pattern of ''Scratch''', 229138), (231438, 231438, 80, 80, 'Complete Blueprint Pattern of ''Screech''', 229138), (232212, 232104, 192, 195, 'Complete Blueprint Pattern of ''Shake''', 229138), (232203, 232203, 192, 192, 'Complete Blueprint Pattern of ''Shiver''', 229138), (234361, 234361, 255, 255, 'Complete Blueprint Pattern of ''Shullat''', 229138), (231402, 231402, 80, 80, 'Complete Blueprint Pattern of ''Silver Fang''', 229138), (232086, 232086, 165, 165, 'Complete Blueprint Pattern of ''Skulky''', 229138), (232068, 232068, 165, 165, 'Complete Blueprint Pattern of ''Slinky''', 229138), (232041, 232041, 165, 165, 'Complete Blueprint Pattern of ''Smee''', 229138), (231510, 231510, 115, 115, 'Complete Blueprint Pattern of ''Spiritless Soul Dredge''', 229138), (231951, 231951, 180, 180, 'Complete Blueprint Pattern of ''Srahir''', 229138), (234195, 234195, 220, 220, 'Complete Blueprint Pattern of ''Taille Frees''', 229138), (239704, 239704, 48, 48, 'Complete Blueprint Pattern of ''Tcheser''', 229138), (239496, 239496, 160, 160, 'Complete Blueprint Pattern of ''The Abysmal Lord''', 229138), (232194, 232194, 165, 165, 'Complete Blueprint Pattern of ''The Abyssal Widow''', 229138), (239695, 239695, 120, 120, 'Complete Blueprint Pattern of ''The Achbile Guardian''', 229138), (232149, 232149, 165, 165, 'Complete Blueprint Pattern of ''The Adonian Soul Dredge''', 229138), (232176, 232176, 165, 165, 'Complete Blueprint Pattern of ''The Adonis Spirit Master''', 229138), (231780, 231780, 120, 120, 'Complete Blueprint Pattern of ''The Archbile Queen''', 229138), (239622, 239622, 185, 185, 'Complete Blueprint Pattern of ''The Brobdingnagian Mother''', 229138), (232167, 232167, 165, 165, 'Complete Blueprint Pattern of ''The Dredge Driver''', 229138), (234240, 234240, 220, 220, 'Complete Blueprint Pattern of ''The Dryad Demigod''', 229138), (231942, 231942, 185, 185, 'Complete Blueprint Pattern of ''The Dryad Shuffle''', 229138), (231465, 231465, 90, 90, 'Complete Blueprint Pattern of ''The Dune Suzerain''', 229138), (231492, 231492, 90, 90, 'Complete Blueprint Pattern of ''The Elysian Soul Dredge''', 229138), (231807, 231807, 120, 120, 'Complete Blueprint Pattern of ''The Enrapt One''', 229138), (239722, 239722, 210, 210, 'Complete Blueprint Pattern of ''The Great Ice Golem''', 229138), (234278, 234278, 220, 220, 'Complete Blueprint Pattern of ''The Indomitable Chimera''', 229138), (242456, 242456, 220, 220, 'Complete Blueprint Pattern of ''The Infernal Soul Dredge''', 229138), (231870, 231870, 205, 205, 'Complete Blueprint Pattern of ''The Maggot Lord''', 229138), (234141, 234141, 255, 255, 'Complete Blueprint Pattern of ''The Mortificator''', 229138), (231798, 231798, 120, 120, 'Complete Blueprint Pattern of ''The Numb One''', 229138), (231897, 231897, 165, 165, 'Complete Blueprint Pattern of ''The Penumbral Spirit Hunter''', 229138), (232059, 232059, 172, 172, 'Complete Blueprint Pattern of ''The Peristaltic Abomination''', 229138), (232050, 232050, 172, 172, 'Complete Blueprint Pattern of ''The Peristaltic Aversion''', 229138), (232185, 232185, 165, 165, 'Complete Blueprint Pattern of ''The Proprietrix''', 229138), (231762, 231762, 125, 125, 'Complete Blueprint Pattern of ''The Scheolian Soul Dredge''', 229138), (239631, 239631, 185, 185, 'Complete Blueprint Pattern of ''The Stupendous Breeder''', 229138), (231474, 231474, 90, 90, 'Complete Blueprint Pattern of ''The Talus Suzerain''', 229138), (232158, 232158, 165, 165, 'Complete Blueprint Pattern of ''The Watchdog''', 229138), (231978, 231978, 202, 202, 'Complete Blueprint Pattern of ''The Worm King''', 229138), (231717, 231717, 125, 125, 'Complete Blueprint Pattern of ''Thunderous Chimera''', 229138), (232113, 232113, 195, 195, 'Complete Blueprint Pattern of ''Toss''', 229138), (231681, 231681, 125, 125, 'Complete Blueprint Pattern of ''Tough''', 229138), (231483, 231483, 90, 90, 'Complete Blueprint Pattern of ''Ungulera''', 229138), (242525, 242525, 170, 170, 'Complete Blueprint Pattern of ''Unredeemed Dalja''', 229138), (234449, 234449, 255, 255, 'Complete Blueprint Pattern of ''Unredeemed Lord Mordeth''', 229138), (242507, 242507, 140, 140, 'Complete Blueprint Pattern of ''Unredeemed Roch''', 229138), (242552, 242552, 200, 200, 'Complete Blueprint Pattern of ''Unredeemed Vanya''', 229138), (239713, 239713, 48, 48, 'Complete Blueprint Pattern of ''Upenpet''', 229138), (234177, 234177, 220, 220, 'Complete Blueprint Pattern of ''Ushqa''', 229138), (232140, 232140, 165, 165, 'Complete Blueprint Pattern of ''Viscious Visitant''', 229138), (231699, 231699, 125, 125, 'Complete Blueprint Pattern of ''Wacky Suzerain''', 229138), (239586, 239586, 50, 50, 'Complete Blueprint Pattern of ''Wala''', 229138), (234114, 234114, 220, 220, 'Complete Blueprint Pattern of ''Waqa''', 229138), (242658, 242658, 135, 135, 'Complete Blueprint Pattern of ''Weary Empath Min-Ji Liu''', 229138), (231789, 231789, 120, 120, 'Complete Blueprint Pattern of ''White''', 229138), (294008, 294008, 275, 275, 'Complete Blueprint Pattern of ''Wistful Apparition''', 294183), (234343, 234343, 255, 255, 'Complete Blueprint Pattern of ''Xark the Battletoad''', 229138), (231960, 231960, 180, 180, 'Complete Blueprint Pattern of ''Zoetic Oak''', 229138), (258451, 258451, 1, 1, 'Complete Blueprint Pattern of the Projection of Cama', 235312), (258453, 258453, 1, 1, 'Complete Blueprint Pattern of the Projection of Dalja', 231181), (258450, 258450, 1, 1, 'Complete Blueprint Pattern of the Projection of Gilthar', 231183), (258452, 258452, 1, 1, 'Complete Blueprint Pattern of the Projection of Lord Galahad', 235315), (258455, 258455, 1, 1, 'Complete Blueprint Pattern of the Projection of Lord Mordeth', 235316), (258454, 258454, 1, 1, 'Complete Blueprint Pattern of the Projection of Vanya', 235321), (232598, 232598, 200, 200, 'Complete Blueptrint Pattern of ''Cama''', 229138), (232589, 232589, 140, 140, 'Complete Blueptrint Pattern of ''Diviner Gil Kald-Thar''', 229138), (232544, 232544, 140, 140, 'Complete Blueptrint Pattern of ''Ocra''', 229138), (232562, 232562, 170, 170, 'Complete Blueptrint Pattern of ''Redeemed Gilthar''', 229138), (232616, 232616, 200, 200, 'Complete Blueptrint Pattern of ''Redeemed Lord Galahad''', 229138), (232553, 232553, 140, 140, 'Complete Blueptrint Pattern of ''Roch''', 229138), (232625, 232625, 200, 200, 'Complete Blueptrint Pattern of ''Unredeemed Lord Mordeth''', 229138), (232607, 232607, 200, 200, 'Complete Blueptrint Pattern of ''Vanya''', 229138), (156052, 156053, 1, 200, 'Complete Chemical Explosive', 156200), (267778, 267778, 250, 250, 'Complete Crystalised Memories', 300990), (302296, 302296, 1, 1, 'Complete IP Reset Package', 290827), (251971, 251971, 1, 1, 'Complete Keycard', 43120), (251972, 251972, 1, 1, 'Complete Keycard', 43123), (156048, 156049, 1, 200, 'Complete Liquid Explosive', 131248), (274970, 274970, 50, 50, 'Complete Nightmare Ether', 290656), (203641, 203642, 160, 200, 'Complete NotuComm Circuitry', 130728), (158224, 158224, 1, 1, 'Complex Communication Processing Unit', 158234), (260698, 260698, 250, 250, 'Component Platform of Agility', 119143), (260697, 260697, 250, 250, 'Component Platform of Intelligence', 119143), (260699, 260699, 250, 250, 'Component Platform of Psychic', 119143), (260696, 260696, 250, 250, 'Component Platform of Sense', 119143), (260694, 260694, 250, 250, 'Component Platform of Stamina', 119143), (260695, 260695, 250, 250, 'Component Platform of Strength', 119143), (122707, 122708, 161, 199, 'Composite Advanced Baseballbat', 13335), (137235, 137236, 1, 200, 'Composite Barrel', 130708), (249014, 249015, 161, 199, 'Composite Bio-Energy Shield', 33152), (122745, 122746, 161, 199, 'Composite Blackjack', 33169), (123130, 123131, 161, 199, 'Composite Bow Split', 21134), (122080, 122081, 161, 199, 'Composite Clean Slay Axe', 21141), (122156, 122157, 161, 199, 'Composite Cutlass', 13347), (130141, 130142, 161, 199, 'Composite Denunciatory Spear', 33163), (122422, 122423, 161, 199, 'Composite Energy Buckler', 33151), (122384, 122385, 161, 199, 'Composite Energy Shield', 33152), (122403, 122404, 161, 199, 'Composite Esoteric Energy Buckler', 33149), (123359, 123360, 161, 199, 'Composite Hand Axe', 13345), (125435, 125436, 161, 199, 'Composite Hardwood Torch', 85172), (206605, 206606, 161, 199, 'Composite Improved Clean Slay Axe', 21141), (161751, 161752, 161, 199, 'Composite Improved Stun-Baton', 13348), (152402, 152403, 181, 199, 'Composite Khemo-Tech Platinum Wakisashi', 113983), (125340, 125341, 164, 191, 'Composite Large Rider Squibber', 114008), (123378, 123379, 161, 199, 'Composite Lead Pipe', 85166), (130230, 130231, 161, 199, 'Composite Light Spear', 33163), (122959, 122960, 161, 199, 'Composite Mace', 13333), (123397, 123398, 161, 199, 'Composite Meat-Cleaver', 85169), (125378, 125379, 161, 199, 'Composite Merchant Executioner', 114003), (125327, 125328, 161, 199, 'Composite Merchant Squibber', 114007), (122365, 122366, 161, 199, 'Composite Metaphysic Energy Shield', 33150), (121776, 121777, 161, 199, 'Composite Mini Axe', 13345), (142949, 142949, 1, 1, 'Composite Mini Axe Construction Manual', 136329), (123264, 123265, 172, 199, 'Composite Nano-Charged Stun Glove', 45784), (130103, 130104, 161, 199, 'Composite Native Alloy Staff', 136738), (128935, 128936, 161, 199, 'Composite Peasant Executioner', 114001), (125308, 125309, 161, 199, 'Composite Peasant Squibber', 114005), (125416, 125417, 161, 199, 'Composite Protector Executioner', 114002), (125359, 125360, 161, 199, 'Composite Protector Squibber', 114006), (125397, 125398, 161, 199, 'Composite Rider Executioner', 114004), (121757, 121758, 161, 199, 'Composite Right Slice', 21142), (143532, 143532, 1, 1, 'Composite Right Slice Construction Manual', 136329), (123073, 123074, 161, 199, 'Composite Ritual Krys Knife', 13346), (121966, 121967, 161, 199, 'Composite Slank Chop', 21143), (143570, 143570, 1, 1, 'Composite Slank Chop Construction Manual', 136329), (122118, 122119, 161, 199, 'Composite Stabber', 13346), (122864, 122865, 161, 199, 'Composite Stun-Baton', 13348), (144079, 144080, 175, 199, 'Composite Survival Axe', 40782), (249053, 249054, 175, 199, 'Composite Survival Axe of Genevra', 40782), (144098, 144099, 181, 199, 'Composite Tanto', 113986), (122845, 122846, 161, 199, 'Composite Titanium Crowbar', 33166), (249077, 249078, 181, 199, 'Composite Variable Density Tanto', 113986), (150270, 150271, 161, 199, 'Composite Wall-Blade', 113983), (137301, 137302, 1, 200, 'Compound Servo Engine', 130698), (160098, 160099, 41, 160, 'Compressed Blade', 113986), (292527, 292527, 1, 1, 'Compressed Composite Weave', 292783), (292524, 292524, 1, 1, 'Compressed Silane', 292784), (248334, 248334, 1, 1, 'Compression Chamber', 100304), (137247, 137248, 1, 200, 'Compression Chamber for Chemicals', 130687), (271219, 271220, 1, 300, 'Compu-Seeker Long Axe - 000', 21137), (271221, 271222, 1, 300, 'Compu-Seeker Long Axe - 010', 21137), (271223, 271224, 1, 300, 'Compu-Seeker Long Axe - 050', 21137), (271225, 271226, 1, 300, 'Compu-Seeker Long Axe - 070', 21137), (271227, 271228, 1, 300, 'Compu-Seeker Long Axe - 870', 21137), (121656, 121657, 116, 138, 'Compu-Seeker Long Axe -Y1000', 21137), (121658, 121659, 139, 161, 'Compu-Seeker Long Axe -Y2000', 21137), (121660, 121661, 162, 184, 'Compu-Seeker Long Axe -Y2000E', 21137), (143260, 143260, 1, 1, 'Compu-Seeker Long Axe -Y2000E Construction Manual', 136329), (121662, 121663, 185, 199, 'Compu-Seeker Long Axe -Y3000', 21137), (143277, 143277, 1, 1, 'Compu-Seeker Long Axe -Y3000 Construction Manual', 136329), (121664, 121664, 200, 200, 'Compu-Seeker Long Axe -Y9000', 21137), (155646, 155647, 1, 200, 'Computer Access Key Card', 43114), (95516, 95517, 50, 200, 'Computer Deck Range Increaser', 119130), (215246, 215246, 100, 100, 'Computer Literacy Logistics Assistant', 215258), (55687, 55686, 1, 200, 'Computer Literacy Tutoring Device', 300889), (155759, 155759, 20, 20, 'Computer Storage Device (Empty)', 156516), (295855, 295855, 1, 1, 'Concealment', 277964), (101731, 101732, 1, 200, 'Concealment Cluster - Bright (Ear)', 35981), (101729, 101730, 1, 200, 'Concealment Cluster - Faded (Eye)', 35980), (101733, 101734, 1, 200, 'Concealment Cluster - Shiny (Feet)', 35982), (165909, 165910, 201, 300, 'Concealment Refined Cluster - Bright (Ear)', 35981), (165907, 165908, 201, 300, 'Concealment Refined Cluster - Faded (Eye)', 35980), (165911, 165912, 201, 300, 'Concealment Refined Cluster - Shiny (Feet)', 35982), (206751, 206751, 1, 1, 'Concentrated Crystalized Energy', 151031), (155671, 155672, 1, 200, 'Concentrated Nanofreak Urine', 100309), (262208, 262208, 1, 1, 'Concentrated Psychic Data', 262206), (262209, 262209, 1, 1, 'Concentrated Psychic Information', 262206), (125456, 125457, 10, 159, 'Concrete Cushion', 85162), (214214, 214214, 1, 1, 'Concussive Shot', 154367), (226490, 226491, 1, 500, 'Concussive Shot', 239093), (226492, 226493, 1, 500, 'Concussive Shot', 239093), (226494, 226495, 1, 500, 'Concussive Shot', 239093), (306003, 306003, 1, 1, 'Condemned Bulwark', 22395), (202541, 202542, 40, 300, 'Conductor of Corruption Controller', 203580), (202543, 202544, 40, 300, 'Conductor of Corruption Program', 144491), (202545, 202546, 250, 300, 'Conductor of Focus Controller', 203580), (202547, 202548, 250, 300, 'Conductor of Focus Program', 83710), (202549, 202549, 300, 300, 'Conductor of Funneling Controller', 203580), (202550, 202550, 300, 300, 'Conductor of Funneling Program', 144501), (202551, 202552, 250, 300, 'Conductor of Juggling Controller', 203580), (202553, 202554, 250, 300, 'Conductor of Juggling Program', 144494), (202555, 202556, 80, 300, 'Conductor of Learning Controller', 203580), (202557, 202558, 80, 300, 'Conductor of Learning Program', 144511), (202559, 202560, 200, 300, 'Conductor of Plunder Controller', 203580), (202561, 202562, 200, 300, 'Conductor of Plunder Program', 144482), (202563, 202564, 200, 300, 'Conductor of Presence Controller', 203580), (202565, 202566, 200, 300, 'Conductor of Presence Program', 83790), (202567, 202567, 300, 300, 'Conductor of Talent Controller', 203580), (202568, 202568, 300, 300, 'Conductor of Talent Program', 83743), (252402, 252402, 1, 1, 'Confinement', 239249), (303231, 303231, 198, 198, 'Confiscated Halloween Costume', 303230), (245799, 245799, 260, 260, 'Conflagrant Syndicate Messenger Gun', 210189), (227066, 227066, 1, 1, 'Confound With Rules', 239251), (295650, 295650, 1, 1, 'Confounded Xan Viralbots', 233133), (239835, 239835, 1, 1, 'Consanguineal Embryo of Annwn''Guinee', 289771), (239837, 239837, 1, 1, 'Consanguineal Embryo of Duat', 289764), (239836, 239836, 1, 1, 'Consanguineal Embryo of Yomi''Arallu', 289765), (257115, 257115, 200, 200, 'Conscientious Knight Commander Nizno''s Helmet', 257712), (225542, 225542, 200, 200, 'Conscientious Knight''s Armor Cloak', 32157), (225544, 225544, 200, 200, 'Conscientious Knight''s Gauntlets', 32156), (225541, 225541, 200, 200, 'Conscientious Knight''s Helmet', 32163), (225546, 225546, 200, 200, 'Conscientious Knight''s Pauldron', 32159), (225545, 225545, 200, 200, 'Conscientious Knight''s Sabatons', 32160), (225543, 225543, 200, 200, 'Conscientious Knight''s Vambrace', 32161), (235421, 235421, 290, 290, 'Conscious Brain Symbiant, Artillery Unit Aban', 215189), (235645, 235645, 290, 290, 'Conscious Brain Symbiant, Infantry Unit Aban', 215189), (235474, 235474, 290, 290, 'Conscious Chest Symbiant, Artillery Unit Aban', 215181), (235917, 235917, 290, 290, 'Conscious Chest Symbiant, Extermination Unit Aban', 215181), (236142, 236142, 290, 290, 'Conscious Chest Symbiant, Support Unit Aban', 215181), (235613, 235613, 290, 290, 'Conscious Feet Symbiant, Artillery Unit Aban', 215185), (236056, 236056, 290, 290, 'Conscious Feet Symbiant, Extermination Unit Aban', 215186), (235832, 235832, 290, 290, 'Conscious Feet Symbiant, Infantry Unit Aban', 215187), (236283, 236283, 290, 290, 'Conscious Feet Symbiant, Support Unit Aban', 215187), (235491, 235491, 290, 290, 'Conscious Left Arm Symbiant, Artillery Unit Aban', 215179), (236163, 236163, 290, 290, 'Conscious Left Arm Symbiant, Support Unit Aban', 215175), (236039, 236039, 290, 290, 'Conscious Left Hand Symbiant, Extermination Unit Aban', 215172), (235814, 235814, 290, 290, 'Conscious Left Hand Symbiant, Infantry Unit Aban', 215172), (235543, 235543, 290, 290, 'Conscious Left Wrist Symbiant, Artillery Unit Aban', 215196), (236436, 236436, 290, 290, 'Conscious Left Wrist Symbiant, Control Unit Aban', 215196), (235762, 235762, 290, 290, 'Conscious Left Wrist Symbiant, Infantry Unit Aban', 215198), (219138, 219138, 290, 290, 'Conscious Ocular Symbiant, Artillery Unit Aban', 230979), (235848, 235848, 290, 290, 'Conscious Ocular Symbiant, Extermination Unit Aban', 230979), (235900, 235900, 290, 290, 'Conscious Right Arm Symbiant, Extermination Unit Aban', 215178), (236123, 236123, 290, 290, 'Conscious Right Arm Symbiant, Support Unit Aban', 215178), (236004, 236004, 290, 290, 'Conscious Right Hand Symbiant, Extermination Unit Aban', 215173), (235780, 235780, 290, 290, 'Conscious Right Hand Symbiant, Infantry Unit Aban', 215174), (236401, 236401, 290, 290, 'Conscious Right Wrist Symbiant, Control Unit Aban', 215170), (235951, 235951, 290, 290, 'Conscious Right Wrist Symbiant, Extermination Unit Aban', 215170), (235728, 235728, 290, 290, 'Conscious Right Wrist Symbiant, Infantry Unit Aban', 215197), (235578, 235578, 290, 290, 'Conscious Thigh Symbiant, Artillery Unit Aban', 215190), (236472, 236472, 290, 290, 'Conscious Thigh Symbiant, Control Unit Aban', 215191), (236022, 236022, 290, 290, 'Conscious Thigh Symbiant, Extermination Unit Aban', 215192), (236251, 236251, 290, 290, 'Conscious Thigh Symbiant, Support Unit Aban', 215190), (235526, 235526, 290, 290, 'Conscious Waist Symbiant, Artillery Unit Aban', 215194), (235968, 235968, 290, 290, 'Conscious Waist Symbiant, Extermination Unit Aban', 215193), (235745, 235745, 290, 290, 'Conscious Waist Symbiant, Infantry Unit Aban', 215193), (206068, 206068, 1, 1, 'Constrained Gridspace Waveform', 25798), (202803, 202803, 1, 1, 'Constructing a Service Tower', 136330), (202756, 202756, 20, 20, 'Construction Sleeves', 13221), (239839, 239839, 1, 1, 'Consume the Soul', 239165), (201942, 201942, 200, 200, 'Contained Anti-Matter Generator', 149933), (226195, 226196, 1, 500, 'Contained Burst', 239089), (226197, 226198, 1, 500, 'Contained Burst', 239089), (226199, 226200, 1, 500, 'Contained Burst', 239089), (292520, 292520, 1, 1, 'Contained Collatz Pattern', 292785), (292518, 292518, 1, 1, 'Contained Fatou Pattern', 292794), (292519, 292519, 1, 1, 'Contained Mandelbrot Pattern', 292787), (100231, 100231, 1, 1, 'Contained Sensitive Information', 83326), (156074, 156074, 1, 1, 'Container of Liquid Ammo', 32171), (157808, 157810, 1, 201, 'Container: Clan Application Form', 81771), (157809, 157807, 1, 201, 'Container: Omni-Tek Application Form', 81773), (202920, 202921, 10, 200, 'Control Tower - Clan', 202170), (202924, 202925, 10, 200, 'Control Tower - Clan', 202170), (202922, 202923, 201, 300, 'Control Tower - Clan', 202158), (202926, 202927, 201, 300, 'Control Tower - Clan', 202158), (202928, 202929, 10, 200, 'Control Tower - Neutral', 202174), (202932, 202933, 10, 200, 'Control Tower - Neutral', 202174), (202930, 202931, 201, 300, 'Control Tower - Neutral', 202162), (202934, 202935, 201, 300, 'Control Tower - Neutral', 202162), (202936, 202937, 10, 200, 'Control Tower - Omni', 202178), (202940, 202941, 10, 200, 'Control Tower - Omni', 202178), (202938, 202939, 201, 300, 'Control Tower - Omni', 202166), (202942, 202943, 201, 300, 'Control Tower - Omni', 202166), (215554, 215555, 25, 300, 'Control Unit Boots', 214751), (215464, 215465, 75, 300, 'Control Unit Chest Plate', 214745), (223419, 223420, 1, 300, 'Control Unit Crepuscule Boots', 13265), (223411, 223412, 1, 300, 'Control Unit Crepuscule Gloves', 13279), (223415, 223416, 1, 300, 'Control Unit Crepuscule Jacket', 13249), (223417, 223418, 1, 300, 'Control Unit Crepuscule Pants', 213574), (223409, 223410, 1, 300, 'Control Unit Crepuscule Skinchip', 160727), (223413, 223414, 1, 300, 'Control Unit Crepuscule Sleeve', 213487), (215548, 215549, 25, 300, 'Control Unit Gloves', 214752), (215546, 215547, 75, 300, 'Control Unit Helmet', 213618), (215556, 215557, 25, 300, 'Control Unit Pants', 214753), (215550, 215551, 25, 300, 'Control Unit Sleeves', 214749), (215552, 215553, 25, 300, 'Control Unit Vest', 214750), (252478, 252478, 1, 1, 'Controlled Chance', 239139), (225275, 225276, 1, 500, 'Convulsive Tremor', 239241), (225277, 225278, 1, 500, 'Convulsive Tremor', 239241), (225279, 225280, 1, 500, 'Convulsive Tremor', 239241), (159077, 159077, 5, 5, 'Cook - Sugarfree Rum', 37934), (274124, 274124, 1, 1, 'Cookie Cutter - Heart', 274111), (274122, 274122, 1, 1, 'Cookie Cutter - Man', 274113), (274123, 274123, 1, 1, 'Cookie Cutter - Woman', 274115), (274126, 274126, 1, 1, 'Cookie Frosting', 274109), (155662, 155663, 1, 200, 'Coolant', 100311), (249648, 249648, 100, 100, 'Cooled Energy Core', 20405), (214217, 214218, 100, 199, 'Cooperator Assault Rifle', 210186), (214219, 214220, 200, 299, 'Cooperator Assault Rifle', 210186), (154900, 154900, 88, 88, 'Coplan''s Hand Taipan', 154366), (287144, 287144, 200, 200, 'Copper Ladle', 287220), (287143, 287143, 200, 200, 'Copper Pail', 287206), (157392, 157392, 1, 1, 'Copper Twentyeight Ladybird Advantage', 81769), (234874, 234874, 1, 1, 'Copper Wire', 151016), (211027, 211027, 1, 1, 'Copy of Central Controller broken', 9013), (246016, 246017, 240, 259, 'Copy of The Excalibur', 246020), (232834, 232835, 1, 149, 'Coral', 286906), (232835, 232836, 150, 199, 'Coral', 286906), (232836, 232837, 200, 249, 'Coral', 286906), (232837, 232838, 250, 400, 'Coral', 286906), (259867, 259867, 1, 1, 'Coral Rafter Root Sample', 260194), (213432, 213432, 1, 1, 'Corpse', 20412), (208016, 208017, 140, 149, 'Corpse Cutter', 85170), (158322, 158322, 1, 1, 'Corroded Blade', 114003), (283746, 283746, 1, 1, 'Corroded Chest Plate', 283766), (200818, 200818, 100, 100, 'Corroded Ring', 289772), (305499, 305499, 1, 1, 'Corrupted Bloodmark', 25796), (275468, 275468, 1, 1, 'Corrupted Crystal', 72772), (275472, 275472, 1, 1, 'Corrupted Crystal', 72768), (275474, 275474, 1, 1, 'Corrupted Crystal Shard', 268376), (305521, 305521, 300, 300, 'Corrupted Edge', 218704), (206015, 206015, 1, 1, 'Corrupted Flesh', 144704), (302947, 302947, 300, 300, 'Corrupted Lady of Wisdom', 293991), (302948, 302948, 300, 300, 'Corrupted Lady of Wisdom', 293991), (302933, 302933, 300, 300, 'Corrupted Lord of Abandonment', 245083), (302938, 302938, 300, 300, 'Corrupted Lord of Anger', 210184), (302939, 302939, 300, 300, 'Corrupted Lord of Angst', 245082), (302942, 302942, 300, 300, 'Corrupted Lord of Chaos', 245089), (302935, 302935, 300, 300, 'Corrupted Lord of Deceit', 213075), (302940, 302940, 300, 300, 'Corrupted Lord of Envy', 244836), (302949, 302949, 300, 300, 'Corrupted Lord of Gluttony', 218714), (302941, 302941, 300, 300, 'Corrupted Lord of Greed', 244931), (302934, 302934, 300, 300, 'Corrupted Lord of Hatred', 158269), (302944, 302944, 300, 300, 'Corrupted Lord of Lust', 244837), (302936, 302936, 300, 300, 'Corrupted Lord of Pride', 233217), (302943, 302943, 300, 300, 'Corrupted Lord of Sloth', 233214), (302945, 302945, 300, 300, 'Corrupted Lord of Wisdom', 293991), (302946, 302946, 300, 300, 'Corrupted Lord of Wisdom', 293991), (295642, 295642, 1, 1, 'Corrupted Photoluminescent Being', 233133), (305498, 305498, 1, 1, 'Corrupted Soulmark', 25794), (152032, 152032, 44, 44, 'Cortex of the Executioner', 12701), (163564, 163564, 1, 1, 'Cosmetic Repair Kit', 154420), (244641, 244641, 250, 250, 'Cosmic Guide of the Pisces', 151918), (249087, 249087, 1, 1, 'Cosmik Black Thong', 255175), (253738, 253738, 1, 1, 'Cotton Delight Pants', 253722), (253739, 253739, 1, 1, 'Cotton Delight Shirt', 253661), (253737, 253737, 1, 1, 'Cotton Delight Sleeves', 253685), (142785, 142786, 1, 8, 'Coughing Madam Freeze', 13336), (155077, 155077, 1, 1, 'Council of Truth', 130561), (155078, 155078, 1, 1, 'Council of Truth Invitation', 155119), (152413, 152414, 1, 200, 'Counterfeit Omni Epaulet', 99252), (305963, 305963, 1, 1, 'Counterfeit fr00b T-shirt', 85945), (263819, 263819, 1, 1, 'Courier Letter', 163075), (263820, 263820, 1, 1, 'Courier Letter Receipt', 156343), (275395, 275395, 1, 1, 'Courier Package', 157369), (275394, 275394, 1, 1, 'Courier Tube', 99667), (230683, 230683, 1, 1, 'Cowardice of the Chimera', 130862), (248907, 248907, 1, 1, 'Cowboy Boots of Synergy Factor', 255342), (248906, 248906, 1, 1, 'Cowboy Jacket of Synergy Factor', 255299), (248908, 248908, 1, 1, 'Cowboy Pants of Synergy Factor', 255182), (248905, 248905, 1, 1, 'Cowboy Sleeves of Synergy Factor', 255241), (130639, 130639, 1, 1, 'Crab Surprise', 99298), (121684, 121685, 1, 23, 'Cracked Bolter 42mm', 21149), (137340, 137340, 1, 1, 'Cracked Bolter 42mm Construction Manual', 37931), (151110, 151110, 80, 80, 'Cracked Arbiter Gem of Burning Plasma', 136594), (151041, 151041, 80, 80, 'Cracked Arbiter Gem of Contained Energy', 151029), (151084, 151084, 80, 80, 'Cracked Arbiter Gem of Corrosion', 151032), (151095, 151095, 80, 80, 'Cracked Arbiter Gem of Impaling', 43071), (151089, 151089, 80, 80, 'Cracked Arbiter Gem of Ion Burst', 151027), (150973, 150973, 80, 80, 'Cracked Arbiter Gem of Longevity', 25796), (151100, 151100, 80, 80, 'Cracked Arbiter Gem of Numbing Cold', 43072), (151105, 151105, 80, 80, 'Cracked Arbiter Gem of Searing Flame', 25796), (151080, 151080, 80, 80, 'Cracked Arbiter Gem of Silent Death', 43072), (151114, 151114, 80, 80, 'Cracked Arbiter Gem of Smashing Blow', 25795), (248427, 249002, 61, 80, 'Cracked Bio-Energy Shield', 33152), (151109, 151109, 150, 150, 'Cracked Emperor Gem of Burning Plasma', 151029), (151044, 151044, 150, 150, 'Cracked Emperor Gem of Contained Energy', 136597), (151083, 151083, 150, 150, 'Cracked Emperor Gem of Corrosion', 25799), (151094, 151094, 150, 150, 'Cracked Emperor Gem of Impaling', 151033), (151087, 151087, 150, 150, 'Cracked Emperor Gem of Ion Burst', 136597), (150971, 150971, 150, 150, 'Cracked Emperor Gem of Longevity', 136594), (151099, 151099, 150, 150, 'Cracked Emperor Gem of Numbing Cold', 25799), (151104, 151104, 150, 150, 'Cracked Emperor Gem of Searing Flame', 25794), (151079, 151079, 150, 150, 'Cracked Emperor Gem of Silent Death', 151030), (151113, 151113, 150, 150, 'Cracked Emperor Gem of Smashing Blow', 25801), (122412, 122413, 61, 80, 'Cracked Energy Buckler', 33151), (122374, 122375, 61, 80, 'Cracked Energy Shield', 33152), (122393, 122394, 61, 80, 'Cracked Esoteric Energy Buckler', 33149), (130053, 130054, 21, 30, 'Cracked Featherwood Staff', 136738), (151107, 151107, 200, 200, 'Cracked Galactic Jewel of Burning Plasma', 25801), (151042, 151042, 200, 200, 'Cracked Galactic Jewel of Contained Energy', 151030), (151082, 151082, 200, 200, 'Cracked Galactic Jewel of Corrosion', 25796), (151091, 151091, 200, 200, 'Cracked Galactic Jewel of Impaling', 151030), (151086, 151086, 200, 200, 'Cracked Galactic Jewel of Ion Burst', 25801), (150969, 150969, 200, 200, 'Cracked Galactic Jewel of Longevity', 25798), (151097, 151097, 200, 200, 'Cracked Galactic Jewel of Numbing Cold', 151033), (151102, 151102, 200, 200, 'Cracked Galactic Jewel of Searing Flame', 151032), (151077, 151077, 200, 200, 'Cracked Galactic Jewel of Silent Death', 151031), (151112, 151112, 200, 200, 'Cracked Galactic Jewel of Smashing Blow', 25802), (130062, 130063, 11, 30, 'Cracked Heavy Staff', 136738), (152154, 152155, 1, 10, 'Cracked Light Tube-Bow', 85167), (122355, 122356, 61, 80, 'Cracked Metaphysic Energy Shield', 33150), (151108, 151108, 110, 110, 'Cracked Monarch Gem of Burning Plasma', 25794), (151043, 151043, 110, 110, 'Cracked Monarch Gem of Contained Energy', 151033), (151085, 151085, 110, 110, 'Cracked Monarch Gem of Corrosion', 151030), (151093, 151093, 110, 110, 'Cracked Monarch Gem of Impaling', 25794), (151090, 151090, 110, 110, 'Cracked Monarch Gem of Ion Burst', 25799), (150970, 150970, 110, 110, 'Cracked Monarch Gem of Longevity', 25794), (151098, 151098, 110, 110, 'Cracked Monarch Gem of Numbing Cold', 25796), (151103, 151103, 110, 110, 'Cracked Monarch Gem of Searing Flame', 136596), (151078, 151078, 110, 110, 'Cracked Monarch Gem of Silent Death', 25796), (151115, 151115, 110, 110, 'Cracked Monarch Gem of Smashing Blow', 151029), (227083, 227084, 1, 4, 'Cracked Petrified Bone', 33169), (129026, 129027, 1, 20, 'Cracked Sledgehammer', 33167), (151106, 151106, 180, 180, 'Cracked Stellar Jewel of Burning Plasma', 43071), (151045, 151045, 180, 180, 'Cracked Stellar Jewel of Contained Energy', 151028), (151081, 151081, 180, 180, 'Cracked Stellar Jewel of Corrosion', 151031), (151092, 151092, 180, 180, 'Cracked Stellar Jewel of Impaling', 136593), (151088, 151088, 180, 180, 'Cracked Stellar Jewel of Ion Burst', 151031), (150972, 150972, 180, 180, 'Cracked Stellar Jewel of Longevity', 25801), (151096, 151096, 180, 180, 'Cracked Stellar Jewel of Numbing Cold', 151029), (151101, 151101, 180, 180, 'Cracked Stellar Jewel of Searing Flame', 151030), (151076, 151076, 180, 180, 'Cracked Stellar Jewel of Silent Death', 151029), (151111, 151111, 180, 180, 'Cracked Stellar Jewel of Smashing Blow', 151031), (264066, 264066, 1, 1, 'Cracked Xan Burial Stone', 264068), (263918, 263918, 1, 1, 'Cracked Xan Notum Crystal', 220414), (206711, 206712, 1, 24, 'Cracked and Untuned Mitaar', 206710), (245664, 245664, 150, 150, 'Crackerjack Sleeves', 213459), (290061, 290061, 1, 1, 'Cragg''s Orange Tuxedo', 285082), (245319, 245319, 150, 150, 'Cranky Golem Eye', 12693), (245320, 245320, 150, 150, 'Cranky Golem Eye', 12692), (281747, 281747, 300, 300, 'Crash Headgear', 268018), (281654, 281654, 300, 300, 'Crash Suit', 268018), (121633, 121634, 47, 69, 'Crashed Jobe Battle Axe', 21135), (303136, 303136, 1, 1, 'Crate of Arrows', 303130), (303137, 303137, 1, 1, 'Crate of Bullets', 303131), (303138, 303138, 1, 1, 'Crate of Energy Ammo', 303132), (303139, 303139, 1, 1, 'Crate of Flamethrower Ammo', 303133), (303140, 303140, 1, 1, 'Crate of Launcher Grenades', 303134), (303141, 303141, 1, 1, 'Crate of Shotgun Ammo', 303135), (253075, 253075, 1, 1, 'Crave', 239101), (236669, 236669, 1, 1, 'Crawl', 236670), (236692, 236692, 1, 1, 'Crawl', 236671), (245122, 245122, 75, 75, 'Crawler Armor Boots', 37596), (245118, 245118, 75, 75, 'Crawler Armor Gloves', 37630), (245124, 245124, 75, 75, 'Crawler Armor Hood', 23003), (245120, 245120, 75, 75, 'Crawler Armor Pants', 13288), (245125, 245125, 75, 75, 'Crawler Armor Shoulder Pad', 160890), (245119, 245119, 75, 75, 'Crawler Armor Sleeves', 37423), (245123, 245123, 75, 75, 'Crawler Body Armor', 13259), (280460, 280460, 250, 250, 'Crazy Xanboss Weapon', 21150), (253764, 253764, 1, 1, 'Cream Rose Boots', 253714), (253767, 253767, 1, 1, 'Cream Rose Pants', 253734), (253766, 253766, 1, 1, 'Cream Rose Shirt', 253662), (253765, 253765, 1, 1, 'Cream Rose Sleeves', 253697), (302490, 302490, 1, 1, 'Creepy Equine Mask', 302491), (302521, 302521, 1, 1, 'Creepy Equine Mask', 302491), (302497, 302497, 1, 1, 'Creepy Equine Mask - Black & White Edition', 302498), (302522, 302522, 1, 1, 'Creepy Equine Mask - Black & White Edition', 302498), (121607, 121608, 185, 199, 'Crescent Moon Edge', 13343), (125454, 125455, 1, 9, 'Creviced Concrete Cushion', 85162), (248966, 248966, 1, 1, 'Cripple', 255683), (212911, 212911, 1, 1, 'Cripple Psyche', 154367), (230580, 230580, 1, 1, 'Crippling Venom', 130862), (200442, 200442, 100, 100, 'Crisp Eel', 99288), (246714, 246714, 105, 105, 'Crispy Chiroptera', 21142), (130582, 130582, 1, 1, 'Crispy Too-well-done Meatloaf', 130517), (142880, 142881, 1, 200, 'Critical Close Area Examiner', 130830), (150178, 150179, 31, 40, 'Crooked Bodum-Larga Club', 85172), (244567, 244567, 250, 250, 'Cross Dimensional Gyro of Gemini', 149938), (137185, 137186, 1, 200, 'Crosshair Target', 130842), (137187, 137188, 1, 200, 'Crosshair Target, Advanced', 130772), (297052, 297052, 1, 1, 'Crowbar', 33166), (259931, 259931, 1, 1, 'Crown of Winter', 11695), (164105, 164105, 100, 100, 'Crucible of an Old Faith', 156552), (304531, 304532, 1, 220, 'Crude Silencer''s Boots', 303263), (304519, 304520, 1, 220, 'Crude Silencer''s Bulwark', 303282), (304529, 304530, 1, 220, 'Crude Silencer''s Gloves', 303264), (304521, 304522, 1, 220, 'Crude Silencer''s Helmet', 303265), (304533, 304534, 1, 220, 'Crude Silencer''s Mark', 131249), (304525, 304526, 1, 220, 'Crude Silencer''s Shirt', 303262), (304527, 304528, 1, 220, 'Crude Silencer''s Sleeves', 303261), (304523, 304524, 1, 220, 'Crude Silencer''s Trousers', 303266), (274975, 274975, 250, 250, 'Crude Upgrade Kit', 301042), (204708, 204708, 1, 1, 'Crumbling Funeral Urn', 154195), (125438, 125439, 1, 20, 'Crumbling Paper Hammer', 33167), (226528, 226529, 1, 500, 'Crush Bone', 239069), (226530, 226531, 1, 500, 'Crush Bone', 239069), (226532, 226533, 1, 500, 'Crush Bone', 239069), (163573, 163573, 1, 1, 'Crushed eyeballs', 144708), (302918, 302918, 1, 1, 'Crying Spirit Capsule', 231189), (100343, 100343, 154, 154, 'Cryo Chamber', 99234), (262655, 262655, 1, 1, 'Cryptovariable Deduction Algorithm', 262654), (275465, 275465, 1, 1, 'Crystal Cutter', 235270), (229603, 229604, 1, 300, 'Crystal Filled by the Source', 100312), (259868, 259868, 1, 1, 'Crystal Rafter Root Sample', 260194), (144779, 149888, 1, 24, 'Crystal Reflection Pattern - Combat', 72775), (149888, 149887, 25, 49, 'Crystal Reflection Pattern - Combat', 72775), (149887, 149886, 50, 74, 'Crystal Reflection Pattern - Combat', 72775), (149886, 149885, 75, 99, 'Crystal Reflection Pattern - Combat', 72775), (149885, 149884, 100, 124, 'Crystal Reflection Pattern - Combat', 72775), (149884, 144771, 125, 255, 'Crystal Reflection Pattern - Combat', 72775), (144778, 149883, 1, 24, 'Crystal Reflection Pattern - Medical', 72776), (149883, 149882, 25, 49, 'Crystal Reflection Pattern - Medical', 72776), (149882, 149881, 50, 74, 'Crystal Reflection Pattern - Medical', 72776), (149881, 149880, 75, 99, 'Crystal Reflection Pattern - Medical', 72776), (149880, 149879, 100, 124, 'Crystal Reflection Pattern - Medical', 72776), (149879, 144777, 125, 255, 'Crystal Reflection Pattern - Medical', 72776), (144774, 149873, 1, 24, 'Crystal Reflection Pattern - PSI', 144782), (149873, 149872, 25, 49, 'Crystal Reflection Pattern - PSI', 144782), (149872, 149871, 50, 74, 'Crystal Reflection Pattern - PSI', 144782), (149871, 149870, 75, 99, 'Crystal Reflection Pattern - PSI', 144782), (149870, 149869, 100, 124, 'Crystal Reflection Pattern - PSI', 144782), (149869, 144773, 125, 255, 'Crystal Reflection Pattern - PSI', 144782), (144776, 149878, 1, 24, 'Crystal Reflection Pattern - Protection', 72777), (149878, 149877, 25, 49, 'Crystal Reflection Pattern - Protection', 72777), (149877, 149876, 50, 74, 'Crystal Reflection Pattern - Protection', 72777), (149876, 149875, 75, 99, 'Crystal Reflection Pattern - Protection', 72777), (149875, 149874, 100, 124, 'Crystal Reflection Pattern - Protection', 72777), (149874, 144775, 125, 255, 'Crystal Reflection Pattern - Protection', 72777), (144772, 149868, 1, 24, 'Crystal Reflection Pattern - Space', 144781), (149868, 149867, 25, 49, 'Crystal Reflection Pattern - Space', 144781), (149867, 149866, 50, 74, 'Crystal Reflection Pattern - Space', 144781), (149866, 149865, 75, 99, 'Crystal Reflection Pattern - Space', 144781), (149865, 149864, 100, 124, 'Crystal Reflection Pattern - Space', 144781), (149864, 144780, 125, 255, 'Crystal Reflection Pattern - Space', 144781), (136644, 136645, 1, 200, 'Crystal Sphere', 286908), (223515, 223515, 200, 200, 'Crystal of fortune ***Beta Item Only***', 151032), (267711, 267711, 250, 250, 'Crystalised Memories of a Defender', 300985), (267726, 267726, 250, 250, 'Crystalised Memories of a Doctor', 300984), (267714, 267714, 250, 250, 'Crystalised Memories of a Engineer', 300976), (267701, 267701, 250, 250, 'Crystalised Memories of a Mechanic', 300983), (267713, 267713, 250, 250, 'Crystalised Memories of a Scientist', 300982), (267704, 267704, 250, 250, 'Crystalised Memories of a Sniper', 300981), (267728, 267728, 250, 250, 'Crystalised Memories of a Surgeon', 300980), (267698, 267698, 250, 250, 'Crystalised Memories of a Technician', 300979), (267697, 267697, 250, 250, 'Crystalised Memories of a Warrior', 300978), (267708, 267708, 250, 250, 'Crystalised Memories of an Archer', 300977), (267710, 267710, 250, 250, 'Crystalised Memories of an Instructor', 300975), (204766, 204766, 1, 1, 'Crystalized Energy', 151031), (164598, 164598, 200, 200, 'Crystalized Medusa Queen Hippocampus', 156559), (218480, 218480, 100, 100, 'Crystalized Novictum', 20407), (253138, 253139, 1, 300, 'Crystalline Disk', 100319), (275912, 275912, 1, 1, 'Crystalline Matrix', 275964), (265663, 265663, 1, 1, 'Crystallized Notum Circuitry', 265378), (260653, 260653, 1, 1, 'Crystallized Residue', 151031), (225975, 225976, 1, 300, 'Crystallized Tumor', 151031), (297223, 297223, 1, 1, 'Cube''s T-shirt', 287353), (290326, 290326, 1, 1, 'Cube-Shaped Back Armour', 286508), (291955, 291955, 200, 200, 'Cube-Shaped Helmet', 31738), (290339, 290339, 1, 1, 'Cube-Shaped Shoulder Pads', 269964), (290340, 290340, 1, 1, 'Cube-Shaped Shoulder Pads', 269964), (291413, 291413, 1, 1, 'Cube-Shaped Shoulder Pads', 269964), (292573, 292573, 1, 1, 'Cube-Shaped Wen-Wen - Black', 291515), (292718, 292718, 1, 1, 'Cube-Shaped Wen-Wen - Black', 291515), (292574, 292574, 1, 1, 'Cube-Shaped Wen-Wen - Blue', 291516), (292719, 292719, 1, 1, 'Cube-Shaped Wen-Wen - Blue', 291516), (292576, 292576, 1, 1, 'Cube-Shaped Wen-Wen - Green', 291517), (292720, 292720, 1, 1, 'Cube-Shaped Wen-Wen - Green', 291517), (292577, 292577, 1, 1, 'Cube-Shaped Wen-Wen - Orange', 291518), (292721, 292721, 1, 1, 'Cube-Shaped Wen-Wen - Orange', 291518), (292578, 292578, 1, 1, 'Cube-Shaped Wen-Wen - Purple', 291519), (292722, 292722, 1, 1, 'Cube-Shaped Wen-Wen - Purple', 291519), (292579, 292579, 1, 1, 'Cube-Shaped Wen-Wen - Red', 291520), (292723, 292723, 1, 1, 'Cube-Shaped Wen-Wen - Red', 291520), (292580, 292580, 1, 1, 'Cube-Shaped Wen-Wen - White', 291521), (292724, 292724, 1, 1, 'Cube-Shaped Wen-Wen - White', 291521), (292581, 292581, 1, 1, 'Cube-Shaped Wen-Wen - Yellow', 291522), (292725, 292725, 1, 1, 'Cube-Shaped Wen-Wen - Yellow', 291522), (235269, 235269, 1, 1, 'Cubical Cannon Trigger', 234928), (244717, 244717, 300, 300, 'Cuirass of Obstinacy', 245031), (304480, 304481, 1, 220, 'Cuirass of the Eight', 305043), (281477, 281477, 1, 1, 'Cultist Armor', 282133), (281479, 281479, 200, 200, 'Cultist Helmet', 213628), (281468, 281468, 1, 1, 'Cultist Outfit', 282133), (130612, 130612, 1, 1, 'Cup of Coffee', 130566), (130611, 130611, 1, 1, 'Cup of Tea', 130565), (225481, 225481, 1, 1, 'Cure 1', 239229), (225482, 225482, 1, 1, 'Cure 2', 239231), (246274, 246274, 100, 100, 'Cure for Baldness', 246273), (215864, 215864, 1, 1, 'Curing Touch', 239153), (215885, 215885, 1, 1, 'Curing Touch', 239229), (215886, 215886, 1, 1, 'Curing Touch', 239229), (215887, 215887, 1, 1, 'Curing Touch', 239229), (165485, 165485, 200, 200, 'Curl of Weasel Whiskers', 151932), (245903, 245903, 250, 250, 'Curse of Malahde', 11710), (235267, 235267, 1, 1, 'Curse of the Watcher', 11756), (234616, 234616, 1, 1, 'Curse the Watcher', 235270), (208018, 208018, 150, 150, 'Cuspidal Corpse Cutter', 85170), (160140, 160140, 200, 200, 'Custom Heavy Suppressor', 31811), (160172, 160172, 200, 200, 'Custom KIWD 37 Hunter Crossbow', 114013), (160167, 160167, 200, 200, 'Custom KIWD 38 Sniper Crossbow', 114013), (163688, 163689, 1, 200, 'Custom-Made Adventurer Ring of Balance', 151929), (163686, 163687, 1, 200, 'Custom-Made Adventurer Ring of Versatility', 151929), (163690, 163691, 1, 200, 'Custom-Made Agent Ring of Sniping', 151929), (163692, 163693, 1, 200, 'Custom-Made Agent Ring of Stealth', 151929), (163684, 163685, 1, 200, 'Custom-Made Bureaucrat Ring of Control', 151929), (163682, 163683, 1, 200, 'Custom-Made Bureaucrat Ring of Office', 151929), (163680, 163681, 1, 200, 'Custom-Made Doctor Ring of Life', 151929), (163678, 163679, 1, 200, 'Custom-Made Doctor Ring of Skill', 151929), (163676, 163677, 1, 200, 'Custom-Made Enforcer Ring of Bashing', 151929), (163674, 163675, 1, 200, 'Custom-Made Enforcer Ring of Surprise', 151929), (163670, 163671, 1, 200, 'Custom-Made Engineer Ring of Battle', 151929), (163672, 163673, 1, 200, 'Custom-Made Engineer Ring of Tinkering', 151929), (163666, 163667, 1, 200, 'Custom-Made Fixer Ring of Participation', 151929), (163668, 163669, 1, 200, 'Custom-Made Fixer Ring of Progress', 151929), (163664, 163665, 1, 200, 'Custom-Made Martial Artist Ring of Competence', 151929), (163662, 163663, 1, 200, 'Custom-Made Martial Artist Ring of Escape', 151929), (163658, 163659, 1, 200, 'Custom-Made Metaphysicist Ring of Focus', 151929), (163660, 163661, 1, 200, 'Custom-Made Metaphysicist Ring of the Occult', 151929), (163654, 163655, 1, 200, 'Custom-Made Nano-Technician Ring of Concentration', 151929), (163656, 163657, 1, 200, 'Custom-Made Nano-Technician Ring of Execution', 151929), (163652, 163653, 1, 200, 'Custom-Made Soldier Ring of Attack', 151929), (163650, 163651, 1, 200, 'Custom-Made Soldier Ring of Defense', 151929), (163646, 163647, 1, 200, 'Custom-Made Trader Ring of Production', 151929), (163648, 163649, 1, 200, 'Custom-Made Trader Ring of Supply', 151929), (270362, 270362, 1, 1, 'Customize Breed and Sex', 270365), (270364, 270364, 1, 1, 'Customize Profession Minus', 270366), (270363, 270363, 1, 1, 'Customize Profession Plus', 270367), (156771, 156771, 80, 80, 'Customized IMI Desert Reet 1000', 13334), (301996, 301996, 1, 1, 'Cute Print Pajamas', 302024), (303501, 303502, 1, 200, 'Cybernetic Assassin Boots', 303512), (303499, 303500, 1, 200, 'Cybernetic Assassin Gloves', 303514), (303489, 303490, 1, 200, 'Cybernetic Assassin Helmet', 303515), (303493, 303494, 1, 200, 'Cybernetic Assassin Legwear', 303516), (303491, 303492, 1, 200, 'Cybernetic Assassin Pauldron', 303517), (303495, 303496, 1, 200, 'Cybernetic Assassin Shirt', 303513), (303497, 303498, 1, 200, 'Cybernetic Assassin Sleeves', 303511), (164831, 164832, 1, 200, 'Cyborg Arm Implant', 12676), (303065, 303065, 150, 150, 'Cyborg C.O. Wrist Computer', 84054), (164825, 164826, 1, 200, 'Cyborg Chest Implant', 12691), (164811, 164810, 1, 200, 'Cyborg Death Squad Armor Boots', 13264), (164808, 164809, 1, 200, 'Cyborg Death Squad Armor Gloves', 21871), (164819, 164820, 1, 200, 'Cyborg Death Squad Armor Helmet', 10834), (164812, 164813, 1, 200, 'Cyborg Death Squad Armor Legs', 13302), (164800, 164801, 1, 200, 'Cyborg Death Squad Armor Sleeves', 21850), (164816, 164817, 1, 200, 'Cyborg Death Squad Body Armor', 37545), (273281, 273281, 1, 1, 'Cyborg Dogtags', 218752), (164824, 164823, 1, 200, 'Cyborg Head Implant', 12698), (164829, 164830, 1, 200, 'Cyborg Leg Implant', 12689), (283749, 283749, 1, 1, 'Cyborg Mainframe', 277964), (202569, 202569, 225, 225, 'Cyborg Service Tower Brain', 203577), (202570, 202570, 225, 225, 'Cyborg Service Tower Library', 83283), (273283, 273283, 1, 1, 'Cyborg Techwrecker Dogtags', 273282), (164827, 164828, 1, 200, 'Cyborg Waist Implant', 12699), (164833, 164834, 1, 200, 'Cyborg Wrist Implant', 12666), (200895, 200895, 1, 1, 'Cyclic Programmed Photon Particle Emitter', 155940), (128605, 128606, 40, 179, 'D-nort Compact Assault Rifle', 114016), (247124, 247125, 1, 300, 'DNA Cocktail', 247116), (165470, 165470, 1, 1, 'DNA Sample', 11750), (122205, 122206, 161, 200, 'DNA-Locked Blaster Rifle', 13313), (205831, 205831, 200, 200, 'DNA-Locked Omni-Armed Forces Boots', 21866), (205830, 205830, 200, 200, 'DNA-Locked Omni-Armed Forces Gloves', 21872), (205828, 205828, 200, 200, 'DNA-Locked Omni-Armed Forces Pants', 21879), (205829, 205829, 200, 200, 'DNA-Locked Omni-Armed Forces Sleeves', 21850), (295618, 295618, 200, 200, 'DNA-Locked Prototype Raven Combat Armor', 88053), (205827, 205827, 200, 200, 'DNA-Locked Superior Sentinel Armor Boots', 31746), (205826, 205826, 200, 200, 'DNA-Locked Superior Sentinel Armor Gloves', 13287), (205825, 205825, 200, 200, 'DNA-Locked Superior Sentinel Armor Pants', 31748), (205824, 205824, 200, 200, 'DNA-Locked Superior Sentinel Armor Sleeves', 31747), (203098, 204585, 125, 250, 'DNA-Stunning Pulse Turret', 202216), (203099, 204586, 125, 250, 'DNA-Stunning Pulse Turret', 202216), (283884, 283884, 1, 1, 'DO NOT USE', 262809), (284957, 284957, 1, 1, 'DOJA Chip Adonis', 293713), (284955, 284955, 1, 1, 'DOJA Chip Elysium', 293715), (284959, 284959, 1, 1, 'DOJA Chip Inferno', 293711), (284954, 284954, 1, 1, 'DOJA Chip Nascense', 293716), (284958, 284958, 1, 1, 'DOJA Chip Penumbra', 293712), (284956, 284956, 1, 1, 'DOJA Chip Scheol', 293714), (158045, 158046, 1, 200, 'Da Taunter!', 12682), (292533, 292533, 1, 1, 'Dacite Fiber', 292788), (286990, 286990, 1, 1, 'Daily Mission Mini-Token Reward', 281837), (286989, 286989, 1, 1, 'Daily Mission Mini-XP Reward', 281837), (286451, 286451, 1, 1, 'Daily Mission VP Reward', 286452), (285612, 285612, 1, 1, 'Daily Mission XP Reward', 281837), (253756, 253756, 1, 1, 'Daisy Boots', 253701), (253759, 253759, 1, 1, 'Daisy Pants', 270008), (253758, 253758, 1, 1, 'Daisy Shirt', 253675), (253757, 253757, 1, 1, 'Daisy Sleeves', 253680), (225661, 225662, 1, 300, 'Dakirn Wigglesnout''s Ring of Physics', 151918), (224084, 224084, 150, 150, 'Dalja''s Heavy Combat Pants', 13304), (224083, 224083, 150, 150, 'Dalja''s Light Combat Skirt', 22902), (224086, 224086, 150, 150, 'Dalja''s Ring', 290676), (224089, 224089, 150, 150, 'Dalja''s Ring of Power', 287077), (70254, 70254, 20, 20, 'Damage Shield Projector', 12677), (305022, 305022, 1, 1, 'Damaged Cultist Sigil', 234673), (303201, 303201, 1, 1, 'Damaged Freelancers Inc Recall Beacon', 285272), (296009, 296009, 1, 1, 'Damaged Lamp Post', 296104), (303066, 303066, 1, 1, 'Damaged Notum Tower Shield', 100326), (245215, 245215, 100, 100, 'Damaged Proliferation Unit', 205534), (295619, 295619, 1, 1, 'Damaged Right-Arm Implant', 12672), (302162, 302162, 1, 1, 'Damaged Sealed Worn Cyberdeck', 218706), (258788, 258788, 1, 1, 'Damaged Security Clearance ID Card - Beta Clearance', 99183), (258787, 258787, 1, 1, 'Damaged Security Clearance ID Card - Delta Clearance', 99183), (258789, 258789, 1, 1, 'Damaged Security Clearance ID Card - Gamma Clearance', 99183), (262210, 262210, 1, 1, 'Damaged Soul Key', 262204), (302163, 302163, 1, 1, 'Damaged Staff of Naja', 154366), (211453, 211453, 1, 1, 'Dance of Fools', 239123), (288488, 288488, 1, 1, 'Dancing Cyborg Doll', 288568), (302981, 302981, 1, 1, 'Dancing Hiisi Doll', 302980), (302513, 302513, 1, 1, 'Dancing Ian Warr Doll', 302512), (274313, 274313, 1, 1, 'Dancing Mr. Claus', 257572), (274320, 274320, 1, 1, 'Dancing Mrs. Claus', 257572), (259894, 259894, 1, 1, 'Dancing Santa Doll', 257572), (283868, 283868, 1, 1, 'Dancing Skeleton Doll', 283872), (225997, 225998, 1, 300, 'Dangerous Container', 20407), (225970, 225971, 1, 300, 'Dangerous Jar', 154194), (254375, 254375, 1, 1, 'Daring Antidote Stim', 11749), (215398, 215398, 1, 1, 'Dark', 82197), (211193, 211193, 300, 300, 'Dark Abhorrent Hammer', 33167), (251270, 251271, 1, 300, 'Dark Biotech Rod', 100338), (251264, 251265, 1, 99, 'Dark Biotech Rod Ring', 289775), (251265, 251757, 100, 199, 'Dark Biotech Rod Ring', 289775), (251757, 251758, 200, 300, 'Dark Biotech Rod Ring', 289775), (282142, 282142, 200, 200, 'Dark Defense Turret Use Item blocker', 9926), (274971, 274971, 1, 1, 'Dark Dreams', 12695), (204602, 204602, 1, 1, 'Dark Memories', 12695), (87485, 87485, 1, 1, 'Dark Metal Swimmingtrunks', 96135), (245217, 245218, 75, 84, 'Dark Pistol', 13316), (245219, 245220, 85, 94, 'Dark Pistol', 13316), (245221, 245222, 95, 99, 'Dark Pistol', 13316), (245223, 245223, 100, 100, 'Dark Pistol of The Revoked', 13316), (281838, 281838, 1, 1, 'Dark Ruins Experience Reward', 281837), (260652, 260652, 1, 1, 'Dark Tooth', 267413), (215399, 215399, 1, 1, 'Darkened', 82197), (296129, 296129, 1, 1, 'Darklighter''s T-shirt', 296155), (296288, 296288, 1, 1, 'Darklighter''s T-shirt', 296155), (296130, 296130, 1, 1, 'Darklighter''s T-shirt Spawner', 296155), (258259, 258259, 1, 1, 'Data Chip', 100339), (258257, 258257, 1, 1, 'Data Disk', 100319), (160978, 160978, 1, 1, 'Data Receptacle', 287621), (253439, 253439, 1, 1, 'Davedread''s Stone Altar', 255903), (280729, 280729, 300, 300, 'Dawn of the Xan', 246241), (227348, 227348, 1, 1, 'Dazzle With Lights', 239027), (227349, 227349, 1, 1, 'Dazzle With Lights', 154367), (227350, 227350, 1, 1, 'Dazzle With Lights', 154367), (227351, 227351, 1, 1, 'Dazzle With Lights', 154367), (227352, 227352, 1, 1, 'Dazzle With Lights', 154367), (227353, 227353, 1, 1, 'Dazzle With Lights', 154367), (227354, 227354, 1, 1, 'Dazzle With Lights', 154367), (227355, 227355, 1, 1, 'Dazzle With Lights', 154367), (227356, 227356, 1, 1, 'Dazzle With Lights', 154367), (227357, 227357, 1, 1, 'Dazzle With Lights', 154367), (257116, 257116, 1, 1, 'De''Valos Lava Protection Ring', 301129), (281267, 281267, 1, 1, 'De''Valos Protection Ring', 281266), (257117, 257117, 1, 1, 'De''Valos Radiation Protection Ring', 301131), (301133, 301133, 1, 1, 'De''Valos Radiation and Water Protection Ring', 301131), (281264, 281264, 1, 1, 'De''Valos Radiation, Water and Lava Protection Ring', 301129), (253184, 253185, 1, 200, 'De''Valos Sleeves', 255237), (301132, 301132, 1, 1, 'De''Valos Water Protection Ring', 301130), (286303, 286303, 200, 200, 'De-Hacked Frederickson Micro-kinetic Sleeves', 81990), (157762, 157762, 140, 140, 'DeCranum''s Corona MK I: Body Armor', 21858), (157768, 157768, 140, 140, 'DeCranum''s Corona MK I: Boots', 13265), (157770, 157770, 140, 140, 'DeCranum''s Corona MK I: Gloves', 13279), (157771, 157771, 140, 140, 'DeCranum''s Corona MK I: Helmet', 10834), (157769, 157769, 140, 140, 'DeCranum''s Corona MK I: Pants', 13292), (157773, 157773, 140, 140, 'DeCranum''s Corona MK I: Sleeves', 13225), (157766, 157766, 170, 170, 'DeCranum''s Corona MK II: Body Armor', 13249), (157763, 157763, 170, 170, 'DeCranum''s Corona MK II: Boots', 13265), (157765, 157765, 170, 170, 'DeCranum''s Corona MK II: Gloves', 13279), (157767, 157767, 170, 170, 'DeCranum''s Corona MK II: Hood', 82922), (157764, 157764, 170, 170, 'DeCranum''s Corona MK II: Pants', 13292), (157774, 157774, 170, 170, 'DeCranum''s Corona MK II: Sleeves', 13225), (163592, 163592, 200, 200, 'Deactivated Nano Program: Wings of the Phoenix', 42446), (285506, 285506, 1, 1, 'Deactivated Toy Zixalike Mk I', 285806), (294130, 294130, 1, 1, 'Deactivated Zixalike Mk III', 294195), (245647, 245647, 1, 1, 'Dead Christmas Tree', 245610), (226347, 226348, 1, 500, 'Deadeye', 239061), (226349, 226350, 1, 500, 'Deadeye', 239061), (226351, 226352, 1, 500, 'Deadeye', 239061), (211226, 211226, 300, 300, 'Deafening Din Gun', 33157), (273001, 273001, 1, 1, 'Dear Liza''s Shirt', 273050), (215370, 215370, 1, 1, 'Death', 239345), (225840, 225841, 1, 500, 'Death Strike', 239095), (225842, 225843, 1, 500, 'Death Strike', 239095), (225844, 225845, 1, 500, 'Death Strike', 239095), (154925, 154925, 171, 171, 'Death Ward', 154365), (303071, 303071, 200, 200, 'Death''s Door', 100315), (286218, 286218, 200, 200, 'Death-Infused Wax', 284331), (280719, 280719, 300, 300, 'Deceit of the Xan', 280919), (229669, 229669, 1, 1, 'Deconstruction', 239013), (253462, 253462, 1, 1, 'Decorative Bottle', 255936), (283776, 283776, 1, 1, 'Decoy Construct', 285364), (283777, 283777, 1, 1, 'Decoy Construct', 285364), (302509, 302509, 1, 1, 'Decoy Grid Terminal', 99232), (302510, 302510, 1, 1, 'Decoy Grid Terminal', 302508), (302984, 302984, 1, 1, 'Decoy Surgery Clinic', 302983), (302985, 302985, 1, 1, 'Decoy Surgery Clinic', 302983), (259248, 259248, 1, 1, 'Decrypted Datacube', 121435), (260424, 260424, 1, 1, 'Decrypted Kyr''Ozch Data Core', 290352), (163551, 163551, 1, 1, 'Decurion Charm', 151918), (226376, 226377, 1, 500, 'Deep Cuts', 239097), (226378, 226379, 1, 500, 'Deep Cuts', 239097), (226380, 226381, 1, 500, 'Deep Cuts', 239097), (100296, 100296, 154, 154, 'Defence Grid Computer XR-79^99^3 Ghz', 100308), (100357, 100357, 154, 154, 'Defence Grid Tactical Display', 100308), (233244, 233245, 1, 149, 'Defender of Troy', 233219), (233246, 233247, 150, 299, 'Defender of Troy', 233219), (233248, 233248, 300, 300, 'Defender of Troy', 233219), (274604, 274604, 1, 1, 'Defense Unit Remote', 218759), (239799, 239799, 1, 1, 'Defensive Stance', 239117), (206007, 206007, 1, 1, 'Defiled Bloodmark', 25796), (214867, 214867, 1, 1, 'Defiled Pattern of Min-Ji Liu', 227250), (263256, 263257, 1, 10, 'Deflection Amplifier', 130840), (70253, 70253, 10, 10, 'Deflection Shield', 33152), (164273, 164274, 1, 200, 'Deformed Mantidae Abdomen', 144711), (164401, 164402, 1, 200, 'Deformed Mantidae Antennae', 144710), (164412, 164413, 1, 200, 'Deformed Mantidae Coxa', 84068), (164416, 164417, 1, 200, 'Deformed Mantidae Eye', 12681), (164275, 164276, 1, 200, 'Deformed Mantidae Femur', 158239), (164271, 164272, 1, 200, 'Deformed Mantidae Head', 144707), (164414, 164415, 1, 200, 'Deformed Mantidae Mandibles', 144714), (164432, 164432, 100, 100, 'Deformed Mantidae Prothorax', 156555), (164277, 164278, 1, 200, 'Deformed Mantidae Tarsus', 158238), (164279, 164280, 1, 200, 'Deformed Mantidae Tibia', 158239), (164281, 164282, 1, 200, 'Deformed Mantidae Wing', 161085), (263899, 263899, 1, 1, 'Deformed Xan Notum Crystal', 220435), (153981, 153981, 78, 78, 'Deimos'' Bio-Enhanced Feedback Rifle', 114015), (245168, 245168, 100, 100, 'Deinococcus Radiodurans', 100330), (208006, 208006, 150, 150, 'Deirdre Incendiary Rifle', 33160), (223763, 223763, 1, 1, 'Delicate Metal Device', 227248), (289909, 289909, 1, 1, 'Delicious Chewing Gum', 289908), (275255, 275255, 1, 1, 'Delicious Cream Cake', 85165), (129016, 129016, 170, 170, 'Delicious Omni-Med Butter Cake', 85165), (267922, 267922, 300, 300, 'Delirium', 43100), (256557, 256557, 1, 1, 'Delivery Confirmation', 154680), (263915, 263915, 1, 1, 'Delivery Confirmation', 149941), (157393, 157393, 1, 1, 'Delta Fiftytwo Cyclops Moderation', 81783), (248897, 248897, 80, 80, 'Deluxe Airframed Blaster Betatype', 33158), (128887, 128888, 161, 199, 'Deluxe Arwen MM-50 Grenade Launcher', 13336), (124765, 124766, 161, 199, 'Deluxe BBI WMMA CAW', 13311), (122517, 122518, 161, 199, 'Deluxe Biogun', 38056), (122023, 122024, 161, 199, 'Deluxe Blackened Blaster', 13321), (139807, 139807, 1, 1, 'Deluxe Blackened Blaster Construction Manual', 136329), (122099, 122100, 161, 199, 'Deluxe Blackened Blaster Rifle', 13313), (161360, 161360, 1, 1, 'Deluxe Blackened Blaster Rifle Construction Manual', 136329), (122612, 122613, 161, 199, 'Deluxe Blackhole Mk IX', 33171), (141329, 141329, 1, 1, 'Deluxe Blackhole Mk IX Construction Manual', 136329), (122783, 122784, 161, 199, 'Deluxe Bow-Blaster', 114013), (208103, 208103, 200, 200, 'Deluxe Bronto Anaesthetic Pistol', 33161), (121871, 121872, 161, 199, 'Deluxe Chunkprojector', 21144), (138893, 138893, 1, 1, 'Deluxe Chunkprojector Construction Manual', 136329), (122213, 122214, 321, 399, 'Deluxe DNA-Locked Blaster Rifle', 13313), (121814, 121815, 161, 199, 'Deluxe Disaffiliation Sniper', 21146), (138116, 138116, 1, 1, 'Deluxe Disaffiliation Sniper Construction Manual', 136329), (249851, 249852, 161, 199, 'Deluxe Dual Razor Disaffiliation Sniper', 21146), (122137, 122138, 161, 199, 'Deluxe E-Beamer', 21150), (138470, 138470, 1, 1, 'Deluxe E-Beamer Construction Manual', 136329), (122251, 122252, 161, 199, 'Deluxe Electrical Pacifier', 21150), (123321, 123322, 161, 199, 'Deluxe Enriched Uranium Sprayer', 21148), (122270, 122271, 161, 199, 'Deluxe Eradicator XCI-52', 13314), (124746, 124747, 161, 199, 'Deluxe FN P00', 21148), (128774, 128775, 161, 199, 'Deluxe Fabrique Des Armes Bizon 20-19', 21144), (121928, 121929, 161, 199, 'Deluxe Flamethrower', 19800), (139421, 139421, 1, 1, 'Deluxe Flamethrower Construction Manual', 136329), (124890, 124890, 200, 200, 'Deluxe GE ME30 Mom', 13322), (124983, 124984, 161, 199, 'Deluxe GE XM-559 Man-Portable Laser', 21151), (128731, 128732, 161, 199, 'Deluxe Galahad Inc. 077 Personal Weapon', 21148), (128755, 128756, 161, 199, 'Deluxe Galahad Inc. Tactical Machine Pistol 1029', 21147), (121947, 121948, 161, 199, 'Deluxe Gatling Saw 20k', 84025), (122883, 122884, 161, 199, 'Deluxe Grenade-Thrower', 13336), (141630, 141630, 1, 1, 'Deluxe Grenade-Thrower Construction Manual', 136329), (128671, 128672, 161, 199, 'Deluxe HSR Arms Tech Assault IV', 21148), (128690, 128691, 161, 199, 'Deluxe HSR Arms Tech Assault V', 21148), (123149, 123150, 159, 199, 'Deluxe Heavy Gamma-Beamer', 33158), (121909, 121910, 161, 199, 'Deluxe Heavy Grinner', 21147), (139223, 139223, 1, 1, 'Deluxe Heavy Grinner Construction Manual', 136329), (122688, 122689, 161, 199, 'Deluxe Heavy Lead Sprayer', 21148), (141503, 141503, 1, 1, 'Deluxe Heavy Lead Sprayer Construction Manual', 136329), (124945, 124946, 161, 199, 'Deluxe IEC Flashpoint Laser Rifle', 33146), (125021, 125022, 161, 199, 'Deluxe Joint Clans Exocet II', 85167), (125040, 125041, 161, 199, 'Deluxe Joint Clans Patriot', 114013), (248575, 248576, 161, 199, 'Deluxe Kaetans Supernova', 33146), (124659, 124660, 161, 199, 'Deluxe Kalinkanov ZU-113 Security Weapon', 21148), (122726, 122727, 161, 199, 'Deluxe Kevlar Bow', 85167), (128624, 128625, 161, 199, 'Deluxe MTI G-36K', 33155), (124614, 124615, 181, 199, 'Deluxe MTI MP200', 21147), (124697, 124698, 161, 199, 'Deluxe MTI MPK-22 Briefcase Gun', 13311), (124640, 124641, 181, 199, 'Deluxe MTI UMP22', 114016), (124678, 124679, 161, 199, 'Deluxe Malorian Arms M25 Goodgun', 33153), (122441, 122442, 161, 199, 'Deluxe Mausser Particle Streamer', 31807), (140949, 140949, 1, 1, 'Deluxe Mausser Particle Streamer Construction Manual', 136329), (123054, 123055, 161, 199, 'Deluxe Medium Shotgun', 13340), (122194, 122195, 161, 199, 'Deluxe Megajolt', 13322), (140385, 140385, 1, 1, 'Deluxe Megajolt Construction Manual', 136329), (248605, 248606, 161, 199, 'Deluxe Merren Flamethrower', 19800), (123035, 123036, 161, 199, 'Deluxe Mini-Shotgun', 13341), (142214, 142214, 1, 1, 'Deluxe Mini-Shotgun Construction Manual', 136329), (123226, 123227, 170, 199, 'Deluxe Nano-Charged Assault Rifle', 45783), (123245, 123246, 170, 199, 'Deluxe Nano-Charged Rifle', 45782), (123435, 123436, 161, 199, 'Deluxe Netgun', 13322), (253231, 253232, 240, 299, 'Deluxe Nizno''s Bomb Blaster', 13336), (124727, 124728, 161, 199, 'Deluxe Nord Armwerk MAX', 21144), (123283, 123284, 162, 199, 'Deluxe Nova Flow - Mk IV', 33144), (128855, 128856, 161, 199, 'Deluxe OET Co. MP-21 Tactical Machine Pistol', 21148), (123587, 123588, 159, 199, 'Deluxe OT 0220 22mm Combat Magnum', 31808), (128808, 128809, 161, 199, 'Deluxe OT Cobra M-33', 21148), (124907, 124908, 161, 199, 'Deluxe OT M-00 Crystal', 13336), (124814, 124815, 161, 199, 'Deluxe OT M-110 Renegade SAW', 13336), (124833, 124834, 161, 199, 'Deluxe OT M-70 HardRain GPMG', 13336), (124576, 124577, 161, 199, 'Deluxe OT Saladin', 21148), (122536, 122537, 161, 199, 'Deluxe Omni-Flamer Strategic', 33159), (122555, 122556, 161, 199, 'Deluxe Omni-Pol Standard Flamer', 33160), (125097, 125098, 161, 199, 'Deluxe Oneida Razor Half-Bow', 114013), (124871, 124872, 161, 199, 'Deluxe Planet Gripon Arms Hard-Boomer', 13311), (121890, 121891, 161, 199, 'Deluxe Plasmaprojector', 21145), (139023, 139023, 1, 1, 'Deluxe Plasmaprojector Construction Manual', 136329), (249865, 249866, 161, 199, 'Deluxe Razorback Disaffiliation Sniper', 21146), (125059, 125060, 161, 199, 'Deluxe Reet-Tech Junior Urban Crossbow', 114013), (125002, 125003, 161, 199, 'Deluxe Reet-Tech Stryker X', 85167), (125078, 125079, 161, 199, 'Deluxe Reet-Tech Venom Compound Bow', 85167), (128652, 128653, 161, 199, 'Deluxe Seburo C-99a', 21144), (123606, 123607, 159, 199, 'Deluxe Sentinel 20mm Snub Pistol', 31811), (248537, 248538, 161, 199, 'Deluxe Sharky''s Kevlar Bow', 85167), (123302, 123303, 163, 199, 'Deluxe Slugger', 33154), (122327, 122328, 161, 199, 'Deluxe Stanton Stunner IV', 13313), (128906, 128907, 161, 199, 'Deluxe Steiner LM-5 Assault Laser', 33171), (122232, 122233, 161, 199, 'Deluxe Stigma Rifle', 33155), (121795, 121796, 161, 199, 'Deluxe Subturbine', 21151), (137870, 137870, 1, 1, 'Deluxe Subturbine Construction Manual', 136329), (122574, 122575, 161, 199, 'Deluxe Sunburst Mk III', 33148), (143860, 143861, 161, 199, 'Deluxe Sunburst Mk IV', 33148), (122593, 122594, 161, 199, 'Deluxe Supernova Mk VI', 33146), (141141, 141141, 1, 1, 'Deluxe Supernova Mk VI Construction Manual', 136329), (123206, 123207, 161, 199, 'Deluxe Suppressor', 31807), (141995, 141995, 1, 1, 'Deluxe Suppressor Construction Manual', 136329), (124964, 124965, 161, 199, 'Deluxe Techtronica Neural Disruptor', 21145), (124795, 124796, 161, 199, 'Deluxe Tsunami Raiden MP-Drum', 13311), (124852, 124853, 161, 199, 'Deluxe Vektor M-31 Automatic Grenade Launcher', 13336), (124926, 124927, 161, 199, 'Deluxe Westinghouse IM-50 Plasma Burner', 33146), (248624, 248625, 161, 199, 'Deluxe Xnemth Plasmaprojector', 21145), (128827, 128828, 161, 199, 'Deluxe Zastaba M0-2 Assault Weapon (Zero)', 33153), (232768, 232769, 1, 149, 'Demantoid', 286910), (232769, 232771, 150, 199, 'Demantoid', 286910), (232771, 232772, 200, 249, 'Demantoid', 286910), (232772, 232773, 250, 400, 'Demantoid', 286910), (200202, 200202, 220, 220, 'Demeter ICC Armor Boots', 22884), (200223, 200223, 220, 220, 'Demeter ICC Armor Gloves', 31656), (200244, 200244, 220, 220, 'Demeter ICC Armor Helmet', 31734), (200265, 200265, 220, 220, 'Demeter ICC Armor Pants', 22919), (200286, 200286, 220, 220, 'Demeter ICC Armor Sleeves', 31644), (200307, 200307, 220, 220, 'Demeter ICC Body Armor', 31648), (283981, 283981, 1, 1, 'Demon Wings', 283978), (234602, 234602, 1, 1, 'Demonic Spike', 236566), (290913, 290913, 1, 1, 'Dengoro''s T-shirt', 290956), (302930, 302930, 300, 300, 'Dense Nanite Aegis', 160725), (160195, 160196, 51, 120, 'Dented Bang-Bang Glove', 45784), (161647, 161648, 21, 40, 'Dented MTI Defender', 161057), (142789, 142790, 19, 28, 'Dented Madam Freeze', 13336), (160114, 160115, 51, 100, 'Dented OT Riot-Police Shield', 160124), (290937, 290937, 1, 1, 'Dependancy Leet Doll Of Doom', 265381), (41325, 41325, 1, 1, 'Dependency Item', 49561), (284222, 284222, 1, 1, 'Depreciated Costume Generator', 284189), (203100, 204587, 175, 250, 'Depredating Pulse Turret', 202214), (203101, 204588, 175, 250, 'Depredating Pulse Turret', 202214), (224937, 224937, 15, 15, 'Depressed Heart Spirit of Essence', 230984), (224919, 224919, 15, 15, 'Depressed Heart Spirit of Knowledge', 230984), (224950, 224950, 15, 15, 'Depressed Heart Spirit of Strength', 230984), (225216, 225216, 15, 15, 'Depressed Left Hand Spirit of Strength', 230994), (225036, 225036, 15, 15, 'Depressed Left Limb Spirit of Essence', 230995), (225017, 225017, 15, 15, 'Depressed Left Limb Spirit of Strength', 230995), (224902, 224902, 15, 15, 'Depressed Midriff Spirit of Strength', 230976), (224883, 224883, 15, 15, 'Depressed Midriff Spirit of Weakness', 230976), (224832, 224832, 15, 15, 'Depressed Right Limb Spirit of Essence', 231004), (224798, 224798, 15, 15, 'Depressed Right Limb Spirit of Strength', 231004), (224696, 224696, 15, 15, 'Depressed Spirit of Clear Thought', 230992), (225190, 225190, 15, 15, 'Depressed Spirit of Essence', 230998), (224780, 224780, 15, 15, 'Depressed Spirit of Essence Whispered', 230986), (225231, 225231, 15, 15, 'Depressed Spirit of Feet Strength', 230990), (224746, 224746, 15, 15, 'Depressed Spirit of Knowledge Whispered', 230986), (225070, 225070, 15, 15, 'Depressed Spirit of Right Wrist Weakness', 231006), (224762, 224762, 15, 15, 'Depressed Spirit of Strength Whispered', 230986), (211197, 211198, 1, 299, 'Derisory Blade', 114008), (252526, 252526, 1, 1, 'Derivate', 239139), (227456, 227457, 90, 94, 'Dervish Bow Split of the Breeze', 21134), (227458, 227459, 95, 99, 'Dervish Bow Split of the Gale', 21134), (227462, 227463, 105, 109, 'Dervish Bow Split of the Hurricane', 21134), (227460, 227461, 100, 104, 'Dervish Bow Split of the Storm', 21134), (227464, 227464, 110, 110, 'Dervish Bow Split of the Tornado', 21134), (206008, 206008, 1, 1, 'Desecrated Bloodmark', 25796), (305476, 305476, 1, 1, 'Desecrated Flesh', 144704), (303530, 303530, 1, 1, 'Desert Fangs', 257716), (289966, 289966, 1, 1, 'Desert Nomad Armor', 290005), (303052, 303052, 1, 1, 'Desert Nomad Armor', 290005), (290228, 290229, 1, 300, 'Desert Nomad Body Armor', 290216), (290234, 290235, 1, 300, 'Desert Nomad Boots', 290218), (290276, 290277, 1, 300, 'Desert Nomad Cloak', 290275), (290230, 290231, 1, 300, 'Desert Nomad Gloves', 290219), (290222, 290223, 1, 300, 'Desert Nomad Helmet', 290221), (290232, 290233, 1, 300, 'Desert Nomad Pants', 290217), (290224, 290225, 1, 300, 'Desert Nomad Shoulder Pad', 290167), (290226, 290227, 1, 300, 'Desert Nomad Sleeves', 290220), (160439, 160440, 1, 200, 'Desert Scorpiod Battle Suit', 41165), (224938, 224938, 20, 20, 'Despairing Heart Spirit of Essence', 230984), (224920, 224920, 20, 20, 'Despairing Heart Spirit of Knowledge', 230984), (224951, 224951, 20, 20, 'Despairing Heart Spirit of Strength', 230984), (225037, 225037, 20, 20, 'Despairing Left Limb Spirit of Essence', 230995), (225018, 225018, 20, 20, 'Despairing Left Limb Spirit of Strength', 230995), (224848, 224848, 20, 20, 'Despairing Midriff Spirit of Essence', 230976), (224903, 224903, 20, 20, 'Despairing Midriff Spirit of Strength', 230976), (225140, 225140, 20, 20, 'Despairing Right Hand Defencive Spirit', 231002), (225123, 225123, 20, 20, 'Despairing Right Hand Strength Spirit', 231002), (224833, 224833, 20, 20, 'Despairing Right Limb Spirit of Essence', 231004), (224816, 224816, 20, 20, 'Despairing Right Limb Spirit of Weakness', 231004), (224679, 224679, 20, 20, 'Despairing Spirit of Essence', 230988), (224781, 224781, 20, 20, 'Despairing Spirit of Essence Whispered', 230986), (225157, 225157, 20, 20, 'Despairing Spirit of Insight - Right Hand', 231002), (225054, 225054, 20, 20, 'Despairing Spirit of Right Wrist Offence', 231006), (225071, 225071, 20, 20, 'Despairing Spirit of Right Wrist Weakness', 231006), (286216, 286216, 200, 200, 'Destiny-Infused Wax', 284331), (279997, 279997, 1, 1, 'Destroy all humans', 227904), (211227, 211228, 1, 299, 'Destruction', 13332), (248752, 248752, 1, 1, 'Detective Cloak of the Unforgiven', 255301), (227191, 227191, 1, 1, 'Detonate Stoneworks', 239075), (238938, 238938, 1, 1, 'Deuterium Collector', 11711), (226537, 226538, 1, 500, 'Devastating Blow', 239073), (226539, 226540, 1, 500, 'Devastating Blow', 154367), (226541, 226542, 1, 500, 'Devastating Blow', 239073), (206814, 206814, 1, 1, 'Developer''s Protective Helmet', 205766), (246788, 246788, 1, 1, 'Developer''s Yalmaha', 205833), (151883, 151883, 1, 1, 'Developers Overalls', 151875), (245892, 245892, 250, 250, 'Device', 20403), (288474, 288474, 1, 1, 'Devil Horns', 288476), (293107, 293107, 1, 1, 'Devil Tail', 292923), (215856, 215856, 1, 1, 'Devotional Armor', 239217), (227365, 227366, 1, 500, 'Devour', 239159), (227367, 227368, 1, 500, 'Devour', 239159), (227369, 227370, 1, 500, 'Devour', 239159), (227371, 227372, 1, 500, 'Devour', 239159), (227373, 227374, 1, 500, 'Devour', 239159), (227375, 227376, 1, 500, 'Devour', 239159), (227377, 227378, 1, 500, 'Devour', 239159), (227379, 227380, 1, 500, 'Devour', 239159), (227381, 227382, 1, 500, 'Devour', 239159), (225347, 225348, 1, 500, 'Devour Essence', 239161), (225349, 225350, 1, 500, 'Devour Essence', 239161), (225351, 225352, 1, 500, 'Devour Essence', 239161), (225341, 225342, 1, 500, 'Devour Vigor', 239159), (225343, 225344, 1, 500, 'Devour Vigor', 239159), (225345, 225346, 1, 500, 'Devour Vigor', 239159), (225353, 225354, 1, 500, 'Devour Vitality', 239163), (225355, 225356, 1, 500, 'Devour Vitality', 239163), (225357, 225358, 1, 500, 'Devour Vitality', 239163), (301704, 301704, 1, 1, 'Dex''s Invisible Gloves', 255168), (232726, 232727, 1, 149, 'Diamond', 286912), (232727, 232729, 150, 199, 'Diamond', 286912), (232729, 232730, 200, 249, 'Diamond', 286912), (232730, 232731, 250, 400, 'Diamond', 286912), (157394, 157394, 1, 1, 'Diamond Eleven Puma Advantage', 81769), (269514, 269514, 1, 1, 'Diamond Hilt', 270358), (144060, 144061, 181, 187, 'Diamond Pupil Eye Wind Onehander', 13341), (202266, 202266, 200, 200, 'Diamond-Matrix Mesh', 11615), (165168, 165168, 200, 200, 'Diamondine Kick Pistol', 113990), (295872, 295872, 250, 250, 'Diamondine-Studded Band Template', 245483), (275527, 275527, 1, 1, 'Dictation Device', 100311), (281227, 281227, 1, 1, 'Dictator''s Cut Gem', 281223), (281211, 281211, 1, 1, 'Dictator''s Gem', 281224), (281197, 281197, 1, 1, 'Dictator''s Signet of The Apocalypse', 281195), (226474, 226475, 1, 49, 'Die Kleine Nadel', 218708), (226476, 226477, 50, 99, 'Die Kleine Nadel', 218708), (226478, 226479, 100, 149, 'Die Kleine Nadel', 218708), (226480, 226481, 150, 199, 'Die Kleine Nadel', 218708), (226482, 226483, 200, 249, 'Die Kleine Nadel', 218708), (226484, 226485, 250, 299, 'Die Kleine Nadel', 218708), (226486, 226486, 300, 300, 'Die Nadel', 218708), (248125, 248125, 1, 1, 'Diffuse', 255631), (302991, 302991, 1, 1, 'Digummy Merk''s Finger Warmers', 276371), (302992, 302992, 1, 1, 'Digummy Merk''s Footsies', 276386), (302993, 302993, 1, 1, 'Digummy Merk''s Helmet', 276381), (302989, 302989, 1, 1, 'Digummy Merk''s Jacket', 276393), (302990, 302990, 1, 1, 'Digummy Merk''s Legwear', 276392), (302988, 302988, 1, 1, 'Digummy Merk''s Sleeves', 276367), (303643, 303643, 1, 1, 'Digummy Offisaur''s Finger Warmers', 276376), (303644, 303644, 1, 1, 'Digummy Offisaur''s Footsies', 276383), (303645, 303645, 1, 1, 'Digummy Offisaur''s Helmet', 276389), (303641, 303641, 1, 1, 'Digummy Offisaur''s Jacket', 276401), (303642, 303642, 1, 1, 'Digummy Offisaur''s Legwear', 276368), (303640, 303640, 1, 1, 'Digummy Offisaur''s Sleeves', 276740), (302505, 302505, 1, 1, 'Digummy Paramoodik''s Finger Warmers', 276374), (302506, 302506, 1, 1, 'Digummy Paramoodik''s Footsies', 276378), (302507, 302507, 1, 1, 'Digummy Paramoodik''s Helmet', 276390), (302503, 302503, 1, 1, 'Digummy Paramoodik''s Jacket', 276387), (302504, 302504, 1, 1, 'Digummy Paramoodik''s Legwear', 276370), (302502, 302502, 1, 1, 'Digummy Paramoodik''s Sleeves', 276382), (306180, 306180, 1, 1, 'Digummy SharpShuut''s Finger Warmers', 276385), (306181, 306181, 1, 1, 'Digummy SharpShuut''s Footsies', 276402), (306182, 306182, 1, 1, 'Digummy SharpShuut''s Helmet', 276394), (306178, 306178, 1, 1, 'Digummy SharpShuut''s Jacket', 276372), (306179, 306179, 1, 1, 'Digummy SharpShuut''s Legwear', 276380), (306177, 306177, 1, 1, 'Digummy SharpShuut''s Sleeves', 276388), (303123, 303123, 1, 1, 'Digummy Skoot''s Footsies', 276377), (303122, 303122, 1, 1, 'Digummy Skoot''s Graspers', 276391), (303124, 303124, 1, 1, 'Digummy Skoot''s Helmet', 276397), (303120, 303120, 1, 1, 'Digummy Skoot''s Jacket', 276369), (303121, 303121, 1, 1, 'Digummy Skoot''s Legwear', 276400), (303119, 303119, 1, 1, 'Digummy Skoot''s Sleeves', 276396), (160407, 160408, 1, 200, 'Dillon Body Armor', 13244), (160403, 160404, 1, 200, 'Dillon Boots', 13264), (160409, 160410, 1, 200, 'Dillon Gloves', 13278), (160411, 160412, 1, 200, 'Dillon Helmet', 10835), (160405, 160406, 1, 200, 'Dillon Sleeves', 13226), (160413, 160414, 1, 200, 'Dillon Trousers', 13293), (164068, 164069, 1, 49, 'Dim Black Staff', 203230), (164072, 164073, 100, 149, 'Dim Black Staff of Easy Breathing', 203230), (164074, 164075, 150, 199, 'Dim Black Staff of the Solid Stomach', 203230), (164070, 164071, 50, 99, 'Dim Black Staff of the Steel Spine', 203230), (164076, 164076, 200, 200, 'Dim Black Staff of the Swelling Heart', 203230), (274724, 274724, 1, 1, 'Dim Combined Soul Crystal', 274673), (82213, 82213, 1, 1, 'Dimach', 82195), (101623, 101624, 1, 200, 'Dimach Cluster - Bright (Head)', 35993), (101621, 101622, 1, 200, 'Dimach Cluster - Faded (Waist)', 35992), (101625, 101626, 1, 200, 'Dimach Cluster - Shiny (Chest)', 35994), (213269, 213270, 1, 500, 'Dimach Item 1 s1', 11708), (213271, 213272, 1, 500, 'Dimach Item 2 s2', 11708), (213273, 213274, 1, 500, 'Dimach Item 3 s3', 11708), (42033, 42032, 1, 500, 'Dimach Item b1', 11708), (213260, 213261, 1, 500, 'Dimach Item b2', 11708), (213262, 213263, 1, 500, 'Dimach Item b3', 11708), (211399, 211400, 1, 500, 'Dimach Item k1', 11708), (213275, 213276, 1, 500, 'Dimach Item k2', 11708), (213277, 213278, 1, 500, 'Dimach Item k3', 11708), (213264, 213265, 1, 500, 'Dimach Item m2', 11708), (213266, 213267, 1, 500, 'Dimach Item m3', 11708), (165801, 165802, 201, 300, 'Dimach Refined Cluster - Bright (Head)', 35993), (165799, 165800, 201, 300, 'Dimach Refined Cluster - Faded (Waist)', 35992), (165803, 165804, 201, 300, 'Dimach Refined Cluster - Shiny (Chest)', 35994), (272304, 272305, 1, 300, 'Dimach Weapons Upgrade Kit', 272252), (216958, 216959, 1, 500, 'Dimensional Fist', 239217), (216960, 216961, 1, 500, 'Dimensional Fist', 239217), (216962, 216963, 1, 500, 'Dimensional Fist', 239217), (211224, 211225, 1, 299, 'Din Gun', 33157), (231160, 231160, 1, 1, 'Diploma of High Honors', 163063), (231163, 231163, 1, 1, 'Diploma of Publication - I.P. Scientific', 163063), (258802, 258802, 1, 1, 'Director''s Identification Card', 99182), (208602, 208602, 200, 200, 'Dirty Bioplast Overall', 22905), (221792, 221792, 136, 136, 'Dirty Money Shadow Crystal (Advanced Administrator-Droid)', 220411), (220569, 220569, 80, 80, 'Dirty Money Shadow Crystal (Advanced Aide-Droid)', 220431), (221650, 221650, 57, 57, 'Dirty Money Shadow Crystal (Advanced Assistant-Droid)', 220431), (221292, 221292, 37, 37, 'Dirty Money Shadow Crystal (Advanced Attendant-Droid)', 220424), (221953, 221953, 165, 165, 'Dirty Money Shadow Crystal (Advanced Bodyguard)', 220411), (222087, 222087, 20, 20, 'Dirty Money Shadow Crystal (Advanced Helper)', 220424), (222163, 222163, 149, 149, 'Dirty Money Shadow Crystal (Advanced Minion)', 220411), (222165, 222165, 109, 109, 'Dirty Money Shadow Crystal (Advanced Secretary-Droid)', 220411), (222045, 222045, 7, 7, 'Dirty Money Shadow Crystal (Advanced Worker)', 220424), (222006, 222006, 136, 136, 'Dirty Money Shadow Crystal (Allure of Servitude)', 220412), (221630, 221630, 27, 27, 'Dirty Money Shadow Crystal (Anger Addlement)', 220423), (220581, 220581, 43, 43, 'Dirty Money Shadow Crystal (Authority Figure)', 220425), (221574, 221574, 129, 129, 'Dirty Money Shadow Crystal (Basic Administrator)', 220411), (221156, 221156, 70, 70, 'Dirty Money Shadow Crystal (Basic Aide-Droid)', 220431), (220687, 220687, 47, 47, 'Dirty Money Shadow Crystal (Basic Assistant-Droid)', 220424), (222219, 222219, 27, 27, 'Dirty Money Shadow Crystal (Basic Attendant-Droid)', 220424), (221657, 221657, 159, 159, 'Dirty Money Shadow Crystal (Basic Bodyguard)', 220411), (221579, 221579, 14, 14, 'Dirty Money Shadow Crystal (Basic Helper-Droid)', 220424), (220680, 220680, 142, 142, 'Dirty Money Shadow Crystal (Basic Minion)', 220411), (221581, 221581, 96, 96, 'Dirty Money Shadow Crystal (Basic Secretary-Droid)', 220431), (220866, 220866, 1, 1, 'Dirty Money Shadow Crystal (Basic Worker-Droid)', 220424), (221054, 221054, 17, 17, 'Dirty Money Shadow Crystal (Baton of Authority)', 220425), (221190, 221190, 162, 162, 'Dirty Money Shadow Crystal (Baton of Command)', 220412), (220655, 220655, 99, 99, 'Dirty Money Shadow Crystal (Baton of Leadership)', 220432), (222502, 222502, 24, 24, 'Dirty Money Shadow Crystal (Beg for Freedom)', 220424), (221193, 221193, 33, 33, 'Dirty Money Shadow Crystal (Bend Will)', 220425), (221687, 221687, 50, 50, 'Dirty Money Shadow Crystal (Blizzard of Red Tape)', 220423), (221763, 221763, 66, 66, 'Dirty Money Shadow Crystal (Captivate Crowd)', 220430), (220493, 220493, 109, 109, 'Dirty Money Shadow Crystal (Captivated Thoughts)', 220412), (221713, 221713, 152, 152, 'Dirty Money Shadow Crystal (Captivating Speech)', 220437), (220854, 220854, 40, 40, 'Dirty Money Shadow Crystal (Capture Attention)', 220423), (220586, 220586, 165, 165, 'Dirty Money Shadow Crystal (Chains of Iron)', 220437), (222429, 222429, 173, 173, 'Dirty Money Shadow Crystal (Character Assassin)', 220412), (220517, 220517, 169, 169, 'Dirty Money Shadow Crystal (Charismatic Rapture)', 220412), (222426, 222426, 189, 189, 'Dirty Money Shadow Crystal (Contemplation)', 220437), (222538, 222538, 119, 119, 'Dirty Money Shadow Crystal (Corporate Leadership: Clemency)', 220411), (222537, 222537, 70, 70, 'Dirty Money Shadow Crystal (Corporate Leadership: Dispensation)', 220431), (220694, 220694, 110, 110, 'Dirty Money Shadow Crystal (Crush Bravery)', 220412), (220440, 220440, 103, 103, 'Dirty Money Shadow Crystal (Cubicle Dweller)', 220437), (222428, 222428, 130, 130, 'Dirty Money Shadow Crystal (Defamation 101)', 220412), (220529, 220529, 80, 80, 'Dirty Money Shadow Crystal (Demotivate)', 220430), (222451, 222451, 113, 113, 'Dirty Money Shadow Crystal (Demotivational Speech: 10 Thumbs)', 220412), (222452, 222452, 83, 83, 'Dirty Money Shadow Crystal (Demotivational Speech: Administrative Error)', 220432), (222453, 222453, 179, 179, 'Dirty Money Shadow Crystal (Demotivational Speech: Certainty of Defeat)', 220412), (222454, 222454, 34, 34, 'Dirty Money Shadow Crystal (Demotivational Speech: Factory Recall)', 220425), (222455, 222455, 21, 21, 'Dirty Money Shadow Crystal (Demotivational Speech: Fumble Fingers)', 220425), (222456, 222456, 44, 44, 'Dirty Money Shadow Crystal (Demotivational Speech: Let''s Make a Committee)', 220425), (222457, 222457, 186, 186, 'Dirty Money Shadow Crystal (Demotivational Speech: Mourner''s March)', 220412), (222459, 222459, 182, 182, 'Dirty Money Shadow Crystal (Demotivational Speech: Retreat to Glory)', 220412), (222460, 222460, 126, 126, 'Dirty Money Shadow Crystal (Demotivational Speech: Surge in the System)', 220412), (222461, 222461, 159, 159, 'Dirty Money Shadow Crystal (Demotivational Speech: Swapdisk Mayhem)', 220412), (222458, 222458, 100, 100, 'Dirty Money Shadow Crystal (Demotivational Speech: That is not on the Agenda)', 220432), (222462, 222462, 153, 153, 'Dirty Money Shadow Crystal (Demotivational Speech: Who Writes the Minutes?)', 220412), (221640, 221640, 142, 142, 'Dirty Money Shadow Crystal (Director-Grade Administrator-Droid)', 220411), (221227, 221227, 90, 90, 'Dirty Money Shadow Crystal (Director-Grade Aide-Droid)', 220431), (221077, 221077, 66, 66, 'Dirty Money Shadow Crystal (Director-Grade Assistant-Droid)', 220431), (221213, 221213, 43, 43, 'Dirty Money Shadow Crystal (Director-Grade Attendant-Droid)', 220424), (222091, 222091, 169, 169, 'Dirty Money Shadow Crystal (Director-Grade Bodyguard)', 220411), (221164, 221164, 27, 27, 'Dirty Money Shadow Crystal (Director-Grade Helper-Droid)', 220424), (222106, 222106, 156, 156, 'Dirty Money Shadow Crystal (Director-Grade Minion)', 220411), (222099, 222099, 123, 123, 'Dirty Money Shadow Crystal (Director-Grade Secretary-Droid)', 220411), (222046, 222046, 14, 14, 'Dirty Money Shadow Crystal (Director-Grade Worker-Droid)', 220424), (220891, 220891, 149, 149, 'Dirty Money Shadow Crystal (Disciplinary Action)', 220437), (221555, 221555, 175, 175, 'Dirty Money Shadow Crystal (Disjointed From Reality)', 220437), (220691, 220691, 162, 162, 'Dirty Money Shadow Crystal (Disjointed Psyche)', 220437), (221742, 221742, 189, 189, 'Dirty Money Shadow Crystal (Displace Thought Patterns)', 220412), (222241, 222241, 185, 185, 'Dirty Money Shadow Crystal (Disrupted Psyche)', 220437), (222233, 222233, 10, 10, 'Dirty Money Shadow Crystal (Distracted Gaze)', 220423), (220477, 220477, 47, 47, 'Dirty Money Shadow Crystal (Dominate Psyche)', 220425), (220588, 220588, 37, 37, 'Dirty Money Shadow Crystal (Drill Missile)', 220423), (222071, 222071, 136, 136, 'Dirty Money Shadow Crystal (Droid Overhaul)', 220436), (220491, 220491, 70, 70, 'Dirty Money Shadow Crystal (Droid Repair)', 220429), (222450, 222450, 47, 47, 'Dirty Money Shadow Crystal (Emergency XP Loss Reducer: 30)', 220422), (220732, 220732, 4, 4, 'Dirty Money Shadow Crystal (Energized Bolt)', 220423), (220833, 220833, 63, 63, 'Dirty Money Shadow Crystal (Enforce Rest Break)', 220430), (221857, 221857, 60, 60, 'Dirty Money Shadow Crystal (Enforced Sloth)', 220430), (221743, 221743, 149, 149, 'Dirty Money Shadow Crystal (Enrapturing Bondage)', 220412), (220941, 220941, 162, 162, 'Dirty Money Shadow Crystal (Erasing Ray)', 220437), (221042, 221042, 142, 142, 'Dirty Money Shadow Crystal (Erratic Laser)', 220437), (221020, 221020, 139, 139, 'Dirty Money Shadow Crystal (Executive-Grade Administrator-Droid)', 220411), (221151, 221151, 86, 86, 'Dirty Money Shadow Crystal (Executive-Grade Aide-Droid)', 220431), (220614, 220614, 63, 63, 'Dirty Money Shadow Crystal (Executive-Grade Assistant-Droid)', 220431), (221958, 221958, 40, 40, 'Dirty Money Shadow Crystal (Executive-Grade Attendant-Droid)', 220424), (221560, 221560, 169, 169, 'Dirty Money Shadow Crystal (Executive-Grade Bodyguard)', 220411), (221038, 221038, 24, 24, 'Dirty Money Shadow Crystal (Executive-Grade Helper-Droid)', 220424), (220944, 220944, 152, 152, 'Dirty Money Shadow Crystal (Executive-Grade Minion)', 220411), (222151, 222151, 119, 119, 'Dirty Money Shadow Crystal (Executive-Grade Secretary-Droid)', 220411), (220628, 220628, 10, 10, 'Dirty Money Shadow Crystal (Executive-Grade Worker-Droid)', 220424), (220594, 220594, 57, 57, 'Dirty Money Shadow Crystal (Face in the Crowd)', 220432), (220740, 220740, 132, 132, 'Dirty Money Shadow Crystal (Faithful Administrator-Droid)', 220411), (221977, 221977, 76, 76, 'Dirty Money Shadow Crystal (Faithful Aide-Droid)', 220431), (221880, 221880, 53, 53, 'Dirty Money Shadow Crystal (Faithful Assistant-Droid)', 220431), (221702, 221702, 33, 33, 'Dirty Money Shadow Crystal (Faithful Attendant-Droid)', 220424), (220994, 220994, 162, 162, 'Dirty Money Shadow Crystal (Faithful Bodyguard)', 220411), (221105, 221105, 17, 17, 'Dirty Money Shadow Crystal (Faithful Helper-Droid)', 220424), (222126, 222126, 146, 146, 'Dirty Money Shadow Crystal (Faithful Minion)', 220411), (222081, 222081, 106, 106, 'Dirty Money Shadow Crystal (Faithful Secretary-Droid)', 220411), (222232, 222232, 4, 4, 'Dirty Money Shadow Crystal (Faithful Worker-Droid)', 220424), (220906, 220906, 169, 169, 'Dirty Money Shadow Crystal (Fear of Attention)', 220437), (222523, 222523, 71, 71, 'Dirty Money Shadow Crystal (Gallant Hero: The Aggravated Servant)', 220429), (222536, 222536, 110, 110, 'Dirty Money Shadow Crystal (Gallant Hero: The Angry Servitor)', 220436), (222521, 222521, 30, 30, 'Dirty Money Shadow Crystal (Gallant Hero: The Enraged Drone)', 220422), (222524, 222524, 92, 92, 'Dirty Money Shadow Crystal (Gallant Hero: The Indignant Flunky)', 220429), (222522, 222522, 52, 52, 'Dirty Money Shadow Crystal (Gallant Hero: The Infuriated Minion)', 220429), (221249, 221249, 80, 80, 'Dirty Money Shadow Crystal (Great Weight of the Guilty)', 220430), (221119, 221119, 146, 146, 'Dirty Money Shadow Crystal (Greater Enforced Sloth)', 220437), (222156, 222156, 179, 179, 'Dirty Money Shadow Crystal (Greater Fear of Attention)', 220437), (221836, 221836, 146, 146, 'Dirty Money Shadow Crystal (Greater Illusory Paralysis)', 220437), (222093, 222093, 126, 126, 'Dirty Money Shadow Crystal (Greater Mass Illusory Paralysis)', 220437), (220742, 220742, 162, 162, 'Dirty Money Shadow Crystal (Greater Musculature Command)', 220437), (220578, 220578, 99, 99, 'Dirty Money Shadow Crystal (Greater Restrict Movement)', 220430), (221082, 221082, 106, 106, 'Dirty Money Shadow Crystal (Greater Stumbling Steps)', 220437), (220599, 220599, 14, 14, 'Dirty Money Shadow Crystal (Gunslinger)', 220425), (221635, 221635, 179, 179, 'Dirty Money Shadow Crystal (Horror From The Darkest Pit)', 220412), (222067, 222067, 80, 80, 'Dirty Money Shadow Crystal (Illusory Paralysis)', 220430), (222230, 222230, 86, 86, 'Dirty Money Shadow Crystal (Impose Will)', 220432), (221883, 221883, 132, 132, 'Dirty Money Shadow Crystal (Inhibit Motion)', 220437), (220489, 220489, 152, 152, 'Dirty Money Shadow Crystal (Insidious Beguilement)', 220412), (220623, 220623, 132, 132, 'Dirty Money Shadow Crystal (Introspective Engagement)', 220437), (220448, 220448, 162, 162, 'Dirty Money Shadow Crystal (Inveigle Support)', 220412), (221959, 221959, 7, 7, 'Dirty Money Shadow Crystal (Lesser Blizzard of Red Tape)', 220423), (222228, 222228, 96, 96, 'Dirty Money Shadow Crystal (Lesser Charismatic Rapture)', 220432), (221187, 221187, 14, 14, 'Dirty Money Shadow Crystal (Lesser Enforced Sloth)', 220423), (221970, 221970, 149, 149, 'Dirty Money Shadow Crystal (Lesser Fear of Attention)', 220437), (221843, 221843, 4, 4, 'Dirty Money Shadow Crystal (Lesser Illusory Paralysis)', 220423), (222062, 222062, 33, 33, 'Dirty Money Shadow Crystal (Lesser Musculature Command)', 220423), (222021, 222021, 27, 27, 'Dirty Money Shadow Crystal (Lesser Pheromone Control)', 220425), (221989, 221989, 4, 4, 'Dirty Money Shadow Crystal (Lesser Stumbling Steps)', 220423), (220551, 220551, 37, 37, 'Dirty Money Shadow Crystal (Lesser Weighty Announcement)', 220423), (221661, 221661, 132, 132, 'Dirty Money Shadow Crystal (Limited Administrator-Droid)', 220411), (222066, 222066, 73, 73, 'Dirty Money Shadow Crystal (Limited Aide-Droid)', 220431), (221037, 221037, 50, 50, 'Dirty Money Shadow Crystal (Limited Assistant-Droid)', 220424), (221671, 221671, 30, 30, 'Dirty Money Shadow Crystal (Limited Attendant-Droid)', 220424), (222220, 222220, 162, 162, 'Dirty Money Shadow Crystal (Limited Bodyguard)', 220411), (222197, 222197, 17, 17, 'Dirty Money Shadow Crystal (Limited Helper-bot)', 220424), (221854, 221854, 146, 146, 'Dirty Money Shadow Crystal (Limited Minion)', 220411), (221966, 221966, 99, 99, 'Dirty Money Shadow Crystal (Limited Secretary-Droid)', 220431), (221214, 221214, 1, 1, 'Dirty Money Shadow Crystal (Limited Worker-Droid)', 220424), (220605, 220605, 175, 175, 'Dirty Money Shadow Crystal (Living Embalming)', 220437), (221799, 221799, 10, 10, 'Dirty Money Shadow Crystal (Mass Daze)', 220423), (222004, 222004, 27, 27, 'Dirty Money Shadow Crystal (Mass Illusory Paralysis)', 220423), (222504, 222504, 36, 36, 'Dirty Money Shadow Crystal (Minor Exoskeleton Pulse)', 220424), (220960, 220960, 169, 169, 'Dirty Money Shadow Crystal (Monofilament Cat-O''Nine-Tails)', 220437), (220547, 220547, 152, 152, 'Dirty Money Shadow Crystal (Monofilament Scourger)', 220437), (220609, 220609, 50, 50, 'Dirty Money Shadow Crystal (Monofilament Whip)', 220423), (222463, 222463, 156, 156, 'Dirty Money Shadow Crystal (Motivational Speech: Assassin''s Focus)', 220412), (222430, 222430, 83, 83, 'Dirty Money Shadow Crystal (Motivational Speech: Bravery Overcomes)', 220432), (222431, 222431, 156, 156, 'Dirty Money Shadow Crystal (Motivational Speech: Glorious Leader)', 220412), (222432, 222432, 186, 186, 'Dirty Money Shadow Crystal (Motivational Speech: Heroic Measures)', 220412), (222464, 222464, 149, 149, 'Dirty Money Shadow Crystal (Motivational Speech: Implement Through Iteration)', 220412), (222465, 222465, 149, 149, 'Dirty Money Shadow Crystal (Motivational Speech: Improvise and Adapt)', 220412), (222433, 222433, 37, 37, 'Dirty Money Shadow Crystal (Motivational Speech: Lead From The Front)', 220425), (222466, 222466, 50, 50, 'Dirty Money Shadow Crystal (Motivational Speech: Only the Paranoid Will Survive!)', 220425), (222467, 222467, 87, 87, 'Dirty Money Shadow Crystal (Motivational Speech: Opportunity Knocks)', 220432), (222468, 222468, 97, 97, 'Dirty Money Shadow Crystal (Motivational Speech: Organizational Opportunitites)', 220432), (222434, 222434, 130, 130, 'Dirty Money Shadow Crystal (Motivational Speech: Triumphant Pose)', 220412), (222427, 222427, 44, 44, 'Dirty Money Shadow Crystal (Mud Slinger)', 220425), (222018, 222018, 126, 126, 'Dirty Money Shadow Crystal (Muddled Psyche)', 220437), (220865, 220865, 116, 116, 'Dirty Money Shadow Crystal (Musculature Command)', 220437), (222257, 222257, 152, 152, 'Dirty Money Shadow Crystal (Oppressive Weight of the Guilty)', 220437), (221765, 221765, 43, 43, 'Dirty Money Shadow Crystal (Performance Review)', 220423), (220462, 220462, 53, 53, 'Dirty Money Shadow Crystal (Personal Magnetism)', 220432), (221364, 221364, 76, 76, 'Dirty Money Shadow Crystal (Pheromone Control)', 220432), (221098, 221098, 136, 136, 'Dirty Money Shadow Crystal (Powerful Blizzard of Red Tape)', 220437), (220998, 220998, 57, 57, 'Dirty Money Shadow Crystal (Prey On Fear)', 220432), (220512, 220512, 159, 159, 'Dirty Money Shadow Crystal (Primal Fear)', 220412), (222198, 222198, 10, 10, 'Dirty Money Shadow Crystal (Punishing Blade)', 220423), (222503, 222503, 49, 49, 'Dirty Money Shadow Crystal (Pursuade for Freedom)', 220424), (220621, 220621, 109, 109, 'Dirty Money Shadow Crystal (Remembered Pain)', 220437), (222507, 222507, 36, 36, 'Dirty Money Shadow Crystal (Request Freedom)', 220424), (220818, 220818, 24, 24, 'Dirty Money Shadow Crystal (Restrict Movement)', 220423), (221138, 221138, 47, 47, 'Dirty Money Shadow Crystal (Revoke Movement License)', 220423), (220889, 220889, 93, 93, 'Dirty Money Shadow Crystal (Rigid Stance)', 220430), (221878, 221878, 179, 179, 'Dirty Money Shadow Crystal (Rule of One)', 220437), (221108, 221108, 93, 93, 'Dirty Money Shadow Crystal (Searing Bolt)', 220430), (221296, 221296, 172, 172, 'Dirty Money Shadow Crystal (Shackles of Obediance)', 220437), (222496, 222496, 22, 22, 'Dirty Money Shadow Crystal (Sidestep the Blame)', 220424), (220523, 220523, 123, 123, 'Dirty Money Shadow Crystal (Siren Call)', 220412), (220445, 220445, 43, 43, 'Dirty Money Shadow Crystal (Sleep)', 220423), (220472, 220472, 70, 70, 'Dirty Money Shadow Crystal (Sneaking Terror)', 220432), (221758, 221758, 40, 40, 'Dirty Money Shadow Crystal (Soft Siren Call)', 220425), (220603, 220603, 63, 63, 'Dirty Money Shadow Crystal (Solicit Support)', 220432), (220661, 220661, 123, 123, 'Dirty Money Shadow Crystal (Splinter Missile)', 220437), (221303, 221303, 63, 63, 'Dirty Money Shadow Crystal (Stinging Reminder)', 220430), (220576, 220576, 30, 30, 'Dirty Money Shadow Crystal (Stumbling Steps)', 220423), (221982, 221982, 20, 20, 'Dirty Money Shadow Crystal (Subsonic Blast)', 220423), (221192, 221192, 37, 37, 'Dirty Money Shadow Crystal (Sudden Scare)', 220425), (220561, 220561, 136, 136, 'Dirty Money Shadow Crystal (Supervisor-Grade Administrator-Droid)', 220411), (221648, 221648, 83, 83, 'Dirty Money Shadow Crystal (Supervisor-Grade Aide-Droid)', 220431), (220728, 220728, 60, 60, 'Dirty Money Shadow Crystal (Supervisor-Grade Assistant-Droid)', 220431), (220959, 220959, 37, 37, 'Dirty Money Shadow Crystal (Supervisor-Grade Attendant-Droid)', 220424), (221104, 221104, 165, 165, 'Dirty Money Shadow Crystal (Supervisor-Grade Bodyguard)', 220411), (222017, 222017, 20, 20, 'Dirty Money Shadow Crystal (Supervisor-Grade Helper-Droid)', 220424), (221677, 221677, 152, 152, 'Dirty Money Shadow Crystal (Supervisor-Grade Minion)', 220411), (221987, 221987, 113, 113, 'Dirty Money Shadow Crystal (Supervisor-Grade Secretary-Droid)', 220411), (221697, 221697, 7, 7, 'Dirty Money Shadow Crystal (Supervisor-Grade Worker-Droid)', 220424), (220711, 220711, 159, 159, 'Dirty Money Shadow Crystal (Temporary Allegiance)', 220412), (220498, 220498, 20, 20, 'Dirty Money Shadow Crystal (Temporary Glamor)', 220425), (220632, 220632, 90, 90, 'Dirty Money Shadow Crystal (Terror Blast)', 220432), (222508, 222508, 42, 42, 'Dirty Money Shadow Crystal (The Claim to Freedom)', 220424), (221694, 221694, 166, 166, 'Dirty Money Shadow Crystal (Thorough Overhaul)', 220436), (220634, 220634, 159, 159, 'Dirty Money Shadow Crystal (Tight Embrace)', 220437), (221006, 221006, 179, 179, 'Dirty Money Shadow Crystal (Total Mental Domination)', 220412), (221647, 221647, 175, 175, 'Dirty Money Shadow Crystal (Total Musculature Command)', 220437), (221976, 221976, 130, 130, 'Dirty Money Shadow Crystal (Visions of a Doomed Future)', 220412), (221043, 221043, 182, 182, 'Dirty Money Shadow Crystal (Void Inertia)', 220437), (221778, 221778, 156, 156, 'Dirty Money Shadow Crystal (Wandering Mind)', 220437), (221146, 221146, 17, 17, 'Dirty Money Shadow Crystal (Weight of the Guilty)', 220423), (220899, 220899, 83, 83, 'Dirty Money Shadow Crystal (Weighty Announcement)', 220430), (227070, 227070, 1, 1, 'Disable Natural Healing', 239237), (81793, 81793, 10, 10, 'Disadvantage - No Atrox allowed', 81780), (121806, 121807, 81, 100, 'Disaffiliation Sniper', 21146), (271457, 271458, 1, 300, 'Disaffiliation Sniper - 000', 21146), (271459, 271460, 1, 300, 'Disaffiliation Sniper - 002', 21146), (271461, 271462, 1, 300, 'Disaffiliation Sniper - 402', 21146), (271463, 271464, 1, 300, 'Disaffiliation Sniper - C02', 21146), (138020, 138020, 1, 1, 'Disaffiliation Sniper Construction Manual', 37933), (257540, 257540, 250, 250, 'Disassembled Belt with Memory', 119145), (257541, 257541, 250, 250, 'Disassembled Belt with Memory and Compiler', 119145), (290643, 290643, 1, 1, 'Disassembled Human Arm', 291100), (290642, 290642, 1, 1, 'Disassembled Human Foot', 291101), (290641, 290641, 1, 1, 'Disassembled Human Kneecap', 291102), (275915, 275915, 1, 1, 'Disassembled Kyr''ozch Circuitry', 275966), (206898, 206898, 150, 150, 'Disassembled Rollerrat Helmet', 205517), (253166, 253167, 1, 300, 'Disassembler Tool', 215258), (216273, 216273, 150, 150, 'Disco Duck Sunglasses', 205756), (164602, 164601, 1, 200, 'Disconnected NCU Memory', 13371), (224729, 224729, 25, 25, 'Discouraged Essence Brain Spirit', 230992), (224952, 224952, 25, 25, 'Discouraged Heart Spirit of Strength', 230984), (224966, 224966, 25, 25, 'Discouraged Heart Spirit of Weakness', 230984), (225198, 225198, 25, 25, 'Discouraged Left Hand Spirit of Defence', 230994), (225217, 225217, 25, 25, 'Discouraged Left Hand Spirit of Strength', 230994), (224983, 224983, 25, 25, 'Discouraged Left Limb Spirit of Understanding', 230995), (224904, 224904, 25, 25, 'Discouraged Midriff Spirit of Strength', 230976), (225124, 225124, 25, 25, 'Discouraged Right Hand Strength Spirit', 231002), (224680, 224680, 25, 25, 'Discouraged Spirit of Essence', 230998), (224782, 224782, 25, 25, 'Discouraged Spirit of Essence Whispered', 230986), (225232, 225232, 25, 25, 'Discouraged Spirit of Feet Strength', 230990), (225072, 225072, 25, 25, 'Discouraged Spirit of Right Wrist Weakness', 231006), (224647, 224647, 25, 25, 'Discouraged Spirit of True Seeing', 230988), (101761, 101762, 1, 200, 'Disease AC Cluster - Bright (Leg)', 35984), (101759, 101760, 1, 200, 'Disease AC Cluster - Faded (Chest)', 35983), (101763, 101764, 1, 200, 'Disease AC Cluster - Shiny (Head)', 35985), (165993, 165994, 201, 300, 'Disease AC Refined Cluster - Bright (Leg)', 35984), (165991, 165992, 201, 300, 'Disease AC Refined Cluster - Faded (Chest)', 35983), (165995, 165996, 201, 300, 'Disease AC Refined Cluster - Shiny (Head)', 35985), (157826, 157826, 200, 200, 'Disguised Zenith Taichi', 113987), (155697, 155698, 1, 200, 'Disgusting Mixture', 100307), (287875, 287875, 1, 1, 'Disinfected Container', 289655), (287879, 287879, 1, 1, 'Disinfected Container With One Plant Sample', 289656), (287881, 287881, 1, 1, 'Disinfected Container With Three Plant Samples', 289654), (287880, 287880, 1, 1, 'Disinfected Container With Two Plant Samples', 289653), (253176, 253177, 1, 300, 'Disk of Cloudy Crystal', 227251), (224712, 224712, 30, 30, 'Dismal Brain Spirit of Offence', 230992), (224730, 224730, 30, 30, 'Dismal Essence Brain Spirit', 230992), (225199, 225199, 30, 30, 'Dismal Left Hand Spirit of Defence', 230994), (225019, 225019, 30, 30, 'Dismal Left Limb Spirit of Strength', 230995), (225141, 225141, 30, 30, 'Dismal Right Hand Defencive Spirit', 231002), (224799, 224799, 30, 30, 'Dismal Right Limb Spirit of Strength', 231004), (224681, 224681, 30, 30, 'Dismal Spirit of Essence', 230998), (225088, 225088, 30, 30, 'Dismal Spirit of Left Wrist Defense', 231000), (225106, 225106, 30, 30, 'Dismal Spirit of Left Wrist Strength', 231000), (225055, 225055, 30, 30, 'Dismal Spirit of Right Wrist Offence', 231006), (224763, 224763, 30, 30, 'Dismal Spirit of Strength Whispered', 230986), (224648, 224648, 30, 30, 'Dismal Spirit of True Seeing', 230988), (225266, 225267, 1, 500, 'Disorientate', 239257), (225268, 225269, 1, 500, 'Disorientate', 239257), (225270, 225271, 1, 500, 'Disorientate', 239257), (224719, 224719, 210, 210, 'Dispirited Brain Spirit of Offence', 230992), (236079, 236079, 50, 50, 'Dispirited Brain Symbiant, Support Unit Aban', 215188), (235462, 235462, 50, 50, 'Dispirited Chest Symbiant, Artillery Unit Aban', 215181), (235905, 235905, 50, 50, 'Dispirited Chest Symbiant, Extermination Unit Aban', 215181), (236129, 236129, 50, 50, 'Dispirited Chest Symbiant, Support Unit Aban', 215181), (235870, 235870, 50, 50, 'Dispirited Ear Symbiant, Extermination Unit Aban', 230977), (236096, 236096, 50, 50, 'Dispirited Ear Symbiant, Support Unit Aban', 230977), (235602, 235602, 50, 50, 'Dispirited Feet Symbiant, Artillery Unit Aban', 215185), (236494, 236494, 50, 50, 'Dispirited Feet Symbiant, Control Unit Aban', 215185), (236272, 236272, 50, 50, 'Dispirited Feet Symbiant, Support Unit Aban', 215187), (224944, 224944, 210, 210, 'Dispirited Heart Spirit of Essence', 230984), (224925, 224925, 210, 210, 'Dispirited Heart Spirit of Knowledge', 230984), (224976, 224976, 210, 210, 'Dispirited Heart Spirit of Weakness', 230984), (235481, 235481, 50, 50, 'Dispirited Left Arm Symbiant, Artillery Unit Aban', 215179), (236150, 236150, 50, 50, 'Dispirited Left Arm Symbiant, Support Unit Aban', 215175), (225208, 225208, 210, 210, 'Dispirited Left Hand Spirit of Defence', 230994), (225224, 225224, 210, 210, 'Dispirited Left Hand Spirit of Strength', 230994), (236479, 236479, 50, 50, 'Dispirited Left Hand Symbiant, Control Unit Aban', 215172), (236027, 236027, 50, 50, 'Dispirited Left Hand Symbiant, Extermination Unit Aban', 215172), (235803, 235803, 50, 50, 'Dispirited Left Hand Symbiant, Infantry Unit Aban', 215172), (225045, 225045, 210, 210, 'Dispirited Left Limb Spirit of Essence', 230995), (224992, 224992, 210, 210, 'Dispirited Left Limb Spirit of Understanding', 230995), (236424, 236424, 50, 50, 'Dispirited Left Wrist Symbiant, Control Unit Aban', 215196), (235751, 235751, 50, 50, 'Dispirited Left Wrist Symbiant, Infantry Unit Aban', 215198), (236207, 236207, 50, 50, 'Dispirited Left Wrist Symbiant, Support Unit Aban', 215198), (224856, 224856, 210, 210, 'Dispirited Midriff Spirit of Essence', 230976), (224910, 224910, 210, 210, 'Dispirited Midriff Spirit of Strength', 230976), (219129, 219129, 50, 50, 'Dispirited Ocular Symbiant, Artillery Unit Aban', 230979), (235838, 235838, 50, 50, 'Dispirited Ocular Symbiant, Extermination Unit Aban', 230979), (236062, 236062, 50, 50, 'Dispirited Ocular Symbiant, Support Unit Aban', 230980), (235446, 235446, 50, 50, 'Dispirited Right Arm Symbiant, Artillery Unit Aban', 215176), (235666, 235666, 50, 50, 'Dispirited Right Arm Symbiant, Infantry Unit Aban', 215180), (236444, 236444, 50, 50, 'Dispirited Right Hand Symbiant, Control Unit Aban', 215173), (235992, 235992, 50, 50, 'Dispirited Right Hand Symbiant, Extermination Unit Aban', 215173), (224687, 224687, 210, 210, 'Dispirited Spirit of Essence', 230988), (225259, 225259, 210, 210, 'Dispirited Spirit of Feet Defense', 230990), (225242, 225242, 210, 210, 'Dispirited Spirit of Feet Strength', 230990), (225165, 225165, 210, 210, 'Dispirited Spirit of Insight - Right Hand', 231002), (224755, 224755, 210, 210, 'Dispirited Spirit of Knowledge Whispered', 230986), (225116, 225116, 210, 210, 'Dispirited Spirit of Left Wrist Strength', 231000), (225063, 225063, 210, 210, 'Dispirited Spirit of Right Wrist Offence', 231006), (225082, 225082, 210, 210, 'Dispirited Spirit of Right Wrist Weakness', 231006), (224656, 224656, 210, 210, 'Dispirited Spirit of True Seeing', 230988), (236010, 236010, 50, 50, 'Dispirited Thigh Symbiant, Extermination Unit Aban', 215192), (235514, 235514, 50, 50, 'Dispirited Waist Symbiant, Artillery Unit Aban', 215194), (236408, 236408, 50, 50, 'Dispirited Waist Symbiant, Control Unit Aban', 215193), (235958, 235958, 50, 50, 'Dispirited Waist Symbiant, Extermination Unit Aban', 215193), (236189, 236189, 50, 50, 'Dispirited Waist Symbiant, Support Unit Aban', 215193), (164552, 164552, 100, 100, 'Disposal Unit Electrical Toolset', 12710), (82219, 82219, 1, 1, 'Disrupt Suspended Animation', 82206), (155644, 155645, 1, 200, 'Distilled Water', 100306), (305966, 305966, 300, 300, 'Distraction Rifle', 21146), (214940, 229944, 1, 89, 'Disturbed Sequence of Novictum', 233133), (85935, 142638, 1, 200, 'Divaad''s Armor', 88053), (225579, 225580, 1, 300, 'Diviner''s Helper', 11692), (163320, 163321, 50, 149, 'Division 9 Plasmaprojector', 21145), (252541, 252541, 1, 1, 'Dizzying Heights', 239175), (250238, 250238, 1, 1, 'Djellaba Hood', 255399), (248410, 248410, 1, 1, 'Djellaba of the Desert Winds', 255287), (288744, 288745, 1, 300, 'Docaholic''s Ring', 289770), (295557, 295557, 1, 1, 'Dockworker Overalls', 295561), (295698, 295698, 1, 1, 'Dockworker Overalls', 295561), (159078, 159078, 6, 6, 'Doctor - Sugarfree Rum', 37934), (290187, 290187, 1, 1, 'Doctor Action Figure', 290572), (215238, 215238, 100, 100, 'Doctor NICS', 158233), (270746, 270746, 1, 1, 'Doctor Nanodeck', 270749), (248258, 248258, 1, 1, 'Doctor Nanoprogram Container', 292134), (290085, 290085, 1, 1, 'Doctor Shirt', 287356), (267618, 267618, 300, 300, 'Doctor''s Left Hand of Grace', 264789), (245595, 245595, 150, 150, 'Doctor''s Pill Pack', 224101), (267619, 267619, 300, 300, 'Doctor''s Right Hand of Hope', 264786), (28778, 28778, 1, 1, 'Doctor: Startup Crystal - Improved Healing', 12228), (43384, 43384, 1, 1, 'Doctor: Startup Crystal - Prototype Biotoxin', 12224), (156950, 156950, 1, 1, 'Dodga''s Card I', 43118), (156549, 156549, 1, 1, 'Dodga''s Card II', 43120), (227062, 227062, 1, 1, 'Dodge the Blame', 239117), (101677, 101678, 1, 200, 'Dodge-Rng Cluster - Bright (Feet)', 35981), (101675, 101676, 1, 200, 'Dodge-Rng Cluster - Faded (Waist)', 35980), (101679, 101680, 1, 200, 'Dodge-Rng Cluster - Shiny (Leg)', 35982), (165855, 165856, 201, 300, 'Dodge-Rng Refined Cluster - Bright (Feet)', 35981), (165853, 165854, 201, 300, 'Dodge-Rng Refined Cluster - Faded (Waist)', 35980), (165857, 165858, 201, 300, 'Dodge-Rng Refined Cluster - Shiny (Leg)', 35982), (165221, 165221, 1, 1, 'Dog-tag Bag', 99670), (165271, 165271, 1, 1, 'Dog-tag Bag full of Commander dog-tags', 99670), (165261, 165261, 1, 1, 'Dog-tag Bag full of Elite dog-tags', 99670), (165231, 165231, 1, 1, 'Dog-tag Bag full of Grunt dog-tags', 99670), (165251, 165251, 1, 1, 'Dog-tag Bag full of Regular dog-tags', 99670), (165241, 165241, 1, 1, 'Dog-tag Bag full of Rookie dog-tags', 99670), (165269, 165269, 1, 1, 'Dog-tag Bag with eight Commander dog-tags', 99670), (165259, 165259, 1, 1, 'Dog-tag Bag with eight Elite dog-tags', 99670), (165229, 165229, 1, 1, 'Dog-tag Bag with eight Grunt dog-tags', 99670), (165249, 165249, 1, 1, 'Dog-tag Bag with eight Regular dog-tags', 99670), (165239, 165239, 1, 1, 'Dog-tag Bag with eight Rookie dog-tags', 99670), (165266, 165266, 1, 1, 'Dog-tag Bag with five Commander dog-tags', 99670), (165256, 165256, 1, 1, 'Dog-tag Bag with five Elite dog-tags', 99670), (165226, 165226, 1, 1, 'Dog-tag Bag with five Grunt dog-tags', 99670), (165246, 165246, 1, 1, 'Dog-tag Bag with five Regular dog-tags', 99670), (165236, 165236, 1, 1, 'Dog-tag Bag with five Rookie dog-tags', 99670), (165265, 165265, 1, 1, 'Dog-tag Bag with four Commander dog-tags', 99670), (165255, 165255, 1, 1, 'Dog-tag Bag with four Elite dog-tags', 99670), (165225, 165225, 1, 1, 'Dog-tag Bag with four Grunt dog-tags', 99670), (165245, 165245, 1, 1, 'Dog-tag Bag with four Regular dog-tags', 99670), (165235, 165235, 1, 1, 'Dog-tag Bag with four Rookie dog-tags', 99670), (165270, 165270, 1, 1, 'Dog-tag Bag with nine Commander dog-tags', 99670), (165260, 165260, 1, 1, 'Dog-tag Bag with nine Elite dog-tags', 99670), (165230, 165230, 1, 1, 'Dog-tag Bag with nine Grunt dog-tags', 99670), (165250, 165250, 1, 1, 'Dog-tag Bag with nine Regular dog-tags', 99670), (165240, 165240, 1, 1, 'Dog-tag Bag with nine Rookie dog-tags', 99670), (165262, 165262, 1, 1, 'Dog-tag Bag with one Commander dog-tag', 99670), (165252, 165252, 1, 1, 'Dog-tag Bag with one Elite dog-tag', 99670), (165222, 165222, 1, 1, 'Dog-tag Bag with one Grunt dog-tag', 99670), (165242, 165242, 1, 1, 'Dog-tag Bag with one Regular dog-tag', 99670), (165232, 165232, 1, 1, 'Dog-tag Bag with one Rookie dog-tag', 99670), (165268, 165268, 1, 1, 'Dog-tag Bag with seven Commander dog-tags', 99670), (165258, 165258, 1, 1, 'Dog-tag Bag with seven Elite dog-tags', 99670), (165228, 165228, 1, 1, 'Dog-tag Bag with seven Grunt dog-tags', 99670), (165248, 165248, 1, 1, 'Dog-tag Bag with seven Regular dog-tags', 99670), (165238, 165238, 1, 1, 'Dog-tag Bag with seven Rookie dog-tags', 99670), (165267, 165267, 1, 1, 'Dog-tag Bag with six Commander dog-tags', 99670), (165257, 165257, 1, 1, 'Dog-tag Bag with six Elite dog-tags', 99670), (165227, 165227, 1, 1, 'Dog-tag Bag with six Grunt dog-tags', 99670), (165247, 165247, 1, 1, 'Dog-tag Bag with six Regular dog-tags', 99670), (165237, 165237, 1, 1, 'Dog-tag Bag with six Rookie dog-tags', 99670), (165264, 165264, 1, 1, 'Dog-tag Bag with three Commander dog-tags', 99670), (165254, 165254, 1, 1, 'Dog-tag Bag with three Elite dog-tags', 99670), (165224, 165224, 1, 1, 'Dog-tag Bag with three Grunt dog-tags', 99670), (165244, 165244, 1, 1, 'Dog-tag Bag with three Regular dog-tags', 99670), (165234, 165234, 1, 1, 'Dog-tag Bag with three Rookie dog-tags', 99670), (165263, 165263, 1, 1, 'Dog-tag Bag with two Commander dog-tags', 99670), (165253, 165253, 1, 1, 'Dog-tag Bag with two Elite dog-tags', 99670), (165223, 165223, 1, 1, 'Dog-tag Bag with two Grunt dog-tags', 99670), (165243, 165243, 1, 1, 'Dog-tag Bag with two Regular dog-tags', 99670), (165233, 165233, 1, 1, 'Dog-tag Bag with two Rookie dog-tags', 99670), (294005, 294005, 275, 275, 'Dom Pattern ''Wistful Apparition''', 294182), (231525, 231525, 125, 125, 'Dom Pattern of ''Adobe Suzerain''', 229140), (234255, 234255, 220, 220, 'Dom Pattern of ''Aesma Daeva''', 229140), (234156, 234156, 255, 255, 'Dom Pattern of ''Agent of Decay''', 229140), (234129, 234129, 255, 255, 'Dom Pattern of ''Agent of Putrefaction''', 229140), (234165, 234165, 220, 220, 'Dom Pattern of ''Ahpta''', 229140), (231966, 231966, 188, 188, 'Dom Pattern of ''Alatyr''', 229140), (234228, 234228, 255, 255, 'Dom Pattern of ''Anansi', 229140), (234367, 234367, 255, 255, 'Dom Pattern of ''Anansi''', 229140), (239610, 239610, 30, 30, 'Dom Pattern of ''Anarir''', 229140), (231858, 231858, 185, 185, 'Dom Pattern of ''Anya''', 229140), (231984, 231984, 210, 210, 'Dom Pattern of ''Aray''', 229140), (234322, 234322, 255, 255, 'Dom Pattern of ''Arch Bigot Aliel''', 229140), (234264, 234264, 220, 220, 'Dom Pattern of ''Arch Bigot Biap''', 229140), (234304, 234304, 255, 255, 'Dom Pattern of ''Arch Bigot Lohel''', 229140), (232640, 232640, 200, 200, 'Dom Pattern of ''Arch Demon of Inferno''', 229140), (231732, 231732, 125, 125, 'Dom Pattern of ''Argil Suzerain''', 229140), (234313, 234313, 255, 255, 'Dom Pattern of ''Asase Ya''', 229140), (231597, 231597, 125, 125, 'Dom Pattern of ''Ashmara Ravin''', 229140), (234284, 234284, 220, 220, 'Dom Pattern of ''Ats', 229140), (231543, 231543, 125, 125, 'Dom Pattern of ''Auger''', 229140), (231552, 231552, 125, 125, 'Dom Pattern of ''Awl''', 229140), (231912, 231912, 185, 185, 'Dom Pattern of ''Bagaspati''', 229140), (231570, 231570, 125, 125, 'Dom Pattern of ''Beatific Spirit''', 229140), (231723, 231723, 125, 125, 'Dom Pattern of ''Bellowing Chimera''', 229140), (231660, 231660, 125, 125, 'Dom Pattern of ''Bhinaji Navi''', 229140), (234210, 234210, 255, 255, 'Dom Pattern of ''Bia''', 229140), (231417, 231417, 80, 80, 'Dom Pattern of ''Black Fang''', 229140), (231624, 231624, 125, 125, 'Dom Pattern of ''Blight''', 229140), (231561, 231561, 125, 125, 'Dom Pattern of ''Borer''', 229140), (231930, 231930, 178, 178, 'Dom Pattern of ''Breaker Teuvo''', 229140), (231903, 231903, 175, 175, 'Dom Pattern of ''Brutal Rafter''', 229140), (231453, 231453, 85, 85, 'Dom Pattern of ''Brutal Soul Dredge''', 229140), (232595, 232595, 200, 200, 'Dom Pattern of ''Cama''', 229140), (239538, 239538, 40, 40, 'Dom Pattern of ''Canceroid Cupid''', 229140), (234331, 234331, 220, 220, 'Dom Pattern of ''Captured Spirit''', 229140), (239556, 239556, 45, 45, 'Dom Pattern of ''Careening Blight''', 229140), (239565, 239565, 45, 45, 'Dom Pattern of ''Careening Death''', 229140), (232128, 232128, 195, 195, 'Dom Pattern of ''Churn''', 229140), (231444, 231444, 85, 85, 'Dom Pattern of ''Circumbendibum''', 229140), (231408, 231408, 80, 80, 'Dom Pattern of ''Circumbendibus''', 229140), (231651, 231651, 125, 125, 'Dom Pattern of ''Contorted Soul Dredge''', 229140), (232568, 232568, 170, 170, 'Dom Pattern of ''Dalja''', 229140), (231822, 231822, 220, 220, 'Dom Pattern of ''Defiler of Scheol''', 229140), (231840, 231840, 220, 220, 'Dom Pattern of ''Destroyer of Scheol''', 229140), (231831, 231831, 220, 220, 'Dom Pattern of ''Devastator of Scheol''', 229140), (231813, 231813, 205, 205, 'Dom Pattern of ''Devourer of Scheol''', 229140), (232586, 242531, 140, 150, 'Dom Pattern of ''Diviner Gil Kald-Thar''', 229140), (239637, 239637, 180, 180, 'Dom Pattern of ''Eidolean Soul Dredge''', 229140), (239683, 239683, 220, 220, 'Dom Pattern of ''Exsequiae''', 229140), (234147, 234147, 220, 220, 'Dom Pattern of ''Fester Leila''', 229140), (231687, 231687, 125, 125, 'Dom Pattern of ''Flinty''', 229140), (239646, 239646, 188, 188, 'Dom Pattern of ''Glitter''', 229140), (231498, 231498, 115, 115, 'Dom Pattern of ''Gracious Soul Dredge''', 229140), (231705, 231705, 125, 125, 'Dom Pattern of ''Gunk''', 229140), (231993, 231993, 210, 210, 'Dom Pattern of ''Hadur''', 229140), (234183, 234183, 220, 220, 'Dom Pattern of ''Haqa''', 229140), (231633, 231633, 125, 125, 'Dom Pattern of ''Hemut''', 229140), (239673, 239673, 220, 220, 'Dom Pattern of ''Ho''', 229140), (231516, 231516, 125, 125, 'Dom Pattern of ''Ignis Fatui''', 229140), (231579, 231579, 125, 125, 'Dom Pattern of ''Ignis Fatuus''', 229140), (232002, 232002, 182, 182, 'Dom Pattern of ''Imk', 229140), (232577, 232577, 160, 160, 'Dom Pattern of ''Infernal Demon''', 229140), (231534, 231534, 125, 125, 'Dom Pattern of ''Iunmin''', 229140), (232011, 232011, 182, 182, 'Dom Pattern of ''Juma''', 229140), (234102, 234102, 220, 220, 'Dom Pattern of ''K', 229140), (232020, 232020, 182, 182, 'Dom Pattern of ''Kaleva''', 229140), (231768, 231768, 125, 125, 'Dom Pattern of ''Kaoline Suzerain''', 229140), (231642, 231642, 125, 125, 'Dom Pattern of ''Khemhet''', 229140), (232631, 232631, 200, 200, 'Dom Pattern of ''Lady Genevra Di’Venague''', 229140), (231606, 231606, 125, 125, 'Dom Pattern of ''Lethargic Spirit''', 229140), (231741, 231741, 125, 125, 'Dom Pattern of ''Loessial Suzerain''', 229140), (239664, 239664, 125, 125, 'Dom Pattern of ''Loltonunon''', 229140), (232074, 232074, 165, 165, 'Dom Pattern of ''Lurky''', 229140), (234219, 234219, 220, 220, 'Dom Pattern of ''Lya''', 229140), (239529, 239529, 40, 40, 'Dom Pattern of ''Malah-Animus''', 229140), (239520, 239520, 40, 40, 'Dom Pattern of ''Malah-At''', 229140), (239511, 239511, 40, 40, 'Dom Pattern of ''Malah-Auris''', 229140), (239574, 239574, 25, 25, 'Dom Pattern of ''Maledicta''', 229140), (231588, 231588, 125, 125, 'Dom Pattern of ''Marem''', 229140), (231669, 231669, 125, 125, 'Dom Pattern of ''Marly Suzerain''', 229140), (239592, 239592, 50, 50, 'Dom Pattern of ''Mawi''', 229140), (231615, 231615, 125, 125, 'Dom Pattern of ''Misery''', 229140), (232092, 232092, 165, 165, 'Dom Pattern of ''Moochy''', 229140), (231885, 231885, 215, 215, 'Dom Pattern of ''Morrow''', 229140), (239484, 239484, 255, 255, 'Dom Pattern of ''Nyame''', 229140), (232541, 232541, 140, 140, 'Dom Pattern of ''Ocra''', 229140), (234376, 234376, 220, 220, 'Dom Pattern of ''Odqan''', 229140), (232029, 232029, 165, 165, 'Dom Pattern of ''Old Salty''', 229140), (231750, 231750, 125, 125, 'Dom Pattern of ''Ooze''', 229140), (234246, 234246, 220, 220, 'Dom Pattern of ''Pazuzu''', 229140), (232119, 232119, 195, 195, 'Dom Pattern of ''Quake''', 229140), (231876, 231876, 215, 215, 'Dom Pattern of ''Quondam''', 229140), (234295, 234295, 235, 235, 'Dom Pattern of ''Rallies Fete''', 229140), (234349, 234349, 255, 255, 'Dom Pattern of ''Razor the Battletoad''', 229140), (242540, 242540, 200, 200, 'Dom Pattern of ''Redeemed Cama''', 229140), (232559, 232559, 170, 170, 'Dom Pattern of ''Redeemed Gilthar''', 229140), (242513, 242513, 170, 170, 'Dom Pattern of ''Redeemed Gilthar''', 229140), (232613, 234434, 200, 255, 'Dom Pattern of ''Redeemed Lord Galahad''', 229140), (242495, 242495, 140, 140, 'Dom Pattern of ''Redeemed Ocra''', 229140), (234120, 234120, 220, 220, 'Dom Pattern of ''Relief Teals''', 229140), (232550, 232550, 140, 140, 'Dom Pattern of ''Roch''', 229140), (239547, 239547, 35, 35, 'Dom Pattern of ''Sabretooth Slicer''', 229140), (231849, 231849, 185, 185, 'Dom Pattern of ''Sampsa''', 229140), (234201, 234201, 220, 220, 'Dom Pattern of ''Sasabonsam''', 229140), (234093, 234093, 220, 220, 'Dom Pattern of ''Sashu''', 229140), (239655, 239655, 125, 125, 'Dom Pattern of ''Satkamear''', 229140), (239601, 239601, 50, 50, 'Dom Pattern of ''Sawi''', 229140), (231426, 231426, 80, 80, 'Dom Pattern of ''Scratch''', 229140), (231435, 231435, 80, 80, 'Dom Pattern of ''Screech''', 229140), (232209, 232101, 192, 195, 'Dom Pattern of ''Shake''', 229140), (232200, 232200, 192, 192, 'Dom Pattern of ''Shiver''', 229140), (234358, 234358, 255, 255, 'Dom Pattern of ''Shullat''', 229140), (231399, 231399, 80, 80, 'Dom Pattern of ''Silver Fang''', 229140), (232083, 232083, 165, 165, 'Dom Pattern of ''Skulky''', 229140), (232065, 232065, 165, 165, 'Dom Pattern of ''Slinky''', 229140), (232038, 232038, 165, 165, 'Dom Pattern of ''Smee''', 229140), (231507, 231507, 115, 115, 'Dom Pattern of ''Spiritless Soul Dredge''', 229140), (231948, 231948, 180, 180, 'Dom Pattern of ''Srahir''', 229140), (234192, 234192, 220, 220, 'Dom Pattern of ''Taille Frees''', 229140), (239701, 239701, 48, 48, 'Dom Pattern of ''Tcheser''', 229140), (239493, 239493, 160, 160, 'Dom Pattern of ''The Abysmal Lord''', 229140), (232191, 232191, 165, 165, 'Dom Pattern of ''The Abyssal Widow''', 229140), (239692, 239692, 120, 120, 'Dom Pattern of ''The Achbile Guardian''', 229140), (232146, 232146, 165, 165, 'Dom Pattern of ''The Adonian Soul Dredge''', 229140), (232173, 232173, 165, 165, 'Dom Pattern of ''The Adonis Spirit Master''', 229140), (231777, 231777, 120, 120, 'Dom Pattern of ''The Archbile Queen''', 229140), (239619, 239619, 185, 185, 'Dom Pattern of ''The Brobdingnagian Mother''', 229140), (232164, 232164, 165, 165, 'Dom Pattern of ''The Dredge Driver''', 229140), (234237, 234237, 220, 220, 'Dom Pattern of ''The Dryad Demigod''', 229140), (231939, 231939, 185, 185, 'Dom Pattern of ''The Dryad Shuffle''', 229140), (231462, 231462, 90, 90, 'Dom Pattern of ''The Dune Suzerain''', 229140), (231489, 231489, 90, 90, 'Dom Pattern of ''The Elysian Soul Dredge''', 229140), (231804, 231804, 120, 120, 'Dom Pattern of ''The Enrapt One''', 229140), (239719, 239719, 210, 210, 'Dom Pattern of ''The Great Ice Golem''', 229140), (234275, 234275, 220, 220, 'Dom Pattern of ''The Indomitable Chimera''', 229140), (242453, 242453, 220, 220, 'Dom Pattern of ''The Infernal Soul Dredge''', 229140), (231867, 231867, 205, 205, 'Dom Pattern of ''The Maggot Lord''', 229140), (234138, 234138, 255, 255, 'Dom Pattern of ''The Mortificator''', 229140), (231795, 231795, 120, 120, 'Dom Pattern of ''The Numb One''', 229140), (231894, 231894, 165, 165, 'Dom Pattern of ''The Penumbral Spirit Hunter''', 229140), (232056, 232056, 172, 172, 'Dom Pattern of ''The Peristaltic Abomination''', 229140), (232047, 232047, 172, 172, 'Dom Pattern of ''The Peristaltic Aversion''', 229140), (232182, 232182, 165, 165, 'Dom Pattern of ''The Proprietrix''', 229140), (231759, 231759, 125, 125, 'Dom Pattern of ''The Scheolian Soul Dredge''', 229140), (239628, 239628, 185, 185, 'Dom Pattern of ''The Stupendous Breeder''', 229140), (231471, 231471, 90, 90, 'Dom Pattern of ''The Talus Suzerain''', 229140), (232155, 232155, 165, 165, 'Dom Pattern of ''The Watchdog''', 229140), (231975, 231975, 202, 202, 'Dom Pattern of ''The Worm King''', 229140), (231714, 231714, 125, 125, 'Dom Pattern of ''Thunderous Chimera''', 229140), (232110, 232110, 195, 195, 'Dom Pattern of ''Toss''', 229140), (231678, 231678, 125, 125, 'Dom Pattern of ''Tough''', 229140), (231480, 231480, 90, 90, 'Dom Pattern of ''Ungulera''', 229140), (242522, 242522, 170, 170, 'Dom Pattern of ''Unredeemed Dalja''', 229140), (232622, 234446, 200, 255, 'Dom Pattern of ''Unredeemed Lord Mordeth''', 229140), (242504, 242504, 140, 140, 'Dom Pattern of ''Unredeemed Roch''', 229140), (242549, 242549, 200, 200, 'Dom Pattern of ''Unredeemed Vanya''', 229140), (239710, 239710, 48, 48, 'Dom Pattern of ''Upenpet''', 229140), (234174, 234174, 220, 220, 'Dom Pattern of ''Ushqa''', 229140), (232604, 232604, 200, 200, 'Dom Pattern of ''Vanya''', 229140), (232137, 232137, 165, 165, 'Dom Pattern of ''Viscious Visitant''', 229140), (231696, 231696, 125, 125, 'Dom Pattern of ''Wacky Suzerain''', 229140), (239583, 239583, 50, 50, 'Dom Pattern of ''Wala''', 229140), (234111, 234111, 220, 220, 'Dom Pattern of ''Waqa''', 229140), (242655, 242655, 135, 135, 'Dom Pattern of ''Weary Empath Min-Ji Liu''', 229140), (231786, 231786, 120, 120, 'Dom Pattern of ''White''', 229140), (234340, 234340, 255, 255, 'Dom Pattern of ''Xark the Battletoad''', 229140), (231957, 231957, 180, 180, 'Dom Pattern of ''Zoetic Oak''', 229140), (206192, 206192, 1, 1, 'Dominus Robe', 159569), (205944, 205944, 1, 1, 'Dominus Robe (monster wear)', 159569), (226363, 226364, 1, 500, 'Doom Touch', 239011), (226365, 226366, 1, 500, 'Doom Touch', 239011), (226367, 226368, 1, 500, 'Doom Touch', 239011), (304144, 304144, 1, 1, 'Doot Doot Stick', 264812), (208082, 208082, 80, 80, 'Doppelsoldner Landsknecht Zweihander', 40781), (267794, 267794, 250, 250, 'Dormant Ancient Circuit', 158233), (260659, 260659, 205, 205, 'Dormant Wen-Wen', 85161), (130625, 130625, 1, 1, 'Double Bronto Cheese', 130569), (274174, 274174, 1, 1, 'Double Candy Canes', 274177), (206735, 206736, 1, 250, 'Double Charge of Blood Plasma', 19861), (156045, 156046, 1, 199, 'Double Charged Liquid Bomb', 131249), (203639, 203640, 160, 200, 'Double NotuComm Circuitry', 130727), (246406, 246407, 50, 200, 'Double Perennium Barrel', 130654), (226244, 226245, 1, 500, 'Double Shot', 239059), (226246, 226247, 1, 500, 'Double Shot', 239059), (226248, 226249, 1, 500, 'Double Shot', 239059), (225618, 225619, 1, 500, 'Double Stab', 239077), (225620, 225620, 1, 1, 'Double Stab', 239077), (225621, 225622, 1, 500, 'Double Stab', 239077), (225623, 225623, 500, 500, 'Double Stab', 239077), (275249, 275249, 1, 1, 'Double Stars Back Tattoo', 275252), (214343, 214344, 100, 199, 'Double Sword of Counteraction', 210165), (214345, 214346, 200, 299, 'Double Sword of Counteraction', 210165), (245372, 245372, 150, 150, 'Doubleknit Pants', 213598), (230900, 230900, 1, 1, 'Doubtful', 82197), (204565, 204565, 1, 1, 'Dr. Ralph Eno', 99232), (283980, 283980, 1, 1, 'Dragon Wings', 283979), (226177, 226178, 1, 500, 'Dragonfire', 239009), (226179, 226180, 1, 500, 'Dragonfire', 239009), (226181, 226182, 1, 500, 'Dragonfire', 239009), (216613, 216613, 1, 1, 'Draw Blood', 239161), (158298, 158299, 1, 199, 'Dreadful Pitchfork', 85168), (267164, 267164, 250, 250, 'Dreadloch Aiming Apparatus', 130840), (267255, 267255, 300, 300, 'Dreadloch Balanced Freedom Arms', 264788), (267261, 267261, 300, 300, 'Dreadloch Combat Remodulator', 264837), (267260, 267260, 250, 250, 'Dreadloch Damage Amplifier', 99264), (267166, 267166, 250, 250, 'Dreadloch Endurance Booster', 99266), (267168, 267168, 250, 250, 'Dreadloch Endurance Booster - Enforcer Special', 99266), (267167, 267167, 250, 250, 'Dreadloch Endurance Booster - Nanomage Edition', 99266), (267254, 267254, 300, 300, 'Dreadloch Enhanced Bear', 264827), (267253, 267253, 300, 300, 'Dreadloch Enhanced Panther', 264815), (267158, 267158, 300, 300, 'Dreadloch Modified Shark', 264839), (267127, 267127, 300, 300, 'Dreadloch Obliterator', 19800), (268750, 268750, 1, 1, 'Dreadloch Promotional Gadget', 268686), (268749, 268749, 1, 1, 'Dreadloch Promotional Gizmo', 268687), (267128, 267128, 300, 300, 'Dreadloch Rapier', 31807), (267256, 267256, 300, 300, 'Dreadloch Remodulator', 264837), (267258, 267258, 300, 300, 'Dreadloch Shen Sticks', 229956), (267286, 267286, 250, 250, 'Dreadloch Sniper''s Friend', 99265), (267285, 267285, 250, 250, 'Dreadloch Stab Guidance System', 99265), (267165, 267165, 250, 250, 'Dreadloch Stabilising Aid', 130840), (267259, 267259, 250, 250, 'Dreadloch Survival Predictor', 99265), (267125, 267125, 300, 300, 'Dreadloch Thrasher', 210185), (267257, 267257, 300, 300, 'Dreadloch Tigress', 264841), (267124, 267124, 300, 300, 'Dreadlock Thrasher', 210185), (274972, 274972, 1, 1, 'Dream Mesh Circuit', 149938), (225038, 225038, 40, 40, 'Dreary Left Limb Spirit of Essence', 230995), (224984, 224984, 40, 40, 'Dreary Left Limb Spirit of Understanding', 230995), (224999, 224999, 40, 40, 'Dreary Left Limb Spirit of Weakness', 230995), (224849, 224849, 40, 40, 'Dreary Midriff Spirit of Essence', 230976), (224866, 224866, 40, 40, 'Dreary Midriff Spirit of Knowledge', 230976), (224884, 224884, 40, 40, 'Dreary Midriff Spirit of Weakness', 230976), (224800, 224800, 40, 40, 'Dreary Right Limb Spirit of Strength', 231004), (224697, 224697, 40, 40, 'Dreary Spirit of Clear Thought', 230992), (225174, 225174, 40, 40, 'Dreary Spirit of Defense', 230998), (225250, 225250, 40, 40, 'Dreary Spirit of Feet Defense', 230990), (225158, 225158, 40, 40, 'Dreary Spirit of Insight - Right Hand', 231002), (224747, 224747, 40, 40, 'Dreary Spirit of Knowledge Whispered', 230986), (225073, 225073, 40, 40, 'Dreary Spirit of Right Wrist Weakness', 231006), (152732, 152733, 1, 20, 'Dried out Tear Blade', 13347), (152263, 152264, 1, 200, 'Droid Control-device', 119144), (252984, 252985, 1, 300, 'Drone Communication Unit', 37995), (287514, 287514, 1, 1, 'Drone Death Item', 84059), (280812, 280812, 1, 1, 'Drone Embankment Effect Wearable', 84059), (156050, 156051, 1, 200, 'Drum of Hydrochloric Acid', 156211), (268460, 268460, 1, 1, 'Dryad Tissue Sample', 144703), (249842, 249843, 81, 100, 'Dual Razor Disaffiliation Sniper', 21146), (287148, 287148, 200, 200, 'Dual-Core Psychrometer', 287465), (230901, 230901, 1, 1, 'Dubious', 82197), (199537, 199537, 260, 260, 'Dubnium Periodic Tech Armor Boots', 22886), (199558, 199558, 260, 260, 'Dubnium Periodic Tech Armor Gloves', 22933), (199579, 199579, 260, 260, 'Dubnium Periodic Tech Armor Helmet', 31731), (199601, 199601, 260, 260, 'Dubnium Periodic Tech Armor Pants', 22912), (199622, 199622, 260, 260, 'Dubnium Periodic Tech Armor Sleeves', 22911), (199643, 199643, 260, 260, 'Dubnium Periodic Tech Body Armor', 22990), (199664, 199664, 260, 260, 'Dubnium Periodic Tech Female Body Armor', 22909), (287254, 287254, 1, 1, 'Duck Armbands', 287259), (287253, 287253, 1, 1, 'Duck Boots', 287258), (287120, 287120, 1, 1, 'Duck Pants', 287216), (287252, 287252, 1, 1, 'Duck Top', 287257), (101671, 101672, 1, 200, 'Duck-Exp Cluster - Bright (Waist)', 35981), (101669, 101670, 1, 200, 'Duck-Exp Cluster - Faded (Feet)', 35980), (101673, 101674, 1, 200, 'Duck-Exp Cluster - Shiny (Leg)', 35982), (165849, 165850, 201, 300, 'Duck-Exp Refined Cluster - Bright (Waist)', 35981), (165847, 165848, 201, 300, 'Duck-Exp Refined Cluster - Faded (Feet)', 35980), (165851, 165852, 201, 300, 'Duck-Exp Refined Cluster - Shiny (Leg)', 35982), (301674, 301674, 1, 1, 'Duelist Record Purge', 20411), (303377, 303377, 1, 1, 'Duelist Record Purge', 20411), (154815, 154816, 1, 199, 'Duke Lugger SMP', 33156), (123324, 123325, 10, 13, 'Dull Banjo', 85159), (122924, 122925, 1, 20, 'Dull Blackjohn', 33170), (274723, 274723, 1, 1, 'Dull Combined Soul Crystal', 274673), (122159, 122160, 1, 20, 'Dull E-Blade', 13337), (122805, 122806, 1, 20, 'Dull Gofle-Prod', 33168), (121722, 121723, 1, 20, 'Dull Haxor 9922', 13339), (121969, 121970, 1, 20, 'Dull Katana', 13326), (122045, 122046, 1, 20, 'Dull Longmoon', 13338), (123000, 123001, 1, 20, 'Dull Notum Spear', 21135), (143758, 143758, 1, 1, 'Dull Notum Spear Construction Manual', 37931), (122962, 122963, 1, 20, 'Dull Notum Staff', 33162), (143642, 143642, 1, 1, 'Dull Notum Staff Construction Manual', 37931), (25823, 25823, 150, 150, 'Dull Pearl of Silver by Omni-Med', 286914), (122905, 122906, 1, 20, 'Dull Support Beam', 33143), (122786, 122787, 1, 20, 'Dull Sword of Sir Galahad', 40781), (122748, 122749, 1, 20, 'Dull Two-Handed Blackjack', 33170), (121703, 121704, 1, 20, 'Dull Whings', 21139), (121665, 121666, 1, 23, 'Dulled Thagh Whings', 21138), (248754, 248754, 1, 1, 'Dungaree Body of Cupid''s Arrow', 255302), (248756, 248756, 1, 1, 'Dungaree Boots of Cupid''s Arrow', 255347), (248755, 248755, 1, 1, 'Dungaree Pants of Cupid''s Arrow', 255183), (248753, 248753, 1, 1, 'Dungaree Sleeves of Cupid''s Arrow', 255244), (214347, 214347, 300, 300, 'Duplex Sword of Counteraction', 210165), (26164, 26164, 1, 1, 'Durable Light Created by the Adventurer Spell', 12253), (280730, 280730, 300, 300, 'Dusk of the Xan', 246240), (215400, 215400, 1, 1, 'Dusky', 82197), (304214, 304214, 1, 1, 'Dust 2 Dust T-Shirt - Blue', 304255), (304217, 304217, 1, 1, 'Dust 2 Dust T-Shirt - Green', 304256), (304215, 304215, 1, 1, 'Dust 2 Dust T-Shirt - Orange', 304257), (304216, 304216, 1, 1, 'Dust 2 Dust T-Shirt - Purple', 304258), (292157, 292157, 250, 250, 'Dust Brigade Assault Module', 292181), (292603, 292603, 250, 250, 'Dust Brigade Assistance Module', 292179), (273551, 273551, 1, 1, 'Dust Brigade Attunement Cast', 273626), (273555, 273555, 1, 1, 'Dust Brigade Attunement Cast', 273626), (273556, 273556, 1, 1, 'Dust Brigade Attunement Cast', 273626), (273557, 273557, 1, 1, 'Dust Brigade Attunement Cast', 273626), (292607, 292607, 250, 250, 'Dust Brigade Barrier Module', 292180), (292566, 292566, 250, 250, 'Dust Brigade Bracer - First Edition', 292571), (292565, 292565, 250, 250, 'Dust Brigade Bracer - Second Edition', 292572), (292564, 292564, 250, 250, 'Dust Brigade Bracer - Third Edition', 292569), (292608, 292608, 250, 250, 'Dust Brigade Creator Module', 292176), (274559, 274559, 300, 300, 'Dust Brigade Engineer Pistol', 264787), (292606, 292606, 250, 250, 'Dust Brigade Escape Module', 292178), (292604, 292604, 250, 250, 'Dust Brigade Grunt Module', 292177), (278605, 278605, 200, 200, 'Dust Brigade Heavy Tank Armour', 22395), (278606, 278606, 300, 300, 'Dust Brigade MA Protective Gear', 268014), (274552, 274552, 250, 250, 'Dust Brigade Notum Infuser', 218768), (303044, 303045, 1, 200, 'Dust Brigade Parasite Boots', 303031), (303042, 303043, 1, 200, 'Dust Brigade Parasite Breastplate', 303030), (303038, 303039, 1, 200, 'Dust Brigade Parasite Gloves', 303032), (293398, 293398, 250, 250, 'Dust Brigade Parasite Helmet', 293397), (303040, 303041, 1, 200, 'Dust Brigade Parasite Legwear', 303033), (303048, 303049, 1, 200, 'Dust Brigade Parasite Life Support System', 303029), (303046, 303047, 1, 200, 'Dust Brigade Parasite Pauldron', 303034), (303036, 303037, 1, 200, 'Dust Brigade Parasite Sleeve', 303028), (292605, 292605, 250, 250, 'Dust Brigade Protector Module', 292182), (278792, 278792, 1, 1, 'Dust Brigade Second Edition Helmet - Blue', 99666), (278794, 278794, 1, 1, 'Dust Brigade Second Edition Helmet - Green', 99666), (278793, 278793, 1, 1, 'Dust Brigade Second Edition Helmet - Orange', 99666), (278796, 278796, 1, 1, 'Dust Brigade Second Edition Helmet - Purple', 99666), (278795, 278795, 1, 1, 'Dust Brigade Second Edition Helmet - White', 99666), (273731, 273731, 1, 1, 'Dust Brigade Security Codes', 159122), (268797, 268797, 1, 1, 'Dust Brigade Security Pass', 149943), (269707, 269707, 1, 1, 'Dust Brigade Security Pass', 149943), (274558, 274558, 250, 250, 'Dust Brigade Solar Notum Infuser', 301023), (292191, 292191, 250, 250, 'Dust Brigade Special Ops Helmet', 292077), (303694, 303695, 1, 200, 'Dust Brigade Tech Unit Boots', 303710), (303688, 303689, 1, 200, 'Dust Brigade Tech Unit Chestplate', 303709), (303692, 303693, 1, 200, 'Dust Brigade Tech Unit Gloves', 303712), (303684, 303685, 1, 200, 'Dust Brigade Tech Unit Helmet', 303713), (303686, 303687, 1, 200, 'Dust Brigade Tech Unit Legwear', 303714), (303690, 303691, 1, 200, 'Dust Brigade Tech Unit Sleeves', 303708), (303699, 303699, 1, 1, 'Dust Brigade Technician Datapad', 268672), (303700, 303700, 1, 1, 'Dust Brigade Technician Datapad', 268672), (303701, 303701, 1, 1, 'Dust Brigade Technician Datapad', 268672), (303702, 303702, 1, 1, 'Dust Brigade Technician Datapad', 268672), (303703, 303703, 1, 1, 'Dust Brigade Technician Datapad', 268672), (303704, 303704, 1, 1, 'Dust Brigade Technician Datapad', 268672), (303705, 303705, 1, 1, 'Dust Brigade Technician Datapad', 268672), (200461, 200461, 200, 200, 'Dust Collector', 99659), (303236, 303236, 1, 1, 'Dustbrigade Air Filtration System', 303235), (165458, 165458, 200, 200, 'Dustbrigade Commander Boots', 31746), (165457, 165457, 200, 200, 'Dustbrigade Commander Chestpiece', 32162), (165459, 165459, 200, 200, 'Dustbrigade Commander Gloves', 21871), (165460, 165460, 200, 200, 'Dustbrigade Commander Skirt', 155108), (165456, 165456, 200, 200, 'Dustbrigade Commander Sleeves', 13233), (303174, 303174, 1, 1, 'Dustbrigade Dunewalker Headgear', 303173), (303105, 303105, 250, 250, 'Dustbrigade Operative Boots', 31746), (303104, 303104, 250, 250, 'Dustbrigade Operative Chestpiece', 37545), (303108, 303108, 250, 250, 'Dustbrigade Operative Covering', 218533), (303106, 303106, 250, 250, 'Dustbrigade Operative Gloves', 21871), (303107, 303107, 250, 250, 'Dustbrigade Operative Legwear', 31748), (303103, 303103, 250, 250, 'Dustbrigade Operative Sleeves', 13233), (168879, 168879, 200, 200, 'Dustbrigade Protective Vambrace', 151917), (165463, 165463, 200, 200, 'Dustbrigade Trooper Boots', 31746), (165462, 165462, 200, 200, 'Dustbrigade Trooper Chestpiece', 37545), (165464, 165464, 200, 200, 'Dustbrigade Trooper Gloves', 21871), (165465, 165465, 200, 200, 'Dustbrigade Trooper Pants', 31748), (165461, 165461, 200, 200, 'Dustbrigade Trooper Sleeves', 13233), (285452, 285452, 50, 50, 'Dusty Red Ledger', 37931), (257962, 257962, 250, 250, 'Dynamic Gas Redistribution Valves', 205508), (244541, 244541, 250, 250, 'Dynamic Sleeve of Aries', 22953), (244542, 244542, 250, 250, 'Dynamic Sleeve of Aries', 22953), (297649, 297649, 1, 1, 'Dynel Item', 119159), (225993, 225994, 1, 300, 'Dysfunctional Wristwatch', 84046), (122129, 122130, 81, 100, 'E-Beamer', 21150), (271975, 271976, 1, 300, 'E-Beamer - 000', 21150), (271979, 271980, 1, 300, 'E-Beamer - 005', 21150), (271981, 271982, 1, 300, 'E-Beamer - 405', 21150), (271983, 271984, 1, 300, 'E-Beamer - C05', 21150), (138378, 138378, 1, 1, 'E-Beamer Construction Manual', 37933), (271415, 271416, 1, 300, 'E-Blade - 000', 13337), (271417, 271418, 1, 300, 'E-Blade - 010', 13337), (271419, 271420, 1, 300, 'E-Blade - 050', 13337), (271421, 271422, 1, 300, 'E-Blade - 850', 13337), (288357, 288357, 1, 1, 'E.C.A.B.B.A.G.E Shirt', 288356), (283869, 283869, 1, 1, 'E.G.I.N.A Blouse', 284024), (273217, 273217, 1, 1, 'E.P.E.E.N. Shirt', 273219), (225472, 225472, 1, 1, 'ECM 1', 239109), (225473, 225473, 1, 1, 'ECM 2', 239115), (263977, 263977, 1, 1, 'EMP Mine Layer', 205499), (124455, 124456, 24, 87, 'EN-RAL', 13320), (124457, 124457, 88, 88, 'EN-RAL Beat of an Eyelash', 13320), (208007, 208008, 140, 149, 'EVA Survivor', 13316), (207087, 207087, 1, 1, 'Eagle Eye Monocle', 205749), (269342, 269342, 1, 1, 'Earrings of Penumbra', 269346), (304145, 304145, 1, 1, 'Ears of the Cerulean Figure', 304096), (304148, 304148, 1, 1, 'Ears of the Emerald Beast', 304097), (229048, 229048, 220, 220, 'Earth Glyph of Judgement', 227530), (229053, 229053, 220, 220, 'Earth Glyph of the World', 227530), (157395, 157395, 1, 1, 'Earth Thirtythree Cobra Advantage', 81777), (157396, 157396, 1, 1, 'Earthquake Thirtynine Pollack Advantage', 81778), (157397, 157397, 1, 1, 'East Fourteen Rabbit Advantage', 81777), (160216, 160217, 1, 199, 'East Wind Katana', 113999), (225813, 225814, 1, 500, 'Easy Shot', 239063), (225816, 225817, 1, 500, 'Easy Shot', 239063), (225819, 225820, 1, 500, 'Easy Shot', 239063), (283671, 283672, 1, 500, 'Eat Bullets', 239065), (283673, 283674, 1, 500, 'Eat Bullets', 239065), (283675, 283676, 1, 500, 'Eat Bullets', 239065), (226703, 226704, 1, 300, 'Ectoplasm Arm Tattoo''s', 226602), (226709, 226710, 1, 300, 'Ectoplasm Foot Tattoo''s', 226635), (226701, 226702, 1, 300, 'Ectoplasm Hand Tattoo''s', 226592), (226707, 226708, 1, 300, 'Ectoplasm Leg Tattoo''s', 226665), (226705, 226706, 1, 300, 'Ectoplasm Torso Tattoo''s', 226618), (285567, 285567, 1, 1, 'Ed Burton Death Item', 84059), (157854, 157855, 1, 199, 'Edge of the Tarasque', 158280), (123326, 123327, 14, 17, 'Edge-Less Banjo', 85159), (122926, 122927, 21, 40, 'Edge-Less Blackjohn', 33170), (122161, 122162, 21, 40, 'Edge-Less E-Blade', 13337), (122807, 122808, 21, 40, 'Edge-Less Gofle-Prod', 33168), (121724, 121725, 21, 40, 'Edge-Less Haxor 9922', 13339), (121971, 121972, 21, 40, 'Edge-Less Katana', 13326), (122047, 122048, 21, 40, 'Edge-Less Longmoon', 13338), (123002, 123003, 21, 40, 'Edge-Less Notum Spear', 21135), (143767, 143767, 1, 1, 'Edge-Less Notum Spear Construction Manual', 37932), (122964, 122965, 21, 40, 'Edge-Less Notum Staff', 33162), (143655, 143655, 1, 1, 'Edge-Less Notum Staff Construction Manual', 37932), (122907, 122908, 21, 40, 'Edge-Less Support Beam', 33143), (122788, 122789, 21, 40, 'Edge-Less Sword of Sir Galahad', 40781), (122750, 122751, 21, 40, 'Edge-Less Two-Handed Blackjack', 33170), (121705, 121706, 21, 40, 'Edge-Less Whings', 21139), (250146, 250147, 21, 40, 'Edge-less Adapting Notum Lever', 33163), (144148, 144149, 21, 40, 'Edge-less Burning Copper Katana', 113998), (153085, 153086, 50, 99, 'Edge-less G-Staff', 136738), (128959, 128960, 21, 40, 'Edge-less Merchant Warblade', 114011), (130108, 130109, 21, 40, 'Edge-less Notum Lever', 33163), (128940, 128941, 21, 40, 'Edge-less Peasant Warblade', 114009), (128997, 128998, 21, 40, 'Edge-less Protector Warblade', 114010), (128978, 128979, 21, 40, 'Edge-less Rider Warblade', 114012), (85468, 85469, 1, 250, 'Edged Weapons Field Primer', 83463), (160129, 160130, 41, 120, 'Edwards RS Knife', 13349), (236362, 236362, 240, 240, 'Effective Chest Symbiant, Control Unit Aban', 215183), (236137, 236137, 240, 240, 'Effective Chest Symbiant, Support Unit Aban', 215181), (236107, 236107, 240, 240, 'Effective Ear Symbiant, Support Unit Aban', 230977), (235611, 235611, 240, 240, 'Effective Feet Symbiant, Artillery Unit Aban', 215185), (236053, 236053, 240, 240, 'Effective Feet Symbiant, Extermination Unit Aban', 215186), (235829, 235829, 240, 240, 'Effective Feet Symbiant, Infantry Unit Aban', 215187), (236280, 236280, 240, 240, 'Effective Feet Symbiant, Support Unit Aban', 215187), (235490, 235490, 240, 240, 'Effective Left Arm Symbiant, Artillery Unit Aban', 215179), (236380, 236380, 240, 240, 'Effective Left Arm Symbiant, Control Unit Aban', 215177), (236159, 236159, 240, 240, 'Effective Left Arm Symbiant, Support Unit Aban', 215175), (235592, 235592, 240, 240, 'Effective Left Hand Symbiant, Artillery Unit Aban', 215171), (236486, 236486, 240, 240, 'Effective Left Hand Symbiant, Control Unit Aban', 215172), (236037, 236037, 240, 240, 'Effective Left Hand Symbiant, Extermination Unit Aban', 215172), (236433, 236433, 240, 240, 'Effective Left Wrist Symbiant, Control Unit Aban', 215196), (235761, 235761, 240, 240, 'Effective Left Wrist Symbiant, Infantry Unit Aban', 215198), (236296, 236296, 240, 240, 'Effective Ocular Symbiant, Control Unit Aban', 230979), (235845, 235845, 240, 240, 'Effective Ocular Symbiant, Extermination Unit Aban', 230979), (236346, 236346, 240, 240, 'Effective Right Arm Symbiant, Control Unit Aban', 215180), (235896, 235896, 240, 240, 'Effective Right Arm Symbiant, Extermination Unit Aban', 215178), (235678, 235678, 240, 240, 'Effective Right Arm Symbiant, Infantry Unit Aban', 215180), (236120, 236120, 240, 240, 'Effective Right Arm Symbiant, Support Unit Aban', 215178), (235560, 235560, 240, 240, 'Effective Right Hand Symbiant, Artillery Unit Aban', 215173), (235506, 235506, 240, 240, 'Effective Right Wrist Symbiant, Artillery Unit Aban', 215170), (236020, 236020, 240, 240, 'Effective Thigh Symbiant, Extermination Unit Aban', 215192), (236249, 236249, 240, 240, 'Effective Thigh Symbiant, Support Unit Aban', 215190), (235964, 235964, 240, 240, 'Effective Waist Symbiant, Extermination Unit Aban', 215193), (235744, 235744, 240, 240, 'Effective Waist Symbiant, Infantry Unit Aban', 215193), (254329, 254364, 4, 100, 'Efficient Controller Recompiler Unit', 297740), (157258, 157258, 40, 40, 'Einstein''s Mind Booster Cocktail', 156492), (272027, 272028, 1, 300, 'El Diablo - 000', 31812), (272031, 272032, 1, 300, 'El Diablo - 005', 31812), (272033, 272034, 1, 300, 'El Diablo - 405', 31812), (272035, 272036, 1, 300, 'El Diablo - C05', 31812), (272017, 272018, 1, 300, 'El Dieu - 000', 31809), (272021, 272022, 1, 300, 'El Dieu - 005', 31809), (272023, 272024, 1, 300, 'El Dieu - 405', 31809), (272025, 272026, 1, 300, 'El Dieu - C05', 31809), (101533, 101534, 1, 200, 'Elec. Engi Cluster - Bright (Head)', 36014), (101531, 101532, 1, 200, 'Elec. Engi Cluster - Faded (Right-Hand)', 36013), (101535, 101536, 1, 200, 'Elec. Engi Cluster - Shiny (Eye)', 36015), (165693, 165694, 201, 300, 'Elec. Engi Refined Cluster - Bright (Head)', 36014), (165691, 165692, 201, 300, 'Elec. Engi Refined Cluster - Faded (Right-Hand)', 36013), (165695, 165696, 201, 300, 'Elec. Engi Refined Cluster - Shiny (Eye)', 36015), (295873, 295873, 250, 250, 'Electonium Band Template', 245483), (244205, 244205, 150, 150, 'Electric Bolts', 244207), (216275, 216275, 150, 150, 'Electric Boogie Sunglasses', 205755), (215251, 215251, 100, 100, 'Electrical Engineering Logistics Assistant', 215258), (55694, 55693, 1, 200, 'Electrical Engineering Tutoring Device', 300888), (122243, 122244, 81, 100, 'Electrical Pacifier', 21150), (271737, 271738, 1, 300, 'Electrical Pacifier - 000', 21150), (271741, 271742, 1, 300, 'Electrical Pacifier - 401', 21150), (271743, 271744, 1, 300, 'Electrical Pacifier - C01', 21150), (248343, 248343, 1, 1, 'Electrical Surge Pistol', 29116), (289906, 289906, 1, 1, 'Electrical Wires', 289914), (271537, 271538, 1, 300, 'Electron-Charged Pistol - 000', 13316), (271541, 271542, 1, 300, 'Electron-Charged Pistol - 401', 13316), (271543, 271544, 1, 300, 'Electron-Charged Pistol - C01', 13316), (252988, 252989, 1, 300, 'Electrophoridae Gloves', 99789), (204396, 204396, 20, 20, 'Eleet Doll', 156598), (256786, 256787, 1, 300, 'Eleet Doll Plus', 156598), (125342, 125342, 192, 192, 'Elegant Large Rider Squibber', 114008), (125310, 125310, 200, 200, 'Elegant Peasant Squibber', 114005), (294883, 294883, 1, 1, 'Elegant Wedding Cake', 290524), (232892, 232893, 1, 149, 'Elegantly wrought earring', 84060), (232893, 232895, 150, 199, 'Elegantly wrought earring', 84060), (232895, 232896, 200, 249, 'Elegantly wrought earring', 84060), (232896, 232897, 250, 400, 'Elegantly wrought earring', 84060), (227421, 227421, 1, 1, 'Elementary Teleportation', 239267), (227433, 227433, 1, 1, 'Elementary Teleportation 2', 239269), (304222, 304222, 1, 1, 'Elf Mask', 304327), (199394, 199394, 280, 280, 'Elite Bau Charger Armor Boots', 22878), (199415, 199415, 280, 280, 'Elite Bau Charger Armor Gloves', 22939), (199436, 199436, 280, 280, 'Elite Bau Charger Armor Helmet', 31738), (199457, 199457, 280, 280, 'Elite Bau Charger Armor Pants', 22928), (199478, 199478, 280, 280, 'Elite Bau Charger Armor Sleeves', 22889), (199499, 199499, 280, 280, 'Elite Bau Charger Body Armor', 22981), (199520, 199520, 280, 280, 'Elite Bau Charger Female Body Armor', 22942), (162024, 162025, 350, 359, 'Elite Bau Cyber Armor Helmet', 31738), (162025, 162026, 360, 370, 'Elite Bau Cyber Armor Helmet', 31738), (303651, 303651, 1, 1, 'Elite Desert Nomad Armor', 290005), (303554, 303555, 1, 300, 'Elite Desert Nomad Body Armor', 303673), (303560, 303561, 1, 300, 'Elite Desert Nomad Boots', 303671), (303562, 303563, 1, 300, 'Elite Desert Nomad Cloak', 218533), (303556, 303557, 1, 300, 'Elite Desert Nomad Gloves', 303675), (303548, 303549, 1, 300, 'Elite Desert Nomad Helmet', 303677), (303558, 303559, 1, 300, 'Elite Desert Nomad Pants', 303674), (303550, 303551, 1, 300, 'Elite Desert Nomad Shoulder Pad', 290167), (303552, 303553, 1, 300, 'Elite Desert Nomad Sleeves', 303672), (207863, 207863, 250, 250, 'Elite Flower Guard Gofleprod', 33168), (199395, 199395, 285, 285, 'Elite IV Bau Charger Armor Boots', 22878), (199416, 199416, 285, 285, 'Elite IV Bau Charger Armor Gloves', 22939), (199437, 199437, 285, 285, 'Elite IV Bau Charger Armor Helmet', 31738), (199458, 199458, 285, 285, 'Elite IV Bau Charger Armor Pants', 22928), (199479, 199479, 285, 285, 'Elite IV Bau Charger Armor Sleeves', 22889), (199500, 199500, 285, 285, 'Elite IV Bau Charger Body Armor', 22981), (199521, 199521, 285, 285, 'Elite IV Bau Charger Female Body Armor', 22942), (152338, 152338, 200, 200, 'Elite MTI Aleph 99', 21148), (153927, 153927, 1, 1, 'Elite MTI Aleph 99 Construction Manual', 136330), (199689, 199689, 280, 280, 'Elite Nadir Homage Armor Boots', 22876), (199710, 199710, 280, 280, 'Elite Nadir Homage Armor Gloves', 22931), (199731, 199731, 280, 280, 'Elite Nadir Homage Armor Helmet', 31733), (199752, 199752, 280, 280, 'Elite Nadir Homage Armor Pants', 22914), (199773, 199773, 280, 280, 'Elite Nadir Homage Armor Sleeves', 22960), (199794, 199794, 280, 280, 'Elite Nadir Homage Body Armor', 22985), (165219, 165219, 1, 1, 'Elite dog-tag', 149944), (246309, 246309, 100, 100, 'Elysian Protector''s Cuirass', 13251), (295080, 295080, 1, 1, 'Elysium Garden Access', 295096), (295119, 295119, 1, 1, 'Elysium Mission Reward', 281837), (295106, 295106, 1, 1, 'Elysium Sanctuary Access', 295095), (211217, 211217, 300, 300, 'Embellished Bulwark Blaster', 114015), (136628, 136629, 1, 200, 'Ember', 286915), (262503, 262503, 1, 1, 'Ember Chimera Tooth', 262478), (136650, 136651, 1, 200, 'Ember Sphere', 286917), (232732, 232733, 1, 149, 'Emerald', 286919), (232733, 232735, 150, 199, 'Emerald', 286919), (232735, 232736, 200, 249, 'Emerald', 286919), (232736, 232737, 250, 400, 'Emerald', 286919), (157398, 157398, 1, 1, 'Emerald Ten Cheetah Advantage', 81775), (284480, 284480, 1, 1, 'Emergency Alarm Switch', 277964), (273605, 273605, 1, 1, 'Emergency Backup Relay', 37931), (273609, 273609, 1, 1, 'Emergency Backup Relay', 37931), (273610, 273610, 1, 1, 'Emergency Backup Relay', 37931), (273611, 273611, 1, 1, 'Emergency Backup Relay', 37931), (284479, 284479, 1, 1, 'Emergency Control Panel', 277964), (204180, 204181, 1, 300, 'Emergency Defense Shield Neutralizer', 203512), (163552, 163552, 1, 1, 'Emergency Personal Beamer', 149946), (199387, 199387, 245, 245, 'Emicationous Bau Charger Armor Boots', 22878), (199408, 199408, 245, 245, 'Emicationous Bau Charger Armor Gloves', 22939), (199429, 199429, 245, 245, 'Emicationous Bau Charger Armor Helmet', 31738), (199450, 199450, 245, 245, 'Emicationous Bau Charger Armor Pants', 22928), (199471, 199471, 245, 245, 'Emicationous Bau Charger Armor Sleeves', 22889), (199492, 199492, 245, 245, 'Emicationous Bau Charger Body Armor', 22981), (199513, 199513, 245, 245, 'Emicationous Bau Charger Female Body Armor', 22942), (297048, 297048, 1, 1, 'Emiel''s Box of Foodstuff', 300529), (152031, 152031, 42, 42, 'Emotional Sponge', 72769), (168511, 168511, 130, 130, 'Emperor Gem of Burning Plasma', 286761), (168795, 168795, 130, 130, 'Emperor Gem of Corroded Glory', 286755), (230294, 230294, 130, 130, 'Emperor Gem of Decayed Glory', 25794), (230090, 230090, 130, 130, 'Emperor Gem of Fiery Plasma', 25794), (230043, 230043, 130, 130, 'Emperor Gem of the Broken Moebius', 25794), (168471, 168471, 130, 130, 'Emperor Gem of the Bruised Brawler', 286753), (230214, 230214, 130, 130, 'Emperor Gem of the Craggy Landscape', 25794), (230134, 230134, 130, 130, 'Emperor Gem of the Empty Desert', 25794), (165387, 165387, 130, 130, 'Emperor Gem of the Eternal Juggernaut', 286757), (229982, 229982, 130, 130, 'Emperor Gem of the Frail Juggernaut', 25794), (168618, 168618, 130, 130, 'Emperor Gem of the Frozen Tundra', 286762), (230174, 230174, 130, 130, 'Emperor Gem of the Icy Tundra', 25794), (168430, 168430, 130, 130, 'Emperor Gem of the Infinite Moebius', 286760), (230334, 230334, 130, 130, 'Emperor Gem of the Insidious Killer', 25794), (168715, 168715, 130, 130, 'Emperor Gem of the Jagged Landscape', 286759), (230049, 230049, 130, 130, 'Emperor Gem of the Novice Brawler', 25794), (168755, 168755, 130, 130, 'Emperor Gem of the Rainbow-hued Sky', 286756), (230254, 230254, 130, 130, 'Emperor Gem of the Scarlet Sky', 25794), (168551, 168551, 130, 130, 'Emperor Gem of the Searing Desert', 286754), (168841, 168841, 130, 130, 'Emperor Gem of the Silent Killer', 286758), (249717, 249717, 1, 1, 'Emperor''s New Sleeves', 130731), (199692, 199692, 295, 295, 'Emporial Nadir Homage Armor Boots', 22876), (199713, 199713, 295, 295, 'Emporial Nadir Homage Armor Gloves', 22931), (199734, 199734, 295, 295, 'Emporial Nadir Homage Armor Helmet', 31733), (199755, 199755, 295, 295, 'Emporial Nadir Homage Armor Pants', 22914), (199776, 199776, 295, 295, 'Emporial Nadir Homage Armor Sleeves', 22960), (199797, 199797, 295, 295, 'Emporial Nadir Homage Body Armor', 22985), (275381, 275381, 1, 1, 'Empowered Robust Backpack', 268734), (32533, 32533, 1, 1, 'Empty Access Card', 99178), (268475, 268475, 150, 150, 'Empty Alien Augmentation Device', 218751), (267709, 267709, 250, 250, 'Empty Ancient Device', 218753), (234902, 234902, 1, 1, 'Empty Blood Sampling Tube', 100337), (273266, 273266, 1, 1, 'Empty Blue Desert Orchid Container', 273548), (253455, 253455, 1, 1, 'Empty Bottle', 255910), (253456, 253456, 1, 1, 'Empty Bottle', 255911), (253457, 253457, 1, 1, 'Empty Bottle', 255912), (294126, 294126, 1, 1, 'Empty Box', 294197), (253463, 253463, 1, 1, 'Empty Can', 255937), (223447, 223448, 1, 300, 'Empty Canister for Liquid Notum', 100304), (275056, 275056, 1, 1, 'Empty Data Receptacle Container', 275054), (156062, 156063, 1, 200, 'Empty Instruction Disc', 100319), (263812, 263812, 100, 100, 'Empty Necklace Fitting', 151933), (269891, 269891, 200, 200, 'Empty Permafrost Stimulant Chamber', 100323), (273258, 273258, 1, 1, 'Empty Pink Desert Orchid Container', 273549), (287981, 287981, 1, 1, 'Empty Power Core Slot', 12711), (263165, 263165, 1, 1, 'Empty Reposeful Visions Container', 154194), (274646, 274646, 1, 1, 'Empty Spirit Vest', 274678), (247234, 247235, 1, 200, 'Empty Stim Unit', 11716), (263269, 263269, 1, 1, 'Empty Tempestuous Visions Container', 154194), (263272, 263272, 1, 1, 'Empty Unshakable Visions Container', 154194), (263926, 263926, 1, 1, 'Empty Xan Notum Crystal', 220421), (273273, 273273, 1, 1, 'Empty Yellow Desert Orchid Container', 273547), (232898, 232899, 1, 149, 'Empty osmium locket', 160721), (232899, 232901, 150, 199, 'Empty osmium locket', 160721), (232901, 232902, 200, 249, 'Empty osmium locket', 160721), (232902, 232903, 250, 400, 'Empty osmium locket', 160721), (225981, 225982, 1, 300, 'Encapsulated Bullet', 292648), (227190, 227190, 1, 1, 'Encase in Stone', 239251), (144062, 144062, 188, 188, 'Enchanted Waterfall Eye Wind Onehander', 13341), (295637, 295637, 1, 1, 'Encircled Galahad-Etched White Shell', 233133), (295646, 295646, 1, 1, 'Encircled Mordeth-Etched Black Shell', 233133), (100360, 100360, 1, 1, 'Encryped Sensitive Info Capsule', 83314), (273171, 273171, 1, 1, 'Encrypted Data Chips', 100321), (284516, 284516, 1, 1, 'Encrypted Data Feed', 277964), (100361, 100361, 1, 1, 'Encrypted Info Capsule', 83326), (258201, 258201, 1, 1, 'Encrypted Kyr''Ozch Key', 290354), (258202, 258202, 1, 1, 'Encrypted Kyr''Ozch Key', 290353), (258203, 258203, 1, 1, 'Encrypted Kyr''Ozch Key', 290355), (256531, 256531, 1, 1, 'Encryption Backpack', 20412), (259247, 259247, 1, 1, 'Encryption Key', 43127), (49579, 49579, 1, 1, 'End Combat', 49566), (251807, 251808, 1, 300, 'Endorphin Factory', 161871), (246571, 246572, 1, 300, 'Enduring Armor Footwear', 256345), (246575, 246576, 1, 300, 'Enduring Armor Gloves', 256346), (246581, 246582, 1, 300, 'Enduring Armor Headwear', 256347), (246573, 246574, 1, 300, 'Enduring Armor Legwear', 256348), (246577, 246578, 1, 300, 'Enduring Armor Sleeves', 256343), (246579, 246580, 1, 300, 'Enduring Body Armor', 256344), (236084, 236084, 190, 190, 'Enduring Brain Symbiant, Support Unit Aban', 215188), (235470, 235470, 190, 190, 'Enduring Chest Symbiant, Artillery Unit Aban', 215181), (236327, 236327, 190, 190, 'Enduring Ear Symbiant, Control Unit Aban', 230977), (235877, 235877, 190, 190, 'Enduring Ear Symbiant, Extermination Unit Aban', 230977), (235608, 235608, 190, 190, 'Enduring Feet Symbiant, Artillery Unit Aban', 215185), (236500, 236500, 190, 190, 'Enduring Feet Symbiant, Control Unit Aban', 215185), (236051, 236051, 190, 190, 'Enduring Feet Symbiant, Extermination Unit Aban', 215186), (235828, 235828, 190, 190, 'Enduring Feet Symbiant, Infantry Unit Aban', 215187), (247136, 247137, 1, 300, 'Enduring Lead Viralbots', 290348), (235931, 235931, 190, 190, 'Enduring Left Arm Symbiant, Extermination Unit Aban', 215175), (236034, 236034, 190, 190, 'Enduring Left Hand Symbiant, Extermination Unit Aban', 215172), (235810, 235810, 190, 190, 'Enduring Left Hand Symbiant, Infantry Unit Aban', 215172), (236265, 236265, 190, 190, 'Enduring Left Hand Symbiant, Support Unit Aban', 215171), (235538, 235538, 190, 190, 'Enduring Left Wrist Symbiant, Artillery Unit Aban', 215196), (236429, 236429, 190, 190, 'Enduring Left Wrist Symbiant, Control Unit Aban', 215196), (235981, 235981, 190, 190, 'Enduring Left Wrist Symbiant, Extermination Unit Aban', 215198), (219136, 219136, 190, 190, 'Enduring Ocular Symbiant, Artillery Unit Aban', 230979), (235455, 235455, 190, 190, 'Enduring Right Arm Symbiant, Artillery Unit Aban', 215176), (236118, 236118, 190, 190, 'Enduring Right Arm Symbiant, Support Unit Aban', 215178), (236000, 236000, 190, 190, 'Enduring Right Hand Symbiant, Extermination Unit Aban', 215173), (235775, 235775, 190, 190, 'Enduring Right Hand Symbiant, Infantry Unit Aban', 215174), (236395, 236395, 190, 190, 'Enduring Right Wrist Symbiant, Control Unit Aban', 215170), (236179, 236179, 190, 190, 'Enduring Right Wrist Symbiant, Support Unit Aban', 215197), (235571, 235571, 190, 190, 'Enduring Thigh Symbiant, Artillery Unit Aban', 215190), (235522, 235522, 190, 190, 'Enduring Waist Symbiant, Artillery Unit Aban', 215194), (236415, 236415, 190, 190, 'Enduring Waist Symbiant, Control Unit Aban', 215193), (223721, 223721, 50, 50, 'Enel Gil''s Earring of Attention', 84063), (223720, 223720, 50, 50, 'Enel Gil''s Gloves of Tact', 37105), (223722, 223722, 50, 50, 'Enel Gil''s Raging Spirit Tattoo', 156749), (226852, 226852, 1, 1, 'Energize', 239047), (152533, 152533, 165, 165, 'Energized Carbonan Oven Mittens', 118189), (204709, 204709, 1, 1, 'Energized Crumbling Funeral Urn', 154195), (204710, 204710, 1, 1, 'Energized Funeral Urn', 154195), (206255, 206255, 1, 1, 'Energized Iron-bound Funeral Urn', 154195), (164574, 164574, 180, 180, 'Energized Nanobot Transmitter', 72783), (305555, 305555, 1, 1, 'Energized Ornate Funeral Urn', 154195), (206256, 206256, 1, 1, 'Energized Rusted Iron-bound Funeral Urn', 154195), (101323, 101324, 1, 200, 'Energy AC Cluster - Bright (Leg)', 35984), (101321, 101322, 1, 200, 'Energy AC Cluster - Faded (Waist)', 35983), (101325, 101326, 1, 200, 'Energy AC Cluster - Shiny (Chest)', 35985), (165501, 165502, 201, 300, 'Energy AC Refined Cluster - Bright (Leg)', 35984), (165499, 165500, 201, 300, 'Energy AC Refined Cluster - Faded (Waist)', 35983), (165503, 165504, 201, 300, 'Energy AC Refined Cluster - Shiny (Chest)', 35985), (227178, 227179, 1, 15, 'Energy Accumulator', 205513), (162397, 162397, 10, 10, 'Energy Adventure Shield', 12663), (160031, 160031, 1, 1, 'Energy Atrox Sword', 33167), (304948, 304948, 1, 1, 'Energy Atrox Sword', 33167), (288009, 288009, 1, 1, 'Energy Carbine Barrel', 130705), (288694, 288694, 1, 1, 'Energy Carbine Barrel', 130705), (288008, 288008, 1, 1, 'Energy Carbine Scope', 130776), (288693, 288693, 1, 1, 'Energy Carbine Scope', 130776), (288007, 288007, 1, 1, 'Energy Carbine Stock', 130696), (288695, 288695, 1, 1, 'Energy Carbine Stock', 130696), (137243, 137244, 1, 200, 'Energy Conduction Rack', 130684), (158038, 158038, 10, 10, 'Energy Deflection Shield', 12663), (281350, 281350, 1, 1, 'Energy Extraction Syringe', 281341), (282147, 282147, 1, 1, 'Energy Focus Disruptor', 282146), (142906, 142907, 1, 200, 'Energy Impact Super Conductor', 130807), (267749, 267749, 250, 250, 'Energy Infused Crystal', 156567), (254419, 254420, 1, 9, 'Energy Knife Left', 210190), (254421, 254421, 10, 10, 'Energy Knife Left', 210190), (254305, 254306, 1, 9, 'Energy Knife Right', 210190), (254307, 254307, 10, 10, 'Energy Knife Right', 210190), (142896, 142897, 1, 200, 'Energy Melee Weapon Base', 130860), (137257, 137258, 1, 200, 'Energy Pack Interface', 130685), (100350, 100350, 1, 1, 'Energy Pre-Charger', 119130), (257961, 257961, 250, 250, 'Energy Redistribution Unit', 257197), (152272, 152273, 1, 200, 'Energy Reflecting Bandolier', 149937), (204747, 204747, 1, 1, 'Energy Scythe', 204741), (271058, 271059, 1, 300, 'Energy Shield - 000', 33152), (271060, 271061, 1, 300, 'Energy Shield - 010', 33152), (271062, 271063, 1, 300, 'Energy Shield - 050', 33152), (271064, 271065, 1, 300, 'Energy Shield - 070', 33152), (271066, 271067, 1, 300, 'Energy Shield- 870', 33152), (290188, 290188, 1, 1, 'Enforcer Action Figure', 290573), (270753, 270753, 1, 1, 'Enforcer Nanodeck', 270749), (248259, 248259, 1, 1, 'Enforcer Nanoprogram Container', 292135), (290086, 290086, 1, 1, 'Enforcer Shirt', 287356), (43379, 43379, 1, 1, 'Enforcer: Startup Crystal - Thug''s Delight', 12226), (136602, 136603, 1, 200, 'Engagement Ring', 286195), (231145, 231145, 1, 1, 'Engagement Ring -To my love, Lady G.-', 151917), (267572, 267573, 1, 300, 'Engelen''s Ring of Damage', 151931), (290183, 290183, 1, 1, 'Engineer Action Figure', 290560), (217997, 217997, 203, 203, 'Engineer Advanced Predator M-30 Shell', 99983), (96229, 96230, 10, 50, 'Engineer Android Shell', 99969), (96231, 150791, 10, 40, 'Engineer Android Shell', 99968), (150797, 150797, 15, 15, 'Engineer Android Shell', 99968), (150796, 150796, 20, 20, 'Engineer Android Shell', 99968), (150795, 150795, 25, 25, 'Engineer Android Shell', 99968), (150793, 150793, 30, 30, 'Engineer Android Shell', 99969), (150794, 150794, 30, 30, 'Engineer Android Shell', 99968), (150792, 150792, 35, 35, 'Engineer Android Shell', 99969), (96228, 96228, 50, 50, 'Engineer Android Shell', 99969), (96196, 96232, 1, 25, 'Engineer Automaton Shell', 99966), (96233, 96234, 1, 25, 'Engineer Automaton Shell', 99967), (99384, 99385, 1, 25, 'Engineer Automaton Shell', 11646), (150788, 150789, 5, 10, 'Engineer Automaton Shell', 99967), (150790, 150790, 5, 5, 'Engineer Automaton Shell', 99966), (150787, 150787, 10, 10, 'Engineer Automaton Shell', 99967), (150786, 150786, 15, 15, 'Engineer Automaton Shell', 99967), (217991, 217991, 209, 209, 'Engineer Battlefield Devastator Drone Shell', 99983), (217993, 217993, 217, 217, 'Engineer Desolator Assault Drone Shell', 99983), (217990, 217990, 205, 205, 'Engineer Devastator Drone Shell', 99983), (217992, 217992, 213, 213, 'Engineer Fieldsweeper Devastator Drone Shell', 99983), (96214, 150785, 25, 44, 'Engineer Gladiatorbot Shell', 99978), (150785, 150784, 45, 54, 'Engineer Gladiatorbot Shell', 99978), (150784, 150783, 55, 64, 'Engineer Gladiatorbot Shell', 99978), (150783, 150782, 65, 74, 'Engineer Gladiatorbot Shell', 99978), (150782, 96215, 75, 90, 'Engineer Gladiatorbot Shell', 99978), (96216, 150781, 50, 74, 'Engineer Guardbot Shell', 99979), (150781, 150780, 75, 79, 'Engineer Guardbot Shell', 99979), (150780, 150779, 80, 89, 'Engineer Guardbot Shell', 99979), (150779, 150778, 90, 99, 'Engineer Guardbot Shell', 99979), (150778, 150777, 100, 109, 'Engineer Guardbot Shell', 99979), (150777, 96217, 110, 130, 'Engineer Guardbot Shell', 99979), (274370, 274370, 1, 1, 'Engineer Jamming Tower Shell', 208131), (218000, 218000, 215, 215, 'Engineer Marauder M-45 Shell', 99983), (217999, 217999, 211, 211, 'Engineer Military-Grade Predator M-30 Shell', 99983), (215239, 215239, 100, 100, 'Engineer NICS', 158233), (280449, 280449, 20, 20, 'Engineer Nano Drain Mine Layer', 280426), (270755, 270755, 1, 1, 'Engineer Nanodeck', 270749), (248260, 248260, 1, 1, 'Engineer Nanoprogram Container', 292136), (301857, 301857, 150, 150, 'Engineer Predator M-30 Shell', 99983), (217995, 217995, 100, 100, 'Engineer Prototype Predator M-30 Shell', 99983), (43328, 46083, 1, 200, 'Engineer Robot Shell', 99966), (217998, 217998, 207, 207, 'Engineer Semi-Sentient Predator M-30 Shell', 99983), (290087, 290087, 1, 1, 'Engineer Shirt', 287356), (217989, 217989, 201, 201, 'Engineer Slayerdroid Annihilator Shell', 99983), (96219, 96220, 130, 200, 'Engineer Slayerdroid Shell', 99983), (96221, 150774, 130, 195, 'Engineer Slayerdroid Shell', 99982), (150776, 150776, 190, 190, 'Engineer Slayerdroid Shell', 99982), (150775, 150775, 195, 195, 'Engineer Slayerdroid Shell', 99982), (96218, 96218, 200, 200, 'Engineer Slayerdroid Shell', 99983), (280422, 280422, 20, 20, 'Engineer Snare Mine Layer', 280425), (217996, 217996, 175, 175, 'Engineer Upgraded Predator M-30 Shell', 99983), (96227, 150772, 90, 109, 'Engineer Warbot Shell', 99984), (150772, 150773, 110, 119, 'Engineer Warbot Shell', 99984), (150773, 150771, 120, 129, 'Engineer Warbot Shell', 99984), (150771, 150770, 130, 139, 'Engineer Warbot Shell', 99984), (150770, 150769, 140, 149, 'Engineer Warbot Shell', 99984), (150769, 96226, 150, 195, 'Engineer Warbot Shell', 99984), (96223, 150768, 130, 179, 'Engineer Wardroid Shell', 99986), (150768, 150767, 180, 184, 'Engineer Wardroid Shell', 99986), (150767, 150766, 185, 189, 'Engineer Wardroid Shell', 99986), (150766, 96222, 190, 200, 'Engineer Wardroid Shell', 99986), (96225, 150765, 130, 144, 'Engineer Warmachine Shell', 99985), (150765, 150764, 145, 154, 'Engineer Warmachine Shell', 99985), (150764, 150761, 155, 164, 'Engineer Warmachine Shell', 99985), (150761, 150762, 165, 174, 'Engineer Warmachine Shell', 99985), (150762, 150763, 175, 184, 'Engineer Warmachine Shell', 99985), (150763, 96224, 185, 200, 'Engineer Warmachine Shell', 99985), (217994, 217994, 220, 220, 'Engineer Widowmaker Battle Drone Shell', 99983), (276068, 276068, 220, 220, 'Engineer Widowmaker Battle Drone Shell (BS)', 99983), (43329, 43329, 1, 1, 'Engineer: Startup Crystal - Feeble Automaton', 12225), (29194, 29194, 1, 1, 'Engineer: Startup Crystal - Swift Weapon', 12225), (154941, 154941, 1, 1, 'Engineering News: How do I make my robot taunt?', 154678), (164612, 164612, 1, 1, 'Engineering News: The Improved Solar-Powered Pistol - Book 1', 37961), (164614, 164614, 1, 1, 'Engineering News: The Improved Solar-Powered Pistol - Book 2', 37961), (164621, 164621, 1, 1, 'Engineering News: The Improved Solar-Powered Pistol - Book 3', 37961), (258535, 258535, 1, 1, 'Engraved Golden Noose', 258541), (234605, 234605, 1, 1, 'Engraved Hatchling Tooth', 236567), (125431, 125432, 121, 140, 'Engraved Torch', 85172), (267653, 267653, 250, 250, 'Enhanced Ancient Combat Tuner', 218758), (267656, 267656, 250, 250, 'Enhanced Ancient Combat Tuner', 218766), (121637, 121638, 93, 115, 'Enhanced Battle Axe', 21135), (88067, 88067, 200, 200, 'Enhanced Battle Suit', 41166), (121694, 121695, 116, 138, 'Enhanced Bolter - The Hammer X9 42mm', 21149), (137469, 137469, 1, 1, 'Enhanced Bolter - The Hammer X9 42mm Construction Manual', 136332), (218614, 218615, 200, 209, 'Enhanced Coil of Health', 218305), (218615, 218616, 210, 219, 'Enhanced Coil of Health', 218305), (218616, 218617, 220, 229, 'Enhanced Coil of Health', 218305), (218617, 218618, 230, 239, 'Enhanced Coil of Health', 218305), (218618, 218619, 240, 249, 'Enhanced Coil of Health', 218305), (218619, 218620, 250, 259, 'Enhanced Coil of Health', 218305), (218620, 218621, 260, 269, 'Enhanced Coil of Health', 218305), (218621, 218622, 270, 279, 'Enhanced Coil of Health', 218305), (218622, 218623, 280, 290, 'Enhanced Coil of Health', 218305), (291066, 291067, 200, 209, 'Enhanced Coil of Health and Nano', 290999), (291067, 291068, 210, 219, 'Enhanced Coil of Health and Nano', 290999), (291068, 291069, 220, 229, 'Enhanced Coil of Health and Nano', 290999), (291069, 291070, 230, 239, 'Enhanced Coil of Health and Nano', 290999), (291070, 291071, 240, 249, 'Enhanced Coil of Health and Nano', 290999), (291071, 291072, 250, 259, 'Enhanced Coil of Health and Nano', 290999), (291072, 291073, 260, 269, 'Enhanced Coil of Health and Nano', 290999), (291073, 291074, 270, 279, 'Enhanced Coil of Health and Nano', 290999), (291074, 291075, 280, 290, 'Enhanced Coil of Health and Nano', 290999), (218842, 218843, 200, 209, 'Enhanced Coil of Nano Energy', 218302), (218843, 218844, 210, 219, 'Enhanced Coil of Nano Energy', 218302), (218844, 218845, 220, 229, 'Enhanced Coil of Nano Energy', 218302), (218845, 218846, 230, 239, 'Enhanced Coil of Nano Energy', 218302), (218846, 218847, 240, 249, 'Enhanced Coil of Nano Energy', 218302), (218847, 218848, 250, 259, 'Enhanced Coil of Nano Energy', 218302), (218848, 218849, 260, 269, 'Enhanced Coil of Nano Energy', 218302), (218849, 218850, 270, 279, 'Enhanced Coil of Nano Energy', 218302), (218850, 218851, 280, 290, 'Enhanced Coil of Nano Energy', 218302), (270393, 270393, 200, 200, 'Enhanced Dustbrigade Chemist Gloves', 21871), (269993, 269993, 200, 200, 'Enhanced Dustbrigade Combat Chestpiece', 32162), (269997, 269997, 200, 200, 'Enhanced Dustbrigade Covering', 155108), (270392, 270392, 200, 200, 'Enhanced Dustbrigade Flexible Boots', 31746), (270394, 270394, 200, 200, 'Enhanced Dustbrigade Notum Gloves', 21871), (269996, 269996, 200, 200, 'Enhanced Dustbrigade Sleeves', 13233), (269994, 269994, 200, 200, 'Enhanced Dustbrigade Spirit-tech Chestpiece', 32162), (27360, 27360, 200, 200, 'Enhanced Flak Armor Pants', 22923), (27391, 27391, 200, 200, 'Enhanced Flak Armor Sleeves', 22910), (27389, 27389, 200, 200, 'Enhanced Flak Body Armor', 22905), (227036, 227036, 1, 1, 'Enhanced Heal', 239147), (272445, 272445, 250, 250, 'Enhanced Jathos'' Molybdenum Plate Boots', 272442), (272447, 272447, 250, 250, 'Enhanced Jathos'' Molybdenum Plate Gloves', 272434), (272448, 272448, 250, 250, 'Enhanced Jathos'' Molybdenum Plate Helmet', 272432), (272443, 272443, 250, 250, 'Enhanced Jathos'' Molybdenum Plate Pants', 272436), (272446, 272446, 250, 250, 'Enhanced Jathos'' Molybdenum Plate Sleeves', 272438), (272444, 272444, 250, 250, 'Enhanced Jathos'' Molybdenum Plate Vest', 272440), (272451, 272451, 250, 250, 'Enhanced Kegern''s Molybdenum Plate Boots', 272441), (272453, 272453, 250, 250, 'Enhanced Kegern''s Molybdenum Plate Gloves', 272433), (272454, 272454, 250, 250, 'Enhanced Kegern''s Molybdenum Plate Helmet', 272431), (272449, 272449, 250, 250, 'Enhanced Kegern''s Molybdenum Plate Pants', 272435), (272452, 272452, 250, 250, 'Enhanced Kegern''s Molybdenum Plate Sleeves', 272437), (272450, 272450, 250, 250, 'Enhanced Kegern''s Molybdenum Plate Vest', 272439), (85644, 85644, 200, 200, 'Enhanced Leather Armor Boots', 13264), (85601, 85601, 200, 200, 'Enhanced Leather Armor Gloves', 13278), (85561, 85561, 200, 200, 'Enhanced Leather Armor Helmet', 10835), (85520, 85520, 200, 200, 'Enhanced Leather Armor Pants', 13293), (85749, 85749, 200, 200, 'Enhanced Leather Armor Sleeves', 13226), (85696, 85696, 200, 200, 'Enhanced Leather Body Armor', 13244), (85690, 85690, 200, 200, 'Enhanced Leather Vest', 19812), (85656, 85656, 200, 200, 'Enhanced Light Combat Armor Boots', 13261), (85532, 85532, 200, 200, 'Enhanced Light Combat Armor Pants', 13289), (85760, 85760, 200, 200, 'Enhanced Light Combat Armor Sleeves', 13222), (85713, 85713, 200, 200, 'Enhanced Light Combat Body Armor', 13240), (85640, 85640, 200, 200, 'Enhanced Low-Tech Armor Boots', 13266), (85597, 85597, 200, 200, 'Enhanced Low-Tech Armor Gloves', 13280), (85558, 85558, 200, 200, 'Enhanced Low-Tech Armor Helmet', 10837), (85515, 85515, 200, 200, 'Enhanced Low-Tech Armor Pants', 13295), (85514, 85514, 200, 200, 'Enhanced Low-Tech Armor Shorts', 13296), (85744, 85744, 200, 200, 'Enhanced Low-Tech Armor Sleeves', 13228), (85689, 85689, 200, 200, 'Enhanced Low-Tech Body Armor', 13250), (85688, 85688, 200, 200, 'Enhanced Low-Tech Female Body Armor', 13247), (123733, 123734, 56, 71, 'Enhanced MTI M-2 Bipower', 13314), (123735, 123736, 72, 85, 'Enhanced MTI M-2 Bipower Pro', 13314), (202265, 202265, 185, 185, 'Enhanced Mantis Scissors', 158238), (156693, 156694, 50, 90, 'Enhanced NCU Chip with Recompiling Core', 119138), (85632, 85632, 200, 200, 'Enhanced Nomad Armor Boots', 21865), (85592, 85592, 200, 200, 'Enhanced Nomad Armor Gloves', 21871), (85553, 85553, 200, 200, 'Enhanced Nomad Armor Helmet', 22268), (85506, 85506, 200, 200, 'Enhanced Nomad Armor Pants', 21878), (85736, 85736, 200, 200, 'Enhanced Nomad Armor Sleeves', 21849), (85680, 85680, 200, 200, 'Enhanced Nomad Body Armor', 21859), (262626, 262627, 1, 99, 'Enhanced Otek Hammer', 262624), (262628, 262629, 100, 199, 'Enhanced Otek Hammer', 262624), (262630, 262631, 200, 299, 'Enhanced Otek Hammer', 262624), (262632, 262632, 300, 300, 'Enhanced Otek Hammer', 262624), (262633, 262634, 1, 99, 'Enhanced Otek Mallet', 262625), (262635, 262636, 100, 199, 'Enhanced Otek Mallet', 262625), (262637, 262638, 200, 299, 'Enhanced Otek Mallet', 262625), (262639, 262639, 300, 300, 'Enhanced Otek Mallet', 262625), (209237, 209237, 1, 1, 'Enhanced Pads of Dedication', 31537), (121618, 121619, 93, 115, 'Enhanced Polearm', 21140), (143095, 143095, 1, 1, 'Enhanced Polearm Construction Manual', 37933), (202264, 202264, 200, 200, 'Enhanced Queen Blade', 158239), (269985, 269985, 200, 200, 'Enhanced Safeguarded NCU Memory Unit', 292679), (269986, 269986, 200, 200, 'Enhanced Safeguarded NCU Memory Unit', 292672), (269987, 269987, 200, 200, 'Enhanced Safeguarded NCU Memory Unit', 292686), (85642, 85642, 200, 200, 'Enhanced Sid''s Leather Armor Boots', 22882), (85599, 85599, 200, 200, 'Enhanced Sid''s Leather Armor Gloves', 22936), (85559, 85559, 200, 200, 'Enhanced Sid''s Leather Armor Helmet', 31728), (85518, 85518, 200, 200, 'Enhanced Sid''s Leather Armor Pants', 22924), (85747, 85747, 200, 200, 'Enhanced Sid''s Leather Armor Sleeves', 22958), (85694, 85694, 200, 200, 'Enhanced Sid''s Leather Body Armor', 22980), (121639, 121640, 116, 138, 'Enhanced Spetum Axe', 21135), (121584, 121585, 139, 161, 'Enhanced Tripler', 13344), (165087, 165087, 1, 1, 'Enhanced Tripler Construction Manual', 136329), (267522, 267522, 300, 300, 'Enigma', 43095), (119597, 119597, 1, 1, 'Enigma - Rocket Lamp', 119608), (163554, 163554, 1, 1, 'Enigma Fibers', 163575), (293115, 293115, 1, 1, 'Enigma Grove Sage Armor', 154554), (292993, 292993, 1, 1, 'Enigmas vs Entvines T-shirt - 1 Down', 292992), (293005, 293005, 10, 10, 'Enigmas vs Entvines T-shirt - 10 Down', 292992), (293024, 293024, 11, 11, 'Enigmas vs Entvines T-shirt - 11 Down', 292992), (293026, 293026, 12, 12, 'Enigmas vs Entvines T-shirt - 12 Down', 292992), (293027, 293027, 13, 13, 'Enigmas vs Entvines T-shirt - 13 Down', 292992), (293028, 293028, 14, 14, 'Enigmas vs Entvines T-shirt - 14 Down', 292992), (293029, 293029, 15, 15, 'Enigmas vs Entvines T-shirt - 15 Down', 292992), (293030, 293030, 16, 16, 'Enigmas vs Entvines T-shirt - 16 Down', 292992), (293031, 293031, 17, 17, 'Enigmas vs Entvines T-shirt - 17 Down', 292992), (293032, 293032, 18, 18, 'Enigmas vs Entvines T-shirt - 18 Down', 292992), (293033, 293033, 19, 19, 'Enigmas vs Entvines T-shirt - 19 Down', 292992), (293013, 293013, 2, 2, 'Enigmas vs Entvines T-shirt - 2 Down', 292992), (293025, 293025, 20, 20, 'Enigmas vs Entvines T-shirt - 20 Down', 292992), (293074, 293074, 21, 21, 'Enigmas vs Entvines T-shirt - 21 Down', 292992), (293075, 293075, 22, 22, 'Enigmas vs Entvines T-shirt - 22 Down', 292992), (293076, 293076, 23, 23, 'Enigmas vs Entvines T-shirt - 23 Down', 292992), (293077, 293077, 24, 24, 'Enigmas vs Entvines T-shirt - 24 Down', 292992), (293078, 293078, 25, 25, 'Enigmas vs Entvines T-shirt - 25 Down', 292992), (293079, 293079, 26, 26, 'Enigmas vs Entvines T-shirt - 26 Down', 292992), (293080, 293080, 27, 27, 'Enigmas vs Entvines T-shirt - 27 Down', 292992), (293081, 293081, 28, 28, 'Enigmas vs Entvines T-shirt - 28 Down', 292992), (293082, 293082, 29, 29, 'Enigmas vs Entvines T-shirt - 29 Down', 292992), (293012, 293012, 3, 3, 'Enigmas vs Entvines T-shirt - 3 Down', 292992), (293083, 293083, 30, 30, 'Enigmas vs Entvines T-shirt - 30 Down', 292992), (293084, 293084, 31, 31, 'Enigmas vs Entvines T-shirt - 31 Down', 292992), (293085, 293085, 32, 32, 'Enigmas vs Entvines T-shirt - 32 Down', 292992), (293086, 293086, 33, 33, 'Enigmas vs Entvines T-shirt - 33 Down', 292992), (293087, 293087, 34, 34, 'Enigmas vs Entvines T-shirt - 34 Down', 292992), (293088, 293088, 35, 35, 'Enigmas vs Entvines T-shirt - 35 Down', 292992), (293089, 293089, 36, 36, 'Enigmas vs Entvines T-shirt - 36 Down', 292992), (293090, 293090, 37, 37, 'Enigmas vs Entvines T-shirt - 37 Down', 292992), (293091, 293091, 38, 38, 'Enigmas vs Entvines T-shirt - 38 Down', 292992), (293092, 293092, 39, 39, 'Enigmas vs Entvines T-shirt - 39 Down', 292992), (293011, 293011, 4, 4, 'Enigmas vs Entvines T-shirt - 4 Down', 292992), (293093, 293093, 40, 40, 'Enigmas vs Entvines T-shirt - 40 Down', 292992), (293064, 293064, 41, 41, 'Enigmas vs Entvines T-shirt - 41 Down', 292992), (293065, 293065, 42, 42, 'Enigmas vs Entvines T-shirt - 42 Down', 292992), (293066, 293066, 43, 43, 'Enigmas vs Entvines T-shirt - 43 Down', 292992), (293067, 293067, 44, 44, 'Enigmas vs Entvines T-shirt - 44 Down', 292992), (293068, 293068, 45, 45, 'Enigmas vs Entvines T-shirt - 45 Down', 292992), (293069, 293069, 46, 46, 'Enigmas vs Entvines T-shirt - 46 Down', 292992), (293070, 293070, 47, 47, 'Enigmas vs Entvines T-shirt - 47 Down', 292992), (293071, 293071, 48, 48, 'Enigmas vs Entvines T-shirt - 48 Down', 292992), (293072, 293072, 49, 49, 'Enigmas vs Entvines T-shirt - 49 Down', 292992), (293010, 293010, 5, 5, 'Enigmas vs Entvines T-shirt - 5 Down', 292992), (293073, 293073, 50, 50, 'Enigmas vs Entvines T-shirt - 50 Down', 292992), (293009, 293009, 6, 6, 'Enigmas vs Entvines T-shirt - 6 Down', 292992), (293008, 293008, 7, 7, 'Enigmas vs Entvines T-shirt - 7 Down', 292992), (293007, 293007, 8, 8, 'Enigmas vs Entvines T-shirt - 8 Down', 292992), (293006, 293006, 9, 9, 'Enigmas vs Entvines T-shirt - 9 Down', 292992), (246062, 246062, 250, 250, 'Enkindled Spirit Focus', 99266), (295632, 295632, 1, 1, 'Enlightened Xan Viralbots', 233133), (227517, 227518, 1, 300, 'Enmeshed Clusters', 151031), (227519, 227520, 1, 300, 'Enmeshed Clusters', 151031), (214942, 229946, 130, 159, 'Enraged Pith of Novictum', 233135), (136636, 136637, 1, 200, 'Enriched Notum Nugget', 136596), (123313, 123314, 81, 100, 'Enriched Uranium Sprayer', 21148), (262587, 262587, 1, 1, 'Enter Anti-Personnel Turret', 12682), (262590, 262590, 1, 1, 'Enter Anti-Vehicular Battery', 12682), (263026, 263026, 1, 1, 'Enter Mechanized Assault Vehicle', 12682), (262437, 262437, 1, 1, 'Enter Personal Mechanized Vehicle', 12682), (287222, 287222, 1, 1, 'Enter Personal Mechanized Vehicle - Obsidian', 12682), (265856, 265856, 1, 1, 'Enter Scout Mechanized Vehicle', 12682), (248860, 248860, 1, 1, 'Enter the Dragon Arm Tattoo', 255248), (253804, 253804, 1, 1, 'Enteromorpha Boots', 253716), (253807, 253807, 1, 1, 'Enteromorpha Pants', 253724), (253806, 253806, 1, 1, 'Enteromorpha Shirt', 253665), (253805, 253805, 1, 1, 'Enteromorpha Sleeves', 253687), (248922, 248922, 1, 1, 'Entertainer Boots of Tiger Claw', 255364), (248923, 248923, 1, 1, 'Entertainer Gloves of Tiger Claw', 255170), (248935, 248935, 1, 1, 'Entertainer Longs of Tiger Claw', 255199), (248919, 248919, 1, 1, 'Entertainer Sleeves of Tiger Claw', 255265), (248921, 248921, 1, 1, 'Entertainer Top of Tiger Claw', 255322), (244575, 244575, 250, 250, 'Enthusiastic Spirit Helper of the Leo', 119139), (226695, 226696, 1, 300, 'Entophagous Arm Tattoo''s', 226598), (226689, 226690, 1, 300, 'Entophagous Foot Tattoo''s', 226631), (226697, 226698, 1, 300, 'Entophagous Hand Tattoo''s', 226646), (226691, 226692, 1, 300, 'Entophagous Leg Tattoo''s', 226661), (226693, 226694, 1, 300, 'Entophagous Torso Tattoo''s', 226613), (293524, 293524, 1, 1, 'Entvined Costume', 293523), (300801, 300801, 1, 1, 'Entvined Facemask', 300811), (293288, 293288, 1, 1, 'Entvined''s Helping Hands', 269964), (207034, 207034, 1, 1, 'Envelope with a Valentine''s Card', 163062), (305522, 305522, 300, 300, 'Envoy to Chaos', 218702), (280724, 280724, 300, 300, 'Envy of the Xan', 281599), (283379, 283379, 300, 300, 'Envy of the Xan', 281599), (263254, 263255, 1, 300, 'Ephemeral Annoyance', 12682), (295629, 295629, 1, 1, 'Ephemeral Symbol Etcher', 233133), (275512, 275512, 1, 1, 'Epithelium Biopsy Mixer', 19854), (275890, 275890, 1, 1, 'Epithelium Biopsy Mixer (1)', 19856), (275891, 275891, 1, 1, 'Epithelium Biopsy Mixer (2)', 19855), (275892, 275892, 1, 1, 'Epithelium Biopsy Mixer (3)', 19861), (275886, 275886, 1, 1, 'Epithelium Tissue Sample', 246237), (275922, 275922, 1, 1, 'Epithelium Tissue Sample', 246237), (275924, 275924, 1, 1, 'Epithelium Tissue Sample', 246237), (275926, 275926, 1, 1, 'Epithelium Tissue Sample', 246237), (295394, 295394, 1, 1, 'Eponyx''s Glowing Flare', 12253), (286238, 286238, 1, 1, 'Equipment Pack', 157369), (286239, 286239, 1, 1, 'Equipment Pack', 157369), (286242, 286242, 1, 1, 'Equipment Pack', 157369), (286257, 286257, 1, 1, 'Equipment Pack', 157369), (286277, 286277, 1, 1, 'Equipment Pack', 157369), (286423, 286423, 1, 1, 'Equipment Pack', 157369), (291452, 291452, 1, 1, 'Equipment Pack', 157369), (122262, 122263, 81, 100, 'Eradicator XCI-52', 13314), (272090, 272091, 1, 300, 'Eradicator XCI-52 - 000', 13314), (272092, 272093, 1, 300, 'Eradicator XCI-52 - 008', 13314), (272094, 272095, 1, 300, 'Eradicator XCI-52 - 00C', 13314), (272096, 272097, 1, 300, 'Eradicator XCI-52 - 40C', 13314), (272098, 272099, 1, 300, 'Eradicator XCI-52 - C0C', 13314), (200062, 200063, 255, 260, 'Eraidesune Nippon-Tech Armor', 96106), (200083, 200084, 255, 260, 'Eraidesune Nippon-Tech Armor Boots', 13275), (200104, 200105, 255, 260, 'Eraidesune Nippon-Tech Armor Gloves', 13287), (200125, 200126, 255, 260, 'Eraidesune Nippon-Tech Armor Helmet', 96140), (200146, 200147, 255, 260, 'Eraidesune Nippon-Tech Armor Pants', 13305), (200167, 200168, 255, 260, 'Eraidesune Nippon-Tech Armor Sleeves', 13237), (200188, 200189, 255, 260, 'Eraidesune Nippon-Tech Body Armor', 13258), (246279, 246279, 100, 100, 'Eremite Macro Sensor', 156511), (246281, 246281, 100, 100, 'Eremite Micro Sensor', 156511), (246280, 246280, 100, 100, 'Eremite Psychic Sensor', 156511), (234881, 234881, 1, 1, 'Eremites Vibrissa', 20411), (292890, 292890, 1, 1, 'Ergo''s Last Isle Poster', 293849), (290032, 290032, 1, 1, 'Eriksson''s Green Tuxedo - Deluxe Edition', 290055), (200203, 200203, 225, 225, 'Erinyes ICC Armor Boots', 22884), (200224, 200224, 225, 225, 'Erinyes ICC Armor Gloves', 31656), (200245, 200245, 225, 225, 'Erinyes ICC Armor Helmet', 31734), (200266, 200266, 225, 225, 'Erinyes ICC Armor Pants', 22919), (200287, 200287, 225, 225, 'Erinyes ICC Armor Sleeves', 31644), (200308, 200308, 225, 225, 'Erinyes ICC Body Armor', 31648), (200204, 200204, 230, 230, 'Eris ICC Armor Boots', 22884), (200225, 200225, 230, 230, 'Eris ICC Armor Gloves', 31656), (200246, 200246, 230, 230, 'Eris ICC Armor Helmet', 31734), (200267, 200267, 230, 230, 'Eris ICC Armor Pants', 22919), (200288, 200288, 230, 230, 'Eris ICC Armor Sleeves', 31644), (200309, 200309, 230, 230, 'Eris ICC Body Armor', 31648), (305038, 305038, 1, 1, 'Erratic Globe of Sufferance', 25800), (202281, 202281, 200, 200, 'Erratic Notum Disruptor', 149944), (155720, 155720, 1, 1, 'Erratically pulsating - lukewarm chunk of biological matter', 156554), (214386, 214386, 1, 1, 'Escape', 239120), (261655, 261655, 1, 1, 'Essence Mesh of Insight', 261625), (261660, 261660, 1, 1, 'Essence Mesh of Insight', 261625), (261697, 261697, 1, 1, 'Essence Mesh of Insight', 261625), (261706, 261706, 1, 1, 'Essence Mesh of Insight', 261625), (261611, 261611, 1, 1, 'Essence Mesh of Primal Understanding', 261624), (261617, 261617, 1, 1, 'Essence Mesh of Primal Understanding', 261624), (261619, 261619, 1, 1, 'Essence Mesh of Primal Understanding', 261624), (261620, 261620, 1, 1, 'Essence Mesh of Primal Understanding', 261624), (261610, 261610, 1, 1, 'Essence of Clear Thought', 261596), (231153, 231153, 1, 1, 'Essence of Dishonor', 227543), (287133, 287133, 200, 200, 'Essence of Eucalyptus', 287159), (231151, 231151, 1, 1, 'Essence of Innocence', 227561), (261600, 261600, 1, 1, 'Essence of Insight', 261595), (285478, 285478, 1, 1, 'Essence of Old Jealousy', 100332), (229065, 229065, 1, 1, 'Essence of Patience', 231188), (262539, 262539, 1, 1, 'Essence of Perception', 231187), (261594, 261594, 1, 1, 'Essence of Primal Understanding', 261597), (152030, 152030, 42, 42, 'Essence of Pure Jealousy', 100332), (204202, 204202, 1, 1, 'Essence of Slam!', 37933), (231152, 231152, 1, 1, 'Essence of Valor', 227610), (259768, 259768, 1, 1, 'Essence of autumns drowned', 231185), (259767, 259767, 1, 1, 'Essence of springs forgotten', 231185), (259765, 259765, 1, 1, 'Essence of summers lost', 231186), (259956, 259956, 1, 1, 'Essence of the Haunted', 231188), (259766, 259766, 1, 1, 'Essence of winters past', 231187), (247123, 247123, 100, 100, 'Essential Human DNA', 247122), (162295, 162296, 1, 200, 'Etched Pattern for Carbonum Arms', 162297), (162300, 162301, 1, 200, 'Etched Pattern for Carbonum Boots', 162297), (162298, 162299, 1, 200, 'Etched Pattern for Carbonum Breastplate', 162297), (162302, 162303, 1, 200, 'Etched Pattern for Carbonum Gloves', 162297), (162304, 162305, 1, 200, 'Etched Pattern for Carbonum Helmet', 162297), (162306, 162307, 1, 200, 'Etched Pattern for Carbonum Legs', 162297), (206692, 206693, 1, 200, 'Etched Pattern for Junkmetal Arms', 162297), (206698, 206699, 1, 200, 'Etched Pattern for Junkmetal Boots', 162297), (206694, 206695, 1, 200, 'Etched Pattern for Junkmetal Breastplate', 162297), (206690, 206691, 1, 200, 'Etched Pattern for Junkmetal Gloves', 162297), (206696, 206697, 1, 200, 'Etched Pattern for Junkmetal Legs', 162297), (206700, 206701, 1, 200, 'Etched Pattern for Junkmetal Shoulder Plate', 162297), (163442, 163443, 1, 200, 'Etched Pattern for Notum Saturated Metaplast Armor Boots', 163353), (163356, 163357, 1, 200, 'Etched Pattern for Notum Saturated Metaplast Armor Gloves', 163353), (163440, 163441, 1, 200, 'Etched Pattern for Notum Saturated Metaplast Armor Helmet', 163353), (163358, 163359, 1, 200, 'Etched Pattern for Notum Saturated Metaplast Armor Sleeves', 163353), (163439, 163438, 1, 200, 'Etched Pattern for Notum Saturated Metaplast Armor Trousers', 163353), (163360, 163361, 1, 200, 'Etched Pattern for Notum Saturated Metaplast Breastplate', 163353), (155675, 155676, 1, 200, 'Ethanol', 37936), (157399, 157399, 1, 1, 'Ether Fourtyeight Goat Advantage', 81777), (305506, 305506, 300, 300, 'Ethereal Embrace', 231002), (260764, 260764, 205, 205, 'Ethereal Implant of Berserker Rage', 215177), (260763, 260763, 205, 205, 'Ethereal Spirit of Berserker Rage', 230995), (216948, 216948, 1, 1, 'Ethereal Touch', 239009), (305983, 305983, 1, 1, 'Eumenides''s Omni-Pol Forest Body Armor', 13254), (224179, 224179, 150, 150, 'Eva Pourais'' Heirloom', 20407), (224091, 224091, 150, 150, 'Eva Pourais'' Ring of Distance', 151931), (224093, 224093, 150, 150, 'Eva Pourais'' Snakeskin Patch', 161080), (101683, 101684, 1, 200, 'Evade-ClsC Cluster - Bright (Leg)', 35981), (101681, 101682, 1, 200, 'Evade-ClsC Cluster - Faded (Waist)', 35980), (101685, 101686, 1, 200, 'Evade-ClsC Cluster - Shiny (Feet)', 35982), (165861, 165862, 201, 300, 'Evade-ClsC Refined Cluster - Bright (Leg)', 35981), (165859, 165860, 201, 300, 'Evade-ClsC Refined Cluster - Faded (Waist)', 35980), (165863, 165864, 201, 300, 'Evade-ClsC Refined Cluster - Shiny (Feet)', 35982), (214181, 214181, 1, 1, 'Evasive Stance', 239117), (239811, 239811, 1, 1, 'Evasive Stance', 239117), (160961, 160961, 1, 1, 'Event Team Protection Bracelet - With Glow', 84050), (160962, 160962, 1, 1, 'Event Team Protection Bracelet - Without Glow', 84050), (244210, 244210, 200, 200, 'Everburning Coal', 136597), (151718, 151719, 1, 200, 'Everlasting Algae-Vodka', 37942), (207036, 207036, 1, 1, 'Everlasting Bouquet of Flowers', 207020), (246018, 246018, 260, 260, 'Exact Copy of The Excalibur', 246020), (305469, 305469, 1, 1, 'Exarch Purified Robe', 159569), (204759, 204759, 1, 1, 'Exarch Robe', 159569), (161731, 161731, 1, 1, 'Exarch Robe (monster wear)', 159569), (199388, 199388, 250, 250, 'Excellent Bau Charger Armor Boots', 22878), (199409, 199409, 250, 250, 'Excellent Bau Charger Armor Gloves', 22939), (199430, 199430, 250, 250, 'Excellent Bau Charger Armor Helmet', 31738), (199451, 199451, 250, 250, 'Excellent Bau Charger Armor Pants', 22928), (199472, 199472, 250, 250, 'Excellent Bau Charger Armor Sleeves', 22889), (199493, 199493, 250, 250, 'Excellent Bau Charger Body Armor', 22981), (199514, 199514, 250, 250, 'Excellent Bau Charger Female Body Armor', 22942), (162018, 162019, 290, 299, 'Excellent Bau Cyber Armor Helmet', 31738), (162019, 162020, 300, 310, 'Excellent Bau Cyber Armor Helmet', 31738), (125458, 125458, 160, 160, 'Excellent Concrete Cushion', 85162), (163324, 163324, 200, 200, 'Excellent Division 9 Plasmaprojector', 21145), (204972, 204972, 225, 225, 'Excellent Eyemutant Orb Laser', 152424), (157666, 157666, 200, 200, 'Excellent HSR Explorer 661', 29116), (84145, 84145, 200, 200, 'Excellent IQ Ring', 289767), (227910, 227910, 220, 220, 'Excellent Jobe Suit Shoulderpad', 160886), (227909, 227909, 220, 220, 'Excellent Jobe Suit Support System', 214741), (233351, 233351, 300, 300, 'Excellent Minion Fire Spouter', 233352), (233359, 233359, 300, 300, 'Excellent Minion Ice Pulse Pistol', 233354), (233318, 233318, 300, 300, 'Excellent Missile Launcher', 233214), (233324, 233324, 300, 300, 'Excellent Missile Launcher Pistol', 233215), (199684, 199684, 255, 255, 'Excellent Nadir Homage Armor Boots', 22876), (199705, 199705, 255, 255, 'Excellent Nadir Homage Armor Gloves', 22931), (199726, 199726, 255, 255, 'Excellent Nadir Homage Armor Helmet', 31733), (199747, 199747, 255, 255, 'Excellent Nadir Homage Armor Pants', 22914), (199768, 199768, 255, 255, 'Excellent Nadir Homage Armor Sleeves', 22960), (199789, 199789, 255, 255, 'Excellent Nadir Homage Body Armor', 22985), (25806, 25806, 1, 1, 'Excellent Plastic Muscles', 12688), (206885, 206885, 100, 100, 'Excellent Rollerrat Helmet', 205768), (160162, 160162, 200, 200, 'Excellent Sleek Cannon', 13342), (206672, 206672, 200, 200, 'Excellent Uncle Bazzit Diplomatic', 113988), (156719, 156719, 200, 200, 'Exceptional Mother Nitrogena', 156716), (235419, 235419, 250, 250, 'Excited Brain Symbiant, Artillery Unit Aban', 215189), (236312, 236312, 250, 250, 'Excited Brain Symbiant, Control Unit Aban', 215189), (235864, 235864, 250, 250, 'Excited Brain Symbiant, Extermination Unit Aban', 215189), (236088, 236088, 250, 250, 'Excited Brain Symbiant, Support Unit Aban', 215188), (235472, 235472, 250, 250, 'Excited Chest Symbiant, Artillery Unit Aban', 215181), (236363, 236363, 250, 250, 'Excited Chest Symbiant, Control Unit Aban', 215183), (235915, 235915, 250, 250, 'Excited Chest Symbiant, Extermination Unit Aban', 215181), (236139, 236139, 250, 250, 'Excited Chest Symbiant, Support Unit Aban', 215181), (235881, 235881, 250, 250, 'Excited Ear Symbiant, Extermination Unit Aban', 230977), (235660, 235660, 250, 250, 'Excited Ear Symbiant, Infantry Unit Aban', 230977), (235612, 235612, 250, 250, 'Excited Feet Symbiant, Artillery Unit Aban', 215185), (236503, 236503, 250, 250, 'Excited Feet Symbiant, Control Unit Aban', 215185), (236381, 236381, 250, 250, 'Excited Left Arm Symbiant, Control Unit Aban', 215177), (235932, 235932, 250, 250, 'Excited Left Arm Symbiant, Extermination Unit Aban', 215175), (235593, 235593, 250, 250, 'Excited Left Hand Symbiant, Artillery Unit Aban', 215171), (236487, 236487, 250, 250, 'Excited Left Hand Symbiant, Control Unit Aban', 215172), (236434, 236434, 250, 250, 'Excited Left Wrist Symbiant, Control Unit Aban', 215196), (235984, 235984, 250, 250, 'Excited Left Wrist Symbiant, Extermination Unit Aban', 215198), (235628, 235628, 250, 250, 'Excited Ocular Symbiant, Infantry Unit Aban', 230980), (236072, 236072, 250, 250, 'Excited Ocular Symbiant, Support Unit Aban', 230980), (235897, 235897, 250, 250, 'Excited Right Arm Symbiant, Extermination Unit Aban', 215178), (235679, 235679, 250, 250, 'Excited Right Arm Symbiant, Infantry Unit Aban', 215180), (236454, 236454, 250, 250, 'Excited Right Hand Symbiant, Control Unit Aban', 215173), (235778, 235778, 250, 250, 'Excited Right Hand Symbiant, Infantry Unit Aban', 215174), (235507, 235507, 250, 250, 'Excited Right Wrist Symbiant, Artillery Unit Aban', 215170), (235725, 235725, 250, 250, 'Excited Right Wrist Symbiant, Infantry Unit Aban', 215197), (235575, 235575, 250, 250, 'Excited Thigh Symbiant, Artillery Unit Aban', 215190), (236471, 236471, 250, 250, 'Excited Thigh Symbiant, Control Unit Aban', 215191), (235795, 235795, 250, 250, 'Excited Thigh Symbiant, Infantry Unit Aban', 215191), (236250, 236250, 250, 250, 'Excited Thigh Symbiant, Support Unit Aban', 215190), (235965, 235965, 250, 250, 'Excited Waist Symbiant, Extermination Unit Aban', 215193), (271179, 271180, 1, 300, 'Executioner - 000', 114001), (271181, 271182, 1, 300, 'Executioner - 010', 114001), (271183, 271184, 1, 300, 'Executioner - 050', 114001), (271185, 271186, 1, 300, 'Executioner - 070', 114001), (271187, 271188, 1, 300, 'Executioner - 870', 114001), (302005, 302005, 1, 1, 'Executive Cardinal Red Suit with Skirt', 302025), (302004, 302004, 1, 1, 'Executive Cardinal Red Suit with Trousers', 302022), (302003, 302003, 1, 1, 'Executive Carnation Pink Suit with Skirt', 302027), (302002, 302002, 1, 1, 'Executive Carnation Pink Suit with Trousers', 302026), (253449, 253449, 1, 1, 'Executive Chair', 255925), (274585, 274585, 1, 1, 'Executive Chair of Rhynan', 255952), (274581, 274581, 1, 1, 'Executive Desk of Gullvinge', 255953), (248954, 248954, 1, 1, 'Executive Shirt Sleeves of Omni-Trans', 255267), (248955, 248955, 1, 1, 'Executive Shirt of Omni-Trans', 255324), (128635, 128635, 200, 200, 'Exellent Ares Arms AR-90 Jet Rifle', 21149), (128714, 128714, 185, 185, 'Exellent River Series 6', 19800), (297303, 297303, 1, 1, 'Exit Arete Landing', 273626), (260185, 260185, 1, 1, 'Exit Recon Mechanized Vehicle', 12682), (225681, 225682, 1, 300, 'Exok''s Ring of Pharmacy', 84067), (156054, 156054, 1, 1, 'Expendable Hologram Camera', 156092), (216286, 216286, 1, 1, 'Expensive Gift from Earth', 205832), (232886, 232887, 1, 149, 'Expensive looking bijou', 151928), (232887, 232889, 150, 199, 'Expensive looking bijou', 151928), (232889, 232890, 200, 249, 'Expensive looking bijou', 151928), (232890, 232891, 250, 400, 'Expensive looking bijou', 151928), (275376, 275376, 1, 1, 'Experience Construct (Anniversary Boost)', 281958), (275377, 275377, 1, 1, 'Experience Construct (Superior Anniversary Boost)', 281958), (205823, 205823, 40, 40, 'Experienced Aviator Sunglasses', 205745), (211238, 211238, 300, 300, 'Experienced Plastic Pole', 203230), (303437, 303437, 1, 1, 'Experienced Shadowlands Explorer Pack', 99664), (304570, 304570, 1, 1, 'Experienced Shadowlands Explorer Pack', 304440), (244719, 244719, 200, 200, 'Experimental Cyborg Token Board', 82973), (295757, 295757, 1, 1, 'Experimental Hellfyre Rocket Launcher', 264797), (163383, 163384, 1, 200, 'Experimental Mole Robot Sonar', 12694), (295703, 295703, 1, 1, 'Experimental Nano Armor Exosuit', 295727), (164568, 164568, 180, 180, 'Experimental Nanobot Classifying Computer', 72783), (303062, 303062, 100, 100, 'Experimental Optic Enhancer', 99271), (217051, 217051, 1, 1, 'Exploding Fanatic a Wearable', 84059), (217052, 217052, 1, 1, 'Exploding Fanatic b Wearable', 84059), (226955, 226956, 1, 300, 'Exploiter''s Armor Boots', 213554), (226963, 226964, 1, 300, 'Exploiter''s Armor Gloves', 21871), (226961, 226962, 1, 300, 'Exploiter''s Armor Sleeve', 13225), (226957, 226958, 1, 300, 'Exploiter''s Armor Trousers', 213454), (226959, 226960, 1, 300, 'Exploiter''s Body Armor', 37545), (258289, 258289, 1, 1, 'Exploits Team Protective Suit', 258286), (227476, 227476, 1, 1, 'Exploration Teleportation', 239267), (227477, 227477, 1, 1, 'Exploration Teleportation 2', 239271), (200465, 200465, 200, 200, 'Explorer Boots', 13260), (281226, 281226, 1, 1, 'Explorer''s Cut Gem', 281223), (281210, 281210, 1, 1, 'Explorer''s Gem', 281224), (281196, 281196, 1, 1, 'Explorer''s Signet of The Apocalypse', 281195), (251809, 251810, 1, 300, 'Explosif Device', 72783), (225709, 225710, 1, 300, 'Explosif''s Harmonic Circlet', 151925), (258343, 258343, 300, 300, 'Explosif''s Polychromatic Pillows', 257708), (258344, 258344, 300, 300, 'Explosif''s Polychromatic Pillows', 257709), (258345, 258345, 300, 300, 'Explosif''s Polychromatic Pillows', 257710), (137241, 137242, 1, 200, 'Explosion Propulsion Containment Chamber', 130690), (274728, 274728, 1, 1, 'Explosion of Light', 227530), (263976, 263976, 1, 1, 'Explosive Mine Layer', 205499), (157716, 157716, 200, 200, 'Exquisite Mausser Chemical Streamer', 33154), (252986, 252987, 1, 300, 'Exterminator Ocular Enhancement', 230980), (215541, 215542, 25, 300, 'Exterminator Unit Boots', 214751), (215415, 215416, 75, 300, 'Exterminator Unit Chest Plate', 214743), (223169, 223170, 1, 300, 'Exterminator Unit Crepuscule Boots', 13265), (223177, 223178, 1, 300, 'Exterminator Unit Crepuscule Gloves', 13279), (223173, 223174, 1, 300, 'Exterminator Unit Crepuscule Jacket', 13249), (223171, 223172, 1, 300, 'Exterminator Unit Crepuscule Pants', 213574), (223179, 223180, 1, 300, 'Exterminator Unit Crepuscule Skinchip', 160724), (223175, 223176, 1, 300, 'Exterminator Unit Crepuscule Sleeve', 213487), (215535, 215536, 25, 300, 'Exterminator Unit Gloves', 214752), (215531, 215533, 75, 300, 'Exterminator Unit Helmet', 213640), (215543, 215544, 25, 300, 'Exterminator Unit Pants', 214753), (215537, 215538, 25, 300, 'Exterminator Unit Sleeves', 214749), (215539, 215540, 25, 300, 'Exterminator Unit Vest', 214750), (157903, 157903, 200, 200, 'Extra Curved Gutting Hook', 158269), (160102, 160102, 200, 200, 'Extra Hard Compressed Blade', 113986), (249029, 249030, 131, 150, 'Extra Layered Arctic Metaplast Mace', 13333), (142848, 142849, 131, 150, 'Extra Layered Metaplast Mace', 13333), (129025, 129025, 200, 200, 'Extra Sweet Chocolate Surprise', 85164), (251930, 251930, 1, 1, 'Extract of Bodum-Minor', 154417), (300863, 300863, 1, 1, 'Extralife T-shirt', 300860), (294854, 294854, 1, 1, 'Extravagant Piece of Chocolate', 295055), (294861, 294861, 1, 1, 'Extravagant Piece of Chocolate', 295052), (294862, 294862, 1, 1, 'Extravagant Piece of Chocolate', 295051), (294863, 294863, 1, 1, 'Extravagant Piece of Chocolate', 295053), (88376, 88376, 200, 200, 'Extreme Low Light Targeting Scope', 99270), (252028, 252028, 1, 1, 'Extruder Nutrition Bar', 130517), (225697, 225698, 1, 300, 'Extruder''s Harmonic Circlet', 151921), (257379, 257379, 200, 200, 'Extruder''s Molybdenum Crash Helmet', 252429), (216947, 216947, 1, 1, 'Exultation', 239159), (227478, 227478, 1, 1, 'Exultation', 154367), (227479, 227479, 1, 1, 'Exultation', 154367), (227480, 227480, 1, 1, 'Exultation', 154367), (227481, 227481, 1, 1, 'Exultation', 154367), (227482, 227482, 1, 1, 'Exultation', 154367), (227483, 227483, 1, 1, 'Exultation', 154367), (227484, 227484, 1, 1, 'Exultation', 154367), (227485, 227485, 1, 1, 'Exultation', 154367), (227486, 227486, 1, 1, 'Exultation', 154367), (157400, 157400, 1, 1, 'Eye Five Falcon Advantage', 81779), (293485, 293485, 1, 1, 'Eye Guy Helmet - Blue with Hat', 293446), (293472, 293472, 1, 1, 'Eye Guy Helmet - Blue without Hat', 293449), (293471, 293471, 1, 1, 'Eye Guy Helmet - Green with Hat', 293447), (293470, 293470, 1, 1, 'Eye Guy Helmet - Green without Hat', 293450), (293172, 293172, 1, 1, 'Eye Guy Helmet - Red with Hat', 293167), (293459, 293459, 1, 1, 'Eye Guy Helmet - Red without Hat', 293448), (142861, 142862, 51, 90, 'Eye Wind Onehander', 13341), (263317, 263317, 1, 1, 'Eye of Cemetiere', 245739), (305989, 305989, 250, 250, 'Eye of The Psion', 149936), (238912, 238913, 100, 300, 'Eye of the Evening Star', 289766), (162399, 162400, 25, 300, 'Eye of the Hunter', 144708), (269934, 269934, 1, 1, 'Eye of the Predator', 259105), (270725, 270725, 1, 1, 'Eye of the Predator', 259105), (259805, 259805, 1, 1, 'Eye of the Prophetess', 259804), (211248, 211249, 1, 299, 'Eye-Gouger', 131265), (204973, 204974, 1, 225, 'Eyemutant Eye', 144708), (204966, 204967, 75, 149, 'Eyemutant Orb Laser', 152424), (204803, 204803, 20, 20, 'Eyemutant Sinew Boots - 1 Bundle', 13261), (204812, 204812, 200, 200, 'Eyemutant Sinew Boots - 10 Bundles', 13261), (204813, 204813, 220, 220, 'Eyemutant Sinew Boots - 11 Bundles', 13261), (204814, 204814, 240, 240, 'Eyemutant Sinew Boots - 12 Bundles', 13261), (204804, 204804, 40, 40, 'Eyemutant Sinew Boots - 2 Bundles', 13261), (204805, 204805, 60, 60, 'Eyemutant Sinew Boots - 3 Bundles', 13261), (204806, 204806, 80, 80, 'Eyemutant Sinew Boots - 4 Bundles', 13261), (204807, 204807, 100, 100, 'Eyemutant Sinew Boots - 5 Bundles', 13261), (204808, 204808, 120, 120, 'Eyemutant Sinew Boots - 6 Bundles', 13261), (204809, 204809, 140, 140, 'Eyemutant Sinew Boots - 7 Bundles', 13261), (204810, 204810, 160, 160, 'Eyemutant Sinew Boots - 8 Bundles', 13261), (204811, 204811, 180, 180, 'Eyemutant Sinew Boots - 9 Bundles', 13261), (204815, 204815, 20, 20, 'Eyemutant Sinew Gloves - 1 Bundle', 21871), (204824, 204824, 200, 200, 'Eyemutant Sinew Gloves - 10 Bundles', 21871), (204825, 204825, 220, 220, 'Eyemutant Sinew Gloves - 11 Bundles', 21871), (204826, 204826, 240, 240, 'Eyemutant Sinew Gloves - 12 Bundles', 21871), (204816, 204816, 40, 40, 'Eyemutant Sinew Gloves - 2 Bundles', 21871), (204817, 204817, 60, 60, 'Eyemutant Sinew Gloves - 3 Bundles', 21871), (204818, 204818, 80, 80, 'Eyemutant Sinew Gloves - 4 Bundles', 21871), (204819, 204819, 100, 100, 'Eyemutant Sinew Gloves - 5 Bundles', 21871), (204820, 204820, 120, 120, 'Eyemutant Sinew Gloves - 6 Bundles', 21871), (204821, 204821, 140, 140, 'Eyemutant Sinew Gloves - 7 Bundles', 21871), (204822, 204822, 160, 160, 'Eyemutant Sinew Gloves - 8 Bundles', 21871), (204823, 204823, 180, 180, 'Eyemutant Sinew Gloves - 9 Bundles', 21871), (204791, 204791, 20, 20, 'Eyemutant Sinew Sleeves - 1 Bundle', 37423), (204800, 204800, 200, 200, 'Eyemutant Sinew Sleeves - 10 Bundles', 37423), (204801, 204801, 220, 220, 'Eyemutant Sinew Sleeves - 11 Bundles', 37423), (204802, 204802, 240, 240, 'Eyemutant Sinew Sleeves - 12 Bundles', 37423), (204792, 204792, 40, 40, 'Eyemutant Sinew Sleeves - 2 Bundles', 37423), (204793, 204793, 60, 60, 'Eyemutant Sinew Sleeves - 3 Bundles', 37423), (204794, 204794, 80, 80, 'Eyemutant Sinew Sleeves - 4 Bundles', 37423), (204795, 204795, 100, 100, 'Eyemutant Sinew Sleeves - 5 Bundles', 37423), (204796, 204796, 120, 120, 'Eyemutant Sinew Sleeves - 6 Bundles', 37423), (204797, 204797, 140, 140, 'Eyemutant Sinew Sleeves - 7 Bundles', 37423), (204798, 204798, 160, 160, 'Eyemutant Sinew Sleeves - 8 Bundles', 37423), (204799, 204799, 180, 180, 'Eyemutant Sinew Sleeves - 9 Bundles', 37423), (204768, 204768, 50, 50, 'Eyemutant Sinews', 156557), (204771, 204771, 50, 50, 'Eyemutant Sinews - Preserved', 156557), (290026, 290026, 1, 1, 'Eyepatch', 289961), (124048, 124049, 71, 90, 'F.D.A. Insurgent Ant', 21146), (124050, 124051, 91, 120, 'F.D.A. Insurgent Beetle', 21146), (124069, 124069, 200, 200, 'F.D.A. Insurgent Busybee', 21146), (124052, 124064, 121, 140, 'F.D.A. Insurgent Butterfly', 21146), (124065, 124066, 141, 180, 'F.D.A. Insurgent Caterpillar', 21146), (124046, 124047, 51, 70, 'F.D.A. Insurgent Cockroach', 21146), (124067, 124068, 181, 199, 'F.D.A. Insurgent Firefly', 21146), (124042, 124043, 1, 20, 'F.D.A. Insurgent Fly', 21146), (124044, 124045, 21, 50, 'F.D.A. Insurgent Moth', 21146), (123852, 123853, 100, 159, 'FA Super 90 Pannikin', 33157), (160188, 160189, 91, 110, 'FDA Caterwaul 913', 33155), (123930, 123931, 50, 174, 'FN 7-7 Pistol', 13317), (123932, 123932, 175, 175, 'FN Newt 7-7 Pistol', 13317), (303778, 303778, 215, 215, 'Fabricated Brain Symbiant, Artillery Unit', 215189), (303791, 303791, 215, 215, 'Fabricated Brain Symbiant, Control Unit', 215189), (303804, 303804, 215, 215, 'Fabricated Brain Symbiant, Extermination Unit', 215189), (303817, 303817, 215, 215, 'Fabricated Brain Symbiant, Infantry Unit', 215189), (303830, 303830, 215, 215, 'Fabricated Brain Symbiant, Support Unit', 215189), (303781, 303781, 215, 215, 'Fabricated Chest Symbiant, Artillery Unit', 215181), (303794, 303794, 215, 215, 'Fabricated Chest Symbiant, Control Unit', 215181), (303807, 303807, 215, 215, 'Fabricated Chest Symbiant, Extermination Unit', 215181), (303820, 303820, 215, 215, 'Fabricated Chest Symbiant, Infantry Unit', 215181), (303833, 303833, 215, 215, 'Fabricated Chest Symbiant, Support Unit', 215181), (303780, 303780, 215, 215, 'Fabricated Ear Symbiant, Artillery Unit', 230978), (303793, 303793, 215, 215, 'Fabricated Ear Symbiant, Control Unit', 230978), (303806, 303806, 215, 215, 'Fabricated Ear Symbiant, Extermination Unit', 230978), (303819, 303819, 215, 215, 'Fabricated Ear Symbiant, Infantry Unit', 230978), (303832, 303832, 215, 215, 'Fabricated Ear Symbiant, Support Unit', 230978), (303743, 303744, 1, 250, 'Fabricated Essence Brain Spirit', 230992), (303790, 303790, 215, 215, 'Fabricated Feet Symbiant, Artillery Unit', 215184), (303803, 303803, 215, 215, 'Fabricated Feet Symbiant, Control Unit', 215184), (303816, 303816, 215, 215, 'Fabricated Feet Symbiant, Extermination Unit', 215184), (303829, 303829, 215, 215, 'Fabricated Feet Symbiant, Infantry Unit', 215184), (303842, 303842, 215, 215, 'Fabricated Feet Symbiant, Support Unit', 215184), (303749, 303750, 1, 250, 'Fabricated Heart Spirit of Essence', 230984), (303751, 303752, 1, 250, 'Fabricated Heart Spirit of Knowledge', 230984), (303753, 303754, 1, 250, 'Fabricated Heart Spirit of Weakness', 230984), (303782, 303782, 215, 215, 'Fabricated Left Arm Symbiant, Artillery Unit', 215179), (303795, 303795, 215, 215, 'Fabricated Left Arm Symbiant, Control Unit', 215179), (303808, 303808, 215, 215, 'Fabricated Left Arm Symbiant, Extermination Unit', 215179), (303821, 303821, 215, 215, 'Fabricated Left Arm Symbiant, Infantry Unit', 215179), (303834, 303834, 215, 215, 'Fabricated Left Arm Symbiant, Support Unit', 215179), (303759, 303760, 1, 250, 'Fabricated Left Hand Spirit of Strength', 230994), (303783, 303783, 215, 215, 'Fabricated Left Hand Symbiant, Artillery Unit', 215171), (303796, 303796, 215, 215, 'Fabricated Left Hand Symbiant, Control Unit', 215171), (303809, 303809, 215, 215, 'Fabricated Left Hand Symbiant, Extermination Unit', 215171), (303822, 303822, 215, 215, 'Fabricated Left Hand Symbiant, Infantry Unit', 215171), (303835, 303835, 215, 215, 'Fabricated Left Hand Symbiant, Support Unit', 215171), (303755, 303756, 1, 250, 'Fabricated Left Limb Spirit of Strength', 230995), (303757, 303758, 1, 250, 'Fabricated Left Limb Spirit of Weakness', 230995), (303784, 303784, 215, 215, 'Fabricated Left Wrist Symbiant, Artillery Unit', 215198), (303797, 303797, 215, 215, 'Fabricated Left Wrist Symbiant, Control Unit', 215198), (303810, 303810, 215, 215, 'Fabricated Left Wrist Symbiant, Extermination Unit', 215198), (303823, 303823, 215, 215, 'Fabricated Left Wrist Symbiant, Infantry Unit', 215198), (303836, 303836, 215, 215, 'Fabricated Left Wrist Symbiant, Support Unit', 215198), (303769, 303770, 1, 250, 'Fabricated Midriff Spirit of Essence', 230976), (303771, 303772, 1, 250, 'Fabricated Midriff Spirit of Weakness', 230976), (303779, 303779, 215, 215, 'Fabricated Ocular Symbiant, Artillery Unit', 230980), (303792, 303792, 215, 215, 'Fabricated Ocular Symbiant, Control Unit', 230980), (303805, 303805, 215, 215, 'Fabricated Ocular Symbiant, Extermination Unit', 230980), (303818, 303818, 215, 215, 'Fabricated Ocular Symbiant, Infantry Unit', 230980), (303831, 303831, 215, 215, 'Fabricated Ocular Symbiant, Support Unit', 230980), (303813, 303813, 215, 215, 'Fabricated R. Wrist Symbiant, Extermination Unit', 215170), (303785, 303785, 215, 215, 'Fabricated Right Arm Symbiant, Artillery Unit', 215176), (303798, 303798, 215, 215, 'Fabricated Right Arm Symbiant, Control Unit', 215176), (303811, 303811, 215, 215, 'Fabricated Right Arm Symbiant, Extermination Unit', 215176), (303824, 303824, 215, 215, 'Fabricated Right Arm Symbiant, Infantry Unit', 215176), (303837, 303837, 215, 215, 'Fabricated Right Arm Symbiant, Support Unit', 215176), (303765, 303766, 1, 250, 'Fabricated Right Hand Strength Spirit', 231002), (303786, 303786, 215, 215, 'Fabricated Right Hand Symbiant, Artillery Unit', 215173), (303799, 303799, 215, 215, 'Fabricated Right Hand Symbiant, Control Unit', 215173), (303812, 303812, 215, 215, 'Fabricated Right Hand Symbiant, Extermination Unit', 215173), (303825, 303825, 215, 215, 'Fabricated Right Hand Symbiant, Infantry Unit', 215173), (303838, 303838, 215, 215, 'Fabricated Right Hand Symbiant, Support Unit', 215173), (303763, 303764, 1, 250, 'Fabricated Right Limb Spirit of Strength', 231004), (303787, 303787, 215, 215, 'Fabricated Right Wrist Symbiant, Artillery Unit', 215170), (303800, 303800, 215, 215, 'Fabricated Right Wrist Symbiant, Control Unit', 215170), (303826, 303826, 215, 215, 'Fabricated Right Wrist Symbiant, Infantry Unit', 215170), (303839, 303839, 215, 215, 'Fabricated Right Wrist Symbiant, Support Unit', 215170), (303745, 303746, 1, 250, 'Fabricated Spirit of Clear Thought', 230992), (303773, 303774, 1, 250, 'Fabricated Spirit of Defense', 230998), (303775, 303776, 1, 250, 'Fabricated Spirit of Feet Defense', 230990), (303747, 303748, 1, 250, 'Fabricated Spirit of Knowledge Whispered', 230986), (303761, 303762, 1, 250, 'Fabricated Spirit of Left Wrist Strength', 231000), (303767, 303768, 1, 250, 'Fabricated Spirit of Right Wrist Offence', 231006), (303789, 303789, 215, 215, 'Fabricated Thigh Symbiant, Artillery Unit', 215191), (303802, 303802, 215, 215, 'Fabricated Thigh Symbiant, Control Unit', 215191), (303815, 303815, 215, 215, 'Fabricated Thigh Symbiant, Extermination Unit', 215191), (303828, 303828, 215, 215, 'Fabricated Thigh Symbiant, Infantry Unit', 215191), (303841, 303841, 215, 215, 'Fabricated Thigh Symbiant, Support Unit', 215191), (303788, 303788, 215, 215, 'Fabricated Waist Symbiant, Artillery Unit', 215193), (303801, 303801, 215, 215, 'Fabricated Waist Symbiant, Control Unit', 215193), (303814, 303814, 215, 215, 'Fabricated Waist Symbiant, Extermination Unit', 215193), (303827, 303827, 215, 215, 'Fabricated Waist Symbiant, Infantry Unit', 215193), (303840, 303840, 215, 215, 'Fabricated Waist Symbiant, Support Unit', 215193), (272170, 272171, 1, 300, 'Fabrique Des Armes Bizon 20-19 - 000', 21144), (272172, 272173, 1, 300, 'Fabrique Des Armes Bizon 20-19 - 008', 21144), (272174, 272175, 1, 300, 'Fabrique Des Armes Bizon 20-19 - 00C', 21144), (272176, 272177, 1, 300, 'Fabrique Des Armes Bizon 20-19 - 40C', 21144), (272178, 272179, 1, 300, 'Fabrique Des Armes Bizon 20-19 - C0C', 21144), (227634, 227634, 1, 1, 'Fade Anger', 239197), (227635, 227635, 1, 1, 'Fade Anger', 154367), (227636, 227636, 1, 1, 'Fade Anger', 154367), (227637, 227637, 1, 1, 'Fade Anger', 154367), (227638, 227638, 1, 1, 'Fade Anger', 154367), (227639, 227639, 1, 1, 'Fade Anger', 154367), (227640, 227640, 1, 1, 'Fade Anger', 154367), (226237, 226237, 1, 1, 'Fade Armor', 239009), (154891, 154892, 1, 199, 'Faded Immortal Katana', 154506), (130082, 130083, 1, 19, 'Faded Magical Stave of Inferno', 136738), (123706, 123707, 30, 49, 'Faded OT Biomag', 38055), (206259, 206259, 1, 1, 'Faded Piece of Paper', 154676), (31108, 31108, 1, 1, 'Faded Purple Pants', 30942), (142808, 142809, 33, 59, 'Faded SSC Rustling Wakisashi', 113983), (31252, 31252, 1, 1, 'Faded Shirt with a Dragon Print', 30908), (253499, 253499, 1, 1, 'Fadin Punching Bag', 255931), (225701, 225702, 1, 300, 'Fadinaway''s Harmonic Circlet', 151925), (221252, 221252, 179, 179, 'Failed Repaired Crystal (A Maker''s Touch)', 220436), (221276, 221276, 40, 40, 'Failed Repaired Crystal (Advanced Android)', 220424), (222096, 222096, 14, 14, 'Failed Repaired Crystal (Advanced Automaton)', 220424), (222047, 222047, 126, 126, 'Failed Repaired Crystal (Advanced Defensive Screen)', 220413), (220770, 220770, 179, 179, 'Failed Repaired Crystal (Advanced Force Field)', 220413), (220893, 220893, 80, 80, 'Failed Repaired Crystal (Advanced Gladiatorbot)', 220431), (221298, 221298, 116, 116, 'Failed Repaired Crystal (Advanced Guardbot)', 220411), (222196, 222196, 119, 119, 'Failed Repaired Crystal (Advanced Protective Field)', 220413), (222128, 222128, 109, 109, 'Failed Repaired Crystal (Advanced Shielding Barrier)', 220413), (222090, 222090, 152, 152, 'Failed Repaired Crystal (Advanced Warbot)', 220411), (221915, 221915, 169, 169, 'Failed Repaired Crystal (Advanced Warmachine)', 220411), (220777, 220777, 189, 189, 'Failed Repaired Crystal (Aegis Barrier)', 220413), (221316, 221316, 33, 33, 'Failed Repaired Crystal (Android)', 220424), (220779, 220779, 1, 1, 'Failed Repaired Crystal (Armor Megaboost)', 220426), (222535, 222535, 117, 117, 'Failed Repaired Crystal (Assist Aggression Subsystem)', 220436), (222530, 222530, 15, 15, 'Failed Repaired Crystal (Assist Combat Array)', 220422), (221288, 221288, 7, 7, 'Failed Repaired Crystal (Automaton)', 220424), (221877, 221877, 37, 37, 'Failed Repaired Crystal (Basic Defensive Screen)', 220426), (221028, 221028, 159, 159, 'Failed Repaired Crystal (Basic Force Field)', 220413), (222153, 222153, 33, 33, 'Failed Repaired Crystal (Basic Protective Field)', 220426), (220790, 220790, 27, 27, 'Failed Repaired Crystal (Basic Shielding Barrier)', 220426), (222381, 222381, 90, 90, 'Failed Repaired Crystal (Beacon Warp)', 220431), (222533, 222533, 77, 77, 'Failed Repaired Crystal (Boost Combat Array)', 220429), (222063, 222063, 149, 149, 'Failed Repaired Crystal (Citadel of Spikes)', 220413), (221130, 221130, 30, 30, 'Failed Repaired Crystal (Common Android)', 220424), (221139, 221139, 7, 7, 'Failed Repaired Crystal (Common Automaton)', 220424), (221004, 221004, 66, 66, 'Failed Repaired Crystal (Common Gladiatorbot)', 220431), (221734, 221734, 103, 103, 'Failed Repaired Crystal (Common Guardbot)', 220411), (220819, 220819, 146, 146, 'Failed Repaired Crystal (Common Warbot)', 220411), (221155, 221155, 165, 165, 'Failed Repaired Crystal (Common Warmachine)', 220411), (220669, 220669, 99, 99, 'Failed Repaired Crystal (Controlled Energy Overload)', 220431), (220803, 220803, 20, 20, 'Failed Repaired Crystal (Crowbar Subtlety)', 220425), (221013, 221013, 179, 179, 'Failed Repaired Crystal (Decommissioned Wardroid)', 220411), (221212, 221212, 83, 83, 'Failed Repaired Crystal (Defensive Screen)', 220433), (222352, 222352, 113, 113, 'Failed Repaired Crystal (Disruptive Barrier Negator)', 220413), (222353, 222353, 107, 107, 'Failed Repaired Crystal (Disruptive Cocoon Harmonics)', 220413), (222354, 222354, 41, 41, 'Failed Repaired Crystal (Disruptive Field Harmonics)', 220426), (222355, 222355, 17, 17, 'Failed Repaired Crystal (Disruptive Field Negator)', 220426), (222356, 222356, 156, 156, 'Failed Repaired Crystal (Disruptive Phase Harmonics)', 220413), (222357, 222357, 83, 83, 'Failed Repaired Crystal (Disruptive Photon Absorber)', 220431), (222358, 222358, 149, 149, 'Failed Repaired Crystal (Disruptive Photon Annihilator)', 220411), (222359, 222359, 41, 41, 'Failed Repaired Crystal (Disruptive Photon Deflector)', 220424), (222375, 222375, 120, 120, 'Failed Repaired Crystal (Disruptive Photon Devourer)', 220411), (222376, 222376, 153, 153, 'Failed Repaired Crystal (Disruptive Retaliatory Negator)', 220413), (222377, 222377, 182, 182, 'Failed Repaired Crystal (Disruptive Retributive Negator)', 220413), (222378, 222378, 57, 57, 'Failed Repaired Crystal (Disruptive Shielding Negator)', 220433), (222379, 222379, 166, 166, 'Failed Repaired Crystal (Disruptive Void Projector)', 220411), (221554, 221554, 24, 24, 'Failed Repaired Crystal (Electrical Chastiser)', 220426), (220972, 220972, 76, 76, 'Failed Repaired Crystal (Electrical Discharge Field)', 220433), (222506, 222506, 40, 40, 'Failed Repaired Crystal (Energize Shell)', 220424), (222184, 222184, 113, 113, 'Failed Repaired Crystal (Energy Cocoon)', 220413), (220552, 220552, 37, 37, 'Failed Repaired Crystal (Energy Spike)', 220424), (222532, 222532, 56, 56, 'Failed Repaired Crystal (Enhance Combat Array)', 220429), (221254, 221254, 149, 149, 'Failed Repaired Crystal (Entropy Weapon)', 220411), (220783, 220783, 139, 139, 'Failed Repaired Crystal (Extreme Prejudice)', 220412), (222048, 222048, 20, 20, 'Failed Repaired Crystal (Feeble Android)', 220424), (221849, 221849, 47, 47, 'Failed Repaired Crystal (Feeble Gladiatorbot)', 220424), (222076, 222076, 90, 90, 'Failed Repaired Crystal (Feeble Guardbot)', 220431), (222043, 222043, 129, 129, 'Failed Repaired Crystal (Feeble Warbot)', 220411), (221141, 221141, 156, 156, 'Failed Repaired Crystal (Feeble Warmachine)', 220411), (220915, 220915, 120, 120, 'Failed Repaired Crystal (Field Workshop)', 220436), (221027, 221027, 27, 27, 'Failed Repaired Crystal (Flawed Android)', 220424), (221565, 221565, 4, 4, 'Failed Repaired Crystal (Flawed Automaton)', 220424), (220930, 220930, 20, 20, 'Failed Repaired Crystal (Flawed Defensive Screen)', 220426), (221058, 221058, 156, 156, 'Failed Repaired Crystal (Flawed Force Field)', 220413), (222042, 222042, 63, 63, 'Failed Repaired Crystal (Flawed Gladiatorbot)', 220431), (221735, 221735, 99, 99, 'Failed Repaired Crystal (Flawed Guardbot)', 220431), (222238, 222238, 14, 14, 'Failed Repaired Crystal (Flawed Protective Field)', 220426), (221124, 221124, 7, 7, 'Failed Repaired Crystal (Flawed Shielding Barrier)', 220426), (222016, 222016, 146, 146, 'Failed Repaired Crystal (Flawed Warbot)', 220411), (220648, 220648, 162, 162, 'Failed Repaired Crystal (Flawed Warmachine)', 220411), (221559, 221559, 169, 169, 'Failed Repaired Crystal (Force Field)', 220413), (221948, 221948, 175, 175, 'Failed Repaired Crystal (Fortress of Spikes)', 220413), (221207, 221207, 70, 70, 'Failed Repaired Crystal (Gladiatorbot)', 220431), (222155, 222155, 4, 4, 'Failed Repaired Crystal (Greater Armor Megaboost)', 220426), (220991, 220991, 159, 159, 'Failed Repaired Crystal (Greater Harmonic Cocoon)', 220413), (222186, 222186, 165, 165, 'Failed Repaired Crystal (Greater Retaliatory Barrier)', 220413), (222079, 222079, 109, 109, 'Failed Repaired Crystal (Guardbot)', 220411), (221832, 221832, 10, 10, 'Failed Repaired Crystal (Gun Enhancement)', 220424), (221068, 221068, 139, 139, 'Failed Repaired Crystal (Harmonic Cocoon)', 220413), (221007, 221007, 185, 185, 'Failed Repaired Crystal (Heavy Assault Force Field)', 220413), (220979, 220979, 24, 24, 'Failed Repaired Crystal (Inferior Android)', 220424), (221929, 221929, 4, 4, 'Failed Repaired Crystal (Inferior Automaton)', 220424), (220682, 220682, 57, 57, 'Failed Repaired Crystal (Inferior Gladiatorbot)', 220431), (222258, 222258, 96, 96, 'Failed Repaired Crystal (Inferior Guardbot)', 220431), (222041, 222041, 139, 139, 'Failed Repaired Crystal (Inferior Warbot)', 220411), (222147, 222147, 162, 162, 'Failed Repaired Crystal (Inferior Warmachine)', 220411), (221845, 221845, 156, 156, 'Failed Repaired Crystal (Intricate Repairs)', 220436), (222518, 222518, 60, 60, 'Failed Repaired Crystal (Intrusive Aura Cancellation)', 220431), (222517, 222517, 60, 60, 'Failed Repaired Crystal (Intrusive Aura of Entanglement)', 220430), (221686, 221686, 24, 24, 'Failed Repaired Crystal (Lesser Android)', 220424), (221881, 221881, 4, 4, 'Failed Repaired Crystal (Lesser Automaton)', 220424), (221101, 221101, 57, 57, 'Failed Repaired Crystal (Lesser Defensive Screen)', 220433), (222505, 222505, 14, 14, 'Failed Repaired Crystal (Lesser Energize Shell)', 220424), (221220, 221220, 162, 162, 'Failed Repaired Crystal (Lesser Force Field)', 220413), (220550, 220550, 53, 53, 'Failed Repaired Crystal (Lesser Gladiatorbot)', 220431), (222146, 222146, 93, 93, 'Failed Repaired Crystal (Lesser Guardbot)', 220431), (220937, 220937, 96, 96, 'Failed Repaired Crystal (Lesser Harmonic Cocoon)', 220433), (222515, 222515, 52, 52, 'Failed Repaired Crystal (Lesser Polarized Screening)', 220433), (220867, 220867, 50, 50, 'Failed Repaired Crystal (Lesser Protective Field)', 220426), (221806, 221806, 37, 37, 'Failed Repaired Crystal (Lesser Retaliatory Barrier)', 220426), (222255, 222255, 43, 43, 'Failed Repaired Crystal (Lesser Shielding Barrier)', 220426), (221587, 221587, 136, 136, 'Failed Repaired Crystal (Lesser Warbot)', 220411), (221143, 221143, 159, 159, 'Failed Repaired Crystal (Lesser Warmachine)', 220411), (221724, 221724, 156, 156, 'Failed Repaired Crystal (Military-Grade Warbot)', 220411), (221301, 221301, 175, 175, 'Failed Repaired Crystal (Military-Grade Warmachine)', 220411), (221971, 221971, 66, 66, 'Failed Repaired Crystal (Minor Harmonic Cocoon)', 220433), (222531, 222531, 37, 37, 'Failed Repaired Crystal (Monitor Combat Array)', 220422), (222380, 222380, 189, 189, 'Failed Repaired Crystal (Null Space Disruptor)', 220413), (222534, 222534, 96, 96, 'Failed Repaired Crystal (Overdrive Combat Array)', 220429), (221152, 221152, 30, 30, 'Failed Repaired Crystal (Partial Harmonic Cocoon)', 220426), (221150, 221150, 20, 20, 'Failed Repaired Crystal (Patchwork Android)', 220424), (221057, 221057, 1, 1, 'Failed Repaired Crystal (Patchwork Automaton)', 220424), (220993, 220993, 50, 50, 'Failed Repaired Crystal (Patchwork Gladiatorbot)', 220424), (221046, 221046, 90, 90, 'Failed Repaired Crystal (Patchwork Guardbot)', 220431), (221772, 221772, 132, 132, 'Failed Repaired Crystal (Patchwork Warbot)', 220411), (220844, 220844, 159, 159, 'Failed Repaired Crystal (Patchwork Warmachine)', 220411), (220695, 220695, 34, 34, 'Failed Repaired Crystal (Patchy Repairs)', 220422), (221106, 221106, 40, 40, 'Failed Repaired Crystal (Perfect Android)', 220424), (222033, 222033, 14, 14, 'Failed Repaired Crystal (Perfected Automaton)', 220424), (221862, 221862, 149, 149, 'Failed Repaired Crystal (Perfected Defensive Screen)', 220413), (220741, 220741, 83, 83, 'Failed Repaired Crystal (Perfected Gladiatorbot)', 220431), (222102, 222102, 119, 119, 'Failed Repaired Crystal (Perfected Guardbot)', 220411), (221575, 221575, 146, 146, 'Failed Repaired Crystal (Perfected Protective Field)', 220413), (220897, 220897, 139, 139, 'Failed Repaired Crystal (Perfected Shielding Barrier)', 220413), (221745, 221745, 152, 152, 'Failed Repaired Crystal (Perfected Warbot)', 220411), (221585, 221585, 172, 172, 'Failed Repaired Crystal (Perfected Warmachine)', 220411), (220810, 220810, 53, 53, 'Failed Repaired Crystal (Philosopher''s Stone)', 220432), (220638, 220638, 93, 93, 'Failed Repaired Crystal (Pillar of Spikes)', 220433), (220871, 220871, 185, 185, 'Failed Repaired Crystal (Plasma Shield)', 220413), (221561, 221561, 73, 73, 'Failed Repaired Crystal (Protective Field)', 220433), (221700, 221700, 14, 14, 'Failed Repaired Crystal (Quick Fix)', 220422), (220816, 220816, 40, 40, 'Failed Repaired Crystal (Quick Weapon)', 220425), (220817, 220817, 129, 129, 'Failed Repaired Crystal (Rapid Weapon)', 220412), (220983, 220983, 182, 182, 'Failed Repaired Crystal (Reactivated Wardroid)', 220411), (221272, 221272, 179, 179, 'Failed Repaired Crystal (Reactive Harmonic Cocoon)', 220413), (220531, 220531, 84, 84, 'Failed Repaired Crystal (Rebuild Casing)', 220429), (221172, 221172, 50, 50, 'Failed Repaired Crystal (Recondition Parts)', 220422), (220986, 220986, 132, 132, 'Failed Repaired Crystal (Retaliatory Barrier)', 220413), (220744, 220744, 43, 43, 'Failed Repaired Crystal (Semi-Sentient Android)', 220424), (222078, 222078, 17, 17, 'Failed Repaired Crystal (Semi-Sentient Automaton)', 220424), (222152, 222152, 86, 86, 'Failed Repaired Crystal (Semi-Sentient Gladiatorbot)', 220431), (221737, 221737, 123, 123, 'Failed Repaired Crystal (Semi-Sentient Guardbot)', 220411), (221800, 221800, 156, 156, 'Failed Repaired Crystal (Semi-Sentient Warbot)', 220411), (221865, 221865, 182, 182, 'Failed Repaired Crystal (Semi-Sentient Wardroid)', 220411), (220904, 220904, 175, 175, 'Failed Repaired Crystal (Semi-Sentient Warmachine)', 220411), (222012, 222012, 63, 63, 'Failed Repaired Crystal (Shielding Barrier)', 220433), (221044, 221044, 189, 189, 'Failed Repaired Crystal (Slayerdroid Guardian)', 220411), (221195, 221195, 185, 185, 'Failed Repaired Crystal (Slayerdroid Protector)', 220411), (222130, 222130, 189, 189, 'Failed Repaired Crystal (Slayerdroid Sentinel)', 220411), (220821, 220821, 185, 185, 'Failed Repaired Crystal (Slayerdroid Transference)', 220411), (220781, 220781, 185, 185, 'Failed Repaired Crystal (Slayerdroid Warden)', 220411), (222516, 222516, 72, 72, 'Failed Repaired Crystal (Sloughing Protective Barrier)', 220433), (222519, 222519, 93, 93, 'Failed Repaired Crystal (Sloughing Protective Field)', 220433), (221655, 221655, 159, 159, 'Failed Repaired Crystal (Sparkling Field Array)', 220413), (221756, 221756, 53, 53, 'Failed Repaired Crystal (Spike Armor)', 220433), (221052, 221052, 7, 7, 'Failed Repaired Crystal (Spike Shield)', 220426), (220946, 220946, 103, 103, 'Failed Repaired Crystal (Superior Defensive Screen)', 220413), (220903, 220903, 172, 172, 'Failed Repaired Crystal (Superior Force Field)', 220413), (222169, 222169, 96, 96, 'Failed Repaired Crystal (Superior Protective Field)', 220433), (222007, 222007, 86, 86, 'Failed Repaired Crystal (Superior Shielding Barrier)', 220433), (222360, 222360, 34, 34, 'Failed Repaired Crystal (Sympathetic Armor Boost)', 220426), (222361, 222361, 80, 80, 'Failed Repaired Crystal (Sympathetic Arms Enhancement)', 220431), (222362, 222362, 146, 146, 'Failed Repaired Crystal (Sympathetic Defensive Screen)', 220413), (222363, 222363, 153, 153, 'Failed Repaired Crystal (Sympathetic Energy Cocoon)', 220413), (222364, 222364, 176, 176, 'Failed Repaired Crystal (Sympathetic Entropy Infusion)', 220411), (222365, 222365, 163, 163, 'Failed Repaired Crystal (Sympathetic Force Field)', 220413), (222366, 222366, 189, 189, 'Failed Repaired Crystal (Sympathetic Fortress Screen)', 220413), (222367, 222367, 116, 116, 'Failed Repaired Crystal (Sympathetic Harmonic Cocoon)', 220413), (222368, 222368, 90, 90, 'Failed Repaired Crystal (Sympathetic Harmonic Field)', 220433), (222369, 222369, 189, 189, 'Failed Repaired Crystal (Sympathetic Plasma Shielding)', 220413), (222370, 222370, 97, 97, 'Failed Repaired Crystal (Sympathetic Protective Field)', 220433), (222371, 222371, 186, 186, 'Failed Repaired Crystal (Sympathetic Reactive Cocoon)', 220413), (222372, 222372, 159, 159, 'Failed Repaired Crystal (Sympathetic Reactive Field)', 220413), (222373, 222373, 93, 93, 'Failed Repaired Crystal (Sympathetic Retaliatory Barrier)', 220433), (222374, 222374, 70, 70, 'Failed Repaired Crystal (Sympathetic Shielding Barrier)', 220433), (220827, 220827, 73, 73, 'Failed Repaired Crystal (Trap Artifice)', 220432), (220829, 220829, 189, 189, 'Failed Repaired Crystal (Ultimate Force Field)', 220413), (222170, 222170, 37, 37, 'Failed Repaired Crystal (Upgraded Android)', 220424), (221491, 221491, 10, 10, 'Failed Repaired Crystal (Upgraded Automaton)', 220424), (221890, 221890, 76, 76, 'Failed Repaired Crystal (Upgraded Gladiatorbot)', 220431), (221642, 221642, 113, 113, 'Failed Repaired Crystal (Upgraded Guardbot)', 220411), (220917, 220917, 149, 149, 'Failed Repaired Crystal (Upgraded Warbot)', 220411), (220954, 220954, 169, 169, 'Failed Repaired Crystal (Upgraded Warmachine)', 220411), (220847, 220847, 149, 149, 'Failed Repaired Crystal (Warbot)', 220411), (221072, 221072, 165, 165, 'Failed Repaired Crystal (Warmachine)', 220411), (40828, 40828, 1, 1, 'Failed Ring of Flying', 25804), (281706, 281706, 1, 1, 'Fairy Wings', 281717), (218626, 218627, 220, 300, 'Faithful Adventurer Body Armor', 213494), (218633, 218634, 220, 300, 'Faithful Adventurer Boots', 213535), (218612, 218613, 220, 300, 'Faithful Adventurer Gloves', 21871), (218610, 218611, 220, 300, 'Faithful Adventurer Helmet', 213621), (218635, 218636, 220, 300, 'Faithful Adventurer Pants', 213575), (218608, 218609, 220, 300, 'Faithful Adventurer Shoulder Cover', 213665), (218624, 218625, 220, 300, 'Faithful Adventurer Sleeves', 213455), (218606, 218607, 220, 300, 'Faithful Adventurer Support System', 218594), (218516, 218517, 220, 300, 'Faithful Agent Body Armor', 213497), (218514, 218515, 220, 300, 'Faithful Agent Boots', 213538), (218520, 218521, 220, 300, 'Faithful Agent Gloves', 27664), (218522, 218523, 220, 300, 'Faithful Agent Helmet', 213624), (218529, 218530, 220, 300, 'Faithful Agent Manteau', 218532), (218489, 218490, 220, 300, 'Faithful Agent Pants', 213581), (218525, 218526, 220, 300, 'Faithful Agent Shoulderpad', 160887), (218518, 218519, 220, 300, 'Faithful Agent Sleeves', 213458), (218947, 218948, 220, 300, 'Faithful Bureaucrat Boots', 213541), (218969, 218970, 220, 300, 'Faithful Bureaucrat Cloak', 213500), (218963, 218964, 220, 300, 'Faithful Bureaucrat Gloves', 27664), (218965, 218966, 220, 300, 'Faithful Bureaucrat Headgear', 213627), (218945, 218946, 220, 300, 'Faithful Bureaucrat Pants', 213581), (218967, 218968, 220, 300, 'Faithful Bureaucrat Shoulderpad', 160887), (218959, 218960, 220, 300, 'Faithful Bureaucrat Sleeves', 213461), (218949, 218950, 220, 300, 'Faithful Bureaucrat Vest', 213500), (217720, 217721, 220, 300, 'Faithful Doctor Body', 213503), (217722, 217723, 220, 300, 'Faithful Doctor Boots', 213544), (217716, 217717, 220, 300, 'Faithful Doctor Gloves', 13281), (217714, 217715, 220, 300, 'Faithful Doctor Helmet', 213642), (217710, 217711, 220, 300, 'Faithful Doctor Life Support', 217693), (217724, 217725, 220, 300, 'Faithful Doctor Pants', 213587), (217712, 217713, 220, 300, 'Faithful Doctor Shoulderpad', 213660), (217718, 217719, 220, 300, 'Faithful Doctor Sleeves', 213464), (220239, 220240, 220, 300, 'Faithful Enforcer Boots', 213546), (220243, 220244, 220, 300, 'Faithful Enforcer Breastplate', 213506), (220251, 220252, 220, 300, 'Faithful Enforcer Gauntlets', 21979), (220255, 220256, 220, 300, 'Faithful Enforcer Helmet', 213630), (220263, 220264, 220, 300, 'Faithful Enforcer Mantle', 220267), (220237, 220238, 220, 300, 'Faithful Enforcer Pants', 213588), (220259, 220260, 220, 300, 'Faithful Enforcer Shoulderplate', 213657), (220247, 220248, 220, 300, 'Faithful Enforcer Sleeves', 213466), (218210, 218211, 220, 300, 'Faithful Engineer Body', 213509), (218208, 218209, 220, 300, 'Faithful Engineer Boots', 213549), (218214, 218215, 220, 300, 'Faithful Engineer Gloves', 22939), (218216, 218217, 220, 300, 'Faithful Engineer Helmet', 213633), (218220, 218221, 220, 300, 'Faithful Engineer Helper', 214739), (218206, 218207, 220, 300, 'Faithful Engineer Pants', 213591), (218218, 218219, 220, 300, 'Faithful Engineer Shoulderpad', 160888), (218212, 218213, 220, 300, 'Faithful Engineer Sleeves', 213469), (218270, 218271, 220, 300, 'Faithful Fixer Body Armor', 213512), (218272, 218273, 220, 300, 'Faithful Fixer Boots', 213552), (218266, 218267, 220, 300, 'Faithful Fixer Gloves', 27664), (218264, 218265, 220, 300, 'Faithful Fixer Helmet', 213636), (218260, 218261, 220, 300, 'Faithful Fixer Manteau', 218277), (218274, 218275, 220, 300, 'Faithful Fixer Pants', 213594), (218262, 218263, 220, 300, 'Faithful Fixer Shoulderpad', 160887), (218268, 218269, 220, 300, 'Faithful Fixer Sleeves', 213472), (216663, 216664, 220, 300, 'Faithful Keeper Barbute', 216708), (216669, 216670, 220, 300, 'Faithful Keeper Cuirass', 226607), (216665, 216666, 220, 300, 'Faithful Keeper Gauntlets', 226640), (216673, 216674, 220, 300, 'Faithful Keeper Greaves', 226655), (216661, 216662, 220, 300, 'Faithful Keeper Pauldron', 216713), (216671, 216672, 220, 300, 'Faithful Keeper Sabatons', 226625), (216659, 216660, 220, 300, 'Faithful Keeper Support System', 217816), (216667, 216668, 220, 300, 'Faithful Keeper Vambrace', 226650), (214812, 214813, 220, 300, 'Faithful Martial Artist Body Armor', 213520), (214810, 214811, 220, 300, 'Faithful Martial Artist Boots', 213559), (214822, 214823, 220, 300, 'Faithful Martial Artist Cuirass', 216898), (214816, 214817, 220, 300, 'Faithful Martial Artist Gloves', 21979), (214818, 214819, 220, 300, 'Faithful Martial Artist Helmet', 22270), (214808, 214809, 220, 300, 'Faithful Martial Artist Pants', 213601), (214820, 214821, 220, 300, 'Faithful Martial Artist Shoulderpads', 160888), (214814, 214815, 220, 300, 'Faithful Martial Artist Sleeves', 213479), (221462, 221463, 220, 300, 'Faithful Metaphysicist Body Armor', 213523), (221456, 221457, 220, 300, 'Faithful Metaphysicist Boots', 213563), (221471, 221472, 220, 300, 'Faithful Metaphysicist Gloves', 13276), (221477, 221478, 220, 300, 'Faithful Metaphysicist Headgear', 213645), (221451, 221453, 220, 300, 'Faithful Metaphysicist Pants', 213605), (221483, 221484, 220, 300, 'Faithful Metaphysicist Shoulder Cover', 213662), (221467, 221469, 220, 300, 'Faithful Metaphysicist Sleeves', 213482), (221486, 221487, 220, 300, 'Faithful Metaphysicist Wings', 221529), (222762, 222763, 220, 300, 'Faithful Nano Technician Body Armor', 213526), (222766, 222767, 220, 300, 'Faithful Nano Technician Boots', 213566), (222746, 222747, 220, 300, 'Faithful Nano Technician Cloak', 213608), (222754, 222755, 220, 300, 'Faithful Nano Technician Gloves', 22940), (222750, 222751, 220, 300, 'Faithful Nano Technician Helmet', 213648), (222770, 222771, 220, 300, 'Faithful Nano Technician Pants', 213590), (222748, 222749, 220, 300, 'Faithful Nano Technician Shoulderpad', 160905), (222758, 222759, 220, 300, 'Faithful Nano Technician Sleeves', 213485), (161728, 161728, 1, 1, 'Faithful Robe (monster wear)', 159570), (216683, 216684, 220, 300, 'Faithful Shade Arm Tattoos', 226595), (216685, 216686, 220, 300, 'Faithful Shade Body Wraps', 226610), (216687, 216688, 220, 300, 'Faithful Shade Foot Covers', 226628), (216681, 216682, 220, 300, 'Faithful Shade Hand Wraps', 226643), (216679, 216680, 220, 300, 'Faithful Shade Headgear', 214731), (216689, 216690, 220, 300, 'Faithful Shade Leg Covers', 226658), (216677, 216678, 220, 300, 'Faithful Shade Shoulder Tattoos', 226645), (216675, 216676, 220, 300, 'Faithful Shade Support System', 214736), (214828, 214829, 220, 300, 'Faithful Soldier Body Armor', 213529), (214826, 214827, 220, 300, 'Faithful Soldier Boots', 213569), (214838, 214839, 220, 300, 'Faithful Soldier Cuirass', 216898), (214832, 214833, 220, 300, 'Faithful Soldier Gloves', 27664), (214834, 214835, 220, 300, 'Faithful Soldier Helmet', 213651), (214824, 214825, 220, 300, 'Faithful Soldier Pants', 213611), (214836, 214837, 220, 300, 'Faithful Soldier Shoulderplate', 213665), (214830, 214831, 220, 300, 'Faithful Soldier Sleeves', 213488), (230912, 230913, 10, 200, 'Faithful Spirit Flower of Control', 202170), (230916, 230917, 10, 200, 'Faithful Spirit Flower of Control', 202170), (230914, 230915, 201, 300, 'Faithful Spirit Flower of Control', 202158), (230918, 230919, 201, 300, 'Faithful Spirit Flower of Control', 202158), (230960, 230961, 40, 200, 'Faithful Spirit Flower of Conviction', 202184), (230964, 230965, 40, 200, 'Faithful Spirit Flower of Conviction', 202184), (230962, 230963, 201, 300, 'Faithful Spirit Flower of Conviction', 202184), (230966, 230967, 201, 300, 'Faithful Spirit Flower of Conviction', 202184), (230952, 230953, 40, 200, 'Faithful Spirit Flower of Dreams', 202150), (230956, 230957, 40, 200, 'Faithful Spirit Flower of Dreams', 202150), (230954, 230955, 201, 300, 'Faithful Spirit Flower of Dreams', 202150), (230958, 230959, 201, 300, 'Faithful Spirit Flower of Dreams', 202150), (230968, 230969, 40, 200, 'Faithful Spirit Flower of Force', 202204), (230972, 230973, 40, 200, 'Faithful Spirit Flower of Force', 202204), (230970, 230971, 201, 250, 'Faithful Spirit Flower of Force', 202204), (230974, 230975, 201, 250, 'Faithful Spirit Flower of Force', 202204), (218860, 218861, 220, 300, 'Faithful Trader Body Armor', 213532), (218858, 218859, 220, 300, 'Faithful Trader Boots', 213572), (218864, 218865, 220, 300, 'Faithful Trader Gloves', 27664), (218866, 218867, 220, 300, 'Faithful Trader Helmet', 213654), (218820, 218821, 220, 300, 'Faithful Trader Pants', 213581), (218868, 218869, 220, 300, 'Faithful Trader Shoulderpad', 160887), (218862, 218863, 220, 300, 'Faithful Trader Sleeves', 213491), (218870, 218871, 220, 300, 'Faithful Trader Survival Gear', 218873), (284691, 284691, 1, 1, 'Fake Beard', 284593), (297273, 297273, 1, 1, 'Falikos'' Dress', 296532), (306151, 306151, 1, 1, 'Fallen King''s Crown', 306122), (244214, 244214, 300, 300, 'Fallen Star', 131260), (119102, 119102, 1, 1, 'Fan - Model X-1', 119064), (119100, 119100, 1, 1, 'Fan - Model XZ-1', 119079), (119101, 119101, 1, 1, 'Fan - model XZ-2', 119080), (246063, 246063, 250, 250, 'Fanatic''s Jacket', 213511), (296342, 296342, 1, 1, 'Fancy Black Dress', 296344), (162848, 162848, 1, 1, 'Fancy Doll', 162843), (165176, 165177, 1, 200, 'Fancy Stethoscopic Glasses', 12711), (296529, 296529, 1, 1, 'Fancy White Dress', 296532), (232920, 232921, 1, 149, 'Fancy looking frippery', 149937), (232921, 232923, 150, 199, 'Fancy looking frippery', 149937), (232923, 232924, 200, 249, 'Fancy looking frippery', 149937), (232924, 232925, 250, 400, 'Fancy looking frippery', 149937), (217667, 217667, 1, 1, 'FandS Wearable', 84059), (248580, 248581, 22, 54, 'Fantaghiro BBI-Viral', 84025), (248588, 248588, 185, 185, 'Fantaghiro BBI-Viral Gold Star', 84025), (248586, 248587, 130, 184, 'Fantaghiro BBI-Viral Silver Liner', 84025), (248582, 248583, 55, 89, 'Fantaghiro BBI-Viral Tuft', 84025), (248584, 248585, 90, 129, 'Fantaghiro BBI-Viral Tussock', 84025), (233803, 233803, 200, 200, 'Fantastic Inner Circle Strategic Flamer', 33159), (249746, 249746, 1, 1, 'Fashion Kit - Alien Head Back Tattoo', 250183), (249744, 249744, 1, 1, 'Fashion Kit - Aqua Tank Top', 249743), (249747, 249747, 1, 1, 'Fashion Kit - Bellboy Jacket', 249743), (249748, 249748, 1, 1, 'Fashion Kit - Bellboy Pants', 250186), (249752, 249752, 1, 1, 'Fashion Kit - Bellboy Shoes', 250184), (249753, 249753, 1, 1, 'Fashion Kit - Bellboy Sleeves', 250182), (250074, 250074, 1, 1, 'Fashion Kit - Belly Dancing Outfit', 250183), (249754, 249754, 1, 1, 'Fashion Kit - Bellydancer Hand Ornaments', 250185), (250329, 250329, 1, 1, 'Fashion Kit - Bellydancer Hood', 249743), (249755, 249755, 1, 1, 'Fashion Kit - Bellydancer Sleeves', 250182), (249756, 249756, 1, 1, 'Fashion Kit - Bellydancer Top', 249743), (249757, 249757, 1, 1, 'Fashion Kit - Biker Boots', 250184), (249758, 249758, 1, 1, 'Fashion Kit - Biker Gloves', 250185), (249759, 249759, 1, 1, 'Fashion Kit - Biker Jacket', 249743), (249760, 249760, 1, 1, 'Fashion Kit - Biker Pants', 250186), (249761, 249761, 1, 1, 'Fashion Kit - Biker Sleeves', 250182), (250170, 250170, 1, 1, 'Fashion Kit - Black Sneakers', 250184), (250178, 250178, 1, 1, 'Fashion Kit - Black Tank Top', 249743), (249806, 249806, 1, 1, 'Fashion Kit - Black Thong', 250186), (250020, 250020, 1, 1, 'Fashion Kit - Black and White Disco Shoes', 250184), (249763, 249763, 1, 1, 'Fashion Kit - Blue Dress', 250183), (249764, 249764, 1, 1, 'Fashion Kit - Blue Pajamas Jacket', 249743), (249765, 249765, 1, 1, 'Fashion Kit - Blue Pajamas Pants', 250186), (249768, 249768, 1, 1, 'Fashion Kit - Blue Pajamas Sleeves', 250182), (250324, 250324, 1, 1, 'Fashion Kit - Blue Ski Mask', 249743), (250013, 250013, 1, 1, 'Fashion Kit - Blue Thong', 250186), (249769, 249769, 1, 1, 'Fashion Kit - Bomber Jacket', 249743), (249770, 249770, 1, 1, 'Fashion Kit - Bomber Jacket Sleeves', 250182), (249771, 249771, 1, 1, 'Fashion Kit - Boots of the King', 250184), (249772, 249772, 1, 1, 'Fashion Kit - Buccaneer Boots', 250184), (249773, 249773, 1, 1, 'Fashion Kit - Bunny Body', 249743), (249774, 249774, 1, 1, 'Fashion Kit - Bunny Boots', 250184), (249775, 249775, 1, 1, 'Fashion Kit - Bunny Longs', 250186), (249776, 249776, 1, 1, 'Fashion Kit - Bunny Sleeves', 250182), (249777, 249777, 1, 1, 'Fashion Kit - Camouflage Boots', 250184), (250326, 250326, 1, 1, 'Fashion Kit - Camouflage Hood', 249743), (249778, 249778, 1, 1, 'Fashion Kit - Camouflage Jacket', 249743), (249780, 249780, 1, 1, 'Fashion Kit - Camouflage Pants', 250186), (249781, 249781, 1, 1, 'Fashion Kit - Camouflage Sleeves', 250182), (249782, 249782, 1, 1, 'Fashion Kit - Captain Cloak', 250183), (249783, 249783, 1, 1, 'Fashion Kit - Champion Body', 249743), (249784, 249784, 1, 1, 'Fashion Kit - Champion Boots', 250184), (249785, 249785, 1, 1, 'Fashion Kit - Champion Gloves', 250185), (249786, 249786, 1, 1, 'Fashion Kit - Champion Pants', 250186), (249787, 249787, 1, 1, 'Fashion Kit - Champion Sleeves', 250182), (249795, 249795, 1, 1, 'Fashion Kit - Cheyenne Leather Boots', 250184), (249796, 249796, 1, 1, 'Fashion Kit - Cheyenne Leather Jacket', 249743), (249797, 249797, 1, 1, 'Fashion Kit - Cheyenne Leather Pants', 250186), (249798, 249798, 1, 1, 'Fashion Kit - Cheyenne Leather Sleeves', 250182), (249800, 249800, 1, 1, 'Fashion Kit - Clanner''s Leather Boots', 250184), (249801, 249801, 1, 1, 'Fashion Kit - Clanner''s Leather Gloves', 250185), (250072, 250072, 1, 1, 'Fashion Kit - Classic Sandals', 250184), (249874, 249874, 1, 1, 'Fashion Kit - Clerk Shirt', 249743), (249802, 249802, 1, 1, 'Fashion Kit - Clown Boots', 250184), (249906, 249906, 1, 1, 'Fashion Kit - Clown Gloves', 250185), (249803, 249803, 1, 1, 'Fashion Kit - Clown Pants', 250186), (249804, 249804, 1, 1, 'Fashion Kit - Clown Sleeves', 250182), (249805, 249805, 1, 1, 'Fashion Kit - Clown Vest', 249743), (250073, 250073, 1, 1, 'Fashion Kit - Copper Colored Disco Shoes', 250184), (249807, 249807, 1, 1, 'Fashion Kit - Cowboy Boots', 250184), (249808, 249808, 1, 1, 'Fashion Kit - Cowboy Jacket', 249743), (249809, 249809, 1, 1, 'Fashion Kit - Cowboy Pants', 250186), (249810, 249810, 1, 1, 'Fashion Kit - Cowboy Sleeves', 250182), (249812, 249812, 1, 1, 'Fashion Kit - Detective Cloak', 250183), (249813, 249813, 1, 1, 'Fashion Kit - Djellaba', 250183), (250330, 250330, 1, 1, 'Fashion Kit - Djellaba Hood', 249743), (249814, 249814, 1, 1, 'Fashion Kit - Dungaree Body', 249743), (249824, 249824, 1, 1, 'Fashion Kit - Dungaree Boots', 250184), (249830, 249830, 1, 1, 'Fashion Kit - Dungaree Pants', 250186), (249831, 249831, 1, 1, 'Fashion Kit - Dungaree Sleeves', 250182), (249794, 249794, 1, 1, 'Fashion Kit - Eagle Chest Tattoo', 249743), (249834, 249834, 1, 1, 'Fashion Kit - Entertainer Boots', 250184), (249835, 249835, 1, 1, 'Fashion Kit - Entertainer Gloves', 250185), (249841, 249841, 1, 1, 'Fashion Kit - Entertainer Longs', 250186), (249872, 249872, 1, 1, 'Fashion Kit - Entertainer Sleeves', 250182), (249873, 249873, 1, 1, 'Fashion Kit - Entertainer Top', 249743), (249875, 249875, 1, 1, 'Fashion Kit - Executive Shirt', 249743), (249876, 249876, 1, 1, 'Fashion Kit - Executive Shirt Sleeves', 250182), (249877, 249877, 1, 1, 'Fashion Kit - Firefighter Boots', 250184), (249879, 249879, 1, 1, 'Fashion Kit - Firefighter Gloves', 250185), (249880, 249880, 1, 1, 'Fashion Kit - Firefighter Jacket', 249743), (249878, 249878, 1, 1, 'Fashion Kit - Firefighter Pants', 250186), (249887, 249887, 1, 1, 'Fashion Kit - Firefighter Sleeves', 250182), (249833, 249833, 1, 1, 'Fashion Kit - Fish Arm Tattoo', 250182), (249893, 249893, 1, 1, 'Fashion Kit - Flapper Blouse', 249743), (249899, 249899, 1, 1, 'Fashion Kit - Flapper Gloves', 250185), (249909, 249909, 1, 1, 'Fashion Kit - Flapper Shoes', 250184), (249910, 249910, 1, 1, 'Fashion Kit - Flapper Sleeves', 250182), (249914, 249914, 1, 1, 'Fashion Kit - Flight Attendant Jacket', 249743), (249925, 249925, 1, 1, 'Fashion Kit - Flight Attendant Miniskirt', 250186), (249935, 249935, 1, 1, 'Fashion Kit - Flight Attendant Shoes', 250184), (249928, 249928, 1, 1, 'Fashion Kit - Flight Attendant Sleeves', 250182), (249938, 249938, 1, 1, 'Fashion Kit - French Maid Blouse', 249743), (249956, 249956, 1, 1, 'Fashion Kit - French Maid Miniskirt', 250186), (249959, 249959, 1, 1, 'Fashion Kit - French Maid Sleeves', 250182), (249962, 249962, 1, 1, 'Fashion Kit - Fur Cloak', 250183), (250328, 250328, 1, 1, 'Fashion Kit - Fur Cloak Hood', 249743), (249799, 249799, 1, 1, 'Fashion Kit - Gecko Arm Tattoo', 250182), (249968, 249968, 1, 1, 'Fashion Kit - Golden Cloak', 250183), (249971, 249971, 1, 1, 'Fashion Kit - Green Tank Top', 249743), (250000, 250000, 1, 1, 'Fashion Kit - Grey Sneakers', 250184), (249976, 249976, 1, 1, 'Fashion Kit - Gunman Boots', 250184), (249981, 249981, 1, 1, 'Fashion Kit - Gunman Pants', 250186), (249983, 249983, 1, 1, 'Fashion Kit - Gunman Shirt', 249743), (249989, 249989, 1, 1, 'Fashion Kit - Gunman Sleeves', 250182), (249993, 249993, 1, 1, 'Fashion Kit - Heroic Body', 249743), (249995, 249995, 1, 1, 'Fashion Kit - Heroic Boots', 250184), (249996, 249996, 1, 1, 'Fashion Kit - Heroic Gloves', 250185), (249997, 249997, 1, 1, 'Fashion Kit - Heroic Pants', 250186), (249998, 249998, 1, 1, 'Fashion Kit - Heroic Sleeves', 250182), (250160, 250160, 1, 1, 'Fashion Kit - Hula Hula Outfit', 250183), (249999, 249999, 1, 1, 'Fashion Kit - Indigo Cloak', 250183), (250008, 250008, 1, 1, 'Fashion Kit - Komodo Arm Tattoo', 250182), (250014, 250014, 1, 1, 'Fashion Kit - Lab Cloak', 250183), (250016, 250016, 1, 1, 'Fashion Kit - Leather Boots', 250184), (249762, 249762, 1, 1, 'Fashion Kit - Leather Cloak', 250183), (250017, 250017, 1, 1, 'Fashion Kit - Leather Gloves', 250185), (250018, 250018, 1, 1, 'Fashion Kit - Leather Hipster Pants', 250186), (250019, 250019, 1, 1, 'Fashion Kit - Leather Hipster Shoes', 250184), (249965, 249965, 1, 1, 'Fashion Kit - Leather Robe', 250183), (250015, 250015, 1, 1, 'Fashion Kit - Mirage Djellaba', 250183), (250331, 250331, 1, 1, 'Fashion Kit - Mirage Djellaba Hood', 249743), (250021, 250021, 1, 1, 'Fashion Kit - Mummy Arm Wraps', 250182), (250022, 250022, 1, 1, 'Fashion Kit - Mummy Body Wraps', 249743), (250023, 250023, 1, 1, 'Fashion Kit - Mummy Foot Wraps', 250184), (250024, 250024, 1, 1, 'Fashion Kit - Mummy Hand Wraps', 250185), (250323, 250323, 1, 1, 'Fashion Kit - Mummy Head Wraps', 249743), (250025, 250025, 1, 1, 'Fashion Kit - Mummy Leg Wraps', 250186), (250172, 250172, 1, 1, 'Fashion Kit - Mystic Robe', 250183), (249832, 249832, 1, 1, 'Fashion Kit - New Sleeves', 250182), (250026, 250026, 1, 1, 'Fashion Kit - Office Worker''s Shirt', 249743), (250027, 250027, 1, 1, 'Fashion Kit - Office Worker''s Sleeves', 250182), (250028, 250028, 1, 1, 'Fashion Kit - Omni-Pol Leisure Uniform Boots', 250184), (250029, 250029, 1, 1, 'Fashion Kit - Omni-Pol Leisure Uniform Jacket', 249743), (250030, 250030, 1, 1, 'Fashion Kit - Omni-Pol Leisure Uniform Pants', 250186), (250031, 250031, 1, 1, 'Fashion Kit - Omni-Pol Leisure Uniform Sleeves', 250182), (250032, 250032, 1, 1, 'Fashion Kit - Oriental Shoes', 250184), (249745, 249745, 1, 1, 'Fashion Kit - Ornamented Sun Back Tattoo', 250183), (250141, 250141, 1, 1, 'Fashion Kit - Pajamas Slippers', 250184), (250033, 250033, 1, 1, 'Fashion Kit - Pants of the King', 250186), (250034, 250034, 1, 1, 'Fashion Kit - Parade Uniform Boots', 250184), (250037, 250037, 1, 1, 'Fashion Kit - Parade Uniform General Sleeves', 250182), (250046, 250046, 1, 1, 'Fashion Kit - Parade Uniform Gloves', 250185), (250049, 250049, 1, 1, 'Fashion Kit - Parade Uniform Jacket', 249743), (250050, 250050, 1, 1, 'Fashion Kit - Parade Uniform Major Sleeves', 250182), (250051, 250051, 1, 1, 'Fashion Kit - Parade Uniform Pants', 250186), (250052, 250052, 1, 1, 'Fashion Kit - Parade Uniform Private Sleeves', 250182), (250053, 250053, 1, 1, 'Fashion Kit - Parade Uniform Sergeant Sleeves', 250182), (250055, 250055, 1, 1, 'Fashion Kit - Pink Cloak', 250183), (250054, 250054, 1, 1, 'Fashion Kit - Pink Djellaba', 250183), (250332, 250332, 1, 1, 'Fashion Kit - Pink Djellaba Hood', 249743), (250056, 250056, 1, 1, 'Fashion Kit - Pink Thong', 250186), (250057, 250057, 1, 1, 'Fashion Kit - Pirate Cloak', 250183), (250058, 250058, 1, 1, 'Fashion Kit - Pirate Jacket', 249743), (250059, 250059, 1, 1, 'Fashion Kit - Pirate Pants', 250186), (250060, 250060, 1, 1, 'Fashion Kit - Pirate Shoes', 250184), (250061, 250061, 1, 1, 'Fashion Kit - Pirate Sleeves', 250182), (250062, 250062, 1, 1, 'Fashion Kit - Plastic Hipster Pants', 250186), (250063, 250063, 1, 1, 'Fashion Kit - Plastic Hipster Shoes', 250184), (250064, 250064, 1, 1, 'Fashion Kit - Princess Robe', 250183), (250065, 250065, 1, 1, 'Fashion Kit - Queen Blouse', 249743), (250066, 250066, 1, 1, 'Fashion Kit - Queen Sleeves', 250182), (250067, 250067, 1, 1, 'Fashion Kit - Raider''s Jacket', 249743), (250070, 250070, 1, 1, 'Fashion Kit - Raider''s Sleeves', 250182), (250327, 250327, 1, 1, 'Fashion Kit - Red King Hood', 249743), (250134, 250134, 1, 1, 'Fashion Kit - Red Pajamas Pants', 250186), (250138, 250138, 1, 1, 'Fashion Kit - Red Pajamas Shirt', 249743), (250140, 250140, 1, 1, 'Fashion Kit - Red Pajamas Sleeves', 250182), (250071, 250071, 1, 1, 'Fashion Kit - Red Royal Robe', 250183), (250142, 250142, 1, 1, 'Fashion Kit - Red Tank Top', 249743), (250075, 250075, 1, 1, 'Fashion Kit - Shirt of the King', 249743), (250076, 250076, 1, 1, 'Fashion Kit - Short Flapper Skirt', 250186), (250077, 250077, 1, 1, 'Fashion Kit - Silk Hipster Pants', 250186), (250078, 250078, 1, 1, 'Fashion Kit - Silk Hipster Shoes', 250184), (250079, 250079, 1, 1, 'Fashion Kit - Silk Kimono', 250183), (250081, 250081, 1, 1, 'Fashion Kit - Ski Suit Boots', 250184), (250082, 250082, 1, 1, 'Fashion Kit - Ski Suit Gloves', 250185), (250083, 250083, 1, 1, 'Fashion Kit - Ski Suit Jacket', 249743), (250085, 250085, 1, 1, 'Fashion Kit - Ski Suit Pants', 250186), (250086, 250086, 1, 1, 'Fashion Kit - Ski Suit Sleeves', 250182), (250087, 250087, 1, 1, 'Fashion Kit - Sleeves of the King', 250182), (250088, 250088, 1, 1, 'Fashion Kit - Slick Jacket', 249743), (250089, 250089, 1, 1, 'Fashion Kit - Slick Pants', 250186), (250090, 250090, 1, 1, 'Fashion Kit - Slick Shoes', 250184), (250091, 250091, 1, 1, 'Fashion Kit - Slick Sleeves', 250182), (250143, 250143, 1, 1, 'Fashion Kit - Slippers', 250184), (250325, 250325, 1, 1, 'Fashion Kit - Sorcerer''s Hood', 249743), (250092, 250092, 1, 1, 'Fashion Kit - Sorcerer''s Robe', 250183), (250132, 250132, 1, 1, 'Fashion Kit - Stalking Robe', 250183), (250133, 250133, 1, 1, 'Fashion Kit - String Vest', 249743), (250164, 250164, 1, 1, 'Fashion Kit - Toga', 250183), (250165, 250165, 1, 1, 'Fashion Kit - Trapeze Artist Gloves', 250185), (250166, 250166, 1, 1, 'Fashion Kit - Trapeze Artist Longs', 250186), (250167, 250167, 1, 1, 'Fashion Kit - Trapeze Artist Shoes', 250184), (250168, 250168, 1, 1, 'Fashion Kit - Trapeze Artist Sleeves', 250182), (250169, 250169, 1, 1, 'Fashion Kit - Trapeze Artist Top', 249743), (250171, 250171, 1, 1, 'Fashion Kit - Verdant Cloak', 250183), (250177, 250177, 1, 1, 'Fashion Kit - White Tank Top', 249743), (250174, 250174, 1, 1, 'Fashion Kit - Yellow Tank Top', 249743), (250176, 250176, 1, 1, 'Fashion Kit - Zen Robe', 250183), (160738, 160739, 1, 200, 'Fashionable Energy Ring', 151918), (82214, 82214, 1, 1, 'Fast Attack', 82201), (101641, 101642, 1, 200, 'Fast Attack Cluster - Bright (Right-Hand)', 35981), (101639, 101640, 1, 200, 'Fast Attack Cluster - Faded (Right-Arm)', 35980), (101643, 101644, 1, 200, 'Fast Attack Cluster - Shiny (Left-Hand)', 35982), (165819, 165820, 201, 300, 'Fast Attack Refined Cluster - Bright (Right-Hand)', 35981), (165817, 165818, 201, 300, 'Fast Attack Refined Cluster - Faded (Right-Arm)', 35980), (165821, 165822, 201, 300, 'Fast Attack Refined Cluster - Shiny (Left-Hand)', 35982), (129017, 129018, 1, 50, 'Fast Chocolate Surprise', 85164), (272306, 272307, 1, 300, 'FastAttack Weapons Upgrade Kit', 272252), (200205, 200205, 235, 235, 'Fates ICC Armor Boots', 22884), (200226, 200226, 235, 235, 'Fates ICC Armor Gloves', 31656), (200247, 200247, 235, 235, 'Fates ICC Armor Helmet', 31734), (200268, 200268, 235, 235, 'Fates ICC Armor Pants', 22919), (200289, 200289, 235, 235, 'Fates ICC Armor Sleeves', 31644), (200310, 200310, 235, 235, 'Fates ICC Body Armor', 31648), (296475, 296475, 1, 1, 'Father Time Costume', 296487), (296502, 296502, 1, 1, 'Father Time Hood', 296487), (292521, 292521, 1, 1, 'Fatou Pattern Programming Utility Device', 292789), (292535, 292535, 1, 1, 'Fatou Upgrade Plate', 292790), (236663, 236663, 1, 1, 'Fatty Sulphurous Ointment', 236565), (154069, 150213, 1, 70, 'Fayalite Flamberge', 113987), (161609, 161610, 1, 49, 'Fazekas Crystal I', 161144), (161611, 161612, 50, 99, 'Fazekas Crystal II', 161144), (161613, 161614, 100, 149, 'Fazekas Crystal III', 161144), (161615, 161616, 150, 199, 'Fazekas Crystal IV', 161144), (161617, 161617, 200, 200, 'Fazekas Crystal V', 161144), (286219, 286219, 200, 200, 'Fear-Infused Wax', 284331), (151903, 151903, 50, 50, 'Fear-forged Blade', 113986), (130055, 130056, 31, 99, 'Featherwood Staff', 136738), (44228, 44228, 1, 1, 'Feeble Automaton Replacement', 11646), (253045, 253045, 1, 1, 'Feel', 239169), (160431, 160432, 1, 200, 'Feet of the Servants of Eight', 21866), (161575, 161576, 1, 49, 'Felix Crystal I', 161131), (161577, 161578, 50, 99, 'Felix Crystal II', 161131), (161579, 161580, 100, 149, 'Felix Crystal III', 161131), (161581, 161582, 150, 199, 'Felix Crystal IV', 161131), (161583, 161583, 200, 200, 'Felix Crystal V', 161131), (31238, 31238, 1, 1, 'Female Golden Hotpants', 31318), (31109, 31109, 1, 1, 'Female Kung-Fu Suit', 88044), (31107, 31107, 1, 1, 'Female Oriental Suit', 88039), (284554, 284554, 1, 1, 'Female Suit of The Mockers', 255286), (292534, 292534, 1, 1, 'Ferrous Dacite Fiber', 292791), (247788, 247788, 100, 100, 'Fertilized Giant Chirop Egg', 20405), (304218, 304218, 1, 1, 'Festive Sweater', 304278), (304221, 304221, 1, 1, 'Festive Tights of the North', 304277), (305962, 305962, 1, 1, 'Fetid Vagabond Cloak', 22898), (128911, 128912, 40, 109, 'Fett j-8 Flammable', 85173), (128913, 128914, 110, 199, 'Fett j-8.3 Flammable', 85173), (128915, 128915, 200, 200, 'Fett j-8.8 Flammable', 85173), (296055, 296055, 1, 1, 'FfynnonGarw''s T-shirt', 296151), (296057, 296057, 1, 1, 'FfynnonGarw''s T-shirt Spawner', 296151), (152100, 152101, 61, 90, 'Fiddle Rifle', 13312), (153708, 153708, 1, 1, 'Fiddle Rifle Construction Manual', 37933), (227329, 227330, 1, 500, 'Field Bandage', 239147), (227331, 227332, 1, 500, 'Field Bandage', 239147), (227333, 227334, 1, 500, 'Field Bandage', 239147), (164557, 164558, 1, 200, 'Field Quantum Physics All-Purpose Tool', 20410), (55692, 55691, 1, 200, 'Field Quantum Physics Tutoring Device', 300882), (211259, 211259, 300, 300, 'Fiery Flux Pistol', 33161), (274583, 274583, 1, 1, 'Filing Cabinet of Eponyx', 255945), (130627, 130627, 1, 1, 'Filiokkus Berry', 37968), (269890, 269890, 200, 200, 'Filtered Permafrost Residue', 100323), (214897, 214897, 1, 1, 'Final piece of Gilthars Blueprint', 130748), (225882, 225883, 1, 500, 'Find the Flaw', 239091), (225884, 225885, 1, 500, 'Find the Flaw', 239091), (225886, 225887, 1, 500, 'Find the Flaw', 239091), (163322, 163323, 150, 199, 'Fine Division 9 Plasmaprojector', 21145), (243767, 243768, 100, 149, 'Fine Smith Shattergun', 113988), (243769, 243770, 150, 199, 'Fine Smith Shattergun', 113988), (243771, 243772, 200, 249, 'Fine Smith Shattergun', 113988), (243773, 243774, 250, 299, 'Fine Smith Shattergun', 113988), (243775, 243775, 300, 300, 'Fine Smith Shattergun', 113988), (209273, 209273, 50, 50, 'Fine Tuned MTI Pocket Launcher', 13322), (142799, 142800, 141, 180, 'Fine Tuned Madam Freeze', 13336), (124763, 124764, 141, 160, 'Fine-Tuned BBI WMMA CAW', 13311), (122515, 122516, 141, 160, 'Fine-Tuned Biogun', 38056), (122021, 122022, 141, 160, 'Fine-Tuned Blackened Blaster', 13321), (139786, 139786, 1, 1, 'Fine-Tuned Blackened Blaster Construction Manual', 136329), (122097, 122098, 141, 160, 'Fine-Tuned Blackened Blaster Rifle', 13313), (161339, 161339, 1, 1, 'Fine-Tuned Blackened Blaster Rifle Construction Manual', 136329), (122610, 122611, 141, 160, 'Fine-Tuned Blackhole Mk IX', 33171), (141314, 141314, 1, 1, 'Fine-Tuned Blackhole Mk IX Construction Manual', 136329), (122781, 122782, 141, 160, 'Fine-Tuned Bow-Blaster', 114013), (121869, 121870, 141, 160, 'Fine-Tuned Chunkprojector', 21144), (138872, 138872, 1, 1, 'Fine-Tuned Chunkprojector Construction Manual', 136329), (122211, 122212, 281, 320, 'Fine-Tuned DNA-Locked Blaster Rifle', 13313), (121812, 121813, 141, 160, 'Fine-Tuned Disaffiliation Sniper', 21146), (138093, 138093, 1, 1, 'Fine-Tuned Disaffiliation Sniper Construction Manual', 136329), (249849, 249850, 141, 160, 'Fine-Tuned Dual Razor Disaffiliation Sniper', 21146), (122135, 122136, 141, 160, 'Fine-Tuned E-Beamer', 21150), (138449, 138449, 1, 1, 'Fine-Tuned E-Beamer Construction Manual', 136329), (122249, 122250, 141, 160, 'Fine-Tuned Electrical Pacifier', 21150), (123319, 123320, 141, 160, 'Fine-Tuned Enriched Uranium Sprayer', 21148), (122268, 122269, 141, 160, 'Fine-Tuned Eradicator XCI-52', 13314), (204968, 204969, 150, 199, 'Fine-Tuned Eyemutant Orb Laser', 152424), (124744, 124745, 141, 160, 'Fine-Tuned FN P00', 21148), (121926, 121927, 141, 160, 'Fine-Tuned Flamethrower', 19800), (139402, 139402, 1, 1, 'Fine-Tuned Flamethrower Construction Manual', 136329), (124888, 124889, 171, 199, 'Fine-Tuned GE ME30 Mom', 13322), (124981, 124982, 141, 160, 'Fine-Tuned GE XM-559 Man-Portable Laser', 21151), (121945, 121946, 141, 160, 'Fine-Tuned Gatling Saw 20k', 84025), (122881, 122882, 141, 160, 'Fine-Tuned Grenade-Thrower', 13336), (141617, 141617, 1, 1, 'Fine-Tuned Grenade-Thrower Construction Manual', 136329), (123147, 123148, 141, 158, 'Fine-Tuned Heavy Gamma-Beamer', 33158), (121907, 121908, 141, 160, 'Fine-Tuned Heavy Grinner', 21147), (139202, 139202, 1, 1, 'Fine-Tuned Heavy Grinner Construction Manual', 136329), (122686, 122687, 141, 160, 'Fine-Tuned Heavy Lead Sprayer', 21148), (141486, 141486, 1, 1, 'Fine-Tuned Heavy Lead Sprayer Construction Manual', 136329), (124943, 124944, 141, 160, 'Fine-Tuned IEC Flashpoint Laser Rifle', 33146), (125019, 125020, 141, 160, 'Fine-Tuned Joint Clans Exocet II', 85167), (125038, 125039, 141, 160, 'Fine-Tuned Joint Clans Patriot', 114013), (248573, 248574, 141, 160, 'Fine-Tuned Kaetans Supernova', 33146), (124657, 124658, 141, 160, 'Fine-Tuned Kalinkanov ZU-113 Security Weapon', 21148), (122724, 122725, 141, 160, 'Fine-Tuned Kevlar Bow', 85167), (124612, 124613, 161, 180, 'Fine-Tuned MTI MP200', 21147), (124695, 124696, 141, 160, 'Fine-Tuned MTI MPK-22 Briefcase Gun', 13311), (124638, 124639, 141, 180, 'Fine-Tuned MTI UMP22', 114016), (124676, 124677, 141, 160, 'Fine-Tuned Malorian Arms M25 Goodgun', 33153), (122439, 122440, 141, 160, 'Fine-Tuned Mausser Particle Streamer', 31807), (140930, 140930, 1, 1, 'Fine-Tuned Mausser Particle Streamer Construction Manual', 136329), (123052, 123053, 141, 160, 'Fine-Tuned Medium Shotgun', 13340), (122192, 122193, 141, 160, 'Fine-Tuned Megajolt', 13322), (140358, 140358, 1, 1, 'Fine-Tuned Megajolt Construction Manual', 136329), (248603, 248604, 141, 160, 'Fine-Tuned Merren Flamethrower', 19800), (123033, 123034, 141, 160, 'Fine-Tuned Mini-Shotgun', 13341), (142197, 142197, 1, 1, 'Fine-Tuned Mini-Shotgun Construction Manual', 136329), (123223, 123224, 155, 169, 'Fine-Tuned Nano-Charged Assault Rifle', 45783), (123243, 123244, 155, 169, 'Fine-Tuned Nano-Charged Rifle', 45782), (123433, 123434, 141, 160, 'Fine-Tuned Netgun', 13322), (124725, 124726, 141, 160, 'Fine-Tuned Nord Armwerk MAX', 21144), (123281, 123282, 143, 161, 'Fine-Tuned Nova Flow - Mk IV', 33144), (123585, 123586, 141, 158, 'Fine-Tuned OT 0220 22mm Combat Magnum', 31808), (124905, 124906, 141, 160, 'Fine-Tuned OT M-00 Crystal', 13336), (124812, 124813, 141, 160, 'Fine-Tuned OT M-110 Renegade SAW', 13336), (124831, 124832, 141, 160, 'Fine-Tuned OT M-70 HardRain GPMG', 13336), (154814, 154814, 200, 200, 'Fine-Tuned OT Rebuilt Suppressor', 33153), (124574, 124575, 141, 160, 'Fine-Tuned OT Saladin', 21148), (122534, 122535, 141, 160, 'Fine-Tuned Omni-Flamer Strategic', 33159), (122553, 122554, 141, 160, 'Fine-Tuned Omni-Pol Standard Flamer', 33160), (125095, 125096, 141, 160, 'Fine-Tuned Oneida Razor Half-Bow', 114013), (124869, 124870, 141, 160, 'Fine-Tuned Planet Gripon Arms Hard-Boomer', 13311), (121888, 121889, 141, 160, 'Fine-Tuned Plasmaprojector', 21145), (138978, 138978, 1, 1, 'Fine-Tuned Plasmaprojector Construction Manual', 136329), (249863, 249864, 141, 160, 'Fine-Tuned Razorback Disaffiliation Sniper', 21146), (125057, 125058, 141, 160, 'Fine-Tuned Reet-Tech Junior Urban Crossbow', 114013), (125000, 125001, 141, 160, 'Fine-Tuned Reet-Tech Stryker X', 85167), (125076, 125077, 141, 160, 'Fine-Tuned Reet-Tech Venom Compound Bow', 85167), (123604, 123605, 141, 158, 'Fine-Tuned Sentinel 20mm Snub Pistol', 31811), (248535, 248536, 141, 160, 'Fine-Tuned Sharky''s Kevlar Bow', 85167), (123300, 123301, 147, 162, 'Fine-Tuned Slugger', 33154), (122325, 122326, 141, 160, 'Fine-Tuned Stanton Stunner IV', 13313), (122230, 122231, 141, 160, 'Fine-Tuned Stigma Rifle', 33155), (121793, 121794, 141, 160, 'Fine-Tuned Subturbine', 21151), (137847, 137847, 1, 1, 'Fine-Tuned Subturbine Construction Manual', 136329), (122572, 122573, 141, 160, 'Fine-Tuned Sunburst Mk III', 33148), (143858, 143859, 141, 160, 'Fine-Tuned Sunburst Mk IV', 33148), (122591, 122592, 141, 160, 'Fine-Tuned Supernova Mk VI', 33146), (141122, 141122, 1, 1, 'Fine-Tuned Supernova Mk VI Construction Manual', 136329), (123204, 123205, 141, 160, 'Fine-Tuned Suppressor', 31807), (141978, 141978, 1, 1, 'Fine-Tuned Suppressor Construction Manual', 136329), (124962, 124963, 141, 160, 'Fine-Tuned Techtronica Neural Disruptor', 21145), (124793, 124794, 141, 160, 'Fine-Tuned Tsunami Raiden MP-Drum', 13311), (124850, 124851, 141, 160, 'Fine-Tuned Vektor M-31 Automatic Grenade Launcher', 13336), (124924, 124925, 141, 160, 'Fine-Tuned Westinghouse IM-50 Plasma Burner', 33146), (248622, 248623, 141, 160, 'Fine-Tuned Xnemth Plasmaprojector', 21145), (248895, 248926, 70, 79, 'Fine-tuned Airframed Blaster Betatype', 33158), (128633, 128634, 151, 199, 'Fine-tuned Ares Arms AR-90 Jet Rifle', 21149), (128885, 128886, 141, 160, 'Fine-tuned Arwen MM-50 Grenade Launcher', 13336), (128772, 128773, 141, 160, 'Fine-tuned Fabrique Des Armes Bizon 20-19', 21144), (128729, 128730, 141, 160, 'Fine-tuned Galahad Inc. 077 Personal Weapon', 21148), (128753, 128754, 141, 160, 'Fine-tuned Galahad Inc. Tactical Machine Pistol 1', 21147), (128669, 128670, 141, 160, 'Fine-tuned HSR Arms Tech Assault IV', 21148), (128688, 128689, 141, 160, 'Fine-tuned HSR Arms Tech Assault V', 21148), (128622, 128623, 141, 160, 'Fine-tuned MTI G-36K', 33155), (253229, 253230, 210, 239, 'Fine-tuned Nizno''s Bomb Blaster', 13336), (128853, 128854, 141, 160, 'Fine-tuned OET Co. MP-21 Tactical Machine Pistol', 21148), (128806, 128807, 141, 160, 'Fine-tuned OT Cobra M-33', 21148), (128791, 128791, 80, 80, 'Fine-tuned Old English Trading Co. SPP-502', 21148), (128650, 128651, 141, 160, 'Fine-tuned Seburo C-99a', 21144), (128904, 128905, 141, 160, 'Fine-tuned Steiner LM-5 Assault Laser', 33171), (128825, 128826, 141, 160, 'Fine-tuned Zastaba M0-2 Assault Weapon (Zero)', 33153), (227643, 227643, 220, 220, 'Finely Refined Notum', 151030), (204882, 204883, 1, 300, 'Finger Ping-Stinger', 11614), (245355, 245355, 150, 150, 'Fingerspitzgefuhl', 21871), (157281, 157281, 1, 1, 'Fink Fragrant Morning Enhanced Coffee Block', 156506), (101390, 101391, 1, 200, 'Fire AC Cluster - Bright (Left-Hand)', 35984), (101388, 101389, 1, 200, 'Fire AC Cluster - Faded (Right-Hand)', 35983), (101392, 101393, 1, 200, 'Fire AC Cluster - Shiny (Waist)', 35985), (165531, 165532, 201, 300, 'Fire AC Refined Cluster - Bright (Left-Hand)', 35984), (165529, 165530, 201, 300, 'Fire AC Refined Cluster - Faded (Right-Hand)', 35983), (165533, 165534, 201, 300, 'Fire AC Refined Cluster - Shiny (Waist)', 35985), (162392, 162392, 10, 10, 'Fire Adventure Shield', 12668), (158580, 158581, 1, 200, 'Fire Arrowheads', 159120), (158033, 158033, 10, 10, 'Fire Deflection Shield', 12668), (300455, 300455, 1, 1, 'Fire Distinguisher', 292922), (253107, 253107, 1, 1, 'Fire Frenzy', 255642), (267741, 267741, 250, 250, 'Fire Gland Sample', 144705), (142904, 142905, 1, 200, 'Fire Impact Igniter', 130823), (203068, 203069, 80, 200, 'Fire Sprouting Turret', 202221), (203072, 203073, 80, 200, 'Fire Sprouting Turret', 202221), (203070, 203071, 201, 250, 'Fire Sprouting Turret', 202221), (203074, 203075, 201, 250, 'Fire Sprouting Turret', 202221), (157401, 157401, 1, 1, 'Fire Thirtytwo Rattlesnake Advantage', 81769), (231229, 231229, 1, 1, 'Fire Vulnerable Reflect', 84059), (100295, 100295, 154, 154, 'Fire and Radiation Chamber', 100308), (232804, 232805, 1, 149, 'Fire opal', 286921), (232805, 232807, 150, 199, 'Fire opal', 286921), (232807, 232808, 200, 249, 'Fire opal', 286921), (232808, 232809, 250, 400, 'Fire opal', 286921), (100294, 100294, 1, 1, 'Fire_Slapon_XX03', 100308), (248857, 248857, 1, 1, 'Firefighter Boots of Circle G', 255350), (248858, 248858, 1, 1, 'Firefighter Gloves of Circle G', 255167), (248856, 248856, 1, 1, 'Firefighter Jacket of Circle G', 255305), (248859, 248859, 1, 1, 'Firefighter Pants of Circle G', 255186), (248855, 248855, 1, 1, 'Firefighter Sleeves of Circle G', 255247), (295851, 295851, 1, 1, 'First Aid', 277964), (101515, 101516, 1, 200, 'First Aid Cluster - Bright (Right-Hand)', 35987), (101513, 101514, 1, 200, 'First Aid Cluster - Faded (Left-Hand)', 35986), (101517, 101518, 1, 200, 'First Aid Cluster - Shiny (Head)', 35988), (165675, 165676, 201, 300, 'First Aid Refined Cluster - Bright (Right-Hand)', 35987), (165673, 165674, 201, 300, 'First Aid Refined Cluster - Faded (Left-Hand)', 35986), (165677, 165678, 201, 300, 'First Aid Refined Cluster - Shiny (Head)', 35988), (55695, 55695, 1, 1, 'First Aid Syringe', 11748), (206224, 206224, 1, 1, 'First Circle of the Inner Sanctum', 84065), (206225, 206225, 1, 1, 'First Circle of the Inner Sanctum', 84065), (206226, 206226, 1, 1, 'First Circle of the Inner Sanctum', 84065), (244644, 244644, 250, 250, 'First Creation of the Sagittarius', 226595), (239832, 239832, 1, 1, 'First Portal Technician', 136596), (213447, 213448, 100, 160, 'First Tier Adventurer Boots', 213534), (213445, 213446, 100, 160, 'First Tier Adventurer Jobe Suit Body', 213493), (213441, 213442, 100, 160, 'First Tier Adventurer Jobe Suit Gloves', 21871), (213449, 213450, 100, 160, 'First Tier Adventurer Jobe Suit Pants', 213574), (213443, 213444, 100, 160, 'First Tier Adventurer Jobe Suit Sleeves', 213593), (218570, 218571, 100, 160, 'First Tier Agent Body Armor', 213496), (218572, 218573, 100, 160, 'First Tier Agent Boots', 213537), (218566, 218567, 100, 160, 'First Tier Agent Gloves', 22940), (218574, 218575, 100, 160, 'First Tier Agent Pants', 213580), (218568, 218569, 100, 160, 'First Tier Agent Sleeves', 213457), (219100, 219101, 100, 160, 'First Tier Bureaucrat Boots', 213540), (219086, 219087, 100, 160, 'First Tier Bureaucrat Gloves', 27661), (219096, 219097, 100, 160, 'First Tier Bureaucrat Pants', 213454), (219088, 219089, 100, 160, 'First Tier Bureaucrat Sleeves', 213460), (219092, 219093, 100, 160, 'First Tier Bureaucrat Vest', 213499), (217702, 217703, 100, 160, 'First Tier Doctor Suit Body', 213502), (217704, 217705, 100, 160, 'First Tier Doctor Suit Boots', 213543), (217698, 217699, 100, 160, 'First Tier Doctor Suit Gloves', 13281), (217706, 217707, 100, 160, 'First Tier Doctor Suit Pants', 213586), (217700, 217701, 100, 160, 'First Tier Doctor Suit Sleeves', 213463), (222933, 222934, 100, 160, 'First Tier Enforcer Boots', 213545), (222935, 222936, 100, 160, 'First Tier Enforcer Breastplate', 213505), (222941, 222942, 100, 160, 'First Tier Enforcer Gauntlets', 13281), (222931, 222932, 100, 160, 'First Tier Enforcer Pants', 213454), (222939, 222940, 100, 160, 'First Tier Enforcer Sleeves', 213465), (218254, 218255, 100, 160, 'First Tier Engineer Body', 213508), (218256, 218257, 100, 160, 'First Tier Engineer Boots', 213548), (218250, 218251, 100, 160, 'First Tier Engineer Gloves', 21871), (218258, 218259, 100, 160, 'First Tier Engineer Pants', 213590), (218252, 218253, 100, 160, 'First Tier Engineer Sleeves', 213468), (218457, 218458, 100, 160, 'First Tier Fixer Body Armor', 213511), (218455, 218456, 100, 160, 'First Tier Fixer Boots', 213551), (218461, 218462, 100, 160, 'First Tier Fixer Gloves', 27661), (218453, 218454, 100, 160, 'First Tier Fixer Pants', 213454), (218459, 218460, 100, 160, 'First Tier Fixer Sleeves', 213471), (218054, 218055, 100, 160, 'First Tier Keeper Cuirass', 226608), (218058, 218059, 100, 160, 'First Tier Keeper Gauntlets', 226641), (218050, 218051, 100, 160, 'First Tier Keeper Greaves', 226656), (218052, 218053, 100, 160, 'First Tier Keeper Sabatons', 226626), (218056, 218057, 100, 160, 'First Tier Keeper Vambrace', 226593), (217686, 217687, 100, 160, 'First Tier Martial Artist Body Armor', 213521), (217688, 217689, 100, 160, 'First Tier Martial Artist Boots', 213560), (217682, 217683, 100, 160, 'First Tier Martial Artist Gloves', 31655), (217690, 217691, 100, 160, 'First Tier Martial Artist Pants', 213602), (217684, 217685, 100, 160, 'First Tier Martial Artist Sleeves', 213480), (222655, 222656, 100, 160, 'First Tier Metaphysicist Body Armor', 213522), (222657, 222658, 100, 160, 'First Tier Metaphysicist Boots', 213562), (222651, 222652, 100, 160, 'First Tier Metaphysicist Gloves', 21871), (222659, 222660, 100, 160, 'First Tier Metaphysicist Pants', 213604), (222653, 222654, 100, 160, 'First Tier Metaphysicist Sleeves', 213481), (222871, 222872, 100, 160, 'First Tier Nano Technician Body Armor', 213525), (222867, 222868, 100, 160, 'First Tier Nano Technician Boots', 213565), (222879, 222880, 100, 160, 'First Tier Nano Technician Gloves', 21871), (222865, 222866, 100, 160, 'First Tier Nano Technician Pants', 213590), (222875, 222876, 100, 160, 'First Tier Nano Technician Sleeves', 213484), (222927, 222928, 100, 160, 'First Tier Shade Arm Tattoos', 226599), (222925, 222926, 100, 160, 'First Tier Shade Body Wraps', 226615), (222923, 222924, 100, 160, 'First Tier Shade Foot Covers', 226632), (222929, 222930, 100, 160, 'First Tier Shade Hand Wraps', 226647), (222921, 222922, 100, 160, 'First Tier Shade Leg Covers', 226662), (217033, 217034, 100, 160, 'First Tier Soldier Jobe Body Armor', 213528), (217035, 217036, 100, 160, 'First Tier Soldier Jobe Boots', 213568), (217029, 217030, 100, 160, 'First Tier Soldier Jobe Gloves', 37630), (217037, 217038, 100, 160, 'First Tier Soldier Jobe Pants', 213610), (217031, 217032, 100, 160, 'First Tier Soldier Jobe Sleeves', 213489), (218929, 218930, 100, 160, 'First Tier Trader Body Armor', 213531), (218931, 218932, 100, 160, 'First Tier Trader Boots', 213571), (218933, 218934, 100, 160, 'First Tier Trader Gloves', 37630), (218923, 218924, 100, 160, 'First Tier Trader Pants', 213454), (218925, 218926, 100, 160, 'First Tier Trader Sleeves', 213490), (158088, 158088, 1, 1, 'First Update Syringe', 11756), (279944, 279944, 1, 1, 'First Wave of Adds', 84059), (214895, 214895, 1, 1, 'First piece of Gilthars Blueprint', 130748), (144117, 144118, 161, 199, 'First rate Freedom Arms 4200', 113997), (124595, 124596, 161, 199, 'First rate OT Viper IX', 21148), (160497, 160498, 181, 199, 'First rate Sleekmaster Classic', 13329), (122631, 122632, 161, 199, 'First-Rate Aero Borealis Corona', 33147), (123644, 123645, 161, 199, 'First-Rate BBI Sigma III', 13318), (122004, 122005, 161, 199, 'First-Rate Blackened Miniblaster', 13316), (139597, 139597, 1, 1, 'First-Rate Blackened Miniblaster Construction Manual', 136329), (123111, 123112, 161, 199, 'First-Rate DNA-Targeted Executioner Pistol', 13323), (122479, 122480, 161, 199, 'First-Rate El Diablo', 31812), (122460, 122461, 161, 199, 'First-Rate El Dieu', 31809), (123187, 123188, 161, 199, 'First-Rate Electron-Charged Pistol', 13316), (141831, 141831, 1, 1, 'First-Rate Electron-Charged Pistol Construction Manual', 136329), (123511, 123512, 161, 199, 'First-Rate IMI Desert Reet 1000', 13334), (122498, 122499, 161, 199, 'First-Rate Ingram Blaster 23-X', 13317), (123549, 123550, 159, 199, 'First-Rate Khemo-Tech Model 07 (Pocket 20)', 113995), (123530, 123531, 161, 199, 'First-Rate Khemo-Tech Model 200', 113994), (123568, 123569, 159, 199, 'First-Rate Knights Inc. Special-Purpose Pistol 29', 13318), (122997, 122998, 161, 199, 'First-Rate Kolt 58 Magnum', 13334), (142040, 142040, 1, 1, 'First-Rate Kolt 58 Magnum Construction Manual', 136329), (122289, 122290, 161, 199, 'First-Rate Kolt PDW-37', 13315), (140433, 140433, 1, 1, 'First-Rate Kolt PDW-37 Construction Manual', 136329), (123168, 123169, 163, 199, 'First-Rate Light Beamer Pistol', 33157), (142566, 142566, 1, 1, 'First-Rate Light Beamer Pistol Construction Manual', 136329), (123492, 123493, 161, 199, 'First-Rate MTI USP 21', 113993), (122902, 122903, 161, 199, 'First-Rate Minielectronium', 13323), (122346, 122347, 161, 199, 'First-Rate Minigrinner', 33156), (140746, 140746, 1, 1, 'First-Rate Minigrinner Construction Manual', 136329), (123473, 123474, 161, 199, 'First-Rate OT Boomer+.90AE', 113995), (122308, 122309, 161, 199, 'First-Rate Omni-Flamer Mk IV', 33161), (123625, 123626, 161, 199, 'First-Rate PNG M1007A1 Tactical Revolver', 113997), (123682, 123683, 161, 199, 'First-Rate River MV', 29116), (123701, 123702, 161, 199, 'First-Rate Seburo Bobsons', 13330), (123663, 123664, 161, 199, 'First-Rate Sentinels ETE Strike Gun', 31810), (122669, 122670, 161, 199, 'First-Rate Silver Miniblaster', 13316), (121852, 121853, 161, 199, 'First-Rate Sleekblaster', 13329), (138712, 138712, 1, 1, 'First-Rate Sleekblaster Construction Manual', 136329), (123092, 123093, 161, 199, 'First-Rate Sleekblaster Major', 13328), (142414, 142414, 1, 1, 'First-Rate Sleekblaster Major Construction Manual', 136329), (121833, 121834, 161, 199, 'First-Rate Sleekblaster Minor', 13327), (138510, 138510, 1, 1, 'First-Rate Sleekblaster Minor Construction Manual', 136329), (122650, 122651, 161, 199, 'First-Rate The Original Plasma-Emitter', 33145), (122042, 122043, 161, 199, 'First-Rate Triplejolt', 13320), (140005, 140005, 1, 1, 'First-Rate Triplejolt Construction Manual', 136329), (123454, 123455, 161, 199, 'First-Rate Ultra-Light Missile Pistol Raid 9-X', 13315), (154328, 154328, 200, 200, 'First-rate Emergency Treatment Laboratory', 37994), (305480, 305480, 1, 1, 'Fist of Heavens', 13281), (211275, 211276, 1, 299, 'Fist of Justice', 13343), (204757, 204757, 1, 1, 'Fist of Orion', 13281), (206247, 206247, 1, 1, 'Fist of the Dominator', 12666), (290170, 290170, 1, 1, 'Fixer Action Figure', 290561), (270759, 270759, 1, 1, 'Fixer Nanodeck', 270749), (248261, 248261, 1, 1, 'Fixer Nanoprogram Container', 292137), (290088, 290088, 1, 1, 'Fixer Shirt', 287356), (43380, 43380, 1, 1, 'Fixer: Startup Crystal - Minor Suppressor', 12226), (267568, 267569, 1, 300, 'Fixers'' Ring of Breaking', 151931), (211233, 211234, 1, 299, 'Flabbergaster', 113986), (157166, 157167, 1, 200, 'Flak Flowers Armor Arms', 22910), (157168, 157169, 1, 200, 'Flak Flowers Armor Body', 22905), (157164, 157165, 1, 200, 'Flak Flowers Armor Pants', 22923), (137265, 137266, 1, 200, 'Flake Tubing Base Cooling System', 130738), (137249, 137250, 1, 200, 'Flake Tubing Super-Coolant System', 130787), (121920, 121921, 81, 100, 'Flamethrower', 19800), (272080, 272081, 1, 300, 'Flamethrower - 000', 19800), (272082, 272083, 1, 300, 'Flamethrower - 008', 19800), (272084, 272085, 1, 300, 'Flamethrower - 00C', 19800), (272086, 272087, 1, 300, 'Flamethrower - 40C', 19800), (272088, 272089, 1, 300, 'Flamethrower - C0C', 19800), (139343, 139343, 1, 1, 'Flamethrower Construction Manual', 37933), (85444, 85445, 1, 250, 'Flamethrower Field Primer', 83342), (152044, 152044, 200, 200, 'Flamethrower of Zuwadza', 19800), (199389, 199389, 255, 255, 'Flaming Bau Charger Armor Boots', 22878), (199410, 199410, 255, 255, 'Flaming Bau Charger Armor Gloves', 22939), (199431, 199431, 255, 255, 'Flaming Bau Charger Armor Helmet', 31738), (199452, 199452, 255, 255, 'Flaming Bau Charger Armor Pants', 22928), (199473, 199473, 255, 255, 'Flaming Bau Charger Armor Sleeves', 22889), (199494, 199494, 255, 255, 'Flaming Bau Charger Body Armor', 22981), (199515, 199515, 255, 255, 'Flaming Bau Charger Female Body Armor', 22942), (248081, 248081, 1, 1, 'Flapper Blouse of The Honored Maidens', 255285), (248084, 248084, 1, 1, 'Flapper Gloves of The Honored Maidens', 255372), (248086, 248086, 1, 1, 'Flapper Shoes of The Honored Maidens', 255333), (248068, 248068, 1, 1, 'Flapper Sleeves of The Honored Maidens', 255228), (287338, 287338, 1, 1, 'Flaptoot''s T-shirt', 287358), (290070, 290070, 1, 1, 'Flaptoot''s T-shirt Spawner', 287354), (258818, 258818, 1, 1, 'Flashlight', 259031), (129023, 129024, 151, 199, 'Flavored Chocolate Surprise', 85164), (260692, 260692, 250, 250, 'Flawed Arul Saba Prototype', 84051), (128877, 128878, 61, 80, 'Flawed Arwen MM-50 Grenade Launcher', 13336), (124755, 124756, 61, 80, 'Flawed BBI WMMA CAW', 13311), (142859, 142860, 41, 50, 'Flawed Eye Wind Onehander', 13341), (204962, 204963, 1, 24, 'Flawed Eyemutant Orb Laser', 152424), (124736, 124737, 61, 80, 'Flawed FN P00', 21148), (128764, 128765, 61, 80, 'Flawed Fabrique Des Armes Bizon 20-19', 21144), (124880, 124881, 61, 90, 'Flawed GE ME30 Mom', 13322), (124973, 124974, 61, 80, 'Flawed GE XM-559 Man-Portable Laser', 21151), (128721, 128722, 61, 80, 'Flawed Galahad Inc. 077 Personal Weapon', 21148), (128745, 128746, 61, 80, 'Flawed Galahad Inc. Tactical Machine Pistol 1029', 21147), (128661, 128662, 61, 80, 'Flawed HSR Arms Tech Assault IV', 21148), (128680, 128681, 61, 80, 'Flawed HSR Arms Tech Assault V', 21148), (124935, 124936, 61, 80, 'Flawed IEC Flashpoint Laser Rifle', 33146), (125011, 125012, 61, 80, 'Flawed Joint Clans Exocet II', 85167), (125030, 125031, 61, 80, 'Flawed Joint Clans Patriot', 114013), (124649, 124650, 61, 80, 'Flawed Kalinkanov ZU-113 Security Weapon', 21148), (128614, 128615, 61, 80, 'Flawed MTI G-36K', 33155), (124357, 124358, 1, 23, 'Flawed MTI G-90A3', 21146), (124604, 124605, 41, 50, 'Flawed MTI MP200', 21147), (128864, 128865, 44, 65, 'Flawed MTI MPK-22', 33153), (124687, 124688, 61, 80, 'Flawed MTI MPK-22 Briefcase Gun', 13311), (124630, 124631, 61, 70, 'Flawed MTI UMP22', 114016), (124668, 124669, 61, 80, 'Flawed Malorian Arms M25 Goodgun', 33153), (253221, 253222, 90, 119, 'Flawed Nizno''s Bomb Blaster', 13336), (124717, 124718, 61, 80, 'Flawed Nord Armwerk MAX', 21144), (128845, 128846, 61, 80, 'Flawed OET Co. MP-21 Tactical Machine Pistol', 21148), (124774, 124775, 61, 69, 'Flawed OT ARL-10 Micromissile Launcher', 13311), (128798, 128799, 61, 80, 'Flawed OT Cobra M-33', 21148), (124897, 124898, 61, 80, 'Flawed OT M-00 Crystal', 13336), (124804, 124805, 61, 80, 'Flawed OT M-110 Renegade SAW', 13336), (124823, 124824, 61, 80, 'Flawed OT M-70 HardRain GPMG', 13336), (124566, 124567, 61, 80, 'Flawed OT Saladin', 21148), (124585, 124586, 61, 80, 'Flawed OT Viper IX', 21148), (124302, 124303, 1, 13, 'Flawed Old English Trading Co. Urban Sniper', 113988), (125087, 125088, 61, 80, 'Flawed Oneida Razor Half-Bow', 114013), (124861, 124862, 61, 80, 'Flawed Planet Gripon Arms Hard-Boomer', 13311), (125049, 125050, 61, 80, 'Flawed Reet-Tech Junior Urban Crossbow', 114013), (124992, 124993, 61, 80, 'Flawed Reet-Tech Stryker X', 85167), (125068, 125069, 61, 80, 'Flawed Reet-Tech Venom Compound Bow', 85167), (128642, 128643, 61, 80, 'Flawed Seburo C-99a', 21144), (160152, 160153, 1, 20, 'Flawed Sleek Cannon', 13342), (128896, 128897, 61, 80, 'Flawed Steiner LM-5 Assault Laser', 33171), (124954, 124955, 61, 80, 'Flawed Techtronica Neural Disruptor', 21145), (124785, 124786, 61, 80, 'Flawed Tsunami Raiden MP-Drum', 13311), (124842, 124843, 61, 80, 'Flawed Vektor M-31 Automatic Grenade Launcher', 13336), (124916, 124917, 61, 80, 'Flawed Westinghouse IM-50 Plasma Burner', 33146), (128817, 128818, 61, 80, 'Flawed Zastaba M0-2 Assault Weapon (Zero)', 33153), (85625, 85625, 200, 200, 'Flawless Chilled Plasteel Armor Boots', 22885), (85585, 85585, 200, 200, 'Flawless Chilled Plasteel Armor Gloves', 31654), (85546, 85546, 200, 200, 'Flawless Chilled Plasteel Armor Helmet', 31736), (85499, 85499, 200, 200, 'Flawless Chilled Plasteel Armor Pants', 22920), (85729, 85729, 200, 200, 'Flawless Chilled Plasteel Armor Sleeves', 31642), (85673, 85673, 200, 200, 'Flawless Chilled Plasteel Body Armor', 31646), (22108, 22108, 200, 200, 'Flawless Energized Armor Boots', 13263), (22170, 22170, 200, 200, 'Flawless Energized Armor Gloves', 13277), (22223, 22223, 200, 200, 'Flawless Energized Armor Helmet', 10834), (22293, 22293, 200, 200, 'Flawless Energized Armor Pants', 13292), (21921, 21921, 200, 200, 'Flawless Energized Armor Sleeves', 13225), (22018, 22018, 200, 200, 'Flawless Energized Body Armor', 13243), (142685, 142685, 200, 200, 'Flawless Graft Armor Boots', 99787), (142683, 142683, 200, 200, 'Flawless Graft Armor Gloves', 99789), (142681, 142681, 200, 200, 'Flawless Graft Armor Helmet', 99798), (142679, 142679, 200, 200, 'Flawless Graft Armor Pants', 99791), (142689, 142689, 200, 200, 'Flawless Graft Armor Sleeves', 99793), (142687, 142687, 200, 200, 'Flawless Graft Body Armor', 99795), (22154, 22154, 200, 200, 'Flawless Heated Plasteel Armor Boots', 21978), (22208, 22208, 200, 200, 'Flawless Heated Plasteel Armor Gloves', 21979), (22258, 22258, 200, 200, 'Flawless Heated Plasteel Armor Helmet', 22270), (22343, 22343, 200, 200, 'Flawless Heated Plasteel Armor Pants', 21980), (21967, 21967, 200, 200, 'Flawless Heated Plasteel Armor Sleeves', 21976), (22076, 22076, 200, 200, 'Flawless Heated Plasteel Body Armor', 21977), (22116, 22116, 200, 200, 'Flawless Kevlar Armor Boots', 13265), (22178, 22178, 200, 200, 'Flawless Kevlar Armor Gloves', 13279), (22301, 22301, 200, 200, 'Flawless Kevlar Armor Pants', 13294), (21929, 21929, 200, 200, 'Flawless Kevlar Armor Sleeves', 13227), (22026, 22026, 200, 200, 'Flawless Kevlar Body Armor', 13249), (22004, 22004, 200, 200, 'Flawless Kevlar Vest', 21858), (85646, 85646, 200, 200, 'Flawless Links Energized Armor Boots', 22879), (85603, 85603, 200, 200, 'Flawless Links Energized Armor Gloves', 22935), (85563, 85563, 200, 200, 'Flawless Links Energized Armor Helmet', 31729), (85522, 85522, 200, 200, 'Flawless Links Energized Armor Pants', 22925), (85751, 85751, 200, 200, 'Flawless Links Energized Armor Sleeves', 22957), (85698, 85698, 200, 200, 'Flawless Links Energized Body Armor', 22983), (85635, 85635, 200, 200, 'Flawless Nail Armor Boots', 21864), (85509, 85509, 200, 200, 'Flawless Nail Armor Pants', 22352), (85739, 85739, 200, 200, 'Flawless Nail Armor Sleeves', 21848), (85683, 85683, 200, 200, 'Flawless Nail Body Armor', 21856), (142686, 142686, 200, 200, 'Flawless Organic Armor Boots', 99792), (142684, 142684, 200, 200, 'Flawless Organic Armor Gloves', 99790), (142682, 142682, 200, 200, 'Flawless Organic Armor Helmet', 99799), (142680, 142680, 200, 200, 'Flawless Organic Armor Pants', 99788), (142690, 142690, 200, 200, 'Flawless Organic Armor Sleeves', 99794), (142688, 142688, 200, 200, 'Flawless Organic Body Armor', 99796), (88073, 88073, 200, 200, 'Flawless Plasteel Battle Suit', 41162), (85648, 85648, 200, 200, 'Flawless Raven''s Energized Armor Boots', 22880), (85605, 85605, 200, 200, 'Flawless Raven''s Energized Armor Gloves', 22934), (85565, 85565, 200, 200, 'Flawless Raven''s Energized Armor Helmet', 31730), (85524, 85524, 200, 200, 'Flawless Raven''s Energized Armor Pants', 22926), (85753, 85753, 200, 200, 'Flawless Raven''s Energized Armor Sleeves', 22959), (85700, 85700, 200, 200, 'Flawless Raven''s Energized Body Armor', 22984), (25829, 25829, 300, 300, 'Flawless Spring Crystal', 286923), (85621, 85621, 200, 200, 'Flawless Titan Plasteel Armor Boots', 22884), (85581, 85581, 200, 200, 'Flawless Titan Plasteel Armor Gloves', 31656), (85542, 85542, 200, 200, 'Flawless Titan Plasteel Armor Helmet', 31734), (85495, 85495, 200, 200, 'Flawless Titan Plasteel Armor Pants', 22919), (85725, 85725, 200, 200, 'Flawless Titan Plasteel Armor Sleeves', 31644), (85669, 85669, 200, 200, 'Flawless Titan Plasteel Body Armor', 31648), (85623, 85623, 200, 200, 'Flawless Vito''s Plasteel Armor Boots', 22883), (85583, 85583, 200, 200, 'Flawless Vito''s Plasteel Armor Gloves', 31655), (85544, 85544, 200, 200, 'Flawless Vito''s Plasteel Armor Helmet', 31735), (85497, 85497, 200, 200, 'Flawless Vito''s Plasteel Armor Pants', 22921), (85727, 85727, 200, 200, 'Flawless Vito''s Plasteel Armor Sleeves', 31643), (85671, 85671, 200, 200, 'Flawless Vito''s Plasteel Body Armor', 31647), (165206, 165206, 200, 200, 'Flaxen Notum Pants', 30942), (225794, 225795, 1, 500, 'Flay', 239099), (225796, 225797, 1, 500, 'Flay', 239099), (225798, 225799, 1, 500, 'Flay', 239099), (202788, 202788, 99, 99, 'Flea Bite', 131261), (202789, 202789, 100, 100, 'Flea Bite', 131261), (226162, 226163, 1, 500, 'Flesh Quiver', 239013), (226164, 226165, 1, 500, 'Flesh Quiver', 239013), (226166, 226167, 1, 500, 'Flesh Quiver', 239013), (158912, 158912, 1, 1, 'Fleshchopper', 85169), (211214, 211214, 300, 300, 'Fleshy Cavalier Pistol', 38055), (165279, 165279, 1, 1, 'Flexible alloy legs', 144713), (248760, 248760, 1, 1, 'Flight Attendant Jacket of the Nordic Alliance', 255303), (248761, 248761, 1, 1, 'Flight Attendant Miniskirt of the Nordic Alliance', 255184), (248762, 248762, 1, 1, 'Flight Attendant Shoes of the Nordic Alliance', 255348), (248759, 248759, 1, 1, 'Flight Attendant Sleeves of the Nordic Alliance', 255245), (250649, 250649, 1, 1, 'Flim Focus', 255644), (253465, 253465, 1, 1, 'Flimsy Barstool', 255956), (82208, 82208, 1, 1, 'Fling Shot', 82202), (101653, 101654, 1, 200, 'Fling Shot Cluster - Bright (Right-Hand)', 35981), (101651, 101652, 1, 200, 'Fling Shot Cluster - Faded (Right-Wrist)', 35980), (101655, 101656, 1, 200, 'Fling Shot Cluster - Shiny (Right-Arm)', 35982), (165831, 165832, 201, 300, 'Fling Shot Refined Cluster - Bright (Right-Hand)', 35981), (165829, 165830, 201, 300, 'Fling Shot Refined Cluster - Faded (Right-Wrist)', 35980), (165833, 165834, 201, 300, 'Fling Shot Refined Cluster - Shiny (Right-Arm)', 35982), (272294, 272295, 1, 300, 'FlingShot Weapons Upgrade Kit', 272252), (258810, 258810, 1, 1, 'Floating Angel', 259098), (289803, 289803, 1, 1, 'Floating Angel', 259098), (295599, 295599, 1, 1, 'Floating Angel', 259098), (245450, 245450, 150, 150, 'Floating Bag of Jukes', 99666), (258811, 258811, 1, 1, 'Floating Devil', 259100), (289804, 289804, 1, 1, 'Floating Devil', 259100), (258816, 258816, 1, 1, 'Floating Drums', 259099), (293162, 293162, 1, 1, 'Floating Ghost Light', 292829), (294040, 294040, 1, 1, 'Floating Golden Star Torch - Shoulder', 294348), (294041, 294041, 1, 1, 'Floating Golden Star Torch - Utils', 294348), (294748, 294748, 1, 1, 'Floating Heart Lantern - Full', 294988), (294751, 294751, 1, 1, 'Floating Heart Lantern - Left', 294989), (294752, 294752, 1, 1, 'Floating Heart Lantern - Right', 294990), (292948, 292948, 1, 1, 'Floating Shrunken Head Torch', 292946), (294039, 294039, 1, 1, 'Floating Silver Star Torch - Shoulder', 294349), (294038, 294038, 1, 1, 'Floating Silver Star Torch - Utils', 294349), (296515, 296515, 1, 1, 'Floating Skull Torch', 265376), (297145, 297145, 1, 1, 'Floating Skull Torch', 265376), (296516, 296516, 1, 1, 'Floating Skull Torch with Candle', 265375), (297146, 297146, 1, 1, 'Floating Skull Torch with Candle', 265375), (31837, 31837, 1, 1, 'Floating Torch', 37995), (290970, 290970, 1, 1, 'Floating Winter Bell - Shoulder', 289593), (289596, 289596, 1, 1, 'Floating Winter Bell - Utils', 289593), (255473, 255473, 100, 100, 'Floorplan - Clan Grid House', 121435), (254830, 254830, 100, 100, 'Floorplan - Clan Guard House', 121435), (255478, 255478, 100, 100, 'Floorplan - Clan Landing Pad', 121435), (254815, 254815, 201, 201, 'Floorplan - Clan Large Organization Headquarters', 121435), (255485, 255485, 100, 100, 'Floorplan - Clan Mining Operations Center', 121435), (255475, 255475, 100, 100, 'Floorplan - Clan Notum Silo', 121435), (255491, 255491, 100, 100, 'Floorplan - Clan Satellite Uplink Center', 121435), (255487, 255487, 100, 100, 'Floorplan - Clan Sidewalk Cafe', 121435), (255489, 255489, 100, 100, 'Floorplan - Clan Sky Bar', 121435), (256402, 256402, 100, 100, 'Floorplan - Clan Small ECM Tower', 121435), (254813, 254813, 100, 100, 'Floorplan - Clan Small Organization Headquarters', 121435), (255481, 255481, 100, 100, 'Floorplan - Clan Swimming Pool', 121435), (254791, 254791, 100, 100, 'Floorplan - Neutral Grid House', 121435), (254797, 254797, 100, 100, 'Floorplan - Neutral Guard House', 121435), (254793, 254793, 100, 100, 'Floorplan - Neutral Landing Pad', 121435), (254803, 254803, 201, 201, 'Floorplan - Neutral Large Organization Headquarters', 121435), (254798, 254798, 100, 100, 'Floorplan - Neutral Mining Operations Center', 121435), (254792, 254792, 100, 100, 'Floorplan - Neutral Notum Silo', 121435), (254801, 254801, 100, 100, 'Floorplan - Neutral Satellite Uplink Center', 121435), (254799, 254799, 100, 100, 'Floorplan - Neutral Sidewalk Cafe', 121435), (254800, 254800, 100, 100, 'Floorplan - Neutral Sky Bar', 121435), (256404, 256404, 100, 100, 'Floorplan - Neutral Small ECM Tower', 121435), (254790, 254790, 100, 100, 'Floorplan - Neutral Small Organization Headquarters', 121435), (254795, 254795, 100, 100, 'Floorplan - Neutral Swimming Pool', 121435), (255474, 255474, 100, 100, 'Floorplan - Omni-Tek Grid House', 121435), (254812, 254812, 100, 100, 'Floorplan - Omni-Tek Guard House', 121435), (255477, 255477, 100, 100, 'Floorplan - Omni-Tek Landing Pad', 121435), (254811, 254811, 201, 201, 'Floorplan - Omni-Tek Large Organization Headquarters', 121435), (255486, 255486, 100, 100, 'Floorplan - Omni-Tek Mining Operations Center', 121435), (255476, 255476, 100, 100, 'Floorplan - Omni-Tek Notum Silo', 121435), (255492, 255492, 100, 100, 'Floorplan - Omni-Tek Satellite Uplink Center', 121435), (255488, 255488, 100, 100, 'Floorplan - Omni-Tek Sidewalk Cafe', 121435), (255490, 255490, 100, 100, 'Floorplan - Omni-Tek Sky Bar', 121435), (256403, 256403, 100, 100, 'Floorplan - Omni-Tek Small ECM Tower', 121435), (254809, 254809, 100, 100, 'Floorplan - Omni-Tek Small Organization Headquarters', 121435), (255482, 255482, 100, 100, 'Floorplan - Omni-Tek Swimming Pool', 121435), (287178, 287178, 100, 100, 'Floorplan Recompiler Unit', 287237), (287179, 287179, 100, 100, 'Floorplan Recompiler Unit', 287232), (287180, 287180, 100, 100, 'Floorplan Recompiler Unit', 287230), (287181, 287181, 100, 100, 'Floorplan Recompiler Unit', 287240), (287182, 287182, 100, 100, 'Floorplan Recompiler Unit', 287239), (287183, 287183, 100, 100, 'Floorplan Recompiler Unit', 287227), (287184, 287184, 100, 100, 'Floorplan Recompiler Unit', 287226), (287185, 287185, 100, 100, 'Floorplan Recompiler Unit', 287235), (287186, 287186, 100, 100, 'Floorplan Recompiler Unit', 287242), (287187, 287187, 100, 100, 'Floorplan Recompiler Unit', 287228), (287188, 287188, 100, 100, 'Floorplan Recompiler Unit', 287236), (287189, 287189, 100, 100, 'Floorplan Recompiler Unit', 287231), (287190, 287190, 100, 100, 'Floorplan Recompiler Unit', 287229), (287191, 287191, 100, 100, 'Floorplan Recompiler Unit', 287241), (287192, 287192, 100, 100, 'Floorplan Recompiler Unit', 287238), (287193, 287193, 100, 100, 'Floorplan: BFSHKASXCXZZZXXHHHHSASF!111', 287245), (253779, 253779, 1, 1, 'Floral Delight Boots', 253711), (253776, 253776, 1, 1, 'Floral Delight Pants', 253731), (253777, 253777, 1, 1, 'Floral Delight Shirt', 253672), (253778, 253778, 1, 1, 'Floral Delight Sleeves', 253694), (207861, 207862, 200, 249, 'Flower Guard Gofleprod', 33168), (207838, 207838, 200, 200, 'Flower Guard Triplate Metal Armor Cloak', 159128), (207837, 207837, 200, 200, 'Flower Guard Triplate Metal Boots', 37596), (207836, 207836, 1, 1, 'Flower Guard Triplate Metal Gauntlets', 13279), (207835, 207835, 200, 200, 'Flower Guard Triplate Metal Helmet', 31729), (253796, 253796, 1, 1, 'Flower Power Boots', 253706), (253799, 253799, 1, 1, 'Flower Power Pants', 253726), (253798, 253798, 1, 1, 'Flower Power Shirt', 253667), (253797, 253797, 1, 1, 'Flower Power Sleeves', 253689), (136604, 136605, 1, 200, 'Flower Ring', 84046), (273489, 273489, 1, 1, 'Flower from Datura Inoxia', 273509), (70615, 70614, 60, 199, 'Flower of Life', 43085), (70614, 204326, 200, 300, 'Flower of Life', 43085), (201941, 201941, 200, 200, 'Fluctuating Anti-Matter Generator', 149941), (248315, 248315, 1, 1, 'Fluid Sample', 100309), (273241, 273241, 1, 1, 'Fluorocarbon Liquid Coolant', 11755), (85907, 85908, 25, 200, 'Flurry of Blows', 12664), (225801, 225802, 1, 500, 'Flurry of Cuts', 239101), (225803, 225804, 1, 500, 'Flurry of Cuts', 239101), (225805, 225806, 1, 500, 'Flurry of Cuts', 239101), (207319, 207320, 50, 200, 'Flutter Cuffs', 151927), (211257, 211258, 1, 299, 'Flux Pistol', 33161), (259869, 259869, 1, 1, 'Flux Rafter Root Sample', 260194), (273542, 273542, 1, 1, 'Fly Agaric', 273510), (216430, 216430, 150, 150, 'Fly Catcher''s Specs', 205757), (268158, 268158, 1, 1, 'Foam Hand', 268608), (214282, 214283, 100, 199, 'Focus Rifle', 210169), (214284, 214285, 200, 299, 'Focus Rifle', 210169), (234909, 234909, 1, 1, 'Focus of Fecit''s Pain', 218769), (234908, 234908, 1, 1, 'Focus of Filio''s Pain', 218769), (234910, 234910, 1, 1, 'Focus of Fructum''s Pain', 218769), (234911, 234911, 1, 1, 'Focus of Fuisse''s Pain', 218769), (246206, 246206, 100, 100, 'Focus-Funneling Device', 205507), (246207, 246207, 100, 100, 'Focus-Funneling Spirit', 205507), (157402, 157402, 1, 1, 'Fog Thirtyfive Viper Advantage', 81779), (252026, 252026, 1, 1, 'Folded Cardboard Box', 156326), (157273, 157273, 100, 100, 'Folded Note', 154678), (225855, 225856, 1, 500, 'Followup Smash', 239261), (225857, 225858, 1, 500, 'Followup Smash', 239261), (225859, 225860, 1, 500, 'Followup Smash', 239261), (258262, 258262, 1, 1, 'Food Preperation License', 154679), (223983, 223984, 80, 120, 'Foot Tattoo''s of Eric Miller', 226629), (223953, 223954, 80, 120, 'Foot Tattoo''s of Min-Li Jiu', 226637), (160776, 160777, 1, 200, 'Footwarming Boots', 21978), (214427, 214427, 1, 1, 'Forage', 123962), (252312, 252313, 1, 500, 'Force Opponent', 255649), (252314, 252315, 1, 500, 'Force Opponent', 255649), (252316, 252317, 1, 500, 'Force Opponent', 255649), (153978, 153978, 85, 85, 'Force-effect Vibro Blade', 113984), (158321, 158321, 1, 1, 'Fork of Ghasap', 85168), (158403, 158403, 1, 1, 'Fork of Ghasap (Lord Version)', 85168), (247120, 247121, 1, 300, 'Formatted Kyr''Ozch Viralbots', 100334), (247180, 247181, 1, 300, 'Formatted Viralbot Footwear', 245925), (247178, 247179, 1, 300, 'Formatted Viralbot Gloves', 245926), (247170, 247171, 1, 300, 'Formatted Viralbot Headwear', 160726), (247176, 247177, 1, 300, 'Formatted Viralbot Legwear', 245928), (247174, 247175, 1, 300, 'Formatted Viralbot Sleeve', 245923), (247172, 247173, 1, 300, 'Formatted Viralbot Vest', 245924), (305964, 305964, 250, 250, 'Fortified Construction Sleeves', 13221), (215361, 215361, 1, 1, 'Fortress of Light', 239344), (163572, 163572, 1, 1, 'Foul Smelling Elixir', 37937), (155750, 155750, 1, 1, 'Foul Smelling Lightweight Notum Liquid', 100333), (155762, 155735, 1, 200, 'Foul Smelling Notum Paste', 99231), (279947, 279947, 1, 1, 'Fourth Wave of Adds', 84059), (274957, 274957, 50, 50, 'Fractured Nightmare', 84068), (151896, 151896, 50, 50, 'Fractured Sanity', 84068), (128603, 128604, 1, 39, 'Fragile D-nort Compact Assault Rifle', 114016), (206892, 206892, 10, 10, 'Fragile Rollerrat Helmet', 205768), (238947, 238947, 150, 150, 'Fragment of the Source', 235347), (218467, 218467, 100, 100, 'Fragmented Novictum Crystals', 20407), (199534, 199534, 245, 245, 'Francium Periodic Tech Armor Boots', 22886), (199555, 199555, 245, 245, 'Francium Periodic Tech Armor Gloves', 22933), (199576, 199576, 245, 245, 'Francium Periodic Tech Armor Helmet', 31731), (199598, 199598, 245, 245, 'Francium Periodic Tech Armor Pants', 22912), (199619, 199619, 245, 245, 'Francium Periodic Tech Armor Sleeves', 22911), (199640, 199640, 245, 245, 'Francium Periodic Tech Body Armor', 22990), (199661, 199661, 245, 245, 'Francium Periodic Tech Female Body Armor', 22909), (233405, 233405, 50, 50, 'Frank''s Nano Programming Gloves', 118189), (255581, 255581, 1, 1, 'Frank''s Statue of Achievment', 256381), (251899, 251899, 1, 1, 'Freak Shield', 255655), (150957, 150958, 1, 199, 'Frederickson Cumulus model', 114016), (150959, 150959, 200, 200, 'Frederickson Cumulus model II', 114016), (152710, 152710, 200, 200, 'Frederickson Micro-kinetic Sleeves', 81990), (207116, 207116, 200, 200, 'Frederickson''s Kinetic Sleeves', 13227), (204103, 204104, 1, 49, 'Free Movement', 11756), (204104, 204105, 50, 99, 'Free Movement', 11756), (204105, 204106, 100, 199, 'Free Movement', 11756), (204106, 204107, 200, 300, 'Free Movement', 11756), (123832, 123833, 44, 95, 'Freedom Arms 3927', 113997), (303322, 303322, 1, 1, 'Freedom Arms 3927 Chameleon', 113997), (123821, 123822, 150, 157, 'Freedom Arms 3927 Chapman', 113997), (123825, 123825, 200, 200, 'Freedom Arms 3927 G2', 113997), (123823, 123824, 158, 199, 'Freedom Arms 3927 Guerrilla', 113997), (123819, 123820, 108, 149, 'Freedom Arms 3927 Notum', 113997), (123830, 123831, 40, 43, 'Freedom Arms 3927a', 113997), (123834, 123835, 96, 99, 'Freedom Arms 3927k', 113997), (123836, 123836, 100, 100, 'Freedom Arms 3927k Ultra', 113997), (144109, 144110, 51, 100, 'Freedom Arms 4200', 113997), (128838, 128838, 120, 120, 'Freedom Arms Defender', 33153), (208058, 208058, 50, 50, 'Freedom Arms Negotiator 2569', 113997), (208056, 208057, 40, 49, 'Freedom Arms Negotiator 2570', 113997), (123846, 123847, 20, 64, 'Freedom Arms Super 90', 33157), (123854, 123854, 160, 160, 'Freedom Arms Super 90 Queen', 33157), (123848, 123849, 65, 84, 'Freedom Arms Super Duper 90', 33157), (123850, 123851, 85, 99, 'Freedom Arms Super Duper 90A', 33157), (285827, 285827, 50, 50, 'Freelancers Inc Poster Sign', 154419), (286244, 286244, 50, 50, 'Freelancers Inc Poster Sign - Clan', 154419), (286243, 286243, 50, 50, 'Freelancers Inc Poster Sign - Omni-Tek', 154419), (301675, 301675, 1, 1, 'Freelancers Inc Recall Beacon', 285272), (303237, 303237, 1, 1, 'Freelancers Inc. Token', 281837), (130213, 130213, 191, 191, 'Freezedried Bloodworm Carapace', 85166), (230890, 230890, 50, 50, 'Freezing Device', 13349), (248784, 248784, 1, 1, 'French Maid Blouse of Xtronica Entertainment', 255306), (248785, 248785, 1, 1, 'French Maid Miniskirt of Xtronica Entertainment', 255187), (248783, 248783, 1, 1, 'French Maid Sleeves of Xtronica Entertainment', 255249), (283745, 283745, 1, 1, 'Fresh Cyborg Costume', 283767), (130057, 130058, 100, 181, 'Fresh Featherwood Staff', 136738), (302321, 302321, 1, 1, 'Frigidstorm''s T-shirt', 302301), (302322, 302322, 1, 1, 'Frigidstorm''s T-shirt Spawner', 302301), (129650, 129651, 141, 160, 'Frisky Wen-Wen', 85161), (165175, 165175, 1, 1, 'Frog Reincarnation num1', 151929), (273485, 273485, 1, 1, 'Frond from Zamia Furfuracea', 273511), (216366, 216366, 1, 1, 'Front Fighter Merit Board', 216287), (304470, 304471, 1, 25, 'Frontline Surveyor Boots', 304409), (304468, 304469, 1, 25, 'Frontline Surveyor Gloves', 304411), (304460, 304461, 1, 25, 'Frontline Surveyor Legwear', 304413), (304472, 304473, 1, 25, 'Frontline Surveyor Protective Suit', 304407), (304464, 304465, 1, 25, 'Frontline Surveyor Shirt', 304408), (304462, 304463, 1, 25, 'Frontline Surveyor Shoulderguard', 304414), (304466, 304467, 1, 25, 'Frontline Surveyor Sleeves', 304406), (304458, 304459, 1, 25, 'Frontline Surveyor Visor', 304412), (158582, 158583, 1, 200, 'Frost Arrowheads', 159118), (267742, 267742, 250, 250, 'Frost Gland Sample', 144702), (204746, 204746, 1, 1, 'Frost Scythe of the Legionnaire', 204741), (206055, 206055, 1, 1, 'Frost Shard', 296404), (206061, 206061, 1, 1, 'Frost-bound Reaper', 296405), (304252, 304252, 1, 1, 'Frostburned Mother Nitrogena', 304265), (253784, 253784, 1, 1, 'Frosty Leaves Boots', 253709), (253787, 253787, 1, 1, 'Frosty Leaves Pants', 253729), (253786, 253786, 1, 1, 'Frosty Leaves Shirt', 253670), (253785, 253785, 1, 1, 'Frosty Leaves Sleeves', 253692), (269841, 269841, 200, 200, 'Frozen Android NCU Injector', 43134), (158594, 158595, 60, 200, 'Frozen Cherry Blossom - Special Arrows', 33176), (269800, 269800, 250, 250, 'Frozen Crystal Compound', 269799), (269811, 269811, 250, 250, 'Frozen Crystal Compound', 269799), (269812, 269812, 250, 250, 'Frozen Crystal Compound', 269799), (269813, 269813, 250, 250, 'Frozen Crystal Compound', 269799), (269814, 269814, 250, 250, 'Frozen Crystal Compound', 269799), (269815, 269815, 250, 250, 'Frozen Crystal Compound', 269799), (269816, 269816, 250, 250, 'Frozen Crystal Compound', 269799), (269817, 269817, 250, 250, 'Frozen Crystal Compound', 269799), (269818, 269818, 250, 250, 'Frozen Crystal Compound', 269799), (269819, 269819, 250, 250, 'Frozen Crystal Compound', 269799), (270000, 270000, 250, 250, 'Frozen Crystal Compound', 269998), (304250, 304251, 1, 220, 'Frozen Excavation Boots', 304263), (304248, 304249, 1, 220, 'Frozen Excavation Gloves', 304264), (304238, 304239, 1, 220, 'Frozen Excavation Helmet', 304266), (304242, 304243, 1, 220, 'Frozen Excavation Legwear', 304267), (304240, 304241, 1, 220, 'Frozen Excavation Satchel', 304261), (304244, 304245, 1, 220, 'Frozen Excavation Shirt', 304262), (304246, 304247, 1, 220, 'Frozen Excavation Sleeves', 304260), (259875, 259875, 1, 1, 'Frozen Goblet of Frost Breath', 151031), (258263, 258263, 1, 1, 'Frozen Leet Yummies', 99234), (259876, 259876, 1, 1, 'Frozen Shiver Spider Bone', 259878), (269896, 269896, 1, 1, 'Frozen Shoulderpads', 269968), (204739, 204739, 1, 1, 'Frozen Tear of Uklesh', 204740), (269865, 269865, 200, 200, 'Frozen Yuttos Remedy - Bane', 100314), (269866, 269866, 200, 200, 'Frozen Yuttos Remedy - Icy Scales', 100314), (269867, 269867, 200, 200, 'Frozen Yuttos Remedy - Tonic', 100314), (259922, 259922, 1, 1, 'Fruit Cake', 130518), (239472, 239472, 1, 1, 'Fruition of the Reposeful', 151033), (239473, 239473, 1, 1, 'Fruition of the Tempestuous', 151032), (239474, 239474, 1, 1, 'Fruition of the Unshakable', 151031), (296955, 296955, 1, 1, 'Frying Pan', 296872), (248319, 248319, 1, 1, 'Fuel Chamber', 130698), (200070, 200070, 295, 295, 'Fukakouryoku Nippon-Tech Armor', 96106), (200091, 200091, 295, 295, 'Fukakouryoku Nippon-Tech Armor Boots', 13275), (200112, 200112, 295, 295, 'Fukakouryoku Nippon-Tech Armor Gloves', 13287), (200133, 200133, 295, 295, 'Fukakouryoku Nippon-Tech Armor Helmet', 96140), (200154, 200154, 295, 295, 'Fukakouryoku Nippon-Tech Armor Pants', 13305), (200175, 200175, 295, 295, 'Fukakouryoku Nippon-Tech Armor Sleeves', 13237), (200196, 200196, 295, 295, 'Fukakouryoku Nippon-Tech Body Armor', 13258), (225685, 225686, 1, 300, 'Fulcrum''s Ring of Psychology', 84066), (82209, 82209, 1, 1, 'Full Auto', 82196), (101749, 101750, 1, 200, 'Full Auto Cluster - Bright (Right-Wrist)', 35999), (101747, 101748, 1, 200, 'Full Auto Cluster - Faded (Waist)', 35998), (101751, 101752, 1, 200, 'Full Auto Cluster - Shiny (Right-Arm)', 36000), (165927, 165928, 201, 300, 'Full Auto Refined Cluster - Bright (Right-Wrist)', 35999), (165925, 165926, 201, 300, 'Full Auto Refined Cluster - Faded (Waist)', 35998), (165929, 165930, 201, 300, 'Full Auto Refined Cluster - Shiny (Right-Arm)', 36000), (275057, 275057, 1, 1, 'Full Data Receptacle Container', 275055), (275893, 275893, 1, 1, 'Full Epithelium Biopsy Mixer', 19857), (252399, 252399, 1, 1, 'Full Frontal', 239247), (121605, 121606, 162, 184, 'Full Moon Edge', 13343), (269892, 269892, 200, 200, 'Full Permafrost Stimulant Chamber', 100315), (263264, 263264, 1, 1, 'Full Reposeful Visions Container', 154194), (263271, 263271, 1, 1, 'Full Tempestuous Visions Container', 154194), (263274, 263274, 1, 1, 'Full Unshakable Visions Container', 154194), (272300, 272301, 1, 300, 'FullAuto Weapons Upgrade Kit', 272252), (157951, 157951, 190, 190, 'Fully Wired Mantis Egg', 158273), (234878, 234878, 1, 1, 'Fumigating Canister', 100304), (165367, 165368, 1, 200, 'Functional Spider Leg Implant', 144710), (204707, 204707, 1, 1, 'Funeral Urn', 154195), (259700, 259700, 1, 1, 'Fungus Sample Bag', 154189), (216274, 216274, 150, 150, 'Funk Flamingo Sunglasses', 205754), (205841, 205841, 1, 1, 'Funny Arrow', 205833), (302749, 302749, 300, 300, 'Funny Hat', 245034), (250261, 250261, 1, 1, 'Fur Cloak Hood', 255403), (248788, 248788, 1, 1, 'Fur Cloak of Ukraine', 255307), (214975, 229948, 190, 219, 'Furious Novictum Nexus', 233136), (233242, 233242, 300, 300, 'Fury of Zeus', 233218), (251216, 251217, 1, 300, 'Fused Biotech Material', 246096), (302323, 302323, 1, 1, 'Futti''s T-shirt', 302302), (302324, 302324, 1, 1, 'Futti''s T-shirt Spawner', 302302), (253104, 253104, 1, 1, 'Fuzz', 255640), (303628, 303628, 1, 1, 'Fuzzy Birthday Hat', 303679), (248763, 248764, 1, 220, 'Fuzzy Nano Input Hood', 41154), (250459, 250460, 1, 220, 'Fuzzy Nano Input Hood', 41157), (249704, 249704, 1, 1, 'Fuzzy Swatch of Alien Fabric', 161077), (130046, 130046, 100, 100, 'G-Staff', 136738), (124475, 124476, 101, 128, 'G.C. AKMR 1K20 (Pink Shade from New Object)', 21148), (271935, 271936, 1, 300, 'G.C. AKMR 1K20 - 000', 21148), (271939, 271940, 1, 300, 'G.C. AKMR 1K20 - 404', 21148), (271941, 271942, 1, 300, 'G.C. AKMR 1K20 - C04', 21148), (124469, 124470, 41, 60, 'G.C. AKMR 1K20 Kalevala Edition', 21148), (124481, 124482, 181, 199, 'G.C. AKMR 1K20 Kyzar Edition', 21148), (124471, 124472, 61, 80, 'G.C. AKMR 1K20 Matelot Edition', 21148), (124473, 124474, 81, 100, 'G.C. AKMR 1K20 Porgy Edition', 21148), (124477, 124478, 129, 150, 'G.C. AKMR 1K20 Premium Edition', 21148), (124483, 124483, 200, 200, 'G.C. AKMR 1K20 Prospero', 21148), (124479, 124480, 151, 180, 'G.C. AKMR 1K20 Stella Edition', 21148), (271864, 271865, 1, 300, 'GE ME30 Mom - 000', 13322), (271868, 271869, 1, 300, 'GE ME30 Mom - 401', 13322), (271870, 271871, 1, 300, 'GE ME30 Mom - C01', 13322), (272240, 272241, 1, 300, 'GE XM-559 Man-Portable Laser - 000', 21151), (272242, 272243, 1, 300, 'GE XM-559 Man-Portable Laser - 008', 21151), (272244, 272245, 1, 300, 'GE XM-559 Man-Portable Laser - 00C', 21151), (272246, 272247, 1, 300, 'GE XM-559 Man-Portable Laser - 40C', 21151), (272248, 272249, 1, 300, 'GE XM-559 Man-Portable Laser - C0C', 21151), (286710, 286710, 300, 300, 'GM Blue/Black Shoulderpad', 245036), (152847, 152847, 1, 1, 'GM Galla Uniform', 151878), (163517, 163517, 1, 1, 'GM Pet Shell: 71-Alpha Ninjadroid', 99966), (286133, 286133, 1, 1, 'GM Pet Shell: Arkening M-61', 99966), (163520, 163520, 1, 1, 'GM Pet Shell: Fresh Enforcer', 99966), (163505, 163505, 1, 1, 'GM Pet Shell: Goliath-Class Juggernaut', 99966), (163518, 163518, 1, 1, 'GM Pet Shell: Granite Pit Lizard', 99966), (163514, 163514, 1, 1, 'GM Pet Shell: Grecko', 99966), (163502, 163502, 1, 1, 'GM Pet Shell: Infected Mechdog', 99966), (163504, 163504, 1, 1, 'GM Pet Shell: Leetas', 99966), (286117, 286117, 1, 1, 'GM Pet Shell: Lord of the Mini-Void', 99966), (163503, 163503, 1, 1, 'GM Pet Shell: Mini Bronto', 99966), (163506, 163506, 1, 1, 'GM Pet Shell: Probe 2002-2', 99966), (163515, 163515, 1, 1, 'GM Pet Shell: Reet of Paradise', 99966), (163521, 163521, 1, 1, 'GM Pet Shell: Season Enforcer', 99966), (163519, 163519, 1, 1, 'GM Pet Shell: Sylvan Mantis Drone', 99966), (163516, 163516, 1, 1, 'GM Pet Shell: Vulture Squabbler', 99966), (100002, 100002, 1, 1, 'GM Suit', 99995), (100003, 100003, 1, 1, 'GM Trenchcoat', 99993), (40844, 40844, 1, 1, 'GPS Recordings', 25803), (301560, 301560, 30, 30, 'GRACE', 301561), (264079, 264079, 1, 1, 'GSP T-shirt', 266233), (304790, 304790, 100, 100, 'Gag Nose', 304804), (304791, 304791, 100, 100, 'Gag Nose', 45780), (158795, 158795, 1, 1, 'Gaily Painted Hood', 82924), (168513, 168513, 200, 200, 'Galactic Jewel of Burning Plasma', 286771), (168797, 168797, 200, 200, 'Galactic Jewel of Corroded Glory', 286765), (230296, 230296, 200, 200, 'Galactic Jewel of Decayed Glory', 25794), (230092, 230092, 200, 200, 'Galactic Jewel of Fiery Plasma', 25794), (230045, 230045, 200, 200, 'Galactic Jewel of the Broken Moebius', 25794), (168473, 168473, 200, 200, 'Galactic Jewel of the Bruised Brawler', 286763), (230216, 230216, 200, 200, 'Galactic Jewel of the Craggy Landscape', 25794), (230136, 230136, 200, 200, 'Galactic Jewel of the Empty Desert', 25794), (165389, 165389, 200, 200, 'Galactic Jewel of the Eternal Juggernaut', 286767), (229984, 229984, 200, 200, 'Galactic Jewel of the Frail Juggernaut', 25794), (168620, 168620, 200, 200, 'Galactic Jewel of the Frozen Tundra', 286772), (230176, 230176, 200, 200, 'Galactic Jewel of the Icy Tundra', 25794), (168432, 168432, 200, 200, 'Galactic Jewel of the Infinite Moebius', 286770), (230336, 230336, 200, 200, 'Galactic Jewel of the Insidious Killer', 25794), (168717, 168717, 200, 200, 'Galactic Jewel of the Jagged Landscape', 286769), (230051, 230051, 200, 200, 'Galactic Jewel of the Novice Brawler', 25794), (230256, 230256, 200, 200, 'Galactic Jewel of the Scarlet Sky', 25794), (168553, 168553, 200, 200, 'Galactic Jewel of the Searing Desert', 286764), (168843, 168843, 200, 200, 'Galactic Jewel of the Silent Killer', 286768), (168757, 168757, 200, 200, 'Galactic Jewel the Rainbow-hued Sky', 286766), (271665, 271666, 1, 300, 'Galahad Inc T70 - 000', 13317), (271669, 271670, 1, 300, 'Galahad Inc T70 - 401', 13317), (271671, 271672, 1, 300, 'Galahad Inc T70 - C01', 13317), (123956, 123957, 111, 152, 'Galahad Inc T70 Beardsley', 13317), (123950, 123951, 44, 76, 'Galahad Inc T70 Beyer', 13317), (123960, 123960, 200, 200, 'Galahad Inc T70 Khan', 13317), (123948, 123949, 33, 43, 'Galahad Inc T70 Myre', 13317), (123958, 123959, 153, 199, 'Galahad Inc T70 Priscilla', 13317), (123946, 123947, 24, 32, 'Galahad Inc T70 Salamanca', 13317), (123944, 123945, 14, 23, 'Galahad Inc T70 Service Pistol', 13317), (123954, 123955, 99, 110, 'Galahad Inc T70 Tsuyoshi', 13317), (123952, 123953, 77, 98, 'Galahad Inc T70 Zig Zag', 13317), (124039, 124040, 182, 199, 'Galahad Inc. 055 Police Aegis', 13321), (124031, 124032, 61, 91, 'Galahad Inc. 055 Police Big Mama', 13321), (124033, 124034, 92, 132, 'Galahad Inc. 055 Police Chapman', 13321), (124027, 124028, 24, 53, 'Galahad Inc. 055 Police Edition', 13321), (124041, 124041, 200, 200, 'Galahad Inc. 055 Police Lobster', 13321), (124029, 124030, 54, 60, 'Galahad Inc. 055 Police Mama', 13321), (124035, 124036, 133, 150, 'Galahad Inc. 055 Police Penny', 13321), (124037, 124038, 151, 181, 'Galahad Inc. 055 Police Phoenix', 13321), (272160, 272161, 1, 300, 'Galahad Inc. 077 Personal Weapon - 000', 21148), (272162, 272163, 1, 300, 'Galahad Inc. 077 Personal Weapon - 008', 21148), (272164, 272165, 1, 300, 'Galahad Inc. 077 Personal Weapon - 00C', 21148), (272166, 272167, 1, 300, 'Galahad Inc. 077 Personal Weapon - 40C', 21148), (272168, 272169, 1, 300, 'Galahad Inc. 077 Personal Weapon - C0C', 21148), (124221, 124222, 44, 69, 'Galahad Inc. Cinnamon Scout', 13312), (124227, 124228, 145, 199, 'Galahad Inc. Ginger Scout', 13312), (124229, 124229, 200, 200, 'Galahad Inc. Juniper Scout', 13312), (124223, 124224, 70, 93, 'Galahad Inc. Nutmeg Scout', 13312), (124225, 124226, 94, 144, 'Galahad Inc. Pepper Scout', 13312), (124219, 124220, 8, 43, 'Galahad Inc. Scout', 13312), (271505, 271506, 1, 300, 'Galahad Inc. Scout - 000', 13312), (271507, 271508, 1, 300, 'Galahad Inc. Scout - 002', 13312), (271509, 271510, 1, 300, 'Galahad Inc. Scout - 402', 13312), (271511, 271512, 1, 300, 'Galahad Inc. Scout - C02', 13312), (295628, 295628, 1, 1, 'Galahad Pattern Defining Device', 233133), (295630, 295630, 1, 1, 'Galahad Pattern Etcher', 233133), (295631, 295631, 1, 1, 'Galahad-Etched White Shell', 233133), (158601, 158601, 190, 190, 'Gall Stone', 136595), (246089, 246089, 250, 250, 'Gallant Flapper Ribbon', 151933), (260678, 260678, 250, 250, 'Gallant Flapper Ribbon', 151933), (246216, 246216, 100, 100, 'Gamboling Master''s Wear', 88040), (156770, 156770, 68, 68, 'Gamma Ejector', 31807), (157403, 157403, 1, 1, 'Gamma Fiftyone Sphinx Moderation', 81782), (305027, 305027, 300, 300, 'Gamma Reaper', 31807), (259802, 259802, 1, 1, 'Gamma pruning knife', 131272), (302164, 302164, 300, 300, 'Gan''Kar Rifle', 280920), (203637, 203638, 100, 200, 'Ganimedes Flux - Multi-Surface Engine', 203511), (290215, 290215, 1, 1, 'Ganimedes Personal Jetpack', 290142), (289989, 289989, 1, 1, 'Ganimedes Personal Jetpack - Visored', 290143), (303580, 303580, 1, 1, 'Ganimedes Personal Jetpack MK II', 303670), (257381, 257381, 300, 300, 'Gannondorf''s Combined Commando''s Headwear', 256311), (253450, 253450, 1, 1, 'Gannondorph Desk', 255926), (253479, 253479, 1, 1, 'Gannondorph Dining Table', 255947), (253486, 253486, 1, 1, 'Gannondorph Liquid Storage Vat', 119165), (253480, 253480, 1, 1, 'Gannondorph Octagonal Table', 255948), (253474, 253474, 1, 1, 'Gannondorph''s Mondo Speaker', 255944), (212902, 212902, 1, 1, 'Garbage', 20412), (289639, 289639, 1, 1, 'Garden Access', 283768), (303440, 303440, 1, 1, 'Garden Access Pack', 99669), (289638, 289638, 1, 1, 'Garden and Sanctuary Access', 283768), (206022, 206022, 1, 1, 'Gardener''s Gloves', 31655), (231164, 231164, 1, 1, 'Gareths Ring', 151933), (155673, 155674, 1, 200, 'Gargantula Blood Plasma', 100330), (305470, 305470, 1, 1, 'Gartua''s Second Coat', 300622), (245115, 245115, 100, 100, 'Gas Bladder', 37970), (296963, 296963, 1, 1, 'Gateway...', 255263), (215352, 215352, 1, 1, 'Gather Darkness', 239345), (215354, 215354, 1, 1, 'Gather Light', 239342), (215479, 215479, 1, 1, 'Gather Light', 82197), (239347, 239347, 1, 1, 'Gather Light', 239342), (121939, 121940, 81, 100, 'Gatling Saw 20k', 84025), (244704, 244704, 300, 300, 'Gauntlets of Deformation', 245033), (245856, 245856, 250, 250, 'Gauntlets of Star Confabulation', 245849), (304484, 304485, 1, 220, 'Gauntlets of the Eight', 305045), (301656, 301656, 300, 300, 'Gauntlets of the Harvester', 301683), (248892, 248892, 1, 1, 'Gaute''s Cloak of Rock', 255295), (268175, 268175, 1, 1, 'Gaze of The Voracious Horror', 37931), (268176, 268176, 1, 1, 'Gaze of The Voracious Horror', 37931), (275909, 275909, 1, 1, 'Gelatinous Lump', 275962), (268462, 268462, 1, 1, 'Gelatinous Substance', 268461), (234604, 234604, 1, 1, 'Gelatinous mass', 236568), (206057, 206057, 1, 1, 'Gelid Blade of Inobak', 296404), (301767, 301767, 1, 1, 'Gelid Camouflage Balaclava Helmet', 301816), (301765, 301765, 1, 1, 'Gelid Camouflage Boots', 301814), (301779, 301779, 1, 1, 'Gelid Camouflage Gloves', 301815), (301764, 301764, 1, 1, 'Gelid Camouflage Jacket', 301811), (301763, 301763, 1, 1, 'Gelid Camouflage Sleeves', 301817), (301766, 301766, 1, 1, 'Gelid Camouflage Trousers', 301820), (206382, 206382, 1, 1, 'Gelid Presence Pulser Wearable', 84059), (136640, 136641, 1, 200, 'Gem', 286925), (303054, 303054, 150, 150, 'Gem of the Sands', 262201), (244572, 244572, 250, 250, 'Gemini''s Double Band of Linked Information', 151932), (244565, 244565, 250, 250, 'Gemini''s Green Scope of Variety', 130891), (296269, 296269, 1, 1, 'Gender Change - Female', 296271), (303363, 303363, 1, 1, 'Gender Change - Female', 296271), (296270, 296270, 1, 1, 'Gender Change - Male', 296272), (303362, 303362, 1, 1, 'Gender Change - Male', 296272), (287318, 287318, 1, 1, 'Genele''s T-shirt', 287351), (290071, 290071, 1, 1, 'Genele''s T-shirt Spawner', 287354), (286520, 286520, 1, 1, 'Geneles Nano Item', 273626), (203277, 203277, 1, 1, 'General Kaehler''s head on a Silver Platter', 203552), (247111, 247112, 1, 300, 'Generic Kyr''Ozch DNA-Soup', 247115), (137245, 137246, 1, 200, 'Generic Magnetic Propulsion System', 130693), (296569, 296569, 1, 1, 'Generic Nano Transmitter', 297385), (247766, 254822, 1, 300, 'Generic Organic Immunity System', 100334), (151365, 151365, 10, 10, 'Generic Ring Template', 84063), (246799, 246800, 1, 199, 'Generic Test Weapon', 33155), (246801, 246802, 200, 299, 'Generic Test Weapon', 33155), (246803, 246803, 300, 300, 'Generic Test Weapon', 33155), (247760, 247760, 100, 100, 'Generic Volatile Nanobots', 156482), (225707, 225708, 1, 300, 'Genevra''s Harmonic Circlet', 151925), (152023, 152023, 45, 45, 'Gentle Hands', 13281), (40827, 40827, 1, 1, 'Geological Survey Data', 20403), (290034, 290034, 1, 1, 'Gervais''s Purple Tuxedo - Deluxe Edition', 290053), (301654, 301654, 1, 1, 'Gestating Pustule', 301676), (281450, 281450, 1, 1, 'Ghost Flower', 227904), (253408, 253408, 1, 1, 'Gianna''s Wedding Ring', 84061), (289501, 289501, 1, 1, 'Giant Snow Shovel', 289500), (259914, 259914, 1, 1, 'Gift Box', 205832), (268793, 268793, 150, 150, 'Gift Wrapped Alien Costume', 268395), (270400, 270400, 1, 1, 'Gift Wrapped Bellhop Costume', 99669), (270369, 270369, 1, 1, 'Gift Wrapped Belly Dancer Outfit', 99669), (270386, 270386, 1, 1, 'Gift Wrapped Biker''s Outfit', 99669), (270378, 270378, 1, 1, 'Gift Wrapped Black Leather Outfit', 99669), (270405, 270405, 1, 1, 'Gift Wrapped Blue Pajamas', 99669), (270381, 270381, 1, 1, 'Gift Wrapped Bomber''s Jacket', 99669), (268696, 268696, 150, 150, 'Gift Wrapped Boxing Gloves', 268657), (270371, 270371, 1, 1, 'Gift Wrapped Bunny Outfit', 99669), (270404, 270404, 1, 1, 'Gift Wrapped Camouflage Outfit', 99669), (270374, 270374, 1, 1, 'Gift Wrapped Champion''s Costume', 99669), (270375, 270375, 1, 1, 'Gift Wrapped Cheyenne Leather Outfit', 99669), (270413, 270413, 1, 1, 'Gift Wrapped Cloak Assortment #1', 99669), (270414, 270414, 1, 1, 'Gift Wrapped Cloak Assortment #2', 99669), (270415, 270415, 1, 1, 'Gift Wrapped Cloak Assortment #3', 268395), (270416, 270416, 1, 1, 'Gift Wrapped Cloak Assortment #3', 99669), (270417, 270417, 1, 1, 'Gift Wrapped Cloak Assortment #4', 99669), (270421, 270421, 1, 1, 'Gift Wrapped Clothing Pack: Accessories and Cloaks Assortment', 99663), (270418, 270418, 1, 1, 'Gift Wrapped Clothing Pack: Costume Assortment #1', 99663), (270419, 270419, 1, 1, 'Gift Wrapped Clothing Pack: Costume Assortment #2', 99663), (270420, 270420, 1, 1, 'Gift Wrapped Clothing Pack: Costume Assortment #3', 99663), (270372, 270372, 1, 1, 'Gift Wrapped Clown Costume', 99669), (270377, 270377, 1, 1, 'Gift Wrapped Cowboy Outfit', 99669), (270399, 270399, 1, 1, 'Gift Wrapped Dungarees', 99669), (270382, 270382, 1, 1, 'Gift Wrapped Entertainer Outfit', 99669), (270398, 270398, 1, 1, 'Gift Wrapped Executive Outfit', 99669), (270383, 270383, 1, 1, 'Gift Wrapped Firefighter''s Costume', 99669), (270388, 270388, 1, 1, 'Gift Wrapped Flapper Costume', 99669), (270384, 270384, 1, 1, 'Gift Wrapped Flight Attendant Uniform', 99669), (270406, 270406, 1, 1, 'Gift Wrapped Footwear Assortment', 99669), (270376, 270376, 1, 1, 'Gift Wrapped Gunman''s Outfit', 99669), (270373, 270373, 1, 1, 'Gift Wrapped Hero''s Costume', 99669), (270409, 270409, 1, 1, 'Gift Wrapped Hipster Assortment', 99669), (270379, 270379, 1, 1, 'Gift Wrapped Maid Outfit', 99669), (289572, 289572, 150, 150, 'Gift Wrapped Mittens', 289561), (270385, 270385, 1, 1, 'Gift Wrapped Mummy Costume', 99669), (270395, 270395, 1, 1, 'Gift Wrapped Omni-Pol Costume', 268395), (270396, 270396, 1, 1, 'Gift Wrapped Omni-Pol Costume', 99669), (270370, 270370, 1, 1, 'Gift Wrapped Outfit of the King', 99669), (270397, 270397, 1, 1, 'Gift Wrapped Parade Uniform', 99669), (270387, 270387, 1, 1, 'Gift Wrapped Pirate Costume', 99669), (270408, 270408, 1, 1, 'Gift Wrapped Queen''s Blouse', 99669), (270380, 270380, 1, 1, 'Gift Wrapped Raider''s Jacket', 99669), (270403, 270403, 1, 1, 'Gift Wrapped Ski Suit', 99669), (270401, 270401, 1, 1, 'Gift Wrapped Slick Suit', 99669), (270389, 270389, 1, 1, 'Gift Wrapped Striped Pajamas', 99669), (270411, 270411, 1, 1, 'Gift Wrapped Tattoo Assortment', 99669), (270407, 270407, 1, 1, 'Gift Wrapped Thong Assortment', 99669), (270412, 270412, 1, 1, 'Gift Wrapped Top Assortment', 99669), (270402, 270402, 1, 1, 'Gift Wrapped Trapeze Artist Costume', 99669), (289903, 289903, 1, 1, 'Gift Wrapping Paper', 289900), (294144, 294144, 1, 1, 'Gift Wrapping Paper', 274183), (297310, 297310, 1, 1, 'Gift from Fia Lou', 274183), (208071, 208071, 50, 50, 'Gift of Jupiter', 33152), (303096, 303096, 1, 1, 'Gift of Palmiero', 284425), (303182, 303182, 1, 1, 'Gift of Palmiero', 284425), (303196, 303196, 1, 1, 'Gift of Palmiero', 284425), (303202, 303202, 1, 1, 'Gift of Palmiero', 281837), (303210, 303210, 1, 1, 'Gift of Palmiero', 281837), (303214, 303214, 1, 1, 'Gift of Palmiero', 281837), (303215, 303215, 1, 1, 'Gift of Palmiero', 281837), (303216, 303216, 1, 1, 'Gift of Palmiero', 281837), (290482, 290482, 1, 1, 'Gift of the Desert Rider', 227904), (302501, 302501, 1, 1, 'Gift of the Desert Rider', 205832), (302556, 302556, 1, 1, 'Gift of the Desert Rider', 227904), (304059, 304059, 1, 1, 'Gift of the Hollow Reaper', 227904), (304060, 304060, 1, 1, 'Gift of the Hollow Reaper', 205832), (304063, 304063, 1, 1, 'Gift of the Hollow Reaper', 227904), (152259, 152260, 1, 200, 'Gift of the Old Gargantula', 84067), (203261, 203261, 1, 1, 'Gift wrapped basket', 136332), (303630, 303630, 1, 1, 'Gift-Wrapped Support Beam', 303660), (224184, 224184, 150, 150, 'Gil Jha''s Discreet Helmet', 213616), (224432, 224432, 150, 150, 'Gil Jha''s Sleeve of Gathering', 22967), (253362, 253362, 1, 1, 'Gilbert''s Book', 37931), (253363, 253363, 1, 1, 'Gilbert''s Book', 37931), (253358, 253358, 1, 1, 'Gilbert''s Bottle', 157905), (253359, 253359, 1, 1, 'Gilbert''s Handwritten Note', 154678), (253390, 253390, 1, 1, 'Gilbert''s Handwritten Note', 154678), (290480, 290480, 150, 150, 'Gilthar''s Ring', 290677), (224088, 224088, 150, 150, 'Gilthar''s Ring of Force', 287078), (224080, 224080, 150, 150, 'Gilthar''s Summer Shorts', 22901), (224081, 224081, 150, 150, 'Gilthar''s Winter Pants', 27670), (274121, 274121, 1, 1, 'Gingerbread Dough', 274108), (274120, 274120, 1, 1, 'Gingerbread Heart', 274110), (274142, 274142, 1, 1, 'Gingerbread Heart (Baked)', 274136), (274139, 274139, 1, 1, 'Gingerbread Heart (Dough)', 274131), (284858, 284858, 1, 1, 'Gingerbread Heckler', 284712), (274144, 274144, 1, 1, 'Gingerbread House', 274154), (279531, 279531, 1, 1, 'Gingerbread Leet', 279544), (274116, 274116, 1, 1, 'Gingerbread Man', 274112), (274140, 274140, 1, 1, 'Gingerbread Man (Baked)', 274132), (274137, 274137, 1, 1, 'Gingerbread Man (Dough)', 274133), (274118, 274118, 1, 1, 'Gingerbread Woman', 274114), (274141, 274141, 1, 1, 'Gingerbread Woman (Baked)', 274134), (274138, 274138, 1, 1, 'Gingerbread Woman (Dough)', 274135), (279530, 279530, 1, 1, 'Gingerbread Yutto', 279542), (279539, 279539, 1, 1, 'Gingerbread Yutto Tent', 279543), (300849, 300849, 1, 1, 'Gingerbread Yutto Tent', 279543), (161636, 161637, 1, 49, 'Giraldi Crystal I', 161134), (161638, 161639, 50, 99, 'Giraldi Crystal II', 161134), (161640, 161641, 100, 149, 'Giraldi Crystal III', 161134), (161642, 161643, 150, 199, 'Giraldi Crystal IV', 161134), (161644, 161644, 200, 200, 'Giraldi Crystal V', 161134), (274663, 274663, 1, 1, 'Gladiator''s Spirit Vest', 274679), (296132, 296132, 1, 1, 'Glaerna''s T-shirt', 296156), (296291, 296291, 1, 1, 'Glaerna''s T-shirt', 296156), (296133, 296133, 1, 1, 'Glaerna''s T-shirt Spawner', 296156), (211203, 211204, 1, 299, 'Glaive of the Proselyte', 13339), (295874, 295874, 250, 250, 'Glass Band Template', 245483), (233104, 233104, 125, 125, 'Glass Snake', 130731), (163709, 163710, 1, 200, 'Glimmering Magnetic Ring', 84046), (130178, 130179, 160, 199, 'Glistering OT Sword', 113987), (41121, 41121, 1, 1, 'Glittering Black Shirt', 30916), (41120, 41120, 1, 1, 'Glittering Blue Shirt', 30917), (41117, 41117, 1, 1, 'Glittering Blue Sleeves', 30917), (31257, 31257, 1, 1, 'Glittering Female Top', 30912), (31256, 31256, 1, 1, 'Glittering Green Female Top', 30913), (41119, 41119, 1, 1, 'Glittering Green Shirt', 30918), (41116, 41116, 1, 1, 'Glittering Green Sleeves', 30918), (41118, 41118, 1, 1, 'Glittering Long Black Sleeves', 30896), (41115, 41115, 1, 1, 'Glittering Pink Shirt', 30919), (41114, 41114, 1, 1, 'Glittering Pink Sleeves', 30919), (275238, 275238, 1, 1, 'Glittering Short Black Sleeves', 85943), (158797, 158797, 1, 1, 'Globe of Clarity', 290364), (158796, 158796, 1, 1, 'Globe of Sufferance', 25800), (207066, 207065, 75, 150, 'Globe-Trotter Helmet', 205770), (205951, 205951, 1, 1, 'Gloomfall Armor (Body)', 13249), (205955, 205955, 1, 1, 'Gloomfall Armor (Boots)', 13265), (205953, 205953, 1, 1, 'Gloomfall Armor (Gloves)', 13279), (205950, 205950, 1, 1, 'Gloomfall Armor (Helmet)', 22269), (205952, 205952, 1, 1, 'Gloomfall Armor (Pants)', 13294), (205954, 205954, 1, 1, 'Gloomfall Armor (Sleeves)', 13227), (215401, 215401, 1, 1, 'Gloomy', 82197), (224731, 224731, 50, 50, 'Gloomy Essence Brain Spirit', 230992), (224939, 224939, 50, 50, 'Gloomy Heart Spirit of Essence', 230984), (224953, 224953, 50, 50, 'Gloomy Heart Spirit of Strength', 230984), (224967, 224967, 50, 50, 'Gloomy Heart Spirit of Weakness', 230984), (225039, 225039, 50, 50, 'Gloomy Left Limb Spirit of Essence', 230995), (224867, 224867, 50, 50, 'Gloomy Midriff Spirit of Knowledge', 230976), (224885, 224885, 50, 50, 'Gloomy Midriff Spirit of Weakness', 230976), (224834, 224834, 50, 50, 'Gloomy Right Limb Spirit of Essence', 231004), (224817, 224817, 50, 50, 'Gloomy Right Limb Spirit of Weakness', 231004), (225175, 225175, 50, 50, 'Gloomy Spirit of Defense', 230998), (224783, 224783, 50, 50, 'Gloomy Spirit of Essence Whispered', 230986), (225233, 225233, 50, 50, 'Gloomy Spirit of Feet Strength', 230990), (224748, 224748, 50, 50, 'Gloomy Spirit of Knowledge Whispered', 230986), (225056, 225056, 50, 50, 'Gloomy Spirit of Right Wrist Offence', 231006), (225074, 225074, 50, 50, 'Gloomy Spirit of Right Wrist Weakness', 231006), (165306, 165306, 200, 200, 'Gloves of Azure Reveries', 31656), (213967, 213968, 1, 100, 'Gloves of High Sensation', 118189), (208224, 208225, 100, 200, 'Gloves of Yearning', 27661), (244562, 244562, 250, 250, 'Gloves of the Caring Capricorn', 21871), (282117, 282117, 150, 150, 'Gloves of the Goddess', 281510), (41037, 41037, 1, 1, 'Gloves with a Blue Leopard Print', 37110), (41031, 41031, 1, 1, 'Gloves with a Blue Zebra Print', 37104), (41036, 41036, 1, 1, 'Gloves with a Leopard Print', 37109), (41035, 41035, 1, 1, 'Gloves with a Rainbow Leopard Print', 37108), (41034, 41034, 1, 1, 'Gloves with a White Leopard Print', 37107), (41030, 41030, 1, 1, 'Gloves with a Zebra Print', 37103), (136654, 136655, 1, 200, 'Glow Art', 25803), (283750, 283750, 1, 1, 'Glow in the Dark Loot', 277964), (216702, 216702, 1, 1, 'Glow: 43743', 84059), (216701, 216701, 1, 1, 'Glow: 43752', 84059), (165471, 165471, 1, 1, 'Glowing Amygdaloid Nucleus', 144711), (264071, 264071, 1, 1, 'Glowing Bark', 265482), (199391, 199391, 265, 265, 'Glowing Bau Charger Armor Boots', 22878), (199412, 199412, 265, 265, 'Glowing Bau Charger Armor Gloves', 22939), (199433, 199433, 265, 265, 'Glowing Bau Charger Armor Helmet', 31738), (199454, 199454, 265, 265, 'Glowing Bau Charger Armor Pants', 22928), (199475, 199475, 265, 265, 'Glowing Bau Charger Armor Sleeves', 22889), (199496, 199496, 265, 265, 'Glowing Bau Charger Body Armor', 22981), (199517, 199517, 265, 265, 'Glowing Bau Charger Female Body Armor', 22942), (251266, 251267, 1, 300, 'Glowing Biotech Rod', 100330), (289783, 289784, 1, 300, 'Glowing Biotech Rod Ring', 289773), (31237, 31237, 1, 1, 'Glowing Blue Pants', 30937), (214791, 214791, 1, 1, 'Glowing Blueprint of Aban', 227243), (214887, 214887, 1, 1, 'Glowing Blueprint of Apprentice Diviner', 227252), (214901, 214901, 1, 1, 'Glowing Blueprint of Dalja', 227255), (214884, 214884, 1, 1, 'Glowing Blueprint of Demon', 227257), (214786, 214786, 1, 1, 'Glowing Blueprint of Enel', 227259), (214899, 214899, 1, 1, 'Glowing Blueprint of Gilthar', 227260), (214787, 214787, 1, 1, 'Glowing Blueprint of Shere', 227266), (214790, 214790, 1, 1, 'Glowing Blueprint of Thrak', 227267), (31242, 31242, 1, 1, 'Glowing Green Pants', 30938), (231148, 231148, 1, 1, 'Glowing blueprint Attuned to Lady Genevra', 227268), (123400, 123401, 1, 23, 'Gluegun', 13313), (123402, 123403, 24, 46, 'Gluegun', 13313), (123404, 123405, 47, 69, 'Gluegun', 13313), (123406, 123407, 70, 92, 'Gluegun', 13313), (123408, 123409, 93, 115, 'Gluegun', 13313), (123410, 123411, 116, 138, 'Gluegun', 13313), (123412, 123413, 139, 161, 'Gluegun', 13313), (123414, 123415, 162, 184, 'Gluegun', 13313), (123416, 123417, 185, 199, 'Gluegun', 13313), (123418, 123418, 200, 200, 'Gluegun', 13313), (271481, 271482, 1, 300, 'Gluegun - 000', 13313), (271483, 271484, 1, 300, 'Gluegun - 002', 13313), (271485, 271486, 1, 300, 'Gluegun - 402', 13313), (271487, 271488, 1, 300, 'Gluegun - C02', 13313), (280721, 280721, 300, 300, 'Gluttony of the Xan', 281584), (227911, 227911, 220, 220, 'Glyph of the Arcana', 227586), (227751, 227751, 100, 100, 'Glyph of the Eight', 227547), (227757, 227757, 100, 100, 'Glyph of the Five', 227584), (227752, 227752, 100, 100, 'Glyph of the Four', 227584), (227760, 227760, 100, 100, 'Glyph of the King', 227547), (227759, 227759, 100, 100, 'Glyph of the Knight', 227530), (227756, 227756, 100, 100, 'Glyph of the Nine', 227584), (227758, 227758, 100, 100, 'Glyph of the One', 227584), (227755, 227755, 100, 100, 'Glyph of the Page', 227530), (227753, 227753, 100, 100, 'Glyph of the Queen', 227547), (227754, 227754, 100, 100, 'Glyph of the Seven', 227530), (227748, 227748, 100, 100, 'Glyph of the Six', 227530), (227749, 227749, 100, 100, 'Glyph of the Ten', 227530), (227747, 227747, 100, 100, 'Glyph of the Three', 227547), (227750, 227750, 100, 100, 'Glyph of the Two', 227584), (151667, 151668, 15, 200, 'Gnamtulakh Bracer', 84052), (150180, 150181, 41, 50, 'Gnarled Bodum-Larga Club', 85172), (211220, 211220, 300, 300, 'Gnarled Rod of Repayment', 13321), (225677, 225678, 1, 300, 'Gnish''s Ring of Field Quantum Physics', 151918), (303179, 303179, 1, 1, 'Gnuff''s Eternal Rift Crystal', 286756), (303180, 303180, 1, 1, 'Gnuff''s Rift Crystal', 286746), (282067, 282067, 1, 1, 'Go! Fresh', 283489), (282066, 282066, 1, 1, 'Go! FusionBerry', 283490), (282065, 282065, 1, 1, 'Go! Splash', 283491), (282083, 282083, 1, 1, 'Go! Splash Poster', 283582), (199693, 199693, 300, 300, 'Godlike Nadir Homage Armor Boots', 22876), (199714, 199714, 300, 300, 'Godlike Nadir Homage Armor Gloves', 22931), (199735, 199735, 300, 300, 'Godlike Nadir Homage Armor Helmet', 31733), (199756, 199756, 300, 300, 'Godlike Nadir Homage Armor Pants', 22914), (199777, 199777, 300, 300, 'Godlike Nadir Homage Armor Sleeves', 22960), (199798, 199798, 300, 300, 'Godlike Nadir Homage Body Armor', 22985), (287149, 287149, 200, 200, 'Gofle-Hair Brush', 287466), (271169, 271170, 1, 300, 'Gofle-Prod - 000', 33168), (271171, 271172, 1, 300, 'Gofle-Prod - 010', 33168), (271173, 271174, 1, 300, 'Gofle-Prod - 050', 33168), (271175, 271176, 1, 300, 'Gofle-Prod - 070', 33168), (271177, 271178, 1, 300, 'Gofle-Prod - 870', 33168), (25825, 25825, 200, 200, 'Gold 2 Sphere Pearl by Peters & Tool', 286927), (154899, 154899, 187, 187, 'Gold Acantophis', 154366), (281348, 281348, 1, 1, 'Gold Card', 281336), (151376, 151375, 1, 250, 'Gold Filigree Ring', 286803), (244474, 244480, 1, 400, 'Gold Filigree Ring set with a Almandine', 286968), (244459, 244465, 1, 400, 'Gold Filigree Ring set with a Amber', 286969), (244251, 244257, 1, 400, 'Gold Filigree Ring set with a Aquamarine', 286970), (244395, 244401, 1, 400, 'Gold Filigree Ring set with a Balas ruby', 286971), (244335, 244341, 1, 400, 'Gold Filigree Ring set with a Black opal', 286972), (151523, 151516, 1, 400, 'Gold Filigree Ring set with a Blue Pearl by Conner', 301040), (244307, 244313, 1, 400, 'Gold Filigree Ring set with a Chrysoberyl', 286974), (151593, 151587, 1, 200, 'Gold Filigree Ring set with a Cold Stone', 286975), (244530, 244536, 1, 400, 'Gold Filigree Ring set with a Coral', 286976), (151578, 151573, 1, 200, 'Gold Filigree Ring set with a Crystal Sphere', 286977), (244381, 244387, 1, 400, 'Gold Filigree Ring set with a Demantoid', 286978), (244293, 244299, 1, 400, 'Gold Filigree Ring set with a Diamond', 286979), (151509, 151503, 1, 200, 'Gold Filigree Ring set with a Ember', 286980), (151564, 151559, 1, 200, 'Gold Filigree Ring set with a Ember Sphere', 286981), (244410, 244416, 1, 400, 'Gold Filigree Ring set with a Emerald', 286982), (244237, 244243, 1, 400, 'Gold Filigree Ring set with a Fire opal', 286983), (151550, 151545, 1, 200, 'Gold Filigree Ring set with a Gem', 286796), (151537, 151530, 1, 200, 'Gold Filigree Ring set with a Hot Stone', 286797), (244445, 244451, 1, 400, 'Gold Filigree Ring set with a Jet', 286799), (244516, 244522, 1, 400, 'Gold Filigree Ring set with a Pearl', 286800), (151425, 151426, 1, 200, 'Gold Filigree Ring set with a Pearl of Rubi-Ka', 286801), (244475, 244481, 1, 400, 'Gold Filigree Ring set with a Perfectly Cut Almandine', 286968), (244460, 244466, 1, 400, 'Gold Filigree Ring set with a Perfectly Cut Amber', 286969), (244252, 244258, 1, 400, 'Gold Filigree Ring set with a Perfectly Cut Aquamarine', 286970), (244396, 244402, 1, 400, 'Gold Filigree Ring set with a Perfectly Cut Balas ruby', 286971), (244336, 244342, 1, 400, 'Gold Filigree Ring set with a Perfectly Cut Black opal', 286972), (151519, 151519, 1, 1, 'Gold Filigree Ring set with a Perfectly Cut Blue Pearl by Conner', 301040), (244308, 244314, 1, 400, 'Gold Filigree Ring set with a Perfectly Cut Chrysoberyl', 286974), (151590, 151583, 1, 200, 'Gold Filigree Ring set with a Perfectly Cut Cold Stone', 286975), (244531, 244537, 1, 400, 'Gold Filigree Ring set with a Perfectly Cut Coral', 286976), (151576, 151569, 1, 200, 'Gold Filigree Ring set with a Perfectly Cut Crystal Sphere', 286977), (244382, 244388, 1, 400, 'Gold Filigree Ring set with a Perfectly Cut Demantoid', 286978), (244294, 244300, 1, 400, 'Gold Filigree Ring set with a Perfectly Cut Diamond', 286979), (151505, 151500, 1, 200, 'Gold Filigree Ring set with a Perfectly Cut Ember', 286980), (151561, 151555, 1, 200, 'Gold Filigree Ring set with a Perfectly Cut Ember Sphere', 286981), (244411, 244417, 1, 400, 'Gold Filigree Ring set with a Perfectly Cut Emerald', 286982), (244238, 244244, 1, 400, 'Gold Filigree Ring set with a Perfectly Cut Fire opal', 286983), (151458, 151458, 300, 300, 'Gold Filigree Ring set with a Perfectly Cut Flawless Spring Crystal', 286795), (151548, 151541, 1, 200, 'Gold Filigree Ring set with a Perfectly Cut Gem', 286796), (154875, 154875, 250, 250, 'Gold Filigree Ring set with a Perfectly Cut High Quality Silver Onyx', 286798), (151534, 151528, 1, 200, 'Gold Filigree Ring set with a Perfectly Cut Hot Stone', 286797), (244446, 244452, 1, 400, 'Gold Filigree Ring set with a Perfectly Cut Jet', 286799), (244517, 244523, 1, 400, 'Gold Filigree Ring set with a Perfectly Cut Pearl', 286800), (151427, 151428, 1, 200, 'Gold Filigree Ring set with a Perfectly Cut Pearl of Rubi-Ka', 286801), (244489, 244495, 1, 400, 'Gold Filigree Ring set with a Perfectly Cut Red beryl', 286802), (151413, 151414, 1, 150, 'Gold Filigree Ring set with a Perfectly Cut Rubi-Ka Ruby', 286804), (151492, 151485, 1, 200, 'Gold Filigree Ring set with a Perfectly Cut Ruby', 286805), (244503, 244509, 1, 400, 'Gold Filigree Ring set with a Perfectly Cut Ruby Pearl', 286806), (244266, 244272, 1, 400, 'Gold Filigree Ring set with a Perfectly Cut Sapphire', 286807), (154803, 154803, 1, 1, 'Gold Filigree Ring set with a Perfectly Cut Silver Onyx', 286808), (151449, 151444, 1, 200, 'Gold Filigree Ring set with a Perfectly Cut Silver Perl', 286809), (151478, 151471, 1, 200, 'Gold Filigree Ring set with a Perfectly Cut Soul Fragment', 286810), (151514, 151514, 400, 400, 'Gold Filigree Ring set with a Perfectly Cut Soul Sphere by Divaad', 301039), (151464, 151464, 1, 1, 'Gold Filigree Ring set with a Perfectly Cut Spring Crystal', 286811), (244280, 244286, 1, 400, 'Gold Filigree Ring set with a Perfectly Cut Star Ruby', 286812), (244432, 244438, 1, 400, 'Gold Filigree Ring set with a Perfectly Cut Topaz', 286813), (244322, 244328, 1, 400, 'Gold Filigree Ring set with a Perfectly Cut Water opal', 286814), (244367, 244373, 1, 400, 'Gold Filigree Ring set with a Perfectly Cut White opal', 286815), (244488, 244494, 1, 400, 'Gold Filigree Ring set with a Red beryl', 286802), (151411, 151412, 1, 150, 'Gold Filigree Ring set with a Rubi-Ka Ruby', 286804), (151494, 151489, 1, 200, 'Gold Filigree Ring set with a Ruby', 286805), (244502, 244508, 1, 400, 'Gold Filigree Ring set with a Ruby Pearl', 286806), (244265, 244271, 1, 400, 'Gold Filigree Ring set with a Sapphire', 286807), (154806, 154878, 1, 250, 'Gold Filigree Ring set with a Silver Onyx', 286808), (151453, 151447, 1, 200, 'Gold Filigree Ring set with a Silver Perl', 286809), (151480, 151474, 1, 200, 'Gold Filigree Ring set with a Soul Fragment', 286810), (151467, 151460, 1, 300, 'Gold Filigree Ring set with a Spring Crystal', 286811), (244279, 244285, 1, 400, 'Gold Filigree Ring set with a Star Ruby', 286812), (244431, 244437, 1, 400, 'Gold Filigree Ring set with a Topaz', 286813), (244321, 244327, 1, 400, 'Gold Filigree Ring set with a Water opal', 286814), (244366, 244372, 1, 400, 'Gold Filigree Ring set with a White opal', 286815), (151378, 151368, 1, 250, 'Gold Filigree Wire', 151015), (163718, 163719, 1, 200, 'Gold Monkey Helmet of Extreme Merriment', 31735), (204573, 204573, 1, 1, 'Gold Ring of the Three', 286791), (157404, 157404, 1, 1, 'Gold Twentyseven Scarabee Advantage', 81775), (232657, 232658, 1, 149, 'Gold ingot', 289753), (232658, 232660, 150, 199, 'Gold ingot', 289753), (232660, 232661, 200, 249, 'Gold ingot', 289753), (232661, 232662, 250, 400, 'Gold ingot', 289753), (295648, 295648, 1, 1, 'Gold-Infused Metallic Ring', 233133), (136620, 136621, 1, 200, 'Golden Bracer', 84047), (286441, 286441, 1, 1, 'Golden Chest of the Collector', 286444), (205937, 205937, 1, 1, 'Golden Crystal Ring Of Notum For The Supreme', 151930), (31253, 31253, 1, 1, 'Golden Female Top with a Dragon Print', 30914), (248406, 248406, 1, 1, 'Golden Mystery Cloak of the Nanomage Liberation Front', 255279), (258534, 258534, 1, 1, 'Golden Noose', 258541), (280586, 280586, 1, 1, 'Golden Notum Crystal', 151029), (136630, 136631, 1, 200, 'Golden Nugget', 43072), (199528, 199528, 215, 215, 'Golden Periodic Tech Armor Boots', 22886), (199549, 199549, 215, 215, 'Golden Periodic Tech Armor Gloves', 22933), (199570, 199570, 215, 215, 'Golden Periodic Tech Armor Helmet', 31731), (199592, 199592, 215, 215, 'Golden Periodic Tech Armor Pants', 22912), (199613, 199613, 215, 215, 'Golden Periodic Tech Armor Sleeves', 22911), (199634, 199634, 215, 215, 'Golden Periodic Tech Body Armor', 22990), (199655, 199655, 215, 215, 'Golden Periodic Tech Female Body Armor', 22909), (152788, 152792, 1, 200, 'Golden Pilot Helmet', 31735), (136598, 136599, 1, 200, 'Golden Ring', 84059), (136642, 136643, 1, 200, 'Golden Sphere', 25797), (289553, 289553, 1, 1, 'Golden Star Field Nanospray', 289591), (289539, 289539, 1, 1, 'Golden Star Nanospray', 289590), (285443, 285443, 1, 1, 'Golden Trophy', 271896), (285409, 285409, 1, 1, 'Golden Trophy Phasefront Banshee - Black', 271903), (285407, 285407, 1, 1, 'Golden Trophy Phasefront Banshee - Cream', 271905), (285404, 285404, 1, 1, 'Golden Trophy Phasefront Banshee - Death Rider', 273470), (285406, 285406, 1, 1, 'Golden Trophy Phasefront Banshee - Flames', 271906), (285405, 285405, 1, 1, 'Golden Trophy Phasefront Banshee - Red', 271907), (285408, 285408, 1, 1, 'Golden Trophy Phasefront Banshee - White', 271904), (285410, 285410, 1, 1, 'Golden Trophy Phasefront Banshee - Yellow', 271902), (285402, 285402, 1, 1, 'Golden Trophy Phasefront Classic - Charon', 281575), (285415, 285415, 1, 1, 'Golden Trophy Phasefront Spectre - Black', 271909), (285413, 285413, 1, 1, 'Golden Trophy Phasefront Spectre - Flames', 271893), (285416, 285416, 1, 1, 'Golden Trophy Phasefront Spectre - Green', 271908), (285412, 285412, 1, 1, 'Golden Trophy Phasefront Spectre - Urban Camouflage', 271894), (285414, 285414, 1, 1, 'Golden Trophy Phasefront Spectre - White', 271910), (285411, 285411, 1, 1, 'Golden Trophy Phasefront Spectre - Yellow', 271895), (285421, 285421, 1, 1, 'Golden Trophy Phasefront Wraith X2-45 - Black', 271897), (285420, 285420, 1, 1, 'Golden Trophy Phasefront Wraith X2-45 - Camo', 271898), (285422, 285422, 1, 1, 'Golden Trophy Phasefront Wraith X2-45 - Desert', 271896), (285418, 285418, 1, 1, 'Golden Trophy Phasefront Wraith X2-45 - Red', 271901), (285403, 285403, 1, 1, 'Golden Trophy Phasefront Wraith X2-45 - Skull Box', 277471), (285419, 285419, 1, 1, 'Golden Trophy Phasefront Wraith X2-45 - Urban Camouflage', 271899), (285417, 285417, 1, 1, 'Golden Trophy Phasefront Wraith X2-45 - White', 271900), (285401, 285401, 1, 1, 'Golden Trophy Wraith X2-45 - Nosferatu', 283966), (245571, 245571, 150, 150, 'Golem''s Warm Notum Hood', 22999), (199682, 199682, 245, 245, 'Good Nadir Homage Armor Boots', 22876), (199703, 199703, 245, 245, 'Good Nadir Homage Armor Gloves', 22931), (199724, 199724, 245, 245, 'Good Nadir Homage Armor Helmet', 31733), (199745, 199745, 245, 245, 'Good Nadir Homage Armor Pants', 22914), (199766, 199766, 245, 245, 'Good Nadir Homage Armor Sleeves', 22960), (199787, 199787, 245, 245, 'Good Nadir Homage Body Armor', 22985), (273013, 273013, 1, 1, 'Good Stockings of the North', 273004), (273029, 273029, 1, 1, 'Good Stockings of the North', 273004), (163557, 163557, 1, 1, 'Good deal of enigma fibers', 163575), (225641, 225642, 1, 500, 'Gore', 239083), (225643, 225644, 1, 500, 'Gore', 239083), (225645, 225646, 1, 500, 'Gore', 239083), (123722, 123722, 200, 200, 'Gorgeous OT Biomag', 38055), (273105, 273105, 200, 200, 'Gothic Lolita - Halloween Edition', 273107), (273108, 273108, 200, 200, 'Gothic Lolita - Halloween Edition', 273109), (225577, 225577, 1, 1, 'Governance', 239283), (200066, 200067, 275, 280, 'Gozenwonoku Nippon-Tech Armor', 96106), (200087, 200088, 275, 280, 'Gozenwonoku Nippon-Tech Armor Boots', 13275), (200108, 200109, 275, 280, 'Gozenwonoku Nippon-Tech Armor Gloves', 13287), (200129, 200130, 275, 280, 'Gozenwonoku Nippon-Tech Armor Helmet', 96140), (200150, 200151, 275, 280, 'Gozenwonoku Nippon-Tech Armor Pants', 13305), (200171, 200172, 275, 280, 'Gozenwonoku Nippon-Tech Armor Sleeves', 13237), (200192, 200193, 275, 280, 'Gozenwonoku Nippon-Tech Body Armor', 13258), (200206, 200206, 240, 240, 'Graces ICC Armor Boots', 22884), (200227, 200227, 240, 240, 'Graces ICC Armor Gloves', 31656), (200248, 200248, 240, 240, 'Graces ICC Armor Helmet', 31734), (200269, 200269, 240, 240, 'Graces ICC Armor Pants', 22919), (200290, 200290, 240, 240, 'Graces ICC Armor Sleeves', 31644), (200311, 200311, 240, 240, 'Graces ICC Body Armor', 31648), (199380, 199380, 210, 210, 'Grafted Bau Charger Armor Boots', 22878), (199401, 199401, 210, 210, 'Grafted Bau Charger Armor Gloves', 22939), (199422, 199422, 210, 210, 'Grafted Bau Charger Armor Helmet', 31738), (199443, 199443, 210, 210, 'Grafted Bau Charger Armor Pants', 22928), (199464, 199464, 210, 210, 'Grafted Bau Charger Armor Sleeves', 22889), (199485, 199485, 210, 210, 'Grafted Bau Charger Body Armor', 22981), (199506, 199506, 210, 210, 'Grafted Bau Charger Female Body Armor', 22942), (246001, 246001, 244, 244, 'Grail of Golden Acorns', 245993), (246002, 246002, 245, 245, 'Grail of Golden Acorns', 245993), (246011, 246011, 254, 254, 'Grail of Mortal Combat', 245993), (246012, 246012, 255, 255, 'Grail of Mortal Combat', 245993), (246005, 246005, 248, 248, 'Grail of Snake Secrets', 245993), (246006, 246006, 249, 249, 'Grail of Snake Secrets', 245993), (245999, 245999, 242, 242, 'Grail of Speaking Birds', 245993), (246000, 246000, 243, 243, 'Grail of Speaking Birds', 245993), (246003, 246003, 246, 246, 'Grail of the Antlered King', 245993), (246004, 246004, 247, 247, 'Grail of the Antlered King', 245993), (246013, 246014, 256, 259, 'Grail of the Black Cauldron', 245993), (246007, 246007, 250, 250, 'Grail of the Crystal Key', 245993), (246008, 246008, 251, 251, 'Grail of the Crystal Key', 245993), (246009, 246009, 252, 252, 'Grail of the High Tower', 245993), (246010, 246010, 253, 253, 'Grail of the High Tower', 245993), (246015, 246015, 260, 260, 'Grail of the Virgin', 245993), (245997, 245997, 240, 240, 'Grail of the White Feather', 245993), (245998, 245998, 241, 241, 'Grail of the White Feather', 245993), (223693, 223693, 40, 40, 'Grand Armband of Agility', 84055), (223697, 223697, 40, 40, 'Grand Armband of Intelligence', 84055), (223699, 223699, 40, 40, 'Grand Armband of Psychic Power', 84055), (223698, 223698, 40, 40, 'Grand Armband of Sense', 84055), (223692, 223692, 40, 40, 'Grand Armband of Stamina', 84055), (223691, 223691, 40, 40, 'Grand Armband of Strength', 84055), (129654, 129655, 181, 199, 'Grand master Wen-Wen', 85161), (152776, 152776, 200, 200, 'Grandmaster Click Stabber', 13346), (253485, 253485, 1, 1, 'Granite Table of Marius', 255903), (227712, 227712, 1, 1, 'Grasp', 239257), (305505, 305505, 1, 1, 'Grasp of the Immortal', 12666), (246833, 246833, 1, 1, 'Grasping Ring', 151921), (224732, 224732, 60, 60, 'Grave Essence Brain Spirit', 230992), (224968, 224968, 60, 60, 'Grave Heart Spirit of Weakness', 230984), (225200, 225200, 60, 60, 'Grave Left Hand Spirit of Defence', 230994), (225218, 225218, 60, 60, 'Grave Left Hand Spirit of Strength', 230994), (225020, 225020, 60, 60, 'Grave Left Limb Spirit of Strength', 230995), (225000, 225000, 60, 60, 'Grave Left Limb Spirit of Weakness', 230995), (224850, 224850, 60, 60, 'Grave Midriff Spirit of Essence', 230976), (224886, 224886, 60, 60, 'Grave Midriff Spirit of Weakness', 230976), (225142, 225142, 60, 60, 'Grave Right Hand Defencive Spirit', 231002), (225125, 225125, 60, 60, 'Grave Right Hand Strength Spirit', 231002), (224835, 224835, 60, 60, 'Grave Right Limb Spirit of Essence', 231004), (224801, 224801, 60, 60, 'Grave Right Limb Spirit of Strength', 231004), (224664, 224664, 60, 60, 'Grave Spirit of Discerning Weakness', 230988), (225191, 225191, 60, 60, 'Grave Spirit of Essence', 230998), (225251, 225251, 60, 60, 'Grave Spirit of Feet Defense', 230990), (225234, 225234, 60, 60, 'Grave Spirit of Feet Strength', 230990), (225089, 225089, 60, 60, 'Grave Spirit of Left Wrist Defense', 231000), (225107, 225107, 60, 60, 'Grave Spirit of Left Wrist Strength', 231000), (225057, 225057, 60, 60, 'Grave Spirit of Right Wrist Offence', 231006), (225075, 225075, 60, 60, 'Grave Spirit of Right Wrist Weakness', 231006), (224764, 224764, 60, 60, 'Grave Spirit of Strength Whispered', 230986), (224649, 224649, 60, 60, 'Grave Spirit of True Seeing', 230988), (304062, 304062, 1, 1, 'Grave of the Reaper', 227904), (207984, 207985, 120, 139, 'Gravity', 13335), (285166, 285166, 1, 1, 'Gravity Shift', 82201), (285167, 285167, 1, 1, 'Gravity Shift', 285804), (285168, 285168, 1, 1, 'Gravity Shift', 285805), (285165, 285165, 1, 1, 'Gravity Shift Item', 285804), (211211, 211211, 300, 300, 'Great Bow of Premonition', 85167), (233469, 233469, 110, 110, 'Great Grandfather''s Flesh Sleeves', 22949), (225479, 225479, 1, 1, 'Great Purge', 239115), (233285, 233285, 300, 300, 'Great Sword of Achilles', 218703), (233315, 233315, 300, 300, 'Great Sword of Hercules', 218704), (233300, 233300, 300, 300, 'Great Sword of Perseus', 218705), (244715, 244715, 300, 300, 'Greaves of Malfeasance', 245035), (280725, 280725, 300, 300, 'Greed of the Xan', 280915), (268384, 268384, 1, 1, 'Green Adonis Recollection Shard', 292743), (130630, 130630, 1, 1, 'Green Bodum-Larga', 37971), (40824, 40824, 1, 1, 'Green Book of Secrets', 37961), (31501, 31501, 1, 1, 'Green Cloak', 22894), (31531, 31531, 1, 1, 'Green Cloak Hood', 22997), (292516, 292516, 1, 1, 'Green Data Crystal', 292792), (285868, 285868, 200, 200, 'Green Fiber', 284331), (235370, 235371, 1, 300, 'Green Force Tight Boots', 213558), (235364, 235365, 1, 300, 'Green Force Tight Shirt', 213519), (235366, 235367, 1, 300, 'Green Force Tight Sleeves', 213477), (235368, 235369, 1, 300, 'Green Force Tights', 213600), (275196, 275196, 1, 1, 'Green Islander Shirt', 275185), (119596, 119596, 1, 1, 'Green Lava - Rocket Lamp', 119160), (42332, 42332, 1, 1, 'Green Sweat-Shirt', 42296), (42333, 42333, 1, 1, 'Green Sweater Sleeves', 42304), (291579, 291579, 1, 1, 'Green Sword', 204827), (249700, 249700, 1, 1, 'Green Tank Top of the Souls of Rubi-Ka', 255392), (290255, 290255, 1, 1, 'Green Thong', 290246), (218346, 218346, 160, 160, 'Green Tower Glyph of Thar', 227629), (157405, 157405, 1, 1, 'Green Twentytwo Titmouse Advantage', 81777), (285895, 285895, 200, 200, 'Green Wax', 284331), (285873, 285873, 200, 200, 'Green Wick', 284331), (285855, 285855, 200, 200, 'Green Wire', 284331), (279446, 279446, 1, 1, 'Green Xan Belt Tuning Device', 280988), (150243, 150244, 31, 60, 'Green Zenith Taichi', 113987), (130634, 130634, 1, 1, 'Green and Black Giant Pollen', 37975), (205916, 205916, 1, 1, 'Greenish Looking Crystal Ring Of Notum For The Servant', 151932), (101431, 101432, 1, 200, 'Grenade Cluster - Bright (Eye)', 35981), (101429, 101430, 1, 200, 'Grenade Cluster - Faded (Right-Hand)', 35980), (101433, 101434, 1, 200, 'Grenade Cluster - Shiny (Right-Arm)', 35982), (277915, 277916, 1, 300, 'Grenade Memory Cell', 276922), (165591, 165592, 201, 300, 'Grenade Refined Cluster - Bright (Eye)', 35981), (165589, 165590, 201, 300, 'Grenade Refined Cluster - Faded (Right-Hand)', 35980), (165593, 165594, 201, 300, 'Grenade Refined Cluster - Shiny (Right-Arm)', 35982), (277933, 277934, 1, 199, 'Grenade Skill NCU (1/6)', 276930), (277935, 277936, 200, 299, 'Grenade Skill NCU (1/6)', 276930), (277937, 277937, 300, 300, 'Grenade Skill NCU (1/6)', 276930), (278007, 278008, 1, 199, 'Grenade Skill NCU (2/6)', 276931), (278009, 278010, 200, 299, 'Grenade Skill NCU (2/6)', 276931), (278011, 278011, 300, 300, 'Grenade Skill NCU (2/6)', 276931), (278012, 278013, 1, 199, 'Grenade Skill NCU (3/6)', 276932), (278014, 278015, 200, 299, 'Grenade Skill NCU (3/6)', 276932), (278016, 278016, 300, 300, 'Grenade Skill NCU (3/6)', 276932), (278017, 278018, 1, 199, 'Grenade Skill NCU (4/6)', 276933), (278019, 278020, 200, 299, 'Grenade Skill NCU (4/6)', 276933), (278021, 278021, 300, 300, 'Grenade Skill NCU (4/6)', 276933), (278022, 278023, 1, 199, 'Grenade Skill NCU (5/6)', 276934), (278024, 278025, 200, 299, 'Grenade Skill NCU (5/6)', 276934), (278026, 278026, 300, 300, 'Grenade Skill NCU (5/6)', 276934), (278027, 278028, 1, 199, 'Grenade Skill NCU (6/6)', 276935), (278029, 278030, 200, 299, 'Grenade Skill NCU (6/6)', 276935), (278031, 278031, 300, 300, 'Grenade Skill NCU (6/6)', 276935), (272290, 272291, 1, 300, 'Grenade Weapons Basic Upgrade Kit', 272250), (122875, 122876, 81, 100, 'Grenade-Thrower', 13336), (271847, 271848, 1, 300, 'Grenade-Thrower - 000', 13336), (271851, 271852, 1, 300, 'Grenade-Thrower - 401', 13336), (271853, 271854, 1, 300, 'Grenade-Thrower - C01', 13336), (141574, 141574, 1, 1, 'Grenade-Thrower Construction Manual', 37933), (152358, 152359, 1, 50, 'Grey Acroblade', 113986), (31500, 274647, 1, 100, 'Grey Cloak', 22895), (31530, 31530, 1, 1, 'Grey Cloak Hood', 22999), (204997, 204998, 100, 150, 'Grey Cranium Nano Cloak', 85942), (42344, 42344, 1, 1, 'Grey Fancy Pants', 42289), (42345, 42345, 1, 1, 'Grey Fancy Shirt', 42299), (42346, 42346, 1, 1, 'Grey Fancy Sleeves', 42307), (218371, 218372, 100, 300, 'Grey Glyph of Aban', 25802), (218391, 218392, 100, 300, 'Grey Glyph of Aban-Shere', 25802), (218389, 218390, 100, 300, 'Grey Glyph of Aban-Thar', 25802), (218363, 218364, 100, 300, 'Grey Glyph of Bhotaar', 25802), (218369, 218370, 100, 300, 'Grey Glyph of Enel', 25802), (218387, 218388, 100, 300, 'Grey Glyph of Enel-Thar', 25802), (218385, 218386, 100, 300, 'Grey Glyph of Enel-Xum', 25802), (218361, 218362, 100, 300, 'Grey Glyph of Ocra', 25802), (218379, 218380, 100, 300, 'Grey Glyph of Ocra-Bhotaar', 25802), (218381, 218382, 100, 300, 'Grey Glyph of Ocra-Roch', 25802), (218377, 218378, 100, 300, 'Grey Glyph of Ocra-Shere', 25802), (218383, 218384, 100, 300, 'Grey Glyph of Ocra-Xum', 25802), (218365, 218366, 100, 300, 'Grey Glyph of Roch', 25802), (218367, 218368, 100, 300, 'Grey Glyph of Shere', 25802), (218373, 218374, 100, 300, 'Grey Glyph of Thar', 25802), (218375, 218376, 100, 300, 'Grey Glyph of Xum', 25802), (41025, 41025, 1, 1, 'Grey Leaves Pants', 41199), (42327, 42327, 1, 1, 'Grey Leaves Shoes', 42265), (41057, 41057, 1, 1, 'Grey Leaves Top', 41186), (204999, 205000, 100, 150, 'Grey Nano Cloak', 85945), (290245, 290245, 1, 1, 'Grey Thong', 290261), (155172, 155172, 78, 78, 'Grid Armor Mk I', 154554), (155173, 155173, 111, 111, 'Grid Armor Mk II', 154554), (155174, 155174, 142, 142, 'Grid Armor Mk III', 154554), (155150, 155150, 198, 198, 'Grid Armor Mk IV', 154554), (253369, 253369, 1, 1, 'Grid House', 202150), (253370, 253370, 1, 1, 'Grid House 2', 202150), (290874, 290874, 1, 1, 'Gridstream Productions - Purple Poster', 290892), (274165, 274165, 1, 1, 'Griefer Death', 37931), (224933, 224933, 70, 70, 'Grieving Heart Spirit of Essence', 230984), (225040, 225040, 70, 70, 'Grieving Left Limb Spirit of Essence', 230995), (224985, 224985, 70, 70, 'Grieving Left Limb Spirit of Understanding', 230995), (224868, 224868, 70, 70, 'Grieving Midriff Spirit of Knowledge', 230976), (224905, 224905, 70, 70, 'Grieving Midriff Spirit of Strength', 230976), (224887, 224887, 70, 70, 'Grieving Midriff Spirit of Weakness', 230976), (225176, 225176, 70, 70, 'Grieving Spirit of Defense', 230998), (224749, 224749, 70, 70, 'Grieving Spirit of Knowledge Whispered', 230986), (225090, 225090, 70, 70, 'Grieving Spirit of Left Wrist Defense', 231000), (225108, 225108, 70, 70, 'Grieving Spirit of Left Wrist Strength', 231000), (224765, 224765, 70, 70, 'Grieving Spirit of Strength Whispered', 230986), (284212, 284212, 1, 1, 'Grind Girl Costume 1', 284186), (284213, 284213, 1, 1, 'Grind Girl Costume 2', 284186), (284214, 284214, 1, 1, 'Grind Girl Costume 3', 284186), (284215, 284215, 1, 1, 'Grind Girl Costume 4', 284186), (284216, 284216, 1, 1, 'Grind Girl Costume 5', 284186), (284217, 284217, 1, 1, 'Grind Girl Costume 6', 284186), (288629, 288629, 1, 1, 'Grind Girls Poster', 288628), (248352, 248352, 1, 1, 'Grip Blade', 114012), (227714, 227714, 1, 1, 'Grip of Colossus', 239265), (124467, 124468, 21, 40, 'Gripo-Com AKMR 1K20', 21148), (123976, 123977, 5, 49, 'Gripo-Com AKR 1K20', 21146), (123978, 123978, 50, 50, 'Gripo-Com AKR 1K21', 21146), (205997, 205998, 1, 200, 'Gripping Pearl of Deception', 286928), (163538, 163538, 1, 1, 'Grizzly Tooth', 161142), (227807, 227807, 1, 1, 'Groin Kick', 239263), (281094, 281094, 1, 1, 'Grostad''s Polishing Gel', 281092), (281099, 281099, 1, 1, 'Grostad''s piece of polishing cloth', 281097), (305039, 305039, 1, 1, 'Grotesque Butcher Gloves', 159134), (155659, 155656, 1, 200, 'Ground Leet Bones', 99231), (235417, 235417, 200, 200, 'Growing Brain Symbiant, Artillery Unit Aban', 215189), (236310, 236310, 200, 200, 'Growing Brain Symbiant, Control Unit Aban', 215189), (235861, 235861, 200, 200, 'Growing Brain Symbiant, Extermination Unit Aban', 215189), (235471, 235471, 200, 200, 'Growing Chest Symbiant, Artillery Unit Aban', 215181), (235913, 235913, 200, 200, 'Growing Chest Symbiant, Extermination Unit Aban', 215181), (235691, 235691, 200, 200, 'Growing Chest Symbiant, Infantry Unit Aban', 215181), (235878, 235878, 200, 200, 'Growing Ear Symbiant, Extermination Unit Aban', 230977), (235658, 235658, 200, 200, 'Growing Ear Symbiant, Infantry Unit Aban', 230977), (236105, 236105, 200, 200, 'Growing Ear Symbiant, Support Unit Aban', 230977), (235609, 235609, 200, 200, 'Growing Feet Symbiant, Artillery Unit Aban', 215185), (236501, 236501, 200, 200, 'Growing Feet Symbiant, Control Unit Aban', 215185), (236377, 236377, 200, 200, 'Growing Left Arm Symbiant, Control Unit Aban', 215177), (236485, 236485, 200, 200, 'Growing Left Hand Symbiant, Control Unit Aban', 215172), (236035, 236035, 200, 200, 'Growing Left Hand Symbiant, Extermination Unit Aban', 215172), (235811, 235811, 200, 200, 'Growing Left Hand Symbiant, Infantry Unit Aban', 215172), (235982, 235982, 200, 200, 'Growing Left Wrist Symbiant, Extermination Unit Aban', 215198), (235760, 235760, 200, 200, 'Growing Left Wrist Symbiant, Infantry Unit Aban', 215198), (303278, 303278, 1, 1, 'Growing Lilac Helmet', 283504), (235844, 235844, 200, 200, 'Growing Ocular Symbiant, Extermination Unit Aban', 230979), (235624, 235624, 200, 200, 'Growing Ocular Symbiant, Infantry Unit Aban', 230980), (236070, 236070, 200, 200, 'Growing Ocular Symbiant, Support Unit Aban', 230980), (236343, 236343, 200, 200, 'Growing Right Arm Symbiant, Control Unit Aban', 215180), (235895, 235895, 200, 200, 'Growing Right Arm Symbiant, Extermination Unit Aban', 215178), (236452, 236452, 200, 200, 'Growing Right Hand Symbiant, Control Unit Aban', 215173), (235572, 235572, 200, 200, 'Growing Thigh Symbiant, Artillery Unit Aban', 215190), (236468, 236468, 200, 200, 'Growing Thigh Symbiant, Control Unit Aban', 215191), (236019, 236019, 200, 200, 'Growing Thigh Symbiant, Extermination Unit Aban', 215192), (236246, 236246, 200, 200, 'Growing Thigh Symbiant, Support Unit Aban', 215190), (236416, 236416, 200, 200, 'Growing Waist Symbiant, Control Unit Aban', 215193), (165057, 165058, 120, 199, 'Growling Bow of Ferocious Appetite', 165054), (165216, 165216, 1, 1, 'Grunt dog-tag', 149944), (231252, 231253, 1, 19, 'Guard of the Gentleman', 13337), (231254, 231255, 20, 29, 'Guard of the Gentleman', 13337), (231256, 231257, 30, 44, 'Guard of the Gentleman', 13337), (231258, 231259, 45, 99, 'Guard of the Gentleman', 13337), (231260, 231261, 100, 199, 'Guard of the Gentleman', 13337), (231262, 231263, 200, 249, 'Guard of the Gentleman', 13337), (231264, 231265, 250, 274, 'Guard of the Gentleman', 13337), (231266, 231267, 275, 299, 'Guard of the Gentleman', 13337), (231268, 231268, 300, 300, 'Guard of the Gentleman', 13337), (263286, 263286, 126, 126, 'Guard of the Noble Knight', 245994), (227338, 227338, 1, 1, 'Guardian', 239221), (306155, 306155, 1, 1, 'Guardian Blade', 306121), (204601, 204601, 1, 1, 'Guardian Circuit Board', 149938), (202571, 202572, 10, 300, 'Guardian Conductor Building Kit', 203579), (202573, 202574, 40, 300, 'Guardian Conductor Controller', 203580), (203002, 203003, 40, 200, 'Guardian Conductor of Corruption', 202184), (203006, 203007, 40, 200, 'Guardian Conductor of Corruption', 202184), (203004, 203005, 201, 300, 'Guardian Conductor of Corruption', 202184), (203008, 203009, 201, 300, 'Guardian Conductor of Corruption', 202184), (203026, 203027, 40, 200, 'Guardian Conductor of Derivation', 202189), (203030, 203031, 40, 200, 'Guardian Conductor of Derivation', 202189), (203028, 203029, 201, 300, 'Guardian Conductor of Derivation', 202189), (203032, 203033, 201, 300, 'Guardian Conductor of Derivation', 202189), (202988, 202989, 250, 300, 'Guardian Conductor of Focus', 202157), (202990, 202991, 250, 300, 'Guardian Conductor of Focus', 202157), (203042, 203042, 300, 300, 'Guardian Conductor of Funneling', 202183), (203043, 203043, 300, 300, 'Guardian Conductor of Funneling', 202183), (203038, 203039, 250, 300, 'Guardian Conductor of Juggling', 202185), (203040, 203041, 250, 300, 'Guardian Conductor of Juggling', 202185), (202960, 202961, 80, 200, 'Guardian Conductor of Learning', 202152), (202964, 202965, 80, 200, 'Guardian Conductor of Learning', 202152), (202962, 202963, 201, 300, 'Guardian Conductor of Learning', 202152), (202966, 202967, 201, 300, 'Guardian Conductor of Learning', 202152), (202944, 202945, 10, 200, 'Guardian Conductor of Life', 202154), (202948, 202949, 10, 200, 'Guardian Conductor of Life', 202154), (202946, 202947, 201, 300, 'Guardian Conductor of Life', 202154), (202950, 202951, 201, 300, 'Guardian Conductor of Life', 202154), (202952, 202953, 40, 200, 'Guardian Conductor of Mind', 202156), (202956, 202957, 40, 200, 'Guardian Conductor of Mind', 202156), (202954, 202955, 201, 300, 'Guardian Conductor of Mind', 202156), (202958, 202959, 201, 300, 'Guardian Conductor of Mind', 202156), (203034, 203035, 200, 300, 'Guardian Conductor of Plunder', 202187), (203036, 203037, 200, 300, 'Guardian Conductor of Plunder', 202187), (202984, 202985, 200, 300, 'Guardian Conductor of Presence', 202151), (202986, 202987, 200, 300, 'Guardian Conductor of Presence', 202151), (203010, 203011, 80, 200, 'Guardian Conductor of Ransacking', 202186), (203014, 203015, 80, 200, 'Guardian Conductor of Ransacking', 202186), (203012, 203013, 201, 300, 'Guardian Conductor of Ransacking', 202186), (203016, 203017, 201, 300, 'Guardian Conductor of Ransacking', 202186), (202976, 202977, 40, 200, 'Guardian Conductor of Speed', 202155), (202980, 202981, 40, 200, 'Guardian Conductor of Speed', 202155), (202978, 202979, 201, 300, 'Guardian Conductor of Speed', 202155), (202982, 202983, 201, 300, 'Guardian Conductor of Speed', 202155), (202992, 202992, 300, 300, 'Guardian Conductor of Talent', 202153), (202993, 202993, 300, 300, 'Guardian Conductor of Talent', 202153), (202994, 202995, 10, 200, 'Guardian Conductor of Tapping', 202188), (202998, 202999, 10, 200, 'Guardian Conductor of Tapping', 202188), (202996, 202997, 201, 300, 'Guardian Conductor of Tapping', 202188), (203000, 203001, 201, 300, 'Guardian Conductor of Tapping', 202188), (203018, 203019, 40, 200, 'Guardian Conductor of Transfer', 202182), (203022, 203023, 40, 200, 'Guardian Conductor of Transfer', 202182), (203020, 203021, 201, 300, 'Guardian Conductor of Transfer', 202182), (203024, 203025, 201, 300, 'Guardian Conductor of Transfer', 202182), (202968, 202969, 40, 200, 'Guardian Conductor of Will', 202150), (202972, 202973, 40, 200, 'Guardian Conductor of Will', 202150), (202970, 202971, 201, 300, 'Guardian Conductor of Will', 202150), (202974, 202975, 201, 300, 'Guardian Conductor of Will', 202150), (287553, 287553, 1, 1, 'Guardian Death Item', 84059), (296961, 296961, 1, 1, 'Guardian Faction Package: 10000', 296958), (303372, 303372, 1, 1, 'Guardian Faction Package: 10000', 296958), (152827, 152827, 1, 1, 'Guardian Galla Uniform', 151879), (305033, 305033, 1, 1, 'Guardian Heavy Tank Armor', 22395), (204748, 204748, 1, 1, 'Guardian Tank Armor', 22395), (252444, 252444, 1, 1, 'Guesstimate', 239109), (245887, 245887, 200, 200, 'Guise of the Hooded Crow', 10839), (306154, 306154, 1, 1, 'Guise of the Thief', 306124), (258815, 258815, 1, 1, 'Guitar Case', 259101), (211260, 211261, 1, 299, 'Gun of Ylin-Atantos', 33158), (214322, 214322, 300, 300, 'Gun of the Genius', 210183), (214318, 214319, 100, 199, 'Gun of the Gifted', 210183), (214320, 214321, 200, 299, 'Gun of the Gifted', 210183), (211262, 211262, 300, 300, 'Gun of the White Eye', 33158), (281349, 281349, 1, 1, 'Gunda''s ID Card', 281337), (248792, 248792, 1, 1, 'Gunman Boots of Valor Eternal', 255351), (248793, 248793, 1, 1, 'Gunman Pants of Valor Eternal', 255188), (214192, 214193, 100, 199, 'Gunman Plasma Accelerator', 210183), (214194, 214195, 200, 299, 'Gunman Plasma Accelerator', 210183), (248791, 248791, 1, 1, 'Gunman Shirt of Valor Eternal', 255308), (248790, 248790, 1, 1, 'Gunman Sleeves of Valor Eternal', 255252), (207002, 207001, 100, 200, 'Gunner''s Cap', 205759), (214196, 214196, 300, 300, 'Gunslinger Plasma Accelerator', 210183), (216267, 216268, 150, 200, 'Gurgling River Sprite', 20407), (248332, 248332, 1, 1, 'Gut Bowstring', 130728), (227364, 227364, 1, 1, 'Gutting Blow', 239103), (157901, 157902, 1, 199, 'Gutting Hook', 158269), (290909, 290909, 1, 1, 'Gyhx''s T-shirt', 290957), (137295, 137296, 1, 200, 'Gyro Stabilizing Unit', 130697), (142821, 142822, 41, 60, 'HJH Survival Knife', 40783), (154330, 154330, 200, 200, 'HQ Antiseptic Jar', 37966), (25811, 160277, 200, 399, 'HQ Health Laboratory', 37990), (155590, 155590, 140, 140, 'HQ Mass Relocating Robot', 155928), (162294, 162294, 10, 10, 'HSR - Sketch and Etch - Arms', 289746), (162293, 162293, 10, 10, 'HSR - Sketch and Etch - Boots', 289747), (162290, 162290, 10, 10, 'HSR - Sketch and Etch - Chestpiece', 289742), (162289, 162289, 10, 10, 'HSR - Sketch and Etch - Gloves', 289743), (162292, 162292, 10, 10, 'HSR - Sketch and Etch - Helmet', 289744), (162291, 162291, 10, 10, 'HSR - Sketch and Etch - Legs', 289745), (123888, 123889, 21, 99, 'HSR Arms', 33161), (124383, 124384, 1, 157, 'HSR Arms F-59', 114016), (124385, 124385, 158, 158, 'HSR Arms F-59 Beholder', 114016), (123890, 123891, 100, 120, 'HSR Arms N.M.', 33161), (123892, 123892, 121, 121, 'HSR Arms N.M. Military Edition', 33161), (202539, 202540, 10, 300, 'HSR Compressed Regenerating Bioplate', 203584), (157664, 157665, 90, 199, 'HSR Explorer 661', 29116), (164780, 164781, 1, 200, 'HSR Hedgehog 23 Throwing Grenade', 131255), (156773, 156773, 100, 100, 'HUD Upgrade: Enhanced Target Acquisition', 301034), (156774, 156774, 100, 100, 'HUD Upgrade: Personal S.T.M', 301033), (305025, 305025, 1, 1, 'HUD Upgrade: Super Target Scope 7', 301034), (88432, 127244, 12, 200, 'Hacked Boosted-Graft: 1H Blunt Weapon Expertise', 11647), (88414, 127248, 13, 200, 'Hacked Boosted-Graft: 1H Blunt Weapon Incompetence', 11647), (88425, 127252, 6, 200, 'Hacked Boosted-Graft: 1H Blunt Weapon Inexperience', 11652), (88440, 127256, 5, 200, 'Hacked Boosted-Graft: 1H Blunt Weapon Proficiency', 11652), (88456, 127684, 12, 200, 'Hacked Boosted-Graft: 1H Edged Weapon Expertise', 11647), (88477, 127688, 13, 200, 'Hacked Boosted-Graft: 1H Edged Weapon Incompetence', 11647), (88494, 127692, 6, 200, 'Hacked Boosted-Graft: 1H Edged Weapon Inexperience', 11652), (88514, 127696, 5, 200, 'Hacked Boosted-Graft: 1H Edged Weapon Proficiency', 11652), (88532, 127700, 12, 200, 'Hacked Boosted-Graft: 2H Blunt Weapon Expertise', 11647), (88550, 127704, 13, 200, 'Hacked Boosted-Graft: 2H Blunt Weapon Incompetence', 11647), (88569, 127708, 6, 200, 'Hacked Boosted-Graft: 2H Blunt Weapon Inexperience', 11652), (88586, 127712, 5, 200, 'Hacked Boosted-Graft: 2H Blunt Weapon Proficiency', 11652), (88604, 127716, 12, 200, 'Hacked Boosted-Graft: 2H Edged Weapon Expertise', 11647), (88623, 127720, 13, 200, 'Hacked Boosted-Graft: 2H Edged Weapon Incompetence', 11647), (88641, 127724, 6, 200, 'Hacked Boosted-Graft: 2H Edged Weapon Inexperience', 11652), (88658, 127728, 5, 200, 'Hacked Boosted-Graft: 2H Edged Weapon Proficiency', 11652), (88674, 127280, 12, 200, 'Hacked Boosted-Graft: Adrenaline Pump', 11647), (94830, 128274, 98, 200, 'Hacked Boosted-Graft: Advanced Shielding Barrier', 11653), (89451, 127424, 12, 200, 'Hacked Boosted-Graft: Adventuring Expertise', 11647), (88691, 127260, 6, 200, 'Hacked Boosted-Graft: Agility Boost', 11652), (88708, 127264, 13, 200, 'Hacked Boosted-Graft: Aimed Shot Expertise', 11647), (88725, 127268, 14, 200, 'Hacked Boosted-Graft: Aimed Shot Incompetence', 11647), (88742, 127272, 7, 200, 'Hacked Boosted-Graft: Aimed Shot Inexperience', 11652), (88759, 127276, 6, 200, 'Hacked Boosted-Graft: Aimed Shot Proficiency', 11652), (94832, 128100, 2, 200, 'Hacked Boosted-Graft: Armor Megaboost', 11652), (88811, 127360, 12, 200, 'Hacked Boosted-Graft: Assault Rifle Expertise', 11647), (88828, 127288, 13, 200, 'Hacked Boosted-Graft: Assault Rifle Incompetence', 11647), (88845, 127292, 6, 200, 'Hacked Boosted-Graft: Assault Rifle Inexperience', 11652), (88862, 127296, 5, 200, 'Hacked Boosted-Graft: Assault Rifle Proficiency', 11652), (88879, 127300, 3, 200, 'Hacked Boosted-Graft: Augment Agility', 11652), (88895, 127304, 3, 200, 'Hacked Boosted-Graft: Augment Intelligence', 11652), (88912, 127308, 3, 200, 'Hacked Boosted-Graft: Augment Psychic', 11652), (88929, 127312, 3, 200, 'Hacked Boosted-Graft: Augment Sense', 11652), (88948, 127316, 3, 200, 'Hacked Boosted-Graft: Augment Stamina', 11652), (88964, 127320, 3, 200, 'Hacked Boosted-Graft: Augment Strength', 11652), (94824, 128136, 4, 200, 'Hacked Boosted-Graft: Avenging Shield', 11652), (95239, 128120, 8, 200, 'Hacked Boosted-Graft: Balanced Striker', 11647), (94834, 128208, 35, 200, 'Hacked Boosted-Graft: Basic Defensive Screen', 11648), (94836, 128212, 30, 200, 'Hacked Boosted-Graft: Basic Protective Field', 11648), (94838, 128216, 24, 200, 'Hacked Boosted-Graft: Basic Shielding Barrier', 11648), (88981, 127324, 12, 200, 'Hacked Boosted-Graft: BioMet Expertise', 11647), (88997, 127328, 13, 200, 'Hacked Boosted-Graft: BioMet Incompetence', 11647), (89012, 127332, 6, 200, 'Hacked Boosted-Graft: BioMet Inexperience', 11652), (89030, 127336, 5, 200, 'Hacked Boosted-Graft: BioMet Proficiency', 11652), (94815, 128080, 23, 200, 'Hacked Boosted-Graft: Blood Circle', 11648), (89048, 127340, 5, 200, 'Hacked Boosted-Graft: Bot Mass Migration', 11652), (89066, 127344, 3, 200, 'Hacked Boosted-Graft: Bot Migration', 11652), (89083, 127348, 12, 200, 'Hacked Boosted-Graft: Bow Expertise', 11647), (89099, 127352, 13, 200, 'Hacked Boosted-Graft: Bow Incompetence', 11647), (89117, 127356, 6, 200, 'Hacked Boosted-Graft: Bow Inexperience', 11652), (89133, 127284, 5, 200, 'Hacked Boosted-Graft: Bow Proficiency', 11652), (89150, 127428, 13, 200, 'Hacked Boosted-Graft: Bow Special Attack Expertise', 11647), (89169, 127364, 14, 200, 'Hacked Boosted-Graft: Bow Special Attack Incompetence', 11647), (89186, 127368, 7, 200, 'Hacked Boosted-Graft: Bow Special Attack Inexperience', 11652), (89201, 127372, 6, 200, 'Hacked Boosted-Graft: Bow Special Attack Proficiency', 11652), (89217, 127376, 13, 200, 'Hacked Boosted-Graft: Brawl Expertise', 11647), (89234, 127380, 14, 200, 'Hacked Boosted-Graft: Brawl Incompetence', 11647), (89249, 127384, 7, 200, 'Hacked Boosted-Graft: Brawl Inexperience', 11652), (89268, 127388, 6, 200, 'Hacked Boosted-Graft: Brawl Proficiency', 11652), (89283, 127392, 12, 200, 'Hacked Boosted-Graft: Breaking and Entering Expertise', 11647), (89300, 127396, 5, 200, 'Hacked Boosted-Graft: Breaking and Entering Proficiency', 11652), (89317, 127400, 13, 200, 'Hacked Boosted-Graft: Burst Expertise', 11647), (89334, 127404, 14, 200, 'Hacked Boosted-Graft: Burst Incompetence', 11647), (89350, 127408, 7, 200, 'Hacked Boosted-Graft: Burst Inexperience', 11652), (89367, 127412, 6, 200, 'Hacked Boosted-Graft: Burst Proficiency', 11652), (89417, 127416, 12, 200, 'Hacked Boosted-Graft: Chemistry Expertise', 11647), (89434, 127420, 5, 200, 'Hacked Boosted-Graft: Chemistry Proficiency', 11652), (94784, 128152, 42, 200, 'Hacked Boosted-Graft: Cloak of Fire', 11649), (94817, 128132, 36, 200, 'Hacked Boosted-Graft: Company Policy', 11648), (89514, 127528, 12, 200, 'Hacked Boosted-Graft: Computer Literacy Expertise', 11647), (89529, 127436, 5, 200, 'Hacked Boosted-Graft: Computer Literacy Proficiency', 11652), (89546, 127440, 12, 200, 'Hacked Boosted-Graft: Concealment Expertise', 11647), (94872, 127444, 5, 200, 'Hacked Boosted-Graft: Concealment Proficiency', 11652), (95215, 128088, 46, 200, 'Hacked Boosted-Graft: Damage Amplifier', 11649), (95217, 128092, 7, 200, 'Hacked Boosted-Graft: Damage Multiplier', 11652), (94807, 128172, 3, 200, 'Hacked Boosted-Graft: Detain Suspect', 11652), (94874, 127448, 14, 200, 'Hacked Boosted-Graft: Dimach Incompetence', 11647), (94876, 127452, 7, 200, 'Hacked Boosted-Graft: Dimach Inexperience', 11652), (94878, 127456, 5, 200, 'Hacked Boosted-Graft: Diminish Agility', 11652), (94880, 127460, 5, 200, 'Hacked Boosted-Graft: Diminish Intelligence', 11652), (94882, 127464, 5, 200, 'Hacked Boosted-Graft: Diminish Psychic', 11652), (94884, 127468, 5, 200, 'Hacked Boosted-Graft: Diminish Sense', 11652), (94886, 127472, 5, 200, 'Hacked Boosted-Graft: Diminish Stamina', 11652), (94888, 127476, 5, 200, 'Hacked Boosted-Graft: Diminish Strength', 11652), (94890, 127480, 12, 200, 'Hacked Boosted-Graft: Disarm Traps Expertise', 11647), (94892, 127484, 5, 200, 'Hacked Boosted-Graft: Disarm Traps Proficiency', 11652), (94894, 127488, 9, 200, 'Hacked Boosted-Graft: Drain Agility', 11647), (94896, 127492, 9, 200, 'Hacked Boosted-Graft: Drain Intelligence', 11647), (94898, 127496, 9, 200, 'Hacked Boosted-Graft: Drain Psychic', 11647), (94900, 127500, 9, 200, 'Hacked Boosted-Graft: Drain Sense', 11647), (94902, 127504, 9, 200, 'Hacked Boosted-Graft: Drain Stamina', 11647), (94904, 127508, 9, 200, 'Hacked Boosted-Graft: Drain Strength', 11647), (94840, 128148, 20, 200, 'Hacked Boosted-Graft: Electrical Chastiser', 11647), (94906, 127512, 12, 200, 'Hacked Boosted-Graft: Electrical Engineering Expertise', 11647), (94908, 128076, 5, 200, 'Hacked Boosted-Graft: Electrical Engineering Proficiency', 11652), (94910, 127516, 12, 200, 'Hacked Boosted-Graft: Energy Melee Expertise', 11647), (94912, 127520, 5, 200, 'Hacked Boosted-Graft: Energy Melee Incompetence', 11652), (94914, 127524, 12, 200, 'Hacked Boosted-Graft: Energy Melee Inexperience', 11647), (94916, 127432, 5, 200, 'Hacked Boosted-Graft: Energy Melee Proficiency', 11652), (94842, 128104, 33, 200, 'Hacked Boosted-Graft: Energy Spike', 11648), (125883, 125884, 29, 200, 'Hacked Boosted-Graft: Enhanced Senses', 11648), (94930, 127552, 13, 200, 'Hacked Boosted-Graft: Fast Attack Expertise', 11647), (94932, 127556, 14, 200, 'Hacked Boosted-Graft: Fast Attack Incompetence', 11647), (94934, 127560, 7, 200, 'Hacked Boosted-Graft: Fast Attack Inexperience', 11652), (94936, 127564, 6, 200, 'Hacked Boosted-Graft: Fast Attack Proficiency', 11652), (95213, 128164, 12, 200, 'Hacked Boosted-Graft: Feet of Stone', 11647), (94938, 127568, 12, 200, 'Hacked Boosted-Graft: Field Quantum Physics Expertise', 11647), (94940, 127572, 5, 200, 'Hacked Boosted-Graft: Field Quantum Physics Proficiency', 11652), (94826, 128140, 24, 200, 'Hacked Boosted-Graft: Field of Sparks', 11648), (94946, 127576, 12, 200, 'Hacked Boosted-Graft: First Aid Expertise', 11647), (94948, 127580, 5, 200, 'Hacked Boosted-Graft: First Aid Proficiency', 11652), (94844, 128220, 18, 200, 'Hacked Boosted-Graft: Flawed Defensive Screen', 11647), (94846, 128244, 12, 200, 'Hacked Boosted-Graft: Flawed Protective Field', 11647), (94848, 128270, 8, 200, 'Hacked Boosted-Graft: Flawed Shielding Barrier', 11647), (94950, 127584, 13, 200, 'Hacked Boosted-Graft: Fling Shot Expertise', 11647), (94952, 127588, 14, 200, 'Hacked Boosted-Graft: Fling Shot Incompetence', 11647), (94954, 127592, 7, 200, 'Hacked Boosted-Graft: Fling Shot Inexperience', 11652), (94956, 127596, 6, 200, 'Hacked Boosted-Graft: Fling Shot Proficiency', 11652), (94786, 128160, 10, 200, 'Hacked Boosted-Graft: Frost With Snow', 11647), (94958, 127600, 13, 200, 'Hacked Boosted-Graft: Full Auto Expertise', 11647), (94960, 127604, 14, 200, 'Hacked Boosted-Graft: Full Auto Incompetence', 11647), (94962, 127608, 7, 200, 'Hacked Boosted-Graft: Full Auto Inexperience', 11652), (94964, 127612, 6, 200, 'Hacked Boosted-Graft: Full Auto Proficiency', 11652), (94828, 128096, 34, 200, 'Hacked Boosted-Graft: Glowing Retribution', 11648), (94850, 128278, 5, 200, 'Hacked Boosted-Graft: Greater Armor Megaboost', 11652), (94974, 127736, 12, 200, 'Hacked Boosted-Graft: Grenade Expertise', 11647), (94976, 127680, 13, 200, 'Hacked Boosted-Graft: Grenade Incompetence', 11647), (94978, 127676, 6, 200, 'Hacked Boosted-Graft: Grenade Inexperience', 11652), (94980, 127740, 5, 200, 'Hacked Boosted-Graft: Grenade Proficiency', 11652), (94852, 128108, 10, 200, 'Hacked Boosted-Graft: Gun Enhancement', 11647), (94868, 128326, 47, 200, 'Hacked Boosted-Graft: Hasty Augmentation Cloud', 11649), (94986, 127648, 5, 200, 'Hacked Boosted-Graft: Healing', 11652), (95211, 128338, 49, 200, 'Hacked Boosted-Graft: Healing Touch', 11649), (94966, 127616, 12, 200, 'Hacked Boosted-Graft: Heavy Weapons Expertise', 11647), (94968, 127620, 13, 200, 'Hacked Boosted-Graft: Heavy Weapons Incompetence', 11647), (94970, 127624, 6, 200, 'Hacked Boosted-Graft: Heavy Weapons Inexperience', 11652), (94972, 127628, 5, 200, 'Hacked Boosted-Graft: Heavy Weapons Proficiency', 11652), (95241, 128334, 30, 200, 'Hacked Boosted-Graft: Hired Hands', 11648), (94988, 127744, 7, 200, 'Hacked Boosted-Graft: Improve Health', 11652), (94818, 128084, 1, 200, 'Hacked Boosted-Graft: Improved Healing', 11652), (94990, 127748, 6, 200, 'Hacked Boosted-Graft: Intelligence Boost', 11652), (94788, 128156, 18, 200, 'Hacked Boosted-Graft: Jacket of Blades', 11647), (94922, 127536, 12, 200, 'Hacked Boosted-Graft: LR Energy Weapon Expertise', 11647), (94924, 127540, 13, 200, 'Hacked Boosted-Graft: LR Energy Weapon Incompetence', 11647), (94926, 127544, 6, 200, 'Hacked Boosted-Graft: LR Energy Weapon Inexp', 11652), (94928, 127548, 5, 200, 'Hacked Boosted-Graft: LR Energy Weapon Proficiency', 11652), (94820, 128124, 13, 200, 'Hacked Boosted-Graft: Lasting Heal', 11647), (95000, 127660, 6, 200, 'Hacked Boosted-Graft: Leaden Feet', 11652), (95219, 128302, 40, 200, 'Hacked Boosted-Graft: Lesser Absorption Shield', 11649), (94809, 128322, 9, 200, 'Hacked Boosted-Graft: Lesser Anatomy Lesson', 11647), (95221, 128306, 24, 200, 'Hacked Boosted-Graft: Lesser Combat Barrier', 11648), (94854, 128282, 54, 200, 'Hacked Boosted-Graft: Lesser Defensive Screen', 11650), (95223, 128196, 28, 200, 'Hacked Boosted-Graft: Lesser Deflection Shield', 11648), (95225, 128200, 37, 200, 'Hacked Boosted-Graft: Lesser Deflection Shield (Extended)', 11648), (94870, 128330, 11, 200, 'Hacked Boosted-Graft: Lesser Nano Boost', 11647), (94811, 128168, 35, 200, 'Hacked Boosted-Graft: Lesser Paralyze with Indecision', 11648), (94856, 128286, 48, 200, 'Hacked Boosted-Graft: Lesser Protective Field', 11649), (94858, 128144, 36, 200, 'Hacked Boosted-Graft: Lesser Retaliatory Barrier', 11648), (94860, 128204, 42, 200, 'Hacked Boosted-Graft: Lesser Shielding Barrier', 11649), (94799, 128346, 3, 200, 'Hacked Boosted-Graft: Lesser Sparrow Flight', 11652), (94790, 128294, 22, 200, 'Hacked Boosted-Graft: Lesser Wilderness Protection', 11647), (95002, 127664, 6, 200, 'Hacked Boosted-Graft: Lethargy', 11652), (95012, 127776, 12, 200, 'Hacked Boosted-Graft: Martial Arts Expertise', 11647), (95014, 127780, 13, 200, 'Hacked Boosted-Graft: Martial Arts Incompetence', 11647), (95016, 127784, 6, 200, 'Hacked Boosted-Graft: Martial Arts Inexperience', 11652), (95018, 127788, 5, 200, 'Hacked Boosted-Graft: Martial Arts Proficiency', 11652), (95020, 127792, 12, 200, 'Hacked Boosted-Graft: MatCrea Expertise', 11647), (95022, 127796, 13, 200, 'Hacked Boosted-Graft: MatCrea Incompetence', 11647), (95024, 127800, 6, 200, 'Hacked Boosted-Graft: MatCrea Inexperience', 11652), (95026, 127804, 5, 200, 'Hacked Boosted-Graft: MatCrea Proficiency', 11652), (95035, 127824, 12, 200, 'Hacked Boosted-Graft: MatMet Expertise', 11647), (95037, 127828, 13, 200, 'Hacked Boosted-Graft: MatMet Incompetence', 11647), (95039, 127832, 6, 200, 'Hacked Boosted-Graft: MatMet Inexperience', 11652), (95041, 127836, 5, 200, 'Hacked Boosted-Graft: MatMet Proficiency', 11652), (95043, 127840, 12, 200, 'Hacked Boosted-Graft: Mechanical Engineering Expertise', 11647), (95045, 127844, 5, 200, 'Hacked Boosted-Graft: Mechanical Engineering Proficiency', 11652), (95227, 128310, 14, 200, 'Hacked Boosted-Graft: Minor Absorption Shield', 11647), (95229, 128314, 6, 200, 'Hacked Boosted-Graft: Minor Combat Barrier', 11652), (95231, 128192, 16, 200, 'Hacked Boosted-Graft: Minor Deflection Shield', 11647), (95233, 128188, 21, 200, 'Hacked Boosted-Graft: Minor Deflection Shield (Extended)', 11647), (95051, 127644, 2, 200, 'Hacked Boosted-Graft: Minor Healing', 11652), (94792, 128298, 4, 200, 'Hacked Boosted-Graft: Minor Wilderness Protection', 11652), (94813, 128318, 23, 200, 'Hacked Boosted-Graft: Nano Augmentation', 11648), (95055, 127848, 12, 200, 'Hacked Boosted-Graft: Nano Programming Expertise', 11647), (95057, 127852, 5, 200, 'Hacked Boosted-Graft: Nano Programming Proficiency', 11652), (95061, 127856, 9, 200, 'Hacked Boosted-Graft: Nano Restoration', 11647), (95065, 127860, 13, 200, 'Hacked Boosted-Graft: Parry Expertise', 11647), (95067, 127864, 14, 200, 'Hacked Boosted-Graft: Parry Incompetence', 11647), (95069, 127868, 7, 200, 'Hacked Boosted-Graft: Parry Inexperience', 11652), (95071, 127872, 6, 200, 'Hacked Boosted-Graft: Parry Proficiency', 11652), (95235, 128184, 3, 200, 'Hacked Boosted-Graft: Partial Deflection Shield', 11652), (95237, 128180, 9, 200, 'Hacked Boosted-Graft: Partial Deflection Shield (Extended)', 11647), (94862, 128176, 27, 200, 'Hacked Boosted-Graft: Partial Harmonic Cocoon', 11648), (94822, 128128, 26, 200, 'Hacked Boosted-Graft: Periodic Checkup', 11648), (95073, 127876, 12, 200, 'Hacked Boosted-Graft: Pharmaceutical Expertise', 11647), (95075, 127880, 5, 200, 'Hacked Boosted-Graft: Pharmaceutical Proficiency', 11652), (95077, 127632, 12, 200, 'Hacked Boosted-Graft: Piercing Expert', 11647), (95079, 127636, 13, 200, 'Hacked Boosted-Graft: Piercing Incompetence', 11647), (95081, 127640, 6, 200, 'Hacked Boosted-Graft: Piercing Inexperience', 11652), (95083, 127532, 5, 200, 'Hacked Boosted-Graft: Piercing Proficiency', 11652), (95085, 127884, 12, 200, 'Hacked Boosted-Graft: Pistol Expertise', 11647), (95087, 127888, 13, 200, 'Hacked Boosted-Graft: Pistol Incompetence', 11647), (95089, 127892, 6, 200, 'Hacked Boosted-Graft: Pistol Inexperience', 11652), (95091, 127732, 5, 200, 'Hacked Boosted-Graft: Pistol Proficiency', 11652), (94794, 128354, 48, 200, 'Hacked Boosted-Graft: Playful Cub', 11649), (95107, 127908, 12, 200, 'Hacked Boosted-Graft: PsyMod Expertise', 11647), (95109, 127912, 13, 200, 'Hacked Boosted-Graft: PsyMod Incompetence', 11647), (95111, 127916, 6, 200, 'Hacked Boosted-Graft: PsyMod Inexperience', 11652), (95113, 127920, 5, 200, 'Hacked Boosted-Graft: PsyMod Proficiency', 11652), (95101, 127896, 6, 200, 'Hacked Boosted-Graft: Psychic Boost', 11652), (95103, 127900, 12, 200, 'Hacked Boosted-Graft: Psychology Expertise', 11647), (95105, 127904, 5, 200, 'Hacked Boosted-Graft: Psychology Proficiency', 11652), (94795, 127652, 1, 200, 'Hacked Boosted-Graft: Quick Heal', 11652), (95115, 127924, 20, 200, 'Hacked Boosted-Graft: Quickness', 11647), (95117, 127928, 3, 200, 'Hacked Boosted-Graft: Radiation Shield', 11652), (95119, 127932, 8, 200, 'Hacked Boosted-Graft: Radiation Ward', 11647), (95121, 127936, 12, 200, 'Hacked Boosted-Graft: Regeneration', 11647), (95123, 127940, 12, 200, 'Hacked Boosted-Graft: Rifle Expertise', 11647), (95125, 127944, 13, 200, 'Hacked Boosted-Graft: Rifle Incompetence', 11647), (95127, 127948, 6, 200, 'Hacked Boosted-Graft: Rifle Inexperience', 11652), (95129, 127952, 5, 200, 'Hacked Boosted-Graft: Rifle Proficiency', 11652), (95131, 127956, 13, 200, 'Hacked Boosted-Graft: Riposte Expertise', 11647), (95133, 127960, 14, 200, 'Hacked Boosted-Graft: Riposte Incompetence', 11647), (95135, 127964, 7, 200, 'Hacked Boosted-Graft: Riposte Inexperience', 11652), (95137, 127968, 6, 200, 'Hacked Boosted-Graft: Riposte Proficiency', 11652), (94797, 128342, 8, 200, 'Hacked Boosted-Graft: Rough Stitching', 11647), (95139, 127972, 6, 200, 'Hacked Boosted-Graft: Sense Boost', 11652), (95141, 127976, 12, 200, 'Hacked Boosted-Graft: Sense Imp Expertise', 11647), (95143, 127980, 13, 200, 'Hacked Boosted-Graft: Sense Imp Incomp', 11647), (95145, 127984, 6, 200, 'Hacked Boosted-Graft: Sense Imp Inexperience', 11652), (95147, 127988, 5, 200, 'Hacked Boosted-Graft: Sense Imp Proficiency', 11652), (95149, 127992, 12, 200, 'Hacked Boosted-Graft: Shotgun Expertise', 11647), (95151, 127996, 13, 200, 'Hacked Boosted-Graft: Shotgun Incompetence', 11647), (95153, 128000, 6, 200, 'Hacked Boosted-Graft: Shotgun Inexperience', 11652), (95155, 128004, 5, 200, 'Hacked Boosted-Graft: Shotgun Proficiency', 11652), (95157, 128008, 13, 200, 'Hacked Boosted-Graft: Sneak Attack Expertise', 11647), (95159, 128012, 14, 200, 'Hacked Boosted-Graft: Sneak Attack Incompetence', 11647), (95161, 128016, 7, 200, 'Hacked Boosted-Graft: Sneak Attack Inexperience', 11652), (95163, 128020, 6, 200, 'Hacked Boosted-Graft: Sneak Attack Proficiency', 11652), (95260, 127808, 12, 200, 'Hacked Boosted-Graft: SpaceTime Expertise', 11647), (95029, 127812, 13, 200, 'Hacked Boosted-Graft: SpaceTime Incompetence', 11647), (95031, 127816, 6, 200, 'Hacked Boosted-Graft: SpaceTime Inexperience', 11652), (95033, 127820, 5, 200, 'Hacked Boosted-Graft: SpaceTime Proficiency', 11652), (94864, 128112, 51, 200, 'Hacked Boosted-Graft: Spike Armor', 11649), (94866, 128116, 6, 200, 'Hacked Boosted-Graft: Spike Shield', 11652), (95165, 128024, 6, 200, 'Hacked Boosted-Graft: Stamina Boost', 11652), (95167, 128028, 6, 200, 'Hacked Boosted-Graft: Strength Boost', 11652), (95004, 127760, 12, 200, 'Hacked Boosted-Graft: Submachine Gun Expertise', 11647), (95006, 127764, 13, 200, 'Hacked Boosted-Graft: Submachine Gun Incompetence', 11647), (95008, 127768, 6, 200, 'Hacked Boosted-Graft: Submachine Gun Inexperience', 11652), (95010, 127772, 5, 200, 'Hacked Boosted-Graft: Submachine Gun Proficiency', 11652), (95173, 128032, 5, 200, 'Hacked Boosted-Graft: Swiftness', 11652), (94803, 127656, 5, 200, 'Hacked Boosted-Graft: Team Quick Heal', 11652), (94992, 127752, 12, 200, 'Hacked Boosted-Graft: Throwing Knife Expertise', 11647), (94994, 127672, 13, 200, 'Hacked Boosted-Graft: Throwing Knife Incompetence', 11647), (94996, 127668, 6, 200, 'Hacked Boosted-Graft: Throwing Knife Inexperience', 11652), (94998, 127756, 5, 200, 'Hacked Boosted-Graft: Throwing Knife Proficiency', 11652), (95179, 128044, 12, 200, 'Hacked Boosted-Graft: Treatment Expertise', 11647), (95181, 128048, 5, 200, 'Hacked Boosted-Graft: Treatment Proficiency', 11652), (95183, 128052, 12, 200, 'Hacked Boosted-Graft: Tutoring Expertise', 11647), (95185, 128056, 5, 200, 'Hacked Boosted-Graft: Tutoring Proficiency', 11652), (95203, 128060, 8, 200, 'Hacked Boosted-Graft: Weapon Augmentation', 11647), (95205, 128064, 17, 200, 'Hacked Boosted-Graft: Weapon Enhancement', 11647), (95207, 128068, 12, 200, 'Hacked Boosted-Graft: Weapon Smithing Expertise', 11647), (95209, 128072, 5, 200, 'Hacked Boosted-Graft: Weapon Smithing Proficiency', 11652), (94805, 128290, 46, 200, 'Hacked Boosted-Graft: Wilderness Protection', 11649), (88402, 125876, 13, 200, 'Hacked Charged Nano Finger - 1H Blunt Weapon Incompetence', 11599), (88412, 126768, 6, 200, 'Hacked Charged Nano Finger - 1H Blunt Weapon Inexperience', 11598), (88426, 126992, 13, 200, 'Hacked Charged Nano Finger - 1H Edged Weapon Incompetence', 11599), (88443, 126996, 6, 200, 'Hacked Charged Nano Finger - 1H Edged Weapon Inexperience', 11598), (88462, 127000, 13, 200, 'Hacked Charged Nano Finger - 2H Blunt Weapon Incompetence', 11599), (88479, 127004, 6, 200, 'Hacked Charged Nano Finger - 2H Blunt Weapon Inexperience', 11598), (88496, 127008, 13, 200, 'Hacked Charged Nano Finger - 2H Edged Weapon Incompetence', 11599), (88513, 127012, 6, 200, 'Hacked Charged Nano Finger - 2H Edged Weapon Inexperience', 11598), (89957, 127152, 34, 200, 'Hacked Charged Nano Finger - Active Remedy', 11600), (126775, 126776, 2, 200, 'Hacked Charged Nano Finger - Aggression Prod', 11598), (88531, 126780, 14, 200, 'Hacked Charged Nano Finger - Aimed Shot Incompetence', 11599), (88548, 126784, 7, 200, 'Hacked Charged Nano Finger - Aimed Shot Inexperience', 11598), (88566, 126788, 13, 200, 'Hacked Charged Nano Finger - Assault Rifle Incompetence', 11599), (88585, 126792, 6, 200, 'Hacked Charged Nano Finger - Assault Rifle Inexperience', 11598), (127135, 127136, 25, 200, 'Hacked Charged Nano Finger - Bad Blood', 11600), (88602, 126796, 13, 200, 'Hacked Charged Nano Finger - BioMet Incompetence', 11599), (88620, 126800, 6, 200, 'Hacked Charged Nano Finger - BioMet Inexperience', 11598), (89969, 127120, 25, 200, 'Hacked Charged Nano Finger - Biotoxin MK I', 11600), (89983, 127124, 44, 200, 'Hacked Charged Nano Finger - Biotoxin MK II', 11601), (88638, 126804, 13, 200, 'Hacked Charged Nano Finger - Bow Incompetence', 11599), (88655, 126808, 6, 200, 'Hacked Charged Nano Finger - Bow Inexperience', 11598), (88673, 126812, 14, 200, 'Hacked Charged Nano Finger - Bow Special Attack Incompetence', 11599), (88693, 126816, 7, 200, 'Hacked Charged Nano Finger - Bow Special Attack Inexperience', 11598), (88710, 126820, 14, 200, 'Hacked Charged Nano Finger - Brawl Incompetence', 11599), (88727, 126824, 7, 200, 'Hacked Charged Nano Finger - Brawl Inexperience', 11598), (88745, 126828, 14, 200, 'Hacked Charged Nano Finger - Burst Incompetence', 11599), (88763, 126832, 7, 200, 'Hacked Charged Nano Finger - Burst Inexperience', 11598), (89996, 127196, 32, 200, 'Hacked Charged Nano Finger - Cancerous Burrower', 11600), (90011, 127184, 48, 200, 'Hacked Charged Nano Finger - Dark Venom', 11601), (88782, 126836, 14, 200, 'Hacked Charged Nano Finger - Dimach Incompetence', 11599), (88799, 126840, 7, 200, 'Hacked Charged Nano Finger - Dimach Inexperience', 11598), (88819, 126844, 5, 200, 'Hacked Charged Nano Finger - Diminish Agility', 11598), (88839, 126848, 5, 200, 'Hacked Charged Nano Finger - Diminish Intelligence', 11598), (88859, 126852, 5, 200, 'Hacked Charged Nano Finger - Diminish Psychic', 11598), (88876, 126856, 5, 200, 'Hacked Charged Nano Finger - Diminish Sense', 11598), (88896, 126860, 5, 200, 'Hacked Charged Nano Finger - Diminish Stamina', 11598), (88914, 126864, 5, 200, 'Hacked Charged Nano Finger - Diminish Strength', 11598), (90024, 127188, 10, 200, 'Hacked Charged Nano Finger - Dissolve Molecular Bonding', 11599), (127231, 127232, 58, 200, 'Hacked Charged Nano Finger - Distracting Nuisance', 11602), (88932, 126868, 9, 200, 'Hacked Charged Nano Finger - Drain Agility', 11599), (88952, 126872, 9, 200, 'Hacked Charged Nano Finger - Drain Intelligence', 11599), (88969, 126876, 9, 200, 'Hacked Charged Nano Finger - Drain Psychic', 11599), (88988, 126880, 9, 200, 'Hacked Charged Nano Finger - Drain Sense', 11599), (89008, 126884, 9, 200, 'Hacked Charged Nano Finger - Drain Stamina', 11599), (89028, 126888, 9, 200, 'Hacked Charged Nano Finger - Drain Strength', 11599), (127223, 127224, 17, 200, 'Hacked Charged Nano Finger - Draw Attention', 11599), (126895, 126896, 15, 200, 'Hacked Charged Nano Finger - Ego Pummel', 11599), (127143, 127144, 5, 200, 'Hacked Charged Nano Finger - Ego Taunt', 11598), (90037, 127192, 13, 200, 'Hacked Charged Nano Finger - Elementary Nano Contagion', 11599), (89047, 126908, 5, 200, 'Hacked Charged Nano Finger - Energy Melee Incompetence', 11598), (89065, 126912, 12, 200, 'Hacked Charged Nano Finger - Energy Melee Inexperience', 11599), (126903, 126904, 34, 200, 'Hacked Charged Nano Finger - Enmity', 11600), (127215, 127216, 33, 200, 'Hacked Charged Nano Finger - Enraged Mind', 11600), (89121, 126924, 14, 200, 'Hacked Charged Nano Finger - Fast Attack Incompetence', 11599), (89140, 126928, 7, 200, 'Hacked Charged Nano Finger - Fast Attack Inexperience', 11598), (89158, 126932, 14, 200, 'Hacked Charged Nano Finger - Fling Shot Incompetence', 11599), (89176, 126936, 7, 200, 'Hacked Charged Nano Finger - Fling Shot Inexperience', 11598), (127239, 127240, 16, 200, 'Hacked Charged Nano Finger - Frost Slivers', 11599), (89195, 126940, 14, 200, 'Hacked Charged Nano Finger - Full Auto Incompetence', 11599), (89214, 126944, 7, 200, 'Hacked Charged Nano Finger - Full Auto Inexperience', 11598), (89272, 126988, 13, 200, 'Hacked Charged Nano Finger - Grenade Incompetence', 11599), (89292, 126984, 6, 200, 'Hacked Charged Nano Finger - Grenade Inexperience', 11598), (89233, 126948, 13, 200, 'Hacked Charged Nano Finger - Heavy Weapons Incompetence', 11599), (89252, 126952, 6, 200, 'Hacked Charged Nano Finger - Heavy Weapons Inexperience', 11598), (90049, 127180, 29, 200, 'Hacked Charged Nano Finger - Infected Wounds', 11600), (90061, 127128, 8, 200, 'Hacked Charged Nano Finger - Inflict Harm', 11599), (89084, 126916, 13, 200, 'Hacked Charged Nano Finger - LR Energy Weapon Incompetence', 11599), (89102, 126920, 6, 200, 'Hacked Charged Nano Finger - LR Energy Weapon Inexp', 11598), (89347, 126968, 6, 200, 'Hacked Charged Nano Finger - Leaden Feet', 11598), (89366, 126972, 6, 200, 'Hacked Charged Nano Finger - Lethargy', 11598), (90074, 127176, 6, 200, 'Hacked Charged Nano Finger - Limited Nano Reaper', 11598), (89423, 127024, 13, 200, 'Hacked Charged Nano Finger - Martial Arts Incompetence', 11599), (89441, 127028, 6, 200, 'Hacked Charged Nano Finger - Martial Arts Inexperience', 11598), (89461, 127032, 13, 200, 'Hacked Charged Nano Finger - MatCrea Incompetence', 11599), (89480, 127036, 6, 200, 'Hacked Charged Nano Finger - MatCrea Inexperience', 11598), (89538, 127048, 13, 200, 'Hacked Charged Nano Finger - MatMet Incompetence', 11599), (89558, 127052, 6, 200, 'Hacked Charged Nano Finger - MatMet Inexperience', 11598), (90087, 127172, 35, 200, 'Hacked Charged Nano Finger - Minor Consuming Toxin', 11600), (90101, 127168, 39, 200, 'Hacked Charged Nano Finger - Parasitic Affliction', 11601), (89583, 127056, 14, 200, 'Hacked Charged Nano Finger - Parry Incompetence', 11599), (89595, 127060, 7, 200, 'Hacked Charged Nano Finger - Parry Inexperience', 11598), (89607, 126956, 13, 200, 'Hacked Charged Nano Finger - Piercing Incompetence', 11599), (89621, 126960, 6, 200, 'Hacked Charged Nano Finger - Piercing Inexperience', 11598), (89633, 127064, 13, 200, 'Hacked Charged Nano Finger - Pistol Incompetence', 11599), (89645, 127068, 6, 200, 'Hacked Charged Nano Finger - Pistol Inexperience', 11598), (90113, 127164, 20, 200, 'Hacked Charged Nano Finger - Primitive Nano Gorger', 11599), (90125, 127156, 3, 200, 'Hacked Charged Nano Finger - Primitive Viral Agent', 11598), (90139, 127160, 16, 200, 'Hacked Charged Nano Finger - Protein Breakdown', 11599), (90150, 127148, 1, 200, 'Hacked Charged Nano Finger - Prototype Biotoxin', 11598), (89657, 127072, 13, 200, 'Hacked Charged Nano Finger - PsyMod Incompetence', 11599), (89670, 127076, 6, 200, 'Hacked Charged Nano Finger - PsyMod Inexperience', 11598), (89682, 127080, 13, 200, 'Hacked Charged Nano Finger - Rifle Incompetence', 11599), (89696, 127084, 6, 200, 'Hacked Charged Nano Finger - Rifle Inexperience', 11598), (89710, 127088, 14, 200, 'Hacked Charged Nano Finger - Riposte Incompetence', 11599), (89724, 127092, 7, 200, 'Hacked Charged Nano Finger - Riposte Inexperience', 11598), (89738, 127096, 13, 200, 'Hacked Charged Nano Finger - Sense Imp Incomp', 11599), (89751, 127100, 6, 200, 'Hacked Charged Nano Finger - Sense Imp Inexperience', 11598), (90165, 127204, 37, 200, 'Hacked Charged Nano Finger - Shatter Bone', 11600), (89765, 127104, 13, 200, 'Hacked Charged Nano Finger - Shotgun Incompetence', 11599), (89778, 127108, 6, 200, 'Hacked Charged Nano Finger - Shotgun Inexperience', 11598), (89792, 127112, 14, 200, 'Hacked Charged Nano Finger - Sneak Attack Incompetence', 11599), (89805, 127116, 7, 200, 'Hacked Charged Nano Finger - Sneak Attack Inexperience', 11598), (89499, 127040, 13, 200, 'Hacked Charged Nano Finger - SpaceTime Incompetence', 11599), (89518, 127044, 6, 200, 'Hacked Charged Nano Finger - SpaceTime Inexperience', 11598), (89387, 127016, 13, 200, 'Hacked Charged Nano Finger - Submachine Gun Incompetence', 11599), (89403, 127020, 6, 200, 'Hacked Charged Nano Finger - Submachine Gun Inexperience', 11598), (89943, 126964, 5, 200, 'Hacked Charged Nano Finger - Team Quick Heal', 11598), (89312, 126980, 13, 200, 'Hacked Charged Nano Finger - Throwing Knife Incompetence', 11599), (89328, 126976, 6, 200, 'Hacked Charged Nano Finger - Throwing Knife Inexperience', 11598), (90174, 127200, 1, 200, 'Hacked Charged Nano Finger - Weak Health Funnel', 11598), (273231, 273231, 1, 1, 'Hacked Data Chips', 100321), (164549, 164550, 1, 200, 'Hacked Electrical Engineering Tutoring Device', 161873), (164559, 164560, 1, 200, 'Hacked Field Quantum Physics Tool', 20406), (287176, 287176, 100, 100, 'Hacked Floorplan', 287233), (287756, 287756, 1, 1, 'Hacked Kyr''Ozch Memory Cell', 289668), (245978, 245979, 10, 200, 'Hacked Leather Armor Boots', 13264), (245976, 245977, 10, 200, 'Hacked Leather Armor Gloves', 245962), (245984, 245985, 10, 200, 'Hacked Leather Armor Helmet', 10835), (245982, 245983, 10, 200, 'Hacked Leather Armor Pants', 245961), (245980, 245981, 10, 200, 'Hacked Leather Armor Sleeves', 245960), (245986, 245987, 10, 200, 'Hacked Leather Body Armor', 245963), (204989, 204990, 100, 199, 'Hacked Light Omni-Tek Artillery Tank Armor', 22393), (204990, 204991, 200, 250, 'Hacked Light Omni-Tek Artillery Tank Armor', 22393), (204856, 204856, 10, 10, 'Hacked Massive Steel Body Armor', 22972), (274974, 274974, 300, 300, 'Hacked Medi-Blade', 264783), (206614, 206614, 10, 10, 'Hacked Nano Breed Survival Suit Body Armor', 13252), (206613, 206613, 10, 10, 'Hacked Nano Breed Survival Suit Boots', 155112), (206612, 206612, 10, 10, 'Hacked Nano Breed Survival Suit Pants', 13302), (206615, 206615, 10, 10, 'Hacked Nano Breed Survival Suit Sleeves', 22949), (246398, 246399, 50, 200, 'Hacked Nano-Charged Assault Rifle', 45783), (246396, 246397, 50, 200, 'Hacked Nano-Charged Rifle', 45782), (286233, 286234, 150, 200, 'Hacked Omni-Tek Gunship', 38024), (156335, 156336, 20, 80, 'Hacked Order BLCG-7791', 154678), (156337, 156338, 20, 80, 'Hacked Order FPGA-202', 154678), (156333, 156334, 20, 80, 'Hacked Order XITL-0127', 154678), (161767, 161768, 1, 200, 'Hacked Pharma Tech Tutoring Device', 161873), (88395, 125886, 12, 200, 'Hacked Pill with 1H Blunt Weapon Expertise', 19853), (88449, 125890, 5, 200, 'Hacked Pill with 1H Blunt Weapon Proficiency', 19856), (88464, 126126, 12, 200, 'Hacked Pill with 1H Edged Weapon Expertise', 19853), (88482, 126130, 5, 200, 'Hacked Pill with 1H Edged Weapon Proficiency', 19856), (88501, 126134, 12, 200, 'Hacked Pill with 2H Blunt Weapon Expertise', 19853), (88519, 126138, 5, 200, 'Hacked Pill with 2H Blunt Weapon Proficiency', 19856), (88537, 126142, 12, 200, 'Hacked Pill with 2H Edged Weapon Expertise', 19853), (88555, 126146, 5, 200, 'Hacked Pill with 2H Edged Weapon Proficiency', 19856), (88572, 125906, 12, 200, 'Hacked Pill with Adrenaline Pump', 19853), (93443, 126734, 110, 200, 'Hacked Pill with Advanced Insurance Hack', 19858), (93396, 126646, 98, 200, 'Hacked Pill with Advanced Shielding Barrier', 19857), (89164, 126002, 12, 200, 'Hacked Pill with Adventuring Expertise', 19853), (88591, 125894, 6, 200, 'Hacked Pill with Agility Boost', 19856), (88609, 125898, 13, 200, 'Hacked Pill with Aimed Shot Expertise', 19853), (88626, 125902, 6, 200, 'Hacked Pill with Aimed Shot Proficiency', 19856), (92950, 126430, 2, 200, 'Hacked Pill with Armor Megaboost', 19856), (88685, 125962, 12, 200, 'Hacked Pill with Assault Rifle Expertise', 19853), (88703, 125914, 5, 200, 'Hacked Pill with Assault Rifle Proficiency', 19856), (88723, 125918, 3, 200, 'Hacked Pill with Augment Agility', 19856), (88743, 125922, 3, 200, 'Hacked Pill with Augment Intelligence', 19856), (88761, 125926, 3, 200, 'Hacked Pill with Augment Psychic', 19856), (88780, 125930, 3, 200, 'Hacked Pill with Augment Sense', 19856), (88802, 125934, 3, 200, 'Hacked Pill with Augment Stamina', 19856), (88818, 125938, 3, 200, 'Hacked Pill with Augment Strength', 19856), (93386, 126562, 4, 200, 'Hacked Pill with Avenging Shield', 19856), (92985, 126450, 8, 200, 'Hacked Pill with Balanced Striker', 19856), (93398, 126622, 35, 200, 'Hacked Pill with Basic Defensive Screen', 19854), (93447, 126730, 4, 200, 'Hacked Pill with Basic Insurance Hack', 19856), (93451, 126742, 74, 200, 'Hacked Pill with Basic Policy Skim', 19852), (93400, 126626, 30, 200, 'Hacked Pill with Basic Protective Field', 19854), (93402, 126630, 24, 200, 'Hacked Pill with Basic Shielding Barrier', 19853), (88834, 125942, 12, 200, 'Hacked Pill with BioMet Expertise', 19853), (88851, 125946, 5, 200, 'Hacked Pill with BioMet Proficiency', 19856), (88868, 125950, 5, 200, 'Hacked Pill with Bot Mass Migration', 19856), (88889, 125954, 3, 200, 'Hacked Pill with Bot Migration', 19856), (88907, 125958, 12, 200, 'Hacked Pill with Bow Expertise', 19853), (88926, 125910, 5, 200, 'Hacked Pill with Bow Proficiency', 19856), (88944, 126006, 13, 200, 'Hacked Pill with Bow Special Attack Expertise', 19853), (88962, 125966, 6, 200, 'Hacked Pill with Bow Special Attack Proficiency', 19856), (88982, 125970, 13, 200, 'Hacked Pill with Brawl Expertise', 19853), (89000, 125974, 6, 200, 'Hacked Pill with Brawl Proficiency', 19856), (89017, 125978, 12, 200, 'Hacked Pill with Breaking and Entering Expertise', 19853), (89035, 125982, 5, 200, 'Hacked Pill with Breaking and Entering Proficiency', 19856), (93388, 126566, 13, 200, 'Hacked Pill with Bristling Shield', 19853), (89053, 125986, 13, 200, 'Hacked Pill with Burst Expertise', 19853), (89071, 125990, 6, 200, 'Hacked Pill with Burst Proficiency', 19856), (93281, 126510, 46, 200, 'Hacked Pill with Cellular Grafting', 19854), (89127, 125994, 12, 200, 'Hacked Pill with Chemistry Expertise', 19853), (89146, 125998, 5, 200, 'Hacked Pill with Chemistry Proficiency', 19856), (90358, 126582, 2, 200, 'Hacked Pill with Coat of Barbs', 19856), (89239, 126042, 12, 200, 'Hacked Pill with Computer Literacy Expertise', 19853), (89258, 126014, 5, 200, 'Hacked Pill with Computer Literacy Proficiency', 19856), (89276, 126018, 12, 200, 'Hacked Pill with Concealment Expertise', 19853), (89294, 126022, 5, 200, 'Hacked Pill with Concealment Proficiency', 19856), (93006, 126462, 28, 200, 'Hacked Pill with Contact Poison', 19853), (93286, 126506, 49, 200, 'Hacked Pill with Counteract Damage', 19854), (93290, 126514, 28, 200, 'Hacked Pill with Cursory Examination', 19853), (92929, 126410, 46, 200, 'Hacked Pill with Damage Amplifier', 19854), (92936, 126414, 7, 200, 'Hacked Pill with Damage Multiplier', 19856), (93455, 126738, 82, 200, 'Hacked Pill with Detailed Medical Claim', 19852), (89310, 126026, 12, 200, 'Hacked Pill with Disarm Traps Expertise', 19853), (89331, 126030, 5, 200, 'Hacked Pill with Disarm Traps Proficiency', 19856), (93305, 126518, 9, 200, 'Hacked Pill with Dress Wounds', 19856), (93404, 126578, 20, 200, 'Hacked Pill with Electrical Chastiser', 19853), (89351, 126034, 12, 200, 'Hacked Pill with Electrical Engineering Expertise', 19853), (89369, 126390, 5, 200, 'Hacked Pill with Electrical Engineering Proficiency', 19856), (93313, 126522, 3, 200, 'Hacked Pill with Emergency Stitching', 19856), (89386, 126038, 12, 200, 'Hacked Pill with Energy Melee Expertise', 19853), (89406, 126010, 5, 200, 'Hacked Pill with Energy Melee Proficiency', 19856), (92957, 126434, 33, 200, 'Hacked Pill with Energy Spike', 19854), (125867, 125868, 29, 200, 'Hacked Pill with Enhanced Senses', 19853), (93460, 126750, 38, 200, 'Hacked Pill with Falsify Medical Records', 19854), (89502, 126058, 13, 200, 'Hacked Pill with Fast Attack Expertise', 19853), (89520, 126062, 6, 200, 'Hacked Pill with Fast Attack Proficiency', 19856), (93317, 126526, 11, 200, 'Hacked Pill with Field Dressings', 19853), (89540, 126066, 12, 200, 'Hacked Pill with Field Quantum Physics Expertise', 19853), (89557, 126070, 5, 200, 'Hacked Pill with Field Quantum Physics Proficiency', 19856), (93392, 126570, 24, 200, 'Hacked Pill with Field of Sparks', 19853), (92992, 126454, 112, 200, 'Hacked Pill with Fine Tuning', 19858), (89591, 126074, 12, 200, 'Hacked Pill with First Aid Expertise', 19853), (89603, 126078, 5, 200, 'Hacked Pill with First Aid Proficiency', 19856), (93406, 126634, 18, 200, 'Hacked Pill with Flawed Defensive Screen', 19853), (93409, 126638, 12, 200, 'Hacked Pill with Flawed Protective Field', 19853), (93411, 126642, 8, 200, 'Hacked Pill with Flawed Shielding Barrier', 19856), (89615, 126082, 13, 200, 'Hacked Pill with Fling Shot Expertise', 19853), (89625, 126086, 6, 200, 'Hacked Pill with Fling Shot Proficiency', 19856), (89637, 126090, 13, 200, 'Hacked Pill with Full Auto Expertise', 19853), (89649, 126094, 6, 200, 'Hacked Pill with Full Auto Proficiency', 19856), (92943, 126426, 34, 200, 'Hacked Pill with Glowing Retribution', 19854), (93415, 126650, 5, 200, 'Hacked Pill with Greater Armor Megaboost', 19856), (89684, 126154, 12, 200, 'Hacked Pill with Grenade Expertise', 19853), (89694, 126158, 5, 200, 'Hacked Pill with Grenade Proficiency', 19856), (92964, 126438, 10, 200, 'Hacked Pill with Gun Enhancement', 19853), (93543, 126674, 17, 200, 'Hacked Pill with Harden Skin', 19853), (93464, 126710, 47, 200, 'Hacked Pill with Hasty Augmentation Cloud', 19854), (89726, 126114, 5, 200, 'Hacked Pill with Healing', 19856), (89661, 126098, 12, 200, 'Hacked Pill with Heavy Weapons Expertise', 19853), (89672, 126102, 5, 200, 'Hacked Pill with Heavy Weapons Proficiency', 19856), (93582, 126718, 30, 200, 'Hacked Pill with Hired Hands', 19854), (89736, 126162, 7, 200, 'Hacked Pill with Improve Health', 19856), (92898, 126394, 1, 200, 'Hacked Pill with Improved Healing', 19856), (93326, 126558, 14, 200, 'Hacked Pill with Inferior Cleanse Wounds', 19853), (93331, 126530, 5, 200, 'Hacked Pill with Inferior Wound Bindings', 19856), (93468, 126746, 56, 200, 'Hacked Pill with Insurance Hack', 19855), (89747, 126166, 6, 200, 'Hacked Pill with Intelligence Boost', 19856), (90364, 126586, 18, 200, 'Hacked Pill with Jacket of Blades', 19853), (89462, 126050, 12, 200, 'Hacked Pill with LR Energy Weapon Expertise', 19853), (89483, 126054, 5, 200, 'Hacked Pill with LR Energy Weapon Proficiency', 19856), (93340, 126486, 13, 200, 'Hacked Pill with Lasting Heal', 19853), (93557, 126686, 40, 200, 'Hacked Pill with Lesser Absorption Shield', 19854), (93258, 126706, 9, 200, 'Hacked Pill with Lesser Anatomy Lesson', 19856), (93559, 126690, 24, 200, 'Hacked Pill with Lesser Combat Barrier', 19853), (93420, 126654, 54, 200, 'Hacked Pill with Lesser Defensive Screen', 19855), (93561, 126610, 28, 200, 'Hacked Pill with Lesser Deflection Shield', 19853), (93563, 126614, 37, 200, 'Hacked Pill with Lesser Deflection Shield (Extended)', 19854), (93545, 126722, 12, 200, 'Hacked Pill with Lesser Healing Touch', 19853), (93471, 126714, 11, 200, 'Hacked Pill with Lesser Nano Boost', 19853), (93424, 126658, 48, 200, 'Hacked Pill with Lesser Protective Field', 19854), (93428, 126574, 36, 200, 'Hacked Pill with Lesser Retaliatory Barrier', 19854), (93547, 126670, 37, 200, 'Hacked Pill with Lesser Shen Protection', 19854), (93432, 126618, 42, 200, 'Hacked Pill with Lesser Shielding Barrier', 19854), (90370, 126662, 22, 200, 'Hacked Pill with Lesser Wilderness Protection', 19853), (93473, 126474, 90, 200, 'Hacked Pill with Lifebane Modification', 19857), (89801, 126186, 12, 200, 'Hacked Pill with Martial Arts Expertise', 19853), (89813, 126190, 5, 200, 'Hacked Pill with Martial Arts Proficiency', 19856), (89826, 126194, 12, 200, 'Hacked Pill with MatCrea Expertise', 19853), (89838, 126198, 5, 200, 'Hacked Pill with MatCrea Proficiency', 19856), (89873, 126210, 12, 200, 'Hacked Pill with MatMet Expertise', 19853), (89883, 126214, 5, 200, 'Hacked Pill with MatMet Proficiency', 19856), (89894, 126218, 12, 200, 'Hacked Pill with Mechanical Engineering Expertise', 19853), (89905, 126222, 5, 200, 'Hacked Pill with Mechanical Engineering Proficiency', 19856), (93475, 126754, 20, 200, 'Hacked Pill with Medical Claim', 19853), (93565, 126694, 14, 200, 'Hacked Pill with Minor Absorption Shield', 19853), (93567, 126698, 6, 200, 'Hacked Pill with Minor Combat Barrier', 19856), (93569, 126606, 16, 200, 'Hacked Pill with Minor Deflection Shield', 19853), (93571, 126602, 21, 200, 'Hacked Pill with Minor Deflection Shield (Extended)', 19853), (89939, 126110, 2, 200, 'Hacked Pill with Minor Healing', 19856), (93261, 126502, 1, 200, 'Hacked Pill with Minor Nano Augmentation', 19856), (93551, 126678, 9, 200, 'Hacked Pill with Minor Shen Protection', 19856), (93353, 126490, 8, 200, 'Hacked Pill with Minor Team Healing', 19856), (93356, 126546, 31, 200, 'Hacked Pill with Minor Team Purification', 19854), (90376, 126666, 4, 200, 'Hacked Pill with Minor Wilderness Protection', 19856), (93265, 126702, 23, 200, 'Hacked Pill with Nano Augmentation', 19853), (89949, 126226, 12, 200, 'Hacked Pill with Nano Programming Expertise', 19853), (89961, 126230, 5, 200, 'Hacked Pill with Nano Programming Proficiency', 19856), (89984, 126234, 9, 200, 'Hacked Pill with Nano Restoration', 19856), (90005, 126238, 13, 200, 'Hacked Pill with Parry Expertise', 19853), (90015, 126242, 6, 200, 'Hacked Pill with Parry Proficiency', 19856), (93574, 126598, 3, 200, 'Hacked Pill with Partial Deflection Shield', 19856), (93576, 126594, 9, 200, 'Hacked Pill with Partial Deflection Shield (Extended)', 19856), (93437, 126590, 27, 200, 'Hacked Pill with Partial Harmonic Cocoon', 19853), (90026, 126246, 12, 200, 'Hacked Pill with Pharmaceutical Expertise', 19853), (90038, 126250, 5, 200, 'Hacked Pill with Pharmaceutical Proficiency', 19856), (90050, 126106, 12, 200, 'Hacked Pill with Piercing Expert', 19853), (90062, 126046, 5, 200, 'Hacked Pill with Piercing Proficiency', 19856), (90072, 126254, 12, 200, 'Hacked Pill with Pistol Expertise', 19853), (90083, 126150, 5, 200, 'Hacked Pill with Pistol Proficiency', 19856), (93013, 126466, 3, 200, 'Hacked Pill with Poison Modification', 19856), (92905, 126398, 35, 200, 'Hacked Pill with Premium Cover', 19854), (90169, 126270, 12, 200, 'Hacked Pill with PsyMod Expertise', 19853), (90178, 126274, 5, 200, 'Hacked Pill with PsyMod Proficiency', 19856), (90140, 126258, 6, 200, 'Hacked Pill with Psychic Boost', 19856), (90149, 126262, 12, 200, 'Hacked Pill with Psychology Expertise', 19853), (90159, 126266, 5, 200, 'Hacked Pill with Psychology Proficiency', 19856), (90381, 126118, 1, 200, 'Hacked Pill with Quick Heal', 19856), (90184, 126278, 20, 200, 'Hacked Pill with Quickness', 19853), (90190, 126282, 3, 200, 'Hacked Pill with Radiation Shield', 19856), (90196, 126286, 8, 200, 'Hacked Pill with Radiation Ward', 19856), (93370, 126542, 42, 200, 'Hacked Pill with Recurrent Remedy', 19854), (90202, 126290, 12, 200, 'Hacked Pill with Regeneration', 19853), (93372, 126534, 19, 200, 'Hacked Pill with Relief from Pain', 19853), (93374, 126538, 41, 200, 'Hacked Pill with Restorative Boost', 19854), (92999, 126458, 73, 200, 'Hacked Pill with Riding Shotgun', 19852), (90208, 126294, 12, 200, 'Hacked Pill with Rifle Expertise', 19853), (126419, 126420, 42, 200, 'Hacked Pill with Rifle Mastery', 19854), (90214, 126298, 5, 200, 'Hacked Pill with Rifle Proficiency', 19856), (90220, 126302, 13, 200, 'Hacked Pill with Riposte Expertise', 19853), (90226, 126306, 6, 200, 'Hacked Pill with Riposte Proficiency', 19856), (93254, 126726, 8, 200, 'Hacked Pill with Rough Stitching', 19856), (92921, 126406, 27, 200, 'Hacked Pill with Rubber Skin', 19853), (90232, 126310, 6, 200, 'Hacked Pill with Sense Boost', 19856), (90238, 126314, 12, 200, 'Hacked Pill with Sense Imp Expertise', 19853), (90244, 126318, 5, 200, 'Hacked Pill with Sense Imp Proficiency', 19856), (90250, 126322, 12, 200, 'Hacked Pill with Shotgun Expertise', 19853), (90256, 126326, 5, 200, 'Hacked Pill with Shotgun Proficiency', 19856), (90262, 126330, 13, 200, 'Hacked Pill with Sneak Attack Expertise', 19853), (90268, 126334, 6, 200, 'Hacked Pill with Sneak Attack Proficiency', 19856), (89850, 126202, 12, 200, 'Hacked Pill with SpaceTime Expertise', 19853), (89861, 126206, 5, 200, 'Hacked Pill with SpaceTime Proficiency', 19856), (92971, 126442, 51, 200, 'Hacked Pill with Spike Armor', 19855), (92978, 126446, 6, 200, 'Hacked Pill with Spike Shield', 19856), (93378, 126550, 27, 200, 'Hacked Pill with Spreading Health', 19853), (90274, 126338, 6, 200, 'Hacked Pill with Stamina Boost', 19856), (90280, 126342, 6, 200, 'Hacked Pill with Strength Boost', 19856), (89780, 126178, 12, 200, 'Hacked Pill with Submachine Gun Expertise', 19853), (89790, 126182, 5, 200, 'Hacked Pill with Submachine Gun Proficiency', 19856), (92914, 126402, 30, 200, 'Hacked Pill with Superior Healing', 19854), (90286, 126346, 5, 200, 'Hacked Pill with Swiftness', 19856), (93380, 126554, 18, 200, 'Hacked Pill with Team Field Dressings', 19853), (93382, 126494, 40, 200, 'Hacked Pill with Team Healing', 19854), (92760, 126122, 5, 200, 'Hacked Pill with Team Quick Heal', 19856), (126479, 126480, 21, 200, 'Hacked Pill with Team Terrain Knowledge', 19853), (89757, 126170, 12, 200, 'Hacked Pill with Throwing Knife Expertise', 19853), (89769, 126174, 5, 200, 'Hacked Pill with Throwing Knife Proficiency', 19856), (93555, 126682, 3, 200, 'Hacked Pill with Toughen Skin', 19856), (90304, 126358, 12, 200, 'Hacked Pill with Treatment Expertise', 19853), (90310, 126362, 5, 200, 'Hacked Pill with Treatment Proficiency', 19856), (90316, 126366, 12, 200, 'Hacked Pill with Tutoring Expertise', 19853), (90322, 126370, 5, 200, 'Hacked Pill with Tutoring Proficiency', 19856), (93479, 126470, 63, 200, 'Hacked Pill with Venom Modification', 19855), (93384, 126498, 4, 200, 'Hacked Pill with Weak Team Heal', 19856), (90334, 126374, 8, 200, 'Hacked Pill with Weapon Augmentation', 19856), (90340, 126378, 17, 200, 'Hacked Pill with Weapon Enhancement', 19853), (90346, 126382, 12, 200, 'Hacked Pill with Weapon Smithing Expertise', 19853), (90352, 126386, 5, 200, 'Hacked Pill with Weapon Smithing Proficiency', 19856), (161764, 161765, 1, 200, 'Hacked Portable Surgery Clinic', 161872), (245947, 245948, 25, 200, 'Hacked Steel-Ribbed Armor Boots', 245925), (245941, 245942, 25, 200, 'Hacked Steel-Ribbed Armor Gloves', 245926), (245949, 245950, 25, 200, 'Hacked Steel-Ribbed Armor Helmet', 245927), (245945, 245946, 25, 200, 'Hacked Steel-Ribbed Armor Pants', 245928), (245943, 245944, 25, 200, 'Hacked Steel-Ribbed Armor Sleeves', 245923), (245951, 245952, 25, 200, 'Hacked Steel-Ribbed Body Armor', 245924), (88397, 127242, 12, 200, 'Hacked Symbio-Graft: 1H Blunt Weapon Expertise', 11647), (88408, 127246, 13, 200, 'Hacked Symbio-Graft: 1H Blunt Weapon Incompetence', 11647), (88420, 127250, 6, 200, 'Hacked Symbio-Graft: 1H Blunt Weapon Inexperience', 11652), (88430, 127254, 5, 200, 'Hacked Symbio-Graft: 1H Blunt Weapon Proficiency', 11652), (88446, 127682, 12, 200, 'Hacked Symbio-Graft: 1H Edged Weapon Expertise', 11647), (88467, 127686, 13, 200, 'Hacked Symbio-Graft: 1H Edged Weapon Incompetence', 11647), (88485, 127690, 6, 200, 'Hacked Symbio-Graft: 1H Edged Weapon Inexperience', 11652), (88504, 127694, 5, 200, 'Hacked Symbio-Graft: 1H Edged Weapon Proficiency', 11652), (88523, 127698, 12, 200, 'Hacked Symbio-Graft: 2H Blunt Weapon Expertise', 11647), (88542, 127702, 13, 200, 'Hacked Symbio-Graft: 2H Blunt Weapon Incompetence', 11647), (88559, 127706, 6, 200, 'Hacked Symbio-Graft: 2H Blunt Weapon Inexperience', 11652), (88578, 127710, 5, 200, 'Hacked Symbio-Graft: 2H Blunt Weapon Proficiency', 11652), (88596, 127714, 12, 200, 'Hacked Symbio-Graft: 2H Edged Weapon Expertise', 11647), (88613, 127718, 13, 200, 'Hacked Symbio-Graft: 2H Edged Weapon Incompetence', 11647), (88631, 127722, 6, 200, 'Hacked Symbio-Graft: 2H Edged Weapon Inexperience', 11652), (88649, 127726, 5, 200, 'Hacked Symbio-Graft: 2H Edged Weapon Proficiency', 11652), (88667, 127278, 12, 200, 'Hacked Symbio-Graft: Adrenaline Pump', 11647), (94080, 128272, 98, 200, 'Hacked Symbio-Graft: Advanced Shielding Barrier', 11653), (89443, 127422, 12, 200, 'Hacked Symbio-Graft: Adventuring Expertise', 11647), (88684, 127258, 6, 200, 'Hacked Symbio-Graft: Agility Boost', 11652), (88699, 127262, 13, 200, 'Hacked Symbio-Graft: Aimed Shot Expertise', 11647), (88716, 127266, 14, 200, 'Hacked Symbio-Graft: Aimed Shot Incompetence', 11647), (88732, 127270, 7, 200, 'Hacked Symbio-Graft: Aimed Shot Inexperience', 11652), (88751, 127274, 6, 200, 'Hacked Symbio-Graft: Aimed Shot Proficiency', 11652), (94082, 128098, 2, 200, 'Hacked Symbio-Graft: Armor Megaboost', 11652), (88801, 127358, 12, 200, 'Hacked Symbio-Graft: Assault Rifle Expertise', 11647), (88820, 127286, 13, 200, 'Hacked Symbio-Graft: Assault Rifle Incompetence', 11647), (88836, 127290, 6, 200, 'Hacked Symbio-Graft: Assault Rifle Inexperience', 11652), (88853, 127294, 5, 200, 'Hacked Symbio-Graft: Assault Rifle Proficiency', 11652), (88871, 127298, 3, 200, 'Hacked Symbio-Graft: Augment Agility', 11652), (88887, 127302, 3, 200, 'Hacked Symbio-Graft: Augment Intelligence', 11652), (88903, 127306, 3, 200, 'Hacked Symbio-Graft: Augment Psychic', 11652), (88920, 127310, 3, 200, 'Hacked Symbio-Graft: Augment Sense', 11652), (88938, 127314, 3, 200, 'Hacked Symbio-Graft: Augment Stamina', 11652), (88955, 127318, 3, 200, 'Hacked Symbio-Graft: Augment Strength', 11652), (94074, 128134, 4, 200, 'Hacked Symbio-Graft: Avenging Shield', 11652), (94550, 128118, 8, 200, 'Hacked Symbio-Graft: Balanced Striker', 11647), (94084, 128206, 35, 200, 'Hacked Symbio-Graft: Basic Defensive Screen', 11648), (94086, 128210, 30, 200, 'Hacked Symbio-Graft: Basic Protective Field', 11648), (94088, 128214, 24, 200, 'Hacked Symbio-Graft: Basic Shielding Barrier', 11648), (88972, 127322, 12, 200, 'Hacked Symbio-Graft: BioMet Expertise', 11647), (88989, 127326, 13, 200, 'Hacked Symbio-Graft: BioMet Incompetence', 11647), (89005, 127330, 6, 200, 'Hacked Symbio-Graft: BioMet Inexperience', 11652), (89021, 127334, 5, 200, 'Hacked Symbio-Graft: BioMet Proficiency', 11652), (94065, 128078, 23, 200, 'Hacked Symbio-Graft: Blood Circle', 11648), (89039, 127338, 5, 200, 'Hacked Symbio-Graft: Bot Mass Migration', 11652), (89057, 127342, 3, 200, 'Hacked Symbio-Graft: Bot Migration', 11652), (89074, 127346, 12, 200, 'Hacked Symbio-Graft: Bow Expertise', 11647), (89091, 127350, 13, 200, 'Hacked Symbio-Graft: Bow Incompetence', 11647), (89109, 127354, 6, 200, 'Hacked Symbio-Graft: Bow Inexperience', 11652), (89124, 127282, 5, 200, 'Hacked Symbio-Graft: Bow Proficiency', 11652), (89141, 127426, 13, 200, 'Hacked Symbio-Graft: Bow Special Attack Expertise', 11647), (89159, 127362, 14, 200, 'Hacked Symbio-Graft: Bow Special Attack Incompetence', 11647), (89177, 127366, 7, 200, 'Hacked Symbio-Graft: Bow Special Attack Inexperience', 11652), (89193, 127370, 6, 200, 'Hacked Symbio-Graft: Bow Special Attack Proficiency', 11652), (89208, 127374, 13, 200, 'Hacked Symbio-Graft: Brawl Expertise', 11647), (89226, 127378, 14, 200, 'Hacked Symbio-Graft: Brawl Incompetence', 11647), (89242, 127382, 7, 200, 'Hacked Symbio-Graft: Brawl Inexperience', 11652), (89259, 127386, 6, 200, 'Hacked Symbio-Graft: Brawl Proficiency', 11652), (89274, 127390, 12, 200, 'Hacked Symbio-Graft: Breaking and Entering Expertise', 11647), (89291, 127394, 5, 200, 'Hacked Symbio-Graft: Breaking and Entering Proficiency', 11652), (89308, 127398, 13, 200, 'Hacked Symbio-Graft: Burst Expertise', 11647), (89325, 127402, 14, 200, 'Hacked Symbio-Graft: Burst Incompetence', 11647), (89343, 127406, 7, 200, 'Hacked Symbio-Graft: Burst Inexperience', 11652), (89358, 127410, 6, 200, 'Hacked Symbio-Graft: Burst Proficiency', 11652), (89408, 127414, 12, 200, 'Hacked Symbio-Graft: Chemistry Expertise', 11647), (89426, 127418, 5, 200, 'Hacked Symbio-Graft: Chemistry Proficiency', 11652), (94034, 128150, 42, 200, 'Hacked Symbio-Graft: Cloak of Fire', 11649), (94067, 128130, 36, 200, 'Hacked Symbio-Graft: Company Policy', 11648), (89505, 127526, 12, 200, 'Hacked Symbio-Graft: Computer Literacy Expertise', 11647), (89522, 127434, 5, 200, 'Hacked Symbio-Graft: Computer Literacy Proficiency', 11652), (89537, 127438, 12, 200, 'Hacked Symbio-Graft: Concealment Expertise', 11647), (89554, 127442, 5, 200, 'Hacked Symbio-Graft: Concealment Proficiency', 11652), (94526, 128086, 46, 200, 'Hacked Symbio-Graft: Damage Amplifier', 11649), (94528, 128090, 7, 200, 'Hacked Symbio-Graft: Damage Multiplier', 11652), (94057, 128170, 3, 200, 'Hacked Symbio-Graft: Detain Suspect', 11652), (94122, 127446, 14, 200, 'Hacked Symbio-Graft: Dimach Incompetence', 11647), (94124, 127450, 7, 200, 'Hacked Symbio-Graft: Dimach Inexperience', 11652), (94126, 127454, 5, 200, 'Hacked Symbio-Graft: Diminish Agility', 11652), (94128, 127458, 5, 200, 'Hacked Symbio-Graft: Diminish Intelligence', 11652), (94130, 127462, 5, 200, 'Hacked Symbio-Graft: Diminish Psychic', 11652), (94132, 127466, 5, 200, 'Hacked Symbio-Graft: Diminish Sense', 11652), (94134, 127470, 5, 200, 'Hacked Symbio-Graft: Diminish Stamina', 11652), (94136, 127474, 5, 200, 'Hacked Symbio-Graft: Diminish Strength', 11652), (94138, 127478, 12, 200, 'Hacked Symbio-Graft: Disarm Traps Expertise', 11647), (94140, 127482, 5, 200, 'Hacked Symbio-Graft: Disarm Traps Proficiency', 11652), (94142, 127486, 9, 200, 'Hacked Symbio-Graft: Drain Agility', 11647), (94144, 127490, 9, 200, 'Hacked Symbio-Graft: Drain Intelligence', 11647), (94146, 127494, 9, 200, 'Hacked Symbio-Graft: Drain Psychic', 11647), (94148, 127498, 9, 200, 'Hacked Symbio-Graft: Drain Sense', 11647), (94150, 127502, 9, 200, 'Hacked Symbio-Graft: Drain Stamina', 11647), (94152, 127506, 9, 200, 'Hacked Symbio-Graft: Drain Strength', 11647), (94090, 128146, 20, 200, 'Hacked Symbio-Graft: Electrical Chastiser', 11647), (94154, 127510, 12, 200, 'Hacked Symbio-Graft: Electrical Engineering Expertise', 11647), (94156, 128074, 5, 200, 'Hacked Symbio-Graft: Electrical Engineering Proficiency', 11652), (94159, 127514, 12, 200, 'Hacked Symbio-Graft: Energy Melee Expertise', 11647), (94161, 127518, 5, 200, 'Hacked Symbio-Graft: Energy Melee Incompetence', 11652), (94164, 127522, 12, 200, 'Hacked Symbio-Graft: Energy Melee Inexperience', 11647), (94167, 127430, 5, 200, 'Hacked Symbio-Graft: Energy Melee Proficiency', 11652), (94092, 128102, 33, 200, 'Hacked Symbio-Graft: Energy Spike', 11648), (125879, 125880, 29, 200, 'Hacked Symbio-Graft: Enhanced Senses', 11648), (94187, 127550, 13, 200, 'Hacked Symbio-Graft: Fast Attack Expertise', 11647), (94191, 127554, 14, 200, 'Hacked Symbio-Graft: Fast Attack Incompetence', 11647), (94194, 127558, 7, 200, 'Hacked Symbio-Graft: Fast Attack Inexperience', 11652), (94196, 127562, 6, 200, 'Hacked Symbio-Graft: Fast Attack Proficiency', 11652), (94524, 128162, 12, 200, 'Hacked Symbio-Graft: Feet of Stone', 11647), (94199, 127566, 12, 200, 'Hacked Symbio-Graft: Field Quantum Physics Expertise', 11647), (94201, 127570, 5, 200, 'Hacked Symbio-Graft: Field Quantum Physics Proficiency', 11652), (94076, 128138, 24, 200, 'Hacked Symbio-Graft: Field of Sparks', 11648), (94209, 127574, 12, 200, 'Hacked Symbio-Graft: First Aid Expertise', 11647), (94212, 127578, 5, 200, 'Hacked Symbio-Graft: First Aid Proficiency', 11652), (94094, 128218, 18, 200, 'Hacked Symbio-Graft: Flawed Defensive Screen', 11647), (94096, 128234, 12, 200, 'Hacked Symbio-Graft: Flawed Protective Field', 11647), (94098, 128261, 8, 200, 'Hacked Symbio-Graft: Flawed Shielding Barrier', 11647), (94215, 127582, 13, 200, 'Hacked Symbio-Graft: Fling Shot Expertise', 11647), (94218, 127586, 14, 200, 'Hacked Symbio-Graft: Fling Shot Incompetence', 11647), (94221, 127590, 7, 200, 'Hacked Symbio-Graft: Fling Shot Inexperience', 11652), (94224, 127594, 6, 200, 'Hacked Symbio-Graft: Fling Shot Proficiency', 11652), (94036, 128158, 10, 200, 'Hacked Symbio-Graft: Frost With Snow', 11647), (94227, 127598, 13, 200, 'Hacked Symbio-Graft: Full Auto Expertise', 11647), (94230, 127602, 14, 200, 'Hacked Symbio-Graft: Full Auto Incompetence', 11647), (94233, 127606, 7, 200, 'Hacked Symbio-Graft: Full Auto Inexperience', 11652), (94236, 127610, 6, 200, 'Hacked Symbio-Graft: Full Auto Proficiency', 11652), (94078, 128094, 34, 200, 'Hacked Symbio-Graft: Glowing Retribution', 11648), (94100, 128276, 5, 200, 'Hacked Symbio-Graft: Greater Armor Megaboost', 11652), (94251, 127734, 12, 200, 'Hacked Symbio-Graft: Grenade Expertise', 11647), (94254, 127678, 13, 200, 'Hacked Symbio-Graft: Grenade Incompetence', 11647), (94256, 127674, 6, 200, 'Hacked Symbio-Graft: Grenade Inexperience', 11652), (94259, 127738, 5, 200, 'Hacked Symbio-Graft: Grenade Proficiency', 11652), (94102, 128106, 10, 200, 'Hacked Symbio-Graft: Gun Enhancement', 11647), (94118, 128324, 47, 200, 'Hacked Symbio-Graft: Hasty Augmentation Cloud', 11649), (94269, 127646, 5, 200, 'Hacked Symbio-Graft: Healing', 11652), (94522, 128336, 49, 200, 'Hacked Symbio-Graft: Healing Touch', 11649), (94239, 127614, 12, 200, 'Hacked Symbio-Graft: Heavy Weapons Expertise', 11647), (94242, 127618, 13, 200, 'Hacked Symbio-Graft: Heavy Weapons Incompetence', 11647), (94245, 127622, 6, 200, 'Hacked Symbio-Graft: Heavy Weapons Inexperience', 11652), (94248, 127626, 5, 200, 'Hacked Symbio-Graft: Heavy Weapons Proficiency', 11652), (94552, 128332, 30, 200, 'Hacked Symbio-Graft: Hired Hands', 11648), (94273, 127742, 7, 200, 'Hacked Symbio-Graft: Improve Health', 11652), (94068, 128082, 1, 200, 'Hacked Symbio-Graft: Improved Healing', 11652), (94276, 127746, 6, 200, 'Hacked Symbio-Graft: Intelligence Boost', 11652), (94038, 128154, 18, 200, 'Hacked Symbio-Graft: Jacket of Blades', 11647), (94175, 127534, 12, 200, 'Hacked Symbio-Graft: LR Energy Weapon Expertise', 11647), (94178, 127538, 13, 200, 'Hacked Symbio-Graft: LR Energy Weapon Incompetence', 11647), (94181, 127542, 6, 200, 'Hacked Symbio-Graft: LR Energy Weapon Inexp', 11652), (94185, 127546, 5, 200, 'Hacked Symbio-Graft: LR Energy Weapon Proficiency', 11652), (94070, 128122, 13, 200, 'Hacked Symbio-Graft: Lasting Heal', 11647), (94290, 127658, 6, 200, 'Hacked Symbio-Graft: Leaden Feet', 11652), (94530, 128300, 40, 200, 'Hacked Symbio-Graft: Lesser Absorption Shield', 11649), (94059, 128320, 9, 200, 'Hacked Symbio-Graft: Lesser Anatomy Lesson', 11647), (94532, 128304, 24, 200, 'Hacked Symbio-Graft: Lesser Combat Barrier', 11648), (94104, 128280, 54, 200, 'Hacked Symbio-Graft: Lesser Defensive Screen', 11650), (94534, 128194, 28, 200, 'Hacked Symbio-Graft: Lesser Deflection Shield', 11648), (94536, 128198, 37, 200, 'Hacked Symbio-Graft: Lesser Deflection Shield (Extended)', 11648), (94120, 128328, 11, 200, 'Hacked Symbio-Graft: Lesser Nano Boost', 11647), (94061, 128166, 35, 200, 'Hacked Symbio-Graft: Lesser Paralyze with Indecision', 11648), (128352, 128352, 200, 200, 'Hacked Symbio-Graft: Lesser Playful Cub', 11649), (94106, 128284, 48, 200, 'Hacked Symbio-Graft: Lesser Protective Field', 11649), (94108, 128142, 36, 200, 'Hacked Symbio-Graft: Lesser Retaliatory Barrier', 11648), (94110, 128202, 42, 200, 'Hacked Symbio-Graft: Lesser Shielding Barrier', 11649), (94049, 128344, 3, 200, 'Hacked Symbio-Graft: Lesser Sparrow Flight', 11652), (94040, 128292, 22, 200, 'Hacked Symbio-Graft: Lesser Wilderness Protection', 11647), (94294, 127662, 6, 200, 'Hacked Symbio-Graft: Lethargy', 11652), (94309, 127774, 12, 200, 'Hacked Symbio-Graft: Martial Arts Expertise', 11647), (94311, 127778, 13, 200, 'Hacked Symbio-Graft: Martial Arts Incompetence', 11647), (94313, 127782, 6, 200, 'Hacked Symbio-Graft: Martial Arts Inexperience', 11652), (94316, 127786, 5, 200, 'Hacked Symbio-Graft: Martial Arts Proficiency', 11652), (94319, 127790, 12, 200, 'Hacked Symbio-Graft: MatCrea Expertise', 11647), (94322, 127794, 13, 200, 'Hacked Symbio-Graft: MatCrea Incompetence', 11647), (94325, 127798, 6, 200, 'Hacked Symbio-Graft: MatCrea Inexperience', 11652), (94328, 127802, 5, 200, 'Hacked Symbio-Graft: MatCrea Proficiency', 11652), (94343, 127822, 12, 200, 'Hacked Symbio-Graft: MatMet Expertise', 11647), (94346, 127826, 13, 200, 'Hacked Symbio-Graft: MatMet Incompetence', 11647), (94349, 127830, 6, 200, 'Hacked Symbio-Graft: MatMet Inexperience', 11652), (94351, 127834, 5, 200, 'Hacked Symbio-Graft: MatMet Proficiency', 11652), (94354, 127838, 12, 200, 'Hacked Symbio-Graft: Mechanical Engineering Expertise', 11647), (94356, 127842, 5, 200, 'Hacked Symbio-Graft: Mechanical Engineering Proficiency', 11652), (94538, 128308, 14, 200, 'Hacked Symbio-Graft: Minor Absorption Shield', 11647), (94540, 128312, 6, 200, 'Hacked Symbio-Graft: Minor Combat Barrier', 11652), (94542, 128190, 16, 200, 'Hacked Symbio-Graft: Minor Deflection Shield', 11647), (94544, 128186, 21, 200, 'Hacked Symbio-Graft: Minor Deflection Shield (Extended)', 11647), (94362, 127642, 2, 200, 'Hacked Symbio-Graft: Minor Healing', 11652), (94042, 128296, 4, 200, 'Hacked Symbio-Graft: Minor Wilderness Protection', 11652), (94063, 128316, 23, 200, 'Hacked Symbio-Graft: Nano Augmentation', 11648), (94366, 127846, 12, 200, 'Hacked Symbio-Graft: Nano Programming Expertise', 11647), (94368, 127850, 5, 200, 'Hacked Symbio-Graft: Nano Programming Proficiency', 11652), (94372, 127854, 9, 200, 'Hacked Symbio-Graft: Nano Restoration', 11647), (94376, 127858, 13, 200, 'Hacked Symbio-Graft: Parry Expertise', 11647), (94378, 127862, 14, 200, 'Hacked Symbio-Graft: Parry Incompetence', 11647), (94380, 127866, 7, 200, 'Hacked Symbio-Graft: Parry Inexperience', 11652), (94382, 127870, 6, 200, 'Hacked Symbio-Graft: Parry Proficiency', 11652), (94546, 128182, 3, 200, 'Hacked Symbio-Graft: Partial Deflection Shield', 11652), (94548, 128178, 9, 200, 'Hacked Symbio-Graft: Partial Deflection Shield (Extended)', 11647), (94112, 128174, 27, 200, 'Hacked Symbio-Graft: Partial Harmonic Cocoon', 11648), (94072, 128126, 26, 200, 'Hacked Symbio-Graft: Periodic Checkup', 11648), (94384, 127874, 12, 200, 'Hacked Symbio-Graft: Pharmaceutical Expertise', 11647), (94386, 127878, 5, 200, 'Hacked Symbio-Graft: Pharmaceutical Proficiency', 11652), (94388, 127630, 12, 200, 'Hacked Symbio-Graft: Piercing Expert', 11647), (94390, 127634, 13, 200, 'Hacked Symbio-Graft: Piercing Incompetence', 11647), (94392, 127638, 6, 200, 'Hacked Symbio-Graft: Piercing Inexperience', 11652), (94394, 127530, 5, 200, 'Hacked Symbio-Graft: Piercing Proficiency', 11652), (94396, 127882, 12, 200, 'Hacked Symbio-Graft: Pistol Expertise', 11647), (94398, 127886, 13, 200, 'Hacked Symbio-Graft: Pistol Incompetence', 11647), (94400, 127890, 6, 200, 'Hacked Symbio-Graft: Pistol Inexperience', 11652), (94402, 127730, 5, 200, 'Hacked Symbio-Graft: Pistol Proficiency', 11652), (94044, 94044, 48, 48, 'Hacked Symbio-Graft: Playful Cub', 11649), (94418, 127906, 12, 200, 'Hacked Symbio-Graft: PsyMod Expertise', 11647), (94420, 127910, 13, 200, 'Hacked Symbio-Graft: PsyMod Incompetence', 11647), (94422, 127914, 6, 200, 'Hacked Symbio-Graft: PsyMod Inexperience', 11652), (94424, 127918, 5, 200, 'Hacked Symbio-Graft: PsyMod Proficiency', 11652), (94412, 127894, 6, 200, 'Hacked Symbio-Graft: Psychic Boost', 11652), (94414, 127898, 12, 200, 'Hacked Symbio-Graft: Psychology Expertise', 11647), (94416, 127902, 5, 200, 'Hacked Symbio-Graft: Psychology Proficiency', 11652), (94045, 127650, 1, 200, 'Hacked Symbio-Graft: Quick Heal', 11652), (94426, 127922, 20, 200, 'Hacked Symbio-Graft: Quickness', 11647), (94428, 127926, 3, 200, 'Hacked Symbio-Graft: Radiation Shield', 11652), (94430, 127930, 8, 200, 'Hacked Symbio-Graft: Radiation Ward', 11647), (94432, 127934, 12, 200, 'Hacked Symbio-Graft: Regeneration', 11647), (94434, 127938, 12, 200, 'Hacked Symbio-Graft: Rifle Expertise', 11647), (94436, 127942, 13, 200, 'Hacked Symbio-Graft: Rifle Incompetence', 11647), (94438, 127946, 6, 200, 'Hacked Symbio-Graft: Rifle Inexperience', 11652), (94440, 127950, 5, 200, 'Hacked Symbio-Graft: Rifle Proficiency', 11652), (94442, 127954, 13, 200, 'Hacked Symbio-Graft: Riposte Expertise', 11647), (94444, 127958, 14, 200, 'Hacked Symbio-Graft: Riposte Incompetence', 11647), (94446, 127962, 7, 200, 'Hacked Symbio-Graft: Riposte Inexperience', 11652), (94448, 127966, 6, 200, 'Hacked Symbio-Graft: Riposte Proficiency', 11652), (94047, 128340, 8, 200, 'Hacked Symbio-Graft: Rough Stitching', 11647), (94450, 127970, 6, 200, 'Hacked Symbio-Graft: Sense Boost', 11652), (94452, 127974, 12, 200, 'Hacked Symbio-Graft: Sense Imp Expertise', 11647), (94454, 127978, 13, 200, 'Hacked Symbio-Graft: Sense Imp Incomp', 11647), (94456, 127982, 6, 200, 'Hacked Symbio-Graft: Sense Imp Inexperience', 11652), (94458, 127986, 5, 200, 'Hacked Symbio-Graft: Sense Imp Proficiency', 11652), (94460, 127990, 12, 200, 'Hacked Symbio-Graft: Shotgun Expertise', 11647), (94462, 127994, 13, 200, 'Hacked Symbio-Graft: Shotgun Incompetence', 11647), (94464, 127998, 6, 200, 'Hacked Symbio-Graft: Shotgun Inexperience', 11652), (94466, 128002, 5, 200, 'Hacked Symbio-Graft: Shotgun Proficiency', 11652), (94468, 128006, 13, 200, 'Hacked Symbio-Graft: Sneak Attack Expertise', 11647), (94470, 128010, 14, 200, 'Hacked Symbio-Graft: Sneak Attack Incompetence', 11647), (94472, 128014, 7, 200, 'Hacked Symbio-Graft: Sneak Attack Inexperience', 11652), (94474, 128018, 6, 200, 'Hacked Symbio-Graft: Sneak Attack Proficiency', 11652), (94331, 127806, 12, 200, 'Hacked Symbio-Graft: SpaceTime Expertise', 11647), (94334, 127810, 13, 200, 'Hacked Symbio-Graft: SpaceTime Incompetence', 11647), (94337, 127814, 6, 200, 'Hacked Symbio-Graft: SpaceTime Inexperience', 11652), (94340, 127818, 5, 200, 'Hacked Symbio-Graft: SpaceTime Proficiency', 11652), (94114, 128110, 51, 200, 'Hacked Symbio-Graft: Spike Armor', 11649), (94116, 128114, 6, 200, 'Hacked Symbio-Graft: Spike Shield', 11652), (94476, 128022, 6, 200, 'Hacked Symbio-Graft: Stamina Boost', 11652), (94478, 128026, 6, 200, 'Hacked Symbio-Graft: Strength Boost', 11652), (94297, 127758, 12, 200, 'Hacked Symbio-Graft: Submachine Gun Expertise', 11647), (94300, 127762, 13, 200, 'Hacked Symbio-Graft: Submachine Gun Incompetence', 11647), (94303, 127766, 6, 200, 'Hacked Symbio-Graft: Submachine Gun Inexperience', 11652), (94306, 127770, 5, 200, 'Hacked Symbio-Graft: Submachine Gun Proficiency', 11652), (94484, 128030, 5, 200, 'Hacked Symbio-Graft: Swiftness', 11652), (94053, 127654, 5, 200, 'Hacked Symbio-Graft: Team Quick Heal', 11652), (94278, 127750, 12, 200, 'Hacked Symbio-Graft: Throwing Knife Expertise', 11647), (94281, 127670, 13, 200, 'Hacked Symbio-Graft: Throwing Knife Incompetence', 11647), (94283, 127666, 6, 200, 'Hacked Symbio-Graft: Throwing Knife Inexperience', 11652), (94286, 127754, 5, 200, 'Hacked Symbio-Graft: Throwing Knife Proficiency', 11652), (94490, 128042, 12, 200, 'Hacked Symbio-Graft: Treatment Expertise', 11647), (94492, 128046, 5, 200, 'Hacked Symbio-Graft: Treatment Proficiency', 11652), (94494, 128050, 12, 200, 'Hacked Symbio-Graft: Tutoring Expertise', 11647), (94496, 128054, 5, 200, 'Hacked Symbio-Graft: Tutoring Proficiency', 11652), (94514, 128058, 8, 200, 'Hacked Symbio-Graft: Weapon Augmentation', 11647), (94516, 128062, 17, 200, 'Hacked Symbio-Graft: Weapon Enhancement', 11647), (94518, 128066, 12, 200, 'Hacked Symbio-Graft: Weapon Smithing Expertise', 11647), (94520, 128070, 5, 200, 'Hacked Symbio-Graft: Weapon Smithing Proficiency', 11652), (94055, 128288, 46, 200, 'Hacked Symbio-Graft: Wilderness Protection', 11649), (295756, 295756, 1, 1, 'Hacked Technical Library', 130561), (248180, 248180, 1, 1, 'Hacked Vanguard Node 19 Access Card', 43114), (254383, 254383, 1, 1, 'Hacker Club Affiliate Card', 149944), (162830, 162830, 1, 1, 'Hacker Club Member Chip', 43117), (257968, 257968, 1, 1, 'Hacker ICE-Breaker Source', 257196), (87810, 87810, 1, 1, 'Hacker Tool', 99282), (281231, 281231, 1, 1, 'Hacker''s Cut Gem', 281223), (281215, 281215, 1, 1, 'Hacker''s Gem', 281224), (281201, 281201, 1, 1, 'Hacker''s Signet of The Apocalypse', 281195), (200207, 200207, 245, 245, 'Hades ICC Armor Boots', 22884), (200228, 200228, 245, 245, 'Hades ICC Armor Gloves', 31656), (200249, 200249, 245, 245, 'Hades ICC Armor Helmet', 31734), (200270, 200270, 245, 245, 'Hades ICC Armor Pants', 22919), (200291, 200291, 245, 245, 'Hades ICC Armor Sleeves', 31644), (200312, 200312, 245, 245, 'Hades ICC Body Armor', 31648), (263886, 263886, 1, 1, 'Hadron Recording Device', 263891), (288720, 257119, 250, 300, 'Hadrulf''s Viral Belt Component Platform', 246126), (239315, 239315, 1, 1, 'Hai-Tempterus - Gflow', 130862), (246928, 246928, 1, 1, 'Hair Care Contraption', 130669), (253497, 253497, 1, 1, 'Haitte Candelabra', 255915), (253461, 253461, 1, 1, 'Haitte Cocktail Glass Sculpture', 255935), (253459, 253459, 1, 1, 'Haitte Coffee Pot Sculpture', 255933), (253460, 253460, 1, 1, 'Haitte Dinner Plate Sculpture', 255934), (253458, 253458, 1, 1, 'Haitte Fine Coffee Sculpture', 255932), (253464, 253464, 1, 1, 'Haitte Fine Mug Sculpture', 255938), (253475, 253475, 1, 1, 'Haitte Round Table', 255955), (253476, 253476, 1, 1, 'Haitte Stool', 255968), (257384, 257384, 300, 300, 'Haitte''s Combined Sharpshooter''s Headwear', 256305), (296141, 296141, 1, 1, 'Hakkysakk''s T-shirt', 296154), (296143, 296143, 1, 1, 'Hakkysakk''s T-shirt Spawner', 296154), (225505, 225505, 1, 1, 'Hale and Hearty', 239233), (223575, 223576, 1, 400, 'Half Digested Human Arms', 286198), (223570, 223571, 1, 400, 'Half Digested Human Hands and Wrists', 286197), (223568, 223569, 1, 300, 'Half Digested Human Head', 286196), (223572, 223573, 1, 300, 'Half Digested Human Legs and Feet', 286191), (223566, 223567, 1, 300, 'Half Digested Human Torso', 286190), (121603, 121604, 139, 161, 'Half Moon Edge', 13343), (296188, 296188, 1, 1, 'Half-Eaten Birthday Cake Mr. Squeaky', 281754), (246876, 246876, 250, 250, 'Half-Finished Hand-Mortar of Bacam-Xum', 130705), (246400, 246401, 50, 200, 'Half-Finished Perennium Beamer', 45783), (246429, 246430, 50, 200, 'Half-Finished Perennium Blaster', 45783), (246402, 246403, 50, 200, 'Half-Finished Perennium Sniper', 45782), (227042, 227043, 1, 300, 'Half-Permanent Chunk of Notum', 151028), (41053, 41053, 1, 1, 'Half-top with a Grey Waterlily Print', 41189), (41052, 41052, 1, 1, 'Half-top with a Waterlily Print', 37144), (293357, 293357, 1, 1, 'Halloween Candy Bag: Full Moon', 293812), (293356, 293356, 1, 1, 'Halloween Candy Bag: Pumpkinhead', 293813), (293358, 293358, 1, 1, 'Halloween Candy Bag: Skull and Bones', 293811), (293582, 293582, 1, 1, 'Halloween Groove Suit - Blue', 293589), (292845, 292845, 1, 1, 'Halloween Groove Suit - Orange', 292847), (273034, 273034, 1, 1, 'Halloween Pitchfork', 273047), (258812, 258812, 1, 1, 'Halo', 259029), (227493, 227493, 1, 1, 'Hammer and Anvil', 239049), (227494, 227494, 1, 1, 'Hammer and Anvil', 154367), (227495, 227495, 1, 1, 'Hammer and Anvil', 154367), (227496, 227496, 1, 1, 'Hammer and Anvil', 154367), (227497, 227497, 1, 1, 'Hammer and Anvil', 154367), (227498, 227498, 1, 1, 'Hammer and Anvil', 154367), (163700, 163701, 1, 200, 'Hammered Gold Ring', 151927), (271119, 271120, 1, 300, 'Hand Axe - 000', 13345), (271121, 271122, 1, 300, 'Hand Axe - 010', 13345), (271123, 271124, 1, 300, 'Hand Axe - 050', 13345), (271125, 271126, 1, 300, 'Hand Axe - 070', 13345), (271127, 271128, 1, 300, 'Hand Axe - 870', 13345), (208089, 208089, 150, 150, 'Hand Crafted Unionist Arbalest', 114013), (154817, 154817, 200, 200, 'Hand Made Duke Lugger SMP', 33156), (302602, 302602, 1, 1, 'Hand Staff of Naja', 154366), (223991, 223992, 80, 120, 'Hand Tattoo''s of Eric Miller', 226644), (223979, 223980, 80, 120, 'Hand Tattoo''s of Min-Li Jiu', 226652), (121588, 121589, 185, 199, 'Hand-Made Thri-Blade', 13344), (165101, 165101, 1, 1, 'Hand-Made Thri-Blade Construction Manual', 136329), (163591, 163591, 200, 200, 'Handle and Barrel of an Old Pistol', 113988), (163590, 163590, 200, 200, 'Handle of an Old Pistol', 130767), (227174, 227175, 1, 15, 'Handle-Shaped Gofle Toe Bone', 130862), (160433, 160434, 1, 200, 'Hands of the Servants of Eight', 21872), (160417, 160418, 1, 200, 'Handy Steelribbed Gloves', 22932), (295480, 295480, 1, 1, 'Hangar Sentry Pet Item', 11646), (259944, 259944, 1, 1, 'Hanging Mistletoe', 259948), (265384, 265384, 1, 1, 'Hanging Pumpkin Lanterns', 265382), (163837, 163838, 1, 24, 'Hansen Personal Ore Extractor', 149947), (163838, 163839, 25, 49, 'Hansen Personal Ore Extractor', 149947), (163839, 163840, 50, 74, 'Hansen Personal Ore Extractor', 149947), (163840, 163841, 75, 99, 'Hansen Personal Ore Extractor', 149947), (163841, 163842, 100, 124, 'Hansen Personal Ore Extractor', 149947), (163842, 163843, 125, 255, 'Hansen Personal Ore Extractor', 149947), (142645, 142645, 200, 200, 'Hanshi Primus Decus Armor Boots', 13275), (142649, 142649, 200, 200, 'Hanshi Primus Decus Armor Coat', 96107), (142643, 142643, 200, 200, 'Hanshi Primus Decus Armor Gloves', 13287), (142642, 142642, 200, 200, 'Hanshi Primus Decus Armor Helmet', 96143), (142640, 142640, 200, 200, 'Hanshi Primus Decus Armor Pants', 161025), (142651, 142651, 200, 200, 'Hanshi Primus Decus Armor Sleeves', 13237), (142647, 142647, 200, 200, 'Hanshi Primus Decus Body Armor', 13258), (142671, 142671, 200, 200, 'Hanshi Secundus Decus Armor Boots', 13275), (142675, 142675, 200, 200, 'Hanshi Secundus Decus Armor Coat', 96108), (142669, 142669, 200, 200, 'Hanshi Secundus Decus Armor Gloves', 13287), (142668, 142668, 200, 200, 'Hanshi Secundus Decus Armor Helmet', 96141), (142666, 142666, 200, 200, 'Hanshi Secundus Decus Armor Pants', 161024), (142677, 142677, 200, 200, 'Hanshi Secundus Decus Armor Sleeves', 13237), (142673, 142673, 200, 200, 'Hanshi Secundus Decus Body Armor', 13258), (142659, 142659, 200, 200, 'Hanshi Tertius Decus Armor Boots', 13275), (142663, 142663, 200, 200, 'Hanshi Tertius Decus Armor Coat', 96106), (142657, 142657, 200, 200, 'Hanshi Tertius Decus Armor Gloves', 13287), (142656, 142656, 200, 200, 'Hanshi Tertius Decus Armor Helmet', 96140), (142654, 142654, 200, 200, 'Hanshi Tertius Decus Armor Pants', 161026), (142664, 142664, 200, 200, 'Hanshi Tertius Decus Armor Sleeves', 13237), (142661, 142661, 200, 200, 'Hanshi Tertius Decus Body Armor', 13258), (287304, 287304, 1, 1, 'Happy Birthday Shirt', 287306), (297149, 297149, 1, 1, 'Happy Cloak of the Vox Populi', 297150), (277390, 277390, 1, 1, 'Happy Panda Mask', 277475), (294036, 294036, 1, 1, 'Happy Snowman Mask', 294399), (211250, 211250, 300, 300, 'Hard Core Poker', 131265), (211235, 211235, 300, 300, 'Hard Flabbergaster', 113986), (288640, 288640, 1, 1, 'Hard Target Shirt - Atlantean Edition', 288639), (288697, 288697, 1, 1, 'Hard Target Shirt - Blanks', 288639), (288641, 288641, 1, 1, 'Hard Target Shirt - Rimor Edition', 288639), (95513, 95513, 200, 200, 'Hardcore CPU Upgrade', 119138), (305031, 305031, 250, 250, 'Hardened Construction Sleeves', 13221), (296386, 296386, 1, 1, 'Hardened Ray Orb', 152424), (304821, 304821, 1, 1, 'Hardened Santa Hat', 206000), (156261, 156262, 1, 200, 'Harmless Kamikaze Robot', 156096), (227151, 227151, 1, 1, 'Harmonize Body and Mind', 239151), (199540, 199540, 275, 275, 'Hassium Periodic Tech Armor Boots', 22886), (199561, 199561, 275, 275, 'Hassium Periodic Tech Armor Gloves', 22933), (199582, 199582, 275, 275, 'Hassium Periodic Tech Armor Helmet', 31731), (199604, 199604, 275, 275, 'Hassium Periodic Tech Armor Pants', 22912), (199625, 199625, 275, 275, 'Hassium Periodic Tech Armor Sleeves', 22911), (199646, 199646, 275, 275, 'Hassium Periodic Tech Body Armor', 22990), (199667, 199667, 275, 275, 'Hassium Periodic Tech Female Body Armor', 22909), (295313, 295313, 1, 1, 'Hastily Scribbled Shopping List', 154677), (227158, 227159, 1, 500, 'Hatred', 239045), (227160, 227161, 1, 500, 'Hatred', 239045), (227162, 227163, 1, 500, 'Hatred', 239045), (230789, 230789, 1, 1, 'Hatred of the Golem', 130862), (280718, 280718, 300, 300, 'Hatred of the Xan', 280922), (267784, 267785, 1, 300, 'Haunting aura of the Sickly Sister', 37931), (271239, 271240, 1, 300, 'Haxor 9922 - 000', 13339), (271241, 271242, 1, 300, 'Haxor 9922 - 010', 13339), (271243, 271244, 1, 300, 'Haxor 9922 - 050', 13339), (271245, 271246, 1, 300, 'Haxor 9922 - 070', 13339), (271247, 271248, 1, 300, 'Haxor 9922 - 870', 13339), (160283, 160284, 101, 150, 'Hazangerine Badger Claw', 13344), (160287, 160287, 200, 200, 'Hazangerine Bear Claw', 13344), (160279, 160280, 1, 50, 'Hazangerine Rat Claw', 13344), (160285, 160286, 151, 199, 'Hazangerine Tiger Claw', 13344), (160281, 160282, 51, 100, 'Hazangerine Weasel Claw', 13344), (157406, 157406, 1, 1, 'Head One Eagle Advantage', 81775), (160730, 160731, 1, 199, 'Head Skinchip - Energy Protection', 160724), (160736, 160737, 1, 199, 'Head Skinchip - ICC Engineer', 160726), (160734, 160735, 1, 199, 'Head Skinchip - Liquid Protection', 160725), (160728, 160729, 1, 199, 'Head Skinchip - Physical Protection', 160721), (160732, 160733, 1, 199, 'Head Skinchip - Temperature Modification', 160722), (245895, 245895, 250, 250, 'Head Symbiant of the Love Child', 215189), (214878, 214878, 1, 1, 'Head of Devoted Ocra Cama-Jha', 227272), (214869, 214869, 1, 1, 'Head of Follower Dom-Thrak Roch', 227271), (202272, 202272, 1, 1, 'Head of General Kaehler', 203522), (203275, 203275, 1, 1, 'Head of High Commander Frederickson', 203522), (226012, 226013, 1, 300, 'Head of an Immortal', 203522), (160437, 160438, 1, 200, 'Head of the Servants of Eight', 96143), (245677, 245677, 150, 150, 'Headband of Haste', 151921), (227809, 227810, 1, 500, 'Headbutt', 239259), (227811, 227812, 1, 500, 'Headbutt', 239259), (227813, 227814, 1, 500, 'Headbutt', 239259), (166241, 166242, 1, 200, 'Heal Delta Jobe Cluster - Bright (Feet)', 36017), (166251, 166251, 201, 201, 'Heal Delta Jobe Cluster - Faded (Feet)', 211113), (166237, 166238, 1, 200, 'Heal Delta Jobe Cluster - Faded (Leg)', 36016), (166245, 166246, 1, 200, 'Heal Delta Jobe Cluster - Shiny (Left-Arm)', 36018), (166243, 166244, 201, 300, 'Heal Delta Refined Jobe Cluster - Bright (Feet)', 36017), (166239, 166240, 201, 300, 'Heal Delta Refined Jobe Cluster - Faded (Leg)', 36016), (166247, 166248, 201, 300, 'Heal Delta Refined Jobe Cluster - Shiny (Left-Arm)', 36018), (281228, 281228, 1, 1, 'Healer''s Cut Gem', 281223), (281212, 281212, 1, 1, 'Healer''s Gem', 281224), (281198, 281198, 1, 1, 'Healer''s Signet of The Apocalypse', 281195), (274665, 274665, 1, 1, 'Healer''s Spirit Vest', 274680), (157083, 157083, 40, 40, 'Healing Leet Wax', 156509), (260772, 260772, 205, 205, 'Healing Staff of Alcofribas Nasier', 154363), (297044, 297044, 1, 1, 'Health Regeneration Stim', 291002), (291004, 291005, 1, 199, 'Health and Nano Kit', 291002), (291005, 291006, 200, 400, 'Health and Nano Kit', 291002), (291076, 291077, 1, 199, 'Health and Nano Laboratory', 291001), (291077, 291078, 200, 400, 'Health and Nano Laboratory', 291001), (291082, 291083, 1, 99, 'Health and Nano Recharger', 291000), (292256, 292256, 1, 1, 'Health and Nano Recharger', 291000), (291083, 291084, 100, 199, 'Health and Nano Recharger', 291000), (291084, 293296, 200, 299, 'Health and Nano Recharger', 291000), (293296, 293297, 300, 400, 'Health and Nano Recharger', 291000), (291040, 291041, 1, 199, 'Health and Nano Spindle', 290998), (291041, 291042, 200, 400, 'Health and Nano Spindle', 290998), (291043, 291044, 1, 199, 'Health and Nano Stim', 292214), (291044, 291045, 200, 400, 'Health and Nano Stim', 292214), (157123, 157123, 40, 40, 'Healthy Malle Elixir', 156498), (301997, 301997, 1, 1, 'Heart Print Pajamas', 302023), (157377, 157377, 1, 1, 'Heart Six Raven Advantage', 81775), (263318, 263318, 1, 1, 'Heart of Jumeaux', 144702), (158787, 158787, 1, 1, 'Heart of Tarasque', 12701), (294744, 294744, 1, 1, 'Heart-Shaped Shades', 295037), (295044, 295044, 1, 1, 'Heart-Shaped Shades - Without Lenses', 295262), (224713, 224713, 80, 80, 'Heartsick Brain Spirit of Offence', 230992), (224733, 224733, 80, 80, 'Heartsick Essence Brain Spirit', 230992), (224940, 224940, 80, 80, 'Heartsick Heart Spirit of Essence', 230984), (225219, 225219, 80, 80, 'Heartsick Left Hand Spirit of Strength', 230994), (225021, 225021, 80, 80, 'Heartsick Left Limb Spirit of Strength', 230995), (225001, 225001, 80, 80, 'Heartsick Left Limb Spirit of Weakness', 230995), (224851, 224851, 80, 80, 'Heartsick Midriff Spirit of Essence', 230976), (224869, 224869, 80, 80, 'Heartsick Midriff Spirit of Knowledge', 230976), (225143, 225143, 80, 80, 'Heartsick Right Hand Defencive Spirit', 231002), (224802, 224802, 80, 80, 'Heartsick Right Limb Spirit of Strength', 231004), (224818, 224818, 80, 80, 'Heartsick Right Limb Spirit of Weakness', 231004), (224698, 224698, 80, 80, 'Heartsick Spirit of Clear Thought', 230992), (225177, 225177, 80, 80, 'Heartsick Spirit of Defense', 230998), (224665, 224665, 80, 80, 'Heartsick Spirit of Discerning Weakness', 230988), (224682, 224682, 80, 80, 'Heartsick Spirit of Essence', 230998), (225252, 225252, 80, 80, 'Heartsick Spirit of Feet Defense', 230990), (225159, 225159, 80, 80, 'Heartsick Spirit of Insight - Right Hand', 231002), (224750, 224750, 80, 80, 'Heartsick Spirit of Knowledge Whispered', 230986), (225091, 225091, 80, 80, 'Heartsick Spirit of Left Wrist Defense', 231000), (225109, 225109, 80, 80, 'Heartsick Spirit of Left Wrist Strength', 231000), (225058, 225058, 80, 80, 'Heartsick Spirit of Right Wrist Offence', 231006), (224766, 224766, 80, 80, 'Heartsick Spirit of Strength Whispered', 230986), (224650, 224650, 80, 80, 'Heartsick Spirit of True Seeing', 230988), (254423, 254423, 1, 1, 'Hearty Meal', 37979), (275212, 275212, 1, 1, 'Heat-Resistant Bodysuit', 275213), (249647, 249647, 100, 100, 'Heated Energy Core', 20405), (230899, 230899, 50, 50, 'Heating Device', 13349), (158800, 158800, 1, 1, 'Heavily Padded Overcoat', 18849), (246926, 246926, 1, 1, 'Heavy Bio Mesh', 161085), (245659, 245659, 150, 150, 'Heavy Bracer', 84068), (245660, 245660, 150, 150, 'Heavy Bracer', 84068), (231118, 231119, 200, 249, 'Heavy Bronto Vet Lancet', 131263), (231120, 231121, 250, 299, 'Heavy Bronto Vet Lancet', 131263), (231122, 231122, 300, 300, 'Heavy Bronto Vet Lancet', 131263), (160228, 160229, 101, 150, 'Heavy Chop', 21143), (225762, 225763, 1, 300, 'Heavy Distance Weapons Guide', 205503), (155089, 155089, 200, 200, 'Heavy Galean Close Combat Body Armor', 155109), (155184, 155184, 200, 200, 'Heavy Galean Close Combat Boots', 155112), (155182, 155182, 200, 200, 'Heavy Galean Close Combat Gloves', 155110), (155091, 155091, 200, 200, 'Heavy Galean Close Combat Skirt', 155108), (155087, 155087, 200, 200, 'Heavy Galean Close Combat Sleeves', 155111), (123141, 123142, 87, 104, 'Heavy Gamma-Beamer', 33158), (121901, 121902, 81, 100, 'Heavy Grinner', 21147), (139141, 139141, 1, 1, 'Heavy Grinner Construction Manual', 37933), (211271, 211271, 300, 300, 'Heavy Impulse Rifle', 13314), (122680, 122681, 81, 100, 'Heavy Lead Sprayer', 21148), (272110, 272111, 1, 300, 'Heavy Lead Sprayer - 000', 21148), (272112, 272113, 1, 300, 'Heavy Lead Sprayer - 008', 21148), (272114, 272115, 1, 300, 'Heavy Lead Sprayer - 00C', 21148), (272116, 272117, 1, 300, 'Heavy Lead Sprayer - 40C', 21148), (272118, 272119, 1, 300, 'Heavy Lead Sprayer - C0C', 21148), (141433, 141433, 1, 1, 'Heavy Lead Sprayer Construction Manual', 37933), (165213, 165213, 200, 200, 'Heavy Notum Tank Armor', 22390), (225775, 225776, 1, 300, 'Heavy Ranged Weapons Guide', 205504), (211274, 211274, 300, 300, 'Heavy Shock of Truth', 21149), (130064, 130065, 31, 102, 'Heavy Staff', 136738), (160136, 160137, 21, 120, 'Heavy Suppressor', 31811), (265501, 265502, 1, 300, 'Heavy Vehicle Weapon', 13321), (265503, 265504, 1, 300, 'Heavy Vehicle Weapon - Upgrade', 13321), (101437, 101438, 1, 200, 'Heavy Weapons Cluster - Bright (Eye)', 35981), (101435, 101436, 1, 200, 'Heavy Weapons Cluster - Faded (Right-Hand)', 35980), (101439, 101440, 1, 200, 'Heavy Weapons Cluster - Shiny (Right-Arm)', 35982), (277917, 277918, 1, 300, 'Heavy Weapons Memory Cell', 276922), (165597, 165598, 201, 300, 'Heavy Weapons Refined Cluster - Bright (Eye)', 35981), (165595, 165596, 201, 300, 'Heavy Weapons Refined Cluster - Faded (Right-Hand)', 35980), (165599, 165600, 201, 300, 'Heavy Weapons Refined Cluster - Shiny (Right-Arm)', 35982), (278040, 278041, 1, 199, 'Heavy Weapons Skill NCU (1/6)', 276930), (278042, 278043, 200, 299, 'Heavy Weapons Skill NCU (1/6)', 276930), (278044, 278044, 300, 300, 'Heavy Weapons Skill NCU (1/6)', 276930), (278045, 278046, 1, 199, 'Heavy Weapons Skill NCU (2/6)', 276931), (278047, 278048, 200, 299, 'Heavy Weapons Skill NCU (2/6)', 276931), (278049, 278049, 300, 300, 'Heavy Weapons Skill NCU (2/6)', 276931), (278050, 278051, 1, 199, 'Heavy Weapons Skill NCU (3/6)', 276932), (278052, 278053, 200, 299, 'Heavy Weapons Skill NCU (3/6)', 276932), (278054, 278054, 300, 300, 'Heavy Weapons Skill NCU (3/6)', 276932), (278055, 278056, 1, 199, 'Heavy Weapons Skill NCU (4/6)', 276933), (278057, 278058, 200, 299, 'Heavy Weapons Skill NCU (4/6)', 276933), (278059, 278059, 300, 300, 'Heavy Weapons Skill NCU (4/6)', 276933), (278060, 278061, 1, 199, 'Heavy Weapons Skill NCU (5/6)', 276934), (278062, 278063, 200, 299, 'Heavy Weapons Skill NCU (5/6)', 276934), (278064, 278064, 300, 300, 'Heavy Weapons Skill NCU (5/6)', 276934), (278065, 278066, 1, 199, 'Heavy Weapons Skill NCU (6/6)', 276935), (278067, 278068, 200, 299, 'Heavy Weapons Skill NCU (6/6)', 276935), (278069, 278069, 300, 300, 'Heavy Weapons Skill NCU (6/6)', 276935), (159136, 159136, 200, 200, 'Heavy-Headed Hardwood Staff', 136738), (158885, 158886, 1, 20, 'Heavy-Headed Staff', 136738), (225651, 225652, 1, 500, 'Hecatomb', 239085), (225653, 225654, 1, 500, 'Hecatomb', 239085), (225655, 225656, 1, 500, 'Hecatomb', 239085), (293836, 293836, 1, 1, 'Heckler Juice - Level 100', 296383), (293837, 293837, 1, 1, 'Heckler Juice - Level 150', 296384), (293838, 293838, 1, 1, 'Heckler Juice - Level 200', 296385), (293835, 293835, 1, 1, 'Heckler Juice - Level 60', 296382), (303476, 303476, 1, 1, 'Heckler Juice Bundle', 20411), (290646, 290646, 1, 1, 'Heckler Pet (Heckler of Celebration)', 254462), (157407, 157407, 1, 1, 'Helium Fourtyfive Cow Advantage', 81779), (153977, 153977, 80, 80, 'Hellfury Assault Cannon', 154362), (154845, 154845, 1, 1, 'Hellfury shield', 84059), (267317, 267317, 300, 300, 'Hellfyre Magma Suit', 41162), (234907, 234907, 1, 1, 'Hellion Mirror', 227291), (234912, 234912, 1, 1, 'Hellion Trinity Talisman', 218749), (283747, 283747, 1, 1, 'Hellsoldier Signet', 283769), (153976, 153976, 84, 84, 'Hellspinner Shock Cannon', 154361), (165307, 165307, 200, 200, 'Helmet of Azure Reveries', 31734), (244716, 244716, 300, 300, 'Helmet of Hypocrisy', 245034), (165430, 165430, 200, 200, 'Helmet of Spiritual Rites', 22270), (165429, 165429, 200, 200, 'Helmet of Technical Ceremonies', 22270), (233418, 233418, 90, 90, 'Helmet of the Forest Hero', 10839), (276660, 276660, 1, 1, 'Hemmoraging Shot', 99276), (276661, 276661, 1, 1, 'Hemmoraging Shot', 99276), (276662, 276662, 1, 1, 'Hemmoraging Shot', 99276), (233105, 233105, 150, 150, 'Henderson''s Flower', 151033), (200208, 200208, 250, 250, 'Hephaistos ICC Armor Boots', 22884), (200229, 200229, 250, 250, 'Hephaistos ICC Armor Gloves', 31656), (200250, 200250, 250, 250, 'Hephaistos ICC Armor Helmet', 31734), (200271, 200271, 250, 250, 'Hephaistos ICC Armor Pants', 22919), (200292, 200292, 250, 250, 'Hephaistos ICC Armor Sleeves', 31644), (200313, 200313, 250, 250, 'Hephaistos ICC Body Armor', 31648), (303077, 303077, 1, 1, 'Her Outfit', 293523), (200209, 200209, 255, 255, 'Hera ICC Armor Boots', 22884), (200230, 200230, 255, 255, 'Hera ICC Armor Gloves', 31656), (200251, 200251, 255, 255, 'Hera ICC Armor Helmet', 31734), (200272, 200272, 255, 255, 'Hera ICC Armor Pants', 22919), (200293, 200293, 255, 255, 'Hera ICC Armor Sleeves', 31644), (200314, 200314, 255, 255, 'Hera ICC Body Armor', 31648), (200210, 200210, 260, 260, 'Heraldes ICC Armor Boots', 22884), (200231, 200231, 260, 260, 'Heraldes ICC Armor Gloves', 31656), (200252, 200252, 260, 260, 'Heraldes ICC Armor Helmet', 31734), (200273, 200273, 260, 260, 'Heraldes ICC Armor Pants', 22919), (200294, 200294, 260, 260, 'Heraldes ICC Armor Sleeves', 31644), (200315, 200315, 260, 260, 'Heraldes ICC Body Armor', 31648), (157257, 157257, 40, 40, 'Hercules'' Olympic Pills', 20184), (200211, 200211, 265, 265, 'Hermes ICC Armor Boots', 22884), (200232, 200232, 265, 265, 'Hermes ICC Armor Gloves', 31656), (200253, 200253, 265, 265, 'Hermes ICC Armor Helmet', 31734), (200274, 200274, 265, 265, 'Hermes ICC Armor Pants', 22919), (200295, 200295, 265, 265, 'Hermes ICC Armor Sleeves', 31644), (200316, 200316, 265, 265, 'Hermes ICC Body Armor', 31648), (244215, 244215, 300, 300, 'Heroes Discus', 131267), (248978, 248978, 1, 1, 'Heroic Body of Project EDEN', 255330), (248979, 248979, 1, 1, 'Heroic Boots of Project EDEN', 255369), (248980, 248980, 1, 1, 'Heroic Gloves of Project EDEN', 255172), (248981, 248981, 1, 1, 'Heroic Pants of Project EDEN', 255203), (248977, 248977, 1, 1, 'Heroic Sleeves of Project EDEN', 255275), (259877, 259877, 1, 1, 'Hiathlin Soulcatcher', 227245), (234882, 234882, 1, 1, 'Hiathlin''s Spine', 144706), (157824, 157825, 1, 199, 'Hidden Zenith Taichi', 113987), (203278, 203278, 1, 1, 'High Commander Frederickson''s head on a Silver Platter', 203552), (168418, 168418, 190, 190, 'High Commander of Tir Ring', 290365), (206193, 206193, 1, 1, 'High Exarch Robe', 159570), (205948, 205948, 1, 1, 'High Exarch Robe (monster wear)', 159570), (81755, 81755, 201, 201, 'High Level Clan Application Form', 81771), (81758, 81758, 201, 201, 'High Level Omni-Tek Application Form', 81773), (257128, 257128, 300, 300, 'High Lord of Angst', 245082), (164032, 164032, 200, 200, 'High Meibutsu Dai-Katana', 13326), (164017, 164017, 200, 200, 'High Meibutsu Daito of Aptitude', 113983), (164037, 164037, 200, 200, 'High Meibutsu Katana of Celerity', 13326), (164047, 164047, 200, 200, 'High Meibutsu Katana of Chance', 13326), (164042, 164042, 200, 200, 'High Meibutsu Katana of the Creep', 13326), (228373, 228373, 200, 200, 'High Novictum Katana of Innocence', 13326), (158967, 158967, 200, 200, 'High Quality Arwen MO-404 Grenade Launcher', 13322), (160190, 160191, 111, 199, 'High Quality FDA Caterwaul 913', 33155), (160232, 160232, 200, 200, 'High Quality Heavy Chop', 21143), (152336, 152337, 151, 199, 'High Quality MTI Aleph 99', 21148), (153910, 153910, 1, 1, 'High Quality MTI Aleph 99 Construction Manual', 136329), (162779, 162779, 200, 200, 'High Quality MTI Grey', 13317), (158962, 158962, 200, 200, 'High Quality Nova Flow - Mark I', 33144), (159023, 159023, 200, 200, 'High Quality Schuyler Bow', 85167), (25827, 25827, 250, 250, 'High Quality Silver Onyx', 286931), (160160, 160161, 141, 199, 'High Quality Sleek Cannon', 13342), (208087, 208088, 135, 149, 'High Quality Unionist Arbalest', 114013), (163997, 163997, 200, 200, 'High Tempered Meibutsu Daito', 113983), (303510, 303510, 1, 1, 'High-Frequency Katana', 303519), (100342, 100342, 154, 154, 'High-Grade Encryption Unit', 99234), (85653, 85653, 200, 200, 'High-Quality Bau Cyber Armor Boots', 22878), (85610, 85610, 200, 200, 'High-Quality Bau Cyber Armor Gloves', 22939), (85570, 85570, 200, 200, 'High-Quality Bau Cyber Armor Helmet', 31738), (85529, 85529, 200, 200, 'High-Quality Bau Cyber Armor Pants', 22928), (85758, 85758, 200, 200, 'High-Quality Bau Cyber Armor Sleeves', 22889), (85709, 85709, 200, 200, 'High-Quality Bau Cyber Body Armor', 22981), (85707, 85707, 200, 200, 'High-Quality Bau Cyber Female Body Armor', 22942), (22104, 22104, 200, 200, 'High-Quality Cyber Armor Boots', 13262), (22166, 22166, 200, 200, 'High-Quality Cyber Armor Gloves', 13276), (22219, 22219, 200, 200, 'High-Quality Cyber Armor Helmet', 22267), (22289, 22289, 200, 200, 'High-Quality Cyber Armor Pants', 13290), (21917, 21917, 200, 200, 'High-Quality Cyber Armor Sleeves', 13223), (22010, 22010, 200, 200, 'High-Quality Cyber Body Armor', 22089), (22014, 22014, 200, 200, 'High-Quality Cyber Female Body Armor', 13245), (88071, 88071, 200, 200, 'High-Quality Desert Battle Suit', 41165), (41402, 41402, 200, 200, 'High-Quality Heavy Omni-Tek Tank Armor', 41168), (28735, 28735, 200, 200, 'High-Quality Heavy Tank Armor', 22392), (41390, 41390, 200, 200, 'High-Quality Light Omni-Tek Tank Armor', 41170), (28736, 28736, 200, 200, 'High-Quality Light Tank Armor', 22396), (41395, 41395, 200, 200, 'High-Quality Medium Omni-Tek Tank Armor', 41167), (28734, 28734, 200, 200, 'High-Quality Medium Tank Armor', 22400), (85637, 85637, 200, 200, 'High-Quality Metaplast Armor Boots', 13268), (85595, 85595, 200, 200, 'High-Quality Metaplast Armor Gloves', 13281), (85556, 85556, 200, 200, 'High-Quality Metaplast Armor Helmet', 10833), (85511, 85511, 200, 200, 'High-Quality Metaplast Armor Pants', 13298), (85741, 85741, 200, 200, 'High-Quality Metaplast Armor Sleeves', 13230), (85685, 85685, 200, 200, 'High-Quality Metaplast Body Armor', 13251), (85618, 85618, 200, 200, 'High-Quality Nadir Steel-Ribbed Armor Boots', 22876), (85578, 85578, 200, 200, 'High-Quality Nadir Steel-Ribbed Armor Gloves', 22931), (85539, 85539, 200, 200, 'High-Quality Nadir Steel-Ribbed Armor Helmet', 31733), (85492, 85492, 200, 200, 'High-Quality Nadir Steel-Ribbed Armor Pants', 22914), (85722, 85722, 200, 200, 'High-Quality Nadir Steel-Ribbed Armor Sleeves', 22960), (85666, 85666, 200, 200, 'High-Quality Nadir Steel-Ribbed Body Armor', 22985), (124778, 124778, 180, 180, 'High-Quality OT ARL-10 Micromissile Launcher', 13311), (85616, 85616, 200, 200, 'High-Quality Obtru Steel-Ribbed Armor Boots', 22881), (85576, 85576, 200, 200, 'High-Quality Obtru Steel-Ribbed Armor Gloves', 22932), (85537, 85537, 200, 200, 'High-Quality Obtru Steel-Ribbed Armor Helmet', 31732), (85490, 85490, 200, 200, 'High-Quality Obtru Steel-Ribbed Armor Pants', 22913), (85720, 85720, 200, 200, 'High-Quality Obtru Steel-Ribbed Armor Sleeves', 22961), (85664, 85664, 200, 200, 'High-Quality Obtru Steel-Ribbed Body Armor', 22986), (124710, 124710, 200, 200, 'High-Quality Seburo C-19a', 21149), (22158, 22158, 200, 200, 'High-Quality Steel-Ribbed Armor Boots', 13274), (22212, 22212, 200, 200, 'High-Quality Steel-Ribbed Armor Gloves', 13286), (22262, 22262, 200, 200, 'High-Quality Steel-Ribbed Armor Helmet', 10843), (22347, 22347, 200, 200, 'High-Quality Steel-Ribbed Armor Pants', 13304), (21971, 21971, 200, 200, 'High-Quality Steel-Ribbed Armor Sleeves', 13236), (22080, 22080, 200, 200, 'High-Quality Steel-Ribbed Body Armor', 13257), (41398, 41398, 200, 200, 'High-Quality Very Light Omni-Tek Tank Armor', 41169), (28738, 28738, 200, 200, 'High-Quality Very Light Tank Armor', 22404), (85651, 85651, 200, 200, 'High-Quality Waitt Cyber Armor Boots', 22877), (85608, 85608, 200, 200, 'High-Quality Waitt Cyber Armor Gloves', 22940), (85568, 85568, 200, 200, 'High-Quality Waitt Cyber Armor Helmet', 31737), (85527, 85527, 200, 200, 'High-Quality Waitt Cyber Armor Pants', 22927), (85756, 85756, 200, 200, 'High-Quality Waitt Cyber Armor Sleeves', 22888), (85705, 85705, 200, 200, 'High-Quality Waitt Cyber Body Armor', 22982), (85703, 85703, 200, 200, 'High-Quality Waitt Cyber Female Body Armor', 22941), (292590, 292590, 1, 1, 'High-Tech Wen-Wen - Black', 291523), (292734, 292734, 1, 1, 'High-Tech Wen-Wen - Black', 291523), (292591, 292591, 1, 1, 'High-Tech Wen-Wen - Blue', 291524), (292735, 292735, 1, 1, 'High-Tech Wen-Wen - Blue', 291524), (292592, 292592, 1, 1, 'High-Tech Wen-Wen - Green', 291525), (292736, 292736, 1, 1, 'High-Tech Wen-Wen - Green', 291525), (292593, 292593, 1, 1, 'High-Tech Wen-Wen - Orange', 291526), (292737, 292737, 1, 1, 'High-Tech Wen-Wen - Orange', 291526), (292594, 292594, 1, 1, 'High-Tech Wen-Wen - Purple', 291527), (292738, 292738, 1, 1, 'High-Tech Wen-Wen - Purple', 291527), (292595, 292595, 1, 1, 'High-Tech Wen-Wen - Red', 291528), (292739, 292739, 1, 1, 'High-Tech Wen-Wen - Red', 291528), (292596, 292596, 1, 1, 'High-Tech Wen-Wen - White', 291529), (292740, 292740, 1, 1, 'High-Tech Wen-Wen - White', 291529), (292597, 292597, 1, 1, 'High-Tech Wen-Wen - Yellow', 291530), (292741, 292741, 1, 1, 'High-Tech Wen-Wen - Yellow', 291530), (263817, 263817, 1, 1, 'Highlands Spider Egg Sac', 37971), (155687, 155687, 1, 1, 'Highly plastic mother-circuit array', 156555), (251204, 251204, 1, 1, 'Highway', 255732), (301744, 301744, 1, 1, 'Hiisi Charmer Practice Blade', 301768), (303441, 303441, 1, 1, 'Hiisi Initiate Bundle', 99669), (302874, 302875, 1, 200, 'Hiisi Pupil Boots', 302960), (303471, 303472, 1, 200, 'Hiisi Pupil Boots', 302960), (302872, 302873, 1, 200, 'Hiisi Pupil Breastplate', 302961), (302868, 302881, 1, 200, 'Hiisi Pupil Gauntlets', 302962), (302870, 302871, 1, 200, 'Hiisi Pupil Greaves', 302964), (302882, 302882, 200, 200, 'Hiisi Pupil Helmet', 302963), (302867, 302880, 1, 200, 'Hiisi Pupil Vambrace', 302959), (302869, 302869, 1, 1, 'Hiisi Pupul Helmet', 302963), (301745, 301745, 1, 1, 'Hiisi Runner Practice Blade', 301769), (302878, 302879, 1, 200, 'Hiisi Shoulderplate of Anguish', 302966), (302876, 302877, 1, 200, 'Hiisi Shoulderplate of Torment', 302965), (301743, 301743, 1, 1, 'Hiisi Warrior Practice Blade', 204827), (281358, 281358, 1, 1, 'Hilda''s Diary', 281357), (211199, 211199, 300, 300, 'Hissing Derisory Blade', 114008), (285449, 285449, 1, 1, 'Historic Chunk of Notum', 72768), (130599, 130599, 1, 1, 'Hit-The-Floor-Jack', 37947), (277454, 277454, 1, 1, 'Hockey Mask', 277881), (258803, 258803, 1, 1, 'Hockey Stick', 259032), (231234, 231234, 1, 1, 'Hold Hell at Bay', 234505), (289567, 289567, 1, 1, 'Holiday Candelabra', 289562), (294034, 294034, 1, 1, 'Holiday Groove Suit - Green & Red', 294033), (259897, 259897, 1, 1, 'Holiday Hologram', 12250), (289588, 289588, 1, 1, 'Holiday Hologram Beam', 12253), (284716, 284716, 1, 1, 'Holiday Hologram Blast', 12253), (259939, 259939, 1, 1, 'Holiday Hologram Burst', 12253), (284715, 284715, 1, 1, 'Holiday Hologram Swirl', 12250), (284636, 284636, 1, 1, 'Holiday Nanospray - Snowflake', 284904), (284720, 284720, 1, 1, 'Holiday Nanospray - Snowflake', 284908), (284721, 284721, 1, 1, 'Holiday Nanospray - Snowflake', 284907), (284722, 284722, 1, 1, 'Holiday Nanospray - Snowflake', 284902), (284739, 284739, 1, 1, 'Holiday Nanospray - Snowflake', 284901), (284742, 284742, 1, 1, 'Holiday Nanospray - Snowflake', 284906), (284776, 284776, 1, 1, 'Holiday Nanospray - Snowflake', 284905), (284780, 284780, 1, 1, 'Holiday Nanospray - Snowflake', 284909), (284860, 284860, 1, 1, 'Holiday Nanospray - Special Snowflake', 284903), (158891, 158891, 1, 1, 'Hollow Bone Bracer of Merlin Ambrosius', 151917), (152783, 152783, 125, 125, 'Hollow Orange Torch', 37995), (289447, 289447, 1, 1, 'Holly Nanospray', 289535), (258538, 258538, 1, 1, 'Holo-Card Note', 258540), (258539, 258539, 1, 1, 'Holo-Card Note with Insignia', 258540), (160581, 160581, 1, 1, 'Hologram Barrel', 290704), (160597, 160597, 1, 1, 'Hologram Jokka Tree', 290699), (160584, 160584, 1, 1, 'Hologram Metal Crate', 290700), (160598, 160598, 1, 1, 'Hologram Mossy Rock', 290701), (160580, 160580, 20, 20, 'Hologram PD: Barrel', 290678), (160602, 160602, 20, 20, 'Hologram PD: Jokka Tree', 290679), (160600, 160600, 20, 20, 'Hologram PD: Metal Crate', 290680), (160603, 160603, 20, 20, 'Hologram PD: Mossy Rock', 290681), (160604, 160604, 20, 20, 'Hologram PD: Rock Block', 290682), (160601, 160601, 20, 20, 'Hologram PD: Wood Crate', 290683), (160583, 160583, 1, 1, 'Hologram Projector: Barrel', 290684), (160607, 160607, 1, 1, 'Hologram Projector: Jokka Tree', 290686), (160605, 160605, 1, 1, 'Hologram Projector: Metal Crate', 290687), (160608, 160608, 1, 1, 'Hologram Projector: Mossy Rock', 290688), (160609, 160609, 1, 1, 'Hologram Projector: Rock Block', 290689), (160606, 160606, 1, 1, 'Hologram Projector: Wood Crate', 290690), (160599, 160599, 1, 1, 'Hologram Rock Block', 290702), (160585, 160585, 1, 1, 'Hologram Wood Crate', 290703), (261606, 261606, 1, 1, 'Holographic Evidence', 157369), (261608, 261608, 1, 1, 'Holographic Evidence', 157369), (218740, 218740, 1, 1, 'Holographic Recording', 205493), (281356, 281356, 1, 1, 'Holy Book of the Goddess', 281355), (204765, 204765, 1, 1, 'Holy Book of the Immortal', 136329), (301638, 301638, 1, 1, 'Holy Shield', 245994), (271822, 271823, 1, 300, 'Home Defender - 000', 113989), (271826, 271827, 1, 300, 'Home Defender - 401', 113989), (271828, 271829, 1, 300, 'Home Defender - C01', 113989), (162833, 162833, 1, 1, 'Homegrown Crystal Wafers', 99230), (246839, 246840, 1, 300, 'Homing Permorpha Bullets', 26693), (275416, 275417, 1, 99, 'Honed Edge of Tarasque', 158280), (275418, 275419, 100, 199, 'Honed Edge of Tarasque', 158280), (275420, 275421, 200, 299, 'Honed Edge of Tarasque', 158280), (275422, 275422, 300, 300, 'Honed Edge of Tarasque', 158280), (226854, 226854, 1, 1, 'Honoring the Ancients', 239103), (245430, 245430, 150, 150, 'Hood of Black Waters', 23003), (305023, 305023, 220, 220, 'Hood of Cruel Intent', 23004), (246217, 246217, 100, 100, 'Hood of Wicked Inspiration', 23004), (208216, 208217, 100, 200, 'Hood of Yearning', 22999), (282120, 282120, 150, 150, 'Hood of the Goddess', 23003), (40996, 40996, 1, 1, 'Hood with Stars Print', 41157), (41000, 41000, 1, 1, 'Hood with a Blue Leopard Print', 23000), (40999, 40999, 1, 1, 'Hood with a Blue Zebra Print', 23000), (41022, 41022, 1, 1, 'Hood with a Grey Waterlily Print', 23000), (41002, 41002, 1, 1, 'Hood with a Leopard Print', 23000), (41205, 41205, 1, 1, 'Hood with a Rainbow Leopard Print', 23000), (40995, 40995, 1, 1, 'Hood with a Waterlily Print', 23000), (41001, 41001, 1, 1, 'Hood with a White Leopard Print', 23000), (40998, 40998, 1, 1, 'Hood with a Zebra Print', 23000), (215372, 215372, 1, 1, 'Hope', 239342), (286211, 286211, 200, 200, 'Hope-Infused Wax', 284331), (218347, 218347, 160, 160, 'Horned Black Glyph of Shere', 227630), (302978, 302978, 1, 1, 'Horns of Bane', 302970), (155742, 155742, 1, 1, 'Horrible Smelly Liquid', 100331), (296497, 296497, 1, 1, 'Horror Ghost Costume', 296505), (200440, 200440, 100, 100, 'Horse Brain Steak', 99289), (252461, 252461, 1, 1, 'Hostile Takeover', 239239), (130187, 130188, 84, 149, 'Hot Air Stick', 13349), (82107, 82107, 1, 1, 'Hot Boots', 81988), (82108, 82108, 1, 1, 'Hot Pants', 81984), (152433, 152434, 1, 199, 'Hot Ray Orb', 152424), (82109, 82109, 1, 1, 'Hot Shirt', 81994), (82110, 82110, 1, 1, 'Hot Sleeves', 81979), (136638, 136639, 1, 200, 'Hot Stone', 286929), (130617, 130617, 1, 1, 'Hot-Cup', 37929), (253744, 253744, 1, 1, 'Hothouse Boots', 253700), (253747, 253747, 1, 1, 'Hothouse Pants', 253720), (253746, 253746, 1, 1, 'Hothouse Shirt', 253678), (253745, 253745, 1, 1, 'Hothouse Sleeves', 253683), (200212, 200212, 270, 270, 'Hours ICC Armor Boots', 22884), (200233, 200233, 270, 270, 'Hours ICC Armor Gloves', 31656), (200254, 200254, 270, 270, 'Hours ICC Armor Helmet', 31734), (200275, 200275, 270, 270, 'Hours ICC Armor Pants', 22919), (200296, 200296, 270, 270, 'Hours ICC Armor Sleeves', 31644), (200317, 200317, 270, 270, 'Hours ICC Body Armor', 31648), (302999, 302999, 1, 1, 'House of the Black Star T-Shirt', 302998), (290968, 290968, 1, 1, 'Hovering Holiday Lantern - Shoulder', 284673), (284642, 284642, 1, 1, 'Hovering Holiday Lantern - Utils', 284673), (154450, 154450, 1, 1, 'How do I make Stims? A Quick Method', 37932), (246705, 246706, 100, 102, 'Howlet', 203230), (246707, 246707, 103, 103, 'Howlet', 203230), (246708, 246708, 104, 104, 'Howlet', 203230), (165059, 165059, 200, 200, 'Howling Bow of Ferocious Appetite', 165054), (204750, 204750, 1, 1, 'Howling Skull', 204742), (227188, 227189, 1, 15, 'Howling Soul Stone', 136594), (259811, 259811, 1, 1, 'Huge diamond on a stick', 259810), (246226, 246226, 100, 100, 'Human Skin Hood', 246228), (246709, 246709, 105, 105, 'Hungry Howlet', 203230), (293109, 293109, 1, 1, 'Hungry Shadowleet', 293104), (123708, 123709, 50, 69, 'Hurt OT Biomag', 38055), (303055, 303055, 100, 100, 'Huzzum''s Iron Fist', 85160), (259699, 259699, 1, 1, 'Hydnum Cerulean', 154189), (96092, 96093, 40, 200, 'Hydro Vehicle', 297484), (157408, 157408, 1, 1, 'Hydrogen Fourtysix Sheep Advantage', 81775), (137267, 137268, 1, 200, 'Hyper Carbo-Ceramic Cooling System', 130735), (142932, 142933, 1, 200, 'Hyper-Optimized Co-Weapon Interface', 130801), (231236, 231236, 1, 1, 'Hyper-Radiation Protection Skin and Glasses', 234536), (155743, 155743, 1, 1, 'Hyperactive Leet Powder', 99234), (275933, 275933, 1, 1, 'Hyperoxia Prevention Stim', 11707), (276960, 276960, 1, 1, 'Hyperoxia Prevention Stim', 11707), (163636, 163637, 1, 200, 'I am the Bear', 151923), (163632, 163633, 1, 200, 'I am the Eel', 151923), (163634, 163635, 1, 200, 'I am the Owl', 151923), (231161, 231161, 1, 1, 'I.P.I. League Diploma of Admissions', 163063), (231162, 231162, 1, 1, 'I.P.I. League Diploma of Graduation', 163063), (279371, 279371, 1, 1, 'ICC', 227904), (303192, 303192, 1, 1, 'ICC Arbitration Drone', 268686), (124136, 124137, 1, 29, 'ICC Arms 2Q2B Gun Bag', 19852), (124140, 124141, 80, 144, 'ICC Arms 2Q2C (u) Gun Bag', 19852), (124138, 124139, 30, 79, 'ICC Arms 2Q2C Gun Bag', 19852), (124142, 124142, 145, 145, 'ICC Arms 2Q2N-8 Gun Bag', 19852), (124123, 124124, 21, 40, 'ICC Arms SB21 Assault Shotgun', 113990), (124127, 124128, 61, 80, 'ICC Arms SB21 Crimson Edition', 113990), (124129, 124130, 81, 100, 'ICC Arms SB21 Lemon Edition', 113990), (124131, 124132, 101, 120, 'ICC Arms SB21 Maroon Edition', 113990), (124133, 124134, 121, 197, 'ICC Arms SB21 Orange Edition', 113990), (124135, 124135, 198, 198, 'ICC Arms SB21 Pale Winter Green Edition', 113990), (124125, 124126, 41, 60, 'ICC Arms SB21 Purple Edition', 113990), (296578, 296578, 1, 1, 'ICC Identification Card', 81776), (273578, 273578, 1, 1, 'ICC Identity Data Card', 154679), (273512, 273512, 1, 1, 'ICC Modified Hacking Tool', 99276), (273513, 273513, 1, 1, 'ICC Modified Hacking Tool', 99276), (273514, 273514, 1, 1, 'ICC Modified Hacking Tool', 99276), (273515, 273515, 1, 1, 'ICC Modified Hacking Tool', 99276), (273516, 273516, 1, 1, 'ICC Modified Hacking Tool', 99276), (273517, 273517, 1, 1, 'ICC Modified Hacking Tool', 99276), (227434, 227434, 1, 1, 'ICC Node Teleportation', 239275), (157679, 157679, 1, 1, 'ICC Orders - Weapon Receptacles', 154679), (303188, 303188, 1, 1, 'ICC Pacification Drone', 268686), (303225, 303225, 1, 1, 'ICC Peace Keeper Recall Beacon', 303224), (286230, 286230, 1, 1, 'ICC Peacekeeper Armor', 22990), (286563, 286563, 1, 1, 'ICC Peacekeeper Helmet', 22267), (286450, 286450, 300, 300, 'ICC Peacekeeper Shoulderpad', 245036), (248376, 248376, 1, 1, 'ICC Peacekeeper Smelling Salts', 156479), (303227, 303227, 1, 1, 'ICC Recruit Experience Stimulant', 296598), (267527, 267527, 1, 1, 'ICC Sanctioned Unlearning Device', 290826), (274986, 274986, 1, 1, 'ICC Secure Datacard', 154679), (275034, 275034, 1, 1, 'ICC Secure Datacard', 154679), (303189, 303189, 1, 1, 'ICC Surveillance Drone', 268686), (273230, 273230, 1, 1, 'ICC-Modified Hacking Tool', 99276), (249108, 249108, 1, 1, 'ID Chip', 149949), (249106, 249106, 1, 1, 'ID Disc', 131267), (156340, 156340, 1, 1, 'ID-data', 156323), (252311, 252311, 1, 1, 'ID-data - ''Fritz''', 156323), (156339, 156339, 1, 1, 'ID-extractor', 156324), (271593, 271594, 1, 300, 'IMI Desert Reet 1000 - 000', 13334), (271597, 271598, 1, 300, 'IMI Desert Reet 1000 - 401', 13334), (271599, 271600, 1, 300, 'IMI Desert Reet 1000 - C01', 13334), (157624, 157625, 99, 148, 'IMI Tellus TT', 13313), (288757, 288757, 1, 1, 'IP Reset Package', 290826), (288758, 288758, 1, 1, 'IP Reset Package: Five Points', 290826), (294599, 294599, 1, 1, 'IP Reset Package: Five Points', 290826), (294598, 294598, 1, 1, 'IP Reset Package: One Point', 290826), (288759, 288759, 1, 1, 'IP Reset Package: Ten Points', 290826), (293412, 293412, 1, 1, 'IP Reset Package: Ten Points', 290826), (84146, 84145, 1, 199, 'IQ Ring', 289767), (267928, 267928, 250, 250, 'Ice of Albtraum - Special Arrows', 33176), (267929, 267929, 250, 250, 'Ice of Albtraum - Special Arrows', 33176), (130606, 130606, 1, 1, 'Ice-Coffee Can', 37952), (130619, 130619, 1, 1, 'Ice-Cooler Glass', 37963), (206056, 206056, 1, 1, 'Icebound Heart', 296404), (208059, 208060, 40, 49, 'Icebreaker', 33165), (206067, 206067, 1, 1, 'Ichor of the Immortal One', 11753), (206003, 206003, 200, 200, 'Ichor-Covered Gem Of Extreme Smoothness', 136595), (206002, 206002, 100, 100, 'Ichor-covered Gem Of Smoothness', 136595), (301771, 301771, 1, 1, 'Icicle Dagger', 301809), (294048, 294048, 1, 1, 'Icicle Sword - Left Hand', 294398), (294413, 294413, 1, 1, 'Icicle Sword - Right Hand', 294510), (284614, 284614, 1, 1, 'Icicles', 284628), (236662, 236662, 1, 1, 'Icy Gel', 236568), (269902, 269902, 1, 1, 'Icy Shoulderpads of Brawn', 269964), (269898, 269898, 1, 1, 'Icy Shoulderpads of Explosive Power', 269963), (269901, 269901, 1, 1, 'Icy Shoulderpads of the Powerful Mind', 269962), (296692, 296692, 1, 1, 'Identification Card', 297386), (225683, 225684, 1, 300, 'Igbert''s Ring of Nano Programming', 151920), (158970, 158971, 41, 90, 'Igelkott 101 Automatic', 13327), (158972, 158973, 91, 130, 'Igelkott 148 Automatic', 13327), (158988, 158989, 131, 150, 'Igelkott 299 Automatic', 13327), (158990, 158991, 151, 160, 'Igelkott 350 Automatic', 13327), (158992, 158993, 161, 180, 'Igelkott 610 Automatic', 13327), (158994, 158995, 181, 199, 'Igelkott 714 Automatic', 13327), (158968, 158969, 1, 40, 'Igelkott 82 Automatic', 13327), (158996, 158996, 200, 200, 'Igelkott 882 Automatic', 13327), (289522, 289522, 1, 1, 'Igloo', 289519), (265361, 265361, 1, 1, 'Igneous Rock Machine Component', 265378), (246875, 246875, 250, 250, 'Ignition Chamber of Bacam-Xum', 130672), (213010, 213010, 1, 1, 'Ignition Flare', 239141), (235634, 235634, 10, 10, 'Ignorant Brain Symbiant, Infantry Unit Aban', 215189), (236352, 236352, 10, 10, 'Ignorant Chest Symbiant, Control Unit Aban', 215183), (235425, 235425, 10, 10, 'Ignorant Ear Symbiant, Artillery Unit Aban', 230977), (236317, 236317, 10, 10, 'Ignorant Ear Symbiant, Control Unit Aban', 230977), (235599, 235599, 10, 10, 'Ignorant Feet Symbiant, Artillery Unit Aban', 215185), (236492, 236492, 10, 10, 'Ignorant Feet Symbiant, Control Unit Aban', 215185), (236043, 236043, 10, 10, 'Ignorant Feet Symbiant, Extermination Unit Aban', 215186), (235478, 235478, 10, 10, 'Ignorant Left Arm Symbiant, Artillery Unit Aban', 215179), (235921, 235921, 10, 10, 'Ignorant Left Arm Symbiant, Extermination Unit Aban', 215175), (235699, 235699, 10, 10, 'Ignorant Left Arm Symbiant, Infantry Unit Aban', 215179), (236476, 236476, 10, 10, 'Ignorant Left Hand Symbiant, Control Unit Aban', 215172), (235801, 235801, 10, 10, 'Ignorant Left Hand Symbiant, Infantry Unit Aban', 215172), (235530, 235530, 10, 10, 'Ignorant Left Wrist Symbiant, Artillery Unit Aban', 215196), (235972, 235972, 10, 10, 'Ignorant Left Wrist Symbiant, Extermination Unit Aban', 215198), (236203, 236203, 10, 10, 'Ignorant Left Wrist Symbiant, Support Unit Aban', 215198), (235836, 235836, 10, 10, 'Ignorant Ocular Symbiant, Extermination Unit Aban', 230979), (235443, 235443, 10, 10, 'Ignorant Right Arm Symbiant, Artillery Unit Aban', 215176), (236334, 236334, 10, 10, 'Ignorant Right Arm Symbiant, Control Unit Aban', 215180), (235886, 235886, 10, 10, 'Ignorant Right Arm Symbiant, Extermination Unit Aban', 215178), (235547, 235547, 10, 10, 'Ignorant Right Hand Symbiant, Artillery Unit Aban', 215173), (236440, 236440, 10, 10, 'Ignorant Right Hand Symbiant, Control Unit Aban', 215173), (235495, 235495, 10, 10, 'Ignorant Right Wrist Symbiant, Artillery Unit Aban', 215170), (236387, 236387, 10, 10, 'Ignorant Right Wrist Symbiant, Control Unit Aban', 215170), (235784, 235784, 10, 10, 'Ignorant Thigh Symbiant, Infantry Unit Aban', 215191), (236238, 236238, 10, 10, 'Ignorant Thigh Symbiant, Support Unit Aban', 215190), (235955, 235955, 10, 10, 'Ignorant Waist Symbiant, Extermination Unit Aban', 215193), (235732, 235732, 10, 10, 'Ignorant Waist Symbiant, Infantry Unit Aban', 215193), (236186, 236186, 10, 10, 'Ignorant Waist Symbiant, Support Unit Aban', 215193), (124749, 124750, 1, 20, 'Ill-Treated BBI WMMA CAW', 13311), (122501, 122502, 1, 20, 'Ill-Treated Biogun', 38056), (122007, 122008, 1, 20, 'Ill-Treated Blackened Blaster', 13321), (139635, 139635, 1, 1, 'Ill-Treated Blackened Blaster Construction Manual', 37931), (122083, 122084, 1, 20, 'Ill-Treated Blackened Blaster Rifle', 13313), (161190, 161190, 1, 1, 'Ill-Treated Blackened Blaster Rifle Construction Manual', 37931), (122596, 122597, 1, 20, 'Ill-Treated Blackhole Mk IX', 33171), (141179, 141179, 1, 1, 'Ill-Treated Blackhole Mk IX Construction Manual', 37931), (122767, 122768, 1, 20, 'Ill-Treated Bow-Blaster', 114013), (121855, 121856, 1, 20, 'Ill-Treated Chunkprojector', 21144), (138752, 138752, 1, 1, 'Ill-Treated Chunkprojector Construction Manual', 37931), (122197, 122198, 1, 40, 'Ill-Treated DNA-Locked Blaster Rifle', 13313), (121798, 121799, 1, 20, 'Ill-Treated Disaffiliation Sniper', 21146), (137920, 137920, 1, 1, 'Ill-Treated Disaffiliation Sniper Construction Manual', 37931), (248520, 248627, 1, 20, 'Ill-Treated Dual Razor Disaffiliation Sniper', 21146), (122121, 122122, 1, 20, 'Ill-Treated E-Beamer', 21150), (138284, 138284, 1, 1, 'Ill-Treated E-Beamer Construction Manual', 37931), (122235, 122236, 1, 20, 'Ill-Treated Electrical Pacifier', 21150), (123305, 123306, 1, 20, 'Ill-Treated Enriched Uranium Sprayer', 21148), (122254, 122255, 1, 20, 'Ill-Treated Eradicator XCI-52', 13314), (124730, 124731, 1, 20, 'Ill-Treated FN P00', 21148), (121912, 121913, 1, 20, 'Ill-Treated Flamethrower', 19800), (139263, 139263, 1, 1, 'Ill-Treated Flamethrower Construction Manual', 37931), (124874, 124875, 1, 20, 'Ill-Treated GE ME30 Mom', 13322), (124967, 124968, 1, 20, 'Ill-Treated GE XM-559 Man-Portable Laser', 21151), (121931, 121932, 1, 20, 'Ill-Treated Gatling Saw 20k', 84025), (122867, 122868, 1, 20, 'Ill-Treated Grenade-Thrower', 13336), (141518, 141518, 1, 1, 'Ill-Treated Grenade-Thrower Construction Manual', 37931), (123133, 123134, 15, 32, 'Ill-Treated Heavy Gamma-Beamer', 33158), (121893, 121894, 1, 20, 'Ill-Treated Heavy Grinner', 21147), (139059, 139059, 1, 1, 'Ill-Treated Heavy Grinner Construction Manual', 37931), (122672, 122673, 1, 20, 'Ill-Treated Heavy Lead Sprayer', 21148), (141361, 141361, 1, 1, 'Ill-Treated Heavy Lead Sprayer Construction Manual', 37931), (124929, 124930, 1, 20, 'Ill-Treated IEC Flashpoint Laser Rifle', 33146), (125005, 125006, 1, 20, 'Ill-Treated Joint Clans Exocet II', 85167), (125024, 125025, 1, 20, 'Ill-Treated Joint Clans Patriot', 114013), (248558, 248559, 1, 20, 'Ill-Treated Kaetans Supernova', 33146), (124643, 124644, 1, 20, 'Ill-Treated Kalinkanov ZU-113 Security Weapon', 21148), (122710, 122711, 1, 20, 'Ill-Treated Kevlar Bow', 85167), (124598, 124599, 1, 20, 'Ill-Treated MTI MP200', 21147), (124681, 124682, 1, 20, 'Ill-Treated MTI MPK-22 Briefcase Gun', 13311), (124624, 124625, 1, 20, 'Ill-Treated MTI UMP22', 114016), (124662, 124663, 1, 20, 'Ill-Treated Malorian Arms M25 Goodgun', 33153), (122425, 122426, 1, 20, 'Ill-Treated Mausser Particle Streamer', 31807), (140789, 140789, 1, 1, 'Ill-Treated Mausser Particle Streamer Construction Manual', 37931), (123038, 123039, 1, 20, 'Ill-Treated Medium Shotgun', 13340), (122178, 122179, 1, 20, 'Ill-Treated Megajolt', 13322), (140209, 140209, 1, 1, 'Ill-Treated Megajolt Construction Manual', 37931), (248589, 248590, 1, 20, 'Ill-Treated Merren Flamethrower', 19800), (123019, 123020, 1, 20, 'Ill-Treated Mini-Shotgun', 13341), (142078, 142078, 1, 1, 'Ill-Treated Mini-Shotgun Construction Manual', 37931), (123209, 123210, 50, 64, 'Ill-Treated Nano-Charged Assault Rifle', 45783), (123229, 123230, 50, 64, 'Ill-Treated Nano-Charged Rifle', 45782), (123419, 123420, 1, 20, 'Ill-Treated Netgun', 13322), (124711, 124712, 1, 20, 'Ill-Treated Nord Armwerk MAX', 21144), (123267, 123268, 10, 28, 'Ill-Treated Nova Flow - Mk IV', 33144), (123571, 123572, 15, 32, 'Ill-Treated OT 0220 22mm Combat Magnum', 31808), (124768, 124769, 1, 20, 'Ill-Treated OT ARL-10 Micromissile Launcher', 13311), (124891, 124892, 1, 20, 'Ill-Treated OT M-00 Crystal', 13336), (124798, 124799, 1, 20, 'Ill-Treated OT M-110 Renegade SAW', 13336), (124817, 124818, 1, 20, 'Ill-Treated OT M-70 HardRain GPMG', 13336), (124560, 124561, 1, 20, 'Ill-Treated OT Saladin', 21148), (122520, 122521, 1, 20, 'Ill-Treated Omni-Flamer Strategic', 33159), (122539, 122540, 1, 20, 'Ill-Treated Omni-Pol Standard Flamer', 33160), (125081, 125082, 1, 20, 'Ill-Treated Oneida Razor Half-Bow', 114013), (124855, 124856, 1, 20, 'Ill-Treated Planet Gripon Arms Hard-Boomer', 13311), (121874, 121875, 1, 20, 'Ill-Treated Plasmaprojector', 21145), (138927, 138927, 1, 1, 'Ill-Treated Plasmaprojector Construction Manual', 37931), (248720, 248721, 1, 20, 'Ill-Treated Razorback Disaffiliation Sniper', 21146), (125043, 125044, 1, 20, 'Ill-Treated Reet-Tech Junior Urban Crossbow', 114013), (124986, 124987, 1, 20, 'Ill-Treated Reet-Tech Stryker X', 85167), (125062, 125063, 1, 20, 'Ill-Treated Reet-Tech Venom Compound Bow', 85167), (124700, 124701, 1, 15, 'Ill-Treated Seburo C-19a', 21149), (124548, 124549, 1, 23, 'Ill-Treated Seburo M35', 33153), (123590, 123591, 15, 32, 'Ill-Treated Sentinel 20mm Snub Pistol', 31811), (248521, 248522, 1, 20, 'Ill-Treated Sharky''s Kevlar Bow', 85167), (123286, 123287, 35, 50, 'Ill-Treated Slugger', 33154), (122311, 122312, 1, 20, 'Ill-Treated Stanton Stunner IV', 13313), (122216, 122217, 1, 20, 'Ill-Treated Stigma Rifle', 33155), (121779, 121780, 1, 20, 'Ill-Treated Subturbine', 21151), (137662, 137662, 1, 1, 'Ill-Treated Subturbine Construction Manual', 37931), (122558, 122559, 1, 20, 'Ill-Treated Sunburst Mk III', 33148), (143833, 143845, 1, 20, 'Ill-Treated Sunburst Mk IV', 33148), (122577, 122578, 1, 20, 'Ill-Treated Supernova Mk VI', 33146), (140987, 140987, 1, 1, 'Ill-Treated Supernova Mk VI Construction Manual', 37931), (123190, 123191, 1, 20, 'Ill-Treated Suppressor', 31807), (141861, 141861, 1, 1, 'Ill-Treated Suppressor Construction Manual', 37931), (124948, 124949, 1, 20, 'Ill-Treated Techtronica Neural Disruptor', 21145), (124779, 124780, 1, 20, 'Ill-Treated Tsunami Raiden MP-Drum', 13311), (124910, 124911, 1, 20, 'Ill-Treated Westinghouse IM-50 Plasma Burner', 33146), (248608, 248609, 1, 20, 'Ill-Treated Xnemth Plasmaprojector', 21145), (128871, 128872, 1, 20, 'Ill-treated Arwen MM-50 Grenade Launcher', 13336), (128758, 128759, 1, 20, 'Ill-treated Fabrique Des Armes Bizon 20-19', 21144), (128715, 128716, 1, 20, 'Ill-treated Galahad Inc. 077 Personal Weapon', 21148), (128739, 128740, 1, 20, 'Ill-treated Galahad Inc. Tactical Machine Pistol', 21147), (128655, 128656, 1, 20, 'Ill-treated HSR Arms Tech Assault IV', 21148), (128674, 128675, 1, 20, 'Ill-treated HSR Arms Tech Assault V', 21148), (128608, 128609, 1, 20, 'Ill-treated MTI G-36K', 33155), (128858, 128859, 1, 21, 'Ill-treated MTI MPK-22', 33153), (253215, 253216, 1, 29, 'Ill-treated Nizno''s Bomb Blaster', 13336), (128839, 128840, 1, 20, 'Ill-treated OET Co. MP-21 Tactical Machine Pistol', 21148), (160173, 160174, 1, 20, 'Ill-treated OT 12', 21149), (128792, 128793, 1, 20, 'Ill-treated OT Cobra M-33', 21148), (128636, 128637, 1, 20, 'Ill-treated Seburo C-99a', 21144), (128890, 128891, 1, 20, 'Ill-treated Steiner LM-5 Assault Laser', 33171), (206289, 206290, 1, 99, 'Ill-treated Timmy Gun', 13312), (128811, 128812, 1, 20, 'Ill-treated Zastaba M0-2 Assault Weapon (Zero)', 33153), (287669, 287669, 1, 1, 'Illegal Notum Chunk', 100323), (287670, 287670, 1, 1, 'Illegal Notum Chunk', 100323), (287671, 287671, 1, 1, 'Illegal Notum Chunk', 100323), (287674, 287674, 1, 1, 'Illegal Notum Chunk', 100323), (305985, 305985, 1, 1, 'Illegally Augmented Ofab Mongoose', 264818), (306004, 306004, 300, 300, 'Illegally Modified Dreadloch Modified Shark', 264839), (306005, 306005, 300, 300, 'Illegally Modified Dreadloch Obliterator', 19800), (305991, 305991, 300, 300, 'Illegally Modified Dreadloch Panther', 264815), (305999, 305999, 300, 300, 'Illegally Modified Dreadloch Remodulator', 264837), (305998, 305998, 300, 300, 'Illegally Modified Dreadloch Thrasher', 210185), (301717, 301717, 1, 1, 'Illegally Modified Ofab Bear', 264824), (301708, 301708, 1, 1, 'Illegally Modified Ofab Boar', 214358), (301710, 301710, 1, 1, 'Illegally Modified Ofab Cobra', 264793), (301712, 301712, 1, 1, 'Illegally Modified Ofab Hawk', 264807), (301716, 301716, 1, 1, 'Illegally Modified Ofab Mongoose', 264818), (301707, 301707, 1, 1, 'Illegally Modified Ofab Panther', 264812), (301709, 301709, 1, 1, 'Illegally Modified Ofab Peregrine', 264787), (301711, 301711, 1, 1, 'Illegally Modified Ofab Shark', 264836), (301713, 301713, 1, 1, 'Illegally Modified Ofab Silverback', 264800), (301718, 301718, 1, 1, 'Illegally Modified Ofab Tiger', 264842), (301714, 301714, 1, 1, 'Illegally Modified Ofab Viper', 264781), (301715, 301715, 1, 1, 'Illegally Modified Ofab Wolf', 264832), (305988, 305988, 300, 300, 'Illegally-Modified Dreadloch Tigress', 264843), (236665, 236665, 1, 1, 'Illegible scribbles in some strange language', 136332), (149917, 149917, 200, 200, 'Illicit Augmented Body Coolant Pad', 149945), (149925, 149925, 200, 200, 'Illicit Augmented Body Defrost Pad', 149941), (149901, 149901, 200, 200, 'Illicit Augmented Calluses Pad', 149944), (149905, 149905, 200, 200, 'Illicit Augmented Deflector Pad', 149936), (149909, 149909, 200, 200, 'Illicit Augmented Detox Pad', 149935), (149921, 149921, 200, 200, 'Illicit Augmented Energy Container Pad', 149946), (149929, 149929, 200, 200, 'Illicit Augmented Neutralizer Pad', 149943), (149913, 149913, 200, 200, 'Illicit Augmented Radiation Reduction Pad', 149933), (149918, 149918, 1, 1, 'Illicit Basic Body Coolant Pad', 149945), (149926, 149926, 1, 1, 'Illicit Basic Body Defrost Pad', 149941), (149914, 149914, 1, 1, 'Illicit Basic Calluses Pad', 149944), (149906, 149906, 1, 1, 'Illicit Basic Deflector Pad', 149936), (149910, 149910, 1, 1, 'Illicit Basic Detox Pad', 149935), (149922, 149922, 1, 1, 'Illicit Basic Energy Container Pad', 149946), (149930, 149930, 1, 1, 'Illicit Basic Neutralizer Pad', 149943), (149902, 149902, 1, 1, 'Illicit Basic Radiation Reduction Pad', 149933), (233794, 233795, 21, 179, 'Illicit Laser Backup', 13311), (233798, 233798, 200, 200, 'Illicit Laser Backup - Intra Edition', 13311), (233796, 233797, 180, 199, 'Illicit Laser Backup - Teknolord Edition', 13311), (274667, 274667, 1, 1, 'Illusionist''s Spirit Vest', 274681), (275423, 275423, 1, 1, 'Imbued Globe of Clarity', 290363), (295641, 295641, 1, 1, 'Immaculate Photoluminescent Being', 233133), (263974, 263974, 1, 1, 'Immobilization Mine Layer', 205499), (205609, 205609, 1, 1, 'Immortal', 151929), (225979, 225980, 1, 300, 'Immortal Fungus', 151033), (154503, 154504, 1, 199, 'Immortal Katana', 154506), (206383, 206383, 1, 1, 'Immortal Presence Pulser Wearable', 84059), (234883, 234883, 1, 1, 'Imp''s Wing', 144709), (101311, 101312, 1, 200, 'Imp/Proj AC Cluster - Bright (Chest)', 35981), (101309, 101310, 1, 200, 'Imp/Proj AC Cluster - Faded (Waist)', 35980), (101313, 101314, 1, 200, 'Imp/Proj AC Cluster - Shiny (Leg)', 35982), (165489, 165490, 201, 300, 'Imp/Proj AC Refined Cluster - Bright (Chest)', 35981), (165487, 165488, 201, 300, 'Imp/Proj AC Refined Cluster - Faded (Waist)', 35980), (165491, 165492, 201, 300, 'Imp/Proj AC Refined Cluster - Shiny (Leg)', 35982), (142914, 142915, 1, 200, 'Impact Poison Injector', 130826), (142902, 142903, 1, 200, 'Impact Projectile Chamber', 130827), (142908, 142909, 1, 200, 'Impact Super Coolant Conductor', 130818), (225599, 225600, 1, 500, 'Impale', 239081), (225601, 225602, 1, 500, 'Impale', 239081), (225603, 225604, 1, 500, 'Impale', 239081), (206052, 206052, 1, 1, 'Impious Dominator', 13339), (161866, 161867, 1, 200, 'Implant Disassembly Clinic', 301028), (161863, 161864, 1, 200, 'Implant Disassembly Unit', 161874), (224015, 224015, 1, 1, 'Implant Extractor - Flesh Burrower', 205533), (224016, 224016, 1, 1, 'Implant Extractor - Flesh Burrower', 205533), (295862, 295862, 1, 1, 'Implants', 277964), (253092, 253092, 1, 1, 'Implode', 255731), (248267, 248267, 1, 1, 'Important Portal Part', 245000), (165472, 165472, 1, 1, 'Important looking briefcase', 99668), (155847, 155848, 1, 199, 'Improved Advanced Baseballbat', 13335), (268504, 268504, 150, 150, 'Improved Alien Tank Armor', 22395), (267706, 267706, 250, 250, 'Improved Ancient Manual Aiming Aid', 218778), (199384, 199386, 230, 240, 'Improved Bau Charger Armor Boots', 22878), (199405, 199407, 230, 240, 'Improved Bau Charger Armor Gloves', 22939), (199426, 199428, 230, 240, 'Improved Bau Charger Armor Helmet', 31738), (199447, 199449, 230, 240, 'Improved Bau Charger Armor Pants', 22928), (199468, 199470, 230, 240, 'Improved Bau Charger Armor Sleeves', 22889), (199489, 199491, 230, 240, 'Improved Bau Charger Body Armor', 22981), (199510, 199512, 230, 240, 'Improved Bau Charger Female Body Armor', 22942), (162015, 162016, 260, 269, 'Improved Bau Cyber Armor Helmet', 31738), (162016, 162017, 270, 280, 'Improved Bau Cyber Armor Helmet', 31738), (274987, 274987, 250, 250, 'Improved Black Clan Heavy Tank Armor', 22395), (157823, 157823, 200, 200, 'Improved Burning Cresent - Duperstar', 13343), (157821, 157822, 1, 199, 'Improved Burning Cresent - Superstar', 13343), (157818, 157819, 1, 199, 'Improved Click Stabber', 13346), (155858, 155859, 1, 199, 'Improved Club', 85172), (155844, 155845, 1, 199, 'Improved Cutlass', 13347), (144113, 144114, 121, 140, 'Improved Freedom Arms 4200', 113997), (155850, 155853, 1, 199, 'Improved Gofleprod', 33168), (274978, 274978, 300, 300, 'Improved Hacked Medi-Blade', 264784), (155861, 155862, 1, 199, 'Improved Immortal Katana', 154506), (274542, 274542, 250, 250, 'Improved Infused Dust Brigade Bracer - Tier 1', 290461), (274543, 274543, 250, 250, 'Improved Infused Dust Brigade Bracer - Tier 2', 290462), (274544, 274544, 250, 250, 'Improved Infused Dust Brigade Bracer - Tier 3', 290463), (274545, 274545, 250, 250, 'Improved Infused Dust Brigade Bracer - Tier 4', 290464), (274546, 274546, 250, 250, 'Improved Infused Dust Brigade Bracer - Tier 5', 290465), (274547, 274547, 250, 250, 'Improved Infused Dust Brigade Bracer - Tier 6', 290466), (274548, 274548, 250, 250, 'Improved Infused Dust Brigade Bracer - Tier 7', 290467), (274549, 274549, 250, 250, 'Improved Infused Dust Brigade Bracer - Tier 8', 290468), (274550, 274550, 250, 250, 'Improved Infused Dust Brigade Bracer - Tier 9', 290469), (155855, 155856, 1, 199, 'Improved Meatcleaver', 85169), (199680, 199680, 235, 235, 'Improved Nadir Homage Armor Boots', 22876), (199701, 199701, 235, 235, 'Improved Nadir Homage Armor Gloves', 22931), (199722, 199722, 235, 235, 'Improved Nadir Homage Armor Helmet', 31733), (199743, 199743, 235, 235, 'Improved Nadir Homage Armor Pants', 22914), (199764, 199764, 235, 235, 'Improved Nadir Homage Armor Sleeves', 22960), (199785, 199785, 235, 235, 'Improved Nadir Homage Body Armor', 22985), (264190, 264191, 1, 300, 'Improved Ofab Adventurer Body Armor', 266406), (264188, 264189, 1, 300, 'Improved Ofab Adventurer Boots', 266407), (264194, 264195, 1, 300, 'Improved Ofab Adventurer Gloves', 266408), (264196, 264197, 1, 300, 'Improved Ofab Adventurer Helmet', 266369), (264186, 264187, 1, 300, 'Improved Ofab Adventurer Pants', 266409), (264192, 264193, 1, 300, 'Improved Ofab Adventurer Sleeves', 266405), (264303, 264304, 1, 300, 'Improved Ofab Agent Body Armor', 266416), (264309, 264310, 1, 300, 'Improved Ofab Agent Boots', 266417), (264291, 264292, 1, 300, 'Improved Ofab Agent Gloves', 266418), (264285, 264286, 1, 300, 'Improved Ofab Agent Helmet', 266371), (264315, 264316, 1, 300, 'Improved Ofab Agent Pants', 266419), (264297, 264298, 1, 300, 'Improved Ofab Agent Sleeves', 266415), (264525, 264526, 1, 300, 'Improved Ofab Bureaucrat Boots', 266427), (264507, 264508, 1, 300, 'Improved Ofab Bureaucrat Gloves', 266428), (264501, 264502, 1, 300, 'Improved Ofab Bureaucrat Headgear', 266373), (264531, 264532, 1, 300, 'Improved Ofab Bureaucrat Pants', 266429), (264513, 264514, 1, 300, 'Improved Ofab Bureaucrat Sleeves', 266425), (264519, 264520, 1, 300, 'Improved Ofab Bureaucrat Vest', 266426), (264666, 264667, 1, 300, 'Improved Ofab Doctor Body', 266436), (264672, 264673, 1, 300, 'Improved Ofab Doctor Boots', 266437), (264654, 264655, 1, 300, 'Improved Ofab Doctor Gloves', 266438), (264648, 264649, 1, 300, 'Improved Ofab Doctor Helmet', 266375), (264678, 264679, 1, 300, 'Improved Ofab Doctor Pants', 266439), (264660, 264661, 1, 300, 'Improved Ofab Doctor Sleeves', 266435), (264219, 264220, 1, 300, 'Improved Ofab Enforcer Boots', 266447), (264225, 264226, 1, 300, 'Improved Ofab Enforcer Breastplate', 266446), (264237, 264238, 1, 300, 'Improved Ofab Enforcer Gauntlets', 266448), (264243, 264244, 1, 300, 'Improved Ofab Enforcer Helmet', 266377), (264213, 264214, 1, 300, 'Improved Ofab Enforcer Pants', 266449), (264231, 264232, 1, 300, 'Improved Ofab Enforcer Sleeves', 266445), (264594, 264595, 1, 300, 'Improved Ofab Engineer Body', 266456), (264600, 264601, 1, 300, 'Improved Ofab Engineer Boots', 266457), (264579, 264580, 1, 300, 'Improved Ofab Engineer Gloves', 266458), (264573, 264574, 1, 300, 'Improved Ofab Engineer Helmet', 266379), (264606, 264607, 1, 300, 'Improved Ofab Engineer Pants', 266459), (264585, 264586, 1, 300, 'Improved Ofab Engineer Sleeves', 266455), (264483, 264484, 1, 300, 'Improved Ofab Fixer Body Armor', 266466), (264489, 264490, 1, 300, 'Improved Ofab Fixer Boots', 266467), (264471, 264472, 1, 300, 'Improved Ofab Fixer Gloves', 266468), (264465, 264466, 1, 300, 'Improved Ofab Fixer Helmet', 266381), (264495, 264496, 1, 300, 'Improved Ofab Fixer Pants', 266469), (264477, 264478, 1, 300, 'Improved Ofab Fixer Sleeves', 266465), (264630, 264631, 1, 300, 'Improved Ofab Keeper Body Armor', 266476), (264636, 264637, 1, 300, 'Improved Ofab Keeper Boots', 266477), (264618, 264619, 1, 300, 'Improved Ofab Keeper Gloves', 266478), (264612, 264613, 1, 300, 'Improved Ofab Keeper Helmet', 266383), (264642, 264643, 1, 300, 'Improved Ofab Keeper Pants', 266479), (264624, 264625, 1, 300, 'Improved Ofab Keeper Sleeves', 266475), (264339, 264340, 1, 300, 'Improved Ofab Martial Artist Body Armor', 266486), (264345, 264346, 1, 300, 'Improved Ofab Martial Artist Boots', 266487), (264327, 264328, 1, 300, 'Improved Ofab Martial Artist Gloves', 266488), (264321, 264322, 1, 300, 'Improved Ofab Martial Artist Helmet', 266385), (264351, 264352, 1, 300, 'Improved Ofab Martial Artist Pants', 266489), (264333, 264334, 1, 300, 'Improved Ofab Martial Artist Sleeves', 266485), (264375, 264376, 1, 300, 'Improved Ofab Metaphysicist Body Armor', 266496), (264381, 264382, 1, 300, 'Improved Ofab Metaphysicist Boots', 266497), (264363, 264364, 1, 300, 'Improved Ofab Metaphysicist Gloves', 266498), (264357, 264358, 1, 300, 'Improved Ofab Metaphysicist Headgear', 266387), (264387, 264388, 1, 300, 'Improved Ofab Metaphysicist Pants', 266499), (264369, 264370, 1, 300, 'Improved Ofab Metaphysicist Sleeves', 266495), (264411, 264412, 1, 300, 'Improved Ofab Nano Technician Body Armor', 266506), (264417, 264418, 1, 300, 'Improved Ofab Nano Technician Boots', 266507), (264399, 264400, 1, 300, 'Improved Ofab Nano Technician Gloves', 266508), (264393, 264394, 1, 300, 'Improved Ofab Nano Technician Helmet', 266389), (264423, 264424, 1, 300, 'Improved Ofab Nano Technician Pants', 266509), (264405, 264406, 1, 300, 'Improved Ofab Nano Technician Sleeves', 266505), (264555, 264556, 1, 300, 'Improved Ofab Shade Body Armor', 266516), (264561, 264562, 1, 300, 'Improved Ofab Shade Boots', 266517), (264543, 264544, 1, 300, 'Improved Ofab Shade Gloves', 266518), (264537, 264538, 1, 300, 'Improved Ofab Shade Headgear', 266391), (264567, 264568, 1, 300, 'Improved Ofab Shade Pants', 266519), (264549, 264550, 1, 300, 'Improved Ofab Shade Sleeves', 266515), (264447, 264448, 1, 300, 'Improved Ofab Soldier Body Armor', 266526), (264453, 264454, 1, 300, 'Improved Ofab Soldier Boots', 266527), (264435, 264436, 1, 300, 'Improved Ofab Soldier Gloves', 266528), (264429, 264430, 1, 300, 'Improved Ofab Soldier Helmet', 266393), (264459, 264460, 1, 300, 'Improved Ofab Soldier Pants', 266529), (264441, 264442, 1, 300, 'Improved Ofab Soldier Sleeves', 266525), (264267, 264268, 1, 300, 'Improved Ofab Trader Body Armor', 266536), (264279, 264280, 1, 300, 'Improved Ofab Trader Boots', 266537), (264255, 264256, 1, 300, 'Improved Ofab Trader Gloves', 266538), (264249, 264250, 1, 300, 'Improved Ofab Trader Helmet', 266395), (264273, 264274, 1, 300, 'Improved Ofab Trader Pants', 266539), (264261, 264262, 1, 300, 'Improved Ofab Trader Sleeves', 266535), (155841, 155842, 1, 199, 'Improved Slank Chop', 21143), (243846, 243846, 1, 1, 'Improved Solar-Powered Shotgun', 113988), (206705, 206706, 1, 199, 'Improved Tango Dirk', 131270), (206707, 206707, 200, 200, 'Improved Tango Dirk', 131270), (155835, 121582, 1, 115, 'Improved Tripler', 13344), (121582, 121583, 116, 137, 'Improved Tripler', 13344), (121583, 155836, 138, 199, 'Improved Tripler', 13344), (165080, 165080, 1, 1, 'Improved Tripler Construction Manual', 136332), (155838, 155839, 1, 199, 'Improved Whings', 21139), (157973, 157973, 4, 4, 'Improvised Bronto Beer', 157931), (157970, 157970, 1, 1, 'Improvised Flea Beer', 157931), (157971, 157971, 2, 2, 'Improvised Stalker Beer', 157931), (157972, 157972, 3, 3, 'Improvised Woodwolf Beer', 157931), (245484, 245484, 150, 150, 'Impudent Bracer', 245483), (268496, 268496, 150, 150, 'Inactive Alien Battery', 220416), (268494, 268494, 150, 150, 'Inactive Alien Beacon', 220416), (268510, 268510, 150, 150, 'Inactive Alien Material Conversion kit', 99658), (268499, 268499, 150, 150, 'Inactive Alien Reflex Modifier', 220416), (268507, 268507, 150, 150, 'Inactive Alien Tank Armor', 22401), (268477, 268477, 150, 150, 'Inactive Alien Translation Device', 12692), (267746, 267746, 250, 250, 'Inactive Ancient Bracer', 290853), (267748, 267748, 250, 250, 'Inactive Ancient Engineering Device', 156094), (267735, 267735, 250, 250, 'Inactive Ancient Medical Device', 218774), (203108, 203108, 75, 75, 'Inactive Android Service Tower', 208131), (203110, 203110, 225, 225, 'Inactive Cyborg Service Tower', 208131), (268493, 268493, 150, 150, 'Inactive Empty Alien Augmentation Device', 218751), (204975, 204976, 1, 225, 'Inactive Eyemutant Orb Laser', 152424), (204185, 204185, 15, 15, 'Inactive Feeble Service Tower', 208131), (204187, 204187, 5, 5, 'Inactive Flimsy Service Tower', 208131), (248815, 248815, 1, 1, 'Inactive Nano Input Hood', 23003), (203111, 203111, 300, 300, 'Inactive Nano Service Tower', 208131), (164951, 164952, 1, 200, 'Inactive OT Metamorphing Liquid Nanobots', 156496), (269803, 269803, 250, 250, 'Inactive Permafrost Melting Tool', 269844), (287974, 287974, 1, 1, 'Inactive Power Core', 287970), (204186, 204186, 50, 50, 'Inactive Recycled Service Tower', 208131), (203109, 203109, 150, 150, 'Inactive Semi-Sentient Service Tower', 208131), (276915, 276915, 1, 1, 'Inactive Toxin Sample', 99670), (251191, 251192, 1, 300, 'Inactive Viralbots', 19862), (212499, 212500, 100, 199, 'Inamorata Aban Cutlass', 213076), (212501, 212502, 200, 299, 'Inamorata Aban Cutlass', 213076), (212503, 212503, 300, 300, 'Inamorata Aban Cutlass', 213076), (212882, 212883, 100, 199, 'Inamorata Aban Rapier', 213075), (212884, 212885, 200, 299, 'Inamorata Aban Rapier', 213075), (212886, 212886, 300, 300, 'Inamorata Aban Rapier', 213075), (212524, 212525, 100, 199, 'Inamorata Aban Tonfa', 214358), (212526, 212527, 200, 299, 'Inamorata Aban Tonfa', 214358), (212528, 212528, 300, 300, 'Inamorata Aban Tonfa', 214358), (212781, 212782, 100, 199, 'Inamorata Aban Trident', 214395), (212783, 212784, 200, 299, 'Inamorata Aban Trident', 214395), (212785, 212785, 300, 300, 'Inamorata Aban Trident', 214395), (212469, 212470, 100, 199, 'Inamorata Aban-Shere Cutlass', 213076), (212471, 212472, 200, 299, 'Inamorata Aban-Shere Cutlass', 213076), (212473, 212473, 300, 300, 'Inamorata Aban-Shere Cutlass', 213076), (212847, 212848, 100, 199, 'Inamorata Aban-Shere Rapier', 213075), (212849, 212850, 200, 299, 'Inamorata Aban-Shere Rapier', 213075), (212851, 212851, 300, 300, 'Inamorata Aban-Shere Rapier', 213075), (212554, 212555, 100, 199, 'Inamorata Aban-Shere Tonfa', 214358), (212556, 212557, 200, 299, 'Inamorata Aban-Shere Tonfa', 214358), (212558, 212558, 300, 300, 'Inamorata Aban-Shere Tonfa', 214358), (212761, 212762, 100, 199, 'Inamorata Aban-Shere Trident', 214395), (212763, 212764, 200, 299, 'Inamorata Aban-Shere Trident', 214395), (212765, 212765, 300, 300, 'Inamorata Aban-Shere Trident', 214395), (212474, 212475, 100, 199, 'Inamorata Aban-Thar Cutlass', 213076), (212476, 212477, 200, 299, 'Inamorata Aban-Thar Cutlass', 213076), (212478, 212478, 300, 300, 'Inamorata Aban-Thar Cutlass', 213076), (212852, 212853, 100, 199, 'Inamorata Aban-Thar Rapier', 213075), (212854, 212855, 200, 299, 'Inamorata Aban-Thar Rapier', 213075), (212856, 212856, 300, 300, 'Inamorata Aban-Thar Rapier', 213075), (212549, 212550, 100, 199, 'Inamorata Aban-Thar Tonfa', 214358), (212551, 212552, 200, 299, 'Inamorata Aban-Thar Tonfa', 214358), (212553, 212553, 300, 300, 'Inamorata Aban-Thar Tonfa', 214358), (212766, 212767, 100, 199, 'Inamorata Aban-Thar Trident', 214395), (212768, 212769, 200, 299, 'Inamorata Aban-Thar Trident', 214395), (212770, 212770, 300, 300, 'Inamorata Aban-Thar Trident', 214395), (212298, 212299, 100, 199, 'Inamorata Assault Rifle', 210174), (212300, 212301, 200, 299, 'Inamorata Assault Rifle', 210174), (212302, 212302, 300, 300, 'Inamorata Assault Rifle', 210174), (212278, 212279, 100, 199, 'Inamorata Bhotaar Assault Rifle', 210174), (212280, 212281, 200, 299, 'Inamorata Bhotaar Assault Rifle', 210174), (212282, 212282, 300, 300, 'Inamorata Bhotaar Assault Rifle', 210174), (212233, 212234, 100, 199, 'Inamorata Bhotaar Blaster', 210173), (212235, 212236, 200, 299, 'Inamorata Bhotaar Blaster', 210173), (212237, 212237, 300, 300, 'Inamorata Bhotaar Blaster', 210173), (212203, 212204, 100, 199, 'Inamorata Bhotaar Pistol', 210170), (212205, 212206, 200, 299, 'Inamorata Bhotaar Pistol', 210170), (212207, 212207, 300, 300, 'Inamorata Bhotaar Pistol', 210170), (212238, 212239, 100, 199, 'Inamorata Blaster', 210173), (212240, 212241, 200, 299, 'Inamorata Blaster', 210173), (212242, 212242, 300, 300, 'Inamorata Blaster', 210173), (212378, 212379, 100, 199, 'Inamorata Bow', 210172), (212380, 212381, 200, 299, 'Inamorata Bow', 210172), (212382, 212382, 300, 300, 'Inamorata Bow', 210172), (212509, 212510, 100, 199, 'Inamorata Cutlass', 213076), (212511, 212512, 200, 299, 'Inamorata Cutlass', 213076), (212513, 212513, 300, 300, 'Inamorata Cutlass', 213076), (212494, 212495, 100, 199, 'Inamorata Enel Cutlass', 213076), (212496, 212497, 200, 299, 'Inamorata Enel Cutlass', 213076), (212498, 212498, 300, 300, 'Inamorata Enel Cutlass', 213076), (212655, 212656, 100, 199, 'Inamorata Enel Naginata', 213073), (212657, 212658, 200, 299, 'Inamorata Enel Naginata', 213073), (212659, 212659, 300, 300, 'Inamorata Enel Naginata', 213073), (212680, 212681, 100, 199, 'Inamorata Enel Quarterstaff', 210166), (212682, 212683, 200, 299, 'Inamorata Enel Quarterstaff', 210166), (212684, 212684, 300, 300, 'Inamorata Enel Quarterstaff', 210166), (212867, 212868, 100, 199, 'Inamorata Enel Rapier', 213075), (212869, 212870, 200, 299, 'Inamorata Enel Rapier', 213075), (212871, 212871, 300, 300, 'Inamorata Enel Rapier', 213075), (212388, 212389, 100, 199, 'Inamorata Enel Swatter', 210167), (212390, 212391, 200, 299, 'Inamorata Enel Swatter', 210167), (212392, 212392, 300, 300, 'Inamorata Enel Swatter', 210167), (212529, 212530, 100, 199, 'Inamorata Enel Tonfa', 214358), (212531, 212532, 200, 299, 'Inamorata Enel Tonfa', 214358), (212533, 212533, 300, 300, 'Inamorata Enel Tonfa', 214358), (212776, 212777, 100, 199, 'Inamorata Enel Trident', 214395), (212778, 212779, 200, 299, 'Inamorata Enel Trident', 214395), (212780, 212780, 300, 300, 'Inamorata Enel Trident', 214395), (212479, 212480, 100, 199, 'Inamorata Enel-Thar Cutlass', 213076), (212481, 212482, 200, 299, 'Inamorata Enel-Thar Cutlass', 213076), (212483, 212483, 300, 300, 'Inamorata Enel-Thar Cutlass', 213076), (212635, 212636, 100, 199, 'Inamorata Enel-Thar Naginata', 213073), (212637, 212638, 200, 299, 'Inamorata Enel-Thar Naginata', 213073), (212639, 212639, 300, 300, 'Inamorata Enel-Thar Naginata', 213073), (212690, 212691, 100, 199, 'Inamorata Enel-Thar Quarterstaff', 210166), (212692, 212693, 200, 299, 'Inamorata Enel-Thar Quarterstaff', 210166), (212694, 212694, 300, 300, 'Inamorata Enel-Thar Quarterstaff', 210166), (212857, 212858, 100, 199, 'Inamorata Enel-Thar Rapier', 213075), (212859, 212860, 200, 299, 'Inamorata Enel-Thar Rapier', 213075), (212861, 212861, 300, 300, 'Inamorata Enel-Thar Rapier', 213075), (212544, 212545, 100, 199, 'Inamorata Enel-Thar Tonfa', 214358), (212546, 212547, 200, 299, 'Inamorata Enel-Thar Tonfa', 214358), (212548, 212548, 300, 300, 'Inamorata Enel-Thar Tonfa', 214358), (212771, 212772, 100, 199, 'Inamorata Enel-Thar Trident', 214395), (212773, 212774, 200, 299, 'Inamorata Enel-Thar Trident', 214395), (212775, 212775, 300, 300, 'Inamorata Enel-Thar Trident', 214395), (212484, 212485, 100, 199, 'Inamorata Enel-Xum Cutlass', 213076), (212486, 212487, 200, 299, 'Inamorata Enel-Xum Cutlass', 213076), (212488, 212488, 300, 300, 'Inamorata Enel-Xum Cutlass', 213076), (212640, 212641, 100, 199, 'Inamorata Enel-Xum Naginata', 213073), (212642, 212643, 200, 299, 'Inamorata Enel-Xum Naginata', 213073), (212644, 212644, 300, 300, 'Inamorata Enel-Xum Naginata', 213073), (212685, 212686, 100, 199, 'Inamorata Enel-Xum Quarterstaff', 210166), (212687, 212688, 200, 299, 'Inamorata Enel-Xum Quarterstaff', 210166), (212689, 212689, 300, 300, 'Inamorata Enel-Xum Quarterstaff', 210166), (212862, 212863, 100, 199, 'Inamorata Enel-Xum Rapier', 213075), (212864, 212865, 200, 299, 'Inamorata Enel-Xum Rapier', 213075), (212866, 212866, 300, 300, 'Inamorata Enel-Xum Rapier', 213075), (212394, 212395, 100, 199, 'Inamorata Enel-Xum Swatter', 210167), (212396, 212397, 200, 299, 'Inamorata Enel-Xum Swatter', 210167), (212398, 212398, 300, 300, 'Inamorata Enel-Xum Swatter', 210167), (212539, 212540, 100, 199, 'Inamorata Enel-Xum Tonfa', 214358), (212541, 212542, 200, 299, 'Inamorata Enel-Xum Tonfa', 214358), (212543, 212543, 300, 300, 'Inamorata Enel-Xum Tonfa', 214358), (212660, 212661, 100, 199, 'Inamorata Naginata', 213073), (212662, 212663, 200, 299, 'Inamorata Naginata', 213073), (212664, 212664, 300, 300, 'Inamorata Naginata', 213073), (212208, 212209, 100, 199, 'Inamorata Ocra Pistol', 210170), (212210, 212211, 200, 299, 'Inamorata Ocra Pistol', 210170), (212212, 212212, 300, 300, 'Inamorata Ocra Pistol', 210170), (212253, 212254, 100, 199, 'Inamorata Ocra Shotgun', 210175), (212255, 212256, 200, 299, 'Inamorata Ocra Shotgun', 210175), (212257, 212257, 300, 300, 'Inamorata Ocra Shotgun', 210175), (212273, 212274, 100, 199, 'Inamorata Ocra-Bhotaar Assault Rifle', 210174), (212275, 212276, 200, 299, 'Inamorata Ocra-Bhotaar Assault Rifle', 210174), (212277, 212277, 300, 300, 'Inamorata Ocra-Bhotaar Assault Rifle', 210174), (212288, 212289, 100, 199, 'Inamorata Ocra-Roch Assault Rifle', 210174), (212290, 212291, 200, 299, 'Inamorata Ocra-Roch Assault Rifle', 210174), (212292, 212292, 300, 300, 'Inamorata Ocra-Roch Assault Rifle', 210174), (212343, 212344, 100, 199, 'Inamorata Ocra-Shere Rifle', 210169), (212345, 212346, 200, 299, 'Inamorata Ocra-Shere Rifle', 210169), (212347, 212347, 300, 300, 'Inamorata Ocra-Shere Rifle', 210169), (212293, 212294, 100, 199, 'Inamorata Ocra-Xum Assault Rifle', 210174), (212295, 212296, 200, 299, 'Inamorata Ocra-Xum Assault Rifle', 210174), (212297, 212297, 300, 300, 'Inamorata Ocra-Xum Assault Rifle', 210174), (212213, 212214, 100, 199, 'Inamorata Pistol', 210170), (212215, 212216, 200, 299, 'Inamorata Pistol', 210170), (212217, 212217, 300, 300, 'Inamorata Pistol', 210170), (212665, 212666, 100, 199, 'Inamorata Quarterstaff', 210166), (212667, 212668, 200, 299, 'Inamorata Quarterstaff', 210166), (212669, 212669, 300, 300, 'Inamorata Quarterstaff', 210166), (212887, 212888, 100, 199, 'Inamorata Rapier', 213075), (212889, 212890, 200, 299, 'Inamorata Rapier', 213075), (212891, 212891, 300, 300, 'Inamorata Rapier', 213075), (212333, 212335, 100, 199, 'Inamorata Rifle', 210169), (212335, 212336, 200, 299, 'Inamorata Rifle', 210169), (212337, 212337, 300, 300, 'Inamorata Rifle', 210169), (212283, 212284, 100, 199, 'Inamorata Roch Assault Rifle', 210174), (212285, 212286, 200, 299, 'Inamorata Roch Assault Rifle', 210174), (212287, 212287, 300, 300, 'Inamorata Roch Assault Rifle', 210174), (212373, 212374, 100, 199, 'Inamorata Shere Bow', 210172), (212375, 212376, 200, 299, 'Inamorata Shere Bow', 210172), (212377, 212377, 300, 300, 'Inamorata Shere Bow', 210172), (212338, 212339, 100, 199, 'Inamorata Shere Rifle', 210169), (212340, 212341, 200, 299, 'Inamorata Shere Rifle', 210169), (212342, 212342, 300, 300, 'Inamorata Shere Rifle', 210169), (212258, 212259, 100, 199, 'Inamorata Shotgun', 210175), (212260, 212261, 200, 299, 'Inamorata Shotgun', 210175), (212262, 212262, 300, 300, 'Inamorata Shotgun', 210175), (212383, 212384, 100, 199, 'Inamorata Swatter', 210167), (212385, 212386, 200, 299, 'Inamorata Swatter', 210167), (212387, 212387, 300, 300, 'Inamorata Swatter', 210167), (212504, 212505, 100, 199, 'Inamorata Thar Cutlass', 213076), (212506, 212507, 200, 299, 'Inamorata Thar Cutlass', 213076), (212508, 212508, 300, 300, 'Inamorata Thar Cutlass', 213076), (212645, 212646, 100, 199, 'Inamorata Thar Naginata', 213073), (212647, 212648, 200, 299, 'Inamorata Thar Naginata', 213073), (212649, 212649, 300, 300, 'Inamorata Thar Naginata', 213073), (212670, 212671, 100, 199, 'Inamorata Thar Quarterstaff', 210166), (212672, 212673, 200, 299, 'Inamorata Thar Quarterstaff', 210166), (212674, 212674, 300, 300, 'Inamorata Thar Quarterstaff', 210166), (212877, 212878, 100, 199, 'Inamorata Thar Rapier', 213075), (212879, 212880, 200, 299, 'Inamorata Thar Rapier', 213075), (212881, 212881, 300, 300, 'Inamorata Thar Rapier', 213075), (212519, 212520, 100, 199, 'Inamorata Thar Tonfa', 214358), (212521, 212522, 200, 299, 'Inamorata Thar Tonfa', 214358), (212523, 212523, 300, 300, 'Inamorata Thar Tonfa', 214358), (212786, 212787, 100, 199, 'Inamorata Thar Trident', 214395), (212788, 212789, 200, 299, 'Inamorata Thar Trident', 214395), (212790, 212790, 300, 300, 'Inamorata Thar Trident', 214395), (212514, 212515, 100, 199, 'Inamorata Tonfa', 214358), (212516, 212517, 200, 299, 'Inamorata Tonfa', 214358), (212518, 212518, 300, 300, 'Inamorata Tonfa', 214358), (212791, 212792, 100, 199, 'Inamorata Trident', 214395), (212793, 212794, 200, 299, 'Inamorata Trident', 214395), (212795, 212795, 300, 300, 'Inamorata Trident', 214395), (212489, 212490, 100, 199, 'Inamorata Xum Cutlass', 213076), (212491, 212492, 200, 299, 'Inamorata Xum Cutlass', 213076), (212493, 212493, 300, 300, 'Inamorata Xum Cutlass', 213076), (212650, 212651, 100, 199, 'Inamorata Xum Naginata', 213073), (212652, 212653, 200, 299, 'Inamorata Xum Naginata', 213073), (212654, 212654, 300, 300, 'Inamorata Xum Naginata', 213073), (212675, 212676, 100, 199, 'Inamorata Xum Quarterstaff', 210166), (212677, 212678, 200, 299, 'Inamorata Xum Quarterstaff', 210166), (212679, 212679, 300, 300, 'Inamorata Xum Quarterstaff', 210166), (212872, 212873, 100, 199, 'Inamorata Xum Rapier', 213075), (212874, 212875, 200, 299, 'Inamorata Xum Rapier', 213075), (212876, 212876, 300, 300, 'Inamorata Xum Rapier', 213075), (212399, 212400, 100, 199, 'Inamorata Xum Swatter', 210167), (212401, 212402, 200, 299, 'Inamorata Xum Swatter', 210167), (212403, 212403, 300, 300, 'Inamorata Xum Swatter', 210167), (212534, 212535, 100, 199, 'Inamorata Xum Tonfa', 214358), (212536, 212537, 200, 299, 'Inamorata Xum Tonfa', 214358), (212538, 212538, 300, 300, 'Inamorata Xum Tonfa', 214358), (235852, 235852, 15, 15, 'Inattentive Brain Symbiant, Extermination Unit Aban', 215189), (235460, 235460, 15, 15, 'Inattentive Chest Symbiant, Artillery Unit Aban', 215181), (235683, 235683, 15, 15, 'Inattentive Chest Symbiant, Infantry Unit Aban', 215181), (235818, 235818, 15, 15, 'Inattentive Feet Symbiant, Infantry Unit Aban', 215187), (236369, 236369, 15, 15, 'Inattentive Left Arm Symbiant, Control Unit Aban', 215177), (235922, 235922, 15, 15, 'Inattentive Left Arm Symbiant, Extermination Unit Aban', 215175), (235700, 235700, 15, 15, 'Inattentive Left Arm Symbiant, Infantry Unit Aban', 215179), (236147, 236147, 15, 15, 'Inattentive Left Arm Symbiant, Support Unit Aban', 215175), (235582, 235582, 15, 15, 'Inattentive Left Hand Symbiant, Artillery Unit Aban', 215171), (236255, 236255, 15, 15, 'Inattentive Left Hand Symbiant, Support Unit Aban', 215171), (235973, 235973, 15, 15, 'Inattentive Left Wrist Symbiant, Extermination Unit Aban', 215198), (236204, 236204, 15, 15, 'Inattentive Left Wrist Symbiant, Support Unit Aban', 215198), (219126, 219126, 15, 15, 'Inattentive Ocular Symbiant, Artillery Unit Aban', 230979), (235837, 235837, 15, 15, 'Inattentive Ocular Symbiant, Extermination Unit Aban', 230979), (236060, 236060, 15, 15, 'Inattentive Ocular Symbiant, Support Unit Aban', 230980), (236335, 236335, 15, 15, 'Inattentive Right Arm Symbiant, Control Unit Aban', 215180), (235887, 235887, 15, 15, 'Inattentive Right Arm Symbiant, Extermination Unit Aban', 215178), (235548, 235548, 15, 15, 'Inattentive Right Hand Symbiant, Artillery Unit Aban', 215173), (236441, 236441, 15, 15, 'Inattentive Right Hand Symbiant, Control Unit Aban', 215173), (235766, 235766, 15, 15, 'Inattentive Right Hand Symbiant, Infantry Unit Aban', 215174), (236388, 236388, 15, 15, 'Inattentive Right Wrist Symbiant, Control Unit Aban', 215170), (235938, 235938, 15, 15, 'Inattentive Right Wrist Symbiant, Extermination Unit Aban', 215170), (236168, 236168, 15, 15, 'Inattentive Right Wrist Symbiant, Support Unit Aban', 215197), (235565, 235565, 15, 15, 'Inattentive Thigh Symbiant, Artillery Unit Aban', 215190), (236008, 236008, 15, 15, 'Inattentive Thigh Symbiant, Extermination Unit Aban', 215192), (236239, 236239, 15, 15, 'Inattentive Thigh Symbiant, Support Unit Aban', 215190), (236405, 236405, 15, 15, 'Inattentive Waist Symbiant, Control Unit Aban', 215193), (235956, 235956, 15, 15, 'Inattentive Waist Symbiant, Extermination Unit Aban', 215193), (226169, 226169, 1, 1, 'Incapacitate', 239241), (227466, 229951, 1, 300, 'Incarnator', 100339), (214977, 214977, 1, 1, 'Incomplete Blueprint of Gilthar', 130748), (267781, 267781, 250, 250, 'Incomplete Crystalised Memories', 300989), (162865, 162865, 1, 1, 'Incomplete Grid Hacker Crystal', 12223), (162869, 162869, 1, 1, 'Incomplete Grid Hacker Crystal', 12223), (162870, 162870, 1, 1, 'Incomplete Grid Hacker Crystal', 12223), (162871, 162871, 1, 1, 'Incomplete Grid Hacker Crystal', 12223), (162872, 162872, 1, 1, 'Incomplete Grid Hacker Crystal', 12223), (162873, 162873, 1, 1, 'Incomplete Grid Hacker Crystal', 12223), (284597, 284598, 1, 200, 'Incomplete Information Tool - Combined', 285134), (269804, 269804, 250, 250, 'Incomplete Permafrost Melting Tool', 269844), (157952, 157952, 190, 190, 'Incomplete Virral Egg', 158273), (152772, 152773, 121, 160, 'Independent Click Stabber', 13346), (230907, 230907, 1, 1, 'Indeterminated', 82197), (245270, 245270, 100, 100, 'Indigo Carmine', 100335), (249715, 249715, 1, 1, 'Indigo Conundrum Cloak of the Angels of Night', 255393), (285865, 285865, 200, 200, 'Indigo Fiber', 284331), (275715, 275715, 1, 1, 'Indigo Rune', 227628), (285892, 285892, 200, 200, 'Indigo Wax', 284331), (285876, 285876, 200, 200, 'Indigo Wick', 284331), (285858, 285858, 200, 200, 'Indigo Wire', 284331), (204566, 204566, 1, 1, 'Industrial Demolition Fudge', 155940), (225665, 225666, 1, 300, 'Indyana Kendan''s Ring of Pharmacy', 84067), (292507, 292507, 1, 1, 'Inert Bacteriophage', 292793), (295640, 295640, 1, 1, 'Inert Key of Galahad', 233133), (295643, 295643, 1, 1, 'Inert Key of Mordeth', 233133), (267737, 267737, 250, 250, 'Inert Knowledge Crystal', 151030), (275920, 275920, 1, 1, 'Inert Kyr''ozch Alpha Matrix', 275973), (275921, 275921, 1, 1, 'Inert Kyr''ozch Beta Matrix', 275974), (284285, 284285, 200, 200, 'Inert Kyr''ozch Teleportation Relay', 284346), (284286, 284286, 200, 200, 'Inert Kyr''ozch Teleportation Relay', 284347), (284287, 284287, 200, 200, 'Inert Kyr''ozch Teleportation Relay', 284348), (284288, 284288, 200, 200, 'Inert Kyr''ozch Teleportation Relay', 284349), (304223, 304223, 1, 1, 'Inert Reaper of Time', 304259), (302926, 302926, 300, 300, 'Inert Sigil of Alighieri', 235313), (302928, 302928, 300, 300, 'Inert Sigil of Machiavelli', 235317), (257959, 257959, 250, 250, 'Inertial Adjustment Processing Unit', 11618), (215621, 215622, 25, 300, 'Infantry Boots', 214751), (215460, 215461, 75, 300, 'Infantry Chest Cover', 214742), (223093, 223094, 1, 300, 'Infantry Crepuscule Leather Boots', 13265), (223085, 223086, 1, 300, 'Infantry Crepuscule Leather Gloves', 13279), (223089, 223090, 1, 300, 'Infantry Crepuscule Leather Jacket', 13249), (223091, 223092, 1, 300, 'Infantry Crepuscule Leather Pants', 213574), (223087, 223088, 1, 300, 'Infantry Crepuscule Leather Sleeve', 213487), (223083, 223084, 1, 300, 'Infantry Crepuscule Skinchip', 160722), (215615, 215616, 25, 300, 'Infantry Gloves', 214752), (215613, 215614, 75, 300, 'Infantry Helmet', 214734), (215623, 215624, 25, 300, 'Infantry Pants', 214753), (215617, 215618, 25, 300, 'Infantry Sleeves', 214749), (215619, 215620, 25, 300, 'Infantry Vest', 214750), (301994, 301994, 1, 1, 'Infatuated Boxer Shorts', 302032), (259958, 259958, 1, 1, 'Infectious Disease Sample Transportation Unit', 20409), (85626, 85625, 1, 199, 'Inferior Chilled Plasteel Armor Boots', 22885), (85586, 85585, 1, 199, 'Inferior Chilled Plasteel Armor Gloves', 31654), (85547, 85546, 1, 199, 'Inferior Chilled Plasteel Armor Helmet', 31736), (85500, 85499, 1, 199, 'Inferior Chilled Plasteel Armor Pants', 22920), (85730, 85729, 1, 199, 'Inferior Chilled Plasteel Armor Sleeves', 31642), (85674, 85673, 1, 199, 'Inferior Chilled Plasteel Body Armor', 31646), (85650, 22108, 1, 199, 'Inferior Energized Armor Boots', 13263), (85607, 22170, 1, 199, 'Inferior Energized Armor Gloves', 13277), (85567, 22223, 1, 199, 'Inferior Energized Armor Helmet', 10834), (85526, 22293, 1, 199, 'Inferior Energized Armor Pants', 13292), (85755, 21921, 1, 199, 'Inferior Energized Armor Sleeves', 13225), (85702, 22018, 1, 199, 'Inferior Energized Body Armor', 13243), (120582, 142685, 1, 199, 'Inferior Graft Armor Boots', 99787), (120581, 142683, 1, 199, 'Inferior Graft Armor Gloves', 99789), (120565, 142681, 1, 199, 'Inferior Graft Armor Helmet', 99798), (120579, 142679, 1, 199, 'Inferior Graft Armor Pants', 99791), (120584, 142689, 1, 199, 'Inferior Graft Armor Sleeves', 99793), (120583, 142687, 1, 199, 'Inferior Graft Body Armor', 99795), (85627, 22154, 1, 199, 'Inferior Heated Plasteel Armor Boots', 21978), (85587, 22208, 1, 199, 'Inferior Heated Plasteel Armor Gloves', 21979), (85548, 22258, 1, 199, 'Inferior Heated Plasteel Armor Helmet', 22270), (85501, 22343, 1, 199, 'Inferior Heated Plasteel Armor Pants', 21980), (85731, 21967, 1, 199, 'Inferior Heated Plasteel Armor Sleeves', 21976), (85675, 22076, 1, 199, 'Inferior Heated Plasteel Body Armor', 21977), (85641, 22116, 1, 199, 'Inferior Kevlar Armor Boots', 13265), (85598, 22178, 1, 199, 'Inferior Kevlar Armor Gloves', 13279), (85516, 22301, 1, 199, 'Inferior Kevlar Armor Pants', 13294), (85745, 21929, 1, 199, 'Inferior Kevlar Armor Sleeves', 13227), (85692, 22026, 1, 199, 'Inferior Kevlar Body Armor', 13249), (85691, 22004, 1, 199, 'Inferior Kevlar Vest', 21858), (85647, 85646, 1, 199, 'Inferior Links Energized Armor Boots', 22879), (85604, 85603, 1, 199, 'Inferior Links Energized Armor Gloves', 22935), (85564, 85563, 1, 199, 'Inferior Links Energized Armor Helmet', 31729), (85523, 85522, 1, 199, 'Inferior Links Energized Armor Pants', 22925), (85752, 85751, 1, 199, 'Inferior Links Energized Armor Sleeves', 22957), (85699, 85698, 1, 199, 'Inferior Links Energized Body Armor', 22983), (85636, 85635, 1, 199, 'Inferior Nail Armor Boots', 21864), (85510, 85509, 1, 199, 'Inferior Nail Armor Pants', 22352), (85740, 85739, 1, 199, 'Inferior Nail Armor Sleeves', 21848), (85684, 85683, 1, 199, 'Inferior Nail Body Armor', 21856), (120588, 142686, 1, 199, 'Inferior Organic Armor Boots', 99792), (120587, 142684, 1, 199, 'Inferior Organic Armor Gloves', 99790), (120586, 142682, 1, 199, 'Inferior Organic Armor Helmet', 99799), (120585, 142680, 1, 199, 'Inferior Organic Armor Pants', 99788), (120590, 142690, 1, 199, 'Inferior Organic Armor Sleeves', 99794), (120589, 142688, 1, 199, 'Inferior Organic Body Armor', 99796), (88074, 88073, 1, 199, 'Inferior Plasteel Battle Suit', 41162), (85649, 85648, 1, 199, 'Inferior Raven''s Energized Armor Boots', 22880), (85606, 85605, 1, 199, 'Inferior Raven''s Energized Armor Gloves', 22934), (85566, 85565, 1, 199, 'Inferior Raven''s Energized Armor Helmet', 31730), (85525, 85524, 1, 199, 'Inferior Raven''s Energized Armor Pants', 22926), (85754, 85753, 1, 199, 'Inferior Raven''s Energized Armor Sleeves', 22959), (85701, 85700, 1, 199, 'Inferior Raven''s Energized Body Armor', 22984), (85622, 85621, 1, 199, 'Inferior Titan Plasteel Armor Boots', 22884), (85582, 85581, 1, 199, 'Inferior Titan Plasteel Armor Gloves', 31656), (85543, 85542, 1, 199, 'Inferior Titan Plasteel Armor Helmet', 31734), (85496, 85495, 1, 199, 'Inferior Titan Plasteel Armor Pants', 22919), (85726, 85725, 1, 199, 'Inferior Titan Plasteel Armor Sleeves', 31644), (85670, 85669, 1, 199, 'Inferior Titan Plasteel Body Armor', 31648), (85624, 85623, 1, 199, 'Inferior Vito''s Plasteel Armor Boots', 22883), (85584, 85583, 1, 199, 'Inferior Vito''s Plasteel Armor Gloves', 31655), (85545, 85544, 1, 199, 'Inferior Vito''s Plasteel Armor Helmet', 31735), (85498, 85497, 1, 199, 'Inferior Vito''s Plasteel Armor Pants', 22921), (85728, 85727, 1, 199, 'Inferior Vito''s Plasteel Armor Sleeves', 31643), (85672, 85671, 1, 199, 'Inferior Vito''s Plasteel Body Armor', 31647), (306152, 306152, 1, 1, 'Infernal Horns', 306123), (295084, 295084, 1, 1, 'Inferno Garden Access', 295105), (295123, 295123, 1, 1, 'Inferno Mission Reward', 281837), (295110, 295110, 1, 1, 'Inferno Sanctuary Access', 295104), (214207, 214207, 300, 300, 'Influencer', 210185), (121305, 121304, 1, 200, 'Information Tool - Aggressive', 99276), (283850, 283851, 1, 200, 'Information Tool - Combined', 285135), (121306, 121307, 1, 200, 'Information Tool - Level', 99263), (121309, 121308, 1, 200, 'Information Tool - Life and Nano Points', 99265), (137193, 137194, 1, 200, 'Infra Red Targeting Scope', 130774), (155760, 155760, 20, 20, 'Infrared Computer Storage Device (Empty)', 156513), (155758, 155758, 20, 20, 'Infrared Transfer Module', 156515), (274556, 274556, 250, 250, 'Infused Ancient Defender', 218752), (274554, 274554, 250, 250, 'Infused Ancient Nano Enhancer', 218768), (274555, 274555, 250, 250, 'Infused Ancient Speed Preservation Unit', 218753), (274553, 274553, 250, 250, 'Infused Ancient Vision Preservation Unit', 218752), (292187, 292188, 200, 200, 'Infused Computer Deck Range Increaser', 292166), (292188, 292189, 201, 249, 'Infused Computer Deck Range Increaser', 292166), (292190, 292190, 250, 250, 'Infused Computer Deck Range Increaser', 292166), (274560, 274560, 300, 300, 'Infused Dust Brigade Engineer Pistol', 264787), (292152, 292153, 200, 200, 'Infused Hardcore CPU Upgrade', 292168), (292153, 292154, 201, 249, 'Infused Hardcore CPU Upgrade', 292168), (292155, 292155, 250, 250, 'Infused Hardcore CPU Upgrade', 292168), (290625, 290625, 200, 200, 'Infused Morphing Memory', 290616), (290626, 290627, 201, 249, 'Infused Morphing Memory', 290616), (290627, 290627, 250, 250, 'Infused Morphing Memory', 290617), (292183, 292184, 200, 200, 'Infused NCU Coolant Sink', 292167), (292184, 292185, 201, 249, 'Infused NCU Coolant Sink', 292167), (292186, 292186, 250, 250, 'Infused NCU Coolant Sink', 292167), (274557, 274557, 300, 300, 'Infused Solar-Powered Master Engineer Pistol', 264789), (267912, 267913, 20, 300, 'Infused Viral Compiler', 119132), (214260, 214261, 100, 199, 'Ingenious Pistol', 210170), (214262, 214263, 200, 299, 'Ingenious Pistol', 210170), (271561, 271562, 1, 300, 'Ingram Blaster 23-X - 000', 13317), (271565, 271566, 1, 300, 'Ingram Blaster 23-X - 401', 13317), (271567, 271568, 1, 300, 'Ingram Blaster 23-X - C01', 13317), (124484, 124485, 1, 99, 'Ingram Morning Star', 21148), (124486, 124486, 100, 100, 'Ingram Morning Star (Live Inside the Wind)', 21148), (303436, 303436, 1, 1, 'Initial Outzone Explorer Pack', 99664), (304569, 304569, 1, 1, 'Initial Outzone Explorer Pack', 304441), (253134, 253134, 1, 1, 'Initial Strike', 239167), (303233, 303233, 1, 1, 'Initiate Teachings of the Immortal One', 269476), (248350, 248350, 1, 1, 'Injector Dagger', 131264), (248357, 248357, 1, 1, 'Injury Report', 154675), (267523, 267523, 300, 300, 'Inner Balance', 43104), (233801, 233802, 100, 199, 'Inner Circle Strategic Flamer', 33159), (204614, 204614, 1, 1, 'Inner Faith', 12691), (305509, 305509, 1, 1, 'Inner Peace', 12691), (206376, 206376, 1, 1, 'Inner Sanctum Gateway 1 Wearable', 84059), (206377, 206377, 1, 1, 'Inner Sanctum Gateway 2 Wearable', 84059), (227092, 227092, 1, 1, 'Inner Sanctum Knowledge', 300957), (206258, 206258, 1, 1, 'Inner Sanctum Knowledge (bottom half of key)', 300956), (206257, 206257, 1, 1, 'Inner Sanctum Knowledge (top half of key)', 300958), (207108, 207108, 1, 1, 'Inner Sanctum Pass', 300959), (206375, 206375, 1, 1, 'Inner Sanctum Portal Wearable', 84059), (214264, 214264, 300, 300, 'Innovatory Pistol', 210170), (287136, 287136, 200, 200, 'Inorganic Crystalline Oxide Tiles', 287209), (252324, 252324, 1, 1, 'Insight', 255651), (214788, 214788, 1, 1, 'Insignia of Aban', 227273), (224052, 224052, 1, 1, 'Insignia of Cama', 227274), (214881, 214881, 1, 1, 'Insignia of Dalja', 227275), (214781, 214781, 1, 1, 'Insignia of Enel', 227277), (214880, 214880, 1, 1, 'Insignia of Gilthar', 227278), (224051, 224051, 1, 1, 'Insignia of Lord Galahad', 227279), (224050, 224050, 1, 1, 'Insignia of Lord Mordeth', 227280), (214840, 214840, 1, 1, 'Insignia of Ocra', 227282), (214855, 214855, 1, 1, 'Insignia of Roch', 227283), (214782, 214782, 1, 1, 'Insignia of Shere', 227284), (214789, 214789, 1, 1, 'Insignia of Thrak', 227285), (224049, 224049, 1, 1, 'Insignia of Vanya', 227286), (229047, 229047, 220, 220, 'Insignia of the Chosen', 227628), (229043, 229043, 220, 220, 'Insignia of the Faithful', 227629), (231154, 231154, 1, 1, 'Insignia of the Redeemed', 227276), (231155, 231155, 1, 1, 'Insignia of the Unredeemed', 227281), (236152, 236152, 1, 1, 'Insipid Ring', 84064), (225753, 225753, 1, 1, 'Insipid Ring for the Artillery Unit', 84063), (225758, 225758, 1, 1, 'Insipid Ring for the Control Unit', 84063), (223998, 223998, 1, 1, 'Insipid Ring for the Extermination Unit', 84063), (225760, 225760, 1, 1, 'Insipid Ring for the Infantry Unit', 84063), (225759, 225759, 1, 1, 'Insipid Ring for the Support Unit', 84063), (214203, 214204, 100, 199, 'Inspirator', 210185), (214205, 214206, 200, 299, 'Inspirator', 210185), (229898, 229898, 1, 1, 'Install Explosive Device', 239211), (229920, 229920, 1, 1, 'Install Notum Depletion Device', 239171), (301781, 301781, 1, 1, 'Instant Christmas Tree', 245610), (288823, 288823, 1, 1, 'Instant Grid Conversion Beacon', 285364), (288824, 288824, 1, 1, 'Instant Grid Conversion Beacon', 285364), (293410, 293410, 1, 1, 'Instant Grid Conversion Beacon', 285364), (293411, 293411, 1, 1, 'Instant Grid Conversion Beacon', 285364), (292312, 292312, 1, 1, 'Instant Perk Reset Item', 259105), (294765, 294765, 1, 1, 'Instant Picnic', 99232), (303646, 303646, 1, 1, 'Instant Tent', 303681), (147348, 147348, 179, 179, 'Instruction Disc (A Maker''s Touch)', 83413), (147073, 147073, 80, 80, 'Instruction Disc (Abscess Explosion)', 83375), (160840, 160840, 142, 142, 'Instruction Disc (Absolute Concentration)', 83285), (147272, 147272, 140, 140, 'Instruction Disc (Absorb Punishment)', 144319), (147903, 147903, 66, 66, 'Instruction Disc (Absorption Shield)', 144420), (147652, 147652, 33, 33, 'Instruction Disc (Abyssal Flames)', 83541), (147653, 147653, 24, 24, 'Instruction Disc (Accelerated Decay)', 83559), (147654, 147654, 24, 24, 'Instruction Disc (Accelerated Titanium Pellet)', 83553), (147985, 147985, 74, 74, 'Instruction Disc (Accomplished Health Haggler)', 83411), (147074, 147074, 152, 152, 'Instruction Disc (Accumulate Scars)', 83412), (147655, 147655, 27, 27, 'Instruction Disc (Acidic Conversion)', 83517), (147075, 147075, 149, 149, 'Instruction Disc (Acidic Lesions)', 83376), (147656, 147656, 7, 7, 'Instruction Disc (Acidic Projection)', 83517), (147493, 147493, 33, 33, 'Instruction Disc (Active Distributed Entanglement)', 83426), (147494, 147494, 20, 20, 'Instruction Disc (Active Micro Entanglement)', 83426), (147076, 147076, 33, 33, 'Instruction Disc (Active Remedy)', 83407), (147077, 147077, 53, 53, 'Instruction Disc (Active Viral Agent)', 83375), (163130, 163130, 149, 149, 'Instruction Disc (Active Viral Compressor)', 83360), (147904, 147904, 132, 132, 'Instruction Disc (Advanced Absorption Shield)', 144422), (146902, 146902, 136, 136, 'Instruction Disc (Advanced Administrator-Droid)', 83471), (146903, 146903, 80, 80, 'Instruction Disc (Advanced Aide-Droid)', 83470), (147349, 147349, 40, 40, 'Instruction Disc (Advanced Android)', 83465), (146904, 146904, 57, 57, 'Instruction Disc (Advanced Assistant-Droid)', 83470), (146905, 146905, 37, 37, 'Instruction Disc (Advanced Attendant-Droid)', 83470), (147495, 147495, 142, 142, 'Instruction Disc (Advanced Augmentation Cloud)', 144463), (147350, 147350, 14, 14, 'Instruction Disc (Advanced Automaton)', 83465), (146906, 146906, 165, 165, 'Instruction Disc (Advanced Bodyguard)', 83472), (147078, 147078, 136, 136, 'Instruction Disc (Advanced Cellular Rebuild)', 83412), (147657, 147657, 163, 163, 'Instruction Disc (Advanced Collapsing Barrier)', 144318), (147905, 147905, 119, 119, 'Instruction Disc (Advanced Combat Barrier)', 144422), (147351, 147351, 126, 126, 'Instruction Disc (Advanced Defensive Screen)', 144318), (147986, 147986, 123, 123, 'Instruction Disc (Advanced Delayed Health Payment)', 83412), (146817, 146817, 150, 150, 'Instruction Disc (Advanced Face Graft)', 83565), (147352, 147352, 179, 179, 'Instruction Disc (Advanced Force Field)', 144320), (147353, 147353, 80, 80, 'Instruction Disc (Advanced Gladiatorbot)', 83470), (147354, 147354, 116, 116, 'Instruction Disc (Advanced Guardbot)', 83471), (147987, 147987, 103, 103, 'Instruction Disc (Advanced Health Freeloader)', 144340), (147988, 147988, 30, 30, 'Instruction Disc (Advanced Health Funnel)', 144337), (147989, 147989, 169, 169, 'Instruction Disc (Advanced Health Plunder)', 144344), (146907, 146907, 20, 20, 'Instruction Disc (Advanced Helper)', 83465), (147496, 147496, 103, 103, 'Instruction Disc (Advanced Insurance Hack)', 83410), (147658, 147658, 107, 107, 'Instruction Disc (Advanced Layered Protection)', 144316), (146908, 146908, 149, 149, 'Instruction Disc (Advanced Minion)', 83472), (147080, 147080, 93, 93, 'Instruction Disc (Advanced Nano Gorger)', 83375), (147497, 147497, 142, 142, 'Instruction Disc (Advanced Policy Skim)', 83411), (147355, 147355, 119, 119, 'Instruction Disc (Advanced Protective Field)', 144318), (146909, 146909, 109, 109, 'Instruction Disc (Advanced Secretary-Droid)', 83471), (147356, 147356, 109, 109, 'Instruction Disc (Advanced Shielding Barrier)', 144318), (146714, 146714, 146, 146, 'Instruction Disc (Advanced Survival Technique)', 83409), (144954, 144954, 93, 93, 'Instruction Disc (Advanced Symbol Manipulation)', 83459), (147357, 147357, 152, 152, 'Instruction Disc (Advanced Warbot)', 83471), (147358, 147358, 169, 169, 'Instruction Disc (Advanced Warmachine)', 83472), (146910, 146910, 7, 7, 'Instruction Disc (Advanced Worker)', 83465), (147359, 147359, 189, 189, 'Instruction Disc (Aegis Barrier)', 144320), (147906, 147906, 90, 90, 'Instruction Disc (Aggressive Captivation)', 83385), (147273, 147273, 27, 27, 'Instruction Disc (Aggressive Instincts)', 83385), (147659, 147659, 30, 30, 'Instruction Disc (Aggressive Mutagen)', 83529), (147081, 147081, 159, 159, 'Instruction Disc (All-Consuming Toxin)', 83376), (146715, 146715, 50, 50, 'Instruction Disc (Alleviate Pain)', 83408), (146911, 146911, 136, 136, 'Instruction Disc (Allure of Servitude)', 83487), (147082, 147082, 185, 185, 'Instruction Disc (Alpha and Omega)', 83286), (147990, 147990, 4, 4, 'Instruction Disc (Amateur Health Haggler)', 83407), (146818, 146818, 40, 40, 'Instruction Disc (Anatomy Lesson)', 144461), (147360, 147360, 33, 33, 'Instruction Disc (Android)', 83465), (146912, 146912, 27, 27, 'Instruction Disc (Anger Addlement)', 83417), (144955, 144955, 4, 4, 'Instruction Disc (Anger Manifestation)', 144373), (161404, 161404, 103, 103, 'Instruction Disc (Anger of the Porcupine)', 83363), (151851, 151851, 110, 110, 'Instruction Disc (Anima of Fathomless Rage)', 83437), (151853, 151853, 156, 156, 'Instruction Disc (Anima of Implacable Hatred)', 83437), (151854, 151854, 189, 189, 'Instruction Disc (Anima of Maddening Wrath)', 83437), (151855, 151855, 212, 212, 'Instruction Disc (Anima of Pure Malevolence)', 83437), (151856, 151856, 67, 67, 'Instruction Disc (Anima of Relentless Fury)', 83437), (151857, 151857, 239, 239, 'Instruction Disc (Anima of The Abomination)', 83437), (151858, 151858, 37, 37, 'Instruction Disc (Anima of Unleashed Malice)', 83437), (151852, 151852, 14, 14, 'Instruction Disc (Anima of Unrestrained Ferocity)', 83437), (147660, 147660, 165, 165, 'Instruction Disc (Annihilating Hadron String)', 83564), (147907, 147907, 70, 70, 'Instruction Disc (Annoying Presence)', 83385), (144956, 144956, 50, 50, 'Instruction Disc (Anticipation of Retaliation)', 83391), (202893, 202893, 133, 133, 'Instruction Disc (Anvils Bane)', 83298), (203896, 203896, 74, 74, 'Instruction Disc (Appeal for Freedom)', 83355), (147993, 147993, 17, 17, 'Instruction Disc (Apprentice Health Haggler)', 83408), (147991, 147991, 24, 24, 'Instruction Disc (Apprentice: Electrical Engineering)', 83386), (147992, 147992, 27, 27, 'Instruction Disc (Apprentice: Field Quantum Physics)', 83394), (147994, 147994, 30, 30, 'Instruction Disc (Apprentice: Mechanical Engineering)', 83451), (147995, 147995, 33, 33, 'Instruction Disc (Apprentice: Pharmaceuticals)', 83473), (147996, 147996, 33, 33, 'Instruction Disc (Apprentice: Weapon Smithing)', 83573), (147274, 147274, 37, 37, 'Instruction Disc (Arctic Cloak)', 83363), (146716, 146716, 83, 83, 'Instruction Disc (Arctic Gale)', 83363), (147661, 147661, 73, 73, 'Instruction Disc (Arctic Welcome)', 83525), (147361, 147361, 1, 1, 'Instruction Disc (Armor Megaboost)', 83341), (147997, 147997, 185, 185, 'Instruction Disc (Armor Trade-In)', 144334), (203162, 203162, 161, 161, 'Instruction Disc (Art of peace)', 83342), (146819, 146819, 139, 139, 'Instruction Disc (Assassin''s Grin)', 144464), (147908, 147908, 50, 50, 'Instruction Disc (Assault Rifle Mastery)', 83342), (205269, 205269, 117, 117, 'Instruction Disc (Assist Aggression Subsystem)', 83467), (205254, 205254, 15, 15, 'Instruction Disc (Assist Combat Array)', 83467), (146820, 146820, 86, 86, 'Instruction Disc (Assume Profession: Adventurer)', 83505), (146821, 146821, 109, 109, 'Instruction Disc (Assume Profession: Bureaucrat)', 83505), (146822, 146822, 103, 103, 'Instruction Disc (Assume Profession: Doctor)', 83505), (146823, 146823, 76, 76, 'Instruction Disc (Assume Profession: Enforcer)', 83505), (146824, 146824, 90, 90, 'Instruction Disc (Assume Profession: Engineer)', 83505), (146825, 146825, 96, 96, 'Instruction Disc (Assume Profession: Fixer)', 83505), (146826, 146826, 83, 83, 'Instruction Disc (Assume Profession: Martial Artist)', 83505), (146827, 146827, 113, 113, 'Instruction Disc (Assume Profession: Meta-Physicist)', 83505), (146828, 146828, 119, 119, 'Instruction Disc (Assume Profession: Nanotechnician)', 83505), (146829, 146829, 80, 80, 'Instruction Disc (Assume Profession: Soldier)', 83505), (146830, 146830, 99, 99, 'Instruction Disc (Assume Profession: Trader)', 83505), (147662, 147662, 159, 159, 'Instruction Disc (Atomic Collapse)', 83563), (147909, 147909, 27, 27, 'Instruction Disc (Attack Booster)', 83344), (147498, 147498, 106, 106, 'Instruction Disc (Augmentation Cloud)', 144462), (147663, 147663, 50, 50, 'Instruction Disc (Augmented Energized Beam)', 83536), (146913, 146913, 43, 43, 'Instruction Disc (Authority Figure)', 83489), (147910, 147910, 106, 106, 'Instruction Disc (Automatic Targeting)', 83343), (147362, 147362, 7, 7, 'Instruction Disc (Automaton)', 83465), (147083, 147083, 146, 146, 'Instruction Disc (Autonomous Viral Agent)', 83376), (147275, 147275, 4, 4, 'Instruction Disc (Avenging Shield)', 83363), (148084, 148084, 44, 44, 'Instruction Disc (Average Delayed Health Payment)', 83409), (148085, 148085, 70, 70, 'Instruction Disc (Average Health Freeloader)', 144339), (148086, 148086, 10, 10, 'Instruction Disc (Average Health Funnel)', 144336), (148087, 148087, 149, 149, 'Instruction Disc (Average Health Plunder)', 144342), (147499, 147499, 57, 57, 'Instruction Disc (Back Pain)', 83500), (162760, 162760, 132, 132, 'Instruction Disc (Backyard Revitalization)', 83412), (147664, 147664, 10, 10, 'Instruction Disc (Bacterial Invasion)', 83529), (147567, 147567, 24, 24, 'Instruction Disc (Bad Blood)', 83385), (147998, 147998, 7, 7, 'Instruction Disc (Balanced Striker)', 83575), (147276, 147276, 57, 57, 'Instruction Disc (Baleful Stare)', 83385), (147665, 147665, 106, 106, 'Instruction Disc (Ball and Chain)', 83423), (161419, 161419, 47, 47, 'Instruction Disc (Ballad of Smoke)', 83474), (161422, 161422, 99, 99, 'Instruction Disc (Ballad of the Desperado)', 83474), (161425, 161425, 142, 142, 'Instruction Disc (Ballad of the Pistolero)', 83474), (161428, 161428, 169, 169, 'Instruction Disc (Ballad of the Plains Wanderer)', 83474), (147666, 147666, 113, 113, 'Instruction Disc (Bane of the Living)', 83532), (147277, 147277, 83, 83, 'Instruction Disc (Barbaric Blades)', 83363), (203694, 203694, 168, 168, 'Instruction Disc (Bargain with Fate)', 83355), (147667, 147667, 96, 96, 'Instruction Disc (Barrage of Blades)', 83322), (147668, 147668, 109, 109, 'Instruction Disc (Barrage of Fire)', 83317), (146914, 146914, 129, 129, 'Instruction Disc (Basic Administrator)', 83471), (146915, 146915, 70, 70, 'Instruction Disc (Basic Aide-Droid)', 83470), (146916, 146916, 47, 47, 'Instruction Disc (Basic Assistant-Droid)', 83470), (146917, 146917, 27, 27, 'Instruction Disc (Basic Attendant-Droid)', 83465), (146918, 146918, 159, 159, 'Instruction Disc (Basic Bodyguard)', 83472), (147669, 147669, 73, 73, 'Instruction Disc (Basic Crystalizing Ray)', 83525), (147363, 147363, 37, 37, 'Instruction Disc (Basic Defensive Screen)', 144316), (147364, 147364, 159, 159, 'Instruction Disc (Basic Force Field)', 144319), (146919, 146919, 14, 14, 'Instruction Disc (Basic Helper-Droid)', 83465), (147670, 147670, 17, 17, 'Instruction Disc (Basic Humidity Extractor)', 83461), (147500, 147500, 4, 4, 'Instruction Disc (Basic Insurance Hack)', 83407), (146920, 146920, 142, 142, 'Instruction Disc (Basic Minion)', 83472), (147084, 147084, 149, 149, 'Instruction Disc (Basic Omni-Med Enhancement)', 144325), (147501, 147501, 66, 66, 'Instruction Disc (Basic Policy Skim)', 83409), (147365, 147365, 33, 33, 'Instruction Disc (Basic Protective Field)', 144316), (146921, 146921, 96, 96, 'Instruction Disc (Basic Secretary-Droid)', 83471), (147366, 147366, 27, 27, 'Instruction Disc (Basic Shielding Barrier)', 83341), (146922, 146922, 1, 1, 'Instruction Disc (Basic Worker-Droid)', 83465), (146923, 146923, 17, 17, 'Instruction Disc (Baton of Authority)', 83566), (146924, 146924, 162, 162, 'Instruction Disc (Baton of Command)', 83566), (146925, 146925, 99, 99, 'Instruction Disc (Baton of Leadership)', 83566), (147911, 147911, 152, 152, 'Instruction Disc (Battlefield Endurance)', 144329), (154919, 154919, 90, 90, 'Instruction Disc (Beacon Warp)', 83565), (203890, 203890, 24, 24, 'Instruction Disc (Beg for Freedom)', 83355), (146926, 146926, 33, 33, 'Instruction Disc (Bend Will)', 83487), (147278, 147278, 30, 30, 'Instruction Disc (Berserk Rage)', 301299), (203989, 203989, 78, 78, 'Instruction Disc (Beseech Freedom)', 83355), (147085, 147085, 146, 146, 'Instruction Disc (Bestow Healing)', 83412), (147671, 147671, 30, 30, 'Instruction Disc (Bewilder)', 83417), (147086, 147086, 24, 24, 'Instruction Disc (Bind Wounds)', 83408), (147672, 147672, 119, 119, 'Instruction Disc (Bio-Acid Spray)', 83520), (144957, 144957, 37, 37, 'Instruction Disc (BioMet Mastery)', 83346), (162751, 162751, 93, 93, 'Instruction Disc (Biosign Rejuvenator)', 83410), (147088, 147088, 27, 27, 'Instruction Disc (Biotoxin MK I)', 83371), (147089, 147089, 43, 43, 'Instruction Disc (Biotoxin MK II)', 83371), (147090, 147090, 73, 73, 'Instruction Disc (Biotoxin MK III)', 83375), (147091, 147091, 93, 93, 'Instruction Disc (Biotoxin MK IV)', 83376), (161410, 161410, 103, 103, 'Instruction Disc (Bite of the Wind)', 83497), (146717, 146717, 126, 126, 'Instruction Disc (Biting Blades)', 83363), (162748, 162748, 70, 70, 'Instruction Disc (Blackmarket Prescription)', 83410), (147673, 147673, 86, 86, 'Instruction Disc (Blade Chaos)', 83549), (161392, 161392, 66, 66, 'Instruction Disc (Blanket of Shadows)', 83361), (147674, 147674, 169, 169, 'Instruction Disc (Blaze of Hephaestos)', 83318), (147675, 147675, 33, 33, 'Instruction Disc (Blight)', 83375), (146927, 146927, 50, 50, 'Instruction Disc (Blizzard of Red Tape)', 83422), (147092, 147092, 24, 24, 'Instruction Disc (Blood Circle)', 83407), (147502, 147502, 116, 116, 'Instruction Disc (Blood Makes Noise)', 83464), (147093, 147093, 129, 129, 'Instruction Disc (Bloom of Health)', 83412), (162344, 162344, 159, 159, 'Instruction Disc (Blur of Claws)', 144462), (147094, 147094, 43, 43, 'Instruction Disc (Bodily Amplification)', 83502), (147095, 147095, 146, 146, 'Instruction Disc (Bodily Purification)', 83413), (147096, 147096, 10, 10, 'Instruction Disc (Bodily Reinforcement)', 144325), (147676, 147676, 152, 152, 'Instruction Disc (Boil Blood)', 83372), (147677, 147677, 126, 126, 'Instruction Disc (Boil from Within)', 83379), (205278, 205278, 174, 174, 'Instruction Disc (Boost Aggression Subsystem)', 83467), (205263, 205263, 77, 77, 'Instruction Disc (Boost Combat Array)', 83467), (147912, 147912, 17, 17, 'Instruction Disc (Boot Camp Toughness)', 83348), (155448, 155448, 67, 67, 'Instruction Disc (Bootleg Beamers ''n Bolters (OP-C))', 144451), (155443, 155443, 120, 120, 'Instruction Disc (Bootleg Beamers ''n Bolters (OP-CC))', 144452), (155445, 155445, 107, 107, 'Instruction Disc (Bootleg Beamers ''n Bolters (OP-CLX))', 144452), (155444, 155444, 113, 113, 'Instruction Disc (Bootleg Beamers ''n Bolters (OP-CLXXX))', 144452), (155446, 155446, 103, 103, 'Instruction Disc (Bootleg Beamers ''n Bolters (OP-CXL))', 144451), (155447, 155447, 90, 90, 'Instruction Disc (Bootleg Beamers ''n Bolters (OP-CXX))', 144451), (155450, 155450, 34, 34, 'Instruction Disc (Bootleg Beamers ''n Bolters (OP-LX))', 144450), (155449, 155449, 54, 54, 'Instruction Disc (Bootleg Beamers ''n Bolters (OP-LXXX))', 144450), (155451, 155451, 21, 21, 'Instruction Disc (Bootleg Beamers ''n Bolters (OP-XL))', 144450), (155452, 155452, 8, 8, 'Instruction Disc (Bootleg Beamers ''n Bolters (OP-XX))', 144450), (155438, 155438, 67, 67, 'Instruction Disc (Bootleg Blades ''n Blunts (OP-C))', 144448), (155433, 155433, 120, 120, 'Instruction Disc (Bootleg Blades ''n Blunts (OP-CC))', 144449), (155435, 155435, 107, 107, 'Instruction Disc (Bootleg Blades ''n Blunts (OP-CLX))', 144449), (155434, 155434, 113, 113, 'Instruction Disc (Bootleg Blades ''n Blunts (OP-CLXXX))', 144449), (155436, 155436, 103, 103, 'Instruction Disc (Bootleg Blades ''n Blunts (OP-CXL))', 144448), (155437, 155437, 90, 90, 'Instruction Disc (Bootleg Blades ''n Blunts (OP-CXX))', 144448), (155440, 155440, 34, 34, 'Instruction Disc (Bootleg Blades ''n Blunts (OP-LX))', 144447), (155439, 155439, 54, 54, 'Instruction Disc (Bootleg Blades ''n Blunts (OP-LXXX))', 144447), (155441, 155441, 21, 21, 'Instruction Disc (Bootleg Blades ''n Blunts (OP-XL))', 144447), (155442, 155442, 8, 8, 'Instruction Disc (Bootleg Blades ''n Blunts (OP-XX))', 144447), (203936, 203936, 80, 80, 'Instruction Disc (Bought Freedom)', 83355), (203942, 203942, 160, 160, 'Instruction Disc (Bought Indulgence)', 83355), (147678, 147678, 149, 149, 'Instruction Disc (Boundless Humidity Extractor)', 83461), (147999, 147999, 97, 97, 'Instruction Disc (Brain Bender)', 83418), (148000, 148000, 50, 50, 'Instruction Disc (Brain Swap)', 83417), (147279, 147279, 142, 142, 'Instruction Disc (Brave Challenger to Behemoth)', 144366), (147280, 147280, 119, 119, 'Instruction Disc (Brave Challenger to Colossus)', 144364), (147284, 147284, 14, 14, 'Instruction Disc (Brave Challenger to Cyclops)', 83401), (147281, 147281, 76, 76, 'Instruction Disc (Brave Challenger to Gargantua)', 144363), (147282, 147282, 132, 132, 'Instruction Disc (Brave Challenger to Leviathan)', 144365), (147283, 147283, 40, 40, 'Instruction Disc (Brave Challenger to Titan)', 144362), (204013, 204013, 52, 52, 'Instruction Disc (Break Chains)', 83355), (203902, 203902, 149, 149, 'Instruction Disc (Bribe for Freedom)', 83355), (146831, 146831, 47, 47, 'Instruction Disc (Brief Interrogation)', 83422), (147679, 147679, 24, 24, 'Instruction Disc (Brief Poison Fog)', 83302), (148001, 148001, 33, 33, 'Instruction Disc (Bright Shiny Sparkling Thing)', 83417), (147285, 147285, 73, 73, 'Instruction Disc (Bristling Guard)', 83363), (147286, 147286, 10, 10, 'Instruction Disc (Bristling Shield)', 83363), (147680, 147680, 159, 159, 'Instruction Disc (Brutal Cornea Attack)', 83462), (147287, 147287, 76, 76, 'Instruction Disc (Brutal Thug)', 83347), (148002, 148002, 96, 96, 'Instruction Disc (Bulk Trader)', 83489), (147681, 147681, 189, 189, 'Instruction Disc (Burden of Atlas)', 83424), (147682, 147682, 93, 93, 'Instruction Disc (Burn From Within)', 83543), (147683, 147683, 182, 182, 'Instruction Disc (Burning Bones)', 83546), (147684, 147684, 57, 57, 'Instruction Disc (Burning Orb)', 83542), (147685, 147685, 126, 126, 'Instruction Disc (Burning Quartet)', 83544), (147288, 147288, 80, 80, 'Instruction Disc (Burning Rage)', 301299), (147686, 147686, 93, 93, 'Instruction Disc (Burning Triumvirate)', 83543), (204042, 204042, 63, 63, 'Instruction Disc (Burst Bonds (Other))', 83355), (203688, 203688, 53, 53, 'Instruction Disc (Burst Bonds)', 83355), (203703, 203703, 62, 62, 'Instruction Disc (Bypass Limitations)', 83355), (146719, 146719, 179, 179, 'Instruction Disc (Calia''s Form: Pit Lizard (Other))', 83480), (146720, 146720, 182, 182, 'Instruction Disc (Calia''s Form: Pit Lizard (Team))', 83480), (146718, 146718, 172, 172, 'Instruction Disc (Calia''s Form: Pit Lizard)', 83480), (146725, 146725, 165, 165, 'Instruction Disc (Calia''s Form: Sabretooth (Other))', 83478), (146726, 146726, 175, 175, 'Instruction Disc (Calia''s Form: Sabretooth (Team))', 83478), (146724, 146724, 159, 159, 'Instruction Disc (Calia''s Form: Sabretooth)', 83478), (146728, 146728, 159, 159, 'Instruction Disc (Calia''s Form: Wolf (Other))', 83484), (146729, 146729, 162, 162, 'Instruction Disc (Calia''s Form: Wolf (Team))', 83484), (146727, 146727, 156, 156, 'Instruction Disc (Calia''s Form: Wolf)', 83484), (203217, 203217, 199, 199, 'Instruction Disc (Call of the Maelstorm)', 83387), (144818, 144818, 156, 156, 'Instruction Disc (Calling of Altumus)', 144379), (144819, 144819, 186, 186, 'Instruction Disc (Calling of Belamorte)', 144380), (144958, 144958, 169, 169, 'Instruction Disc (Calling of Curatem The Grand)', 144379), (144959, 144959, 17, 17, 'Instruction Disc (Calling of Medinos)', 144377), (144960, 144960, 113, 113, 'Instruction Disc (Calling of Restite)', 144378), (144961, 144961, 37, 37, 'Instruction Disc (Calling of Salvinous)', 144377), (144962, 144962, 87, 87, 'Instruction Disc (Calling of Sanoo)', 144378), (144963, 144963, 143, 143, 'Instruction Disc (Calling of The Vivificator)', 144378), (202890, 202890, 197, 197, 'Instruction Disc (Calling of Thor)', 83347), (144964, 144964, 57, 57, 'Instruction Disc (Calling of Valentyia)', 144377), (147097, 147097, 33, 33, 'Instruction Disc (Cancerous Burrower)', 83371), (148003, 148003, 34, 34, 'Instruction Disc (Capable Health Haggler)', 83409), (146929, 146929, 66, 66, 'Instruction Disc (Captivate Crowd)', 83422), (146930, 146930, 109, 109, 'Instruction Disc (Captivated Thoughts)', 83487), (146931, 146931, 152, 152, 'Instruction Disc (Captivating Speech)', 83424), (146932, 146932, 40, 40, 'Instruction Disc (Capture Attention)', 83421), (147687, 147687, 175, 175, 'Instruction Disc (Cascade of the Storm)', 83540), (162763, 162763, 146, 146, 'Instruction Disc (Cellular Crashcart)', 83413), (147688, 147688, 40, 40, 'Instruction Disc (Cellular Decay)', 83530), (147098, 147098, 156, 156, 'Instruction Disc (Cellular Dismantlement)', 83376), (147099, 147099, 47, 47, 'Instruction Disc (Cellular Grafting)', 83409), (147100, 147100, 86, 86, 'Instruction Disc (Cellular Rebuild)', 83410), (146730, 146730, 83, 83, 'Instruction Disc (Cellular Reformation)', 83408), (147115, 147115, 146, 146, 'Instruction Disc (Cellular Restoration)', 301247), (146933, 146933, 165, 165, 'Instruction Disc (Chains of Iron)', 83416), (147289, 147289, 139, 139, 'Instruction Disc (Challenger to Behemoth)', 144366), (147290, 147290, 103, 103, 'Instruction Disc (Challenger to Colossus)', 144364), (147291, 147291, 4, 4, 'Instruction Disc (Challenger to Cyclops)', 83401), (147292, 147292, 66, 66, 'Instruction Disc (Challenger to Gargantua)', 144363), (147293, 147293, 132, 132, 'Instruction Disc (Challenger to Leviathan)', 144365), (147294, 147294, 33, 33, 'Instruction Disc (Challenger to Titan)', 144362), (144965, 144965, 130, 130, 'Instruction Disc (Chant of Effortless Strikes)', 83354), (144966, 144966, 87, 87, 'Instruction Disc (Chant of Frenzied Blows)', 83354), (147689, 147689, 139, 139, 'Instruction Disc (Chaos Lights)', 83538), (147690, 147690, 47, 47, 'Instruction Disc (Chaotic Entropy)', 83536), (155626, 155626, 173, 173, 'Instruction Disc (Character Assassin)', 83489), (146934, 146934, 169, 169, 'Instruction Disc (Charismatic Rapture)', 83487), (147691, 147691, 24, 24, 'Instruction Disc (Chemical Burn)', 83517), (146832, 146832, 63, 63, 'Instruction Disc (Chemical Concoction)', 83357), (147692, 147692, 103, 103, 'Instruction Disc (Chemical Liquefaction)', 83519), (144967, 144967, 116, 116, 'Instruction Disc (Chill Spear)', 83525), (147693, 147693, 33, 33, 'Instruction Disc (Chilling Stream)', 83523), (147568, 147568, 142, 142, 'Instruction Disc (Chirp of the Mournful Cricket)', 144463), (147695, 147695, 60, 60, 'Instruction Disc (Circle Scythe)', 83321), (147101, 147101, 149, 149, 'Instruction Disc (Circle of Renewal)', 83412), (147694, 147694, 50, 50, 'Instruction Disc (Circle of Winter)', 83297), (147102, 147102, 129, 129, 'Instruction Disc (Circulate Health)', 83411), (203706, 203706, 109, 109, 'Instruction Disc (Circumvent Restrictions)', 83355), (147367, 147367, 149, 149, 'Instruction Disc (Citadel of Spikes)', 83363), (147696, 147696, 7, 7, 'Instruction Disc (Claw Eyes)', 83462), (147103, 147103, 96, 96, 'Instruction Disc (Cleanse Wounds)', 83410), (146731, 146731, 37, 37, 'Instruction Disc (Cloak of Fire)', 83363), (161386, 161386, 129, 129, 'Instruction Disc (Cloak of Night)', 83361), (203679, 203679, 164, 164, 'Instruction Disc (Close Escape)', 83355), (147104, 147104, 90, 90, 'Instruction Disc (Close Wounds)', 83411), (146732, 146732, 1, 1, 'Instruction Disc (Coat of Barbs)', 83363), (147697, 147697, 40, 40, 'Instruction Disc (Coherent Nano Pathway)', 83355), (144968, 144968, 90, 90, 'Instruction Disc (Coherent Notum Web)', 83461), (204445, 204445, 193, 193, 'Instruction Disc (Coherent Polarized Screening)', 144319), (147698, 147698, 142, 142, 'Instruction Disc (Coherent Positron Stream)', 83539), (204463, 204463, 193, 193, 'Instruction Disc (Coherent Sloughing Assault Shield)', 83284), (204457, 204457, 133, 133, 'Instruction Disc (Coherent Sloughing Defensive Shield)', 83284), (204451, 204451, 83, 83, 'Instruction Disc (Coherent Sloughing Protective Barrier)', 83284), (147699, 147699, 63, 63, 'Instruction Disc (Cohesion Amplifier)', 83355), (147569, 147569, 132, 132, 'Instruction Disc (Cohort)', 83402), (147700, 147700, 146, 146, 'Instruction Disc (Collapsing Barrier)', 144317), (147701, 147701, 149, 149, 'Instruction Disc (Collapsing Hadron String)', 83563), (147105, 147105, 116, 116, 'Instruction Disc (Colossal Health)', 144325), (147913, 147913, 50, 50, 'Instruction Disc (Combat Barrier)', 144420), (147914, 147914, 33, 33, 'Instruction Disc (Combat Hardening)', 144325), (147368, 147368, 30, 30, 'Instruction Disc (Common Android)', 83465), (147369, 147369, 7, 7, 'Instruction Disc (Common Automaton)', 83465), (147370, 147370, 66, 66, 'Instruction Disc (Common Gladiatorbot)', 83470), (147371, 147371, 103, 103, 'Instruction Disc (Common Guardbot)', 83470), (147372, 147372, 146, 146, 'Instruction Disc (Common Warbot)', 83471), (147373, 147373, 165, 165, 'Instruction Disc (Common Warmachine)', 83472), (148004, 148004, 37, 37, 'Instruction Disc (Commonplace Delayed Health Payment)', 83409), (147702, 147702, 165, 165, 'Instruction Disc (Compacted Neutron Missile)', 83551), (147106, 147106, 37, 37, 'Instruction Disc (Company Policy)', 83408), (147107, 147107, 169, 169, 'Instruction Disc (Complete Healing)', 83414), (147108, 147108, 146, 146, 'Instruction Disc (Complex Nano Contagion)', 83376), (147109, 147109, 152, 152, 'Instruction Disc (Compress Wounds)', 83413), (147703, 147703, 70, 70, 'Instruction Disc (Compressed Shockwave)', 83549), (147704, 147704, 30, 30, 'Instruction Disc (Condensed Halon Jet)', 83523), (147705, 147705, 99, 99, 'Instruction Disc (Condensed Pellet of Fire)', 83543), (147706, 147706, 156, 156, 'Instruction Disc (Conduction Stream)', 83539), (203915, 203915, 128, 128, 'Instruction Disc (Conductive Spike)', 83355), (147110, 147110, 182, 182, 'Instruction Disc (Conglomerate Health Plan)', 83414), (147111, 147111, 146, 146, 'Instruction Disc (Constitution Magnification)', 144433), (147112, 147112, 106, 106, 'Instruction Disc (Consuming Toxin)', 83375), (147113, 147113, 106, 106, 'Instruction Disc (Consummate Carer)', 83410), (147503, 147503, 27, 27, 'Instruction Disc (Contact Poison)', 83575), (147707, 147707, 136, 136, 'Instruction Disc (Contained Plasma Sphere)', 83544), (155580, 155580, 189, 189, 'Instruction Disc (Contemplation)', 83420), (147114, 147114, 126, 126, 'Instruction Disc (Continuous Cellular Reconditioning)', 83410), (148005, 148005, 176, 176, 'Instruction Disc (Control Ends and Means)', 83420), (147374, 147374, 99, 99, 'Instruction Disc (Controlled Energy Overload)', 144461), (147708, 147708, 76, 76, 'Instruction Disc (Convergent Energy Beam)', 83537), (147709, 147709, 96, 96, 'Instruction Disc (Cornea Attack)', 83462), (147710, 147710, 132, 132, 'Instruction Disc (Coronet of Frost)', 83526), (146733, 146733, 132, 132, 'Instruction Disc (Corrosive Barrier)', 83363), (161897, 161897, 179, 179, 'Instruction Disc (Corrosive Cloud)', 83378), (147570, 147570, 37, 37, 'Instruction Disc (Corrosive Fists)', 144460), (147711, 147711, 10, 10, 'Instruction Disc (Corrosive Spray)', 83517), (147712, 147712, 103, 103, 'Instruction Disc (Corrupt Molecular Integrity)', 83531), (147713, 147713, 4, 4, 'Instruction Disc (Corruption)', 83371), (147295, 147295, 146, 146, 'Instruction Disc (Coruscating Screen)', 83363), (147116, 147116, 50, 50, 'Instruction Disc (Counteract Damage)', 83409), (147117, 147117, 86, 86, 'Instruction Disc (Course of Treatment)', 83409), (147504, 147504, 14, 14, 'Instruction Disc (Cracker''s Luck)', 83464), (147571, 147571, 10, 10, 'Instruction Disc (Crash of Thunder)', 83575), (155036, 155036, 116, 116, 'Instruction Disc (Creation: Asp of Semol)', 144448), (155035, 155035, 215, 215, 'Instruction Disc (Creation: Azure Cobra of Orma)', 144448), (155034, 155034, 147, 147, 'Instruction Disc (Creation: Belthior''s Flame Ward)', 144448), (155033, 155033, 136, 136, 'Instruction Disc (Creation: Bitis Striker)', 144448), (155030, 155030, 90, 90, 'Instruction Disc (Creation: Coplan''s Hand Taipan)', 144448), (155032, 155032, 177, 177, 'Instruction Disc (Creation: Death Ward)', 144448), (155031, 155031, 190, 190, 'Instruction Disc (Creation: Gold Acantophis)', 144448), (155020, 155020, 112, 112, 'Instruction Disc (Creation: Living Shield of Evernan)', 144448), (155028, 155028, 187, 187, 'Instruction Disc (Creation: Mocham''s Guard)', 144448), (155027, 155027, 72, 72, 'Instruction Disc (Creation: Notum Defender)', 144448), (155026, 155026, 205, 205, 'Instruction Disc (Creation: Shield of Asmodian)', 144448), (155025, 155025, 85, 85, 'Instruction Disc (Creation: Solar Guard)', 144448), (155024, 155024, 48, 48, 'Instruction Disc (Creation: The Crotalus)', 144448), (155023, 155023, 66, 66, 'Instruction Disc (Creation: Viper Staff)', 144448), (155022, 155022, 59, 59, 'Instruction Disc (Creation: Vital Bucker)', 144448), (155021, 155021, 129, 129, 'Instruction Disc (Creation: Wave Breaker)', 144448), (155029, 155029, 160, 160, 'Instruction Disc (Creation: Wixel''s Notum Python)', 144448), (147375, 147375, 20, 20, 'Instruction Disc (Crowbar Subtlety)', 83352), (203165, 203165, 68, 68, 'Instruction Disc (Crowd Disperser)', 83498), (147714, 147714, 156, 156, 'Instruction Disc (Crown of Frost)', 83527), (147715, 147715, 10, 10, 'Instruction Disc (CrunchCom Code Sieve)', 83461), (147717, 147717, 123, 123, 'Instruction Disc (CrunchCom Nano Compressor Pro)', 83461), (147716, 147716, 47, 47, 'Instruction Disc (CrunchCom Nano Compressor)', 83461), (146935, 146935, 110, 110, 'Instruction Disc (Crush Bravery)', 83495), (147718, 147718, 103, 103, 'Instruction Disc (Crystalizing Ray)', 83525), (146936, 146936, 103, 103, 'Instruction Disc (Cubicle Dweller)', 83419), (144969, 144969, 169, 169, 'Instruction Disc (Curse of Chronos)', 83416), (147118, 147118, 30, 30, 'Instruction Disc (Cursory Examination)', 83408), (147719, 147719, 47, 47, 'Instruction Disc (Curtain of Darkness)', 83462), (146937, 146937, 159, 159, 'Instruction Disc (Cut Red Tape)', 301244), (147119, 147119, 149, 149, 'Instruction Disc (Cycle of Life)', 83411), (147120, 147120, 179, 179, 'Instruction Disc (Cycle of Reconstruction)', 83414), (147915, 147915, 40, 40, 'Instruction Disc (Damage Amplifier)', 144461), (147916, 147916, 7, 7, 'Instruction Disc (Damage Multiplier)', 83575), (161440, 161440, 165, 165, 'Instruction Disc (Dance of the Dervish)', 83443), (147720, 147720, 90, 90, 'Instruction Disc (Dark Movement)', 83391), (147121, 147121, 47, 47, 'Instruction Disc (Dark Venom)', 83375), (147296, 147296, 133, 133, 'Instruction Disc (Deaden Pain)', 144318), (146833, 146833, 142, 142, 'Instruction Disc (Death''s Gaze)', 83416), (146834, 146834, 136, 136, 'Instruction Disc (Death''s Knocking)', 83378), (147122, 147122, 182, 182, 'Instruction Disc (Deathless Blessing)', 83414), (163107, 163107, 93, 93, 'Instruction Disc (Deck Recoder)', 83360), (147376, 147376, 179, 179, 'Instruction Disc (Decommissioned Wardroid)', 83472), (144970, 144970, 146, 146, 'Instruction Disc (Dedication of Thought)', 83489), (147721, 147721, 76, 76, 'Instruction Disc (Deep Chemical Burn)', 83519), (147722, 147722, 17, 17, 'Instruction Disc (Deep Slash)', 83547), (148006, 148006, 74, 74, 'Instruction Disc (Deep Thought)', 83418), (147124, 147124, 159, 159, 'Instruction Disc (Deep Tissue Repair)', 83414), (147125, 147125, 169, 169, 'Instruction Disc (Deep Wound Cleanser)', 83413), (155625, 155625, 130, 130, 'Instruction Disc (Defamation 101)', 83489), (147377, 147377, 83, 83, 'Instruction Disc (Defensive Screen)', 144317), (147918, 147918, 37, 37, 'Instruction Disc (Deflection Shield (Extended))', 144426), (147917, 147917, 33, 33, 'Instruction Disc (Deflection Shield)', 144426), (146835, 146835, 57, 57, 'Instruction Disc (Delay Pursuers)', 83426), (147505, 147505, 60, 60, 'Instruction Disc (Delay Retreat)', 83422), (146836, 146836, 63, 63, 'Instruction Disc (Delay the Inevitable)', 83422), (146837, 146837, 169, 169, 'Instruction Disc (Delayed Assassin)', 83379), (148007, 148007, 70, 70, 'Instruction Disc (Delayed Health Payment)', 83410), (203995, 203995, 169, 169, 'Instruction Disc (Demand Freedom)', 83355), (204019, 204019, 154, 154, 'Instruction Disc (Demolish Shackles)', 83355), (146938, 146938, 80, 80, 'Instruction Disc (Demotivate)', 83418), (157573, 157573, 113, 113, 'Instruction Disc (Demotivational Speech: 10 Thumbs)', 83343), (157589, 157589, 83, 83, 'Instruction Disc (Demotivational Speech: Administrative Error)', 83461), (157588, 157588, 179, 179, 'Instruction Disc (Demotivational Speech: Certainty of Defeat)', 83343), (157587, 157587, 34, 34, 'Instruction Disc (Demotivational Speech: Factory Recall)', 83461), (157586, 157586, 21, 21, 'Instruction Disc (Demotivational Speech: Fumble Fingers)', 83343), (157585, 157585, 44, 44, 'Instruction Disc (Demotivational Speech: Let''s Make a Committee)', 83460), (157584, 157584, 186, 186, 'Instruction Disc (Demotivational Speech: Mourner''s March)', 83460), (157582, 157582, 182, 182, 'Instruction Disc (Demotivational Speech: Retreat to Glory)', 83461), (157581, 157581, 126, 126, 'Instruction Disc (Demotivational Speech: Surge in the System)', 83461), (157580, 157580, 159, 159, 'Instruction Disc (Demotivational Speech: Swapdisk Mayhem)', 83461), (157583, 157583, 100, 100, 'Instruction Disc (Demotivational Speech: That is not on the Agenda)', 83460), (157579, 157579, 153, 153, 'Instruction Disc (Demotivational Speech: Who Writes the Minutes?)', 83460), (147724, 147724, 86, 86, 'Instruction Disc (Dense Matter Missile MK II)', 83555), (147723, 147723, 43, 43, 'Instruction Disc (Dense Matter Missile)', 83554), (147725, 147725, 103, 103, 'Instruction Disc (Dense Poison Fog)', 83304), (148009, 148009, 80, 80, 'Instruction Disc (Deprive Skills (Advanced))', 301395), (148011, 148011, 24, 24, 'Instruction Disc (Deprive Skills (Average))', 301395), (148010, 148010, 33, 33, 'Instruction Disc (Deprive Skills (Lesser))', 301395), (148012, 148012, 57, 57, 'Instruction Disc (Deprive Skills (Major))', 301395), (148013, 148013, 14, 14, 'Instruction Disc (Deprive Skills (Minor))', 301395), (148014, 148014, 4, 4, 'Instruction Disc (Deprive Skills (Weak))', 301395), (148008, 148008, 43, 43, 'Instruction Disc (Deprive Skills)', 301395), (156163, 156163, 41, 41, 'Instruction Disc (Deranged Mindreaver)', 144382), (147506, 147506, 73, 73, 'Instruction Disc (Detailed Medical Claim)', 83409), (148015, 148015, 109, 109, 'Instruction Disc (Detain Customer)', 83422), (146838, 146838, 1, 1, 'Instruction Disc (Detain Suspect)', 83421), (147572, 147572, 142, 142, 'Instruction Disc (Diamond Skin)', 144371), (161437, 161437, 139, 139, 'Instruction Disc (Dichotomy of Nature)', 83443), (147126, 147126, 140, 140, 'Instruction Disc (Digitizing Sequencer)', 83565), (204028, 204028, 166, 166, 'Instruction Disc (Dire Circumstance)', 83355), (146939, 146939, 142, 142, 'Instruction Disc (Director-Grade Administrator-Droid)', 83472), (146940, 146940, 90, 90, 'Instruction Disc (Director-Grade Aide-Droid)', 83471), (146941, 146941, 66, 66, 'Instruction Disc (Director-Grade Assistant-Droid)', 83470), (146942, 146942, 43, 43, 'Instruction Disc (Director-Grade Attendant-Droid)', 83470), (146943, 146943, 169, 169, 'Instruction Disc (Director-Grade Bodyguard)', 83472), (146944, 146944, 27, 27, 'Instruction Disc (Director-Grade Helper-Droid)', 83465), (146945, 146945, 156, 156, 'Instruction Disc (Director-Grade Minion)', 83472), (146946, 146946, 123, 123, 'Instruction Disc (Director-Grade Secretary-Droid)', 83471), (146947, 146947, 14, 14, 'Instruction Disc (Director-Grade Worker-Droid)', 83465), (147573, 147573, 33, 33, 'Instruction Disc (Dirty Fighter)', 83351), (146948, 146948, 149, 149, 'Instruction Disc (Disciplinary Action)', 83538), (147726, 147726, 129, 129, 'Instruction Disc (Discourage Involvement)', 83419), (146949, 146949, 175, 175, 'Instruction Disc (Disjointed From Reality)', 83420), (146950, 146950, 162, 162, 'Instruction Disc (Disjointed Psyche)', 83419), (147727, 147727, 106, 106, 'Instruction Disc (Dispersed Nanoblade Cloud)', 83550), (146951, 146951, 189, 189, 'Instruction Disc (Displace Thought Patterns)', 83487), (146952, 146952, 185, 185, 'Instruction Disc (Disrupted Psyche)', 83420), (154770, 154770, 113, 113, 'Instruction Disc (Disruptive Barrier Negator)', 144337), (154769, 154769, 107, 107, 'Instruction Disc (Disruptive Cocoon Harmonics)', 144331), (154768, 154768, 41, 41, 'Instruction Disc (Disruptive Field Harmonics)', 144330), (154767, 154767, 17, 17, 'Instruction Disc (Disruptive Field Negator)', 144335), (154766, 154766, 156, 156, 'Instruction Disc (Disruptive Phase Harmonics)', 144332), (154765, 154765, 83, 83, 'Instruction Disc (Disruptive Photon Absorber)', 144321), (154764, 154764, 149, 149, 'Instruction Disc (Disruptive Photon Annihilator)', 144322), (154763, 154763, 41, 41, 'Instruction Disc (Disruptive Photon Deflector)', 144321), (154762, 154762, 120, 120, 'Instruction Disc (Disruptive Photon Devourer)', 144322), (154761, 154761, 153, 153, 'Instruction Disc (Disruptive Retaliatory Negator)', 144338), (154760, 154760, 182, 182, 'Instruction Disc (Disruptive Retributive Negator)', 144339), (154759, 154759, 57, 57, 'Instruction Disc (Disruptive Shielding Negator)', 144336), (154758, 154758, 166, 166, 'Instruction Disc (Disruptive Void Projector)', 144323), (147127, 147127, 10, 10, 'Instruction Disc (Dissolve Molecular Bonding)', 83371), (147728, 147728, 109, 109, 'Instruction Disc (Dissolving Sphere)', 83520), (148017, 148017, 20, 20, 'Instruction Disc (Distract with Trinkets)', 83417), (146953, 146953, 10, 10, 'Instruction Disc (Distracted Gaze)', 83417), (148018, 148018, 47, 47, 'Instruction Disc (Distracting Baubles)', 83418), (147574, 147574, 53, 53, 'Instruction Disc (Distracting Nuisance)', 83385), (156177, 156177, 11, 11, 'Instruction Disc (Distracting Sphere)', 144381), (147128, 147128, 175, 175, 'Instruction Disc (Distributed Care)', 83414), (148020, 148020, 179, 179, 'Instruction Disc (Divest Skills (Advanced))', 301395), (148022, 148022, 132, 132, 'Instruction Disc (Divest Skills (Average))', 301395), (148021, 148021, 149, 149, 'Instruction Disc (Divest Skills (Lesser))', 301395), (148023, 148023, 165, 165, 'Instruction Disc (Divest Skills (Major))', 301395), (148024, 148024, 113, 113, 'Instruction Disc (Divest Skills (Minor))', 301395), (148025, 148025, 93, 93, 'Instruction Disc (Divest Skills (Weak))', 301395), (148019, 148019, 156, 156, 'Instruction Disc (Divest Skills)', 301395), (161416, 161416, 169, 169, 'Instruction Disc (Division of the Winds)', 83497), (147129, 147129, 7, 7, 'Instruction Disc (Doctor''s Grace)', 83407), (203673, 203673, 57, 57, 'Instruction Disc (Dodge Persuers)', 83355), (147297, 147297, 150, 150, 'Instruction Disc (Dominate Foe)', 83495), (146954, 146954, 47, 47, 'Instruction Disc (Dominate Psyche)', 83487), (144971, 144971, 142, 142, 'Instruction Disc (Dominate: BioMet)', 83346), (144972, 144972, 142, 142, 'Instruction Disc (Dominate: MatCrea)', 83448), (144974, 144974, 139, 139, 'Instruction Disc (Dominate: MatMet)', 83450), (144975, 144975, 142, 142, 'Instruction Disc (Dominate: PsyMod)', 83488), (144976, 144976, 142, 142, 'Instruction Disc (Dominate: SenseImp)', 83496), (144973, 144973, 139, 139, 'Instruction Disc (Dominate: SpaceTime)', 83449), (144977, 144977, 14, 14, 'Instruction Disc (Douse Anger)', 144461), (162766, 162766, 152, 152, 'Instruction Disc (Dr Hack ''n Quack)', 83414), (148027, 148027, 159, 159, 'Instruction Disc (Draw AC (Advanced))', 144333), (148028, 148028, 165, 165, 'Instruction Disc (Draw AC (Greater))', 144333), (148029, 148029, 179, 179, 'Instruction Disc (Draw AC (Invasive))', 144334), (148030, 148030, 149, 149, 'Instruction Disc (Draw AC (Major))', 144332), (148031, 148031, 113, 113, 'Instruction Disc (Draw AC (Minor))', 144331), (148032, 148032, 93, 93, 'Instruction Disc (Draw AC (Weak))', 144330), (148026, 148026, 136, 136, 'Instruction Disc (Draw AC)', 144331), (147919, 147919, 14, 14, 'Instruction Disc (Draw Attention)', 83385), (147130, 147130, 10, 10, 'Instruction Disc (Dress Wounds)', 83407), (146955, 146955, 37, 37, 'Instruction Disc (Drill Missile)', 83553), (146956, 146956, 136, 136, 'Instruction Disc (Droid Overhaul)', 83408), (146957, 146957, 70, 70, 'Instruction Disc (Droid Repair)', 83407), (147729, 147729, 20, 20, 'Instruction Disc (Dual Energized Beams)', 83535), (147730, 147730, 60, 60, 'Instruction Disc (Dual Ion Stream)', 83560), (148033, 148033, 99, 99, 'Instruction Disc (Dubious Accounting)', 83487), (146734, 146734, 76, 76, 'Instruction Disc (Eagle Eye)', 83464), (144978, 144978, 24, 24, 'Instruction Disc (Ease of Execution)', 83461), (147131, 147131, 50, 50, 'Instruction Disc (Easing Touch)', 83408), (202823, 202823, 173, 173, 'Instruction Disc (Edge of Diamond)', 83497), (202798, 202798, 89, 89, 'Instruction Disc (Edge of Molybdenum)', 83497), (202795, 202795, 133, 133, 'Instruction Disc (Edge of Titanium)', 83497), (202777, 202777, 59, 59, 'Instruction Disc (Edge of the Buccaneer)', 83497), (147731, 147731, 80, 80, 'Instruction Disc (Efficient Humidity Extractor)', 83461), (147920, 147920, 4, 4, 'Instruction Disc (Ego Taunt)', 83385), (147378, 147378, 24, 24, 'Instruction Disc (Electrical Chastiser)', 83363), (147379, 147379, 76, 76, 'Instruction Disc (Electrical Discharge Field)', 83363), (147732, 147732, 185, 185, 'Instruction Disc (Electrifying Containment)', 83540), (161885, 161885, 60, 60, 'Instruction Disc (Eleet Friend)', 144397), (148034, 148034, 31, 31, 'Instruction Disc (Elementary Delayed Health Payment)', 83408), (147132, 147132, 14, 14, 'Instruction Disc (Elementary Nano Contagion)', 83371), (147575, 147575, 37, 37, 'Instruction Disc (Elusive Target)', 83391), (148035, 148035, 76, 76, 'Instruction Disc (Embrace of Greed)', 83422), (147507, 147507, 27, 27, 'Instruction Disc (Embrace of Shadows)', 83361), (147133, 147133, 162, 162, 'Instruction Disc (Emergency Medical Response)', 83414), (147134, 147134, 4, 4, 'Instruction Disc (Emergency Stitching)', 83407), (147733, 147733, 142, 142, 'Instruction Disc (Encircle With Blades)', 83551), (147135, 147135, 80, 80, 'Instruction Disc (Encode DNA Sequence)', 83565), (147576, 147576, 86, 86, 'Instruction Disc (Encourage Hatred)', 83385), (146735, 146735, 86, 86, 'Instruction Disc (Encourage Regrowth)', 83409), (203927, 203927, 40, 40, 'Instruction Disc (Energize Shell)', 83355), (147734, 147734, 4, 4, 'Instruction Disc (Energized Beam)', 83535), (146958, 146958, 4, 4, 'Instruction Disc (Energized Bolt)', 83536), (203921, 203921, 197, 197, 'Instruction Disc (Energized Casing of the Faithful Servant)', 83355), (147735, 147735, 113, 113, 'Instruction Disc (Energized Collapse)', 83562), (147577, 147577, 20, 20, 'Instruction Disc (Energized Fists)', 83575), (147380, 147380, 113, 113, 'Instruction Disc (Energy Cocoon)', 83363), (147736, 147736, 53, 53, 'Instruction Disc (Energy Projectile)', 83536), (147381, 147381, 37, 37, 'Instruction Disc (Energy Spike)', 144460), (146959, 146959, 63, 63, 'Instruction Disc (Enforce Rest Break)', 83422), (148036, 148036, 40, 40, 'Instruction Disc (Enforced Loan)', 83487), (146960, 146960, 60, 60, 'Instruction Disc (Enforced Sloth)', 83426), (150656, 150656, 156, 156, 'Instruction Disc (Enfraam''s Augmented Fortification)', 144371), (150666, 150666, 47, 47, 'Instruction Disc (Enfraam''s Fortification)', 144368), (150665, 150665, 140, 140, 'Instruction Disc (Enfraam''s Glorious Fortification)', 144371), (150664, 150664, 93, 93, 'Instruction Disc (Enfraam''s Greater Fortification)', 144370), (150663, 150663, 37, 37, 'Instruction Disc (Enfraam''s Lesser Fortification)', 144368), (150662, 150662, 80, 80, 'Instruction Disc (Enfraam''s Major Fortification)', 144369), (150661, 150661, 24, 24, 'Instruction Disc (Enfraam''s Minor Fortification)', 144367), (150660, 150660, 166, 166, 'Instruction Disc (Enfraam''s Perfected Fortification)', 144372), (150659, 150659, 60, 60, 'Instruction Disc (Enfraam''s Superior Fortification)', 144369), (150658, 150658, 113, 113, 'Instruction Disc (Enfraam''s Supreme Fortification)', 144370), (205162, 205162, 80, 80, 'Instruction Disc (Enfraam''s Toolkit)', 83459), (150657, 150657, 14, 14, 'Instruction Disc (Enfraam''s Trivial Fortification)', 144367), (144979, 144979, 47, 47, 'Instruction Disc (Engrossing Activity)', 83489), (147737, 147737, 149, 149, 'Instruction Disc (Engulf in Flame)', 83545), (205275, 205275, 158, 158, 'Instruction Disc (Enhance Aggression Subsystem)', 83467), (205260, 205260, 56, 56, 'Instruction Disc (Enhance Combat Array)', 83467), (147136, 147136, 27, 27, 'Instruction Disc (Enhance Constitution)', 144325), (147738, 147738, 20, 20, 'Instruction Disc (Enhance Nano Cohesion)', 83355), (147739, 147739, 4, 4, 'Instruction Disc (Enhance Nano Communication)', 83355), (147137, 147137, 1, 1, 'Instruction Disc (Enhance Team Health)', 144325), (147138, 147138, 14, 14, 'Instruction Disc (Enhanced First Aid)', 83396), (147139, 147139, 132, 132, 'Instruction Disc (Enhanced Health Surge)', 144433), (146839, 146839, 27, 27, 'Instruction Disc (Enhanced Senses)', 83495), (160849, 160849, 126, 126, 'Instruction Disc (Enhanced Sureshot)', 83285), (160852, 160852, 146, 146, 'Instruction Disc (Enhanced Trueshot)', 83285), (147140, 147140, 37, 37, 'Instruction Disc (Enlarge)', 83504), (147578, 147578, 142, 142, 'Instruction Disc (Enlightened Aura of Healing)', 301499), (144980, 144980, 159, 159, 'Instruction Disc (Enmity Personification)', 144376), (147922, 147922, 30, 30, 'Instruction Disc (Enraged Mind)', 83385), (146961, 146961, 149, 149, 'Instruction Disc (Enrapturing Bondage)', 83487), (146736, 146736, 24, 24, 'Instruction Disc (Enshroud with Barbs)', 83363), (146840, 146840, 142, 142, 'Instruction Disc (Entrap Victim)', 83424), (148037, 148037, 182, 182, 'Instruction Disc (Entrepreneurial Thrall)', 83424), (147740, 147740, 30, 30, 'Instruction Disc (Entropy Beam)', 83535), (147382, 147382, 149, 149, 'Instruction Disc (Entropy Weapon)', 144462), (147741, 147741, 57, 57, 'Instruction Disc (Enveloping Darkness)', 83462), (146962, 146962, 162, 162, 'Instruction Disc (Erasing Ray)', 83538), (147742, 147742, 76, 76, 'Instruction Disc (Eroding Spray)', 83519), (146963, 146963, 142, 142, 'Instruction Disc (Erratic Laser)', 83537), (204036, 204036, 73, 73, 'Instruction Disc (Escape Captivation)', 83355), (147298, 147298, 152, 152, 'Instruction Disc (Essence of Behemoth)', 144329), (147299, 147299, 33, 33, 'Instruction Disc (Essence of Boundless Health)', 144325), (147300, 147300, 132, 132, 'Instruction Disc (Essence of Colossus)', 144328), (147301, 147301, 57, 57, 'Instruction Disc (Essence of Cyclops)', 144326), (147302, 147302, 123, 123, 'Instruction Disc (Essence of Gargantua)', 144327), (146737, 146737, 169, 169, 'Instruction Disc (Essence of Life)', 83410), (147305, 147305, 24, 24, 'Instruction Disc (Essence of Might)', 144325), (147307, 147307, 14, 14, 'Instruction Disc (Essence of Vitality)', 83348), (147579, 147579, 162, 162, 'Instruction Disc (Eternal Enmity)', 83385), (203709, 203709, 146, 146, 'Instruction Disc (Evade Responsibility)', 83355), (203676, 203676, 110, 110, 'Instruction Disc (Evade the Chase)', 83355), (147743, 147743, 152, 152, 'Instruction Disc (Eviscerate Eyes)', 83462), (205199, 205199, 85, 85, 'Instruction Disc (Evocation of Fathomless Rage)', 83437), (205202, 205202, 115, 115, 'Instruction Disc (Evocation of Implacable Hatred)', 83437), (205205, 205205, 140, 140, 'Instruction Disc (Evocation of Maddening Wrath)', 83437), (205208, 205208, 177, 177, 'Instruction Disc (Evocation of Pure Malevolence)', 83437), (205211, 205211, 58, 58, 'Instruction Disc (Evocation of Relentless Fury)', 83437), (205214, 205214, 200, 200, 'Instruction Disc (Evocation of The Abomination)', 83437), (205217, 205217, 34, 34, 'Instruction Disc (Evocation of Unleashed Malice)', 83437), (205220, 205220, 16, 16, 'Instruction Disc (Evocation of Unrestrained Ferocity)', 83437), (147141, 147141, 80, 80, 'Instruction Disc (Exaggerated Health)', 144325), (148038, 148038, 169, 169, 'Instruction Disc (Exceptional Delayed Health Payment)', 83414), (146964, 146964, 139, 139, 'Instruction Disc (Executive-Grade Administrator-Droid)', 83471), (146965, 146965, 86, 86, 'Instruction Disc (Executive-Grade Aide-Droid)', 83471), (146966, 146966, 63, 63, 'Instruction Disc (Executive-Grade Assistant-Droid)', 83470), (146967, 146967, 40, 40, 'Instruction Disc (Executive-Grade Attendant-Droid)', 83470), (146968, 146968, 169, 169, 'Instruction Disc (Executive-Grade Bodyguard)', 83472), (146969, 146969, 24, 24, 'Instruction Disc (Executive-Grade Helper-Droid)', 83465), (146970, 146970, 152, 152, 'Instruction Disc (Executive-Grade Minion)', 83472), (146971, 146971, 119, 119, 'Instruction Disc (Executive-Grade Secretary-Droid)', 83471), (146972, 146972, 10, 10, 'Instruction Disc (Executive-Grade Worker-Droid)', 83465), (203881, 203881, 107, 107, 'Instruction Disc (Exoskeleton Pulse)', 83355), (147744, 147744, 70, 70, 'Instruction Disc (Expanding Neutron Pulse)', 83336), (147143, 147143, 103, 103, 'Instruction Disc (Experimental Panacea)', 83411), (148039, 148039, 97, 97, 'Instruction Disc (Expert Health Haggler)', 83412), (148040, 148040, 50, 50, 'Instruction Disc (Extended Line of Credit)', 83487), (147383, 147383, 139, 139, 'Instruction Disc (Extreme Prejudice)', 83406), (147745, 147745, 169, 169, 'Instruction Disc (Eye of Light)', 83374), (147746, 147746, 139, 139, 'Instruction Disc (Eyeblighter)', 83462), (146841, 146841, 77, 77, 'Instruction Disc (Face Graft)', 83565), (146973, 146973, 57, 57, 'Instruction Disc (Face in the Crowd)', 83361), (147308, 147308, 150, 150, 'Instruction Disc (Failing Impregnability)', 144320), (146974, 146974, 132, 132, 'Instruction Disc (Faithful Administrator-Droid)', 83471), (146975, 146975, 76, 76, 'Instruction Disc (Faithful Aide-Droid)', 83470), (146976, 146976, 53, 53, 'Instruction Disc (Faithful Assistant-Droid)', 83470), (146977, 146977, 33, 33, 'Instruction Disc (Faithful Attendant-Droid)', 83470), (146978, 146978, 162, 162, 'Instruction Disc (Faithful Bodyguard)', 83472), (146979, 146979, 17, 17, 'Instruction Disc (Faithful Helper-Droid)', 83465), (146980, 146980, 146, 146, 'Instruction Disc (Faithful Minion)', 83472), (146981, 146981, 106, 106, 'Instruction Disc (Faithful Secretary-Droid)', 83471), (146982, 146982, 4, 4, 'Instruction Disc (Faithful Worker-Droid)', 83465), (146842, 146842, 17, 17, 'Instruction Disc (False Profession: Adventurer)', 83505), (146843, 146843, 33, 33, 'Instruction Disc (False Profession: Bureaucrat)', 83505), (146844, 146844, 30, 30, 'Instruction Disc (False Profession: Doctor)', 83505), (146852, 146852, 10, 10, 'Instruction Disc (False Profession: Enforcer)', 83505), (146845, 146845, 20, 20, 'Instruction Disc (False Profession: Engineer)', 83505), (146850, 146850, 24, 24, 'Instruction Disc (False Profession: Fixer)', 83505), (146846, 146846, 14, 14, 'Instruction Disc (False Profession: Martial Artist)', 83505), (146847, 146847, 37, 37, 'Instruction Disc (False Profession: Meta-Physicist)', 83505), (146848, 146848, 40, 40, 'Instruction Disc (False Profession: Nanotechnician)', 83505), (146849, 146849, 14, 14, 'Instruction Disc (False Profession: Soldier)', 83505), (146851, 146851, 27, 27, 'Instruction Disc (False Profession: Trader)', 83505), (147509, 147509, 30, 30, 'Instruction Disc (Falsify Medical Records)', 83408), (161434, 161434, 93, 93, 'Instruction Disc (Fangs of the Snake)', 83443), (147144, 147144, 80, 80, 'Instruction Disc (Fast Team Tissue Repair)', 83409), (146983, 146983, 169, 169, 'Instruction Disc (Fear of Attention)', 83423), (147309, 147309, 37, 37, 'Instruction Disc (Fearsome Shout)', 83495), (147384, 147384, 20, 20, 'Instruction Disc (Feeble Android)', 83465), (147385, 147385, 1, 1, 'Instruction Disc (Feeble Automaton)', 83465), (147747, 147747, 7, 7, 'Instruction Disc (Feeble Blade Chaos)', 83547), (148041, 148041, 8, 8, 'Instruction Disc (Feeble Delayed Health Payment)', 83407), (147386, 147386, 47, 47, 'Instruction Disc (Feeble Gladiatorbot)', 83470), (147748, 147748, 90, 90, 'Instruction Disc (Feeble Gravitational Anomaly)', 83549), (147387, 147387, 90, 90, 'Instruction Disc (Feeble Guardbot)', 83470), (147388, 147388, 129, 129, 'Instruction Disc (Feeble Warbot)', 83471), (147389, 147389, 156, 156, 'Instruction Disc (Feeble Warmachine)', 83471), (204529, 204529, 90, 90, 'Instruction Disc (Feelings of Mortality)', 83408), (147749, 147749, 73, 73, 'Instruction Disc (Feet of Iron)', 83422), (147750, 147750, 165, 165, 'Instruction Disc (Feet of Lead)', 83424), (147751, 147751, 14, 14, 'Instruction Disc (Feet of Stone)', 83421), (146853, 146853, 53, 53, 'Instruction Disc (Feline Grace)', 83365), (162341, 162341, 146, 146, 'Instruction Disc (Feline Rage)', 144461), (147310, 147310, 50, 50, 'Instruction Disc (Fell Rage)', 301299), (147752, 147752, 162, 162, 'Instruction Disc (Ferocious Impactor Missile)', 83557), (147146, 147146, 10, 10, 'Instruction Disc (Field Dressings)', 83407), (147390, 147390, 120, 120, 'Instruction Disc (Field Workshop)', 83411), (147311, 147311, 20, 20, 'Instruction Disc (Field of Sparks)', 83363), (147753, 147753, 142, 142, 'Instruction Disc (Fiery Blast)', 83544), (146738, 146738, 136, 136, 'Instruction Disc (Fiery Vengeance)', 83363), (146739, 146739, 63, 63, 'Instruction Disc (Fiery Wrap)', 83363), (148042, 148042, 126, 126, 'Instruction Disc (Fine Tuning)', 144462), (147754, 147754, 27, 27, 'Instruction Disc (Fire Snake)', 83541), (147755, 147755, 7, 7, 'Instruction Disc (Fire Stream)', 83541), (146740, 146740, 30, 30, 'Instruction Disc (Firefly''s Fury)', 83363), (147580, 147580, 96, 96, 'Instruction Disc (First Strike)', 83434), (147147, 147147, 116, 116, 'Instruction Disc (First-Degree Burns)', 83544), (147581, 147581, 66, 66, 'Instruction Disc (Fists of Fire)', 144461), (147582, 147582, 47, 47, 'Instruction Disc (Fists of Shocking Touch)', 144460), (147583, 147583, 165, 165, 'Instruction Disc (Fists of Stellar Harmony)', 144464), (147584, 147584, 146, 146, 'Instruction Disc (Fists of the Lightning Crane)', 144463), (147585, 147585, 86, 86, 'Instruction Disc (Fists of the Maelstrom)', 144461), (147586, 147586, 106, 106, 'Instruction Disc (Fists of the Polar Star)', 144462), (147587, 147587, 126, 126, 'Instruction Disc (Fists of the Sorrowful Toad)', 144462), (147391, 147391, 27, 27, 'Instruction Disc (Flawed Android)', 83465), (147392, 147392, 4, 4, 'Instruction Disc (Flawed Automaton)', 83465), (147393, 147393, 20, 20, 'Instruction Disc (Flawed Defensive Screen)', 83341), (147394, 147394, 156, 156, 'Instruction Disc (Flawed Force Field)', 144319), (147395, 147395, 63, 63, 'Instruction Disc (Flawed Gladiatorbot)', 83470), (147396, 147396, 99, 99, 'Instruction Disc (Flawed Guardbot)', 83470), (147397, 147397, 14, 14, 'Instruction Disc (Flawed Protective Field)', 83341), (147398, 147398, 7, 7, 'Instruction Disc (Flawed Shielding Barrier)', 83341), (147399, 147399, 146, 146, 'Instruction Disc (Flawed Warbot)', 83471), (147400, 147400, 162, 162, 'Instruction Disc (Flawed Warmachine)', 83472), (147510, 147510, 129, 129, 'Instruction Disc (Flawless Medical Claim)', 83411), (146741, 146741, 143, 143, 'Instruction Disc (Flawless Stitching)', 83409), (147588, 147588, 83, 83, 'Instruction Disc (Fleet Foot)', 83391), (147756, 147756, 182, 182, 'Instruction Disc (Fleeting Immunity)', 144319), (148043, 148043, 132, 132, 'Instruction Disc (Flow of Time)', 83423), (203715, 203715, 88, 88, 'Instruction Disc (Fluctuate Manifestation)', 83355), (147312, 147312, 60, 60, 'Instruction Disc (Focused Anger)', 83344), (147757, 147757, 116, 116, 'Instruction Disc (Focused Ray)', 83538), (147401, 147401, 169, 169, 'Instruction Disc (Force Field)', 144319), (203226, 203226, 63, 63, 'Instruction Disc (Force of the Thunderclap)', 83387), (148044, 148044, 185, 185, 'Instruction Disc (Forced Bankruptcy)', 83487), (147589, 147589, 165, 165, 'Instruction Disc (Form of Tessai)', 144372), (160870, 160870, 179, 179, 'Instruction Disc (Form of The Executioner)', 144464), (147313, 147313, 120, 120, 'Instruction Disc (Fortify)', 144317), (147402, 147402, 175, 175, 'Instruction Disc (Fortress of Spikes)', 83363), (204051, 204051, 198, 198, 'Instruction Disc (Fortune''s Smile)', 83355), (147758, 147758, 90, 90, 'Instruction Disc (Foul Bane)', 83531), (147759, 147759, 162, 162, 'Instruction Disc (Foul Eyeblighter)', 83462), (147590, 147590, 169, 169, 'Instruction Disc (Four Fists of Kali)', 83403), (146745, 146745, 43, 43, 'Instruction Disc (Free Movement)', 83458), (147760, 147760, 96, 96, 'Instruction Disc (Freezing Surge)', 83525), (144981, 144981, 129, 129, 'Instruction Disc (Frenzy Embodiment)', 144375), (162347, 162347, 179, 179, 'Instruction Disc (Frenzy of Fur)', 144463), (162513, 162513, 169, 169, 'Instruction Disc (Frenzy of Shells)', 83453), (148045, 148045, 20, 20, 'Instruction Disc (Frequent Customer)', 83360), (144982, 144982, 64, 64, 'Instruction Disc (Frigid Blast)', 83524), (147761, 147761, 159, 159, 'Instruction Disc (Frigid Landscape)', 83300), (144983, 144983, 17, 17, 'Instruction Disc (Frost Slivers)', 83523), (146746, 146746, 7, 7, 'Instruction Disc (Frost With Snow)', 83363), (147762, 147762, 43, 43, 'Instruction Disc (Frosty Welcome)', 83524), (147763, 147763, 185, 185, 'Instruction Disc (Full-Body Acid Coating)', 83522), (147764, 147764, 83, 83, 'Instruction Disc (Furious Assault)', 83555), (147765, 147765, 103, 103, 'Instruction Disc (Furious Wind Blade)', 83550), (144984, 144984, 20, 20, 'Instruction Disc (Fury Externalization)', 144373), (205311, 205311, 71, 71, 'Instruction Disc (Gallant Hero: The Aggravated Servant)', 83467), (205317, 205317, 110, 110, 'Instruction Disc (Gallant Hero: The Angry Servitor)', 83467), (205320, 205320, 131, 131, 'Instruction Disc (Gallant Hero: The Bitter Clerk)', 83467), (205305, 205305, 30, 30, 'Instruction Disc (Gallant Hero: The Enraged Drone)', 83467), (205326, 205326, 173, 173, 'Instruction Disc (Gallant Hero: The Incensed Retainer)', 83467), (205314, 205314, 92, 92, 'Instruction Disc (Gallant Hero: The Indignant Flunky)', 83467), (205308, 205308, 52, 52, 'Instruction Disc (Gallant Hero: The Infuriated Minion)', 83467), (205323, 205323, 152, 152, 'Instruction Disc (Gallant Hero: The Irate Attache)', 83467), (205329, 205329, 199, 199, 'Instruction Disc (Gallant Hero: The Vengeful Butler)', 83467), (147766, 147766, 37, 37, 'Instruction Disc (Gaping Puncture)', 83554), (147148, 147148, 165, 165, 'Instruction Disc (Gargantuan Health)', 144325), (162329, 162329, 139, 139, 'Instruction Disc (Gaze of the Hunter)', 83464), (204060, 204060, 170, 170, 'Instruction Disc (Gift of the Travelling Salesman)', 83355), (147314, 147314, 90, 90, 'Instruction Disc (Gird for Punishment)', 144317), (147591, 147591, 7, 7, 'Instruction Disc (Give Energy: 10)', 83461), (147592, 147592, 53, 53, 'Instruction Disc (Give Energy: 100)', 83461), (147593, 147593, 14, 14, 'Instruction Disc (Give Energy: 25)', 83461), (147594, 147594, 27, 27, 'Instruction Disc (Give Energy: 50)', 83461), (147595, 147595, 7, 7, 'Instruction Disc (Give Life: 10)', 83407), (147596, 147596, 50, 50, 'Instruction Disc (Give Life: 100)', 83407), (147597, 147597, 14, 14, 'Instruction Disc (Give Life: 25)', 83407), (147598, 147598, 27, 27, 'Instruction Disc (Give Life: 50)', 83407), (147767, 147767, 50, 50, 'Instruction Disc (Glacial Advance)', 83524), (147315, 147315, 132, 132, 'Instruction Disc (Glacial Cloak)', 83363), (147768, 147768, 175, 175, 'Instruction Disc (Glacial Finality)', 83528), (144985, 144985, 159, 159, 'Instruction Disc (Glacial Lance)', 83526), (147403, 147403, 70, 70, 'Instruction Disc (Gladiatorbot)', 83470), (148046, 148046, 136, 136, 'Instruction Disc (Glib Health Haggler)', 83413), (148047, 148047, 106, 106, 'Instruction Disc (Glittering Plaything)', 83419), (146747, 146747, 156, 156, 'Instruction Disc (Glorious Healing)', 83410), (147316, 147316, 27, 27, 'Instruction Disc (Glowing Retribution)', 83363), (160855, 160855, 169, 169, 'Instruction Disc (Gnat''s Wing)', 83285), (147769, 147769, 27, 27, 'Instruction Disc (Gouge Eyes)', 83462), (147149, 147149, 70, 70, 'Instruction Disc (Gouge Flesh)', 83550), (147770, 147770, 169, 169, 'Instruction Disc (Gravitational Anomaly)', 83552), (147511, 147511, 126, 126, 'Instruction Disc (Gravity Bindings)', 83428), (147771, 147771, 149, 149, 'Instruction Disc (Gravity Pull)', 83423), (146984, 146984, 80, 80, 'Instruction Disc (Great Weight of the Guilty)', 83426), (146854, 146854, 106, 106, 'Instruction Disc (Greater Anatomy Lesson)', 144463), (144986, 144986, 7, 7, 'Instruction Disc (Greater Anger Manifestation)', 144373), (147404, 147404, 4, 4, 'Instruction Disc (Greater Armor Megaboost)', 83341), (147772, 147772, 119, 119, 'Instruction Disc (Greater Blade Chaos)', 83550), (147150, 147150, 156, 156, 'Instruction Disc (Greater Bloom of Health)', 83414), (147151, 147151, 109, 109, 'Instruction Disc (Greater Cellular Grafting)', 83411), (147773, 147773, 70, 70, 'Instruction Disc (Greater Chilling Stream)', 83524), (203918, 203918, 154, 154, 'Instruction Disc (Greater Conductive Spike)', 83355), (147774, 147774, 139, 139, 'Instruction Disc (Greater Crystalizing Ray)', 83526), (146855, 146855, 149, 149, 'Instruction Disc (Greater Death''s Knocking)', 83379), (147924, 147924, 57, 57, 'Instruction Disc (Greater Deflection Shield (Extended))', 144426), (147923, 147923, 50, 50, 'Instruction Disc (Greater Deflection Shield)', 144426), (146856, 146856, 109, 109, 'Instruction Disc (Greater Delay Pursuers)', 83427), (147512, 147512, 139, 139, 'Instruction Disc (Greater Delay Retreat)', 83424), (146857, 146857, 90, 90, 'Instruction Disc (Greater Delay the Inevitable)', 83423), (148048, 148048, 149, 149, 'Instruction Disc (Greater Delayed Health Payment)', 83413), (156176, 156176, 50, 50, 'Instruction Disc (Greater Deranged Mindreaver)', 144382), (148049, 148049, 169, 169, 'Instruction Disc (Greater Detain Customer)', 83424), (146858, 146858, 66, 66, 'Instruction Disc (Greater Detain Suspect)', 83422), (156175, 156175, 17, 17, 'Instruction Disc (Greater Distracting Sphere)', 144381), (148050, 148050, 149, 149, 'Instruction Disc (Greater Embrace of Greed)', 83423), (146748, 146748, 142, 142, 'Instruction Disc (Greater Encourage Regrowth)', 83410), (203930, 203930, 76, 76, 'Instruction Disc (Greater Energize Shell)', 83355), (146985, 146985, 146, 146, 'Instruction Disc (Greater Enforced Sloth)', 83427), (144987, 144987, 165, 165, 'Instruction Disc (Greater Enmity Personification)', 144376), (203887, 203887, 192, 192, 'Instruction Disc (Greater Exoskeleton Pulse)', 83355), (146986, 146986, 179, 179, 'Instruction Disc (Greater Fear of Attention)', 83423), (147152, 147152, 149, 149, 'Instruction Disc (Greater Field Dressings)', 83413), (144988, 144988, 146, 146, 'Instruction Disc (Greater Frenzy Embodiment)', 144375), (144989, 144989, 27, 27, 'Instruction Disc (Greater Fury Externalization)', 144373), (147513, 147513, 90, 90, 'Instruction Disc (Greater Halt Flight)', 83423), (147405, 147405, 159, 159, 'Instruction Disc (Greater Harmonic Cocoon)', 144429), (147599, 147599, 99, 99, 'Instruction Disc (Greater Healing Touch)', 301498), (148051, 148051, 113, 113, 'Instruction Disc (Greater Health Freeloader)', 144341), (148052, 148052, 33, 33, 'Instruction Disc (Greater Health Funnel)', 144337), (148053, 148053, 175, 175, 'Instruction Disc (Greater Health Plunder)', 144344), (146859, 146859, 83, 83, 'Instruction Disc (Greater Hold Victim)', 83423), (146987, 146987, 146, 146, 'Instruction Disc (Greater Illusory Paralysis)', 83423), (147153, 147153, 93, 93, 'Instruction Disc (Greater Lasting Heal)', 83409), (146988, 146988, 126, 126, 'Instruction Disc (Greater Mass Illusory Paralysis)', 83422), (146989, 146989, 162, 162, 'Instruction Disc (Greater Musculature Command)', 83424), (146860, 146860, 146, 146, 'Instruction Disc (Greater Mysterious Causes)', 83378), (147514, 147514, 136, 136, 'Instruction Disc (Greater Nano Boost)', 144462), (147515, 147515, 103, 103, 'Instruction Disc (Greater Nano Net)', 83423), (147516, 147516, 119, 119, 'Instruction Disc (Greater Net Cast Wide)', 83427), (146861, 146861, 149, 149, 'Instruction Disc (Greater Paralyze with Indecision)', 83424), (147154, 147154, 142, 142, 'Instruction Disc (Greater Periodic Checkup)', 83411), (204442, 204442, 149, 149, 'Instruction Disc (Greater Polarized Screening)', 144318), (147155, 147155, 172, 172, 'Instruction Disc (Greater Policy Payout)', 83410), (147517, 147517, 152, 152, 'Instruction Disc (Greater Prolong Encounter)', 83424), (146749, 146749, 43, 43, 'Instruction Disc (Greater Quick Heal)', 83408), (147775, 147775, 129, 129, 'Instruction Disc (Greater RNA Reaper)', 83562), (144990, 144990, 53, 53, 'Instruction Disc (Greater Rage Materialization)', 144374), (147926, 147926, 132, 132, 'Instruction Disc (Greater Reflective Field (Extended))', 144429), (147925, 147925, 129, 129, 'Instruction Disc (Greater Reflective Field)', 144429), (147600, 147600, 129, 129, 'Instruction Disc (Greater Restore Essence)', 301499), (146750, 146750, 130, 130, 'Instruction Disc (Greater Restore Health)', 83409), (146990, 146990, 99, 99, 'Instruction Disc (Greater Restrict Movement)', 83423), (147406, 147406, 165, 165, 'Instruction Disc (Greater Retaliatory Barrier)', 83363), (147776, 147776, 172, 172, 'Instruction Disc (Greater Searing Stream)', 83522), (147601, 147601, 132, 132, 'Instruction Disc (Greater Shen Protection)', 144370), (147777, 147777, 132, 132, 'Instruction Disc (Greater Shower with Sludge)', 83520), (147602, 147602, 86, 86, 'Instruction Disc (Greater Steel Skin)', 144369), (148054, 148054, 80, 80, 'Instruction Disc (Greater Strip Assets)', 83487), (146991, 146991, 106, 106, 'Instruction Disc (Greater Stumbling Steps)', 83423), (146862, 146862, 116, 116, 'Instruction Disc (Greater Suspicious Death)', 83377), (147603, 147603, 106, 106, 'Instruction Disc (Greater Team Healing Touch)', 301502), (147156, 147156, 76, 76, 'Instruction Disc (Greater Team Healing)', 83409), (146751, 146751, 57, 57, 'Instruction Disc (Greater Team Quick Heal)', 83408), (147604, 147604, 132, 132, 'Instruction Disc (Greater Team Restore Essence)', 301503), (147605, 147605, 123, 123, 'Instruction Disc (Greater Titanium Skin)', 144370), (147778, 147778, 83, 83, 'Instruction Disc (Greater Toxic Field)', 83519), (147779, 147779, 179, 179, 'Instruction Disc (Greater Viral Assault)', 83534), (146752, 146752, 96, 96, 'Instruction Disc (Greater Wilderness Protection)', 144423), (147606, 147606, 53, 53, 'Instruction Disc (Greater Wooden Skin)', 144368), (144991, 144991, 93, 93, 'Instruction Disc (Greater Wrath Incarnation)', 144375), (147518, 147518, 123, 123, 'Instruction Disc (Grid Excursion)', 83565), (148055, 148055, 166, 166, 'Instruction Disc (Grid Gateway)', 83565), (162605, 162605, 132, 132, 'Instruction Disc (Grid Phase Accelerator (Team))', 144389), (147519, 147519, 136, 136, 'Instruction Disc (Grid Phase Accelerator)', 83458), (147520, 147520, 20, 20, 'Instruction Disc (Grid Phreak)', 83565), (162608, 162608, 40, 40, 'Instruction Disc (Grid Runner (Team))', 144386), (147521, 147521, 43, 43, 'Instruction Disc (Grid Runner)', 83458), (162611, 162611, 76, 76, 'Instruction Disc (Grid Surfer (Team))', 144387), (147522, 147522, 83, 83, 'Instruction Disc (Grid Surfer)', 83458), (162614, 162614, 156, 156, 'Instruction Disc (Gridspace Freedom (Team))', 144390), (147523, 147523, 156, 156, 'Instruction Disc (Gridspace Freedom)', 83458), (204025, 204025, 94, 94, 'Instruction Disc (Grim Circumstance)', 83355), (146754, 146754, 90, 90, 'Instruction Disc (Grinning Hunter (Other))', 83477), (146755, 146755, 93, 93, 'Instruction Disc (Grinning Hunter (Team))', 83477), (146753, 146753, 83, 83, 'Instruction Disc (Grinning Hunter)', 83477), (148056, 148056, 149, 149, 'Instruction Disc (Guard Convoy)', 144463), (146756, 146756, 90, 90, 'Instruction Disc (Guard of the Grizzly)', 83363), (147407, 147407, 109, 109, 'Instruction Disc (Guardbot)', 83470), (160861, 160861, 93, 93, 'Instruction Disc (Guidance of The Executioner)', 144461), (203712, 203712, 200, 200, 'Instruction Disc (Guile of the Snake Oil Seller)', 83355), (147408, 147408, 10, 10, 'Instruction Disc (Gun Enhancement)', 83575), (146992, 146992, 14, 14, 'Instruction Disc (Gunslinger)', 83474), (162617, 162617, 27, 27, 'Instruction Disc (Hack Grid Vector (Team))', 144385), (147524, 147524, 30, 30, 'Instruction Disc (Hack Grid Vector)', 83458), (162742, 162742, 37, 37, 'Instruction Disc (Hacked Diagnosis)', 83409), (203189, 203189, 80, 80, 'Instruction Disc (Hail of Metal)', 83404), (147157, 147157, 146, 146, 'Instruction Disc (Hale and Hearty)', 83413), (147158, 147158, 172, 172, 'Instruction Disc (Halo of Health)', 83414), (147780, 147780, 20, 20, 'Instruction Disc (Halon Cloud)', 83523), (147525, 147525, 4, 4, 'Instruction Disc (Halt Flight)', 83421), (147607, 147607, 14, 14, 'Instruction Disc (Harden Skin)', 83452), (147409, 147409, 139, 139, 'Instruction Disc (Harmonic Cocoon)', 144428), (147526, 147526, 43, 43, 'Instruction Disc (Hasty Augmentation Cloud)', 144460), (147317, 147317, 30, 30, 'Instruction Disc (Headcracker)', 83347), (147159, 147159, 123, 123, 'Instruction Disc (Healer''s Hands)', 83412), (147608, 147608, 73, 73, 'Instruction Disc (Healing Aura)', 301498), (147160, 147160, 116, 116, 'Instruction Disc (Healing Light)', 83412), (146757, 146757, 156, 156, 'Instruction Disc (Healing Rays of Sunrise)', 83410), (147609, 147609, 43, 43, 'Instruction Disc (Healing Touch)', 301498), (147161, 147161, 156, 156, 'Instruction Disc (Health Assembler)', 144434), (147162, 147162, 4, 4, 'Instruction Disc (Health Augmentation)', 83502), (147163, 147163, 165, 165, 'Instruction Disc (Health Cartel)', 83413), (148057, 148057, 86, 86, 'Instruction Disc (Health Freeloader)', 144340), (148058, 148058, 20, 20, 'Instruction Disc (Health Funnel)', 144336), (147164, 147164, 17, 17, 'Instruction Disc (Health Graft)', 144325), (148059, 148059, 159, 159, 'Instruction Disc (Health Plunder)', 144343), (147165, 147165, 60, 60, 'Instruction Disc (Health Pump)', 83408), (147166, 147166, 30, 30, 'Instruction Disc (Health Surge)', 83502), (147927, 147927, 159, 159, 'Instruction Disc (Heavy Assault Absorption Shield)', 144424), (147928, 147928, 152, 152, 'Instruction Disc (Heavy Assault Combat Barrier)', 144424), (147410, 147410, 185, 185, 'Instruction Disc (Heavy Assault Force Field)', 144320), (147929, 147929, 139, 139, 'Instruction Disc (Helepolis of the Besieger)', 144463), (146863, 146863, 40, 40, 'Instruction Disc (Hidden Killer)', 83375), (144992, 144992, 182, 182, 'Instruction Disc (High Chant of Effortless Strikes)', 83354), (144993, 144993, 156, 156, 'Instruction Disc (High Chant of Frenzied Blows)', 83354), (148060, 148060, 30, 30, 'Instruction Disc (Hired Hands)', 144460), (147781, 147781, 57, 57, 'Instruction Disc (Hoary Seep)', 83524), (146864, 146864, 132, 132, 'Instruction Disc (Hold Victim)', 83422), (147610, 147610, 149, 149, 'Instruction Disc (Horde)', 83402), (146993, 146993, 179, 179, 'Instruction Disc (Horror From The Darkest Pit)', 83495), (148061, 148061, 90, 90, 'Instruction Disc (Hostile Takeover)', 83487), (147782, 147782, 14, 14, 'Instruction Disc (Hot Foot)', 83541), (162129, 162129, 126, 126, 'Instruction Disc (Howl of the Wolf)', 83484), (147783, 147783, 40, 40, 'Instruction Disc (Humidity Extractor)', 83461), (147930, 147930, 132, 132, 'Instruction Disc (Id Assault)', 83385), (144994, 144994, 90, 90, 'Instruction Disc (Ignore External Events)', 83489), (146994, 146994, 80, 80, 'Instruction Disc (Illusory Paralysis)', 83422), (148062, 148062, 146, 146, 'Instruction Disc (Imaginary Distractions)', 83419), (203223, 203223, 121, 121, 'Instruction Disc (Imminent Storm)', 83387), (147318, 147318, 63, 63, 'Instruction Disc (Immolation Shield)', 83363), (147784, 147784, 123, 123, 'Instruction Disc (Impactor Missile)', 83556), (147785, 147785, 139, 139, 'Instruction Disc (Impaling Tracer)', 83557), (146758, 146758, 153, 153, 'Instruction Disc (Implacability of Life)', 83410), (146995, 146995, 86, 86, 'Instruction Disc (Impose Will)', 83487), (148063, 148063, 146, 146, 'Instruction Disc (Impoverish Accounts)', 83487), (147319, 147319, 132, 132, 'Instruction Disc (Incandescent Rage)', 301299), (147168, 147168, 126, 126, 'Instruction Disc (Incandescent Venom)', 83375), (161894, 161894, 172, 172, 'Instruction Disc (Incinerate)', 83545), (147169, 147169, 126, 126, 'Instruction Disc (Induce Musculature Spasms)', 83434), (147170, 147170, 30, 30, 'Instruction Disc (Infected Wounds)', 83371), (147411, 147411, 24, 24, 'Instruction Disc (Inferior Android)', 83465), (144995, 144995, 1, 1, 'Instruction Disc (Inferior Anger Manifestation)', 144373), (147412, 147412, 4, 4, 'Instruction Disc (Inferior Automaton)', 83465), (147171, 147171, 14, 14, 'Instruction Disc (Inferior Cleanse Wounds)', 83407), (144996, 144996, 159, 159, 'Instruction Disc (Inferior Enmity Personification)', 144376), (144997, 144997, 123, 123, 'Instruction Disc (Inferior Frenzy Embodiment)', 144375), (144998, 144998, 17, 17, 'Instruction Disc (Inferior Fury Externalization)', 144373), (147413, 147413, 57, 57, 'Instruction Disc (Inferior Gladiatorbot)', 83470), (147414, 147414, 96, 96, 'Instruction Disc (Inferior Guardbot)', 83470), (144999, 144999, 40, 40, 'Instruction Disc (Inferior Rage Materialization)', 144374), (147415, 147415, 139, 139, 'Instruction Disc (Inferior Warbot)', 83471), (147416, 147416, 162, 162, 'Instruction Disc (Inferior Warmachine)', 83472), (147172, 147172, 4, 4, 'Instruction Disc (Inferior Wound Bindings)', 83407), (145000, 145000, 83, 83, 'Instruction Disc (Inferior Wrath Incarnation)', 144374), (147320, 147320, 139, 139, 'Instruction Disc (Infernal Rage)', 301299), (147173, 147173, 7, 7, 'Instruction Disc (Inflict Harm)', 83548), (151798, 151798, 123, 123, 'Instruction Disc (Infuse With Knowledge: Biological Metamorphose)', 83346), (151797, 151797, 130, 130, 'Instruction Disc (Infuse With Knowledge: Material Creation)', 83448), (151795, 151795, 126, 126, 'Instruction Disc (Infuse With Knowledge: Material Metamorphose)', 83450), (151794, 151794, 136, 136, 'Instruction Disc (Infuse With Knowledge: Psychological Modification)', 83488), (151804, 151804, 133, 133, 'Instruction Disc (Infuse With Knowledge: Sensory Improvement)', 83496), (151796, 151796, 130, 130, 'Instruction Disc (Infuse With Knowledge: Time and Space)', 83449), (147174, 147174, 156, 156, 'Instruction Disc (Infuse with Life)', 144325), (146996, 146996, 132, 132, 'Instruction Disc (Inhibit Motion)', 83423), (146865, 146865, 14, 14, 'Instruction Disc (Inject Poison)', 83371), (146866, 146866, 66, 66, 'Instruction Disc (Inject Venom)', 83375), (147611, 147611, 169, 169, 'Instruction Disc (Inner Peace, Outward Rage)', 144464), (146997, 146997, 152, 152, 'Instruction Disc (Insidious Beguilement)', 83487), (148064, 148064, 123, 123, 'Instruction Disc (Insolvency)', 83487), (147527, 147527, 74, 74, 'Instruction Disc (Instantaneous Encoding)', 83565), (145001, 145001, 166, 166, 'Instruction Disc (Instill With Enduring Wrath)', 83354), (145002, 145002, 113, 113, 'Instruction Disc (Instill With Ferocious Purpose)', 83354), (145003, 145003, 41, 41, 'Instruction Disc (Instill With Fury)', 83354), (145004, 145004, 189, 189, 'Instruction Disc (Instill With Malign Intent)', 83354), (145005, 145005, 21, 21, 'Instruction Disc (Instill With Rage)', 83354), (145006, 145006, 150, 150, 'Instruction Disc (Instill With Righteous Frenzy)', 83354), (145007, 145007, 74, 74, 'Instruction Disc (Instill With Terrible Anger)', 83354), (147175, 147175, 90, 90, 'Instruction Disc (Instinctive Control)', 301245), (147528, 147528, 47, 47, 'Instruction Disc (Insurance Hack)', 83408), (146759, 146759, 142, 142, 'Instruction Disc (Interlocking Barbs)', 83363), (147786, 147786, 162, 162, 'Instruction Disc (Internal Combustion)', 83545), (147176, 147176, 175, 175, 'Instruction Disc (Internal Decomposition)', 83376), (145008, 145008, 14, 14, 'Instruction Disc (Internal Focus)', 83489), (147177, 147177, 156, 156, 'Instruction Disc (Internal Renewal)', 83413), (147417, 147417, 156, 156, 'Instruction Disc (Intricate Repairs)', 83412), (146998, 146998, 132, 132, 'Instruction Disc (Introspective Engagement)', 83419), (204481, 204481, 60, 60, 'Instruction Disc (Intrusive Aura Cancellation)', 83355), (204469, 204469, 97, 97, 'Instruction Disc (Intrusive Aura of Binding)', 83425), (204466, 204466, 60, 60, 'Instruction Disc (Intrusive Aura of Entanglement)', 83425), (204472, 204472, 132, 132, 'Instruction Disc (Intrusive Aura of Malaise)', 83426), (204475, 204475, 166, 166, 'Instruction Disc (Intrusive Aura of Sloth)', 83426), (204478, 204478, 199, 199, 'Instruction Disc (Intrusive Aura of the Humble Servant)', 83427), (147529, 147529, 63, 63, 'Instruction Disc (Invasive Distributed Entanglement)', 83426), (147530, 147530, 73, 73, 'Instruction Disc (Invasive Micro Entanglement)', 83427), (147787, 147787, 70, 70, 'Instruction Disc (Invasive Presence)', 83530), (146999, 146999, 162, 162, 'Instruction Disc (Inveigle Support)', 83487), (146760, 146760, 159, 159, 'Instruction Disc (Invocation of the Phoenix)', 83410), (147788, 147788, 14, 14, 'Instruction Disc (Ion Stream)', 83559), (147178, 147178, 83, 83, 'Instruction Disc (Iron Circle)', 83504), (147612, 147612, 4, 4, 'Instruction Disc (Iron Fist)', 83575), (148065, 148065, 149, 149, 'Instruction Disc (Irresistible Health Haggler)', 83413), (147789, 147789, 50, 50, 'Instruction Disc (Isotope Deluge)', 83560), (147790, 147790, 146, 146, 'Instruction Disc (Isotope Waves)', 83338), (147791, 147791, 182, 182, 'Instruction Disc (Izgimmer''s Enveloping Flame)', 83437), (147792, 147792, 212, 212, 'Instruction Disc (Izgimmer''s Last Word)', 83439), (147793, 147793, 185, 185, 'Instruction Disc (Izgimmer''s Little Nuke)', 83440), (150667, 150667, 182, 182, 'Instruction Disc (Izgimmer''s Mockery)', 144372), (147794, 147794, 179, 179, 'Instruction Disc (Izgimmer''s Obfuscated Recompiler)', 83461), (146761, 146761, 17, 17, 'Instruction Disc (Jacket of Blades)', 83363), (204022, 204022, 200, 200, 'Instruction Disc (Jail Break)', 83355), (147795, 147795, 152, 152, 'Instruction Disc (Jobe Nano Libraries)', 83461), (148066, 148066, 80, 80, 'Instruction Disc (Journeyman: Electrical Engineering)', 83386), (148067, 148067, 80, 80, 'Instruction Disc (Journeyman: Field Quantum Physics)', 83394), (148068, 148068, 83, 83, 'Instruction Disc (Journeyman: Mechanical Engineer)', 83451), (148069, 148069, 86, 86, 'Instruction Disc (Journeyman: Pharmaceutical)', 83473), (148070, 148070, 86, 86, 'Instruction Disc (Journeyman: Weapon Smithing)', 83573), (163104, 163104, 63, 63, 'Instruction Disc (Jury-rigged NCU Analyzer)', 83360), (147531, 147531, 152, 152, 'Instruction Disc (Karma Harvest)', 83464), (147796, 147796, 212, 212, 'Instruction Disc (Kel''s Neutronium Plaything)', 83440), (162745, 162745, 53, 53, 'Instruction Disc (Kitchen-sink Surgery)', 83409), (147613, 147613, 139, 139, 'Instruction Disc (Last Minute Adjustments)', 83343), (147179, 147179, 14, 14, 'Instruction Disc (Lasting Heal)', 83407), (147797, 147797, 80, 80, 'Instruction Disc (Layered Protection)', 83341), (162132, 162132, 152, 152, 'Instruction Disc (Leader of the Pack)', 144418), (162620, 162620, 57, 57, 'Instruction Disc (Leech Grid Vector (Team))', 144386), (147532, 147532, 63, 63, 'Instruction Disc (Leech Grid Vector)', 83458), (161882, 161882, 30, 30, 'Instruction Disc (Leet Friend)', 144397), (161888, 161888, 106, 106, 'Instruction Disc (Leetas Friend)', 144397), (147798, 147798, 162, 162, 'Instruction Disc (Legions of the Eyeblighter)', 83462), (146867, 146867, 165, 165, 'Instruction Disc (Leisurely Interrogation)', 83424), (148071, 148071, 24, 24, 'Instruction Disc (Lend Nano: 100)', 83461), (148075, 148075, 172, 172, 'Instruction Disc (Lend Nano: 1000)', 83461), (148072, 148072, 53, 53, 'Instruction Disc (Lend Nano: 250)', 83461), (148073, 148073, 10, 10, 'Instruction Disc (Lend Nano: 50)', 83461), (148074, 148074, 116, 116, 'Instruction Disc (Lend Nano: 500)', 83461), (147931, 147931, 37, 37, 'Instruction Disc (Lesser Absorption Shield)', 144420), (146868, 146868, 10, 10, 'Instruction Disc (Lesser Anatomy Lesson)', 83575), (147418, 147418, 24, 24, 'Instruction Disc (Lesser Android)', 83465), (147419, 147419, 4, 4, 'Instruction Disc (Lesser Automaton)', 83465), (147799, 147799, 40, 40, 'Instruction Disc (Lesser Bane of the Living)', 83530), (147000, 147000, 7, 7, 'Instruction Disc (Lesser Blizzard of Red Tape)', 83425), (147180, 147180, 63, 63, 'Instruction Disc (Lesser Bloom of Health)', 83410), (147181, 147181, 1, 1, 'Instruction Disc (Lesser Cellular Grafting)', 83407), (147001, 147001, 96, 96, 'Instruction Disc (Lesser Charismatic Rapture)', 83487), (147182, 147182, 47, 47, 'Instruction Disc (Lesser Circle of Renewal)', 83408), (147932, 147932, 20, 20, 'Instruction Disc (Lesser Combat Barrier)', 83486), (203912, 203912, 102, 102, 'Instruction Disc (Lesser Conductive Spike)', 83355), (147800, 147800, 109, 109, 'Instruction Disc (Lesser Coronet of Frost)', 83526), (146869, 146869, 93, 93, 'Instruction Disc (Lesser Death''s Knocking)', 83377), (147420, 147420, 57, 57, 'Instruction Disc (Lesser Defensive Screen)', 144316), (147934, 147934, 30, 30, 'Instruction Disc (Lesser Deflection Shield (Extended))', 144426), (147933, 147933, 24, 24, 'Instruction Disc (Lesser Deflection Shield)', 83491), (146870, 146870, 27, 27, 'Instruction Disc (Lesser Delay Pursuers)', 83425), (146871, 146871, 37, 37, 'Instruction Disc (Lesser Delay the Inevitable)', 83421), (148076, 148076, 57, 57, 'Instruction Disc (Lesser Delayed Health Payment)', 83410), (156174, 156174, 34, 34, 'Instruction Disc (Lesser Deranged Mindreaver)', 144382), (148077, 148077, 1, 1, 'Instruction Disc (Lesser Detain Customer)', 83421), (156173, 156173, 4, 4, 'Instruction Disc (Lesser Distracting Sphere)', 144381), (148078, 148078, 14, 14, 'Instruction Disc (Lesser Embrace of Greed)', 83421), (147801, 147801, 47, 47, 'Instruction Disc (Lesser Encircle With Blades)', 83548), (203924, 203924, 14, 14, 'Instruction Disc (Lesser Energize Shell)', 83355), (147002, 147002, 14, 14, 'Instruction Disc (Lesser Enforced Sloth)', 83425), (145010, 145010, 156, 156, 'Instruction Disc (Lesser Enmity Personification)', 144376), (203878, 203878, 71, 71, 'Instruction Disc (Lesser Exoskeleton Pulse)', 83355), (147802, 147802, 86, 86, 'Instruction Disc (Lesser Eyeblighter)', 83462), (147003, 147003, 149, 149, 'Instruction Disc (Lesser Fear of Attention)', 83423), (147421, 147421, 162, 162, 'Instruction Disc (Lesser Force Field)', 144319), (145011, 145011, 113, 113, 'Instruction Disc (Lesser Frenzy Embodiment)', 144375), (145012, 145012, 14, 14, 'Instruction Disc (Lesser Fury Externalization)', 144373), (147422, 147422, 53, 53, 'Instruction Disc (Lesser Gladiatorbot)', 83470), (147423, 147423, 93, 93, 'Instruction Disc (Lesser Guardbot)', 83470), (147424, 147424, 96, 96, 'Instruction Disc (Lesser Harmonic Cocoon)', 144427), (147614, 147614, 10, 10, 'Instruction Disc (Lesser Healing Touch)', 301497), (148079, 148079, 80, 80, 'Instruction Disc (Lesser Health Freeloader)', 144339), (148080, 148080, 17, 17, 'Instruction Disc (Lesser Health Funnel)', 144336), (148081, 148081, 156, 156, 'Instruction Disc (Lesser Health Plunder)', 144343), (146872, 146872, 17, 17, 'Instruction Disc (Lesser Hold Victim)', 83421), (147004, 147004, 4, 4, 'Instruction Disc (Lesser Illusory Paralysis)', 83421), (147183, 147183, 17, 17, 'Instruction Disc (Lesser Muscle Atrophy)', 83434), (147005, 147005, 33, 33, 'Instruction Disc (Lesser Musculature Command)', 83422), (146873, 146873, 27, 27, 'Instruction Disc (Lesser Mysterious Causes)', 83371), (147184, 147184, 17, 17, 'Instruction Disc (Lesser Nano Bandage)', 83408), (147533, 147533, 10, 10, 'Instruction Disc (Lesser Nano Boost)', 83575), (147534, 147534, 10, 10, 'Instruction Disc (Lesser Nano Net)', 83421), (147185, 147185, 24, 24, 'Instruction Disc (Lesser Nano Surgery)', 83408), (147535, 147535, 20, 20, 'Instruction Disc (Lesser Net Cast Wide)', 83425), (146874, 146874, 33, 33, 'Instruction Disc (Lesser Paralyze with Indecision)', 83421), (147006, 147006, 27, 27, 'Instruction Disc (Lesser Pheromone Control)', 83487), (204439, 204439, 52, 52, 'Instruction Disc (Lesser Polarized Screening)', 144315), (147186, 147186, 109, 109, 'Instruction Disc (Lesser Policy Payout)', 83410), (147536, 147536, 27, 27, 'Instruction Disc (Lesser Prolong Encounter)', 83422), (147425, 147425, 50, 50, 'Instruction Disc (Lesser Protective Field)', 144316), (147803, 147803, 14, 14, 'Instruction Disc (Lesser RNA Reaper)', 83559), (145013, 145013, 37, 37, 'Instruction Disc (Lesser Rage Materialization)', 144374), (147936, 147936, 123, 123, 'Instruction Disc (Lesser Reflective Field (Extended))', 144428), (147935, 147935, 123, 123, 'Instruction Disc (Lesser Reflective Field)', 144428), (146762, 146762, 21, 21, 'Instruction Disc (Lesser Restore to Health)', 83407), (147426, 147426, 37, 37, 'Instruction Disc (Lesser Retaliatory Barrier)', 83363), (147615, 147615, 33, 33, 'Instruction Disc (Lesser Shen Protection)', 144368), (147427, 147427, 43, 43, 'Instruction Disc (Lesser Shielding Barrier)', 144316), (147007, 147007, 4, 4, 'Instruction Disc (Lesser Stumbling Steps)', 83425), (162516, 162516, 14, 14, 'Instruction Disc (Lesser Suppressor)', 83453), (146875, 146875, 4, 4, 'Instruction Disc (Lesser Suspicious Death)', 83371), (147428, 147428, 136, 136, 'Instruction Disc (Lesser Warbot)', 83471), (147429, 147429, 159, 159, 'Instruction Disc (Lesser Warmachine)', 83471), (147008, 147008, 37, 37, 'Instruction Disc (Lesser Weighty Announcement)', 83425), (146763, 146763, 20, 20, 'Instruction Disc (Lesser Wilderness Protection)', 144420), (145014, 145014, 76, 76, 'Instruction Disc (Lesser Wrath Incarnation)', 144374), (161932, 161932, 146, 146, 'Instruction Disc (Lick Wounds)', 83410), (147321, 147321, 136, 136, 'Instruction Disc (Lick of Fire)', 83363), (147187, 147187, 152, 152, 'Instruction Disc (Life Balm)', 83413), (147188, 147188, 182, 182, 'Instruction Disc (Life Channeler)', 144434), (147189, 147189, 50, 50, 'Instruction Disc (Life Reinforcement)', 144432), (147537, 147537, 90, 90, 'Instruction Disc (Lifebane Modification)', 144461), (147190, 147190, 165, 165, 'Instruction Disc (Lifegiving Elixir)', 83414), (147322, 147322, 106, 106, 'Instruction Disc (Lightning Shield)', 83363), (147804, 147804, 80, 80, 'Instruction Disc (Lightning Strike)', 83537), (146764, 146764, 152, 152, 'Instruction Disc (Lightning''s Child)', 83363), (147616, 147616, 17, 17, 'Instruction Disc (Limbo Mastery)', 83391), (147009, 147009, 132, 132, 'Instruction Disc (Limited Administrator-Droid)', 83471), (147010, 147010, 73, 73, 'Instruction Disc (Limited Aide-Droid)', 83470), (147011, 147011, 50, 50, 'Instruction Disc (Limited Assistant-Droid)', 83470), (147012, 147012, 30, 30, 'Instruction Disc (Limited Attendant-Droid)', 83465), (147013, 147013, 162, 162, 'Instruction Disc (Limited Bodyguard)', 83472), (162623, 162623, 14, 14, 'Instruction Disc (Limited Grid Jump (Team))', 144385), (147538, 147538, 17, 17, 'Instruction Disc (Limited Grid Jump)', 83458), (147014, 147014, 17, 17, 'Instruction Disc (Limited Helper-Bot)', 83465), (147015, 147015, 146, 146, 'Instruction Disc (Limited Minion)', 83472), (147191, 147191, 7, 7, 'Instruction Disc (Limited Nano Reaper)', 83371), (147016, 147016, 99, 99, 'Instruction Disc (Limited Secretary-Droid)', 83471), (147805, 147805, 83, 83, 'Instruction Disc (Limited Shrapnel Spray)', 83331), (147017, 147017, 1, 1, 'Instruction Disc (Limited Worker-Droid)', 83465), (148082, 148082, 7, 7, 'Instruction Disc (Line of Credit)', 83487), (147806, 147806, 159, 159, 'Instruction Disc (Linear Acceleration)', 83557), (147807, 147807, 132, 132, 'Instruction Disc (Liquefying Sphere)', 83520), (148083, 148083, 156, 156, 'Instruction Disc (Liquidation)', 83487), (205165, 205165, 166, 166, 'Instruction Disc (Living Codex of Izgimmer)', 83459), (147018, 147018, 175, 175, 'Instruction Disc (Living Embalming)', 83416), (147808, 147808, 189, 189, 'Instruction Disc (Localized Dimensional Inversion)', 83552), (147617, 147617, 27, 27, 'Instruction Disc (Lotus on Water)', 83575), (147539, 147539, 83, 83, 'Instruction Disc (Luck''s Fickle Fate)', 83391), (203697, 203697, 200, 200, 'Instruction Disc (Luck''s Lost Twin)', 83355), (145015, 145015, 162, 162, 'Instruction Disc (Lull Wrath)', 83575), (162323, 162323, 53, 53, 'Instruction Disc (Lupus Oculus)', 83464), (161401, 161401, 57, 57, 'Instruction Disc (Lure of the Pincushion)', 83363), (148088, 148088, 152, 152, 'Instruction Disc (Maestro: Electrical Engineering)', 83386), (148089, 148089, 152, 152, 'Instruction Disc (Maestro: Field Quantum Physics)', 83394), (148090, 148090, 152, 152, 'Instruction Disc (Maestro: Mechanical Engineering)', 83451), (148091, 148091, 156, 156, 'Instruction Disc (Maestro: Pharmaceutical)', 83473), (148092, 148092, 156, 156, 'Instruction Disc (Maestro: Weapon Smithing)', 83573), (146765, 146765, 109, 109, 'Instruction Disc (Magma Coating)', 83363), (148093, 148093, 189, 189, 'Instruction Disc (Major Armor Distributor)', 144334), (147809, 147809, 146, 146, 'Instruction Disc (Major Chemical Burn)', 83521), (147938, 147938, 70, 70, 'Instruction Disc (Major Deflection Shield (Extended))', 144427), (147937, 147937, 63, 63, 'Instruction Disc (Major Deflection Shield)', 144427), (148094, 148094, 100, 100, 'Instruction Disc (Major Delayed Health Payment)', 83411), (148095, 148095, 93, 93, 'Instruction Disc (Major Health Freeloader)', 144340), (148096, 148096, 24, 24, 'Instruction Disc (Major Health Funnel)', 144337), (147192, 147192, 93, 93, 'Instruction Disc (Major Health Graft)', 144325), (148097, 148097, 162, 162, 'Instruction Disc (Major Health Plunder)', 144343), (146876, 146876, 80, 80, 'Instruction Disc (Major Nano Augmentation)', 144462), (147940, 147940, 139, 139, 'Instruction Disc (Major Reflective Field (Extended))', 144430), (147939, 147939, 136, 136, 'Instruction Disc (Major Reflective Field)', 144430), (147618, 147618, 99, 99, 'Instruction Disc (Major Shen Protection)', 144369), (162501, 162501, 73, 73, 'Instruction Disc (Major Suppressor)', 83453), (146766, 146766, 70, 70, 'Instruction Disc (Major Wilderness Protection)', 144422), (146767, 146767, 74, 74, 'Instruction Disc (Makeshift Bandaging)', 83408), (147810, 147810, 149, 149, 'Instruction Disc (Malign Devourer)', 83533), (148098, 148098, 14, 14, 'Instruction Disc (Margin Call)', 83487), (160622, 160622, 126, 126, 'Instruction Disc (Mark of Danger)', 83343), (160625, 160625, 159, 159, 'Instruction Disc (Mark of Peril)', 83343), (160619, 160619, 57, 57, 'Instruction Disc (Mark of Risk)', 83343), (147619, 147619, 50, 50, 'Instruction Disc (Martial Arts Mastery)', 83447), (147811, 147811, 20, 20, 'Instruction Disc (Mass Claw Eyes)', 83462), (147812, 147812, 109, 109, 'Instruction Disc (Mass Cornea Attack)', 83462), (147019, 147019, 10, 10, 'Instruction Disc (Mass Daze)', 83421), (147540, 147540, 136, 136, 'Instruction Disc (Mass Gravity Bindings)', 83428), (147020, 147020, 27, 27, 'Instruction Disc (Mass Illusory Paralysis)', 83421), (147813, 147813, 132, 132, 'Instruction Disc (Mass Pronounce Blindness)', 83462), (204039, 204039, 169, 169, 'Instruction Disc (Master Escapologist)', 83355), (148099, 148099, 116, 116, 'Instruction Disc (Masterly Health Haggler)', 83412), (145016, 145016, 43, 43, 'Instruction Disc (MatCrea Mastery)', 83448), (145018, 145018, 50, 50, 'Instruction Disc (MatMet Mastery)', 83450), (147195, 147195, 57, 57, 'Instruction Disc (Medic''s Call)', 83409), (147196, 147196, 47, 47, 'Instruction Disc (Medic''s Respite)', 144325), (147541, 147541, 17, 17, 'Instruction Disc (Medical Claim)', 83407), (147193, 147193, 132, 132, 'Instruction Disc (Medical Response)', 83412), (147194, 147194, 70, 70, 'Instruction Disc (Medical Sequencer)', 83408), (147620, 147620, 40, 40, 'Instruction Disc (Meditate on an Autumn Leaf)', 144460), (161383, 161383, 169, 169, 'Instruction Disc (Meld With Background)', 83361), (148100, 148100, 34, 34, 'Instruction Disc (Mental Switcheroo)', 83417), (147814, 147814, 123, 123, 'Instruction Disc (Mephitic Ichor)', 83532), (147815, 147815, 103, 103, 'Instruction Disc (Meson Blast)', 83537), (147816, 147816, 136, 136, 'Instruction Disc (Meta-Dioxin Spray)', 83520), (147197, 147197, 119, 119, 'Instruction Disc (Metabolic Disassembly)', 83375), (147198, 147198, 33, 33, 'Instruction Disc (Metabolism Booster)', 144325), (203180, 203180, 170, 170, 'Instruction Disc (Metal Barrage)', 83404), (203186, 203186, 106, 106, 'Instruction Disc (Metal Storm)', 83404), (203183, 203183, 140, 140, 'Instruction Disc (Metal Strike)', 83404), (147818, 147818, 116, 116, 'Instruction Disc (Micro Flechette Swarm)', 83556), (147817, 147817, 17, 17, 'Instruction Disc (Micro Flechette)', 83553), (147819, 147819, 47, 47, 'Instruction Disc (Microblade Whirlwind)', 83377), (147324, 147324, 149, 149, 'Instruction Disc (Mighty Challenger to Behemoth)', 144366), (147325, 147325, 129, 129, 'Instruction Disc (Mighty Challenger to Colossus)', 144364), (147326, 147326, 24, 24, 'Instruction Disc (Mighty Challenger to Cyclops)', 83401), (147327, 147327, 90, 90, 'Instruction Disc (Mighty Challenger to Gargantua)', 144363), (147328, 147328, 136, 136, 'Instruction Disc (Mighty Challenger to Leviathan)', 144365), (147329, 147329, 53, 53, 'Instruction Disc (Mighty Challenger to Titan)', 144362), (147820, 147820, 37, 37, 'Instruction Disc (Mild Toxic Spill)', 83290), (147430, 147430, 156, 156, 'Instruction Disc (Military-Grade Warbot)', 83471), (147431, 147431, 175, 175, 'Instruction Disc (Military-Grade Warmachine)', 83472), (146877, 146877, 152, 152, 'Instruction Disc (Mimic Profession: Adventurer)', 83505), (146878, 146878, 165, 165, 'Instruction Disc (Mimic Profession: Bureaucrat)', 83505), (146879, 146879, 162, 162, 'Instruction Disc (Mimic Profession: Doctor)', 83505), (146880, 146880, 146, 146, 'Instruction Disc (Mimic Profession: Enforcer)', 83505), (146881, 146881, 156, 156, 'Instruction Disc (Mimic Profession: Engineer)', 83505), (146882, 146882, 159, 159, 'Instruction Disc (Mimic Profession: Fixer)', 83505), (146883, 146883, 149, 149, 'Instruction Disc (Mimic Profession: Martial Artist)', 83505), (146887, 146887, 165, 165, 'Instruction Disc (Mimic Profession: Meta-Physicist)', 83505), (146884, 146884, 169, 169, 'Instruction Disc (Mimic Profession: Nanotechnician)', 83505), (146885, 146885, 146, 146, 'Instruction Disc (Mimic Profession: Soldier)', 83505), (146886, 146886, 162, 162, 'Instruction Disc (Mimic Profession: Trader)', 83505), (145019, 145019, 146, 146, 'Instruction Disc (Mind Banshee)', 83538), (145020, 145020, 87, 87, 'Instruction Disc (Mind Howl)', 83537), (145022, 145022, 173, 173, 'Instruction Disc (Mind Quake)', 83539), (145023, 145023, 50, 50, 'Instruction Disc (Mind Scream)', 83536), (147941, 147941, 14, 14, 'Instruction Disc (Minor Absorption Shield)', 83486), (147199, 147199, 40, 40, 'Instruction Disc (Minor Balm)', 83409), (147821, 147821, 57, 57, 'Instruction Disc (Minor Bane)', 83530), (147942, 147942, 4, 4, 'Instruction Disc (Minor Combat Barrier)', 83486), (147200, 147200, 37, 37, 'Instruction Disc (Minor Consuming Toxin)', 83371), (147944, 147944, 17, 17, 'Instruction Disc (Minor Deflection Shield (Extended))', 83491), (147943, 147943, 14, 14, 'Instruction Disc (Minor Deflection Shield)', 83491), (148101, 148101, 21, 21, 'Instruction Disc (Minor Delayed Health Payment)', 83408), (203875, 203875, 36, 36, 'Instruction Disc (Minor Exoskeleton Pulse)', 83355), (147432, 147432, 66, 66, 'Instruction Disc (Minor Harmonic Cocoon)', 144426), (148102, 148102, 60, 60, 'Instruction Disc (Minor Health Freeloader)', 144339), (148103, 148103, 7, 7, 'Instruction Disc (Minor Health Funnel)', 144335), (148104, 148104, 146, 146, 'Instruction Disc (Minor Health Plunder)', 144342), (147946, 147946, 119, 119, 'Instruction Disc (Minor Reflective Field (Extended))', 144428), (147945, 147945, 113, 113, 'Instruction Disc (Minor Reflective Field)', 144428), (147621, 147621, 7, 7, 'Instruction Disc (Minor Shen Protection)', 83452), (147201, 147201, 7, 7, 'Instruction Disc (Minor Team Healing)', 83407), (147202, 147202, 33, 33, 'Instruction Disc (Minor Team Purification)', 83408), (147822, 147822, 1, 1, 'Instruction Disc (Minor Toxic Barb)', 83529), (147823, 147823, 10, 10, 'Instruction Disc (Minor Toxic Field)', 83517), (146768, 146768, 4, 4, 'Instruction Disc (Minor Wilderness Protection)', 83486), (145024, 145024, 165, 165, 'Instruction Disc (Mocham''s Gift: BioMet)', 83457), (145025, 145025, 165, 165, 'Instruction Disc (Mocham''s Gift: MatCrea)', 83457), (145027, 145027, 162, 162, 'Instruction Disc (Mocham''s Gift: MatMet)', 83457), (145028, 145028, 169, 169, 'Instruction Disc (Mocham''s Gift: PsyMod)', 83457), (145029, 145029, 165, 165, 'Instruction Disc (Mocham''s Gift: SenseImp)', 83457), (145026, 145026, 162, 162, 'Instruction Disc (Mocham''s Gift: SpaceTime)', 83457), (145030, 145030, 159, 159, 'Instruction Disc (Mocham''s Neural Interface-Web)', 83461), (203718, 203718, 120, 120, 'Instruction Disc (Modulate Manifestation)', 83355), (147824, 147824, 185, 185, 'Instruction Disc (Molecular Deconstruction)', 83534), (147825, 147825, 165, 165, 'Instruction Disc (Molecular Flechettes)', 83557), (147203, 147203, 156, 156, 'Instruction Disc (Molecular Rejuvenation)', 83412), (147826, 147826, 17, 17, 'Instruction Disc (Molecule Lance)', 83553), (147827, 147827, 123, 123, 'Instruction Disc (Momentum Impaler)', 83556), (147330, 147330, 66, 66, 'Instruction Disc (Mongo Bash!)', 301292), (147331, 147331, 149, 149, 'Instruction Disc (Mongo Crush!)', 301292), (147332, 147332, 17, 17, 'Instruction Disc (Mongo Slam!)', 301292), (147333, 147333, 132, 132, 'Instruction Disc (Mongo Smash!)', 301292), (147304, 147304, 93, 93, 'Instruction Disc (Mongo''s Cyclops)', 301287), (147306, 147306, 43, 43, 'Instruction Disc (Mongo''s Golem)', 301287), (147303, 147303, 142, 142, 'Instruction Disc (Mongo''s Titan)', 301287), (147323, 147323, 4, 4, 'Instruction Disc (Mongo''s Troll)', 301287), (205272, 205272, 136, 136, 'Instruction Disc (Monitor Aggression Subsystem)', 83467), (205257, 205257, 37, 37, 'Instruction Disc (Monitor Combat Array)', 83467), (147021, 147021, 169, 169, 'Instruction Disc (Monofilament Cat-O', 83551), (147022, 147022, 152, 152, 'Instruction Disc (Monofilament Scourger)', 83550), (147023, 147023, 50, 50, 'Instruction Disc (Monofilament Whip)', 83548), (147622, 147622, 152, 152, 'Instruction Disc (Monomolecular Skin)', 144372), (146769, 146769, 176, 176, 'Instruction Disc (Moonbeam)', 83410), (147204, 147204, 172, 172, 'Instruction Disc (Morgue Longings)', 83376), (157578, 157578, 156, 156, 'Instruction Disc (Motivational Speech: Assassin''s Focus)', 83343), (155820, 155820, 83, 83, 'Instruction Disc (Motivational Speech: Bravery Overcomes)', 83343), (155823, 155823, 156, 156, 'Instruction Disc (Motivational Speech: Glorious Leader)', 83343), (155822, 155822, 186, 186, 'Instruction Disc (Motivational Speech: Heroic Measures)', 83343), (157577, 157577, 149, 149, 'Instruction Disc (Motivational Speech: Implement Through Iteration)', 83460), (157576, 157576, 149, 149, 'Instruction Disc (Motivational Speech: Improvise and Adapt)', 83460), (155821, 155821, 37, 37, 'Instruction Disc (Motivational Speech: Lead From The Front)', 83343), (157575, 157575, 50, 50, 'Instruction Disc (Motivational Speech: Only the Paranoid Will Survive!)', 83460), (157574, 157574, 87, 87, 'Instruction Disc (Motivational Speech: Opportunity Knocks)', 83343), (157590, 157590, 97, 97, 'Instruction Disc (Motivational Speech: Organizational Opportunitites)', 83460), (155824, 155824, 130, 130, 'Instruction Disc (Motivational Speech: Triumphant Pose)', 83343), (155624, 155624, 44, 44, 'Instruction Disc (Mud Slinger)', 83489), (147024, 147024, 126, 126, 'Instruction Disc (Muddled Psyche)', 83418), (147623, 147623, 70, 70, 'Instruction Disc (Muscle Booster)', 83504), (147624, 147624, 20, 20, 'Instruction Disc (Muscle Stim)', 83504), (147025, 147025, 116, 116, 'Instruction Disc (Musculature Command)', 83423), (148105, 148105, 186, 186, 'Instruction Disc (My Brain For Your Brain)', 83420), (146888, 146888, 83, 83, 'Instruction Disc (Mysterious Causes)', 83376), (163098, 163098, 20, 20, 'Instruction Disc (NCU Compressor)', 83360), (146889, 146889, 24, 24, 'Instruction Disc (Nano Augmentation)', 144460), (147206, 147206, 73, 73, 'Instruction Disc (Nano Bandage)', 83410), (147543, 147543, 80, 80, 'Instruction Disc (Nano Boost)', 144461), (162754, 162754, 109, 109, 'Instruction Disc (Nano Cauterization)', 83411), (147828, 147828, 149, 149, 'Instruction Disc (Nano Cloud Supplement)', 83355), (147829, 147829, 53, 53, 'Instruction Disc (Nano Contagion)', 83530), (146928, 146928, 37, 37, 'Instruction Disc (Nano Growth)', 301248), (147544, 147544, 37, 37, 'Instruction Disc (Nano Net)', 83426), (147207, 147207, 99, 99, 'Instruction Disc (Nano Reaper)', 83375), (147208, 147208, 99, 99, 'Instruction Disc (Nano Repulsor)', 301246), (147047, 147047, 90, 90, 'Instruction Disc (Nano Restoration Escalation)', 301248), (145031, 145031, 162, 162, 'Instruction Disc (Nano Shutdown)', 83461), (147209, 147209, 93, 93, 'Instruction Disc (Nano Surgery)', 83411), (147830, 147830, 142, 142, 'Instruction Disc (Nanoblade Cloud)', 83551), (146770, 146770, 34, 34, 'Instruction Disc (Natural Cure)', 83407), (147167, 147167, 76, 76, 'Instruction Disc (Natural Healing)', 301247), (146771, 146771, 90, 90, 'Instruction Disc (Natural Remedy)', 83408), (146772, 146772, 162, 162, 'Instruction Disc (Nature''s Blessing)', 83410), (203899, 203899, 101, 101, 'Instruction Disc (Negotiate for Freedom)', 83355), (146773, 146773, 99, 99, 'Instruction Disc (Nest of Vipers)', 83363), (147545, 147545, 43, 43, 'Instruction Disc (Net Cast Wide)', 83426), (147546, 147546, 159, 159, 'Instruction Disc (Neural Interfaced Augmentation Cloud)', 144464), (147831, 147831, 152, 152, 'Instruction Disc (Neural Stunner)', 83416), (145032, 145032, 129, 129, 'Instruction Disc (Neuron-Notum Interface)', 83461), (147832, 147832, 66, 66, 'Instruction Disc (Neutron Spiral)', 83560), (147547, 147547, 14, 14, 'Instruction Disc (No Escape Possible)', 83421), (145033, 145033, 60, 60, 'Instruction Disc (Notum Attunement)', 83461), (147833, 147833, 175, 175, 'Instruction Disc (Notum Overload)', 83355), (145034, 145034, 149, 149, 'Instruction Disc (Notum Rejection)', 83461), (148106, 148106, 11, 11, 'Instruction Disc (Novice Health Haggler)', 83407), (154757, 154757, 189, 189, 'Instruction Disc (Null Space Disruptor)', 144333), (150534, 150534, 159, 159, 'Instruction Disc (Nullity Sphere MK II)', 144428), (150533, 150533, 90, 90, 'Instruction Disc (Nullity Sphere)', 144425), (145035, 145035, 165, 165, 'Instruction Disc (Odin''s Missing Eye)', 83462), (147947, 147947, 156, 156, 'Instruction Disc (Offensive Steamroller)', 83344), (147834, 147834, 96, 96, 'Instruction Disc (Ol'' Faithful)', 83555), (147548, 147548, 149, 149, 'Instruction Disc (Omni-Med Incursion)', 83412), (205284, 205284, 200, 200, 'Instruction Disc (Omni-Pol Pacification Logic System)', 83467), (147835, 147835, 73, 73, 'Instruction Disc (On-The-Fly Compression)', 83461), (204532, 204532, 180, 180, 'Instruction Disc (One Foot in the Grave)', 83408), (145036, 145036, 162, 162, 'Instruction Disc (One Mind, One Purpose)', 83489), (146774, 146774, 182, 182, 'Instruction Disc (One With Nature)', 83410), (147948, 147948, 76, 76, 'Instruction Disc (One-More-Hit Healing)', 83407), (147949, 147949, 152, 152, 'Instruction Disc (Only You, Only Me)', 83385), (147836, 147836, 7, 7, 'Instruction Disc (Open Wound)', 83547), (147026, 147026, 152, 152, 'Instruction Disc (Oppressive Weight of the Guilty)', 83424), (148107, 148107, 24, 24, 'Instruction Disc (Overdraught)', 83487), (205281, 205281, 193, 193, 'Instruction Disc (Overdrive Aggression Subsystem)', 83467), (205266, 205266, 96, 96, 'Instruction Disc (Overdrive Combat Array)', 83467), (162126, 162126, 66, 66, 'Instruction Disc (Pack Hunter)', 83483), (146890, 146890, 99, 99, 'Instruction Disc (Paralyze with Indecision)', 83423), (147210, 147210, 40, 40, 'Instruction Disc (Parasitic Affliction)', 83371), (147211, 147211, 152, 152, 'Instruction Disc (Parasitic Horde)', 83376), (147951, 147951, 7, 7, 'Instruction Disc (Partial Deflection Shield (Extended))', 83491), (147950, 147950, 1, 1, 'Instruction Disc (Partial Deflection Shield)', 83491), (147625, 147625, 136, 136, 'Instruction Disc (Partial Diamond Skin)', 144371), (162626, 162626, 106, 106, 'Instruction Disc (Partial Grid Jump (Team))', 144388), (147549, 147549, 113, 113, 'Instruction Disc (Partial Grid Jump)', 83458), (147433, 147433, 30, 30, 'Instruction Disc (Partial Harmonic Cocoon)', 83491), (147953, 147953, 99, 99, 'Instruction Disc (Partial Reflective Field (Extended))', 144428), (147952, 147952, 96, 96, 'Instruction Disc (Partial Reflective Field)', 144427), (147837, 147837, 123, 123, 'Instruction Disc (Particle Accelerator)', 83538), (147838, 147838, 129, 129, 'Instruction Disc (Particle Flare)', 83562), (147839, 147839, 90, 90, 'Instruction Disc (Particle Shower)', 83561), (204054, 204054, 67, 67, 'Instruction Disc (Passage for One)', 83355), (147550, 147550, 7, 7, 'Instruction Disc (Passive Distributed Entanglement)', 83425), (147551, 147551, 4, 4, 'Instruction Disc (Passive Micro Entanglement)', 83421), (146775, 146775, 41, 41, 'Instruction Disc (Patch Wounds)', 83407), (147434, 147434, 20, 20, 'Instruction Disc (Patchwork Android)', 83465), (147435, 147435, 1, 1, 'Instruction Disc (Patchwork Automaton)', 83465), (147436, 147436, 50, 50, 'Instruction Disc (Patchwork Gladiatorbot)', 83470), (147437, 147437, 90, 90, 'Instruction Disc (Patchwork Guardbot)', 83470), (147438, 147438, 132, 132, 'Instruction Disc (Patchwork Warbot)', 83471), (147439, 147439, 159, 159, 'Instruction Disc (Patchwork Warmachine)', 83471), (148108, 148108, 14, 14, 'Instruction Disc (Patchy Delayed Health Payment)', 83407), (148109, 148109, 50, 50, 'Instruction Disc (Patchy Health Freeloader)', 144338), (148110, 148110, 4, 4, 'Instruction Disc (Patchy Health Funnel)', 144335), (148111, 148111, 142, 142, 'Instruction Disc (Patchy Health Plunder)', 144342), (147440, 147440, 34, 34, 'Instruction Disc (Patchy Repairs)', 83408), (160867, 160867, 149, 149, 'Instruction Disc (Path of The Executioner)', 144463), (148112, 148112, 185, 185, 'Instruction Disc (Pawnbroker''s Armor)', 144334), (203908, 203908, 199, 199, 'Instruction Disc (Pay Bail)', 83355), (148113, 148113, 169, 169, 'Instruction Disc (Pay the Pauper)', 83487), (147840, 147840, 159, 159, 'Instruction Disc (Peaceful Intentions)', 83420), (147841, 147841, 83, 83, 'Instruction Disc (Pellet of Fire)', 83543), (147954, 147954, 142, 142, 'Instruction Disc (Perfected Absorption Shield)', 144423), (147441, 147441, 40, 40, 'Instruction Disc (Perfected Android)', 83470), (147442, 147442, 14, 14, 'Instruction Disc (Perfected Automaton)', 83465), (147955, 147955, 139, 139, 'Instruction Disc (Perfected Combat Barrier)', 144423), (147443, 147443, 149, 149, 'Instruction Disc (Perfected Defensive Screen)', 144319), (147444, 147444, 83, 83, 'Instruction Disc (Perfected Gladiatorbot)', 83470), (147445, 147445, 119, 119, 'Instruction Disc (Perfected Guardbot)', 83471), (147446, 147446, 146, 146, 'Instruction Disc (Perfected Protective Field)', 144318), (147447, 147447, 139, 139, 'Instruction Disc (Perfected Shielding Barrier)', 144318), (147448, 147448, 152, 152, 'Instruction Disc (Perfected Warbot)', 83471), (147449, 147449, 172, 172, 'Instruction Disc (Perfected Warmachine)', 83472), (147027, 147027, 43, 43, 'Instruction Disc (Performance Review)', 83526), (147212, 147212, 27, 27, 'Instruction Disc (Periodic Checkup)', 83407), (147213, 147213, 136, 136, 'Instruction Disc (Perpetuating Nano Reaper)', 83376), (147956, 147956, 57, 57, 'Instruction Disc (Persistent Damage Amplifier)', 144462), (147957, 147957, 17, 17, 'Instruction Disc (Persistent Damage Multiplier)', 144460), (146776, 146776, 149, 149, 'Instruction Disc (Personal Blizzard)', 83363), (148114, 148114, 100, 100, 'Instruction Disc (Personal Grid Beacon)', 83565), (147028, 147028, 53, 53, 'Instruction Disc (Personal Magnetism)', 83487), (147842, 147842, 169, 169, 'Instruction Disc (Personal Notum Harvester)', 83461), (203893, 203893, 49, 49, 'Instruction Disc (Persuade for Freedom)', 83355), (203992, 203992, 124, 124, 'Instruction Disc (Petition Freedom)', 83355), (147029, 147029, 76, 76, 'Instruction Disc (Pheromone Control)', 83487), (147450, 147450, 53, 53, 'Instruction Disc (Philosopher''s Stone)', 83357), (147843, 147843, 37, 37, 'Instruction Disc (Phoenix Swarm)', 83541), (147844, 147844, 83, 83, 'Instruction Disc (Phosphor Torch)', 83543), (147845, 147845, 172, 172, 'Instruction Disc (Photon Deflector)', 83462), (147334, 147334, 113, 113, 'Instruction Disc (Physical Dominance)', 83434), (147215, 147215, 33, 33, 'Instruction Disc (Physician''s Skill)', 83408), (147451, 147451, 93, 93, 'Instruction Disc (Pillar of Spikes)', 83363), (147958, 147958, 24, 24, 'Instruction Disc (Pistol Mastery)', 83474), (147846, 147846, 50, 50, 'Instruction Disc (Plasma Lights)', 83536), (147452, 147452, 185, 185, 'Instruction Disc (Plasma Shield)', 83363), (147847, 147847, 76, 76, 'Instruction Disc (Plasma Swirl)', 83309), (146778, 146778, 53, 53, 'Instruction Disc (Playful Cub (Other))', 83483), (146779, 146779, 70, 70, 'Instruction Disc (Playful Cub (Team))', 83483), (146777, 146777, 47, 47, 'Instruction Disc (Playful Cub)', 83483), (148116, 148116, 185, 185, 'Instruction Disc (Plunder Skills (Advanced))', 301396), (148118, 148118, 146, 146, 'Instruction Disc (Plunder Skills (Average))', 301396), (148117, 148117, 152, 152, 'Instruction Disc (Plunder Skills (Lesser))', 301396), (148119, 148119, 172, 172, 'Instruction Disc (Plunder Skills (Major))', 301396), (148120, 148120, 123, 123, 'Instruction Disc (Plunder Skills (Minor))', 301396), (148121, 148121, 103, 103, 'Instruction Disc (Plunder Skills (Weak))', 301396), (148115, 148115, 162, 162, 'Instruction Disc (Plunder Skills)', 301396), (147848, 147848, 30, 30, 'Instruction Disc (Poison Missile)', 83529), (147552, 147552, 1, 1, 'Instruction Disc (Poison Modification)', 83575), (147335, 147335, 47, 47, 'Instruction Disc (Poison Stingers)', 83363), (147849, 147849, 4, 4, 'Instruction Disc (Poke Eyes)', 83462), (204433, 204433, 84, 84, 'Instruction Disc (Polarized Screening)', 144316), (147553, 147553, 119, 119, 'Instruction Disc (Policy Skim)', 83410), (146780, 146780, 53, 53, 'Instruction Disc (Porcupine Barrier)', 83363), (147216, 147216, 169, 169, 'Instruction Disc (Positive Life Reinforcement)', 83413), (147850, 147850, 96, 96, 'Instruction Disc (Positron Stream)', 83537), (146891, 146891, 14, 14, 'Instruction Disc (Postpone Encounter)', 83425), (203174, 203174, 64, 64, 'Instruction Disc (Power Burst)', 83353), (203220, 203220, 163, 163, 'Instruction Disc (Power of the Thunderhead)', 83387), (147030, 147030, 136, 136, 'Instruction Disc (Powerful Blizzard of Red Tape)', 83427), (148122, 148122, 27, 27, 'Instruction Disc (Practiced Health Haggler)', 83408), (146781, 146781, 93, 93, 'Instruction Disc (Practiced Stitching)', 83409), (147217, 147217, 139, 139, 'Instruction Disc (Pre-Combat Conditioning)', 144325), (147959, 147959, 43, 43, 'Instruction Disc (Precognition)', 83391), (148123, 148123, 159, 159, 'Instruction Disc (Preeminent Health Haggler)', 83414), (147218, 147218, 37, 37, 'Instruction Disc (Premium Cover)', 83409), (148124, 148124, 182, 182, 'Instruction Disc (Premium Delayed Health Payment)', 83414), (163126, 163126, 152, 152, 'Instruction Disc (Presence of the Dominator)', 83495), (163120, 163120, 43, 43, 'Instruction Disc (Presence of the Master)', 83495), (163123, 163123, 113, 113, 'Instruction Disc (Presence of the Overlord)', 83495), (147031, 147031, 57, 57, 'Instruction Disc (Prey On Fear)', 83495), (147032, 147032, 159, 159, 'Instruction Disc (Primal Fear)', 83495), (147336, 147336, 139, 139, 'Instruction Disc (Primal Hatred)', 83385), (147219, 147219, 20, 20, 'Instruction Disc (Primitive Nano Gorger)', 83371), (147220, 147220, 4, 4, 'Instruction Disc (Primitive Viral Agent)', 83371), (147337, 147337, 136, 136, 'Instruction Disc (Prodigious Strength)', 83504), (147221, 147221, 93, 93, 'Instruction Disc (Professional Care)', 83410), (148125, 148125, 87, 87, 'Instruction Disc (Professional Health Haggler)', 83411), (148126, 148126, 41, 41, 'Instruction Disc (Proficient Health Haggler)', 83409), (148127, 148127, 159, 159, 'Instruction Disc (Profit Preoccupation)', 83423), (148128, 148128, 37, 37, 'Instruction Disc (Profiteer''s Grip)', 83421), (147851, 147851, 60, 60, 'Instruction Disc (Project Calm)', 83418), (148129, 148129, 17, 17, 'Instruction Disc (Project Thought Patterns)', 83417), (146892, 146892, 73, 73, 'Instruction Disc (Projectile Magnet)', 83391), (147554, 147554, 123, 123, 'Instruction Disc (Prolong Encounter)', 83423), (146893, 146893, 119, 119, 'Instruction Disc (Prolonged Interrogation)', 83423), (147852, 147852, 119, 119, 'Instruction Disc (Pronounce Blindness)', 83462), (146783, 146783, 149, 149, 'Instruction Disc (Pronouncement of Greatness (Other))', 144397), (146782, 146782, 20, 20, 'Instruction Disc (Pronouncement of Greatness)', 144397), (146784, 146784, 116, 116, 'Instruction Disc (Protection of the Storm)', 83363), (147453, 147453, 73, 73, 'Instruction Disc (Protective Field)', 144317), (147222, 147222, 17, 17, 'Instruction Disc (Protein Breakdown)', 83371), (145037, 145037, 47, 47, 'Instruction Disc (PsyMod Mastery)', 83488), (147033, 147033, 10, 10, 'Instruction Disc (Punishing Blade)', 83547), (148130, 148130, 83, 83, 'Instruction Disc (Pyramid Marketing)', 83422), (148131, 148131, 87, 87, 'Instruction Disc (Quality Delayed Health Payment)', 83411), (148132, 148132, 139, 139, 'Instruction Disc (Quantum Uncertainty)', 83391), (145038, 145038, 103, 103, 'Instruction Disc (Quantum Wings)', 83574), (147853, 147853, 182, 182, 'Instruction Disc (Quark Collapse)', 83564), (163113, 163113, 132, 132, 'Instruction Disc (QuarkStor NCU Core)', 83360), (145039, 145039, 30, 30, 'Instruction Disc (Quell Anger)', 144461), (145040, 145040, 40, 40, 'Instruction Disc (Quench Anger)', 144461), (147454, 147454, 14, 14, 'Instruction Disc (Quick Fix)', 83407), (147455, 147455, 40, 40, 'Instruction Disc (Quick Weapon)', 83434), (147960, 147960, 17, 17, 'Instruction Disc (Quickshot)', 83434), (147338, 147338, 70, 70, 'Instruction Disc (Quivering Wreck)', 83495), (147858, 147858, 63, 63, 'Instruction Disc (RNA Reaper)', 83560), (147223, 147223, 123, 123, 'Instruction Disc (Radiant Heal)', 83411), (147854, 147854, 4, 4, 'Instruction Disc (Radiation Pulse)', 83335), (147855, 147855, 76, 76, 'Instruction Disc (Radiation Scour)', 83561), (147856, 147856, 99, 99, 'Instruction Disc (Radioactive Cloud)', 83561), (145041, 145041, 93, 93, 'Instruction Disc (Rage Abolishment)', 144461), (145042, 145042, 116, 116, 'Instruction Disc (Rage Eradication)', 144461), (145043, 145043, 47, 47, 'Instruction Disc (Rage Materialization)', 144374), (145044, 145044, 76, 76, 'Instruction Disc (Rage Suppression)', 144461), (202899, 202899, 197, 197, 'Instruction Disc (Rampage of Juggernaut)', 83298), (202820, 202820, 197, 197, 'Instruction Disc (Rampage of the Berserker)', 83497), (147224, 147224, 165, 165, 'Instruction Disc (Rampant Decay)', 83376), (147921, 147921, 63, 63, 'Instruction Disc (Ranged Energy Weapon Mastery)', 83388), (148134, 148134, 86, 86, 'Instruction Disc (Ransack Skills (Advanced))', 301396), (148136, 148136, 30, 30, 'Instruction Disc (Ransack Skills (Average))', 301396), (148135, 148135, 40, 40, 'Instruction Disc (Ransack Skills (Lesser))', 301396), (148137, 148137, 70, 70, 'Instruction Disc (Ransack Skills (Major))', 301396), (148138, 148138, 20, 20, 'Instruction Disc (Ransack Skills (Minor))', 301396), (148139, 148139, 10, 10, 'Instruction Disc (Ransack Skills (Weak))', 301396), (148133, 148133, 50, 50, 'Instruction Disc (Ransack Skills)', 301396), (147456, 147456, 129, 129, 'Instruction Disc (Rapid Weapon)', 83434), (146785, 146785, 139, 139, 'Instruction Disc (Razor Barrier)', 83363), (147556, 147556, 169, 169, 'Instruction Disc (Re-Matrix Grid Vector)', 83565), (147457, 147457, 182, 182, 'Instruction Disc (Reactivated Wardroid)', 83472), (147962, 147962, 83, 83, 'Instruction Disc (Reactive Deflection Shield (Extended))', 144427), (147961, 147961, 76, 76, 'Instruction Disc (Reactive Deflection Shield)', 144427), (147458, 147458, 179, 179, 'Instruction Disc (Reactive Harmonic Cocoon)', 144430), (147964, 147964, 142, 142, 'Instruction Disc (Reactive Reflective Field (Extended))', 144430), (147963, 147963, 142, 142, 'Instruction Disc (Reactive Reflective Field)', 144430), (162739, 162739, 24, 24, 'Instruction Disc (Rebinding Sutures)', 83408), (147459, 147459, 84, 84, 'Instruction Disc (Rebuild Casing)', 83410), (147555, 147555, 47, 47, 'Instruction Disc (Reckless Digitization)', 83565), (163110, 163110, 123, 123, 'Instruction Disc (Recompiling Memory Analyzer)', 83360), (147460, 147460, 50, 50, 'Instruction Disc (Recondition Parts)', 83409), (147226, 147226, 162, 162, 'Instruction Disc (Recuperative Respite)', 83414), (147227, 147227, 40, 40, 'Instruction Disc (Recurrent Remedy)', 83408), (147034, 147034, 116, 116, 'Instruction Disc (Red Tape)', 83344), (148141, 148141, 165, 165, 'Instruction Disc (Redeem AC (Advanced))', 144332), (148142, 148142, 175, 175, 'Instruction Disc (Redeem AC (Greater))', 144333), (148143, 148143, 129, 129, 'Instruction Disc (Redeem AC (Lesser))', 144331), (148144, 148144, 156, 156, 'Instruction Disc (Redeem AC (Major))', 144332), (148145, 148145, 106, 106, 'Instruction Disc (Redeem AC (Minor))', 144330), (148146, 148146, 90, 90, 'Instruction Disc (Redeem AC (Weak))', 144330), (148140, 148140, 149, 149, 'Instruction Disc (Redeem AC)', 144331), (148147, 148147, 149, 149, 'Instruction Disc (Redirect Neural Signals)', 83419), (147627, 147627, 136, 136, 'Instruction Disc (Reduce Inertia)', 83391), (147228, 147228, 66, 66, 'Instruction Disc (Refined Nano Contagion)', 83375), (147966, 147966, 126, 126, 'Instruction Disc (Reflective Field (Extended))', 144429), (147965, 147965, 126, 126, 'Instruction Disc (Reflective Field)', 144429), (146787, 146787, 126, 126, 'Instruction Disc (Relation to Cerberus (Other))', 83483), (146788, 146788, 132, 132, 'Instruction Disc (Relation to Cerberus (Team))', 83483), (146786, 146786, 119, 119, 'Instruction Disc (Relation to Cerberus)', 83483), (148148, 148148, 159, 159, 'Instruction Disc (Relentless Slayer)', 144464), (147229, 147229, 20, 20, 'Instruction Disc (Relief from Pain)', 83408), (162736, 162736, 7, 7, 'Instruction Disc (Relieving Salve)', 83408), (147230, 147230, 159, 159, 'Instruction Disc (Remedy Dissemination)', 83413), (147035, 147035, 109, 109, 'Instruction Disc (Remembered Pain)', 83550), (204048, 204048, 152, 152, 'Instruction Disc (Rend Bonds (Other))', 83355), (203691, 203691, 133, 133, 'Instruction Disc (Rend Bonds)', 83355), (204496, 204496, 139, 139, 'Instruction Disc (Rend Constraints)', 83355), (147857, 147857, 129, 129, 'Instruction Disc (Rend Flesh)', 83550), (147231, 147231, 142, 142, 'Instruction Disc (Repeated Cellular Trauma)', 83376), (203986, 203986, 36, 36, 'Instruction Disc (Request Freedom)', 83355), (204057, 204057, 118, 118, 'Instruction Disc (Reroute Impediments)', 83355), (152195, 152195, 107, 107, 'Instruction Disc (Restock Ammo (Level OP-C))', 144437), (152199, 152199, 107, 107, 'Instruction Disc (Restock Ammo (Level OP-CC))', 144437), (147557, 147557, 4, 4, 'Instruction Disc (Restock Ammo (Level OP-I))', 144435), (152198, 152198, 18, 18, 'Instruction Disc (Restock Ammo (Level OP-II))', 144435), (152197, 152197, 60, 60, 'Instruction Disc (Restock Ammo (Level OP-X))', 144436), (152196, 152196, 74, 74, 'Instruction Disc (Restock Ammo (Level OP-XX))', 144436), (147232, 147232, 40, 40, 'Instruction Disc (Restorative Boost)', 83409), (147628, 147628, 20, 20, 'Instruction Disc (Restore Essence)', 301497), (146790, 146790, 107, 107, 'Instruction Disc (Restore Vitality)', 83409), (146789, 146789, 64, 64, 'Instruction Disc (Restore to Health)', 83408), (147036, 147036, 24, 24, 'Instruction Disc (Restrict Movement)', 83421), (147461, 147461, 132, 132, 'Instruction Disc (Retaliatory Barrier)', 83363), (146791, 146791, 159, 159, 'Instruction Disc (Retaliatory Venom Spit)', 83363), (163101, 163101, 40, 40, 'Instruction Disc (Retool NCU)', 83360), (146792, 146792, 169, 169, 'Instruction Disc (Retribution of the Aesir)', 83363), (147629, 147629, 146, 146, 'Instruction Disc (Return Attack)', 83494), (146793, 146793, 165, 165, 'Instruction Disc (Revenge of the Valkyrie)', 83363), (147037, 147037, 47, 47, 'Instruction Disc (Revoke Movement License)', 83422), (148149, 148149, 80, 80, 'Instruction Disc (Riding Shotgun)', 144461), (147967, 147967, 37, 37, 'Instruction Disc (Rifle Mastery)', 83501), (147038, 147038, 93, 93, 'Instruction Disc (Rigid Stance)', 83422), (147968, 147968, 126, 126, 'Instruction Disc (Riot Control)', 83353), (147339, 147339, 116, 116, 'Instruction Disc (Roar of Aggression)', 83385), (146794, 146794, 136, 136, 'Instruction Disc (Robust Treatment)', 83567), (146795, 146795, 7, 7, 'Instruction Disc (Rough Stitching)', 83407), (147630, 147630, 24, 24, 'Instruction Disc (Rubber Skin)', 83452), (147859, 147859, 1, 1, 'Instruction Disc (Rudimentary Humidity Extractor)', 83461), (147039, 147039, 179, 179, 'Instruction Disc (Rule of One)', 83540), (147860, 147860, 33, 33, 'Instruction Disc (Run-Time Recompiler)', 83461), (146895, 146895, 96, 96, 'Instruction Disc (Ruse of Taren - Phase 2)', 83436), (146896, 146896, 162, 162, 'Instruction Disc (Ruse of Taren - Phase 3)', 83436), (146894, 146894, 40, 40, 'Instruction Disc (Ruse of Taren: Phase 1)', 83436), (147631, 147631, 76, 76, 'Instruction Disc (Sadness of the Willow)', 144461), (204033, 204033, 21, 21, 'Instruction Disc (Scatter Bonds (Other))', 83355), (203682, 203682, 10, 10, 'Instruction Disc (Scatter Bonds)', 83355), (147340, 147340, 139, 139, 'Instruction Disc (Screen of Blades)', 83363), (147233, 147233, 86, 86, 'Instruction Disc (Scythe A Virus)', 83375), (147234, 147234, 182, 182, 'Instruction Disc (Scythe B Virus)', 83376), (147861, 147861, 80, 80, 'Instruction Disc (Searing Agony)', 83377), (147040, 147040, 93, 93, 'Instruction Disc (Searing Bolt)', 83536), (147862, 147862, 152, 152, 'Instruction Disc (Searing Circle)', 83545), (147863, 147863, 159, 159, 'Instruction Disc (Searing Stream)', 83521), (146796, 146796, 169, 169, 'Instruction Disc (Seed Life)', 83411), (147235, 147235, 60, 60, 'Instruction Disc (Seethe with Germs)', 83375), (147632, 147632, 136, 136, 'Instruction Disc (Seething Resentment)', 83385), (147462, 147462, 43, 43, 'Instruction Disc (Semi-Sentient Android)', 83470), (147560, 147560, 169, 169, 'Instruction Disc (Semi-Sentient Augmentation Cloud)', 144464), (147463, 147463, 17, 17, 'Instruction Disc (Semi-Sentient Automaton)', 83465), (147464, 147464, 86, 86, 'Instruction Disc (Semi-Sentient Gladiatorbot)', 83470), (147465, 147465, 123, 123, 'Instruction Disc (Semi-Sentient Guardbot)', 83471), (147466, 147466, 156, 156, 'Instruction Disc (Semi-Sentient Warbot)', 83471), (147467, 147467, 182, 182, 'Instruction Disc (Semi-Sentient Wardroid)', 83472), (147468, 147468, 175, 175, 'Instruction Disc (Semi-Sentient Warmachine)', 83472), (145045, 145045, 43, 43, 'Instruction Disc (Sense Imp Mastery)', 83496), (147236, 147236, 185, 185, 'Instruction Disc (Sentient Nano Gorger)', 83376), (163116, 163116, 162, 162, 'Instruction Disc (Sentient Viral Recoder)', 83360), (163413, 163413, 172, 172, 'Instruction Disc (Serene Sky)', 83419), (147041, 147041, 172, 172, 'Instruction Disc (Shackles of Obedience)', 83424), (146897, 146897, 20, 20, 'Instruction Disc (Shadow Crown)', 83361), (161389, 161389, 17, 17, 'Instruction Disc (Shadow Filter)', 83361), (148150, 148150, 63, 63, 'Instruction Disc (Shady Acquisition)', 83487), (162335, 162335, 80, 80, 'Instruction Disc (Sharpen Claws)', 144459), (204045, 204045, 107, 107, 'Instruction Disc (Shatter Bonds (Other))', 83355), (203685, 203685, 90, 90, 'Instruction Disc (Shatter Bonds)', 83355), (147237, 147237, 37, 37, 'Instruction Disc (Shatter Bone)', 83549), (204016, 204016, 103, 103, 'Instruction Disc (Shatter Chains)', 83355), (145046, 145046, 7, 7, 'Instruction Disc (Shed Anger)', 144461), (147633, 147633, 66, 66, 'Instruction Disc (Shen Protection)', 144368), (147469, 147469, 63, 63, 'Instruction Disc (Shielding Barrier)', 144316), (147341, 147341, 70, 70, 'Instruction Disc (Shock Absorber)', 144316), (147864, 147864, 14, 14, 'Instruction Disc (Shockball)', 83308), (147865, 147865, 66, 66, 'Instruction Disc (Shockwave Slash)', 83548), (162510, 162510, 156, 156, 'Instruction Disc (Shower With Lead)', 83453), (147866, 147866, 40, 40, 'Instruction Disc (Shower With Sludge)', 83518), (147867, 147867, 123, 123, 'Instruction Disc (Shrapnel Burst)', 83332), (147868, 147868, 66, 66, 'Instruction Disc (Shroud of Darkness)', 83462), (147869, 147869, 182, 182, 'Instruction Disc (Shroud of the Grave)', 83462), (147342, 147342, 136, 136, 'Instruction Disc (Shrug Off Blows)', 144318), (203700, 203700, 22, 22, 'Instruction Disc (Sidestep the Blame)', 83355), (148151, 148151, 162, 162, 'Instruction Disc (Simple Mind, Simple Pleasures)', 83420), (148153, 148153, 152, 152, 'Instruction Disc (Siphon AC (Advanced))', 144332), (148154, 148154, 162, 162, 'Instruction Disc (Siphon AC (Greater))', 144333), (148155, 148155, 172, 172, 'Instruction Disc (Siphon AC (Invasive))', 144334), (148156, 148156, 146, 146, 'Instruction Disc (Siphon AC (Major))', 144332), (148157, 148157, 103, 103, 'Instruction Disc (Siphon AC (Minor))', 144330), (148158, 148158, 86, 86, 'Instruction Disc (Siphon AC (Weak))', 144330), (148152, 148152, 123, 123, 'Instruction Disc (Siphon AC)', 144331), (147042, 147042, 123, 123, 'Instruction Disc (Siren Call)', 83487), (148160, 148160, 113, 113, 'Instruction Disc (Skill Wrangler (Advanced))', 144349), (148161, 148161, 34, 34, 'Instruction Disc (Skill Wrangler (Commonplace))', 144346), (148162, 148162, 176, 176, 'Instruction Disc (Skill Wrangler (Exceptional))', 144353), (148163, 148163, 150, 150, 'Instruction Disc (Skill Wrangler (Greater))', 144350), (148164, 148164, 70, 70, 'Instruction Disc (Skill Wrangler (Inferior))', 144348), (148166, 148166, 41, 41, 'Instruction Disc (Skill Wrangler (Lossy))', 144347), (148167, 148167, 97, 97, 'Instruction Disc (Skill Wrangler (Major))', 144349), (148168, 148168, 21, 21, 'Instruction Disc (Skill Wrangler (Minor))', 144346), (148169, 148169, 14, 14, 'Instruction Disc (Skill Wrangler (Patchy))', 144345), (148170, 148170, 189, 189, 'Instruction Disc (Skill Wrangler (Premium))', 144354), (148171, 148171, 156, 156, 'Instruction Disc (Skill Wrangler (Sophisticated))', 144351), (148172, 148172, 163, 163, 'Instruction Disc (Skill Wrangler (Superb))', 144352), (148173, 148173, 126, 126, 'Instruction Disc (Skill Wrangler (Superior))', 144350), (148174, 148174, 8, 8, 'Instruction Disc (Skill Wrangler (Weak))', 144345), (148165, 148165, 54, 54, 'Instruction Disc (Skill Wrangler Lesser)', 144347), (148159, 148159, 84, 84, 'Instruction Disc (Skill Wrangler)', 144348), (202875, 202875, 133, 133, 'Instruction Disc (Skill of the Guardian)', 83446), (202881, 202881, 197, 197, 'Instruction Disc (Skill of the Guillotine)', 83446), (202872, 202872, 89, 89, 'Instruction Disc (Skill of the Highlander)', 83497), (202878, 202878, 173, 173, 'Instruction Disc (Skill of the Reaper)', 83446), (148175, 148175, 47, 47, 'Instruction Disc (Skilled Health Haggler)', 83410), (146797, 146797, 73, 73, 'Instruction Disc (Skin of the Toad)', 83363), (147470, 147470, 189, 189, 'Instruction Disc (Slayerdroid Guardian)', 83472), (147471, 147471, 185, 185, 'Instruction Disc (Slayerdroid Protector)', 83472), (147472, 147472, 189, 189, 'Instruction Disc (Slayerdroid Sentinel)', 83472), (147473, 147473, 185, 185, 'Instruction Disc (Slayerdroid Transference)', 83476), (147474, 147474, 185, 185, 'Instruction Disc (Slayerdroid Warden)', 83472), (147043, 147043, 43, 43, 'Instruction Disc (Sleep)', 83418), (147870, 147870, 93, 93, 'Instruction Disc (Slime Cascade)', 83378), (146798, 146798, 14, 14, 'Instruction Disc (Slipshod Bandaging)', 83407), (204460, 204460, 181, 181, 'Instruction Disc (Sloughing Assault Shield)', 83284), (204490, 204490, 196, 196, 'Instruction Disc (Sloughing Combat Field)', 83284), (204454, 204454, 107, 107, 'Instruction Disc (Sloughing Defensive Shield)', 83284), (204448, 204448, 72, 72, 'Instruction Disc (Sloughing Protective Barrier)', 83284), (204484, 204484, 93, 93, 'Instruction Disc (Sloughing Protective Field)', 83284), (204487, 204487, 141, 141, 'Instruction Disc (Sloughing Shielding Field)', 83284), (147872, 147872, 57, 57, 'Instruction Disc (Smiting Missile Mk II)', 83554), (147871, 147871, 24, 24, 'Instruction Disc (Smiting Missile)', 83553), (155428, 155428, 70, 70, 'Instruction Disc (Smuggler Shipment (OP-C))', 144439), (155423, 155423, 120, 120, 'Instruction Disc (Smuggler Shipment (OP-CC))', 144440), (155425, 155425, 107, 107, 'Instruction Disc (Smuggler Shipment (OP-CLX))', 144440), (155424, 155424, 113, 113, 'Instruction Disc (Smuggler Shipment (OP-CLXXX))', 144440), (155426, 155426, 103, 103, 'Instruction Disc (Smuggler Shipment (OP-CXL))', 144439), (155427, 155427, 90, 90, 'Instruction Disc (Smuggler Shipment (OP-CXX))', 144439), (155430, 155430, 34, 34, 'Instruction Disc (Smuggler Shipment (OP-LX))', 144438), (155429, 155429, 54, 54, 'Instruction Disc (Smuggler Shipment (OP-LXXX))', 144438), (155431, 155431, 24, 24, 'Instruction Disc (Smuggler Shipment (OP-XL))', 144438), (155432, 155432, 8, 8, 'Instruction Disc (Smuggler Shipment (OP-XX))', 144438), (147044, 147044, 83, 83, 'Instruction Disc (Sneaking Terror)', 83385), (146898, 146898, 43, 43, 'Instruction Disc (Sniper''s Bliss)', 83501), (147045, 147045, 40, 40, 'Instruction Disc (Soft Siren Call)', 83487), (147873, 147873, 152, 152, 'Instruction Disc (Solar Wind)', 83563), (203177, 203177, 200, 200, 'Instruction Disc (Soldier Clip Junkie)', 83404), (161891, 161891, 152, 152, 'Instruction Disc (Soleet Friend)', 144397), (203998, 203998, 200, 200, 'Instruction Disc (Solicit Freedom)', 83355), (147046, 147046, 63, 63, 'Instruction Disc (Solicit Support)', 83487), (163401, 163401, 24, 24, 'Instruction Disc (Soothing Breeze)', 83417), (148176, 148176, 156, 156, 'Instruction Disc (Sophisticated Delayed Health Payment)', 83413), (148177, 148177, 123, 123, 'Instruction Disc (Sophisticated Health Freeloader)', 144341), (148178, 148178, 40, 40, 'Instruction Disc (Sophisticated Health Funnel)', 144338), (148179, 148179, 182, 182, 'Instruction Disc (Sophisticated Health Plunder)', 144344), (145017, 145017, 40, 40, 'Instruction Disc (SpaceTime Mastery)', 83449), (146799, 146799, 47, 47, 'Instruction Disc (Sparking Touch)', 83363), (147475, 147475, 159, 159, 'Instruction Disc (Sparkling Field Array)', 83363), (146800, 146800, 24, 24, 'Instruction Disc (Sparrow Flight)', 144410), (147238, 147238, 33, 33, 'Instruction Disc (Specialist Treatment)', 83567), (147476, 147476, 53, 53, 'Instruction Disc (Spike Armor)', 83363), (147477, 147477, 7, 7, 'Instruction Disc (Spike Shield)', 83363), (147561, 147561, 156, 156, 'Instruction Disc (Spin Nanoweb)', 83428), (147562, 147562, 96, 96, 'Instruction Disc (Spin Weak Nanoweb)', 83427), (147343, 147343, 130, 130, 'Instruction Disc (Spine of Jelly)', 83495), (297362, 297362, 5, 5, 'Instruction Disc (Spirit Siphon)', 297361), (147626, 147626, 4, 4, 'Instruction Disc (Spiritual Harmony)', 301497), (147048, 147048, 123, 123, 'Instruction Disc (Splinter Missile)', 83555), (162507, 162507, 136, 136, 'Instruction Disc (Spray With Lead)', 83453), (147239, 147239, 27, 27, 'Instruction Disc (Spreading Health)', 83407), (147563, 147563, 70, 70, 'Instruction Disc (Stack the Odds)', 83464), (162332, 162332, 162, 162, 'Instruction Disc (Stare of Cerberus)', 83464), (147874, 147874, 156, 156, 'Instruction Disc (Stargasp)', 83539), (147634, 147634, 76, 76, 'Instruction Disc (Steel Skin)', 144369), (160864, 160864, 132, 132, 'Instruction Disc (Steps of The Executioner)', 144462), (148180, 148180, 24, 24, 'Instruction Disc (Sticky Ground)', 83421), (145047, 145047, 53, 53, 'Instruction Disc (Stifle Rage)', 144461), (147876, 147876, 179, 179, 'Instruction Disc (Stinging Missile Swarm)', 83558), (147875, 147875, 63, 63, 'Instruction Disc (Stinging Missile)', 83554), (147049, 147049, 63, 63, 'Instruction Disc (Stinging Reminder)', 83556), (161413, 161413, 142, 142, 'Instruction Disc (Stormedge)', 83497), (161431, 161431, 40, 40, 'Instruction Disc (Strength of the Hummingbird)', 83443), (147240, 147240, 66, 66, 'Instruction Disc (Strengthen Resolve)', 144432), (148181, 148181, 33, 33, 'Instruction Disc (Strip Assets)', 83487), (147050, 147050, 30, 30, 'Instruction Disc (Stumbling Steps)', 83422), (147635, 147635, 30, 30, 'Instruction Disc (Subconscious Guiding)', 83343), (203905, 203905, 174, 174, 'Instruction Disc (Subpoena for Freedom)', 83355), (147051, 147051, 20, 20, 'Instruction Disc (Subsonic Blast)', 83548), (148182, 148182, 54, 54, 'Instruction Disc (Successful Health Haggler)', 83410), (203721, 203721, 163, 163, 'Instruction Disc (Succor of Expediuum)', 83355), (147877, 147877, 162, 162, 'Instruction Disc (Sudden Affliction)', 83533), (147878, 147878, 24, 24, 'Instruction Disc (Sudden Chill)', 83523), (147052, 147052, 37, 37, 'Instruction Disc (Sudden Scare)', 83495), (147636, 147636, 152, 152, 'Instruction Disc (Summer Rain)', 144464), (145048, 145048, 189, 189, 'Instruction Disc (Summon Cacodemon)', 144376), (145049, 145049, 189, 189, 'Instruction Disc (Summon Demon)', 144376), (145050, 145050, 182, 182, 'Instruction Disc (Summon Fiend)', 144376), (155198, 155198, 60, 60, 'Instruction Disc (Summon Grid Armor Mk I)', 83492), (155200, 155200, 93, 93, 'Instruction Disc (Summon Grid Armor Mk II)', 83492), (155199, 155199, 116, 116, 'Instruction Disc (Summon Grid Armor Mk III)', 83492), (155201, 155201, 140, 140, 'Instruction Disc (Summon Grid Armor Mk IV)', 83492), (145051, 145051, 179, 179, 'Instruction Disc (Summon Lemur)', 144376), (156172, 156172, 83, 83, 'Instruction Disc (Summoning of Absuum)', 144383), (156171, 156171, 176, 176, 'Instruction Disc (Summoning of Balbuto the Gibberer)', 144384), (156170, 156170, 166, 166, 'Instruction Disc (Summoning of Confane)', 144384), (156169, 156169, 120, 120, 'Instruction Disc (Summoning of Demenus)', 144383), (156168, 156168, 159, 159, 'Instruction Disc (Summoning of Distral)', 144384), (156167, 156167, 153, 153, 'Instruction Disc (Summoning of Duoco)', 144383), (156166, 156166, 100, 100, 'Instruction Disc (Summoning of Ignatus Mind-Clouder)', 144383), (156178, 156178, 189, 189, 'Instruction Disc (Summoning of Tumulten)', 144384), (204499, 204499, 180, 180, 'Instruction Disc (Sunder Constraints)', 83355), (147637, 147637, 93, 93, 'Instruction Disc (Sunrise over Pond)', 144461), (147969, 147969, 99, 99, 'Instruction Disc (Superior Absorption Shield)', 144421), (145052, 145052, 4, 4, 'Instruction Disc (Superior Anger Manifestation)', 144373), (147241, 147241, 57, 57, 'Instruction Disc (Superior Bodily Reinforcement)', 144325), (147970, 147970, 83, 83, 'Instruction Disc (Superior Combat Barrier)', 144421), (147478, 147478, 103, 103, 'Instruction Disc (Superior Defensive Screen)', 144317), (148183, 148183, 140, 140, 'Instruction Disc (Superior Delayed Health Payment)', 83412), (147242, 147242, 96, 96, 'Instruction Disc (Superior Dress Wounds)', 83411), (145053, 145053, 162, 162, 'Instruction Disc (Superior Enmity Personification)', 144376), (203884, 203884, 150, 150, 'Instruction Disc (Superior Exoskeleton Pulse)', 83355), (147243, 147243, 119, 119, 'Instruction Disc (Superior First Aid)', 83396), (147479, 147479, 172, 172, 'Instruction Disc (Superior Force Field)', 144320), (145054, 145054, 139, 139, 'Instruction Disc (Superior Frenzy Embodiment)', 144375), (145055, 145055, 24, 24, 'Instruction Disc (Superior Fury Externalization)', 144373), (147244, 147244, 30, 30, 'Instruction Disc (Superior Healing)', 83408), (147245, 147245, 83, 83, 'Instruction Disc (Superior Health Augmentation)', 144432), (147246, 147246, 162, 162, 'Instruction Disc (Superior Health Pump)', 83412), (147879, 147879, 99, 99, 'Instruction Disc (Superior Humidity Extractor)', 83461), (147247, 147247, 169, 169, 'Instruction Disc (Superior Life Reinforcement)', 144434), (147880, 147880, 172, 172, 'Instruction Disc (Superior Malign Devourer)', 83534), (147248, 147248, 152, 152, 'Instruction Disc (Superior Metabolism Booster)', 144325), (147249, 147249, 142, 142, 'Instruction Disc (Superior Nano Bandage)', 83412), (147881, 147881, 93, 93, 'Instruction Disc (Superior Nano Command)', 83355), (147250, 147250, 179, 179, 'Instruction Disc (Superior Omni-Med Enhancement)', 144325), (204436, 204436, 118, 118, 'Instruction Disc (Superior Polarized Screening)', 144317), (147480, 147480, 96, 96, 'Instruction Disc (Superior Protective Field)', 144317), (145056, 145056, 50, 50, 'Instruction Disc (Superior Rage Materialization)', 144374), (147481, 147481, 86, 86, 'Instruction Disc (Superior Shielding Barrier)', 144317), (147251, 147251, 80, 80, 'Instruction Disc (Superior Wound Bindings)', 83410), (145057, 145057, 90, 90, 'Instruction Disc (Superior Wrath Incarnation)', 144375), (147053, 147053, 136, 136, 'Instruction Disc (Supervisor-Grade Administrator-Droid)', 83471), (147054, 147054, 83, 83, 'Instruction Disc (Supervisor-Grade Aide-Droid)', 83471), (147055, 147055, 60, 60, 'Instruction Disc (Supervisor-Grade Assistant-Droid)', 83470), (147056, 147056, 37, 37, 'Instruction Disc (Supervisor-Grade Attendant-Droid)', 83470), (147057, 147057, 165, 165, 'Instruction Disc (Supervisor-Grade Bodyguard)', 83472), (147058, 147058, 20, 20, 'Instruction Disc (Supervisor-Grade Helper-Droid)', 83465), (147059, 147059, 152, 152, 'Instruction Disc (Supervisor-Grade Minion)', 83472), (147060, 147060, 113, 113, 'Instruction Disc (Supervisor-Grade Secretary-Droid)', 83471), (147061, 147061, 7, 7, 'Instruction Disc (Supervisor-Grade Worker-Droid)', 83465), (162498, 162498, 33, 33, 'Instruction Disc (Suppressor)', 83453), (145058, 145058, 7, 7, 'Instruction Disc (Supreme Anger Manifestation)', 144373), (156165, 156165, 67, 67, 'Instruction Disc (Supreme Deranged Mindreaver)', 144382), (156164, 156164, 24, 24, 'Instruction Disc (Supreme Distracting Sphere)', 144381), (145059, 145059, 172, 172, 'Instruction Disc (Supreme Enmity Personification)', 144376), (145060, 145060, 149, 149, 'Instruction Disc (Supreme Frenzy Embodiment)', 144375), (145061, 145061, 30, 30, 'Instruction Disc (Supreme Fury Externalization)', 144374), (145062, 145062, 60, 60, 'Instruction Disc (Supreme Rage Materialization)', 144374), (147638, 147638, 146, 146, 'Instruction Disc (Supreme Shen Protection)', 144371), (162504, 162504, 106, 106, 'Instruction Disc (Supreme Suppressor)', 83453), (146803, 146803, 123, 123, 'Instruction Disc (Supreme Wilderness Protection)', 144424), (145063, 145063, 96, 96, 'Instruction Disc (Supreme Wrath Incarnation)', 144375), (160843, 160843, 40, 40, 'Instruction Disc (Sureshot)', 83285), (147252, 147252, 53, 53, 'Instruction Disc (Surgeon''s Touch)', 83409), (147253, 147253, 14, 14, 'Instruction Disc (Survivability Booster)', 83502), (146804, 146804, 33, 33, 'Instruction Disc (Survival Aid)', 83396), (146806, 146806, 27, 27, 'Instruction Disc (Survival Technique)', 83408), (146805, 146805, 116, 116, 'Instruction Disc (Survival of the Fittest)', 83409), (147971, 147971, 139, 139, 'Instruction Disc (Survivor''s Resilience)', 144328), (146899, 146899, 47, 47, 'Instruction Disc (Suspicious Death)', 83375), (148184, 148184, 4, 4, 'Instruction Disc (Swap Psyche)', 83417), (147639, 147639, 113, 113, 'Instruction Disc (Sway of Bamboo)', 144462), (147482, 147482, 1, 1, 'Instruction Disc (Swift Weapon)', 83434), (203168, 203168, 178, 178, 'Instruction Disc (Swiss Cheese)', 83498), (145064, 145064, 10, 10, 'Instruction Disc (Symbol Helper)', 83459), (154627, 154627, 34, 34, 'Instruction Disc (Sympathetic Armor Boost)', 144355), (154626, 154626, 80, 80, 'Instruction Disc (Sympathetic Arms Enhancement)', 144459), (154625, 154625, 146, 146, 'Instruction Disc (Sympathetic Defensive Screen)', 144358), (154624, 154624, 153, 153, 'Instruction Disc (Sympathetic Energy Cocoon)', 83363), (154623, 154623, 176, 176, 'Instruction Disc (Sympathetic Entropy Infusion)', 144460), (154622, 154622, 163, 163, 'Instruction Disc (Sympathetic Force Field)', 144359), (154621, 154621, 189, 189, 'Instruction Disc (Sympathetic Fortress Screen)', 144360), (154620, 154620, 116, 116, 'Instruction Disc (Sympathetic Harmonic Cocoon)', 144427), (154619, 154619, 90, 90, 'Instruction Disc (Sympathetic Harmonic Field)', 144426), (154618, 154618, 189, 189, 'Instruction Disc (Sympathetic Plasma Shielding)', 83363), (154617, 154617, 97, 97, 'Instruction Disc (Sympathetic Protective Field)', 144357), (154616, 154616, 186, 186, 'Instruction Disc (Sympathetic Reactive Cocoon)', 144429), (154615, 154615, 159, 159, 'Instruction Disc (Sympathetic Reactive Field)', 144428), (154614, 154614, 93, 93, 'Instruction Disc (Sympathetic Retaliatory Barrier)', 83363), (154613, 154613, 70, 70, 'Instruction Disc (Sympathetic Shielding Barrier)', 144356), (147254, 147254, 86, 86, 'Instruction Disc (Syndicated Healing)', 83410), (162757, 162757, 123, 123, 'Instruction Disc (Systolic Equalizer)', 83411), (147255, 147255, 57, 57, 'Instruction Disc (Tailored Cure)', 83410), (146900, 146900, 152, 152, 'Instruction Disc (Take the Shot)', 83285), (202911, 202911, 93, 93, 'Instruction Disc (Talon of the Anun)', 83345), (202905, 202905, 174, 174, 'Instruction Disc (Talon of the Dragon)', 83345), (202908, 202908, 129, 129, 'Instruction Disc (Talon of the Roc)', 83345), (147564, 147564, 149, 149, 'Instruction Disc (Targeted Augmentation Cloud)', 144463), (147344, 147344, 7, 7, 'Instruction Disc (Taunting Glare)', 83385), (151793, 151793, 18, 18, 'Instruction Disc (Teachings of Biological Metamorphose)', 83346), (151803, 151803, 21, 21, 'Instruction Disc (Teachings of Material Creation)', 83448), (151801, 151801, 17, 17, 'Instruction Disc (Teachings of Material Metamorphose)', 83450), (151800, 151800, 24, 24, 'Instruction Disc (Teachings of Psychological Modification)', 83488), (151799, 151799, 21, 21, 'Instruction Disc (Teachings of Sensory Improvement)', 83496), (151802, 151802, 21, 21, 'Instruction Disc (Teachings of Time and Space)', 83449), (154920, 154920, 159, 159, 'Instruction Disc (Team Beacon Warp)', 83565), (147256, 147256, 60, 60, 'Instruction Disc (Team Cellular Rebuild)', 83409), (147257, 147257, 70, 70, 'Instruction Disc (Team Checkup)', 83409), (147258, 147258, 159, 159, 'Instruction Disc (Team Compress Wounds)', 83413), (146807, 146807, 113, 113, 'Instruction Disc (Team Eagle Eye)', 83464), (147259, 147259, 20, 20, 'Instruction Disc (Team Field Dressings)', 83407), (146808, 146808, 66, 66, 'Instruction Disc (Team Free Movement)', 144386), (147565, 147565, 57, 57, 'Instruction Disc (Team Grid Phreak)', 83565), (147640, 147640, 70, 70, 'Instruction Disc (Team Healing Aura)', 301502), (147641, 147641, 40, 40, 'Instruction Disc (Team Healing Touch)', 301501), (147260, 147260, 40, 40, 'Instruction Disc (Team Healing)', 83408), (147261, 147261, 113, 113, 'Instruction Disc (Team Nano Bandage)', 83411), (146809, 146809, 116, 116, 'Instruction Disc (Team Practiced Stitching)', 83409), (147262, 147262, 156, 156, 'Instruction Disc (Team Purification)', 83412), (146810, 146810, 4, 4, 'Instruction Disc (Team Quick Heal)', 83407), (147642, 147642, 17, 17, 'Instruction Disc (Team Restore Essence)', 301501), (146811, 146811, 17, 17, 'Instruction Disc (Team Rough Stitching)', 83407), (148186, 148186, 123, 123, 'Instruction Disc (Team Skill Wrangler (Advanced))', 144349), (148187, 148187, 47, 47, 'Instruction Disc (Team Skill Wrangler (Commonplace))', 144346), (148188, 148188, 169, 169, 'Instruction Disc (Team Skill Wrangler (Exceptional))', 144353), (148189, 148189, 153, 153, 'Instruction Disc (Team Skill Wrangler (Greater))', 144351), (148190, 148190, 77, 77, 'Instruction Disc (Team Skill Wrangler (Lesser))', 144347), (148191, 148191, 60, 60, 'Instruction Disc (Team Skill Wrangler (Lossy))', 144347), (148192, 148192, 107, 107, 'Instruction Disc (Team Skill Wrangler (Major))', 144348), (148193, 148193, 37, 37, 'Instruction Disc (Team Skill Wrangler (Minor))', 144346), (148194, 148194, 27, 27, 'Instruction Disc (Team Skill Wrangler (Patchy))', 144345), (148195, 148195, 189, 189, 'Instruction Disc (Team Skill Wrangler (Premium))', 144354), (148196, 148196, 159, 159, 'Instruction Disc (Team Skill Wrangler (Sophisticated))', 144352), (148197, 148197, 140, 140, 'Instruction Disc (Team Skill Wrangler (Superior))', 144350), (148198, 148198, 18, 18, 'Instruction Disc (Team Skill Wrangler (Weak))', 144345), (148185, 148185, 93, 93, 'Instruction Disc (Team Skill Wrangler)', 144348), (146812, 146812, 33, 33, 'Instruction Disc (Team Survival Technique)', 83408), (146813, 146813, 24, 24, 'Instruction Disc (Team Terrain Knowledge)', 144386), (147263, 147263, 139, 139, 'Instruction Disc (Team Tissue Repair)', 83411), (150406, 150406, 97, 97, 'Instruction Disc (Team Warp Time and Space: Borealis)', 83565), (204493, 204493, 68, 68, 'Instruction Disc (Tear Constraints)', 83355), (147882, 147882, 116, 116, 'Instruction Disc (Tear Flesh)', 83550), (145065, 145065, 136, 136, 'Instruction Disc (Temper Wrath)', 144461), (147062, 147062, 159, 159, 'Instruction Disc (Temporary Allegiance)', 83487), (147264, 147264, 90, 90, 'Instruction Disc (Temporary Cellular Enhancement)', 144433), (147063, 147063, 20, 20, 'Instruction Disc (Temporary Glamor)', 83487), (146814, 146814, 10, 10, 'Instruction Disc (Terrain Knowledge)', 83458), (147064, 147064, 90, 90, 'Instruction Disc (Terror Blast)', 83495), (204001, 204001, 42, 42, 'Instruction Disc (The Claim to Freedom)', 83355), (203171, 203171, 88, 88, 'Instruction Disc (The Power of Three)', 83353), (204007, 204007, 137, 137, 'Instruction Disc (The Prerogative of Mobility)', 83355), (204010, 204010, 180, 180, 'Instruction Disc (The Privilege of Speed)', 83355), (204004, 204004, 94, 94, 'Instruction Disc (The Right to Movement)', 83355), (147345, 147345, 37, 37, 'Instruction Disc (Thicken Skin)', 83341), (161395, 161395, 142, 142, 'Instruction Disc (Thorn of the Rose)', 83363), (147265, 147265, 83, 83, 'Instruction Disc (Thorough Examination)', 83410), (147065, 147065, 166, 166, 'Instruction Disc (Thorough Overhaul)', 83409), (148199, 148199, 126, 126, 'Instruction Disc (Thought Controller)', 83419), (148200, 148200, 159, 159, 'Instruction Disc (Thought Juggler)', 83419), (202884, 202884, 133, 133, 'Instruction Disc (Thugs Glory)', 83347), (202887, 202887, 173, 173, 'Instruction Disc (Thugs Jubilation)', 83347), (147883, 147883, 60, 60, 'Instruction Disc (Thunderclap)', 83548), (147884, 147884, 43, 43, 'Instruction Disc (Thunderous Blow)', 83548), (147266, 147266, 7, 7, 'Instruction Disc (Tired Limbs)', 83434), (147267, 147267, 113, 113, 'Instruction Disc (Tissue Repair)', 83411), (147972, 147972, 113, 113, 'Instruction Disc (Titan Physique)', 144327), (147643, 147643, 109, 109, 'Instruction Disc (Titanium Skin)', 144370), (162338, 162338, 116, 116, 'Instruction Disc (Toothy Grin)', 144460), (160834, 160834, 24, 24, 'Instruction Disc (Total Concentration)', 83285), (147973, 147973, 136, 136, 'Instruction Disc (Total Focus)', 83342), (147066, 147066, 179, 179, 'Instruction Disc (Total Mental Domination)', 83487), (147974, 147974, 10, 10, 'Instruction Disc (Total Mirror Shield Mk I)', 83491), (147975, 147975, 27, 27, 'Instruction Disc (Total Mirror Shield Mk II)', 83491), (147976, 147976, 47, 47, 'Instruction Disc (Total Mirror Shield Mk III)', 144426), (147977, 147977, 60, 60, 'Instruction Disc (Total Mirror Shield Mk IV)', 144426), (147978, 147978, 132, 132, 'Instruction Disc (Total Mirror Shield Mk IX)', 144430), (147979, 147979, 86, 86, 'Instruction Disc (Total Mirror Shield Mk V)', 144427), (147980, 147980, 106, 106, 'Instruction Disc (Total Mirror Shield Mk VI)', 144428), (147981, 147981, 126, 126, 'Instruction Disc (Total Mirror Shield Mk VII)', 144429), (147982, 147982, 129, 129, 'Instruction Disc (Total Mirror Shield Mk VIII)', 144429), (147983, 147983, 146, 146, 'Instruction Disc (Total Mirror Shield Mk X)', 144430), (147067, 147067, 175, 175, 'Instruction Disc (Total Musculature Command)', 83424), (147984, 147984, 63, 63, 'Instruction Disc (Tough as Nails)', 144326), (147644, 147644, 1, 1, 'Instruction Disc (Toughen Skin)', 83452), (147346, 147346, 126, 126, 'Instruction Disc (Toxic Barrier)', 83363), (147885, 147885, 37, 37, 'Instruction Disc (Toxic Field)', 83518), (147886, 147886, 126, 126, 'Instruction Disc (Toxic Sphere)', 83520), (147887, 147887, 132, 132, 'Instruction Disc (Toxic Spill)', 83293), (148201, 148201, 165, 165, 'Instruction Disc (Trading Mogul)', 83489), (148203, 148203, 172, 172, 'Instruction Disc (Traffic AC (Advanced))', 144332), (148204, 148204, 182, 182, 'Instruction Disc (Traffic AC (Greater))', 144333), (148205, 148205, 139, 139, 'Instruction Disc (Traffic AC (Lesser))', 144331), (148206, 148206, 159, 159, 'Instruction Disc (Traffic AC (Major))', 144332), (148207, 148207, 119, 119, 'Instruction Disc (Traffic AC (Minor))', 144330), (148208, 148208, 96, 96, 'Instruction Disc (Traffic AC (Weak))', 144330), (148202, 148202, 152, 152, 'Instruction Disc (Traffic AC)', 144331), (160858, 160858, 53, 53, 'Instruction Disc (Training of The Executioner)', 144460), (163410, 163410, 139, 139, 'Instruction Disc (Tranquility of the Vale)', 83418), (145066, 145066, 10, 10, 'Instruction Disc (Transcendent Anger Manifestation)', 144373), (145067, 145067, 175, 175, 'Instruction Disc (Transcendent Enmity Personification)', 144376), (145068, 145068, 152, 152, 'Instruction Disc (Transcendent Frenzy Embodiment)', 144375), (145069, 145069, 33, 33, 'Instruction Disc (Transcendent Fury Externalization)', 144374), (145070, 145070, 70, 70, 'Instruction Disc (Transcendent Rage Materialization)', 144374), (147645, 147645, 159, 159, 'Instruction Disc (Transcendent Shen Protection)', 144372), (145071, 145071, 106, 106, 'Instruction Disc (Transcendent Wrath Incarnation)', 144375), (147483, 147483, 73, 73, 'Instruction Disc (Trap Artifice)', 83367), (147888, 147888, 175, 175, 'Instruction Disc (Tremor)', 83568), (147889, 147889, 109, 109, 'Instruction Disc (Tri-Ion Stream)', 83562), (148209, 148209, 63, 63, 'Instruction Disc (Trinkets and Toys)', 83418), (160846, 160846, 76, 76, 'Instruction Disc (Trueshot)', 83285), (147484, 147484, 189, 189, 'Instruction Disc (Ultimate Force Field)', 144320), (147268, 147268, 185, 185, 'Instruction Disc (Uncontrollable Body Tremors)', 83434), (146901, 146901, 136, 136, 'Instruction Disc (Unexpected Attack)', 83500), (148210, 148210, 17, 17, 'Instruction Disc (Unfriendly Merger)', 83487), (147646, 147646, 169, 169, 'Instruction Disc (Universal Vulnerability Compendium)', 83343), (145072, 145072, 73, 73, 'Instruction Disc (Unmake: BioMet)', 83346), (145073, 145073, 73, 73, 'Instruction Disc (Unmake: MatCrea)', 83448), (145075, 145075, 63, 63, 'Instruction Disc (Unmake: MatMet)', 83450), (145076, 145076, 70, 70, 'Instruction Disc (Unmake: PsyMod)', 83488), (145077, 145077, 66, 66, 'Instruction Disc (Unmake: SenseImp)', 83496), (145074, 145074, 66, 66, 'Instruction Disc (Unmake: SpaceTime)', 83449), (147890, 147890, 119, 119, 'Instruction Disc (Unstable Hadron String)', 83562), (147485, 147485, 37, 37, 'Instruction Disc (Upgraded Android)', 83465), (147486, 147486, 10, 10, 'Instruction Disc (Upgraded Automaton)', 83465), (147487, 147487, 76, 76, 'Instruction Disc (Upgraded Gladiatorbot)', 83470), (147488, 147488, 113, 113, 'Instruction Disc (Upgraded Guardbot)', 83471), (147489, 147489, 149, 149, 'Instruction Disc (Upgraded Warbot)', 83471), (147490, 147490, 169, 169, 'Instruction Disc (Upgraded Warmachine)', 83472), (160837, 160837, 73, 73, 'Instruction Disc (Utter Concentration)', 83285), (204520, 204520, 119, 119, 'Instruction Disc (Vaccine of Deprivation)', 83473), (204526, 204526, 197, 197, 'Instruction Disc (Vaccine of Divestiture)', 83473), (204523, 204523, 164, 164, 'Instruction Disc (Vaccine of Plundering)', 83473), (204517, 204517, 77, 77, 'Instruction Disc (Vaccine of Ransacking)', 83473), (147647, 147647, 60, 60, 'Instruction Disc (Velocity)', 83458), (161398, 161398, 169, 169, 'Instruction Disc (Vengeance of Nature)', 83363), (147566, 147566, 60, 60, 'Instruction Disc (Venom Modification)', 144460), (147891, 147891, 66, 66, 'Instruction Disc (Viral Assault)', 83530), (162326, 162326, 103, 103, 'Instruction Disc (Vision of the Wolf)', 83464), (147068, 147068, 130, 130, 'Instruction Disc (Visions of a Doomed Future)', 83495), (147892, 147892, 189, 189, 'Instruction Disc (Visions of the Void)', 83462), (202902, 202902, 197, 197, 'Instruction Disc (Vlad''s Revenge)', 83345), (147069, 147069, 182, 182, 'Instruction Disc (Void Inertia)', 83424), (147893, 147893, 86, 86, 'Instruction Disc (Void Warmth)', 83525), (147894, 147894, 182, 182, 'Instruction Disc (Volcanic Eruption)', 83572), (147895, 147895, 113, 113, 'Instruction Disc (Vulcan Flechette)', 83556), (147648, 147648, 90, 90, 'Instruction Disc (Vulnerability Seeker)', 83343), (147649, 147649, 132, 132, 'Instruction Disc (Waiting Panda)', 144463), (147070, 147070, 156, 156, 'Instruction Disc (Wandering Mind)', 83420), (147491, 147491, 149, 149, 'Instruction Disc (Warbot)', 83471), (147347, 147347, 54, 54, 'Instruction Disc (Ward from Harm)', 144316), (147492, 147492, 165, 165, 'Instruction Disc (Warmachine)', 83472), (147896, 147896, 189, 189, 'Instruction Disc (Warmth of the Grave)', 83528), (150400, 150400, 87, 87, 'Instruction Disc (Warp Time and Space: Borealis)', 83565), (147897, 147897, 57, 57, 'Instruction Disc (Weak Chemical Liquefaction)', 83518), (147898, 147898, 33, 33, 'Instruction Disc (Weak Gravity Collapse)', 83547), (147899, 147899, 40, 40, 'Instruction Disc (Weak Gravity Pull)', 83422), (148212, 148212, 47, 47, 'Instruction Disc (Weak Health Freeloader)', 144338), (148213, 148213, 132, 132, 'Instruction Disc (Weak Health Plunder)', 144341), (147900, 147900, 1, 1, 'Instruction Disc (Weak Smiting Missile)', 83553), (147270, 147270, 4, 4, 'Instruction Disc (Weak Team Heal)', 83407), (147071, 147071, 17, 17, 'Instruction Disc (Weight of the Guilty)', 83425), (147072, 147072, 83, 83, 'Instruction Disc (Weighty Announcement)', 83426), (147901, 147901, 37, 37, 'Instruction Disc (Wild Eye Gouger)', 83462), (146815, 146815, 43, 43, 'Instruction Disc (Wilderness Protection)', 144421), (147902, 147902, 27, 27, 'Instruction Disc (Wind Blade)', 83547), (161407, 161407, 47, 47, 'Instruction Disc (Wind Slicer)', 83497), (147650, 147650, 57, 57, 'Instruction Disc (Wind-Blown Blossom)', 144460), (146816, 146816, 162, 162, 'Instruction Disc (Wings of the Phoenix)', 83363), (147651, 147651, 43, 43, 'Instruction Disc (Wooden Skin)', 144368), (147271, 147271, 179, 179, 'Instruction Disc (Wrack and Ruin)', 83376), (145078, 145078, 179, 179, 'Instruction Disc (Wrath Abatement)', 144461), (145079, 145079, 149, 149, 'Instruction Disc (Wrath Ebb)', 144461), (145080, 145080, 86, 86, 'Instruction Disc (Wrath Incarnation)', 144374), (202896, 202896, 173, 173, 'Instruction Disc (Wrecking Ball)', 83298), (203933, 203933, 40, 40, 'Instruction Disc (Writ of Mobility)', 83355), (203939, 203939, 120, 120, 'Instruction Disc (Writ of Passage)', 83355), (203945, 203945, 200, 200, 'Instruction Disc (Writ of the Errant Salesman)', 83355), (238945, 238945, 1, 1, 'Instructions for Dr. Pons', 154680), (275461, 275461, 1, 1, 'Insulated Nano Wire', 151017), (236592, 236592, 1, 1, 'Insurance Claim', 239279), (296465, 296465, 1, 1, 'Insurance Claim Recall Beacon', 296468), (101791, 101792, 1, 200, 'Intelligence Cluster - Bright (Eye)', 35993), (101789, 101790, 1, 200, 'Intelligence Cluster - Faded (Ear)', 35992), (101793, 101794, 1, 200, 'Intelligence Cluster - Shiny (Head)', 35994), (277169, 277170, 1, 300, 'Intelligence Memory Cell', 276921), (165963, 165964, 201, 300, 'Intelligence Refined Cluster - Bright (Eye)', 35993), (165961, 165962, 201, 300, 'Intelligence Refined Cluster - Faded (Ear)', 35992), (165965, 165966, 201, 300, 'Intelligence Refined Cluster - Shiny (Head)', 35994), (235422, 235422, 300, 300, 'Intelligent Brain Symbiant, Artillery Unit Aban', 215189), (236314, 236314, 300, 300, 'Intelligent Brain Symbiant, Control Unit Aban', 215189), (235866, 235866, 300, 300, 'Intelligent Brain Symbiant, Extermination Unit Aban', 215189), (235646, 235646, 300, 300, 'Intelligent Brain Symbiant, Infantry Unit Aban', 215189), (236091, 236091, 300, 300, 'Intelligent Brain Symbiant, Support Unit Aban', 215188), (235475, 235475, 300, 300, 'Intelligent Chest Symbiant, Artillery Unit Aban', 215181), (236366, 236366, 300, 300, 'Intelligent Chest Symbiant, Control Unit Aban', 215183), (235918, 235918, 300, 300, 'Intelligent Chest Symbiant, Extermination Unit Aban', 215181), (235696, 235696, 300, 300, 'Intelligent Chest Symbiant, Infantry Unit Aban', 215181), (236143, 236143, 300, 300, 'Intelligent Chest Symbiant, Support Unit Aban', 215181), (235440, 235440, 300, 300, 'Intelligent Ear Symbiant, Artillery Unit Aban', 230977), (236331, 236331, 300, 300, 'Intelligent Ear Symbiant, Control Unit Aban', 230977), (235883, 235883, 300, 300, 'Intelligent Ear Symbiant, Extermination Unit Aban', 230977), (235663, 235663, 300, 300, 'Intelligent Ear Symbiant, Infantry Unit Aban', 230977), (236108, 236108, 300, 300, 'Intelligent Ear Symbiant, Support Unit Aban', 230977), (160920, 160921, 1, 200, 'Intelligent Energized Armor Shoulderpad', 160904), (235614, 235614, 300, 300, 'Intelligent Feet Symbiant, Artillery Unit Aban', 215185), (236505, 236505, 300, 300, 'Intelligent Feet Symbiant, Control Unit Aban', 215185), (236057, 236057, 300, 300, 'Intelligent Feet Symbiant, Extermination Unit Aban', 215186), (235833, 235833, 300, 300, 'Intelligent Feet Symbiant, Infantry Unit Aban', 215187), (236284, 236284, 300, 300, 'Intelligent Feet Symbiant, Support Unit Aban', 215187), (160908, 160909, 1, 200, 'Intelligent Kevlar Shoulderpad', 160890), (235492, 235492, 300, 300, 'Intelligent Left Arm Symbiant, Artillery Unit Aban', 215179), (236384, 236384, 300, 300, 'Intelligent Left Arm Symbiant, Control Unit Aban', 215177), (235935, 235935, 300, 300, 'Intelligent Left Arm Symbiant, Extermination Unit Aban', 215175), (235713, 235713, 300, 300, 'Intelligent Left Arm Symbiant, Infantry Unit Aban', 215179), (236164, 236164, 300, 300, 'Intelligent Left Arm Symbiant, Support Unit Aban', 215175), (235596, 235596, 300, 300, 'Intelligent Left Hand Symbiant, Artillery Unit Aban', 215171), (236489, 236489, 300, 300, 'Intelligent Left Hand Symbiant, Control Unit Aban', 215172), (236040, 236040, 300, 300, 'Intelligent Left Hand Symbiant, Extermination Unit Aban', 215172), (235815, 235815, 300, 300, 'Intelligent Left Hand Symbiant, Infantry Unit Aban', 215172), (236268, 236268, 300, 300, 'Intelligent Left Hand Symbiant, Support Unit Aban', 215171), (235544, 235544, 300, 300, 'Intelligent Left Wrist Symbiant, Artillery Unit Aban', 215196), (236437, 236437, 300, 300, 'Intelligent Left Wrist Symbiant, Control Unit Aban', 215196), (235987, 235987, 300, 300, 'Intelligent Left Wrist Symbiant, Extermination Unit Aban', 215198), (235763, 235763, 300, 300, 'Intelligent Left Wrist Symbiant, Infantry Unit Aban', 215198), (236218, 236218, 300, 300, 'Intelligent Left Wrist Symbiant, Support Unit Aban', 215198), (163285, 163285, 200, 200, 'Intelligent Mole Stinger', 131270), (160922, 160923, 1, 200, 'Intelligent Nano Armor Shoulderpad', 160905), (160924, 160925, 1, 200, 'Intelligent Obtru Steel-Ribbed Shoulderpad', 160907), (219139, 219139, 300, 300, 'Intelligent Ocular Symbiant, Artillery Unit Aban', 230979), (236299, 236299, 300, 300, 'Intelligent Ocular Symbiant, Control Unit Aban', 230979), (235849, 235849, 300, 300, 'Intelligent Ocular Symbiant, Extermination Unit Aban', 230979), (235631, 235631, 300, 300, 'Intelligent Ocular Symbiant, Infantry Unit Aban', 230980), (236074, 236074, 300, 300, 'Intelligent Ocular Symbiant, Support Unit Aban', 230980), (235457, 235457, 300, 300, 'Intelligent Right Arm Symbiant, Artillery Unit Aban', 215176), (236349, 236349, 300, 300, 'Intelligent Right Arm Symbiant, Control Unit Aban', 215180), (235901, 235901, 300, 300, 'Intelligent Right Arm Symbiant, Extermination Unit Aban', 215178), (235680, 235680, 300, 300, 'Intelligent Right Arm Symbiant, Infantry Unit Aban', 215180), (236124, 236124, 300, 300, 'Intelligent Right Arm Symbiant, Support Unit Aban', 215178), (235562, 235562, 300, 300, 'Intelligent Right Hand Symbiant, Artillery Unit Aban', 215173), (236455, 236455, 300, 300, 'Intelligent Right Hand Symbiant, Control Unit Aban', 215173), (236005, 236005, 300, 300, 'Intelligent Right Hand Symbiant, Extermination Unit Aban', 215173), (235781, 235781, 300, 300, 'Intelligent Right Hand Symbiant, Infantry Unit Aban', 215174), (236235, 236235, 300, 300, 'Intelligent Right Hand Symbiant, Support Unit Aban', 215174), (235509, 235509, 300, 300, 'Intelligent Right Wrist Symbiant, Artillery Unit Aban', 215170), (236402, 236402, 300, 300, 'Intelligent Right Wrist Symbiant, Control Unit Aban', 215170), (235952, 235952, 300, 300, 'Intelligent Right Wrist Symbiant, Extermination Unit Aban', 215170), (235729, 235729, 300, 300, 'Intelligent Right Wrist Symbiant, Infantry Unit Aban', 215197), (236183, 236183, 300, 300, 'Intelligent Right Wrist Symbiant, Support Unit Aban', 215197), (235579, 235579, 300, 300, 'Intelligent Thigh Symbiant, Artillery Unit Aban', 215190), (236473, 236473, 300, 300, 'Intelligent Thigh Symbiant, Control Unit Aban', 215191), (236023, 236023, 300, 300, 'Intelligent Thigh Symbiant, Extermination Unit Aban', 215192), (235798, 235798, 300, 300, 'Intelligent Thigh Symbiant, Infantry Unit Aban', 215191), (236252, 236252, 300, 300, 'Intelligent Thigh Symbiant, Support Unit Aban', 215190), (160918, 160919, 1, 200, 'Intelligent Titan Plasteel Shoulderpad', 160902), (235527, 235527, 300, 300, 'Intelligent Waist Symbiant, Artillery Unit Aban', 215194), (236420, 236420, 300, 300, 'Intelligent Waist Symbiant, Control Unit Aban', 215193), (235969, 235969, 300, 300, 'Intelligent Waist Symbiant, Extermination Unit Aban', 215193), (235746, 235746, 300, 300, 'Intelligent Waist Symbiant, Infantry Unit Aban', 215193), (236200, 236200, 300, 300, 'Intelligent Waist Symbiant, Support Unit Aban', 215193), (137199, 137200, 1, 200, 'Intelliwipe Targeting Scope', 130781), (150926, 150925, 1, 250, 'Interfaced Nano Sensor', 149939), (256508, 256508, 1, 1, 'Interlinked Shields', 37931), (295653, 295653, 1, 1, 'Interminable Symbol Etcher', 233133), (152883, 152883, 1, 1, 'Internal Affairs Protective Suit', 151881), (154408, 154408, 85, 85, 'Internal Anti-Matter Powerplant', 12668), (276618, 276618, 1, 1, 'Interrupter Tool', 218778), (305017, 305017, 1, 1, 'Intimate Tentacle Support', 41190), (246829, 246829, 1, 1, 'Intimate Tentacle Things', 41190), (159009, 159009, 200, 200, 'Intimidating Tango Dirk', 131270), (244358, 244358, 250, 250, 'Intuitive Memory of the Aquarius', 244359), (233225, 233226, 1, 149, 'Investigator Blaster', 218702), (233227, 233228, 150, 299, 'Investigator Blaster', 218702), (272264, 272264, 1, 1, 'Invisible Boots', 162422), (272263, 272263, 1, 1, 'Invisible Breastplate', 162421), (272259, 272259, 1, 1, 'Invisible Gloves', 162423), (272260, 272260, 1, 1, 'Invisible Helmet', 10833), (272262, 272262, 1, 1, 'Invisible Sleeves', 162420), (272261, 272261, 1, 1, 'Invisible Trousers', 162425), (82216, 82216, 1, 1, 'Invite Person to Your Team', 82203), (234895, 234895, 1, 1, 'Invoice for a Metawater Repellent Spiritech Suit', 156341), (160465, 160470, 1, 200, 'Ion Web Cloak', 160451), (199526, 199526, 205, 205, 'Iridium Periodic Tech Armor Boots', 22886), (199547, 199547, 205, 205, 'Iridium Periodic Tech Armor Gloves', 22933), (199568, 199568, 205, 205, 'Iridium Periodic Tech Armor Helmet', 31731), (199589, 199589, 205, 205, 'Iridium Periodic Tech Armor Pants', 22912), (199611, 199611, 205, 205, 'Iridium Periodic Tech Armor Sleeves', 22911), (199632, 199632, 205, 205, 'Iridium Periodic Tech Body Armor', 22990), (199653, 199653, 205, 205, 'Iridium Periodic Tech Female Body Armor', 22909), (232663, 232664, 1, 149, 'Iridium ingot', 289754), (232664, 232666, 150, 199, 'Iridium ingot', 289754), (232666, 232667, 200, 249, 'Iridium ingot', 289754), (232667, 232668, 250, 400, 'Iridium ingot', 289754), (253811, 253811, 1, 1, 'Iris Boots', 253704), (253808, 253808, 1, 1, 'Iris Pants', 253736), (253809, 253809, 1, 1, 'Iris Shirt', 253664), (253810, 253810, 1, 1, 'Iris Sleeves', 253686), (295870, 295870, 250, 250, 'Iron Band Template', 245483), (157409, 157409, 1, 1, 'Iron Twentysix Dung Beetle Advantage', 81779), (206253, 206253, 1, 1, 'Iron-bound Funeral Urn', 154195), (152072, 152073, 81, 100, 'Irontail Inc - Mathis Multi-Energy Rifle', 13314), (153442, 153442, 1, 1, 'Irontail Inc - Mathis Multi-Energy Rifle Construction Manual', 37933), (122615, 122616, 1, 20, 'Irreparable Aero Borealis Corona', 33147), (123628, 123629, 1, 20, 'Irreparable BBI Sigma III', 13318), (121988, 121989, 1, 20, 'Irreparable Blackened Miniblaster', 13316), (139459, 139459, 1, 1, 'Irreparable Blackened Miniblaster Construction Manual', 37931), (123095, 123096, 1, 20, 'Irreparable DNA-Targeted Executioner Pistol', 13323), (122463, 122464, 1, 20, 'Irreparable El Diablo', 31812), (122444, 122445, 1, 20, 'Irreparable El Dieu', 31809), (123171, 123172, 1, 20, 'Irreparable Electron-Charged Pistol', 13316), (142594, 142594, 1, 1, 'Irreparable Electron-Charged Pistol Construction Manual', 37931), (123495, 123496, 1, 20, 'Irreparable IMI Desert Reet 1000', 13334), (122482, 122483, 1, 20, 'Irreparable Ingram Blaster 23-X', 13317), (123533, 123534, 15, 32, 'Irreparable Khemo-Tech Model 07 (Pocket 20)', 113995), (123514, 123515, 1, 20, 'Irreparable Khemo-Tech Model 200', 113994), (123552, 123553, 15, 32, 'Irreparable Knights Inc. Special-Purpose Pistol', 13318), (122981, 122982, 1, 20, 'Irreparable Kolt 58 Magnum', 13334), (141651, 141651, 1, 1, 'Irreparable Kolt 58 Magnum Construction Manual', 37931), (122273, 122274, 1, 20, 'Irreparable Kolt PDW-37', 13315), (123152, 123153, 35, 50, 'Irreparable Light Beamer Pistol', 33157), (142448, 142448, 1, 1, 'Irreparable Light Beamer Pistol Construction Manual', 37932), (123476, 123477, 1, 20, 'Irreparable MTI USP 21', 113993), (122886, 122887, 1, 20, 'Irreparable Minielectronium', 13323), (122330, 122331, 1, 20, 'Irreparable Minigrinner', 33156), (140592, 140592, 1, 1, 'Irreparable Minigrinner Construction Manual', 37931), (123457, 123458, 1, 20, 'Irreparable OT Boomer+.90AE', 113995), (124579, 124580, 1, 20, 'Irreparable OT Viper IX', 21148), (122292, 122293, 1, 20, 'Irreparable Omni-Flamer Mk IV', 33161), (123609, 123610, 1, 20, 'Irreparable PNG M1007A1 Tactical Revolver', 113997), (123666, 123667, 1, 20, 'Irreparable River MV', 29116), (123685, 123686, 1, 20, 'Irreparable Seburo Bobsons', 13330), (123647, 123648, 1, 20, 'Irreparable Sentinels ETE Strike Gun', 31810), (122653, 122654, 1, 20, 'Irreparable Silver Miniblaster', 13316), (121836, 121837, 1, 20, 'Irreparable Sleekblaster', 13329), (138548, 138548, 1, 1, 'Irreparable Sleekblaster Construction Manual', 37931), (123076, 123077, 1, 20, 'Irreparable Sleekblaster Major', 13328), (142252, 142252, 1, 1, 'Irreparable Sleekblaster Major Construction Manual', 37931), (121817, 121818, 1, 20, 'Irreparable Sleekblaster Minor', 13327), (122634, 122635, 1, 20, 'Irreparable The Original Plasma-Emitter', 33145), (122026, 122027, 1, 20, 'Irreparable Triplejolt', 13320), (139847, 139847, 1, 1, 'Irreparable Triplejolt Construction Manual', 37931), (123438, 123439, 1, 20, 'Irreparable Ultra-Light Missile Pistol Raid 9-X', 13315), (206063, 206063, 1, 1, 'Iskop''s Ascendancy', 84065), (144785, 149814, 1, 24, 'Isotope Separator', 72783), (149814, 149822, 25, 49, 'Isotope Separator', 72783), (149822, 149821, 50, 74, 'Isotope Separator', 72783), (149821, 149820, 75, 99, 'Isotope Separator', 72783), (149820, 149819, 100, 124, 'Isotope Separator', 72783), (149819, 144783, 125, 255, 'Isotope Separator', 72783), (124315, 124316, 33, 50, 'Ithaca Ki-8', 113990), (124319, 124320, 59, 78, 'Ithaca Ki-8 Captain Dodger', 113990), (124317, 124318, 51, 58, 'Ithaca Ki-8 Dodger', 113990), (124321, 124322, 79, 136, 'Ithaca Ki-8 Escapist', 113990), (124323, 124324, 137, 172, 'Ithaca Ki-8 Escapist King', 113990), (124325, 124326, 173, 198, 'Ithaca Ki-8 Snakeman', 113990), (124327, 124327, 199, 199, 'Ithaca Ki-8 Snakemaster', 113990), (162894, 162895, 75, 124, 'Ithaca Ki12 Vulture Civil', 113989), (162896, 162897, 125, 149, 'Ithaca Ki12 Vulture Class C', 113989), (162892, 162893, 50, 74, 'Ithaca Ki12 Vulture Class D', 113989), (162890, 162891, 25, 49, 'Ithaca Ki12 Vulture Class E', 113989), (162888, 162889, 1, 24, 'Ithaca Ki12 Vulture Class F', 113989), (162902, 162902, 200, 200, 'Ithaca Ki12 Vulture Custom Super A', 113989), (162900, 162901, 175, 199, 'Ithaca Ki12 Vulture Double Class A', 113989), (162898, 162899, 150, 174, 'Ithaca Ki12 Vulture Double Class B', 113989), (293914, 293914, 300, 300, 'Ivory Blade of the Source', 213075), (253195, 253195, 1, 1, 'Izgimmer Cost-modified Cyberdeck', 218706), (253198, 253198, 1, 1, 'Izgimmer Cost-modified Cyberdeck', 218706), (253201, 253201, 1, 1, 'Izgimmer Cost-modified Cyberdeck', 218706), (253204, 253204, 1, 1, 'Izgimmer Cost-modified Cyberdeck', 218706), (253207, 253207, 1, 1, 'Izgimmer Cost-modified Cyberdeck', 218706), (253210, 253210, 1, 1, 'Izgimmer Cost-modified Cyberdeck', 218706), (253213, 253213, 1, 1, 'Izgimmer Cost-modified Cyberdeck', 218706), (253196, 253196, 1, 1, 'Izgimmer Damage-modified Cyberdeck', 218706), (253199, 253199, 1, 1, 'Izgimmer Damage-modified Cyberdeck', 218706), (253202, 253202, 1, 1, 'Izgimmer Damage-modified Cyberdeck', 218706), (253205, 253205, 1, 1, 'Izgimmer Damage-modified Cyberdeck', 218706), (253208, 253208, 1, 1, 'Izgimmer Damage-modified Cyberdeck', 218706), (253209, 253209, 1, 1, 'Izgimmer Damage-modified Cyberdeck', 218706), (253212, 253212, 1, 1, 'Izgimmer Damage-modified Cyberdeck', 218706), (253194, 253194, 1, 1, 'Izgimmer Speed-modified Cyberdeck', 218706), (253197, 253197, 1, 1, 'Izgimmer Speed-modified Cyberdeck', 218706), (253200, 253200, 1, 1, 'Izgimmer Speed-modified Cyberdeck', 218706), (253203, 253203, 1, 1, 'Izgimmer Speed-modified Cyberdeck', 218706), (253206, 253206, 1, 1, 'Izgimmer Speed-modified Cyberdeck', 218706), (253211, 253211, 1, 1, 'Izgimmer Speed-modified Cyberdeck', 218706), (253214, 253214, 1, 1, 'Izgimmer Speed-modified Cyberdeck', 218706), (233454, 233454, 1, 1, 'Izgimmer-modified Cyberdeck', 218706), (233455, 233455, 1, 1, 'Izgimmer-modified Cyberdeck', 218706), (233456, 233456, 1, 1, 'Izgimmer-modified Cyberdeck', 218706), (233457, 233457, 1, 1, 'Izgimmer-modified Cyberdeck', 218706), (233458, 233458, 1, 1, 'Izgimmer-modified Cyberdeck', 218706), (233459, 233459, 1, 1, 'Izgimmer-modified Cyberdeck', 218706), (233460, 233460, 1, 1, 'Izgimmer-modified Cyberdeck', 218706), (233461, 233461, 1, 1, 'Izgimmer-modified Cyberdeck', 218706), (233462, 233462, 1, 1, 'Izgimmer-modified Cyberdeck', 218706), (233463, 233463, 1, 1, 'Izgimmer-modified Cyberdeck', 218706), (233464, 233464, 1, 1, 'Izgimmer-modified Cyberdeck', 218706), (233465, 233465, 1, 1, 'Izgimmer-modified Cyberdeck', 218706), (233466, 233466, 1, 1, 'Izgimmer-modified Cyberdeck', 218706), (233467, 233467, 1, 1, 'Izgimmer-modified Cyberdeck', 218706), (245678, 245679, 140, 159, 'JAME Blaster Prototype IV', 31808), (245680, 245680, 160, 160, 'JAME Blaster Prototype XII', 31808), (302374, 302374, 160, 160, 'JAME Blaster Prototype XIII', 31808), (215256, 215256, 100, 100, 'JAME Professional Head Skinchip M-01', 160723), (215257, 215257, 100, 100, 'JAME Professional Head Skinchip M-02', 160722), (215255, 215255, 100, 100, 'JAME Professional Pad T310 L', 160889), (215252, 215252, 100, 100, 'JAME Professional Pad T310 R', 160887), (215254, 215254, 100, 100, 'JAME Professional Pad T610 L', 160886), (215253, 215253, 100, 100, 'JAME Professional Pad T610 R', 160888), (248870, 248870, 75, 75, 'JJ''s Berry', 37969), (267529, 267529, 1, 1, 'JOBE Modified Unlearning Device', 290826), (117610, 117610, 1, 1, 'Jab of the Snake', 43086), (165469, 165469, 1, 1, 'Jack''s Head', 144703), (165468, 165468, 1, 1, 'Jack''s Reinforced Gloves', 21979), (208222, 208223, 100, 200, 'Jacket of Yearning', 42264), (297193, 297193, 1, 1, 'Jacuzzi', 297194), (290907, 290907, 1, 1, 'Jaestar''s T-shirt', 290949), (245271, 245272, 150, 174, 'Jagged Claw', 13344), (245273, 245273, 175, 175, 'Jagged Claw', 13344), (269313, 269313, 1, 1, 'Jagged Slither Tissue Sample', 19856), (211263, 211264, 1, 299, 'Jake', 38056), (211265, 211265, 300, 300, 'Jake the Violent', 38056), (300601, 300601, 1, 1, 'Jammed Communique Device', 203583), (281354, 281354, 1, 1, 'Jamming Device', 281353), (137281, 137282, 1, 200, 'Jandawit Cleanup Cluster', 130755), (290915, 290915, 1, 1, 'Jaqozzo''s T-shirt', 290950), (154333, 154334, 1, 200, 'Jar of Mimicking Cellular Oil', 154419), (154335, 154336, 1, 200, 'Jar of Prepared Serum', 154417), (154337, 154338, 1, 200, 'Jar of Transient Fluid', 154418), (204871, 204871, 10, 10, 'Jar of Transient Heart Fluid', 154418), (213977, 213977, 1, 1, 'Jarring Burst', 239057), (252002, 252002, 200, 200, 'Jathos'' Molybdenum Plate Boots', 252431), (252004, 252004, 200, 200, 'Jathos'' Molybdenum Plate Gloves', 252439), (252005, 252005, 200, 200, 'Jathos'' Molybdenum Plate Helmet', 252430), (252000, 252000, 200, 200, 'Jathos'' Molybdenum Plate Pants', 252437), (252003, 252003, 200, 200, 'Jathos'' Molybdenum Plate Sleeves', 252435), (252001, 252001, 200, 200, 'Jathos'' Molybdenum Plate Vest', 252433), (248903, 248903, 1, 1, 'Jayde''s Grey Sneakers', 255335), (267560, 267561, 1, 300, 'Jayde''s Odyssey ring', 151931), (31504, 31504, 1, 1, 'Jean Trenchcoat', 22890), (268464, 268464, 1, 1, 'Jellyfish Rhopalium', 268465), (268463, 268463, 1, 1, 'Jellyfish Tentacles', 262426), (151366, 151366, 10, 10, 'Jensen Gem Cutter', 149941), (150281, 150276, 1, 24, 'Jensen Personal Ore Extractor', 149947), (150276, 150277, 25, 49, 'Jensen Personal Ore Extractor', 149947), (150277, 150278, 50, 74, 'Jensen Personal Ore Extractor', 149947), (150278, 150279, 75, 99, 'Jensen Personal Ore Extractor', 149947), (150279, 150280, 100, 124, 'Jensen Personal Ore Extractor', 149947), (150280, 150275, 125, 255, 'Jensen Personal Ore Extractor', 149947), (305029, 305029, 250, 250, 'Jester''s Gift', 287079), (274668, 274668, 1, 1, 'Jester''s Spirit Vest', 274686), (232839, 232840, 1, 149, 'Jet', 286933), (232840, 232841, 150, 199, 'Jet', 286933), (232841, 232842, 200, 249, 'Jet', 286933), (232842, 232843, 250, 400, 'Jet', 286933), (206064, 206064, 1, 1, 'Jeuru''s Oscillating Ligature', 84053), (226250, 226250, 1, 1, 'Jobe Apartment Ownership Access Card', 99185), (248378, 248378, 220, 220, 'Jobe Bureaucrat Support System', 214741), (245572, 245573, 140, 159, 'Jobe City Guard Personal Pistol', 113996), (231204, 231205, 1, 19, 'Jobe Defender Naginata', 13339), (231206, 231207, 20, 29, 'Jobe Defender Naginata', 13339), (231208, 231209, 30, 44, 'Jobe Defender Naginata', 13339), (231210, 231211, 45, 99, 'Jobe Defender Naginata', 13339), (231212, 231213, 100, 149, 'Jobe Defender Naginata', 13339), (231214, 231215, 150, 199, 'Jobe Defender Naginata', 13339), (231216, 231217, 200, 249, 'Jobe Defender Naginata', 13339), (231218, 231219, 250, 299, 'Jobe Defender Naginata', 13339), (231220, 231220, 300, 300, 'Jobe Defender Naginata', 13339), (248381, 248381, 220, 220, 'Jobe Engineer Support System', 214741), (245577, 245577, 160, 160, 'Jobe Explorer Personal Pistol', 113996), (248383, 248383, 220, 220, 'Jobe Fixer Support System', 214741), (248382, 248382, 220, 220, 'Jobe Keeper Support System', 214741), (226251, 226251, 1, 1, 'Jobe Luxury Apartment Ownership Access Card', 99183), (248384, 248384, 220, 220, 'Jobe Metaphysicist Support System', 214741), (248379, 248379, 220, 220, 'Jobe Nano-Technician Support System', 214741), (245574, 245574, 160, 160, 'Jobe Portal Guard Personal Pistol', 113996), (263917, 263917, 1, 1, 'Jobe Research Symbolism Reference Library', 263916), (248380, 248380, 220, 220, 'Jobe Shade Support System', 214741), (214729, 214729, 100, 100, 'Jobe Suit Boots', 214751), (214725, 214725, 100, 100, 'Jobe Suit Gloves', 214752), (214724, 214724, 100, 100, 'Jobe Suit Helmet', 214733), (214728, 214728, 100, 100, 'Jobe Suit Pants', 214753), (214723, 214723, 100, 100, 'Jobe Suit Shoulderpad', 160886), (214726, 214726, 100, 100, 'Jobe Suit Sleeves', 214749), (214722, 214722, 100, 100, 'Jobe Suit Support System', 214741), (214727, 214727, 100, 100, 'Jobe Suit Vest', 214750), (245575, 245576, 140, 159, 'Jobe Surveyor Personal Pistol', 113996), (248385, 248385, 220, 220, 'Jobe Trader Support System', 214741), (121628, 121628, 200, 200, 'Jobe-Made Bladestaff', 21140), (143164, 143164, 1, 1, 'Jobe-Made Bladestaff Construction Manual', 136330), (233440, 233440, 1, 1, 'Jobe-chipped Cyberdeck', 218706), (233441, 233441, 1, 1, 'Jobe-chipped Cyberdeck', 218706), (233442, 233442, 1, 1, 'Jobe-chipped Cyberdeck', 218706), (233443, 233443, 1, 1, 'Jobe-chipped Cyberdeck', 218706), (233444, 233444, 1, 1, 'Jobe-chipped Cyberdeck', 218706), (233445, 233445, 1, 1, 'Jobe-chipped Cyberdeck', 218706), (233446, 233446, 1, 1, 'Jobe-chipped Cyberdeck', 218706), (233447, 233447, 1, 1, 'Jobe-chipped Cyberdeck', 218706), (233448, 233448, 1, 1, 'Jobe-chipped Cyberdeck', 218706), (233449, 233449, 1, 1, 'Jobe-chipped Cyberdeck', 218706), (233450, 233450, 1, 1, 'Jobe-chipped Cyberdeck', 218706), (233451, 233451, 1, 1, 'Jobe-chipped Cyberdeck', 218706), (233452, 233452, 1, 1, 'Jobe-chipped Cyberdeck', 218706), (233453, 233453, 1, 1, 'Jobe-chipped Cyberdeck', 218706), (248300, 248301, 1, 14, 'Joint Clan Newcomer''s Body Armor', 31647), (248301, 297662, 15, 220, 'Joint Clan Newcomer''s Body Armor', 31647), (248296, 248297, 1, 14, 'Joint Clan Newcomer''s Boots', 22883), (248297, 297660, 15, 220, 'Joint Clan Newcomer''s Boots', 22883), (248304, 248305, 1, 14, 'Joint Clan Newcomer''s Gloves', 31655), (248305, 297664, 15, 220, 'Joint Clan Newcomer''s Gloves', 31655), (248298, 248299, 1, 14, 'Joint Clan Newcomer''s Pants', 22921), (248299, 297661, 15, 220, 'Joint Clan Newcomer''s Pants', 22921), (248302, 248303, 1, 14, 'Joint Clan Newcomer''s Sleeves', 31643), (248303, 297663, 15, 220, 'Joint Clan Newcomer''s Sleeves', 31643), (248309, 248309, 1, 1, 'Joint Clans Badge', 81772), (201259, 201260, 110, 199, 'Joint Clans Scout Pistol', 29116), (271673, 271674, 1, 300, 'Joint Clans Scout Pistol - 000', 29116), (271677, 271678, 1, 300, 'Joint Clans Scout Pistol - 401', 29116), (271679, 271680, 1, 300, 'Joint Clans Scout Pistol - C01', 29116), (248362, 248362, 1, 1, 'Joint Clans Shades', 254314), (248359, 248359, 1, 1, 'Joint Clans Shoulderpad', 160906), (301065, 301065, 2, 2, 'Joint Clans Shoulderpad', 160906), (301066, 301066, 3, 3, 'Joint Clans Shoulderpad', 160906), (130602, 130602, 1, 1, 'Joka-Poka Can', 37948), (227905, 227905, 160, 160, 'Joker''s Glyph', 227565), (290914, 290914, 1, 1, 'Jonax''s T-shirt', 290951), (151739, 151740, 1, 200, 'Jones Energized Carbonan Helmet', 10834), (224092, 224092, 150, 150, 'Joshua Khan''s Catskin Patch', 161076), (224180, 224180, 150, 150, 'Joshua Khan''s Heirloom', 20407), (224090, 224090, 150, 150, 'Joshua Khan''s Ring of Range', 151929), (283698, 283698, 1, 1, 'Joulie Mushroom', 277964), (258757, 258757, 1, 1, 'Journal of Hazardous Materials Containment', 136331), (151716, 151717, 1, 200, 'Journeyman Durable Boost', 11756), (245881, 245882, 240, 259, 'Joy of the Hunt', 210169), (245883, 245883, 260, 260, 'Joy of the Race', 210169), (224734, 224734, 90, 90, 'Joyless Essence Brain Spirit', 230992), (224934, 224934, 90, 90, 'Joyless Heart Spirit of Essence', 230984), (224921, 224921, 90, 90, 'Joyless Heart Spirit of Knowledge', 230984), (224969, 224969, 90, 90, 'Joyless Heart Spirit of Weakness', 230984), (225201, 225201, 90, 90, 'Joyless Left Hand Spirit of Defence', 230994), (225220, 225220, 90, 90, 'Joyless Left Hand Spirit of Strength', 230994), (225002, 225002, 90, 90, 'Joyless Left Limb Spirit of Weakness', 230995), (224852, 224852, 90, 90, 'Joyless Midriff Spirit of Essence', 230976), (225126, 225126, 90, 90, 'Joyless Right Hand Strength Spirit', 231002), (224699, 224699, 90, 90, 'Joyless Spirit of Clear Thought', 230992), (225178, 225178, 90, 90, 'Joyless Spirit of Defense', 230998), (224666, 224666, 90, 90, 'Joyless Spirit of Discerning Weakness', 230988), (225192, 225192, 90, 90, 'Joyless Spirit of Essence', 230998), (225253, 225253, 90, 90, 'Joyless Spirit of Feet Defense', 230990), (225235, 225235, 90, 90, 'Joyless Spirit of Feet Strength', 230990), (224751, 224751, 90, 90, 'Joyless Spirit of Knowledge Whispered', 230986), (225076, 225076, 90, 90, 'Joyless Spirit of Right Wrist Weakness', 231006), (305384, 305384, 200, 200, 'Ju-Ju Medalion', 9926), (151737, 151738, 1, 200, 'Juggernaut Maintenance Console', 149952), (207252, 207252, 225, 225, 'Juggernaut Rear Mitrailleuse', 13314), (212996, 212996, 1, 1, 'Juggernaut Wearable', 84059), (207249, 207249, 150, 150, 'Juggernaut''s Anti-Gravity Unit', 205514), (202741, 202742, 1, 200, 'Juggler''s Treat', 287079), (303433, 303433, 1, 1, 'Jumpstart Pack', 99664), (130044, 130045, 50, 99, 'Junior G-Staff', 136738), (165198, 165199, 1, 199, 'Junior Master of Combustion', 33160), (303423, 303424, 1, 220, 'Junior Ofab Bear', 264824), (303405, 303406, 1, 220, 'Junior Ofab Boar', 214358), (303409, 303410, 1, 220, 'Junior Ofab Cobra', 264793), (303413, 303414, 1, 220, 'Junior Ofab Hawk', 264807), (303421, 303422, 1, 220, 'Junior Ofab Mongoose', 264818), (303403, 303404, 1, 220, 'Junior Ofab Panther', 264812), (303407, 303408, 1, 220, 'Junior Ofab Peregrine', 264787), (303411, 303412, 1, 220, 'Junior Ofab Shark', 264836), (303415, 303416, 1, 220, 'Junior Ofab Silverback', 264800), (303425, 303426, 1, 220, 'Junior Ofab Tiger', 264842), (303417, 303418, 1, 220, 'Junior Ofab Viper', 264781), (303419, 303420, 1, 220, 'Junior Ofab Wolf', 264832), (129640, 129641, 21, 40, 'Junior Wen-Wen', 85161), (206678, 206679, 1, 200, 'Junkmetal Breastplate', 13251), (206682, 206683, 1, 200, 'Junkmetal Plate Arms', 13230), (206686, 206687, 1, 200, 'Junkmetal Plate Boots', 13268), (206680, 206681, 1, 200, 'Junkmetal Plate Gloves', 13281), (206684, 206685, 1, 200, 'Junkmetal Plate Legs', 13298), (206688, 206689, 1, 200, 'Junkmetal Shoulder Plate', 160886), (208069, 208070, 40, 49, 'Jupiter Aegis', 33152), (263305, 263305, 1, 1, 'Jyoti''s Ring of Inner Peace', 84059), (160168, 160169, 1, 120, 'KIWD 37 Hunter Crossbow', 114013), (160163, 160164, 1, 120, 'KIWD 38 Sniper Crossbow', 114013), (252300, 252300, 1, 1, 'Ka Mon', 255663), (253454, 253454, 1, 1, 'Ka Tech Ventilation Unit', 255930), (304636, 304636, 1, 1, 'Kabuto of Yamauchi', 304645), (152711, 152711, 200, 200, 'Kaehler Uniform Sleeves', 82874), (160268, 160269, 101, 180, 'Kaen-Archibald Kolt', 13334), (248567, 248568, 81, 100, 'Kaetans Supernova', 33146), (200064, 200065, 265, 270, 'Kairyouhin Nippon-Tech Armor', 96106), (200085, 200086, 265, 270, 'Kairyouhin Nippon-Tech Armor Boots', 13275), (200106, 200107, 265, 270, 'Kairyouhin Nippon-Tech Armor Gloves', 13287), (200127, 200128, 265, 270, 'Kairyouhin Nippon-Tech Armor Helmet', 96140), (200148, 200149, 265, 270, 'Kairyouhin Nippon-Tech Armor Pants', 13305), (200169, 200170, 265, 270, 'Kairyouhin Nippon-Tech Armor Sleeves', 13237), (200190, 200191, 265, 270, 'Kairyouhin Nippon-Tech Body Armor', 13258), (124446, 124447, 14, 40, 'Kalinkalov Mz-99', 84025), (124450, 124451, 84, 165, 'Kalinkalov Mz-99 Canary', 84025), (124448, 124449, 41, 83, 'Kalinkalov Mz-99 Rubi-Ka', 84025), (124452, 124452, 166, 166, 'Kalinkalov Mz-99 Wild Canary', 84025), (124108, 124109, 13, 21, 'Kalo-BBI Model 55', 13314), (124110, 124111, 22, 37, 'Kalo-BBI Model 56', 13314), (124112, 124113, 38, 49, 'Kalo-BBI Model 57', 13314), (124114, 124115, 50, 91, 'Kalo-BBI Model 58', 13314), (124116, 124117, 92, 147, 'Kalo-BBI Model 59', 13314), (124118, 124119, 148, 176, 'Kalo-BBI Model 59 Shiraz', 13314), (124120, 124120, 177, 177, 'Kalo-BBI Model 60 Overseer', 13314), (284794, 284794, 1, 1, 'Kami Sunglasses - Black', 287310), (284791, 284791, 1, 1, 'Kami Sunglasses - Blue', 287311), (284792, 284792, 1, 1, 'Kami Sunglasses - Green', 287312), (284793, 284793, 1, 1, 'Kami Sunglasses - Pink', 287313), (284730, 284730, 1, 1, 'Kami Sunglasses - Red', 287314), (284795, 284795, 1, 1, 'Kami Sunglasses - White', 287315), (276617, 276617, 1, 1, 'Kamikaze Drone Monster Item', 218751), (156018, 156019, 1, 200, 'Kamikaze Robot Body', 156082), (156056, 156057, 1, 200, 'Kamikaze Robot I - Hologram Data', 156095), (156060, 156061, 1, 200, 'Kamikaze Robot I - Nano Data', 156094), (156264, 156265, 1, 200, 'Kamikaze Robot I - Template Pet', 156263), (156282, 156282, 40, 40, 'Kamikaze Robot I Shell', 156283), (156080, 156081, 1, 200, 'Kamikaze Robot II - Hologram Data', 156095), (156078, 156079, 1, 200, 'Kamikaze Robot II - Nano Data', 156094), (156266, 156267, 1, 200, 'Kamikaze Robot II - Template Pet', 156263), (156281, 156281, 120, 120, 'Kamikaze Robot II Shell', 156283), (301006, 301006, 1, 1, 'Kanel''s Story', 301004), (301008, 301008, 1, 1, 'Kanel''s Story - Books 1 - 2', 301002), (301007, 301007, 1, 1, 'Kanel''s Story - Books 1 - 3', 301003), (226266, 226266, 1, 1, 'Kanel''s Story - First Edition', 301005), (226269, 226269, 1, 1, 'Kanel''s Story - Fourth Edition', 301001), (226267, 226267, 1, 1, 'Kanel''s Story - Second Edition', 300999), (226268, 226268, 1, 1, 'Kanel''s Story - Third Edition', 301000), (124557, 124558, 1, 179, 'Kang Tao Spitting Cobra', 21148), (302040, 302040, 1, 1, 'Kanura''s Deserter Remover', 144712), (302325, 302325, 1, 1, 'Kanura''s T-shirt', 302304), (302326, 302326, 1, 1, 'Kanura''s T-shirt Spawner', 302304), (130626, 130626, 1, 1, 'Kappa Berry', 37967), (284313, 284313, 200, 200, 'Kappa Compiler Unit', 284332), (284310, 284310, 200, 200, 'Kappa Crystal - Left Fragment', 284343), (284311, 284311, 200, 200, 'Kappa Crystal - Right Fragment', 284344), (284294, 284294, 200, 200, 'Kappa Signal Relay', 284324), (284312, 284312, 200, 200, 'Kappa Tuning Crystal', 284342), (284314, 284314, 200, 200, 'Kappa Tuning Unit', 284329), (284436, 284436, 200, 200, 'Kappa Tuning Unit - Inactive', 284329), (296135, 296135, 1, 1, 'Karathene''s T-shirt', 296153), (296293, 296293, 1, 1, 'Karathene''s T-shirt', 296153), (296152, 296152, 1, 1, 'Karathene''s T-shirt Spawner', 296153), (205839, 205839, 1, 1, 'Karlsson Propeller Cap', 205835), (225695, 225696, 1, 300, 'Karmacappa''s Harmonic Circlet', 151921), (206191, 206191, 1, 1, 'Karmic Fist', 43091), (86438, 86438, 1, 1, 'Katara Sunglasses', 45780), (86441, 86441, 1, 1, 'Keelarr Sunglasses', 86483), (290152, 290152, 1, 1, 'Keeper Action Figure', 290568), (290140, 290140, 1, 1, 'Keeper Figurine', 289940), (270761, 270761, 1, 1, 'Keeper Nanodeck', 270749), (300892, 300892, 1, 1, 'Keeper Nanoprogram Container', 292138), (290089, 290089, 1, 1, 'Keeper Shirt', 287356), (305508, 305508, 1, 1, 'Keeper''s Vigor', 12699), (204650, 204650, 1, 1, 'Keeper''s Vitality', 12699), (252020, 252020, 200, 200, 'Kegern''s Molybdenum Plate Boots', 252432), (252018, 252018, 200, 200, 'Kegern''s Molybdenum Plate Gloves', 252440), (252017, 252017, 200, 200, 'Kegern''s Molybdenum Plate Helmet', 252429), (252022, 252022, 200, 200, 'Kegern''s Molybdenum Plate Pants', 252438), (252019, 252019, 200, 200, 'Kegern''s Molybdenum Plate Sleeves', 252436), (252021, 252021, 200, 200, 'Kegern''s Molybdenum Plate Vest', 252434), (200068, 200069, 285, 290, 'Keisotsu Nippon-Tech Armor', 96106), (200089, 200090, 285, 290, 'Keisotsu Nippon-Tech Armor Boots', 13275), (200110, 200111, 285, 290, 'Keisotsu Nippon-Tech Armor Gloves', 13287), (200131, 200132, 285, 290, 'Keisotsu Nippon-Tech Armor Helmet', 96140), (200152, 200153, 285, 290, 'Keisotsu Nippon-Tech Armor Pants', 13305), (200173, 200174, 285, 290, 'Keisotsu Nippon-Tech Armor Sleeves', 13237), (200194, 200195, 285, 290, 'Keisotsu Nippon-Tech Body Armor', 13258), (252296, 252296, 1, 1, 'Ken Fi', 255659), (252298, 252298, 1, 1, 'Ken Si', 255661), (255555, 255555, 200, 200, 'Kenneth''s Polishing Gel', 156504), (271951, 271952, 1, 300, 'Kerans Automatic Grinner - 000', 21147), (271955, 271956, 1, 300, 'Kerans Automatic Grinner - 404', 21147), (271957, 271958, 1, 300, 'Kerans Automatic Grinner - C04', 21147), (152537, 152537, 150, 150, 'Kevlar Armbands', 41176), (122718, 122719, 81, 100, 'Kevlar Bow', 85167), (271425, 271426, 1, 300, 'Kevlar Bow - 000', 85167), (271427, 271428, 1, 300, 'Kevlar Bow - 002', 85167), (271429, 271430, 1, 300, 'Kevlar Bow - 402', 85167), (271431, 271432, 1, 300, 'Kevlar Bow - C02', 85167), (160568, 160569, 1, 200, 'Kevlar Wool Balaclava Helmet', 160562), (156032, 156033, 1, 200, 'Key Detonator', 156201), (205608, 205608, 1, 1, 'Khalum', 151929), (225691, 225692, 1, 300, 'Kharon''s Harmonic Circlet', 151921), (152396, 152397, 81, 130, 'Khemo-Tech Platinum Wakisashi', 113983), (271189, 271190, 1, 300, 'Khemo-Tech Platinum Wakisashi - 000', 113983), (271191, 271192, 1, 300, 'Khemo-Tech Platinum Wakisashi - 010', 113983), (271193, 271194, 1, 300, 'Khemo-Tech Platinum Wakisashi - 050', 113983), (271195, 271196, 1, 300, 'Khemo-Tech Platinum Wakisashi - 070', 113983), (271197, 271198, 1, 300, 'Khemo-Tech Platinum Wakisashi - 870', 113983), (165167, 165167, 199, 199, 'Kick Pistol', 113990), (160419, 160420, 1, 200, 'Kick of the Spirit Boots', 13267), (160448, 160441, 1, 199, 'Kid', 114005), (160449, 160449, 200, 200, 'Kiddy', 114005), (280007, 280007, 1, 1, 'Kill Berens''s Leet', 84059), (281830, 281830, 1, 1, 'Kill Special Agents Item', 84059), (227026, 227027, 1, 300, 'Killer''s Armor Boots', 213554), (227034, 227035, 1, 300, 'Killer''s Armor Gloves', 21871), (227032, 227033, 1, 300, 'Killer''s Armor Sleeve', 13225), (227028, 227029, 1, 300, 'Killer''s Armor Trousers', 213454), (227030, 227031, 1, 300, 'Killer''s Body Armor', 37545), (209283, 209284, 1, 24, 'Kinetic Axe', 40782), (292019, 292019, 1, 1, 'Kintaii''s QQ Shirt', 283941), (287337, 287337, 1, 1, 'Kintaii''s T-shirt', 287352), (290072, 290072, 1, 1, 'Kintaii''s T-shirt Spawner', 287354), (269425, 269425, 61, 61, 'Kintaiis Wen-Wen', 269398), (160336, 160337, 1, 200, 'Kirch Kevlar Armor Body', 13249), (160293, 160294, 1, 200, 'Kirch Kevlar Armor Boots', 13265), (160330, 160331, 1, 200, 'Kirch Kevlar Armor Gloves', 13279), (160334, 160335, 1, 200, 'Kirch Kevlar Armor Pants', 13294), (160332, 160333, 1, 200, 'Kirch Kevlar Armor Sleeves', 13227), (160338, 160339, 1, 200, 'Kirch Kevlar Armor Vest', 21858), (200057, 200058, 230, 235, 'Kisokagaku Nippon-Tech Armor', 96106), (200078, 200079, 230, 235, 'Kisokagaku Nippon-Tech Armor Boots', 13275), (200099, 200100, 230, 235, 'Kisokagaku Nippon-Tech Armor Gloves', 13287), (200120, 200121, 230, 235, 'Kisokagaku Nippon-Tech Armor Helmet', 96140), (200141, 200142, 230, 235, 'Kisokagaku Nippon-Tech Armor Pants', 13305), (200162, 200163, 230, 235, 'Kisokagaku Nippon-Tech Armor Sleeves', 13237), (200183, 200184, 230, 235, 'Kisokagaku Nippon-Tech Body Armor', 13258), (245323, 245323, 100, 100, 'Kizzermole Gumboil', 37975), (245092, 245092, 100, 100, 'Kizzermole Tongue', 11609), (255582, 255582, 1, 1, 'Kjetil''s Statue of the Adventurer', 256385), (203474, 203475, 100, 200, 'Klang Absoluter MI', 203513), (203635, 203636, 160, 200, 'Klang Orbiter MK', 203515), (40082, 142639, 1, 199, 'Knight Armor', 32157), (142639, 267789, 200, 219, 'Knight Armor', 32157), (267789, 267790, 220, 300, 'Knight Armor', 226609), (267570, 267571, 1, 300, 'Knights'' Ring of Honour', 151931), (227359, 227359, 1, 1, 'Knowledge Enhancer', 239285), (305527, 305527, 1, 1, 'Knowledge of the Immortal One', 37930), (244211, 244211, 275, 275, 'Koan Shuriken', 131268), (117294, 117295, 15, 200, 'Kodaik Turbo IX', 38025), (295705, 295705, 100, 100, 'Kodaik Velocity IV', 300880), (271513, 271514, 1, 300, 'Kolt 58 Magnum - 000', 13334), (271517, 271518, 1, 300, 'Kolt 58 Magnum - 401', 13334), (271519, 271520, 1, 300, 'Kolt 58 Magnum - C01', 13334), (248540, 248540, 1, 1, 'Komodo Arm Tattoo', 255234), (249086, 249086, 1, 1, 'Korre''s Blue Thong', 255176), (200458, 200458, 100, 100, 'Koumiss', 37943), (225679, 225680, 1, 300, 'Kredal''s Ring of the Gunsmith', 151925), (225663, 225664, 1, 300, 'Kritta Didymus'' Ring of the Gunsmith', 151925), (200213, 200213, 275, 275, 'Kronos ICC Armor Boots', 22884), (200234, 200234, 275, 275, 'Kronos ICC Armor Gloves', 31656), (200255, 200255, 275, 275, 'Kronos ICC Armor Helmet', 31734), (200276, 200276, 275, 275, 'Kronos ICC Armor Pants', 22919), (200297, 200297, 275, 275, 'Kronos ICC Armor Sleeves', 31644), (200318, 200318, 275, 275, 'Kronos ICC Body Armor', 31648), (124278, 124279, 22, 83, 'Krutt Assault 219', 113991), (124280, 124281, 84, 157, 'Krutt Assault 219 Fandango', 113991), (124282, 124283, 158, 183, 'Krutt Assault 219 Waltzing Queen', 113991), (124284, 124284, 184, 184, 'Krutt Assault 219 Waltzing Queen Special', 113991), (304236, 304237, 1, 200, 'Kryoguard N-1N Boots', 304271), (304234, 304235, 1, 200, 'Kryoguard N-1N Gloves', 304273), (304224, 304225, 1, 200, 'Kryoguard N-1N Helmet', 304272), (304228, 304229, 1, 200, 'Kryoguard N-1N Legwear', 304274), (304230, 304231, 1, 200, 'Kryoguard N-1N Shirt', 304270), (304232, 304233, 1, 200, 'Kryoguard N-1N Sleeves', 304268), (304226, 304227, 1, 200, 'Kryoguard N-1N Tank Armor', 304269), (281962, 281962, 300, 300, 'Kuma Tonfa - Left Hand', 293992), (293993, 293993, 300, 300, 'Kuma Tonfa - Left Hand', 293992), (293995, 293995, 300, 300, 'Kuma Tonfa - Right Hand', 293992), (293996, 293996, 300, 300, 'Kuma Tonfa - Right Hand', 293992), (31110, 31110, 1, 1, 'Kung-Fu Suit', 88046), (281503, 281503, 300, 300, 'Kur''Ush Mallet', 280914), (255578, 255578, 1, 1, 'Kurt''s Statue of Biology', 256381), (287761, 287761, 1, 1, 'Kyr''Ozch Artifact', 289402), (247099, 247099, 100, 100, 'Kyr''Ozch Atomic Re-Structuralizing Tool', 247098), (254682, 254683, 1, 99, 'Kyr''Ozch Axe', 255462), (254684, 254685, 100, 199, 'Kyr''Ozch Axe', 255462), (254686, 254687, 200, 299, 'Kyr''Ozch Axe', 255462), (254688, 254688, 300, 300, 'Kyr''Ozch Axe', 255462), (254689, 254690, 1, 99, 'Kyr''Ozch Axe - Type 240', 255462), (254691, 254692, 100, 199, 'Kyr''Ozch Axe - Type 240', 255462), (254693, 254694, 200, 299, 'Kyr''Ozch Axe - Type 240', 255462), (254695, 254695, 300, 300, 'Kyr''Ozch Axe - Type 240', 255462), (257529, 257529, 1, 1, 'Kyr''Ozch Battlesuit Audio Processor', 218775), (257530, 257530, 1, 1, 'Kyr''Ozch Battlesuit Water Processing Unit', 218766), (247683, 247684, 1, 300, 'Kyr''Ozch Bio-Material - Type 1', 292812), (247675, 247676, 1, 300, 'Kyr''Ozch Bio-Material - Type 112', 292813), (247691, 247692, 1, 300, 'Kyr''Ozch Bio-Material - Type 12', 292814), (247695, 247696, 1, 300, 'Kyr''Ozch Bio-Material - Type 13', 292824), (265321, 265322, 1, 300, 'Kyr''Ozch Bio-Material - Type 18', 285459), (247685, 247686, 1, 300, 'Kyr''Ozch Bio-Material - Type 2', 292823), (247677, 247678, 1, 300, 'Kyr''Ozch Bio-Material - Type 240', 292822), (265329, 265330, 1, 300, 'Kyr''Ozch Bio-Material - Type 295', 285462), (247693, 247694, 1, 300, 'Kyr''Ozch Bio-Material - Type 3', 292821), (266353, 266352, 1, 300, 'Kyr''Ozch Bio-Material - Type 328', 281972), (265323, 265324, 1, 300, 'Kyr''Ozch Bio-Material - Type 34', 285458), (247687, 247688, 1, 300, 'Kyr''Ozch Bio-Material - Type 4', 292820), (265335, 265336, 1, 300, 'Kyr''Ozch Bio-Material - Type 468', 285463), (288672, 288673, 1, 300, 'Kyr''Ozch Bio-Material - Type 48', 292815), (247689, 247690, 1, 300, 'Kyr''Ozch Bio-Material - Type 5', 292816), (265333, 265334, 1, 300, 'Kyr''Ozch Bio-Material - Type 64', 285461), (265327, 265328, 1, 300, 'Kyr''Ozch Bio-Material - Type 687', 285457), (247673, 247674, 1, 300, 'Kyr''Ozch Bio-Material - Type 76', 292817), (265325, 265326, 1, 300, 'Kyr''Ozch Bio-Material - Type 812', 285456), (247679, 247680, 1, 300, 'Kyr''Ozch Bio-Material - Type 880', 292818), (265331, 265332, 1, 300, 'Kyr''Ozch Bio-Material - Type 935', 285460), (247681, 247682, 1, 300, 'Kyr''Ozch Bio-Material - Type 992', 292819), (247799, 247799, 100, 100, 'Kyr''Ozch Bio-Mechanical Computer', 247798), (254486, 254487, 1, 99, 'Kyr''Ozch Carbine', 255466), (254488, 254489, 100, 199, 'Kyr''Ozch Carbine', 255466), (254490, 254491, 200, 299, 'Kyr''Ozch Carbine', 255466), (254492, 254492, 300, 300, 'Kyr''Ozch Carbine', 255466), (254500, 254501, 1, 99, 'Kyr''Ozch Carbine - Type 12', 255466), (254502, 254503, 100, 199, 'Kyr''Ozch Carbine - Type 12', 255466), (254504, 254505, 200, 299, 'Kyr''Ozch Carbine - Type 12', 255466), (254506, 254506, 300, 300, 'Kyr''Ozch Carbine - Type 12', 255466), (254507, 254508, 1, 99, 'Kyr''Ozch Carbine - Type 13', 255466), (254509, 254510, 100, 199, 'Kyr''Ozch Carbine - Type 13', 255466), (254511, 254512, 200, 299, 'Kyr''Ozch Carbine - Type 13', 255466), (254513, 254513, 300, 300, 'Kyr''Ozch Carbine - Type 13', 255466), (254493, 254494, 1, 99, 'Kyr''Ozch Carbine - Type 5', 255466), (254495, 254496, 100, 199, 'Kyr''Ozch Carbine - Type 5', 255466), (254497, 254498, 200, 299, 'Kyr''Ozch Carbine - Type 5', 255466), (254499, 254499, 300, 300, 'Kyr''Ozch Carbine - Type 5', 255466), (254591, 254592, 1, 99, 'Kyr''Ozch Crossbow', 255467), (254593, 254594, 100, 199, 'Kyr''Ozch Crossbow', 255467), (254595, 254596, 200, 299, 'Kyr''Ozch Crossbow', 255467), (254597, 254597, 300, 300, 'Kyr''Ozch Crossbow', 255467), (254605, 254606, 1, 99, 'Kyr''Ozch Crossbow - Type 2', 255467), (254607, 254608, 100, 199, 'Kyr''Ozch Crossbow - Type 2', 255467), (254609, 254610, 200, 299, 'Kyr''Ozch Crossbow - Type 2', 255467), (254611, 254611, 300, 300, 'Kyr''Ozch Crossbow - Type 2', 255467), (254598, 254599, 1, 99, 'Kyr''Ozch Crossbow - Type 3', 255467), (254600, 254601, 100, 199, 'Kyr''Ozch Crossbow - Type 3', 255467), (254602, 254603, 200, 299, 'Kyr''Ozch Crossbow - Type 3', 255467), (254604, 254604, 300, 300, 'Kyr''Ozch Crossbow - Type 3', 255467), (258292, 258292, 1, 1, 'Kyr''Ozch Data Core', 290342), (258293, 258293, 1, 1, 'Kyr''Ozch Data Core', 25800), (258294, 258294, 1, 1, 'Kyr''Ozch Data Core', 25800), (258295, 258295, 1, 1, 'Kyr''Ozch Data Core', 290343), (258296, 258296, 1, 1, 'Kyr''Ozch Data Core', 290344), (254542, 254543, 1, 99, 'Kyr''Ozch Energy Carbine', 255466), (254544, 254545, 100, 199, 'Kyr''Ozch Energy Carbine', 255466), (254546, 254547, 200, 299, 'Kyr''Ozch Energy Carbine', 255466), (254548, 254548, 300, 300, 'Kyr''Ozch Energy Carbine', 255466), (254556, 254557, 1, 99, 'Kyr''Ozch Energy Carbine - Type 3', 255466), (254558, 254559, 100, 199, 'Kyr''Ozch Energy Carbine - Type 3', 255466), (254560, 254561, 200, 299, 'Kyr''Ozch Energy Carbine - Type 3', 255466), (254562, 254562, 300, 300, 'Kyr''Ozch Energy Carbine - Type 3', 255466), (254549, 254550, 1, 99, 'Kyr''Ozch Energy Carbine - Type 5', 255466), (254551, 254552, 100, 199, 'Kyr''Ozch Energy Carbine - Type 5', 255466), (254553, 254554, 200, 299, 'Kyr''Ozch Energy Carbine - Type 5', 255466), (254555, 254555, 300, 300, 'Kyr''Ozch Energy Carbine - Type 5', 255466), (254696, 254697, 1, 99, 'Kyr''Ozch Energy Hammer', 255463), (254698, 254699, 100, 199, 'Kyr''Ozch Energy Hammer', 255463), (254700, 254701, 200, 299, 'Kyr''Ozch Energy Hammer', 255463), (254702, 254702, 300, 300, 'Kyr''Ozch Energy Hammer', 255463), (254703, 254704, 1, 99, 'Kyr''Ozch Energy Hammer - Type 112', 255463), (254705, 254706, 100, 199, 'Kyr''Ozch Energy Hammer - Type 112', 255463), (254707, 254708, 200, 299, 'Kyr''Ozch Energy Hammer - Type 112', 255463), (254709, 254709, 300, 300, 'Kyr''Ozch Energy Hammer - Type 112', 255463), (254633, 254634, 1, 99, 'Kyr''Ozch Energy Pistol', 255468), (254635, 254636, 100, 199, 'Kyr''Ozch Energy Pistol', 255468), (254637, 254638, 200, 299, 'Kyr''Ozch Energy Pistol', 255468), (254639, 254639, 300, 300, 'Kyr''Ozch Energy Pistol', 255468), (254640, 254641, 1, 99, 'Kyr''Ozch Energy Pistol - Type 5', 255468), (254642, 254643, 100, 199, 'Kyr''Ozch Energy Pistol - Type 5', 255468), (254644, 254645, 200, 299, 'Kyr''Ozch Energy Pistol - Type 5', 255468), (254646, 254646, 300, 300, 'Kyr''Ozch Energy Pistol - Type 5', 255468), (254710, 254711, 1, 99, 'Kyr''Ozch Energy Rapier', 255469), (254712, 254713, 100, 199, 'Kyr''Ozch Energy Rapier', 255469), (254714, 254715, 200, 299, 'Kyr''Ozch Energy Rapier', 255469), (254716, 254716, 300, 300, 'Kyr''Ozch Energy Rapier', 255469), (254717, 254718, 1, 99, 'Kyr''Ozch Energy Rapier - Type 992', 255469), (254719, 254720, 100, 199, 'Kyr''Ozch Energy Rapier - Type 992', 255469), (254721, 254722, 200, 299, 'Kyr''Ozch Energy Rapier - Type 992', 255469), (254723, 254723, 300, 300, 'Kyr''Ozch Energy Rapier - Type 992', 255469), (254738, 254739, 1, 99, 'Kyr''Ozch Energy Sword', 255464), (254740, 254741, 100, 199, 'Kyr''Ozch Energy Sword', 255464), (254742, 254743, 200, 299, 'Kyr''Ozch Energy Sword', 255464), (254744, 254744, 300, 300, 'Kyr''Ozch Energy Sword', 255464), (254745, 254746, 1, 99, 'Kyr''Ozch Energy Sword - Type 76', 255464), (254747, 254748, 100, 199, 'Kyr''Ozch Energy Sword - Type 76', 255464), (254749, 254750, 200, 299, 'Kyr''Ozch Energy Sword - Type 76', 255464), (254751, 254751, 300, 300, 'Kyr''Ozch Energy Sword - Type 76', 255464), (247126, 247127, 1, 300, 'Kyr''Ozch Formatted Viralbot Solution', 247117), (287992, 287992, 1, 1, 'Kyr''Ozch Gene Pool Liquid Sample', 287973), (254563, 254564, 1, 99, 'Kyr''Ozch Grenade Gun', 255466), (254565, 254566, 100, 199, 'Kyr''Ozch Grenade Gun', 255466), (254567, 254568, 200, 299, 'Kyr''Ozch Grenade Gun', 255466), (254569, 254569, 300, 300, 'Kyr''Ozch Grenade Gun', 255466), (254570, 254571, 1, 99, 'Kyr''Ozch Grenade Gun - Type 1', 255466), (254572, 254573, 100, 199, 'Kyr''Ozch Grenade Gun - Type 1', 255466), (254574, 254575, 200, 299, 'Kyr''Ozch Grenade Gun - Type 1', 255466), (254576, 254576, 300, 300, 'Kyr''Ozch Grenade Gun - Type 1', 255466), (254668, 254669, 1, 99, 'Kyr''Ozch Hammer', 255463), (254670, 254671, 100, 199, 'Kyr''Ozch Hammer', 255463), (254672, 254673, 200, 299, 'Kyr''Ozch Hammer', 255463), (254674, 254674, 300, 300, 'Kyr''Ozch Hammer', 255463), (254675, 254676, 1, 99, 'Kyr''Ozch Hammer - Type 112', 255463), (254677, 254678, 100, 199, 'Kyr''Ozch Hammer - Type 112', 255463), (254679, 254680, 200, 299, 'Kyr''Ozch Hammer - Type 112', 255463), (254681, 254681, 300, 300, 'Kyr''Ozch Hammer - Type 112', 255463), (257706, 257706, 1, 1, 'Kyr''Ozch Helmet', 230855), (262656, 262656, 1, 1, 'Kyr''Ozch Invasion Plan', 35990), (279233, 279233, 1, 1, 'Kyr''Ozch Knowledge', 284425), (254647, 254648, 1, 99, 'Kyr''Ozch Machine Pistol', 255468), (254649, 254650, 100, 199, 'Kyr''Ozch Machine Pistol', 255468), (254651, 254652, 200, 299, 'Kyr''Ozch Machine Pistol', 255468), (254653, 254653, 300, 300, 'Kyr''Ozch Machine Pistol', 255468), (254654, 254655, 1, 99, 'Kyr''Ozch Machine Pistol - Type 4', 255468), (254656, 254657, 100, 199, 'Kyr''Ozch Machine Pistol - Type 4', 255468), (254658, 254659, 200, 299, 'Kyr''Ozch Machine Pistol - Type 4', 255468), (254660, 254660, 300, 300, 'Kyr''Ozch Machine Pistol - Type 4', 255468), (254661, 254662, 1, 99, 'Kyr''Ozch Machine Pistol - Type 5', 255468), (254663, 254664, 100, 199, 'Kyr''Ozch Machine Pistol - Type 5', 255468), (254665, 254666, 200, 299, 'Kyr''Ozch Machine Pistol - Type 5', 255468), (254667, 254667, 300, 300, 'Kyr''Ozch Machine Pistol - Type 5', 255468), (287755, 287755, 1, 1, 'Kyr''Ozch Memory Cell', 289667), (288204, 288204, 1, 1, 'Kyr''Ozch Nano Protection Ring', 288105), (288658, 288659, 1, 99, 'Kyr''Ozch Nunchacko', 288307), (288660, 288661, 100, 199, 'Kyr''Ozch Nunchacko', 288307), (288662, 288663, 200, 299, 'Kyr''Ozch Nunchacko', 288307), (288664, 288664, 300, 300, 'Kyr''Ozch Nunchacko', 288307), (288665, 288666, 1, 99, 'Kyr''Ozch Nunchacko - Type 48', 288307), (288667, 288668, 100, 199, 'Kyr''Ozch Nunchacko - Type 48', 288307), (288669, 288670, 200, 299, 'Kyr''Ozch Nunchacko - Type 48', 288307), (288671, 288671, 300, 300, 'Kyr''Ozch Nunchacko - Type 48', 288307), (275712, 275712, 1, 1, 'Kyr''Ozch Particle Scanner', 218751), (254612, 254613, 1, 99, 'Kyr''Ozch Pistol', 255468), (254614, 254615, 100, 199, 'Kyr''Ozch Pistol', 255468), (254616, 254617, 200, 299, 'Kyr''Ozch Pistol', 255468), (254618, 254618, 300, 300, 'Kyr''Ozch Pistol', 255468), (254619, 254620, 1, 99, 'Kyr''Ozch Pistol - Type 1', 255468), (254621, 254622, 100, 199, 'Kyr''Ozch Pistol - Type 1', 255468), (254623, 254624, 200, 299, 'Kyr''Ozch Pistol - Type 1', 255468), (254625, 254625, 300, 300, 'Kyr''Ozch Pistol - Type 1', 255468), (254626, 254627, 1, 99, 'Kyr''Ozch Pistol - Type 4', 255468), (254628, 254629, 100, 199, 'Kyr''Ozch Pistol - Type 4', 255468), (254630, 254631, 200, 299, 'Kyr''Ozch Pistol - Type 4', 255468), (254632, 254632, 300, 300, 'Kyr''Ozch Pistol - Type 4', 255468), (257531, 257531, 1, 1, 'Kyr''Ozch Rank Identification', 300970), (254465, 254466, 1, 99, 'Kyr''Ozch Rifle', 255470), (254467, 254468, 100, 199, 'Kyr''Ozch Rifle', 255470), (254469, 254470, 200, 299, 'Kyr''Ozch Rifle', 255470), (254471, 254471, 300, 300, 'Kyr''Ozch Rifle', 255470), (254472, 254473, 1, 99, 'Kyr''Ozch Rifle - Type 2', 255470), (254474, 254475, 100, 199, 'Kyr''Ozch Rifle - Type 2', 255470), (254476, 254477, 200, 299, 'Kyr''Ozch Rifle - Type 2', 255470), (254478, 254478, 300, 300, 'Kyr''Ozch Rifle - Type 2', 255470), (254479, 254480, 1, 99, 'Kyr''Ozch Rifle - Type 3', 255470), (254481, 254482, 100, 199, 'Kyr''Ozch Rifle - Type 3', 255470), (254483, 254484, 200, 299, 'Kyr''Ozch Rifle - Type 3', 255470), (254485, 254485, 300, 300, 'Kyr''Ozch Rifle - Type 3', 255470), (254577, 254578, 1, 99, 'Kyr''Ozch Shotgun', 255471), (254579, 254580, 100, 199, 'Kyr''Ozch Shotgun', 255471), (254581, 254582, 200, 299, 'Kyr''Ozch Shotgun', 255471), (254583, 254583, 300, 300, 'Kyr''Ozch Shotgun', 255471), (254584, 254585, 1, 99, 'Kyr''Ozch Shotgun - Type 1', 255471), (254586, 254587, 100, 199, 'Kyr''Ozch Shotgun - Type 1', 255471), (254588, 254589, 200, 299, 'Kyr''Ozch Shotgun - Type 1', 255471), (254590, 254590, 300, 300, 'Kyr''Ozch Shotgun - Type 1', 255471), (254724, 254725, 1, 99, 'Kyr''Ozch Sledgehammer', 255465), (254726, 254727, 100, 199, 'Kyr''Ozch Sledgehammer', 255465), (254728, 254729, 200, 299, 'Kyr''Ozch Sledgehammer', 255465), (254730, 254730, 300, 300, 'Kyr''Ozch Sledgehammer', 255465), (254731, 254732, 1, 99, 'Kyr''Ozch Sledgehammer - Type 76', 255465), (254733, 254734, 100, 199, 'Kyr''Ozch Sledgehammer - Type 76', 255465), (254735, 254736, 200, 299, 'Kyr''Ozch Sledgehammer - Type 76', 255465), (254737, 254737, 300, 300, 'Kyr''Ozch Sledgehammer - Type 76', 255465), (254773, 254774, 1, 99, 'Kyr''Ozch Spear', 255464), (254775, 254776, 100, 199, 'Kyr''Ozch Spear', 255464), (254777, 254778, 200, 299, 'Kyr''Ozch Spear', 255464), (254779, 254779, 300, 300, 'Kyr''Ozch Spear', 255464), (254780, 254781, 1, 99, 'Kyr''Ozch Spear - Type 112', 255464), (254782, 254783, 100, 199, 'Kyr''Ozch Spear - Type 112', 255464), (254784, 254785, 200, 299, 'Kyr''Ozch Spear - Type 112', 255464), (254786, 254786, 300, 300, 'Kyr''Ozch Spear - Type 112', 255464), (288137, 288137, 1, 1, 'Kyr''Ozch Storage Box', 288096), (288138, 288138, 1, 1, 'Kyr''Ozch Storage Container', 288095), (247100, 247100, 100, 100, 'Kyr''Ozch Structural Analyzer', 247097), (254514, 254515, 1, 99, 'Kyr''Ozch Submachine Gun', 255472), (254516, 254517, 100, 199, 'Kyr''Ozch Submachine Gun', 255472), (254518, 254519, 200, 299, 'Kyr''Ozch Submachine Gun', 255472), (254520, 254520, 300, 300, 'Kyr''Ozch Submachine Gun', 255472), (254535, 254536, 1, 99, 'Kyr''Ozch Submachine Gun - Type 12', 255472), (254537, 254538, 100, 199, 'Kyr''Ozch Submachine Gun - Type 12', 255472), (254539, 254540, 200, 299, 'Kyr''Ozch Submachine Gun - Type 12', 255472), (254541, 254541, 300, 300, 'Kyr''Ozch Submachine Gun - Type 12', 255472), (254521, 254522, 1, 99, 'Kyr''Ozch Submachine Gun - Type 4', 255472), (254523, 254524, 100, 199, 'Kyr''Ozch Submachine Gun - Type 4', 255472), (254525, 254526, 200, 299, 'Kyr''Ozch Submachine Gun - Type 4', 255472), (254527, 254527, 300, 300, 'Kyr''Ozch Submachine Gun - Type 4', 255472), (254528, 254529, 1, 99, 'Kyr''Ozch Submachine Gun - Type 5', 255472), (254530, 254531, 100, 199, 'Kyr''Ozch Submachine Gun - Type 5', 255472), (254532, 254533, 200, 299, 'Kyr''Ozch Submachine Gun - Type 5', 255472), (254534, 254534, 300, 300, 'Kyr''Ozch Submachine Gun - Type 5', 255472), (254752, 254753, 1, 99, 'Kyr''Ozch Sword', 255464), (254754, 254755, 100, 199, 'Kyr''Ozch Sword', 255464), (254756, 254757, 200, 299, 'Kyr''Ozch Sword', 255464), (254758, 254758, 300, 300, 'Kyr''Ozch Sword', 255464), (254759, 254760, 1, 99, 'Kyr''Ozch Sword - Type 112', 255464), (254761, 254762, 100, 199, 'Kyr''Ozch Sword - Type 112', 255464), (254763, 254764, 200, 299, 'Kyr''Ozch Sword - Type 112', 255464), (254765, 254765, 300, 300, 'Kyr''Ozch Sword - Type 112', 255464), (254766, 254767, 1, 99, 'Kyr''Ozch Sword - Type 880', 255464), (254768, 254769, 100, 199, 'Kyr''Ozch Sword - Type 880', 255464), (254770, 254771, 200, 299, 'Kyr''Ozch Sword - Type 880', 255464), (254772, 254772, 300, 300, 'Kyr''Ozch Sword - Type 880', 255464), (275867, 275867, 1, 1, 'Kyr''Ozch Transceiver', 275973), (257533, 257533, 1, 1, 'Kyr''Ozch Video Processing Unit', 218758), (247765, 254805, 1, 300, 'Kyr''Ozch Viral Serum', 292809), (247113, 247114, 1, 300, 'Kyr''Ozch Viralbots', 290345), (275914, 275914, 1, 1, 'Kyr''ozch Circuitry', 275965), (284284, 284284, 200, 200, 'Kyr''ozch Fuel Gland', 284345), (275917, 275917, 1, 1, 'Kyr''ozch Matrix', 275968), (275907, 275907, 1, 1, 'Kyr''ozch Processing Unit', 275960), (201004, 201004, 1, 1, 'LC - testbuff tower', 119063), (160646, 160646, 1, 1, 'LC - testcontroller', 119063), (201003, 201003, 1, 1, 'LC - testguard', 119063), (155545, 155545, 1, 1, 'LQ Mass Relocating Robot', 155928), (248915, 248915, 1, 1, 'Lab Cloak of Ragnarok', 255321), (225629, 225630, 1, 500, 'Lacerate', 239079), (225631, 225632, 1, 500, 'Lacerate', 239079), (225633, 225634, 1, 500, 'Lacerate', 239079), (294918, 294918, 300, 300, 'Lady Val''s Wedding Ring', 294917), (244743, 244743, 299, 299, 'Lady of Abandonment', 245083), (244801, 244801, 299, 299, 'Lady of Anger', 210184), (244820, 244820, 299, 299, 'Lady of Angst', 245082), (244909, 244909, 299, 299, 'Lady of Chaos', 245089), (244778, 244778, 299, 299, 'Lady of Deceit', 213075), (244842, 244842, 299, 299, 'Lady of Envy', 244836), (244784, 244784, 299, 299, 'Lady of Gluttony', 218714), (244859, 244859, 299, 299, 'Lady of Greed', 244931), (244761, 244761, 299, 299, 'Lady of Hatred', 158269), (244913, 244913, 299, 299, 'Lady of Lust', 244837), (244782, 244782, 299, 299, 'Lady of Pride', 233217), (244911, 244911, 299, 299, 'Lady of Sloth', 233214), (294000, 294000, 300, 300, 'Lady of Wisdom', 293991), (294001, 294001, 300, 300, 'Lady of Wisdom', 293991), (252990, 252991, 1, 300, 'Lamnidae Gloves', 159134), (208080, 208081, 40, 79, 'Landsknecht Zweihander', 40781), (157410, 157410, 1, 1, 'Landslip Fourtytwo Tuna Advantage', 81769), (143832, 143832, 1, 1, 'Large Backpack', 99666), (157684, 157684, 1, 1, 'Large Backpack - Black Button', 158243), (157689, 157689, 1, 1, 'Large Backpack - Clothing', 158248), (157686, 157686, 1, 1, 'Large Backpack - Cold Front', 158242), (157691, 157691, 1, 1, 'Large Backpack - Implants', 158250), (157692, 157692, 1, 1, 'Large Backpack - Medical', 158251), (157683, 157683, 1, 1, 'Large Backpack - Mountain Top', 158245), (157693, 157693, 1, 1, 'Large Backpack - Nano Crystals', 158252), (157682, 157682, 1, 1, 'Large Backpack - Sharp Star', 158241), (157685, 157685, 1, 1, 'Large Backpack - Sniper', 158244), (157688, 157688, 1, 1, 'Large Backpack - Speeder', 158247), (157687, 157687, 1, 1, 'Large Backpack - Swimmer', 158246), (157694, 157694, 1, 1, 'Large Backpack - Trash', 158253), (157695, 157695, 1, 1, 'Large Backpack - Vehicles', 158254), (157690, 157690, 1, 1, 'Large Backpack - Weapons', 158249), (254199, 254200, 201, 300, 'Large Clan Organization Headquarters', 255788), (23159, 23159, 1, 1, 'Large Metal Box', 154187), (233319, 233320, 1, 299, 'Large Missile Launcher', 233213), (254195, 254196, 201, 300, 'Large Neutral Organization Headquarters', 255788), (254197, 254198, 201, 300, 'Large Omni-Tek Organization Headquarters', 255788), (162223, 162224, 1, 200, 'Large Patch of Hard Bronto Hide', 161079), (162235, 162236, 1, 200, 'Large Patch of Hard Bronto Hide - Tanned', 161082), (223459, 223460, 1, 300, 'Large Patch of Hard Living Hide', 161075), (223431, 223432, 1, 300, 'Large Patch of Hard Novictum Spangled Hide', 161078), (245213, 245213, 75, 75, 'Large Patch of Hard Skincrawler Hide', 161078), (162225, 162226, 1, 200, 'Large Patch of Soft Bronto Hide', 161079), (162237, 162238, 1, 200, 'Large Patch of Soft Bronto Hide - Tanned', 161082), (223457, 223458, 1, 300, 'Large Patch of Soft Living Hide', 161075), (223429, 223430, 1, 300, 'Large Patch of Soft Novictum Spangled Hide', 161078), (245214, 245214, 75, 75, 'Large Patch of Soft Skincrawler Hide', 161078), (152436, 152437, 1, 199, 'Large Ray Orb', 152424), (119606, 119606, 1, 1, 'Large Refrigerator', 119182), (248330, 248330, 1, 1, 'Large Skull', 144707), (158756, 158756, 1, 1, 'Large Sparkle-Plate', 13368), (268451, 268451, 1, 1, 'Large Zigball Banners - 4 Holes Cogs', 268415), (268450, 268450, 1, 1, 'Large Zigball Banners - Avalon Cleavers', 268414), (268453, 268453, 1, 1, 'Large Zigball Banners - Clondyke Galaxy', 268418), (268454, 268454, 1, 1, 'Large Zigball Banners - Galway Titans', 268421), (268455, 268455, 1, 1, 'Large Zigball Banners - Milky Way Monsters', 268419), (268459, 268459, 1, 1, 'Large Zigball Banners - Newland Angry Trouts', 268422), (268456, 268456, 1, 1, 'Large Zigball Banners - Rome Red Raidas', 268420), (268457, 268457, 1, 1, 'Large Zigball Banners - Stret West Explorers', 268417), (268452, 268452, 1, 1, 'Large Zigball Banners - Tir Defenders', 268416), (268449, 268449, 1, 1, 'Large Zigball Banners - West Athen Chargers', 268413), (155685, 155685, 1, 1, 'Large and partly fused lump of strange tetrahedral CPU bundles', 156566), (268729, 268729, 1, 1, 'Larvae DNA Sample', 11750), (226688, 226688, 1, 1, 'Laser Paint Target', 239127), (259782, 259782, 1, 1, 'Laser Tagging Device', 266694), (259783, 259783, 1, 1, 'Laser Targetting Designator', 266694), (275486, 275486, 1, 1, 'Last Entry of Aime''s Journal', 136331), (234896, 234896, 1, 1, 'Latex Base', 205516), (227184, 227185, 1, 15, 'Laughing Soul Stone', 136594), (302916, 302916, 1, 1, 'Laughing Spirit Capsule', 231187), (231235, 231235, 1, 1, 'Lava Protection Boots and Skin Galvanizer', 234537), (81970, 81970, 1, 1, 'Lava Trenchcoat', 81975), (82915, 82915, 1, 1, 'Lava Trenchcoat Hood', 82920), (245990, 245990, 250, 250, 'Lava capsule', 136597), (232880, 232881, 1, 149, 'Lavaliere set with a small sapphire', 151917), (232881, 232883, 150, 199, 'Lavaliere set with a small sapphire', 151917), (232883, 232884, 200, 249, 'Lavaliere set with a small sapphire', 151917), (232884, 232885, 250, 400, 'Lavaliere set with a small sapphire', 151917), (275195, 275195, 1, 1, 'Lavender Islander Shirt', 275186), (215791, 215791, 1, 1, 'Lay on Hands', 239149), (215842, 215842, 1, 1, 'Lay on Hands', 239149), (215843, 215843, 1, 1, 'Lay on Hands', 239149), (215844, 215844, 1, 1, 'Lay on Hands', 239149), (215845, 215845, 1, 1, 'Lay on Hands', 239149), (122703, 122704, 121, 140, 'Layered Advanced Baseballbat', 13335), (249007, 249009, 121, 140, 'Layered Bio-Energy Shield', 33152), (122741, 122742, 121, 140, 'Layered Blackjack', 33169), (123126, 123127, 121, 140, 'Layered Bow Split', 21134), (122076, 122077, 121, 140, 'Layered Clean Slay Axe', 21141), (122152, 122153, 121, 140, 'Layered Cutlass', 13347), (130137, 130138, 121, 140, 'Layered Denunciatory Spear', 33163), (122418, 122419, 121, 140, 'Layered Energy Buckler', 33151), (122380, 122381, 121, 140, 'Layered Energy Shield', 33152), (122399, 122400, 121, 140, 'Layered Esoteric Energy Buckler', 33149), (123355, 123356, 121, 140, 'Layered Hand Axe', 13345), (206601, 206602, 121, 140, 'Layered Improved Clean Slay Axe', 21141), (161747, 161748, 121, 140, 'Layered Improved Stun-Baton', 13348), (125338, 125339, 111, 163, 'Layered Large Rider Squibber', 114008), (123374, 123375, 121, 140, 'Layered Lead Pipe', 85166), (130228, 130229, 141, 160, 'Layered Light Spear', 33163), (122955, 122956, 121, 140, 'Layered Mace', 13333), (123393, 123393, 121, 121, 'Layered Meat-Cleaver', 85169), (125374, 125375, 121, 140, 'Layered Merchant Executioner', 114003), (125323, 125324, 121, 140, 'Layered Merchant Squibber', 114007), (122361, 122362, 121, 140, 'Layered Metaphysic Energy Shield', 33150), (121772, 121773, 121, 140, 'Layered Mini Axe', 13345), (143546, 143546, 1, 1, 'Layered Mini Axe Construction Manual', 136332), (123260, 123261, 144, 157, 'Layered Nano-Charged Stun Glove', 45784), (130099, 130100, 121, 140, 'Layered Native Alloy Staff', 136738), (160120, 160120, 200, 200, 'Layered OT Riot-Police Shield', 160124), (128931, 128932, 121, 140, 'Layered Peasant Executioner', 114001), (125306, 125307, 131, 160, 'Layered Peasant Squibber', 114005), (125412, 125413, 121, 140, 'Layered Protector Executioner', 114002), (125355, 125356, 121, 140, 'Layered Protector Squibber', 114006), (125393, 125394, 121, 140, 'Layered Rider Executioner', 114004), (121753, 121754, 121, 140, 'Layered Right Slice', 21142), (143518, 143518, 1, 1, 'Layered Right Slice Construction Manual', 136332), (123069, 123070, 121, 140, 'Layered Ritual Krys Knife', 13346), (121962, 121963, 121, 140, 'Layered Slank Chop', 21143), (143614, 143614, 1, 1, 'Layered Slank Chop Construction Manual', 136332), (122114, 122115, 121, 140, 'Layered Stabber', 13346), (122860, 122861, 121, 140, 'Layered Stun-Baton', 13348), (144075, 144076, 131, 150, 'Layered Survival Axe', 40782), (249049, 249050, 131, 150, 'Layered Survival Axe of Genevra', 40782), (144094, 144095, 121, 140, 'Layered Tanto', 113986), (122841, 122842, 121, 140, 'Layered Titanium Crowbar', 33166), (249073, 249074, 121, 140, 'Layered Variable Density Tanto', 113986), (150266, 150267, 121, 140, 'Layered Wall-Blade', 113983), (292852, 292852, 1, 1, 'Laz00r Eyez!', 86483), (199531, 199531, 230, 230, 'Leaded Periodic Tech Armor Boots', 22886), (199552, 199552, 230, 230, 'Leaded Periodic Tech Armor Gloves', 22933), (199573, 199573, 230, 230, 'Leaded Periodic Tech Armor Helmet', 31731), (199595, 199595, 230, 230, 'Leaded Periodic Tech Armor Pants', 22912), (199616, 199616, 230, 230, 'Leaded Periodic Tech Armor Sleeves', 22911), (199637, 199637, 230, 230, 'Leaded Periodic Tech Body Armor', 22990), (199658, 199658, 230, 230, 'Leaded Periodic Tech Female Body Armor', 22909), (225575, 225575, 1, 1, 'Leadership', 239277), (123789, 123790, 1, 19, 'Leaking MTI VP300 Caseless', 13317), (130181, 130182, 1, 19, 'Leaky Hot Air Stick', 13349), (128787, 128788, 1, 11, 'Leaky Old English Trading Co. SPP-502', 21148), (248901, 248901, 1, 1, 'Leather Boots of Newland', 255340), (248902, 248902, 1, 1, 'Leather Gloves of Borealis', 255376), (248326, 248326, 1, 1, 'Leather Grip Tape', 130755), (248325, 248325, 1, 1, 'Leather Hide', 161070), (249101, 249101, 1, 1, 'Leather Hipster Pants of Conquistador Coffee', 255190), (249095, 249095, 1, 1, 'Leather Hipster Shoes of Conquistador Coffee', 255353), (31510, 31510, 1, 1, 'Leather Miniskirt', 22900), (31507, 31507, 1, 1, 'Leather Miniskirt with Holes', 22903), (31508, 31508, 1, 1, 'Leather Miniskirt with Split', 22901), (248373, 248373, 1, 1, 'Leather Vest', 19812), (268438, 268438, 1, 1, 'Leaves Of Tanacetum Parthenium', 255417), (41026, 41026, 1, 1, 'Leaves Pants', 41198), (42328, 42328, 1, 1, 'Leaves Shoes', 42298), (41056, 41056, 1, 1, 'Leaves Top', 41185), (303442, 303442, 1, 1, 'Leet Bundle', 99664), (282070, 282070, 1, 1, 'Leet Fizz', 283493), (289475, 289475, 1, 1, 'Leet Fizz Especial', 289496), (290100, 290100, 1, 1, 'Leet Fizz Especial - Ten Year Reserve', 289496), (292888, 292888, 1, 1, 'Leet Force Go! Poster', 293847), (155691, 155692, 1, 200, 'Leet Fur Cocktail', 99240), (229022, 229022, 1, 1, 'Leet Grow Item', 130862), (253011, 253011, 1, 1, 'Leet Leg', 253010), (258545, 258545, 1, 1, 'Leet Pie', 130518), (290446, 290446, 1, 1, 'Leet Pinata', 290238), (254875, 254875, 1, 1, 'Leet_Pet_NCU_Ring', 151931), (256522, 256522, 1, 1, 'Leetium Quid', 203849), (275334, 275334, 1, 1, 'Leetzilla Doll', 275336), (165290, 165290, 200, 200, 'Left Sleeves of the Pest', 22956), (157411, 157411, 1, 1, 'Leg Four Flamingo Advantage', 81778), (226500, 226501, 1, 500, 'Leg Shot', 239059), (226502, 226503, 1, 500, 'Leg Shot', 239059), (226504, 226505, 1, 500, 'Leg Shot', 239059), (223985, 223986, 80, 120, 'Leg Tattoo''s of Eric Miller', 226659), (223955, 223956, 80, 120, 'Leg Tattoo''s of Min-Li Jiu', 226667), (160435, 160436, 1, 200, 'Legs of the Servants of Eight', 161025), (304476, 304477, 1, 220, 'Legwear of the Eight', 305047), (244574, 244574, 250, 250, 'Leo''s Faithful Boots of Ancient Gold', 22883), (244573, 244573, 250, 250, 'Leo''s Grandiose Gold Armband of Plenty', 151931), (244578, 244578, 250, 250, 'Leo''s Mellow Gold Pad of Auto-Support', 213665), (254461, 254461, 1, 1, 'Leona''s Doll', 162843), (304165, 304165, 1, 1, 'Lesser Experience Boost', 100308), (235635, 235635, 20, 20, 'Lethargic Brain Symbiant, Infantry Unit Aban', 215189), (235461, 235461, 20, 20, 'Lethargic Chest Symbiant, Artillery Unit Aban', 215181), (236353, 236353, 20, 20, 'Lethargic Chest Symbiant, Control Unit Aban', 215183), (235426, 235426, 20, 20, 'Lethargic Ear Symbiant, Artillery Unit Aban', 230977), (235600, 235600, 20, 20, 'Lethargic Feet Symbiant, Artillery Unit Aban', 215185), (235479, 235479, 20, 20, 'Lethargic Left Arm Symbiant, Artillery Unit Aban', 215179), (236026, 236026, 20, 20, 'Lethargic Left Hand Symbiant, Extermination Unit Aban', 215172), (235802, 235802, 20, 20, 'Lethargic Left Hand Symbiant, Infantry Unit Aban', 215172), (235531, 235531, 20, 20, 'Lethargic Left Wrist Symbiant, Artillery Unit Aban', 215196), (236423, 236423, 20, 20, 'Lethargic Left Wrist Symbiant, Control Unit Aban', 215196), (235974, 235974, 20, 20, 'Lethargic Left Wrist Symbiant, Extermination Unit Aban', 215198), (236205, 236205, 20, 20, 'Lethargic Left Wrist Symbiant, Support Unit Aban', 215198), (219127, 219127, 20, 20, 'Lethargic Ocular Symbiant, Artillery Unit Aban', 230979), (236336, 236336, 20, 20, 'Lethargic Right Arm Symbiant, Control Unit Aban', 215180), (236111, 236111, 20, 20, 'Lethargic Right Arm Symbiant, Support Unit Aban', 215178), (236442, 236442, 20, 20, 'Lethargic Right Hand Symbiant, Control Unit Aban', 215173), (235990, 235990, 20, 20, 'Lethargic Right Hand Symbiant, Extermination Unit Aban', 215173), (235767, 235767, 20, 20, 'Lethargic Right Hand Symbiant, Infantry Unit Aban', 215174), (236221, 236221, 20, 20, 'Lethargic Right Hand Symbiant, Support Unit Aban', 215174), (235496, 235496, 20, 20, 'Lethargic Right Wrist Symbiant, Artillery Unit Aban', 215170), (236389, 236389, 20, 20, 'Lethargic Right Wrist Symbiant, Control Unit Aban', 215170), (235939, 235939, 20, 20, 'Lethargic Right Wrist Symbiant, Extermination Unit Aban', 215170), (235716, 235716, 20, 20, 'Lethargic Right Wrist Symbiant, Infantry Unit Aban', 215197), (236169, 236169, 20, 20, 'Lethargic Right Wrist Symbiant, Support Unit Aban', 215197), (235566, 235566, 20, 20, 'Lethargic Thigh Symbiant, Artillery Unit Aban', 215190), (236458, 236458, 20, 20, 'Lethargic Thigh Symbiant, Control Unit Aban', 215191), (236009, 236009, 20, 20, 'Lethargic Thigh Symbiant, Extermination Unit Aban', 215192), (236187, 236187, 20, 20, 'Lethargic Waist Symbiant, Support Unit Aban', 215193), (214882, 214882, 1, 1, 'Letter', 154681), (231141, 231141, 1, 1, 'Letter Containing Orders to Kill Gaheris', 231177), (275399, 275399, 1, 1, 'Letter Of Recommendation', 275406), (252503, 252503, 1, 1, 'Letter from Penelope', 154680), (207035, 207035, 1, 1, 'Letter of Love', 154678), (163571, 163571, 1, 1, 'Liaker''s Diary - proof of the buccaneer''s existence', 136332), (244635, 244635, 250, 250, 'Libra''s Charming Assistant', 213659), (165112, 165111, 1, 200, 'Library of Foul Language', 131266), (163725, 163726, 1, 200, 'Lichen-Colored Phlegmatic Helmet', 31734), (215373, 215373, 1, 1, 'Life', 239344), (218746, 218746, 400, 400, 'Life Changing Spiri-Aid Spindle', 218756), (231389, 231390, 1, 300, 'Life Lichen', 203507), (216612, 216612, 1, 1, 'Lifeblood', 239153), (283482, 283482, 1, 1, 'Lifetime VIP Keycard', 283540), (283494, 283494, 1, 1, 'Lifetime VIP Membership', 283541), (252157, 252157, 1, 1, 'Light Bar', 37996), (271529, 271530, 1, 300, 'Light Beamer Pistol - 000', 33157), (271533, 271534, 1, 300, 'Light Beamer Pistol - 401', 33157), (271535, 271536, 1, 300, 'Light Beamer Pistol - C01', 33157), (246925, 246925, 1, 1, 'Light Bio Mesh', 161073), (27359, 27359, 1, 1, 'Light Blue Rubber Pants', 22918), (27344, 27344, 1, 1, 'Light Blue Rubber Shirt', 22972), (285073, 285073, 1, 1, 'Light Blue Tuxedo - Deluxe Edition', 285075), (231104, 231105, 1, 19, 'Light Bronto Vet Lancet', 131263), (231106, 231107, 20, 29, 'Light Bronto Vet Lancet', 131263), (231108, 231109, 30, 39, 'Light Bronto Vet Lancet', 131263), (281518, 281518, 1, 1, 'Light Bullet', 239057), (281519, 281520, 1, 500, 'Light Bullet', 239057), (281521, 281522, 1, 500, 'Light Bullet', 239057), (281523, 281523, 500, 500, 'Light Bullet', 239057), (225766, 225767, 1, 300, 'Light Distance Weapons Guide', 205503), (155088, 155088, 1, 1, 'Light Galean Close Combat Body Armor', 155109), (155183, 155183, 1, 1, 'Light Galean Close Combat Boots', 155112), (155181, 155181, 1, 1, 'Light Galean Close Combat Gloves', 155110), (155090, 155090, 1, 1, 'Light Galean Close Combat Skirt', 155108), (155086, 155086, 1, 1, 'Light Galean Close Combat Sleeves', 155111), (211269, 211270, 1, 299, 'Light Impulse Rifle', 13314), (281528, 281529, 1, 500, 'Light Killer', 239063), (281530, 281531, 1, 500, 'Light Killer', 239063), (281532, 281533, 1, 500, 'Light Killer', 239063), (208040, 208041, 40, 49, 'Light Miasma Beamer', 33157), (208042, 208042, 50, 50, 'Light Miasma Beamer', 33157), (165208, 165208, 200, 200, 'Light Notum Tank Armor', 22394), (204986, 204987, 100, 200, 'Light Omni-Tek Artillery Tank Armor', 41170), (245594, 245594, 150, 150, 'Light Perennium Container', 154194), (245596, 245596, 150, 150, 'Light Perennium Container', 154194), (245658, 245658, 150, 150, 'Light Perennium Container', 154194), (23149, 23149, 1, 1, 'Light Plasteel Barrel', 154194), (225779, 225780, 1, 300, 'Light Ranged Weapons Guide', 205504), (130224, 130225, 50, 120, 'Light Spear', 33163), (271315, 271316, 1, 300, 'Light Spear - 000', 33163), (271317, 271318, 1, 300, 'Light Spear - 010', 33163), (271319, 271320, 1, 300, 'Light Spear - 050', 33163), (271321, 271322, 1, 300, 'Light Spear - 070', 33163), (271323, 271324, 1, 300, 'Light Spear - 870', 33163), (130075, 130076, 28, 87, 'Light Staff', 136738), (160147, 160148, 45, 138, 'Light Suppressor', 31809), (152162, 152163, 51, 95, 'Light Tube-Bow', 85167), (214939, 214939, 1, 1, 'Light-Blue Crystal', 151031), (257111, 257111, 300, 300, 'Lightened Murder Maul', 218716), (211282, 211282, 300, 300, 'Lightning Stick of Elysium', 13312), (215353, 215353, 1, 1, 'Lightstep', 239340), (296514, 296514, 1, 1, 'Lil Spider Pet', 254462), (283503, 283503, 300, 300, 'Lilac Headgear', 283504), (152353, 152354, 151, 170, 'Lily Parry Stick', 136738), (214399, 214399, 1, 1, 'Limber', 239119), (130604, 130604, 1, 1, 'Lime-Slime Can', 37950), (304497, 304497, 100, 100, 'Limited Edition Phasefront - Solairis EX', 304405), (283486, 283486, 1, 1, 'Limited-Edition Signed The Grind Poster', 283581), (287362, 287362, 1, 1, 'Lindelu''s T-shirt', 287359), (290067, 290067, 1, 1, 'Lindelu''s T-shirt Spawner', 287354), (296309, 296309, 1, 1, 'Lindelus Nano Item', 273626), (245409, 245409, 150, 150, 'Lindgren Spirit', 156511), (247800, 247800, 1, 1, 'Linked Hacker Tool', 99283), (216281, 216281, 150, 150, 'Lion''s Leather Boots', 13261), (216279, 216279, 150, 150, 'Lion''s Leather Gloves', 21871), (216280, 216280, 150, 150, 'Lion''s Leather Pants', 13304), (216278, 216278, 150, 150, 'Lion''s Leather Sleeve', 21849), (216277, 216277, 150, 150, 'Lion''s Leather Vest', 19812), (155684, 155684, 1, 1, 'Liquid Based Conductors', 156557), (156030, 156031, 1, 200, 'Liquid Explosive Charge', 156207), (156302, 156303, 1, 200, 'Liquid Explosive Double Charge', 156210), (156304, 156305, 1, 200, 'Liquid Explosive Triple Charge', 156205), (151371, 151372, 1, 250, 'Liquid Gold', 290707), (215232, 215233, 160, 200, 'Liquid Notum NCU TC-03 Prototype', 156511), (215228, 215229, 160, 200, 'Liquid Notum NCU TC-07 Prototype', 156511), (215226, 215227, 160, 200, 'Liquid Notum NCU TC-08 Prototype', 156511), (215230, 215231, 160, 200, 'Liquid Notum NCU TC-10 Prototype', 156511), (215222, 215223, 160, 200, 'Liquid Notum NCU TC-11 Prototype', 156511), (215224, 215225, 160, 200, 'Liquid Notum NCU TC-12 Prototype', 156511), (163695, 163696, 1, 200, 'Liquid Notum Ring', 151921), (151362, 151361, 1, 250, 'Liquid Platinum', 290708), (150913, 150915, 1, 250, 'Liquid Silver', 290705), (267392, 267392, 1, 1, 'Litter Acquisition Facilitator', 149934), (267393, 267393, 1, 1, 'Litter Pile', 72772), (258801, 258801, 1, 1, 'Liver Tissue Sample', 144707), (263319, 263319, 1, 1, 'Liver of Marissa', 253010), (236085, 236085, 210, 210, 'Living Brain Symbiant, Support Unit Aban', 215188), (235692, 235692, 210, 210, 'Living Chest Symbiant, Infantry Unit Aban', 215181), (163422, 163423, 1, 200, 'Living Cyber Armor Boots', 13262), (163428, 163429, 1, 200, 'Living Cyber Armor Female Body', 13245), (163426, 163427, 1, 200, 'Living Cyber Armor Gloves', 13276), (163432, 163433, 1, 200, 'Living Cyber Armor Helmet', 22267), (163424, 163425, 1, 200, 'Living Cyber Armor Male Body', 22089), (160051, 160050, 1, 200, 'Living Cyber Armor Pants', 13290), (163430, 163431, 1, 200, 'Living Cyber Armor Sleeves', 13223), (301127, 301127, 100, 100, 'Living Dragon Claws', 236566), (301126, 301126, 100, 100, 'Living Dragonclaw Gloves', 21872), (158791, 158791, 100, 100, 'Living Dragonflesh Body Armor', 37545), (158794, 158794, 100, 100, 'Living Dragonmarrow Feet Armor', 13260), (158793, 158793, 100, 100, 'Living Dragonskin Legs Armor', 13288), (158799, 158799, 1, 1, 'Living Dragonskull Circlet', 151919), (158792, 158792, 100, 100, 'Living Dragonwing Arms Armor', 13238), (235879, 235879, 210, 210, 'Living Ear Symbiant, Extermination Unit Aban', 230977), (235659, 235659, 210, 210, 'Living Ear Symbiant, Infantry Unit Aban', 230977), (235610, 235610, 210, 210, 'Living Feet Symbiant, Artillery Unit Aban', 215185), (236279, 236279, 210, 210, 'Living Feet Symbiant, Support Unit Aban', 215187), (295633, 295633, 1, 1, 'Living Galahad-Etched White Shell', 233133), (235709, 235709, 210, 210, 'Living Left Arm Symbiant, Infantry Unit Aban', 215179), (236158, 236158, 210, 210, 'Living Left Arm Symbiant, Support Unit Aban', 215175), (235590, 235590, 210, 210, 'Living Left Hand Symbiant, Artillery Unit Aban', 215171), (236266, 236266, 210, 210, 'Living Left Hand Symbiant, Support Unit Aban', 215171), (235539, 235539, 210, 210, 'Living Left Wrist Symbiant, Artillery Unit Aban', 215196), (236430, 236430, 210, 210, 'Living Left Wrist Symbiant, Control Unit Aban', 215196), (295649, 295649, 1, 1, 'Living Mordeth-Etched Black Shell', 233133), (236294, 236294, 210, 210, 'Living Ocular Symbiant, Control Unit Aban', 230979), (235625, 235625, 210, 210, 'Living Ocular Symbiant, Infantry Unit Aban', 230980), (236071, 236071, 210, 210, 'Living Ocular Symbiant, Support Unit Aban', 230980), (235675, 235675, 210, 210, 'Living Right Arm Symbiant, Infantry Unit Aban', 215180), (236119, 236119, 210, 210, 'Living Right Arm Symbiant, Support Unit Aban', 215178), (235557, 235557, 210, 210, 'Living Right Hand Symbiant, Artillery Unit Aban', 215173), (236001, 236001, 210, 210, 'Living Right Hand Symbiant, Extermination Unit Aban', 215173), (235776, 235776, 210, 210, 'Living Right Hand Symbiant, Infantry Unit Aban', 215174), (235504, 235504, 210, 210, 'Living Right Wrist Symbiant, Artillery Unit Aban', 215170), (236396, 236396, 210, 210, 'Living Right Wrist Symbiant, Control Unit Aban', 215170), (235724, 235724, 210, 210, 'Living Right Wrist Symbiant, Infantry Unit Aban', 215197), (154926, 154926, 109, 109, 'Living Shield of Evernan', 154365), (235573, 235573, 210, 210, 'Living Thigh Symbiant, Artillery Unit Aban', 215190), (236469, 236469, 210, 210, 'Living Thigh Symbiant, Control Unit Aban', 215191), (236247, 236247, 210, 210, 'Living Thigh Symbiant, Support Unit Aban', 215190), (235523, 235523, 210, 210, 'Living Waist Symbiant, Artillery Unit Aban', 215194), (235741, 235741, 210, 210, 'Living Waist Symbiant, Infantry Unit Aban', 215193), (165362, 165362, 200, 200, 'Ljotur Beets of Clamping', 21864), (165363, 165363, 200, 200, 'Ljotur Pants of Cornucopia', 22352), (211206, 211207, 1, 299, 'Loathful Nipper', 211278), (211208, 211208, 300, 300, 'Loathful Nipper of Below', 211278), (234888, 234888, 1, 1, 'Local Gravity Monitor', 205539), (273240, 273240, 1, 1, 'Location Marker', 218767), (95577, 95577, 1, 1, 'Lock Pick', 12709), (216380, 216380, 150, 150, 'Lock Pick of Eight', 216401), (137255, 137256, 1, 200, 'Lock and Stock', 130678), (284315, 284315, 1, 1, 'Locked Smuggler''s Cargo Crate', 283770), (160469, 160468, 1, 200, 'Lokas Web Cloak', 160451), (207086, 207086, 1, 1, 'Lollygagger''s Monocle', 205750), (224714, 224714, 100, 100, 'Lonely Brain Spirit of Offence', 230992), (225202, 225202, 100, 100, 'Lonely Left Hand Spirit of Defence', 230994), (224986, 224986, 100, 100, 'Lonely Left Limb Spirit of Understanding', 230995), (225003, 225003, 100, 100, 'Lonely Left Limb Spirit of Weakness', 230995), (225144, 225144, 100, 100, 'Lonely Right Hand Defencive Spirit', 231002), (225127, 225127, 100, 100, 'Lonely Right Hand Strength Spirit', 231002), (224803, 224803, 100, 100, 'Lonely Right Limb Spirit of Strength', 231004), (224819, 224819, 100, 100, 'Lonely Right Limb Spirit of Weakness', 231004), (224700, 224700, 100, 100, 'Lonely Spirit of Clear Thought', 230992), (225179, 225179, 100, 100, 'Lonely Spirit of Defense', 230998), (224667, 224667, 100, 100, 'Lonely Spirit of Discerning Weakness', 230988), (224784, 224784, 100, 100, 'Lonely Spirit of Essence Whispered', 230986), (225092, 225092, 100, 100, 'Lonely Spirit of Left Wrist Defense', 231000), (224767, 224767, 100, 100, 'Lonely Spirit of Strength Whispered', 230986), (41077, 41077, 1, 1, 'Long Black Leather Sleeves', 41171), (42350, 42350, 1, 1, 'Long Black Sweater Pants', 42282), (42325, 42325, 1, 1, 'Long Blue Fret Sleeves', 42281), (42334, 42334, 1, 1, 'Long Blue Sweater Pants', 42286), (85462, 85463, 1, 250, 'Long Blunt Weapons Field Primer', 83298), (130616, 130616, 1, 1, 'Long Chalice', 37960), (137237, 137238, 1, 200, 'Long Composite Barrel', 130701), (204769, 204769, 50, 50, 'Long Eyemutant Sinews', 156557), (204772, 204772, 50, 50, 'Long Eyemutant Sinews - Preserved', 156557), (224521, 224521, 175, 175, 'Long Gloves of Cama', 118190), (224522, 224522, 175, 175, 'Long Gloves of Vanya', 118190), (42330, 42330, 1, 1, 'Long Green Sweater Pants', 42284), (142888, 142889, 1, 200, 'Long Handle', 130877), (121652, 121653, 47, 69, 'Long Ion Axe', 21137), (246392, 246393, 50, 200, 'Long Perennium Muzzle', 130701), (42326, 42326, 1, 1, 'Long Red Fret Sleeves', 42280), (121622, 121623, 139, 161, 'Long Slank', 21140), (121624, 121625, 162, 184, 'Long Slank', 21140), (121616, 121617, 70, 92, 'Long Slank Computer X-II', 21140), (143082, 143082, 1, 1, 'Long Slank Computer X-II Construction Manual', 37933), (143138, 143138, 1, 1, 'Long Slank Construction Manual', 136329), (41102, 41102, 1, 1, 'Long White Sleeves', 37134), (42323, 42323, 1, 1, 'Long Yellow Fret Sleeves', 42279), (121650, 121651, 24, 46, 'Long-Axe Hyper 200x', 21137), (271249, 271250, 1, 300, 'Longmoon - 000', 13338), (271251, 271252, 1, 300, 'Longmoon - 010', 13338), (271253, 271254, 1, 300, 'Longmoon - 050', 13338), (271255, 271256, 1, 300, 'Longmoon - 070', 13338), (271257, 271258, 1, 300, 'Longmoon - 870', 13338), (203574, 203574, 200, 200, 'Longshot', 13312), (253491, 253491, 1, 1, 'Longshot Chair', 255952), (253492, 253492, 1, 1, 'Longshot Desk', 255953), (245580, 245580, 160, 160, 'Longsword of the Illuminated', 113987), (159073, 159073, 2, 2, 'Lookout - Sugarfree Rum', 37934), (214191, 214191, 300, 300, 'Lookout Microblaster', 210170), (250148, 250149, 41, 60, 'Loose Adapting Notum Lever', 33163), (122695, 122696, 41, 60, 'Loose Advanced Baseballbat', 13335), (249021, 249022, 21, 30, 'Loose Arctic Metaplast Mace', 13333), (152313, 152314, 31, 50, 'Loose Assault Partizan', 21140), (123328, 123329, 18, 21, 'Loose Banjo', 85159), (248425, 248426, 41, 60, 'Loose Bio-Energy Shield', 33152), (122733, 122734, 41, 60, 'Loose Blackjack', 33169), (122928, 122929, 41, 60, 'Loose Blackjohn', 33170), (130201, 130202, 21, 30, 'Loose Bloodworm Carapace', 85166), (123118, 123119, 41, 60, 'Loose Bow Split', 21134), (144150, 144151, 41, 60, 'Loose Burning Copper Katana', 113998), (122068, 122069, 41, 60, 'Loose Clean Slay Axe', 21141), (122144, 122145, 41, 60, 'Loose Cutlass', 13347), (130129, 130130, 41, 60, 'Loose Denunciatory Spear', 33163), (122163, 122164, 41, 60, 'Loose E-Blade', 13337), (122410, 122411, 41, 60, 'Loose Energy Buckler', 33151), (122372, 122373, 41, 60, 'Loose Energy Shield', 33152), (122391, 122392, 41, 60, 'Loose Esoteric Energy Buckler', 33149), (153087, 153088, 100, 149, 'Loose G-Staff', 136738), (122809, 122810, 41, 60, 'Loose Gofle-Prod', 33168), (123347, 123348, 41, 60, 'Loose Hand Axe', 13345), (121726, 121727, 41, 60, 'Loose Haxor 9922', 13339), (130148, 130149, 41, 60, 'Loose Hayfork', 85168), (206593, 206594, 41, 60, 'Loose Improved Clean Slay Axe', 21141), (161739, 161740, 41, 60, 'Loose Improved Stun-Baton', 13348), (206084, 206084, 100, 100, 'Loose Incan Blood Tainter', 113986), (124444, 124445, 1, 13, 'Loose Kalinkalov Mz-99', 84025), (121973, 121974, 41, 60, 'Loose Katana', 13326), (152390, 152391, 31, 40, 'Loose Khemo-Tech Platinum Wakisashi', 113983), (125334, 125335, 54, 82, 'Loose Large Rider Squibber', 114008), (123366, 123367, 41, 60, 'Loose Lead Pipe', 85166), (130218, 130219, 22, 31, 'Loose Light Spear', 33163), (152156, 152157, 11, 20, 'Loose Light Tube-Bow', 85167), (122049, 122050, 41, 60, 'Loose Longmoon', 13338), (130163, 130164, 1, 34, 'Loose MTI Sword', 113987), (122947, 122948, 41, 60, 'Loose Mace', 13333), (123385, 123386, 41, 60, 'Loose Meat-Cleaver', 85169), (125366, 125367, 41, 60, 'Loose Merchant Executioner', 114003), (125315, 125316, 41, 60, 'Loose Merchant Squibber', 114007), (128961, 128962, 41, 60, 'Loose Merchant Warblade', 114011), (122353, 122354, 41, 60, 'Loose Metaphysic Energy Shield', 33150), (142840, 142841, 21, 30, 'Loose Metaplast Mace', 13333), (121764, 121765, 41, 60, 'Loose Mini Axe', 13345), (123252, 123253, 88, 101, 'Loose Nano-Charged Stun Glove', 45784), (130091, 130092, 41, 60, 'Loose Native Alloy Staff', 136738), (130110, 130111, 41, 60, 'Loose Notum Lever', 33163), (123004, 123005, 41, 60, 'Loose Notum Spear', 21135), (143772, 143772, 1, 1, 'Loose Notum Spear Construction Manual', 37932), (122966, 122967, 41, 60, 'Loose Notum Staff', 33162), (143666, 143666, 1, 1, 'Loose Notum Staff Construction Manual', 37932), (128923, 128924, 41, 60, 'Loose Peasant Executioner', 114001), (125300, 125301, 48, 70, 'Loose Peasant Squibber', 114005), (128942, 128943, 41, 60, 'Loose Peasant Warblade', 114009), (125404, 125405, 41, 60, 'Loose Protector Executioner', 114002), (125347, 125348, 41, 60, 'Loose Protector Squibber', 114006), (128999, 129000, 41, 60, 'Loose Protector Warblade', 114010), (125385, 125386, 41, 60, 'Loose Rider Executioner', 114004), (128980, 128981, 41, 60, 'Loose Rider Warblade', 114012), (121745, 121746, 41, 60, 'Loose Right Slice', 21142), (123061, 123062, 41, 60, 'Loose Ritual Krys Knife', 13346), (121954, 121955, 41, 60, 'Loose Slank Chop', 21143), (143584, 143584, 1, 1, 'Loose Slank Chop Construction Manual', 37932), (129030, 129031, 41, 60, 'Loose Sledgehammer', 33167), (122106, 122107, 41, 60, 'Loose Stabber', 13346), (122852, 122853, 41, 60, 'Loose Stun-Baton', 13348), (122909, 122910, 41, 60, 'Loose Support Beam', 33143), (144067, 144068, 21, 30, 'Loose Survival Axe', 40782), (249040, 249041, 21, 30, 'Loose Survival Axe of Genevra', 40782), (122790, 122791, 41, 60, 'Loose Sword of Sir Galahad', 40781), (144084, 144085, 11, 20, 'Loose Tanto', 113986), (152736, 152737, 31, 40, 'Loose Tear Blade', 13347), (122833, 122834, 41, 60, 'Loose Titanium Crowbar', 33166), (125423, 125424, 41, 60, 'Loose Torch', 85172), (122752, 122753, 41, 60, 'Loose Two-Handed Blackjack', 33170), (249062, 249063, 11, 20, 'Loose Variable Density Tanto', 113986), (150258, 150259, 41, 60, 'Loose Wall-Blade', 113983), (121707, 121708, 41, 60, 'Loose Whings', 21139), (168676, 168676, 5, 5, 'Loose-Fitting Hydraulic Glove', 37630), (163959, 163960, 1, 400, 'Lootgiver Type 1', 84059), (163971, 163985, 1, 400, 'Lootgiver Type 10', 84059), (163972, 163986, 1, 400, 'Lootgiver Type 11', 84059), (163973, 163987, 1, 400, 'Lootgiver Type 12', 84059), (163974, 163988, 1, 400, 'Lootgiver Type 13', 84059), (163975, 163989, 1, 400, 'Lootgiver Type 14', 84059), (163976, 163990, 1, 400, 'Lootgiver Type 15', 84059), (163977, 163991, 1, 400, 'Lootgiver Type 16', 84059), (163978, 163992, 1, 400, 'Lootgiver Type 17', 84059), (163961, 163962, 1, 400, 'Lootgiver Type 2', 84059), (163964, 163963, 1, 400, 'Lootgiver Type 3', 84059), (163965, 163979, 1, 400, 'Lootgiver Type 4', 84059), (163966, 163980, 1, 400, 'Lootgiver Type 5', 84059), (163967, 163981, 1, 400, 'Lootgiver Type 6', 84059), (163968, 163982, 1, 400, 'Lootgiver Type 7', 84059), (163969, 163983, 1, 400, 'Lootgiver Type 8', 84059), (163970, 163984, 1, 400, 'Lootgiver Type 9', 84059), (202328, 202329, 1, 400, 'Lootgiver Type D', 84059), (244742, 244742, 300, 300, 'Lord of Abandonment', 245083), (244802, 244802, 300, 300, 'Lord of Anger', 210184), (244821, 244821, 300, 300, 'Lord of Angst', 245082), (244910, 244910, 300, 300, 'Lord of Chaos', 245089), (244779, 244779, 300, 300, 'Lord of Deceit', 213075), (244843, 244843, 300, 300, 'Lord of Envy', 244836), (244785, 244785, 300, 300, 'Lord of Gluttony', 218714), (244862, 244862, 300, 300, 'Lord of Greed', 244931), (244762, 244762, 300, 300, 'Lord of Hatred', 158269), (244914, 244914, 300, 300, 'Lord of Lust', 244837), (244783, 244783, 300, 300, 'Lord of Pride', 233217), (244912, 244912, 300, 300, 'Lord of Sloth', 233214), (293997, 293997, 300, 300, 'Lord of Wisdom', 293991), (293999, 293999, 300, 300, 'Lord of Wisdom', 293991), (240841, 240841, 1, 1, 'Lord of the void', 130862), (297369, 297369, 1, 1, 'Lorelei''s Reet', 297368), (304590, 304590, 1, 1, 'Loren Warr''s Equipment Cache', 227904), (304591, 304591, 1, 1, 'Loren Warr''s Equipment Cache', 227904), (304592, 304592, 1, 1, 'Loren Warr''s Equipment Cache', 205832), (304614, 304614, 200, 200, 'Loren''s Boots of Azure Reveries', 304644), (304613, 304613, 200, 200, 'Loren''s Breastplate of Azure Reveries', 304640), (304610, 304610, 200, 200, 'Loren''s Gloves of Azure Reveries', 304641), (304611, 304611, 200, 200, 'Loren''s Helmet of Azure Reveries', 304642), (304612, 304612, 200, 200, 'Loren''s Pants of Azure Reveries', 304643), (304609, 304609, 200, 200, 'Loren''s Sleeves of Azure Reveries', 304639), (305993, 305993, 200, 200, 'Lost Blade of Elder Tsunayoshi', 13326), (245733, 245733, 260, 260, 'Lost Faith', 210186), (245731, 245732, 220, 259, 'Lost Hope', 210186), (152357, 152357, 200, 200, 'Lotus Parry Stick', 136738), (215402, 215402, 1, 1, 'Loustrous', 82197), (125453, 125453, 194, 194, 'Love-Filled Pillow with Important Stripes', 85163), (286215, 286215, 200, 200, 'Love-Infused Wax', 284331), (246210, 246210, 100, 100, 'Loving Focus-Funneling Helper', 205511), (152022, 152022, 45, 45, 'Loving Hands', 13276), (41038, 41038, 1, 1, 'Low Black Shoes', 37121), (157245, 157245, 40, 40, 'Low Gravity Notum Elixir', 156493), (81757, 81757, 1, 1, 'Low Level Clans Application Form', 81771), (81753, 81753, 1, 1, 'Low Level Omni-Tek Application Form', 81773), (88375, 88376, 15, 199, 'Low Light Targeting Scope', 99270), (164028, 164029, 1, 48, 'Low Meibutsu Dai-Katana', 13326), (164013, 164014, 1, 48, 'Low Meibutsu Daito of Aptitude', 113983), (164033, 164034, 1, 48, 'Low Meibutsu Katana of Celerity', 13326), (164043, 164044, 1, 48, 'Low Meibutsu Katana of Chance', 13326), (164038, 164039, 1, 48, 'Low Meibutsu Katana of the Creep', 13326), (199673, 199673, 200, 200, 'Low Nadir Homage Armor Boots', 22876), (199694, 199694, 200, 200, 'Low Nadir Homage Armor Gloves', 22931), (199715, 199715, 200, 200, 'Low Nadir Homage Armor Helmet', 31733), (199736, 199736, 200, 200, 'Low Nadir Homage Armor Pants', 22914), (199757, 199757, 200, 200, 'Low Nadir Homage Armor Sleeves', 22960), (199778, 199778, 200, 200, 'Low Nadir Homage Body Armor', 22985), (228369, 228369, 1, 1, 'Low Novictum Katana of Innocence', 13326), (158963, 158964, 1, 99, 'Low Quality Arwen MO-404 Grenade Launcher', 13322), (160184, 160185, 1, 20, 'Low Quality FDA Caterwaul 913', 33155), (257109, 257109, 300, 300, 'Low Recoil Diamondine Kick Pistol', 113990), (163993, 163994, 1, 48, 'Low Tempered Meibutsu Daito', 113983), (150193, 150194, 1, 20, 'Low quality Santiago Crossblade', 113983), (295875, 295875, 250, 250, 'Low-Band NCU Power Co-Processor', 245483), (295877, 295877, 1, 1, 'Low-Band NCU Random-Access Co-Processor', 245483), (295876, 295876, 250, 250, 'Low-Band NCU Rendering Co-Processor', 245483), (160125, 160126, 1, 20, 'Low-Energy Edwards RS Knife', 13349), (137191, 137192, 1, 200, 'Low-Light Targeting Scope', 130773), (204964, 204965, 25, 74, 'Low-Quality Eyemutant Orb Laser', 152424), (305517, 305517, 1, 1, 'Lucid Nightmares', 276919), (157279, 157279, 1, 1, 'Lukewarm Cup of Menthol Coffee', 130565), (235409, 235409, 60, 60, 'Lulled Brain Symbiant, Artillery Unit Aban', 215189), (236304, 236304, 60, 60, 'Lulled Brain Symbiant, Control Unit Aban', 215189), (235637, 235637, 60, 60, 'Lulled Brain Symbiant, Infantry Unit Aban', 215189), (236080, 236080, 60, 60, 'Lulled Brain Symbiant, Support Unit Aban', 215188), (235906, 235906, 60, 60, 'Lulled Chest Symbiant, Extermination Unit Aban', 215181), (236130, 236130, 60, 60, 'Lulled Chest Symbiant, Support Unit Aban', 215181), (235429, 235429, 60, 60, 'Lulled Ear Symbiant, Artillery Unit Aban', 230977), (235871, 235871, 60, 60, 'Lulled Ear Symbiant, Extermination Unit Aban', 230977), (236097, 236097, 60, 60, 'Lulled Ear Symbiant, Support Unit Aban', 230977), (236045, 236045, 60, 60, 'Lulled Feet Symbiant, Extermination Unit Aban', 215186), (235820, 235820, 60, 60, 'Lulled Feet Symbiant, Infantry Unit Aban', 215187), (236273, 236273, 60, 60, 'Lulled Feet Symbiant, Support Unit Aban', 215187), (235482, 235482, 60, 60, 'Lulled Left Arm Symbiant, Artillery Unit Aban', 215179), (235924, 235924, 60, 60, 'Lulled Left Arm Symbiant, Extermination Unit Aban', 215175), (236151, 236151, 60, 60, 'Lulled Left Arm Symbiant, Support Unit Aban', 215175), (236028, 236028, 60, 60, 'Lulled Left Hand Symbiant, Extermination Unit Aban', 215172), (236257, 236257, 60, 60, 'Lulled Left Hand Symbiant, Support Unit Aban', 215171), (235534, 235534, 60, 60, 'Lulled Left Wrist Symbiant, Artillery Unit Aban', 215196), (235752, 235752, 60, 60, 'Lulled Left Wrist Symbiant, Infantry Unit Aban', 215198), (236208, 236208, 60, 60, 'Lulled Left Wrist Symbiant, Support Unit Aban', 215198), (236288, 236288, 60, 60, 'Lulled Ocular Symbiant, Control Unit Aban', 230979), (235839, 235839, 60, 60, 'Lulled Ocular Symbiant, Extermination Unit Aban', 230979), (235620, 235620, 60, 60, 'Lulled Ocular Symbiant, Infantry Unit Aban', 230980), (235447, 235447, 60, 60, 'Lulled Right Arm Symbiant, Artillery Unit Aban', 215176), (236339, 236339, 60, 60, 'Lulled Right Arm Symbiant, Control Unit Aban', 215180), (235551, 235551, 60, 60, 'Lulled Right Hand Symbiant, Artillery Unit Aban', 215173), (235769, 235769, 60, 60, 'Lulled Right Hand Symbiant, Infantry Unit Aban', 215174), (236223, 236223, 60, 60, 'Lulled Right Hand Symbiant, Support Unit Aban', 215174), (235942, 235942, 60, 60, 'Lulled Right Wrist Symbiant, Extermination Unit Aban', 215170), (235718, 235718, 60, 60, 'Lulled Right Wrist Symbiant, Infantry Unit Aban', 215197), (236171, 236171, 60, 60, 'Lulled Right Wrist Symbiant, Support Unit Aban', 215197), (236241, 236241, 60, 60, 'Lulled Thigh Symbiant, Support Unit Aban', 215190), (235515, 235515, 60, 60, 'Lulled Waist Symbiant, Artillery Unit Aban', 215194), (236409, 236409, 60, 60, 'Lulled Waist Symbiant, Control Unit Aban', 215193), (235734, 235734, 60, 60, 'Lulled Waist Symbiant, Infantry Unit Aban', 215193), (236190, 236190, 60, 60, 'Lulled Waist Symbiant, Support Unit Aban', 215193), (215403, 215403, 1, 1, 'Luminous', 82197), (163705, 163706, 1, 200, 'Luminous Copper Band', 151930), (158895, 158895, 100, 100, 'Lump of Living Dragon Marrow', 144701), (85446, 85447, 1, 250, 'Lumping Weapons Field Primer', 83342), (280728, 280728, 300, 300, 'Lust of the Xan', 280912), (208004, 208005, 140, 149, 'Lux Incendiary Rifle', 33160), (152302, 152303, 61, 90, 'Luxembourg Inferno Rifle', 13314), (152600, 152600, 1, 1, 'Luxembourg Inferno Rifle Construction Manual', 37933), (300705, 300706, 1, 200, 'Luxurious Boots', 300707), (300703, 300704, 1, 200, 'Luxurious Gloves', 300702), (300673, 300674, 1, 200, 'Luxurious Helmet', 300708), (300693, 300694, 1, 200, 'Luxurious Pants', 300695), (168670, 168670, 200, 200, 'Luxurious Rubber Pants', 22917), (168672, 168672, 200, 200, 'Luxurious Rubber Shirt', 22973), (168671, 168671, 200, 200, 'Luxurious Rubber Sleeves', 22946), (300696, 300697, 1, 200, 'Luxurious Shirt', 300698), (300700, 300701, 1, 200, 'Luxurious Sleeves', 300699), (300690, 300691, 1, 200, 'Luxurious Tank Armor', 300692), (150207, 150207, 181, 181, 'Luxury Santiago Crossblade', 113983), (269192, 269193, 1, 300, 'Lya''s Sangi Glasses', 86483), (269200, 269201, 1, 300, 'Lya''s Sangi Gloves', 253717), (269194, 269195, 1, 300, 'Lya''s Sangi Patch', 161072), (269198, 269199, 1, 300, 'Lya''s Sangi Shirt', 81992), (269196, 269197, 1, 300, 'Lya''s Sangi Sleeves', 81990), (269204, 269205, 1, 300, 'Lya''s Sangi Slippers', 81987), (269202, 269203, 1, 300, 'Lya''s Sangi Trousers', 81982), (292018, 292018, 1, 1, 'Lyrajayne''s QQ Shirt', 294561), (123723, 123724, 1, 11, 'M-1 Bipower Prototype', 13314), (303068, 303068, 1, 1, 'M.A.G.S. Aggression Enhancer', 100320), (124012, 124012, 61, 61, 'M150 Booster (You Cannot Watch Me)', 21146), (124011, 124011, 60, 60, 'M150 Booster (A Delay)', 21146), (124010, 124010, 59, 59, 'M150 Booster (How Does It Feel)', 21146), (124009, 124009, 58, 58, 'M150 Booster (I Will Let You Go First)', 21146), (124007, 124007, 56, 56, 'M150 Booster (Released Too Much)', 21146), (124008, 124008, 57, 57, 'M150 Booster (Unwanted Surprise)', 21146), (124006, 124006, 55, 55, 'M150 Booster Edition', 21146), (124015, 124015, 200, 200, 'M150 DeLuxe Booster Edition', 21146), (124013, 124014, 62, 199, 'M150 N.A. Booster Edition', 21146), (124070, 124071, 1, 29, 'M52A Pulse Rifle', 100310), (124072, 124072, 30, 30, 'M52A Pulse Rifle', 100310), (101461, 101462, 1, 200, 'MG / SMG Cluster - Bright (Right-Hand)', 35981), (101459, 101460, 1, 200, 'MG / SMG Cluster - Faded (Chest)', 35980), (101463, 101464, 1, 200, 'MG / SMG Cluster - Shiny (Right-Arm)', 35982), (165621, 165622, 201, 300, 'MG / SMG Refined Cluster - Bright (Right-Hand)', 35981), (165619, 165620, 201, 300, 'MG / SMG Refined Cluster - Faded (Chest)', 35980), (165623, 165624, 201, 300, 'MG / SMG Refined Cluster - Shiny (Right-Arm)', 35982), (277925, 277926, 1, 300, 'MG/SMG Memory Cell', 276922), (278220, 278221, 1, 199, 'MG/SMG Skill NCU (1/6)', 276930), (278222, 278223, 200, 299, 'MG/SMG Skill NCU (1/6)', 276930), (278224, 278224, 300, 300, 'MG/SMG Skill NCU (1/6)', 276930), (278225, 278226, 1, 199, 'MG/SMG Skill NCU (2/6)', 276931), (278227, 278228, 200, 299, 'MG/SMG Skill NCU (2/6)', 276931), (278229, 278229, 300, 300, 'MG/SMG Skill NCU (2/6)', 276931), (278230, 278231, 1, 199, 'MG/SMG Skill NCU (3/6)', 276932), (278232, 278233, 200, 299, 'MG/SMG Skill NCU (3/6)', 276932), (278234, 278234, 300, 300, 'MG/SMG Skill NCU (3/6)', 276932), (278235, 278236, 1, 199, 'MG/SMG Skill NCU (4/6)', 276933), (278237, 278238, 200, 299, 'MG/SMG Skill NCU (4/6)', 276933), (278239, 278239, 300, 300, 'MG/SMG Skill NCU (4/6)', 276933), (278240, 278241, 1, 199, 'MG/SMG Skill NCU (5/6)', 276934), (278242, 278243, 200, 299, 'MG/SMG Skill NCU (5/6)', 276934), (278244, 278244, 300, 300, 'MG/SMG Skill NCU (5/6)', 276934), (278245, 278246, 1, 199, 'MG/SMG Skill NCU (6/6)', 276935), (278247, 278248, 200, 299, 'MG/SMG Skill NCU (6/6)', 276935), (278249, 278249, 300, 300, 'MG/SMG Skill NCU (6/6)', 276935), (155931, 155931, 1, 1, 'MRR - Program List', 121435), (159111, 159112, 51, 130, 'MTI - Russian Good Day', 21148), (159115, 159115, 200, 200, 'MTI - Russian Good Day - Deluxe', 21148), (123776, 123777, 21, 50, 'MTI 95 Match Pistol', 13316), (123778, 123779, 51, 60, 'MTI 97 Match Pistol', 13316), (123780, 123781, 61, 80, 'MTI 97a Smokeless Match Pistol', 13316), (123782, 123783, 81, 90, 'MTI 98 Match Pistol', 13316), (123788, 123788, 200, 200, 'MTI 99 Agent Match Pistol', 13316), (123784, 123785, 91, 99, 'MTI 99 Match Pistol', 13316), (123786, 123787, 100, 199, 'MTI 99 Rebel Match Pistol', 13316), (208077, 208078, 220, 224, 'MTI AR707 Major', 21151), (208079, 208079, 225, 225, 'MTI AR707 Major', 21151), (208075, 208076, 200, 219, 'MTI AR707 Minor', 21151), (152330, 152331, 41, 80, 'MTI Aleph 99', 21148), (271943, 271944, 1, 300, 'MTI Aleph 99 - 000', 21148), (271947, 271948, 1, 300, 'MTI Aleph 99 - 404', 21148), (271949, 271950, 1, 300, 'MTI Aleph 99 - C04', 21148), (153860, 153860, 1, 1, 'MTI Aleph 99 Construction Manual', 37933), (124422, 124423, 12, 21, 'MTI B-94', 114014), (124424, 124425, 22, 41, 'MTI B-94', 114014), (124426, 124427, 42, 61, 'MTI B-94', 114014), (124428, 124429, 62, 151, 'MTI B-94', 114014), (124430, 124430, 152, 152, 'MTI B-94', 114014), (161655, 161656, 101, 120, 'MTI Defender', 161057), (208001, 208002, 165, 174, 'MTI F-88 Cineration', 33159), (208003, 208003, 175, 175, 'MTI F-88 Cineration Champion', 33159), (272130, 272131, 1, 300, 'MTI G-36K - 000', 33155), (272132, 272133, 1, 300, 'MTI G-36K - 008', 33155), (272134, 272135, 1, 300, 'MTI G-36K - 00C', 33155), (272136, 272137, 1, 300, 'MTI G-36K - 40C', 33155), (272138, 272139, 1, 300, 'MTI G-36K - C0C', 33155), (124409, 124410, 11, 19, 'MTI G-70', 21146), (124419, 124419, 184, 184, 'MTI G-70 Azmajparasjvili', 21146), (124417, 124418, 125, 183, 'MTI G-70 Max', 21146), (124415, 124416, 75, 124, 'MTI G-70 Nibong Kula', 21146), (124413, 124414, 65, 74, 'MTI G-70 Talmo', 21146), (124411, 124412, 20, 64, 'MTI G-70 Zaman', 21146), (124359, 124360, 24, 85, 'MTI G-90A3', 21146), (124361, 124362, 86, 149, 'MTI G-90A3 Nyarla', 21146), (124363, 124363, 150, 150, 'MTI G-90A3 Thotep', 21146), (124388, 124389, 30, 69, 'MTI G02K', 113990), (124390, 124390, 70, 70, 'MTI G02K Salamander', 113990), (208010, 208011, 140, 149, 'MTI G04U', 113989), (208012, 208012, 150, 150, 'MTI G04U model B', 113989), (162777, 162778, 80, 199, 'MTI Grey', 13317), (271814, 271815, 1, 300, 'MTI M Bipower - 000', 13314), (271818, 271819, 1, 300, 'MTI M Bipower - 401', 13314), (271820, 271821, 1, 300, 'MTI M Bipower - C01', 13314), (123727, 123728, 24, 35, 'MTI M-1 Bipower A', 13314), (123729, 123730, 36, 47, 'MTI M-1 Bipower C2', 13314), (123731, 123732, 48, 55, 'MTI M-2 Bipower', 13314), (123739, 123740, 98, 199, 'MTI M-3 Bipower', 13314), (123737, 123738, 86, 97, 'MTI M-3 Bipower Prototype', 13314), (123741, 123741, 200, 200, 'MTI M-3 Hyper Bipower', 13314), (128784, 128785, 1, 119, 'MTI MP903A3D9', 13341), (128868, 128869, 88, 140, 'MTI MPK-22', 33153), (272210, 272211, 1, 300, 'MTI MPK-22 Briefcase Gun - 000', 13311), (272212, 272213, 1, 300, 'MTI MPK-22 Briefcase Gun - 008', 13311), (272214, 272215, 1, 300, 'MTI MPK-22 Briefcase Gun - 00C', 13311), (272216, 272217, 1, 300, 'MTI MPK-22 Briefcase Gun - 40C', 13311), (272218, 272219, 1, 300, 'MTI MPK-22 Briefcase Gun - C0C', 13311), (200958, 200959, 110, 199, 'MTI Martins Simple AR01', 13320), (130171, 130171, 195, 195, 'MTI Masterpiece Sword', 113987), (208048, 208048, 50, 50, 'MTI P87 - Free and Easy Days', 113988), (208046, 208047, 40, 49, 'MTI P87 - Happy Days', 113988), (209271, 209272, 10, 49, 'MTI Pocket Launcher', 13322), (271497, 271498, 1, 300, 'MTI SL70 - 000', 33155), (271499, 271500, 1, 300, 'MTI SL70 - 002', 33155), (271501, 271502, 1, 300, 'MTI SL70 - 402', 33155), (271503, 271504, 1, 300, 'MTI SL70 - C02', 33155), (124168, 124169, 61, 80, 'MTI SL70 012803a', 33155), (124170, 124171, 81, 100, 'MTI SL70 012911a', 33155), (124174, 124175, 121, 140, 'MTI SL70 013309a', 33155), (124182, 124182, 200, 200, 'MTI SL70 Garganthua', 33155), (249829, 249829, 200, 200, 'MTI SL70 RX Razorback Gargantua', 33155), (124164, 124165, 14, 40, 'MTI SL70 Rifle', 33155), (124166, 124167, 41, 59, 'MTI SL70 Rifle', 33155), (124167, 124172, 60, 100, 'MTI SL70 Rifle', 33155), (124172, 124173, 101, 119, 'MTI SL70 Rifle', 33155), (124173, 124176, 120, 140, 'MTI SL70 Rifle', 33155), (124176, 124177, 141, 160, 'MTI SL70 Rifle', 33155), (124178, 124179, 161, 164, 'MTI SL70 Rifle', 33155), (124180, 124181, 165, 199, 'MTI SL70-013453a', 33155), (248742, 248743, 14, 40, 'MTI SL70R01 Razorback Rifle', 33155), (248744, 248866, 41, 60, 'MTI SL70R02 Razorback Rifle', 33155), (248869, 249815, 61, 80, 'MTI SL70R03 Razorback Rifle', 33155), (249816, 249817, 81, 100, 'MTI SL70R04 Razorback Rifle', 33155), (249818, 249819, 101, 120, 'MTI SL70R05 Razorback Rifle', 33155), (249820, 249821, 121, 140, 'MTI SL70R06 Razorback Rifle', 33155), (249822, 249823, 141, 160, 'MTI SL70R07 Razorback Rifle', 33155), (249825, 249826, 161, 164, 'MTI SL70R08 Razorback Rifle', 33155), (249827, 249828, 165, 199, 'MTI SL70R09 Razorback Rifle', 33155), (124619, 124620, 40, 119, 'MTI SO1210', 13340), (272190, 272191, 1, 300, 'MTI SO1210 - 000', 13340), (272192, 272193, 1, 300, 'MTI SO1210 - 008', 13340), (272194, 272195, 1, 300, 'MTI SO1210 - 00C', 13340), (272196, 272197, 1, 300, 'MTI SO1210 - 40C', 13340), (272198, 272199, 1, 300, 'MTI SO1210 - C0C', 13340), (123911, 123912, 21, 40, 'MTI SOCOM Mk IV', 113992), (123913, 123914, 41, 60, 'MTI SOCOM Mk V', 113992), (123915, 123916, 61, 80, 'MTI SOCOM Mk V Chapman', 113992), (123917, 123918, 81, 100, 'MTI SOCOM Mk V Chapman II', 113992), (123921, 123922, 121, 140, 'MTI SOCOM Mk V Couji', 113992), (123919, 123920, 101, 120, 'MTI SOCOM Mk V Lux', 113992), (123925, 123926, 161, 199, 'MTI SOCOM Mk V OT', 113992), (123923, 123924, 141, 160, 'MTI SOCOM Mk V Rubi-Ka', 113992), (123927, 123927, 200, 200, 'MTI SOCOM Mk VI Proto', 113992), (123810, 123811, 15, 89, 'MTI SW500', 113988), (123814, 123815, 100, 109, 'MTI SW500 Bernstock', 113988), (123812, 123813, 90, 99, 'MTI SW500 Chapman', 113988), (123818, 123818, 180, 180, 'MTI SW500 Geyser', 113988), (123816, 123817, 110, 179, 'MTI SW500 Lux', 113988), (130167, 130168, 75, 144, 'MTI Sword', 113987), (272200, 272201, 1, 300, 'MTI UMP22 - 000', 114016), (272202, 272203, 1, 300, 'MTI UMP22 - 008', 114016), (272204, 272205, 1, 300, 'MTI UMP22 - 00C', 114016), (272206, 272207, 1, 300, 'MTI UMP22 - 40C', 114016), (272208, 272209, 1, 300, 'MTI UMP22 - C0C', 114016), (123935, 123936, 22, 31, 'MTI USP 1200', 13314), (123937, 123938, 32, 63, 'MTI USP 1200 T', 13314), (123939, 123940, 64, 119, 'MTI USP 1200 T2', 13314), (123941, 123941, 120, 120, 'MTI USP 1200 Welkin', 13314), (271585, 271586, 1, 300, 'MTI USP 21 - 000', 113993), (271589, 271590, 1, 300, 'MTI USP 21 - 401', 113993), (271591, 271592, 1, 300, 'MTI USP 21 - C01', 113993), (123801, 123802, 140, 159, 'MTI VP300 Black s. Caseless', 13317), (123799, 123800, 60, 139, 'MTI VP300 Caseless Pistol', 13317), (123807, 123807, 200, 200, 'MTI VP300 Gold', 13317), (123791, 123792, 20, 29, 'MTI VP300 Proto Pink', 13317), (123805, 123806, 180, 199, 'MTI VP300 Red s. Caseless', 13317), (123803, 123804, 160, 179, 'MTI VP300 Silver s. Caseless', 13317), (123793, 123794, 30, 39, 'MTI VP300.f Proto Caseless', 13317), (123795, 123796, 40, 49, 'MTI VP300.m Proto Caseless', 13317), (123797, 123798, 50, 59, 'MTI VP300.r Proto Caseless', 13317), (123986, 123987, 28, 92, 'MTI-OT PF55 Flechette System', 33155), (123988, 123989, 93, 159, 'MTI-OT PF56 Flechette System', 33155), (244989, 244989, 300, 300, 'Maar''s Blue Belt of Double Prudence', 244991), (244988, 244988, 300, 300, 'Maar''s Red Belt of Double Power', 244991), (244990, 244990, 300, 300, 'Maar''s Yellow Belt of Double Speed', 244991), (271028, 271029, 1, 300, 'Mace - 000', 13333), (271030, 271031, 1, 300, 'Mace - 010', 13333), (271032, 271033, 1, 300, 'Mace - 050', 13333), (271034, 271035, 1, 300, 'Mace - 070', 13333), (271036, 271037, 1, 300, 'Mace - 870', 13333), (263315, 263315, 1, 1, 'Machete Lunge', 39127), (263309, 263309, 1, 1, 'Machete Strike', 39127), (211245, 211246, 1, 299, 'Machete of Thousand Worries', 21143), (211247, 211247, 300, 300, 'Machete of Two Thousand Worries', 21143), (287339, 287339, 1, 1, 'Macrosun''s T-shirt', 287353), (290068, 290068, 1, 1, 'Macrosun''s T-shirt Spawner', 287354), (277380, 277380, 1, 1, 'Mad Scientist Cloak', 277883), (142793, 142794, 39, 100, 'Madam Freeze', 13336), (297043, 297043, 1, 1, 'Maddy''s Credit Card', 297308), (130084, 130085, 20, 89, 'Magical Stave of Inferno', 136738), (275510, 275510, 1, 1, 'Magnifying Glass', 275555), (301934, 301934, 1, 1, 'Mags'' Powerglove', 218706), (287564, 287564, 1, 1, 'Maid Death Item', 84059), (214348, 214349, 100, 199, 'Maiden Naginata', 213073), (214350, 214351, 200, 299, 'Maiden Naginata', 213073), (246092, 246092, 250, 250, 'Maiden''s Gloves', 21874), (100351, 100351, 1, 1, 'Main Frame Human Interface', 99277), (258758, 258758, 1, 1, 'Maintenance Log', 149949), (233321, 233321, 300, 300, 'Majestic Missile Launcher', 233213), (157644, 157644, 194, 194, 'Majestic Soft Pepper Pistol', 113995), (243787, 243787, 300, 300, 'Major Painkiller', 233354), (154507, 154507, 1, 1, 'Making Emergency Treatment Labs - A Quick Guide for Doctors', 37932), (292222, 292223, 1, 199, 'Malfunctioning Health and Nano Recharger', 292213), (292223, 292224, 200, 400, 'Malfunctioning Health and Nano Recharger', 292213), (292225, 292226, 1, 199, 'Malfunctioning Health and Nano Stim', 292215), (292226, 292227, 200, 400, 'Malfunctioning Health and Nano Stim', 292215), (302995, 302995, 1, 1, 'Malfunctioning Market Terminal', 296047), (227040, 227040, 1, 1, 'Malicious Prohibition', 239157), (155693, 155694, 1, 200, 'Malle Saliva Brew', 100306), (155667, 155668, 1, 200, 'Malle Saliva Paste', 100314), (246080, 246080, 250, 250, 'Malodorous Ring', 246079), (224185, 224185, 150, 150, 'Man Dal''s Gaudy Helmet', 213639), (224431, 224431, 150, 150, 'Man Dal''s Sleeve of Exploitation', 13238), (264084, 264084, 300, 300, 'Man Portable Anti-Vehicular Missile Launcher', 154361), (292522, 292522, 1, 1, 'Mandelbrot Pattern Programming Utility Device', 292757), (292536, 292536, 1, 1, 'Mandelbrot Upgrade Plate', 292758), (286393, 286393, 1, 1, 'Manex Adventuring Protection System - Boots (Black Variant)', 286369), (286320, 286320, 1, 1, 'Manex Adventuring Protection System - Boots (Black/Orange Variant)', 286368), (286515, 286515, 1, 1, 'Manex Adventuring Protection System - Boots (Blue/Black Variant)', 286506), (286400, 286400, 1, 1, 'Manex Adventuring Protection System - Boots (Blue/Tan Variant)', 286370), (286491, 286491, 1, 1, 'Manex Adventuring Protection System - Boots (Camo Variant)', 286485), (286409, 286409, 1, 1, 'Manex Adventuring Protection System - Boots (Purple/Grey Variant)', 286371), (286391, 286391, 1, 1, 'Manex Adventuring Protection System - Gloves (Black Variant)', 286373), (286318, 286318, 1, 1, 'Manex Adventuring Protection System - Gloves (Black/Orange Variant)', 286372), (286517, 286517, 1, 1, 'Manex Adventuring Protection System - Gloves (Blue/Black Variant)', 286505), (286402, 286402, 1, 1, 'Manex Adventuring Protection System - Gloves (Blue/Tan Variant)', 286374), (286489, 286489, 1, 1, 'Manex Adventuring Protection System - Gloves (Camo Variant)', 286486), (286407, 286407, 1, 1, 'Manex Adventuring Protection System - Gloves (Purple/Grey Variant)', 286375), (286394, 286394, 1, 1, 'Manex Adventuring Protection System - Helmet (Black Variant)', 286377), (286322, 286322, 1, 1, 'Manex Adventuring Protection System - Helmet (Black/Orange Variant)', 286376), (286514, 286514, 1, 1, 'Manex Adventuring Protection System - Helmet (Blue/Black Variant)', 286504), (286399, 286399, 1, 1, 'Manex Adventuring Protection System - Helmet (Blue/Tan Variant)', 286378), (286492, 286492, 1, 1, 'Manex Adventuring Protection System - Helmet (Camo Variant)', 286479), (286410, 286410, 1, 1, 'Manex Adventuring Protection System - Helmet (Purple/Grey Variant)', 286379), (286395, 286395, 1, 1, 'Manex Adventuring Protection System - Over Armour (Black Variant)', 286361), (286323, 286323, 1, 1, 'Manex Adventuring Protection System - Over Armour (Black/Orange Variant)', 286360), (286513, 286513, 1, 1, 'Manex Adventuring Protection System - Over Armour (Blue/Black Variant)', 286509), (286398, 286398, 1, 1, 'Manex Adventuring Protection System - Over Armour (Blue/Tan Variant)', 286362), (286493, 286493, 1, 1, 'Manex Adventuring Protection System - Over Armour (Camo Variant)', 286483), (286411, 286411, 1, 1, 'Manex Adventuring Protection System - Over Armour (Purple/Grey Variant)', 286363), (286396, 286396, 1, 1, 'Manex Adventuring Protection System - Over Armour with Pack (Black Variant)', 286357), (286324, 286324, 1, 1, 'Manex Adventuring Protection System - Over Armour with Pack (Black/Orange Variant)', 286388), (286512, 286512, 1, 1, 'Manex Adventuring Protection System - Over Armour with Pack (Blue/Black Variant)', 286508), (286397, 286397, 1, 1, 'Manex Adventuring Protection System - Over Armour with Pack (Blue/Tan Variant)', 286358), (286494, 286494, 1, 1, 'Manex Adventuring Protection System - Over Armour with Pack (Camo Variant)', 286482), (286412, 286412, 1, 1, 'Manex Adventuring Protection System - Over Armour with Pack (Purple/Grey Variant)', 286359), (286389, 286389, 1, 1, 'Manex Adventuring Protection System - Sleeves (Black Variant)', 286385), (286316, 286316, 1, 1, 'Manex Adventuring Protection System - Sleeves (Black/Orange Variant)', 286384), (286519, 286519, 1, 1, 'Manex Adventuring Protection System - Sleeves (Blue/Black Variant)', 286510), (286404, 286404, 1, 1, 'Manex Adventuring Protection System - Sleeves (Blue/Tan Variant)', 286386), (286487, 286487, 1, 1, 'Manex Adventuring Protection System - Sleeves (Camo Variant)', 286481), (286405, 286405, 1, 1, 'Manex Adventuring Protection System - Sleeves (Purple/Grey Variant)', 286387), (286392, 286392, 1, 1, 'Manex Adventuring Protection System - Torso (Black Variant)', 286365), (286319, 286319, 1, 1, 'Manex Adventuring Protection System - Torso (Black/Orange Variant)', 286364), (286516, 286516, 1, 1, 'Manex Adventuring Protection System - Torso (Blue/Black Variant)', 286507), (286401, 286401, 1, 1, 'Manex Adventuring Protection System - Torso (Blue/Tan Variant)', 286366), (286490, 286490, 1, 1, 'Manex Adventuring Protection System - Torso (Camo Variant)', 286484), (286408, 286408, 1, 1, 'Manex Adventuring Protection System - Torso (Purple/Grey Variant)', 286367), (286390, 286390, 1, 1, 'Manex Adventuring Protection System - Trousers (Black Variant)', 286381), (286317, 286317, 1, 1, 'Manex Adventuring Protection System - Trousers (Black/Orange Variant)', 286380), (286518, 286518, 1, 1, 'Manex Adventuring Protection System - Trousers (Blue/Black Variant)', 286503), (286403, 286403, 1, 1, 'Manex Adventuring Protection System - Trousers (Blue/Tan Variant)', 286382), (286488, 286488, 1, 1, 'Manex Adventuring Protection System - Trousers (Camo Variant)', 286480), (286406, 286406, 1, 1, 'Manex Adventuring Protection System - Trousers (Purple/Grey Variant)', 286383), (159026, 159027, 41, 80, 'Manex Catastrophe April', 33153), (159030, 159031, 121, 160, 'Manex Catastrophe August', 33153), (159034, 159034, 200, 200, 'Manex Catastrophe December', 33153), (159024, 159025, 1, 40, 'Manex Catastrophe February', 33153), (159028, 159029, 81, 120, 'Manex Catastrophe June', 33153), (159032, 159033, 161, 199, 'Manex Catastrophe October', 33153), (284690, 284690, 1, 1, 'Manex Ear Protection Units', 284594), (124487, 124488, 1, 39, 'Manex SD 4004', 13311), (124489, 124490, 40, 79, 'Manex SD 4004 (Mist reception sorrow)', 13311), (124491, 124492, 80, 131, 'Manex SD 4004 Black Liner', 13311), (124493, 124493, 132, 132, 'Manex SD 4004 Blank Liner', 13311), (124496, 124497, 50, 71, 'Manex STR 77', 13322), (124502, 124502, 147, 147, 'Manex STR 77 Neverland', 13322), (124498, 124499, 72, 98, 'Manex STR 77 Shagma Edition', 13322), (124500, 124501, 99, 146, 'Manex STR 77 Utopia Edition', 13322), (295879, 295879, 1, 1, 'Manex Small Particle Accelerator', 245483), (295880, 295880, 1, 1, 'Manex Small Particle Accelerator', 245483), (287132, 287132, 1, 1, 'Manex Sound Enhancement Units', 287213), (245157, 245158, 150, 174, 'Mangler Claw', 13344), (245166, 245166, 175, 175, 'Mangler Claw', 13344), (157982, 157982, 1, 1, 'Manneken Beer', 157930), (203834, 203841, 60, 200, 'Manta - A.V.', 204153), (203829, 203830, 100, 200, 'Manta - Neo Concept', 204155), (203832, 204157, 80, 200, 'Manta - Sportline', 204156), (247762, 247762, 100, 100, 'Manteze Scout Nasal Membrane', 247761), (157947, 157947, 190, 190, 'Mantis Egg', 158274), (164429, 164430, 100, 119, 'Mantis Predator Blade', 269399), (157760, 157760, 185, 185, 'Mantis Scissors', 158238), (116644, 116644, 1, 1, 'Map - 4 Holes', 100318), (116645, 116645, 1, 1, 'Map - Aegean', 100318), (116673, 116673, 1, 1, 'Map - Andromeda', 100318), (116647, 116647, 1, 1, 'Map - Athen West', 100318), (116663, 116663, 1, 1, 'Map - Avalon', 100318), (116662, 116662, 1, 1, 'Map - Bay of Rome', 100318), (116664, 116664, 1, 1, 'Map - Belial Forest', 100318), (116691, 116691, 1, 1, 'Map - Borealis City', 100318), (116682, 116682, 1, 1, 'Map - Broken Crest', 100318), (116648, 116648, 1, 1, 'Map - Broken Shores', 100318), (116649, 116649, 1, 1, 'Map - Central Artery Valley', 100318), (116675, 116675, 1, 1, 'Map - Clondyke', 100318), (256534, 256534, 1, 1, 'Map - Coast of Peace', 100318), (256535, 256535, 1, 1, 'Map - Coast of Tranquility', 100318), (116650, 116650, 1, 1, 'Map - Deep Artery Valley', 100318), (116651, 116651, 1, 1, 'Map - Eastern Fouls Plains', 100318), (116646, 116646, 1, 1, 'Map - Full Athen Shire', 100318), (116665, 116665, 1, 1, 'Map - Galway County', 100318), (143886, 143886, 1, 1, 'Map - Holes in the Wall', 100318), (116652, 116652, 1, 1, 'Map - Lush Fields', 100318), (116666, 116666, 1, 1, 'Map - Milky Way', 100318), (116653, 116653, 1, 1, 'Map - Mort', 100318), (116676, 116676, 1, 1, 'Map - Mutan Domain', 100318), (151754, 151754, 1, 1, 'Map - Newland', 100318), (116667, 116667, 1, 1, 'Map - Newland City', 100318), (116654, 116654, 1, 1, 'Map - Newland Desert', 100318), (116674, 116674, 1, 1, 'Map - Old Athens', 100318), (116668, 116668, 1, 1, 'Map - Omni Forest', 100318), (116677, 116677, 1, 1, 'Map - Omni-1 - HQ', 100318), (116686, 116686, 1, 1, 'Map - Omni-1 - Trader District', 100318), (116656, 116656, 1, 1, 'Map - Omni-1 Entertainment District', 100318), (116655, 116655, 1, 1, 'Map - Perpetual Wastelands', 100318), (116678, 116678, 1, 1, 'Map - Plains of Salt', 100318), (116669, 116669, 1, 1, 'Map - Pleasant Meadows', 100318), (116687, 116687, 1, 1, 'Map - Rome Blue District', 100318), (116679, 116679, 1, 1, 'Map - Rome Green District', 100318), (116688, 116688, 1, 1, 'Map - Rome Red District', 100318), (116670, 116670, 1, 1, 'Map - Southern Artery Valley', 100318), (116657, 116657, 1, 1, 'Map - Southern Fouls Hills', 100318), (116658, 116658, 1, 1, 'Map - Stret East Bank', 100318), (116680, 116680, 1, 1, 'Map - Stret West Bank', 100318), (116671, 116671, 1, 1, 'Map - The Longest Road', 100318), (116689, 116689, 1, 1, 'Map - The Reck', 100318), (116681, 116681, 1, 1, 'Map - The Spur', 100318), (116690, 116690, 1, 1, 'Map - Three Craters', 100318), (116659, 116659, 1, 1, 'Map - Tir City', 100318), (116660, 116660, 1, 1, 'Map - Tir County', 100318), (116672, 116672, 1, 1, 'Map - Upper Stret East Bank', 100318), (116661, 116661, 1, 1, 'Map - Varmint Woods', 100318), (101599, 101600, 1, 200, 'Map Navig Cluster - Bright (Head)', 35987), (101597, 101598, 1, 200, 'Map Navig Cluster - Faded (Ear)', 35986), (101601, 101602, 1, 200, 'Map Navig Cluster - Shiny (Eye)', 35988), (165777, 165778, 201, 300, 'Map Navig Refined Cluster - Bright (Head)', 35987), (165775, 165776, 201, 300, 'Map Navig Refined Cluster - Faded (Ear)', 35986), (165779, 165780, 201, 300, 'Map Navig Refined Cluster - Shiny (Eye)', 35988), (116692, 116692, 1, 1, 'Map Reader Upgrade - Machines', 100320), (116684, 116684, 1, 1, 'Map Reader Upgrade - Monsters', 100320), (116685, 116685, 1, 1, 'Map Reader Upgrade - People', 100320), (116683, 116683, 1, 1, 'Map Reader Upgrade - Side', 100320), (116694, 116694, 1, 1, 'Map Reader Upgrade -Directional Arrow', 100320), (158590, 158591, 120, 200, 'Maple Blaze - Special Arrows', 33172), (119204, 119204, 1, 1, 'Marble Jar', 119183), (249811, 249811, 1, 1, 'Marciello''s ID Scanner', 156512), (160467, 160464, 1, 200, 'Marcus Divaad Web Cloak', 160451), (249707, 249707, 1, 1, 'Marius'' Black and White Disco Shoes', 255344), (226881, 226881, 1, 1, 'Mark of Sufferance', 239149), (226895, 226895, 1, 1, 'Mark of Vengeance', 239127), (306026, 306026, 1, 1, 'Mark of the Bloodless', 96116), (236655, 236655, 1, 1, 'Mark of the Challenger', 151033), (245865, 245865, 250, 250, 'Mark of the Fisher King', 100313), (236659, 236659, 1, 1, 'Mark of the Heartless', 151033), (236658, 236658, 1, 1, 'Mark of the Ice Golem', 151033), (236656, 236656, 1, 1, 'Mark of the Lost Souls', 151033), (236654, 236654, 1, 1, 'Mark of the Menace', 151033), (226900, 226900, 1, 1, 'Mark of the Unclean', 239131), (226903, 226903, 1, 1, 'Mark of the Unhallowed', 239033), (236657, 236657, 1, 1, 'Mark of the Watcher', 151033), (294562, 294562, 1, 1, 'Marriage Certificate', 295024), (294563, 294563, 1, 1, 'Marriage Certificate', 295024), (294564, 294564, 1, 1, 'Marriage Certificate', 295024), (294565, 294565, 1, 1, 'Marriage Certificate', 295024), (294566, 294566, 1, 1, 'Marriage Certificate', 295024), (136606, 136607, 1, 200, 'Marriage Ring', 286189), (290190, 290190, 1, 1, 'Martial Artist Action Figure', 290562), (270762, 270762, 1, 1, 'Martial Artist Nanodeck', 270749), (248262, 248262, 1, 1, 'Martial Artist Nanoprogram Container', 292139), (290090, 290090, 1, 1, 'Martial Artist Shirt', 287356), (43382, 43382, 1, 1, 'Martial Artist: Startup Crystal - Lesser Controlled Rage', 12226), (101396, 101397, 1, 200, 'Martial Arts Cluster - Bright (Feet)', 35981), (101394, 101395, 1, 200, 'Martial Arts Cluster - Faded (Left-Hand)', 35980), (101398, 101399, 1, 200, 'Martial Arts Cluster - Shiny (Right-Hand)', 35982), (43712, 43713, 1, 500, 'Martial Arts Item', 11708), (211349, 211350, 1, 99, 'Martial Arts Item', 11708), (211352, 211353, 1, 99, 'Martial Arts Item', 11708), (211355, 211356, 1, 500, 'Martial Arts Item', 11708), (211357, 211358, 1, 500, 'Martial Arts Item', 11708), (211359, 211360, 1, 500, 'Martial Arts Item', 11708), (211361, 211362, 1, 500, 'Martial Arts Item', 11708), (211363, 211364, 1, 500, 'Martial Arts Item', 11708), (211365, 211366, 1, 500, 'Martial Arts Item', 11708), (144745, 144745, 100, 100, 'Martial Arts Item', 11708), (211350, 211351, 100, 500, 'Martial Arts Item', 11708), (211353, 211354, 100, 500, 'Martial Arts Item', 11708), (277901, 277902, 1, 300, 'Martial Arts Memory Cell', 276922), (165537, 165538, 201, 300, 'Martial Arts Refined Cluster - Bright (Feet)', 35981), (165535, 165536, 201, 300, 'Martial Arts Refined Cluster - Faded (Left-Hand)', 35980), (165539, 165540, 201, 300, 'Martial Arts Refined Cluster - Shiny (Right-Hand)', 35982), (278370, 278371, 1, 199, 'Martial Arts Skill NCU (1/6)', 276930), (278372, 278373, 200, 299, 'Martial Arts Skill NCU (1/6)', 276930), (278374, 278374, 300, 300, 'Martial Arts Skill NCU (1/6)', 276930), (278375, 278376, 1, 199, 'Martial Arts Skill NCU (2/6)', 276931), (278377, 278378, 200, 299, 'Martial Arts Skill NCU (2/6)', 276931), (278379, 278379, 300, 300, 'Martial Arts Skill NCU (2/6)', 276931), (278380, 278381, 1, 199, 'Martial Arts Skill NCU (3/6)', 276932), (278382, 278383, 200, 299, 'Martial Arts Skill NCU (3/6)', 276932), (278384, 278384, 300, 300, 'Martial Arts Skill NCU (3/6)', 276932), (278385, 278386, 1, 199, 'Martial Arts Skill NCU (4/6)', 276933), (278387, 278388, 200, 299, 'Martial Arts Skill NCU (4/6)', 276933), (278389, 278389, 300, 300, 'Martial Arts Skill NCU (4/6)', 276933), (278390, 278391, 1, 199, 'Martial Arts Skill NCU (5/6)', 276934), (278392, 278393, 200, 299, 'Martial Arts Skill NCU (5/6)', 276934), (278394, 278394, 300, 300, 'Martial Arts Skill NCU (5/6)', 276934), (278395, 278396, 1, 199, 'Martial Arts Skill NCU (6/6)', 276935), (278397, 278398, 200, 299, 'Martial Arts Skill NCU (6/6)', 276935), (278399, 278399, 300, 300, 'Martial Arts Skill NCU (6/6)', 276935), (269369, 269369, 1, 1, 'Marty''s Red & Blue Jump Suit', 269368), (163563, 163563, 1, 1, 'Marveletta''s Love-chip', 149939), (163562, 163562, 1, 1, 'Marvin''s Love-chip', 149940), (121696, 121697, 139, 161, 'Mass Lead Bolter 42mm', 21149), (137492, 137492, 1, 1, 'Mass Lead Bolter 42mm Construction Manual', 136329), (155588, 155588, 70, 70, 'Mass Relocating Robot', 155928), (155924, 155924, 250, 250, 'Mass Relocating Robot (Improve Chrushing Weapons)', 155927), (155909, 155909, 1, 1, 'Mass Relocating Robot (Improve Crushing Weapons)', 155927), (155593, 155594, 1, 250, 'Mass Relocating Robot (Improve Slashing Weapons)', 155929), (155925, 155923, 1, 250, 'Mass Relocating Robot (Improve Thrusting Weapons)', 155930), (162217, 162218, 1, 250, 'Mass Relocating Robot (Shape Hard Armor)', 163856), (162219, 162220, 1, 250, 'Mass Relocating Robot (Shape Soft Armor)', 163857), (245736, 245737, 220, 259, 'Massive Bolt Charger', 233213), (245738, 245738, 260, 260, 'Massive Bolt Charger', 233213), (203052, 203053, 40, 200, 'Massive Cannon Turret', 202204), (203056, 203057, 40, 200, 'Massive Cannon Turret', 202204), (203054, 203055, 201, 250, 'Massive Cannon Turret', 202204), (203058, 203059, 201, 250, 'Massive Cannon Turret', 202204), (204853, 204854, 10, 50, 'Massive Steel Body Armor', 22972), (204855, 204855, 10, 10, 'Massive Steel Body Armor', 22972), (152774, 152775, 161, 199, 'Master Click Stabber', 13346), (269960, 269960, 250, 250, 'Master Combat Program', 269949), (130050, 130050, 200, 200, 'Master G-Staff', 136738), (269961, 269961, 250, 250, 'Master Melee Program', 269948), (269959, 269959, 250, 250, 'Master Nano Technology Program', 269950), (165200, 165200, 200, 200, 'Master of Combustion', 33160), (281233, 281233, 1, 1, 'Master''s Cut Gem', 281223), (245740, 245740, 250, 250, 'Master''s Eye', 245739), (281217, 281217, 1, 1, 'Master''s Gem', 281224), (281203, 281203, 1, 1, 'Master''s Signet of The Apocalypse', 281195), (199392, 199392, 270, 270, 'Master-Level Bau Charger Armor Boots', 22878), (199413, 199413, 270, 270, 'Master-Level Bau Charger Armor Gloves', 22939), (199434, 199434, 270, 270, 'Master-Level Bau Charger Armor Helmet', 31738), (199455, 199455, 270, 270, 'Master-Level Bau Charger Armor Pants', 22928), (199476, 199476, 270, 270, 'Master-Level Bau Charger Armor Sleeves', 22889), (199497, 199497, 270, 270, 'Master-Level Bau Charger Body Armor', 22981), (199518, 199518, 270, 270, 'Master-Level Bau Charger Female Body Armor', 22942), (156024, 156025, 1, 200, 'MasterComm - Personalization Device', 11618), (267780, 267780, 250, 250, 'Masterpiece Ancient Bracer', 290854), (267696, 267696, 250, 250, 'Masterpiece Ancient Combat Tuner', 218764), (267798, 267798, 250, 250, 'Masterpiece Ancient Defensive Bracer', 290855), (267707, 267707, 250, 250, 'Masterpiece Ancient Manual Aiming Aid', 218778), (305036, 305036, 200, 200, 'Masterwork Tool of Torturing', 85160), (159079, 159079, 7, 7, 'Mate - Sugarfree Rum', 37934), (160471, 160472, 1, 200, 'Mathis Web Cloak', 160451), (283752, 283752, 1, 1, 'Matrix Grid Stream', 285136), (101539, 101540, 1, 200, 'Matt.Metam Cluster - Bright (Chest)', 36014), (101537, 101538, 1, 200, 'Matt.Metam Cluster - Faded (Left-Arm)', 36013), (101541, 101542, 1, 200, 'Matt.Metam Cluster - Shiny (Head)', 36015), (165699, 165700, 201, 300, 'Matt.Metam Refined Cluster - Bright (Chest)', 36014), (165697, 165698, 201, 300, 'Matt.Metam Refined Cluster - Faded (Left-Arm)', 36013), (165701, 165702, 201, 300, 'Matt.Metam Refined Cluster - Shiny (Head)', 36015), (101410, 101411, 1, 200, 'Matter Crea Cluster - Bright (Right-Hand)', 36014), (101408, 101409, 1, 200, 'Matter Crea Cluster - Faded (Eye)', 36013), (101412, 101413, 1, 200, 'Matter Crea Cluster - Shiny (Head)', 36015), (165717, 165718, 201, 300, 'Matter Crea Refined Cluster - Bright (Right-Hand)', 36014), (165715, 165716, 201, 300, 'Matter Crea Refined Cluster - Faded (Eye)', 36013), (165719, 165720, 201, 300, 'Matter Crea Refined Cluster - Shiny (Head)', 36015), (277832, 277833, 1, 300, 'Matter Creations Memory Cell', 276920), (277834, 277835, 1, 300, 'Matter Metamorphosis Memory Cell', 276920), (165371, 165372, 75, 89, 'Mature Spider Poison Gland', 38055), (129648, 129649, 121, 140, 'Mature Wen-Wen', 85161), (245784, 245785, 220, 259, 'Maul of Gwyddawg', 218716), (245786, 245786, 260, 260, 'Maul of Menestyr', 218716), (157712, 157713, 100, 150, 'Mausser Chemical Streamer', 33154), (157723, 157723, 1, 1, 'Mausser Chemical Streamer - A Variation of the MPS', 154678), (157719, 157720, 1, 200, 'Mausser Chemical Streamer - Step 1', 157697), (157721, 157722, 1, 200, 'Mausser Chemical Streamer - Step 2', 157698), (306201, 306201, 250, 250, 'Mausser Particle Railgun', 31807), (122433, 122434, 81, 100, 'Mausser Particle Streamer', 31807), (271927, 271928, 1, 300, 'Mausser Particle Streamer - 000', 31807), (271931, 271932, 1, 300, 'Mausser Particle Streamer - 404', 31807), (271933, 271934, 1, 300, 'Mausser Particle Streamer - C04', 31807), (157717, 157718, 1, 200, 'Mausser Particle Streamer Base', 157696), (140869, 140869, 1, 1, 'Mausser Particle Streamer Construction Manual', 37933), (206049, 206049, 1, 1, 'Maw of the Abyss', 13340), (101809, 101810, 1, 200, 'Max Health Cluster - Bright (Waist)', 35984), (101807, 101808, 1, 200, 'Max Health Cluster - Faded (Leg)', 35983), (101811, 101812, 1, 200, 'Max Health Cluster - Shiny (Chest)', 35985), (165981, 165982, 201, 300, 'Max Health Refined Cluster - Bright (Waist)', 35984), (165979, 165980, 201, 300, 'Max Health Refined Cluster - Faded (Leg)', 35983), (165983, 165984, 201, 300, 'Max Health Refined Cluster - Shiny (Chest)', 35985), (166001, 166002, 1, 200, 'Max NCU Jobe Cluster - Bright (Right-Wrist)', 36020), (165997, 165998, 1, 200, 'Max NCU Jobe Cluster - Faded (Leg)', 36019), (166005, 166006, 1, 200, 'Max NCU Jobe Cluster - Shiny (Ear)', 36021), (166003, 166004, 201, 300, 'Max NCU Refined Jobe Cluster - Bright (Right-Wrist)', 36020), (165999, 166000, 201, 300, 'Max NCU Refined Jobe Cluster - Faded (Leg)', 36019), (166007, 166008, 201, 300, 'Max NCU Refined Jobe Cluster - Shiny (Ear)', 36021), (101815, 101816, 1, 200, 'Max Nano Cluster - Bright (Waist)', 35993), (101813, 101814, 1, 200, 'Max Nano Cluster - Faded (Chest)', 35992), (101817, 101818, 1, 200, 'Max Nano Cluster - Shiny (Head)', 35994), (165987, 165988, 201, 300, 'Max Nano Refined Cluster - Bright (Waist)', 35993), (165985, 165986, 201, 300, 'Max Nano Refined Cluster - Faded (Chest)', 35992), (165989, 165990, 201, 300, 'Max Nano Refined Cluster - Shiny (Head)', 35994), (165116, 165117, 1, 200, 'May Fly Throwing Grenade', 131253), (287340, 287340, 1, 1, 'Means''s T-shirt', 287354), (288606, 288606, 1, 1, 'Means''s T-shirt Spawner', 287354), (256417, 256417, 1, 1, 'Measurements - Boots', 154679), (256419, 256419, 1, 1, 'Measurements - Breastplate', 154679), (256418, 256418, 1, 1, 'Measurements - Gloves', 154679), (256420, 256420, 1, 1, 'Measurements - Helmet', 154679), (256421, 256421, 1, 1, 'Measurements - Life Support System', 154679), (256415, 256415, 1, 1, 'Measurements - Pants', 154679), (256422, 256422, 1, 1, 'Measurements - Shoulder Pads', 154679), (256416, 256416, 1, 1, 'Measurements - Sleeves', 154679), (284651, 284651, 1, 1, 'Meatballs and Mashed Potatoes', 284856), (267657, 267657, 1, 1, 'Meatshield Of Divided Loyalty', 37931), (101527, 101528, 1, 200, 'Mech. Engi Cluster - Bright (Eye)', 36014), (101525, 101526, 1, 200, 'Mech. Engi Cluster - Faded (Right-Arm)', 36013), (101529, 101530, 1, 200, 'Mech. Engi Cluster - Shiny (Head)', 36015), (165687, 165688, 201, 300, 'Mech. Engi Refined Cluster - Bright (Eye)', 36014), (165685, 165686, 201, 300, 'Mech. Engi Refined Cluster - Faded (Right-Arm)', 36013), (165689, 165690, 201, 300, 'Mech. Engi Refined Cluster - Shiny (Head)', 36015), (164548, 164548, 40, 40, 'Mechanical Analyzer', 156512), (215247, 215247, 100, 100, 'Mechanical Engineering Logistics Assistant', 215258), (55690, 55689, 1, 200, 'Mechanical Engineering Tutoring Device', 300883), (295316, 295316, 1, 1, 'Mechpuppy Pet (Test Reward Series 1)', 220432), (251902, 251902, 1, 1, 'Medallion', 255690), (244223, 244223, 250, 250, 'Mediative Gloves of the Aquarius', 99790), (120628, 120628, 1, 1, 'Medical Cloak', 120629), (267738, 267738, 250, 250, 'Medical Knowledge Crystal', 151030), (285259, 285259, 1, 1, 'Medical Supply Box Transformation', 285253), (99241, 99241, 1, 1, 'Medium Backpack', 99659), (41076, 41076, 1, 1, 'Medium Black Leather Sleeves', 41172), (225764, 225765, 1, 300, 'Medium Distance Weapons Guide', 205503), (142886, 142887, 1, 200, 'Medium Handle', 130875), (81756, 81756, 40, 40, 'Medium Level Clan Application Form', 81771), (99727, 99727, 40, 40, 'Medium Level Omni-Tek Application Form', 81773), (165209, 165209, 200, 200, 'Medium Notum Tank Armor', 22398), (225777, 225778, 1, 300, 'Medium Ranged Weapons Guide', 205504), (130637, 130637, 1, 1, 'Medium Rare Steak Plate', 37979), (123046, 123047, 81, 100, 'Medium Shotgun', 13340), (271715, 271716, 1, 300, 'Medium Shotgun - 000', 13340), (271719, 271720, 1, 300, 'Medium Shotgun - 401', 13340), (271687, 271688, 1, 300, 'Medium Shotgun - C01', 13340), (41078, 41078, 1, 1, 'Medium Sleeves with a Grey Waterlily Print', 37117), (41080, 41080, 1, 1, 'Medium Sleeves with a Waterlily Print', 37118), (234459, 234459, 1, 1, 'Medusa Effect', 130862), (200371, 200371, 1, 1, 'Medusa Ring', 84059), (122186, 122187, 81, 100, 'Megajolt', 13322), (271729, 271730, 1, 300, 'Megajolt - 000', 13322), (271733, 271734, 1, 300, 'Megajolt - 401', 13322), (271735, 271736, 1, 300, 'Megajolt - C01', 13322), (140291, 140291, 1, 1, 'Megajolt Construction Manual', 37933), (164030, 164031, 49, 199, 'Meibutsu Dai-Katana', 13326), (164015, 164016, 49, 199, 'Meibutsu Daito of Aptitude', 113983), (164003, 164004, 1, 48, 'Meibutsu Daito of Heart and Fist', 113983), (164005, 164006, 49, 199, 'Meibutsu Daito of Heart and Fist', 113983), (164007, 164007, 200, 200, 'Meibutsu Daito of Heart and Fist', 113983), (163998, 163999, 1, 48, 'Meibutsu Daito of the Coruscating Heart', 113983), (164000, 164001, 49, 199, 'Meibutsu Daito of the Coruscating Heart', 113983), (164002, 164002, 200, 200, 'Meibutsu Daito of the Coruscating Heart', 113983), (164023, 164024, 1, 48, 'Meibutsu Daito of the Hard-Handed', 113983), (164025, 164026, 49, 199, 'Meibutsu Daito of the Hard-Handed', 113983), (164027, 164027, 200, 200, 'Meibutsu Daito of the Hard-Handed', 113983), (164018, 164019, 1, 48, 'Meibutsu Daito of the Ninja Trainee', 113983), (164020, 164021, 49, 199, 'Meibutsu Daito of the Ninja Trainee', 113983), (164022, 164022, 200, 200, 'Meibutsu Daito of the Ninja Trainee', 113983), (164035, 164036, 49, 199, 'Meibutsu Katana of Celerity', 13326), (164045, 164046, 49, 199, 'Meibutsu Katana of Chance', 13326), (164040, 164041, 49, 199, 'Meibutsu Katana of the Creep', 13326), (216340, 216340, 200, 200, 'Meister''s Reinforced Suit', 296302), (199541, 199541, 280, 280, 'Meitnerium Periodic Tech Armor Boots', 22886), (199562, 199562, 280, 280, 'Meitnerium Periodic Tech Armor Gloves', 22933), (199583, 199583, 280, 280, 'Meitnerium Periodic Tech Armor Helmet', 31731), (199605, 199605, 280, 280, 'Meitnerium Periodic Tech Armor Pants', 22912), (199626, 199626, 280, 280, 'Meitnerium Periodic Tech Armor Sleeves', 22911), (199647, 199647, 280, 280, 'Meitnerium Periodic Tech Body Armor', 22990), (199668, 199668, 280, 280, 'Meitnerium Periodic Tech Female Body Armor', 22909), (224715, 224715, 110, 110, 'Melancholic Brain Spirit of Offence', 230992), (224922, 224922, 110, 110, 'Melancholic Heart Spirit of Knowledge', 230984), (225203, 225203, 110, 110, 'Melancholic Left Hand Spirit of Defence', 230994), (225041, 225041, 110, 110, 'Melancholic Left Limb Spirit of Essence', 230995), (225022, 225022, 110, 110, 'Melancholic Left Limb Spirit of Strength', 230995), (224987, 224987, 110, 110, 'Melancholic Left Limb Spirit of Understanding', 230995), (225004, 225004, 110, 110, 'Melancholic Left Limb Spirit of Weakness', 230995), (224853, 224853, 110, 110, 'Melancholic Midriff Spirit of Essence', 230976), (224888, 224888, 110, 110, 'Melancholic Midriff Spirit of Weakness', 230976), (225128, 225128, 110, 110, 'Melancholic Right Hand Strength Spirit', 231002), (224804, 224804, 110, 110, 'Melancholic Right Limb Spirit of Strength', 231004), (224820, 224820, 110, 110, 'Melancholic Right Limb Spirit of Weakness', 231004), (224752, 224752, 110, 110, 'Melancholic Spirit of Knowledge Whispered', 230986), (225110, 225110, 110, 110, 'Melancholic Spirit of Left Wrist Strength', 231000), (225059, 225059, 110, 110, 'Melancholic Spirit of Right Wrist Offence', 231006), (224768, 224768, 110, 110, 'Melancholic Spirit of Strength Whispered', 230986), (224651, 224651, 110, 110, 'Melancholic Spirit of True Seeing', 230988), (269940, 269940, 250, 250, 'Melee Attuned Permafrost Armor Component', 269936), (101347, 101348, 1, 200, 'Melee Ener Cluster - Bright (Left-Wrist)', 36014), (101345, 101346, 1, 200, 'Melee Ener Cluster - Faded (Right-Wrist)', 36013), (101349, 101350, 1, 200, 'Melee Ener Cluster - Shiny (Head)', 36015), (165561, 165562, 201, 300, 'Melee Ener Refined Cluster - Bright (Left-Wrist)', 36014), (165559, 165560, 201, 300, 'Melee Ener Refined Cluster - Faded (Right-Wrist)', 36013), (165563, 165564, 201, 300, 'Melee Ener Refined Cluster - Shiny (Head)', 36015), (277913, 277914, 1, 300, 'Melee Energy Memory Cell', 276922), (278460, 278461, 1, 199, 'Melee Energy Skill NCU (1/6)', 276930), (278462, 278463, 200, 299, 'Melee Energy Skill NCU (1/6)', 276930), (278464, 278464, 300, 300, 'Melee Energy Skill NCU (1/6)', 276930), (278465, 278466, 1, 199, 'Melee Energy Skill NCU (2/6)', 276931), (278467, 278468, 200, 299, 'Melee Energy Skill NCU (2/6)', 276931), (278469, 278469, 300, 300, 'Melee Energy Skill NCU (2/6)', 276931), (278470, 278471, 1, 199, 'Melee Energy Skill NCU (3/6)', 276932), (278472, 278473, 200, 299, 'Melee Energy Skill NCU (3/6)', 276932), (278474, 278474, 300, 300, 'Melee Energy Skill NCU (3/6)', 276932), (278475, 278476, 1, 199, 'Melee Energy Skill NCU (4/6)', 276933), (278477, 278478, 200, 299, 'Melee Energy Skill NCU (4/6)', 276933), (278479, 278479, 300, 300, 'Melee Energy Skill NCU (4/6)', 276933), (278480, 278481, 1, 199, 'Melee Energy Skill NCU (5/6)', 276934), (278482, 278483, 200, 299, 'Melee Energy Skill NCU (5/6)', 276934), (278484, 278484, 300, 300, 'Melee Energy Skill NCU (5/6)', 276934), (278485, 278486, 1, 199, 'Melee Energy Skill NCU (6/6)', 276935), (278487, 278488, 200, 299, 'Melee Energy Skill NCU (6/6)', 276935), (278489, 278489, 300, 300, 'Melee Energy Skill NCU (6/6)', 276935), (272276, 272277, 1, 300, 'Melee Energy Weapons Basic Upgrade Kit', 272250), (85464, 85465, 1, 250, 'Melee Energy Weapons Field Primer', 83387), (225756, 225757, 1, 300, 'Melee Fighter''s Control Manual', 205501), (225754, 225755, 1, 300, 'Melee Fighter''s Focus Manual', 205501), (225749, 225750, 1, 300, 'Melee Fighter''s Force Manual', 205501), (225747, 225748, 1, 300, 'Melee Fighter''s Skill Manual', 205501), (225751, 225752, 1, 300, 'Melee Fighter''s Speed Manual', 205501), (269947, 269947, 250, 250, 'Melee Program', 269948), (272312, 272313, 1, 300, 'Melee Weapons Adjustment Kit', 272251), (101485, 101486, 1, 200, 'Melee. Init Cluster - Bright (Leg)', 35981), (101483, 101484, 1, 200, 'Melee. Init Cluster - Faded (Waist)', 35980), (101487, 101488, 1, 200, 'Melee. Init Cluster - Shiny (Feet)', 35982), (165645, 165646, 201, 300, 'Melee. Init Refined Cluster - Bright (Leg)', 35981), (165643, 165644, 201, 300, 'Melee. Init Refined Cluster - Faded (Waist)', 35980), (165647, 165648, 201, 300, 'Melee. Init Refined Cluster - Shiny (Feet)', 35982), (101317, 101318, 1, 200, 'Melee/Ma AC Cluster - Bright (Waist)', 35984), (101315, 101316, 1, 200, 'Melee/Ma AC Cluster - Faded (Leg)', 35983), (101319, 101320, 1, 200, 'Melee/Ma AC Cluster - Shiny (Chest)', 35985), (165495, 165496, 201, 300, 'Melee/Ma AC Refined Cluster - Bright (Waist)', 35984), (165493, 165494, 201, 300, 'Melee/Ma AC Refined Cluster - Faded (Leg)', 35983), (165497, 165498, 201, 300, 'Melee/Ma AC Refined Cluster - Shiny (Chest)', 35985), (259988, 259988, 1, 1, 'Melted Circuit Board', 156555), (31523, 31523, 1, 1, 'Memberhip List', 81786), (31522, 31522, 500, 500, 'Membership List', 81786), (303116, 303116, 1, 1, 'Membership Placard - Duel?', 303149), (303115, 303115, 1, 1, 'Membership Placard - Go', 303150), (303117, 303117, 1, 1, 'Membership Placard - OP!', 303152), (303113, 303113, 1, 1, 'Membership Placard - Offline', 303151), (303114, 303114, 1, 1, 'Membership Placard - Stop', 303153), (303118, 303118, 1, 1, 'Membership Placard - brontoburger PLS', 303148), (247763, 247763, 100, 100, 'Membrane Pulp', 99236), (204603, 204603, 1, 1, 'Memory Loop', 119139), (278753, 278754, 1, 199, 'Memory NCU (1/6)', 276936), (278755, 278756, 200, 299, 'Memory NCU (1/6)', 276936), (278757, 278757, 300, 300, 'Memory NCU (1/6)', 276936), (278758, 278759, 1, 199, 'Memory NCU (2/6)', 276937), (278760, 278761, 200, 299, 'Memory NCU (2/6)', 276937), (278762, 278762, 300, 300, 'Memory NCU (2/6)', 276937), (278763, 278764, 1, 199, 'Memory NCU (3/6)', 276938), (278765, 278766, 200, 299, 'Memory NCU (3/6)', 276938), (278767, 278767, 300, 300, 'Memory NCU (3/6)', 276938), (278768, 278769, 1, 199, 'Memory NCU (4/6)', 276939), (278770, 278771, 200, 299, 'Memory NCU (4/6)', 276939), (278772, 278772, 300, 300, 'Memory NCU (4/6)', 276939), (278773, 278774, 1, 199, 'Memory NCU (5/6)', 276940), (278775, 278776, 200, 299, 'Memory NCU (5/6)', 276940), (278777, 278777, 300, 300, 'Memory NCU (5/6)', 276940), (278778, 278779, 1, 199, 'Memory NCU (6/6)', 276941), (278780, 278781, 200, 299, 'Memory NCU (6/6)', 276941), (278782, 278782, 300, 300, 'Memory NCU (6/6)', 276941), (252447, 252447, 1, 1, 'Memory Scrabble', 239173), (305516, 305516, 1, 1, 'Memory of Future Events', 119139), (163713, 163714, 1, 200, 'Memory of a Good Day', 151926), (247118, 247119, 1, 300, 'Memory-Wiped Kyr''Ozch Viralbots', 100331), (150954, 150955, 1, 199, 'Mendix Biomech AR-2', 114016), (150956, 150956, 200, 200, 'Mendix Biomech AR-2a', 114016), (281238, 281238, 1, 1, 'Merchant''s Cut Gem', 281223), (281222, 281222, 1, 1, 'Merchant''s Gem', 281224), (281208, 281208, 1, 1, 'Merchant''s Signet of The Apocalypse', 281195), (295604, 295604, 1, 1, 'Merchant''s Strongbox', 20412), (199529, 199529, 220, 220, 'Mercury Periodic Tech Armor Boots', 22886), (199550, 199550, 220, 220, 'Mercury Periodic Tech Armor Gloves', 22933), (199571, 199571, 220, 220, 'Mercury Periodic Tech Armor Helmet', 31731), (199593, 199593, 220, 220, 'Mercury Periodic Tech Armor Pants', 22912), (199614, 199614, 220, 220, 'Mercury Periodic Tech Armor Sleeves', 22911), (199635, 199635, 220, 220, 'Mercury Periodic Tech Body Armor', 22990), (199656, 199656, 220, 220, 'Mercury Periodic Tech Female Body Armor', 22909), (287145, 287145, 200, 200, 'Mercury Vapor Excitation Globe', 287221), (287147, 287147, 200, 200, 'Mercury-Based Temperature Gauge', 287464), (216303, 216303, 1, 1, 'Merit Board of the Angry Men', 216287), (216369, 216369, 1, 1, 'Merit Board of the Blue Wolf', 216287), (216363, 216363, 1, 1, 'Merit Board of the Long Distance Runner', 216287), (216370, 216370, 1, 1, 'Merit Board of the Rainbow Chrysanthemum', 216287), (248597, 248598, 81, 100, 'Merren Flamethrower', 19800), (263299, 263299, 205, 205, 'Mesmerizing Staff of Francois', 154363), (216364, 216364, 1, 1, 'Messenger Merit Board', 216287), (248356, 248356, 1, 1, 'Meta Roentgen Scanner', 253864), (121566, 121566, 1, 1, 'Meta Shield', 33150), (245722, 245722, 250, 250, 'Meta-Cerebellum Ring', 151933), (290184, 290184, 1, 1, 'Meta-Physicist Action Figure', 290563), (270763, 270763, 1, 1, 'Meta-Physicist Nanodeck', 270749), (248263, 248263, 1, 1, 'Meta-Physicist Nanoprogram Container', 292140), (290091, 290091, 1, 1, 'Meta-Physicist Shirt', 287356), (29193, 29193, 1, 1, 'Meta-Physicist: Startup Crystal - Mind Pain', 12224), (269377, 269377, 1, 1, 'Metaing''s Pink Pocket Knife', 269375), (287344, 287344, 1, 1, 'Metaing''s T-shirt', 287355), (168931, 168931, 200, 200, 'Metal Armlet of the Quartet', 41176), (87491, 87491, 1, 1, 'Metal Bikini', 96127), (216371, 216371, 1, 1, 'Metal Fungus Merit Board', 216287), (287135, 287135, 200, 200, 'Metal Grate', 287210), (87486, 87486, 1, 1, 'Metal Swimmingtrunks', 96133), (87484, 87484, 1, 1, 'Metal Swimmingtrunks with Holes', 96134), (87490, 87490, 1, 1, 'Metal Swimsuit', 96130), (152796, 152797, 1, 200, 'Metallic Hoop', 84059), (164393, 164394, 1, 200, 'Metallic Mantis Armor Boots', 13265), (164397, 164398, 1, 200, 'Metallic Mantis Armor Gloves', 13279), (164399, 164400, 1, 200, 'Metallic Mantis Armor Legs', 13294), (164395, 164396, 1, 200, 'Metallic Mantis Armor Sleeves', 13227), (164392, 164349, 1, 200, 'Metallic Mantis Body Armor', 13249), (164487, 164488, 1, 200, 'Metallic Mantis Helmet', 31729), (164431, 164431, 120, 120, 'Metallic Mantis Predator Blade', 269399), (119218, 119218, 1, 1, 'Metallic Paper Bin', 119210), (268396, 268396, 1, 1, 'Metamorphic Petrology Scanner', 218749), (304032, 304032, 1, 1, 'Metamorphogenetic Body Armor - Black', 304065), (304038, 304038, 1, 1, 'Metamorphogenetic Body Armor - Green', 304071), (304044, 304044, 1, 1, 'Metamorphogenetic Body Armor - Pink', 304077), (304035, 304035, 1, 1, 'Metamorphogenetic Boots - Black', 304066), (304041, 304041, 1, 1, 'Metamorphogenetic Boots - Green', 304072), (304047, 304047, 1, 1, 'Metamorphogenetic Boots - Pink', 304078), (304030, 304030, 1, 1, 'Metamorphogenetic Facemask - Black', 304068), (304036, 304036, 1, 1, 'Metamorphogenetic Facemask - Green', 304074), (304042, 304042, 1, 1, 'Metamorphogenetic Facemask - Pink', 304080), (304034, 304034, 1, 1, 'Metamorphogenetic Gloves - Black', 304067), (304040, 304040, 1, 1, 'Metamorphogenetic Gloves - Green', 304073), (304046, 304046, 1, 1, 'Metamorphogenetic Gloves - Pink', 304079), (304033, 304033, 1, 1, 'Metamorphogenetic Legwear - Black', 304069), (304039, 304039, 1, 1, 'Metamorphogenetic Legwear - Green', 304075), (304045, 304045, 1, 1, 'Metamorphogenetic Legwear - Pink', 304081), (304031, 304031, 1, 1, 'Metamorphogenetic Sleeve - Black', 304064), (304037, 304037, 1, 1, 'Metamorphogenetic Sleeve - Green', 304070), (304043, 304043, 1, 1, 'Metamorphogenetic Sleeve - Pink', 304076), (271048, 271049, 1, 300, 'Metaphysic Energy Shield - 000', 33150), (271050, 271051, 1, 300, 'Metaphysic Energy Shield - 010', 33150), (271052, 271053, 1, 300, 'Metaphysic Energy Shield - 050', 33150), (271054, 271055, 1, 300, 'Metaphysic Energy Shield - 070', 33150), (271056, 271057, 1, 300, 'Metaphysic Energy Shield - 870', 33150), (121647, 121647, 200, 200, 'Metaphysical Spiked Axe', 21135), (215235, 215235, 100, 100, 'Metaphysicist NICS', 158233), (142844, 142845, 41, 110, 'Metaplast Mace', 13333), (227633, 227633, 50, 50, 'Metawater Repellent Spiritech Suit', 230855), (244204, 244204, 200, 200, 'Meteorite Spikes', 218708), (245275, 245275, 100, 100, 'Methyl Parathion', 100332), (215404, 215404, 1, 1, 'Metoric', 82197), (214201, 214201, 300, 300, 'Metropolis Blaster', 210173), (152281, 152282, 21, 40, 'Michael Patriot Ffi 29A', 21148), (153137, 153137, 1, 1, 'Michael Patriot Ffi 29A Construction Manual', 37932), (152291, 152292, 121, 140, 'Michael Patriot Ffi 29B', 21148), (153245, 153245, 1, 1, 'Michael Patriot Ffi 29B Construction Manual', 136332), (302753, 302753, 1, 1, 'Michi Armour Arms A', 31644), (303909, 303909, 1, 1, 'Michi Armour Arms B', 31644), (303919, 303919, 1, 1, 'Michi Armour Arms C', 31644), (303023, 303023, 1, 1, 'Michi Armour Back A', 245036), (303917, 303917, 1, 1, 'Michi Armour Back B', 245036), (303927, 303927, 1, 1, 'Michi Armour Back C', 245036), (302758, 302758, 1, 1, 'Michi Armour Boots A', 22884), (303914, 303914, 1, 1, 'Michi Armour Boots B', 22884), (303924, 303924, 1, 1, 'Michi Armour Boots C', 22884), (302757, 302757, 1, 1, 'Michi Armour Chest A', 31648), (303913, 303913, 1, 1, 'Michi Armour Chest B', 31648), (303923, 303923, 1, 1, 'Michi Armour Chest C', 31648), (302754, 302754, 1, 1, 'Michi Armour Gloves A', 31656), (303910, 303910, 1, 1, 'Michi Armour Gloves B', 31656), (303920, 303920, 1, 1, 'Michi Armour Gloves C', 31656), (303739, 303739, 1, 1, 'Michi Armour Hat A', 31734), (303918, 303918, 1, 1, 'Michi Armour Hat B', 31734), (303928, 303928, 1, 1, 'Michi Armour Hat C', 31734), (302756, 302756, 1, 1, 'Michi Armour Legwear A', 22919), (303912, 303912, 1, 1, 'Michi Armour Legwear B', 22919), (303922, 303922, 1, 1, 'Michi Armour Legwear C', 22919), (302776, 302776, 1, 1, 'Michi Armour Shoulder 1 A', 245036), (303915, 303915, 1, 1, 'Michi Armour Shoulder 1 B', 245036), (303925, 303925, 1, 1, 'Michi Armour Shoulder 1 C', 245036), (302777, 302777, 1, 1, 'Michi Armour Shoulder 2 A', 245036), (303916, 303916, 1, 1, 'Michi Armour Shoulder 2 B', 245036), (303926, 303926, 1, 1, 'Michi Armour Shoulder 2 C', 245036), (302755, 302755, 1, 1, 'Michi Armour Visor A', 31734), (303911, 303911, 1, 1, 'Michi Armour Visor B', 31734), (303921, 303921, 1, 1, 'Michi Armour Visor C', 31734), (293113, 293113, 1, 1, 'Michizure Nano Item', 273626), (302063, 302063, 1, 1, 'Michizure Nano Item HD Remix', 273626), (296452, 296452, 300, 300, 'Michizure''s +1 Hammer of Justice', 218716), (295603, 295603, 300, 300, 'Michizure''s Boomstick!', 264801), (301879, 301879, 1, 1, 'Michizure''s Plaything 2', 156598), (304143, 304143, 1, 1, 'Michizure''s Plaything 2', 156598), (295344, 295344, 1, 1, 'Michizure''s Shimmering Thought', 12253), (301873, 301873, 1, 1, 'Michizure''s Super Suit', 151875), (294015, 294015, 1, 1, 'Michizure''s T-shirt', 294014), (294016, 294016, 1, 1, 'Michizure''s T-shirt Spawner', 294014), (156764, 156764, 1, 1, 'Microphone', 156761), (155666, 155666, 1, 1, 'Microscopic Pulsating Nano Crystals', 156567), (292017, 292017, 1, 1, 'Midgar''s QQ Shirt', 293627), (206013, 206013, 1, 1, 'Might of the Revenant', 290523), (41015, 41015, 1, 1, 'Miiir', 41204), (41027, 41027, 1, 1, 'Miiir', 41197), (41029, 41029, 1, 1, 'Miiir', 41196), (41049, 41049, 1, 1, 'Miiir', 41194), (41050, 41050, 1, 1, 'Miiir', 41192), (41070, 41070, 1, 1, 'Miiir', 41191), (41073, 41073, 1, 1, 'Miiir', 41184), (41074, 41074, 1, 1, 'Miiir', 41183), (291237, 291237, 1, 1, 'Miiir Bridal Collection - Blossoming Love', 292806), (292827, 292827, 1, 1, 'Miiir Bridal Collection - Blossoming Love (Sealed Package)', 292806), (291235, 291235, 1, 1, 'Miiir Bridal Collection - Floral Delight', 291300), (292825, 292825, 1, 1, 'Miiir Bridal Collection - Floral Delight (Sealed Package)', 291300), (291236, 291236, 1, 1, 'Miiir Bridal Collection - Tropical Beauty', 291301), (292826, 292826, 1, 1, 'Miiir Bridal Collection - Tropical Beauty (Sealed Package)', 291301), (291238, 291238, 1, 1, 'Miiir Bridal Collection - Verdant Grace', 291303), (292828, 292828, 1, 1, 'Miiir Bridal Collection - Verdant Grace (Sealed Package)', 291303), (153965, 153965, 1, 1, 'Miiir Female Underwear - Catcher Bra', 152466), (153966, 153966, 1, 1, 'Miiir Female Underwear - Catcher Briefs', 152474), (152911, 152911, 1, 1, 'Miiir Female Underwear - Catcher Keeper', 152466), (152909, 152909, 1, 1, 'Miiir Female Underwear - Deep Ocean', 152464), (153967, 153967, 1, 1, 'Miiir Female Underwear - Gift Panties', 152476), (153968, 153968, 1, 1, 'Miiir Female Underwear - Gift Sternum Cover', 152468), (152914, 152914, 1, 1, 'Miiir Female Underwear - Gift Tape', 152468), (152907, 152907, 1, 1, 'Miiir Female Underwear - Lunar Affaire', 152462), (152910, 152910, 1, 1, 'Miiir Female Underwear - Piratical Nightwear', 152465), (153963, 153963, 1, 1, 'Miiir Female Underwear - Piratical Panties', 152473), (153964, 153964, 1, 1, 'Miiir Female Underwear - Piratical Top', 152465), (153969, 153969, 1, 1, 'Miiir Female Underwear - Play Brassiere', 152469), (153970, 153970, 1, 1, 'Miiir Female Underwear - Play Pants', 152477), (152915, 152915, 1, 1, 'Miiir Female Underwear - Play Suit', 152469), (152908, 152908, 1, 1, 'Miiir Female Underwear - Red Ties', 152463), (152912, 152912, 1, 1, 'Miiir Female Underwear - Sweet Garden', 152467), (290575, 290575, 1, 1, 'Miiir Handbags - Anarchaic Collection', 290134), (292598, 292598, 1, 1, 'Miiir Handbags - NeoFashion Collection: Grey', 291231), (292599, 292599, 1, 1, 'Miiir Handbags - NeoFashion Collection: Pink', 291229), (292600, 292600, 1, 1, 'Miiir Handbags - NeoFashion Collection: Wicker', 291230), (290576, 290576, 1, 1, 'Miiir Handbags - Superior Anarchaic Collection', 290134), (290577, 290577, 1, 1, 'Miiir Handbags - Superior Anarchaic Collection', 290135), (290578, 290578, 1, 1, 'Miiir Handbags - Superior Anarchaic Collection', 290136), (291226, 291226, 1, 1, 'Miiir Handbags - Superlative Collection', 291229), (291227, 291227, 1, 1, 'Miiir Handbags - Superlative Collection', 291231), (291228, 291228, 1, 1, 'Miiir Handbags - Superlative Collection', 291230), (154045, 154045, 1, 1, 'Miiir Male Underwear - Bagatelle', 154016), (154037, 154037, 1, 1, 'Miiir Male Underwear - Flag Ship', 154013), (154047, 154047, 1, 1, 'Miiir Male Underwear - Opalescent Occurrence', 154011), (154044, 154044, 1, 1, 'Miiir Male Underwear - Prankster Pants', 154012), (154043, 154043, 1, 1, 'Miiir Male Underwear - Spacecraft Engineer Drawers', 154014), (154046, 154046, 1, 1, 'Miiir Male Underwear - Strong Corset', 154017), (154048, 154048, 1, 1, 'Miiir Male Underwear - Yellow Power', 154015), (82096, 82096, 1, 1, 'Miiir Suit Boots', 81986), (82097, 82097, 1, 1, 'Miiir Suit Pants', 81981), (82098, 82098, 1, 1, 'Miiir Suit Shirt', 81991), (82099, 82099, 1, 1, 'Miiir Suit Sleeves', 81989), (291234, 291234, 1, 1, 'Miiir Wedding Collection - Alabaster', 291306), (291232, 291232, 1, 1, 'Miiir Wedding Collection - Ivory', 291304), (291233, 291233, 1, 1, 'Miiir Wedding Collection - Pearl', 291305), (267295, 267295, 1, 1, 'Military Reward Insignia', 259105), (218001, 218001, 219, 219, 'Military-Grade Marauder M-45', 99983), (300729, 300729, 1, 1, 'Milus'' Amazing Summer Shoes', 291422), (300730, 300730, 2, 2, 'Milus'' Amazing Summer Shoes', 291423), (300731, 300731, 3, 3, 'Milus'' Amazing Summer Shoes', 291424), (300732, 300732, 4, 4, 'Milus'' Amazing Summer Shoes', 291425), (300733, 300733, 5, 5, 'Milus'' Amazing Summer Shoes', 291426), (300734, 300734, 6, 6, 'Milus'' Amazing Summer Shoes', 291427), (300735, 300735, 7, 7, 'Milus'' Amazing Summer Shoes', 291428), (300736, 300736, 8, 8, 'Milus'' Amazing Summer Shoes', 291429), (300737, 300737, 9, 9, 'Milus'' Amazing Summer Shoes', 291430), (300711, 300711, 1, 1, 'Milus'' Spectacular Winter Shoes', 300721), (300712, 300712, 2, 2, 'Milus'' Spectacular Winter Shoes', 292067), (300713, 300713, 3, 3, 'Milus'' Spectacular Winter Shoes', 292068), (300714, 300714, 4, 4, 'Milus'' Spectacular Winter Shoes', 292069), (300715, 300715, 5, 5, 'Milus'' Spectacular Winter Shoes', 292070), (300716, 300716, 6, 6, 'Milus'' Spectacular Winter Shoes', 292071), (300717, 300717, 7, 7, 'Milus'' Spectacular Winter Shoes', 292072), (300718, 300718, 8, 8, 'Milus'' Spectacular Winter Shoes', 292073), (300719, 300719, 9, 9, 'Milus'' Spectacular Winter Shoes', 292074), (154267, 154268, 1, 200, 'Mimicking Cellular Oil', 100306), (259882, 259882, 1, 1, 'Mine Layer', 205499), (265477, 265477, 1, 1, 'Mineral Rich Rock', 72772), (265478, 265478, 1, 1, 'Mineral Sample', 72772), (123027, 123028, 81, 100, 'Mini-Shotgun', 13341), (271838, 271839, 1, 300, 'Mini-Shotgun - 000', 13341), (271842, 271843, 1, 300, 'Mini-Shotgun - 401', 13341), (271844, 271845, 1, 300, 'Mini-Shotgun - C01', 13341), (142144, 142144, 1, 1, 'Mini-Shotgun Construction Manual', 37933), (286992, 286992, 1, 1, 'Mini-Token Reward', 281837), (286991, 286991, 1, 1, 'Mini-XP Reward', 281837), (271521, 271522, 1, 300, 'Minielectronium - 000', 13323), (271525, 271526, 1, 300, 'Minielectronium - 401', 13323), (271527, 271528, 1, 300, 'Minielectronium - C01', 13323), (271553, 271554, 1, 300, 'Minigrinner - 000', 33156), (271557, 271558, 1, 300, 'Minigrinner - 401', 33156), (271559, 271560, 1, 300, 'Minigrinner - C01', 33156), (233347, 233348, 1, 149, 'Minion Fire Spouter', 233352), (233349, 233350, 150, 299, 'Minion Fire Spouter', 233352), (233355, 233356, 1, 149, 'Minion Ice Pulse Pistol', 233354), (233357, 233358, 150, 299, 'Minion Ice Pulse Pistol', 233354), (304164, 304164, 1, 1, 'Minor Experience Boost', 100308), (239337, 239337, 1, 1, 'MinorMinion Darkness', 130862), (250248, 250248, 1, 1, 'Mirage Djellaba Hood', 255401), (249687, 249687, 1, 1, 'Mirage Djellaba of Midnight Reveries', 255390), (259866, 259866, 1, 1, 'Mire Rafter Root Sample', 260194), (165365, 165365, 200, 200, 'Mirror Mask of Ljotur', 86483), (224735, 224735, 120, 120, 'Miserable Essence Brain Spirit', 230992), (224954, 224954, 120, 120, 'Miserable Heart Spirit of Strength', 230984), (225204, 225204, 120, 120, 'Miserable Left Hand Spirit of Defence', 230994), (225023, 225023, 120, 120, 'Miserable Left Limb Spirit of Strength', 230995), (225005, 225005, 120, 120, 'Miserable Left Limb Spirit of Weakness', 230995), (224854, 224854, 120, 120, 'Miserable Midriff Spirit of Essence', 230976), (224870, 224870, 120, 120, 'Miserable Midriff Spirit of Knowledge', 230976), (225151, 225151, 120, 120, 'Miserable Right Hand Defencive Spirit', 231002), (224701, 224701, 120, 120, 'Miserable Spirit of Clear Thought', 230992), (225180, 225180, 120, 120, 'Miserable Spirit of Defense', 230998), (224683, 224683, 120, 120, 'Miserable Spirit of Essence', 230998), (225160, 225160, 120, 120, 'Miserable Spirit of Insight - Right Hand', 231002), (225060, 225060, 120, 120, 'Miserable Spirit of Right Wrist Offence', 231006), (225077, 225077, 120, 120, 'Miserable Spirit of Right Wrist Weakness', 231006), (215369, 215369, 1, 1, 'Misery', 239343), (215486, 215486, 1, 1, 'Misery', 82197), (239351, 239351, 1, 1, 'Misery', 239343), (142806, 142807, 16, 32, 'Misshaped SSC Rustling Wakisashi', 113983), (233316, 233317, 1, 299, 'Missile Launcher', 233214), (233322, 233323, 1, 299, 'Missile Launcher Pistol', 233215), (288718, 288718, 1, 1, 'Mission Complete: Distress Call', 273626), (28564, 28564, 1, 1, 'Mission Key Duplicator', 70566), (28577, 28577, 1, 1, 'Mission Key to', 43107), (303080, 303080, 1, 1, 'Mission Reward', 281837), (295865, 295865, 1, 1, 'Missions', 277964), (218477, 218477, 100, 100, 'Mist of Novictum', 20407), (164565, 164566, 1, 200, 'Mist-Filled Jar', 154194), (207090, 207091, 1, 200, 'Mister Ash''s Specs', 205753), (207092, 207093, 1, 200, 'Mister Hadrulf''s Specs', 205751), (207088, 207089, 1, 200, 'Mister Lucien''s Specs', 205752), (124836, 124837, 1, 20, 'Mistreated Vektor M-31 Automatic Grenade Launcher', 13336), (248140, 248140, 1, 1, 'Mistreatment', 255664), (248141, 248141, 1, 1, 'Mistreatment', 239172), (206717, 206718, 75, 149, 'Mitaar', 206710), (266356, 266357, 1, 300, 'Mitochondria Samples', 281966), (289566, 289566, 1, 1, 'Mittens - Left Hand', 289561), (289565, 289565, 1, 1, 'Mittens - Right Hand', 289561), (130643, 130643, 1, 1, 'Mix Salad', 99290), (268858, 268859, 1, 300, 'Miy''s Melee Armor Boots', 270280), (270338, 270339, 1, 300, 'Miy''s Melee Armor Cloak', 270335), (268852, 268853, 1, 300, 'Miy''s Melee Armor Gloves', 270255), (268848, 268849, 1, 300, 'Miy''s Melee Armor Helmet', 270285), (268856, 268857, 1, 300, 'Miy''s Melee Armor Legs', 270260), (268854, 268855, 1, 300, 'Miy''s Melee Armor Sleeves', 270265), (268850, 268851, 1, 300, 'Miy''s Melee Body Armor', 270270), (268844, 268845, 1, 300, 'Miy''s Nano Armor Boots', 270251), (270329, 270330, 1, 300, 'Miy''s Nano Armor Cloak', 270336), (268838, 268839, 1, 300, 'Miy''s Nano Armor Gloves', 270256), (268833, 268834, 1, 300, 'Miy''s Nano Armor Helmet', 270281), (268842, 268843, 1, 300, 'Miy''s Nano Armor Legs', 270261), (268840, 268841, 1, 300, 'Miy''s Nano Armor Sleeves', 270266), (268836, 268837, 1, 300, 'Miy''s Nano Body Armor', 270271), (268870, 268871, 1, 300, 'Miy''s Ranged Armor Boots', 270252), (270340, 270341, 1, 300, 'Miy''s Ranged Armor Cloak', 270337), (268864, 268865, 1, 300, 'Miy''s Ranged Armor Gloves', 270257), (268860, 268861, 1, 300, 'Miy''s Ranged Armor Helmet', 270282), (268868, 268869, 1, 300, 'Miy''s Ranged Armor Legs', 270262), (268866, 268867, 1, 300, 'Miy''s Ranged Armor Sleeves', 270267), (268862, 268863, 1, 300, 'Miy''s Ranged Body Armor', 270272), (268894, 268895, 1, 300, 'Miy''s Scary Armor Boots', 270253), (270344, 270345, 1, 300, 'Miy''s Scary Armor Cloak', 270333), (268888, 268889, 1, 300, 'Miy''s Scary Armor Gloves', 270258), (268884, 268885, 1, 300, 'Miy''s Scary Armor Helmet', 270283), (268892, 268893, 1, 300, 'Miy''s Scary Armor Legs', 270263), (268890, 268891, 1, 300, 'Miy''s Scary Armor Sleeves', 270268), (268886, 268887, 1, 300, 'Miy''s Scary Body Armor', 270273), (268882, 268883, 1, 300, 'Miy''s Tank Armor Boots', 270254), (270342, 270343, 1, 300, 'Miy''s Tank Armor Cloak', 270334), (268876, 268877, 1, 300, 'Miy''s Tank Armor Gloves', 270259), (268872, 268873, 1, 300, 'Miy''s Tank Armor Helmet', 270284), (268880, 268881, 1, 300, 'Miy''s Tank Armor Legs', 270264), (268878, 268879, 1, 300, 'Miy''s Tank Armor Sleeves', 270269), (268874, 268875, 1, 300, 'Miy''s Tank Body Armor', 270274), (157340, 157340, 100, 100, 'Miyashiro Superior Enhanced Coffee Machine', 155965), (157339, 157339, 100, 100, 'Miyashiro Superior Menthol Coffee Machine', 155965), (253498, 253498, 1, 1, 'Mjoellnir''s Stone Bench', 255946), (206018, 206018, 1, 1, 'Mnemonic Fragment', 119141), (305518, 305518, 1, 1, 'Mnemonic Shard', 269806), (214296, 214296, 300, 300, 'Mobilizer Pistol', 210170), (154927, 154927, 180, 180, 'Mocham''s Guard', 154364), (152137, 152138, 21, 40, 'Model A Spring Inc Tube-Bow', 85167), (152139, 152140, 41, 60, 'Model A2 Inc Tube-Bow', 85167), (152141, 152142, 61, 80, 'Model B Spring Inc Tube-Bow', 85167), (152143, 152144, 81, 100, 'Model D Spring Inc Tube-Bow', 85167), (152145, 152146, 101, 120, 'Model E Spring Inc Tube-Bow', 85167), (152147, 152148, 121, 140, 'Model F Spring Inc Tube-Bow', 85167), (152149, 152150, 141, 160, 'Model F3 Spring Inc Tube-Bow', 85167), (152151, 152152, 161, 180, 'Model F4 Spring Inc Tube-Bow', 85167), (152153, 152153, 181, 181, 'Model G Spring Inc Tube-Bow', 85167), (164971, 164972, 50, 100, 'Modernized ICC Bodyguard Cloak', 205930), (164973, 164974, 50, 100, 'Modernized ICC Delegate Cloak', 205932), (164975, 164976, 50, 100, 'Modernized ICC InternOps Cloak', 205926), (164977, 164978, 50, 100, 'Modernized ICC Messenger Cloak', 205927), (164979, 164980, 50, 100, 'Modernized ICC Pilot Cloak', 205928), (164981, 164982, 50, 100, 'Modernized ICC Secretary Cloak', 205929), (152270, 152271, 1, 200, 'Modified A-4000 NCU-sheet', 149939), (152715, 152715, 190, 190, 'Modified A-4000 Sensory Panel', 45781), (151692, 151693, 1, 200, 'Modified Aggression Enhancer', 12683), (267755, 267755, 250, 250, 'Modified Ancient Combat Bracer', 290850), (267756, 267756, 250, 250, 'Modified Ancient Combat Bracer', 290849), (267757, 267757, 250, 250, 'Modified Ancient Combat Bracer', 290848), (154910, 154911, 1, 200, 'Modified Chemical Impact Injector', 130814), (164553, 164553, 100, 100, 'Modified Electrical Toolset', 12710), (164526, 164527, 1, 200, 'Modified Jensen Ore Extractor', 149948), (245675, 245675, 160, 160, 'Modified NotuComm Mesh Trenchcoat', 300622), (245661, 245661, 1, 1, 'Modified Omni-Armed Forces Training Helmet', 22269), (304820, 304820, 1, 1, 'Modified Santa Bag', 284680), (280345, 280345, 1, 1, 'Modified Spirit Tech Source Pump', 119081), (247236, 247236, 1, 1, 'Modified Tracking Device', 218749), (254101, 254101, 1, 1, 'Modified Tracking Device', 218749), (275868, 275868, 1, 1, 'Modular Terminal', 278512), (163386, 163387, 1, 200, 'Mole Robot Retinal Filters', 149950), (163283, 163284, 1, 199, 'Mole Stinger', 131270), (268458, 268458, 1, 1, 'Molokh Ambergris', 255428), (252029, 252030, 1, 300, 'Molybdenum Ingot', 289755), (168510, 168510, 110, 110, 'Monarch Gem of Burning Plasma', 286721), (168794, 168794, 110, 110, 'Monarch Gem of Corroded Glory', 286715), (230293, 230293, 110, 110, 'Monarch Gem of Decayed Glory', 25794), (230089, 230089, 110, 110, 'Monarch Gem of Fiery Plasma', 25794), (230042, 230042, 110, 110, 'Monarch Gem of the Broken Moebius', 25794), (168470, 168470, 110, 110, 'Monarch Gem of the Bruised Brawler', 286773), (230213, 230213, 110, 110, 'Monarch Gem of the Craggy Landscape', 25794), (230133, 230133, 110, 110, 'Monarch Gem of the Empty Desert', 25794), (165386, 165386, 110, 110, 'Monarch Gem of the Eternal Juggernaut', 286717), (229981, 229981, 110, 110, 'Monarch Gem of the Frail Juggernaut', 25794), (168617, 168617, 110, 110, 'Monarch Gem of the Frozen Tundra', 286722), (230173, 230173, 110, 110, 'Monarch Gem of the Icy Tundra', 25794), (168429, 168429, 110, 110, 'Monarch Gem of the Infinite Moebius', 286720), (230333, 230333, 110, 110, 'Monarch Gem of the Insidious Killer', 25794), (168714, 168714, 110, 110, 'Monarch Gem of the Jagged Landscape', 286719), (230048, 230048, 110, 110, 'Monarch Gem of the Novice Brawler', 25794), (168754, 168754, 110, 110, 'Monarch Gem of the Rainbow-hued Sky', 286716), (230253, 230253, 110, 110, 'Monarch Gem of the Scarlet Sky', 25794), (168550, 168550, 110, 110, 'Monarch Gem of the Searing Desert', 286774), (168840, 168840, 110, 110, 'Monarch Gem of the Silent Killer', 286718), (252490, 252490, 1, 1, 'Mongo Rage', 239055), (204201, 204201, 1, 1, 'Mongo Rampage Caster', 99281), (200437, 200437, 100, 100, 'Mongol Cheese Burger', 130568), (200457, 200457, 100, 100, 'Mongol Dinner Pill', 19857), (200436, 200436, 100, 100, 'Mongol Heart-Burger', 130567), (200434, 200434, 100, 100, 'Mongol Max', 37979), (200441, 200441, 100, 100, 'Mongol Mincemeat Cut-Cake', 130517), (200435, 200435, 100, 100, 'Mongol Mix', 99298), (200439, 200439, 100, 100, 'Mongol Muffin', 130516), (245694, 245694, 220, 220, 'Monitor Smoking Suit', 296451), (121590, 121590, 200, 200, 'Monofilament Tripler', 13344), (165110, 165110, 1, 1, 'Monofilament Tripler Construction Manual', 136330), (40829, 40829, 1, 1, 'Monster Egg Containment Field', 20405), (159828, 159828, 1, 1, 'Monster Invulnerability Item', 84061), (262846, 262846, 1, 1, 'Monster Invulnerability Item', 84060), (42640, 42641, 1, 400, 'Monster Parts', 144704), (42643, 42644, 1, 400, 'Monster Parts with Ivory', 144706), (205840, 205840, 1, 1, 'Monster Sunglasses', 205834), (246026, 246026, 1, 1, 'MonsterItem Soul Hungry Demon', 155940), (246027, 246027, 1, 1, 'MonsterItem Soul Hungry Demon 2', 155940), (246028, 246028, 1, 1, 'MonsterItem Soul Hungry Demon 3', 155940), (246029, 246029, 1, 1, 'MonsterItem Soul Hungry Demon 4', 155940), (271139, 271140, 1, 300, 'Moon Edge - 000', 13343), (271141, 271142, 1, 300, 'Moon Edge - 010', 13343), (271143, 271144, 1, 300, 'Moon Edge - 050', 13343), (271145, 271146, 1, 300, 'Moon Edge - 070', 13343), (271147, 271148, 1, 300, 'Moon Edge - 870', 13343), (224054, 224054, 100, 100, 'Moon Ring of Eckel Roch', 151926), (245859, 245859, 250, 250, 'Moon Watcher Helmet', 245853), (248727, 248727, 1, 1, 'Moonmist', 255670), (263816, 263816, 1, 1, 'Moor Spider Egg Sac', 37970), (295654, 295654, 1, 1, 'Mordeth Pattern Defining Device', 233133), (295652, 295652, 1, 1, 'Mordeth Pattern Etcher', 233133), (295651, 295651, 1, 1, 'Mordeth-Etched White Shell', 233133), (157976, 157976, 2, 2, 'More Booze', 157928), (215371, 215371, 1, 1, 'Morning', 239340), (215485, 215485, 1, 1, 'Morning', 82197), (239350, 239350, 1, 1, 'Morning', 239340), (235406, 235406, 5, 5, 'Moronic Brain Symbiant, Artillery Unit Aban', 215189), (236301, 236301, 5, 5, 'Moronic Brain Symbiant, Control Unit Aban', 215189), (235851, 235851, 5, 5, 'Moronic Brain Symbiant, Extermination Unit Aban', 215189), (235633, 235633, 5, 5, 'Moronic Brain Symbiant, Infantry Unit Aban', 215189), (236076, 236076, 5, 5, 'Moronic Brain Symbiant, Support Unit Aban', 215188), (235459, 235459, 5, 5, 'Moronic Chest Symbiant, Artillery Unit Aban', 215181), (236351, 236351, 5, 5, 'Moronic Chest Symbiant, Control Unit Aban', 215183), (235903, 235903, 5, 5, 'Moronic Chest Symbiant, Extermination Unit Aban', 215181), (235682, 235682, 5, 5, 'Moronic Chest Symbiant, Infantry Unit Aban', 215181), (236126, 236126, 5, 5, 'Moronic Chest Symbiant, Support Unit Aban', 215181), (235424, 235424, 5, 5, 'Moronic Ear Symbiant, Artillery Unit Aban', 230977), (236316, 236316, 5, 5, 'Moronic Ear Symbiant, Control Unit Aban', 230977), (235868, 235868, 5, 5, 'Moronic Ear Symbiant, Extermination Unit Aban', 230977), (235648, 235648, 5, 5, 'Moronic Ear Symbiant, Infantry Unit Aban', 230977), (236093, 236093, 5, 5, 'Moronic Ear Symbiant, Support Unit Aban', 230977), (235598, 235598, 5, 5, 'Moronic Feet Symbiant, Artillery Unit Aban', 215185), (236491, 236491, 5, 5, 'Moronic Feet Symbiant, Control Unit Aban', 215185), (236042, 236042, 5, 5, 'Moronic Feet Symbiant, Extermination Unit Aban', 215186), (235817, 235817, 5, 5, 'Moronic Feet Symbiant, Infantry Unit Aban', 215187), (236270, 236270, 5, 5, 'Moronic Feet Symbiant, Support Unit Aban', 215187), (235477, 235477, 5, 5, 'Moronic Left Arm Symbiant, Artillery Unit Aban', 215179), (236368, 236368, 5, 5, 'Moronic Left Arm Symbiant, Control Unit Aban', 215177), (235920, 235920, 5, 5, 'Moronic Left Arm Symbiant, Extermination Unit Aban', 215175), (235698, 235698, 5, 5, 'Moronic Left Arm Symbiant, Infantry Unit Aban', 215179), (236145, 236145, 5, 5, 'Moronic Left Arm Symbiant, Support Unit Aban', 215175), (235581, 235581, 5, 5, 'Moronic Left Hand Symbiant, Artillery Unit Aban', 215171), (236475, 236475, 5, 5, 'Moronic Left Hand Symbiant, Control Unit Aban', 215172), (236025, 236025, 5, 5, 'Moronic Left Hand Symbiant, Extermination Unit Aban', 215172), (235800, 235800, 5, 5, 'Moronic Left Hand Symbiant, Infantry Unit Aban', 215172), (236254, 236254, 5, 5, 'Moronic Left Hand Symbiant, Support Unit Aban', 215171), (235529, 235529, 5, 5, 'Moronic Left Wrist Symbiant, Artillery Unit Aban', 215196), (236422, 236422, 5, 5, 'Moronic Left Wrist Symbiant, Control Unit Aban', 215196), (235971, 235971, 5, 5, 'Moronic Left Wrist Symbiant, Extermination Unit Aban', 215198), (235748, 235748, 5, 5, 'Moronic Left Wrist Symbiant, Infantry Unit Aban', 215198), (236202, 236202, 5, 5, 'Moronic Left Wrist Symbiant, Support Unit Aban', 215198), (219125, 219125, 5, 5, 'Moronic Ocular Symbiant, Artillery Unit Aban', 230979), (236286, 236286, 5, 5, 'Moronic Ocular Symbiant, Control Unit Aban', 230979), (235835, 235835, 5, 5, 'Moronic Ocular Symbiant, Extermination Unit Aban', 230979), (235616, 235616, 5, 5, 'Moronic Ocular Symbiant, Infantry Unit Aban', 230980), (236059, 236059, 5, 5, 'Moronic Ocular Symbiant, Support Unit Aban', 230980), (235442, 235442, 5, 5, 'Moronic Right Arm Symbiant, Artillery Unit Aban', 215176), (236333, 236333, 5, 5, 'Moronic Right Arm Symbiant, Control Unit Aban', 215180), (235885, 235885, 5, 5, 'Moronic Right Arm Symbiant, Extermination Unit Aban', 215178), (235665, 235665, 5, 5, 'Moronic Right Arm Symbiant, Infantry Unit Aban', 215180), (236110, 236110, 5, 5, 'Moronic Right Arm Symbiant, Support Unit Aban', 215178), (235546, 235546, 5, 5, 'Moronic Right Hand Symbiant, Artillery Unit Aban', 215173), (236439, 236439, 5, 5, 'Moronic Right Hand Symbiant, Control Unit Aban', 215173), (235989, 235989, 5, 5, 'Moronic Right Hand Symbiant, Extermination Unit Aban', 215173), (235765, 235765, 5, 5, 'Moronic Right Hand Symbiant, Infantry Unit Aban', 215174), (236220, 236220, 5, 5, 'Moronic Right Hand Symbiant, Support Unit Aban', 215174), (235494, 235494, 5, 5, 'Moronic Right Wrist Symbiant, Artillery Unit Aban', 215170), (236386, 236386, 5, 5, 'Moronic Right Wrist Symbiant, Control Unit Aban', 215170), (235937, 235937, 5, 5, 'Moronic Right Wrist Symbiant, Extermination Unit Aban', 215170), (235715, 235715, 5, 5, 'Moronic Right Wrist Symbiant, Infantry Unit Aban', 215197), (236166, 236166, 5, 5, 'Moronic Right Wrist Symbiant, Support Unit Aban', 215197), (235564, 235564, 5, 5, 'Moronic Thigh Symbiant, Artillery Unit Aban', 215190), (236457, 236457, 5, 5, 'Moronic Thigh Symbiant, Control Unit Aban', 215191), (236007, 236007, 5, 5, 'Moronic Thigh Symbiant, Extermination Unit Aban', 215192), (235783, 235783, 5, 5, 'Moronic Thigh Symbiant, Infantry Unit Aban', 215191), (236237, 236237, 5, 5, 'Moronic Thigh Symbiant, Support Unit Aban', 215190), (235511, 235511, 5, 5, 'Moronic Waist Symbiant, Artillery Unit Aban', 215194), (236404, 236404, 5, 5, 'Moronic Waist Symbiant, Control Unit Aban', 215193), (235954, 235954, 5, 5, 'Moronic Waist Symbiant, Extermination Unit Aban', 215193), (235731, 235731, 5, 5, 'Moronic Waist Symbiant, Infantry Unit Aban', 215193), (236185, 236185, 5, 5, 'Moronic Waist Symbiant, Support Unit Aban', 215193), (260654, 260654, 1, 1, 'Morphing Eremite Spinal Section', 204742), (202726, 202726, 1, 1, 'Morphing Memory', 290611), (290619, 202727, 2, 19, 'Morphing Memory', 290611), (202727, 202728, 20, 39, 'Morphing Memory', 290612), (202728, 202729, 40, 49, 'Morphing Memory', 290613), (202729, 202730, 50, 119, 'Morphing Memory', 290614), (202730, 202731, 120, 199, 'Morphing Memory', 290615), (202731, 202731, 200, 200, 'Morphing Memory', 290616), (230751, 230751, 1, 1, 'Mortigs Hatred', 130862), (246329, 246330, 115, 119, 'Mortiig Beamer of Anguish', 33156), (246323, 246324, 100, 104, 'Mortiig Beamer of Distress', 33156), (246325, 246326, 105, 109, 'Mortiig Beamer of Misery', 33156), (246327, 246328, 110, 114, 'Mortiig Beamer of Suffering', 33156), (246331, 246332, 120, 124, 'Mortiig Beamer of Torment', 33156), (246333, 246333, 125, 125, 'Mortiig Beamer of Torture', 33156), (246351, 246352, 115, 119, 'Mortiig Beater of Anguish', 13333), (246345, 246346, 100, 104, 'Mortiig Beater of Distress', 13333), (246347, 246348, 105, 109, 'Mortiig Beater of Misery', 13333), (246349, 246350, 110, 114, 'Mortiig Beater of Suffering', 13333), (246353, 246354, 120, 124, 'Mortiig Beater of Torment', 13333), (246355, 246355, 125, 125, 'Mortiig Beater of Torture', 13333), (246340, 246341, 115, 119, 'Mortiig Blaster of Anguish', 21147), (246334, 246335, 100, 104, 'Mortiig Blaster of Distress', 21147), (246336, 246337, 105, 109, 'Mortiig Blaster of Misery', 21147), (246338, 246339, 110, 114, 'Mortiig Blaster of Suffering', 21147), (246342, 246343, 120, 124, 'Mortiig Blaster of Torment', 21147), (246344, 246344, 125, 125, 'Mortiig Blaster of Torture', 21147), (234880, 234880, 1, 1, 'Mortiig''s Heart', 155940), (125433, 125434, 141, 160, 'Mosaic Layered Torch', 85172), (201218, 201219, 1, 199, 'Mosquito Armor Boots', 21865), (201219, 201220, 200, 300, 'Mosquito Armor Boots', 21865), (201221, 201222, 1, 199, 'Mosquito Armor Gloves', 21871), (201222, 201223, 200, 300, 'Mosquito Armor Gloves', 21871), (201224, 201225, 1, 199, 'Mosquito Armor Helmet', 22268), (201225, 201226, 200, 300, 'Mosquito Armor Helmet', 22268), (201227, 201228, 1, 199, 'Mosquito Armor Pants', 21878), (201228, 201229, 200, 300, 'Mosquito Armor Pants', 21878), (201212, 201213, 1, 199, 'Mosquito Armor Sleeves', 21849), (201213, 201214, 200, 300, 'Mosquito Armor Sleeves', 21849), (201215, 201216, 1, 199, 'Mosquito Body Armor', 21859), (201216, 201217, 200, 300, 'Mosquito Body Armor', 21859), (156717, 156718, 1, 199, 'Mother Nitrogena', 156716), (214292, 214293, 100, 199, 'Motivator Pistol', 210170), (214294, 214295, 200, 299, 'Motivator Pistol', 210170), (305487, 305487, 1, 1, 'Mountain Razing Gauntlets', 13286), (224941, 224941, 130, 130, 'Mourning Heart Spirit of Essence', 230984), (224970, 224970, 130, 130, 'Mourning Heart Spirit of Weakness', 230984), (225042, 225042, 130, 130, 'Mourning Left Limb Spirit of Essence', 230995), (224988, 224988, 130, 130, 'Mourning Left Limb Spirit of Understanding', 230995), (225006, 225006, 130, 130, 'Mourning Left Limb Spirit of Weakness', 230995), (225129, 225129, 130, 130, 'Mourning Right Hand Strength Spirit', 231002), (224821, 224821, 130, 130, 'Mourning Right Limb Spirit of Weakness', 231004), (225181, 225181, 130, 130, 'Mourning Spirit of Defense', 230998), (224684, 224684, 130, 130, 'Mourning Spirit of Essence', 230988), (225161, 225161, 130, 130, 'Mourning Spirit of Insight - Right Hand', 231002), (225111, 225111, 130, 130, 'Mourning Spirit of Left Wrist Strength', 231000), (225061, 225061, 130, 130, 'Mourning Spirit of Right Wrist Offence', 231006), (225078, 225078, 130, 130, 'Mourning Spirit of Right Wrist Weakness', 231006), (224652, 224652, 130, 130, 'Mourning Spirit of True Seeing', 230988), (276632, 276632, 1, 1, 'Movement Regulation', 99276), (276633, 276633, 1, 1, 'Movement Regulation', 99276), (276634, 276634, 1, 1, 'Movement Regulation', 99276), (276635, 276635, 1, 1, 'Movement Regulation', 99276), (235410, 235410, 80, 80, 'Moving Brain Symbiant, Artillery Unit Aban', 215189), (236305, 236305, 80, 80, 'Moving Brain Symbiant, Control Unit Aban', 215189), (235464, 235464, 80, 80, 'Moving Chest Symbiant, Artillery Unit Aban', 215181), (236356, 236356, 80, 80, 'Moving Chest Symbiant, Control Unit Aban', 215183), (235686, 235686, 80, 80, 'Moving Chest Symbiant, Infantry Unit Aban', 215181), (235430, 235430, 80, 80, 'Moving Ear Symbiant, Artillery Unit Aban', 230977), (235872, 235872, 80, 80, 'Moving Ear Symbiant, Extermination Unit Aban', 230977), (235603, 235603, 80, 80, 'Moving Feet Symbiant, Artillery Unit Aban', 215185), (235821, 235821, 80, 80, 'Moving Feet Symbiant, Infantry Unit Aban', 215187), (236274, 236274, 80, 80, 'Moving Feet Symbiant, Support Unit Aban', 215187), (235483, 235483, 80, 80, 'Moving Left Arm Symbiant, Artillery Unit Aban', 215179), (235704, 235704, 80, 80, 'Moving Left Arm Symbiant, Infantry Unit Aban', 215179), (235584, 235584, 80, 80, 'Moving Left Hand Symbiant, Artillery Unit Aban', 215171), (235804, 235804, 80, 80, 'Moving Left Hand Symbiant, Infantry Unit Aban', 215172), (236258, 236258, 80, 80, 'Moving Left Hand Symbiant, Support Unit Aban', 215171), (236290, 236290, 80, 80, 'Moving Ocular Symbiant, Control Unit Aban', 230979), (236064, 236064, 80, 80, 'Moving Ocular Symbiant, Support Unit Aban', 230980), (235449, 235449, 80, 80, 'Moving Right Arm Symbiant, Artillery Unit Aban', 215176), (235667, 235667, 80, 80, 'Moving Right Arm Symbiant, Infantry Unit Aban', 215180), (235552, 235552, 80, 80, 'Moving Right Hand Symbiant, Artillery Unit Aban', 215173), (235993, 235993, 80, 80, 'Moving Right Hand Symbiant, Extermination Unit Aban', 215173), (235771, 235771, 80, 80, 'Moving Right Hand Symbiant, Infantry Unit Aban', 215174), (235944, 235944, 80, 80, 'Moving Right Wrist Symbiant, Extermination Unit Aban', 215170), (235720, 235720, 80, 80, 'Moving Right Wrist Symbiant, Infantry Unit Aban', 215197), (236173, 236173, 80, 80, 'Moving Right Wrist Symbiant, Support Unit Aban', 215197), (235568, 235568, 80, 80, 'Moving Thigh Symbiant, Artillery Unit Aban', 215190), (236462, 236462, 80, 80, 'Moving Thigh Symbiant, Control Unit Aban', 215191), (236012, 236012, 80, 80, 'Moving Thigh Symbiant, Extermination Unit Aban', 215192), (235786, 235786, 80, 80, 'Moving Thigh Symbiant, Infantry Unit Aban', 215191), (236410, 236410, 80, 80, 'Moving Waist Symbiant, Control Unit Aban', 215193), (225703, 225704, 1, 300, 'Mowgli''s Harmonic Circlet', 151925), (283897, 283897, 1, 1, 'Mr Squeaky Poster', 283902), (283987, 283987, 1, 1, 'Mr. Evil Squeaky', 283973), (283976, 283976, 1, 1, 'Mr. Pointy''s "Not Fake Blood"', 283977), (296463, 296463, 1, 1, 'Mr. Pointy''s Funsaw!', 296462), (296478, 296478, 1, 1, 'Mr. Pointy''s Funsaw! - Atrox Version', 296462), (289557, 289557, 1, 1, 'Mr. Santa Squeaky', 289556), (277889, 277889, 1, 1, 'Mr. Squeaky', 277888), (291087, 291087, 1, 1, 'Mr. Squeaky Lantern - Shoulder', 290128), (292193, 292193, 1, 1, 'Mr. Squeaky Lantern - Shoulder', 290128), (290558, 290558, 1, 1, 'Mr. Squeaky Lantern - Utils', 290128), (288471, 288471, 1, 1, 'Mr. Squeaky Ray Gun', 288470), (289827, 289827, 1, 1, 'Mr. Squeaky Shoulder Lantern', 284673), (290121, 290121, 1, 1, 'Mr. Wheelie Pet (Mr. Wheelie - Series 1)', 254462), (288206, 288206, 1, 1, 'Mr. Zombie Squeaky', 288600), (287342, 287342, 1, 1, 'MstrBstrd''s T-shirt', 287356), (290069, 290069, 1, 1, 'Mstrbstrd''s T-shirt Spawner', 287354), (292530, 292530, 1, 1, 'Mu-Negative Novictum Enriched Metamaterial', 292759), (157820, 157820, 200, 200, 'Much Improved Click Stabber', 13346), (160100, 160101, 161, 199, 'Much Polished Compressed Blade', 113986), (206715, 206716, 50, 74, 'Muck Covered Mitaar', 206710), (157412, 157412, 1, 1, 'Mud Thirtysix Blindworm Advantage', 81775), (225673, 225674, 1, 300, 'Muddletupper''s Ring of the Mechanic', 151919), (243739, 243740, 1, 49, 'Mudurlugu', 21149), (243741, 243742, 50, 99, 'Mudurlugu', 21149), (243743, 243744, 100, 149, 'Mudurlugu', 21149), (243745, 243746, 150, 199, 'Mudurlugu', 21149), (243747, 243747, 200, 200, 'Mudurlugu', 21149), (260730, 260730, 200, 200, 'Mudurlurgu Acid Spitter', 21149), (208527, 208527, 50, 50, 'Muffin Cake', 130517), (290910, 290910, 1, 1, 'Mugenshi''s T-shirt', 290952), (225669, 225670, 1, 300, 'Mukaka Nudderbolts'' Ring of Psychology', 84066), (306176, 306176, 250, 250, 'Muleta', 218276), (101402, 101403, 1, 200, 'Mult. Melee Cluster - Bright (Eye)', 35981), (101400, 101401, 1, 200, 'Mult. Melee Cluster - Faded (Right-Wrist)', 35980), (101404, 101405, 1, 200, 'Mult. Melee Cluster - Shiny (Left-Wrist)', 35982), (165543, 165544, 201, 300, 'Mult. Melee Refined Cluster - Bright (Eye)', 35981), (165541, 165542, 201, 300, 'Mult. Melee Refined Cluster - Faded (Right-Wrist)', 35980), (165545, 165546, 201, 300, 'Mult. Melee Refined Cluster - Shiny (Left-Wrist)', 35982), (279447, 279447, 1, 1, 'Multi Colored Xan Belt Tuning Device', 280987), (119599, 119599, 1, 1, 'Multi Floor Lamp', 119172), (101563, 101564, 1, 200, 'Multi Ranged Cluster - Bright (Right-Wrist)', 35981), (101561, 101562, 1, 200, 'Multi Ranged Cluster - Faded (Eye)', 35980), (101565, 101566, 1, 200, 'Multi Ranged Cluster - Shiny (Left-Wrist)', 35982), (165741, 165742, 201, 300, 'Multi Ranged Refined Cluster - Bright (Right-Wrist)', 35981), (165739, 165740, 201, 300, 'Multi Ranged Refined Cluster - Faded (Eye)', 35980), (165743, 165744, 201, 300, 'Multi Ranged Refined Cluster - Shiny (Left-Wrist)', 35982), (156345, 156345, 1, 1, 'Multi-Form', 156341), (246932, 246932, 1, 1, 'Multi-Grip Cybernetic Soles', 42298), (202575, 202575, 300, 300, 'Multi-Purpose Tuner', 203583), (258820, 258820, 1, 1, 'Multifunction Analysis Device', 259026), (248828, 248828, 1, 1, 'Mummy Arm Wraps of Mercury Dragons', 255257), (248829, 248829, 1, 1, 'Mummy Body Wraps of Mercury Dragons', 255313), (248831, 248831, 1, 1, 'Mummy Foot Wraps of Mercury Dragons', 255357), (248830, 248830, 1, 1, 'Mummy Hand Wraps of Mercury Dragons', 255169), (250322, 250322, 1, 1, 'Mummy Head Wraps', 10844), (248832, 248832, 1, 1, 'Mummy Leg Wraps of Mercury Dragons', 255194), (233325, 233326, 1, 49, 'Murder Maul', 218716), (233327, 233328, 50, 99, 'Murder Maul', 218716), (233329, 233330, 100, 149, 'Murder Maul', 218716), (233331, 233332, 150, 199, 'Murder Maul', 218716), (233333, 233334, 200, 249, 'Murder Maul', 218716), (233335, 233336, 250, 299, 'Murder Maul', 218716), (233337, 233337, 300, 300, 'Murder Maul of Ukur', 218716), (215405, 215405, 1, 1, 'Murky', 82197), (154664, 154665, 1, 200, 'Muscular Stim', 11713), (255429, 255429, 1, 1, 'Mushroom', 255419), (302327, 302327, 1, 1, 'Mussagana''s T-shirt', 302305), (302328, 302328, 1, 1, 'Mussagana''s T-shirt Spawner', 302305), (155636, 155637, 1, 200, 'Mutated Bacteria', 100307), (216270, 216270, 150, 150, 'Mutated Eremite Foetus', 20411), (216271, 216271, 150, 150, 'Mutated Eremite Leg', 20411), (247108, 247109, 1, 300, 'Mutated Kyr''Ozch Bio-Material', 292810), (155737, 155737, 1, 1, 'Mutated Leet Blood Essence', 99234), (155764, 155764, 1, 1, 'Mutated Let Blood Stew', 99233), (245322, 245322, 150, 150, 'Mutated Slither Blood', 37936), (247792, 247792, 100, 100, 'Mutating Bio-Pulp', 99239), (247789, 247789, 100, 100, 'Mutating Giant Chirop Egg', 20405), (248201, 248201, 1, 1, 'Muzzle Overload', 255643), (287927, 287927, 1, 1, 'My Other Shirt is QL 300', 288351), (252511, 252511, 1, 1, 'My Own Fortress', 255732), (287928, 287928, 300, 300, 'My Shirt is QL 300', 288350), (252552, 252552, 1, 1, 'Myofortis Capsules', 20191), (293171, 293171, 1, 1, 'Mysterious Cloak', 293170), (244640, 244640, 250, 250, 'Mystery of Pisces', 161079), (248407, 248407, 1, 1, 'Mystic Robe of the Unity of the Rose', 255280), (235379, 235380, 1, 300, 'Mystical Force Tight Arm Wraps', 130733), (235383, 235384, 1, 300, 'Mystical Force Tight Boots', 213556), (235377, 235378, 1, 300, 'Mystical Force Tight Shirt', 213517), (235381, 235382, 1, 300, 'Mystical Force Tights', 213598), (246083, 246083, 250, 250, 'Mystical Green Hood', 10836), (279430, 279430, 1, 1, 'NAIT Spawn Blocker', 84059), (279426, 279426, 1, 1, 'NAIT Spawn Shield', 84059), (279410, 279410, 1, 1, 'NAIT Wearable', 84059), (214069, 214069, 1, 1, 'NCU Booster', 239181), (95514, 95515, 10, 200, 'NCU Coolant Sink', 119131), (158416, 158417, 1, 199, 'NCU Hacker Interface', 99279), (158417, 284599, 200, 220, 'NCU Hacker Interface', 99279), (290780, 290780, 250, 250, 'NCU Infuser', 290779), (277179, 277182, 1, 300, 'NCU Memory Cell', 276923), (151906, 152219, 1, 19, 'NCU Robot Reed', 37996), (152219, 151908, 20, 39, 'NCU Robot Reed', 37996), (151908, 151909, 40, 49, 'NCU Robot Reed', 37996), (151909, 151910, 50, 119, 'NCU Robot Reed', 37996), (151910, 151911, 120, 200, 'NCU Robot Reed', 37996), (279429, 279429, 1, 1, 'NMIA Spawn Blocker', 84059), (279425, 279425, 1, 1, 'NMIA Spawn Shield', 84059), (279409, 279409, 1, 1, 'NMIA Wearable', 84059), (279428, 279428, 1, 1, 'NMIT Spawn Blocker', 84059), (279424, 279424, 1, 1, 'NMIT Spawn Shield', 84059), (279408, 279408, 1, 1, 'NMIT Wearable', 84059), (295830, 295830, 1, 1, 'NPE Playfield Item', 268734), (267574, 267575, 1, 300, 'NTs'' Ring of NanoTechnic', 151931), (279427, 279427, 1, 1, 'NUIT Spawn Blocker', 84059), (279423, 279423, 1, 1, 'NUIT Spawn Shield', 84059), (279407, 279407, 1, 1, 'NUIT Wearable', 84059), (162351, 162351, 1, 1, 'Name Giver', 84059), (155740, 155740, 1, 1, 'Nanite Notum Concentrate', 100337), (275908, 275908, 1, 1, 'Nanite Recompiler', 275961), (287177, 287177, 100, 100, 'Nanite Reconstruction Box', 287243), (287126, 287126, 200, 200, 'Nanite Reconstruction ToilerBots - Abies Grandis', 287157), (287127, 287127, 200, 200, 'Nanite Reconstruction ToilerBots - Betula Pendula', 287158), (287128, 287128, 200, 200, 'Nanite Reconstruction ToilerBots - Thuja Plicata', 287156), (275910, 275910, 1, 1, 'Nanite-Infused Gel', 275963), (275913, 275913, 1, 1, 'Nanite-Infused Gelatinous Cube', 275811), (283392, 283392, 1, 1, 'Nano Armor Cloak - The New Hotness', 88054), (269186, 269187, 1, 300, 'Nano Assistant', 99275), (269939, 269939, 250, 250, 'Nano Attuned Permafrost Armor Component', 269936), (206638, 206638, 80, 80, 'Nano Breed Service Suit Body Armor - Eight Times Augmented', 13252), (206641, 206641, 50, 50, 'Nano Breed Service Suit Body Armor - Five Times Augmented', 13252), (206642, 206642, 40, 40, 'Nano Breed Service Suit Body Armor - Four Times Augmented', 13252), (206636, 206636, 100, 100, 'Nano Breed Service Suit Body Armor - Maximum Augmented', 13252), (206637, 206637, 90, 90, 'Nano Breed Service Suit Body Armor - Nine Times Augmented', 13252), (206645, 206645, 10, 10, 'Nano Breed Service Suit Body Armor - Once Augmented', 13252), (206639, 206639, 70, 70, 'Nano Breed Service Suit Body Armor - Seven Times Augmented', 13252), (206640, 206640, 60, 60, 'Nano Breed Service Suit Body Armor - Six Times Augmented', 13252), (206643, 206643, 30, 30, 'Nano Breed Service Suit Body Armor - Thrice Augmented', 13252), (206644, 206644, 20, 20, 'Nano Breed Service Suit Body Armor - Twice Augmented', 13252), (206631, 206631, 80, 80, 'Nano Breed Service Suit Boots - Eight Times Augmented', 155112), (206629, 206629, 50, 50, 'Nano Breed Service Suit Boots - Five Times Augmented', 155112), (206630, 206630, 40, 40, 'Nano Breed Service Suit Boots - Four Times Augmented', 155112), (206625, 206625, 100, 100, 'Nano Breed Service Suit Boots - Maximum Augmented', 155112), (206626, 206626, 90, 90, 'Nano Breed Service Suit Boots - Nine Times Augmented', 155112), (206634, 206634, 10, 10, 'Nano Breed Service Suit Boots - Once Augmented', 155112), (206627, 206627, 70, 70, 'Nano Breed Service Suit Boots - Seven Times Augmented', 155112), (206628, 206628, 60, 60, 'Nano Breed Service Suit Boots - Six Times Augmented', 155112), (206632, 206632, 30, 30, 'Nano Breed Service Suit Boots - Thrice Augmented', 155112), (206633, 206633, 20, 20, 'Nano Breed Service Suit Boots - Twice Augmented', 155112), (206618, 206618, 80, 80, 'Nano Breed Service Suit Pants - Eight Times Augmented', 13302), (206621, 206621, 50, 50, 'Nano Breed Service Suit Pants - Five Times Augmented', 13302), (206622, 206622, 40, 40, 'Nano Breed Service Suit Pants - Four Times Augmented', 13302), (206616, 206616, 100, 100, 'Nano Breed Service Suit Pants - Maximum Augmented', 13302), (206617, 206617, 90, 90, 'Nano Breed Service Suit Pants - Nine Times Augmented', 13302), (206635, 206635, 10, 10, 'Nano Breed Service Suit Pants - Once Augmented', 13302), (206619, 206619, 70, 70, 'Nano Breed Service Suit Pants - Seven Times Augmented', 13302), (206620, 206620, 60, 60, 'Nano Breed Service Suit Pants - Six Times Augmented', 13302), (206623, 206623, 30, 30, 'Nano Breed Service Suit Pants - Thrice Augmented', 13302), (206624, 206624, 20, 20, 'Nano Breed Service Suit Pants - Twice Augmented', 13302), (206648, 206648, 80, 80, 'Nano Breed Service Suit Sleeves - Eight Times Augmented', 22949), (206651, 206651, 50, 50, 'Nano Breed Service Suit Sleeves - Five Times Augmented', 22949), (206652, 206652, 40, 40, 'Nano Breed Service Suit Sleeves - Four Times Augmented', 22949), (206646, 206646, 100, 100, 'Nano Breed Service Suit Sleeves - Maximum Augmented', 22949), (206647, 206647, 90, 90, 'Nano Breed Service Suit Sleeves - Nine Times Augmented', 22949), (206655, 206655, 10, 10, 'Nano Breed Service Suit Sleeves - Once Augmented', 22949), (206649, 206649, 70, 70, 'Nano Breed Service Suit Sleeves - Seven Times Augmented', 22949), (206650, 206650, 60, 60, 'Nano Breed Service Suit Sleeves - Six Times Augmented', 22949), (206653, 206653, 30, 30, 'Nano Breed Service Suit Sleeves - Thrice Augmented', 22949), (206654, 206654, 20, 20, 'Nano Breed Service Suit Sleeves - Twice Augmented', 22949), (206609, 206609, 10, 10, 'Nano Breed Survival Suit Body Armor', 13252), (206610, 206610, 10, 10, 'Nano Breed Survival Suit Boots', 155112), (206611, 206611, 10, 10, 'Nano Breed Survival Suit Pants', 13302), (206608, 206608, 10, 10, 'Nano Breed Survival Suit Sleeves', 22949), (288930, 288930, 1, 1, 'Nano Can: Advanced Symbol Manipulation', 292140), (288931, 288931, 1, 1, 'Nano Can: Advanced Symbol Manipulation', 292140), (288932, 288932, 1, 1, 'Nano Can: Advanced Symbol Manipulation', 292140), (288945, 288945, 1, 1, 'Nano Can: Assault Rifle Mastery', 292143), (288946, 288946, 1, 1, 'Nano Can: Assault Rifle Mastery', 292143), (288947, 288947, 1, 1, 'Nano Can: Assault Rifle Mastery', 292143), (288846, 288846, 1, 1, 'Nano Can: Authority Figure', 292133), (288847, 288847, 1, 1, 'Nano Can: Authority Figure', 292133), (288848, 288848, 1, 1, 'Nano Can: Authority Figure', 292133), (288897, 288897, 1, 1, 'Nano Can: Blood Makes Noise', 292137), (288898, 288898, 1, 1, 'Nano Can: Blood Makes Noise', 292137), (288899, 288899, 1, 1, 'Nano Can: Blood Makes Noise', 292137), (288840, 288840, 1, 1, 'Nano Can: Chemical Concoction', 292132), (288841, 288841, 1, 1, 'Nano Can: Chemical Concoction', 292132), (288842, 288842, 1, 1, 'Nano Can: Chemical Concoction', 292132), (303384, 303384, 1, 1, 'Nano Can: Composite Attribute Improvement', 296391), (288921, 288921, 1, 1, 'Nano Can: Composite Infuse with Knowledge', 292140), (288922, 288922, 1, 1, 'Nano Can: Composite Infuse with Knowledge', 292140), (288923, 288923, 1, 1, 'Nano Can: Composite Infuse with Knowledge', 292140), (288924, 288924, 1, 1, 'Nano Can: Composite Mastery', 292140), (288925, 288925, 1, 1, 'Nano Can: Composite Mastery', 292140), (288926, 288926, 1, 1, 'Nano Can: Composite Mastery', 292140), (288918, 288918, 1, 1, 'Nano Can: Composite Mochams (2 Hours)', 292140), (288919, 288919, 1, 1, 'Nano Can: Composite Mochams (2 Hours)', 292140), (288920, 288920, 1, 1, 'Nano Can: Composite Mochams (2 Hours)', 292140), (288927, 288927, 1, 1, 'Nano Can: Composite Teachings', 292140), (288928, 288928, 1, 1, 'Nano Can: Composite Teachings', 292140), (288929, 288929, 1, 1, 'Nano Can: Composite Teachings', 292140), (303385, 303385, 1, 1, 'Nano Can: Computer Literacy Mastery', 296327), (288909, 288909, 1, 1, 'Nano Can: Dirty Fighter', 292139), (288910, 288910, 1, 1, 'Nano Can: Dirty Fighter', 292139), (288911, 288911, 1, 1, 'Nano Can: Dirty Fighter', 292139), (288831, 288831, 1, 1, 'Nano Can: Eagle Eye', 292131), (288832, 288832, 1, 1, 'Nano Can: Eagle Eye', 292131), (288833, 288833, 1, 1, 'Nano Can: Eagle Eye', 292131), (288885, 288885, 1, 1, 'Nano Can: Engineer Composite Specialist Tradeskills (8 hours)', 292136), (288886, 288886, 1, 1, 'Nano Can: Engineer Composite Specialist Tradeskills (8 hours)', 292136), (288887, 288887, 1, 1, 'Nano Can: Engineer Composite Specialist Tradeskills (8 hours)', 292136), (288858, 288858, 1, 1, 'Nano Can: Enhanced First Aid', 292134), (288859, 288859, 1, 1, 'Nano Can: Enhanced First Aid', 292134), (288860, 288860, 1, 1, 'Nano Can: Enhanced First Aid', 292134), (288834, 288834, 1, 1, 'Nano Can: Enhanced Senses', 292132), (288835, 288835, 1, 1, 'Nano Can: Enhanced Senses', 292132), (288863, 288863, 1, 1, 'Nano Can: Essence of Behemoth', 292135), (288864, 288864, 1, 1, 'Nano Can: Essence of Colossus', 292135), (288865, 288865, 1, 1, 'Nano Can: Essence of Colossus', 292135), (288866, 288866, 1, 1, 'Nano Can: Essence of Colossus', 292135), (288873, 288873, 1, 1, 'Nano Can: Essence of Might', 292135), (288874, 288874, 1, 1, 'Nano Can: Essence of Might', 292135), (288875, 288875, 1, 1, 'Nano Can: Essence of Might', 292135), (288867, 288867, 1, 1, 'Nano Can: Essence of Titan', 292135), (288868, 288868, 1, 1, 'Nano Can: Essence of Titan', 292135), (288869, 288869, 1, 1, 'Nano Can: Essence of Titan', 292135), (288870, 288870, 1, 1, 'Nano Can: Essence of the Brave Challenger', 292135), (288871, 288871, 1, 1, 'Nano Can: Essence of the Brave Challenger', 292135), (288872, 288872, 1, 1, 'Nano Can: Essence of the Brave Challenger', 292135), (288891, 288891, 1, 1, 'Nano Can: Extreme Prejudice', 292136), (288892, 288892, 1, 1, 'Nano Can: Extreme Prejudice', 292136), (288893, 288893, 1, 1, 'Nano Can: Extreme Prejudice', 292136), (288837, 288837, 1, 1, 'Nano Can: Feline Grace', 292132), (288838, 288838, 1, 1, 'Nano Can: Feline Grace', 292132), (301250, 301250, 1, 1, 'Nano Can: Friendly Buff', 296598), (288843, 288843, 1, 1, 'Nano Can: Gunslinger', 292133), (288844, 288844, 1, 1, 'Nano Can: Gunslinger', 292133), (288845, 288845, 1, 1, 'Nano Can: Gunslinger', 292133), (288882, 288882, 1, 1, 'Nano Can: Headcracker', 292135), (288883, 288883, 1, 1, 'Nano Can: Headcracker', 292135), (288884, 288884, 1, 1, 'Nano Can: Headcracker', 292135), (296805, 296805, 1, 1, 'Nano Can: Instant Fixer Grid Conversion', 296596), (303393, 303393, 1, 1, 'Nano Can: Instant Fixer Grid Conversion', 296596), (288822, 288822, 1, 1, 'Nano Can: Instant Grid Conversion', 296597), (303392, 303392, 1, 1, 'Nano Can: Instant Grid Conversion', 296597), (300728, 300728, 1, 1, 'Nano Can: Insurance Agent', 300726), (303389, 303389, 1, 1, 'Nano Can: Insurance Agent', 300726), (288850, 288850, 1, 1, 'Nano Can: Iron Circle', 292134), (288851, 288851, 1, 1, 'Nano Can: Iron Circle', 292134), (288894, 288894, 1, 1, 'Nano Can: Karma Harvest', 292137), (288895, 288895, 1, 1, 'Nano Can: Karma Harvest', 292137), (288896, 288896, 1, 1, 'Nano Can: Karma Harvest', 292137), (288915, 288915, 1, 1, 'Nano Can: Martial Arts Mastery', 292139), (288916, 288916, 1, 1, 'Nano Can: Martial Arts Mastery', 292139), (288917, 288917, 1, 1, 'Nano Can: Martial Arts Mastery', 292139), (288900, 288900, 1, 1, 'Nano Can: Minor Suppressor', 292137), (288901, 288901, 1, 1, 'Nano Can: Minor Suppressor', 292137), (288902, 288902, 1, 1, 'Nano Can: Minor Suppressor', 292137), (288903, 288903, 1, 1, 'Nano Can: Muscle Booster', 292139), (288904, 288904, 1, 1, 'Nano Can: Muscle Booster', 292139), (288905, 288905, 1, 1, 'Nano Can: Muscle Booster', 292139), (288906, 288906, 1, 1, 'Nano Can: Muscle Stim', 292139), (288907, 288907, 1, 1, 'Nano Can: Muscle Stim', 292139), (288908, 288908, 1, 1, 'Nano Can: Muscle Stim', 292139), (288934, 288934, 1, 1, 'Nano Can: Neuronal Stimulator', 292141), (288935, 288935, 1, 1, 'Nano Can: Neuronal Stimulator', 292141), (288936, 288936, 1, 1, 'Nano Can: Offensive Steamroller', 292143), (288937, 288937, 1, 1, 'Nano Can: Offensive Steamroller', 292143), (288938, 288938, 1, 1, 'Nano Can: Offensive Steamroller', 292143), (288888, 288888, 1, 1, 'Nano Can: Philosopher''s Stone', 292136), (288889, 288889, 1, 1, 'Nano Can: Philosopher''s Stone', 292136), (288890, 288890, 1, 1, 'Nano Can: Philosopher''s Stone', 292136), (288942, 288942, 1, 1, 'Nano Can: Pistol Mastery', 292143), (288943, 288943, 1, 1, 'Nano Can: Pistol Mastery', 292143), (288944, 288944, 1, 1, 'Nano Can: Pistol Mastery', 292143), (288877, 288877, 1, 1, 'Nano Can: Prodigious Strength', 292135), (288878, 288878, 1, 1, 'Nano Can: Prodigious Strength', 292135), (288948, 288948, 1, 1, 'Nano Can: Ranged Energy Weapon Mastery', 292143), (288949, 288949, 1, 1, 'Nano Can: Ranged Energy Weapon Mastery', 292143), (288950, 288950, 1, 1, 'Nano Can: Ranged Energy Weapon Mastery', 292143), (301070, 301070, 1, 1, 'Nano Can: Resurrection Sickness Removal', 301069), (303390, 303390, 1, 1, 'Nano Can: Resurrection Sickness Removal', 301069), (288912, 288912, 1, 1, 'Nano Can: Return Attack', 292139), (288913, 288913, 1, 1, 'Nano Can: Return Attack', 292139), (288914, 288914, 1, 1, 'Nano Can: Return Attack', 292139), (288939, 288939, 1, 1, 'Nano Can: Rifle Mastery', 292143), (288940, 288940, 1, 1, 'Nano Can: Rifle Mastery', 292143), (288941, 288941, 1, 1, 'Nano Can: Rifle Mastery', 292143), (288951, 288951, 1, 1, 'Nano Can: Riot Control', 292143), (288952, 288952, 1, 1, 'Nano Can: Riot Control', 292143), (288953, 288953, 1, 1, 'Nano Can: Riot Control', 292143), (288826, 288826, 1, 1, 'Nano Can: Robust Treatment', 292131), (288827, 292500, 1, 42, 'Nano Can: Robust Treatment', 292131), (288997, 288997, 1, 1, 'Nano Can: Skill Wrangler', 292144), (288998, 288998, 1, 1, 'Nano Can: Skill Wrangler', 292144), (288999, 288999, 1, 1, 'Nano Can: Skill Wrangler', 292144), (289003, 289003, 1, 1, 'Nano Can: Skill Wrangler (Advanced)', 292144), (289004, 289004, 1, 1, 'Nano Can: Skill Wrangler (Advanced)', 292144), (289005, 289005, 1, 1, 'Nano Can: Skill Wrangler (Advanced)', 292144), (288985, 288985, 1, 1, 'Nano Can: Skill Wrangler (Commonplace)', 292144), (288986, 288986, 1, 1, 'Nano Can: Skill Wrangler (Commonplace)', 292144), (288987, 288987, 1, 1, 'Nano Can: Skill Wrangler (Commonplace)', 292144), (289018, 289018, 1, 1, 'Nano Can: Skill Wrangler (Exceptional)', 292144), (289019, 289019, 1, 1, 'Nano Can: Skill Wrangler (Exceptional)', 292144), (289020, 289020, 1, 1, 'Nano Can: Skill Wrangler (Exceptional)', 292144), (289009, 289009, 1, 1, 'Nano Can: Skill Wrangler (Greater)', 292144), (289010, 289010, 1, 1, 'Nano Can: Skill Wrangler (Greater)', 292144), (289011, 289011, 1, 1, 'Nano Can: Skill Wrangler (Greater)', 292144), (288994, 288994, 1, 1, 'Nano Can: Skill Wrangler (Inferior)', 292144), (288995, 288995, 1, 1, 'Nano Can: Skill Wrangler (Inferior)', 292144), (288996, 288996, 1, 1, 'Nano Can: Skill Wrangler (Inferior)', 292144), (288991, 288991, 1, 1, 'Nano Can: Skill Wrangler (Lesser)', 292144), (288992, 288992, 1, 1, 'Nano Can: Skill Wrangler (Lesser)', 292144), (288993, 288993, 1, 1, 'Nano Can: Skill Wrangler (Lesser)', 292144), (288988, 288988, 1, 1, 'Nano Can: Skill Wrangler (Lossy)', 292144), (288989, 288989, 1, 1, 'Nano Can: Skill Wrangler (Lossy)', 292144), (288990, 288990, 1, 1, 'Nano Can: Skill Wrangler (Lossy)', 292144), (289000, 289000, 1, 1, 'Nano Can: Skill Wrangler (Major)', 292144), (289001, 289001, 1, 1, 'Nano Can: Skill Wrangler (Major)', 292144), (289002, 289002, 1, 1, 'Nano Can: Skill Wrangler (Major)', 292144), (288982, 288982, 1, 1, 'Nano Can: Skill Wrangler (Minor)', 292144), (288983, 288983, 1, 1, 'Nano Can: Skill Wrangler (Minor)', 292144), (288984, 288984, 1, 1, 'Nano Can: Skill Wrangler (Minor)', 292144), (288979, 288979, 1, 1, 'Nano Can: Skill Wrangler (Patchy)', 292144), (288980, 288980, 1, 1, 'Nano Can: Skill Wrangler (Patchy)', 292144), (288981, 288981, 1, 1, 'Nano Can: Skill Wrangler (Patchy)', 292144), (289021, 289021, 1, 1, 'Nano Can: Skill Wrangler (Premium)', 292144), (289022, 289022, 1, 1, 'Nano Can: Skill Wrangler (Premium)', 292144), (289023, 289023, 1, 1, 'Nano Can: Skill Wrangler (Premium)', 292144), (289012, 289012, 1, 1, 'Nano Can: Skill Wrangler (Sophisticated)', 292144), (289013, 289013, 1, 1, 'Nano Can: Skill Wrangler (Sophisticated)', 292144), (289014, 289014, 1, 1, 'Nano Can: Skill Wrangler (Sophisticated)', 292144), (289015, 289015, 1, 1, 'Nano Can: Skill Wrangler (Superb)', 292144), (289016, 289016, 1, 1, 'Nano Can: Skill Wrangler (Superb)', 292144), (289017, 289017, 1, 1, 'Nano Can: Skill Wrangler (Superb)', 292144), (289006, 289006, 1, 1, 'Nano Can: Skill Wrangler (Superior)', 292144), (289007, 289007, 1, 1, 'Nano Can: Skill Wrangler (Superior)', 292144), (289008, 289008, 1, 1, 'Nano Can: Skill Wrangler (Superior)', 292144), (288961, 288961, 1, 1, 'Nano Can: Skill Wrangler (Weak)', 292144), (288962, 288962, 1, 1, 'Nano Can: Skill Wrangler (Weak)', 292144), (288963, 288963, 1, 1, 'Nano Can: Skill Wrangler (Weak)', 292144), (288855, 288855, 1, 1, 'Nano Can: Specialist Treatment', 292134), (288856, 288856, 1, 1, 'Nano Can: Specialist Treatment', 292134), (288857, 288857, 1, 1, 'Nano Can: Specialist Treatment', 292134), (300636, 300636, 1, 1, 'Nano Can: Summon Buckethead Technodealer', 300635), (288853, 288853, 1, 1, 'Nano Can: Superior First Aid', 292134), (288854, 288854, 1, 1, 'Nano Can: Superior First Aid', 292134), (288828, 288828, 1, 1, 'Nano Can: Survival Aid', 292131), (288829, 288829, 1, 1, 'Nano Can: Survival Aid', 292131), (288830, 288830, 1, 1, 'Nano Can: Survival Aid', 292131), (288879, 288879, 1, 1, 'Nano Can: Thug''s Delight', 292135), (288880, 288880, 1, 1, 'Nano Can: Thug''s Delight', 292135), (288881, 288881, 1, 1, 'Nano Can: Thug''s Delight', 292135), (288957, 288957, 1, 1, 'Nano Can: Trader Composite Specialist Tradeskills (8 Hours)', 292144), (288958, 288958, 1, 1, 'Nano Can: Trader Composite Specialist Tradeskills (8 Hours)', 292144), (288959, 288959, 1, 1, 'Nano Can: Trader Composite Specialist Tradeskills (8 Hours)', 292144), (303388, 303388, 1, 1, 'Nano Can: Treatment Mastery', 296390), (100349, 100349, 1, 1, 'Nano Charged CPU Optimizer', 119140), (150918, 150919, 1, 250, 'Nano Circuitry Wire', 290521), (235268, 235268, 1, 1, 'Nano Containment Casing', 216401), (253192, 253193, 1, 300, 'Nano Controller Unit', 99279), (100348, 100348, 1, 1, 'Nano Cooled IO Chip', 119138), (26464, 26464, 10, 10, 'Nano Crystal (1H Blunt Weapon Expertise)', 12226), (26462, 26462, 10, 10, 'Nano Crystal (1H Blunt Weapon Incompetence)', 12226), (26463, 26463, 4, 4, 'Nano Crystal (1H Blunt Weapon Inexperience)', 12226), (26461, 26461, 4, 4, 'Nano Crystal (1H Blunt Weapon Proficiency)', 12226), (27198, 27198, 10, 10, 'Nano Crystal (1H Edged Weapon Expertise)', 12226), (27200, 27200, 4, 4, 'Nano Crystal (1H Edged Weapon Inexperience)', 12226), (27201, 27201, 4, 4, 'Nano Crystal (1H Edged Weapon Proficiency)', 12226), (27202, 27202, 10, 10, 'Nano Crystal (2H Blunt Weapon Expertise)', 12226), (27203, 27203, 10, 10, 'Nano Crystal (2H Blunt Weapon Incompetence)', 12226), (27204, 27204, 4, 4, 'Nano Crystal (2H Blunt Weapon Inexperience)', 12226), (27205, 27205, 4, 4, 'Nano Crystal (2H Blunt Weapon Proficiency)', 12226), (27206, 27206, 10, 10, 'Nano Crystal (2H Edged Weapon Expertise)', 12226), (27207, 27207, 10, 10, 'Nano Crystal (2H Edged Weapon Incompetence)', 12226), (27208, 27208, 4, 4, 'Nano Crystal (2H Edged Weapon Inexperience)', 12226), (27209, 27209, 4, 4, 'Nano Crystal (2H Edged Weapon Proficiency)', 12226), (227474, 227474, 60, 60, 'Nano Crystal (A Clear Sense of Scheol)', 296648), (227475, 227475, 100, 100, 'Nano Crystal (A Clear View of Adonis)', 296642), (227516, 227516, 120, 120, 'Nano Crystal (A Clear View of Penumbra)', 296647), (211161, 211161, 116, 116, 'Nano Crystal (A Keeper''s Physique)', 42451), (116804, 116804, 179, 179, 'Nano Crystal (A Maker''s Touch)', 42448), (250210, 250210, 390, 390, 'Nano Crystal (AI monsternano hover 1)', 42449), (250218, 250218, 390, 390, 'Nano Crystal (AI monsternano hover 110)', 42449), (250220, 250220, 390, 390, 'Nano Crystal (AI monsternano hover 140)', 42449), (250222, 250222, 390, 390, 'Nano Crystal (AI monsternano hover 170)', 42449), (250224, 250224, 390, 390, 'Nano Crystal (AI monsternano hover 200)', 42449), (250226, 250226, 390, 390, 'Nano Crystal (AI monsternano hover 250)', 42449), (250212, 250212, 390, 390, 'Nano Crystal (AI monsternano hover 30)', 42449), (250228, 250228, 390, 390, 'Nano Crystal (AI monsternano hover 300)', 42449), (250214, 250214, 390, 390, 'Nano Crystal (AI monsternano hover 60)', 42449), (250216, 250216, 390, 390, 'Nano Crystal (AI monsternano hover 90)', 42449), (253169, 253169, 390, 390, 'Nano Crystal (ARK Leet Pet)', 42451), (256428, 256428, 390, 390, 'Nano Crystal (ARK events rootnano)', 42449), (226712, 226712, 166, 166, 'Nano Crystal (Abolish Aluminium)', 42452), (226723, 226723, 216, 216, 'Nano Crystal (Abolish Bismuth)', 42452), (226717, 226717, 196, 196, 'Nano Crystal (Abolish Gallium)', 42452), (226725, 226725, 220, 220, 'Nano Crystal (Abolish Polonium)', 42452), (226721, 226721, 212, 212, 'Nano Crystal (Abolish Thallium)', 42452), (226719, 226719, 203, 203, 'Nano Crystal (Abolish Tin)', 42452), (205566, 205566, 390, 390, 'Nano Crystal (Abomination of the Immortal)', 42449), (44210, 44210, 80, 80, 'Nano Crystal (Abscess Explosion)', 12257), (160713, 160713, 142, 142, 'Nano Crystal (Absolute Concentration)', 300564), (226446, 226446, 216, 216, 'Nano Crystal (Absolve Guilt)', 42451), (118110, 118110, 140, 140, 'Nano Crystal (Absorb Punishment)', 42452), (250374, 250374, 390, 390, 'Nano Crystal (Absorbing Defense System Alpha)', 42452), (250378, 250378, 390, 390, 'Nano Crystal (Absorbing Defense System Beta)', 42452), (250376, 250376, 390, 390, 'Nano Crystal (Absorbing Defense System Delta)', 42452), (250377, 250377, 390, 390, 'Nano Crystal (Absorbing Defense System Epsilon)', 42452), (250375, 250375, 390, 390, 'Nano Crystal (Absorbing Defense System Gamma)', 42452), (267019, 267019, 1, 1, 'Nano Crystal (Absorbing Lots And Lots)', 12227), (29367, 29367, 66, 66, 'Nano Crystal (Absorption Shield)', 12260), (28795, 28795, 33, 33, 'Nano Crystal (Abyssal Flames)', 12224), (45397, 45397, 24, 24, 'Nano Crystal (Accelerated Decay)', 12224), (45398, 45398, 24, 24, 'Nano Crystal (Accelerated Titanium Pellet)', 12224), (121507, 121507, 74, 74, 'Nano Crystal (Accomplished Health Haggler)', 12256), (44003, 44003, 152, 152, 'Nano Crystal (Accumulate Scars)', 42448), (45399, 45399, 27, 27, 'Nano Crystal (Acidic Conversion)', 12224), (218119, 218119, 129, 129, 'Nano Crystal (Acidic Droplets)', 42449), (45402, 45402, 149, 149, 'Nano Crystal (Acidic Lesions)', 42449), (42547, 42547, 7, 7, 'Nano Crystal (Acidic Projection)', 12224), (85274, 85274, 33, 33, 'Nano Crystal (Active Distributed Entanglement)', 12224), (82806, 82806, 20, 20, 'Nano Crystal (Active Micro Entanglement)', 12224), (44004, 44004, 33, 33, 'Nano Crystal (Active Remedy)', 12228), (44178, 44178, 53, 53, 'Nano Crystal (Active Viral Agent)', 12257), (210537, 210537, 129, 129, 'Nano Crystal (Adaptive Ambient Regeneration)', 300458), (223025, 223025, 207, 207, 'Nano Crystal (Adaptive Ambient Renaissance)', 300459), (273364, 273364, 215, 215, 'Nano Crystal (Adaptive Ambient Renewal)', 300460), (210529, 210529, 1, 1, 'Nano Crystal (Adaptive Ambient Restoration)', 297600), (233031, 233031, 212, 212, 'Nano Crystal (Adaptive Resonance Field)', 42452), (210590, 210590, 2, 2, 'Nano Crystal (Adaptive Tone of Clarity)', 300461), (210598, 210598, 126, 126, 'Nano Crystal (Adaptive Tone of Harmony)', 300462), (224074, 224074, 205, 205, 'Nano Crystal (Adaptive Tone of Serenity)', 300463), (251943, 251943, 390, 390, 'Nano Crystal (Adopt Damage)', 42449), (300454, 300454, 1, 1, 'Nano Crystal (Adopted Pet)', 300452), (26585, 26585, 10, 10, 'Nano Crystal (Adrenaline Pump)', 12228), (301836, 301836, 1, 1, 'Nano Crystal (Adv: A Return to Form)', 301837), (302224, 302224, 200, 200, 'Nano Crystal (Adv: Boon of the Enigma)', 42452), (302244, 302244, 200, 200, 'Nano Crystal (Adv: Claws of the Magal)', 42452), (302218, 302218, 200, 200, 'Nano Crystal (Adv: Kin of the Tarasque)', 42452), (302237, 302237, 200, 200, 'Nano Crystal (Adv: Lycanthropic Dexterity)', 42452), (265446, 265446, 175, 175, 'Nano Crystal (Adv: Misdiagnosis)', 12257), (302230, 302230, 200, 200, 'Nano Crystal (Adv: Squeaking from the Darkness)', 42452), (75423, 75423, 132, 132, 'Nano Crystal (Advanced Absorption Shield)', 42452), (46470, 46470, 136, 136, 'Nano Crystal (Advanced Administrator-Droid)', 42450), (46471, 46471, 80, 80, 'Nano Crystal (Advanced Aide-Droid)', 12258), (46081, 46081, 40, 40, 'Nano Crystal (Advanced Android)', 12225), (46472, 46472, 57, 57, 'Nano Crystal (Advanced Assistant-Droid)', 12258), (46473, 46473, 37, 37, 'Nano Crystal (Advanced Attendant-Droid)', 12225), (81896, 81896, 142, 142, 'Nano Crystal (Advanced Augmentation Cloud)', 42450), (46082, 46082, 14, 14, 'Nano Crystal (Advanced Automaton)', 12225), (46474, 46474, 165, 165, 'Nano Crystal (Advanced Bodyguard)', 42450), (44005, 44005, 136, 136, 'Nano Crystal (Advanced Cellular Rebuild)', 42448), (118115, 118115, 163, 163, 'Nano Crystal (Advanced Collapsing Barrier)', 42452), (75421, 75421, 119, 119, 'Nano Crystal (Advanced Combat Barrier)', 42452), (70588, 70588, 126, 126, 'Nano Crystal (Advanced Defensive Screen)', 42452), (118258, 118258, 123, 123, 'Nano Crystal (Advanced Delayed Health Payment)', 42448), (116857, 116857, 150, 150, 'Nano Crystal (Advanced Face Graft)', 42448), (270245, 270245, 191, 191, 'Nano Crystal (Advanced Fleeting Immunity)', 42452), (70598, 70598, 179, 179, 'Nano Crystal (Advanced Force Field)', 42452), (46069, 46069, 80, 80, 'Nano Crystal (Advanced Gladiatorbot)', 12258), (46070, 46070, 116, 116, 'Nano Crystal (Advanced Guardbot)', 42450), (78434, 78434, 103, 103, 'Nano Crystal (Advanced Health Freeloader)', 42448), (78424, 78424, 30, 30, 'Nano Crystal (Advanced Health Funnel)', 12228), (78443, 78443, 169, 169, 'Nano Crystal (Advanced Health Plunder)', 42448), (46475, 46475, 20, 20, 'Nano Crystal (Advanced Helper)', 12225), (85271, 85271, 103, 103, 'Nano Crystal (Advanced Insurance Hack)', 42448), (118113, 118113, 107, 107, 'Nano Crystal (Advanced Layered Protection)', 42452), (270242, 270242, 175, 175, 'Nano Crystal (Advanced Medical Claim)', 42448), (46460, 46460, 149, 149, 'Nano Crystal (Advanced Minion)', 42450), (44179, 44179, 93, 93, 'Nano Crystal (Advanced Nano Gorger)', 12257), (85272, 85272, 142, 142, 'Nano Crystal (Advanced Policy Skim)', 42448), (223330, 223330, 203, 203, 'Nano Crystal (Advanced Predator M-30)', 42450), (70589, 70589, 119, 119, 'Nano Crystal (Advanced Protective Field)', 42452), (46461, 46461, 109, 109, 'Nano Crystal (Advanced Secretary-Droid)', 42450), (70580, 70580, 109, 109, 'Nano Crystal (Advanced Shielding Barrier)', 42452), (82090, 82090, 146, 146, 'Nano Crystal (Advanced Survival Technique)', 42448), (29424, 29424, 93, 93, 'Nano Crystal (Advanced Symbol Manipulation)', 12259), (46071, 46071, 152, 152, 'Nano Crystal (Advanced Warbot)', 42450), (46072, 46072, 169, 169, 'Nano Crystal (Advanced Warmachine)', 42450), (46462, 46462, 7, 7, 'Nano Crystal (Advanced Worker)', 12225), (26516, 26516, 10, 10, 'Nano Crystal (Adventuring Expertise)', 12226), (26682, 26682, 4, 4, 'Nano Crystal (Adventuring Proficiency)', 12226), (29869, 29869, 189, 189, 'Nano Crystal (Aegis Barrier)', 42452), (218075, 218075, 198, 198, 'Nano Crystal (Aegis of Metal)', 42451), (218077, 218077, 217, 217, 'Nano Crystal (Aegis of Notum)', 42451), (218073, 218073, 103, 103, 'Nano Crystal (Aegis of Stone)', 42451), (26468, 26468, 1, 1, 'Nano Crystal (Aggression Prod)', 12226), (29330, 29330, 90, 90, 'Nano Crystal (Aggressive Captivation)', 12259), (100224, 100224, 27, 27, 'Nano Crystal (Aggressive Instincts)', 12226), (229099, 229099, 170, 170, 'Nano Crystal (Aggressive Insult)', 42451), (45400, 45400, 30, 30, 'Nano Crystal (Aggressive Mutagen)', 12224), (217671, 217671, 220, 220, 'Nano Crystal (Aggressive Reptile)', 300923), (26469, 26469, 7, 7, 'Nano Crystal (Agility Boost)', 12228), (265445, 265445, 175, 175, 'Nano Crystal (Agt: Technical Incompetence)', 12257), (301839, 301839, 215, 215, 'Nano Crystal (Agt: Two Left Feet)', 301840), (302413, 302413, 215, 215, 'Nano Crystal (Agt: Two Left Feet)', 301840), (26470, 26470, 10, 10, 'Nano Crystal (Aimed Shot Expertise)', 12226), (26472, 26472, 7, 7, 'Nano Crystal (Aimed Shot Inexperience)', 12226), (26473, 26473, 4, 4, 'Nano Crystal (Aimed Shot Proficiency)', 12226), (257090, 257090, 390, 390, 'Nano Crystal (Alien Cocoon)', 42449), (256436, 256436, 390, 390, 'Nano Crystal (Alien Host)', 42451), (44180, 44180, 159, 159, 'Nano Crystal (All-Consuming Toxin)', 42449), (136707, 136707, 50, 50, 'Nano Crystal (Alleviate Pain)', 12228), (99227, 99227, 136, 136, 'Nano Crystal (Allure of Servitude)', 42451), (42424, 42424, 185, 185, 'Nano Crystal (Alpha & Omega)', 301571), (121518, 121518, 4, 4, 'Nano Crystal (Amateur Health Haggler)', 12228), (210531, 210531, 26, 26, 'Nano Crystal (Ambient Alleviation)', 12228), (210541, 210541, 177, 177, 'Nano Crystal (Ambient Amelioration)', 42448), (223027, 223027, 216, 216, 'Nano Crystal (Ambient Invigoration)', 42448), (210539, 210539, 156, 156, 'Nano Crystal (Ambient Regeneration)', 42448), (210533, 210533, 61, 61, 'Nano Crystal (Ambient Rehabilitation)', 12256), (210535, 210535, 94, 94, 'Nano Crystal (Ambient Rejuvenation)', 12256), (210543, 210543, 187, 187, 'Nano Crystal (Ambient Revitalization)', 42448), (81902, 81902, 40, 40, 'Nano Crystal (Anatomy Lesson)', 12225), (43757, 43757, 1, 1, 'Nano Crystal (Andrew Spelltest)', 12224), (46073, 46073, 33, 33, 'Nano Crystal (Android)', 12225), (30101, 30101, 27, 27, 'Nano Crystal (Anger Addlement)', 12224), (43795, 43795, 4, 4, 'Nano Crystal (Anger Manifestation)', 295576), (246361, 246361, 390, 390, 'Nano Crystal (Anger Of Cerubin)', 42449), (226395, 226395, 50, 50, 'Nano Crystal (Anger Shock)', 12225), (205382, 205382, 390, 390, 'Nano Crystal (Anger of the Immortal)', 42449), (305769, 305769, 390, 390, 'Nano Crystal (Anger)', 42449), (151832, 151832, 110, 110, 'Nano Crystal (Anima of Fathomless Rage)', 42448), (151837, 151837, 156, 156, 'Nano Crystal (Anima of Implacable Hatred)', 42448), (151838, 151838, 189, 189, 'Nano Crystal (Anima of Maddening Wrath)', 42448), (151835, 151835, 212, 212, 'Nano Crystal (Anima of Pure Malevolence)', 42448), (151836, 151836, 67, 67, 'Nano Crystal (Anima of Relentless Fury)', 12256), (151839, 151839, 239, 239, 'Nano Crystal (Anima of The Abomination)', 42448), (151833, 151833, 37, 37, 'Nano Crystal (Anima of Unleashed Malice)', 12228), (151834, 151834, 14, 14, 'Nano Crystal (Anima of Unrestrained Ferocity)', 12228), (205558, 205558, 390, 390, 'Nano Crystal (Animosity of the Immortal)', 42449), (158718, 158718, 1, 1, 'Nano Crystal (Annihilating Breath)', 12224), (45401, 45401, 165, 165, 'Nano Crystal (Annihilating Hadron String)', 42449), (229097, 229097, 130, 130, 'Nano Crystal (Annoying Insult)', 42451), (100230, 100230, 70, 70, 'Nano Crystal (Annoying Presence)', 12259), (29369, 29369, 50, 50, 'Nano Crystal (Anticipation of Retaliation)', 12226), (270799, 270799, 215, 215, 'Nano Crystal (Anvil Fists)', 42450), (121519, 121519, 17, 17, 'Nano Crystal (Apprentice Health Haggler)', 12228), (30804, 30804, 24, 24, 'Nano Crystal (Apprentice: Electrical Engineering)', 12226), (30758, 30758, 27, 27, 'Nano Crystal (Apprentice: Field Quantum Physics)', 12226), (30759, 30759, 30, 30, 'Nano Crystal (Apprentice: Mechanical Engineering)', 12226), (29103, 29103, 33, 33, 'Nano Crystal (Apprentice: Pharmaceuticals)', 12226), (29102, 29102, 33, 33, 'Nano Crystal (Apprentice: Weapon Smithing)', 12226), (305750, 305750, 390, 390, 'Nano Crystal (Architect)', 42449), (55760, 55760, 37, 37, 'Nano Crystal (Arctic Cloak)', 12227), (55849, 55849, 83, 83, 'Nano Crystal (Arctic Gale)', 12260), (45387, 45387, 73, 73, 'Nano Crystal (Arctic Welcome)', 12257), (218103, 218103, 95, 95, 'Nano Crystal (Ariu''s Neutron Annihilator)', 12257), (29823, 29823, 1, 1, 'Nano Crystal (Armor Megaboost)', 12227), (92205, 92205, 185, 185, 'Nano Crystal (Armor Trade-In)', 42452), (275028, 275028, 215, 215, 'Nano Crystal (Art of War)', 42451), (223224, 223224, 38, 38, 'Nano Crystal (Artillery Fire)', 12226), (301751, 301751, 1, 1, 'Nano Crystal (Aspect of the Antleet)', 301807), (275008, 275008, 215, 215, 'Nano Crystal (Assassin''s Aimed Shot)', 301578), (81901, 81901, 139, 139, 'Nano Crystal (Assassin''s Grin)', 42450), (223286, 223286, 201, 201, 'Nano Crystal (Assauge Pain)', 42448), (26478, 26478, 10, 10, 'Nano Crystal (Assault Rifle Expertise)', 12226), (26479, 26479, 10, 10, 'Nano Crystal (Assault Rifle Incompetence)', 12226), (26480, 26480, 4, 4, 'Nano Crystal (Assault Rifle Inexperience)', 12226), (29332, 29332, 50, 50, 'Nano Crystal (Assault Rifle Mastery)', 12226), (26481, 26481, 4, 4, 'Nano Crystal (Assault Rifle Proficiency)', 12226), (205240, 205240, 117, 117, 'Nano Crystal (Assist Aggression Subsystem)', 42448), (205230, 205230, 15, 15, 'Nano Crystal (Assist Combat Array)', 12228), (117250, 117250, 86, 86, 'Nano Crystal (Assume Profession: Adventurer)', 12259), (117251, 117251, 109, 109, 'Nano Crystal (Assume Profession: Bureaucrat)', 42451), (117252, 117252, 103, 103, 'Nano Crystal (Assume Profession: Doctor)', 42451), (117247, 117247, 76, 76, 'Nano Crystal (Assume Profession: Enforcer)', 12259), (117248, 117248, 90, 90, 'Nano Crystal (Assume Profession: Engineer)', 12259), (117249, 117249, 96, 96, 'Nano Crystal (Assume Profession: Fixer)', 12259), (117244, 117244, 83, 83, 'Nano Crystal (Assume Profession: Martial Artist)', 12259), (117245, 117245, 113, 113, 'Nano Crystal (Assume Profession: Meta-Physicist)', 42451), (117246, 117246, 119, 119, 'Nano Crystal (Assume Profession: Nanotechnician)', 42451), (117242, 117242, 80, 80, 'Nano Crystal (Assume Profession: Soldier)', 12259), (117243, 117243, 99, 99, 'Nano Crystal (Assume Profession: Trader)', 12259), (227675, 227675, 185, 185, 'Nano Crystal (Assurance Advocacy)', 42452), (227677, 227677, 201, 201, 'Nano Crystal (Assurance Attention)', 42452), (227679, 227679, 210, 210, 'Nano Crystal (Assurance Relief)', 42452), (218099, 218099, 75, 75, 'Nano Crystal (Astinus''s Stellar Pulse)', 12257), (45388, 45388, 159, 159, 'Nano Crystal (Atomic Collapse)', 42449), (29333, 29333, 27, 27, 'Nano Crystal (Attack Booster)', 12226), (226749, 226749, 219, 219, 'Nano Crystal (Attenuate Defense)', 42452), (26482, 26482, 4, 4, 'Nano Crystal (Augment Agility)', 12228), (26483, 26483, 4, 4, 'Nano Crystal (Augment Intelligence)', 12228), (26484, 26484, 4, 4, 'Nano Crystal (Augment Psychic)', 12228), (26485, 26485, 4, 4, 'Nano Crystal (Augment Sense)', 12228), (26486, 26486, 4, 4, 'Nano Crystal (Augment Stamina)', 12228), (26487, 26487, 4, 4, 'Nano Crystal (Augment Strength)', 12228), (223198, 223198, 209, 209, 'Nano Crystal (Augment fight (Team))', 42450), (81895, 81895, 106, 106, 'Nano Crystal (Augmentation Cloud)', 42450), (46002, 46002, 50, 50, 'Nano Crystal (Augmented Energized Beam)', 12224), (223230, 223230, 181, 181, 'Nano Crystal (Augmented Mirror Shield MK I)', 42452), (223182, 223182, 203, 203, 'Nano Crystal (Augmented Mirror Shield MK II)', 42452), (223184, 223184, 213, 213, 'Nano Crystal (Augmented Mirror Shield MK III)', 42452), (223186, 223186, 220, 220, 'Nano Crystal (Augmented Mirror Shield MK IV)', 42452), (273401, 273401, 215, 215, 'Nano Crystal (Augmented Mirror Shield MK V)', 42452), (205577, 205577, 390, 390, 'Nano Crystal (Aura of the Immortal)', 42448), (30102, 30102, 43, 43, 'Nano Crystal (Authority Figure)', 12226), (29334, 29334, 106, 106, 'Nano Crystal (Automatic Targeting)', 301598), (46074, 46074, 7, 7, 'Nano Crystal (Automaton)', 12225), (44181, 44181, 146, 146, 'Nano Crystal (Autonomous Viral Agent)', 42449), (218091, 218091, 219, 219, 'Nano Crystal (Autumn Leaves)', 42450), (55762, 55762, 4, 4, 'Nano Crystal (Avenging Shield)', 12227), (118254, 118254, 44, 44, 'Nano Crystal (Average Delayed Health Payment)', 12228), (233850, 233850, 150, 150, 'Nano Crystal (Awaken Shadowland Soul Memory)', 42450), (31443, 31443, 57, 57, 'Nano Crystal (Backpain)', 301590), (210794, 210794, 154, 154, 'Nano Crystal (Backpiercer)', 301590), (210798, 210798, 196, 196, 'Nano Crystal (Backstabber)', 301590), (42548, 42548, 10, 10, 'Nano Crystal (Bacterial Invasion)', 12224), (28917, 28917, 24, 24, 'Nano Crystal (Bad Blood)', 12226), (227769, 227769, 60, 60, 'Nano Crystal (Bail Out)', 301574), (30764, 30764, 7, 7, 'Nano Crystal (Balanced Striker)', 12225), (100225, 100225, 57, 57, 'Nano Crystal (Baleful Stare)', 12259), (56174, 56174, 106, 106, 'Nano Crystal (Ball and Chain)', 42449), (287161, 287161, 1, 1, 'Nano Crystal (Balloons)', 300565), (230408, 230408, 390, 390, 'Nano Crystal (Bane of Eldini)', 42450), (230406, 230406, 390, 390, 'Nano Crystal (Bane of Elyn)', 42450), (230410, 230410, 390, 390, 'Nano Crystal (Bane of Farzad)', 42450), (230412, 230412, 390, 390, 'Nano Crystal (Bane of Jareck)', 42450), (230414, 230414, 390, 390, 'Nano Crystal (Bane of Nadira)', 42450), (230417, 230417, 390, 390, 'Nano Crystal (Bane of the Challenger)', 42450), (289799, 289799, 390, 390, 'Nano Crystal (Bane of the Giseleh)', 42450), (46003, 46003, 113, 113, 'Nano Crystal (Bane of the Living)', 42449), (246359, 246359, 390, 390, 'Nano Crystal (Bane''s Curse)', 42449), (246374, 246374, 390, 390, 'Nano Crystal (Bane''s Reimbursement)', 42448), (246291, 246291, 390, 390, 'Nano Crystal (Banes Shadow)', 42450), (230434, 230434, 390, 390, 'Nano Crystal (Banshee Wail)', 42449), (55755, 55755, 83, 83, 'Nano Crystal (Barbaric Blades)', 12260), (46004, 46004, 96, 96, 'Nano Crystal (Barrage of Blades)', 12257), (28796, 28796, 109, 109, 'Nano Crystal (Barrage of Fire)', 42449), (210694, 210694, 105, 105, 'Nano Crystal (Barrier of the Devoted)', 42452), (210690, 210690, 66, 66, 'Nano Crystal (Barrier of the Loyal)', 12260), (210698, 210698, 166, 166, 'Nano Crystal (Barrier of the Resolute)', 42452), (210700, 210700, 198, 198, 'Nano Crystal (Barrier of the Righteous)', 42452), (210692, 210692, 88, 88, 'Nano Crystal (Barrier of the Staunch)', 12260), (210696, 210696, 131, 131, 'Nano Crystal (Barrier of the Veracious)', 42452), (46463, 46463, 129, 129, 'Nano Crystal (Basic Administrator)', 42450), (46464, 46464, 70, 70, 'Nano Crystal (Basic Aide-Droid)', 12258), (46465, 46465, 47, 47, 'Nano Crystal (Basic Assistant-Droid)', 12225), (46466, 46466, 27, 27, 'Nano Crystal (Basic Attendant-Droid)', 12225), (46467, 46467, 159, 159, 'Nano Crystal (Basic Bodyguard)', 42450), (46005, 46005, 73, 73, 'Nano Crystal (Basic Crystalizing Ray)', 12257), (70586, 70586, 37, 37, 'Nano Crystal (Basic Defensive Screen)', 12227), (70594, 70594, 159, 159, 'Nano Crystal (Basic Force Field)', 42452), (46468, 46468, 14, 14, 'Nano Crystal (Basic Helper-Droid)', 12225), (90407, 90407, 17, 17, 'Nano Crystal (Basic Humidity Extractor)', 12225), (85273, 85273, 4, 4, 'Nano Crystal (Basic Insurance Hack)', 12228), (46469, 46469, 142, 142, 'Nano Crystal (Basic Minion)', 42450), (95750, 95750, 149, 149, 'Nano Crystal (Basic Omni-Med Enhancement)', 42448), (85268, 85268, 66, 66, 'Nano Crystal (Basic Policy Skim)', 12256), (70583, 70583, 33, 33, 'Nano Crystal (Basic Protective Field)', 12227), (46455, 46455, 96, 96, 'Nano Crystal (Basic Secretary-Droid)', 12258), (70584, 70584, 27, 27, 'Nano Crystal (Basic Shielding Barrier)', 12227), (250445, 250445, 390, 390, 'Nano Crystal (Basic Viral Clampdown)', 42449), (46456, 46456, 1, 1, 'Nano Crystal (Basic Worker-Droid)', 12225), (90453, 90453, 17, 17, 'Nano Crystal (Baton of Authority (Team))', 296549), (90452, 90452, 162, 162, 'Nano Crystal (Baton of Command (Team))', 296549), (90451, 90451, 99, 99, 'Nano Crystal (Baton of Leadership (Team))', 296549), (223228, 223228, 197, 197, 'Nano Crystal (Battery Fire)', 42451), (275168, 275168, 4, 4, 'Nano Crystal (Battle Station Enhanced Pet Warp)', 12225), (223318, 223318, 209, 209, 'Nano Crystal (Battlefield Devastator Drone)', 42450), (95726, 95726, 152, 152, 'Nano Crystal (Battlefield Endurance)', 42448), (154915, 154915, 90, 90, 'Nano Crystal (Beacon Warp)', 12258), (223168, 223168, 213, 213, 'Nano Crystal (Beauty of Life)', 42448), (215974, 215974, 390, 390, 'Nano Crystal (Belamorte''s Blessing - 720)', 42448), (215976, 215976, 390, 390, 'Nano Crystal (Belamorte''s Blessing - 722)', 42448), (215978, 215978, 390, 390, 'Nano Crystal (Belamorte''s Blessing - 724)', 42448), (215980, 215980, 390, 390, 'Nano Crystal (Belamorte''s Blessing - 726)', 42448), (215982, 215982, 390, 390, 'Nano Crystal (Belamorte''s Blessing - 728)', 42448), (215984, 215984, 390, 390, 'Nano Crystal (Belamorte''s Blessing - 729)', 42448), (125736, 125736, 192, 192, 'Nano Crystal (Belamorte''s Blessing)', 12228), (223120, 223120, 203, 203, 'Nano Crystal (Belligerent Stance)', 42451), (99226, 99226, 33, 33, 'Nano Crystal (Bend Will)', 12226), (210515, 210515, 76, 76, 'Nano Crystal (Benevolent Ward)', 12260), (100264, 100264, 30, 30, 'Nano Crystal (Berserk Rage)', 301297), (44006, 44006, 146, 146, 'Nano Crystal (Bestow Healing)', 42448), (100447, 100447, 30, 30, 'Nano Crystal (Bewilder)', 12224), (28753, 28753, 24, 24, 'Nano Crystal (Bind Wounds)', 12228), (45389, 45389, 119, 119, 'Nano Crystal (Bio-Acid Spray)', 42449), (152527, 152527, 113, 113, 'Nano Crystal (Bio-Mirror Shielding)', 42452), (26488, 26488, 10, 10, 'Nano Crystal (BioMet Expertise)', 12226), (26490, 26490, 4, 4, 'Nano Crystal (BioMet Inexperience)', 12226), (29372, 29372, 37, 37, 'Nano Crystal (BioMet Mastery)', 12226), (26491, 26491, 4, 4, 'Nano Crystal (BioMet Proficiency)', 12226), (218133, 218133, 161, 161, 'Nano Crystal (Biomolecular Corrosion)', 42449), (28754, 28754, 27, 27, 'Nano Crystal (Biotoxin MK I)', 12224), (28755, 28755, 43, 43, 'Nano Crystal (Biotoxin MK II)', 12224), (28756, 28756, 73, 73, 'Nano Crystal (Biotoxin MK III)', 12257), (28757, 28757, 93, 93, 'Nano Crystal (Biotoxin MK IV)', 12257), (55854, 55854, 126, 126, 'Nano Crystal (Biting Blades)', 42452), (223244, 223244, 50, 50, 'Nano Crystal (Blackmail Notum)', 12225), (46006, 46006, 86, 86, 'Nano Crystal (Blade Chaos)', 12257), (226428, 226428, 75, 75, 'Nano Crystal (Blast of Avoidance)', 12258), (226432, 226432, 200, 200, 'Nano Crystal (Blast of Circumvention)', 42450), (226430, 226430, 150, 150, 'Nano Crystal (Blast of Neglect)', 42450), (226434, 226434, 207, 207, 'Nano Crystal (Blast of Ommitance)', 42450), (226438, 226438, 220, 220, 'Nano Crystal (Blast of Outflanking)', 42450), (226436, 226436, 214, 214, 'Nano Crystal (Blast of Rejection)', 42450), (28797, 28797, 169, 169, 'Nano Crystal (Blaze of Hephaestos)', 42449), (223126, 223126, 213, 213, 'Nano Crystal (Blessed By Shadow)', 42450), (223294, 223294, 214, 214, 'Nano Crystal (Blessing of Purity)', 42448), (205581, 205581, 390, 390, 'Nano Crystal (Blessing of the Immortal)', 42448), (230454, 230454, 390, 390, 'Nano Crystal (Blessing of the Redeemed)', 42448), (230456, 230456, 390, 390, 'Nano Crystal (Blessing of the Redeemed)', 42448), (230458, 230458, 390, 390, 'Nano Crystal (Blessing of the Redeemed)', 42448), (28798, 28798, 33, 33, 'Nano Crystal (Blight)', 12224), (230460, 230460, 390, 390, 'Nano Crystal (Blinded)', 42449), (230462, 230462, 390, 390, 'Nano Crystal (Blinded)', 42449), (230464, 230464, 390, 390, 'Nano Crystal (Blinded)', 42449), (150022, 150022, 87, 87, 'Nano Crystal (Bliss)', 12256), (82820, 82820, 50, 50, 'Nano Crystal (Blizzard of Red Tape)', 12224), (215926, 215926, 390, 390, 'Nano Crystal (Blood Anvil of Restite - 720)', 42448), (215928, 215928, 390, 390, 'Nano Crystal (Blood Anvil of Restite - 722)', 42448), (215930, 215930, 390, 390, 'Nano Crystal (Blood Anvil of Restite - 724)', 42448), (215932, 215932, 390, 390, 'Nano Crystal (Blood Anvil of Restite - 726)', 42448), (215934, 215934, 390, 390, 'Nano Crystal (Blood Anvil of Restite - 728)', 42448), (215936, 215936, 390, 390, 'Nano Crystal (Blood Anvil of Restite - 729)', 42448), (125729, 125729, 99, 99, 'Nano Crystal (Blood Anvil of Restite)', 12228), (27805, 27805, 24, 24, 'Nano Crystal (Blood Circle)', 12228), (31415, 31415, 116, 116, 'Nano Crystal (Blood Makes Noise)', 301586), (218105, 218105, 100, 100, 'Nano Crystal (Blood of Hephaestos)', 12257), (28758, 28758, 129, 129, 'Nano Crystal (Bloom of Health)', 42448), (226727, 226727, 132, 132, 'Nano Crystal (Blunt Defense)', 42452), (162320, 162320, 159, 159, 'Nano Crystal (Blur of Claws)', 300921), (97464, 97464, 43, 43, 'Nano Crystal (Bodily Amplification)', 12228), (223300, 223300, 220, 220, 'Nano Crystal (Bodily Invigoration)', 42448), (43994, 43994, 146, 146, 'Nano Crystal (Bodily Purification)', 42448), (95747, 95747, 10, 10, 'Nano Crystal (Bodily Reinforcement)', 12228), (28799, 28799, 152, 152, 'Nano Crystal (Boil Blood)', 42449), (70631, 70631, 126, 126, 'Nano Crystal (Boil From Within)', 42449), (273319, 273319, 215, 215, 'Nano Crystal (Bone Eater)', 42449), (305770, 305770, 390, 390, 'Nano Crystal (Boom)', 42449), (229925, 229925, 25, 25, 'Nano Crystal (Boon of Ergo - Aban-Shere)', 12225), (229937, 229937, 140, 140, 'Nano Crystal (Boon of Ergo - Enel-Bhotaar)', 42450), (229941, 229941, 180, 180, 'Nano Crystal (Boon of Ergo - Enel-Roch)', 42450), (229939, 229939, 160, 160, 'Nano Crystal (Boon of Ergo - Enel-Thar)', 42450), (229943, 229943, 200, 200, 'Nano Crystal (Boon of Ergo - Enel-Xum)', 42450), (229927, 229927, 50, 50, 'Nano Crystal (Boon of Ergo - Ocra-Bhotaar)', 12225), (229931, 229931, 100, 100, 'Nano Crystal (Boon of Ergo - Ocra-Roch)', 12258), (229935, 229935, 130, 130, 'Nano Crystal (Boon of Ergo - Ocra-Shere)', 42450), (229929, 229929, 75, 75, 'Nano Crystal (Boon of Ergo - Ocra-Thar)', 12258), (229933, 229933, 115, 115, 'Nano Crystal (Boon of Ergo - Ocra-Xum)', 42450), (205583, 205583, 390, 390, 'Nano Crystal (Boon of the Immortal)', 42448), (205246, 205246, 174, 174, 'Nano Crystal (Boost Aggression Subsystem)', 42448), (205236, 205236, 77, 77, 'Nano Crystal (Boost Combat Array)', 12256), (223194, 223194, 171, 171, 'Nano Crystal (Boost Fight (Team))', 42450), (269464, 269464, 183, 183, 'Nano Crystal (Boosted Tendons)', 42450), (305768, 305768, 390, 390, 'Nano Crystal (Booster)', 42449), (95727, 95727, 17, 17, 'Nano Crystal (Boot Camp Toughness)', 12228), (155388, 155388, 67, 67, 'Nano Crystal (Bootleg Beamers ''n Bolters (OP-C))', 12258), (155380, 155380, 120, 120, 'Nano Crystal (Bootleg Beamers ''n Bolters (OP-CC))', 42450), (155385, 155385, 107, 107, 'Nano Crystal (Bootleg Beamers ''n Bolters (OP-CLX))', 42450), (155384, 155384, 113, 113, 'Nano Crystal (Bootleg Beamers ''n Bolters (OP-CLXXX))', 42450), (155386, 155386, 103, 103, 'Nano Crystal (Bootleg Beamers ''n Bolters (OP-CXL))', 42450), (155387, 155387, 90, 90, 'Nano Crystal (Bootleg Beamers ''n Bolters (OP-CXX))', 12258), (155390, 155390, 34, 34, 'Nano Crystal (Bootleg Beamers ''n Bolters (OP-LX))', 12225), (155389, 155389, 54, 54, 'Nano Crystal (Bootleg Beamers ''n Bolters (OP-LXXX))', 12258), (155391, 155391, 21, 21, 'Nano Crystal (Bootleg Beamers ''n Bolters (OP-XL))', 12225), (155392, 155392, 8, 8, 'Nano Crystal (Bootleg Beamers ''n Bolters (OP-XX))', 12225), (155375, 155375, 67, 67, 'Nano Crystal (Bootleg Blades ''n Blunts (OP-C))', 12258), (155370, 155370, 120, 120, 'Nano Crystal (Bootleg Blades ''n Blunts (OP-CC))', 42450), (155372, 155372, 107, 107, 'Nano Crystal (Bootleg Blades ''n Blunts (OP-CLX))', 42450), (155371, 155371, 113, 113, 'Nano Crystal (Bootleg Blades ''n Blunts (OP-CLXXX))', 42450), (155373, 155373, 103, 103, 'Nano Crystal (Bootleg Blades ''n Blunts (OP-CXL))', 42450), (155374, 155374, 90, 90, 'Nano Crystal (Bootleg Blades ''n Blunts (OP-CXX))', 12258), (155377, 155377, 34, 34, 'Nano Crystal (Bootleg Blades ''n Blunts (OP-LX))', 12225), (155376, 155376, 54, 54, 'Nano Crystal (Bootleg Blades ''n Blunts (OP-LXXX))', 12258), (155378, 155378, 21, 21, 'Nano Crystal (Bootleg Blades ''n Blunts (OP-XL))', 12225), (155379, 155379, 8, 8, 'Nano Crystal (Bootleg Blades ''n Blunts (OP-XX))', 12225), (26492, 26492, 4, 4, 'Nano Crystal (Bot Mass Migration)', 12228), (26493, 26493, 4, 4, 'Nano Crystal (Bot Migration)', 12228), (90412, 90412, 149, 149, 'Nano Crystal (Boundless Humidity Extractor)', 42450), (26494, 26494, 10, 10, 'Nano Crystal (Bow Expertise)', 12226), (26495, 26495, 10, 10, 'Nano Crystal (Bow Incompetence)', 12226), (26496, 26496, 4, 4, 'Nano Crystal (Bow Inexperience)', 12226), (26497, 26497, 4, 4, 'Nano Crystal (Bow Proficiency)', 12226), (26498, 26498, 10, 10, 'Nano Crystal (Bow Special Attack Expertise)', 12226), (26499, 26499, 14, 14, 'Nano Crystal (Bow Special Attack Incompetence)', 12226), (26500, 26500, 7, 7, 'Nano Crystal (Bow Special Attack Inexperience)', 12226), (26501, 26501, 4, 4, 'Nano Crystal (Bow Special Attack Proficiency)', 12226), (142776, 142776, 97, 97, 'Nano Crystal (Brain Bender)', 12259), (269448, 269448, 180, 180, 'Nano Crystal (Brain Freeze)', 294091), (142772, 142772, 50, 50, 'Nano Crystal (Brain Swap)', 12226), (49829, 49829, 142, 142, 'Nano Crystal (Brave Challenger to Behemoth)', 42450), (49828, 49828, 119, 119, 'Nano Crystal (Brave Challenger to Colossus)', 42450), (49823, 49823, 14, 14, 'Nano Crystal (Brave Challenger to Cyclops)', 12225), (49825, 49825, 76, 76, 'Nano Crystal (Brave Challenger to Gargantua)', 12258), (49826, 49826, 132, 132, 'Nano Crystal (Brave Challenger to Leviathan)', 42450), (49827, 49827, 40, 40, 'Nano Crystal (Brave Challenger to Titan)', 12225), (26502, 26502, 10, 10, 'Nano Crystal (Brawl Expertise)', 12226), (26504, 26504, 7, 7, 'Nano Crystal (Brawl Inexperience)', 12226), (26505, 26505, 4, 4, 'Nano Crystal (Brawl Proficiency)', 12226), (227779, 227779, 135, 135, 'Nano Crystal (Break Out)', 301574), (26506, 26506, 10, 10, 'Nano Crystal (Breaking and Entering Expertise)', 12226), (26507, 26507, 4, 4, 'Nano Crystal (Breaking and Entering Proficiency)', 12226), (205587, 205587, 390, 390, 'Nano Crystal (Breath of the Immortal)', 42448), (56240, 56240, 47, 47, 'Nano Crystal (Brief Interrogation)', 12224), (46007, 46007, 24, 24, 'Nano Crystal (Brief Poison Fog)', 12224), (100454, 100454, 33, 33, 'Nano Crystal (Bright Shiny Sparkling Thing)', 12224), (55758, 55758, 73, 73, 'Nano Crystal (Bristling Guard)', 12260), (55761, 55761, 10, 10, 'Nano Crystal (Bristling Shield)', 12227), (83985, 83985, 159, 159, 'Nano Crystal (Brutal Cornea Attack)', 42451), (29792, 29792, 76, 76, 'Nano Crystal (Brutal Thug)', 12259), (303147, 303147, 1, 1, 'Nano Crystal (Buckethead Techno-scavenger Costume)', 303144), (239740, 239740, 5, 5, 'Nano Crystal (Build Basic Spirit Tech Source Projector)', 12225), (239750, 239750, 100, 100, 'Nano Crystal (Build Boosted Spirit Tech Source Fountain)', 12258), (239752, 239752, 125, 125, 'Nano Crystal (Build Spirit Tech Source Drill)', 42450), (239746, 239746, 65, 65, 'Nano Crystal (Build Spirit Tech Source Fountain)', 12258), (239758, 239758, 220, 220, 'Nano Crystal (Build Spirit Tech Source Geyser)', 42450), (239754, 239754, 150, 150, 'Nano Crystal (Build Spirit Tech Source Pump)', 42450), (239756, 239756, 200, 200, 'Nano Crystal (Build Spirit Tech Source Waterfall Projector)', 42450), (239742, 239742, 15, 15, 'Nano Crystal (Build Twinked Basic Spirit Tech Source Projector)', 12225), (239748, 239748, 85, 85, 'Nano Crystal (Build Upgraded Spirit Tech Source Fountain)', 12258), (239744, 239744, 40, 40, 'Nano Crystal (Build Yuttos Upgraded Spirit Tech Source Projector)', 12225), (30766, 30766, 96, 96, 'Nano Crystal (Bulk Trader)', 12259), (267644, 267644, 200, 200, 'Nano Crystal (Bur: Basic Nanite Robot Protection)', 42448), (267634, 267634, 200, 200, 'Nano Crystal (Bur: Corporate Insurance Policy)', 42448), (267641, 267641, 200, 200, 'Nano Crystal (Bur: Corporate Strategy)', 42448), (267919, 267919, 200, 200, 'Nano Crystal (Bur: Droid Damage Matrix)', 42448), (302248, 302248, 200, 200, 'Nano Crystal (Bur: Droid Pressure Matrix)', 42448), (267635, 267635, 200, 200, 'Nano Crystal (Bur: Greater Corporate Insurance Policy)', 42448), (220622, 220622, 116, 116, 'Nano Crystal (Bur: Improved Red Tape)', 301075), (302146, 302146, 100, 100, 'Nano Crystal (Bur: Inefficient Arm Movements)', 301085), (302147, 302147, 100, 100, 'Nano Crystal (Bur: Inefficient Close-Quarters Combat)', 301085), (302145, 302145, 100, 100, 'Nano Crystal (Bur: Inefficient Nanobot Control)', 301085), (301082, 301082, 215, 215, 'Nano Crystal (Bur: Intensify Stress)', 301178), (267539, 267539, 200, 200, 'Nano Crystal (Bur: Junior Last Minute Negotiations)', 42449), (267537, 267537, 200, 200, 'Nano Crystal (Bur: Last Minute Negotiations)', 42449), (267633, 267633, 200, 200, 'Nano Crystal (Bur: Lesser Corporate Insurance Policy)', 42448), (267643, 267643, 200, 200, 'Nano Crystal (Bur: Lesser Nanite Robot Protection)', 42448), (267642, 267642, 200, 200, 'Nano Crystal (Bur: Nanite Robot Protection)', 42448), (265448, 265448, 175, 175, 'Nano Crystal (Bur: Rabies)', 12257), (267920, 267920, 200, 200, 'Nano Crystal (Bur: Take the Bullet)', 42448), (302151, 302151, 200, 200, 'Nano Crystal (Bur: Wasteful Arm Movements)', 301085), (302149, 302149, 200, 200, 'Nano Crystal (Bur: Wasteful Close-Quarters Combat)', 301085), (302155, 302155, 200, 200, 'Nano Crystal (Bur: Wasteful Marksmanship)', 301085), (302153, 302153, 200, 200, 'Nano Crystal (Bur: Wasteful Nanobot Control)', 301085), (279341, 279341, 20, 20, 'Nano Crystal (Bur: Weekend Volunteer)', 296435), (56179, 56179, 189, 189, 'Nano Crystal (Burden of Atlas)', 42449), (46008, 46008, 93, 93, 'Nano Crystal (Burn from Within)', 12257), (28800, 28800, 182, 182, 'Nano Crystal (Burning Bones)', 42449), (154173, 154173, 37, 37, 'Nano Crystal (Burning Nightmare)', 12224), (45390, 45390, 57, 57, 'Nano Crystal (Burning Orb)', 12257), (45391, 45391, 126, 126, 'Nano Crystal (Burning Quartet)', 42449), (100262, 100262, 80, 80, 'Nano Crystal (Burning Rage)', 301297), (45392, 45392, 93, 93, 'Nano Crystal (Burning Triumvirate)', 12257), (246810, 246810, 390, 390, 'Nano Crystal (Burning Truth of the Tentacle)', 42449), (26508, 26508, 10, 10, 'Nano Crystal (Burst Expertise)', 12226), (26509, 26509, 14, 14, 'Nano Crystal (Burst Incompetence)', 12226), (26510, 26510, 7, 7, 'Nano Crystal (Burst Inexperience)', 12226), (227771, 227771, 185, 185, 'Nano Crystal (Burst Out)', 301574), (26511, 26511, 4, 4, 'Nano Crystal (Burst Proficiency)', 12226), (223212, 223212, 77, 77, 'Nano Crystal (Bypass me)', 12259), (273302, 273302, 215, 215, 'Nano Crystal (CEO Guardian)', 42450), (150021, 150021, 93, 93, 'Nano Crystal (Call of Rat)', 12258), (150020, 150020, 107, 107, 'Nano Crystal (Call on Insanity)', 42451), (125753, 125753, 156, 156, 'Nano Crystal (Calling of Altumus)', 295566), (125754, 125754, 186, 186, 'Nano Crystal (Calling of Belamorte)', 295566), (125747, 125747, 169, 169, 'Nano Crystal (Calling of Curatem The Grand)', 295566), (125751, 125751, 17, 17, 'Nano Crystal (Calling of Medinos)', 295566), (225903, 225903, 207, 207, 'Nano Crystal (Calling of Mortificant the Eternal)', 295567), (125752, 125752, 113, 113, 'Nano Crystal (Calling of Restite)', 295566), (125748, 125748, 37, 37, 'Nano Crystal (Calling of Salvinous)', 295566), (125749, 125749, 87, 87, 'Nano Crystal (Calling of Sanoo)', 295566), (125750, 125750, 143, 143, 'Nano Crystal (Calling of The Vivificator)', 295566), (125755, 125755, 57, 57, 'Nano Crystal (Calling of Valentyia)', 295566), (44198, 44198, 33, 33, 'Nano Crystal (Cancerous Burrower)', 12224), (223226, 223226, 123, 123, 'Nano Crystal (Canonry Fire)', 42451), (121520, 121520, 34, 34, 'Nano Crystal (Capable Health Haggler)', 12228), (82194, 82194, 66, 66, 'Nano Crystal (Captivate Crowd)', 12257), (99225, 99225, 109, 109, 'Nano Crystal (Captivated Thoughts)', 42451), (56013, 56013, 152, 152, 'Nano Crystal (Captivating Speech)', 42449), (82193, 82193, 40, 40, 'Nano Crystal (Capture Attention)', 12224), (218097, 218097, 60, 60, 'Nano Crystal (Caring Needle)', 12257), (293900, 293900, 175, 175, 'Nano Crystal (Carlita Desposito)', 294089), (258563, 258563, 220, 220, 'Nano Crystal (Carlo Pinnetti)', 297641), (210505, 210505, 168, 168, 'Nano Crystal (Carnage Reaper)', 42450), (45393, 45393, 175, 175, 'Nano Crystal (Cascade of the Storm)', 42449), (229095, 229095, 80, 80, 'Nano Crystal (Casual Insult)', 12259), (205392, 205392, 390, 390, 'Nano Crystal (Cataclysm of the Immortal)', 42449), (45394, 45394, 40, 40, 'Nano Crystal (Cellular Decay)', 12224), (44182, 44182, 156, 156, 'Nano Crystal (Cellular Dismantlement)', 42449), (43995, 43995, 47, 47, 'Nano Crystal (Cellular Grafting)', 12228), (223298, 223298, 218, 218, 'Nano Crystal (Cellular Rebirth)', 42448), (43996, 43996, 86, 86, 'Nano Crystal (Cellular Rebuild)', 12256), (223282, 223282, 180, 180, 'Nano Crystal (Cellular Recuperation)', 42448), (136705, 136705, 83, 83, 'Nano Crystal (Cellular Reformation)', 12256), (28764, 28764, 146, 146, 'Nano Crystal (Cellular Restoration)', 301187), (224166, 224166, 212, 212, 'Nano Crystal (Ceremonial Caress)', 42450), (224168, 224168, 218, 218, 'Nano Crystal (Ceremonial Embrace)', 42450), (224164, 224164, 203, 203, 'Nano Crystal (Ceremonial Grasp)', 42450), (30105, 30105, 165, 165, 'Nano Crystal (Chains of Iron)', 42449), (49824, 49824, 139, 139, 'Nano Crystal (Challenger to Behemoth)', 42450), (49820, 49820, 103, 103, 'Nano Crystal (Challenger to Colossus)', 42450), (49821, 49821, 4, 4, 'Nano Crystal (Challenger to Cyclops)', 12225), (49822, 49822, 66, 66, 'Nano Crystal (Challenger to Gargantua)', 12258), (49818, 49818, 132, 132, 'Nano Crystal (Challenger to Leviathan)', 42450), (49819, 49819, 33, 33, 'Nano Crystal (Challenger to Titan)', 12225), (234998, 234998, 87, 87, 'Nano Crystal (Channel Notum Vein: Adonis)', 12258), (234994, 234994, 85, 85, 'Nano Crystal (Channel Notum Vein: Elysium)', 12258), (234996, 234996, 86, 86, 'Nano Crystal (Channel Notum Vein: Scheol)', 12258), (116822, 116822, 130, 130, 'Nano Crystal (Chant of Effortless Strikes)', 300520), (116831, 116831, 87, 87, 'Nano Crystal (Chant of Frenzied Blows)', 300520), (205579, 205579, 390, 390, 'Nano Crystal (Chant of the Immortal)', 42448), (28801, 28801, 139, 139, 'Nano Crystal (Chaos Lights)', 42449), (45395, 45395, 47, 47, 'Nano Crystal (Chaotic Entropy)', 12224), (155620, 155620, 173, 173, 'Nano Crystal (Character Assassin)', 42451), (99224, 99224, 169, 169, 'Nano Crystal (Charismatic Rapture)', 42451), (223246, 223246, 125, 125, 'Nano Crystal (Cheat Notum)', 42450), (252039, 252039, 390, 390, 'Nano Crystal (Chemical Breeze)', 42449), (45396, 45396, 24, 24, 'Nano Crystal (Chemical Burn)', 12224), (26015, 26015, 63, 63, 'Nano Crystal (Chemical Concoction)', 12259), (45376, 45376, 103, 103, 'Nano Crystal (Chemical Liquefaction)', 42449), (26514, 26514, 10, 10, 'Nano Crystal (Chemistry Expertise)', 12226), (26515, 26515, 4, 4, 'Nano Crystal (Chemistry Proficiency)', 12226), (125771, 125771, 116, 116, 'Nano Crystal (Chill Spear)', 42449), (230440, 230440, 390, 390, 'Nano Crystal (Chill of Death)', 42449), (218095, 218095, 55, 55, 'Nano Crystal (Chilled Touch)', 12257), (218123, 218123, 147, 147, 'Nano Crystal (Chilling Presence)', 42449), (45996, 45996, 33, 33, 'Nano Crystal (Chilling Stream)', 12224), (304788, 304788, 1, 1, 'Nano Crystal (Chillyrat)', 304803), (81850, 81850, 142, 142, 'Nano Crystal (Chirp of the Mournful Cricket)', 42450), (224162, 224162, 216, 216, 'Nano Crystal (Chthonic Dissipation)', 42450), (45997, 45997, 60, 60, 'Nano Crystal (Circle Scythe)', 12257), (43997, 43997, 149, 149, 'Nano Crystal (Circle of Renewal)', 42448), (28802, 28802, 50, 50, 'Nano Crystal (Circle of Winter)', 12224), (43998, 43998, 129, 129, 'Nano Crystal (Circulate Health)', 42448), (223214, 223214, 153, 153, 'Nano Crystal (Circumvent me)', 42451), (55780, 55780, 149, 149, 'Nano Crystal (Citadel of Spikes)', 42452), (83984, 83984, 7, 7, 'Nano Crystal (Claw Eyes)', 12226), (223248, 223248, 100, 100, 'Nano Crystal (Cleanse Outfit (Team))', 12258), (42410, 42410, 96, 96, 'Nano Crystal (Cleanse Wounds)', 12256), (223204, 223204, 190, 190, 'Nano Crystal (Clear Victim)', 42451), (55843, 55843, 37, 37, 'Nano Crystal (Cloak of Fire)', 12227), (28761, 28761, 90, 90, 'Nano Crystal (Close Wounds)', 12256), (55863, 55863, 1, 1, 'Nano Crystal (Coat of Barbs)', 12227), (95454, 95454, 40, 40, 'Nano Crystal (Coherent Nano Pathway)', 12225), (95428, 95428, 90, 90, 'Nano Crystal (Coherent Notum Web)', 12256), (45377, 45377, 142, 142, 'Nano Crystal (Coherent Positron Stream)', 42449), (95449, 95449, 63, 63, 'Nano Crystal (Cohesion Amplifier)', 12258), (28919, 28919, 132, 132, 'Nano Crystal (Cohort)', 42452), (158943, 158943, 1, 1, 'Nano Crystal (Cold Blast)', 12224), (158944, 158944, 1, 1, 'Nano Crystal (Cold Blast)', 12224), (118112, 118112, 146, 146, 'Nano Crystal (Collapsing Barrier)', 42452), (45378, 45378, 149, 149, 'Nano Crystal (Collapsing Hadron String)', 42449), (28762, 28762, 116, 116, 'Nano Crystal (Colossal Health)', 42448), (210310, 210310, 200, 200, 'Nano Crystal (Colossus of Swords)', 42451), (75418, 75418, 50, 50, 'Nano Crystal (Combat Barrier)', 12227), (95723, 95723, 33, 33, 'Nano Crystal (Combat Hardening)', 12228), (218113, 218113, 102, 102, 'Nano Crystal (Combustive Envelopment)', 42449), (46075, 46075, 30, 30, 'Nano Crystal (Common Android)', 12225), (46076, 46076, 7, 7, 'Nano Crystal (Common Automaton)', 12225), (46077, 46077, 66, 66, 'Nano Crystal (Common Gladiatorbot)', 12258), (46078, 46078, 103, 103, 'Nano Crystal (Common Guardbot)', 42450), (46079, 46079, 146, 146, 'Nano Crystal (Common Warbot)', 42450), (46080, 46080, 165, 165, 'Nano Crystal (Common Warmachine)', 42450), (118259, 118259, 37, 37, 'Nano Crystal (Commonplace Delayed Health Payment)', 12228), (28803, 28803, 165, 165, 'Nano Crystal (Compacted Neutron Missile)', 42449), (43999, 43999, 37, 37, 'Nano Crystal (Company Policy)', 12228), (28763, 28763, 169, 169, 'Nano Crystal (Complete Healing)', 301570), (44184, 44184, 146, 146, 'Nano Crystal (Complex Nano Contagion)', 42449), (223375, 223375, 125, 125, 'Nano Crystal (Composite Attribute Boost (2 hours))', 42448), (223377, 223377, 201, 201, 'Nano Crystal (Composite Attribute Boost (4 hours))', 42448), (223379, 223379, 211, 211, 'Nano Crystal (Composite Attribute Boost (8 hours))', 42448), (223373, 223373, 25, 25, 'Nano Crystal (Composite Attribute Boost)', 297498), (269483, 269483, 182, 182, 'Nano Crystal (Composite Heavy Artillery)', 301605), (302354, 302354, 182, 182, 'Nano Crystal (Composite Heavy Artillery)', 301605), (220336, 220336, 100, 100, 'Nano Crystal (Composite Infuse With Knowledge)', 12259), (302159, 302159, 25, 25, 'Nano Crystal (Composite Martial Prowess Expertise)', 12226), (220334, 220334, 50, 50, 'Nano Crystal (Composite Mastery)', 12226), (287045, 287045, 25, 25, 'Nano Crystal (Composite Medical Expertise (1 hour))', 12226), (287066, 287066, 125, 125, 'Nano Crystal (Composite Medical Expertise (2 hour))', 42451), (287067, 287067, 201, 201, 'Nano Crystal (Composite Medical Expertise (4 hour))', 42451), (287068, 287068, 211, 211, 'Nano Crystal (Composite Medical Expertise (8 hour))', 42451), (223351, 223351, 125, 125, 'Nano Crystal (Composite Melee Expertise (2 hours)', 42451), (223353, 223353, 201, 201, 'Nano Crystal (Composite Melee Expertise (4 hours)', 42451), (223355, 223355, 211, 211, 'Nano Crystal (Composite Melee Expertise (8 hours)', 42451), (223361, 223361, 25, 25, 'Nano Crystal (Composite Melee Expertise)', 297513), (220338, 220338, 190, 190, 'Nano Crystal (Composite Mochams (1 hour))', 42451), (220340, 220340, 205, 205, 'Nano Crystal (Composite Mochams (2 hours))', 42451), (220342, 220342, 215, 215, 'Nano Crystal (Composite Mochams (4 hours))', 42451), (220344, 220344, 219, 219, 'Nano Crystal (Composite Mochams (8 hours))', 42451), (223383, 223383, 125, 125, 'Nano Crystal (Composite Nano Expertise (2 hours))', 42451), (223385, 223385, 201, 201, 'Nano Crystal (Composite Nano Expertise (4 hours))', 42451), (223387, 223387, 211, 211, 'Nano Crystal (Composite Nano Expertise (8 hours))', 42451), (223381, 223381, 25, 25, 'Nano Crystal (Composite Nano Expertise)', 297514), (275500, 275500, 25, 25, 'Nano Crystal (Composite Noobness)', 12228), (223389, 223389, 125, 125, 'Nano Crystal (Composite Physical Special Expertise (2 hours))', 42451), (223391, 223391, 201, 201, 'Nano Crystal (Composite Physical Special Expertise (4 hours))', 42451), (223393, 223393, 211, 211, 'Nano Crystal (Composite Physical Special Expertise (8 hours))', 42451), (215265, 215265, 25, 25, 'Nano Crystal (Composite Physical Special Expertise)', 297521), (223357, 223357, 125, 125, 'Nano Crystal (Composite Ranged Expertise (2 hours))', 42451), (223363, 223363, 201, 201, 'Nano Crystal (Composite Ranged Expertise (4 hours))', 42451), (223359, 223359, 211, 211, 'Nano Crystal (Composite Ranged Expertise (8 hours))', 42451), (223349, 223349, 25, 25, 'Nano Crystal (Composite Ranged Expertise)', 297532), (223367, 223367, 125, 125, 'Nano Crystal (Composite Ranged Special Expertise (2 hours))', 42451), (223369, 223369, 201, 201, 'Nano Crystal (Composite Ranged Special Expertise (4 hours))', 42451), (223371, 223371, 211, 211, 'Nano Crystal (Composite Ranged Special Expertise (8 hours))', 42451), (223365, 223365, 25, 25, 'Nano Crystal (Composite Ranged Special Expertise)', 297503), (220332, 220332, 25, 25, 'Nano Crystal (Composite Teachings)', 12226), (287060, 287060, 125, 125, 'Nano Crystal (Composite Tradeskill Expertise (2 hour))', 42451), (287062, 287062, 201, 201, 'Nano Crystal (Composite Tradeskill Expertise (4 hour))', 42451), (287064, 287064, 211, 211, 'Nano Crystal (Composite Tradeskill Expertise (8 hour))', 42451), (287041, 287041, 25, 25, 'Nano Crystal (Composite Tradeskill Expertise)', 297555), (287043, 287043, 25, 25, 'Nano Crystal (Composite Tradeskill Special Expertise (1 hour))', 12226), (287061, 287061, 125, 125, 'Nano Crystal (Composite Tradeskill Special Expertise (2 hour))', 42451), (287063, 287063, 201, 201, 'Nano Crystal (Composite Tradeskill Special Expertise (4 hour))', 42451), (287065, 287065, 211, 211, 'Nano Crystal (Composite Tradeskill Special Expertise (8 hour))', 42451), (287047, 287047, 25, 25, 'Nano Crystal (Composite Utility Expertise)', 297556), (44000, 44000, 152, 152, 'Nano Crystal (Compress Wounds)', 42448), (45379, 45379, 70, 70, 'Nano Crystal (Compressed Shockwave)', 12257), (26522, 26522, 10, 10, 'Nano Crystal (Computer Literacy Expertise)', 12226), (26523, 26523, 4, 4, 'Nano Crystal (Computer Literacy Proficiency)', 12226), (218111, 218111, 93, 93, 'Nano Crystal (Conator''s Collapsing Hadron String)', 12257), (26524, 26524, 10, 10, 'Nano Crystal (Concealment Expertise)', 12226), (26525, 26525, 4, 4, 'Nano Crystal (Concealment Proficiency)', 12226), (45998, 45998, 30, 30, 'Nano Crystal (Condensed Halon Jet)', 12224), (45999, 45999, 99, 99, 'Nano Crystal (Condensed Pellet of Fire)', 12257), (45380, 45380, 156, 156, 'Nano Crystal (Conduction Stream)', 42449), (44001, 44001, 182, 182, 'Nano Crystal (Conglomerate Health Plan)', 42448), (259358, 259358, 213, 213, 'Nano Crystal (Constant Barrage)', 42449), (97465, 97465, 146, 146, 'Nano Crystal (Constitution Magnification)', 42448), (44183, 44183, 106, 106, 'Nano Crystal (Consuming Toxin)', 42449), (44002, 44002, 106, 106, 'Nano Crystal (Consummate Carer)', 42448), (31419, 31419, 27, 27, 'Nano Crystal (Contact Poison)', 12225), (45381, 45381, 136, 136, 'Nano Crystal (Contained Plasma Sphere)', 42449), (155578, 155578, 189, 189, 'Nano Crystal (Contemplation)', 42449), (43984, 43984, 126, 126, 'Nano Crystal (Continuous Cellular Reconditioning)', 42448), (143899, 143899, 176, 176, 'Nano Crystal (Control Ends and Means)', 42451), (81923, 81923, 99, 99, 'Nano Crystal (Controlled Energy Overload)', 12258), (46000, 46000, 76, 76, 'Nano Crystal (Convergent Energy Beam)', 12257), (250104, 250104, 390, 390, 'Nano Crystal (Converging Radiated Viralbot Clouds)', 42449), (83983, 83983, 96, 96, 'Nano Crystal (Cornea Attack)', 12259), (45382, 45382, 132, 132, 'Nano Crystal (Coronet of Frost)', 42449), (235387, 235387, 205, 205, 'Nano Crystal (Corporate Guardian)', 42450), (205436, 205436, 119, 119, 'Nano Crystal (Corporate Leadership: Clemency)', 42450), (205434, 205434, 70, 70, 'Nano Crystal (Corporate Leadership: Dispensation)', 12258), (205440, 205440, 194, 194, 'Nano Crystal (Corporate Leadership: Exoneration)', 42450), (205438, 205438, 161, 161, 'Nano Crystal (Corporate Leadership: Impunity)', 42450), (55853, 55853, 132, 132, 'Nano Crystal (Corrosive Barrier)', 42452), (158719, 158719, 1, 1, 'Nano Crystal (Corrosive Breath)', 12224), (161693, 161693, 179, 179, 'Nano Crystal (Corrosive Cloud)', 300940), (81849, 81849, 37, 37, 'Nano Crystal (Corrosive Fists)', 12225), (28804, 28804, 10, 10, 'Nano Crystal (Corrosive Spray)', 12224), (45383, 45383, 103, 103, 'Nano Crystal (Corrupt Molecular Integrity)', 42449), (223274, 223274, 213, 213, 'Nano Crystal (Corrupting Ooze)', 42449), (227114, 227114, 181, 181, 'Nano Crystal (Corruption of Resolve)', 42451), (227112, 227112, 180, 180, 'Nano Crystal (Corruption of Will)', 42451), (28805, 28805, 4, 4, 'Nano Crystal (Corruption)', 12224), (55752, 55752, 146, 146, 'Nano Crystal (Coruscating Screen)', 42452), (252058, 252058, 208, 208, 'Nano Crystal (Cosmic Relaxation)', 42449), (43985, 43985, 50, 50, 'Nano Crystal (Counteract Damage)', 12228), (43986, 43986, 86, 86, 'Nano Crystal (Course of Treatment)', 12256), (31420, 31420, 14, 14, 'Nano Crystal (Cracker''s Luck)', 301585), (81848, 81848, 10, 10, 'Nano Crystal (Crash of Thunder)', 12225), (155001, 155001, 116, 116, 'Nano Crystal (Creation: Asp of Semol)', 42450), (155000, 155000, 215, 215, 'Nano Crystal (Creation: Azure Cobra of Orma)', 42450), (154999, 154999, 147, 147, 'Nano Crystal (Creation: Belthior''s Flame Ward)', 42450), (154998, 154998, 136, 136, 'Nano Crystal (Creation: Bitis Striker)', 42450), (154995, 154995, 90, 90, 'Nano Crystal (Creation: Coplan''s Hand Taipan)', 42450), (154997, 154997, 177, 177, 'Nano Crystal (Creation: Death Ward)', 42450), (154996, 154996, 190, 190, 'Nano Crystal (Creation: Gold Acantophis)', 42450), (154994, 154994, 112, 112, 'Nano Crystal (Creation: Living Shield of Evernan)', 42450), (154993, 154993, 187, 187, 'Nano Crystal (Creation: Mocham''s Guard)', 42450), (154992, 154992, 72, 72, 'Nano Crystal (Creation: Notum Defender)', 12258), (154985, 154985, 205, 205, 'Nano Crystal (Creation: Shield of Asmodian)', 42450), (273378, 273378, 215, 215, 'Nano Crystal (Creation: Shield of Zset)', 42450), (154990, 154990, 85, 85, 'Nano Crystal (Creation: Solar Guard)', 42450), (154989, 154989, 48, 48, 'Nano Crystal (Creation: The Crotalus)', 12258), (154988, 154988, 66, 66, 'Nano Crystal (Creation: Viper Staff)', 12258), (154987, 154987, 59, 59, 'Nano Crystal (Creation: Vital Buckler)', 12258), (154986, 154986, 129, 129, 'Nano Crystal (Creation: Wave Breaker)', 42450), (154991, 154991, 160, 160, 'Nano Crystal (Creation: Wixel''s Notum Python)', 42450), (226751, 226751, 132, 132, 'Nano Crystal (Cripple Defense)', 42452), (29195, 29195, 20, 20, 'Nano Crystal (Crowbar Subtlety)', 12226), (45384, 45384, 156, 156, 'Nano Crystal (Crown of Frost)', 42449), (95427, 95427, 10, 10, 'Nano Crystal (CrunchCom Code Sieve)', 12228), (95423, 95423, 123, 123, 'Nano Crystal (CrunchCom Nano Compressor Pro)', 42448), (95422, 95422, 47, 47, 'Nano Crystal (CrunchCom Nano Compressor)', 12228), (210507, 210507, 200, 200, 'Nano Crystal (Crusader Reaper)', 42450), (121148, 121148, 110, 110, 'Nano Crystal (Crush Bravery)', 42451), (46001, 46001, 103, 103, 'Nano Crystal (Crystalizing Ray)', 42449), (100444, 100444, 103, 103, 'Nano Crystal (Cubicle Dweller)', 42449), (215962, 215962, 390, 390, 'Nano Crystal (Curatem''s Shining Essence - 720)', 42448), (215964, 215964, 390, 390, 'Nano Crystal (Curatem''s Shining Essence - 722)', 42448), (215966, 215966, 390, 390, 'Nano Crystal (Curatem''s Shining Essence - 724)', 42448), (215968, 215968, 390, 390, 'Nano Crystal (Curatem''s Shining Essence - 726)', 42448), (215970, 215970, 390, 390, 'Nano Crystal (Curatem''s Shining Essence - 728)', 42448), (215972, 215972, 390, 390, 'Nano Crystal (Curatem''s Shining Essence - 729)', 42448), (125734, 125734, 169, 169, 'Nano Crystal (Curatem''s Shining Essence)', 12228), (246792, 246792, 390, 390, 'Nano Crystal (Cure of the Tentacle)', 42448), (29382, 29382, 169, 169, 'Nano Crystal (Curse of Chronos)', 42450), (206314, 206314, 390, 390, 'Nano Crystal (Curse of Flesh)', 42450), (230446, 230446, 390, 390, 'Nano Crystal (Curse of Infestation)', 42449), (305389, 305389, 300, 300, 'Nano Crystal (Curse of Nematet)', 42450), (230448, 230448, 390, 390, 'Nano Crystal (Curse of Pestilence)', 42449), (205605, 205605, 390, 390, 'Nano Crystal (Curse of the Re-Animator)', 42450), (43987, 43987, 30, 30, 'Nano Crystal (Cursory Examination)', 12228), (83982, 83982, 47, 47, 'Nano Crystal (Curtain of Darkness)', 12226), (30109, 30109, 159, 159, 'Nano Crystal (Cut Red Tape)', 301181), (267022, 267022, 1, 1, 'Nano Crystal (Cute Damageshield)', 12227), (42411, 42411, 149, 149, 'Nano Crystal (Cycle of Life)', 42448), (43988, 43988, 179, 179, 'Nano Crystal (Cycle of Reconstruction)', 42448), (230438, 230438, 390, 390, 'Nano Crystal (DNA Devolution)', 42449), (210792, 210792, 108, 108, 'Nano Crystal (Dagger in the Back)', 301590), (29337, 29337, 40, 40, 'Nano Crystal (Damage Amplifier)', 12225), (29338, 29338, 7, 7, 'Nano Crystal (Damage Multiplier)', 12225), (253165, 253165, 390, 390, 'Nano Crystal (Daring Syndrome)', 42448), (28806, 28806, 90, 90, 'Nano Crystal (Dark Movement)', 12259), (44201, 44201, 47, 47, 'Nano Crystal (Dark Venom)', 12224), (269445, 269445, 170, 170, 'Nano Crystal (Dead Cold)', 42449), (118122, 118122, 133, 133, 'Nano Crystal (Deaden Pain)', 42452), (26017, 26017, 142, 142, 'Nano Crystal (Death''s Gaze)', 42449), (81962, 81962, 136, 136, 'Nano Crystal (Death''s Knocking)', 42449), (43989, 43989, 182, 182, 'Nano Crystal (Deathless Blessing)', 42448), (227133, 227133, 211, 211, 'Nano Crystal (Debasement of Resolve)', 42451), (227131, 227131, 211, 211, 'Nano Crystal (Debasement of Will)', 42451), (226731, 226731, 191, 191, 'Nano Crystal (Debilitate Defense)', 42452), (210302, 210302, 48, 48, 'Nano Crystal (Decision Maker)', 12226), (46062, 46062, 179, 179, 'Nano Crystal (Decommissioned Wardroid)', 42450), (95530, 95530, 146, 146, 'Nano Crystal (Dedication of Thought)', 42451), (45385, 45385, 76, 76, 'Nano Crystal (Deep Chemical Burn)', 12257), (42545, 42545, 17, 17, 'Nano Crystal (Deep Slash)', 12224), (142775, 142775, 74, 74, 'Nano Crystal (Deep Thought)', 12259), (43990, 43990, 159, 159, 'Nano Crystal (Deep Tissue Repair)', 42448), (43991, 43991, 169, 169, 'Nano Crystal (Deep Wounds Cleanser)', 42448), (223190, 223190, 53, 53, 'Nano Crystal (Deepen fight (Team))', 12258), (155619, 155619, 130, 130, 'Nano Crystal (Defamation 101)', 42451), (206336, 206336, 390, 390, 'Nano Crystal (Defender of the Immortal)', 42448), (210312, 210312, 27, 27, 'Nano Crystal (Defender''s Poise)', 12226), (70574, 70574, 83, 83, 'Nano Crystal (Defensive Screen)', 12260), (227144, 227144, 218, 218, 'Nano Crystal (Defilement of Resolve)', 42451), (227142, 227142, 218, 218, 'Nano Crystal (Defilement of Will)', 42451), (70384, 70384, 37, 37, 'Nano Crystal (Deflection Shield (Extended))', 12227), (70383, 70383, 33, 33, 'Nano Crystal (Deflection Shield)', 12227), (210408, 210408, 190, 190, 'Nano Crystal (Degeneration of Celerity)', 301089), (224178, 224178, 219, 219, 'Nano Crystal (Degeneration of Haste)', 301089), (210402, 210402, 38, 38, 'Nano Crystal (Degeneration of Rapidity)', 301089), (246363, 246363, 390, 390, 'Nano Crystal (Degrading System)', 42449), (227118, 227118, 200, 200, 'Nano Crystal (Degredation of Resolve)', 42451), (227116, 227116, 200, 200, 'Nano Crystal (Degredation of Will)', 42451), (85323, 85323, 57, 57, 'Nano Crystal (Delay Pursuers)', 12257), (56254, 56254, 60, 60, 'Nano Crystal (Delay Retreat)', 12257), (82810, 82810, 63, 63, 'Nano Crystal (Delay the Inevitable)', 12257), (81961, 81961, 169, 169, 'Nano Crystal (Delayed Assassin)', 42449), (118260, 118260, 70, 70, 'Nano Crystal (Delayed Health Payment)', 12256), (100461, 100461, 80, 80, 'Nano Crystal (Demotivate)', 12257), (157536, 157536, 113, 113, 'Nano Crystal (Demotivational Speech: 10 Thumbs)', 42451), (157552, 157552, 83, 83, 'Nano Crystal (Demotivational Speech: Administrative Error)', 12259), (157551, 157551, 179, 179, 'Nano Crystal (Demotivational Speech: Certainty of Defeat)', 42451), (157550, 157550, 34, 34, 'Nano Crystal (Demotivational Speech: Factory Recall)', 12226), (157549, 157549, 21, 21, 'Nano Crystal (Demotivational Speech: Fumble Fingers)', 12226), (157548, 157548, 44, 44, 'Nano Crystal (Demotivational Speech: Let''s Make a Committee)', 12226), (157547, 157547, 186, 186, 'Nano Crystal (Demotivational Speech: Mourner''s March)', 42451), (157545, 157545, 182, 182, 'Nano Crystal (Demotivational Speech: Retreat to Glory)', 42451), (157544, 157544, 126, 126, 'Nano Crystal (Demotivational Speech: Surge in the System)', 42451), (157543, 157543, 159, 159, 'Nano Crystal (Demotivational Speech: Swapdisk Mayhem)', 42451), (157546, 157546, 100, 100, 'Nano Crystal (Demotivational Speech: That is not on the Agenda)', 12259), (157542, 157542, 153, 153, 'Nano Crystal (Demotivational Speech: Who Writes the Minutes?)', 42451), (45984, 45984, 86, 86, 'Nano Crystal (Dense Matter Missile MK II)', 12257), (45983, 45983, 43, 43, 'Nano Crystal (Dense Matter Missile)', 12224), (45985, 45985, 103, 103, 'Nano Crystal (Dense Poison Fog)', 42449), (250100, 250100, 390, 390, 'Nano Crystal (Dense Viralbot Cloud)', 42449), (85899, 85899, 80, 80, 'Nano Crystal (Deprive Skills (Advanced))', 301397), (85896, 85896, 24, 24, 'Nano Crystal (Deprive Skills (Average))', 301397), (85898, 85898, 33, 33, 'Nano Crystal (Deprive Skills (Lesser))', 301397), (85897, 85897, 57, 57, 'Nano Crystal (Deprive Skills (Major))', 301397), (85895, 85895, 14, 14, 'Nano Crystal (Deprive Skills (Minor))', 301397), (85894, 85894, 4, 4, 'Nano Crystal (Deprive Skills (Weak))', 301397), (85900, 85900, 43, 43, 'Nano Crystal (Deprive Skills)', 301397), (156132, 156132, 41, 41, 'Nano Crystal (Deranged Mindreaver)', 295572), (227148, 227148, 220, 220, 'Nano Crystal (Desecration of Resolve)', 42451), (227146, 227146, 220, 220, 'Nano Crystal (Desecration of Will)', 42451), (223222, 223222, 219, 219, 'Nano Crystal (Desist me)', 42451), (223322, 223322, 217, 217, 'Nano Crystal (Desolator Assault Drone)', 42450), (223238, 223238, 214, 214, 'Nano Crystal (Despoil Notum)', 42450), (152846, 152846, 126, 126, 'Nano Crystal (Destabilize Breed DNA Sequence)', 42449), (85269, 85269, 73, 73, 'Nano Crystal (Detailed Medical Claim)', 12256), (56262, 56262, 109, 109, 'Nano Crystal (Detain Customer)', 42449), (56238, 56238, 1, 1, 'Nano Crystal (Detain Suspect)', 12224), (250371, 250371, 390, 390, 'Nano Crystal (Devastating Energy Overload)', 42451), (205390, 205390, 390, 390, 'Nano Crystal (Devastation of the Immortal)', 42449), (223316, 223316, 205, 205, 'Nano Crystal (Devastator Drone)', 42450), (28920, 28920, 142, 142, 'Nano Crystal (Diamond Skin)', 42452), (259610, 259610, 390, 390, 'Nano Crystal (Die faster)', 42450), (142741, 142741, 140, 140, 'Nano Crystal (Digitizing Sequencer)', 300947), (259605, 259605, 10, 10, 'Nano Crystal (Dimach Expertise)', 12226), (26526, 26526, 14, 14, 'Nano Crystal (Dimach Incompetence)', 12226), (26527, 26527, 7, 7, 'Nano Crystal (Dimach Inexperience)', 12226), (259608, 259608, 4, 4, 'Nano Crystal (Dimach Proficiency)', 12226), (26528, 26528, 4, 4, 'Nano Crystal (Diminish Agility)', 12228), (26529, 26529, 4, 4, 'Nano Crystal (Diminish Intelligence)', 12228), (26530, 26530, 4, 4, 'Nano Crystal (Diminish Psychic)', 12228), (26531, 26531, 4, 4, 'Nano Crystal (Diminish Sense)', 12228), (26532, 26532, 4, 4, 'Nano Crystal (Diminish Stamina)', 12228), (26533, 26533, 4, 4, 'Nano Crystal (Diminish Strength)', 12228), (46457, 46457, 142, 142, 'Nano Crystal (Director-Grade Administrator-Droid)', 42450), (46458, 46458, 90, 90, 'Nano Crystal (Director-Grade Aide-Droid)', 12258), (46459, 46459, 66, 66, 'Nano Crystal (Director-Grade Assistant-Droid)', 12258), (46449, 46449, 43, 43, 'Nano Crystal (Director-Grade Attendant-Droid)', 12225), (46450, 46450, 169, 169, 'Nano Crystal (Director-Grade Bodyguard)', 42450), (46451, 46451, 27, 27, 'Nano Crystal (Director-Grade Helper-Droid)', 12225), (46452, 46452, 156, 156, 'Nano Crystal (Director-Grade Minion)', 42450), (46453, 46453, 123, 123, 'Nano Crystal (Director-Grade Secretary-Droid)', 42450), (46454, 46454, 14, 14, 'Nano Crystal (Director-Grade Worker-Droid)', 12225), (28921, 28921, 33, 33, 'Nano Crystal (Dirty Fighter)', 12226), (226729, 226729, 191, 191, 'Nano Crystal (Disable Defense)', 42452), (227777, 227777, 218, 218, 'Nano Crystal (Disappear)', 301574), (26534, 26534, 10, 10, 'Nano Crystal (Disarm Traps Expertise)', 12226), (26535, 26535, 4, 4, 'Nano Crystal (Disarm Traps Proficiency)', 12226), (82002, 82002, 149, 149, 'Nano Crystal (Disciplinary Action)', 42449), (210320, 210320, 199, 199, 'Nano Crystal (Discipline of the Vindicator)', 42451), (100446, 100446, 129, 129, 'Nano Crystal (Discourage Involvement)', 42449), (100460, 100460, 175, 175, 'Nano Crystal (Disjointed From Reality)', 42449), (100458, 100458, 162, 162, 'Nano Crystal (Disjointed Psyche)', 42449), (45386, 45386, 106, 106, 'Nano Crystal (Dispersed Nanoblade Cloud)', 42449), (99223, 99223, 189, 189, 'Nano Crystal (Displace Thought Patterns)', 42451), (100459, 100459, 185, 185, 'Nano Crystal (Disrupted Psyche)', 42449), (152844, 152844, 126, 126, 'Nano Crystal (Disruption Cocoon)', 42452), (154742, 154742, 113, 113, 'Nano Crystal (Disruptive Barrier Negator)', 42452), (154741, 154741, 107, 107, 'Nano Crystal (Disruptive Cocoon Harmonics)', 42452), (154740, 154740, 41, 41, 'Nano Crystal (Disruptive Field Harmonics)', 12227), (154739, 154739, 17, 17, 'Nano Crystal (Disruptive Field Negator)', 12227), (229101, 229101, 201, 201, 'Nano Crystal (Disruptive Insult)', 42451), (154738, 154738, 156, 156, 'Nano Crystal (Disruptive Phase Harmonics)', 42452), (154737, 154737, 83, 83, 'Nano Crystal (Disruptive Photon Absorber)', 12258), (154736, 154736, 149, 149, 'Nano Crystal (Disruptive Photon Annihilator)', 42450), (154735, 154735, 41, 41, 'Nano Crystal (Disruptive Photon Deflector)', 12225), (154734, 154734, 120, 120, 'Nano Crystal (Disruptive Photon Devourer)', 42450), (154733, 154733, 153, 153, 'Nano Crystal (Disruptive Retaliatory Negator)', 42452), (154732, 154732, 182, 182, 'Nano Crystal (Disruptive Retributive Negator)', 42452), (154731, 154731, 57, 57, 'Nano Crystal (Disruptive Shielding Negator)', 12260), (154730, 154730, 166, 166, 'Nano Crystal (Disruptive Void Projector)', 42450), (44186, 44186, 10, 10, 'Nano Crystal (Dissolve Molecular Bonding)', 12224), (45986, 45986, 109, 109, 'Nano Crystal (Dissolving Sphere)', 42449), (223206, 223206, 205, 205, 'Nano Crystal (Distinct Victim)', 42451), (227110, 227110, 151, 151, 'Nano Crystal (Distortion of Resolve)', 42451), (227150, 227150, 150, 150, 'Nano Crystal (Distortion of Will)', 42451), (100452, 100452, 20, 20, 'Nano Crystal (Distract with Trinkets)', 12224), (30110, 30110, 10, 10, 'Nano Crystal (Distracted Gaze)', 12224), (100453, 100453, 47, 47, 'Nano Crystal (Distracting Baubles)', 12224), (100220, 100220, 53, 53, 'Nano Crystal (Distracting Nuisance)', 12259), (259343, 259343, 101, 101, 'Nano Crystal (Distracting Shower)', 42449), (156146, 156146, 11, 11, 'Nano Crystal (Distracting Sphere)', 295572), (43992, 43992, 175, 175, 'Nano Crystal (Distributed Care)', 42448), (273409, 273409, 215, 215, 'Nano Crystal (Divest Damage)', 301556), (85893, 85893, 179, 179, 'Nano Crystal (Divest Skills (Advanced))', 301397), (85889, 85889, 132, 132, 'Nano Crystal (Divest Skills (Average))', 301397), (85891, 85891, 149, 149, 'Nano Crystal (Divest Skills (Lesser))', 301397), (85890, 85890, 165, 165, 'Nano Crystal (Divest Skills (Major))', 301397), (85888, 85888, 113, 113, 'Nano Crystal (Divest Skills (Minor))', 301397), (275033, 275033, 215, 215, 'Nano Crystal (Divest Skills (Nanite Improved))', 301397), (85887, 85887, 93, 93, 'Nano Crystal (Divest Skills (Weak))', 301397), (85892, 85892, 156, 156, 'Nano Crystal (Divest Skills)', 301397), (222984, 222984, 220, 220, 'Nano Crystal (Divine Sanctifier)', 42450), (267646, 267646, 200, 200, 'Nano Crystal (Doc: Dr Blaze''s Mutagenic Compound)', 42449), (265451, 265451, 175, 175, 'Nano Crystal (Doc: Fill Inbox)', 12257), (267647, 267647, 200, 200, 'Nano Crystal (Doc: Nanite Enhanced Mutagenic Compound)', 42449), (267648, 267648, 200, 200, 'Nano Crystal (Doc: Nanite Enhanced Mutagenic Plague)', 42449), (301846, 301846, 145, 145, 'Nano Crystal (Doc: Rapid Palsy)', 301085), (279373, 279373, 20, 20, 'Nano Crystal (Doc: Tjernberg Soothing Adrenaline)', 12228), (267650, 267650, 200, 200, 'Nano Crystal (Doc: Weak Mutagenic Plague)', 42449), (28767, 28767, 7, 7, 'Nano Crystal (Doctor''s Grace)', 12228), (121142, 121142, 150, 150, 'Nano Crystal (Dominate Foe)', 42451), (99221, 99221, 47, 47, 'Nano Crystal (Dominate Psyche)', 12226), (29383, 29383, 142, 142, 'Nano Crystal (Dominate: BioMet)', 42451), (29384, 29384, 142, 142, 'Nano Crystal (Dominate: MatCrea)', 42451), (29386, 29386, 139, 139, 'Nano Crystal (Dominate: MatMet)', 42451), (29387, 29387, 142, 142, 'Nano Crystal (Dominate: PsyMod)', 42451), (29388, 29388, 142, 142, 'Nano Crystal (Dominate: SenseImp)', 42451), (29385, 29385, 139, 139, 'Nano Crystal (Dominate: SpaceTime)', 42451), (29353, 29353, 76, 76, 'Nano Crystal (Don''t Fear the Reaper)', 301164), (258763, 258763, 390, 390, 'Nano Crystal (Doom of the Spirits)', 42450), (210807, 210807, 44, 44, 'Nano Crystal (Double Cover)', 12226), (210811, 210811, 148, 148, 'Nano Crystal (Double Fence)', 42451), (99139, 99139, 14, 14, 'Nano Crystal (Douse Anger)', 12226), (303128, 303128, 1, 1, 'Nano Crystal (Dr. Drill)', 303126), (302215, 302215, 125, 125, 'Nano Crystal (Dragon Scales)', 12260), (218081, 218081, 191, 191, 'Nano Crystal (Dragon Stance)', 42450), (26541, 26541, 10, 10, 'Nano Crystal (Drain Abilities)', 297499), (26539, 26539, 10, 10, 'Nano Crystal (Drain Agility)', 12228), (26540, 26540, 10, 10, 'Nano Crystal (Drain Intelligence)', 12228), (26542, 26542, 10, 10, 'Nano Crystal (Drain Sense)', 12228), (26543, 26543, 10, 10, 'Nano Crystal (Drain Stamina)', 12228), (26544, 26544, 10, 10, 'Nano Crystal (Drain Strength)', 12228), (91403, 91403, 159, 159, 'Nano Crystal (Draw AC (Advanced))', 42452), (91397, 91397, 165, 165, 'Nano Crystal (Draw AC (Greater))', 42452), (91399, 91399, 179, 179, 'Nano Crystal (Draw AC (Invasive))', 42452), (91394, 91394, 149, 149, 'Nano Crystal (Draw AC (Major))', 42452), (91395, 91395, 113, 113, 'Nano Crystal (Draw AC (Minor))', 42452), (91390, 91390, 93, 93, 'Nano Crystal (Draw AC (Weak))', 12260), (91401, 91401, 136, 136, 'Nano Crystal (Draw AC)', 42452), (100228, 100228, 14, 14, 'Nano Crystal (Draw Attention)', 12226), (226284, 226284, 219, 219, 'Nano Crystal (Dreadbringer)', 42450), (43993, 43993, 10, 10, 'Nano Crystal (Dress Wounds)', 12228), (30113, 30113, 37, 37, 'Nano Crystal (Drill Missile)', 12224), (30116, 30116, 136, 136, 'Nano Crystal (Droid Overhaul)', 42448), (30117, 30117, 70, 70, 'Nano Crystal (Droid Repair)', 12256), (210805, 210805, 14, 14, 'Nano Crystal (Dual Defender)', 12226), (45987, 45987, 20, 20, 'Nano Crystal (Dual Energized Beams)', 12224), (45988, 45988, 60, 60, 'Nano Crystal (Dual Ion Stream)', 12257), (99630, 99630, 99, 99, 'Nano Crystal (Dubious Accounting)', 12258), (210813, 210813, 195, 195, 'Nano Crystal (Duplex Wall)', 42451), (26166, 26166, 76, 76, 'Nano Crystal (Eagle Eye)', 301586), (95418, 95418, 24, 24, 'Nano Crystal (Ease of Execution)', 12228), (43976, 43976, 50, 50, 'Nano Crystal (Easing Touch)', 12228), (90411, 90411, 80, 80, 'Nano Crystal (Efficient Humidity Extractor)', 12258), (26545, 26545, 14, 14, 'Nano Crystal (Ego Pummel)', 12226), (29340, 29340, 4, 4, 'Nano Crystal (Ego Taunt)', 12226), (55775, 55775, 24, 24, 'Nano Crystal (Electrical Chastiser)', 12227), (55777, 55777, 76, 76, 'Nano Crystal (Electrical Discharge Field)', 12260), (26547, 26547, 10, 10, 'Nano Crystal (Electrical Engineering Expertise)', 12226), (227654, 227654, 76, 76, 'Nano Crystal (Electrical Engineering Knowledge)', 12259), (27708, 27708, 4, 4, 'Nano Crystal (Electrical Engineering Proficiency)', 12226), (28807, 28807, 185, 185, 'Nano Crystal (Electrifying Containment)', 42449), (222916, 222916, 194, 194, 'Nano Crystal (Element of Corrosion)', 42450), (222694, 222694, 52, 52, 'Nano Crystal (Element of Flame)', 12258), (222707, 222707, 149, 149, 'Nano Crystal (Element of Ice)', 42450), (223124, 223124, 216, 216, 'Nano Crystal (Element of Malice)', 42451), (222918, 222918, 213, 213, 'Nano Crystal (Element of Poison)', 42450), (222920, 222920, 218, 218, 'Nano Crystal (Element of Radiation)', 42450), (210394, 210394, 162, 162, 'Nano Crystal (Elemental Dissipation)', 42450), (118255, 118255, 31, 31, 'Nano Crystal (Elementary Delayed Health Payment)', 12228), (44185, 44185, 14, 14, 'Nano Crystal (Elementary Nano Contagion)', 12224), (227664, 227664, 129, 129, 'Nano Crystal (Eletrical Engineering Mastery)', 42451), (294061, 294061, 1, 1, 'Nano Crystal (Elfleet Helper)', 254462), (211171, 211171, 190, 190, 'Nano Crystal (Elude Pain)', 42451), (218069, 218069, 214, 214, 'Nano Crystal (Elude Step)', 42451), (223216, 223216, 195, 195, 'Nano Crystal (Elude me)', 42451), (28923, 28923, 37, 37, 'Nano Crystal (Elusive Target)', 12226), (226735, 226735, 203, 203, 'Nano Crystal (Emasculate Defense)', 42452), (56261, 56261, 76, 76, 'Nano Crystal (Embrace of Greed)', 12257), (31422, 31422, 27, 27, 'Nano Crystal (Embrace of Shadows)', 12226), (43977, 43977, 162, 162, 'Nano Crystal (Emergency Medical Response)', 301449), (43978, 43978, 4, 4, 'Nano Crystal (Emergency Stitching)', 12228), (156257, 156257, 47, 47, 'Nano Crystal (Emergency XP Loss Reducer: 30)', 12228), (224132, 224132, 64, 64, 'Nano Crystal (Empowered Anger Addlement)', 12257), (224142, 224142, 215, 215, 'Nano Crystal (Empowered Chaotic Mind)', 42449), (224140, 224140, 212, 212, 'Nano Crystal (Empowered Contemplation)', 42449), (224138, 224138, 170, 170, 'Nano Crystal (Empowered Cubicle Dweller)', 42449), (233017, 233017, 45, 45, 'Nano Crystal (Empowered Deflection Shield)', 12227), (224136, 224136, 123, 123, 'Nano Crystal (Empowered Demotivate)', 42449), (224150, 224150, 209, 209, 'Nano Crystal (Empowered Disjointed From Reality)', 42449), (219021, 219021, 26, 26, 'Nano Crystal (Empowered Distracted Gaze)', 12224), (224144, 224144, 219, 219, 'Nano Crystal (Empowered Divided Ego)', 42449), (233038, 233038, 63, 63, 'Nano Crystal (Empowered Greater Deflection Shield)', 12260), (233096, 233096, 154, 154, 'Nano Crystal (Empowered Greater Harmonic Cocoon)', 42452), (233052, 233052, 164, 164, 'Nano Crystal (Empowered Greater Reflective Field)', 42452), (233094, 233094, 122, 122, 'Nano Crystal (Empowered Harmonic Cocoon)', 42452), (224146, 224146, 193, 193, 'Nano Crystal (Empowered Introspective Engagement)', 42449), (233015, 233015, 32, 32, 'Nano Crystal (Empowered Lesser Deflection Shield)', 12227), (233092, 233092, 89, 89, 'Nano Crystal (Empowered Lesser Harmonic Cocoon)', 12260), (233048, 233048, 133, 133, 'Nano Crystal (Empowered Lesser Reflective Field)', 42452), (233040, 233040, 77, 77, 'Nano Crystal (Empowered Major Deflection Shield)', 12260), (233019, 233019, 178, 178, 'Nano Crystal (Empowered Major Reflective Field)', 42452), (233013, 233013, 18, 18, 'Nano Crystal (Empowered Minor Deflection Shield)', 12227), (233090, 233090, 62, 62, 'Nano Crystal (Empowered Minor Harmonic Cocoon)', 12260), (233046, 233046, 122, 122, 'Nano Crystal (Empowered Minor Reflective Field)', 42452), (233036, 233036, 5, 5, 'Nano Crystal (Empowered Partial Deflection Shield)', 12227), (233101, 233101, 28, 28, 'Nano Crystal (Empowered Partial Harmonic Cocoon)', 12227), (233044, 233044, 106, 106, 'Nano Crystal (Empowered Partial Reflective Field)', 42452), (273342, 273342, 215, 215, 'Nano Crystal (Empowered Pre-Nullity Cocoon)', 42452), (233042, 233042, 91, 91, 'Nano Crystal (Empowered Reactive Deflection Shield)', 12260), (233098, 233098, 185, 185, 'Nano Crystal (Empowered Reactive Harmonic Cocoon)', 42452), (233021, 233021, 192, 192, 'Nano Crystal (Empowered Reactive Reflective Field)', 42452), (233050, 233050, 148, 148, 'Nano Crystal (Empowered Reflective Field)', 42452), (224134, 224134, 85, 85, 'Nano Crystal (Empowered Sleep)', 12257), (224148, 224148, 203, 203, 'Nano Crystal (Empowered Wandering Mind)', 42449), (45989, 45989, 142, 142, 'Nano Crystal (Encircle with Blades)', 42449), (142745, 142745, 80, 80, 'Nano Crystal (Encode DNA Sequence)', 296542), (100221, 100221, 86, 86, 'Nano Crystal (Encourage Hatred)', 12259), (82089, 82089, 86, 86, 'Nano Crystal (Encourage Regrowth)', 12256), (242955, 242955, 220, 220, 'Nano Crystal (Energize Rubi-Ka Grid Tunnel)', 42450), (265480, 265480, 220, 220, 'Nano Crystal (Energize Rubi-Ka Grid Tunnel)', 42450), (45990, 45990, 4, 4, 'Nano Crystal (Energized Beam)', 12224), (82006, 82006, 4, 4, 'Nano Crystal (Energized Bolt)', 12224), (45365, 45365, 113, 113, 'Nano Crystal (Energized Collapse)', 42449), (81847, 81847, 20, 20, 'Nano Crystal (Energized Fists)', 12225), (55779, 55779, 113, 113, 'Nano Crystal (Energy Cocoon)', 42452), (26549, 26549, 10, 10, 'Nano Crystal (Energy Melee Expertise)', 12226), (26550, 26550, 4, 4, 'Nano Crystal (Energy Melee Incompetence)', 12226), (26551, 26551, 10, 10, 'Nano Crystal (Energy Melee Inexperience)', 12226), (26552, 26552, 4, 4, 'Nano Crystal (Energy Melee Proficiency)', 12226), (246357, 246357, 390, 390, 'Nano Crystal (Energy Of The Follower)', 42449), (28808, 28808, 53, 53, 'Nano Crystal (Energy Projectile)', 12257), (29838, 29838, 37, 37, 'Nano Crystal (Energy Spike)', 12225), (210716, 210716, 162, 162, 'Nano Crystal (Enervate Bindings)', 42450), (210708, 210708, 41, 41, 'Nano Crystal (Enervate Bonds)', 12225), (210710, 210710, 71, 71, 'Nano Crystal (Enervate Constraints)', 12258), (210712, 210712, 109, 109, 'Nano Crystal (Enervate Impediments)', 42450), (210718, 210718, 194, 194, 'Nano Crystal (Enervate Imprisonment)', 42450), (210714, 210714, 141, 141, 'Nano Crystal (Enervate Shackles)', 42450), (287754, 287754, 35, 35, 'Nano Crystal (Enf: Charge!)', 301149), (301854, 301854, 220, 220, 'Nano Crystal (Enf: Element of Impact)', 42450), (301289, 301289, 190, 190, 'Nano Crystal (Enf: Mongo Break!)', 301272), (265449, 265449, 175, 175, 'Nano Crystal (Enf: Slowdown)', 12257), (279350, 279350, 20, 20, 'Nano Crystal (Enf: You are Next)', 296435), (226737, 226737, 203, 203, 'Nano Crystal (Enfeeble Defense)', 42452), (56008, 56008, 63, 63, 'Nano Crystal (Enforce Rest Break)', 12257), (99629, 99629, 40, 40, 'Nano Crystal (Enforced Loan)', 12225), (85321, 85321, 60, 60, 'Nano Crystal (Enforced Sloth)', 12257), (150643, 150643, 156, 156, 'Nano Crystal (Enfraam''s Augmented Fortification)', 42452), (218127, 218127, 125, 125, 'Nano Crystal (Enfraam''s Blistering Blast)', 42449), (220348, 220348, 150, 150, 'Nano Crystal (Enfraam''s Cortex Accelerator)', 301243), (150642, 150642, 47, 47, 'Nano Crystal (Enfraam''s Fortification)', 12227), (218131, 218131, 149, 149, 'Nano Crystal (Enfraam''s Glacial Encasement)', 42449), (150641, 150641, 140, 140, 'Nano Crystal (Enfraam''s Glorious Fortification)', 42452), (150640, 150640, 93, 93, 'Nano Crystal (Enfraam''s Greater Fortification)', 12260), (205442, 205442, 93, 93, 'Nano Crystal (Enfraam''s Inverted Restrainer)', 12258), (150639, 150639, 37, 37, 'Nano Crystal (Enfraam''s Lesser Fortification)', 12227), (150638, 150638, 80, 80, 'Nano Crystal (Enfraam''s Major Fortification)', 12260), (150637, 150637, 24, 24, 'Nano Crystal (Enfraam''s Minor Fortification)', 12227), (253381, 253381, 180, 180, 'Nano Crystal (Enfraam''s Perceiver)', 42451), (253385, 253385, 211, 211, 'Nano Crystal (Enfraam''s Perception Deciever)', 42451), (150636, 150636, 166, 166, 'Nano Crystal (Enfraam''s Perfected Fortification)', 42452), (150635, 150635, 60, 60, 'Nano Crystal (Enfraam''s Superior Fortification)', 12260), (150634, 150634, 113, 113, 'Nano Crystal (Enfraam''s Supreme Fortification)', 42452), (150633, 150633, 14, 14, 'Nano Crystal (Enfraam''s Trivial Fortification)', 12227), (218137, 218137, 185, 185, 'Nano Crystal (Enfraam''s Ultimate Destroyer)', 42449), (267638, 267638, 200, 200, 'Nano Crystal (Eng: Advanced Software Hacking Shielding)', 42448), (274372, 274372, 1, 1, 'Nano Crystal (Eng: Jamming Tower)', 12225), (267636, 267636, 200, 200, 'Nano Crystal (Eng: Lesser Software Hacking Shielding)', 42448), (301856, 301856, 150, 150, 'Nano Crystal (Eng: Predator M-30)', 12258), (302255, 302255, 200, 200, 'Nano Crystal (Eng: Sedative Injectors)', 42448), (267637, 267637, 200, 200, 'Nano Crystal (Eng: Software Hacking Shielding)', 42448), (265443, 265443, 175, 175, 'Nano Crystal (Eng: Unsteady Hands)', 12257), (273347, 273347, 215, 215, 'Nano Crystal (Engineer Composite Specialist Tradeskills (8 hours))', 42451), (95537, 95537, 47, 47, 'Nano Crystal (Engrossing Activity)', 12226), (45991, 45991, 149, 149, 'Nano Crystal (Engulf in Flame)', 42449), (205244, 205244, 158, 158, 'Nano Crystal (Enhance Aggression Subsystem)', 42448), (205234, 205234, 56, 56, 'Nano Crystal (Enhance Combat Array)', 12256), (95748, 95748, 27, 27, 'Nano Crystal (Enhance Constitution)', 12228), (95453, 95453, 20, 20, 'Nano Crystal (Enhance Nano Cohesion)', 12225), (95452, 95452, 4, 4, 'Nano Crystal (Enhance Nano Communication)', 12225), (42412, 42412, 1, 1, 'Nano Crystal (Enhance Team Health)', 12228), (28770, 28770, 14, 14, 'Nano Crystal (Enhanced First Aid)', 12226), (97462, 97462, 132, 132, 'Nano Crystal (Enhanced Health Surge)', 42448), (26207, 26207, 27, 27, 'Nano Crystal (Enhanced Senses)', 12226), (160792, 160792, 126, 126, 'Nano Crystal (Enhanced Sureshot)', 301587), (160794, 160794, 146, 146, 'Nano Crystal (Enhanced Trueshot)', 301587), (300802, 300802, 1, 1, 'Nano Crystal (Enigma Glade Guardian)', 300810), (28771, 28771, 37, 37, 'Nano Crystal (Enlarge)', 12228), (82076, 82076, 142, 142, 'Nano Crystal (Enlightened Aura of Healing)', 301449), (270243, 270243, 165, 165, 'Nano Crystal (Enlightened Healing Touch)', 301449), (223250, 223250, 150, 150, 'Nano Crystal (Enliven Outfit (Team))', 42450), (43792, 43792, 159, 159, 'Nano Crystal (Enmity Personification)', 295596), (26548, 26548, 30, 30, 'Nano Crystal (Enmity)', 12226), (100229, 100229, 30, 30, 'Nano Crystal (Enraged Mind)', 12226), (99222, 99222, 149, 149, 'Nano Crystal (Enrapturing Bondage)', 42451), (55842, 55842, 24, 24, 'Nano Crystal (Enshroud with Barbs)', 12227), (56247, 56247, 142, 142, 'Nano Crystal (Entrap Victim)', 42449), (56258, 56258, 182, 182, 'Nano Crystal (Entrepreneurial Thrall)', 42449), (223270, 223270, 207, 207, 'Nano Crystal (Entropic Sores)', 42449), (45366, 45366, 30, 30, 'Nano Crystal (Entropy Beam)', 12224), (29840, 29840, 149, 149, 'Nano Crystal (Entropy Weapon)', 42450), (218125, 218125, 156, 156, 'Nano Crystal (Entropy''s Advance)', 42449), (83970, 83970, 57, 57, 'Nano Crystal (Enveloping Darkness)', 12259), (28772, 28772, 149, 149, 'Nano Crystal (Epsilon Purge)', 301150), (78450, 78450, 162, 162, 'Nano Crystal (Erasing Ray)', 42449), (216000, 216000, 390, 390, 'Nano Crystal (Eremite Goo)', 42449), (45992, 45992, 76, 76, 'Nano Crystal (Eroding Spray)', 12257), (78447, 78447, 142, 142, 'Nano Crystal (Erratic Laser)', 42449), (246376, 246376, 390, 390, 'Nano Crystal (Essence Drain)', 42448), (246378, 246378, 390, 390, 'Nano Crystal (Essence Flight)', 42448), (95736, 95736, 152, 152, 'Nano Crystal (Essence of Behemoth)', 42448), (95737, 95737, 33, 33, 'Nano Crystal (Essence of Boundless Health)', 12228), (95738, 95738, 132, 132, 'Nano Crystal (Essence of Colossus)', 42448), (95733, 95733, 57, 57, 'Nano Crystal (Essence of Cyclops)', 12256), (95734, 95734, 123, 123, 'Nano Crystal (Essence of Gargantua)', 42448), (143909, 143909, 169, 169, 'Nano Crystal (Essence of Life)', 42448), (95731, 95731, 24, 24, 'Nano Crystal (Essence of Might)', 12228), (95728, 95728, 14, 14, 'Nano Crystal (Essence of Vitality)', 12228), (100218, 100218, 162, 162, 'Nano Crystal (Eternal Enmity)', 42451), (223021, 223021, 217, 217, 'Nano Crystal (Evangelical Reaper)', 42450), (226747, 226747, 219, 219, 'Nano Crystal (Eviscerate Defense)', 42452), (83981, 83981, 152, 152, 'Nano Crystal (Eviscerate Eyes)', 42451), (205184, 205184, 85, 85, 'Nano Crystal (Evocation of Fathomless Rage)', 12256), (205186, 205186, 115, 115, 'Nano Crystal (Evocation of Implacable Hatred)', 42448), (205188, 205188, 140, 140, 'Nano Crystal (Evocation of Maddening Wrath)', 42448), (205190, 205190, 177, 177, 'Nano Crystal (Evocation of Pure Malevolence)', 42448), (205192, 205192, 58, 58, 'Nano Crystal (Evocation of Relentless Fury)', 12256), (205194, 205194, 200, 200, 'Nano Crystal (Evocation of The Abomination)', 42448), (205196, 205196, 34, 34, 'Nano Crystal (Evocation of Unleashed Malice)', 12228), (205198, 205198, 16, 16, 'Nano Crystal (Evocation of Unrestrained Ferocity)', 12228), (28773, 28773, 80, 80, 'Nano Crystal (Exaggerated Health)', 12256), (210489, 210489, 84, 84, 'Nano Crystal (Exalted Sanctifier)', 12258), (118256, 118256, 169, 169, 'Nano Crystal (Exceptional Delayed Health Payment)', 42448), (46439, 46439, 139, 139, 'Nano Crystal (Executive-Grade Administrator-Droid)', 42450), (46440, 46440, 86, 86, 'Nano Crystal (Executive-Grade Aide-Droid)', 12258), (46441, 46441, 63, 63, 'Nano Crystal (Executive-Grade Assistant-Droid)', 12258), (46442, 46442, 40, 40, 'Nano Crystal (Executive-Grade Attendant-Droid)', 12225), (46443, 46443, 169, 169, 'Nano Crystal (Executive-Grade Bodyguard)', 42450), (46444, 46444, 24, 24, 'Nano Crystal (Executive-Grade Helper-Droid)', 12225), (46445, 46445, 152, 152, 'Nano Crystal (Executive-Grade Minion)', 42450), (46446, 46446, 119, 119, 'Nano Crystal (Executive-Grade Secretary-Droid)', 42450), (46447, 46447, 10, 10, 'Nano Crystal (Executive-Grade Worker-Droid)', 12225), (226739, 226739, 211, 211, 'Nano Crystal (Exhaust Defense)', 42452), (45993, 45993, 70, 70, 'Nano Crystal (Expanding Neutron Pulse)', 12257), (43979, 43979, 103, 103, 'Nano Crystal (Experimental Panacea)', 42448), (121516, 121516, 97, 97, 'Nano Crystal (Expert Health Haggler)', 12256), (159004, 159004, 1, 1, 'Nano Crystal (Explosion)', 12224), (159005, 159005, 1, 1, 'Nano Crystal (Explosion)', 12224), (152845, 152845, 126, 126, 'Nano Crystal (Expunge Humanity)', 42449), (99628, 99628, 50, 50, 'Nano Crystal (Extended Line of Credit)', 12225), (29842, 29842, 139, 139, 'Nano Crystal (Extreme Prejudice)', 42451), (28809, 28809, 169, 169, 'Nano Crystal (Eye of Light)', 42449), (83980, 83980, 139, 139, 'Nano Crystal (Eyeblighter)', 42451), (116858, 116858, 77, 77, 'Nano Crystal (Face Graft)', 12256), (30119, 30119, 57, 57, 'Nano Crystal (Face in the Crowd)', 12259), (206316, 206316, 390, 390, 'Nano Crystal (Facut''s Horror)', 42450), (226448, 226448, 217, 217, 'Nano Crystal (Fade From Memory)', 42451), (118121, 118121, 150, 150, 'Nano Crystal (Failing Impregnability)', 42452), (46448, 46448, 132, 132, 'Nano Crystal (Faithful Administrator-Droid)', 42450), (46431, 46431, 76, 76, 'Nano Crystal (Faithful Aide-Droid)', 12258), (46432, 46432, 53, 53, 'Nano Crystal (Faithful Assistant-Droid)', 12258), (46433, 46433, 33, 33, 'Nano Crystal (Faithful Attendant-Droid)', 12225), (46434, 46434, 162, 162, 'Nano Crystal (Faithful Bodyguard)', 42450), (46435, 46435, 17, 17, 'Nano Crystal (Faithful Helper-Droid)', 12225), (46436, 46436, 146, 146, 'Nano Crystal (Faithful Minion)', 42450), (46437, 46437, 106, 106, 'Nano Crystal (Faithful Secretary-Droid)', 42450), (46438, 46438, 4, 4, 'Nano Crystal (Faithful Worker-Droid)', 12225), (218061, 218061, 47, 47, 'Nano Crystal (Fake Out)', 12226), (32071, 32071, 17, 17, 'Nano Crystal (False Profession: Adventurer)', 12226), (32073, 32073, 33, 33, 'Nano Crystal (False Profession: Bureaucrat)', 12226), (32074, 32074, 30, 30, 'Nano Crystal (False Profession: Doctor)', 12226), (32082, 32082, 10, 10, 'Nano Crystal (False Profession: Enforcer)', 12226), (32075, 32075, 20, 20, 'Nano Crystal (False Profession: Engineer)', 12226), (32080, 32080, 24, 24, 'Nano Crystal (False Profession: Fixer)', 12226), (32076, 32076, 14, 14, 'Nano Crystal (False Profession: Martial Artist)', 12226), (32077, 32077, 37, 37, 'Nano Crystal (False Profession: Meta-Physicist)', 12226), (32078, 32078, 40, 40, 'Nano Crystal (False Profession: Nanotechnician)', 12226), (32079, 32079, 14, 14, 'Nano Crystal (False Profession: Soldier)', 12226), (32081, 32081, 27, 27, 'Nano Crystal (False Profession: Trader)', 12226), (85270, 85270, 30, 30, 'Nano Crystal (Falsify Medical Records)', 12228), (224078, 224078, 209, 209, 'Nano Crystal (Fanatic Reaper)', 42450), (305385, 305385, 390, 390, 'Nano Crystal (Fanatical Regeneration)', 42448), (26559, 26559, 10, 10, 'Nano Crystal (Fast Attack Expertise)', 12226), (26560, 26560, 14, 14, 'Nano Crystal (Fast Attack Incompetence)', 12226), (26561, 26561, 7, 7, 'Nano Crystal (Fast Attack Inexperience)', 12226), (26562, 26562, 4, 4, 'Nano Crystal (Fast Attack Proficiency)', 12226), (43980, 43980, 80, 80, 'Nano Crystal (Fast Team Tissue Repair)', 12256), (272372, 272372, 150, 150, 'Nano Crystal (Faster than your Shadow)', 42451), (82192, 82192, 169, 169, 'Nano Crystal (Fear of Attention)', 42449), (226272, 226272, 77, 77, 'Nano Crystal (Fearbringer)', 12258), (121151, 121151, 37, 37, 'Nano Crystal (Fearsome Shout)', 12226), (46063, 46063, 20, 20, 'Nano Crystal (Feeble Android)', 12225), (45994, 45994, 7, 7, 'Nano Crystal (Feeble Blade Chaos)', 12224), (118257, 118257, 8, 8, 'Nano Crystal (Feeble Delayed Health Payment)', 12228), (46064, 46064, 47, 47, 'Nano Crystal (Feeble Gladiatorbot)', 12225), (45367, 45367, 90, 90, 'Nano Crystal (Feeble Gravitational Anomaly)', 12257), (46065, 46065, 90, 90, 'Nano Crystal (Feeble Guardbot)', 12258), (46066, 46066, 129, 129, 'Nano Crystal (Feeble Warbot)', 42450), (46067, 46067, 156, 156, 'Nano Crystal (Feeble Warmachine)', 42450), (56176, 56176, 73, 73, 'Nano Crystal (Feet of Iron)', 12257), (56173, 56173, 165, 165, 'Nano Crystal (Feet of Lead)', 42449), (56178, 56178, 14, 14, 'Nano Crystal (Feet of Stone)', 12224), (302241, 302241, 125, 125, 'Nano Crystal (Feline Ferocity)', 12260), (26206, 26206, 53, 53, 'Nano Crystal (Feline Grace)', 12259), (162318, 162318, 146, 146, 'Nano Crystal (Feline Rage)', 300921), (100263, 100263, 50, 50, 'Nano Crystal (Fell Rage)', 301297), (45995, 45995, 162, 162, 'Nano Crystal (Ferocious Impactor Missile)', 42449), (205560, 205560, 390, 390, 'Nano Crystal (Ferocity of the Immortal)', 42449), (210324, 210324, 57, 57, 'Nano Crystal (Fervor of the Devotee)', 301597), (210328, 210328, 144, 144, 'Nano Crystal (Fervor of the Disciple)', 301597), (210330, 210330, 171, 171, 'Nano Crystal (Fervor of the Fanatic)', 301597), (210322, 210322, 14, 14, 'Nano Crystal (Fervor of the Henchman)', 301597), (210326, 210326, 97, 97, 'Nano Crystal (Fervor of the Minion)', 301597), (210332, 210332, 196, 196, 'Nano Crystal (Fervor of the Zealot)', 301597), (267015, 267015, 1, 1, 'Nano Crystal (Fiddy Per Cent)', 12227), (43981, 43981, 10, 10, 'Nano Crystal (Field Dressings)', 12228), (26564, 26564, 10, 10, 'Nano Crystal (Field Quantum Physics Expertise)', 12226), (227656, 227656, 79, 79, 'Nano Crystal (Field Quantum Physics Knowledge)', 12259), (227666, 227666, 131, 131, 'Nano Crystal (Field Quantum Physics Mastery)', 42451), (26565, 26565, 4, 4, 'Nano Crystal (Field Quantum Physics Proficiency)', 12226), (116803, 116803, 120, 120, 'Nano Crystal (Field Workshop)', 42448), (55759, 55759, 20, 20, 'Nano Crystal (Field of Sparks)', 12227), (223320, 223320, 213, 213, 'Nano Crystal (Fieldsweeper Devastator Drone)', 42450), (158942, 158942, 1, 1, 'Nano Crystal (Fiery Blast)', 12224), (158945, 158945, 1, 1, 'Nano Crystal (Fiery Blast)', 12224), (45974, 45974, 142, 142, 'Nano Crystal (Fiery Blast)', 42449), (157992, 157992, 1, 1, 'Nano Crystal (Fiery Breath)', 12224), (157993, 157993, 1, 1, 'Nano Crystal (Fiery Breath)', 12224), (158008, 158008, 1, 1, 'Nano Crystal (Fiery Breath)', 12224), (55856, 55856, 136, 136, 'Nano Crystal (Fiery Vengeance)', 42452), (55846, 55846, 63, 63, 'Nano Crystal (Fiery Wrap)', 12260), (152801, 152801, 1, 1, 'Nano Crystal (Figment of Imagination)', 12225), (210308, 210308, 164, 164, 'Nano Crystal (Finality''s Edge)', 42451), (30769, 30769, 126, 126, 'Nano Crystal (Fine Tuning)', 42450), (252035, 252035, 390, 390, 'Nano Crystal (Fire Breeze)', 42449), (28810, 28810, 27, 27, 'Nano Crystal (Fire Snake)', 12224), (28811, 28811, 7, 7, 'Nano Crystal (Fire Stream)', 12224), (55841, 55841, 30, 30, 'Nano Crystal (Firefly''s Fury)', 12227), (275137, 275137, 215, 215, 'Nano Crystal (Firewalled Sync Compressor)', 42450), (26568, 26568, 10, 10, 'Nano Crystal (First Aid Expertise)', 12226), (26569, 26569, 4, 4, 'Nano Crystal (First Aid Proficiency)', 12226), (28926, 28926, 96, 96, 'Nano Crystal (First Strike)', 12259), (82010, 82010, 116, 116, 'Nano Crystal (First-Degree Burns)', 42449), (28927, 28927, 66, 66, 'Nano Crystal (Fists of Fire)', 12258), (81846, 81846, 47, 47, 'Nano Crystal (Fists of Shocking Touch)', 12225), (81845, 81845, 165, 165, 'Nano Crystal (Fists of Stellar Harmony)', 42450), (81844, 81844, 146, 146, 'Nano Crystal (Fists of the Lightning Crane)', 42450), (81843, 81843, 86, 86, 'Nano Crystal (Fists of the Maelstrom)', 12258), (81842, 81842, 106, 106, 'Nano Crystal (Fists of the Polar Star)', 42450), (81841, 81841, 126, 126, 'Nano Crystal (Fists of the Sorrowful Toad)', 42450), (269472, 269472, 185, 185, 'Nano Crystal (Fists of the Winter Flame)', 301564), (302355, 302355, 185, 185, 'Nano Crystal (Fists of the Winter Flame)', 301564), (265444, 265444, 175, 175, 'Nano Crystal (Fix: Blindside)', 12257), (274374, 274374, 1, 1, 'Nano Crystal (Fix: Communication Disruption)', 12227), (301863, 301863, 205, 205, 'Nano Crystal (Fix: Expeditious Evacuation)', 300953), (279377, 279377, 20, 20, 'Nano Crystal (Fix: Experienced Survivor)', 12228), (302388, 302388, 215, 215, 'Nano Crystal (Fix: NCU Vulnerability Exploitation)', 42450), (301868, 301868, 150, 150, 'Nano Crystal (Fix: Restock Ammo (Level OP-CCXL))', 42450), (301860, 301860, 205, 205, 'Nano Crystal (Fix: Vanish into the Digital Void)', 300952), (279375, 279375, 20, 20, 'Nano Crystal (Fix: Wake Up Call)', 12228), (250368, 250368, 390, 390, 'Nano Crystal (Flashing Energy Overload)', 42451), (46068, 46068, 27, 27, 'Nano Crystal (Flawed Android)', 12225), (46045, 46045, 4, 4, 'Nano Crystal (Flawed Automaton)', 12225), (70585, 70585, 20, 20, 'Nano Crystal (Flawed Defensive Screen)', 12227), (70591, 70591, 156, 156, 'Nano Crystal (Flawed Force Field)', 42452), (46046, 46046, 63, 63, 'Nano Crystal (Flawed Gladiatorbot)', 12258), (46047, 46047, 99, 99, 'Nano Crystal (Flawed Guardbot)', 12258), (70581, 70581, 14, 14, 'Nano Crystal (Flawed Protective Field)', 12227), (70582, 70582, 7, 7, 'Nano Crystal (Flawed Shielding Barrier)', 12227), (46048, 46048, 146, 146, 'Nano Crystal (Flawed Warbot)', 42450), (46049, 46049, 162, 162, 'Nano Crystal (Flawed Warmachine)', 42450), (85265, 85265, 129, 129, 'Nano Crystal (Flawless Medical Claim)', 42448), (136706, 136706, 143, 143, 'Nano Crystal (Flawless Stitching)', 42448), (28929, 28929, 83, 83, 'Nano Crystal (Fleet Foot)', 12259), (118111, 118111, 182, 182, 'Nano Crystal (Fleeting Immunity)', 42452), (223276, 223276, 215, 215, 'Nano Crystal (Flesh Eater)', 42449), (152530, 152530, 113, 113, 'Nano Crystal (Fleshy Shielding)', 42452), (26570, 26570, 10, 10, 'Nano Crystal (Fling Shot Expertise)', 12226), (26571, 26571, 14, 14, 'Nano Crystal (Fling Shot Incompetence)', 12226), (26572, 26572, 7, 7, 'Nano Crystal (Fling Shot Inexperience)', 12226), (26573, 26573, 4, 4, 'Nano Crystal (Fling Shot Proficiency)', 12226), (252053, 252053, 204, 204, 'Nano Crystal (Flourishing Heal)', 301450), (30770, 30770, 132, 132, 'Nano Crystal (Flow of Time)', 42449), (215938, 215938, 390, 390, 'Nano Crystal (Fluctuation of The Vivificator - 720)', 42448), (215940, 215940, 390, 390, 'Nano Crystal (Fluctuation of The Vivificator - 722)', 42448), (215942, 215942, 390, 390, 'Nano Crystal (Fluctuation of The Vivificator - 724)', 42448), (215944, 215944, 390, 390, 'Nano Crystal (Fluctuation of The Vivificator - 726)', 42448), (215946, 215946, 390, 390, 'Nano Crystal (Fluctuation of The Vivificator - 728)', 42448), (215948, 215948, 390, 390, 'Nano Crystal (Fluctuation of The Vivificator - 729)', 42448), (125735, 125735, 123, 123, 'Nano Crystal (Fluctuation of The Vivificator)', 12228), (29803, 29803, 60, 60, 'Nano Crystal (Focused Anger)', 12259), (45368, 45368, 116, 116, 'Nano Crystal (Focused Ray)', 42449), (246370, 246370, 390, 390, 'Nano Crystal (Followers Darkness)', 42451), (210788, 210788, 22, 22, 'Nano Crystal (Footpad Apprentice)', 301590), (70596, 70596, 169, 169, 'Nano Crystal (Force Field)', 42452), (99627, 99627, 185, 185, 'Nano Crystal (Forced Bankruptcy)', 42450), (273385, 273385, 215, 215, 'Nano Crystal (Forget Me!)', 301620), (275006, 275006, 215, 215, 'Nano Crystal (Form of Cerberus)', 300903), (28930, 28930, 165, 165, 'Nano Crystal (Form of Tessai)', 42452), (275017, 275017, 215, 215, 'Nano Crystal (Formula 22)', 42448), (118120, 118120, 120, 120, 'Nano Crystal (Fortify)', 42452), (29843, 29843, 175, 175, 'Nano Crystal (Fortress of Spikes)', 42452), (45975, 45975, 90, 90, 'Nano Crystal (Foul Bane)', 12257), (83979, 83979, 162, 162, 'Nano Crystal (Foul Eyeblighter)', 42451), (246034, 246034, 390, 390, 'Nano Crystal (Fountain of Life)', 42448), (28931, 28931, 169, 169, 'Nano Crystal (Four Fists of Kali)', 42451), (152802, 152802, 1, 1, 'Nano Crystal (Fragment of Sanity)', 12225), (26245, 26245, 43, 43, 'Nano Crystal (Free Movement)', 296729), (150018, 150018, 83, 83, 'Nano Crystal (Freeze Ground)', 12257), (158717, 158717, 1, 1, 'Nano Crystal (Freezing Breath)', 12224), (158720, 158720, 1, 1, 'Nano Crystal (Freezing Breath)', 12224), (269475, 269475, 197, 197, 'Nano Crystal (Freezing Lancets)', 42449), (28812, 28812, 96, 96, 'Nano Crystal (Freezing Surge)', 12257), (152529, 152529, 143, 143, 'Nano Crystal (Frenzied Soul From The Pit)', 42448), (43793, 43793, 129, 129, 'Nano Crystal (Frenzy Embodiment)', 295576), (30771, 30771, 20, 20, 'Nano Crystal (Frequent Customer)', 12226), (125766, 125766, 64, 64, 'Nano Crystal (Frigid Blast)', 12257), (45976, 45976, 159, 159, 'Nano Crystal (Frigid Landscape)', 42449), (125770, 125770, 17, 17, 'Nano Crystal (Frost Slivers)', 12224), (55838, 55838, 7, 7, 'Nano Crystal (Frost With Snow)', 12227), (45369, 45369, 43, 43, 'Nano Crystal (Frosty Welcome)', 12224), (26574, 26574, 10, 10, 'Nano Crystal (Full Auto Expertise)', 12226), (26575, 26575, 14, 14, 'Nano Crystal (Full Auto Incompetence)', 12226), (26576, 26576, 7, 7, 'Nano Crystal (Full Auto Inexperience)', 12226), (26577, 26577, 4, 4, 'Nano Crystal (Full Auto Proficiency)', 12226), (270247, 270247, 159, 159, 'Nano Crystal (Full Automatic Targeting)', 301598), (45370, 45370, 185, 185, 'Nano Crystal (Full-body Acid Coating)', 42449), (28813, 28813, 83, 83, 'Nano Crystal (Furious Assault)', 12257), (45977, 45977, 103, 103, 'Nano Crystal (Furious Wind Blade)', 42449), (302227, 302227, 125, 125, 'Nano Crystal (Furry Precision)', 12260), (302415, 302415, 125, 125, 'Nano Crystal (Furry Precision)', 12260), (43794, 43794, 20, 20, 'Nano Crystal (Fury Externalization)', 295576), (205386, 205386, 390, 390, 'Nano Crystal (Fury of the Immortal)', 42449), (210729, 210729, 50, 50, 'Nano Crystal (Fury)', 12226), (205292, 205292, 71, 71, 'Nano Crystal (Gallant Hero: The Aggravated Servant)', 12256), (205296, 205296, 110, 110, 'Nano Crystal (Gallant Hero: The Angry Servitor)', 42448), (205298, 205298, 131, 131, 'Nano Crystal (Gallant Hero: The Bitter Clerk)', 42448), (205288, 205288, 30, 30, 'Nano Crystal (Gallant Hero: The Enraged Drone)', 12228), (205302, 205302, 173, 173, 'Nano Crystal (Gallant Hero: The Incensed Retainer)', 42448), (205294, 205294, 92, 92, 'Nano Crystal (Gallant Hero: The Indignant Flunky)', 12256), (205290, 205290, 52, 52, 'Nano Crystal (Gallant Hero: The Infuriated Minion)', 12256), (205300, 205300, 152, 152, 'Nano Crystal (Gallant Hero: The Irate Attache)', 42448), (205304, 205304, 199, 199, 'Nano Crystal (Gallant Hero: The Vengeful Butler)', 42448), (230377, 230377, 80, 80, 'Nano Crystal (Gallant Slave: The Aggravated Serf)', 12256), (230381, 230381, 110, 110, 'Nano Crystal (Gallant Slave: The Angry Drudge)', 42448), (230383, 230383, 170, 170, 'Nano Crystal (Gallant Slave: The Bitter Vassal)', 42448), (230373, 230373, 30, 30, 'Nano Crystal (Gallant Slave: The Enraged Slave)', 12228), (230387, 230387, 190, 190, 'Nano Crystal (Gallant Slave: The Incensed Subordinate)', 42448), (230379, 230379, 100, 100, 'Nano Crystal (Gallant Slave: The Indignant Peon)', 12256), (230375, 230375, 50, 50, 'Nano Crystal (Gallant Slave: The Infuriated Thrall)', 12228), (230385, 230385, 135, 135, 'Nano Crystal (Gallant Slave: The Irate Chattel)', 42448), (230389, 230389, 205, 205, 'Nano Crystal (Gallant Slave: The Vengeful Toiler)', 42448), (45371, 45371, 37, 37, 'Nano Crystal (Gaping Puncture)', 12224), (28775, 28775, 165, 165, 'Nano Crystal (Gargantuan Health)', 42448), (305323, 305323, 390, 390, 'Nano Crystal (Gatekeeping)', 42449), (230442, 230442, 390, 390, 'Nano Crystal (Gaze of Loss)', 42449), (223200, 223200, 217, 217, 'Nano Crystal (Gazump fight (Team))', 42450), (206320, 206320, 390, 390, 'Nano Crystal (Gibbering Madness)', 42449), (227681, 227681, 220, 220, 'Nano Crystal (Gift of Assurance)', 42452), (223433, 223433, 390, 390, 'Nano Crystal (Gift of Beta)', 42451), (205585, 205585, 390, 390, 'Nano Crystal (Gift of the Immortal)', 42448), (302221, 302221, 125, 125, 'Nano Crystal (Gift of the Twig)', 12260), (300851, 300851, 1, 1, 'Nano Crystal (Gingerleet)', 300856), (118119, 118119, 90, 90, 'Nano Crystal (Gird For Punishment)', 12260), (28932, 28932, 7, 7, 'Nano Crystal (Give Energy: 10)', 12228), (28933, 28933, 53, 53, 'Nano Crystal (Give Energy: 100)', 12256), (28934, 28934, 14, 14, 'Nano Crystal (Give Energy: 25)', 12228), (28935, 28935, 27, 27, 'Nano Crystal (Give Energy: 50)', 12228), (28936, 28936, 7, 7, 'Nano Crystal (Give Life: 10)', 12228), (28937, 28937, 50, 50, 'Nano Crystal (Give Life: 100)', 12228), (28938, 28938, 14, 14, 'Nano Crystal (Give Life: 25)', 12228), (28939, 28939, 27, 27, 'Nano Crystal (Give Life: 50)', 12228), (45372, 45372, 50, 50, 'Nano Crystal (Glacial Advance)', 12224), (55756, 55756, 132, 132, 'Nano Crystal (Glacial Cloak)', 42452), (45373, 45373, 175, 175, 'Nano Crystal (Glacial Finality)', 42449), (125769, 125769, 159, 159, 'Nano Crystal (Glacial Lance)', 42449), (46050, 46050, 70, 70, 'Nano Crystal (Gladiatorbot)', 12258), (121517, 121517, 136, 136, 'Nano Crystal (Glib Health Haggler)', 42448), (100451, 100451, 106, 106, 'Nano Crystal (Glittering Plaything)', 42449), (136702, 136702, 156, 156, 'Nano Crystal (Glorious Healing)', 42448), (210491, 210491, 124, 124, 'Nano Crystal (Glorious Sanctifier)', 42450), (29804, 29804, 27, 27, 'Nano Crystal (Glowing Retribution)', 12227), (230428, 230428, 390, 390, 'Nano Crystal (Gnashing Wail)', 42449), (273295, 273295, 215, 215, 'Nano Crystal (Gnat''s Wing)', 301587), (83978, 83978, 27, 27, 'Nano Crystal (Gouge Eyes)', 12226), (82012, 82012, 70, 70, 'Nano Crystal (Gouge Flesh)', 12257), (218085, 218085, 209, 209, 'Nano Crystal (Grace of the Emperor Crane)', 42450), (210318, 210318, 155, 155, 'Nano Crystal (Grace of the Samurai)', 42451), (269843, 269843, 189, 189, 'Nano Crystal (Grand Theft Humidity)', 301546), (205597, 205597, 390, 390, 'Nano Crystal (Grave Feelings)', 42449), (45374, 45374, 169, 169, 'Nano Crystal (Gravitational Anomaly)', 42449), (82805, 82805, 126, 126, 'Nano Crystal (Gravity Bindings)', 42449), (56175, 56175, 149, 149, 'Nano Crystal (Gravity Pull)', 42449), (82819, 82819, 80, 80, 'Nano Crystal (Great Weight of the Guilty)', 12257), (81900, 81900, 106, 106, 'Nano Crystal (Greater Anatomy Lesson)', 42450), (43789, 43789, 7, 7, 'Nano Crystal (Greater Anger Manifestation)', 295576), (70577, 70577, 4, 4, 'Nano Crystal (Greater Armor Megaboost)', 12227), (45978, 45978, 119, 119, 'Nano Crystal (Greater Blade Chaos)', 42449), (43982, 43982, 156, 156, 'Nano Crystal (Greater Bloom of Health)', 42448), (43983, 43983, 109, 109, 'Nano Crystal (Greater Cellular Grafting)', 42448), (45979, 45979, 70, 70, 'Nano Crystal (Greater Chilling Stream)', 12257), (45980, 45980, 139, 139, 'Nano Crystal (Greater Crystalizing Ray)', 42449), (81960, 81960, 149, 149, 'Nano Crystal (Greater Death''s Knocking)', 42449), (70386, 70386, 57, 57, 'Nano Crystal (Greater Deflection Shield (Extended))', 12260), (70385, 70385, 50, 50, 'Nano Crystal (Greater Deflection Shield)', 12227), (85324, 85324, 109, 109, 'Nano Crystal (Greater Delay Pursuers)', 42449), (56255, 56255, 139, 139, 'Nano Crystal (Greater Delay Retreat)', 42449), (82809, 82809, 90, 90, 'Nano Crystal (Greater Delay the Inevitable)', 12257), (118252, 118252, 149, 149, 'Nano Crystal (Greater Delayed Health Payment)', 42448), (156145, 156145, 50, 50, 'Nano Crystal (Greater Deranged Mindreaver)', 295572), (56265, 56265, 169, 169, 'Nano Crystal (Greater Detain Customer)', 42449), (56242, 56242, 66, 66, 'Nano Crystal (Greater Detain Suspect)', 12257), (156144, 156144, 17, 17, 'Nano Crystal (Greater Distracting Sphere)', 295572), (56263, 56263, 149, 149, 'Nano Crystal (Greater Embrace of Greed)', 42449), (82088, 82088, 142, 142, 'Nano Crystal (Greater Encourage Regrowth)', 42448), (95385, 95385, 146, 146, 'Nano Crystal (Greater Enforced Sloth)', 42449), (43790, 43790, 165, 165, 'Nano Crystal (Greater Enmity Personification)', 295596), (82191, 82191, 179, 179, 'Nano Crystal (Greater Fear of Attention)', 42449), (43966, 43966, 149, 149, 'Nano Crystal (Greater Field Dressings)', 42448), (270240, 270240, 160, 160, 'Nano Crystal (Greater Fortify)', 42452), (43791, 43791, 146, 146, 'Nano Crystal (Greater Frenzy Embodiment)', 295576), (43786, 43786, 27, 27, 'Nano Crystal (Greater Fury Externalization)', 295576), (263252, 263252, 126, 126, 'Nano Crystal (Greater Gunslinger)', 12226), (56253, 56253, 90, 90, 'Nano Crystal (Greater Halt Flight)', 12257), (70420, 70420, 159, 159, 'Nano Crystal (Greater Harmonic Cocoon)', 42452), (82075, 82075, 99, 99, 'Nano Crystal (Greater Healing Touch)', 301448), (78433, 78433, 113, 113, 'Nano Crystal (Greater Health Freeloader)', 42448), (78423, 78423, 33, 33, 'Nano Crystal (Greater Health Funnel)', 12228), (78451, 78451, 175, 175, 'Nano Crystal (Greater Health Plunder)', 42448), (56243, 56243, 132, 132, 'Nano Crystal (Greater Hold Victim)', 42449), (56012, 56012, 146, 146, 'Nano Crystal (Greater Illusory Paralysis)', 42449), (263248, 263248, 126, 126, 'Nano Crystal (Greater Kyudo)', 12226), (43967, 43967, 93, 93, 'Nano Crystal (Greater Lasting heal)', 12256), (82190, 82190, 126, 126, 'Nano Crystal (Greater Mass Illusory Paralysis)', 42449), (56014, 56014, 162, 162, 'Nano Crystal (Greater Musculature Command)', 42449), (81959, 81959, 146, 146, 'Nano Crystal (Greater Mysterious Causes)', 42449), (81894, 81894, 136, 136, 'Nano Crystal (Greater Nano Boost)', 42450), (82804, 82804, 103, 103, 'Nano Crystal (Greater Nano Net)', 42449), (85266, 85266, 119, 119, 'Nano Crystal (Greater Net Cast Wide)', 42449), (56248, 56248, 149, 149, 'Nano Crystal (Greater Paralyze with Indecision)', 42449), (43968, 43968, 142, 142, 'Nano Crystal (Greater Periodic Checkup)', 42448), (43969, 43969, 172, 172, 'Nano Crystal (Greater Policy Payout)', 42448), (263245, 263245, 126, 126, 'Nano Crystal (Greater Predator)', 12259), (56257, 56257, 152, 152, 'Nano Crystal (Greater Prolong Encounter)', 42449), (82087, 82087, 43, 43, 'Nano Crystal (Greater Quick Heal)', 12228), (45981, 45981, 129, 129, 'Nano Crystal (Greater RNA Reaper)', 42449), (43787, 43787, 53, 53, 'Nano Crystal (Greater Rage Materialization)', 295576), (70388, 70388, 132, 132, 'Nano Crystal (Greater Reflective Field (Extended))', 42452), (70387, 70387, 129, 129, 'Nano Crystal (Greater Reflective Field)', 42452), (82074, 82074, 129, 129, 'Nano Crystal (Greater Restore Essence)', 301449), (136703, 136703, 130, 130, 'Nano Crystal (Greater Restore Health)', 42448), (56009, 56009, 99, 99, 'Nano Crystal (Greater Restrict Movement)', 12257), (55782, 55782, 165, 165, 'Nano Crystal (Greater Retaliatory Barrier)', 42452), (45375, 45375, 172, 172, 'Nano Crystal (Greater Searing Stream)', 42449), (75364, 75364, 132, 132, 'Nano Crystal (Greater Shen Protection)', 42452), (45982, 45982, 132, 132, 'Nano Crystal (Greater Shower With Sludge)', 42449), (75359, 75359, 86, 86, 'Nano Crystal (Greater Steel Skin)', 12260), (99626, 99626, 80, 80, 'Nano Crystal (Greater Strip Assets)', 12258), (82818, 82818, 106, 106, 'Nano Crystal (Greater Stumbling Steps)', 42449), (81958, 81958, 116, 116, 'Nano Crystal (Greater Suspicious Death)', 42449), (82069, 82069, 106, 106, 'Nano Crystal (Greater Team Healing Touch)', 301485), (42413, 42413, 76, 76, 'Nano Crystal (Greater Team Healing)', 12256), (82086, 82086, 57, 57, 'Nano Crystal (Greater Team Quick Heal)', 12256), (82068, 82068, 132, 132, 'Nano Crystal (Greater Team Restore Essence)', 301486), (75362, 75362, 123, 123, 'Nano Crystal (Greater Titanium Skin)', 42452), (45967, 45967, 83, 83, 'Nano Crystal (Greater Toxic Field)', 12257), (45359, 45359, 179, 179, 'Nano Crystal (Greater Viral Assault)', 42449), (75372, 75372, 96, 96, 'Nano Crystal (Greater Wilderness Protection)', 12260), (75358, 75358, 53, 53, 'Nano Crystal (Greater Wooden Skin)', 12260), (43788, 43788, 93, 93, 'Nano Crystal (Greater Wrath Incarnation)', 295576), (27210, 27210, 10, 10, 'Nano Crystal (Grenade Expertise)', 12226), (27211, 27211, 10, 10, 'Nano Crystal (Grenade Incompetence)', 12226), (27212, 27212, 4, 4, 'Nano Crystal (Grenade Inexperience)', 12226), (27213, 27213, 4, 4, 'Nano Crystal (Grenade Proficiency)', 12226), (142715, 142715, 123, 123, 'Nano Crystal (Grid Excursion)', 42450), (142742, 142742, 166, 166, 'Nano Crystal (Grid Gateway)', 300947), (93133, 93133, 136, 136, 'Nano Crystal (Grid Phase Accelerator)', 42450), (31423, 31423, 20, 20, 'Nano Crystal (Grid Phreak)', 296542), (93138, 93138, 43, 43, 'Nano Crystal (Grid Runner)', 12225), (93139, 93139, 83, 83, 'Nano Crystal (Grid Surfer)', 12258), (93135, 93135, 156, 156, 'Nano Crystal (Gridspace Freedom)', 42450), (85142, 85142, 83, 83, 'Nano Crystal (Grinning Hunter)', 300914), (229668, 229668, 50, 50, 'Nano Crystal (Grove Curator)', 42450), (229885, 229885, 175, 175, 'Nano Crystal (Grove Custodian)', 42450), (229888, 229888, 211, 211, 'Nano Crystal (Grove Guardian)', 42450), (229890, 229890, 216, 216, 'Nano Crystal (Grove Warden)', 42450), (152528, 152528, 113, 113, 'Nano Crystal (Grow Spiny Carapace)', 42452), (217681, 217681, 219, 219, 'Nano Crystal (Growling Predator)', 300918), (30772, 30772, 149, 149, 'Nano Crystal (Guard Convoy)', 42450), (55848, 55848, 90, 90, 'Nano Crystal (Guard of the Grizzly)', 12260), (46051, 46051, 109, 109, 'Nano Crystal (Guardbot)', 42450), (210517, 210517, 134, 134, 'Nano Crystal (Guardian Ward)', 42452), (211163, 211163, 170, 170, 'Nano Crystal (Guardian of Might)', 42451), (210316, 210316, 112, 112, 'Nano Crystal (Guardian''s Balance)', 42451), (305336, 305336, 390, 390, 'Nano Crystal (Guardianing)', 42449), (29844, 29844, 10, 10, 'Nano Crystal (Gun Enhancement)', 12225), (30122, 30122, 14, 14, 'Nano Crystal (Gunslinger)', 12226), (160983, 160983, 1, 1, 'Nano Crystal (Hack Grid Data Stream (Team))', 300951), (160980, 160980, 1, 1, 'Nano Crystal (Hack Grid Data Stream)', 300949), (93136, 93136, 30, 30, 'Nano Crystal (Hack Grid Vector)', 12225), (43970, 43970, 146, 146, 'Nano Crystal (Hale and Hearty)', 42448), (43971, 43971, 172, 172, 'Nano Crystal (Halo of Health)', 42448), (42544, 42544, 20, 20, 'Nano Crystal (Halon Cloud)', 12224), (56250, 56250, 4, 4, 'Nano Crystal (Halt Flight)', 12224), (210739, 210739, 106, 106, 'Nano Crystal (Hand of the Shadow)', 42451), (75355, 75355, 14, 14, 'Nano Crystal (Harden Skin)', 12227), (226409, 226409, 219, 219, 'Nano Crystal (Harm Shock)', 42450), (70424, 70424, 139, 139, 'Nano Crystal (Harmonic Cocoon)', 42452), (152843, 152843, 126, 126, 'Nano Crystal (Harmonized Interference Field)', 42451), (233024, 233024, 201, 201, 'Nano Crystal (Harmonizing Resonance Field)', 42452), (250447, 250447, 390, 390, 'Nano Crystal (Harsh Viral Clampdown)', 42449), (81893, 81893, 43, 43, 'Nano Crystal (Hasty Augmentation Cloud)', 12225), (158017, 158017, 1, 1, 'Nano Crystal (Hatch Mantis)', 12225), (226279, 226279, 207, 207, 'Nano Crystal (Hatebringer)', 42450), (230430, 230430, 390, 390, 'Nano Crystal (Haunting Wail)', 42449), (210503, 210503, 127, 127, 'Nano Crystal (Havoc Reaper)', 42450), (29806, 29806, 30, 30, 'Nano Crystal (Headcracker)', 12226), (258502, 258502, 156, 156, 'Nano Crystal (Heal This)', 42448), (43972, 43972, 123, 123, 'Nano Crystal (Healer''s Hands)', 42448), (82073, 82073, 73, 73, 'Nano Crystal (Healing Aura)', 301448), (43973, 43973, 116, 116, 'Nano Crystal (Healing Light)', 42448), (82085, 82085, 156, 156, 'Nano Crystal (Healing Rays of Sunrise)', 42448), (82072, 82072, 43, 43, 'Nano Crystal (Healing Touch)', 301448), (26683, 26683, 4, 4, 'Nano Crystal (Healing)', 12228), (97461, 97461, 156, 156, 'Nano Crystal (Health Assembler)', 42448), (97459, 97459, 4, 4, 'Nano Crystal (Health Augmentation)', 12228), (43974, 43974, 165, 165, 'Nano Crystal (Health Cartel)', 42448), (78432, 78432, 86, 86, 'Nano Crystal (Health Freeloader)', 12256), (78421, 78421, 20, 20, 'Nano Crystal (Health Funnel)', 12228), (95749, 95749, 17, 17, 'Nano Crystal (Health Graft)', 12228), (78442, 78442, 159, 159, 'Nano Crystal (Health Plunder)', 42448), (42414, 42414, 60, 60, 'Nano Crystal (Health Pump)', 12256), (97458, 97458, 30, 30, 'Nano Crystal (Health Surge)', 12228), (273375, 273375, 215, 215, 'Nano Crystal (Healthy Manifestation)', 42448), (75427, 75427, 159, 159, 'Nano Crystal (Heavy Assault Absorption Shield)', 42452), (75426, 75426, 152, 152, 'Nano Crystal (Heavy Assault Combat Barrier)', 42452), (70570, 70570, 185, 185, 'Nano Crystal (Heavy Assault Force Field)', 42452), (26578, 26578, 10, 10, 'Nano Crystal (Heavy Weapons Expertise)', 12226), (26680, 26680, 10, 10, 'Nano Crystal (Heavy Weapons Incompetence)', 12226), (26580, 26580, 4, 4, 'Nano Crystal (Heavy Weapons Inexperience)', 12226), (26581, 26581, 4, 4, 'Nano Crystal (Heavy Weapons Proficiency)', 12226), (223192, 223192, 108, 108, 'Nano Crystal (Heighten fight (Team))', 42450), (29344, 29344, 139, 139, 'Nano Crystal (Helepolis of the Besieger)', 42450), (301298, 301298, 215, 215, 'Nano Crystal (Hellish Rage)', 301297), (81957, 81957, 40, 40, 'Nano Crystal (Hidden Killer)', 12224), (300913, 300913, 215, 215, 'Nano Crystal (Hide of the Cerberus)', 300908), (162257, 162257, 103, 103, 'Nano Crystal (Hide of the Dog)', 300908), (162259, 162259, 139, 139, 'Nano Crystal (Hide of the Fox)', 300908), (162255, 162255, 53, 53, 'Nano Crystal (Hide of the Puppy)', 300908), (162261, 162261, 162, 162, 'Nano Crystal (Hide of the Wolf)', 300908), (150019, 150019, 107, 107, 'Nano Crystal (Hiding In Memory)', 42450), (116830, 116830, 182, 182, 'Nano Crystal (High Chant of Effortless Strikes)', 300520), (116829, 116829, 156, 156, 'Nano Crystal (High Chant of Frenzied Blows)', 300520), (81929, 81929, 30, 30, 'Nano Crystal (Hired Hands)', 12225), (259611, 259611, 390, 390, 'Nano Crystal (Hit me hit you)', 42450), (45360, 45360, 57, 57, 'Nano Crystal (Hoary Seep)', 12257), (56246, 56246, 83, 83, 'Nano Crystal (Hold Victim)', 12257), (210487, 210487, 62, 62, 'Nano Crystal (Honored Sanctifier)', 12258), (28941, 28941, 149, 149, 'Nano Crystal (Horde)', 42451), (121147, 121147, 179, 179, 'Nano Crystal (Horror From The Darkest Pit)', 42451), (26019, 26019, 172, 172, 'Nano Crystal (Hostile Hatchling)', 300923), (30773, 30773, 90, 90, 'Nano Crystal (Hostile Takeover)', 12258), (28814, 28814, 14, 14, 'Nano Crystal (Hot Feet)', 12224), (90410, 90410, 40, 40, 'Nano Crystal (Humidity Extractor)', 12225), (269461, 269461, 184, 184, 'Nano Crystal (Ice Burn)', 42452), (246790, 246790, 390, 390, 'Nano Crystal (Ice Impale of the Tentacle)', 42449), (150016, 150016, 41, 41, 'Nano Crystal (Icy Detonation)', 12224), (100227, 100227, 132, 132, 'Nano Crystal (Id Assault)', 42451), (95535, 95535, 90, 90, 'Nano Crystal (Ignore External Events)', 12259), (226444, 226444, 213, 213, 'Nano Crystal (Ignore Past Actions)', 42451), (249882, 249882, 390, 390, 'Nano Crystal (Ilari Biorejuvenation 1)', 42448), (250048, 250048, 390, 390, 'Nano Crystal (Ilari Biorejuvenation 10)', 42448), (249886, 249886, 390, 390, 'Nano Crystal (Ilari Biorejuvenation 2)', 42448), (249889, 249889, 390, 390, 'Nano Crystal (Ilari Biorejuvenation 3)', 42448), (249891, 249891, 390, 390, 'Nano Crystal (Ilari Biorejuvenation 4)', 42448), (250036, 250036, 390, 390, 'Nano Crystal (Ilari Biorejuvenation 5)', 42448), (250039, 250039, 390, 390, 'Nano Crystal (Ilari Biorejuvenation 6)', 42448), (250041, 250041, 390, 390, 'Nano Crystal (Ilari Biorejuvenation 7)', 42448), (250043, 250043, 390, 390, 'Nano Crystal (Ilari Biorejuvenation 8)', 42448), (250045, 250045, 390, 390, 'Nano Crystal (Ilari Biorejuvenation 9)', 42448), (56007, 56007, 80, 80, 'Nano Crystal (Illusory Paralysis)', 12257), (100450, 100450, 146, 146, 'Nano Crystal (Imaginary Distractions)', 42449), (210676, 210676, 87, 87, 'Nano Crystal (Imminence of Battle)', 12259), (224071, 224071, 183, 183, 'Nano Crystal (Imminence of Bloodshed)', 42451), (210682, 210682, 213, 213, 'Nano Crystal (Imminence of Carnage)', 42451), (210674, 210674, 64, 64, 'Nano Crystal (Imminence of Conflict)', 12259), (210678, 210678, 118, 118, 'Nano Crystal (Imminence of Havoc)', 42451), (210672, 210672, 31, 31, 'Nano Crystal (Imminence of Scrimmage)', 12226), (223031, 223031, 201, 201, 'Nano Crystal (Imminence of Slaughter)', 42451), (210680, 210680, 146, 146, 'Nano Crystal (Imminence of Warfare)', 42451), (230466, 230466, 390, 390, 'Nano Crystal (Immobile)', 42449), (29807, 29807, 63, 63, 'Nano Crystal (Immolation Shield)', 12260), (206340, 206340, 390, 390, 'Nano Crystal (Immortal Rage)', 42448), (45968, 45968, 123, 123, 'Nano Crystal (Impactor Missile)', 42449), (45361, 45361, 139, 139, 'Nano Crystal (Impaling Tracer)', 42449), (223118, 223118, 190, 190, 'Nano Crystal (Impart Resentment)', 42451), (210300, 210300, 20, 20, 'Nano Crystal (Impartiality of the Blade)', 12226), (233846, 233846, 190, 190, 'Nano Crystal (Impel Shadowland Recall)', 42450), (136704, 136704, 153, 153, 'Nano Crystal (Implacability of Life)', 42448), (218139, 218139, 197, 197, 'Nano Crystal (Implacability of the Second Law)', 42449), (99220, 99220, 86, 86, 'Nano Crystal (Impose Will)', 12259), (99625, 99625, 146, 146, 'Nano Crystal (Impoverish Accounts)', 42450), (152419, 152419, 1, 1, 'Nano Crystal (Imprisoned)', 12225), (27216, 27216, 7, 7, 'Nano Crystal (Improve Health)', 12228), (270748, 270748, 215, 215, 'Nano Crystal (Improved Complete Healing)', 301570), (270803, 270803, 215, 215, 'Nano Crystal (Improved Dark Movement)', 42451), (273299, 273299, 215, 215, 'Nano Crystal (Improved Dead Cold)', 42449), (275015, 275015, 215, 215, 'Nano Crystal (Improved Element of Malice)', 42451), (270797, 270797, 215, 215, 'Nano Crystal (Improved Enervate Imprisonment)', 42450), (273630, 273630, 215, 215, 'Nano Crystal (Improved Essence of Behemoth)', 42448), (273356, 273356, 215, 215, 'Nano Crystal (Improved Frenzy of Shells)', 42451), (273366, 273366, 215, 215, 'Nano Crystal (Improved Guardian of Might)', 42451), (273411, 273411, 215, 215, 'Nano Crystal (Improved Health Haggler)', 42448), (270235, 270235, 189, 189, 'Nano Crystal (Improved Health Plunder)', 42448), (270801, 270801, 215, 215, 'Nano Crystal (Improved Instill With Malign Intent)', 42448), (273345, 273345, 215, 215, 'Nano Crystal (Improved Isochronal Sloughing Combat Field)', 42452), (269910, 269910, 215, 215, 'Nano Crystal (Improved Pet Steal Back)', 42450), (273394, 273394, 215, 215, 'Nano Crystal (Improved Prowler)', 42451), (270805, 270805, 215, 215, 'Nano Crystal (Improved Puncture of the Tarasque)', 42451), (270809, 270809, 215, 215, 'Nano Crystal (Improved Quantum Uncertainty)', 42451), (270238, 270238, 190, 190, 'Nano Crystal (Improved Rule of One)', 42449), (273287, 273287, 215, 215, 'Nano Crystal (Improved Seed Life)', 42448), (270791, 270791, 215, 215, 'Nano Crystal (Improved Shield of the Obedient Servant)', 42452), (273403, 273403, 215, 215, 'Nano Crystal (Improved Soldier Clip Junkie)', 42451), (273317, 273317, 215, 215, 'Nano Crystal (Improved Team Health Plan)', 42448), (270807, 270807, 215, 215, 'Nano Crystal (Improved Total Focus)', 42451), (273291, 273291, 215, 215, 'Nano Crystal (Improved Vengeance of Nature)', 42452), (273361, 273361, 215, 215, 'Nano Crystal (Improved Vengeance of the Immaculate)', 42450), (305292, 305292, 250, 250, 'Nano Crystal (In Awe of the Immortal)', 42449), (100260, 100260, 132, 132, 'Nano Crystal (Incandescent Rage)', 301297), (44187, 44187, 126, 126, 'Nano Crystal (Incandescent Venom)', 42449), (259347, 259347, 143, 143, 'Nano Crystal (Incessant Flurry)', 42449), (99593, 99593, 126, 126, 'Nano Crystal (Induce Muscle Spasms)', 301085), (302141, 302141, 100, 100, 'Nano Crystal (Inefficient Marksmanship)', 301085), (44188, 44188, 30, 30, 'Nano Crystal (Infected Wounds)', 12224), (46052, 46052, 24, 24, 'Nano Crystal (Inferior Android)', 12225), (43784, 43784, 1, 1, 'Nano Crystal (Inferior Anger Manifestation)', 295576), (46053, 46053, 4, 4, 'Nano Crystal (Inferior Automaton)', 12225), (43975, 43975, 14, 14, 'Nano Crystal (Inferior Cleanse Wounds)', 12228), (43785, 43785, 159, 159, 'Nano Crystal (Inferior Enmity Personification)', 295596), (43796, 43796, 123, 123, 'Nano Crystal (Inferior Frenzy Embodiment)', 295576), (43781, 43781, 17, 17, 'Nano Crystal (Inferior Fury Externalization)', 295576), (46054, 46054, 57, 57, 'Nano Crystal (Inferior Gladiatorbot)', 12258), (46055, 46055, 96, 96, 'Nano Crystal (Inferior Guardbot)', 12258), (43782, 43782, 40, 40, 'Nano Crystal (Inferior Rage Materialization)', 295576), (46056, 46056, 139, 139, 'Nano Crystal (Inferior Warbot)', 42450), (46057, 46057, 162, 162, 'Nano Crystal (Inferior Warmachine)', 42450), (43957, 43957, 4, 4, 'Nano Crystal (Inferior Wound Bindings)', 12228), (43761, 43761, 83, 83, 'Nano Crystal (Inferior Wrath Incarnation)', 295576), (100261, 100261, 139, 139, 'Nano Crystal (Infernal Rage)', 301297), (205388, 205388, 390, 390, 'Nano Crystal (Inferno of the Immortal)', 42449), (28780, 28780, 7, 7, 'Nano Crystal (Inflict Harm)', 12224), (246372, 246372, 390, 390, 'Nano Crystal (Influence of Bane)', 42451), (151772, 151772, 123, 123, 'Nano Crystal (Infuse With Knowledge: Biological Metamorphose)', 42451), (151773, 151773, 130, 130, 'Nano Crystal (Infuse With Knowledge: Material Creation)', 42451), (151770, 151770, 126, 126, 'Nano Crystal (Infuse With Knowledge: Material Metamorphose)', 42451), (151771, 151771, 136, 136, 'Nano Crystal (Infuse With Knowledge: Psychological Modification)', 42451), (151769, 151769, 133, 133, 'Nano Crystal (Infuse With Knowledge: Sensory Improvement)', 42451), (151774, 151774, 130, 130, 'Nano Crystal (Infuse With Knowledge: Time and Space)', 42451), (95744, 95744, 156, 156, 'Nano Crystal (Infuse With Life)', 42448), (56011, 56011, 132, 132, 'Nano Crystal (Inhibit Motion)', 42449), (233844, 233844, 80, 80, 'Nano Crystal (Initiate Shadowland Recall)', 12258), (81956, 81956, 14, 14, 'Nano Crystal (Inject Poison)', 12224), (81955, 81955, 66, 66, 'Nano Crystal (Inject Venom)', 12257), (81840, 81840, 169, 169, 'Nano Crystal (Inner Peace, Outward Rage)', 42450), (99219, 99219, 152, 152, 'Nano Crystal (Insidious Beguilement)', 42451), (268695, 268695, 100, 100, 'Nano Crystal (Insight into the Shadowlands)', 296649), (99624, 99624, 123, 123, 'Nano Crystal (Insolvency)', 42450), (142719, 142719, 74, 74, 'Nano Crystal (Instantaneous Encoding)', 300953), (116828, 116828, 166, 166, 'Nano Crystal (Instill With Enduring Wrath)', 42448), (116827, 116827, 113, 113, 'Nano Crystal (Instill With Ferocious Purpose)', 42448), (116826, 116826, 41, 41, 'Nano Crystal (Instill With Fury)', 12228), (116825, 116825, 189, 189, 'Nano Crystal (Instill With Malign Intent)', 42448), (116824, 116824, 21, 21, 'Nano Crystal (Instill With Rage)', 12228), (116823, 116823, 150, 150, 'Nano Crystal (Instill With Righteous Frenzy)', 42448), (116832, 116832, 74, 74, 'Nano Crystal (Instill With Terrible Anger)', 12256), (28782, 28782, 90, 90, 'Nano Crystal (Instinctive Control)', 301239), (85267, 85267, 47, 47, 'Nano Crystal (Insurance Hack)', 12228), (150017, 150017, 87, 87, 'Nano Crystal (Intellect Warp)', 12259), (27217, 27217, 7, 7, 'Nano Crystal (Intelligence Boost)', 12228), (223144, 223144, 214, 214, 'Nano Crystal (Intense Agglutinative Nanoweb)', 42449), (223138, 223138, 153, 153, 'Nano Crystal (Intense Gravity Bindings)', 42449), (217040, 217040, 26, 26, 'Nano Crystal (Intense Micro Entanglement)', 12224), (223142, 223142, 207, 207, 'Nano Crystal (Intense Nano Bindings)', 42449), (223134, 223134, 77, 77, 'Nano Crystal (Intense Nano Net)', 12257), (223136, 223136, 127, 127, 'Nano Crystal (Intense Personal Entanglement)', 42449), (223140, 223140, 199, 199, 'Nano Crystal (Intense Targetted Nanoweb)', 42449), (223188, 223188, 26, 26, 'Nano Crystal (Intensify fight (Team))', 12225), (55859, 55859, 142, 142, 'Nano Crystal (Interlocking Barbs)', 42452), (28816, 28816, 162, 162, 'Nano Crystal (Internal Combustion)', 42449), (44202, 44202, 175, 175, 'Nano Crystal (Internal Decomposition)', 42449), (95536, 95536, 14, 14, 'Nano Crystal (Internal Focus)', 12226), (43958, 43958, 156, 156, 'Nano Crystal (Internal Renewal)', 42448), (250108, 250108, 390, 390, 'Nano Crystal (Intimidating Viralbot Cloud)', 42449), (116802, 116802, 156, 156, 'Nano Crystal (Intricate Repairs)', 42448), (210392, 210392, 110, 110, 'Nano Crystal (Intrinsic Dissipation)', 42450), (100457, 100457, 132, 132, 'Nano Crystal (Introspective Engagement)', 42449), (229103, 229103, 209, 209, 'Nano Crystal (Intrusive Insult)', 42451), (85263, 85263, 63, 63, 'Nano Crystal (Invasive Distributed Entanglement)', 12257), (82803, 82803, 73, 73, 'Nano Crystal (Invasive Micro Entanglement)', 12257), (28817, 28817, 70, 70, 'Nano Crystal (Invasive Presence)', 12257), (99218, 99218, 162, 162, 'Nano Crystal (Inveigle Support)', 42451), (223252, 223252, 200, 200, 'Nano Crystal (Invigorate Outfit (Team))', 42450), (136700, 136700, 159, 159, 'Nano Crystal (Invocation of the Phoenix)', 42448), (45969, 45969, 14, 14, 'Nano Crystal (Ion Stream)', 12224), (205380, 205380, 390, 390, 'Nano Crystal (Ire of the Immortal)', 42449), (226274, 226274, 171, 171, 'Nano Crystal (Irebringer)', 42450), (42415, 42415, 83, 83, 'Nano Crystal (Iron Circle)', 12256), (28943, 28943, 4, 4, 'Nano Crystal (Iron Fist)', 12225), (121513, 121513, 149, 149, 'Nano Crystal (Irresistible Health Haggler)', 42448), (223312, 223312, 218, 218, 'Nano Crystal (Isochronal Sloughing Assault Shield)', 42452), (237275, 237275, 212, 212, 'Nano Crystal (Isochronal Sloughing Combat Field)', 42452), (223310, 223310, 196, 196, 'Nano Crystal (Isochronal Sloughing Defensive Shield)', 42452), (223308, 223308, 128, 128, 'Nano Crystal (Isochronal Sloughing Protective Barrier)', 42452), (45362, 45362, 50, 50, 'Nano Crystal (Isotope Deluge)', 12224), (45970, 45970, 146, 146, 'Nano Crystal (Isotope Waves)', 42449), (218143, 218143, 203, 203, 'Nano Crystal (Izgimmer''s Celestial Fury)', 42449), (218153, 218153, 212, 212, 'Nano Crystal (Izgimmer''s Celestial Implosion)', 42449), (218155, 218155, 213, 213, 'Nano Crystal (Izgimmer''s Contagion)', 42449), (218159, 218159, 215, 215, 'Nano Crystal (Izgimmer''s Corrosive Tear)', 42449), (218151, 218151, 211, 211, 'Nano Crystal (Izgimmer''s Defilement of Being)', 42449), (28819, 28819, 182, 182, 'Nano Crystal (Izgimmer''s Enveloping Flame)', 42449), (218141, 218141, 201, 201, 'Nano Crystal (Izgimmer''s Frosty Welcome)', 42449), (218165, 218165, 218, 218, 'Nano Crystal (Izgimmer''s Gelid Caress)', 42449), (220350, 220350, 202, 202, 'Nano Crystal (Izgimmer''s Hippocampal Augmentor)', 301243), (218161, 218161, 216, 216, 'Nano Crystal (Izgimmer''s Inferno)', 42449), (218145, 218145, 205, 205, 'Nano Crystal (Izgimmer''s Infinite Slicer)', 42449), (218147, 218147, 207, 207, 'Nano Crystal (Izgimmer''s Interstellar Chill)', 42449), (28821, 28821, 212, 212, 'Nano Crystal (Izgimmer''s Last Word)', 42449), (28822, 28822, 185, 185, 'Nano Crystal (Izgimmer''s Little Nuke)', 42449), (218163, 218163, 217, 217, 'Nano Crystal (Izgimmer''s Malignant Declaration)', 42449), (150632, 150632, 182, 182, 'Nano Crystal (Izgimmer''s Mockery)', 42452), (95424, 95424, 179, 179, 'Nano Crystal (Izgimmer''s Obfuscated Recompiler)', 42448), (218149, 218149, 209, 209, 'Nano Crystal (Izgimmer''s Positronic Annihilation)', 42449), (218157, 218157, 214, 214, 'Nano Crystal (Izgimmer''s Quasar Flicker)', 42449), (205444, 205444, 161, 161, 'Nano Crystal (Izgimmer''s Transposed Restraints)', 42450), (218169, 218169, 220, 220, 'Nano Crystal (Izgimmer''s Ultimatum)', 42449), (275025, 275025, 215, 215, 'Nano Crystal (Izgimmer''s Wealth)', 301619), (55840, 55840, 17, 17, 'Nano Crystal (Jacket of Blades)', 12227), (226397, 226397, 125, 125, 'Nano Crystal (Jarring Shock)', 42450), (95419, 95419, 152, 152, 'Nano Crystal (Jobe Nano Libraries)', 42448), (30775, 30775, 80, 80, 'Nano Crystal (Journeyman: Electrical Engineering)', 12259), (30776, 30776, 80, 80, 'Nano Crystal (Journeyman: Field Quantum Physics)', 12259), (30777, 30777, 83, 83, 'Nano Crystal (Journeyman: Mechanical Engineer)', 12259), (30778, 30778, 86, 86, 'Nano Crystal (Journeyman: Pharmaceutical)', 12259), (30779, 30779, 86, 86, 'Nano Crystal (Journeyman: Weapon Smithing)', 12259), (210304, 210304, 83, 83, 'Nano Crystal (Judgement Bringer)', 12259), (300805, 300805, 1, 1, 'Nano Crystal (Junior Pumpkin-Head)', 300809), (156287, 156287, 41, 41, 'Nano Crystal (Kamikaze Robot I)', 12225), (156286, 156286, 140, 140, 'Nano Crystal (Kamikaze Robot II)', 42450), (31425, 31425, 152, 152, 'Nano Crystal (Karma Harvest)', 301585), (223218, 223218, 207, 207, 'Nano Crystal (Keep clear of me)', 42451), (265453, 265453, 175, 175, 'Nano Crystal (Keep: Blow Their Cover)', 12257), (301154, 301154, 35, 35, 'Nano Crystal (Keep: Clarion Call)', 301155), (279380, 279380, 20, 20, 'Nano Crystal (Keep: Courage Of The Just)', 296411), (301601, 301601, 106, 106, 'Nano Crystal (Keep: Punisher of the Wicked)', 301598), (301119, 301119, 215, 215, 'Nano Crystal (Keep: Rebirth)', 301115), (210298, 210298, 1, 1, 'Nano Crystal (Keeper''s Edge)', 12226), (28823, 28823, 212, 212, 'Nano Crystal (Kel''s Neutronium Plaything)', 42449), (210737, 210737, 71, 71, 'Nano Crystal (Kick of the Phantom)', 12259), (279359, 279359, 20, 20, 'Nano Crystal (Kicker of Kell)', 12226), (210745, 210745, 200, 200, 'Nano Crystal (Kiss of the Vampire)', 42451), (301662, 301662, 1, 1, 'Nano Crystal (Kizzermole Gumbaba)', 301681), (210735, 210735, 29, 29, 'Nano Crystal (Knock of the Poltergeist)', 12226), (227513, 227513, 150, 150, 'Nano Crystal (Knowledge of Inferno)', 296644), (227515, 227515, 200, 200, 'Nano Crystal (Knowledge of The End)', 296646), (263247, 263247, 126, 126, 'Nano Crystal (Kyudo)', 12226), (26555, 26555, 10, 10, 'Nano Crystal (LR Energy Weapon Expertise)', 12226), (26556, 26556, 10, 10, 'Nano Crystal (LR Energy Weapon Incompetence)', 12226), (26557, 26557, 4, 4, 'Nano Crystal (LR Energy Weapon Inexp)', 12226), (29342, 29342, 63, 63, 'Nano Crystal (LR Energy Weapon Mastery)', 12259), (26558, 26558, 4, 4, 'Nano Crystal (LR Energy Weapon Proficiency)', 12226), (95533, 95533, 139, 139, 'Nano Crystal (Last Minute Adjustments)', 301587), (42416, 42416, 14, 14, 'Nano Crystal (Lasting Heal)', 12228), (252047, 252047, 205, 205, 'Nano Crystal (Lasting Life)', 42448), (252051, 252051, 211, 211, 'Nano Crystal (Lasting Ultimatum)', 42448), (118123, 118123, 80, 80, 'Nano Crystal (Layered Protection)', 12260), (27222, 27222, 4, 4, 'Nano Crystal (Leaden Feet)', 12226), (263279, 263279, 60, 60, 'Nano Crystal (Learning by Doing (Team))', 296549), (93137, 93137, 63, 63, 'Nano Crystal (Leech Grid Vector)', 12258), (248387, 248387, 1, 1, 'Nano Crystal (Leet Pet)', 254462), (83969, 83969, 162, 162, 'Nano Crystal (Legions of the Eyeblighter)', 42451), (56249, 56249, 165, 165, 'Nano Crystal (Leisurely Interrogation)', 42449), (30266, 30266, 24, 24, 'Nano Crystal (Lend Nano: 100)', 12228), (30783, 30783, 172, 172, 'Nano Crystal (Lend Nano: 1000)', 42448), (30780, 30780, 53, 53, 'Nano Crystal (Lend Nano: 250)', 12256), (30781, 30781, 10, 10, 'Nano Crystal (Lend Nano: 50)', 12228), (30782, 30782, 116, 116, 'Nano Crystal (Lend Nano: 500)', 42448), (75419, 75419, 37, 37, 'Nano Crystal (Lesser Absorption Shield)', 12227), (81899, 81899, 10, 10, 'Nano Crystal (Lesser Anatomy Lesson)', 12225), (46058, 46058, 24, 24, 'Nano Crystal (Lesser Android)', 12225), (46059, 46059, 4, 4, 'Nano Crystal (Lesser Automaton)', 12225), (45971, 45971, 40, 40, 'Nano Crystal (Lesser Bane of the Living)', 12224), (82817, 82817, 7, 7, 'Nano Crystal (Lesser Blizzard of Red Tape)', 12224), (43959, 43959, 63, 63, 'Nano Crystal (Lesser Bloom of Health)', 12256), (150012, 150012, 80, 80, 'Nano Crystal (Lesser Call of Rat)', 12258), (43960, 43960, 1, 1, 'Nano Crystal (Lesser Cellular Grafting)', 12228), (99216, 99216, 96, 96, 'Nano Crystal (Lesser Charismatic Rapture)', 12259), (43961, 43961, 47, 47, 'Nano Crystal (Lesser Circle of Renewal)', 12228), (75417, 75417, 20, 20, 'Nano Crystal (Lesser Combat Barrier)', 12227), (45363, 45363, 109, 109, 'Nano Crystal (Lesser Coronet of Frost)', 42449), (81954, 81954, 93, 93, 'Nano Crystal (Lesser Death''s Knocking)', 12257), (70571, 70571, 57, 57, 'Nano Crystal (Lesser Defensive Screen)', 12260), (70389, 70389, 30, 30, 'Nano Crystal (Lesser Deflection Shield (Extended))', 12227), (70390, 70390, 24, 24, 'Nano Crystal (Lesser Deflection Shield)', 12227), (85322, 85322, 27, 27, 'Nano Crystal (Lesser Delay Pursuers)', 12224), (82808, 82808, 37, 37, 'Nano Crystal (Lesser Delay the Inevitable)', 12224), (118253, 118253, 57, 57, 'Nano Crystal (Lesser Delayed Health Payment)', 12256), (156143, 156143, 34, 34, 'Nano Crystal (Lesser Deranged Mindreaver)', 295572), (56259, 56259, 1, 1, 'Nano Crystal (Lesser Detain Customer)', 12224), (156142, 156142, 4, 4, 'Nano Crystal (Lesser Distracting Sphere)', 295572), (56266, 56266, 14, 14, 'Nano Crystal (Lesser Embrace of Greed)', 12224), (45972, 45972, 47, 47, 'Nano Crystal (Lesser Encircle With Blades)', 12224), (85320, 85320, 14, 14, 'Nano Crystal (Lesser Enforced Sloth)', 12224), (83977, 83977, 86, 86, 'Nano Crystal (Lesser Eyeblighter)', 12259), (82189, 82189, 149, 149, 'Nano Crystal (Lesser Fear of Attention)', 42449), (70595, 70595, 162, 162, 'Nano Crystal (Lesser Force Field)', 42452), (46060, 46060, 53, 53, 'Nano Crystal (Lesser Gladiatorbot)', 12258), (46061, 46061, 93, 93, 'Nano Crystal (Lesser Guardbot)', 12258), (70422, 70422, 96, 96, 'Nano Crystal (Lesser Harmonic Cocoon)', 12260), (82071, 82071, 10, 10, 'Nano Crystal (Lesser Healing Touch)', 301447), (78430, 78430, 80, 80, 'Nano Crystal (Lesser Health Freeloader)', 12256), (78420, 78420, 17, 17, 'Nano Crystal (Lesser Health Funnel)', 12228), (78441, 78441, 156, 156, 'Nano Crystal (Lesser Health Plunder)', 42448), (56241, 56241, 17, 17, 'Nano Crystal (Lesser Hold Victim)', 12224), (56003, 56003, 4, 4, 'Nano Crystal (Lesser Illusory Paralysis)', 12224), (229093, 229093, 45, 45, 'Nano Crystal (Lesser Insult)', 12226), (263302, 263302, 125, 125, 'Nano Crystal (Lesser Miniaturization)', 12260), (56004, 56004, 33, 33, 'Nano Crystal (Lesser Musculature Command)', 12224), (81953, 81953, 27, 27, 'Nano Crystal (Lesser Mysterious Causes)', 12224), (43962, 43962, 17, 17, 'Nano Crystal (Lesser Nano Bandage)', 12228), (81892, 81892, 10, 10, 'Nano Crystal (Lesser Nano Boost)', 12225), (82802, 82802, 10, 10, 'Nano Crystal (Lesser Nano Net)', 12224), (43963, 43963, 24, 24, 'Nano Crystal (Lesser Nano Surgery)', 12228), (85264, 85264, 20, 20, 'Nano Crystal (Lesser Net Cast Wide)', 12224), (56239, 56239, 33, 33, 'Nano Crystal (Lesser Paralyze with Indecision)', 12224), (99217, 99217, 27, 27, 'Nano Crystal (Lesser Pheromone Control)', 12226), (43964, 43964, 109, 109, 'Nano Crystal (Lesser Policy Payout)', 42448), (263242, 263242, 126, 126, 'Nano Crystal (Lesser Predator)', 12259), (56251, 56251, 27, 27, 'Nano Crystal (Lesser Prolong Encounter)', 12224), (70572, 70572, 50, 50, 'Nano Crystal (Lesser Protective Field)', 12227), (45973, 45973, 14, 14, 'Nano Crystal (Lesser RNA Reaper)', 12224), (70391, 70391, 123, 123, 'Nano Crystal (Lesser Reflective Field (Extended))', 42452), (70392, 70392, 123, 123, 'Nano Crystal (Lesser Reflective Field)', 42452), (136701, 136701, 21, 21, 'Nano Crystal (Lesser Restore to Health)', 12228), (55776, 55776, 37, 37, 'Nano Crystal (Lesser Retaliatory Barrier)', 12227), (75356, 75356, 33, 33, 'Nano Crystal (Lesser Shen Protection)', 12227), (70587, 70587, 43, 43, 'Nano Crystal (Lesser Shielding Barrier)', 12227), (82816, 82816, 4, 4, 'Nano Crystal (Lesser Stumbling Steps)', 12224), (81952, 81952, 4, 4, 'Nano Crystal (Lesser Suspicious Death)', 12224), (46029, 46029, 136, 136, 'Nano Crystal (Lesser Warbot)', 42450), (46030, 46030, 159, 159, 'Nano Crystal (Lesser Warmachine)', 42450), (85319, 85319, 37, 37, 'Nano Crystal (Lesser Weighty Announcement)', 12224), (75369, 75369, 20, 20, 'Nano Crystal (Lesser Wilderness Protection)', 12227), (27223, 27223, 4, 4, 'Nano Crystal (Lethargy)', 297534), (29808, 29808, 136, 136, 'Nano Crystal (Lick of Fire)', 42452), (204829, 204829, 390, 390, 'Nano Crystal (Lien''s Crystalizer)', 295591), (43965, 43965, 152, 152, 'Nano Crystal (Life Balm)', 42448), (252049, 252049, 208, 208, 'Nano Crystal (Life Bond)', 42448), (97456, 97456, 182, 182, 'Nano Crystal (Life Channeler)', 42448), (97455, 97455, 50, 50, 'Nano Crystal (Life Reinforcement)', 12228), (31449, 31449, 90, 90, 'Nano Crystal (Lifebane Modification)', 12258), (215950, 215950, 390, 390, 'Nano Crystal (Lifeblood of Altmus - 720)', 42448), (215952, 215952, 390, 390, 'Nano Crystal (Lifeblood of Altmus - 722)', 42448), (215954, 215954, 390, 390, 'Nano Crystal (Lifeblood of Altmus - 724)', 42448), (215956, 215956, 390, 390, 'Nano Crystal (Lifeblood of Altmus - 726)', 42448), (215958, 215958, 390, 390, 'Nano Crystal (Lifeblood of Altmus - 728)', 42448), (215960, 215960, 390, 390, 'Nano Crystal (Lifeblood of Altmus - 729)', 42448), (125732, 125732, 146, 146, 'Nano Crystal (Lifeblood of Altmus)', 12228), (252007, 252007, 205, 205, 'Nano Crystal (Lifecure)', 42448), (43946, 43946, 165, 165, 'Nano Crystal (Lifegiving Elixir)', 301449), (252009, 252009, 209, 209, 'Nano Crystal (Light of Life)', 42448), (158941, 158941, 1, 1, 'Nano Crystal (Lightning Blast)', 12224), (55754, 55754, 106, 106, 'Nano Crystal (Lightning Shield)', 42452), (28824, 28824, 80, 80, 'Nano Crystal (Lightning Strike)', 12257), (55858, 55858, 152, 152, 'Nano Crystal (Lightning''s Child)', 42452), (28945, 28945, 17, 17, 'Nano Crystal (Limbo Mastery)', 12226), (46422, 46422, 132, 132, 'Nano Crystal (Limited Administrator-Droid)', 42450), (46423, 46423, 73, 73, 'Nano Crystal (Limited Aide-Droid)', 12258), (46424, 46424, 50, 50, 'Nano Crystal (Limited Assistant-Droid)', 12225), (46425, 46425, 30, 30, 'Nano Crystal (Limited Attendant-Droid)', 12225), (46426, 46426, 162, 162, 'Nano Crystal (Limited Bodyguard)', 42450), (93140, 93140, 17, 17, 'Nano Crystal (Limited Grid Jump)', 12225), (46427, 46427, 17, 17, 'Nano Crystal (Limited Helper-bot)', 12225), (46428, 46428, 146, 146, 'Nano Crystal (Limited Minion)', 42450), (44189, 44189, 7, 7, 'Nano Crystal (Limited Nano Reaper)', 12224), (46429, 46429, 99, 99, 'Nano Crystal (Limited Secretary-Droid)', 12258), (45959, 45959, 83, 83, 'Nano Crystal (Limited Shrapnel Spray)', 12257), (46430, 46430, 1, 1, 'Nano Crystal (Limited Worker-Droid)', 12225), (99623, 99623, 7, 7, 'Nano Crystal (Line of Credit)', 12225), (45364, 45364, 159, 159, 'Nano Crystal (Linear Acceleration)', 42449), (274580, 274580, 205, 205, 'Nano Crystal (Link Nano Master)', 42451), (45960, 45960, 132, 132, 'Nano Crystal (Liquefying Sphere)', 42449), (30784, 30784, 156, 156, 'Nano Crystal (Liquidation)', 42450), (30124, 30124, 175, 175, 'Nano Crystal (Living Embalming)', 42449), (45349, 45349, 189, 189, 'Nano Crystal (Localized Dimensional Inversion)', 42449), (78428, 78428, 70, 70, 'Nano Crystal (Lossy Health Freeloader)', 12256), (78418, 78418, 10, 10, 'Nano Crystal (Lossy Health Funnel)', 12228), (78439, 78439, 149, 149, 'Nano Crystal (Lossy Health Plunder)', 42448), (81839, 81839, 27, 27, 'Nano Crystal (Lotus on Water)', 12225), (260766, 260766, 205, 205, 'Nano Crystal (Luck''s Capricious Consequence)', 12259), (31427, 31427, 83, 83, 'Nano Crystal (Luck''s Fickle Fate)', 12259), (273358, 273358, 215, 215, 'Nano Crystal (Luck''s Improved Capricious Consequence)', 42451), (99140, 99140, 162, 162, 'Nano Crystal (Lull Wrath)', 42451), (302233, 302233, 125, 125, 'Nano Crystal (Lupine Agility)', 12260), (279346, 279346, 20, 20, 'Nano Crystal (MA: Footsteps of The Master)', 296435), (265442, 265442, 175, 175, 'Nano Crystal (MA: Induce Stupor)', 12257), (301937, 301937, 195, 195, 'Nano Crystal (MA: Irrational Grudge)', 42451), (301492, 301492, 206, 206, 'Nano Crystal (MA: Team Flourishing Heal)', 301486), (287556, 287556, 1, 1, 'Nano Crystal (MA: Zazen Stance)', 301445), (267270, 267270, 200, 200, 'Nano Crystal (MP: Beneficial Scourge)', 42451), (267640, 267640, 200, 200, 'Nano Crystal (MP: Evocation of The Cleansed)', 42448), (267631, 267631, 200, 200, 'Nano Crystal (MP: Evocation of The Empowered)', 42448), (267630, 267630, 200, 200, 'Nano Crystal (MP: Evocation of The Enlightened)', 42448), (267629, 267629, 200, 200, 'Nano Crystal (MP: Evocation of The Enraged)', 42448), (267639, 267639, 200, 200, 'Nano Crystal (MP: Evocation of The Pure)', 42448), (267632, 267632, 200, 200, 'Nano Crystal (MP: Evocation of The Reinforced)', 42448), (302258, 302258, 50, 50, 'Nano Crystal (MP: Eye of the Tigress)', 12226), (267273, 267273, 200, 200, 'Nano Crystal (MP: Hostility Scourge)', 42451), (302189, 302189, 200, 200, 'Nano Crystal (MP: Improved Anticipation of Retaliation)', 42451), (301889, 301889, 200, 200, 'Nano Crystal (MP: Induced Apathy)', 42448), (267276, 267276, 200, 200, 'Nano Crystal (MP: Lesser Beneficial Scourge)', 42451), (267274, 267274, 200, 200, 'Nano Crystal (MP: Lesser Hostility Scourge)', 42451), (267284, 267284, 200, 200, 'Nano Crystal (MP: Nanite Enhanced Nano Shutdown)', 300508), (265452, 265452, 200, 200, 'Nano Crystal (MP: Nano Division)', 12257), (300507, 300507, 100, 100, 'Nano Crystal (MP: Sacrificial Bond)', 300500), (267282, 267282, 200, 200, 'Nano Crystal (MP: Sacrificial Shielding)', 300499), (162122, 162122, 152, 152, 'Nano Crystal (Maek 0wz!', 300910), (300912, 300912, 215, 215, 'Nano Crystal (Maek Hurtz!)', 300910), (162118, 162118, 66, 66, 'Nano Crystal (Maek Ouch!)', 300910), (162120, 162120, 126, 126, 'Nano Crystal (Maek Painz!)', 300910), (30785, 30785, 152, 152, 'Nano Crystal (Maestro: Electrical Engineering)', 42451), (30786, 30786, 152, 152, 'Nano Crystal (Maestro: Field Quantum Physics)', 42451), (30787, 30787, 152, 152, 'Nano Crystal (Maestro: Mechanical Engineering)', 42451), (30788, 30788, 156, 156, 'Nano Crystal (Maestro: Pharmaceutical)', 42451), (30789, 30789, 156, 156, 'Nano Crystal (Maestro: Weapon Smithing)', 42451), (55850, 55850, 109, 109, 'Nano Crystal (Magma Coating)', 42452), (152840, 152840, 126, 126, 'Nano Crystal (Magnified Psychic Hammer)', 42449), (92207, 92207, 189, 189, 'Nano Crystal (Major Armor Distributor)', 42452), (206330, 206330, 390, 390, 'Nano Crystal (Major Aura of the Immortal)', 42448), (206322, 206322, 390, 390, 'Nano Crystal (Major Blessing of the Immortal)', 42448), (206332, 206332, 390, 390, 'Nano Crystal (Major Chant of the Immortal)', 42448), (45350, 45350, 146, 146, 'Nano Crystal (Major Chemical Burn)', 42449), (206338, 206338, 390, 390, 'Nano Crystal (Major Defender of the Immortal)', 42448), (70394, 70394, 70, 70, 'Nano Crystal (Major Deflection Shield (Extended))', 12260), (70393, 70393, 63, 63, 'Nano Crystal (Major Deflection Shield)', 12260), (118249, 118249, 100, 100, 'Nano Crystal (Major Delayed Health Payment)', 12256), (206324, 206324, 390, 390, 'Nano Crystal (Major Gift of the Immortal)', 42448), (78431, 78431, 93, 93, 'Nano Crystal (Major Health Freeloader)', 12256), (78422, 78422, 24, 24, 'Nano Crystal (Major Health Funnel)', 12228), (95745, 95745, 93, 93, 'Nano Crystal (Major Health Graft)', 12256), (78440, 78440, 162, 162, 'Nano Crystal (Major Health Plunder)', 42448), (81898, 81898, 80, 80, 'Nano Crystal (Major Nano Augmentation)', 12258), (206328, 206328, 390, 390, 'Nano Crystal (Major Presence of the Immortal)', 42448), (206326, 206326, 390, 390, 'Nano Crystal (Major Radiance of the Immortal)', 42448), (70396, 70396, 139, 139, 'Nano Crystal (Major Reflective Field (Extended))', 42452), (70395, 70395, 136, 136, 'Nano Crystal (Major Reflective Field)', 42452), (75363, 75363, 99, 99, 'Nano Crystal (Major Shen Protection)', 12260), (206318, 206318, 390, 390, 'Nano Crystal (Major Shutdown)', 42449), (75371, 75371, 70, 70, 'Nano Crystal (Major Wilderness Protection)', 12260), (227773, 227773, 205, 205, 'Nano Crystal (Make Off)', 301574), (136697, 136697, 74, 74, 'Nano Crystal (Makeshift Bandaging)', 12256), (236509, 236509, 171, 171, 'Nano Crystal (Malaise of Emotion)', 301085), (236515, 236515, 215, 215, 'Nano Crystal (Malaise of Fervor)', 301085), (236507, 236507, 140, 140, 'Nano Crystal (Malaise of Motivation)', 301085), (301086, 301086, 215, 215, 'Nano Crystal (Malaise of Zeal)', 301085), (205564, 205564, 390, 390, 'Nano Crystal (Malevolence of the Immortal)', 42449), (205394, 205394, 390, 390, 'Nano Crystal (Malice of the Immortal)', 42449), (45351, 45351, 149, 149, 'Nano Crystal (Malign Devourer)', 42449), (301106, 301106, 215, 215, 'Nano Crystal (Malpractice)', 301105), (302549, 302549, 1, 1, 'Nano Crystal (Mantis Hatchling)', 302546), (226745, 226745, 215, 215, 'Nano Crystal (Mar Defense)', 42452), (223336, 223336, 215, 215, 'Nano Crystal (Marauder M-45)', 42450), (30790, 30790, 14, 14, 'Nano Crystal (Margin Call)', 12225), (160578, 160578, 126, 126, 'Nano Crystal (Mark of Danger)', 301587), (160577, 160577, 159, 159, 'Nano Crystal (Mark of Peril)', 301587), (160579, 160579, 57, 57, 'Nano Crystal (Mark of Risk)', 301587), (27229, 27229, 10, 10, 'Nano Crystal (Martial Arts Expertise)', 12226), (27230, 27230, 10, 10, 'Nano Crystal (Martial Arts Incompetence)', 12226), (27231, 27231, 4, 4, 'Nano Crystal (Martial Arts Inexperience)', 12226), (28946, 28946, 50, 50, 'Nano Crystal (Martial Arts Mastery)', 12226), (27232, 27232, 4, 4, 'Nano Crystal (Martial Arts Proficiency)', 12226), (83968, 83968, 20, 20, 'Nano Crystal (Mass Claw Eyes)', 12226), (83967, 83967, 109, 109, 'Nano Crystal (Mass Cornea Attack)', 42451), (82188, 82188, 10, 10, 'Nano Crystal (Mass Daze)', 12224), (85281, 85281, 136, 136, 'Nano Crystal (Mass Gravity Bindings)', 42449), (82187, 82187, 27, 27, 'Nano Crystal (Mass Illusory Paralysis)', 12224), (83966, 83966, 132, 132, 'Nano Crystal (Mass Pronounce Blindness)', 42451), (246367, 246367, 390, 390, 'Nano Crystal (Mass Restricted Movement.)', 42449), (211145, 211145, 163, 163, 'Nano Crystal (Master Piercer)', 42451), (268170, 268170, 200, 200, 'Nano Crystal (Master''s Bidding)', 42448), (270241, 270241, 192, 192, 'Nano Crystal (Master''s Repairs)', 42448), (121514, 121514, 116, 116, 'Nano Crystal (Masterly Health Haggler)', 42448), (27233, 27233, 10, 10, 'Nano Crystal (MatCrea Expertise)', 12226), (27234, 27234, 10, 10, 'Nano Crystal (MatCrea Incompetence)', 12226), (27235, 27235, 4, 4, 'Nano Crystal (MatCrea Inexperience)', 12226), (29391, 29391, 43, 43, 'Nano Crystal (MatCrea Mastery)', 12226), (27236, 27236, 4, 4, 'Nano Crystal (MatCrea Proficiency)', 12226), (27241, 27241, 10, 10, 'Nano Crystal (MatMet Expertise)', 12226), (27242, 27242, 10, 10, 'Nano Crystal (MatMet Incompetence)', 12226), (27243, 27243, 4, 4, 'Nano Crystal (MatMet Inexperience)', 12226), (29393, 29393, 50, 50, 'Nano Crystal (MatMet Mastery)', 12226), (27244, 27244, 4, 4, 'Nano Crystal (MatMet Proficiency)', 12226), (301446, 301446, 215, 215, 'Nano Crystal (Matrix of Ka)', 301450), (259763, 259763, 390, 390, 'Nano Crystal (Means Seventies Flashback)', 42448), (258223, 258223, 390, 390, 'Nano Crystal (Means Test Pet)', 42450), (27245, 27245, 10, 10, 'Nano Crystal (Mechanical Engineering Expertise)', 12226), (227658, 227658, 82, 82, 'Nano Crystal (Mechanical Engineering Knowledge)', 12259), (227668, 227668, 135, 135, 'Nano Crystal (Mechanical Engineering Mastery)', 42451), (27246, 27246, 4, 4, 'Nano Crystal (Mechanical Engineering Proficiency)', 12226), (42417, 42417, 57, 57, 'Nano Crystal (Medic''s Call)', 12256), (95746, 95746, 47, 47, 'Nano Crystal (Medic''s Respite)', 12228), (85282, 85282, 17, 17, 'Nano Crystal (Medical Claim)', 12228), (43947, 43947, 132, 132, 'Nano Crystal (Medical Response)', 42448), (43948, 43948, 70, 70, 'Nano Crystal (Medical Sequencer)', 12256), (81838, 81838, 40, 40, 'Nano Crystal (Meditate on an Autumn Leaf)', 12225), (26503, 26503, 14, 14, 'Nano Crystal (Melee Special Attacks Incompetence)', 297520), (27199, 27199, 10, 10, 'Nano Crystal (Melee Weapons Incompetence)', 297512), (142774, 142774, 34, 34, 'Nano Crystal (Mental Switcheroo)', 12226), (45352, 45352, 123, 123, 'Nano Crystal (Mephitic Ichor)', 42449), (263300, 263300, 125, 125, 'Nano Crystal (Mesmerization Construct Empowerment)', 12260), (45353, 45353, 103, 103, 'Nano Crystal (Meson Blast)', 42449), (45354, 45354, 136, 136, 'Nano Crystal (Meta-Dioxin Spray)', 42449), (44190, 44190, 119, 119, 'Nano Crystal (Metabolic Disassembly)', 42449), (95742, 95742, 33, 33, 'Nano Crystal (Metabolism Booster)', 12228), (267879, 267879, 180, 180, 'Nano Crystal (Metaing''s Improved Glacial Lance)', 42449), (270244, 270244, 188, 188, 'Nano Crystal (Metaing''s Improved Mind Quake)', 42449), (285093, 285093, 200, 200, 'Nano Crystal (Metaing''s Test Lance)', 42449), (45962, 45962, 116, 116, 'Nano Crystal (Micro Flechette Swarm)', 42449), (45961, 45961, 17, 17, 'Nano Crystal (Micro Flechette)', 12224), (28825, 28825, 47, 47, 'Nano Crystal (Microblade Whirlwind)', 12224), (49816, 49816, 149, 149, 'Nano Crystal (Mighty Challenger to Behemoth)', 42450), (49817, 49817, 129, 129, 'Nano Crystal (Mighty Challenger to Colossus)', 42450), (49813, 49813, 24, 24, 'Nano Crystal (Mighty Challenger to Cyclops)', 12225), (49814, 49814, 90, 90, 'Nano Crystal (Mighty Challenger to Gargantua)', 12258), (49815, 49815, 136, 136, 'Nano Crystal (Mighty Challenger to Leviathan)', 42450), (49812, 49812, 53, 53, 'Nano Crystal (Mighty Challenger to Titan)', 12258), (45963, 45963, 37, 37, 'Nano Crystal (Mild Toxic Spill)', 12224), (223338, 223338, 219, 219, 'Nano Crystal (Military-Grade Marauder M-45)', 42450), (223334, 223334, 211, 211, 'Nano Crystal (Military-Grade Predator M-30)', 42450), (46031, 46031, 156, 156, 'Nano Crystal (Military-Grade Warbot)', 42450), (46032, 46032, 175, 175, 'Nano Crystal (Military-Grade Warmachine)', 42450), (117239, 117239, 152, 152, 'Nano Crystal (Mimic Profession: Adventurer)', 42451), (117240, 117240, 165, 165, 'Nano Crystal (Mimic Profession: Bureaucrat)', 42451), (117241, 117241, 162, 162, 'Nano Crystal (Mimic Profession: Doctor)', 42451), (117236, 117236, 146, 146, 'Nano Crystal (Mimic Profession: Enforcer)', 42451), (117237, 117237, 156, 156, 'Nano Crystal (Mimic Profession: Engineer)', 42451), (117238, 117238, 159, 159, 'Nano Crystal (Mimic Profession: Fixer)', 42451), (117233, 117233, 149, 149, 'Nano Crystal (Mimic Profession: Martial Artist)', 42451), (117232, 117232, 165, 165, 'Nano Crystal (Mimic Profession: Meta-Physicist)', 42451), (117234, 117234, 169, 169, 'Nano Crystal (Mimic Profession: Nanotechnician)', 42451), (117235, 117235, 146, 146, 'Nano Crystal (Mimic Profession: Soldier)', 42451), (117231, 117231, 162, 162, 'Nano Crystal (Mimic Profession: Trader)', 42451), (29394, 29394, 146, 146, 'Nano Crystal (Mind Banshee)', 42449), (125767, 125767, 87, 87, 'Nano Crystal (Mind Howl)', 12257), (125768, 125768, 173, 173, 'Nano Crystal (Mind Quake)', 42449), (29395, 29395, 37, 37, 'Nano Crystal (Mind Scream)', 12224), (263304, 263304, 125, 125, 'Nano Crystal (Miniaturization)', 12260), (75416, 75416, 14, 14, 'Nano Crystal (Minor Absorption Shield)', 12227), (43949, 43949, 40, 40, 'Nano Crystal (Minor Balm)', 12228), (45964, 45964, 57, 57, 'Nano Crystal (Minor Bane)', 12257), (75415, 75415, 4, 4, 'Nano Crystal (Minor Combat Barrier)', 12227), (44203, 44203, 37, 37, 'Nano Crystal (Minor Consuming Toxin)', 12224), (206334, 206334, 390, 390, 'Nano Crystal (Minor Defender of the Immortal)', 42448), (70398, 70398, 17, 17, 'Nano Crystal (Minor Deflection Shield (Extended))', 12227), (70397, 70397, 14, 14, 'Nano Crystal (Minor Deflection Shield)', 12227), (118250, 118250, 21, 21, 'Nano Crystal (Minor Delayed Health Payment)', 12228), (250367, 250367, 390, 390, 'Nano Crystal (Minor Energy Overload)', 42451), (70423, 70423, 66, 66, 'Nano Crystal (Minor Harmonic Cocoon)', 12260), (26681, 26681, 1, 1, 'Nano Crystal (Minor Healing)', 12228), (78429, 78429, 60, 60, 'Nano Crystal (Minor Health Freeloader)', 12256), (78419, 78419, 7, 7, 'Nano Crystal (Minor Health Funnel)', 12228), (78438, 78438, 146, 146, 'Nano Crystal (Minor Health Plunder)', 42448), (229091, 229091, 15, 15, 'Nano Crystal (Minor Insult)', 12226), (263260, 263260, 126, 126, 'Nano Crystal (Minor NCU Crash)', 42450), (263307, 263307, 126, 126, 'Nano Crystal (Minor Nanobot Defense)', 301538), (302356, 302356, 126, 126, 'Nano Crystal (Minor Nanobot Defense)', 301538), (70400, 70400, 119, 119, 'Nano Crystal (Minor Reflective Field (Extended))', 42452), (70399, 70399, 113, 113, 'Nano Crystal (Minor Reflective Field)', 42452), (75353, 75353, 7, 7, 'Nano Crystal (Minor Shen Protection)', 12227), (205601, 205601, 390, 390, 'Nano Crystal (Minor Shutdown)', 42449), (42418, 42418, 7, 7, 'Nano Crystal (Minor Team Healing)', 12228), (43950, 43950, 33, 33, 'Nano Crystal (Minor Team Purification)', 12228), (45965, 45965, 1, 1, 'Nano Crystal (Minor Toxic Barb)', 12224), (45966, 45966, 10, 10, 'Nano Crystal (Minor Toxic Field)', 12224), (75368, 75368, 4, 4, 'Nano Crystal (Minor Wilderness Protection)', 12227), (218063, 218063, 128, 128, 'Nano Crystal (Misleading Conduct)', 42451), (246040, 246040, 390, 390, 'Nano Crystal (Mist of Life)', 42448), (29396, 29396, 165, 165, 'Nano Crystal (Mocham''s Gift: BioMet)', 42451), (29397, 29397, 165, 165, 'Nano Crystal (Mocham''s Gift: MatCrea)', 42451), (29399, 29399, 162, 162, 'Nano Crystal (Mocham''s Gift: MatMet)', 42451), (29400, 29400, 169, 169, 'Nano Crystal (Mocham''s Gift: PsyMod)', 42451), (29401, 29401, 165, 165, 'Nano Crystal (Mocham''s Gift: SenseImp)', 42451), (29398, 29398, 162, 162, 'Nano Crystal (Mocham''s Gift: SpaceTime)', 42451), (95425, 95425, 159, 159, 'Nano Crystal (Mocham''s Neural Interface-Web)', 42448), (28826, 28826, 185, 185, 'Nano Crystal (Molecular Deconstruction)', 42449), (45355, 45355, 165, 165, 'Nano Crystal (Molecular Flechettes)', 42449), (43951, 43951, 156, 156, 'Nano Crystal (Molecular Rejuvenation)', 42448), (42546, 42546, 17, 17, 'Nano Crystal (Molecule Lance)', 12224), (45356, 45356, 123, 123, 'Nano Crystal (Momentum Impaler)', 42449), (100201, 100201, 66, 66, 'Nano Crystal (Mongo Bash!)', 301272), (100203, 100203, 149, 149, 'Nano Crystal (Mongo Crush!)', 301272), (270789, 270789, 215, 215, 'Nano Crystal (Mongo Demolish!)', 301272), (100202, 100202, 17, 17, 'Nano Crystal (Mongo Slam!)', 301272), (100204, 100204, 132, 132, 'Nano Crystal (Mongo Smash!)', 301272), (223114, 223114, 220, 220, 'Nano Crystal (Mongo''s Behemoth)', 301276), (223110, 223110, 209, 209, 'Nano Crystal (Mongo''s Colossus)', 301276), (95730, 95730, 93, 93, 'Nano Crystal (Mongo''s Cyclops)', 301276), (223108, 223108, 201, 201, 'Nano Crystal (Mongo''s Gargantua)', 301276), (95732, 95732, 43, 43, 'Nano Crystal (Mongo''s Golem)', 301276), (273323, 273323, 215, 215, 'Nano Crystal (Mongo''s Kraken)', 301276), (223112, 223112, 215, 215, 'Nano Crystal (Mongo''s Leviathan)', 301276), (95735, 95735, 142, 142, 'Nano Crystal (Mongo''s Titan)', 301276), (95729, 95729, 4, 4, 'Nano Crystal (Mongo''s Troll)', 301276), (205242, 205242, 136, 136, 'Nano Crystal (Monitor Aggression Subsystem)', 42448), (205232, 205232, 37, 37, 'Nano Crystal (Monitor Combat Array)', 12228), (30127, 30127, 169, 169, 'Nano Crystal (Monofilament Cat-O''Nine-Tails)', 42449), (78449, 78449, 152, 152, 'Nano Crystal (Monofilament Scourger)', 42449), (30128, 30128, 50, 50, 'Nano Crystal (Monofilament Whip)', 12224), (75367, 75367, 152, 152, 'Nano Crystal (Monomolecular Skin)', 42452), (99672, 99672, 200, 200, 'Nano Crystal (Monster Mez Attack)', 12226), (136698, 136698, 176, 176, 'Nano Crystal (Moonbeam)', 42448), (44191, 44191, 172, 172, 'Nano Crystal (Morgue Longings)', 42449), (157541, 157541, 156, 156, 'Nano Crystal (Motivational Speech: Assassin''s Focus)', 295520), (155810, 155810, 83, 83, 'Nano Crystal (Motivational Speech: Bravery Overcomes)', 295508), (155813, 155813, 156, 156, 'Nano Crystal (Motivational Speech: Glorious Leader)', 295508), (155812, 155812, 186, 186, 'Nano Crystal (Motivational Speech: Heroic Measures)', 295508), (157540, 157540, 149, 149, 'Nano Crystal (Motivational Speech: Implement Through Iteration)', 295515), (270785, 270785, 215, 215, 'Nano Crystal (Motivational Speech: Improved Heroic Measures)', 295508), (157539, 157539, 149, 149, 'Nano Crystal (Motivational Speech: Improvise and Adapt)', 295515), (155811, 155811, 37, 37, 'Nano Crystal (Motivational Speech: Lead From The Front)', 295508), (157538, 157538, 50, 50, 'Nano Crystal (Motivational Speech: Only the Paranoid Will Survive!)', 295515), (157537, 157537, 87, 87, 'Nano Crystal (Motivational Speech: Opportunity Knocks)', 295520), (157553, 157553, 97, 97, 'Nano Crystal (Motivational Speech: Organizational Opportunities)', 295515), (155814, 155814, 130, 130, 'Nano Crystal (Motivational Speech: Triumphant Pose)', 295508), (305322, 305322, 390, 390, 'Nano Crystal (Mr Bones)', 42449), (155618, 155618, 44, 44, 'Nano Crystal (Mud Slinger)', 12226), (100456, 100456, 126, 126, 'Nano Crystal (Muddled Psyche)', 42449), (210749, 210749, 82, 82, 'Nano Crystal (Mugger)', 12259), (250299, 250299, 390, 390, 'Nano Crystal (Multiple Viral Acid spray)', 42449), (250297, 250297, 390, 390, 'Nano Crystal (Multiple Viral Biotox Infector)', 42449), (250301, 250301, 390, 390, 'Nano Crystal (Multiple Viral Neurohack)', 42449), (250303, 250303, 390, 390, 'Nano Crystal (Multiple Viral Vein Virus)', 42449), (250305, 250305, 390, 390, 'Nano Crystal (Multiple Viral Viper Goo)', 42449), (99594, 99594, 17, 17, 'Nano Crystal (Muscle Atrophy)', 301085), (28949, 28949, 70, 70, 'Nano Crystal (Muscle Booster)', 12256), (28950, 28950, 20, 20, 'Nano Crystal (Muscle Stim)', 12228), (56010, 56010, 116, 116, 'Nano Crystal (Musculature Command)', 42449), (223266, 223266, 195, 195, 'Nano Crystal (Mutagenic Catalyser)', 42449), (223272, 223272, 211, 211, 'Nano Crystal (Mutagenic Contagion)', 42449), (223264, 223264, 170, 170, 'Nano Crystal (Mutagenic Contamination)', 42449), (223278, 223278, 217, 217, 'Nano Crystal (Mutagenic Pestilence)', 42449), (223262, 223262, 100, 100, 'Nano Crystal (Mutagenic Venom)', 12257), (143902, 143902, 186, 186, 'Nano Crystal (My Brain For Your Brain)', 42451), (263294, 263294, 126, 126, 'Nano Crystal (My Enemy''s Enemy is my Friend)', 301545), (302357, 302357, 126, 126, 'Nano Crystal (My Enemy''s Enemy is my Friend)', 301545), (231023, 231023, 190, 190, 'Nano Crystal (My Way)', 42451), (81951, 81951, 83, 83, 'Nano Crystal (Mysterious Causes)', 12257), (263262, 263262, 126, 126, 'Nano Crystal (NCU Crash)', 42450), (245487, 245487, 390, 390, 'Nano Crystal (NCU Overload)', 42449), (265459, 265459, 120, 120, 'Nano Crystal (NT: Calculated Detonation)', 12257), (265462, 265462, 165, 165, 'Nano Crystal (NT: Delayed Cellular Collapse)', 12257), (265458, 265458, 120, 120, 'Nano Crystal (NT: Earthshattering Cataclysm)', 12257), (265460, 265460, 120, 120, 'Nano Crystal (NT: Earthshattering Double)', 12257), (265469, 265469, 219, 219, 'Nano Crystal (NT: Enfraam''s Double)', 12257), (265468, 265468, 219, 219, 'Nano Crystal (NT: Enfraam''s Surprise Assault)', 12257), (265455, 265455, 75, 75, 'Nano Crystal (NT: Explosive Cataclysm)', 12257), (265457, 265457, 75, 75, 'Nano Crystal (NT: Explosive Double)', 12257), (265456, 265456, 75, 75, 'Nano Crystal (NT: Future Vision)', 12257), (265465, 265465, 200, 200, 'Nano Crystal (NT: Impending Demise)', 12257), (302275, 302275, 200, 200, 'Nano Crystal (NT: Izgimmer''s Blessing)', 42451), (265471, 265471, 220, 220, 'Nano Crystal (NT: Izgimmer''s Double)', 12257), (265470, 265470, 220, 220, 'Nano Crystal (NT: Izgimmer''s Tactical Nuke)', 12257), (265464, 265464, 200, 200, 'Nano Crystal (NT: Jobe Cataclysm)', 12257), (265466, 265466, 200, 200, 'Nano Crystal (NT: Jobe Double)', 12257), (218167, 218167, 220, 220, 'Nano Crystal (NT: Mastablasta''s Cataclysm)', 42449), (302076, 302076, 215, 215, 'Nano Crystal (NT: Nanobot Aegis)', 301537), (265461, 265461, 165, 165, 'Nano Crystal (NT: Notum Cataclysm)', 12257), (265463, 265463, 165, 165, 'Nano Crystal (NT: Notum Double)', 12257), (265450, 265450, 175, 175, 'Nano Crystal (NT: Restrain Enthusiasm)', 12257), (265467, 265467, 214, 214, 'Nano Crystal (NT:Enfraam''s Cataclysm)', 12257), (81897, 81897, 24, 24, 'Nano Crystal (Nano Augmentation)', 12225), (43952, 43952, 73, 73, 'Nano Crystal (Nano Bandage)', 12256), (81891, 81891, 80, 80, 'Nano Crystal (Nano Boost)', 12258), (95450, 95450, 149, 149, 'Nano Crystal (Nano Cloud Supplement)', 42450), (45357, 45357, 53, 53, 'Nano Crystal (Nano Contagion)', 12257), (246382, 246382, 390, 390, 'Nano Crystal (Nano Distortion - Creation)', 42451), (246384, 246384, 390, 390, 'Nano Crystal (Nano Distortion - Medical)', 42451), (246386, 246386, 390, 390, 'Nano Crystal (Nano Distortion - Self Control)', 42451), (29202, 29202, 37, 37, 'Nano Crystal (Nano Growth)', 301178), (82801, 82801, 37, 37, 'Nano Crystal (Nano Net)', 12224), (27250, 27250, 10, 10, 'Nano Crystal (Nano Programming Expertise)', 12226), (27251, 27251, 4, 4, 'Nano Crystal (Nano Programming Proficiency)', 12226), (44192, 44192, 99, 99, 'Nano Crystal (Nano Reaper)', 12257), (28784, 28784, 99, 99, 'Nano Crystal (Nano Repulsor)', 296691), (30140, 30140, 90, 90, 'Nano Crystal (Nano Restoration Escalation)', 301178), (27253, 27253, 10, 10, 'Nano Crystal (Nano Restoration)', 12225), (29403, 29403, 162, 162, 'Nano Crystal (Nano Shutdown)', 300508), (26489, 26489, 10, 10, 'Nano Crystal (Nano Skills Incompetence)', 297515), (43953, 43953, 93, 93, 'Nano Crystal (Nano Surgery)', 12256), (45358, 45358, 142, 142, 'Nano Crystal (Nanoblade Cloud)', 42449), (152841, 152841, 126, 126, 'Nano Crystal (Nanobot Armageddon)', 42449), (152842, 152842, 126, 126, 'Nano Crystal (Nanobot Calling)', 42449), (260762, 260762, 210, 210, 'Nano Crystal (Nanobot Defense)', 301538), (302358, 302358, 210, 210, 'Nano Crystal (Nanobot Defense)', 301538), (263268, 263268, 126, 126, 'Nano Crystal (Nanobot Shelter)', 301537), (136699, 136699, 34, 34, 'Nano Crystal (Natural Cure)', 12228), (28776, 28776, 76, 76, 'Nano Crystal (Natural Healing)', 301187), (136695, 136695, 90, 90, 'Nano Crystal (Natural Remedy)', 12256), (82084, 82084, 162, 162, 'Nano Crystal (Nature''s Blessing)', 42448), (250451, 250451, 390, 390, 'Nano Crystal (Nauseating Viral Clampdown)', 42449), (250110, 250110, 390, 390, 'Nano Crystal (Nearly Flawless Viralbot Cloud)', 42449), (55851, 55851, 99, 99, 'Nano Crystal (Nest of Vipers)', 12260), (85277, 85277, 43, 43, 'Nano Crystal (Net Cast Wide)', 12224), (81890, 81890, 159, 159, 'Nano Crystal (Neural Interfaced Augmentation Cloud)', 42450), (28828, 28828, 152, 152, 'Nano Crystal (Neural Stunner)', 42449), (29404, 29404, 129, 129, 'Nano Crystal (Neuron-Notum Interface)', 42448), (220346, 220346, 28, 28, 'Nano Crystal (Neuronal Stimulator)', 301243), (45340, 45340, 66, 66, 'Nano Crystal (Neutron Spiral)', 12257), (56252, 56252, 14, 14, 'Nano Crystal (No Escape Possible)', 12224), (257547, 257547, 390, 390, 'Nano Crystal (Non Organic Molecular Recompiler)', 42448), (95426, 95426, 60, 60, 'Nano Crystal (Notum Attunement)', 12256), (205595, 205595, 390, 390, 'Nano Crystal (Notum Detonation)', 42448), (263267, 263267, 126, 126, 'Nano Crystal (Notum Overflow Injector)', 301611), (302359, 302359, 126, 126, 'Nano Crystal (Notum Overflow Injector)', 301611), (95451, 95451, 175, 175, 'Nano Crystal (Notum Overload)', 42450), (29405, 29405, 149, 149, 'Nano Crystal (Notum Rejection)', 42450), (121515, 121515, 11, 11, 'Nano Crystal (Novice Health Haggler)', 12228), (259609, 259609, 390, 390, 'Nano Crystal (Nuke of the Underworld)', 42450), (154729, 154729, 189, 189, 'Nano Crystal (Null Space Disruptor)', 42452), (150503, 150503, 159, 159, 'Nano Crystal (Nullity Sphere MK II)', 301538), (150504, 150504, 90, 90, 'Nano Crystal (Nullity Sphere)', 301538), (226400, 226400, 180, 180, 'Nano Crystal (Numbing Shock)', 42450), (223202, 223202, 126, 126, 'Nano Crystal (Obvious Victim)', 42451), (29406, 29406, 165, 165, 'Nano Crystal (Odin''s Missing Eye)', 300514), (273380, 273380, 215, 215, 'Nano Crystal (Odin''s Other Eye)', 300515), (229105, 229105, 219, 219, 'Nano Crystal (Offensive Insult)', 42451), (29352, 29352, 156, 156, 'Nano Crystal (Offensive Steamroller)', 42451), (45341, 45341, 96, 96, 'Nano Crystal (Ol'' Faithful)', 12257), (85278, 85278, 149, 149, 'Nano Crystal (Omni-Med Incursion)', 42448), (205250, 205250, 200, 200, 'Nano Crystal (Omni-Pol Pacification Logic System)', 42448), (95420, 95420, 73, 73, 'Nano Crystal (On-The-Fly Compression)', 12256), (95534, 95534, 162, 162, 'Nano Crystal (One Mind, One Purpose)', 42451), (136696, 136696, 182, 182, 'Nano Crystal (One With Nature)', 42448), (29354, 29354, 152, 152, 'Nano Crystal (Only You, Only Me)', 42451), (45956, 45956, 7, 7, 'Nano Crystal (Open Wound)', 12224), (82815, 82815, 152, 152, 'Nano Crystal (Oppressive Weight of the Guilty)', 42449), (253383, 253383, 201, 201, 'Nano Crystal (Optimized Perceiver)', 42451), (99622, 99622, 24, 24, 'Nano Crystal (Overdraught)', 12225), (205248, 205248, 193, 193, 'Nano Crystal (Overdrive Aggression Subsystem)', 42448), (205238, 205238, 96, 96, 'Nano Crystal (Overdrive Combat Array)', 12256), (227473, 227473, 30, 30, 'Nano Crystal (Overview of Elysium)', 296643), (223768, 223768, 1, 1, 'Nano Crystal (Overview of Nascence)', 296645), (259353, 259353, 202, 202, 'Nano Crystal (Overwhelming Storm)', 42449), (258964, 258964, 390, 390, 'Nano Crystal (Paralysis Field)', 42449), (56244, 56244, 99, 99, 'Nano Crystal (Paralyze with Indecision)', 12257), (216004, 216004, 390, 390, 'Nano Crystal (Paralyzing Eremite Venom)', 42449), (44193, 44193, 40, 40, 'Nano Crystal (Parasitic Affliction)', 12224), (44199, 44199, 152, 152, 'Nano Crystal (Parasitic Horde)', 42449), (27256, 27256, 10, 10, 'Nano Crystal (Parry Expertise)', 12226), (27257, 27257, 14, 14, 'Nano Crystal (Parry Incompetence)', 12226), (27258, 27258, 7, 7, 'Nano Crystal (Parry Inexperience)', 12226), (27259, 27259, 4, 4, 'Nano Crystal (Parry Proficiency)', 12226), (70403, 70403, 7, 7, 'Nano Crystal (Partial Deflection Shield (Extended))', 12227), (70401, 70401, 1, 1, 'Nano Crystal (Partial Deflection Shield)', 12227), (75366, 75366, 136, 136, 'Nano Crystal (Partial Diamond Skin)', 42452), (93134, 93134, 113, 113, 'Nano Crystal (Partial Grid Jump)', 42450), (70426, 70426, 30, 30, 'Nano Crystal (Partial Harmonic Cocoon)', 12227), (70405, 70405, 99, 99, 'Nano Crystal (Partial Reflective Field (Extended))', 12260), (70402, 70402, 96, 96, 'Nano Crystal (Partial Reflective Field)', 12260), (28829, 28829, 123, 123, 'Nano Crystal (Particle Accelerator)', 42449), (45342, 45342, 129, 129, 'Nano Crystal (Particle Flare)', 42449), (45343, 45343, 90, 90, 'Nano Crystal (Particle Shower)', 12257), (85279, 85279, 7, 7, 'Nano Crystal (Passive Distributed Entanglement)', 12224), (82800, 82800, 4, 4, 'Nano Crystal (Passive Micro Entanglement)', 12224), (136692, 136692, 41, 41, 'Nano Crystal (Patch Wounds)', 12228), (46033, 46033, 20, 20, 'Nano Crystal (Patchwork Android)', 12225), (46034, 46034, 1, 1, 'Nano Crystal (Patchwork Automaton)', 12225), (46035, 46035, 50, 50, 'Nano Crystal (Patchwork Gladiatorbot)', 12225), (46036, 46036, 90, 90, 'Nano Crystal (Patchwork Guardbot)', 12258), (46037, 46037, 132, 132, 'Nano Crystal (Patchwork Warbot)', 42450), (46038, 46038, 159, 159, 'Nano Crystal (Patchwork Warmachine)', 42450), (118251, 118251, 14, 14, 'Nano Crystal (Patchy Delayed Health Payment)', 12228), (78426, 78426, 50, 50, 'Nano Crystal (Patchy Health Freeloader)', 12228), (78416, 78416, 4, 4, 'Nano Crystal (Patchy Health Funnel)', 12228), (78436, 78436, 142, 142, 'Nano Crystal (Patchy Health Plunder)', 42448), (116801, 116801, 34, 34, 'Nano Crystal (Patchy Repairs)', 12228), (223130, 223130, 174, 174, 'Nano Crystal (Path of Shadow)', 42450), (91392, 91392, 185, 185, 'Nano Crystal (Pawnbroker''s Armor)', 42452), (99621, 99621, 169, 169, 'Nano Crystal (Pay the Pauper)', 42450), (100445, 100445, 159, 159, 'Nano Crystal (Peaceful Intentions)', 42449), (218087, 218087, 213, 213, 'Nano Crystal (Peaceful Midnight Sky)', 42450), (231027, 231027, 190, 190, 'Nano Crystal (Peer Pressure)', 42451), (45957, 45957, 83, 83, 'Nano Crystal (Pellet of Fire)', 12257), (46039, 46039, 40, 40, 'Nano Crystal (Perfect Android)', 12225), (75424, 75424, 142, 142, 'Nano Crystal (Perfected Absorption Shield)', 42452), (46040, 46040, 14, 14, 'Nano Crystal (Perfected Automaton)', 12225), (75425, 75425, 139, 139, 'Nano Crystal (Perfected Combat Barrier)', 42452), (70592, 70592, 149, 149, 'Nano Crystal (Perfected Defensive Screen)', 42452), (46041, 46041, 83, 83, 'Nano Crystal (Perfected Gladiatorbot)', 12258), (46042, 46042, 119, 119, 'Nano Crystal (Perfected Guardbot)', 42450), (70593, 70593, 146, 146, 'Nano Crystal (Perfected Protective Field)', 42452), (70590, 70590, 139, 139, 'Nano Crystal (Perfected Shielding Barrier)', 42452), (46043, 46043, 152, 152, 'Nano Crystal (Perfected Warbot)', 42450), (46044, 46044, 172, 172, 'Nano Crystal (Perfected Warmachine)', 42450), (250112, 250112, 390, 390, 'Nano Crystal (Perfectly Flawless Irradiating Viralbot Cloud)', 42449), (82005, 82005, 43, 43, 'Nano Crystal (Performance Review)', 12224), (43954, 43954, 27, 27, 'Nano Crystal (Periodic Checkup)', 12228), (44194, 44194, 136, 136, 'Nano Crystal (Perpetuating Nano Reaper)', 42449), (29355, 29355, 57, 57, 'Nano Crystal (Persistent Damage Amplifier)', 12258), (29356, 29356, 17, 17, 'Nano Crystal (Persistent Damage Multiplier)', 12225), (55857, 55857, 149, 149, 'Nano Crystal (Personal Blizzard)', 42452), (142743, 142743, 100, 100, 'Nano Crystal (Personal Grid Beacon)', 296542), (99215, 99215, 53, 53, 'Nano Crystal (Personal Magnetism)', 12259), (90413, 90413, 169, 169, 'Nano Crystal (Personal Notum Harvester)', 42450), (227124, 227124, 203, 203, 'Nano Crystal (Perversion of Resolve)', 42451), (227122, 227122, 203, 203, 'Nano Crystal (Perversion of Will)', 42451), (218129, 218129, 137, 137, 'Nano Crystal (Pestilential Stream)', 42449), (269871, 269871, 100, 100, 'Nano Crystal (Pet Attention)', 301140), (269880, 269880, 215, 215, 'Nano Crystal (Pet Cleanse)', 301139), (269909, 269909, 100, 100, 'Nano Crystal (Pet Steal Back)', 12258), (209489, 209489, 4, 4, 'Nano Crystal (Pet Warp)', 297537), (218079, 218079, 152, 152, 'Nano Crystal (Petals on Water)', 42450), (29357, 29357, 142, 142, 'Nano Crystal (Phalanx)', 42452), (230432, 230432, 390, 390, 'Nano Crystal (Phantasmal Wail)', 42449), (27260, 27260, 10, 10, 'Nano Crystal (Pharmaceutical Expertise)', 12226), (27261, 27261, 4, 4, 'Nano Crystal (Pharmaceutical Proficiency)', 12226), (227660, 227660, 85, 85, 'Nano Crystal (Pharmaceuticals Knowledge)', 12259), (227670, 227670, 137, 137, 'Nano Crystal (Pharmaceuticals Mastery)', 42451), (30131, 30131, 76, 76, 'Nano Crystal (Pheromone Control)', 12259), (29852, 29852, 53, 53, 'Nano Crystal (Philosopher''s Stone)', 12259), (28830, 28830, 37, 37, 'Nano Crystal (Phoenix Swarm)', 12224), (45344, 45344, 83, 83, 'Nano Crystal (Phosphor Torch)', 12257), (83976, 83976, 172, 172, 'Nano Crystal (Photon Deflector)', 42451), (29811, 29811, 113, 113, 'Nano Crystal (Physical Dominance)', 42451), (43955, 43955, 33, 33, 'Nano Crystal (Physician''s Skill)', 12228), (26582, 26582, 10, 10, 'Nano Crystal (Piercing Expert)', 12226), (211149, 211149, 87, 87, 'Nano Crystal (Piercing Gash)', 12259), (26583, 26583, 10, 10, 'Nano Crystal (Piercing Incompetence)', 12226), (26584, 26584, 4, 4, 'Nano Crystal (Piercing Inexperience)', 12226), (26467, 26467, 4, 4, 'Nano Crystal (Piercing Proficiency)', 12226), (211151, 211151, 49, 49, 'Nano Crystal (Piercing Tooth)', 12226), (29853, 29853, 93, 93, 'Nano Crystal (Pillar of Spikes)', 12260), (273308, 273308, 215, 215, 'Nano Crystal (Pink Slip)', 42449), (222978, 222978, 211, 211, 'Nano Crystal (Pious Sanctifier)', 42450), (27262, 27262, 10, 10, 'Nano Crystal (Pistol Expertise)', 12226), (27264, 27264, 4, 4, 'Nano Crystal (Pistol Inexperience)', 12226), (29358, 29358, 24, 24, 'Nano Crystal (Pistol Mastery)', 12226), (27265, 27265, 4, 4, 'Nano Crystal (Pistol Proficiency)', 12226), (223240, 223240, 218, 218, 'Nano Crystal (Plagiarize Notum)', 42450), (28831, 28831, 50, 50, 'Nano Crystal (Plasma Lights)', 12224), (29854, 29854, 185, 185, 'Nano Crystal (Plasma Shield)', 42452), (28832, 28832, 76, 76, 'Nano Crystal (Plasma Swirl)', 12257), (85145, 85145, 47, 47, 'Nano Crystal (Playful Cub)', 300903), (85886, 85886, 185, 185, 'Nano Crystal (Plunder Skills (Advanced))', 301398), (85882, 85882, 146, 146, 'Nano Crystal (Plunder Skills (Average))', 301398), (85884, 85884, 152, 152, 'Nano Crystal (Plunder Skills (Lesser))', 301398), (85883, 85883, 172, 172, 'Nano Crystal (Plunder Skills (Major))', 301398), (85881, 85881, 123, 123, 'Nano Crystal (Plunder Skills (Minor))', 301398), (301421, 301421, 215, 215, 'Nano Crystal (Plunder Skills (Nanite Improved))', 301398), (85879, 85879, 103, 103, 'Nano Crystal (Plunder Skills (Weak))', 301398), (85885, 85885, 162, 162, 'Nano Crystal (Plunder Skills)', 301398), (252037, 252037, 390, 390, 'Nano Crystal (Poison Breeze)', 42449), (28833, 28833, 30, 30, 'Nano Crystal (Poison Missile)', 12224), (31436, 31436, 1, 1, 'Nano Crystal (Poison Modification)', 12225), (55757, 55757, 47, 47, 'Nano Crystal (Poison Stingers)', 12227), (263284, 263284, 126, 126, 'Nano Crystal (Poisoned Wounds)', 301215), (302360, 302360, 126, 126, 'Nano Crystal (Poisoned Wounds)', 301215), (273289, 273289, 215, 215, 'Nano Crystal (Poisonous bite)', 42450), (83975, 83975, 4, 4, 'Nano Crystal (Poke Eyes)', 12226), (85280, 85280, 119, 119, 'Nano Crystal (Policy Skim)', 42448), (55845, 55845, 53, 53, 'Nano Crystal (Porcupine Barrier)', 12260), (43956, 43956, 169, 169, 'Nano Crystal (Positive Life Reinforcement)', 42448), (45345, 45345, 96, 96, 'Nano Crystal (Positron Stream)', 12257), (218109, 218109, 84, 84, 'Nano Crystal (Positronic Fluctuation)', 12257), (82807, 82807, 14, 14, 'Nano Crystal (Postpone Encounter)', 12224), (246812, 246812, 390, 390, 'Nano Crystal (Power of the Tentacle)', 42449), (82814, 82814, 136, 136, 'Nano Crystal (Powerful Blizzard of Red Tape)', 42449), (163395, 163395, 139, 139, 'Nano Crystal (Pr0n0unc3m3nt 0f Dr0ws1n3ss)', 301156), (163389, 163389, 24, 24, 'Nano Crystal (Pr0n0unc3m3nt 0f L4z1n3ss)', 301156), (163397, 163397, 172, 172, 'Nano Crystal (Pr0n0unc3m3nt 0f Sl33p1n3ss)', 301156), (263280, 263280, 60, 60, 'Nano Crystal (Pr0n0wnzm3nt 0f H4xx)', 296677), (161691, 161691, 172, 172, 'Nano Crystal (Practice Incineration)', 300938), (121511, 121511, 27, 27, 'Nano Crystal (Practiced Health Haggler)', 12228), (82083, 82083, 93, 93, 'Nano Crystal (Practiced Stitching)', 12256), (95743, 95743, 139, 139, 'Nano Crystal (Pre-Combat Conditioning)', 42448), (233034, 233034, 220, 220, 'Nano Crystal (Pre-Nullity Sphere)', 42452), (28745, 28745, 113, 113, 'Nano Crystal (Precision of the Hunter)', 301578), (29359, 29359, 43, 43, 'Nano Crystal (Precognition)', 12226), (121512, 121512, 159, 159, 'Nano Crystal (Preeminent Health Haggler)', 42448), (28785, 28785, 37, 37, 'Nano Crystal (Premium Cover)', 12228), (118246, 118246, 182, 182, 'Nano Crystal (Premium Delayed Health Payment)', 42448), (302545, 302545, 40, 40, 'Nano Crystal (Premium Growing Flesh (Greater))', 301276), (302543, 302543, 30, 30, 'Nano Crystal (Premium Growing Flesh (Lesser))', 301276), (302537, 302537, 40, 40, 'Nano Crystal (Premium Shrinking Flesh (Greater))', 301261), (302536, 302536, 30, 30, 'Nano Crystal (Premium Shrinking Flesh (Lesser))', 301261), (205575, 205575, 390, 390, 'Nano Crystal (Presence of the Immortal)', 42448), (121145, 121145, 57, 57, 'Nano Crystal (Prey On Fear)', 12259), (224160, 224160, 209, 209, 'Nano Crystal (Primal Dissipation)', 42450), (121146, 121146, 159, 159, 'Nano Crystal (Primal Fear)', 42451), (100226, 100226, 139, 139, 'Nano Crystal (Primal Hatred)', 42451), (210390, 210390, 61, 61, 'Nano Crystal (Primitive Dissipation)', 12258), (44204, 44204, 20, 20, 'Nano Crystal (Primitive Nano Gorger)', 12224), (44205, 44205, 4, 4, 'Nano Crystal (Primitive Viral Agent)', 12224), (210396, 210396, 196, 196, 'Nano Crystal (Primordial Dissipation)', 42450), (211147, 211147, 122, 122, 'Nano Crystal (Probe of Death)', 42451), (29814, 29814, 136, 136, 'Nano Crystal (Prodigious Strength)', 42448), (43936, 43936, 93, 93, 'Nano Crystal (Professional Care)', 12256), (121508, 121508, 87, 87, 'Nano Crystal (Professional Health Haggler)', 12256), (121509, 121509, 41, 41, 'Nano Crystal (Proficient Health Haggler)', 12228), (56264, 56264, 159, 159, 'Nano Crystal (Profit Preoccupation)', 42449), (56260, 56260, 37, 37, 'Nano Crystal (Profiteer''s Grip)', 12224), (269469, 269469, 187, 187, 'Nano Crystal (Program Override)', 42450), (100462, 100462, 60, 60, 'Nano Crystal (Project Calm)', 12257), (142777, 142777, 17, 17, 'Nano Crystal (Project Thought Patterns)', 12226), (32099, 32099, 73, 73, 'Nano Crystal (Projectile Magnet)', 12259), (56256, 56256, 123, 123, 'Nano Crystal (Prolong Encounter)', 42449), (56245, 56245, 119, 119, 'Nano Crystal (Prolonged Interrogation)', 42449), (83974, 83974, 119, 119, 'Nano Crystal (Pronounce Blindness)', 42451), (254885, 254885, 10, 10, 'Nano Crystal (Pronouncement of Character)', 12226), (300847, 300847, 1, 1, 'Nano Crystal (Pronouncement of Cuteness)', 300855), (254883, 254883, 10, 10, 'Nano Crystal (Pronouncement of Decency)', 12226), (254877, 254877, 10, 10, 'Nano Crystal (Pronouncement of Grandeur)', 12226), (82838, 82838, 20, 20, 'Nano Crystal (Pronouncement of Greatness)', 296678), (254881, 254881, 10, 10, 'Nano Crystal (Pronouncement of Prestige)', 12226), (254879, 254879, 10, 10, 'Nano Crystal (Pronouncement of Virtue)', 12226), (55852, 55852, 116, 116, 'Nano Crystal (Protection of the Storm)', 42452), (70575, 70575, 73, 73, 'Nano Crystal (Protective Field)', 12260), (44195, 44195, 17, 17, 'Nano Crystal (Protein Breakdown)', 12224), (223326, 223326, 100, 100, 'Nano Crystal (Prototype Predator M-30)', 12258), (210753, 210753, 188, 188, 'Nano Crystal (Prowler)', 42451), (27273, 27273, 10, 10, 'Nano Crystal (PsyMod Expertise)', 12226), (27274, 27274, 10, 10, 'Nano Crystal (PsyMod Incompetence)', 12226), (27275, 27275, 4, 4, 'Nano Crystal (PsyMod Inexperience)', 12226), (29409, 29409, 47, 47, 'Nano Crystal (PsyMod Mastery)', 12226), (27276, 27276, 4, 4, 'Nano Crystal (PsyMod Proficiency)', 12226), (27270, 27270, 7, 7, 'Nano Crystal (Psychic Boost)', 12228), (27271, 27271, 10, 10, 'Nano Crystal (Psychology Expertise)', 12226), (27272, 27272, 4, 4, 'Nano Crystal (Psychology Proficiency)', 12226), (85156, 85156, 1, 1, 'Nano Crystal (Psychosis Test Spell)', 12224), (224126, 224126, 205, 205, 'Nano Crystal (Puissant Captivating Speech)', 42449), (224120, 224120, 102, 102, 'Nano Crystal (Puissant Illusionary Paralysis)', 42449), (224124, 224124, 190, 190, 'Nano Crystal (Puissant Inhibit Motion)', 42449), (224116, 224116, 23, 23, 'Nano Crystal (Puissant Momentary Daze)', 12224), (224122, 224122, 151, 151, 'Nano Crystal (Puissant Musculature Command)', 42449), (224118, 224118, 54, 54, 'Nano Crystal (Puissant Restrict Movement)', 12257), (224128, 224128, 214, 214, 'Nano Crystal (Puissant Total Muscular Command)', 42449), (224130, 224130, 217, 217, 'Nano Crystal (Puissant Void Inertia)', 42449), (215914, 215914, 390, 390, 'Nano Crystal (Pulse of Sanoo - 720)', 42448), (215916, 215916, 390, 390, 'Nano Crystal (Pulse of Sanoo - 722)', 42448), (215918, 215918, 390, 390, 'Nano Crystal (Pulse of Sanoo - 724)', 42448), (215920, 215920, 390, 390, 'Nano Crystal (Pulse of Sanoo - 726)', 42448), (215922, 215922, 390, 390, 'Nano Crystal (Pulse of Sanoo - 728)', 42448), (215924, 215924, 390, 390, 'Nano Crystal (Pulse of Sanoo - 729)', 42448), (125733, 125733, 77, 77, 'Nano Crystal (Pulse of Sanoo)', 12228), (211143, 211143, 198, 198, 'Nano Crystal (Puncture of the Tarasque)', 42451), (78446, 78446, 10, 10, 'Nano Crystal (Punishing Blade)', 12224), (305317, 305317, 390, 390, 'Nano Crystal (Purification by Fire)', 42449), (223254, 223254, 207, 207, 'Nano Crystal (Purify Outfit (Team))', 42450), (279365, 279365, 20, 20, 'Nano Crystal (Put up or Shut Up)', 12226), (82243, 82243, 83, 83, 'Nano Crystal (Pyramid Marketing)', 12257), (118247, 118247, 87, 87, 'Nano Crystal (Quality Delayed Health Payment)', 12256), (30796, 30796, 139, 139, 'Nano Crystal (Quantum Uncertainty)', 42451), (45346, 45346, 182, 182, 'Nano Crystal (Quark Collapse)', 42449), (99138, 99138, 30, 30, 'Nano Crystal (Quell Anger)', 12226), (99137, 99137, 40, 40, 'Nano Crystal (Quench Anger)', 12226), (116800, 116800, 14, 14, 'Nano Crystal (Quick Fix)', 12228), (29858, 29858, 40, 40, 'Nano Crystal (Quick Weapon)', 12226), (211167, 211167, 80, 80, 'Nano Crystal (Quicken Reflexes)', 12259), (27277, 27277, 17, 17, 'Nano Crystal (Quickness)', 12226), (29360, 29360, 17, 17, 'Nano Crystal (Quickshot)', 12226), (210377, 210377, 43, 43, 'Nano Crystal (Quintessence of Incapacitation)', 12225), (210379, 210379, 111, 111, 'Nano Crystal (Quintessence of Paralyzation)', 42450), (210381, 210381, 197, 197, 'Nano Crystal (Quintessence of Petrification)', 42450), (224172, 224172, 220, 220, 'Nano Crystal (Quintessence of Stupefication)', 42450), (224170, 224170, 207, 207, 'Nano Crystal (Quintessence of Transfixion)', 42450), (121149, 121149, 70, 70, 'Nano Crystal (Quivering Wreck)', 12259), (45958, 45958, 63, 63, 'Nano Crystal (RNA Reaper)', 12257), (205573, 205573, 390, 390, 'Nano Crystal (Radiance of the Immortal)', 42448), (42419, 42419, 123, 123, 'Nano Crystal (Radiant Heal)', 42448), (28834, 28834, 4, 4, 'Nano Crystal (Radiation Pulse)', 12224), (45347, 45347, 76, 76, 'Nano Crystal (Radiation Scour)', 12257), (27278, 27278, 1, 1, 'Nano Crystal (Radiation Shield)', 12227), (27279, 27279, 7, 7, 'Nano Crystal (Radiation Ward)', 12227), (28835, 28835, 99, 99, 'Nano Crystal (Radioactive Cloud)', 12257), (99136, 99136, 93, 93, 'Nano Crystal (Rage Abolishment)', 12259), (99134, 99134, 116, 116, 'Nano Crystal (Rage Eradication)', 42451), (43774, 43774, 47, 47, 'Nano Crystal (Rage Materialization)', 295576), (99135, 99135, 76, 76, 'Nano Crystal (Rage Suppression)', 12259), (305248, 205384, 250, 390, 'Nano Crystal (Rage of the Immortal)', 42449), (226282, 226282, 214, 214, 'Nano Crystal (Ragebringer)', 42450), (250102, 250102, 390, 390, 'Nano Crystal (Raging Viralbot Cloud)', 42449), (44206, 44206, 165, 165, 'Nano Crystal (Rampant Decay)', 42449), (223122, 223122, 211, 211, 'Nano Crystal (Rancorous Enmity)', 42451), (26471, 26471, 14, 14, 'Nano Crystal (Ranged Special Attacks Incompetence)', 297502), (27263, 27263, 10, 10, 'Nano Crystal (Ranged Weapons Incompetence)', 297531), (85878, 85878, 86, 86, 'Nano Crystal (Ransack Skills (Advanced))', 301398), (85875, 85875, 30, 30, 'Nano Crystal (Ransack Skills (Average))', 301398), (85877, 85877, 40, 40, 'Nano Crystal (Ransack Skills (Lesser))', 301398), (85876, 85876, 70, 70, 'Nano Crystal (Ransack Skills (Major))', 301398), (85874, 85874, 20, 20, 'Nano Crystal (Ransack Skills (Minor))', 301398), (85873, 85873, 10, 10, 'Nano Crystal (Ransack Skills (Weak))', 301398), (85880, 85880, 50, 50, 'Nano Crystal (Ransack Skills)', 301398), (29859, 29859, 129, 129, 'Nano Crystal (Rapid Weapon)', 42451), (250370, 250370, 390, 390, 'Nano Crystal (Ravaging Energy Overload)', 42451), (55855, 55855, 139, 139, 'Nano Crystal (Razor Barrier)', 42452), (142717, 142717, 169, 169, 'Nano Crystal (Re-Matrix Grid Vector)', 300947), (46017, 46017, 182, 182, 'Nano Crystal (Reactivated Wardroid)', 42450), (70406, 70406, 83, 83, 'Nano Crystal (Reactive Deflection Shield (Extended))', 12260), (70404, 70404, 76, 76, 'Nano Crystal (Reactive Deflection Shield)', 12260), (70425, 70425, 179, 179, 'Nano Crystal (Reactive Harmonic Cocoon)', 42452), (70408, 70408, 142, 142, 'Nano Crystal (Reactive Reflective Field (Extended))', 42452), (70407, 70407, 142, 142, 'Nano Crystal (Reactive Reflective Field)', 42452), (233027, 233027, 207, 207, 'Nano Crystal (Reactive Resonance Field)', 42452), (210501, 210501, 75, 75, 'Nano Crystal (Reaper)', 12258), (116806, 116806, 84, 84, 'Nano Crystal (Rebuild Casing)', 12256), (142721, 142721, 47, 47, 'Nano Crystal (Reckless Digitization)', 300952), (116799, 116799, 50, 50, 'Nano Crystal (Recondition Parts)', 12228), (43937, 43937, 162, 162, 'Nano Crystal (Recuperative Respite)', 301449), (43938, 43938, 40, 40, 'Nano Crystal (Recurrent Remedy)', 12228), (30135, 30135, 116, 116, 'Nano Crystal (Red Tape)', 301075), (92201, 92201, 165, 165, 'Nano Crystal (Redeem AC (Advanced))', 42452), (92203, 92203, 175, 175, 'Nano Crystal (Redeem AC (Greater))', 42452), (92194, 92194, 129, 129, 'Nano Crystal (Redeem AC (Lesser))', 42452), (92196, 92196, 156, 156, 'Nano Crystal (Redeem AC (Major))', 42452), (92197, 92197, 106, 106, 'Nano Crystal (Redeem AC (Minor))', 42452), (92189, 92189, 90, 90, 'Nano Crystal (Redeem AC (Weak))', 12260), (92199, 92199, 149, 149, 'Nano Crystal (Redeem AC)', 42452), (143901, 143901, 149, 149, 'Nano Crystal (Redirect Neural Signals)', 42451), (28954, 28954, 136, 136, 'Nano Crystal (Reduce Inertia)', 42451), (44207, 44207, 66, 66, 'Nano Crystal (Refined Nano Contagion)', 12257), (70410, 70410, 126, 126, 'Nano Crystal (Reflective Field (Extended))', 42452), (70409, 70409, 126, 126, 'Nano Crystal (Reflective Field)', 42452), (223242, 223242, 25, 25, 'Nano Crystal (Refresh Outfit (Team))', 12225), (27280, 27280, 14, 14, 'Nano Crystal (Regeneration)', 12228), (223196, 223196, 200, 200, 'Nano Crystal (Reinforce fight (Team))', 42450), (154175, 154175, 37, 37, 'Nano Crystal (Relapse Into Childhood Terror)', 12224), (301144, 301144, 25, 25, 'Nano Crystal (Release Me Now!)', 301143), (30797, 30797, 159, 159, 'Nano Crystal (Relentless Slayer)', 42450), (43939, 43939, 20, 20, 'Nano Crystal (Relief From Pain)', 12228), (226440, 226440, 190, 190, 'Nano Crystal (Relieve Stress)', 42451), (43940, 43940, 159, 159, 'Nano Crystal (Remedy Dissemination)', 42448), (30136, 30136, 109, 109, 'Nano Crystal (Remembered Pain)', 42449), (152541, 152541, 1, 1, 'Nano Crystal (Remove Imprisonment)', 12225), (45348, 45348, 129, 129, 'Nano Crystal (Rend Flesh)', 42449), (223296, 223296, 216, 216, 'Nano Crystal (Renewal of Being)', 42448), (215988, 215988, 390, 390, 'Nano Crystal (Renewal of Mortificant - 720)', 42448), (215990, 215990, 390, 390, 'Nano Crystal (Renewal of Mortificant - 722)', 42448), (215992, 215992, 390, 390, 'Nano Crystal (Renewal of Mortificant - 724)', 42448), (215994, 215994, 390, 390, 'Nano Crystal (Renewal of Mortificant - 726)', 42448), (215996, 215996, 390, 390, 'Nano Crystal (Renewal of Mortificant - 728)', 42448), (215998, 215998, 390, 390, 'Nano Crystal (Renewal of Mortificant - 729)', 42448), (215986, 215986, 390, 390, 'Nano Crystal (Renewal of Mortificant)', 42448), (226442, 226442, 205, 205, 'Nano Crystal (Renounce Anger)', 42451), (44196, 44196, 142, 142, 'Nano Crystal (Repeated Cellular Trauma)', 42449), (205398, 205398, 390, 390, 'Nano Crystal (Resentment of the Immortal)', 42449), (152188, 152188, 107, 107, 'Nano Crystal (Restock Ammo (Level OP-C))', 42450), (152184, 152184, 107, 107, 'Nano Crystal (Restock Ammo (Level OP-CC))', 42450), (129715, 129715, 10, 10, 'Nano Crystal (Restock Ammo (Level OP-I))', 12225), (152187, 152187, 18, 18, 'Nano Crystal (Restock Ammo (Level OP-II))', 12225), (152185, 152185, 60, 60, 'Nano Crystal (Restock Ammo (Level OP-X))', 12258), (152186, 152186, 74, 74, 'Nano Crystal (Restock Ammo (Level OP-XX))', 12258), (297633, 297633, 10, 10, 'Nano Crystal (Restock Special Ammo)', 297631), (43941, 43941, 40, 40, 'Nano Crystal (Restorative Boost)', 12228), (223290, 223290, 209, 209, 'Nano Crystal (Restorative Influx)', 42448), (82070, 82070, 20, 20, 'Nano Crystal (Restore Essence)', 301447), (223256, 223256, 213, 213, 'Nano Crystal (Restore Outfit (Team))', 42450), (136694, 136694, 107, 107, 'Nano Crystal (Restore Vitality)', 42448), (136693, 136693, 64, 64, 'Nano Crystal (Restore to Health)', 12256), (56005, 56005, 24, 24, 'Nano Crystal (Restrict Movement)', 12224), (246365, 246365, 390, 390, 'Nano Crystal (Restricted Movement)', 42449), (55778, 55778, 132, 132, 'Nano Crystal (Retaliatory Barrier)', 42452), (55861, 55861, 159, 159, 'Nano Crystal (Retaliatory Venom Spit)', 42452), (55839, 55839, 169, 169, 'Nano Crystal (Retribution of the Aesir)', 42452), (28955, 28955, 146, 146, 'Nano Crystal (Return Attack)', 42451), (55862, 55862, 165, 165, 'Nano Crystal (Revenge of the Valkyrie)', 42452), (210495, 210495, 197, 197, 'Nano Crystal (Reverential Sanctifier)', 42450), (223292, 223292, 212, 212, 'Nano Crystal (Revivification)', 42448), (56006, 56006, 47, 47, 'Nano Crystal (Revoke Movement License)', 12224), (30798, 30798, 80, 80, 'Nano Crystal (Riding Shotgun)', 12258), (27282, 27282, 10, 10, 'Nano Crystal (Rifle Expertise)', 12226), (27283, 27283, 10, 10, 'Nano Crystal (Rifle Incompetence)', 12226), (27284, 27284, 4, 4, 'Nano Crystal (Rifle Inexperience)', 12226), (29362, 29362, 37, 37, 'Nano Crystal (Rifle Mastery)', 12226), (27285, 27285, 4, 4, 'Nano Crystal (Rifle Proficiency)', 12226), (82186, 82186, 93, 93, 'Nano Crystal (Rigid Stance)', 12257), (245477, 245477, 390, 390, 'Nano Crystal (Ring of Fire)', 42449), (29363, 29363, 126, 126, 'Nano Crystal (Riot Control)', 42450), (27286, 27286, 10, 10, 'Nano Crystal (Riposte Expertise)', 12226), (27287, 27287, 14, 14, 'Nano Crystal (Riposte Incompetence)', 12226), (27288, 27288, 7, 7, 'Nano Crystal (Riposte Inexperience)', 12226), (27289, 27289, 4, 4, 'Nano Crystal (Riposte Proficiency)', 12226), (218089, 218089, 216, 216, 'Nano Crystal (Ripples on the Calm Pond)', 42450), (210356, 210356, 17, 17, 'Nano Crystal (Ritualistic Blow)', 12225), (210360, 210360, 52, 52, 'Nano Crystal (Ritualistic Caress)', 12258), (210362, 210362, 80, 80, 'Nano Crystal (Ritualistic Embrace)', 12258), (210358, 210358, 34, 34, 'Nano Crystal (Ritualistic Grasp)', 12225), (210354, 210354, 4, 4, 'Nano Crystal (Ritualistic Touch)', 12225), (100222, 100222, 116, 116, 'Nano Crystal (Roar of Aggression)', 42451), (28743, 28743, 136, 136, 'Nano Crystal (Robust Treatment)', 42451), (82082, 82082, 7, 7, 'Nano Crystal (Rough Stitching)', 12228), (223258, 223258, 217, 217, 'Nano Crystal (Rouse Outfit (Team))', 42450), (28956, 28956, 24, 24, 'Nano Crystal (Rubber Skin)', 12227), (210388, 210388, 21, 21, 'Nano Crystal (Rudimentary Dissipation)', 12225), (90409, 90409, 1, 1, 'Nano Crystal (Rudimentary Humidity Extractor)', 12225), (78444, 78444, 179, 179, 'Nano Crystal (Rule of One)', 42449), (216699, 216699, 77, 77, 'Nano Crystal (Rumble of Distant Thunder)', 12258), (95421, 95421, 33, 33, 'Nano Crystal (Run-Time Recompiler)', 12228), (32100, 32100, 40, 40, 'Nano Crystal (Ruse of Taren - Phase 1)', 301259), (32101, 32101, 96, 96, 'Nano Crystal (Ruse of Taren - Phase 2)', 301260), (32102, 32102, 162, 162, 'Nano Crystal (Ruse of Taren - Phase 3)', 301261), (273297, 273297, 215, 215, 'Nano Crystal (Ruse of Taren - Phase 4)', 301262), (267279, 267279, 200, 200, 'Nano Crystal (Sacrifical Shielding)', 42451), (267530, 267530, 200, 200, 'Nano Crystal (Sacrifical Shielding)', 42451), (267532, 267532, 200, 200, 'Nano Crystal (Sacrifical power)', 42451), (267534, 267534, 200, 200, 'Nano Crystal (Sacrifice Combat pet)', 42448), (210366, 210366, 138, 138, 'Nano Crystal (Sacrificial Blow)', 42450), (210370, 210370, 183, 183, 'Nano Crystal (Sacrificial Caress)', 42450), (210372, 210372, 199, 199, 'Nano Crystal (Sacrificial Embrace)', 42450), (210368, 210368, 165, 165, 'Nano Crystal (Sacrificial Grasp)', 42450), (210364, 210364, 102, 102, 'Nano Crystal (Sacrificial Touch)', 42450), (81837, 81837, 76, 76, 'Nano Crystal (Sadness of the Willow)', 12258), (206753, 206753, 390, 390, 'Nano Crystal (Saemus'' Crystalizer)', 295591), (222982, 222982, 218, 218, 'Nano Crystal (Sainted Sanctifier)', 42450), (210485, 210485, 20, 20, 'Nano Crystal (Sanctifier)', 12225), (279370, 279370, 20, 20, 'Nano Crystal (Sawed-Off Kiss)', 12226), (161921, 161921, 149, 149, 'Nano Crystal (Scale Reconstruction)', 300928), (223152, 223152, 220, 220, 'Nano Crystal (Scale Regeneration)', 300930), (223148, 223148, 207, 207, 'Nano Crystal (Scale Regrowth)', 300929), (55753, 55753, 139, 139, 'Nano Crystal (Screen of Blades)', 42452), (210751, 210751, 135, 135, 'Nano Crystal (Scrounger)', 42451), (44208, 44208, 86, 86, 'Nano Crystal (Scythe A Virus)', 12257), (44200, 44200, 182, 182, 'Nano Crystal (Scythe B Virus)', 42449), (223280, 223280, 219, 219, 'Nano Crystal (Scythe Omega Virus)', 42449), (218297, 218297, 86, 86, 'Nano Crystal (Scythe gaute test Virus)', 12257), (70630, 70630, 80, 80, 'Nano Crystal (Searing Agony)', 12257), (78445, 78445, 93, 93, 'Nano Crystal (Searing Bolt)', 12257), (45328, 45328, 152, 152, 'Nano Crystal (Searing Circle)', 42449), (218115, 218115, 111, 111, 'Nano Crystal (Searing Dioxin Shower)', 42449), (305312, 305312, 250, 250, 'Nano Crystal (Searing Flame)', 42449), (45329, 45329, 159, 159, 'Nano Crystal (Searing Stream)', 42449), (259612, 259612, 390, 390, 'Nano Crystal (See no Evil, Hear no Evil)', 42450), (82081, 82081, 169, 169, 'Nano Crystal (Seed Life)', 42448), (44197, 44197, 60, 60, 'Nano Crystal (Seethe With Germs)', 12257), (100219, 100219, 136, 136, 'Nano Crystal (Seething Resentment)', 42451), (46018, 46018, 43, 43, 'Nano Crystal (Semi-Sentient Android)', 12225), (81889, 81889, 169, 169, 'Nano Crystal (Semi-Sentient Augmentation Cloud)', 42450), (46019, 46019, 17, 17, 'Nano Crystal (Semi-Sentient Automaton)', 12225), (46020, 46020, 86, 86, 'Nano Crystal (Semi-Sentient Gladiatorbot)', 12258), (46021, 46021, 123, 123, 'Nano Crystal (Semi-Sentient Guardbot)', 42450), (223332, 223332, 207, 207, 'Nano Crystal (Semi-Sentient Predator M-30)', 42450), (46022, 46022, 156, 156, 'Nano Crystal (Semi-Sentient Warbot)', 42450), (46023, 46023, 182, 182, 'Nano Crystal (Semi-Sentient Wardroid)', 42450), (46024, 46024, 175, 175, 'Nano Crystal (Semi-Sentient Warmachine)', 42450), (27290, 27290, 7, 7, 'Nano Crystal (Sense Boost)', 12228), (27291, 27291, 10, 10, 'Nano Crystal (Sense Imp Expertise)', 12226), (27292, 27292, 10, 10, 'Nano Crystal (Sense Imp Incomp)', 12226), (27293, 27293, 4, 4, 'Nano Crystal (Sense Imp Inexperience)', 12226), (29412, 29412, 43, 43, 'Nano Crystal (Sense Imp Mastery)', 12226), (27294, 27294, 4, 4, 'Nano Crystal (Sense Imp Proficiency)', 12226), (44209, 44209, 185, 185, 'Nano Crystal (Sentient Nano Gorger)', 42449), (210519, 210519, 199, 199, 'Nano Crystal (Sentinel Ward)', 42452), (82813, 82813, 172, 172, 'Nano Crystal (Shackles of Obedience)', 42449), (301896, 301896, 100, 100, 'Nano Crystal (Shad: Dissolving Vitality)', 42448), (265454, 265454, 175, 175, 'Nano Crystal (Shad: Shade''s Caress)', 292049), (301594, 301594, 50, 50, 'Nano Crystal (Shad: Winding Serpent)', 301592), (32103, 32103, 20, 20, 'Nano Crystal (Shadow Crown)', 12226), (223128, 223128, 50, 50, 'Nano Crystal (Shadow Step)', 12225), (239358, 239358, 120, 120, 'Nano Crystal (Shadow Trail)', 42450), (273396, 273396, 215, 215, 'Nano Crystal (Shadow in the Night)', 42451), (233840, 233840, 80, 80, 'Nano Crystal (Shadowland Anchor)', 12258), (233842, 233842, 190, 190, 'Nano Crystal (Shadowland Safeguard)', 42450), (233848, 233848, 150, 150, 'Nano Crystal (Shadowland Soul Fetter)', 42450), (99620, 99620, 63, 63, 'Nano Crystal (Shady Acquisition)', 12258), (223220, 223220, 214, 214, 'Nano Crystal (Shake off me)', 42451), (269443, 269443, 175, 175, 'Nano Crystal (Sharp Scales)', 300936), (162314, 162314, 80, 80, 'Nano Crystal (Sharpen Claws)', 300921), (211153, 211153, 19, 19, 'Nano Crystal (Sharpen Dagger)', 12226), (211169, 211169, 135, 135, 'Nano Crystal (Sharpen Instincts)', 42451), (82011, 82011, 37, 37, 'Nano Crystal (Shatter Bone)', 12224), (99133, 99133, 7, 7, 'Nano Crystal (Shed Anger)', 12226), (75360, 75360, 66, 66, 'Nano Crystal (Shen Protection)', 12260), (70573, 70573, 63, 63, 'Nano Crystal (Shielding Barrier)', 12260), (118118, 118118, 70, 70, 'Nano Crystal (Shock Absorber)', 12260), (246805, 246805, 390, 390, 'Nano Crystal (Shock of the tentacle)', 42449), (28836, 28836, 14, 14, 'Nano Crystal (Shockball)', 12224), (250369, 250369, 390, 390, 'Nano Crystal (Shocking Energy Overload)', 42451), (28837, 28837, 66, 66, 'Nano Crystal (Shockwave Slash)', 12257), (27295, 27295, 10, 10, 'Nano Crystal (Shotgun Expertise)', 12226), (27296, 27296, 10, 10, 'Nano Crystal (Shotgun Incompetence)', 12226), (27297, 27297, 4, 4, 'Nano Crystal (Shotgun Inexperience)', 12226), (27298, 27298, 4, 4, 'Nano Crystal (Shotgun Proficiency)', 12226), (45946, 45946, 40, 40, 'Nano Crystal (Shower With Sludge)', 12224), (246038, 246038, 390, 390, 'Nano Crystal (Shower of Life)', 42448), (28838, 28838, 123, 123, 'Nano Crystal (Shrapnel Burst)', 42449), (83973, 83973, 66, 66, 'Nano Crystal (Shroud of Darkness)', 12259), (83972, 83972, 182, 182, 'Nano Crystal (Shroud of the Grave)', 42451), (118116, 118116, 136, 136, 'Nano Crystal (Shrug Off Blows)', 42452), (218067, 218067, 205, 205, 'Nano Crystal (Shuffle Step)', 42451), (210796, 210796, 180, 180, 'Nano Crystal (Shuffle of the Rogue)', 301590), (226405, 226405, 201, 201, 'Nano Crystal (Sickening Shock)', 42450), (250449, 250449, 390, 390, 'Nano Crystal (Sickening Viral Clampdown)', 42449), (211165, 211165, 40, 40, 'Nano Crystal (Sidestep)', 12226), (210790, 210790, 66, 66, 'Nano Crystal (Silent Dagger)', 301590), (300572, 300572, 1, 1, 'Nano Crystal (Silvertail)', 295744), (100449, 100449, 162, 162, 'Nano Crystal (Simple Mind, Simple Pleasures)', 42449), (263283, 263283, 126, 126, 'Nano Crystal (Simple Viral Agent)', 301210), (302361, 302361, 126, 126, 'Nano Crystal (Simple Viral Agent)', 301210), (91389, 91389, 152, 152, 'Nano Crystal (Siphon AC (Advanced))', 42452), (91382, 91382, 162, 162, 'Nano Crystal (Siphon AC (Greater))', 42452), (91384, 91384, 172, 172, 'Nano Crystal (Siphon AC (Invasive))', 42452), (91386, 91386, 146, 146, 'Nano Crystal (Siphon AC (Major))', 42452), (91378, 91378, 103, 103, 'Nano Crystal (Siphon AC (Minor))', 42452), (91381, 91381, 86, 86, 'Nano Crystal (Siphon AC (Weak))', 12260), (91387, 91387, 123, 123, 'Nano Crystal (Siphon AC)', 42452), (230470, 230470, 390, 390, 'Nano Crystal (Siphon Life)', 42449), (230472, 230472, 390, 390, 'Nano Crystal (Siphon Life)', 42449), (230474, 230474, 390, 390, 'Nano Crystal (Siphon Life)', 42449), (30137, 30137, 123, 123, 'Nano Crystal (Siren Call)', 42451), (245470, 245470, 390, 390, 'Nano Crystal (Six arms of fire)', 42449), (121374, 121374, 113, 113, 'Nano Crystal (Skill Wrangler (Advanced))', 42451), (121375, 121375, 34, 34, 'Nano Crystal (Skill Wrangler (Commonplace))', 12226), (121373, 121373, 176, 176, 'Nano Crystal (Skill Wrangler (Exceptional))', 42451), (121371, 121371, 150, 150, 'Nano Crystal (Skill Wrangler (Greater))', 42451), (121372, 121372, 70, 70, 'Nano Crystal (Skill Wrangler (Inferior))', 12259), (121370, 121370, 41, 41, 'Nano Crystal (Skill Wrangler (Lossy))', 12226), (121368, 121368, 97, 97, 'Nano Crystal (Skill Wrangler (Major))', 12259), (121366, 121366, 21, 21, 'Nano Crystal (Skill Wrangler (Minor))', 12226), (121367, 121367, 14, 14, 'Nano Crystal (Skill Wrangler (Patchy))', 12226), (121365, 121365, 189, 189, 'Nano Crystal (Skill Wrangler (Premium))', 42451), (121363, 121363, 156, 156, 'Nano Crystal (Skill Wrangler (Sophisticated))', 42451), (121364, 121364, 163, 163, 'Nano Crystal (Skill Wrangler (Superb))', 42451), (121362, 121362, 126, 126, 'Nano Crystal (Skill Wrangler (Superior))', 42451), (121360, 121360, 8, 8, 'Nano Crystal (Skill Wrangler (Weak))', 12226), (121369, 121369, 54, 54, 'Nano Crystal (Skill Wrangler Lesser)', 12259), (121376, 121376, 84, 84, 'Nano Crystal (Skill Wrangler)', 12259), (263253, 263253, 126, 126, 'Nano Crystal (Skilled Gunslinger)', 12226), (121510, 121510, 47, 47, 'Nano Crystal (Skilled Health Haggler)', 12228), (55847, 55847, 73, 73, 'Nano Crystal (Skin of the Toad)', 12260), (210733, 210733, 5, 5, 'Nano Crystal (Slap of the Zombie)', 12226), (223314, 223314, 201, 201, 'Nano Crystal (Slayerdroid Annihilator)', 42450), (46025, 46025, 189, 189, 'Nano Crystal (Slayerdroid Guardian)', 42450), (46026, 46026, 185, 185, 'Nano Crystal (Slayerdroid Protector)', 42450), (46027, 46027, 189, 189, 'Nano Crystal (Slayerdroid Sentinel)', 42450), (31594, 31594, 185, 185, 'Nano Crystal (Slayerdroid Transference)', 42450), (46028, 46028, 185, 185, 'Nano Crystal (Slayerdroid Warden)', 42450), (30138, 30138, 43, 43, 'Nano Crystal (Sleep)', 12224), (28839, 28839, 93, 93, 'Nano Crystal (Slime Cascade)', 12257), (227775, 227775, 210, 210, 'Nano Crystal (Slip Away)', 301574), (227391, 227391, 125, 125, 'Nano Crystal (Slip of Accident)', 42451), (227393, 227393, 175, 175, 'Nano Crystal (Slip of Idea)', 42451), (227395, 227395, 201, 201, 'Nano Crystal (Slip of Intent)', 42451), (227399, 227399, 216, 216, 'Nano Crystal (Slip of Mind)', 42451), (227397, 227397, 209, 209, 'Nano Crystal (Slip of Will)', 42451), (136690, 136690, 14, 14, 'Nano Crystal (Slipshod Bandaging)', 12228), (218121, 218121, 138, 138, 'Nano Crystal (Slithering Flames)', 42449), (27299, 27299, 17, 17, 'Nano Crystal (Sloth)', 12226), (230436, 230436, 390, 390, 'Nano Crystal (Slow Rot)', 42449), (218083, 218083, 203, 203, 'Nano Crystal (Smell of Approaching Rain)', 42450), (45948, 45948, 57, 57, 'Nano Crystal (Smiting Missile Mk II)', 12257), (45947, 45947, 24, 24, 'Nano Crystal (Smiting Missile)', 12224), (205603, 205603, 390, 390, 'Nano Crystal (Smother Fury)', 42449), (155365, 155365, 70, 70, 'Nano Crystal (Smuggler Shipment (OP-C))', 12258), (155360, 155360, 120, 120, 'Nano Crystal (Smuggler Shipment (OP-CC))', 42450), (155362, 155362, 107, 107, 'Nano Crystal (Smuggler Shipment (OP-CLX))', 42450), (155361, 155361, 113, 113, 'Nano Crystal (Smuggler Shipment (OP-CLXXX))', 42450), (155363, 155363, 103, 103, 'Nano Crystal (Smuggler Shipment (OP-CXL))', 42450), (155364, 155364, 90, 90, 'Nano Crystal (Smuggler Shipment (OP-CXX))', 12258), (155367, 155367, 34, 34, 'Nano Crystal (Smuggler Shipment (OP-LX))', 12225), (155366, 155366, 54, 54, 'Nano Crystal (Smuggler Shipment (OP-LXXX))', 12258), (155368, 155368, 24, 24, 'Nano Crystal (Smuggler Shipment (OP-XL))', 12225), (155369, 155369, 8, 8, 'Nano Crystal (Smuggler Shipment (OP-XX))', 12225), (27300, 27300, 10, 10, 'Nano Crystal (Sneak Attack Expertise)', 12226), (27301, 27301, 14, 14, 'Nano Crystal (Sneak Attack Incompetence)', 12226), (27302, 27302, 7, 7, 'Nano Crystal (Sneak Attack Inexperience)', 12226), (27303, 27303, 4, 4, 'Nano Crystal (Sneak Attack Proficiency)', 12226), (210747, 210747, 36, 36, 'Nano Crystal (Sneak)', 12226), (273392, 273392, 215, 215, 'Nano Crystal (Sneaking Health Drain)', 42448), (30139, 30139, 70, 70, 'Nano Crystal (Sneaking Terror)', 12259), (32105, 32105, 43, 43, 'Nano Crystal (Sniper''s Bliss)', 301577), (223232, 223232, 170, 170, 'Nano Crystal (Snitch Notum)', 42450), (99214, 99214, 40, 40, 'Nano Crystal (Soft Siren Call)', 12226), (301898, 301898, 76, 76, 'Nano Crystal (Sol: Adrenaline Rush)', 301164), (302396, 302396, 100, 100, 'Nano Crystal (Sol: Fragmentation Grenades)', 42448), (302400, 302400, 200, 200, 'Nano Crystal (Sol: Notum-Charged Grenades)', 42448), (265441, 265441, 175, 175, 'Nano Crystal (Sol: Pierce Nerves)', 12257), (267645, 267645, 200, 200, 'Nano Crystal (Sol: Remedy Inhibitor)', 42448), (45949, 45949, 152, 152, 'Nano Crystal (Solar Wind)', 42449), (99213, 99213, 63, 63, 'Nano Crystal (Solicit Support)', 12259), (118248, 118248, 156, 156, 'Nano Crystal (Sophisticated Delayed Health Payment)', 42448), (78437, 78437, 123, 123, 'Nano Crystal (Sophisticated Health Freeloader)', 42448), (78427, 78427, 40, 40, 'Nano Crystal (Sophisticated Health Funnel)', 12228), (78415, 78415, 182, 182, 'Nano Crystal (Sophisticated Health Plunder)', 42448), (301191, 301191, 215, 215, 'Nano Crystal (Sophisticated Viral Agent)', 301190), (152531, 152531, 143, 143, 'Nano Crystal (Soul of Malevolence)', 42448), (252055, 252055, 209, 209, 'Nano Crystal (Soul of Rubi)', 301450), (27237, 27237, 10, 10, 'Nano Crystal (SpaceTime Expertise)', 12226), (27238, 27238, 10, 10, 'Nano Crystal (SpaceTime Incompetence)', 12226), (27239, 27239, 4, 4, 'Nano Crystal (SpaceTime Inexperience)', 12226), (29392, 29392, 40, 40, 'Nano Crystal (SpaceTime Mastery)', 12226), (27240, 27240, 4, 4, 'Nano Crystal (SpaceTime Proficiency)', 12226), (218093, 218093, 50, 50, 'Nano Crystal (Spark Shower)', 12224), (55844, 55844, 47, 47, 'Nano Crystal (Sparking Touch)', 12227), (55781, 55781, 159, 159, 'Nano Crystal (Sparkling Field Array)', 42452), (82839, 82839, 24, 24, 'Nano Crystal (Sparrow Flight)', 300901), (28787, 28787, 33, 33, 'Nano Crystal (Specialist Treatment)', 12226), (29861, 29861, 53, 53, 'Nano Crystal (Spike Armor)', 12260), (29862, 29862, 7, 7, 'Nano Crystal (Spike Shield)', 12227), (85275, 85275, 156, 156, 'Nano Crystal (Spin Nanoweb)', 42449), (85276, 85276, 96, 96, 'Nano Crystal (Spin Weak Nanoweb)', 12257), (121150, 121150, 130, 130, 'Nano Crystal (Spine of Jelly)', 42451), (297333, 297333, 1, 1, 'Nano Crystal (Spirit Siphon)', 297344), (28952, 28952, 4, 4, 'Nano Crystal (Spiritual Harmony)', 301447), (223116, 223116, 125, 125, 'Nano Crystal (Spite)', 42451), (78448, 78448, 123, 123, 'Nano Crystal (Splinter Missile)', 42449), (43942, 43942, 27, 27, 'Nano Crystal (Spreading Health)', 12228), (246036, 246036, 390, 390, 'Nano Crystal (Spring of Life)', 42448), (31441, 31441, 70, 70, 'Nano Crystal (Stack the Odds)', 301585), (27304, 27304, 7, 7, 'Nano Crystal (Stamina Boost)', 12228), (45950, 45950, 156, 156, 'Nano Crystal (Stargasp)', 42449), (160796, 160796, 169, 169, 'Nano Crystal (Steady Nerves)', 301578), (28958, 28958, 76, 76, 'Nano Crystal (Steel Skin)', 12260), (216002, 216002, 390, 390, 'Nano Crystal (Sticky Eremite Strands)', 42449), (30799, 30799, 24, 24, 'Nano Crystal (Sticky Ground)', 12224), (99132, 99132, 53, 53, 'Nano Crystal (Stifle Rage)', 12259), (305748, 305748, 390, 390, 'Nano Crystal (Stims)', 42449), (45331, 45331, 179, 179, 'Nano Crystal (Stinging Missile Swarm)', 42449), (45330, 45330, 63, 63, 'Nano Crystal (Stinging Missile)', 12257), (82004, 82004, 63, 63, 'Nano Crystal (Stinging Reminder)', 12257), (27305, 27305, 7, 7, 'Nano Crystal (Strength Boost)', 12228), (97453, 97453, 66, 66, 'Nano Crystal (Strengthen Resolve)', 12256), (305749, 305749, 390, 390, 'Nano Crystal (Strike)', 42449), (99619, 99619, 33, 33, 'Nano Crystal (Strip Assets)', 12225), (223234, 223234, 201, 201, 'Nano Crystal (Strip Notum)', 42450), (82812, 82812, 30, 30, 'Nano Crystal (Stumbling Steps)', 12224), (218071, 218071, 220, 220, 'Nano Crystal (Stutter Step)', 42451), (95532, 95532, 30, 30, 'Nano Crystal (Subconscious Guidance)', 301587), (27225, 27225, 10, 10, 'Nano Crystal (Submachine Gun Expertise)', 12226), (27226, 27226, 10, 10, 'Nano Crystal (Submachine Gun Incompetence)', 12226), (27227, 27227, 4, 4, 'Nano Crystal (Submachine Gun Inexperience)', 12226), (27228, 27228, 4, 4, 'Nano Crystal (Submachine Gun Proficiency)', 12226), (82003, 82003, 20, 20, 'Nano Crystal (Subsonic Blast)', 12224), (152839, 152839, 126, 126, 'Nano Crystal (Subvert Nanobots)', 42449), (121521, 121521, 54, 54, 'Nano Crystal (Successful Health Haggler)', 12256), (45332, 45332, 162, 162, 'Nano Crystal (Sudden Affliction)', 42449), (45951, 45951, 24, 24, 'Nano Crystal (Sudden Chill)', 12224), (121143, 121143, 37, 37, 'Nano Crystal (Sudden Scare)', 12226), (81836, 81836, 152, 152, 'Nano Crystal (Summer Rain)', 42450), (43330, 43330, 1, 1, 'Nano Crystal (Summon Anger Manifestation)', 295576), (225895, 225895, 170, 170, 'Nano Crystal (Summon Biazu the Vile)', 295587), (29415, 29415, 189, 189, 'Nano Crystal (Summon Demon)', 295585), (43797, 43797, 189, 189, 'Nano Crystal (Summon Demon)', 295585), (43783, 43783, 156, 156, 'Nano Crystal (Summon Enmity Personification)', 295596), (225899, 225899, 201, 201, 'Nano Crystal (Summon Ettu the Cursed)', 295587), (43775, 43775, 182, 182, 'Nano Crystal (Summon Fiend)', 295585), (43779, 43779, 113, 113, 'Nano Crystal (Summon Frenzy Embodiment)', 295576), (43780, 43780, 14, 14, 'Nano Crystal (Summon Fury Externalization)', 295576), (155190, 155190, 60, 60, 'Nano Crystal (Summon Grid Armor Mk I)', 301135), (155192, 155192, 93, 93, 'Nano Crystal (Summon Grid Armor Mk II)', 301135), (155191, 155191, 116, 116, 'Nano Crystal (Summon Grid Armor Mk III)', 301135), (155193, 155193, 140, 140, 'Nano Crystal (Summon Grid Armor Mk IV)', 301135), (303650, 303650, 1, 1, 'Nano Crystal (Summon Hardhead)', 303682), (246380, 246380, 390, 390, 'Nano Crystal (Summon Health)', 42448), (29416, 29416, 179, 179, 'Nano Crystal (Summon Lemur)', 295585), (43777, 43777, 37, 37, 'Nano Crystal (Summon Rage Materialization)', 295576), (224404, 224404, 25, 25, 'Nano Crystal (Summon Shadowweb Spinner MK I)', 12225), (224407, 224407, 75, 75, 'Nano Crystal (Summon Shadowweb Spinner MK II)', 12258), (224409, 224409, 103, 103, 'Nano Crystal (Summon Shadowweb Spinner MK III)', 42450), (224411, 224411, 153, 153, 'Nano Crystal (Summon Shadowweb Spinner MK IV)', 42450), (224421, 224421, 215, 215, 'Nano Crystal (Summon Shadowweb Spinner MK IX)', 42450), (224413, 224413, 170, 170, 'Nano Crystal (Summon Shadowweb Spinner MK V)', 42450), (224415, 224415, 201, 201, 'Nano Crystal (Summon Shadowweb Spinner MK VI)', 42450), (224417, 224417, 205, 205, 'Nano Crystal (Summon Shadowweb Spinner MK VII)', 42450), (224419, 224419, 209, 209, 'Nano Crystal (Summon Shadowweb Spinner MK VIII)', 42450), (224423, 224423, 220, 220, 'Nano Crystal (Summon Shadowweb Spinner MK X)', 42450), (273351, 273351, 215, 215, 'Nano Crystal (Summon Shadowweb Spinner MK XI)', 42450), (255522, 255522, 390, 390, 'Nano Crystal (Summon Soldier (GM NANO))', 42451), (254860, 254860, 220, 220, 'Nano Crystal (Summon The Rihwen)', 295588), (225897, 225897, 195, 195, 'Nano Crystal (Summon Urolok the Rotten)', 295590), (43778, 43778, 76, 76, 'Nano Crystal (Summon Wrath Incarnation)', 295576), (225901, 225901, 212, 212, 'Nano Crystal (Summon Zhok the Abomination)', 295589), (156141, 156141, 83, 83, 'Nano Crystal (Summoning of Absuum)', 295572), (156140, 156140, 176, 176, 'Nano Crystal (Summoning of Balbuto the Gibberer)', 295572), (156139, 156139, 166, 166, 'Nano Crystal (Summoning of Confane)', 295572), (156138, 156138, 120, 120, 'Nano Crystal (Summoning of Demenus)', 295572), (156137, 156137, 159, 159, 'Nano Crystal (Summoning of Distral)', 295572), (156136, 156136, 153, 153, 'Nano Crystal (Summoning of Duoco)', 295572), (156135, 156135, 100, 100, 'Nano Crystal (Summoning of Ignatus Mind-Clouder)', 295572), (150310, 150310, 189, 189, 'Nano Crystal (Summoning of Tumulten)', 295572), (269517, 269517, 203, 203, 'Nano Crystal (Summoning of Yidira)', 295573), (81835, 81835, 93, 93, 'Nano Crystal (Sunrise over Pond)', 12258), (75422, 75422, 99, 99, 'Nano Crystal (Superior Absorption Shield)', 12260), (43776, 43776, 4, 4, 'Nano Crystal (Superior Anger Manifestation)', 295576), (95739, 95739, 57, 57, 'Nano Crystal (Superior Bodily Reinforcement)', 12256), (75420, 75420, 83, 83, 'Nano Crystal (Superior Combat Barrier)', 12260), (70578, 70578, 103, 103, 'Nano Crystal (Superior Defensive Screen)', 42452), (118261, 118261, 140, 140, 'Nano Crystal (Superior Delayed Health Payment)', 42448), (43943, 43943, 96, 96, 'Nano Crystal (Superior Dress Wounds)', 12256), (43773, 43773, 162, 162, 'Nano Crystal (Superior Enmity Personification)', 295596), (28788, 28788, 119, 119, 'Nano Crystal (Superior First Aid)', 42451), (273387, 273387, 215, 215, 'Nano Crystal (Superior Fleeting Immunity)', 42452), (70597, 70597, 172, 172, 'Nano Crystal (Superior Force Field)', 42452), (273321, 273321, 215, 215, 'Nano Crystal (Superior Fortify)', 42452), (43770, 43770, 139, 139, 'Nano Crystal (Superior Frenzy Embodiment)', 295576), (43771, 43771, 24, 24, 'Nano Crystal (Superior Fury Externalization)', 295576), (28789, 28789, 30, 30, 'Nano Crystal (Superior Healing)', 12228), (97452, 97452, 83, 83, 'Nano Crystal (Superior Health Augmentation)', 12256), (43944, 43944, 162, 162, 'Nano Crystal (Superior Health Pump)', 42448), (270237, 270237, 184, 184, 'Nano Crystal (Superior Hold Victim)', 42449), (90408, 90408, 99, 99, 'Nano Crystal (Superior Humidity Extractor)', 12258), (273354, 273354, 215, 215, 'Nano Crystal (Superior Insurance Hack)', 42448), (97450, 97450, 169, 169, 'Nano Crystal (Superior Life Reinforcement)', 42448), (45333, 45333, 172, 172, 'Nano Crystal (Superior Malign Devourer)', 42449), (95740, 95740, 152, 152, 'Nano Crystal (Superior Metabolism Booster)', 42448), (43945, 43945, 142, 142, 'Nano Crystal (Superior Nano Bandage)', 42448), (95455, 95455, 93, 93, 'Nano Crystal (Superior Nano Command)', 12258), (273389, 273389, 215, 215, 'Nano Crystal (Superior Nanobot Shelter)', 301537), (260759, 260759, 210, 210, 'Nano Crystal (Superior Notum Overflow Injector)', 301611), (302362, 302362, 210, 210, 'Nano Crystal (Superior Notum Overflow Injector)', 301611), (95741, 95741, 179, 179, 'Nano Crystal (Superior Omni-Med Enhancement)', 42448), (70579, 70579, 96, 96, 'Nano Crystal (Superior Protective Field)', 12260), (43772, 43772, 50, 50, 'Nano Crystal (Superior Rage Materialization)', 295576), (270772, 270772, 215, 215, 'Nano Crystal (Superior Seed Life)', 42448), (70576, 70576, 86, 86, 'Nano Crystal (Superior Shielding Barrier)', 12260), (273314, 273314, 215, 215, 'Nano Crystal (Superior Team Health Plan)', 42448), (43924, 43924, 80, 80, 'Nano Crystal (Superior Wound Bindings)', 12256), (43768, 43768, 90, 90, 'Nano Crystal (Superior Wrath Incarnation)', 295576), (46414, 46414, 136, 136, 'Nano Crystal (Supervisor-Grade Administrator-Droid)', 42450), (46415, 46415, 83, 83, 'Nano Crystal (Supervisor-Grade Aide-Droid)', 12258), (46416, 46416, 60, 60, 'Nano Crystal (Supervisor-Grade Assistant-Droid)', 12258), (46417, 46417, 37, 37, 'Nano Crystal (Supervisor-Grade Attendant-Droid)', 12225), (46418, 46418, 165, 165, 'Nano Crystal (Supervisor-Grade Bodyguard)', 42450), (46419, 46419, 20, 20, 'Nano Crystal (Supervisor-Grade Helper-Droid)', 12225), (46420, 46420, 152, 152, 'Nano Crystal (Supervisor-Grade Minion)', 42450), (46421, 46421, 113, 113, 'Nano Crystal (Supervisor-Grade Secretary-Droid)', 42450), (46413, 46413, 7, 7, 'Nano Crystal (Supervisor-Grade Worker-Droid)', 12225), (43769, 43769, 7, 7, 'Nano Crystal (Supreme Anger Manifestation)', 295576), (156134, 156134, 67, 67, 'Nano Crystal (Supreme Deranged Mindreaver)', 295572), (156133, 156133, 24, 24, 'Nano Crystal (Supreme Distracting Sphere)', 295572), (43759, 43759, 172, 172, 'Nano Crystal (Supreme Enmity Personification)', 295596), (43766, 43766, 149, 149, 'Nano Crystal (Supreme Frenzy Embodiment)', 295576), (43767, 43767, 30, 30, 'Nano Crystal (Supreme Fury Externalization)', 295576), (252156, 252156, 206, 206, 'Nano Crystal (Supreme Health Haggler)', 42448), (273371, 273371, 215, 215, 'Nano Crystal (Supreme Kyudo)', 42451), (43764, 43764, 60, 60, 'Nano Crystal (Supreme Rage Materialization)', 295576), (75365, 75365, 146, 146, 'Nano Crystal (Supreme Shen Protection)', 42452), (75373, 75373, 123, 123, 'Nano Crystal (Supreme Wilderness Protection)', 296699), (43760, 43760, 96, 96, 'Nano Crystal (Supreme Wrath Incarnation)', 295576), (160788, 160788, 40, 40, 'Nano Crystal (Sureshot)', 301587), (28790, 28790, 53, 53, 'Nano Crystal (Surgeon''s Touch)', 12256), (97449, 97449, 14, 14, 'Nano Crystal (Survivability Booster)', 12228), (28744, 28744, 33, 33, 'Nano Crystal (Survival Aid)', 12226), (82080, 82080, 27, 27, 'Nano Crystal (Survival Technique)', 12228), (136691, 136691, 116, 116, 'Nano Crystal (Survival of the Fittest)', 42448), (95724, 95724, 139, 139, 'Nano Crystal (Survivor''s Resilience)', 42448), (81950, 81950, 47, 47, 'Nano Crystal (Suspicious Death)', 12224), (142773, 142773, 4, 4, 'Nano Crystal (Swap Psyche)', 12226), (250106, 250106, 390, 390, 'Nano Crystal (Swarming Viralbot Cloud)', 42449), (81834, 81834, 113, 113, 'Nano Crystal (Sway of Bamboo)', 42450), (27308, 27308, 4, 4, 'Nano Crystal (Swiftness)', 12226), (223236, 223236, 209, 209, 'Nano Crystal (Swindle Notum)', 42450), (29192, 29192, 10, 10, 'Nano Crystal (Symbol Helper)', 12226), (154587, 154587, 34, 34, 'Nano Crystal (Sympathetic Armor Boost)', 295528), (154586, 154586, 80, 80, 'Nano Crystal (Sympathetic Arms Enhancement)', 295539), (154585, 154585, 146, 146, 'Nano Crystal (Sympathetic Defensive Screen)', 295528), (154584, 154584, 153, 153, 'Nano Crystal (Sympathetic Energy Cocoon)', 295529), (154583, 154583, 176, 176, 'Nano Crystal (Sympathetic Entropy Infusion)', 295539), (154582, 154582, 163, 163, 'Nano Crystal (Sympathetic Force Field)', 295528), (154581, 154581, 189, 189, 'Nano Crystal (Sympathetic Fortress Screen)', 295528), (154580, 154580, 116, 116, 'Nano Crystal (Sympathetic Harmonic Cocoon)', 295537), (154579, 154579, 90, 90, 'Nano Crystal (Sympathetic Harmonic Field)', 295537), (154578, 154578, 189, 189, 'Nano Crystal (Sympathetic Plasma Shielding)', 295529), (154577, 154577, 97, 97, 'Nano Crystal (Sympathetic Protective Field)', 295528), (154576, 154576, 186, 186, 'Nano Crystal (Sympathetic Reactive Cocoon)', 295537), (154575, 154575, 159, 159, 'Nano Crystal (Sympathetic Reactive Field)', 295537), (154574, 154574, 93, 93, 'Nano Crystal (Sympathetic Retaliatory Barrier)', 295529), (154573, 154573, 70, 70, 'Nano Crystal (Sympathetic Shielding Barrier)', 295528), (223340, 223340, 214, 214, 'Nano Crystal (Synchronized Capacitor Overload)', 42450), (223306, 223306, 190, 190, 'Nano Crystal (Synchronized Energy Spike)', 42450), (43925, 43925, 86, 86, 'Nano Crystal (Syndicated Healing)', 12256), (275663, 275663, 7, 7, 'Nano Crystal (TEST HOT)', 12224), (43926, 43926, 57, 57, 'Nano Crystal (Tailored Cure)', 12256), (227139, 227139, 214, 214, 'Nano Crystal (Taint of Resolve)', 42451), (227136, 227136, 214, 214, 'Nano Crystal (Taint of Will)', 42451), (32106, 32106, 152, 152, 'Nano Crystal (Take The Shot)', 301578), (234076, 234076, 145, 145, 'Nano Crystal (Tap Notum Vein: Adonis)', 42450), (234083, 234083, 80, 80, 'Nano Crystal (Tap Notum Vein: Elysium)', 12258), (234080, 234080, 200, 200, 'Nano Crystal (Tap Notum Vein: Inferno)', 42450), (234081, 234081, 25, 25, 'Nano Crystal (Tap Notum Vein: Nascence)', 12225), (234078, 234078, 165, 165, 'Nano Crystal (Tap Notum Vein: Penumbra)', 42450), (234085, 234085, 120, 120, 'Nano Crystal (Tap Notum Vein: Scheol)', 42450), (259613, 259613, 390, 390, 'Nano Crystal (Tap Notum)', 42450), (81888, 81888, 149, 149, 'Nano Crystal (Targeted Augmentation Cloud)', 42450), (100223, 100223, 7, 7, 'Nano Crystal (Taunting Glare)', 12226), (151780, 151780, 18, 18, 'Nano Crystal (Teachings of Biological Metamorphose)', 12226), (151778, 151778, 21, 21, 'Nano Crystal (Teachings of Material Creation)', 12226), (151775, 151775, 17, 17, 'Nano Crystal (Teachings of Material Metamorphose)', 12226), (151776, 151776, 24, 24, 'Nano Crystal (Teachings of Psychological Modification)', 12226), (151777, 151777, 21, 21, 'Nano Crystal (Teachings of Sensory Improvement)', 12226), (151779, 151779, 21, 21, 'Nano Crystal (Teachings of Time and Space)', 12226), (154916, 154916, 159, 159, 'Nano Crystal (Team Beacon Warp)', 42450), (43927, 43927, 60, 60, 'Nano Crystal (Team Cellular Rebuild)', 12256), (43928, 43928, 70, 70, 'Nano Crystal (Team Checkup)', 12256), (43929, 43929, 159, 159, 'Nano Crystal (Team Compress Wounds)', 42448), (229962, 229962, 142, 142, 'Nano Crystal (Team Empowered Allure of Servitude)', 12226), (231014, 231014, 24, 24, 'Nano Crystal (Team Empowered Bend Will)', 12226), (229965, 229965, 100, 100, 'Nano Crystal (Team Empowered Captivated Thoughts)', 12259), (231015, 231015, 31, 31, 'Nano Crystal (Team Empowered Dominate Psyche)', 12226), (231019, 231019, 50, 50, 'Nano Crystal (Team Empowered Impose Will)', 12226), (231017, 231017, 81, 81, 'Nano Crystal (Team Empowered Insidious Beguilement)', 12259), (231018, 231018, 93, 93, 'Nano Crystal (Team Empowered Inveigle Support)', 12259), (231016, 231016, 39, 39, 'Nano Crystal (Team Empowered Solicit Support)', 12226), (231020, 231020, 17, 17, 'Nano Crystal (Team Empowered Temporary Glamor)', 12226), (231021, 231021, 150, 150, 'Nano Crystal (Team Empowered Total Mental Domination)', 42451), (231024, 231024, 180, 180, 'Nano Crystal (Team Empowered Voice of Truth)', 42451), (43930, 43930, 20, 20, 'Nano Crystal (Team Field Dressings)', 12228), (28749, 28749, 66, 66, 'Nano Crystal (Team Free Movement)', 296729), (142716, 142716, 57, 57, 'Nano Crystal (Team Grid Phreak)', 12258), (82067, 82067, 70, 70, 'Nano Crystal (Team Healing Aura)', 301485), (82066, 82066, 40, 40, 'Nano Crystal (Team Healing Touch)', 301484), (42420, 42420, 40, 40, 'Nano Crystal (Team Healing)', 12228), (270239, 270239, 185, 185, 'Nano Crystal (Team Health Plan)', 42448), (275013, 275013, 215, 215, 'Nano Crystal (Team Improved Life Channeler)', 42448), (273369, 273369, 215, 215, 'Nano Crystal (Team Matrix of Ka)', 301487), (43931, 43931, 113, 113, 'Nano Crystal (Team Nano Bandage)', 42448), (82079, 82079, 116, 116, 'Nano Crystal (Team Practiced Stitching)', 42448), (43932, 43932, 156, 156, 'Nano Crystal (Team Purification)', 42448), (28751, 28751, 4, 4, 'Nano Crystal (Team Quick Heal)', 12228), (82065, 82065, 17, 17, 'Nano Crystal (Team Restore Essence)', 301484), (82078, 82078, 17, 17, 'Nano Crystal (Team Rough Stitching)', 12228), (121358, 121358, 123, 123, 'Nano Crystal (Team Skill Wrangler (Advanced))', 42451), (121359, 121359, 47, 47, 'Nano Crystal (Team Skill Wrangler (Commonplace))', 12226), (121357, 121357, 169, 169, 'Nano Crystal (Team Skill Wrangler (Exceptional))', 42451), (121355, 121355, 153, 153, 'Nano Crystal (Team Skill Wrangler (Greater))', 42451), (121356, 121356, 77, 77, 'Nano Crystal (Team Skill Wrangler (Lesser))', 12259), (121354, 121354, 60, 60, 'Nano Crystal (Team Skill Wrangler (Lossy))', 12259), (121352, 121352, 107, 107, 'Nano Crystal (Team Skill Wrangler (Major))', 42451), (121353, 121353, 37, 37, 'Nano Crystal (Team Skill Wrangler (Minor))', 12226), (121351, 121351, 27, 27, 'Nano Crystal (Team Skill Wrangler (Patchy))', 12226), (121349, 121349, 189, 189, 'Nano Crystal (Team Skill Wrangler (Premium))', 42451), (121350, 121350, 159, 159, 'Nano Crystal (Team Skill Wrangler (Sophisticated))', 42451), (121347, 121347, 140, 140, 'Nano Crystal (Team Skill Wrangler (Superior))', 42451), (121348, 121348, 18, 18, 'Nano Crystal (Team Skill Wrangler (Weak))', 12226), (121361, 121361, 93, 93, 'Nano Crystal (Team Skill Wrangler)', 12259), (82077, 82077, 33, 33, 'Nano Crystal (Team Survival Technique)', 12228), (38531, 38531, 24, 24, 'Nano Crystal (Team Terrain Knowledge)', 296729), (43933, 43933, 139, 139, 'Nano Crystal (Team Tissue Repair)', 42448), (150357, 150357, 97, 97, 'Nano Crystal (Team Warp Time and Space: Capital City)', 301112), (269456, 269456, 191, 191, 'Nano Crystal (Team-Enhanced Deathless Blessing)', 42448), (45334, 45334, 116, 116, 'Nano Crystal (Tear Flesh)', 42449), (250373, 250373, 390, 390, 'Nano Crystal (Telepathic Touch)', 42449), (99131, 99131, 136, 136, 'Nano Crystal (Temper Wrath)', 42451), (99211, 99211, 159, 159, 'Nano Crystal (Temporary Allegiance)', 42451), (97447, 97447, 90, 90, 'Nano Crystal (Temporary Cellular Enhancement)', 12256), (99212, 99212, 20, 20, 'Nano Crystal (Temporary Glamor)', 12226), (289972, 289972, 1, 1, 'Nano Crystal (Termileetz00r)', 42446), (28752, 28752, 10, 10, 'Nano Crystal (Terrain Knowledge)', 296729), (30143, 30143, 90, 90, 'Nano Crystal (Terror Blast)', 12259), (290476, 290476, 1, 1, 'Nano Crystal (Test stuff)', 42450), (210306, 210306, 119, 119, 'Nano Crystal (The Adjudicator''s Blade)', 42451), (275010, 275010, 215, 215, 'Nano Crystal (The Choir Fantastic)', 42451), (206312, 206312, 390, 390, 'Nano Crystal (The Gelid Touch)', 42449), (270236, 270236, 165, 165, 'Nano Crystal (The Great Explorer)', 296691), (206306, 206306, 390, 390, 'Nano Crystal (The Immortal''s Anger)', 42449), (205591, 205591, 390, 390, 'Nano Crystal (The Keeper''s Wrath)', 42448), (218117, 218117, 120, 120, 'Nano Crystal (The Spider''s Secret)', 42449), (231025, 231025, 200, 200, 'Nano Crystal (The Voice of God)', 42451), (231026, 231026, 200, 200, 'Nano Crystal (The Voice of One)', 42451), (231022, 231022, 180, 180, 'Nano Crystal (The Voice of Truth)', 42451), (206342, 206342, 390, 390, 'Nano Crystal (The Watcher)', 42448), (250098, 250098, 390, 390, 'Nano Crystal (Thick Viralbot Cloud)', 42449), (118117, 118117, 37, 37, 'Nano Crystal (Thicken Skin)', 12227), (43934, 43934, 83, 83, 'Nano Crystal (Thorough Examination)', 12256), (116805, 116805, 166, 166, 'Nano Crystal (Thorough Overhaul)', 42448), (143900, 143900, 126, 126, 'Nano Crystal (Thought Controller)', 42451), (143903, 143903, 159, 159, 'Nano Crystal (Thought Juggler)', 42451), (294023, 294023, 1, 1, 'Nano Crystal (Throw Snowball v2.2)', 37933), (27218, 27218, 10, 10, 'Nano Crystal (Throwing Knife Expertise)', 12226), (27219, 27219, 10, 10, 'Nano Crystal (Throwing Knife Incompetence)', 12226), (27220, 27220, 4, 4, 'Nano Crystal (Throwing Knife Inexperience)', 12226), (27221, 27221, 4, 4, 'Nano Crystal (Throwing Knife Proficiency)', 12226), (45335, 45335, 60, 60, 'Nano Crystal (Thunderclap)', 12257), (45336, 45336, 43, 43, 'Nano Crystal (Thunderous Blow)', 12224), (302630, 302630, 20, 20, 'Nano Crystal (Thy Flesh Consumed)', 12226), (29201, 29201, 159, 159, 'Nano Crystal (Tight Embrace)', 42449), (99589, 99589, 7, 7, 'Nano Crystal (Tired Limbs)', 301093), (43935, 43935, 113, 113, 'Nano Crystal (Tissue Repair)', 42448), (29366, 29366, 113, 113, 'Nano Crystal (Titan Physique)', 42448), (75361, 75361, 109, 109, 'Nano Crystal (Titanium Skin)', 42452), (210592, 210592, 24, 24, 'Nano Crystal (Tone of Accord)', 12228), (210602, 210602, 175, 175, 'Nano Crystal (Tone of Benevolence)', 42448), (223029, 223029, 215, 215, 'Nano Crystal (Tone of Bliss)', 42448), (210594, 210594, 58, 58, 'Nano Crystal (Tone of Purity)', 12256), (210600, 210600, 151, 151, 'Nano Crystal (Tone of Rapport)', 42448), (210596, 210596, 92, 92, 'Nano Crystal (Tone of Tranquility)', 12256), (210604, 210604, 193, 193, 'Nano Crystal (Tone of Unity)', 42448), (162316, 162316, 116, 116, 'Nano Crystal (Toothy Grin)', 300921), (273399, 273399, 215, 215, 'Nano Crystal (Total Combat Survival)', 42448), (160704, 160704, 24, 24, 'Nano Crystal (Total Concentration)', 300564), (29329, 29329, 136, 136, 'Nano Crystal (Total Focus)', 42451), (99210, 99210, 179, 179, 'Nano Crystal (Total Mental Domination)', 42451), (70411, 70411, 10, 10, 'Nano Crystal (Total Mirror Shield Mk I)', 12227), (70412, 70412, 27, 27, 'Nano Crystal (Total Mirror Shield Mk II)', 12227), (70413, 70413, 47, 47, 'Nano Crystal (Total Mirror Shield Mk III)', 12227), (70414, 70414, 60, 60, 'Nano Crystal (Total Mirror Shield Mk IV)', 12260), (70415, 70415, 132, 132, 'Nano Crystal (Total Mirror Shield Mk IX)', 42452), (70416, 70416, 86, 86, 'Nano Crystal (Total Mirror Shield Mk V)', 12260), (70417, 70417, 106, 106, 'Nano Crystal (Total Mirror Shield Mk VI)', 42452), (70418, 70418, 126, 126, 'Nano Crystal (Total Mirror Shield Mk VII)', 42452), (70419, 70419, 129, 129, 'Nano Crystal (Total Mirror Shield Mk VIII)', 42452), (70421, 70421, 146, 146, 'Nano Crystal (Total Mirror Shield Mk X)', 42452), (56002, 56002, 175, 175, 'Nano Crystal (Total Musculature Command)', 42449), (223288, 223288, 205, 205, 'Nano Crystal (Touch of Kindness)', 42448), (215890, 215890, 390, 390, 'Nano Crystal (Touch of Salvinous - 720)', 42448), (215892, 215892, 390, 390, 'Nano Crystal (Touch of Salvinous - 722)', 42448), (215894, 215894, 390, 390, 'Nano Crystal (Touch of Salvinous - 724)', 42448), (215896, 215896, 390, 390, 'Nano Crystal (Touch of Salvinous - 726)', 42448), (215898, 215898, 390, 390, 'Nano Crystal (Touch of Salvinous - 728)', 42448), (215900, 215900, 390, 390, 'Nano Crystal (Touch of Salvinous - 729)', 42448), (125737, 125737, 33, 33, 'Nano Crystal (Touch of Salvinous)', 12228), (205593, 205593, 390, 390, 'Nano Crystal (Touch of Uklesh)', 42449), (205589, 205589, 390, 390, 'Nano Crystal (Touch of the Immortal)', 42448), (218135, 218135, 173, 173, 'Nano Crystal (Touch of the Pyre)', 42449), (210741, 210741, 143, 143, 'Nano Crystal (Touch of the Specter)', 42451), (223132, 223132, 205, 205, 'Nano Crystal (Touched With Shadow)', 42450), (95725, 95725, 63, 63, 'Nano Crystal (Tough as Nails)', 12256), (75354, 75354, 1, 1, 'Nano Crystal (Toughen Skin)', 12227), (29820, 29820, 126, 126, 'Nano Crystal (Toxic Barrier)', 42452), (45952, 45952, 37, 37, 'Nano Crystal (Toxic Field)', 12224), (45953, 45953, 126, 126, 'Nano Crystal (Toxic Sphere)', 42449), (45954, 45954, 132, 132, 'Nano Crystal (Toxic Spill)', 42449), (265447, 265447, 175, 175, 'Nano Crystal (Trad: Borrow Reflect)', 12257), (267118, 267118, 200, 200, 'Nano Crystal (Trad: Corporate Protection)', 301514), (267115, 267115, 200, 200, 'Nano Crystal (Trad: Divest Skills (Nanite Enhanced))', 301397), (267268, 267268, 200, 200, 'Nano Crystal (Trad: Industrial Sabotage)', 301513), (267122, 267122, 200, 200, 'Nano Crystal (Trad: Lesser Corporate Protection)', 301514), (267267, 267267, 200, 200, 'Nano Crystal (Trad: Lesser Industrial Sabotage)', 301513), (301530, 301530, 85, 85, 'Nano Crystal (Trad: Minor Corporate Protection)', 301514), (301522, 301522, 85, 85, 'Nano Crystal (Trad: Minor Industrial Sabotage)', 301513), (267111, 267111, 200, 200, 'Nano Crystal (Trad: Plunder Skills (Nanite Enhanced))', 301398), (302289, 302289, 20, 20, 'Nano Crystal (Trad: Shutdown Skills)', 12226), (302403, 302403, 100, 100, 'Nano Crystal (Trad: Subprime Vitality Mortgage)', 301164), (301900, 301900, 175, 175, 'Nano Crystal (Trad: Sudden Diversion)', 42449), (302291, 302291, 20, 20, 'Nano Crystal (Trad: Take the Bait)', 12226), (280053, 280053, 20, 20, 'Nano Crystal (Trad: Theft Humidity)', 301546), (301534, 301534, 30, 30, 'Nano Crystal (Trad: Weak Corporate Protection)', 301514), (301526, 301526, 25, 25, 'Nano Crystal (Trad: Weak Industrial Sabotage)', 301513), (301542, 301542, 63, 63, 'Nano Crystal (Trad: Weak Nanobot Defense)', 301538), (273413, 273413, 215, 215, 'Nano Crystal (Trader Composite Specialist Tradeskills (8 hours))', 42451), (30757, 30757, 165, 165, 'Nano Crystal (Trading Mogul)', 42451), (92193, 92193, 172, 172, 'Nano Crystal (Traffic AC (Advanced))', 42452), (92186, 92186, 182, 182, 'Nano Crystal (Traffic AC (Greater))', 42452), (92188, 92188, 139, 139, 'Nano Crystal (Traffic AC (Lesser))', 42452), (92183, 92183, 159, 159, 'Nano Crystal (Traffic AC (Major))', 42452), (92185, 92185, 119, 119, 'Nano Crystal (Traffic AC (Minor))', 42452), (92182, 92182, 96, 96, 'Nano Crystal (Traffic AC (Weak))', 12260), (92191, 92191, 152, 152, 'Nano Crystal (Traffic AC)', 42452), (285681, 285681, 1, 1, 'Nano Crystal (Trained Enigma Dog)', 42446), (43765, 43765, 10, 10, 'Nano Crystal (Transcendent Anger Manifestation)', 295576), (43921, 43921, 175, 175, 'Nano Crystal (Transcendent Enmity Personification)', 295596), (43762, 43762, 152, 152, 'Nano Crystal (Transcendent Frenzy Embodiment)', 295576), (43922, 43922, 33, 33, 'Nano Crystal (Transcendent Fury Externalization)', 295576), (43923, 43923, 70, 70, 'Nano Crystal (Transcendent Rage Materialization)', 295576), (75352, 75352, 159, 159, 'Nano Crystal (Transcendent Shen Protection)', 42452), (43763, 43763, 106, 106, 'Nano Crystal (Transcendent Wrath Incarnation)', 295576), (211159, 211159, 55, 55, 'Nano Crystal (Transfuse Vigor)', 12259), (29865, 29865, 73, 73, 'Nano Crystal (Trap Artifice)', 12259), (27311, 27311, 10, 10, 'Nano Crystal (Treatment Expertise)', 12226), (27312, 27312, 4, 4, 'Nano Crystal (Treatment Proficiency)', 12226), (28840, 28840, 175, 175, 'Nano Crystal (Tremor)', 42449), (45955, 45955, 109, 109, 'Nano Crystal (Tri-Ion Stream)', 42449), (100448, 100448, 63, 63, 'Nano Crystal (Trinkets and Toys)', 12257), (270782, 270782, 215, 215, 'Nano Crystal (True Profession)', 301606), (160790, 160790, 76, 76, 'Nano Crystal (Trueshot)', 301587), (27313, 27313, 10, 10, 'Nano Crystal (Tutoring Expertise)', 12226), (27314, 27314, 4, 4, 'Nano Crystal (Tutoring Proficiency)', 12226), (210809, 210809, 97, 97, 'Nano Crystal (Twice the Shield)', 12259), (29868, 29868, 189, 189, 'Nano Crystal (Ultimate Force Field)', 42452), (235284, 235284, 170, 170, 'Nano Crystal (Umbral Wrangler (Advanced))', 42451), (235276, 235276, 80, 80, 'Nano Crystal (Umbral Wrangler (Commonplace))', 12259), (235290, 235290, 204, 204, 'Nano Crystal (Umbral Wrangler (Exceptional))', 42451), (235288, 235288, 199, 199, 'Nano Crystal (Umbral Wrangler (Greater))', 42451), (235278, 235278, 105, 105, 'Nano Crystal (Umbral Wrangler (Lesser))', 42451), (235282, 235282, 149, 149, 'Nano Crystal (Umbral Wrangler (Major))', 42451), (235274, 235274, 55, 55, 'Nano Crystal (Umbral Wrangler (Minor))', 12259), (235272, 235272, 25, 25, 'Nano Crystal (Umbral Wrangler (Patchy))', 12226), (235292, 235292, 217, 217, 'Nano Crystal (Umbral Wrangler (Premium))', 42451), (235286, 235286, 189, 189, 'Nano Crystal (Umbral Wrangler (Superior))', 42451), (235280, 235280, 127, 127, 'Nano Crystal (Umbral Wrangler)', 42451), (99587, 99587, 185, 185, 'Nano Crystal (Uncontrollable Body Tremors)', 301085), (223208, 223208, 211, 211, 'Nano Crystal (Undeniable Victim)', 42451), (226741, 226741, 211, 211, 'Nano Crystal (Undermine Defense)', 42452), (32108, 32108, 136, 136, 'Nano Crystal (Unexpected Attack)', 301577), (99618, 99618, 17, 17, 'Nano Crystal (Unfriendly Merger)', 12225), (206310, 206310, 390, 390, 'Nano Crystal (Unhallowed Blessing)', 42449), (95531, 95531, 169, 169, 'Nano Crystal (Universal Vulnerability Compendium)', 301587), (29418, 29418, 73, 73, 'Nano Crystal (Unmake: BioMet)', 12259), (29419, 29419, 73, 73, 'Nano Crystal (Unmake: MatCrea)', 12259), (29421, 29421, 63, 63, 'Nano Crystal (Unmake: MatMet)', 12259), (29422, 29422, 70, 70, 'Nano Crystal (Unmake: PsyMod)', 12259), (29423, 29423, 66, 66, 'Nano Crystal (Unmake: SenseImp)', 12259), (29420, 29420, 66, 66, 'Nano Crystal (Unmake: SpaceTime)', 12259), (223210, 223210, 215, 215, 'Nano Crystal (Unmistakable Victim)', 42451), (273373, 273373, 215, 215, 'Nano Crystal (Unnoticed Strike)', 42451), (206308, 206308, 390, 390, 'Nano Crystal (Unsanctified Blessing)', 42449), (226407, 226407, 212, 212, 'Nano Crystal (Unsettling Shock)', 42450), (45337, 45337, 119, 119, 'Nano Crystal (Unstable Hadron String)', 42449), (250453, 250453, 390, 390, 'Nano Crystal (Unstoppable Viral Clampdown)', 42449), (46009, 46009, 37, 37, 'Nano Crystal (Upgraded Android)', 12225), (46010, 46010, 10, 10, 'Nano Crystal (Upgraded Automaton)', 12225), (46011, 46011, 76, 76, 'Nano Crystal (Upgraded Gladiatorbot)', 12258), (46012, 46012, 113, 113, 'Nano Crystal (Upgraded Guardbot)', 42450), (223328, 223328, 180, 180, 'Nano Crystal (Upgraded Predator M-30)', 42450), (46013, 46013, 149, 149, 'Nano Crystal (Upgraded Warbot)', 42450), (46014, 46014, 169, 169, 'Nano Crystal (Upgraded Warmachine)', 42450), (160711, 160711, 73, 73, 'Nano Crystal (Utter Concentration)', 300564), (215902, 215902, 390, 390, 'Nano Crystal (Valentyia''s Heat - 720)', 42448), (215904, 215904, 390, 390, 'Nano Crystal (Valentyia''s Heat - 722)', 42448), (215906, 215906, 390, 390, 'Nano Crystal (Valentyia''s Heat - 724)', 42448), (215908, 215908, 390, 390, 'Nano Crystal (Valentyia''s Heat - 726)', 42448), (215910, 215910, 390, 390, 'Nano Crystal (Valentyia''s Heat - 728)', 42448), (215912, 215912, 390, 390, 'Nano Crystal (Valentyia''s Heat - 729)', 42448), (125730, 125730, 55, 55, 'Nano Crystal (Valentyia''s Heat)', 12228), (28913, 28913, 60, 60, 'Nano Crystal (Velocity)', 12259), (210493, 210493, 163, 163, 'Nano Crystal (Venerated Sanctifier)', 42450), (223744, 223744, 159, 159, 'Nano Crystal (Vengeance of the Blessed)', 42450), (223746, 223746, 192, 192, 'Nano Crystal (Vengeance of the Holy)', 42450), (210622, 210622, 214, 214, 'Nano Crystal (Vengeance of the Immaculate)', 42450), (210612, 210612, 8, 8, 'Nano Crystal (Vengeance of the Loyal)', 12225), (210620, 210620, 203, 203, 'Nano Crystal (Vengeance of the Pure)', 42450), (210616, 210616, 72, 72, 'Nano Crystal (Vengeance of the Resolute)', 12258), (210614, 210614, 35, 35, 'Nano Crystal (Vengeance of the Steadfast)', 12225), (210618, 210618, 115, 115, 'Nano Crystal (Vengeance of the Virtuous)', 42450), (31446, 31446, 60, 60, 'Nano Crystal (Venom Modification)', 12258), (302541, 302541, 20, 20, 'Nano Crystal (Veteran Growing Flesh (Greater))', 301276), (302539, 302539, 10, 10, 'Nano Crystal (Veteran Growing Flesh (Lesser))', 301276), (302533, 302533, 20, 20, 'Nano Crystal (Veteran Shrinking Flesh (Greater))', 301261), (302531, 302531, 10, 10, 'Nano Crystal (Veteran Shrinking Flesh (Lesser))', 301261), (268698, 268698, 100, 100, 'Nano Crystal (Veterans L33t Transformation)', 296678), (250200, 250200, 390, 390, 'Nano Crystal (Viral Acid spray)', 42449), (250286, 250286, 390, 390, 'Nano Crystal (Viral Anti Evade)', 42449), (250288, 250288, 390, 390, 'Nano Crystal (Viral Anti Evade)', 42449), (250290, 250290, 390, 390, 'Nano Crystal (Viral Anti Evade)', 42449), (250292, 250292, 390, 390, 'Nano Crystal (Viral Anti Evade)', 42449), (250294, 250294, 390, 390, 'Nano Crystal (Viral Anti Evade)', 42449), (250275, 250275, 390, 390, 'Nano Crystal (Viral Area Weakener)', 42449), (250277, 250277, 390, 390, 'Nano Crystal (Viral Area Weakener)', 42449), (250279, 250279, 390, 390, 'Nano Crystal (Viral Area Weakener)', 42449), (250281, 250281, 390, 390, 'Nano Crystal (Viral Area Weakener)', 42449), (250283, 250283, 390, 390, 'Nano Crystal (Viral Area Weakener)', 42449), (45338, 45338, 66, 66, 'Nano Crystal (Viral Assault)', 12257), (249917, 249917, 390, 390, 'Nano Crystal (Viral Beat)', 42449), (250196, 250196, 390, 390, 'Nano Crystal (Viral Biotox Infector)', 42449), (250190, 250190, 390, 390, 'Nano Crystal (Viral Biotoxin)', 42449), (250004, 250004, 390, 390, 'Nano Crystal (Viral Blast-Off)', 42449), (250198, 250198, 390, 390, 'Nano Crystal (Viral Cobra Venom)', 42449), (250007, 250007, 390, 390, 'Nano Crystal (Viral Cooldown)', 42449), (249921, 249921, 390, 390, 'Nano Crystal (Viral Definement)', 42449), (250012, 250012, 390, 390, 'Nano Crystal (Viral Fury)', 42449), (250194, 250194, 390, 390, 'Nano Crystal (Viral Germy Mud)', 42449), (250202, 250202, 390, 390, 'Nano Crystal (Viral Hack)', 42449), (250010, 250010, 390, 390, 'Nano Crystal (Viral Heating)', 42449), (250192, 250192, 390, 390, 'Nano Crystal (Viral Infecting Fretz)', 42449), (250204, 250204, 390, 390, 'Nano Crystal (Viral Neurohack)', 42449), (223268, 223268, 203, 203, 'Nano Crystal (Viral Neurotoxin)', 42449), (250263, 250263, 390, 390, 'Nano Crystal (Viral Pet Trapper)', 42449), (250265, 250265, 390, 390, 'Nano Crystal (Viral Pet Trapper)', 42449), (250267, 250267, 390, 390, 'Nano Crystal (Viral Pet Trapper)', 42449), (250269, 250269, 390, 390, 'Nano Crystal (Viral Pet Trapper)', 42449), (250271, 250271, 390, 390, 'Nano Crystal (Viral Pet Trapper)', 42449), (250069, 250069, 390, 390, 'Nano Crystal (Viral Pulse)', 42449), (255989, 255989, 390, 390, 'Nano Crystal (Viral Shatter)', 42449), (250250, 250250, 390, 390, 'Nano Crystal (Viral Shield Disabler)', 42449), (250253, 250253, 390, 390, 'Nano Crystal (Viral Shield Disabler)', 42449), (250255, 250255, 390, 390, 'Nano Crystal (Viral Shield Disabler)', 42449), (250257, 250257, 390, 390, 'Nano Crystal (Viral Shield Disabler)', 42449), (249919, 249919, 390, 390, 'Nano Crystal (Viral Shower)', 42449), (249951, 249951, 390, 390, 'Nano Crystal (Viral Ultimatum)', 42449), (250206, 250206, 390, 390, 'Nano Crystal (Viral Vein Virus)', 42449), (250208, 250208, 390, 390, 'Nano Crystal (Viral Viper Goo)', 42449), (250259, 250259, 390, 390, 'Nano Crystal (Viral)', 42449), (250096, 250096, 390, 390, 'Nano Crystal (Viralbot Cloud)', 42449), (250094, 250094, 390, 390, 'Nano Crystal (Viralbot Pulse)', 42449), (250372, 250372, 390, 390, 'Nano Crystal (Viralbot Takeover)', 42450), (250002, 250002, 390, 390, 'Nano Crystal (Virobot strike)', 42449), (205562, 205562, 390, 390, 'Nano Crystal (Virulence of the Immortal)', 42449), (121144, 121144, 130, 130, 'Nano Crystal (Visions of a Doomed Future)', 42451), (83971, 83971, 189, 189, 'Nano Crystal (Visions of the Void)', 42451), (218107, 218107, 75, 75, 'Nano Crystal (Vital Corruptor)', 12257), (210743, 210743, 174, 174, 'Nano Crystal (Voice of the Banshee)', 42451), (56015, 56015, 182, 182, 'Nano Crystal (Void Inertia)', 42449), (45339, 45339, 86, 86, 'Nano Crystal (Void Warmth)', 12257), (28841, 28841, 182, 182, 'Nano Crystal (Volcanic Eruption)', 42449), (28842, 28842, 113, 113, 'Nano Crystal (Vulcan Flechette)', 42449), (95538, 95538, 90, 90, 'Nano Crystal (Vulnerability Seeker)', 301587), (81833, 81833, 132, 132, 'Nano Crystal (Waiting Panda)', 42450), (100455, 100455, 156, 156, 'Nano Crystal (Wandering Mind)', 42449), (46015, 46015, 149, 149, 'Nano Crystal (Warbot)', 42450), (218065, 218065, 181, 181, 'Nano Crystal (Ward Blow)', 42451), (118114, 118114, 54, 54, 'Nano Crystal (Ward from Harm)', 12260), (210513, 210513, 39, 39, 'Nano Crystal (Ward)', 12227), (223023, 223023, 219, 219, 'Nano Crystal (Warden Ward)', 42452), (210314, 210314, 60, 60, 'Nano Crystal (Warden''s Resolve)', 12259), (46016, 46016, 165, 165, 'Nano Crystal (Warmachine)', 42450), (45325, 45325, 189, 189, 'Nano Crystal (Warmth of the Grave)', 42449), (150351, 150351, 87, 87, 'Nano Crystal (Warp Time and Space: Capital City)', 301108), (275041, 275041, 215, 215, 'Nano Crystal (Watch Ward)', 42452), (226412, 226412, 25, 25, 'Nano Crystal (Waves of Anger)', 12225), (226424, 226424, 215, 215, 'Nano Crystal (Waves of Harm)', 42450), (226418, 226418, 195, 195, 'Nano Crystal (Waves of Illness)', 42450), (226414, 226414, 100, 100, 'Nano Crystal (Waves of Jarring)', 12258), (226416, 226416, 170, 170, 'Nano Crystal (Waves of Numbing)', 42450), (226420, 226420, 203, 203, 'Nano Crystal (Waves of Sickening)', 42450), (226426, 226426, 218, 218, 'Nano Crystal (Waves of Trauma)', 42450), (226422, 226422, 211, 211, 'Nano Crystal (Waves of Unsettling)', 42450), (150005, 150005, 93, 93, 'Nano Crystal (Way of the Exploding Rat)', 12258), (45326, 45326, 57, 57, 'Nano Crystal (Weak Chemical Liquefaction)', 12257), (45327, 45327, 33, 33, 'Nano Crystal (Weak Gravity Collapse)', 12224), (56177, 56177, 40, 40, 'Nano Crystal (Weak Gravity Pull)', 12224), (78425, 78425, 47, 47, 'Nano Crystal (Weak Health Freeloader)', 12228), (78435, 78435, 132, 132, 'Nano Crystal (Weak Health Plunder)', 42448), (45944, 45944, 1, 1, 'Nano Crystal (Weak Smiting Missile)', 12224), (42423, 42423, 4, 4, 'Nano Crystal (Weak Team Heal)', 12228), (226743, 226743, 215, 215, 'Nano Crystal (Weaken Defense)', 42452), (27324, 27324, 7, 7, 'Nano Crystal (Weapon Augmentation)', 12225), (27325, 27325, 17, 17, 'Nano Crystal (Weapon Enhancement)', 12225), (27326, 27326, 10, 10, 'Nano Crystal (Weapon Smithing Expertise)', 12226), (227662, 227662, 88, 88, 'Nano Crystal (Weapon Smithing Knowledge)', 12259), (227673, 227673, 140, 140, 'Nano Crystal (Weapon Smithing Mastery)', 42451), (27197, 27197, 4, 4, 'Nano Crystal (Weapon Smithing Proficiency)', 12226), (82811, 82811, 17, 17, 'Nano Crystal (Weight of the Guilty)', 12224), (95386, 95386, 83, 83, 'Nano Crystal (Weighty Announcement)', 12257), (211155, 211155, 1, 1, 'Nano Crystal (Whetstone Effect)', 12226), (211173, 211173, 390, 390, 'Nano Crystal (Whisper of Medinos - 720)', 42452), (211175, 211175, 390, 390, 'Nano Crystal (Whisper of Medinos - 722)', 42452), (211177, 211177, 390, 390, 'Nano Crystal (Whisper of Medinos - 724)', 42452), (211179, 211179, 390, 390, 'Nano Crystal (Whisper of Medinos - 726)', 42452), (211181, 211181, 390, 390, 'Nano Crystal (Whisper of Medinos - 728)', 42452), (211183, 211183, 390, 390, 'Nano Crystal (Whisper of Medinos - 729)', 42452), (125731, 125731, 14, 14, 'Nano Crystal (Whisper of Medinos)', 12227), (223324, 223324, 220, 220, 'Nano Crystal (Widowmaker Battle Drone)', 42450), (83965, 83965, 37, 37, 'Nano Crystal (Wild Eye Gouger)', 12226), (75370, 75370, 43, 43, 'Nano Crystal (Wilderness Protection)', 12227), (45945, 45945, 27, 27, 'Nano Crystal (Wind Blade)', 12224), (81832, 81832, 57, 57, 'Nano Crystal (Wind-blown Blossom)', 12258), (55860, 55860, 162, 162, 'Nano Crystal (Wings of the Phoenix)', 42452), (75357, 75357, 43, 43, 'Nano Crystal (Wooden Skin)', 12227), (273633, 273633, 215, 215, 'Nano Crystal (Workplace Depression)', 42449), (28794, 28794, 179, 179, 'Nano Crystal (Wrack and Ruin)', 42449), (99129, 99129, 179, 179, 'Nano Crystal (Wrath Abatement)', 42451), (99130, 99130, 149, 149, 'Nano Crystal (Wrath Ebb)', 42451), (43758, 43758, 86, 86, 'Nano Crystal (Wrath Incarnation)', 295576), (205396, 205396, 390, 390, 'Nano Crystal (Wrath of the Immortal)', 42449), (272399, 272399, 150, 150, 'Nano Crystal (Wrath)', 42451), (226277, 226277, 200, 200, 'Nano Crystal (Wrathbringer)', 42450), (270715, 270715, 189, 189, 'Nano Crystal (Your Enemy''s Enemy is your Friend)', 301545), (218101, 218101, 83, 83, 'Nano Crystal (Ziana''s Energy Wave)', 12257), (294055, 294055, 1, 1, 'Nano Crystal (Zix-in-a-Box)', 254462), (305771, 305771, 390, 390, 'Nano Crystal (Zzz)', 42449), (278491, 278491, 220, 220, 'Nano Cube (Alien Rejuventation)', 233132), (288438, 288438, 220, 220, 'Nano Cube (Alien Revitalization)', 233132), (291246, 291246, 14, 14, 'Nano Cube (Assist Master)', 233132), (305268, 305268, 250, 250, 'Nano Cube (Aztur Crush!)', 301272), (305908, 305908, 390, 390, 'Nano Cube (Barrier Wall)', 300508), (304854, 304854, 14, 14, 'Nano Cube (Blackhole Suns)', 233132), (302671, 302671, 1, 1, 'Nano Cube (Bufferstone)', 42449), (254433, 254433, 195, 195, 'Nano Cube (Cellular Re-Structure)', 233132), (285694, 285694, 14, 14, 'Nano Cube (Clan Explosives)', 233132), (280388, 280388, 220, 220, 'Nano Cube (Compression Blast)', 233132), (293270, 293270, 250, 250, 'Nano Cube (Corrupted Mirror Shield)', 233132), (304325, 304325, 220, 220, 'Nano Cube (Cryo Blast)', 233132), (304923, 304923, 250, 250, 'Nano Cube (Cult of Personality)', 42449), (305245, 305245, 250, 250, 'Nano Cube (Cultish Activity)', 233132), (302675, 302675, 1, 1, 'Nano Cube (Debufferstone)', 42449), (304895, 304895, 1, 1, 'Nano Cube (Defensive Growths)', 233132), (303341, 303341, 1, 1, 'Nano Cube (Doopy Spells)', 302888), (276628, 276628, 220, 220, 'Nano Cube (Dust Brigade Rejuventation)', 233132), (305842, 305842, 390, 390, 'Nano Cube (Finger Salad)', 300508), (254438, 254438, 211, 211, 'Nano Cube (Frost Blades)', 233132), (303343, 303343, 1, 1, 'Nano Cube (Get Over Here)', 302888), (305807, 305807, 390, 390, 'Nano Cube (Good Eye)', 300508), (293274, 293274, 250, 250, 'Nano Cube (Grasp of the Fallen Soldier)', 233132), (305845, 305845, 390, 390, 'Nano Cube (Heal Meat)', 300508), (294045, 294045, 250, 250, 'Nano Cube (Holiday Blues)', 233132), (293539, 293539, 250, 250, 'Nano Cube (Ire of the Entvined)', 233132), (304894, 304894, 1, 1, 'Nano Cube (Itch of the Tentacle)', 233132), (288041, 288041, 14, 14, 'Nano Cube (Kyr''Ozch Aid)', 233132), (288360, 288360, 14, 14, 'Nano Cube (Kyr''Ozch Prison)', 233132), (254440, 254440, 215, 215, 'Nano Cube (Magma Covering)', 233132), (305280, 305280, 250, 250, 'Nano Cube (Malaise of the Heretic)', 233132), (284656, 284656, 220, 220, 'Nano Cube (Meep)', 233132), (293947, 293947, 250, 250, 'Nano Cube (Memories of an Assassin)', 233132), (302137, 302137, 1, 1, 'Nano Cube (Michizure is Confused)', 302888), (294978, 294978, 250, 250, 'Nano Cube (Michizure''s Nanos)', 233132), (295894, 295894, 1, 1, 'Nano Cube (Michizure''s T-Shirt Extravaganza)', 294014), (305285, 305285, 390, 390, 'Nano Cube (Might of the Immortal)', 42449), (305867, 305867, 390, 390, 'Nano Cube (Morph Salad)', 300508), (305772, 305772, 390, 390, 'Nano Cube (Nano Burnout)', 300508), (304900, 304900, 390, 390, 'Nano Cube (Nanobot Tendrils)', 42449), (280788, 280788, 220, 220, 'Nano Cube (Nanoskill Deprival)', 233132), (285193, 285193, 14, 14, 'Nano Cube (Omni-Med Superior Healing)', 233132), (305780, 305780, 390, 390, 'Nano Cube (Pattern of Fragility)', 300508), (303344, 303344, 1, 1, 'Nano Cube (Pills Here)', 302888), (254436, 254436, 205, 205, 'Nano Cube (Poisoned Thorns)', 233132), (284616, 284616, 14, 14, 'Nano Cube (Prototype Formula Cancellation)', 233132), (304659, 304659, 1, 1, 'Nano Cube (Pumpking Jr)', 302888), (304053, 304053, 1, 1, 'Nano Cube (Pumpking)', 302888), (304054, 304054, 1, 1, 'Nano Cube (Pumpprince)', 302888), (305250, 305250, 250, 250, 'Nano Cube (Rage Immortal)', 42449), (301735, 301735, 14, 14, 'Nano Cube (Ravaged Mind)', 233132), (303209, 303209, 14, 14, 'Nano Cube (Reborn)', 233132), (304898, 304898, 390, 390, 'Nano Cube (Restorative Slime)', 42448), (304916, 304916, 250, 250, 'Nano Cube (Robot Recall)', 42449), (306027, 306027, 250, 250, 'Nano Cube (Robot Recall)', 42449), (303339, 303339, 1, 1, 'Nano Cube (Scary Spells)', 302888), (292156, 292156, 200, 200, 'Nano Cube (Sean is Confused)', 233132), (254442, 254442, 219, 219, 'Nano Cube (Self Illumination)', 233132), (281957, 281957, 14, 14, 'Nano Cube (Shield of Deadly Power)', 233132), (304904, 304904, 390, 390, 'Nano Cube (Slithering Chaos)', 42449), (305501, 305501, 250, 250, 'Nano Cube (Sloth of the Immortal One)', 233132), (305833, 305833, 390, 390, 'Nano Cube (Spiderman)', 300508), (303338, 303338, 1, 1, 'Nano Cube (Spooky Spells)', 302888), (303340, 303340, 1, 1, 'Nano Cube (Spoopy Spells)', 302888), (302678, 302678, 1, 1, 'Nano Cube (The Wisdom of Elessar)', 42449), (293268, 293268, 14, 14, 'Nano Cube (Unholy Rejuvination)', 233132), (280716, 280716, 220, 220, 'Nano Cube (Viral Health Tap)', 233132), (280787, 280787, 220, 220, 'Nano Cube (Viral Inactivation)', 233132), (280714, 280714, 220, 220, 'Nano Cube (Viral Nano Tap)', 233132), (288440, 288440, 14, 14, 'Nano Cube (Viral Pain)', 233132), (288729, 288729, 125, 125, 'Nano Cube (Viral Specialist Treatment)', 233132), (288442, 288442, 14, 14, 'Nano Cube (Viral Venom)', 233132), (304608, 304608, 1, 1, 'Nano Cube (Warr Time)', 42449), (305930, 305930, 390, 390, 'Nano Cube (Yummy)', 300508), (303342, 303342, 1, 1, 'Nano Cube (hehe xd)', 302888), (166249, 166250, 1, 199, 'Nano Delta Jobe Cluster - Faded (Feet)', 211113), (166250, 166252, 200, 300, 'Nano Delta Jobe Cluster - Faded (Feet)', 211113), (166259, 166260, 201, 300, 'Nano Delta Jobe Cluster - Shiny (Right-Wrist)', 211113), (166255, 166256, 201, 300, 'Nano Delta Refined Jobe Cluster - Bright (Right-Arm)', 211113), (253119, 253119, 1, 1, 'Nano Feast', 239175), (166301, 166302, 1, 200, 'Nano Formula Interrupt Modifier Jobe Cluster - Bright (Left-Hand)', 36003), (166297, 166298, 1, 200, 'Nano Formula Interrupt Modifier Jobe Cluster - Faded (Chest)', 36002), (166305, 166306, 1, 200, 'Nano Formula Interrupt Modifier Jobe Cluster - Shiny (Leg)', 36004), (166303, 166304, 201, 300, 'Nano Formula Interrupt Modifier Refined Jobe Cluster - Bright (Left-Hand)', 36003), (166299, 166300, 201, 300, 'Nano Formula Interrupt Modifier Refined Jobe Cluster - Faded (Chest)', 36002), (166307, 166308, 201, 300, 'Nano Formula Interrupt Modifier Refined Jobe Cluster - Shiny (Leg)', 36004), (95518, 95519, 20, 200, 'Nano Formula Recompiler', 119132), (211283, 211283, 1, 1, 'Nano Heal', 82201), (233837, 233837, 1, 1, 'Nano Heal', 239191), (211284, 211285, 1, 500, 'Nano Heal Item', 13326), (211286, 211287, 1, 500, 'Nano Heal Item', 13326), (163536, 163536, 1, 1, 'Nano Infused Fat Glands', 144711), (163600, 163600, 200, 200, 'Nano Infused Temper', 100333), (214313, 214314, 100, 199, 'Nano Master Pistol', 210170), (214315, 214316, 200, 299, 'Nano Master Pistol', 210170), (235266, 235266, 1, 1, 'Nano Modulation Chamber', 156514), (277502, 277503, 1, 199, 'Nano NCU - Type 01 (1/6)', 276943), (277504, 277505, 200, 299, 'Nano NCU - Type 01 (1/6)', 276943), (277506, 277506, 300, 300, 'Nano NCU - Type 01 (1/6)', 276943), (277507, 277508, 1, 199, 'Nano NCU - Type 02 (1/6)', 276943), (277509, 277510, 200, 299, 'Nano NCU - Type 02 (1/6)', 276943), (277511, 277511, 300, 300, 'Nano NCU - Type 02 (1/6)', 276943), (277532, 277533, 1, 199, 'Nano NCU - Type 03 (2/6)', 276944), (277534, 277535, 200, 299, 'Nano NCU - Type 03 (2/6)', 276944), (277536, 277536, 300, 300, 'Nano NCU - Type 03 (2/6)', 276944), (277512, 277513, 1, 199, 'Nano NCU - Type 04 (1/6)', 276943), (277514, 277515, 200, 299, 'Nano NCU - Type 04 (1/6)', 276943), (277516, 277516, 300, 300, 'Nano NCU - Type 04 (1/6)', 276943), (277541, 277542, 1, 199, 'Nano NCU - Type 05 (2/6)', 276944), (277543, 277544, 200, 299, 'Nano NCU - Type 05 (2/6)', 276944), (277545, 277545, 300, 300, 'Nano NCU - Type 05 (2/6)', 276944), (277562, 277563, 1, 199, 'Nano NCU - Type 06 (2/6)', 276944), (277564, 277565, 200, 299, 'Nano NCU - Type 06 (2/6)', 276944), (277566, 277566, 300, 300, 'Nano NCU - Type 06 (2/6)', 276944), (277612, 277613, 1, 199, 'Nano NCU - Type 07 (3/6)', 276945), (277614, 277615, 200, 299, 'Nano NCU - Type 07 (3/6)', 276945), (277616, 277616, 300, 300, 'Nano NCU - Type 07 (3/6)', 276945), (277517, 277518, 1, 199, 'Nano NCU - Type 08 (1/6)', 276943), (277519, 277520, 200, 299, 'Nano NCU - Type 08 (1/6)', 276943), (277521, 277521, 300, 300, 'Nano NCU - Type 08 (1/6)', 276943), (277546, 277547, 1, 199, 'Nano NCU - Type 09 (2/6)', 276944), (277548, 277549, 200, 299, 'Nano NCU - Type 09 (2/6)', 276944), (277550, 277550, 300, 300, 'Nano NCU - Type 09 (2/6)', 276944), (277567, 277568, 1, 199, 'Nano NCU - Type 0A (2/6)', 276944), (277569, 277570, 200, 299, 'Nano NCU - Type 0A (2/6)', 276944), (277571, 277571, 300, 300, 'Nano NCU - Type 0A (2/6)', 276944), (277617, 277618, 1, 199, 'Nano NCU - Type 0B (3/6)', 276945), (277619, 277620, 200, 299, 'Nano NCU - Type 0B (3/6)', 276945), (277621, 277621, 300, 300, 'Nano NCU - Type 0B (3/6)', 276945), (277582, 277583, 1, 199, 'Nano NCU - Type 0C (2/6)', 276944), (277584, 277585, 200, 299, 'Nano NCU - Type 0C (2/6)', 276944), (277586, 277586, 300, 300, 'Nano NCU - Type 0C (2/6)', 276944), (277632, 277633, 1, 199, 'Nano NCU - Type 0D (3/6)', 276945), (277634, 277635, 200, 299, 'Nano NCU - Type 0D (3/6)', 276945), (277636, 277636, 300, 300, 'Nano NCU - Type 0D (3/6)', 276945), (277662, 277663, 1, 199, 'Nano NCU - Type 0E (3/6)', 276945), (277664, 277665, 200, 299, 'Nano NCU - Type 0E (3/6)', 276945), (277666, 277666, 300, 300, 'Nano NCU - Type 0E (3/6)', 276945), (277714, 277715, 1, 199, 'Nano NCU - Type 0F (4/6)', 276916), (277716, 277717, 200, 299, 'Nano NCU - Type 0F (4/6)', 276916), (277718, 277718, 300, 300, 'Nano NCU - Type 0F (4/6)', 276916), (277522, 277523, 1, 199, 'Nano NCU - Type 10 (1/6)', 276943), (277524, 277525, 200, 299, 'Nano NCU - Type 10 (1/6)', 276943), (277526, 277526, 300, 300, 'Nano NCU - Type 10 (1/6)', 276943), (277552, 277553, 1, 199, 'Nano NCU - Type 11 (2/6)', 276944), (277554, 277555, 200, 299, 'Nano NCU - Type 11 (2/6)', 276944), (277556, 277556, 300, 300, 'Nano NCU - Type 11 (2/6)', 276944), (277572, 277573, 1, 199, 'Nano NCU - Type 12 (2/6)', 276944), (277574, 277575, 200, 299, 'Nano NCU - Type 12 (2/6)', 276944), (277576, 277576, 300, 300, 'Nano NCU - Type 12 (2/6)', 276944), (277622, 277623, 1, 199, 'Nano NCU - Type 13 (3/6)', 276945), (277624, 277625, 200, 299, 'Nano NCU - Type 13 (3/6)', 276945), (277626, 277626, 300, 300, 'Nano NCU - Type 13 (3/6)', 276945), (277587, 277588, 1, 199, 'Nano NCU - Type 14 (2/6)', 276944), (277589, 277590, 200, 299, 'Nano NCU - Type 14 (2/6)', 276944), (277591, 277591, 300, 300, 'Nano NCU - Type 14 (2/6)', 276944), (277637, 277638, 1, 199, 'Nano NCU - Type 15 (3/6)', 276945), (277639, 277640, 200, 299, 'Nano NCU - Type 15 (3/6)', 276945), (277641, 277641, 300, 300, 'Nano NCU - Type 15 (3/6)', 276945), (277667, 277668, 1, 199, 'Nano NCU - Type 16 (3/6)', 276945), (277669, 277670, 200, 299, 'Nano NCU - Type 16 (3/6)', 276945), (277671, 277671, 300, 300, 'Nano NCU - Type 16 (3/6)', 276945), (277719, 277720, 1, 199, 'Nano NCU - Type 17 (4/6)', 276916), (277721, 277722, 200, 299, 'Nano NCU - Type 17 (4/6)', 276916), (277723, 277723, 300, 300, 'Nano NCU - Type 17 (4/6)', 276916), (277597, 277598, 1, 199, 'Nano NCU - Type 18 (2/6)', 276944), (277599, 277600, 200, 299, 'Nano NCU - Type 18 (2/6)', 276944), (277601, 277601, 300, 300, 'Nano NCU - Type 18 (2/6)', 276944), (277647, 277648, 1, 199, 'Nano NCU - Type 19 (3/6)', 276945), (277649, 277650, 200, 299, 'Nano NCU - Type 19 (3/6)', 276945), (277651, 277651, 300, 300, 'Nano NCU - Type 19 (3/6)', 276945), (277677, 277678, 1, 199, 'Nano NCU - Type 1A (3/6)', 276945), (277679, 277680, 200, 299, 'Nano NCU - Type 1A (3/6)', 276945), (277681, 277681, 300, 300, 'Nano NCU - Type 1A (3/6)', 276945), (277729, 277730, 1, 199, 'Nano NCU - Type 1B (4/6)', 276916), (277731, 277732, 200, 299, 'Nano NCU - Type 1B (4/6)', 276916), (277733, 277733, 300, 300, 'Nano NCU - Type 1B (4/6)', 276916), (277692, 277693, 1, 199, 'Nano NCU - Type 1C (3/6)', 276945), (277694, 277695, 200, 299, 'Nano NCU - Type 1C (3/6)', 276945), (277696, 277696, 300, 300, 'Nano NCU - Type 1C (3/6)', 276945), (277744, 277745, 1, 199, 'Nano NCU - Type 1D (4/6)', 276916), (277746, 277747, 200, 299, 'Nano NCU - Type 1D (4/6)', 276916), (277748, 277748, 300, 300, 'Nano NCU - Type 1D (4/6)', 276916), (277764, 277765, 1, 199, 'Nano NCU - Type 1E (4/6)', 276916), (277766, 277767, 200, 299, 'Nano NCU - Type 1E (4/6)', 276916), (277768, 277768, 300, 300, 'Nano NCU - Type 1E (4/6)', 276916), (277789, 277790, 1, 199, 'Nano NCU - Type 1F (5/6)', 276917), (277791, 277792, 200, 299, 'Nano NCU - Type 1F (5/6)', 276917), (277793, 277793, 300, 300, 'Nano NCU - Type 1F (5/6)', 276917), (277527, 277528, 1, 199, 'Nano NCU - Type 20 (1/6)', 276943), (277529, 277530, 200, 299, 'Nano NCU - Type 20 (1/6)', 276943), (277531, 277531, 300, 300, 'Nano NCU - Type 20 (1/6)', 276943), (277557, 277558, 1, 199, 'Nano NCU - Type 21 (2/6)', 276944), (277559, 277560, 200, 299, 'Nano NCU - Type 21 (2/6)', 276944), (277561, 277561, 300, 300, 'Nano NCU - Type 21 (2/6)', 276944), (277577, 277578, 1, 199, 'Nano NCU - Type 22 (2/6)', 276944), (277579, 277580, 200, 299, 'Nano NCU - Type 22 (2/6)', 276944), (277581, 277581, 300, 300, 'Nano NCU - Type 22 (2/6)', 276944), (277627, 277628, 1, 199, 'Nano NCU - Type 23 (3/6)', 276945), (277629, 277630, 200, 299, 'Nano NCU - Type 23 (3/6)', 276945), (277631, 277631, 300, 300, 'Nano NCU - Type 23 (3/6)', 276945), (277592, 277593, 1, 199, 'Nano NCU - Type 24 (2/6)', 276944), (277594, 277595, 200, 299, 'Nano NCU - Type 24 (2/6)', 276944), (277596, 277596, 300, 300, 'Nano NCU - Type 24 (2/6)', 276944), (277642, 277643, 1, 199, 'Nano NCU - Type 25 (3/6)', 276945), (277644, 277645, 200, 299, 'Nano NCU - Type 25 (3/6)', 276945), (277646, 277646, 300, 300, 'Nano NCU - Type 25 (3/6)', 276945), (277672, 277673, 1, 199, 'Nano NCU - Type 26 (3/6)', 276945), (277674, 277675, 200, 299, 'Nano NCU - Type 26 (3/6)', 276945), (277676, 277676, 300, 300, 'Nano NCU - Type 26 (3/6)', 276945), (277724, 277725, 1, 199, 'Nano NCU - Type 27 (4/6)', 276916), (277726, 277727, 200, 299, 'Nano NCU - Type 27 (4/6)', 276916), (277728, 277728, 300, 300, 'Nano NCU - Type 27 (4/6)', 276916), (277602, 277603, 1, 199, 'Nano NCU - Type 28 (2/6)', 276944), (277604, 277605, 200, 299, 'Nano NCU - Type 28 (2/6)', 276944), (277606, 277606, 300, 300, 'Nano NCU - Type 28 (2/6)', 276944), (277652, 277653, 1, 199, 'Nano NCU - Type 29 (3/6)', 276945), (277654, 277655, 200, 299, 'Nano NCU - Type 29 (3/6)', 276945), (277656, 277656, 300, 300, 'Nano NCU - Type 29 (3/6)', 276945), (277682, 277683, 1, 199, 'Nano NCU - Type 2A (3/6)', 276945), (277684, 277685, 200, 299, 'Nano NCU - Type 2A (3/6)', 276945), (277686, 277686, 300, 300, 'Nano NCU - Type 2A (3/6)', 276945), (277734, 277735, 1, 199, 'Nano NCU - Type 2B (4/6)', 276916), (277736, 277737, 200, 299, 'Nano NCU - Type 2B (4/6)', 276916), (277738, 277738, 300, 300, 'Nano NCU - Type 2B (4/6)', 276916), (277697, 277698, 1, 199, 'Nano NCU - Type 2C (3/6)', 276945), (277699, 277700, 200, 299, 'Nano NCU - Type 2C (3/6)', 276945), (277701, 277701, 300, 300, 'Nano NCU - Type 2C (3/6)', 276945), (277749, 277750, 1, 199, 'Nano NCU - Type 2D (4/6)', 276916), (277751, 277752, 200, 299, 'Nano NCU - Type 2D (4/6)', 276916), (277753, 277753, 300, 300, 'Nano NCU - Type 2D (4/6)', 276916), (277769, 277770, 1, 199, 'Nano NCU - Type 2E (4/6)', 276916), (277771, 277772, 200, 299, 'Nano NCU - Type 2E (4/6)', 276916), (277773, 277773, 300, 300, 'Nano NCU - Type 2E (4/6)', 276916), (277794, 277795, 1, 199, 'Nano NCU - Type 2F (5/6)', 276917), (277796, 277797, 200, 299, 'Nano NCU - Type 2F (5/6)', 276917), (277798, 277798, 300, 300, 'Nano NCU - Type 2F (5/6)', 276917), (277607, 277608, 1, 199, 'Nano NCU - Type 30 (2/6)', 276944), (277609, 277610, 200, 299, 'Nano NCU - Type 30 (2/6)', 276944), (277611, 277611, 300, 300, 'Nano NCU - Type 30 (2/6)', 276944), (277657, 277658, 1, 199, 'Nano NCU - Type 31 (3/6)', 276945), (277659, 277660, 200, 299, 'Nano NCU - Type 31 (3/6)', 276945), (277661, 277661, 300, 300, 'Nano NCU - Type 31 (3/6)', 276945), (277687, 277688, 1, 199, 'Nano NCU - Type 32 (3/6)', 276945), (277689, 277690, 200, 299, 'Nano NCU - Type 32 (3/6)', 276945), (277691, 277691, 300, 300, 'Nano NCU - Type 32 (3/6)', 276945), (277739, 277740, 1, 199, 'Nano NCU - Type 33 (4/6)', 276916), (277741, 277742, 200, 299, 'Nano NCU - Type 33 (4/6)', 276916), (277743, 277743, 300, 300, 'Nano NCU - Type 33 (4/6)', 276916), (277702, 277703, 1, 199, 'Nano NCU - Type 34 (3/6)', 276945), (277704, 277705, 200, 299, 'Nano NCU - Type 34 (3/6)', 276945), (277706, 277706, 300, 300, 'Nano NCU - Type 34 (3/6)', 276945), (277754, 277755, 1, 199, 'Nano NCU - Type 35 (4/6)', 276916), (277756, 277757, 200, 299, 'Nano NCU - Type 35 (4/6)', 276916), (277758, 277758, 300, 300, 'Nano NCU - Type 35 (4/6)', 276916), (277774, 277775, 1, 199, 'Nano NCU - Type 36 (4/6)', 276916), (277776, 277777, 200, 299, 'Nano NCU - Type 36 (4/6)', 276916), (277778, 277778, 300, 300, 'Nano NCU - Type 36 (4/6)', 276916), (277799, 277800, 1, 199, 'Nano NCU - Type 37 (5/6)', 276917), (277801, 277802, 200, 299, 'Nano NCU - Type 37 (5/6)', 276917), (277803, 277803, 300, 300, 'Nano NCU - Type 37 (5/6)', 276917), (277707, 277708, 1, 199, 'Nano NCU - Type 38 (3/6)', 276945), (277709, 277710, 200, 299, 'Nano NCU - Type 38 (3/6)', 276945), (277711, 277711, 300, 300, 'Nano NCU - Type 38 (3/6)', 276945), (277759, 277760, 1, 199, 'Nano NCU - Type 39 (4/6)', 276916), (277761, 277762, 200, 299, 'Nano NCU - Type 39 (4/6)', 276916), (277763, 277763, 300, 300, 'Nano NCU - Type 39 (4/6)', 276916), (277779, 277780, 1, 199, 'Nano NCU - Type 3A (4/6)', 276916), (277781, 277782, 200, 299, 'Nano NCU - Type 3A (4/6)', 276916), (277783, 277783, 300, 300, 'Nano NCU - Type 3A (4/6)', 276916), (277804, 277805, 1, 199, 'Nano NCU - Type 3B (5/6)', 276917), (277806, 277807, 200, 299, 'Nano NCU - Type 3B (5/6)', 276917), (277808, 277808, 300, 300, 'Nano NCU - Type 3B (5/6)', 276917), (277784, 277785, 1, 199, 'Nano NCU - Type 3C (4/6)', 276916), (277786, 277787, 200, 299, 'Nano NCU - Type 3C (4/6)', 276916), (277788, 277788, 300, 300, 'Nano NCU - Type 3C (4/6)', 276916), (277809, 277810, 1, 199, 'Nano NCU - Type 3D (5/6)', 276917), (277811, 277812, 200, 299, 'Nano NCU - Type 3D (5/6)', 276917), (277813, 277813, 300, 300, 'Nano NCU - Type 3D (5/6)', 276917), (277814, 277815, 1, 199, 'Nano NCU - Type 3E (5/6)', 276917), (277816, 277817, 200, 299, 'Nano NCU - Type 3E (5/6)', 276917), (277818, 277818, 300, 300, 'Nano NCU - Type 3E (5/6)', 276917), (277819, 277820, 1, 199, 'Nano NCU - Type 3F (6/6)', 276918), (277821, 277822, 200, 299, 'Nano NCU - Type 3F (6/6)', 276918), (277823, 277823, 300, 300, 'Nano NCU - Type 3F (6/6)', 276918), (157106, 157106, 40, 40, 'Nano Nanite Elixir', 156496), (208068, 208068, 50, 50, 'Nano Nation - Atomizer', 13349), (208065, 208067, 40, 49, 'Nano Nation - Pulverizer', 13349), (157084, 157084, 40, 40, 'Nano Notum Wax', 156508), (166217, 166218, 1, 200, 'Nano Point Cost Modifier Jobe Cluster - Bright (Ear)', 36020), (166213, 166214, 1, 200, 'Nano Point Cost Modifier Jobe Cluster - Faded (Left-Arm)', 36019), (166221, 166222, 1, 200, 'Nano Point Cost Modifier Jobe Cluster - Shiny (Waist)', 36021), (166219, 166220, 201, 300, 'Nano Point Cost Modifier Refined Jobe Cluster - Bright (Ear)', 36020), (166215, 166216, 201, 300, 'Nano Point Cost Modifier Refined Jobe Cluster - Faded (Left-Arm)', 36019), (166223, 166224, 201, 300, 'Nano Point Cost Modifier Refined Jobe Cluster - Shiny (Waist)', 36021), (101422, 101423, 1, 200, 'Nano Pool Cluster - Bright (Head)', 35993), (101420, 101421, 1, 200, 'Nano Pool Cluster - Faded (Waist)', 35992), (101424, 101554, 1, 200, 'Nano Pool Cluster - Shiny (Chest)', 35994), (165729, 165730, 201, 300, 'Nano Pool Refined Cluster - Bright (Head)', 35993), (165727, 165728, 201, 300, 'Nano Pool Refined Cluster - Faded (Waist)', 35992), (165731, 165732, 201, 300, 'Nano Pool Refined Cluster - Shiny (Chest)', 35994), (101707, 101708, 1, 200, 'Nano Progra Cluster - Bright (Eye)', 36014), (101705, 101706, 1, 200, 'Nano Progra Cluster - Faded (Right-Hand)', 36013), (101709, 101710, 1, 200, 'Nano Progra Cluster - Shiny (Head)', 36015), (165885, 165886, 201, 300, 'Nano Progra Refined Cluster - Bright (Eye)', 36014), (165883, 165884, 201, 300, 'Nano Progra Refined Cluster - Faded (Right-Hand)', 36013), (165887, 165888, 201, 300, 'Nano Progra Refined Cluster - Shiny (Head)', 36015), (161699, 161699, 1, 1, 'Nano Programming Interface', 99279), (215250, 215250, 100, 100, 'Nano Programming Logistics Assistant', 215258), (55685, 55684, 1, 200, 'Nano Programming Tutoring Device', 300884), (295867, 295867, 1, 1, 'Nano Programs', 277964), (137277, 137278, 1, 200, 'Nano Pylon', 130748), (101384, 101385, 1, 200, 'Nano Resist Cluster - Bright (Right-Wrist)', 35993), (101382, 101383, 1, 200, 'Nano Resist Cluster - Faded (Left-Wrist)', 35992), (101386, 101387, 1, 200, 'Nano Resist Cluster - Shiny (Head)', 35994), (165525, 165526, 201, 300, 'Nano Resist Refined Cluster - Bright (Right-Wrist)', 35993), (165523, 165524, 201, 300, 'Nano Resist Refined Cluster - Faded (Left-Wrist)', 35992), (165527, 165528, 201, 300, 'Nano Resist Refined Cluster - Shiny (Head)', 35994), (215244, 215244, 100, 100, 'Nano Scarabaeus of Control', 11646), (215243, 215243, 100, 100, 'Nano Scarabaeus of Initiative', 11656), (215240, 215240, 100, 100, 'Nano Scarabaeus of Plenty', 11655), (215241, 215241, 100, 100, 'Nano Scarabaeus of Resistance', 11650), (215242, 215242, 100, 100, 'Nano Scarabaeus of Saving', 11660), (215245, 215245, 100, 100, 'Nano Scarabaeus of Versatility', 11651), (150923, 150924, 1, 250, 'Nano Sensor', 149940), (202576, 202576, 300, 300, 'Nano Service Tower Brain', 203577), (227194, 227194, 1, 1, 'Nano Shakes', 239239), (218780, 218781, 1, 199, 'Nano Spindle', 218757), (218781, 218782, 200, 400, 'Nano Spindle', 218757), (214317, 214317, 300, 300, 'Nano Star Pistol', 210170), (269184, 269185, 1, 300, 'Nano Targeting Helper', 99274), (215234, 215234, 100, 100, 'Nano Technician NICS', 158233), (269945, 269945, 250, 250, 'Nano Technology Program', 269950), (248164, 248164, 1, 1, 'Nano Transmission', 255676), (155689, 155689, 1, 1, 'Nano enhanced notum infected biotechnology', 156558), (123217, 123218, 110, 124, 'Nano-Charged Assault Rifle', 45783), (123237, 123238, 110, 124, 'Nano-Charged Rifle', 45782), (271038, 271039, 1, 300, 'Nano-Charged Stun Glove - 000', 45784), (271040, 271041, 1, 300, 'Nano-Charged Stun Glove - 010', 45784), (271042, 271043, 1, 300, 'Nano-Charged Stun Glove - 050', 45784), (271044, 271045, 1, 300, 'Nano-Charged Stun Glove - 070', 45784), (271046, 271047, 1, 300, 'Nano-Charged Stun Glove - 870', 45784), (155779, 155779, 10, 10, 'Nano-Enhanced Cloaking Stim', 11707), (199378, 199378, 200, 200, 'Nano-Injected Bau Charger Armor Boots', 22878), (199399, 199399, 200, 200, 'Nano-Injected Bau Charger Armor Gloves', 22939), (199420, 199420, 200, 200, 'Nano-Injected Bau Charger Armor Helmet', 31738), (199441, 199441, 200, 200, 'Nano-Injected Bau Charger Armor Pants', 22928), (199462, 199462, 200, 200, 'Nano-Injected Bau Charger Armor Sleeves', 22889), (199483, 199483, 200, 200, 'Nano-Injected Bau Charger Body Armor', 22981), (199504, 199504, 200, 200, 'Nano-Injected Bau Charger Female Body Armor', 22942), (137269, 137270, 1, 200, 'Nano-Interfaced Cooling System', 130746), (202577, 202577, 300, 300, 'Nano-Supervised Service Tower Library', 83299), (290191, 290191, 1, 1, 'Nano-Technician Action Figure', 290564), (270766, 270766, 1, 1, 'Nano-Technician Nanodeck', 270749), (248264, 248264, 1, 1, 'Nano-Technician Nanoprogram Container', 292141), (290092, 290092, 1, 1, 'Nano-Technician Shirt', 287356), (101647, 101648, 1, 200, 'NanoC. Init Cluster - Bright (Eye)', 35993), (101645, 101646, 1, 200, 'NanoC. Init Cluster - Faded (Chest)', 35992), (101649, 101650, 1, 200, 'NanoC. Init Cluster - Shiny (Head)', 35994), (165825, 165826, 201, 300, 'NanoC. Init Refined Cluster - Bright (Eye)', 35993), (165823, 165824, 201, 300, 'NanoC. Init Refined Cluster - Faded (Chest)', 35992), (165827, 165828, 201, 300, 'NanoC. Init Refined Cluster - Shiny (Head)', 35994), (203122, 203122, 30, 30, 'NanoCrystal (A Sergeant''s Knowledge)', 12226), (163097, 163097, 149, 149, 'NanoCrystal (Active Viral Compressor)', 42450), (203124, 203124, 36, 36, 'NanoCrystal (Alleysweeper)', 12226), (161097, 161097, 103, 103, 'NanoCrystal (Anger of the Porcupine)', 42452), (202853, 202853, 133, 133, 'NanoCrystal (Anvils Bane)', 42451), (203838, 203838, 74, 74, 'NanoCrystal (Appeal for Freedom)', 12258), (203120, 203120, 161, 161, 'NanoCrystal (Art of peace)', 42451), (168700, 168700, 390, 390, 'NanoCrystal (Avalanche of Plasma)', 42449), (162731, 162731, 132, 132, 'NanoCrystal (Backyard Revitalization)', 42448), (161154, 161154, 47, 47, 'NanoCrystal (Ballad of Smoke)', 12226), (161156, 161156, 99, 99, 'NanoCrystal (Ballad of the Desperado)', 12259), (161158, 161158, 142, 142, 'NanoCrystal (Ballad of the Pistolero)', 42451), (161160, 161160, 169, 169, 'NanoCrystal (Ballad of the Plains Wanderer)', 42451), (203602, 203602, 168, 168, 'NanoCrystal (Bargain with Fate)', 42450), (203833, 203833, 24, 24, 'NanoCrystal (Beg for Freedom)', 12225), (200590, 200590, 390, 390, 'NanoCrystal (Belith''s Blessing)', 42448), (203951, 203951, 78, 78, 'NanoCrystal (Beseech Freedom)', 12258), (162725, 162725, 93, 93, 'NanoCrystal (Biosign Rejuvenator)', 12256), (161148, 161148, 103, 103, 'NanoCrystal (Bite of the Wind)', 42451), (162723, 162723, 70, 70, 'NanoCrystal (Blackmarket Prescription)', 12256), (160910, 160910, 66, 66, 'NanoCrystal (Blanket of Shadows)', 12259), (202851, 202851, 59, 59, 'NanoCrystal (Bone Crusher)', 12259), (204315, 204315, 80, 80, 'NanoCrystal (Boon of the Forester)', 12260), (204317, 204317, 136, 136, 'NanoCrystal (Boon of the Ranger)', 42452), (204319, 204319, 188, 188, 'NanoCrystal (Boon of the Wanderer)', 42452), (203787, 203787, 80, 80, 'NanoCrystal (Bought Freedom)', 12258), (203791, 203791, 160, 160, 'NanoCrystal (Bought Indulgence)', 42450), (203798, 203798, 52, 52, 'NanoCrystal (Break Chains)', 12258), (203843, 203843, 149, 149, 'NanoCrystal (Bribe for Freedom)', 42450), (203979, 203979, 63, 63, 'NanoCrystal (Burst Bonds (Other))', 12258), (203598, 203598, 53, 53, 'NanoCrystal (Burst Bonds)', 12258), (203660, 203660, 62, 62, 'NanoCrystal (Bypass Limitations)', 12258), (203206, 203206, 199, 199, 'NanoCrystal (Call of the Maelstorm)', 42451), (202847, 202847, 197, 197, 'NanoCrystal (Calling of Thor)', 42451), (202263, 202263, 195, 195, 'NanoCrystal (Candycane)', 42449), (162733, 162733, 146, 146, 'NanoCrystal (Cellular Crashcart)', 42448), (168662, 168662, 390, 390, 'NanoCrystal (Challenger of Warr)', 42451), (163509, 163509, 390, 390, 'NanoCrystal (Charm Immunity)', 42450), (203662, 203662, 109, 109, 'NanoCrystal (Circumvent Restrictions)', 42450), (160896, 160896, 129, 129, 'NanoCrystal (Cloak of Night)', 42451), (203672, 203672, 164, 164, 'NanoCrystal (Close Escape)', 42450), (204344, 204344, 193, 193, 'NanoCrystal (Coherent Polarized Screening)', 42452), (204356, 204356, 193, 193, 'NanoCrystal (Coherent Sloughing Assault Shield)', 42452), (204352, 204352, 133, 133, 'NanoCrystal (Coherent Sloughing Defensive Shield)', 42452), (204348, 204348, 83, 83, 'NanoCrystal (Coherent Sloughing Protective Barrier)', 12260), (203864, 203864, 128, 128, 'NanoCrystal (Conductive Spike)', 42450), (201934, 201934, 190, 190, 'NanoCrystal (Corruption of The Pest)', 42449), (168688, 168688, 390, 390, 'NanoCrystal (Crazy Heal)', 42448), (203126, 203126, 68, 68, 'NanoCrystal (Crowd Disperser)', 12259), (168704, 168704, 390, 390, 'NanoCrystal (Crown of Ice)', 42449), (161498, 161498, 83, 83, 'NanoCrystal (Cyclic Arctic Gale)', 12260), (161500, 161500, 126, 126, 'NanoCrystal (Cyclic Biting Blades)', 42452), (161502, 161502, 40, 40, 'NanoCrystal (Cyclic Cloak of Fire)', 12227), (161504, 161504, 1, 1, 'NanoCrystal (Cyclic Coat of Barbs)', 12227), (161506, 161506, 132, 132, 'NanoCrystal (Cyclic Corrosive Barrier)', 42452), (161516, 161516, 24, 24, 'NanoCrystal (Cyclic Enshroud with Barbs)', 12227), (161518, 161518, 136, 136, 'NanoCrystal (Cyclic Fiery Vengeance)', 42452), (161520, 161520, 66, 66, 'NanoCrystal (Cyclic Fiery Wrap)', 12260), (161522, 161522, 30, 30, 'NanoCrystal (Cyclic Firefly''s Fury)', 12227), (161532, 161532, 10, 10, 'NanoCrystal (Cyclic Frost With Snow)', 12227), (161534, 161534, 90, 90, 'NanoCrystal (Cyclic Guard of the Grizzly)', 12260), (161536, 161536, 142, 142, 'NanoCrystal (Cyclic Interlocking Barbs)', 42452), (161538, 161538, 17, 17, 'NanoCrystal (Cyclic Jacket of Blades)', 12227), (161548, 161548, 152, 152, 'NanoCrystal (Cyclic Lightning''s Child)', 42452), (161550, 161550, 109, 109, 'NanoCrystal (Cyclic Magma Coating)', 42452), (161552, 161552, 99, 99, 'NanoCrystal (Cyclic Nest of Vipers)', 12260), (161554, 161554, 149, 149, 'NanoCrystal (Cyclic Personal Blizzard)', 42452), (161564, 161564, 57, 57, 'NanoCrystal (Cyclic Porcupine Barrier)', 12260), (161566, 161566, 119, 119, 'NanoCrystal (Cyclic Protection of the Storm)', 42452), (161568, 161568, 139, 139, 'NanoCrystal (Cyclic Razor Barrier)', 42452), (161570, 161570, 159, 159, 'NanoCrystal (Cyclic Retaliatory Venom Spit)', 42452), (161588, 161588, 169, 169, 'NanoCrystal (Cyclic Retribution of the Aesir)', 42452), (161590, 161590, 165, 165, 'NanoCrystal (Cyclic Revenge of the Valkyrie)', 42452), (161592, 161592, 73, 73, 'NanoCrystal (Cyclic Skin of the Toad)', 12260), (161594, 161594, 47, 47, 'NanoCrystal (Cyclic Sparking Touch)', 12227), (161596, 161596, 162, 162, 'NanoCrystal (Cyclic Wings of the Phoenix)', 42452), (161168, 161168, 165, 165, 'NanoCrystal (Dance of the Dervish)', 42451), (168669, 168669, 390, 390, 'NanoCrystal (Death''s Betrayer)', 42448), (163084, 163084, 93, 93, 'NanoCrystal (Deck Recoder)', 12258), (203955, 203955, 169, 169, 'NanoCrystal (Demand Freedom)', 42450), (203802, 203802, 154, 154, 'NanoCrystal (Demolish Shackles)', 42450), (168664, 168664, 390, 390, 'NanoCrystal (Devastation of Warr)', 42451), (161166, 161166, 139, 139, 'NanoCrystal (Dichotomy of Nature)', 42451), (203975, 203975, 166, 166, 'NanoCrystal (Dire Circumstance)', 42450), (161152, 161152, 169, 169, 'NanoCrystal (Division of the Winds)', 42451), (203668, 203668, 57, 57, 'NanoCrystal (Dodge Pursuers)', 12258), (162735, 162735, 152, 152, 'NanoCrystal (Dr Hack ''n Quack)', 42448), (168696, 168696, 390, 390, 'NanoCrystal (Dust Mirror Shield)', 42452), (202817, 202817, 173, 173, 'NanoCrystal (Edge of Diamond)', 42451), (202792, 202792, 89, 89, 'NanoCrystal (Edge of Molybdenum)', 12259), (202724, 202724, 8, 8, 'NanoCrystal (Edge of Steel)', 12226), (202794, 202794, 133, 133, 'NanoCrystal (Edge of Titanium)', 42451), (202740, 202740, 30, 30, 'NanoCrystal (Edge of the Barber)', 12226), (202775, 202775, 59, 59, 'NanoCrystal (Edge of the Buccaneer)', 12259), (161677, 161677, 60, 60, 'NanoCrystal (Eleet Friend)', 12259), (165439, 165439, 1, 1, 'NanoCrystal (Elementary Combat Booster)', 12226), (165437, 165437, 1, 1, 'NanoCrystal (Elementary Damage Booster)', 12225), (168712, 168712, 1, 1, 'NanoCrystal (Elementary Energy Bolt)', 12225), (165441, 165441, 1, 1, 'NanoCrystal (Elementary Life Booster)', 12228), (203872, 203872, 40, 40, 'NanoCrystal (Energize Shell)', 12225), (203868, 203868, 197, 197, 'NanoCrystal (Energized Casing of the Faithful Servant)', 42450), (201522, 201522, 80, 80, 'NanoCrystal (Enfraam''s Toolkit)', 12259), (203812, 203812, 73, 73, 'NanoCrystal (Escape Captivation)', 12258), (203664, 203664, 146, 146, 'NanoCrystal (Evade Responsibility)', 42450), (203670, 203670, 110, 110, 'NanoCrystal (Evade the Chase)', 42450), (203856, 203856, 107, 107, 'NanoCrystal (Exoskeleton Pulse)', 42450), (161164, 161164, 93, 93, 'NanoCrystal (Fangs of the Snake)', 12259), (204304, 204304, 90, 90, 'NanoCrystal (Feelings of Mortality)', 12256), (168890, 168890, 390, 390, 'NanoCrystal (Fists of Uncertainty)', 42450), (203606, 203606, 88, 88, 'NanoCrystal (Fluctuate Manifestation)', 12258), (203212, 203212, 63, 63, 'NanoCrystal (Force of the Thunderclap)', 12259), (160829, 160829, 179, 179, 'NanoCrystal (Form of The Executioner)', 42450), (203985, 203985, 198, 198, 'NanoCrystal (Fortune''s Smile)', 42450), (204309, 204309, 58, 58, 'NanoCrystal (Freedom of the Forester)', 12260), (204311, 204311, 116, 116, 'NanoCrystal (Freedom of the Ranger)', 42452), (204313, 204313, 179, 179, 'NanoCrystal (Freedom of the Wanderer)', 42452), (162322, 162322, 179, 179, 'NanoCrystal (Frenzy of Fur)', 300921), (162495, 162495, 169, 169, 'NanoCrystal (Frenzy of Shells)', 42451), (168667, 168667, 390, 390, 'NanoCrystal (Gift of Life)', 42448), (203971, 203971, 170, 170, 'NanoCrystal (Gift of the Travelling Salesman)', 42450), (203866, 203866, 154, 154, 'NanoCrystal (Greater Conductive Spike)', 42450), (203874, 203874, 76, 76, 'NanoCrystal (Greater Energize Shell)', 12258), (203860, 203860, 192, 192, 'NanoCrystal (Greater Exoskeleton Pulse)', 42450), (204342, 204342, 149, 149, 'NanoCrystal (Greater Polarized Screening)', 42452), (162590, 162590, 132, 132, 'NanoCrystal (Grid Phase Accelerator (Team))', 42450), (162592, 162592, 40, 40, 'NanoCrystal (Grid Runner (Team))', 12225), (162594, 162594, 76, 76, 'NanoCrystal (Grid Surfer (Team))', 12258), (162596, 162596, 156, 156, 'NanoCrystal (Gridspace Freedom (Team))', 42450), (203973, 203973, 94, 94, 'NanoCrystal (Grim Circumstance)', 12258), (160823, 160823, 93, 93, 'NanoCrystal (Guidance of The Executioner)', 12258), (203666, 203666, 200, 200, 'NanoCrystal (Guile of the Snake Oil Seller)', 42450), (162598, 162598, 27, 27, 'NanoCrystal (Hack Grid Vector (Team))', 12225), (162719, 162719, 37, 37, 'NanoCrystal (Hacked Diagnosis)', 12228), (203146, 203146, 80, 80, 'NanoCrystal (Hail of Metal)', 12259), (203214, 203214, 20, 20, 'NanoCrystal (Harnessed Lightning)', 12226), (203210, 203210, 121, 121, 'NanoCrystal (Imminent Storm)', 42451), (168710, 168710, 390, 390, 'NanoCrystal (Implosion)', 42449), (168888, 168888, 390, 390, 'NanoCrystal (Inner Glory)', 42448), (150014, 150014, 47, 47, 'NanoCrystal (Intense Mind Blast)', 12224), (204373, 204373, 60, 60, 'NanoCrystal (Intrusive Aura Cancellation)', 12258), (204365, 204365, 97, 97, 'NanoCrystal (Intrusive Aura of Binding)', 12257), (204363, 204363, 60, 60, 'NanoCrystal (Intrusive Aura of Entanglement)', 12257), (204367, 204367, 132, 132, 'NanoCrystal (Intrusive Aura of Malaise)', 42449), (204369, 204369, 166, 166, 'NanoCrystal (Intrusive Aura of Sloth)', 42449), (204371, 204371, 199, 199, 'NanoCrystal (Intrusive Aura of the Humble Servant)', 42449), (203804, 203804, 200, 200, 'NanoCrystal (Jail Break)', 42450), (150015, 150015, 44, 44, 'NanoCrystal (Jealous Thoughts)', 12226), (163082, 163082, 63, 63, 'NanoCrystal (Jury-rigged NCU Analyzer)', 12258), (162721, 162721, 53, 53, 'NanoCrystal (Kitchen-sink Surgery)', 12256), (203136, 203136, 33, 33, 'NanoCrystal (Laser Surgery)', 12226), (168694, 168694, 390, 390, 'NanoCrystal (Layers of Dust)', 42452), (162600, 162600, 57, 57, 'NanoCrystal (Leech Grid Vector (Team))', 12258), (161675, 161675, 30, 30, 'NanoCrystal (Leet Friend)', 12226), (161679, 161679, 106, 106, 'NanoCrystal (Leetas Friend)', 42451), (203862, 203862, 102, 102, 'NanoCrystal (Lesser Conductive Spike)', 42450), (203870, 203870, 14, 14, 'NanoCrystal (Lesser Energize Shell)', 12225), (203853, 203853, 71, 71, 'NanoCrystal (Lesser Exoskeleton Pulse)', 12258), (204340, 204340, 52, 52, 'NanoCrystal (Lesser Polarized Screening)', 12260), (162497, 162497, 14, 14, 'NanoCrystal (Lesser Suppressor)', 12226), (201938, 201938, 193, 193, 'NanoCrystal (Lick of the Pest)', 42452), (162602, 162602, 14, 14, 'NanoCrystal (Limited Grid Jump (Team))', 12225), (201524, 201524, 166, 166, 'NanoCrystal (Living Codex of Izgimmer)', 42451), (203604, 203604, 200, 200, 'NanoCrystal (Luck''s Lost Twin)', 42450), (161095, 161095, 57, 57, 'NanoCrystal (Lure of the Pincushion)', 12260), (162487, 162487, 73, 73, 'NanoCrystal (Major Suppressor)', 12259), (203814, 203814, 169, 169, 'NanoCrystal (Master Escapologist)', 42450), (160898, 160898, 169, 169, 'NanoCrystal (Meld With Background)', 42451), (150013, 150013, 87, 87, 'NanoCrystal (Mental Fugue)', 12259), (168708, 168708, 390, 390, 'NanoCrystal (Message from Sol)', 42449), (203140, 203140, 170, 170, 'NanoCrystal (Metal Barrage)', 42451), (203148, 203148, 56, 56, 'NanoCrystal (Metal Rain)', 12259), (203144, 203144, 106, 106, 'NanoCrystal (Metal Storm)', 42451), (203150, 203150, 31, 31, 'NanoCrystal (Metal Stream)', 12226), (203142, 203142, 140, 140, 'NanoCrystal (Metal Strike)', 42451), (150010, 150010, 50, 50, 'NanoCrystal (Mind Pulse)', 12224), (203851, 203851, 36, 36, 'NanoCrystal (Minor Exoskeleton Pulse)', 12225), (203608, 203608, 120, 120, 'NanoCrystal (Modulate Manifestation)', 42450), (168660, 168660, 390, 390, 'NanoCrystal (Mongo Annihilator!)', 42448), (99671, 99671, 1, 1, 'NanoCrystal (Monster Mezz Attack)', 12226), (162996, 162996, 20, 20, 'NanoCrystal (NCU Compressor)', 12225), (162727, 162727, 109, 109, 'NanoCrystal (Nano Cauterization)', 42448), (203840, 203840, 101, 101, 'NanoCrystal (Negotiate for Freedom)', 42450), (204306, 204306, 180, 180, 'NanoCrystal (One Foot in the Grave)', 42448), (150011, 150011, 87, 87, 'NanoCrystal (Oppressive Atmosphere)', 12258), (162604, 162604, 106, 106, 'NanoCrystal (Partial Grid Jump (Team))', 42450), (203967, 203967, 67, 67, 'NanoCrystal (Passage for One)', 12258), (160827, 160827, 149, 149, 'NanoCrystal (Path of The Executioner)', 42450), (203847, 203847, 199, 199, 'NanoCrystal (Pay Bail)', 42450), (203953, 203953, 124, 124, 'NanoCrystal (Petition Freedom)', 42450), (150008, 150008, 44, 44, 'NanoCrystal (Poisoned Relationship)', 12224), (204336, 204336, 84, 84, 'NanoCrystal (Polarized Screening)', 12260), (203132, 203132, 64, 64, 'NanoCrystal (Power Burst)', 12259), (203134, 203134, 38, 38, 'NanoCrystal (Power Volley)', 12226), (203208, 203208, 163, 163, 'NanoCrystal (Power of the Thunderhead)', 42451), (162842, 162842, 152, 152, 'NanoCrystal (Presence of the Dominator)', 42451), (162838, 162838, 43, 43, 'NanoCrystal (Presence of the Master)', 12226), (162840, 162840, 113, 113, 'NanoCrystal (Presence of the Overlord)', 42451), (168894, 168894, 390, 390, 'NanoCrystal (Profound Anger)', 42449), (168692, 168692, 390, 390, 'NanoCrystal (Purr of the Kitten)', 42450), (203836, 203836, 49, 49, 'NanoCrystal (Pursuade for Freedom)', 12225), (120500, 120500, 103, 103, 'NanoCrystal (Quantum Wings)', 42450), (163088, 163088, 132, 132, 'NanoCrystal (QuarkStor NCU Core)', 42450), (202857, 202857, 197, 197, 'NanoCrystal (Rampage of Juggernaut)', 42451), (202819, 202819, 197, 197, 'NanoCrystal (Rampage of the Berserker)', 42451), (162717, 162717, 24, 24, 'NanoCrystal (Rebinding Sutures)', 12228), (163086, 163086, 123, 123, 'NanoCrystal (Recompiling Memory Analyzer)', 42450), (168698, 168698, 390, 390, 'NanoCrystal (Regenerative Boost)', 42448), (162715, 162715, 7, 7, 'NanoCrystal (Relieving Salve)', 12228), (203983, 203983, 152, 152, 'NanoCrystal (Rend Bonds (Other))', 42450), (203600, 203600, 133, 133, 'NanoCrystal (Rend Bonds)', 42450), (203808, 203808, 139, 139, 'NanoCrystal (Rend Constraints)', 42450), (203949, 203949, 36, 36, 'NanoCrystal (Request Freedom)', 12225), (203969, 203969, 118, 118, 'NanoCrystal (Reroute Impediments)', 42450), (201936, 201936, 200, 200, 'NanoCrystal (Resonance Blast)', 42449), (163080, 163080, 40, 40, 'NanoCrystal (Retool NCU)', 12225), (203977, 203977, 21, 21, 'NanoCrystal (Scatter Bonds (Other))', 12225), (203594, 203594, 10, 10, 'NanoCrystal (Scatter Bonds)', 12225), (163096, 163096, 162, 162, 'NanoCrystal (Sentient Viral Recoder)', 42450), (160900, 160900, 17, 17, 'NanoCrystal (Shadow Filter)', 12226), (203981, 203981, 107, 107, 'NanoCrystal (Shatter Bonds (Other))', 42450), (203596, 203596, 90, 90, 'NanoCrystal (Shatter Bonds)', 12258), (203800, 203800, 103, 103, 'NanoCrystal (Shatter Chains)', 42450), (150009, 150009, 87, 87, 'NanoCrystal (Shatter Thought)', 12259), (168684, 168684, 390, 390, 'NanoCrystal (Sheath In Flames)', 42452), (202261, 202261, 192, 192, 'NanoCrystal (Shield of the Obedient Servant)', 42452), (162493, 162493, 156, 156, 'NanoCrystal (Shower With Lead)', 42451), (203658, 203658, 22, 22, 'NanoCrystal (Sidestep the Blame)', 12225), (168686, 168686, 390, 390, 'NanoCrystal (Silent of the Lamb)', 42451), (202827, 202827, 8, 8, 'NanoCrystal (Skill of the Butcher)', 12226), (202835, 202835, 133, 133, 'NanoCrystal (Skill of the Guardian)', 42451), (202839, 202839, 197, 197, 'NanoCrystal (Skill of the Guillotine)', 42451), (202833, 202833, 89, 89, 'NanoCrystal (Skill of the Highlander)', 12259), (202837, 202837, 173, 173, 'NanoCrystal (Skill of the Reaper)', 42451), (202829, 202829, 30, 30, 'NanoCrystal (Skill of the Savage)', 12226), (202831, 202831, 59, 59, 'NanoCrystal (Skill of the Viking)', 12259), (204354, 204354, 181, 181, 'NanoCrystal (Sloughing Assault Shield)', 42452), (204423, 204423, 196, 196, 'NanoCrystal (Sloughing Combat Field)', 42452), (204350, 204350, 107, 107, 'NanoCrystal (Sloughing Defensive Shield)', 42452), (204346, 204346, 72, 72, 'NanoCrystal (Sloughing Protective Barrier)', 12260), (204419, 204419, 93, 93, 'NanoCrystal (Sloughing Protective Field)', 12260), (204421, 204421, 141, 141, 'NanoCrystal (Sloughing Shielding Field)', 42452), (203138, 203138, 200, 200, 'NanoCrystal (Soldier Clip Junkie)', 42451), (161681, 161681, 152, 152, 'NanoCrystal (Soleet Friend)', 42451), (203957, 203957, 200, 200, 'NanoCrystal (Solicit Freedom)', 42450), (162491, 162491, 136, 136, 'NanoCrystal (Spray With Lead)', 42451), (168706, 168706, 390, 390, 'NanoCrystal (Stamp of Authority)', 42449), (150007, 150007, 93, 93, 'NanoCrystal (Steal Energy)', 12258), (160825, 160825, 132, 132, 'NanoCrystal (Steps of The Executioner)', 42450), (161150, 161150, 142, 142, 'NanoCrystal (Stormedge)', 42451), (161162, 161162, 40, 40, 'NanoCrystal (Strength of the Hummingbird)', 12226), (203845, 203845, 174, 174, 'NanoCrystal (Subpoena for Freedom)', 42450), (203610, 203610, 163, 163, 'NanoCrystal (Succor of Expediuum)', 42450), (203810, 203810, 180, 180, 'NanoCrystal (Sunder Constraints)', 42450), (203858, 203858, 150, 150, 'NanoCrystal (Superior Exoskeleton Pulse)', 42450), (204338, 204338, 118, 118, 'NanoCrystal (Superior Polarized Screening)', 42452), (162485, 162485, 33, 33, 'NanoCrystal (Suppressor)', 12226), (162489, 162489, 106, 106, 'NanoCrystal (Supreme Suppressor)', 42451), (203128, 203128, 178, 178, 'NanoCrystal (Swiss Cheese)', 42451), (162729, 162729, 123, 123, 'NanoCrystal (Systolic Equalizer)', 42448), (202865, 202865, 93, 93, 'NanoCrystal (Talon of the Anun)', 12259), (202861, 202861, 174, 174, 'NanoCrystal (Talon of the Dragon)', 42451), (202869, 202869, 35, 35, 'NanoCrystal (Talon of the Eagle)', 12226), (202867, 202867, 56, 56, 'NanoCrystal (Talon of the Gryphon)', 12259), (202871, 202871, 10, 10, 'NanoCrystal (Talon of the Hawk)', 12226), (202863, 202863, 129, 129, 'NanoCrystal (Talon of the Roc)', 42451), (203806, 203806, 68, 68, 'NanoCrystal (Tear Constraints)', 12258), (168690, 168690, 390, 390, 'NanoCrystal (Teeth of the Leet)', 42450), (203959, 203959, 42, 42, 'NanoCrystal (The Claim to Freedom)', 12225), (203130, 203130, 88, 88, 'NanoCrystal (The Power of Three)', 12259), (203963, 203963, 137, 137, 'NanoCrystal (The Prerogative of Mobility)', 42450), (203965, 203965, 180, 180, 'NanoCrystal (The Privilege of Speed)', 42450), (203961, 203961, 94, 94, 'NanoCrystal (The Right to Movement)', 12258), (168702, 168702, 390, 390, 'NanoCrystal (Thermal Detonation)', 42449), (161091, 161091, 142, 142, 'NanoCrystal (Thorn of the Rose)', 42452), (202849, 202849, 8, 8, 'NanoCrystal (Threat of the Bully)', 12226), (202843, 202843, 133, 133, 'NanoCrystal (Thugs Glory)', 42451), (202841, 202841, 59, 59, 'NanoCrystal (Thugs Joy)', 12259), (202845, 202845, 173, 173, 'NanoCrystal (Thugs Jubilation)', 42451), (160821, 160821, 53, 53, 'NanoCrystal (Training of The Executioner)', 12258), (150006, 150006, 107, 107, 'NanoCrystal (Unlucky For Some)', 42451), (204428, 204428, 119, 119, 'NanoCrystal (Vaccine of Deprivation)', 42451), (204432, 204432, 197, 197, 'NanoCrystal (Vaccine of Divestiture)', 42451), (204430, 204430, 164, 164, 'NanoCrystal (Vaccine of Plundering)', 42451), (204426, 204426, 77, 77, 'NanoCrystal (Vaccine of Ransacking)', 12259), (161093, 161093, 169, 169, 'NanoCrystal (Vengeance of Nature)', 42452), (168923, 168923, 390, 390, 'NanoCrystal (Vision From Above)', 42449), (202859, 202859, 197, 197, 'NanoCrystal (Vlad''s Revenge)', 42451), (161146, 161146, 47, 47, 'NanoCrystal (Wind Slicer)', 12226), (202855, 202855, 173, 173, 'NanoCrystal (Wrecking Ball)', 42451), (203785, 203785, 40, 40, 'NanoCrystal (Writ of Mobility)', 12225), (203789, 203789, 120, 120, 'NanoCrystal (Writ of Passage)', 42450), (203793, 203793, 200, 200, 'NanoCrystal (Writ of the Errant Salesman)', 42450), (168892, 168892, 390, 390, 'NanoCrystal (Zen Master)', 42451), (302839, 302839, 190, 190, 'NanoCube (Aggressive Parasites)', 42449), (304363, 304363, 1, 1, 'NanoCube (Boot)', 233132), (306162, 306162, 1, 1, 'NanoCube (Boot)', 233132), (306163, 306163, 1, 1, 'NanoCube (Boot)', 233132), (302823, 302823, 200, 200, 'NanoCube (Night Terrors)', 42449), (302866, 302866, 219, 219, 'NanoCube (Shoe)', 233132), (40843, 40843, 1, 1, 'Nanobot Container', 20406), (158762, 158762, 1, 1, 'Nanobot Factory Unit', 159122), (275382, 275382, 1, 1, 'Nanobot Infusion Device', 11707), (280785, 281157, 1, 300, 'Nanodeck Activation Device', 280784), (81967, 81967, 1, 1, 'Nanofreak Trenchcoat', 81974), (82916, 82916, 1, 1, 'Nanofreak Trenchcoat Hood', 82921), (268506, 268506, 150, 150, 'Nanomage Enhanced Alien Tank Armor', 22389), (273264, 273264, 1, 1, 'Nanomutant Claws', 273255), (28815, 28815, 1, 1, 'Nanotechnician: Startup Crystal - Ice Flechette', 12224), (42111, 42111, 1, 1, 'Nanotechnician: Startup Crystal - Malaise of Movement', 12224), (226700, 226700, 1, 1, 'Napalm Spray', 239011), (223724, 223724, 50, 50, 'Nar Shere''s Earring of Tapping', 151921), (223723, 223723, 50, 50, 'Nar Shere''s Gloves of Cunning', 118189), (223725, 223725, 50, 50, 'Nar Shere''s Temperamental Spirit Tattoo', 96114), (295079, 295079, 1, 1, 'Nascence Garden Access', 295103), (295118, 295118, 1, 1, 'Nascence Mission Reward', 281837), (271098, 271099, 1, 300, 'Native Alloy Staff - 000', 136738), (271100, 271101, 1, 300, 'Native Alloy Staff - 010', 136738), (271102, 271103, 1, 300, 'Native Alloy Staff - 050', 136738), (271104, 271105, 1, 300, 'Native Alloy Staff - 070', 136738), (271106, 271107, 1, 300, 'Native Alloy Staff - 870', 136738), (234886, 234886, 1, 1, 'Navi''s Multi-Gyro Component', 205514), (246834, 246834, 1, 1, 'Neck Eye', 160726), (263814, 263814, 100, 100, 'Necklace Fitting Set With Amber', 151933), (263813, 263813, 100, 100, 'Necklace Fitting Set With Jet', 151933), (263815, 263815, 100, 100, 'Necklace Set With Two Gems', 151933), (263289, 263290, 125, 150, 'Necklace of Alacrity', 160725), (269207, 269207, 1, 1, 'Necklace of Penumbra', 269212), (260660, 260660, 205, 205, 'Necklace of Phobia', 130728), (260662, 260662, 205, 205, 'Necklace of Phobia', 130728), (260663, 260663, 205, 205, 'Necklace of Phobia', 130728), (260664, 260664, 205, 205, 'Necklace of Phobia', 130728), (232856, 232857, 1, 149, 'Necklace with opals and sapphire', 151932), (232857, 232859, 150, 199, 'Necklace with opals and sapphire', 151932), (232859, 232860, 200, 249, 'Necklace with opals and sapphire', 151932), (232860, 232861, 250, 400, 'Necklace with opals and sapphire', 151932), (245170, 245170, 100, 100, 'Necromancer Cloak', 22892), (158592, 158593, 1, 200, 'Needle of Pine - Special Arrows', 33175), (236302, 236302, 25, 25, 'Neglectful Brain Symbiant, Control Unit Aban', 215189), (235853, 235853, 25, 25, 'Neglectful Brain Symbiant, Extermination Unit Aban', 215189), (235636, 235636, 25, 25, 'Neglectful Brain Symbiant, Infantry Unit Aban', 215189), (236077, 236077, 25, 25, 'Neglectful Brain Symbiant, Support Unit Aban', 215188), (235904, 235904, 25, 25, 'Neglectful Chest Symbiant, Extermination Unit Aban', 215181), (235649, 235649, 25, 25, 'Neglectful Ear Symbiant, Infantry Unit Aban', 230977), (236493, 236493, 25, 25, 'Neglectful Feet Symbiant, Control Unit Aban', 215185), (235701, 235701, 25, 25, 'Neglectful Left Arm Symbiant, Infantry Unit Aban', 215179), (236148, 236148, 25, 25, 'Neglectful Left Arm Symbiant, Support Unit Aban', 215175), (235583, 235583, 25, 25, 'Neglectful Left Hand Symbiant, Artillery Unit Aban', 215171), (236477, 236477, 25, 25, 'Neglectful Left Hand Symbiant, Control Unit Aban', 215172), (236256, 236256, 25, 25, 'Neglectful Left Hand Symbiant, Support Unit Aban', 215171), (235532, 235532, 25, 25, 'Neglectful Left Wrist Symbiant, Artillery Unit Aban', 215196), (235749, 235749, 25, 25, 'Neglectful Left Wrist Symbiant, Infantry Unit Aban', 215198), (236206, 236206, 25, 25, 'Neglectful Left Wrist Symbiant, Support Unit Aban', 215198), (235617, 235617, 25, 25, 'Neglectful Ocular Symbiant, Infantry Unit Aban', 230980), (235444, 235444, 25, 25, 'Neglectful Right Arm Symbiant, Artillery Unit Aban', 215176), (236337, 236337, 25, 25, 'Neglectful Right Arm Symbiant, Control Unit Aban', 215180), (235888, 235888, 25, 25, 'Neglectful Right Arm Symbiant, Extermination Unit Aban', 215178), (236112, 236112, 25, 25, 'Neglectful Right Arm Symbiant, Support Unit Aban', 215178), (235549, 235549, 25, 25, 'Neglectful Right Hand Symbiant, Artillery Unit Aban', 215173), (236222, 236222, 25, 25, 'Neglectful Right Hand Symbiant, Support Unit Aban', 215174), (235497, 235497, 25, 25, 'Neglectful Right Wrist Symbiant, Artillery Unit Aban', 215170), (236390, 236390, 25, 25, 'Neglectful Right Wrist Symbiant, Control Unit Aban', 215170), (235940, 235940, 25, 25, 'Neglectful Right Wrist Symbiant, Extermination Unit Aban', 215170), (235717, 235717, 25, 25, 'Neglectful Right Wrist Symbiant, Infantry Unit Aban', 215197), (235567, 235567, 25, 25, 'Neglectful Thigh Symbiant, Artillery Unit Aban', 215190), (236459, 236459, 25, 25, 'Neglectful Thigh Symbiant, Control Unit Aban', 215191), (235785, 235785, 25, 25, 'Neglectful Thigh Symbiant, Infantry Unit Aban', 215191), (236240, 236240, 25, 25, 'Neglectful Thigh Symbiant, Support Unit Aban', 215190), (235512, 235512, 25, 25, 'Neglectful Waist Symbiant, Artillery Unit Aban', 215194), (235733, 235733, 25, 25, 'Neglectful Waist Symbiant, Infantry Unit Aban', 215193), (236188, 236188, 25, 25, 'Neglectful Waist Symbiant, Support Unit Aban', 215193), (151895, 151895, 50, 50, 'Neleb''s Nano-circuit Robe', 151898), (274956, 274956, 50, 50, 'Neleb''s Nano-master Robe', 151898), (274955, 274955, 53, 53, 'Neleb''s Nightmare Battlerod', 33165), (152026, 152026, 53, 53, 'Neleb''s Notum Battlerod', 33165), (165214, 165214, 200, 200, 'Nelly Johnsons Little Black Dress', 88047), (216341, 216341, 200, 200, 'Nelly''s Chip', 43133), (204613, 204613, 1, 1, 'Nematet''s Inner Eye', 12706), (305510, 305510, 1, 1, 'Nematet''s Third Eye', 12706), (225711, 225712, 1, 300, 'Nenian''s Harmonic Circlet', 151925), (279366, 279366, 1, 1, 'Neretva Canyon', 227904), (275937, 275937, 1, 1, 'Neretva Keycard', 99276), (152025, 152025, 50, 50, 'Nervejolter', 114009), (275456, 275456, 1, 1, 'Ness'' Decoy Device', 205515), (275719, 275719, 1, 1, 'Ness''s Archaeological Report', 154675), (275713, 275713, 1, 1, 'Ness''s Sealed Samples', 99232), (233427, 233427, 150, 150, 'Net of Adonis', 25805), (123427, 123428, 81, 100, 'Netgun', 13322), (152265, 152266, 1, 200, 'Neural Interpreting Nball - Handguns', 25801), (152255, 152256, 1, 200, 'Neural Interpreting Nball - Melee fighting', 25801), (295878, 295878, 1, 1, 'Neural Link Booster', 245483), (304368, 304368, 1, 1, 'Neutral', 277964), (297200, 297200, 1, 1, 'Neutral AO Logo Sculpture', 291989), (296239, 296240, 1, 300, 'Neutral City Park', 292042), (256396, 256397, 1, 300, 'Neutral ECM Tower', 255792), (263973, 263973, 1, 1, 'Neutral EMP Mine', 20412), (263968, 263968, 1, 1, 'Neutral Explosive Mine', 20412), (254135, 254136, 1, 300, 'Neutral Grid House', 255794), (254171, 254172, 1, 300, 'Neutral Guard House', 255795), (263962, 263962, 1, 1, 'Neutral Immobilization Mine', 20412), (254147, 254148, 1, 300, 'Neutral Landing Pad', 255797), (254177, 254178, 1, 300, 'Neutral Mining Operations', 255796), (254141, 254142, 1, 300, 'Neutral Notum Silo', 255801), (263965, 263965, 1, 1, 'Neutral Restraining Mine', 20412), (163638, 163639, 1, 200, 'Neutral Ring of Survival', 151929), (254447, 254448, 1, 300, 'Neutral Satellite Uplink', 255798), (287307, 287307, 1, 1, 'Neutral Sauna', 287234), (254183, 254184, 1, 300, 'Neutral Sidewalk Cafe', 255791), (254189, 254190, 1, 300, 'Neutral Sky Bar', 255800), (268741, 268741, 1, 1, 'Neutral Status Identification Chip', 156319), (254159, 254160, 1, 300, 'Neutral Swimming Pool', 255802), (296420, 296421, 1, 200, 'Neutral Tax Refund Office', 296434), (152027, 152027, 50, 50, 'Neutrino Flash', 154361), (144784, 149818, 1, 24, 'Neutron Displacer', 297357), (149818, 149817, 25, 49, 'Neutron Displacer', 297357), (149817, 149816, 50, 74, 'Neutron Displacer', 297357), (149816, 149815, 75, 99, 'Neutron Displacer', 297357), (149815, 149823, 100, 124, 'Neutron Displacer', 297357), (149823, 144786, 125, 255, 'Neutron Displacer', 297357), (213979, 213979, 1, 1, 'Neutronium Slug', 239063), (296986, 296986, 1, 1, 'New Colonist Knowledge', 281837), (130595, 130595, 1, 1, 'New Giovanni Drink', 37943), (206719, 206720, 150, 224, 'New Mitaar', 206710), (157276, 157276, 100, 100, 'New Miyashiro Superior Coffee Machine', 155965), (283783, 283783, 14, 14, 'New Quest', 233132), (289527, 289527, 1, 1, 'New Year''s Crunk Goblet', 289526), (248273, 248274, 1, 14, 'Newcomer''s Body Armor', 22905), (248274, 297652, 15, 220, 'Newcomer''s Body Armor', 22905), (248269, 248270, 1, 14, 'Newcomer''s Boots', 21865), (248270, 297651, 15, 220, 'Newcomer''s Boots', 21865), (248277, 248278, 1, 14, 'Newcomer''s Gloves', 21871), (248278, 297654, 15, 220, 'Newcomer''s Gloves', 21871), (248271, 248272, 1, 14, 'Newcomer''s Pants', 22923), (248272, 297650, 15, 220, 'Newcomer''s Pants', 22923), (248275, 248276, 1, 14, 'Newcomer''s Sleeves', 22910), (248276, 297653, 15, 220, 'Newcomer''s Sleeves', 22910), (208098, 208098, 200, 200, 'Newland Fish Knife - Five Stars', 131273), (208096, 208097, 150, 199, 'Newland Fish Knife - Four Stars', 131273), (208090, 208091, 1, 49, 'Newland Fish Knife - One Star', 131273), (208094, 208095, 100, 149, 'Newland Fish Knife - Three Stars', 131273), (208092, 208093, 50, 99, 'Newland Fish Knife - Two Stars', 131273), (292260, 292260, 1, 1, 'Next Mission', 273626), (199681, 199681, 240, 240, 'Nice Nadir Homage Armor Boots', 22876), (199702, 199702, 240, 240, 'Nice Nadir Homage Armor Gloves', 22931), (199723, 199723, 240, 240, 'Nice Nadir Homage Armor Helmet', 31733), (199744, 199744, 240, 240, 'Nice Nadir Homage Armor Pants', 22914), (199765, 199765, 240, 240, 'Nice Nadir Homage Armor Sleeves', 22960), (199786, 199786, 240, 240, 'Nice Nadir Homage Body Armor', 22985), (119089, 119089, 1, 1, 'Nice Painting', 119072), (119090, 119090, 1, 1, 'Nice Painting', 119073), (119093, 119093, 1, 1, 'Nice Painting', 119074), (119095, 119095, 1, 1, 'Nice Painting', 119075), (119096, 119096, 1, 1, 'Nice Painting', 119076), (119097, 119097, 1, 1, 'Nice Painting', 119077), (119098, 119098, 1, 1, 'Nice Painting', 119078), (292532, 292532, 1, 1, 'Nickel-Cobalt Ferrous Alloy', 292760), (226225, 226226, 1, 500, 'Night Killer', 239095), (226227, 226228, 1, 500, 'Night Killer', 239095), (226229, 226230, 1, 500, 'Night Killer', 239095), (29738, 29738, 1, 1, 'Night Vision Goggles', 12711), (288552, 288552, 1, 1, 'Night of Draculeet - The Poster', 288573), (121669, 121670, 47, 69, 'Nighthhawk Ion Thag Spear', 21138), (143327, 143327, 1, 1, 'Nighthhawk Ion Thag Spear Construction Manual', 37932), (274958, 274958, 50, 50, 'Nightmare Arachnid Ether', 290657), (274960, 274960, 50, 50, 'Nightmare Burning Ether', 290660), (274961, 274961, 50, 50, 'Nightmare Darkness Ether', 290659), (233100, 233100, 50, 50, 'Nightmare Mites', 20407), (226003, 226004, 1, 300, 'Nightmare Pendant', 131260), (274959, 274959, 50, 50, 'Nightmare Spacial Ether', 290661), (275004, 275004, 50, 50, 'Nightmare Therapy Pills', 20183), (274879, 274879, 50, 50, 'Nightmare Tidal Ether', 290662), (271335, 271336, 1, 300, 'Nightspear - 000', 21138), (271337, 271338, 1, 300, 'Nightspear - 010', 21138), (271339, 271340, 1, 300, 'Nightspear - 050', 21138), (271341, 271342, 1, 300, 'Nightspear - 070', 21138), (271343, 271344, 1, 300, 'Nightspear - 870', 21138), (121677, 121678, 139, 161, 'Nightspear Follower', 21138), (143375, 143375, 1, 1, 'Nightspear Follower Construction Manual', 136329), (121681, 121682, 185, 199, 'Nightspear Grandmaster', 21138), (143401, 143401, 1, 1, 'Nightspear Grandmaster Construction Manual', 136329), (121675, 121676, 116, 138, 'Nightspear Initiate', 21138), (143364, 143364, 1, 1, 'Nightspear Initiate Construction Manual', 136332), (121679, 121680, 162, 184, 'Nightspear Master', 21138), (143388, 143388, 1, 1, 'Nightspear Master Construction Manual', 136329), (121673, 121674, 93, 115, 'Nightspear Novice', 21138), (143353, 143353, 1, 1, 'Nightspear Novice Construction Manual', 37933), (214327, 214327, 300, 300, 'Nightstick of the Butcher', 214358), (214323, 214324, 100, 199, 'Nightstick of the Slaughterer', 214358), (214325, 214326, 200, 299, 'Nightstick of the Slaughterer', 214358), (287172, 287172, 1, 1, 'Nine Iron', 287169), (290029, 290029, 1, 1, 'NipponTech "Metsuki" Sight Overlay Device - Blue', 289927), (290030, 290030, 1, 1, 'NipponTech "Metsuki" Sight Overlay Device - Green', 289928), (290031, 290031, 1, 1, 'NipponTech "Metsuki" Sight Overlay Device - Red', 289926), (290028, 290028, 1, 1, 'NipponTech "Metsuki" Sight Overlay Device - Yellow', 289925), (291655, 291655, 1, 1, 'NipponTech Glowing Mood Pads - Baseline Emotionlessness', 291420), (291902, 291902, 1, 1, 'NipponTech Glowing Mood Pads - Blue Calm', 291603), (291901, 291901, 1, 1, 'NipponTech Glowing Mood Pads - Green Envy', 291604), (291896, 291896, 1, 1, 'NipponTech Glowing Mood Pads - Mellow Yellow', 291609), (291900, 291900, 1, 1, 'NipponTech Glowing Mood Pads - Orange Excitement', 291605), (291899, 291899, 1, 1, 'NipponTech Glowing Mood Pads - Pink Infatuation', 291606), (291898, 291898, 1, 1, 'NipponTech Glowing Mood Pads - Purple Passion', 291607), (291897, 291897, 1, 1, 'NipponTech Glowing Mood Pads - Red Fury', 291608), (293829, 293829, 1, 1, 'NipponTech M3H-Rho "Mizuni" Life-Like Robotic Catgirl Companion', 42446), (289821, 289821, 1, 1, 'NipponTech Sight Overlay Device - Blue', 289927), (289818, 289818, 1, 1, 'NipponTech Sight Overlay Device - Green', 289928), (289819, 289819, 1, 1, 'NipponTech Sight Overlay Device - Grey', 289929), (289820, 289820, 1, 1, 'NipponTech Sight Overlay Device - Orange', 289931), (289811, 289811, 1, 1, 'NipponTech Sight Overlay Device - Pink', 289932), (289822, 289822, 1, 1, 'NipponTech Sight Overlay Device - Purple', 289933), (289817, 289817, 1, 1, 'NipponTech Sight Overlay Device - Red', 289926), (289825, 289825, 1, 1, 'NipponTech Sight Overlay Device - The Maker', 289930), (289823, 289823, 1, 1, 'NipponTech Sight Overlay Device - White', 289934), (289824, 289824, 1, 1, 'NipponTech Sight Overlay Device - Yellow', 289925), (295881, 295881, 1, 1, 'Nippontech Enersteel Coating Injector', 245483), (245605, 245606, 140, 159, 'Nippy John Stiletto', 204740), (245607, 245607, 160, 160, 'Nippy John Stiletto', 204740), (285509, 285509, 1, 1, 'Nirvelle''s Box of Cupcake Bandages', 285810), (295343, 295343, 1, 1, 'Nirvelle''s Sparkling Surprise', 12253), (157413, 157413, 1, 1, 'Nitrogen Fourtyfour Pig Advantage', 81778), (248346, 248346, 1, 1, 'Nizno''s Bomb Thrower', 13311), (225705, 225706, 1, 300, 'Nizno''s Harmonic Circlet', 151925), (284719, 284719, 1, 1, 'No Antleet Placard', 284965), (242892, 242892, 1, 1, 'No Attack 10 Minutes', 227249), (284185, 284185, 1, 1, 'No Less Than Three Placard', 284193), (283862, 283862, 1, 1, 'No No Placard', 284027), (283860, 283860, 1, 1, 'No Pumpkinheads Placard', 283894), (284718, 284718, 1, 1, 'No Snow Placard', 284963), (283861, 283861, 1, 1, 'No U Placard', 283896), (215406, 215406, 1, 1, 'Noctivagant', 82197), (215407, 215407, 1, 1, 'Noctivagous', 82197), (215408, 215408, 1, 1, 'Nocturnal', 82197), (251234, 251234, 1, 1, 'Nocturnal Strike', 255626), (123981, 123982, 21, 79, 'Nomad 21.7 BMG Ranger', 21146), (137614, 137614, 1, 1, 'Nomad 21.7 BMG Ranger Construction Manual', 37932), (160415, 160416, 1, 200, 'Nomad Jubilee Chestpiece', 21859), (247755, 247755, 100, 100, 'Non-Regenerating Bioplate', 247754), (226870, 226871, 1, 300, 'Nonpartisan Armor Boots', 213545), (226862, 226863, 1, 300, 'Nonpartisan Armor Gauntlets', 214752), (226868, 226869, 1, 300, 'Nonpartisan Armor Pants', 213586), (226864, 226865, 1, 300, 'Nonpartisan Armor Sleeve', 213465), (226866, 226867, 1, 300, 'Nonpartisan Body Armor', 213505), (301826, 301826, 1, 1, 'Nophex 3D Printer: Deluxe Holiday Edition', 301821), (302062, 302062, 1, 1, 'Nophex 3D Printer: Deluxe Love Edition', 301821), (301824, 301824, 1, 1, 'Nophex 3D Printer: Holiday Edition', 301822), (302060, 302060, 1, 1, 'Nophex 3D Printer: Love Edition', 301822), (255542, 255542, 200, 200, 'Nophex Cube', 233133), (255545, 255545, 200, 200, 'Nophex Cube of Approaching Death', 233135), (255547, 255547, 200, 200, 'Nophex Cube of Imminent Death', 233135), (255543, 255543, 200, 200, 'Nophex Cube of Impending Death', 233135), (255544, 255544, 200, 200, 'Nophex Cube of Indomitable Life', 233135), (255548, 255548, 200, 200, 'Nophex Cube of Inevitable Death', 233135), (255546, 255546, 200, 200, 'Nophex Cube of the Occurence of Death', 233135), (303463, 303463, 1, 1, 'Nophex Equipment Voucher', 300449), (165138, 165139, 10, 199, 'Nophex Plasma Destroyer I', 33146), (165140, 165140, 200, 200, 'Nophex Plasma Destroyer II', 33146), (303464, 303464, 1, 1, 'Nophex Vanity Voucher', 290691), (257378, 257378, 200, 200, 'Nophex''s Molybdenum Crash Helmet', 252430), (234916, 234916, 1, 1, 'Normal blueprint items for The Great Ice Golem', 231182), (157414, 157414, 1, 1, 'North Thirteen Mouse Advantage', 81769), (160210, 160211, 1, 199, 'North Wind Katana', 114000), (224716, 224716, 140, 140, 'Nostalgic Brain Spirit of Offence', 230992), (224942, 224942, 140, 140, 'Nostalgic Heart Spirit of Essence', 230984), (224971, 224971, 140, 140, 'Nostalgic Heart Spirit of Weakness', 230984), (225221, 225221, 140, 140, 'Nostalgic Left Hand Spirit of Strength', 230994), (224889, 224889, 140, 140, 'Nostalgic Midriff Spirit of Weakness', 230976), (225130, 225130, 140, 140, 'Nostalgic Right Hand Strength Spirit', 231002), (224822, 224822, 140, 140, 'Nostalgic Right Limb Spirit of Weakness', 231004), (224702, 224702, 140, 140, 'Nostalgic Spirit of Clear Thought', 230992), (225236, 225236, 140, 140, 'Nostalgic Spirit of Feet Strength', 230990), (225062, 225062, 140, 140, 'Nostalgic Spirit of Right Wrist Offence', 231006), (292864, 292864, 1, 1, 'Not Really The Eye of Neleb', 293310), (292261, 292261, 1, 1, 'Not Used', 273626), (285438, 285438, 1, 1, 'Not in use', 273626), (236577, 236577, 1, 1, 'Note', 154681), (268755, 268755, 1, 1, 'Note', 154681), (231144, 231144, 1, 1, 'Note From Gawain -Find my brother Gareth-', 156343), (268740, 268740, 1, 1, 'Notice Of Failure', 163063), (203633, 203634, 160, 200, 'NotuComm Circuitry with Five Sensors', 130732), (203631, 203632, 160, 200, 'NotuComm Circuitry with Four Sensors', 130733), (203629, 203630, 160, 200, 'NotuComm Circuitry with One Sensor', 130729), (203627, 203628, 160, 200, 'NotuComm Circuitry with Three Sensors', 130730), (203625, 203626, 160, 200, 'NotuComm Circuitry with Two Sensors', 130726), (203623, 203624, 160, 200, 'NotuComm Mesh', 130790), (204206, 204207, 160, 200, 'NotuComm Mesh Trenchcoat', 300624), (137275, 137276, 1, 200, 'Notum Alloy Strengthened Ribs', 130752), (257963, 257963, 250, 250, 'Notum Amplification Coil', 257195), (121641, 121642, 139, 161, 'Notum Axe', 21135), (214082, 214082, 1, 1, 'Notum Bind Caster', 156511), (121626, 121627, 185, 199, 'Notum Bladestaff', 21140), (143151, 143151, 1, 1, 'Notum Bladestaff Construction Manual', 136329), (136622, 136623, 1, 200, 'Notum Chip', 25794), (155695, 155696, 1, 200, 'Notum Concentrate', 83869), (155741, 155741, 1, 1, 'Notum Concentrate Jelly', 100308), (40842, 40841, 1, 500, 'Notum Container', 20407), (275539, 275539, 1, 1, 'Notum Containment Bag', 99670), (275540, 275540, 1, 1, 'Notum Containment Bag', 99670), (275541, 275541, 1, 1, 'Notum Containment Bag', 99670), (275542, 275542, 1, 1, 'Notum Containment Bag', 99670), (275543, 275543, 1, 1, 'Notum Containment Bag', 99670), (275544, 275544, 1, 1, 'Notum Containment Bag', 99670), (119595, 119595, 1, 1, 'Notum Crystal - Rocket Lamp', 119609), (231529, 231529, 125, 125, 'Notum Crystal with Etched ''Adobe Suzerain''', 229139), (234259, 234259, 220, 220, 'Notum Crystal with Etched ''Aesma Daeva''', 229139), (234160, 234160, 255, 255, 'Notum Crystal with Etched ''Agent of Decay''', 229139), (234133, 234133, 255, 255, 'Notum Crystal with Etched ''Agent of Putrefaction''', 229139), (234169, 234169, 220, 220, 'Notum Crystal with Etched ''Ahpta''', 229139), (231970, 231970, 188, 188, 'Notum Crystal with Etched ''Alatyr''', 229139), (234232, 234232, 255, 255, 'Notum Crystal with Etched ''Anansi', 229139), (234371, 234371, 255, 255, 'Notum Crystal with Etched ''Anansi''', 229139), (239614, 239614, 30, 30, 'Notum Crystal with Etched ''Anarir''', 229139), (231862, 231862, 185, 185, 'Notum Crystal with Etched ''Anya''', 229139), (231988, 231988, 210, 210, 'Notum Crystal with Etched ''Aray''', 229139), (234326, 234326, 255, 255, 'Notum Crystal with Etched ''Arch Bigot Aliel''', 229139), (234270, 234270, 220, 220, 'Notum Crystal with Etched ''Arch Bigot Biap''', 229139), (234308, 234308, 255, 255, 'Notum Crystal with Etched ''Arch Bigot Lohel''', 229139), (232644, 232644, 200, 200, 'Notum Crystal with Etched ''Arch Demon of Inferno''', 229139), (231736, 231736, 125, 125, 'Notum Crystal with Etched ''Argil Suzerain''', 229139), (234317, 234317, 255, 255, 'Notum Crystal with Etched ''Asase Ya''', 229139), (231601, 231601, 125, 125, 'Notum Crystal with Etched ''Ashmara Ravin''', 229139), (234288, 234288, 220, 220, 'Notum Crystal with Etched ''Ats', 229139), (231547, 231547, 125, 125, 'Notum Crystal with Etched ''Auger''', 229139), (231556, 231556, 125, 125, 'Notum Crystal with Etched ''Awl''', 229139), (231916, 231916, 185, 185, 'Notum Crystal with Etched ''Bagaspati''', 229139), (231574, 231574, 125, 125, 'Notum Crystal with Etched ''Beatific Spirit''', 229139), (231727, 231727, 125, 125, 'Notum Crystal with Etched ''Bellowing Chimera''', 229139), (231664, 231664, 125, 125, 'Notum Crystal with Etched ''Bhinaji Navi''', 229139), (234214, 234214, 255, 255, 'Notum Crystal with Etched ''Bia''', 229139), (231421, 231421, 80, 80, 'Notum Crystal with Etched ''Black Fang''', 229139), (231628, 231628, 125, 125, 'Notum Crystal with Etched ''Blight''', 229139), (231565, 231565, 125, 125, 'Notum Crystal with Etched ''Borer''', 229139), (231934, 231934, 178, 178, 'Notum Crystal with Etched ''Breaker Teuvo''', 229139), (231907, 231907, 175, 175, 'Notum Crystal with Etched ''Brutal Rafter''', 229139), (231457, 231457, 85, 85, 'Notum Crystal with Etched ''Brutal Soul Dredge''', 229139), (239542, 239542, 40, 40, 'Notum Crystal with Etched ''Canceroid Cupid''', 229139), (234335, 234335, 220, 220, 'Notum Crystal with Etched ''Captured Spirit''', 229139), (239560, 239560, 45, 45, 'Notum Crystal with Etched ''Careening Blight''', 229139), (239569, 239569, 45, 45, 'Notum Crystal with Etched ''Careening Death''', 229139), (232132, 232132, 195, 195, 'Notum Crystal with Etched ''Churn''', 229139), (231448, 231448, 85, 85, 'Notum Crystal with Etched ''Circumbendibum''', 229139), (231412, 231412, 80, 80, 'Notum Crystal with Etched ''Circumbendibus''', 229139), (231655, 231655, 125, 125, 'Notum Crystal with Etched ''Contorted Soul Dredge''', 229139), (231826, 231826, 220, 220, 'Notum Crystal with Etched ''Defiler of Scheol''', 229139), (231844, 231844, 220, 220, 'Notum Crystal with Etched ''Destroyer of Scheol''', 229139), (231835, 231835, 220, 220, 'Notum Crystal with Etched ''Devastator of Scheol''', 229139), (231817, 231817, 205, 205, 'Notum Crystal with Etched ''Devourer of Scheol''', 229139), (242535, 242535, 150, 150, 'Notum Crystal with Etched ''Diviner Gil Kald-Thar''', 229139), (239641, 239641, 180, 180, 'Notum Crystal with Etched ''Eidolean Soul Dredge''', 229139), (239687, 239687, 220, 220, 'Notum Crystal with Etched ''Exsequiae''', 229139), (234151, 234151, 220, 220, 'Notum Crystal with Etched ''Fester Leila''', 229139), (231691, 231691, 125, 125, 'Notum Crystal with Etched ''Flinty''', 229139), (239650, 239650, 188, 188, 'Notum Crystal with Etched ''Glitter''', 229139), (231502, 231502, 115, 115, 'Notum Crystal with Etched ''Gracious Soul Dredge''', 229139), (231709, 231709, 125, 125, 'Notum Crystal with Etched ''Gunk''', 229139), (231997, 231997, 210, 210, 'Notum Crystal with Etched ''Hadur''', 229139), (234187, 234187, 220, 220, 'Notum Crystal with Etched ''Haqa''', 229139), (231637, 231637, 125, 125, 'Notum Crystal with Etched ''Hemut''', 229139), (239677, 239677, 220, 220, 'Notum Crystal with Etched ''Ho''', 229139), (231520, 231520, 125, 125, 'Notum Crystal with Etched ''Ignis Fatui''', 229139), (231583, 231583, 125, 125, 'Notum Crystal with Etched ''Ignis Fatuus''', 229139), (232006, 232006, 182, 182, 'Notum Crystal with Etched ''Imk', 229139), (232581, 232581, 160, 160, 'Notum Crystal with Etched ''Infernal Demon''', 229139), (231538, 231538, 125, 125, 'Notum Crystal with Etched ''Iunmin''', 229139), (232015, 232015, 182, 182, 'Notum Crystal with Etched ''Juma''', 229139), (234106, 234106, 220, 220, 'Notum Crystal with Etched ''K', 229139), (232024, 232024, 182, 182, 'Notum Crystal with Etched ''Kaleva''', 229139), (231772, 231772, 125, 125, 'Notum Crystal with Etched ''Kaoline Suzerain''', 229139), (231646, 231646, 125, 125, 'Notum Crystal with Etched ''Khemhet''', 229139), (232635, 232635, 200, 200, 'Notum Crystal with Etched ''Lady Genevra Di''Venague''', 229139), (231610, 231610, 125, 125, 'Notum Crystal with Etched ''Lethargic Spirit''', 229139), (231745, 231745, 125, 125, 'Notum Crystal with Etched ''Loessial Suzerain''', 229139), (239668, 239668, 125, 125, 'Notum Crystal with Etched ''Loltonunon''', 229139), (232078, 232078, 165, 165, 'Notum Crystal with Etched ''Lurky''', 229139), (234223, 234223, 220, 220, 'Notum Crystal with Etched ''Lya''', 229139), (239533, 239533, 40, 40, 'Notum Crystal with Etched ''Malah-Animus''', 229139), (239524, 239524, 40, 40, 'Notum Crystal with Etched ''Malah-At''', 229139), (239515, 239515, 40, 40, 'Notum Crystal with Etched ''Malah-Auris''', 229139), (239578, 239578, 25, 25, 'Notum Crystal with Etched ''Maledicta''', 229139), (231592, 231592, 125, 125, 'Notum Crystal with Etched ''Marem''', 229139), (231673, 231673, 125, 125, 'Notum Crystal with Etched ''Marly Suzerain''', 229139), (239596, 239596, 50, 50, 'Notum Crystal with Etched ''Mawi''', 229139), (231619, 231619, 125, 125, 'Notum Crystal with Etched ''Misery''', 229139), (232096, 232096, 165, 165, 'Notum Crystal with Etched ''Moochy''', 229139), (231889, 231889, 215, 215, 'Notum Crystal with Etched ''Morrow''', 229139), (239488, 239488, 255, 255, 'Notum Crystal with Etched ''Nyame''', 229139), (234384, 234384, 220, 220, 'Notum Crystal with Etched ''Odqan''', 229139), (232033, 232033, 165, 165, 'Notum Crystal with Etched ''Old Salty''', 229139), (231754, 231754, 125, 125, 'Notum Crystal with Etched ''Ooze''', 229139), (234250, 234250, 220, 220, 'Notum Crystal with Etched ''Pazuzu''', 229139), (232123, 232123, 195, 195, 'Notum Crystal with Etched ''Quake''', 229139), (231880, 231880, 215, 215, 'Notum Crystal with Etched ''Quondam''', 229139), (234299, 234299, 235, 235, 'Notum Crystal with Etched ''Rallies Fete''', 229139), (234353, 234353, 255, 255, 'Notum Crystal with Etched ''Razor the Battletoad''', 229139), (242544, 242544, 200, 200, 'Notum Crystal with Etched ''Redeemed Cama''', 229139), (242517, 242517, 170, 170, 'Notum Crystal with Etched ''Redeemed Gilthar''', 229139), (232617, 234441, 200, 255, 'Notum Crystal with Etched ''Redeemed Lord Galahad''', 229139), (242499, 242499, 140, 140, 'Notum Crystal with Etched ''Redeemed Ocra''', 229139), (234124, 234124, 220, 220, 'Notum Crystal with Etched ''Relief Teals''', 229139), (239551, 239551, 35, 35, 'Notum Crystal with Etched ''Sabretooth Slicer''', 229139), (231853, 231853, 185, 185, 'Notum Crystal with Etched ''Sampsa''', 229139), (234205, 234205, 220, 220, 'Notum Crystal with Etched ''Sasabonsam''', 229139), (234097, 234097, 220, 220, 'Notum Crystal with Etched ''Sashu''', 229139), (239659, 239659, 125, 125, 'Notum Crystal with Etched ''Satkamear''', 229139), (239605, 239605, 50, 50, 'Notum Crystal with Etched ''Sawi''', 229139), (231430, 231430, 80, 80, 'Notum Crystal with Etched ''Scratch''', 229139), (231439, 231439, 80, 80, 'Notum Crystal with Etched ''Screech''', 229139), (232213, 232105, 192, 195, 'Notum Crystal with Etched ''Shake''', 229139), (232204, 232204, 192, 192, 'Notum Crystal with Etched ''Shiver''', 229139), (234362, 234362, 255, 255, 'Notum Crystal with Etched ''Shullat''', 229139), (231403, 231403, 80, 80, 'Notum Crystal with Etched ''Silver Fang''', 229139), (232087, 232087, 165, 165, 'Notum Crystal with Etched ''Skulky''', 229139), (232069, 232069, 165, 165, 'Notum Crystal with Etched ''Slinky''', 229139), (232042, 232042, 165, 165, 'Notum Crystal with Etched ''Smee''', 229139), (231511, 231511, 115, 115, 'Notum Crystal with Etched ''Spiritless Soul Dredge''', 229139), (231952, 231952, 180, 180, 'Notum Crystal with Etched ''Srahir''', 229139), (234196, 234196, 220, 220, 'Notum Crystal with Etched ''Taille Frees''', 229139), (239705, 239705, 48, 48, 'Notum Crystal with Etched ''Tcheser''', 229139), (239497, 239497, 160, 160, 'Notum Crystal with Etched ''The Abysmal Lord''', 229139), (232195, 232195, 165, 165, 'Notum Crystal with Etched ''The Abyssal Widow''', 229139), (239696, 239696, 120, 120, 'Notum Crystal with Etched ''The Achbile Guardian''', 229139), (232150, 232150, 165, 165, 'Notum Crystal with Etched ''The Adonian Soul Dredge''', 229139), (232177, 232177, 165, 165, 'Notum Crystal with Etched ''The Adonis Spirit Master''', 229139), (231781, 231781, 120, 120, 'Notum Crystal with Etched ''The Archbile Queen''', 229139), (239623, 239623, 185, 185, 'Notum Crystal with Etched ''The Brobdingnagian Mother''', 229139), (232168, 232168, 165, 165, 'Notum Crystal with Etched ''The Dredge Driver''', 229139), (234241, 234241, 220, 220, 'Notum Crystal with Etched ''The Dryad Demigod''', 229139), (231943, 231943, 185, 185, 'Notum Crystal with Etched ''The Dryad Shuffle''', 229139), (231466, 231466, 90, 90, 'Notum Crystal with Etched ''The Dune Suzerain''', 229139), (231493, 231493, 90, 90, 'Notum Crystal with Etched ''The Elysian Soul Dredge''', 229139), (231808, 231808, 120, 120, 'Notum Crystal with Etched ''The Enrapt One''', 229139), (239723, 239723, 210, 210, 'Notum Crystal with Etched ''The Great Ice Golem''', 229139), (234279, 234279, 220, 220, 'Notum Crystal with Etched ''The Indomitable Chimera''', 229139), (242457, 242457, 220, 220, 'Notum Crystal with Etched ''The Infernal Soul Dredge''', 229139), (231871, 231871, 205, 205, 'Notum Crystal with Etched ''The Maggot Lord''', 229139), (234142, 234142, 255, 255, 'Notum Crystal with Etched ''The Mortificator''', 229139), (231799, 231799, 120, 120, 'Notum Crystal with Etched ''The Numb One''', 229139), (231898, 231898, 165, 165, 'Notum Crystal with Etched ''The Penumbral Spirit Hunter''', 229139), (232060, 232060, 172, 172, 'Notum Crystal with Etched ''The Peristaltic Abomination''', 229139), (232051, 232051, 172, 172, 'Notum Crystal with Etched ''The Peristaltic Aversion''', 229139), (232186, 232186, 165, 165, 'Notum Crystal with Etched ''The Proprietrix''', 229139), (231763, 231763, 125, 125, 'Notum Crystal with Etched ''The Scheolian Soul Dredge''', 229139), (239632, 239632, 185, 185, 'Notum Crystal with Etched ''The Stupendous Breeder''', 229139), (231475, 231475, 90, 90, 'Notum Crystal with Etched ''The Talus Suzerain''', 229139), (232159, 232159, 165, 165, 'Notum Crystal with Etched ''The Watchdog''', 229139), (231979, 231979, 202, 202, 'Notum Crystal with Etched ''The Worm King''', 229139), (231718, 231718, 125, 125, 'Notum Crystal with Etched ''Thunderous Chimera''', 229139), (232114, 232114, 195, 195, 'Notum Crystal with Etched ''Toss''', 229139), (231682, 231682, 125, 125, 'Notum Crystal with Etched ''Tough''', 229139), (231484, 231484, 90, 90, 'Notum Crystal with Etched ''Ungulera''', 229139), (242526, 242526, 170, 170, 'Notum Crystal with Etched ''Unredeemed Dalja''', 229139), (232626, 234450, 200, 255, 'Notum Crystal with Etched ''Unredeemed Lord Mordeth''', 229139), (242508, 242508, 140, 140, 'Notum Crystal with Etched ''Unredeemed Roch''', 229139), (242553, 242553, 200, 200, 'Notum Crystal with Etched ''Unredeemed Vanya''', 229139), (239714, 239714, 48, 48, 'Notum Crystal with Etched ''Upenpet''', 229139), (234178, 234178, 220, 220, 'Notum Crystal with Etched ''Ushqa''', 229139), (232141, 232141, 165, 165, 'Notum Crystal with Etched ''Viscious Visitant''', 229139), (231700, 231700, 125, 125, 'Notum Crystal with Etched ''Wacky Suzerain''', 229139), (239587, 239587, 50, 50, 'Notum Crystal with Etched ''Wala''', 229139), (234115, 234115, 220, 220, 'Notum Crystal with Etched ''Waqa''', 229139), (242659, 242659, 135, 135, 'Notum Crystal with Etched ''Weary Empath Min-Ji Liu''', 229139), (231790, 231790, 120, 120, 'Notum Crystal with Etched ''White''', 229139), (294009, 294009, 275, 275, 'Notum Crystal with Etched ''Wistful Apparition''', 229139), (234344, 234344, 255, 255, 'Notum Crystal with Etched ''Xark the Battletoad''', 229139), (231961, 231961, 180, 180, 'Notum Crystal with Etched ''Zoetic Oak''', 229139), (232608, 232608, 200, 200, 'Notum Crystal with Etched Pattern of '' Vanya''', 227270), (232599, 232599, 200, 200, 'Notum Crystal with Etched Pattern of ''Cama''', 227254), (232572, 232572, 170, 170, 'Notum Crystal with Etched Pattern of ''Dalja''', 227255), (232590, 232590, 140, 140, 'Notum Crystal with Etched Pattern of ''Diviner Gil Kald-Thar''', 227252), (232563, 232563, 170, 170, 'Notum Crystal with Etched Pattern of ''Gilthar''', 227260), (232545, 232545, 140, 140, 'Notum Crystal with Etched Pattern of ''Ocra''', 227264), (232554, 232554, 140, 140, 'Notum Crystal with Etched Pattern of ''Roch''', 235338), (214866, 214866, 1, 1, 'Notum Crystal with an etched in multi dimensional blueprint of a Trapped Soul', 227268), (154928, 154928, 68, 68, 'Notum Defender', 154364), (155738, 155738, 1, 1, 'Notum Enhanced Leet Fur Paste', 100306), (137311, 137312, 1, 200, 'Notum Enriched Nano Paste - 16x Layer', 130757), (137303, 137304, 1, 200, 'Notum Enriched Nano Paste - 1x Layer', 130753), (137305, 137306, 1, 200, 'Notum Enriched Nano Paste - 2x Layer', 130753), (137307, 137308, 1, 200, 'Notum Enriched Nano Paste - 4x Layer', 130754), (137309, 137310, 1, 200, 'Notum Enriched Nano Paste - 8x Layer', 130756), (282138, 282138, 150, 150, 'Notum Filled Gem Stone', 282137), (158914, 158914, 1, 1, 'Notum Focus', 96125), (136624, 136625, 1, 200, 'Notum Fragment', 25795), (305513, 305513, 1, 1, 'Notum Graft', 12665), (168678, 168678, 5, 5, 'Notum Hood of Bobic', 23004), (275412, 275412, 1, 1, 'Notum Imbued Gaily Painted Hood', 82924), (165149, 165150, 1, 200, 'Notum Infused Kevlar Armor Boots', 13265), (165147, 165148, 1, 200, 'Notum Infused Kevlar Armor Gloves', 13279), (165143, 165144, 1, 200, 'Notum Infused Kevlar Armor Pants', 13294), (165145, 165146, 1, 200, 'Notum Infused Kevlar Armor Sleeves', 13227), (165141, 165142, 1, 200, 'Notum Infused Kevlar Body Armor', 13249), (279469, 279469, 1, 1, 'Notum Intake Weapon', 21150), (271399, 271400, 1, 300, 'Notum Lever - 000', 33163), (271401, 271402, 1, 300, 'Notum Lever - 010', 33163), (271403, 271404, 1, 300, 'Notum Lever - 050', 33163), (271405, 271406, 1, 300, 'Notum Lever - 850', 33163), (216276, 216276, 150, 150, 'Notum Miner''s Hard Hat', 205765), (227324, 227324, 1, 1, 'Notum Overflow', 239015), (207477, 207478, 1, 400, 'Notum Pellet', 156562), (204577, 204577, 1, 1, 'Notum Ring of the Three', 286792), (204578, 204578, 1, 1, 'Notum Ring of the Three', 286793), (204579, 204579, 1, 1, 'Notum Ring of the Three', 286794), (305488, 305488, 1, 1, 'Notum Ring of the Three', 286792), (305489, 305489, 1, 1, 'Notum Ring of the Three', 286793), (305490, 305490, 1, 1, 'Notum Ring of the Three', 286794), (226329, 226330, 1, 299, 'Notum Saturated Animal Bone', 33169), (163344, 163345, 1, 200, 'Notum Saturated Metaplast Armor Boots', 13268), (163346, 163347, 1, 200, 'Notum Saturated Metaplast Armor Gloves', 13281), (163341, 163334, 1, 200, 'Notum Saturated Metaplast Armor Helmet', 10833), (163348, 163349, 1, 200, 'Notum Saturated Metaplast Armor Sleeves', 13230), (163350, 163351, 1, 200, 'Notum Saturated Metaplast Armor Trousers', 13298), (163342, 163343, 1, 200, 'Notum Saturated Metaplast Breastplate', 13251), (163354, 163355, 1, 200, 'Notum Saturated Metaplast Shell', 163352), (269315, 269315, 1, 1, 'Notum Scourge Tissue Sample', 19856), (246818, 246818, 200, 200, 'Notum Seed', 246815), (253017, 253017, 1, 1, 'Notum Shield', 255658), (231391, 231392, 1, 300, 'Notum Slug', 203506), (206157, 206157, 200, 200, 'Notum Spangled Black Omni-Tek Cloak', 88052), (206158, 206158, 200, 200, 'Notum Spangled Grey Omni-Tek Cloak', 19814), (206159, 206159, 200, 200, 'Notum Spangled Omni-Med Cloak', 120623), (206160, 206160, 200, 200, 'Notum Spangled Red Omni-Tek Cloak', 88051), (271325, 271326, 1, 300, 'Notum Spear - 000', 21135), (271327, 271328, 1, 300, 'Notum Spear - 010', 21135), (271329, 271330, 1, 300, 'Notum Spear - 050', 21135), (271331, 271332, 1, 300, 'Notum Spear - 070', 21135), (271333, 271334, 1, 300, 'Notum Spear - 870', 21135), (204649, 204649, 1, 1, 'Notum Splice', 12665), (271383, 271384, 1, 300, 'Notum Staff - 000', 33162), (271385, 271386, 1, 300, 'Notum Staff - 010', 33162), (271387, 271388, 1, 300, 'Notum Staff - 050', 33162), (271389, 271390, 1, 300, 'Notum Staff - 850', 33162), (226331, 226331, 300, 300, 'Notum Studded Animal Bone', 33169), (164564, 164564, 140, 140, 'Notum Threaded Backpack', 99660), (164563, 164563, 140, 140, 'Notum Threaded Zodiacal Blanket', 161084), (155690, 155690, 1, 1, 'Notum fed nano-enhanced biotechnology', 156559), (155718, 155718, 1, 1, 'Notum fed nano-enhanced biotechnology with some loose ends', 156560), (155688, 155688, 1, 1, 'Notum infected biotechnology', 156561), (227130, 227130, 15, 15, 'Notum-Infused Chimera Machine Gun', 13322), (227141, 227141, 15, 15, 'Notum-Infused Chimera Pistol', 13322), (227108, 227108, 15, 15, 'Notum-Infused Chimera Rifle', 13314), (227105, 227105, 15, 15, 'Notum-Infused Chimera Shotgun', 13314), (227087, 227087, 15, 15, 'Notum-Infused Petrified Bone', 33169), (269348, 269348, 1, 1, 'Notum-Infused Platinum Ore', 269349), (227096, 227096, 15, 15, 'Notum-Infused Silvertail Dagger', 218708), (227091, 227091, 15, 15, 'Notum-Infused Spider Shank Machete', 158238), (305979, 305979, 1, 1, 'Notum-Infused Wool Balaclava Mask', 160562), (295871, 295871, 250, 250, 'Notum-Studded Band Template', 245483), (304620, 304620, 1, 1, 'Notum-Threaded Omni-Med Suit Sleeves', 21853), (163941, 163942, 1, 200, 'Nova Dillon Armor Boots', 13264), (163947, 163948, 1, 200, 'Nova Dillon Armor Gloves', 13278), (163949, 163950, 1, 200, 'Nova Dillon Armor Helmet', 10835), (163951, 163952, 1, 200, 'Nova Dillon Armor Pants', 13293), (163943, 163944, 1, 200, 'Nova Dillon Armor Sleeves', 13226), (163945, 163946, 1, 200, 'Nova Dillon Body Armor', 13244), (158960, 158961, 1, 199, 'Nova Flow - Mark I', 33144), (123275, 123276, 86, 104, 'Nova Flow - Mk IV', 33144), (272050, 272051, 1, 300, 'Nova Flow - Mk IV - 000', 33144), (272052, 272053, 1, 300, 'Nova Flow - Mk IV - 008', 33144), (272054, 272055, 1, 300, 'Nova Flow - Mk IV - 00C', 33144), (272056, 272057, 1, 300, 'Nova Flow - Mk IV - 40C', 33144), (272058, 272059, 1, 300, 'Nova Flow - Mk IV - C0C', 33144), (157710, 157711, 51, 99, 'Novice Mausser Chemical Streamer', 33154), (214863, 214863, 1, 1, 'Novictalized Notum Crystal Containing All Structural and Spiritual Information Concerning a Trapped Soul', 227269), (231530, 231530, 125, 125, 'Novictalized Notum Crystal with ''Adobe Suzerain''', 229141), (234260, 234260, 220, 220, 'Novictalized Notum Crystal with ''Aesma Daeva''', 229141), (234161, 234161, 255, 255, 'Novictalized Notum Crystal with ''Agent of Decay''', 229141), (234134, 234134, 255, 255, 'Novictalized Notum Crystal with ''Agent of Putrefaction''', 229141), (234170, 234170, 220, 220, 'Novictalized Notum Crystal with ''Ahpta''', 229141), (231971, 231971, 188, 188, 'Novictalized Notum Crystal with ''Alatyr''', 229141), (234233, 234233, 255, 255, 'Novictalized Notum Crystal with ''Anansi', 229141), (234372, 234372, 255, 255, 'Novictalized Notum Crystal with ''Anansi''', 229141), (239615, 239615, 30, 30, 'Novictalized Notum Crystal with ''Anarir''', 229141), (231863, 231863, 185, 185, 'Novictalized Notum Crystal with ''Anya''', 229141), (231989, 231989, 210, 210, 'Novictalized Notum Crystal with ''Aray''', 229141), (234327, 234327, 255, 255, 'Novictalized Notum Crystal with ''Arch Bigot Aliel''', 229141), (234271, 234271, 220, 220, 'Novictalized Notum Crystal with ''Arch Bigot Biap''', 229141), (234309, 234309, 255, 255, 'Novictalized Notum Crystal with ''Arch Bigot Lohel''', 229141), (232645, 232645, 200, 200, 'Novictalized Notum Crystal with ''Arch Demon of Inferno''', 229141), (231737, 231737, 125, 125, 'Novictalized Notum Crystal with ''Argil Suzerain''', 229141), (234318, 234318, 255, 255, 'Novictalized Notum Crystal with ''Asase Ya''', 229141), (231602, 231602, 125, 125, 'Novictalized Notum Crystal with ''Ashmara Ravin''', 229141), (234290, 234290, 220, 220, 'Novictalized Notum Crystal with ''Ats', 229141), (231548, 231548, 125, 125, 'Novictalized Notum Crystal with ''Auger''', 229141), (231557, 231557, 125, 125, 'Novictalized Notum Crystal with ''Awl''', 229141), (231917, 231917, 185, 185, 'Novictalized Notum Crystal with ''Bagaspati''', 229141), (231575, 231575, 125, 125, 'Novictalized Notum Crystal with ''Beatific Spirit''', 229141), (231728, 231728, 125, 125, 'Novictalized Notum Crystal with ''Bellowing Chimera''', 229141), (231665, 231665, 125, 125, 'Novictalized Notum Crystal with ''Bhinaji Navi''', 229141), (234215, 234215, 255, 255, 'Novictalized Notum Crystal with ''Bia''', 229141), (231422, 231422, 80, 80, 'Novictalized Notum Crystal with ''Black Fang''', 229141), (231629, 231629, 125, 125, 'Novictalized Notum Crystal with ''Blight''', 229141), (231566, 231566, 125, 125, 'Novictalized Notum Crystal with ''Borer''', 229141), (231935, 231935, 178, 178, 'Novictalized Notum Crystal with ''Breaker Teuvo''', 229141), (231908, 231908, 175, 175, 'Novictalized Notum Crystal with ''Brutal Rafter''', 229141), (231458, 231458, 85, 85, 'Novictalized Notum Crystal with ''Brutal Soul Dredge''', 229141), (232600, 232600, 200, 200, 'Novictalized Notum Crystal with ''Cama''', 235329), (239543, 239543, 40, 40, 'Novictalized Notum Crystal with ''Canceroid Cupid''', 229141), (234336, 234336, 220, 220, 'Novictalized Notum Crystal with ''Captured Spirit''', 229141), (239561, 239561, 45, 45, 'Novictalized Notum Crystal with ''Careening Blight''', 229141), (239570, 239570, 45, 45, 'Novictalized Notum Crystal with ''Careening Death''', 229141), (232133, 232133, 195, 195, 'Novictalized Notum Crystal with ''Churn''', 229141), (231449, 231449, 85, 85, 'Novictalized Notum Crystal with ''Circumbendibum''', 229141), (231413, 231413, 80, 80, 'Novictalized Notum Crystal with ''Circumbendibus''', 229141), (231656, 231656, 125, 125, 'Novictalized Notum Crystal with ''Contorted Soul Dredge''', 229141), (232573, 232573, 170, 170, 'Novictalized Notum Crystal with ''Dalja''', 231190), (231827, 231827, 220, 220, 'Novictalized Notum Crystal with ''Defiler of Scheol''', 229141), (231845, 231845, 220, 220, 'Novictalized Notum Crystal with ''Destroyer of Scheol''', 229141), (231836, 231836, 220, 220, 'Novictalized Notum Crystal with ''Devastator of Scheol''', 229141), (231818, 231818, 205, 205, 'Novictalized Notum Crystal with ''Devourer of Scheol''', 229141), (232591, 242536, 140, 150, 'Novictalized Notum Crystal with ''Diviner Gil Kald-Thar''', 227253), (239642, 239642, 180, 180, 'Novictalized Notum Crystal with ''Eidolean Soul Dredge''', 229141), (239688, 239688, 220, 220, 'Novictalized Notum Crystal with ''Exsequiae''', 229141), (234152, 234152, 220, 220, 'Novictalized Notum Crystal with ''Fester Leila''', 229141), (231692, 231692, 125, 125, 'Novictalized Notum Crystal with ''Flinty''', 229141), (232564, 232564, 170, 170, 'Novictalized Notum Crystal with ''Gilthar''', 231191), (239651, 239651, 188, 188, 'Novictalized Notum Crystal with ''Glitter''', 229141), (231503, 231503, 115, 115, 'Novictalized Notum Crystal with ''Gracious Soul Dredge''', 229141), (231710, 231710, 125, 125, 'Novictalized Notum Crystal with ''Gunk''', 229141), (231998, 231998, 210, 210, 'Novictalized Notum Crystal with ''Hadur''', 229141), (234188, 234188, 220, 220, 'Novictalized Notum Crystal with ''Haqa''', 229141), (231638, 231638, 125, 125, 'Novictalized Notum Crystal with ''Hemut''', 229141), (239678, 239678, 220, 220, 'Novictalized Notum Crystal with ''Ho''', 229141), (231521, 231521, 125, 125, 'Novictalized Notum Crystal with ''Ignis Fatui''', 229141), (231584, 231584, 125, 125, 'Novictalized Notum Crystal with ''Ignis Fatuus''', 229141), (232007, 232007, 182, 182, 'Novictalized Notum Crystal with ''Imk', 229141), (232582, 232582, 160, 160, 'Novictalized Notum Crystal with ''Infernal Demon''', 229141), (231539, 231539, 125, 125, 'Novictalized Notum Crystal with ''Iunmin''', 229141), (232016, 232016, 182, 182, 'Novictalized Notum Crystal with ''Juma''', 229141), (234107, 234107, 220, 220, 'Novictalized Notum Crystal with ''K', 229141), (232025, 232025, 182, 182, 'Novictalized Notum Crystal with ''Kaleva''', 229141), (231773, 231773, 125, 125, 'Novictalized Notum Crystal with ''Kaoline Suzerain''', 229141), (231647, 231647, 125, 125, 'Novictalized Notum Crystal with ''Khemhet''', 229141), (232636, 232636, 200, 200, 'Novictalized Notum Crystal with ''Lady Genevra Di''Venague''', 229141), (231611, 231611, 125, 125, 'Novictalized Notum Crystal with ''Lethargic Spirit''', 229141), (231746, 231746, 125, 125, 'Novictalized Notum Crystal with ''Loessial Suzerain''', 229141), (239669, 239669, 125, 125, 'Novictalized Notum Crystal with ''Loltonunon''', 229141), (232079, 232079, 165, 165, 'Novictalized Notum Crystal with ''Lurky''', 229141), (234224, 234224, 220, 220, 'Novictalized Notum Crystal with ''Lya''', 229141), (239534, 239534, 40, 40, 'Novictalized Notum Crystal with ''Malah-Animus''', 229141), (239525, 239525, 40, 40, 'Novictalized Notum Crystal with ''Malah-At''', 229141), (239516, 239516, 40, 40, 'Novictalized Notum Crystal with ''Malah-Auris''', 229141), (239579, 239579, 25, 25, 'Novictalized Notum Crystal with ''Maledicta''', 229141), (231593, 231593, 125, 125, 'Novictalized Notum Crystal with ''Marem''', 229141), (231674, 231674, 125, 125, 'Novictalized Notum Crystal with ''Marly Suzerain''', 229141), (239597, 239597, 50, 50, 'Novictalized Notum Crystal with ''Mawi''', 229141), (231620, 231620, 125, 125, 'Novictalized Notum Crystal with ''Misery''', 229141), (232097, 232097, 165, 165, 'Novictalized Notum Crystal with ''Moochy''', 229141), (231890, 231890, 215, 215, 'Novictalized Notum Crystal with ''Morrow''', 229141), (239489, 239489, 255, 255, 'Novictalized Notum Crystal with ''Nyame''', 229141), (232546, 232546, 140, 140, 'Novictalized Notum Crystal with ''Ocra''', 235334), (234386, 234386, 220, 220, 'Novictalized Notum Crystal with ''Odqan''', 229141), (232034, 232034, 165, 165, 'Novictalized Notum Crystal with ''Old Salty''', 229141), (231755, 231755, 125, 125, 'Novictalized Notum Crystal with ''Ooze''', 229141), (234251, 234251, 220, 220, 'Novictalized Notum Crystal with ''Pazuzu''', 229141), (232124, 232124, 195, 195, 'Novictalized Notum Crystal with ''Quake''', 229141), (231881, 231881, 215, 215, 'Novictalized Notum Crystal with ''Quondam''', 229141), (234300, 234300, 235, 235, 'Novictalized Notum Crystal with ''Rallies Fete''', 229141), (234354, 234354, 255, 255, 'Novictalized Notum Crystal with ''Razor the Battletoad''', 229141), (242545, 242545, 200, 200, 'Novictalized Notum Crystal with ''Redeemed Cama''', 229141), (242518, 242518, 170, 170, 'Novictalized Notum Crystal with ''Redeemed Gilthar''', 229141), (232618, 234442, 200, 255, 'Novictalized Notum Crystal with ''Redeemed Lord Galahad''', 229141), (242500, 242500, 140, 140, 'Novictalized Notum Crystal with ''Redeemed Ocra''', 229141), (234125, 234125, 220, 220, 'Novictalized Notum Crystal with ''Relief Teals''', 229141), (232555, 232555, 140, 140, 'Novictalized Notum Crystal with ''Roch''', 235339), (239552, 239552, 35, 35, 'Novictalized Notum Crystal with ''Sabretooth Slicer''', 229141), (231854, 231854, 185, 185, 'Novictalized Notum Crystal with ''Sampsa''', 229141), (234206, 234206, 220, 220, 'Novictalized Notum Crystal with ''Sasabonsam''', 229141), (234098, 234098, 220, 220, 'Novictalized Notum Crystal with ''Sashu''', 229141), (239660, 239660, 125, 125, 'Novictalized Notum Crystal with ''Satkamear''', 229141), (239606, 239606, 50, 50, 'Novictalized Notum Crystal with ''Sawi''', 229141), (231431, 231431, 80, 80, 'Novictalized Notum Crystal with ''Scratch''', 229141), (231440, 231440, 80, 80, 'Novictalized Notum Crystal with ''Screech''', 229141), (232214, 232106, 192, 195, 'Novictalized Notum Crystal with ''Shake''', 229141), (232205, 232205, 192, 192, 'Novictalized Notum Crystal with ''Shiver''', 229141), (234363, 234363, 255, 255, 'Novictalized Notum Crystal with ''Shullat''', 229141), (231404, 231404, 80, 80, 'Novictalized Notum Crystal with ''Silver Fang''', 229141), (232088, 232088, 165, 165, 'Novictalized Notum Crystal with ''Skulky''', 229141), (232070, 232070, 165, 165, 'Novictalized Notum Crystal with ''Slinky''', 229141), (232043, 232043, 165, 165, 'Novictalized Notum Crystal with ''Smee''', 229141), (231512, 231512, 115, 115, 'Novictalized Notum Crystal with ''Spiritless Soul Dredge''', 229141), (231953, 231953, 180, 180, 'Novictalized Notum Crystal with ''Srahir''', 229141), (234197, 234197, 220, 220, 'Novictalized Notum Crystal with ''Taille Frees''', 229141), (239706, 239706, 48, 48, 'Novictalized Notum Crystal with ''Tcheser''', 229141), (239498, 239498, 160, 160, 'Novictalized Notum Crystal with ''The Abysmal Lord''', 229141), (232196, 232196, 165, 165, 'Novictalized Notum Crystal with ''The Abyssal Widow''', 229141), (239697, 239697, 120, 120, 'Novictalized Notum Crystal with ''The Achbile Guardian''', 229141), (232151, 232151, 165, 165, 'Novictalized Notum Crystal with ''The Adonian Soul Dredge''', 229141), (232178, 232178, 165, 165, 'Novictalized Notum Crystal with ''The Adonis Spirit Master''', 229141), (231782, 231782, 120, 120, 'Novictalized Notum Crystal with ''The Archbile Queen''', 229141), (239624, 239624, 185, 185, 'Novictalized Notum Crystal with ''The Brobdingnagian Mother''', 229141), (232169, 232169, 165, 165, 'Novictalized Notum Crystal with ''The Dredge Driver''', 229141), (234242, 234242, 220, 220, 'Novictalized Notum Crystal with ''The Dryad Demigod''', 229141), (231944, 231944, 185, 185, 'Novictalized Notum Crystal with ''The Dryad Shuffle''', 229141), (231467, 231467, 90, 90, 'Novictalized Notum Crystal with ''The Dune Suzerain''', 229141), (231494, 231494, 90, 90, 'Novictalized Notum Crystal with ''The Elysian Soul Dredge''', 229141), (231809, 231809, 120, 120, 'Novictalized Notum Crystal with ''The Enrapt One''', 229141), (239724, 239724, 210, 210, 'Novictalized Notum Crystal with ''The Great Ice Golem''', 229141), (234280, 234280, 220, 220, 'Novictalized Notum Crystal with ''The Indomitable Chimera''', 229141), (242458, 242458, 220, 220, 'Novictalized Notum Crystal with ''The Infernal Soul Dredge''', 229141), (231872, 231872, 205, 205, 'Novictalized Notum Crystal with ''The Maggot Lord''', 229141), (234143, 234143, 255, 255, 'Novictalized Notum Crystal with ''The Mortificator''', 229141), (231800, 231800, 120, 120, 'Novictalized Notum Crystal with ''The Numb One''', 229141), (231899, 231899, 165, 165, 'Novictalized Notum Crystal with ''The Penumbral Spirit Hunter''', 229141), (232061, 232061, 172, 172, 'Novictalized Notum Crystal with ''The Peristaltic Abomination''', 229141), (232052, 232052, 172, 172, 'Novictalized Notum Crystal with ''The Peristaltic Aversion''', 229141), (232187, 232187, 165, 165, 'Novictalized Notum Crystal with ''The Proprietrix''', 229141), (231764, 231764, 125, 125, 'Novictalized Notum Crystal with ''The Scheolian Soul Dredge''', 229141), (239633, 239633, 185, 185, 'Novictalized Notum Crystal with ''The Stupendous Breeder''', 229141), (231476, 231476, 90, 90, 'Novictalized Notum Crystal with ''The Talus Suzerain''', 229141), (232160, 232160, 165, 165, 'Novictalized Notum Crystal with ''The Watchdog''', 229141), (231980, 231980, 202, 202, 'Novictalized Notum Crystal with ''The Worm King''', 229141), (231719, 231719, 125, 125, 'Novictalized Notum Crystal with ''Thunderous Chimera''', 229141), (232115, 232115, 195, 195, 'Novictalized Notum Crystal with ''Toss''', 229141), (231683, 231683, 125, 125, 'Novictalized Notum Crystal with ''Tough''', 229141), (231485, 231485, 90, 90, 'Novictalized Notum Crystal with ''Ungulera''', 229141), (242527, 242527, 170, 170, 'Novictalized Notum Crystal with ''Unredeemed Dalja''', 229141), (232627, 234451, 200, 255, 'Novictalized Notum Crystal with ''Unredeemed Lord Mordeth''', 229141), (242509, 242509, 140, 140, 'Novictalized Notum Crystal with ''Unredeemed Roch''', 229141), (242554, 242554, 200, 200, 'Novictalized Notum Crystal with ''Unredeemed Vanya''', 229141), (239715, 239715, 48, 48, 'Novictalized Notum Crystal with ''Upenpet''', 229141), (234179, 234179, 220, 220, 'Novictalized Notum Crystal with ''Ushqa''', 229141), (232609, 232609, 200, 200, 'Novictalized Notum Crystal with ''Vanya''', 235337), (232142, 232142, 165, 165, 'Novictalized Notum Crystal with ''Viscious Visitant''', 229141), (231701, 231701, 125, 125, 'Novictalized Notum Crystal with ''Wacky Suzerain''', 229141), (239588, 239588, 50, 50, 'Novictalized Notum Crystal with ''Wala''', 229141), (234116, 234116, 220, 220, 'Novictalized Notum Crystal with ''Waqa''', 229141), (242660, 242660, 135, 135, 'Novictalized Notum Crystal with ''Weary Empath Min-Ji Liu''', 229141), (231791, 231791, 120, 120, 'Novictalized Notum Crystal with ''White''', 229141), (234345, 234345, 255, 255, 'Novictalized Notum Crystal with ''Xark the Battletoad''', 229141), (231962, 231962, 180, 180, 'Novictalized Notum Crystal with ''Zoetic Oak''', 229141), (294010, 294010, 275, 275, 'Novictalized Notum Crystal with the ''Wistful Apparition''', 229141), (260523, 260523, 1, 1, 'Novictum Bomb', 218752), (260526, 260526, 1, 1, 'Novictum Fuel', 20412), (228371, 228372, 49, 199, 'Novictum Katana of Innocence', 13326), (218472, 218472, 100, 100, 'Novictum Mud', 20407), (218478, 218478, 100, 100, 'Novictum Sand', 20407), (246817, 246817, 200, 200, 'Novictum Seed', 246816), (292531, 292531, 1, 1, 'Novictum-Enriched Graphene Metamaterial', 292761), (295655, 295655, 1, 1, 'Novictum-Infused Black Shell', 233133), (295627, 295627, 1, 1, 'Novictum-Infused White Shell', 233133), (264006, 264006, 1, 1, 'Nucleus of Crusty Eremite', 25802), (262199, 262199, 1, 1, 'Nucleus of Somphos Argeele', 262201), (262179, 262179, 1, 1, 'Nucleus of Somphos Argef', 262178), (262200, 262200, 1, 1, 'Nucleus of Somphos Sorlivet', 262202), (248962, 248962, 1, 1, 'Numb', 255682), (276663, 276663, 1, 1, 'Numbing Toxin', 99276), (276664, 276664, 1, 1, 'Numbing Toxin', 99276), (276665, 276665, 1, 1, 'Numbing Toxin', 99276), (124101, 124102, 1, 43, 'O.E.T. Co. C70 Brigand', 13312), (124105, 124105, 176, 176, 'O.E.T. Co. C70 Escapist', 13312), (124103, 124104, 44, 175, 'O.E.T. Co. C70 Extragavanza', 13312), (124306, 124307, 38, 79, 'O.E.T. Co. Chic Urban Sniper', 113988), (124308, 124309, 80, 123, 'O.E.T. Co. Golden Urban Sniper', 113988), (123863, 123864, 100, 159, 'O.E.T. Co. Jess', 13315), (123867, 123867, 200, 200, 'O.E.T. Co. Maharanee', 13315), (123859, 123860, 70, 89, 'O.E.T. Co. Pelastio', 13315), (123861, 123862, 90, 99, 'O.E.T. Co. Pelastio V2', 13315), (123865, 123866, 160, 199, 'O.E.T. Co. Pelastio V3', 13315), (123999, 124000, 95, 134, 'O.E.T. Co. Type 77a Genuine', 21146), (124001, 124002, 135, 187, 'O.E.T. Co. Type 77a Lovemaker', 21146), (123997, 123998, 75, 94, 'O.E.T. Co. Type 77a Mikado', 21146), (123995, 123996, 45, 74, 'O.E.T. Co. Type 77a Min Min', 21146), (124003, 124003, 188, 188, 'O.E.T. Co. Type 77a Ranee', 21146), (124312, 124312, 192, 192, 'O.E.T. Co. Urban Sniper Kaiser', 113988), (124310, 124311, 124, 191, 'O.E.T. Co. Vegetable Urban Sniper', 113988), (303639, 303639, 1, 1, 'OET Co. MP-20 Tactical Machine Pistol', 21148), (267930, 267930, 300, 300, 'OFAB Adventure Protective Gear', 41170), (267931, 267931, 300, 300, 'OFAB Adventurer Protective Gear', 268018), (301693, 301693, 300, 300, 'OFAB Adventurer Shoulder Wear', 160886), (267509, 267509, 300, 300, 'OFAB Agent Protective Gear', 268019), (301698, 301698, 300, 300, 'OFAB Agent Shoulder Wear', 160886), (267932, 267932, 300, 300, 'OFAB Bureaucrat Protective Gear', 268008), (301696, 301696, 300, 300, 'OFAB Bureaucrat Shoulder Wear', 160886), (267933, 267933, 300, 300, 'OFAB Doctor Protective Gear', 268009), (301697, 301697, 300, 300, 'OFAB Doctor Shoulder Wear', 160886), (267510, 267510, 300, 300, 'OFAB Enforcer Protective Gear', 268010), (267511, 267511, 300, 300, 'OFAB Enforcer Shoulder Wear', 268025), (267936, 267936, 300, 300, 'OFAB Engineer Protective Gear', 268011), (268003, 268003, 300, 300, 'OFAB Engineer Shoulder Wear', 268020), (267512, 267512, 300, 300, 'OFAB Fixer Protective Gear', 268012), (301694, 301694, 300, 300, 'OFAB Fixer Shoulder Wear', 160886), (267513, 267513, 300, 300, 'OFAB Keeper Protective Gear', 268013), (267514, 267514, 300, 300, 'OFAB Keeper Shoulder Wear', 268021), (267937, 267937, 300, 300, 'OFAB Martial Artist Protective Gear', 268014), (268004, 268004, 300, 300, 'OFAB Martial Artist Shoulder Wear', 268022), (272536, 272537, 100, 210, 'OFAB Melee Debuff Bracer - type 1', 272990), (272669, 272670, 100, 210, 'OFAB Melee Debuff Bracer - type 2', 272991), (272679, 272680, 100, 210, 'OFAB Melee Debuff Bracer - type 3', 272992), (273737, 273738, 100, 210, 'OFAB Melee Debuff Bracer - type 4', 273736), (267515, 267515, 300, 300, 'OFAB Meta-Physicist Protective Gear', 268015), (301695, 301695, 300, 300, 'OFAB Metaphysicist Shoulder Wear', 160886), (272667, 272668, 100, 210, 'OFAB Mixed Debuff Bracer - type 1', 272987), (272677, 272678, 100, 210, 'OFAB Mixed Debuff Bracer - type 2', 272988), (272687, 272688, 100, 210, 'OFAB Mixed Debuff Bracer - type 3', 272989), (273745, 273746, 100, 210, 'OFAB Mixed Debuff Bracer - type 4', 273735), (267938, 267938, 300, 300, 'OFAB Nano Technician Protective Gear', 268051), (268081, 268081, 300, 300, 'OFAB Nano Technician Shoulder Wear', 268052), (272661, 272662, 100, 210, 'OFAB Ranged Debuff Bracer - type 1', 272993), (272671, 272672, 100, 210, 'OFAB Ranged Debuff Bracer - type 2', 272994), (272681, 272682, 100, 210, 'OFAB Ranged Debuff Bracer - type 3', 272995), (273739, 273740, 100, 210, 'OFAB Ranged Debuff Bracer - type 4', 273732), (267934, 267934, 300, 300, 'OFAB Shade Protective Gear', 268016), (268005, 268005, 300, 300, 'OFAB Shade Shoulder Wear', 268023), (267939, 267939, 300, 300, 'OFAB Soldier Protective Gear', 268161), (268186, 268186, 300, 300, 'OFAB Soldier Shoulder Wear', 268162), (272663, 272664, 100, 210, 'OFAB Special Debuff Bracer - type 1', 272996), (272673, 272674, 100, 210, 'OFAB Special Debuff Bracer - type 2', 272997), (272683, 272684, 100, 210, 'OFAB Special Debuff Bracer - type 3', 272983), (273741, 273742, 100, 210, 'OFAB Special Debuff Bracer - type 4', 273733), (267935, 267935, 300, 300, 'OFAB Trader Protective Gear', 268017), (268006, 268006, 300, 300, 'OFAB Trader Shoulder Wear', 268024), (123906, 123907, 33, 98, 'OT 0120 Machine Pistol', 13311), (123908, 123908, 99, 99, 'OT 0125 Machine Pistol', 13311), (123579, 123580, 87, 104, 'OT 0220 22mm Combat Magnum', 31808), (160179, 160180, 61, 160, 'OT 12', 21149), (124776, 124777, 70, 179, 'OT ARL-10 Micromissile Launcher', 13311), (124366, 124367, 40, 124, 'OT Anti-Cyborg Rifle', 21146), (160255, 160256, 101, 120, 'OT Army Officer Pistol', 113993), (160247, 160248, 21, 40, 'OT Army Officer Pistol - Amanda', 113993), (160253, 160254, 81, 100, 'OT Army Officer Pistol - Corrine', 113993), (160251, 160252, 61, 80, 'OT Army Officer Pistol - Jenny', 113993), (160259, 160260, 141, 160, 'OT Army Officer Pistol - Liza', 113993), (160257, 160258, 121, 140, 'OT Army Officer Pistol - Madeleine', 113993), (160263, 160263, 200, 200, 'OT Army Officer Pistol - Premium Suzy', 113993), (160249, 160250, 41, 60, 'OT Army Officer Pistol - Sally', 113993), (160261, 160262, 161, 199, 'OT Army Officer Pistol - Suzy', 113993), (123897, 123898, 42, 83, 'OT Backup', 113988), (123903, 123903, 180, 180, 'OT Backup Pundit', 113988), (123899, 123900, 84, 121, 'OT Backup S.C', 113988), (123901, 123902, 122, 179, 'OT Backup S.C Ultra', 113988), (271641, 271642, 1, 300, 'OT Biomag - 000', 38055), (271645, 271646, 1, 300, 'OT Biomag - 401', 38055), (271647, 271648, 1, 300, 'OT Biomag - C01', 38055), (123720, 123721, 190, 199, 'OT Biomag Elite', 38055), (123718, 123719, 180, 189, 'OT Biomag v Public', 38055), (123714, 123715, 160, 169, 'OT Biomag v1.3', 38055), (123716, 123717, 170, 179, 'OT Biomag v1.7', 38055), (123971, 123972, 30, 119, 'OT Boomer M30', 21147), (123973, 123973, 120, 120, 'OT Boomer M30 Sagitta', 21147), (124505, 124506, 6, 29, 'OT Eskorpio 21', 21147), (124507, 124508, 30, 187, 'OT Eskorpio 21 Hru', 21147), (124509, 124509, 188, 188, 'OT Eskorpio 21 Hrx', 21147), (208000, 207998, 140, 149, 'OT Hurler', 21149), (207999, 207999, 150, 150, 'OT Hurler Factotum', 21149), (160478, 160479, 99, 199, 'OT Kerans Automatic Grinner', 21147), (152367, 152368, 1, 10, 'OT Limb Bow Prototype III', 85167), (152369, 152370, 11, 20, 'OT Limb Bow Prototype IV', 85167), (152371, 152372, 21, 30, 'OT Limb Bow Prototype XIV', 85167), (152373, 152374, 31, 40, 'OT Limb Bow Prototype XXIII', 85167), (152379, 152380, 81, 120, 'OT Limb Bow Prototype XXIX', 85167), (152375, 152376, 41, 50, 'OT Limb Bow Prototype XXVI Red', 85167), (152377, 152378, 51, 80, 'OT Limb Bow Prototype XXVII', 85167), (152381, 152382, 121, 160, 'OT Limb Bow Prototype XXXII a', 85167), (152383, 152384, 161, 199, 'OT Limb Bow Prototype XXXIII', 85167), (152385, 152385, 200, 200, 'OT Limb Bow Prototype XXXVI', 85167), (123746, 123747, 22, 37, 'OT M-10 Flechette Pistol', 113994), (123760, 123760, 200, 200, 'OT M-10 Nano Flechette Grand Master', 113994), (123758, 123759, 192, 199, 'OT M-10 Nano Flechette Superior', 113994), (123748, 123749, 38, 119, 'OT M-10.3 Flechette Pistol', 113994), (123750, 123751, 120, 139, 'OT M-10.4 Flechette Pistol', 113994), (123752, 123753, 140, 159, 'OT M-10.4 Nano Flechette Pistol', 113994), (123754, 123755, 160, 183, 'OT M-10.4 Nano Flechette Pistol', 113994), (123756, 123757, 184, 191, 'OT M-10.4 Nano Flechette Pistol', 113994), (124243, 124244, 30, 49, 'OT M50 Shotgun', 113990), (124245, 124246, 50, 69, 'OT M50-ACX Shotgun', 113990), (124352, 124353, 50, 114, 'OT M500 SWAT Ludo', 13312), (124356, 124356, 180, 180, 'OT M500 SWAT Monster', 13312), (124354, 124355, 115, 179, 'OT M500 SWAT Pioneer', 13312), (124350, 124351, 25, 49, 'OT M500 SWAT Rifle', 13312), (124247, 124248, 70, 89, 'OT M50adc Shotgun', 113990), (124249, 124250, 90, 119, 'OT M50atg Shotgun', 113990), (124251, 124252, 120, 149, 'OT M50bbk Shotgun', 113990), (124253, 124254, 150, 199, 'OT M50bhq Shotgun', 113990), (124255, 124255, 200, 200, 'OT M50caw Shotgun', 113990), (124265, 124266, 30, 88, 'OT MPS-00 Police Shotgun', 13341), (124267, 124268, 89, 111, 'OT MPS-01 Police Shotgun', 13341), (124269, 124270, 112, 131, 'OT MPS-02 Police Shotgun', 13341), (124271, 124272, 132, 166, 'OT MPS-04 Police Shotgun', 13341), (124273, 124274, 167, 189, 'OT MPS-05 Police Shotgun', 13341), (124275, 124275, 190, 190, 'OT MPS-07 Police Shotgun', 13341), (124368, 124368, 125, 125, 'OT Master Anti-Cyborg Rifle', 21146), (154833, 154833, 200, 200, 'OT New Pistol', 113992), (123990, 123990, 160, 160, 'OT PF57 Flechette System', 33155), (124397, 124398, 90, 169, 'OT Rancho C.C V5g', 114015), (124399, 124399, 170, 170, 'OT Rancho CC Chapman', 114015), (124393, 124394, 33, 59, 'OT Rancho CC Prototype', 114015), (124395, 124396, 60, 89, 'OT Rancho CC V5a', 114015), (124391, 124392, 1, 32, 'OT Rancho Colonial Carbine', 114015), (154812, 154813, 100, 199, 'OT Rebuilt Suppressor', 33153), (154796, 154797, 1, 99, 'OT Rebuilt Suppressor - Prototype', 33153), (136608, 136609, 1, 200, 'OT Ring', 286188), (160116, 160117, 101, 150, 'OT Riot-Police Shield', 160124), (285516, 285516, 1, 1, 'OT Shade Armor', 22990), (156522, 156528, 20, 80, 'OT Standard Executive Secretary Suit', 156357), (40832, 40832, 1, 1, 'OT Storage Crystal', 20412), (142831, 142832, 141, 160, 'OT Survival Knife', 40783), (130176, 130177, 80, 159, 'OT Sword', 113987), (130180, 130180, 200, 200, 'OT Sword Star', 113987), (152747, 152748, 1, 20, 'OT prototype GGI-I Assault', 33158), (152749, 152750, 21, 40, 'OT prototype GGI-III Assault', 33158), (152751, 152752, 41, 60, 'OT prototype GGI-IV Assault', 33158), (152755, 152756, 81, 100, 'OT prototype GGI-IX Assault', 33158), (152753, 152754, 61, 80, 'OT prototype GGI-VII Assault', 33158), (152757, 152758, 101, 120, 'OT prototype GGI-X Assault', 33158), (152759, 152760, 121, 140, 'OT prototype GGI-XI Assault', 33158), (152761, 152762, 141, 160, 'OT prototype GGI-XII Assault', 33158), (152763, 152764, 161, 199, 'OT prototype GGI-XV Assault', 33158), (152765, 152765, 200, 200, 'OT prototype GGI-XVI Assault', 33158), (124202, 124203, 57, 83, 'OT-WC RM72 Junior', 21146), (124208, 124209, 143, 165, 'OT-WC RM72 Junior Bido', 21146), (124206, 124207, 111, 142, 'OT-WC RM72 Junior Guad', 21146), (124210, 124211, 166, 181, 'OT-WC RM72 Junior Tium', 21146), (124204, 124205, 84, 110, 'OT-WC RM72 Junior Yado', 21146), (124216, 124216, 200, 200, 'OT-WC RM73 Junior Baby', 21146), (124214, 124215, 190, 199, 'OT-WC RM73 Junior Big Sister', 21146), (124212, 124213, 182, 189, 'OT-WC RM73 Junior Brother', 21146), (124143, 124144, 1, 17, 'OT-Windchaser M05 Rifle', 13314), (124161, 124161, 170, 170, 'OT-Windchaser M06 Diamond', 13314), (124155, 124156, 38, 40, 'OT-Windchaser M06 Emerald', 13314), (124149, 124150, 26, 29, 'OT-Windchaser M06 Hematite', 13314), (124153, 124154, 34, 37, 'OT-Windchaser M06 Jasper', 13314), (124157, 124158, 41, 49, 'OT-Windchaser M06 Mother of Pearl', 13314), (124151, 124152, 30, 33, 'OT-Windchaser M06 Onyx', 13314), (124147, 124148, 22, 25, 'OT-Windchaser M06 Quartz', 13314), (124145, 124146, 18, 21, 'OT-Windchaser M06 Rifle', 13314), (124159, 124160, 50, 169, 'OT-Windchaser M06 Ruby', 13314), (124185, 124186, 12, 41, 'OT-Windchaser RM70', 33155), (124189, 124190, 55, 88, 'OT-Windchaser RM70 Chapman', 33155), (124191, 124192, 89, 152, 'OT-Windchaser RM70 Ciao', 33155), (124200, 124201, 33, 56, 'OT-Windchaser RM70 Junior', 21146), (124193, 124194, 153, 173, 'OT-Windchaser RM70 Lol', 33155), (124197, 124197, 200, 200, 'OT-Windchaser RM70 Ozelot', 33155), (124195, 124196, 174, 199, 'OT-Windchaser RM70 Red Jelly', 33155), (124187, 124188, 42, 54, 'OT-Windchaser RM70 yy', 33155), (124287, 124288, 28, 47, 'OT-Windchaser SM30 Shotgun', 13340), (124289, 124290, 48, 60, 'OT-Windchaser SM31 PSB', 13340), (124291, 124292, 61, 80, 'OT-Windchaser SM31b PSB', 13340), (124293, 124294, 81, 99, 'OT-Windchaser SM32 PSB', 13340), (124295, 124296, 100, 151, 'OT-Windchaser SM33 PSB Sugato', 13340), (124297, 124298, 152, 174, 'OT-Windchaser SM34 PSB Foagh', 13340), (124299, 124300, 175, 189, 'OT-Windchaser SM36 PSB Mmuho', 13340), (124301, 124301, 190, 190, 'OT-Windchaser SM37 PSB Pholler', 13340), (297243, 297243, 1, 1, 'OTAF Official Notice', 297242), (240828, 240828, 1, 1, 'O_BPBossO', 130862), (240649, 240649, 1, 1, 'O_coreO and O_boss10O', 130862), (239966, 239966, 1, 1, 'O_coreO and O_boss2O', 130862), (239996, 239996, 1, 1, 'O_coreO and O_boss3O', 130862), (240039, 240039, 1, 1, 'O_coreO and O_boss4O', 130862), (240138, 240138, 1, 1, 'O_coreO and O_boss5O', 130862), (240155, 240155, 1, 1, 'O_coreO and O_boss6O', 130862), (240592, 240592, 1, 1, 'O_coreO and O_boss7O', 130862), (240611, 240611, 1, 1, 'O_coreO and O_boss8O', 130862), (240630, 240630, 1, 1, 'O_coreO and O_boss9O', 130862), (241031, 241031, 1, 1, 'O_core_O and O_Boss1O', 130862), (239876, 239876, 1, 1, 'O_core_O and O_BossXO', 130862), (241015, 241015, 1, 1, 'O_maze_O and O_BigBossO', 130862), (240670, 240670, 1, 1, 'O_maze_O and O_Boss1O', 130862), (240744, 240744, 1, 1, 'O_maze_O and O_Boss2O', 130862), (240769, 240769, 1, 1, 'O_maze_O and O_Boss3O', 130862), (240794, 240794, 1, 1, 'O_maze_O and O_Boss4O', 130862), (240886, 240886, 1, 1, 'O_maze_O and O_Boss5O', 130862), (240905, 240905, 1, 1, 'O_maze_O and O_Boss6O', 130862), (240269, 240269, 1, 1, 'O_maze_O and O_RegbossrO', 130862), (239934, 239934, 1, 1, 'O_maze_O and O_ReghallsO', 130862), (240811, 240811, 1, 1, 'O_maze_O and O_RegriverO', 130862), (240381, 240381, 1, 1, 'O_sided_O and ObossO_side1', 130862), (240460, 240460, 1, 1, 'O_sided_O and ObossO_side2', 130862), (240172, 240172, 1, 1, 'OacgO and ObossO', 130862), (211194, 211195, 1, 299, 'Obfuscating Dagger', 131261), (211196, 211196, 300, 300, 'Obfuscating Dagger of Night', 131261), (257118, 257118, 250, 250, 'ObiTom''s Nano Calculator', 205528), (226155, 226156, 1, 500, 'Obliterate', 239225), (226157, 226158, 1, 500, 'Obliterate', 239225), (226159, 226160, 1, 500, 'Obliterate', 239225), (215351, 215351, 1, 1, 'Obscure Vision', 239343), (215480, 215480, 1, 1, 'Obscure Vision', 82197), (239348, 239348, 1, 1, 'Obscure Vision', 239343), (246583, 246584, 1, 300, 'Observant Armor Footwear', 256339), (246587, 246588, 1, 300, 'Observant Armor Gloves', 256340), (246593, 246594, 1, 300, 'Observant Armor Headwear', 256341), (246585, 246586, 1, 300, 'Observant Armor Legwear', 256342), (246589, 246590, 1, 300, 'Observant Armor Sleeves', 256337), (246591, 246592, 1, 300, 'Observant Body Armor', 256338), (247142, 247143, 1, 300, 'Observant Lead Viralbots', 290347), (305032, 305032, 1, 1, 'Obsidian Defiler', 305049), (305530, 305530, 1, 1, 'Obsidian Desecrator', 305049), (206457, 206457, 180, 180, 'Obsidian Jar', 119185), (303178, 303178, 1, 1, 'Obsidian Shoulderplate', 303177), (250144, 250145, 1, 20, 'Obtuse Adapting Notum Lever', 33163), (152311, 152312, 1, 30, 'Obtuse Assault Partizan', 21140), (144146, 144147, 1, 20, 'Obtuse Burning Copper Katana', 113998), (153083, 153084, 1, 49, 'Obtuse G-Staff', 136738), (130150, 130151, 61, 80, 'Obtuse Hayfork', 85168), (128957, 128958, 1, 20, 'Obtuse Merchant Warblade', 114011), (130106, 130107, 1, 20, 'Obtuse Notum Lever', 33163), (128938, 128939, 1, 20, 'Obtuse Peasant Warblade', 114009), (128995, 128996, 1, 20, 'Obtuse Protector Warblade', 114010), (128976, 128977, 1, 20, 'Obtuse Rider Warblade', 114012), (142817, 142818, 1, 20, 'Obtuse Survival Knife', 40783), (244639, 244639, 250, 250, 'Octopus Contraption of the Pisces', 203513), (275906, 275906, 1, 1, 'Odd Kyr''ozch Nanobots', 11750), (275537, 275537, 1, 1, 'Oddly-Shaped Block of Notum', 72770), (275531, 275531, 1, 1, 'Oddly-Shaped Chip of Notum', 72768), (275532, 275532, 1, 1, 'Oddly-Shaped Chunk of Notum', 72766), (275533, 275533, 1, 1, 'Oddly-Shaped Fragment of Notum', 72769), (275538, 275538, 1, 1, 'Oddly-Shaped Shard of Notum', 72771), (302329, 302329, 1, 1, 'Odonoptera''s T-shirt', 302306), (302330, 302330, 1, 1, 'Odonoptera''s T-shirt Spawner', 302306), (253244, 253245, 150, 299, 'Odum Blade', 40781), (257377, 257377, 300, 300, 'Odum''s Combined Paramedic''s Headwear', 256353), (200214, 200214, 280, 280, 'Odysseys ICC Armor Boots', 22884), (200235, 200235, 280, 280, 'Odysseys ICC Armor Gloves', 31656), (200256, 200256, 280, 280, 'Odysseys ICC Armor Helmet', 31734), (200277, 200277, 280, 280, 'Odysseys ICC Armor Pants', 22919), (200298, 200298, 280, 280, 'Odysseys ICC Armor Sleeves', 31644), (200319, 200319, 280, 280, 'Odysseys ICC Body Armor', 31648), (264202, 264203, 1, 300, 'Ofab Adventurer Body Armor', 266406), (264200, 264201, 1, 300, 'Ofab Adventurer Boots', 266407), (264206, 264207, 1, 300, 'Ofab Adventurer Gloves', 266408), (264208, 264209, 1, 300, 'Ofab Adventurer Helmet', 266369), (264198, 264199, 1, 300, 'Ofab Adventurer Pants', 266409), (264204, 264205, 1, 300, 'Ofab Adventurer Sleeves', 266405), (264305, 264306, 1, 300, 'Ofab Agent Body Armor', 266416), (264311, 264312, 1, 300, 'Ofab Agent Boots', 266417), (264293, 264294, 1, 300, 'Ofab Agent Gloves', 266418), (264287, 264288, 1, 300, 'Ofab Agent Helmet', 266371), (264317, 264318, 1, 300, 'Ofab Agent Pants', 266419), (264299, 264300, 1, 300, 'Ofab Agent Sleeves', 266415), (265237, 265238, 1, 99, 'Ofab Bear Mk 1', 264822), (265239, 265240, 100, 199, 'Ofab Bear Mk 1', 264822), (265241, 265242, 200, 299, 'Ofab Bear Mk 1', 264822), (265243, 265243, 300, 300, 'Ofab Bear Mk 1', 264822), (265244, 265245, 1, 99, 'Ofab Bear Mk 2', 264823), (265246, 265247, 100, 199, 'Ofab Bear Mk 2', 264823), (265248, 265249, 200, 299, 'Ofab Bear Mk 2', 264823), (265250, 265250, 300, 300, 'Ofab Bear Mk 2', 264823), (265251, 265252, 1, 99, 'Ofab Bear Mk 3', 264824), (265253, 265254, 100, 199, 'Ofab Bear Mk 3', 264824), (265255, 265256, 200, 299, 'Ofab Bear Mk 3', 264824), (265257, 265257, 300, 300, 'Ofab Bear Mk 3', 264824), (265258, 265259, 1, 99, 'Ofab Bear Mk 4', 264825), (265260, 265261, 100, 199, 'Ofab Bear Mk 4', 264825), (265262, 265263, 200, 299, 'Ofab Bear Mk 4', 264825), (265264, 265264, 300, 300, 'Ofab Bear Mk 4', 264825), (265265, 265266, 1, 99, 'Ofab Bear Mk 5', 264826), (265267, 265268, 100, 199, 'Ofab Bear Mk 5', 264826), (265269, 265270, 200, 299, 'Ofab Bear Mk 5', 264826), (265271, 265271, 300, 300, 'Ofab Bear Mk 5', 264826), (265272, 265273, 1, 99, 'Ofab Bear Mk 6', 264827), (265274, 265275, 100, 199, 'Ofab Bear Mk 6', 264827), (265276, 265277, 200, 299, 'Ofab Bear Mk 6', 264827), (265278, 265278, 300, 300, 'Ofab Bear Mk 6', 264827), (264527, 264528, 1, 300, 'Ofab Bureaucrat Boots', 266427), (264509, 264510, 1, 300, 'Ofab Bureaucrat Gloves', 266428), (264503, 264504, 1, 300, 'Ofab Bureaucrat Headgear', 266373), (264533, 264534, 1, 300, 'Ofab Bureaucrat Pants', 266429), (264515, 264516, 1, 300, 'Ofab Bureaucrat Sleeves', 266425), (264521, 264522, 1, 300, 'Ofab Bureaucrat Vest', 266426), (265279, 265280, 1, 99, 'Ofab Cobra Mk 1', 264791), (265281, 265282, 100, 199, 'Ofab Cobra Mk 1', 264791), (265283, 265284, 200, 299, 'Ofab Cobra Mk 1', 264791), (265285, 265285, 300, 300, 'Ofab Cobra Mk 1', 264791), (265286, 265287, 1, 99, 'Ofab Cobra Mk 2', 264792), (265288, 265289, 100, 199, 'Ofab Cobra Mk 2', 264792), (265290, 265291, 200, 299, 'Ofab Cobra Mk 2', 264792), (265292, 265292, 300, 300, 'Ofab Cobra Mk 2', 264792), (265293, 265294, 1, 99, 'Ofab Cobra Mk 3', 264793), (265295, 265296, 100, 199, 'Ofab Cobra Mk 3', 264793), (265297, 265298, 200, 299, 'Ofab Cobra Mk 3', 264793), (265299, 265299, 300, 300, 'Ofab Cobra Mk 3', 264793), (265300, 265301, 1, 99, 'Ofab Cobra Mk 4', 264794), (265302, 265303, 100, 199, 'Ofab Cobra Mk 4', 264794), (265304, 265305, 200, 299, 'Ofab Cobra Mk 4', 264794), (265306, 265306, 300, 300, 'Ofab Cobra Mk 4', 264794), (265307, 265308, 1, 99, 'Ofab Cobra Mk 5', 264795), (265309, 265310, 100, 199, 'Ofab Cobra Mk 5', 264795), (265311, 265312, 200, 299, 'Ofab Cobra Mk 5', 264795), (265313, 265313, 300, 300, 'Ofab Cobra Mk 5', 264795), (265314, 265315, 1, 99, 'Ofab Cobra Mk 6', 264796), (265316, 265317, 100, 199, 'Ofab Cobra Mk 6', 264796), (265318, 265319, 200, 299, 'Ofab Cobra Mk 6', 264796), (265320, 265320, 300, 300, 'Ofab Cobra Mk 6', 264796), (264668, 264669, 1, 300, 'Ofab Doctor Body', 266436), (264674, 264675, 1, 300, 'Ofab Doctor Boots', 266437), (264656, 264657, 1, 300, 'Ofab Doctor Gloves', 266438), (264650, 264651, 1, 300, 'Ofab Doctor Helmet', 266375), (264680, 264681, 1, 300, 'Ofab Doctor Pants', 266439), (264662, 264663, 1, 300, 'Ofab Doctor Sleeves', 266435), (264217, 264218, 1, 300, 'Ofab Enforcer Boots', 266447), (264223, 264224, 1, 300, 'Ofab Enforcer Breastplate', 266446), (264235, 264236, 1, 300, 'Ofab Enforcer Gauntlets', 266448), (264241, 264242, 1, 300, 'Ofab Enforcer Helmet', 266377), (264211, 264212, 1, 300, 'Ofab Enforcer Pants', 266449), (264229, 264230, 1, 300, 'Ofab Enforcer Sleeves', 266445), (264596, 264597, 1, 300, 'Ofab Engineer Body', 266456), (264602, 264603, 1, 300, 'Ofab Engineer Boots', 266457), (264581, 264582, 1, 300, 'Ofab Engineer Gloves', 266458), (264575, 264576, 1, 300, 'Ofab Engineer Helmet', 266379), (264608, 264609, 1, 300, 'Ofab Engineer Pants', 266459), (264590, 264591, 1, 300, 'Ofab Engineer Sleeves', 266455), (264485, 264486, 1, 300, 'Ofab Fixer Body Armor', 266466), (264491, 264492, 1, 300, 'Ofab Fixer Boots', 266467), (264473, 264474, 1, 300, 'Ofab Fixer Gloves', 266468), (264467, 264468, 1, 300, 'Ofab Fixer Helmet', 266381), (264497, 264498, 1, 300, 'Ofab Fixer Pants', 266469), (264479, 264480, 1, 300, 'Ofab Fixer Sleeves', 266465), (265153, 265154, 1, 99, 'Ofab Hawk Mk 1', 264804), (265155, 265156, 100, 199, 'Ofab Hawk Mk 1', 264804), (265157, 265158, 200, 299, 'Ofab Hawk Mk 1', 264804), (265159, 265159, 300, 300, 'Ofab Hawk Mk 1', 264804), (265160, 265161, 1, 99, 'Ofab Hawk Mk 2', 264805), (265162, 265163, 100, 199, 'Ofab Hawk Mk 2', 264805), (265164, 265165, 200, 299, 'Ofab Hawk Mk 2', 264805), (265166, 265166, 300, 300, 'Ofab Hawk Mk 2', 264805), (265167, 265168, 1, 99, 'Ofab Hawk Mk 3', 264806), (265169, 265170, 100, 199, 'Ofab Hawk Mk 3', 264806), (265171, 265172, 200, 299, 'Ofab Hawk Mk 3', 264806), (265173, 265173, 300, 300, 'Ofab Hawk Mk 3', 264806), (265174, 265175, 1, 99, 'Ofab Hawk Mk 4', 264807), (265176, 265177, 100, 199, 'Ofab Hawk Mk 4', 264807), (265178, 265179, 200, 299, 'Ofab Hawk Mk 4', 264807), (265180, 265180, 300, 300, 'Ofab Hawk Mk 4', 264807), (265181, 265182, 1, 99, 'Ofab Hawk Mk 5', 264808), (265183, 265184, 100, 199, 'Ofab Hawk Mk 5', 264808), (265185, 265186, 200, 299, 'Ofab Hawk Mk 5', 264808), (265187, 265187, 300, 300, 'Ofab Hawk Mk 5', 264808), (265188, 265189, 1, 99, 'Ofab Hawk Mk 6', 264809), (265190, 265191, 100, 199, 'Ofab Hawk Mk 6', 264809), (265192, 265193, 200, 299, 'Ofab Hawk Mk 6', 264809), (265194, 265194, 300, 300, 'Ofab Hawk Mk 6', 264809), (264632, 264633, 1, 300, 'Ofab Keeper Body Armor', 266476), (264638, 264639, 1, 300, 'Ofab Keeper Boots', 266477), (264620, 264621, 1, 300, 'Ofab Keeper Gloves', 266478), (264614, 264615, 1, 300, 'Ofab Keeper Helmet', 266383), (264644, 264645, 1, 300, 'Ofab Keeper Pants', 266479), (264626, 264627, 1, 300, 'Ofab Keeper Sleeves', 266475), (264341, 264342, 1, 300, 'Ofab Martial Artist Body Armor', 266486), (264347, 264348, 1, 300, 'Ofab Martial Artist Boots', 266487), (264329, 264330, 1, 300, 'Ofab Martial Artist Gloves', 266488), (264323, 264324, 1, 300, 'Ofab Martial Artist Helmet', 266385), (264353, 264354, 1, 300, 'Ofab Martial Artist Pants', 266489), (264335, 264336, 1, 300, 'Ofab Martial Artist Sleeves', 266485), (264377, 264378, 1, 300, 'Ofab Metaphysicist Body Armor', 266496), (264383, 264384, 1, 300, 'Ofab Metaphysicist Boots', 266497), (264365, 264366, 1, 300, 'Ofab Metaphysicist Gloves', 266498), (264359, 264360, 1, 300, 'Ofab Metaphysicist Headgear', 266387), (264389, 264390, 1, 300, 'Ofab Metaphysicist Pants', 266499), (264371, 264372, 1, 300, 'Ofab Metaphysicist Sleeves', 266495), (265146, 265147, 1, 99, 'Ofab Mongoose Mk 1', 264816), (265148, 265149, 100, 199, 'Ofab Mongoose Mk 1', 264816), (265150, 265151, 200, 299, 'Ofab Mongoose Mk 1', 264816), (265152, 265152, 300, 300, 'Ofab Mongoose Mk 1', 264816), (264901, 264902, 1, 99, 'Ofab Mongoose Mk 2', 264817), (264903, 264904, 100, 199, 'Ofab Mongoose Mk 2', 264817), (264905, 264906, 200, 299, 'Ofab Mongoose Mk 2', 264817), (264907, 264907, 300, 300, 'Ofab Mongoose Mk 2', 264817), (264908, 264909, 1, 99, 'Ofab Mongoose Mk 3', 264818), (264910, 264911, 100, 199, 'Ofab Mongoose Mk 3', 264818), (264912, 264913, 200, 299, 'Ofab Mongoose Mk 3', 264818), (264914, 264914, 300, 300, 'Ofab Mongoose Mk 3', 264818), (264915, 264916, 1, 99, 'Ofab Mongoose Mk 4', 264819), (264917, 264918, 100, 199, 'Ofab Mongoose Mk 4', 264819), (264919, 264920, 200, 299, 'Ofab Mongoose Mk 4', 264819), (264921, 264921, 300, 300, 'Ofab Mongoose Mk 4', 264819), (264922, 264923, 1, 99, 'Ofab Mongoose Mk 5', 264820), (264924, 264925, 100, 199, 'Ofab Mongoose Mk 5', 264820), (264926, 264927, 200, 299, 'Ofab Mongoose Mk 5', 264820), (264928, 264928, 300, 300, 'Ofab Mongoose Mk 5', 264820), (264929, 264930, 1, 99, 'Ofab Mongoose Mk 6', 264821), (264931, 264932, 100, 199, 'Ofab Mongoose Mk 6', 264821), (264933, 264934, 200, 299, 'Ofab Mongoose Mk 6', 264821), (264935, 264935, 300, 300, 'Ofab Mongoose Mk 6', 264821), (264413, 264414, 1, 300, 'Ofab Nano Technician Body Armor', 266506), (264419, 264420, 1, 300, 'Ofab Nano Technician Boots', 266507), (264401, 264402, 1, 300, 'Ofab Nano Technician Gloves', 266508), (264395, 264396, 1, 300, 'Ofab Nano Technician Helmet', 266389), (264425, 264426, 1, 300, 'Ofab Nano Technician Pants', 266509), (264407, 264408, 1, 300, 'Ofab Nano Technician Sleeves', 266505), (264936, 264937, 1, 99, 'Ofab Panther Mk 1', 264810), (264938, 264939, 100, 199, 'Ofab Panther Mk 1', 264810), (264940, 264941, 200, 299, 'Ofab Panther Mk 1', 264810), (264942, 264942, 300, 300, 'Ofab Panther Mk 1', 264810), (264943, 264944, 1, 99, 'Ofab Panther Mk 2', 264811), (264945, 264946, 100, 199, 'Ofab Panther Mk 2', 264811), (264947, 264948, 200, 299, 'Ofab Panther Mk 2', 264811), (264949, 264949, 300, 300, 'Ofab Panther Mk 2', 264811), (264950, 264951, 1, 99, 'Ofab Panther Mk 3', 264812), (264952, 264953, 100, 199, 'Ofab Panther Mk 3', 264812), (264954, 264955, 200, 299, 'Ofab Panther Mk 3', 264812), (264956, 264956, 300, 300, 'Ofab Panther Mk 3', 264812), (264957, 264958, 1, 99, 'Ofab Panther Mk 4', 264813), (264959, 264960, 100, 199, 'Ofab Panther Mk 4', 264813), (264961, 264962, 200, 299, 'Ofab Panther Mk 4', 264813), (264963, 264963, 300, 300, 'Ofab Panther Mk 4', 264813), (264964, 264965, 1, 99, 'Ofab Panther Mk 5', 264814), (264966, 264967, 100, 199, 'Ofab Panther Mk 5', 264814), (264968, 264969, 200, 299, 'Ofab Panther Mk 5', 264814), (264970, 264970, 300, 300, 'Ofab Panther Mk 5', 264814), (264971, 264972, 1, 99, 'Ofab Panther Mk 6', 264815), (264973, 264974, 100, 199, 'Ofab Panther Mk 6', 264815), (264975, 264976, 200, 299, 'Ofab Panther Mk 6', 264815), (264977, 264977, 300, 300, 'Ofab Panther Mk 6', 264815), (265020, 265021, 1, 99, 'Ofab Peregrine Mk 1', 264785), (265022, 265023, 100, 199, 'Ofab Peregrine Mk 1', 264785), (265024, 265025, 200, 299, 'Ofab Peregrine Mk 1', 264785), (265026, 265026, 300, 300, 'Ofab Peregrine Mk 1', 264785), (265027, 265028, 1, 99, 'Ofab Peregrine Mk 2', 264786), (265029, 265030, 100, 199, 'Ofab Peregrine Mk 2', 264786), (265031, 265032, 200, 299, 'Ofab Peregrine Mk 2', 264786), (265033, 265033, 300, 300, 'Ofab Peregrine Mk 2', 264786), (265034, 265035, 1, 99, 'Ofab Peregrine Mk 3', 264787), (265036, 265037, 100, 199, 'Ofab Peregrine Mk 3', 264787), (265038, 265039, 200, 299, 'Ofab Peregrine Mk 3', 264787), (265040, 265040, 300, 300, 'Ofab Peregrine Mk 3', 264787), (265041, 265042, 1, 99, 'Ofab Peregrine Mk 4', 264788), (265043, 265044, 100, 199, 'Ofab Peregrine Mk 4', 264788), (265045, 265046, 200, 299, 'Ofab Peregrine Mk 4', 264788), (265047, 265047, 300, 300, 'Ofab Peregrine Mk 4', 264788), (265048, 265049, 1, 99, 'Ofab Peregrine Mk 5', 264789), (265050, 265051, 100, 199, 'Ofab Peregrine Mk 5', 264789), (265052, 265053, 200, 299, 'Ofab Peregrine Mk 5', 264789), (265054, 265054, 300, 300, 'Ofab Peregrine Mk 5', 264789), (265055, 265056, 1, 99, 'Ofab Peregrine Mk 6', 264790), (265057, 265058, 100, 199, 'Ofab Peregrine Mk 6', 264790), (265059, 265060, 200, 299, 'Ofab Peregrine Mk 6', 264790), (265061, 265061, 300, 300, 'Ofab Peregrine Mk 6', 264790), (264557, 264558, 1, 300, 'Ofab Shade Body Armor', 266516), (264563, 264564, 1, 300, 'Ofab Shade Boots', 266517), (264545, 264546, 1, 300, 'Ofab Shade Gloves', 266518), (264539, 264540, 1, 300, 'Ofab Shade Headgear', 266391), (264569, 264570, 1, 300, 'Ofab Shade Pants', 266519), (264551, 264552, 1, 300, 'Ofab Shade Sleeves', 266515), (265062, 265063, 1, 99, 'Ofab Shark Mk 1', 264834), (265064, 265065, 100, 199, 'Ofab Shark Mk 1', 264834), (265066, 265067, 200, 299, 'Ofab Shark Mk 1', 264834), (265068, 265068, 300, 300, 'Ofab Shark Mk 1', 264834), (265069, 265070, 1, 99, 'Ofab Shark Mk 2', 264835), (265071, 265072, 100, 199, 'Ofab Shark Mk 2', 264835), (265073, 265074, 200, 299, 'Ofab Shark Mk 2', 264835), (265075, 265075, 300, 300, 'Ofab Shark Mk 2', 264835), (265076, 265077, 1, 99, 'Ofab Shark Mk 3', 264836), (265078, 265079, 100, 199, 'Ofab Shark Mk 3', 264836), (265080, 265081, 200, 299, 'Ofab Shark Mk 3', 264836), (265082, 265082, 300, 300, 'Ofab Shark Mk 3', 264836), (265083, 265084, 1, 99, 'Ofab Shark Mk 4', 264837), (265085, 265086, 100, 199, 'Ofab Shark Mk 4', 264837), (265087, 265088, 200, 299, 'Ofab Shark Mk 4', 264837), (265089, 265089, 300, 300, 'Ofab Shark Mk 4', 264837), (265090, 265091, 1, 99, 'Ofab Shark Mk 5', 264838), (265092, 265093, 100, 199, 'Ofab Shark Mk 5', 264838), (265094, 265095, 200, 299, 'Ofab Shark Mk 5', 264838), (265096, 265096, 300, 300, 'Ofab Shark Mk 5', 264838), (265097, 265098, 1, 99, 'Ofab Shark Mk 6', 264839), (265099, 265100, 100, 199, 'Ofab Shark Mk 6', 264839), (265101, 265102, 200, 299, 'Ofab Shark Mk 6', 264839), (265103, 265103, 300, 300, 'Ofab Shark Mk 6', 264839), (264853, 264854, 1, 99, 'Ofab Silverback Mk 1', 264798), (264855, 264856, 100, 199, 'Ofab Silverback Mk 1', 264798), (264857, 264858, 200, 299, 'Ofab Silverback Mk 1', 264798), (264859, 264859, 300, 300, 'Ofab Silverback Mk 1', 264798), (264864, 264865, 1, 99, 'Ofab Silverback Mk 2', 264799), (264866, 264867, 100, 199, 'Ofab Silverback Mk 2', 264799), (264868, 264869, 200, 299, 'Ofab Silverback Mk 2', 264799), (264870, 264870, 300, 300, 'Ofab Silverback Mk 2', 264799), (264871, 264872, 1, 99, 'Ofab Silverback Mk 3', 264800), (264873, 264874, 100, 199, 'Ofab Silverback Mk 3', 264800), (264875, 264876, 200, 299, 'Ofab Silverback Mk 3', 264800), (264877, 264877, 300, 300, 'Ofab Silverback Mk 3', 264800), (264878, 264879, 1, 99, 'Ofab Silverback Mk 4', 264801), (264880, 264881, 100, 199, 'Ofab Silverback Mk 4', 264801), (264882, 264883, 200, 299, 'Ofab Silverback Mk 4', 264801), (264884, 264884, 300, 300, 'Ofab Silverback Mk 4', 264801), (264885, 264886, 1, 99, 'Ofab Silverback Mk 5', 264802), (264887, 264888, 100, 199, 'Ofab Silverback Mk 5', 264802), (264889, 264890, 200, 299, 'Ofab Silverback Mk 5', 264802), (264891, 264891, 300, 300, 'Ofab Silverback Mk 5', 264802), (264892, 264893, 1, 99, 'Ofab Silverback Mk 6', 264803), (264894, 264895, 100, 199, 'Ofab Silverback Mk 6', 264803), (264896, 264897, 200, 299, 'Ofab Silverback Mk 6', 264803), (264898, 264898, 300, 300, 'Ofab Silverback Mk 6', 264803), (264449, 264450, 1, 300, 'Ofab Soldier Body Armor', 266526), (264455, 264456, 1, 300, 'Ofab Soldier Boots', 266527), (264437, 264438, 1, 300, 'Ofab Soldier Gloves', 266528), (264431, 264432, 1, 300, 'Ofab Soldier Helmet', 266393), (264461, 264462, 1, 300, 'Ofab Soldier Pants', 266529), (264443, 264444, 1, 300, 'Ofab Soldier Sleeves', 266525), (265104, 265105, 1, 99, 'Ofab Tiger Mk 1', 264840), (265106, 265107, 100, 199, 'Ofab Tiger Mk 1', 264840), (265108, 265109, 200, 299, 'Ofab Tiger Mk 1', 264840), (265110, 265110, 300, 300, 'Ofab Tiger Mk 1', 264840), (265111, 265112, 1, 99, 'Ofab Tiger Mk 2', 264841), (265113, 265114, 100, 199, 'Ofab Tiger Mk 2', 264841), (265115, 265116, 200, 299, 'Ofab Tiger Mk 2', 264841), (265117, 265117, 300, 300, 'Ofab Tiger Mk 2', 264841), (265118, 265119, 1, 99, 'Ofab Tiger Mk 3', 264842), (265120, 265121, 100, 199, 'Ofab Tiger Mk 3', 264842), (265122, 265123, 200, 299, 'Ofab Tiger Mk 3', 264842), (265124, 265124, 300, 300, 'Ofab Tiger Mk 3', 264842), (265125, 265126, 1, 99, 'Ofab Tiger Mk 4', 264843), (265127, 265128, 100, 199, 'Ofab Tiger Mk 4', 264843), (265129, 265130, 200, 299, 'Ofab Tiger Mk 4', 264843), (265131, 265131, 300, 300, 'Ofab Tiger Mk 4', 264843), (265132, 265133, 1, 99, 'Ofab Tiger Mk 5', 264844), (265134, 265135, 100, 199, 'Ofab Tiger Mk 5', 264844), (265136, 265137, 200, 299, 'Ofab Tiger Mk 5', 264844), (265138, 265138, 300, 300, 'Ofab Tiger Mk 5', 264844), (265139, 265140, 1, 99, 'Ofab Tiger Mk 6', 264845), (265141, 265142, 100, 199, 'Ofab Tiger Mk 6', 264845), (265143, 265144, 200, 299, 'Ofab Tiger Mk 6', 264845), (265145, 265145, 300, 300, 'Ofab Tiger Mk 6', 264845), (264269, 264270, 1, 300, 'Ofab Trader Body Armor', 266536), (264281, 264282, 1, 300, 'Ofab Trader Boots', 266537), (264257, 264258, 1, 300, 'Ofab Trader Gloves', 266538), (264251, 264252, 1, 300, 'Ofab Trader Helmet', 266395), (264275, 264276, 1, 300, 'Ofab Trader Pants', 266539), (264263, 264264, 1, 300, 'Ofab Trader Sleeves', 266535), (264978, 264979, 1, 99, 'Ofab Viper Mk 1', 264779), (264980, 264981, 100, 199, 'Ofab Viper Mk 1', 264779), (264982, 264983, 200, 299, 'Ofab Viper Mk 1', 264779), (264984, 264984, 300, 300, 'Ofab Viper Mk 1', 264779), (264985, 264986, 1, 99, 'Ofab Viper Mk 2', 264780), (264987, 264988, 100, 199, 'Ofab Viper Mk 2', 264780), (264989, 264990, 200, 299, 'Ofab Viper Mk 2', 264780), (264991, 264991, 300, 300, 'Ofab Viper Mk 2', 264780), (264992, 264993, 1, 99, 'Ofab Viper Mk 3', 264781), (264994, 264995, 100, 199, 'Ofab Viper Mk 3', 264781), (264996, 264997, 200, 299, 'Ofab Viper Mk 3', 264781), (264998, 264998, 300, 300, 'Ofab Viper Mk 3', 264781), (264999, 265000, 1, 99, 'Ofab Viper Mk 4', 264782), (265001, 265002, 100, 199, 'Ofab Viper Mk 4', 264782), (265003, 265004, 200, 299, 'Ofab Viper Mk 4', 264782), (265005, 265005, 300, 300, 'Ofab Viper Mk 4', 264782), (265006, 265007, 1, 99, 'Ofab Viper Mk 5', 264783), (265008, 265009, 100, 199, 'Ofab Viper Mk 5', 264783), (265010, 265011, 200, 299, 'Ofab Viper Mk 5', 264783), (265012, 265012, 300, 300, 'Ofab Viper Mk 5', 264783), (265013, 265014, 1, 99, 'Ofab Viper Mk 6', 264784), (265015, 265016, 100, 199, 'Ofab Viper Mk 6', 264784), (265017, 265018, 200, 299, 'Ofab Viper Mk 6', 264784), (265019, 265019, 300, 300, 'Ofab Viper Mk 6', 264784), (265195, 265196, 1, 99, 'Ofab Wolf Mk 1', 264828), (265197, 265198, 100, 199, 'Ofab Wolf Mk 1', 264828), (265199, 265200, 200, 299, 'Ofab Wolf Mk 1', 264828), (265201, 265201, 300, 300, 'Ofab Wolf Mk 1', 264828), (265202, 265203, 1, 99, 'Ofab Wolf Mk 2', 264829), (265204, 265205, 100, 199, 'Ofab Wolf Mk 2', 264829), (265206, 265207, 200, 299, 'Ofab Wolf Mk 2', 264829), (265208, 265208, 300, 300, 'Ofab Wolf Mk 2', 264829), (265209, 265210, 1, 99, 'Ofab Wolf Mk 3', 264830), (265211, 265212, 100, 199, 'Ofab Wolf Mk 3', 264830), (265213, 265214, 200, 299, 'Ofab Wolf Mk 3', 264830), (265215, 265215, 300, 300, 'Ofab Wolf Mk 3', 264830), (265216, 265217, 1, 99, 'Ofab Wolf Mk 4', 264831), (265218, 265219, 100, 199, 'Ofab Wolf Mk 4', 264831), (265220, 265221, 200, 299, 'Ofab Wolf Mk 4', 264831), (265222, 265222, 300, 300, 'Ofab Wolf Mk 4', 264831), (265223, 265224, 1, 99, 'Ofab Wolf Mk 5', 264832), (265225, 265226, 100, 199, 'Ofab Wolf Mk 5', 264832), (265227, 265228, 200, 299, 'Ofab Wolf Mk 5', 264832), (265229, 265229, 300, 300, 'Ofab Wolf Mk 5', 264832), (265230, 265231, 1, 99, 'Ofab Wolf Mk 6', 264833), (265232, 265233, 100, 199, 'Ofab Wolf Mk 6', 264833), (265234, 265235, 200, 299, 'Ofab Wolf Mk 6', 264833), (265236, 265236, 300, 300, 'Ofab Wolf Mk 6', 264833), (248953, 248953, 1, 1, 'Office Worker''s Discreet Shirt of the Obsidian Order', 255323), (248952, 248952, 1, 1, 'Office Worker''s Discreet Sleeves of the Obsidian Order', 255266), (295739, 295739, 1, 1, 'Officer Milne''s Cruiser', 274183), (199817, 199817, 290, 290, 'Officer Omni-Internops Armor Boots', 13270), (199838, 199838, 290, 290, 'Officer Omni-Internops Armor Gloves', 13283), (199859, 199859, 290, 290, 'Officer Omni-Internops Armor Helmet', 10840), (199880, 199880, 290, 290, 'Officer Omni-Internops Armor Pants', 13300), (199901, 199901, 290, 290, 'Officer Omni-Internops Armor Sleeves', 13232), (199922, 199922, 290, 290, 'Officer Omni-Internops Body Armor', 13253), (199943, 199943, 290, 290, 'Officer Omni-Internops Elite Armor Boots', 21866), (199964, 199964, 290, 290, 'Officer Omni-Internops Elite Armor Gloves', 21872), (199985, 199985, 290, 290, 'Officer Omni-Internops Elite Armor Helmet', 22269), (200006, 200006, 290, 290, 'Officer Omni-Internops Elite Armor Pants', 21879), (200027, 200027, 290, 290, 'Officer Omni-Internops Elite Armor Sleeves', 21850), (200048, 200048, 290, 290, 'Officer Omni-Internops Elite Body Armor', 19816), (268736, 268736, 1, 1, 'Official Omni-Tek Authorization Documentation', 156343), (123868, 123869, 1, 29, 'Old Atlas Bern C.V.', 113993), (23155, 23155, 1, 1, 'Old Barrel', 154193), (263642, 263642, 1, 1, 'Old Beit Bones', 263643), (292974, 292974, 1, 1, 'Old Brown Jumpsuit', 293839), (163581, 163581, 200, 200, 'Old Buccaneer Pistol', 113988), (123857, 123858, 40, 69, 'Old English Trading Co.', 13315), (123993, 123994, 10, 44, 'Old English Trading Co. Type 77a', 21146), (124304, 124305, 14, 37, 'Old English Trading Co. Urban Sniper', 113988), (292609, 292609, 1, 1, 'Old English Trading Company RetroPads - Base', 291564), (292617, 292617, 1, 1, 'Old English Trading Company RetroPads - Black', 291565), (292616, 292616, 1, 1, 'Old English Trading Company RetroPads - Blue', 291566), (292618, 292618, 1, 1, 'Old English Trading Company RetroPads - Camo', 291567), (292615, 292615, 1, 1, 'Old English Trading Company RetroPads - Green', 291568), (292614, 292614, 1, 1, 'Old English Trading Company RetroPads - Orange', 291569), (292613, 292613, 1, 1, 'Old English Trading Company RetroPads - Pink', 291570), (292612, 292612, 1, 1, 'Old English Trading Company RetroPads - Purple', 291571), (292619, 292619, 1, 1, 'Old English Trading Company RetroPads - Rainbow', 291572), (292611, 292611, 1, 1, 'Old English Trading Company RetroPads - Red', 291573), (292610, 292610, 1, 1, 'Old English Trading Company RetroPads - Yellow', 291574), (124217, 124218, 1, 7, 'Old Galahad Inc. Scout', 13312), (124494, 124495, 1, 49, 'Old Manex STR 77', 13322), (124263, 124264, 1, 29, 'Old OT MPS-00 Police Shotgun', 13341), (165369, 165370, 1, 74, 'Old Spider Poison Gland', 38055), (124230, 124231, 1, 15, 'Old Springfield Arms Home Defender', 113989), (214877, 214877, 1, 1, 'Old piece of cloth sparkling with notum', 227290), (289491, 289491, 1, 1, 'Old-Fashioned Apple Cider', 289497), (252023, 252023, 1, 1, 'Ole''s Cardboard Box', 154191), (297199, 297199, 1, 1, 'Omni AO Logo Sculpture', 291987), (206976, 206976, 200, 200, 'Omni Armed Forces Tank Armor', 22395), (208286, 208287, 1, 200, 'Omni Carbonum Breastplate', 13251), (208284, 208285, 1, 200, 'Omni Carbonum Plate Arms', 13230), (208288, 208289, 1, 200, 'Omni Carbonum Plate Boots', 13268), (208290, 208291, 1, 200, 'Omni Carbonum Plate Gloves', 13281), (208292, 208293, 1, 200, 'Omni Carbonum Plate Helmet', 10833), (208294, 208295, 1, 200, 'Omni Carbonum Plate Legs', 13298), (263972, 263972, 1, 1, 'Omni EMP Mine', 20412), (300864, 300865, 1, 200, 'Omni Epaulet', 99252), (27367, 27367, 1, 1, 'Omni Executive Suit Boots', 13272), (27368, 27368, 1, 1, 'Omni Executive Suit Pants', 13302), (27369, 27369, 1, 1, 'Omni Executive Suit Shirt', 13255), (27370, 27370, 1, 1, 'Omni Executive Suit Sleeves', 13234), (263969, 263969, 1, 1, 'Omni Explosive Mine', 20412), (27364, 27364, 1, 1, 'Omni Female Grey Suit Shirt', 19813), (27363, 27363, 1, 1, 'Omni Grey Suit Boots', 21867), (27362, 27362, 1, 1, 'Omni Grey Suit Pants', 27671), (27365, 27365, 1, 1, 'Omni Grey Suit Shirt', 19814), (27376, 27376, 1, 1, 'Omni Grey Suit Skirt', 27662), (27366, 27366, 1, 1, 'Omni Grey Suit Sleeves', 21851), (263963, 263963, 1, 1, 'Omni Immobilization Mine', 20412), (27374, 27374, 1, 1, 'Omni Intern-Op Suit Shirt', 27658), (27375, 27375, 1, 1, 'Omni Intern-Op Suit Sleeves', 27659), (27373, 27373, 1, 1, 'Omni InternOp Suit Boots', 27660), (27372, 27372, 1, 1, 'Omni InternOp Suit Gloves', 27661), (27371, 27371, 1, 1, 'Omni InternOp Suit Pants', 27670), (201090, 201091, 1, 199, 'Omni Life Guard Armor Boots', 21866), (201093, 201094, 1, 199, 'Omni Life Guard Armor Gloves', 21872), (201096, 201097, 1, 199, 'Omni Life Guard Armor Helmet', 22269), (201100, 201102, 1, 199, 'Omni Life Guard Armor Pants', 21879), (201084, 201085, 1, 199, 'Omni Life Guard Armor Sleeves', 21850), (201087, 201088, 1, 199, 'Omni Life Guard Body Armor', 19816), (263966, 263966, 1, 1, 'Omni Restraining Mine', 20412), (287308, 287308, 1, 1, 'Omni Sauna', 287234), (245525, 245525, 1, 1, 'Omni Special Issue Black Boots', 13260), (245528, 245528, 1, 1, 'Omni Special Issue Black Gloves', 118189), (245524, 245524, 1, 1, 'Omni Special Issue Black Pants', 13288), (245529, 245529, 1, 1, 'Omni Special Issue Black Shirt', 13239), (245526, 245526, 1, 1, 'Omni Special Issue Black Sleeves', 13221), (245515, 245515, 1, 1, 'Omni Special Issue Executive Boots', 13272), (245518, 245518, 1, 1, 'Omni Special Issue Executive Gloves', 37630), (245514, 245514, 1, 1, 'Omni Special Issue Executive Pants', 13302), (245516, 245516, 1, 1, 'Omni Special Issue Executive Shirt', 13255), (245517, 245517, 1, 1, 'Omni Special Issue Executive Sleeves', 13234), (245511, 245511, 1, 1, 'Omni Special Issue Grey Blouse', 19813), (245509, 245509, 1, 1, 'Omni Special Issue Grey Boots', 21867), (245513, 245513, 1, 1, 'Omni Special Issue Grey Gloves', 37105), (245510, 245510, 1, 1, 'Omni Special Issue Grey Jacket', 19814), (245505, 245505, 1, 1, 'Omni Special Issue Grey Pants', 27671), (245506, 245506, 1, 1, 'Omni Special Issue Grey Skirt', 27662), (245508, 245508, 1, 1, 'Omni Special Issue Grey Sleeves', 21851), (275223, 275223, 1, 1, 'Omni Tattoo', 275224), (203447, 203447, 200, 200, 'Omni-Armed Forces Armor', 19816), (245585, 245585, 1, 1, 'Omni-Armed Forces Assault pack', 99661), (203446, 203446, 200, 200, 'Omni-Armed Forces Boots', 21866), (203448, 203448, 200, 200, 'Omni-Armed Forces Gloves', 21872), (203445, 203445, 200, 200, 'Omni-Armed Forces Helmet', 22269), (203449, 203449, 200, 200, 'Omni-Armed Forces Pants', 21879), (203530, 203530, 200, 200, 'Omni-Armed Forces Sleeves', 21850), (258474, 258474, 1, 1, 'Omni-Armed Forces Training Helmet', 10840), (130591, 130591, 1, 1, 'Omni-Champagne', 37939), (130587, 130587, 1, 1, 'Omni-Cider', 37935), (122528, 122529, 81, 100, 'Omni-Flamer Strategic', 33159), (285197, 285197, 1, 1, 'Omni-Med Battle Armor', 206980), (206972, 206972, 200, 200, 'Omni-Med Battle Body Armor', 206980), (206971, 206971, 200, 200, 'Omni-Med Battle Boots', 206981), (206973, 206973, 200, 200, 'Omni-Med Battle Gloves', 206982), (206970, 206970, 200, 200, 'Omni-Med Battle Helmet', 206984), (206974, 206974, 200, 200, 'Omni-Med Battle Pants', 206983), (206975, 206975, 200, 200, 'Omni-Med Battle Sleeves', 206979), (129014, 129015, 1, 169, 'Omni-Med Butter Cake', 85165), (120609, 120609, 1, 1, 'Omni-Med Cloak', 120623), (285161, 285161, 1, 1, 'Omni-Med Employee Access Card', 285163), (27387, 27387, 1, 1, 'Omni-Med Female Suit Shirt', 21857), (201234, 201235, 1, 200, 'Omni-Med Field Surgeons Cloak', 120623), (284458, 284458, 300, 300, 'Omni-Med Pistol Left Hand', 284471), (284457, 284457, 300, 300, 'Omni-Med Pistol Right Hand', 284471), (27382, 27382, 1, 1, 'Omni-Med Suit Boots', 21869), (27381, 27381, 1, 1, 'Omni-Med Suit Gloves', 21874), (27383, 27383, 1, 1, 'Omni-Med Suit Shirt', 21861), (27384, 27384, 1, 1, 'Omni-Med Suit Skirt', 26324), (27385, 27385, 1, 1, 'Omni-Med Suit Sleeves', 21853), (27386, 27386, 1, 1, 'Omni-Med Suit Trousers', 26323), (284443, 284443, 1, 1, 'Omni-Med Surgeon Cloak', 120623), (248837, 248837, 1, 1, 'Omni-Pol Leisure Uniform Boots', 255360), (248835, 248835, 1, 1, 'Omni-Pol Leisure Uniform Jacket', 255378), (248836, 248836, 1, 1, 'Omni-Pol Leisure Uniform Pants', 255196), (248834, 248834, 1, 1, 'Omni-Pol Leisure Uniform Sleeves', 255231), (285501, 285501, 1, 1, 'Omni-Pol Riot Shield', 160124), (122547, 122548, 81, 100, 'Omni-Pol Standard Flamer', 33160), (201114, 201115, 1, 199, 'Omni-Pol Trooper Armor Boots', 13270), (201117, 201118, 1, 199, 'Omni-Pol Trooper Armor Gloves', 13283), (201121, 201122, 1, 199, 'Omni-Pol Trooper Armor Helmet', 10840), (201124, 201125, 1, 199, 'Omni-Pol Trooper Armor Pants', 13300), (201111, 201112, 1, 199, 'Omni-Pol Trooper Armor Sleeves', 13232), (201127, 201128, 1, 199, 'Omni-Pol Trooper Body Armor', 13253), (201070, 201071, 1, 200, 'Omni-Scout Desert Armor Boots', 27665), (201072, 201073, 1, 200, 'Omni-Scout Desert Armor Gloves', 27664), (201074, 201075, 1, 200, 'Omni-Scout Desert Armor Helmet', 27709), (201076, 201077, 1, 200, 'Omni-Scout Desert Armor Pants', 27663), (201068, 201069, 1, 200, 'Omni-Scout Desert Armor Sleeves', 27666), (201078, 201079, 1, 200, 'Omni-Scout Desert Body Armor', 22991), (201043, 201044, 1, 200, 'Omni-Scout Forest Armor Boots', 13271), (201045, 201046, 1, 200, 'Omni-Scout Forest Armor Gloves', 13284), (201047, 201048, 1, 200, 'Omni-Scout Forest Armor Helmet', 10841), (201049, 201050, 1, 200, 'Omni-Scout Forest Armor Pants', 13301), (201041, 201042, 1, 200, 'Omni-Scout Forest Armor Sleeves', 13233), (201051, 201052, 1, 200, 'Omni-Scout Forest Body Armor', 13254), (295852, 295852, 1, 1, 'Omni-Tek', 277964), (285304, 285304, 1, 1, 'Omni-Tek Access Hacking Tool', 285170), (285305, 285305, 1, 1, 'Omni-Tek Access Hacking Tool with 1 Access Password', 285177), (285306, 285306, 1, 1, 'Omni-Tek Access Hacking Tool with 2 Access Passwords', 285178), (285307, 285307, 1, 1, 'Omni-Tek Access Hacking Tool with 3 Access Passwords', 285179), (285308, 285308, 1, 1, 'Omni-Tek Access Hacking Tool with 4 Access Passwords', 285172), (285309, 285309, 1, 1, 'Omni-Tek Access Hacking Tool with 5 Access Passwords', 285173), (285310, 285310, 1, 1, 'Omni-Tek Access Hacking Tool with 6 Access Passwords', 285174), (285311, 285311, 1, 1, 'Omni-Tek Access Hacking Tool with 7 Access Passwords', 285175), (285312, 285312, 1, 1, 'Omni-Tek Access Hacking Tool with 8 Access Passwords', 285176), (285314, 285314, 1, 1, 'Omni-Tek Agency Communication Unit', 285191), (131278, 131278, 1, 1, 'Omni-Tek Armor', 131276), (302913, 302913, 1, 1, 'Omni-Tek Award - Awakened Combat Exemplar', 302911), (302915, 302915, 1, 1, 'Omni-Tek Award - Awakened Defense Exemplar', 302910), (99719, 99719, 1, 1, 'Omni-Tek Award - Basic Board', 99656), (99724, 99724, 6, 6, 'Omni-Tek Award - Double Flags of Righteousness', 99254), (99721, 99721, 3, 3, 'Omni-Tek Award - Double Ribbons of Skirmish', 99251), (257112, 257112, 1, 1, 'Omni-Tek Award - Exemplar', 82982), (99723, 99723, 5, 5, 'Omni-Tek Award - Flag of Sacrifice', 99253), (99726, 99726, 8, 8, 'Omni-Tek Award - Flags of Glory and Redemption', 99256), (99720, 99720, 2, 2, 'Omni-Tek Award - Ribbon of Strife', 99250), (99725, 99725, 7, 7, 'Omni-Tek Award - Triple Flag of Humility', 99255), (99722, 99722, 4, 4, 'Omni-Tek Award - Triple Ribbons of Battle', 99252), (262955, 262955, 1, 1, 'Omni-Tek Award - Triumphant Flags of Glory and Redemption', 99256), (279438, 279438, 1, 1, 'Omni-Tek Award - Xan Combat Exemplar', 82975), (279441, 279441, 1, 1, 'Omni-Tek Award - Xan Defense Exemplar', 82980), (248311, 248311, 1, 1, 'Omni-Tek Badge', 81774), (40840, 40840, 1, 1, 'Omni-Tek Banner', 37710), (253493, 253493, 1, 1, 'Omni-Tek Banner', 255954), (259039, 259039, 1, 1, 'Omni-Tek Banner', 259042), (158421, 158421, 1, 1, 'Omni-Tek Bravery Token', 290823), (296243, 296244, 1, 300, 'Omni-Tek City Park', 292040), (247833, 247833, 100, 100, 'Omni-Tek Corporation - Guide to building Houses', 247828), (121620, 121621, 116, 138, 'Omni-Tek Crowd Unit XI-Autotarget', 21140), (143108, 143108, 1, 1, 'Omni-Tek Crowd Unit XI-Autotarget Construction Manual', 136332), (285384, 285384, 1, 1, 'Omni-Tek Daily Missions', 277964), (256398, 256399, 1, 300, 'Omni-Tek ECM Tower', 255792), (216368, 216368, 1, 1, 'Omni-Tek Engineer Corps Merit Board', 216287), (254137, 254138, 1, 300, 'Omni-Tek Grid House', 255794), (254173, 254174, 1, 300, 'Omni-Tek Guard House', 255795), (96094, 96095, 150, 200, 'Omni-Tek Gunship', 38024), (296371, 296371, 1, 1, 'Omni-Tek Honor - Basic Board', 296353), (296376, 296376, 6, 6, 'Omni-Tek Honor - Double Flags of Righteousness', 296348), (296373, 296373, 3, 3, 'Omni-Tek Honor - Double Ribbons of Skirmish', 296351), (296375, 296375, 5, 5, 'Omni-Tek Honor - Flag of Sacrifice', 296349), (296378, 296378, 8, 8, 'Omni-Tek Honor - Flags of Glory and Redemption', 296346), (296372, 296372, 2, 2, 'Omni-Tek Honor - Ribbon of Strife', 296352), (296377, 296377, 7, 7, 'Omni-Tek Honor - Triple Flag of Humility', 296347), (296374, 296374, 4, 4, 'Omni-Tek Honor - Triple Ribbons of Battle', 296350), (296379, 296379, 1, 1, 'Omni-Tek Honor - Triumphant Flags of Glory and Redemption', 296345), (296579, 296579, 1, 1, 'Omni-Tek Identification Card', 81774), (283789, 283789, 1, 1, 'Omni-Tek Issued Bomb Kit', 285138), (268737, 268737, 1, 1, 'Omni-Tek Issued Identification Chip', 156319), (254149, 254150, 1, 300, 'Omni-Tek Landing Pad', 255797), (40839, 40839, 1, 1, 'Omni-Tek Logo', 20408), (121586, 121587, 162, 184, 'Omni-Tek Manual Tripler', 13344), (165092, 165092, 1, 1, 'Omni-Tek Manual Tripler Construction Manual', 136329), (254179, 254180, 1, 300, 'Omni-Tek Mining Operations', 255796), (96349, 96349, 1, 1, 'Omni-Tek Mission Token', 293807), (121601, 121602, 116, 138, 'Omni-Tek Moon Edge', 13343), (156344, 156344, 1, 1, 'Omni-Tek Multi-Form', 156343), (216302, 216302, 1, 1, 'Omni-Tek Nano Reservoire Merit Board', 216287), (290628, 290628, 1, 1, 'Omni-Tek Nano-Spray', 99232), (291251, 291251, 1, 1, 'Omni-Tek Nano-Spray', 300969), (291266, 291266, 1, 1, 'Omni-Tek Nano-Spray', 99232), (248283, 248284, 1, 14, 'Omni-Tek Newcomer''s Body Armor', 22991), (248284, 297657, 15, 220, 'Omni-Tek Newcomer''s Body Armor', 22991), (248279, 248280, 1, 14, 'Omni-Tek Newcomer''s Boots', 27665), (248280, 297655, 15, 220, 'Omni-Tek Newcomer''s Boots', 27665), (248287, 248288, 1, 14, 'Omni-Tek Newcomer''s Gloves', 27664), (248288, 297659, 15, 220, 'Omni-Tek Newcomer''s Gloves', 27664), (248281, 248282, 1, 14, 'Omni-Tek Newcomer''s Pants', 27663), (248282, 297656, 15, 220, 'Omni-Tek Newcomer''s Pants', 27663), (248285, 248286, 1, 14, 'Omni-Tek Newcomer''s Sleeves', 27666), (248286, 297658, 15, 220, 'Omni-Tek Newcomer''s Sleeves', 27666), (254322, 254322, 1, 1, 'Omni-Tek Node', 163063), (248773, 248773, 1, 1, 'Omni-Tek Node Logs', 227247), (284700, 284700, 1, 1, 'Omni-Tek Notum Bounty', 282143), (254143, 254144, 1, 300, 'Omni-Tek Notum Silo', 255801), (275644, 275644, 1, 1, 'Omni-Tek Particle Library', 121435), (254112, 254112, 1, 1, 'Omni-Tek Personnel Transfer Application', 163063), (300784, 300784, 1, 1, 'Omni-Tek Prisoner Clothes', 300789), (163642, 163643, 1, 200, 'Omni-Tek Ring of Harmony', 84064), (254895, 254896, 1, 300, 'Omni-Tek Satellite Uplink', 255798), (29426, 29426, 1, 1, 'Omni-Tek Shirt', 13255), (216367, 216367, 1, 1, 'Omni-Tek Shock Trooper Merit Board', 216287), (248360, 248360, 1, 1, 'Omni-Tek Shoulderpad', 160903), (301067, 301067, 2, 2, 'Omni-Tek Shoulderpad', 160903), (301068, 301068, 3, 3, 'Omni-Tek Shoulderpad', 160903), (254185, 254186, 1, 300, 'Omni-Tek Sidewalk Cafe', 255791), (254191, 254192, 1, 300, 'Omni-Tek Sky Bar', 255800), (245935, 245936, 25, 200, 'Omni-Tek Steel-Ribbed Armor Boots', 245925), (245939, 245940, 25, 200, 'Omni-Tek Steel-Ribbed Armor Gloves', 245926), (245933, 245934, 25, 200, 'Omni-Tek Steel-Ribbed Armor Helmet', 245927), (245937, 245938, 25, 200, 'Omni-Tek Steel-Ribbed Armor Pants', 245928), (245931, 245932, 25, 200, 'Omni-Tek Steel-Ribbed Armor Sleeves', 245923), (245929, 245930, 25, 200, 'Omni-Tek Steel-Ribbed Body Armor', 245924), (135719, 135719, 1, 1, 'Omni-Tek Suit', 131277), (248361, 248361, 1, 1, 'Omni-Tek Sunglasses', 86483), (254161, 254162, 1, 300, 'Omni-Tek Swimming Pool', 255802), (296422, 296423, 1, 200, 'Omni-Tek Tax Refund Office', 296434), (248377, 248377, 1, 1, 'Omni-Tek Technical Library', 130564), (253477, 253477, 1, 1, 'Omni-Tek Trash Can', 255962), (246838, 246838, 1, 1, 'Omni-Trans Cloak', 88052), (208312, 208312, 50, 50, 'Omnifier', 301020), (234913, 234913, 1, 1, 'Once Enchanted Hellion Trinity Talisman', 218765), (272266, 272267, 1, 300, 'One Handed Blunt Weapons Basic Upgrade Kit', 272250), (272268, 272269, 1, 300, 'One Handed Edged Weapons Basic Upgrade Kit', 272250), (234894, 234894, 1, 1, 'One Nasty Looking Canine', 144707), (275470, 275470, 1, 1, 'Oozing Corrupted Crystal', 72772), (157415, 157415, 1, 1, 'Opal Twelve Leopard Advantage', 81777), (157272, 157272, 100, 100, 'Open Bioplast Folder with a Folded Note', 157283), (42338, 42338, 1, 1, 'Open Fancy Pants', 42291), (42340, 42340, 1, 1, 'Open Fancy Shirt', 42301), (42339, 42339, 1, 1, 'Open Fancy Sleeves', 42309), (41003, 41003, 1, 1, 'Open Pants with a Grey Waterlily Print', 41202), (41004, 41004, 1, 1, 'Open Pants with a Waterlily Print', 41203), (231157, 231157, 1, 1, 'Opened Letter - Redeemed', 227289), (231158, 231158, 1, 1, 'Opened Letter - Redeemed', 227289), (252523, 252523, 1, 1, 'Opening', 239047), (235412, 235412, 110, 110, 'Operative Brain Symbiant, Artillery Unit Aban', 215189), (236306, 236306, 110, 110, 'Operative Brain Symbiant, Control Unit Aban', 215189), (235639, 235639, 110, 110, 'Operative Brain Symbiant, Infantry Unit Aban', 215189), (236357, 236357, 110, 110, 'Operative Chest Symbiant, Control Unit Aban', 215183), (235908, 235908, 110, 110, 'Operative Chest Symbiant, Extermination Unit Aban', 215181), (236132, 236132, 110, 110, 'Operative Chest Symbiant, Support Unit Aban', 215181), (235432, 235432, 110, 110, 'Operative Ear Symbiant, Artillery Unit Aban', 230977), (236321, 236321, 110, 110, 'Operative Ear Symbiant, Control Unit Aban', 230977), (236101, 236101, 110, 110, 'Operative Ear Symbiant, Support Unit Aban', 230977), (236496, 236496, 110, 110, 'Operative Feet Symbiant, Control Unit Aban', 215185), (236048, 236048, 110, 110, 'Operative Feet Symbiant, Extermination Unit Aban', 215186), (235823, 235823, 110, 110, 'Operative Feet Symbiant, Infantry Unit Aban', 215187), (236374, 236374, 110, 110, 'Operative Left Arm Symbiant, Control Unit Aban', 215177), (235926, 235926, 110, 110, 'Operative Left Arm Symbiant, Extermination Unit Aban', 215175), (235707, 235707, 110, 110, 'Operative Left Arm Symbiant, Infantry Unit Aban', 215179), (235586, 235586, 110, 110, 'Operative Left Hand Symbiant, Artillery Unit Aban', 215171), (236482, 236482, 110, 110, 'Operative Left Hand Symbiant, Control Unit Aban', 215172), (236031, 236031, 110, 110, 'Operative Left Hand Symbiant, Extermination Unit Aban', 215172), (236260, 236260, 110, 110, 'Operative Left Hand Symbiant, Support Unit Aban', 215171), (235976, 235976, 110, 110, 'Operative Left Wrist Symbiant, Extermination Unit Aban', 215198), (236211, 236211, 110, 110, 'Operative Left Wrist Symbiant, Support Unit Aban', 215198), (235841, 235841, 110, 110, 'Operative Ocular Symbiant, Extermination Unit Aban', 230979), (235554, 235554, 110, 110, 'Operative Right Hand Symbiant, Artillery Unit Aban', 215173), (236446, 236446, 110, 110, 'Operative Right Hand Symbiant, Control Unit Aban', 215173), (236227, 236227, 110, 110, 'Operative Right Hand Symbiant, Support Unit Aban', 215174), (235946, 235946, 110, 110, 'Operative Right Wrist Symbiant, Extermination Unit Aban', 215170), (236175, 236175, 110, 110, 'Operative Right Wrist Symbiant, Support Unit Aban', 215197), (235569, 235569, 110, 110, 'Operative Thigh Symbiant, Artillery Unit Aban', 215190), (235789, 235789, 110, 110, 'Operative Thigh Symbiant, Infantry Unit Aban', 215191), (235517, 235517, 110, 110, 'Operative Waist Symbiant, Artillery Unit Aban', 215194), (236411, 236411, 110, 110, 'Operative Waist Symbiant, Control Unit Aban', 215193), (235737, 235737, 110, 110, 'Operative Waist Symbiant, Infantry Unit Aban', 215193), (236193, 236193, 110, 110, 'Operative Waist Symbiant, Support Unit Aban', 215193), (252475, 252475, 1, 1, 'Opportunity Knocks', 239049), (224717, 224717, 150, 150, 'Oppressed Brain Spirit of Offence', 230992), (224923, 224923, 150, 150, 'Oppressed Heart Spirit of Knowledge', 230984), (224955, 224955, 150, 150, 'Oppressed Heart Spirit of Strength', 230984), (225222, 225222, 150, 150, 'Oppressed Left Hand Spirit of Strength', 230994), (225024, 225024, 150, 150, 'Oppressed Left Limb Spirit of Strength', 230995), (224989, 224989, 150, 150, 'Oppressed Left Limb Spirit of Understanding', 230995), (224871, 224871, 150, 150, 'Oppressed Midriff Spirit of Knowledge', 230976), (224906, 224906, 150, 150, 'Oppressed Midriff Spirit of Strength', 230976), (225152, 225152, 150, 150, 'Oppressed Right Hand Defencive Spirit', 231002), (225131, 225131, 150, 150, 'Oppressed Right Hand Strength Spirit', 231002), (224823, 224823, 150, 150, 'Oppressed Right Limb Spirit of Weakness', 231004), (224703, 224703, 150, 150, 'Oppressed Spirit of Clear Thought', 230992), (225182, 225182, 150, 150, 'Oppressed Spirit of Defense', 230998), (224685, 224685, 150, 150, 'Oppressed Spirit of Essence', 230988), (225254, 225254, 150, 150, 'Oppressed Spirit of Feet Defense', 230990), (225237, 225237, 150, 150, 'Oppressed Spirit of Feet Strength', 230990), (225162, 225162, 150, 150, 'Oppressed Spirit of Insight - Right Hand', 231002), (248318, 248318, 1, 1, 'Optical Enhancer', 130837), (251905, 251905, 1, 1, 'Optimize Bot Protocol', 239205), (142930, 142931, 1, 200, 'Optimized Co-Weapon Interface', 130803), (152360, 152361, 51, 100, 'Orange Acroblade', 113986), (293373, 293373, 1, 1, 'Orange Bat Nanospray', 293389), (42348, 42348, 1, 1, 'Orange Fancy Pants', 42292), (42347, 42347, 1, 1, 'Orange Fancy Shirt', 42302), (42349, 42349, 1, 1, 'Orange Fancy Sleeves', 42310), (285867, 285867, 200, 200, 'Orange Fiber', 284331), (275204, 275204, 1, 1, 'Orange Islander Shirt', 275205), (31240, 31240, 1, 1, 'Orange Leather Pants', 30940), (218345, 218345, 160, 160, 'Orange Moon Glyph of Roch', 227596), (233107, 233107, 225, 225, 'Orange Node Flower', 43072), (27356, 27356, 1, 1, 'Orange Rubber Pants', 22917), (27357, 27357, 1, 1, 'Orange Rubber Shirt', 22973), (292849, 292849, 1, 1, 'Orange Skull Boots', 292850), (87469, 87469, 1, 1, 'Orange Swimmingtrunks', 96136), (285083, 285083, 1, 1, 'Orange Tuxedo - Deluxe Edition', 285082), (285894, 285894, 200, 200, 'Orange Wax', 284331), (285874, 285874, 200, 200, 'Orange Wick', 284331), (285856, 285856, 200, 200, 'Orange Wire', 284331), (150247, 150248, 91, 120, 'Orange Zenith Taichi', 113987), (152339, 152340, 1, 20, 'Orangeblossom Parry Stick', 136738), (267119, 267119, 250, 250, 'Orbital Alien Detonator', 156503), (267130, 267130, 250, 250, 'Orbital Alien Detonator', 156503), (278879, 278879, 1, 1, 'Orbital Strike Override Item', 12711), (152351, 152352, 121, 150, 'Orchid Parry Stick', 136738), (302470, 302470, 1, 1, 'Orchid Plasteel Armor Boots', 302482), (302469, 302469, 1, 1, 'Orchid Plasteel Armor Gloves', 302483), (302471, 302471, 1, 1, 'Orchid Plasteel Armor Helmet', 302484), (302468, 302468, 1, 1, 'Orchid Plasteel Armor Legwear', 302486), (302466, 302466, 1, 1, 'Orchid Plasteel Armor Sleeves', 302485), (302467, 302467, 1, 1, 'Orchid Plasteel Body Armor', 302481), (206398, 206398, 100, 100, 'Order OTSC-490 Group A', 154678), (81794, 81794, 10, 10, 'Organization Registration Form', 121435), (81796, 81796, 10, 10, 'Organization government chip - Departmental', 81785), (83876, 83876, 10, 10, 'Organization government chip - Feudalism', 81785), (83877, 83877, 10, 10, 'Organization government chip - Monarchy', 81785), (83874, 83874, 10, 10, 'Organization government chip - Republic', 81785), (81798, 81798, 10, 10, 'Organization membership card', 81770), (249083, 249083, 1, 1, 'Oriental Shoes of the Wen-Tzu Enclave', 255365), (31104, 31104, 1, 1, 'Oriental Suit', 88041), (205740, 205740, 20, 20, 'Original Mentor''s Straw Hat', 205767), (160422, 160422, 100, 100, 'Original Search Glasses', 45780), (304159, 304159, 1, 1, 'Ornamental Blade', 304101), (275356, 275356, 1, 1, 'Ornamental Grey Dress', 96131), (304158, 304158, 1, 1, 'Ornamental Hunting Rifle', 304100), (304160, 304160, 1, 1, 'Ornamental Pistol', 304099), (304157, 304157, 1, 1, 'Ornamental Support Beam', 304098), (150188, 150189, 151, 175, 'Ornamented Bodum-Larga Club', 85172), (225999, 226000, 1, 300, 'Ornamented Sacrificial Knife', 131273), (305556, 305556, 1, 1, 'Ornate Funeral Urn', 154195), (253775, 253775, 1, 1, 'Oscura Boots', 253712), (253812, 253812, 1, 1, 'Oscura Gloves', 253717), (253772, 253772, 1, 1, 'Oscura Pants', 253732), (253773, 253773, 1, 1, 'Oscura Shirt', 253673), (253774, 253774, 1, 1, 'Oscura Sleeves', 253695), (253740, 253740, 1, 1, 'Oscuro Boots', 253699), (253743, 253743, 1, 1, 'Oscuro Pants', 253721), (253742, 253742, 1, 1, 'Oscuro Shirt', 253679), (253741, 253741, 1, 1, 'Oscuro Sleeves', 253684), (199525, 199525, 200, 200, 'Osmium Periodic Tech Armor Boots', 22886), (199546, 199546, 200, 200, 'Osmium Periodic Tech Armor Gloves', 22933), (199567, 199567, 200, 200, 'Osmium Periodic Tech Armor Helmet', 31731), (199588, 199588, 200, 200, 'Osmium Periodic Tech Armor Pants', 22912), (199610, 199610, 200, 200, 'Osmium Periodic Tech Armor Sleeves', 22911), (199631, 199631, 200, 200, 'Osmium Periodic Tech Body Armor', 22990), (199652, 199652, 200, 200, 'Osmium Periodic Tech Female Body Armor', 22909), (232651, 232652, 1, 149, 'Osmium ingot', 289756), (232652, 232654, 150, 199, 'Osmium ingot', 289756), (232654, 232655, 200, 249, 'Osmium ingot', 289756), (232655, 232656, 250, 400, 'Osmium ingot', 289756), (275721, 275721, 1, 1, 'Ostracon', 277964), (160123, 160123, 20, 20, 'Oswaldssons Everlasting Ginger Muffin', 130520), (160121, 160122, 1, 19, 'Oswaldssons Everlasting Muffin', 130520), (262543, 262544, 1, 99, 'Otek Assault Rifle', 262579), (262545, 262546, 100, 199, 'Otek Assault Rifle', 262579), (262547, 262548, 200, 299, 'Otek Assault Rifle', 262579), (262549, 262549, 300, 300, 'Otek Assault Rifle', 262579), (262743, 262744, 1, 99, 'Otek Club', 262720), (262745, 262746, 100, 199, 'Otek Club', 262720), (262747, 262748, 200, 299, 'Otek Club', 262720), (262749, 262749, 300, 300, 'Otek Club', 262720), (262771, 262772, 1, 99, 'Otek Dicer', 262729), (262773, 262774, 100, 199, 'Otek Dicer', 262729), (262775, 262776, 200, 299, 'Otek Dicer', 262729), (262777, 262777, 300, 300, 'Otek Dicer', 262729), (262785, 262786, 1, 99, 'Otek Eviscerator', 262731), (262787, 262788, 100, 199, 'Otek Eviscerator', 262731), (262789, 262790, 200, 299, 'Otek Eviscerator', 262731), (262791, 262791, 300, 300, 'Otek Eviscerator', 262731), (262611, 262612, 1, 99, 'Otek Hammer', 262623), (262613, 262614, 100, 199, 'Otek Hammer', 262623), (262615, 262616, 200, 299, 'Otek Hammer', 262623), (262617, 262617, 300, 300, 'Otek Hammer', 262623), (262508, 262509, 1, 99, 'Otek Mallet', 262577), (262510, 262511, 100, 199, 'Otek Mallet', 262577), (262512, 262513, 200, 299, 'Otek Mallet', 262577), (262514, 262514, 300, 300, 'Otek Mallet', 262577), (262523, 262524, 1, 99, 'Otek Pistol', 262581), (262525, 262526, 100, 199, 'Otek Pistol', 262581), (262527, 262528, 200, 299, 'Otek Pistol', 262581), (262529, 262529, 300, 300, 'Otek Pistol', 262581), (262558, 262559, 1, 99, 'Otek Rifle', 262580), (262560, 262561, 100, 199, 'Otek Rifle', 262580), (262562, 262563, 200, 299, 'Otek Rifle', 262580), (262564, 262564, 300, 300, 'Otek Rifle', 262580), (262532, 262533, 1, 99, 'Otek Shotgun', 262582), (262534, 262535, 100, 199, 'Otek Shotgun', 262582), (262536, 262537, 200, 299, 'Otek Shotgun', 262582), (262538, 262538, 300, 300, 'Otek Shotgun', 262582), (262757, 262758, 1, 99, 'Otek Slicer', 262727), (262759, 262760, 100, 199, 'Otek Slicer', 262727), (262761, 262762, 200, 299, 'Otek Slicer', 262727), (262763, 262763, 300, 300, 'Otek Slicer', 262727), (262566, 262567, 1, 99, 'Otek Sword', 262578), (262568, 262569, 100, 199, 'Otek Sword', 262578), (262570, 262571, 200, 299, 'Otek Sword', 262578), (262572, 262572, 300, 300, 'Otek Sword', 262578), (241002, 241002, 1, 1, 'OtopdogsO and sort by NAME', 130862), (128909, 128910, 1, 39, 'Outdated Fett j-8 Flammable', 85173), (204978, 204979, 1, 300, 'Outdated NCU Wrist Implant', 290514), (214187, 214188, 100, 199, 'Outrider Microblaster', 210170), (214189, 214190, 200, 299, 'Outrider Microblaster', 210170), (226965, 226966, 1, 300, 'Outsider''s Armor Boots', 213554), (226973, 226974, 1, 300, 'Outsider''s Armor Gloves', 21871), (226971, 226972, 1, 300, 'Outsider''s Armor Sleeve', 13225), (226967, 226968, 1, 300, 'Outsider''s Armor Trousers', 213454), (226969, 226970, 1, 300, 'Outsider''s Body Armor', 37545), (125429, 125430, 101, 120, 'Outstanding Torch', 85172), (122619, 122620, 41, 60, 'Over-Tuned Aero Borealis Corona', 33147), (123632, 123633, 41, 60, 'Over-Tuned BBI Sigma III', 13318), (124753, 124754, 41, 60, 'Over-Tuned BBI WMMA CAW', 13311), (122505, 122506, 41, 60, 'Over-Tuned Biogun', 38056), (122011, 122012, 41, 60, 'Over-Tuned Blackened Blaster', 13321), (139679, 139679, 1, 1, 'Over-Tuned Blackened Blaster Construction Manual', 37932), (122087, 122088, 41, 60, 'Over-Tuned Blackened Blaster Rifle', 13313), (161234, 161234, 1, 1, 'Over-Tuned Blackened Blaster Rifle Construction Manual', 37932), (121992, 121993, 41, 60, 'Over-Tuned Blackened Miniblaster', 13316), (139493, 139493, 1, 1, 'Over-Tuned Blackened Miniblaster Construction Manual', 37932), (122600, 122601, 41, 60, 'Over-Tuned Blackhole Mk IX', 33171), (141219, 141219, 1, 1, 'Over-Tuned Blackhole Mk IX Construction Manual', 37932), (122771, 122772, 41, 60, 'Over-Tuned Bow-Blaster', 114013), (121859, 121860, 41, 60, 'Over-Tuned Chunkprojector', 21144), (122201, 122202, 81, 120, 'Over-Tuned DNA-Locked Blaster Rifle', 13313), (123099, 123100, 41, 60, 'Over-Tuned DNA-Targeted Executioner Pistol', 13323), (121802, 121803, 41, 60, 'Over-Tuned Disaffiliation Sniper', 21146), (137970, 137970, 1, 1, 'Over-Tuned Disaffiliation Sniper Construction Manual', 37932), (249837, 249838, 41, 60, 'Over-Tuned Dual Razor Disaffiliation Sniper', 21146), (122125, 122126, 41, 60, 'Over-Tuned E-Beamer', 21150), (138330, 138330, 1, 1, 'Over-Tuned E-Beamer Construction Manual', 37932), (122467, 122468, 41, 60, 'Over-Tuned El Diablo', 31812), (122448, 122449, 41, 60, 'Over-Tuned El Dieu', 31809), (122239, 122240, 41, 60, 'Over-Tuned Electrical Pacifier', 21150), (123175, 123176, 41, 60, 'Over-Tuned Electron-Charged Pistol', 13316), (142622, 142622, 1, 1, 'Over-Tuned Electron-Charged Pistol Construction Manual', 37932), (123309, 123310, 41, 60, 'Over-Tuned Enriched Uranium Sprayer', 21148), (122258, 122259, 41, 60, 'Over-Tuned Eradicator XCI-52', 13314), (124734, 124735, 41, 60, 'Over-Tuned FN P00', 21148), (121916, 121917, 41, 60, 'Over-Tuned Flamethrower', 19800), (139303, 139303, 1, 1, 'Over-Tuned Flamethrower Construction Manual', 37932), (124878, 124879, 41, 60, 'Over-Tuned GE ME30 Mom', 13322), (124971, 124972, 41, 60, 'Over-Tuned GE XM-559 Man-Portable Laser', 21151), (121935, 121936, 41, 60, 'Over-Tuned Gatling Saw 20k', 84025), (122871, 122872, 41, 60, 'Over-Tuned Grenade-Thrower', 13336), (141546, 141546, 1, 1, 'Over-Tuned Grenade-Thrower Construction Manual', 37932), (123137, 123138, 51, 68, 'Over-Tuned Heavy Gamma-Beamer', 33158), (121897, 121898, 41, 60, 'Over-Tuned Heavy Grinner', 21147), (139101, 139101, 1, 1, 'Over-Tuned Heavy Grinner Construction Manual', 37932), (122676, 122677, 41, 60, 'Over-Tuned Heavy Lead Sprayer', 21148), (141395, 141395, 1, 1, 'Over-Tuned Heavy Lead Sprayer Construction Manual', 37932), (124933, 124934, 41, 60, 'Over-Tuned IEC Flashpoint Laser Rifle', 33146), (123499, 123500, 41, 60, 'Over-Tuned IMI Desert Reet 1000', 13334), (122486, 122487, 41, 60, 'Over-Tuned Ingram Blaster 23-X', 13317), (125009, 125010, 41, 60, 'Over-Tuned Joint Clans Exocet II', 85167), (125028, 125029, 41, 60, 'Over-Tuned Joint Clans Patriot', 114013), (248562, 248564, 41, 60, 'Over-Tuned Kaetans Supernova', 33146), (124647, 124648, 41, 60, 'Over-Tuned Kalinkanov ZU-113 Security Weapon', 21148), (122714, 122715, 41, 60, 'Over-Tuned Kevlar Bow', 85167), (123537, 123538, 51, 68, 'Over-Tuned Khemo-Tech Model 07 (Pocket 20)', 113995), (123518, 123519, 41, 60, 'Over-Tuned Khemo-Tech Model 200', 113994), (123556, 123557, 51, 68, 'Over-Tuned Knights Inc. Special-Purpose Pistol 29', 13318), (122985, 122986, 41, 60, 'Over-Tuned Kolt 58 Magnum', 13334), (141689, 141689, 1, 1, 'Over-Tuned Kolt 58 Magnum Construction Manual', 37932), (122277, 122278, 41, 60, 'Over-Tuned Kolt PDW-37', 13315), (140471, 140471, 1, 1, 'Over-Tuned Kolt PDW-37 Construction Manual', 37932), (123156, 123157, 67, 82, 'Over-Tuned Light Beamer Pistol', 33157), (142480, 142480, 1, 1, 'Over-Tuned Light Beamer Pistol Construction Manual', 37933), (124602, 124603, 31, 40, 'Over-Tuned MTI MP200', 21147), (124685, 124686, 41, 60, 'Over-Tuned MTI MPK-22 Briefcase Gun', 13311), (124628, 124629, 41, 60, 'Over-Tuned MTI UMP22', 114016), (123480, 123481, 41, 60, 'Over-Tuned MTI USP 21', 113993), (124666, 124667, 41, 60, 'Over-Tuned Malorian Arms M25 Goodgun', 33153), (122429, 122430, 41, 60, 'Over-Tuned Mausser Particle Streamer', 31807), (140829, 140829, 1, 1, 'Over-Tuned Mausser Particle Streamer Construction Manual', 37932), (123042, 123043, 41, 60, 'Over-Tuned Medium Shotgun', 13340), (122182, 122183, 41, 60, 'Over-Tuned Megajolt', 13322), (140251, 140251, 1, 1, 'Over-Tuned Megajolt Construction Manual', 37932), (248593, 248594, 41, 60, 'Over-Tuned Merren Flamethrower', 19800), (123023, 123024, 41, 60, 'Over-Tuned Mini-Shotgun', 13341), (142112, 142112, 1, 1, 'Over-Tuned Mini-Shotgun Construction Manual', 37932), (122890, 122891, 41, 60, 'Over-Tuned Minielectronium', 13323), (122334, 122335, 41, 60, 'Over-Tuned Minigrinner', 33156), (140630, 140630, 1, 1, 'Over-Tuned Minigrinner Construction Manual', 37932), (123213, 123214, 80, 94, 'Over-Tuned Nano-Charged Assault Rifle', 45783), (123233, 123234, 80, 94, 'Over-Tuned Nano-Charged Rifle', 45782), (123423, 123424, 41, 60, 'Over-Tuned Netgun', 13322), (124715, 124716, 41, 60, 'Over-Tuned Nord Armwerk MAX', 21144), (123271, 123272, 48, 66, 'Over-Tuned Nova Flow - Mk IV', 33144), (123575, 123576, 51, 68, 'Over-Tuned OT 0220 22mm Combat Magnum', 31808), (124772, 124773, 41, 60, 'Over-Tuned OT ARL-10 Micromissile Launcher', 13311), (123461, 123462, 41, 60, 'Over-Tuned OT Boomer+.90AE', 113995), (124895, 124896, 41, 60, 'Over-Tuned OT M-00 Crystal', 13336), (124802, 124803, 41, 60, 'Over-Tuned OT M-110 Renegade SAW', 13336), (124821, 124822, 41, 60, 'Over-Tuned OT M-70 HardRain GPMG', 13336), (124564, 124565, 41, 60, 'Over-Tuned OT Saladin', 21148), (124583, 124584, 41, 60, 'Over-Tuned OT Viper IX', 21148), (122296, 122297, 41, 60, 'Over-Tuned Omni-Flamer Mk IV', 33161), (122524, 122525, 41, 60, 'Over-Tuned Omni-Flamer Strategic', 33159), (122543, 122544, 41, 60, 'Over-Tuned Omni-Pol Standard Flamer', 33160), (125085, 125086, 41, 60, 'Over-Tuned Oneida Razor Half-Bow', 114013), (123613, 123614, 41, 60, 'Over-Tuned PNG M1007A1 Tactical Revolver', 113997), (124859, 124860, 41, 60, 'Over-Tuned Planet Gripon Arms Hard-Boomer', 13311), (121878, 121879, 41, 60, 'Over-Tuned Plasmaprojector', 21145), (248724, 249854, 41, 60, 'Over-Tuned Razorback Disaffiliation Sniper', 21146), (125047, 125048, 41, 60, 'Over-Tuned Reet-Tech Junior Urban Crossbow', 114013), (124990, 124991, 41, 60, 'Over-Tuned Reet-Tech Stryker X', 85167), (125066, 125067, 41, 60, 'Over-Tuned Reet-Tech Venom Compound Bow', 85167), (123670, 123671, 41, 60, 'Over-Tuned River MV', 29116), (123689, 123690, 41, 60, 'Over-Tuned Seburo Bobsons', 13330), (124704, 124705, 20, 47, 'Over-Tuned Seburo C-19a', 21149), (123594, 123595, 51, 68, 'Over-Tuned Sentinel 20mm Snub Pistol', 31811), (123651, 123652, 41, 60, 'Over-Tuned Sentinels ETE Strike Gun', 31810), (248525, 248526, 41, 60, 'Over-Tuned Sharky''s Kevlar Bow', 85167), (122657, 122658, 41, 60, 'Over-Tuned Silver Miniblaster', 13316), (121840, 121841, 41, 60, 'Over-Tuned Sleekblaster', 13329), (138590, 138590, 1, 1, 'Over-Tuned Sleekblaster Construction Manual', 37932), (123080, 123081, 41, 60, 'Over-Tuned Sleekblaster Major', 13328), (142292, 142292, 1, 1, 'Over-Tuned Sleekblaster Major Construction Manual', 37932), (121821, 121822, 41, 60, 'Over-Tuned Sleekblaster Minor', 13327), (138193, 138193, 1, 1, 'Over-Tuned Sleekblaster Minor Construction Manual', 37932), (123290, 123291, 67, 82, 'Over-Tuned Slugger', 33154), (122315, 122316, 41, 60, 'Over-Tuned Stanton Stunner IV', 13313), (122220, 122221, 41, 60, 'Over-Tuned Stigma Rifle', 33155), (121783, 121784, 41, 60, 'Over-Tuned Subturbine', 21151), (137720, 137720, 1, 1, 'Over-Tuned Subturbine Construction Manual', 37932), (122562, 122563, 41, 60, 'Over-Tuned Sunburst Mk III', 33148), (143848, 143849, 41, 60, 'Over-Tuned Sunburst Mk IV', 33148), (122581, 122582, 41, 60, 'Over-Tuned Supernova Mk VI', 33146), (141023, 141023, 1, 1, 'Over-Tuned Supernova Mk VI Construction Manual', 37932), (123194, 123195, 41, 60, 'Over-Tuned Suppressor', 31807), (141893, 141893, 1, 1, 'Over-Tuned Suppressor Construction Manual', 37932), (124952, 124953, 41, 60, 'Over-Tuned Techtronica Neural Disruptor', 21145), (122638, 122639, 41, 60, 'Over-Tuned The Original Plasma-Emitter', 33145), (122030, 122031, 41, 60, 'Over-Tuned Triplejolt', 13320), (139885, 139885, 1, 1, 'Over-Tuned Triplejolt Construction Manual', 37932), (124783, 124784, 41, 60, 'Over-Tuned Tsunami Raiden MP-Drum', 13311), (123442, 123443, 41, 60, 'Over-Tuned Ultra-Light Missile Pistol Raid 9-X', 13315), (124840, 124841, 41, 60, 'Over-Tuned Vektor M-31 Automatic Grenade Launcher', 13336), (124914, 124915, 41, 60, 'Over-Tuned Westinghouse IM-50 Plasma Burner', 33146), (248612, 248613, 41, 60, 'Over-Tuned Xnemth Plasmaprojector', 21145), (128629, 128630, 51, 100, 'Over-tuned Ares Arms AR-90 Jet Rifle', 21149), (153996, 153997, 51, 100, 'Over-tuned Arms AR-90 Jet Rifle', 21149), (128875, 128876, 41, 60, 'Over-tuned Arwen MM-50 Grenade Launcher', 13336), (142857, 142858, 21, 40, 'Over-tuned Eye Wind Onehander', 13341), (128762, 128763, 41, 60, 'Over-tuned Fabrique Des Armes Bizon 20-19', 21144), (144105, 144106, 31, 40, 'Over-tuned Freedom Arms 4200', 113997), (128719, 128720, 41, 60, 'Over-tuned Galahad Inc. 077 Personal Weapon', 21148), (128743, 128744, 41, 60, 'Over-tuned Galahad Inc. Tactical Machine Pistol 1', 21147), (128659, 128660, 41, 60, 'Over-tuned HSR Arms Tech Assault IV', 21148), (128678, 128679, 41, 60, 'Over-tuned HSR Arms Tech Assault V', 21148), (128612, 128613, 41, 60, 'Over-tuned MTI G-36K', 33155), (128862, 128863, 33, 43, 'Over-tuned MTI MPK-22', 33153), (253219, 253220, 60, 89, 'Over-tuned Nizno''s Bomb Blaster', 13336), (128843, 128844, 41, 60, 'Over-tuned OET Co. MP-21 Tactical Machine Pistol', 21148), (128796, 128797, 41, 60, 'Over-tuned OT Cobra M-33', 21148), (266991, 266991, 220, 220, 'Over-tuned Rocket Launcher', 264797), (128640, 128641, 41, 60, 'Over-tuned Seburo C-99a', 21144), (160485, 160486, 21, 30, 'Over-tuned Sleekmaster Classic', 13329), (128894, 128895, 41, 60, 'Over-tuned Steiner LM-5 Assault Laser', 33171), (206293, 206293, 200, 200, 'Over-tuned Timmy Gun', 13312), (129638, 129639, 1, 20, 'Over-tuned Wen-Wen', 85161), (128815, 128816, 41, 60, 'Over-tuned Zastaba M0-2 Assault Weapon (Zero)', 33153), (221368, 221368, 33, 33, 'Overcharged Corroded Nano Crystal (Abyssal Flames)', 220423), (222223, 222223, 24, 24, 'Overcharged Corroded Nano Crystal (Accelerated Decay)', 220423), (222145, 222145, 24, 24, 'Overcharged Corroded Nano Crystal (Accelerated Titanium Pellet)', 220423), (220789, 220789, 27, 27, 'Overcharged Corroded Nano Crystal (Acidic Conversion)', 220423), (220791, 220791, 7, 7, 'Overcharged Corroded Nano Crystal (Acidic Projection)', 220423), (221651, 221651, 163, 163, 'Overcharged Corroded Nano Crystal (Advanced Collapsing Barrier)', 220413), (220443, 220443, 107, 107, 'Overcharged Corroded Nano Crystal (Advanced Layered Protection)', 220413), (222202, 222202, 30, 30, 'Overcharged Corroded Nano Crystal (Aggressive Mutagen)', 220423), (221242, 221242, 165, 165, 'Overcharged Corroded Nano Crystal (Annihilating Hadron String)', 220437), (220969, 220969, 73, 73, 'Overcharged Corroded Nano Crystal (Arctic Welcome)', 220430), (221051, 221051, 159, 159, 'Overcharged Corroded Nano Crystal (Atomic Collapse)', 220437), (220887, 220887, 50, 50, 'Overcharged Corroded Nano Crystal (Augmented Energized Beam)', 220423), (221846, 221846, 10, 10, 'Overcharged Corroded Nano Crystal (Bacterial Invasion)', 220423), (220618, 220618, 106, 106, 'Overcharged Corroded Nano Crystal (Ball and Chain)', 220437), (220654, 220654, 113, 113, 'Overcharged Corroded Nano Crystal (Bane of the Living)', 220437), (220831, 220831, 96, 96, 'Overcharged Corroded Nano Crystal (Barrage of Blades)', 220430), (221374, 221374, 109, 109, 'Overcharged Corroded Nano Crystal (Barrage of Fire)', 220437), (220908, 220908, 73, 73, 'Overcharged Corroded Nano Crystal (Basic Crystalizing Ray)', 220430), (220659, 220659, 17, 17, 'Overcharged Corroded Nano Crystal (Basic Humidity Extractor)', 220424), (222134, 222134, 30, 30, 'Overcharged Corroded Nano Crystal (Bewilder)', 220423), (222051, 222051, 119, 119, 'Overcharged Corroded Nano Crystal (Bio-Acid Spray)', 220437), (220919, 220919, 86, 86, 'Overcharged Corroded Nano Crystal (Blade Chaos)', 220430), (221589, 221589, 169, 169, 'Overcharged Corroded Nano Crystal (Blaze of Hephaestos)', 220437), (222001, 222001, 33, 33, 'Overcharged Corroded Nano Crystal (Blight)', 220423), (220540, 220540, 152, 152, 'Overcharged Corroded Nano Crystal (Boil Blood)', 220437), (221110, 221110, 126, 126, 'Overcharged Corroded Nano Crystal (Boil From Within)', 220437), (220671, 220671, 149, 149, 'Overcharged Corroded Nano Crystal (Boundless Humidity Extractor)', 220411), (221716, 221716, 24, 24, 'Overcharged Corroded Nano Crystal (Brief Poison Fog)', 220423), (220885, 220885, 159, 159, 'Overcharged Corroded Nano Crystal (Brutal Cornea Attack)', 220412), (221189, 221189, 189, 189, 'Overcharged Corroded Nano Crystal (Burden of Atlas)', 220437), (221070, 221070, 93, 93, 'Overcharged Corroded Nano Crystal (Burn from Within)', 220430), (221588, 221588, 182, 182, 'Overcharged Corroded Nano Crystal (Burning Bones)', 220437), (221812, 221812, 57, 57, 'Overcharged Corroded Nano Crystal (Burning Orb)', 220430), (221926, 221926, 126, 126, 'Overcharged Corroded Nano Crystal (Burning Quartet)', 220437), (221153, 221153, 93, 93, 'Overcharged Corroded Nano Crystal (Burning Triumvirate)', 220430), (221711, 221711, 175, 175, 'Overcharged Corroded Nano Crystal (Cascade of the Storm)', 220437), (221067, 221067, 40, 40, 'Overcharged Corroded Nano Crystal (Cellular Decay)', 220423), (221590, 221590, 139, 139, 'Overcharged Corroded Nano Crystal (Chaos Lights)', 220437), (222011, 222011, 47, 47, 'Overcharged Corroded Nano Crystal (Chaotic Entropy)', 220423), (221099, 221099, 24, 24, 'Overcharged Corroded Nano Crystal (Chemical Burn)', 220423), (222140, 222140, 103, 103, 'Overcharged Corroded Nano Crystal (Chemical Liquefaction)', 220437), (222259, 222259, 33, 33, 'Overcharged Corroded Nano Crystal (Chilling Stream)', 220423), (220608, 220608, 60, 60, 'Overcharged Corroded Nano Crystal (Circle Scythe)', 220430), (221593, 221593, 50, 50, 'Overcharged Corroded Nano Crystal (Circle of Winter)', 220423), (220735, 220735, 7, 7, 'Overcharged Corroded Nano Crystal (Claw Eyes)', 220425), (220881, 220881, 40, 40, 'Overcharged Corroded Nano Crystal (Coherent Nano Pathway)', 220424), (222173, 222173, 142, 142, 'Overcharged Corroded Nano Crystal (Coherent Positron Stream)', 220437), (220868, 220868, 63, 63, 'Overcharged Corroded Nano Crystal (Cohesion Amplifier)', 220431), (221084, 221084, 146, 146, 'Overcharged Corroded Nano Crystal (Collapsing Barrier)', 220413), (222133, 222133, 149, 149, 'Overcharged Corroded Nano Crystal (Collapsing Hadron String)', 220437), (221591, 221591, 165, 165, 'Overcharged Corroded Nano Crystal (Compacted Neutron Missile)', 220437), (220976, 220976, 70, 70, 'Overcharged Corroded Nano Crystal (Compressed Shockwave)', 220430), (220567, 220567, 30, 30, 'Overcharged Corroded Nano Crystal (Condensed Halon Jet)', 220423), (221860, 221860, 99, 99, 'Overcharged Corroded Nano Crystal (Condensed Pellet of Fire)', 220430), (221893, 221893, 156, 156, 'Overcharged Corroded Nano Crystal (Conduction Stream)', 220437), (221729, 221729, 136, 136, 'Overcharged Corroded Nano Crystal (Contained Plasma Sphere)', 220437), (222037, 222037, 76, 76, 'Overcharged Corroded Nano Crystal (Convergent Energy Beam)', 220430), (221747, 221747, 96, 96, 'Overcharged Corroded Nano Crystal (Cornea Attack)', 220432), (222005, 222005, 132, 132, 'Overcharged Corroded Nano Crystal (Coronet of Frost)', 220437), (221592, 221592, 10, 10, 'Overcharged Corroded Nano Crystal (Corrosive Spray)', 220423), (221168, 221168, 103, 103, 'Overcharged Corroded Nano Crystal (Corrupt Molecular Integrity)', 220437), (221782, 221782, 4, 4, 'Overcharged Corroded Nano Crystal (Corruption)', 220423), (222026, 222026, 156, 156, 'Overcharged Corroded Nano Crystal (Crown of Frost)', 220437), (221706, 221706, 10, 10, 'Overcharged Corroded Nano Crystal (CrunchCom Code Sieve)', 220422), (221003, 221003, 123, 123, 'Overcharged Corroded Nano Crystal (CrunchCom Nano Compressor Pro)', 220436), (221022, 221022, 47, 47, 'Overcharged Corroded Nano Crystal (CrunchCom Nano Compressor)', 220422), (222166, 222166, 103, 103, 'Overcharged Corroded Nano Crystal (Crystalizing Ray)', 220437), (221775, 221775, 47, 47, 'Overcharged Corroded Nano Crystal (Curtain of Darkness)', 220425), (220782, 220782, 90, 90, 'Overcharged Corroded Nano Crystal (Dark Movement)', 220432), (221769, 221769, 76, 76, 'Overcharged Corroded Nano Crystal (Deep Chemical Burn)', 220430), (220601, 220601, 17, 17, 'Overcharged Corroded Nano Crystal (Deep Slash)', 220423), (221695, 221695, 86, 86, 'Overcharged Corroded Nano Crystal (Dense Matter Missile MK II)', 220430), (220942, 220942, 43, 43, 'Overcharged Corroded Nano Crystal (Dense Matter Missile)', 220423), (221667, 221667, 103, 103, 'Overcharged Corroded Nano Crystal (Dense Poison Fog)', 220437), (221133, 221133, 129, 129, 'Overcharged Corroded Nano Crystal (Discourage Involvement)', 220437), (221182, 221182, 106, 106, 'Overcharged Corroded Nano Crystal (Dispersed Nanoblade Cloud)', 220437), (220713, 220713, 109, 109, 'Overcharged Corroded Nano Crystal (Dissolving Sphere)', 220437), (220796, 220796, 20, 20, 'Overcharged Corroded Nano Crystal (Dual Energized Beams)', 220423), (220766, 220766, 60, 60, 'Overcharged Corroded Nano Crystal (Dual Ion Stream)', 220430), (221816, 221816, 80, 80, 'Overcharged Corroded Nano Crystal (Efficient Humidity Extractor)', 220431), (221594, 221594, 185, 185, 'Overcharged Corroded Nano Crystal (Electrifying Containment)', 220437), (222209, 222209, 142, 142, 'Overcharged Corroded Nano Crystal (Encircle with Blades)', 220437), (220980, 220980, 4, 4, 'Overcharged Corroded Nano Crystal (Energized Beam)', 220423), (221169, 221169, 113, 113, 'Overcharged Corroded Nano Crystal (Energized Collapse)', 220437), (221595, 221595, 53, 53, 'Overcharged Corroded Nano Crystal (Energy Projectile)', 220430), (222316, 222316, 156, 156, 'Overcharged Corroded Nano Crystal (Enfraam''s Augmented Fortification)', 220413), (222317, 222317, 47, 47, 'Overcharged Corroded Nano Crystal (Enfraam''s Fortification)', 220426), (222318, 222318, 140, 140, 'Overcharged Corroded Nano Crystal (Enfraam''s Glorious Fortification)', 220413), (222319, 222319, 93, 93, 'Overcharged Corroded Nano Crystal (Enfraam''s Greater Fortification)', 220433), (222539, 222539, 93, 93, 'Overcharged Corroded Nano Crystal (Enfraam''s Inverted Restrainer)', 220431), (222320, 222320, 37, 37, 'Overcharged Corroded Nano Crystal (Enfraam''s Lesser Fortification)', 220426), (222321, 222321, 80, 80, 'Overcharged Corroded Nano Crystal (Enfraam''s Major Fortification)', 220433), (222322, 222322, 24, 24, 'Overcharged Corroded Nano Crystal (Enfraam''s Minor Fortification)', 220426), (222323, 222323, 166, 166, 'Overcharged Corroded Nano Crystal (Enfraam''s Perfected Fortification)', 220413), (222324, 222324, 60, 60, 'Overcharged Corroded Nano Crystal (Enfraam''s Superior Fortification)', 220433), (222325, 222325, 113, 113, 'Overcharged Corroded Nano Crystal (Enfraam''s Supreme Fortification)', 220413), (222326, 222326, 14, 14, 'Overcharged Corroded Nano Crystal (Enfraam''s Trivial Fortification)', 220426), (221828, 221828, 149, 149, 'Overcharged Corroded Nano Crystal (Engulf in Flame)', 220437), (221889, 221889, 20, 20, 'Overcharged Corroded Nano Crystal (Enhance Nano Cohesion)', 220424), (222119, 222119, 4, 4, 'Overcharged Corroded Nano Crystal (Enhance Nano Communication)', 220424), (221813, 221813, 30, 30, 'Overcharged Corroded Nano Crystal (Entropy Beam)', 220423), (222075, 222075, 57, 57, 'Overcharged Corroded Nano Crystal (Enveloping Darkness)', 220432), (220936, 220936, 76, 76, 'Overcharged Corroded Nano Crystal (Eroding Spray)', 220430), (221064, 221064, 152, 152, 'Overcharged Corroded Nano Crystal (Eviscerate Eyes)', 220412), (221643, 221643, 70, 70, 'Overcharged Corroded Nano Crystal (Expanding Neutron Pulse)', 220430), (221145, 221145, 169, 169, 'Overcharged Corroded Nano Crystal (Eye of Light)', 220437), (221814, 221814, 139, 139, 'Overcharged Corroded Nano Crystal (Eyeblighter)', 220412), (221678, 221678, 7, 7, 'Overcharged Corroded Nano Crystal (Feeble Blade Chaos)', 220423), (221834, 221834, 90, 90, 'Overcharged Corroded Nano Crystal (Feeble Gravitational Anomaly)', 220430), (221234, 221234, 73, 73, 'Overcharged Corroded Nano Crystal (Feet of Iron)', 220430), (220767, 220767, 165, 165, 'Overcharged Corroded Nano Crystal (Feet of Lead)', 220437), (222207, 222207, 14, 14, 'Overcharged Corroded Nano Crystal (Feet of Stone)', 220423), (221271, 221271, 162, 162, 'Overcharged Corroded Nano Crystal (Ferocious Impactor Missile)', 220437), (221626, 221626, 142, 142, 'Overcharged Corroded Nano Crystal (Fiery Blast)', 220437), (221597, 221597, 27, 27, 'Overcharged Corroded Nano Crystal (Fire Snake)', 220423), (221371, 221371, 7, 7, 'Overcharged Corroded Nano Crystal (Fire Stream)', 220423), (222029, 222029, 182, 182, 'Overcharged Corroded Nano Crystal (Fleeting Immunity)', 220413), (222009, 222009, 116, 116, 'Overcharged Corroded Nano Crystal (Focused Ray)', 220437), (222094, 222094, 90, 90, 'Overcharged Corroded Nano Crystal (Foul Bane)', 220430), (221827, 221827, 162, 162, 'Overcharged Corroded Nano Crystal (Foul Eyeblighter)', 220412), (221598, 221598, 96, 96, 'Overcharged Corroded Nano Crystal (Freezing Surge)', 220430), (220763, 220763, 159, 159, 'Overcharged Corroded Nano Crystal (Frigid Landscape)', 220437), (220616, 220616, 43, 43, 'Overcharged Corroded Nano Crystal (Frosty Welcome)', 220423), (220595, 220595, 185, 185, 'Overcharged Corroded Nano Crystal (Full-body Acid Coating)', 220437), (221596, 221596, 83, 83, 'Overcharged Corroded Nano Crystal (Furious Assault)', 220430), (221033, 221033, 103, 103, 'Overcharged Corroded Nano Crystal (Furious Wind Blade)', 220437), (221896, 221896, 37, 37, 'Overcharged Corroded Nano Crystal (Gaping Puncture)', 220423), (221764, 221764, 50, 50, 'Overcharged Corroded Nano Crystal (Glacial Advance)', 220423), (221914, 221914, 175, 175, 'Overcharged Corroded Nano Crystal (Glacial Finality)', 220437), (221040, 221040, 27, 27, 'Overcharged Corroded Nano Crystal (Gouge Eyes)', 220425), (222231, 222231, 169, 169, 'Overcharged Corroded Nano Crystal (Gravitational Anomaly)', 220437), (220577, 220577, 149, 149, 'Overcharged Corroded Nano Crystal (Gravity Pull)', 220437), (221096, 221096, 119, 119, 'Overcharged Corroded Nano Crystal (Greater Blade Chaos)', 220437), (221866, 221866, 70, 70, 'Overcharged Corroded Nano Crystal (Greater Chilling Stream)', 220430), (220932, 220932, 139, 139, 'Overcharged Corroded Nano Crystal (Greater Crystalizing Ray)', 220437), (222235, 222235, 129, 129, 'Overcharged Corroded Nano Crystal (Greater RNA Reaper)', 220437), (222073, 222073, 172, 172, 'Overcharged Corroded Nano Crystal (Greater Searing Stream)', 220437), (221165, 221165, 132, 132, 'Overcharged Corroded Nano Crystal (Greater Shower With Sludge)', 220437), (221928, 221928, 83, 83, 'Overcharged Corroded Nano Crystal (Greater Toxic Field)', 220430), (221085, 221085, 179, 179, 'Overcharged Corroded Nano Crystal (Greater Viral Assault)', 220437), (221681, 221681, 20, 20, 'Overcharged Corroded Nano Crystal (Halon Cloud)', 220423), (222164, 222164, 57, 57, 'Overcharged Corroded Nano Crystal (Hoary Seep)', 220430), (221599, 221599, 14, 14, 'Overcharged Corroded Nano Crystal (Hot Feet)', 220423), (221780, 221780, 40, 40, 'Overcharged Corroded Nano Crystal (Humidity Extractor)', 220424), (220668, 220668, 123, 123, 'Overcharged Corroded Nano Crystal (Impactor Missile)', 220437), (220835, 220835, 139, 139, 'Overcharged Corroded Nano Crystal (Impaling Tracer)', 220437), (221600, 221600, 162, 162, 'Overcharged Corroded Nano Crystal (Internal Combustion)', 220437), (221601, 221601, 70, 70, 'Overcharged Corroded Nano Crystal (Invasive Presence)', 220430), (221715, 221715, 14, 14, 'Overcharged Corroded Nano Crystal (Ion Stream)', 220423), (221873, 221873, 50, 50, 'Overcharged Corroded Nano Crystal (Isotope Deluge)', 220423), (221029, 221029, 146, 146, 'Overcharged Corroded Nano Crystal (Isotope Waves)', 220437), (221602, 221602, 182, 182, 'Overcharged Corroded Nano Crystal (Izgimmer''s Enveloping Flame)', 220437), (221248, 221248, 179, 179, 'Overcharged Corroded Nano Crystal (Izgimmer''s Obfuscated Recompiler)', 220436), (222084, 222084, 152, 152, 'Overcharged Corroded Nano Crystal (Jobe Nano Libraries)', 220436), (220699, 220699, 80, 80, 'Overcharged Corroded Nano Crystal (Layered Protection)', 220433), (221760, 221760, 162, 162, 'Overcharged Corroded Nano Crystal (Legions of the Eyeblighter)', 220412), (222100, 222100, 40, 40, 'Overcharged Corroded Nano Crystal (Lesser Bane of the Living)', 220423), (221184, 221184, 109, 109, 'Overcharged Corroded Nano Crystal (Lesser Coronet of Frost)', 220437), (220800, 220800, 47, 47, 'Overcharged Corroded Nano Crystal (Lesser Encircle With Blades)', 220423), (220943, 220943, 86, 86, 'Overcharged Corroded Nano Crystal (Lesser Eyeblighter)', 220432), (221720, 221720, 14, 14, 'Overcharged Corroded Nano Crystal (Lesser RNA Reaper)', 220423), (221603, 221603, 80, 80, 'Overcharged Corroded Nano Crystal (Lightning Strike)', 220430), (221855, 221855, 83, 83, 'Overcharged Corroded Nano Crystal (Limited Shrapnel Spray)', 220430), (220568, 220568, 159, 159, 'Overcharged Corroded Nano Crystal (Linear Acceleration)', 220437), (221215, 221215, 132, 132, 'Overcharged Corroded Nano Crystal (Liquefying Sphere)', 220437), (220718, 220718, 189, 189, 'Overcharged Corroded Nano Crystal (Localized Dimensional Inversion)', 220437), (222167, 222167, 146, 146, 'Overcharged Corroded Nano Crystal (Major Chemical Burn)', 220437), (220890, 220890, 149, 149, 'Overcharged Corroded Nano Crystal (Malign Devourer)', 220437), (220876, 220876, 20, 20, 'Overcharged Corroded Nano Crystal (Mass Claw Eyes)', 220425), (221968, 221968, 109, 109, 'Overcharged Corroded Nano Crystal (Mass Cornea Attack)', 220412), (221032, 221032, 132, 132, 'Overcharged Corroded Nano Crystal (Mass Pronounce Blindness)', 220412), (221913, 221913, 123, 123, 'Overcharged Corroded Nano Crystal (Mephitic Ichor)', 220437), (221746, 221746, 103, 103, 'Overcharged Corroded Nano Crystal (Meson Blast)', 220437), (221305, 221305, 136, 136, 'Overcharged Corroded Nano Crystal (Meta-Dioxin Spray)', 220437), (221066, 221066, 116, 116, 'Overcharged Corroded Nano Crystal (Micro Flechette Swarm)', 220437), (220759, 220759, 17, 17, 'Overcharged Corroded Nano Crystal (Micro Flechette)', 220423), (221887, 221887, 47, 47, 'Overcharged Corroded Nano Crystal (Microblade Whirlwind)', 220423), (220988, 220988, 37, 37, 'Overcharged Corroded Nano Crystal (Mild Toxic Spill)', 220423), (221201, 221201, 57, 57, 'Overcharged Corroded Nano Crystal (Minor Bane)', 220430), (222211, 222211, 1, 1, 'Overcharged Corroded Nano Crystal (Minor Toxic Barb)', 220423), (220938, 220938, 10, 10, 'Overcharged Corroded Nano Crystal (Minor Toxic Field)', 220423), (221604, 221604, 185, 185, 'Overcharged Corroded Nano Crystal (Molecular Deconstruction)', 220437), (221993, 221993, 165, 165, 'Overcharged Corroded Nano Crystal (Molecular Flechettes)', 220437), (221660, 221660, 17, 17, 'Overcharged Corroded Nano Crystal (Molecule Lance)', 220423), (221838, 221838, 123, 123, 'Overcharged Corroded Nano Crystal (Momentum Impaler)', 220437), (221318, 221318, 149, 149, 'Overcharged Corroded Nano Crystal (Nano Cloud Supplement)', 220411), (221015, 221015, 53, 53, 'Overcharged Corroded Nano Crystal (Nano Contagion)', 220430), (220676, 220676, 142, 142, 'Overcharged Corroded Nano Crystal (Nanoblade Cloud)', 220437), (221605, 221605, 152, 152, 'Overcharged Corroded Nano Crystal (Neural Stunner)', 220437), (220999, 220999, 66, 66, 'Overcharged Corroded Nano Crystal (Neutron Spiral)', 220430), (220641, 220641, 175, 175, 'Overcharged Corroded Nano Crystal (Notum Overload)', 220411), (222180, 222180, 96, 96, 'Overcharged Corroded Nano Crystal (Ol'' Faithful)', 220430), (222059, 222059, 73, 73, 'Overcharged Corroded Nano Crystal (On-The-Fly Compression)', 220429), (221837, 221837, 7, 7, 'Overcharged Corroded Nano Crystal (Open Wound)', 220423), (221607, 221607, 123, 123, 'Overcharged Corroded Nano Crystal (Particle Accelerator)', 220437), (221946, 221946, 129, 129, 'Overcharged Corroded Nano Crystal (Particle Flare)', 220437), (222023, 222023, 90, 90, 'Overcharged Corroded Nano Crystal (Particle Shower)', 220430), (222034, 222034, 159, 159, 'Overcharged Corroded Nano Crystal (Peaceful Intentions)', 220437), (221137, 221137, 83, 83, 'Overcharged Corroded Nano Crystal (Pellet of Fire)', 220430), (220873, 220873, 169, 169, 'Overcharged Corroded Nano Crystal (Personal Notum Harvester)', 220411), (221610, 221610, 37, 37, 'Overcharged Corroded Nano Crystal (Phoenix Swarm)', 220423), (221830, 221830, 83, 83, 'Overcharged Corroded Nano Crystal (Phosphor Torch)', 220430), (221983, 221983, 172, 172, 'Overcharged Corroded Nano Crystal (Photon Deflector)', 220412), (221608, 221608, 50, 50, 'Overcharged Corroded Nano Crystal (Plasma Lights)', 220423), (221611, 221611, 76, 76, 'Overcharged Corroded Nano Crystal (Plasma Swirl)', 220430), (221609, 221609, 30, 30, 'Overcharged Corroded Nano Crystal (Poison Missile)', 220423), (222054, 222054, 4, 4, 'Overcharged Corroded Nano Crystal (Poke Eyes)', 220425), (221061, 221061, 96, 96, 'Overcharged Corroded Nano Crystal (Positron Stream)', 220430), (220474, 220474, 60, 60, 'Overcharged Corroded Nano Crystal (Project Calm)', 220430), (221001, 221001, 119, 119, 'Overcharged Corroded Nano Crystal (Pronounce Blindness)', 220412), (221817, 221817, 182, 182, 'Overcharged Corroded Nano Crystal (Quark Collapse)', 220437), (221935, 221935, 63, 63, 'Overcharged Corroded Nano Crystal (RNA Reaper)', 220430), (221613, 221613, 4, 4, 'Overcharged Corroded Nano Crystal (Radiation Pulse)', 220423), (221884, 221884, 76, 76, 'Overcharged Corroded Nano Crystal (Radiation Scour)', 220430), (221612, 221612, 99, 99, 'Overcharged Corroded Nano Crystal (Radioactive Cloud)', 220430), (220626, 220626, 129, 129, 'Overcharged Corroded Nano Crystal (Rend Flesh)', 220437), (222135, 222135, 1, 1, 'Overcharged Corroded Nano Crystal (Rudimentary Humidity Extractor)', 220424), (221761, 221761, 33, 33, 'Overcharged Corroded Nano Crystal (Run-Time Recompiler)', 220422), (221260, 221260, 80, 80, 'Overcharged Corroded Nano Crystal (Searing Agony)', 220430), (220757, 220757, 152, 152, 'Overcharged Corroded Nano Crystal (Searing Circle)', 220437), (222252, 222252, 159, 159, 'Overcharged Corroded Nano Crystal (Searing Stream)', 220437), (221614, 221614, 14, 14, 'Overcharged Corroded Nano Crystal (Shockball)', 220423), (221615, 221615, 66, 66, 'Overcharged Corroded Nano Crystal (Shockwave Slash)', 220430), (220846, 220846, 40, 40, 'Overcharged Corroded Nano Crystal (Shower With Sludge)', 220423), (221616, 221616, 123, 123, 'Overcharged Corroded Nano Crystal (Shrapnel Burst)', 220437), (221829, 221829, 66, 66, 'Overcharged Corroded Nano Crystal (Shroud of Darkness)', 220432), (221178, 221178, 182, 182, 'Overcharged Corroded Nano Crystal (Shroud of the Grave)', 220412), (221373, 221373, 93, 93, 'Overcharged Corroded Nano Crystal (Slime Cascade)', 220430), (220647, 220647, 57, 57, 'Overcharged Corroded Nano Crystal (Smiting Missile Mk II)', 220430), (221680, 221680, 24, 24, 'Overcharged Corroded Nano Crystal (Smiting Missile)', 220423), (220722, 220722, 152, 152, 'Overcharged Corroded Nano Crystal (Solar Wind)', 220437), (220597, 220597, 156, 156, 'Overcharged Corroded Nano Crystal (Stargasp)', 220437), (222115, 222115, 179, 179, 'Overcharged Corroded Nano Crystal (Stinging Missile Swarm)', 220437), (220580, 220580, 63, 63, 'Overcharged Corroded Nano Crystal (Stinging Missile)', 220430), (221995, 221995, 162, 162, 'Overcharged Corroded Nano Crystal (Sudden Affliction)', 220437), (221736, 221736, 24, 24, 'Overcharged Corroded Nano Crystal (Sudden Chill)', 220423), (220660, 220660, 99, 99, 'Overcharged Corroded Nano Crystal (Superior Humidity Extractor)', 220431), (221675, 221675, 172, 172, 'Overcharged Corroded Nano Crystal (Superior Malign Devourer)', 220437), (220985, 220985, 93, 93, 'Overcharged Corroded Nano Crystal (Superior Nano Command)', 220431), (222500, 222500, 68, 68, 'Overcharged Corroded Nano Crystal (Tear Constraints)', 220431), (220739, 220739, 116, 116, 'Overcharged Corroded Nano Crystal (Tear Flesh)', 220437), (221957, 221957, 60, 60, 'Overcharged Corroded Nano Crystal (Thunderclap)', 220430), (220869, 220869, 43, 43, 'Overcharged Corroded Nano Crystal (Thunderous Blow)', 220423), (221122, 221122, 37, 37, 'Overcharged Corroded Nano Crystal (Toxic Field)', 220423), (221701, 221701, 126, 126, 'Overcharged Corroded Nano Crystal (Toxic Sphere)', 220437), (220615, 220615, 132, 132, 'Overcharged Corroded Nano Crystal (Toxic Spill)', 220437), (221572, 221572, 175, 175, 'Overcharged Corroded Nano Crystal (Tremor)', 220437), (220589, 220589, 109, 109, 'Overcharged Corroded Nano Crystal (Tri-Ion Stream)', 220437), (220738, 220738, 119, 119, 'Overcharged Corroded Nano Crystal (Unstable Hadron String)', 220437), (222104, 222104, 66, 66, 'Overcharged Corroded Nano Crystal (Viral Assault)', 220430), (221934, 221934, 189, 189, 'Overcharged Corroded Nano Crystal (Visions of the Void)', 220412), (221321, 221321, 86, 86, 'Overcharged Corroded Nano Crystal (Void Warmth)', 220430), (221619, 221619, 182, 182, 'Overcharged Corroded Nano Crystal (Volcanic Eruption)', 220437), (221618, 221618, 113, 113, 'Overcharged Corroded Nano Crystal (Vulcan Flechette)', 220437), (220802, 220802, 189, 189, 'Overcharged Corroded Nano Crystal (Warmth of the Grave)', 220437), (222250, 222250, 57, 57, 'Overcharged Corroded Nano Crystal (Weak Chemical Liquefaction)', 220430), (221795, 221795, 33, 33, 'Overcharged Corroded Nano Crystal (Weak Gravity Collapse)', 220423), (220583, 220583, 40, 40, 'Overcharged Corroded Nano Crystal (Weak Gravity Pull)', 220423), (221783, 221783, 1, 1, 'Overcharged Corroded Nano Crystal (Weak Smiting Missile)', 220423), (221851, 221851, 37, 37, 'Overcharged Corroded Nano Crystal (Wild Eye Gouger)', 220425), (220650, 220650, 27, 27, 'Overcharged Corroded Nano Crystal (Wind Blade)', 220423), (254372, 254372, 1, 1, 'Overclocked Belt Component Platform', 119144), (245860, 245860, 250, 250, 'Overcoat of the Firmament', 245846), (260684, 260684, 250, 250, 'Overcoat of the Firmament', 245846), (251220, 251221, 1, 300, 'Overheated Compiler', 119132), (301333, 301333, 300, 300, 'Overheated Light Tank Armor', 301339), (301327, 301327, 300, 300, 'Overheated Shoulderpad', 301328), (251789, 251789, 1, 1, 'Overrule', 255622), (293324, 293324, 1, 1, 'Oversized Pirate Cutlass - Left', 293163), (293325, 293325, 1, 1, 'Oversized Pirate Cutlass - Right', 293163), (305037, 305037, 1, 1, 'Overstuffed Overcoat', 18849), (306175, 306175, 150, 150, 'Overtuned Freedom Arms 3927 Chapman', 113997), (161847, 161847, 200, 200, 'Overtuned High-Quality Heavy Omni-Tek Tank Armor', 41168), (161845, 161845, 200, 200, 'Overtuned High-Quality Heavy Tank Armor', 22392), (161851, 161851, 200, 200, 'Overtuned High-Quality Light Omni-Tek Tank Armor', 41170), (161849, 161849, 200, 200, 'Overtuned High-Quality Light Tank Armor', 22396), (161855, 161855, 200, 200, 'Overtuned High-Quality Medium Omni-Tek Tank Armor', 41167), (161853, 161853, 200, 200, 'Overtuned High-Quality Medium Tank Armor', 22400), (161859, 161859, 200, 200, 'Overtuned High-Quality Very Light Omni-Tek Tank Armor', 41169), (161857, 161857, 200, 200, 'Overtuned High-Quality Very Light Tank Armor', 22404), (303097, 303097, 250, 250, 'Overtuned Mother Nitrogena', 156716), (304615, 304615, 200, 200, 'Overtuned Very Light Notum Tank Armor', 22402), (161846, 161847, 1, 199, 'Overtuned Worn Heavy Omni-Tek Tank Armor', 41168), (161844, 161845, 1, 199, 'Overtuned Worn Heavy Tank Armor', 22395), (161850, 161851, 1, 199, 'Overtuned Worn Light Omni-Tek Tank Armor', 41170), (161848, 161849, 1, 199, 'Overtuned Worn Light Tank Armor', 22393), (161854, 161855, 1, 199, 'Overtuned Worn Medium Omni-Tek Tank Armor', 41167), (161852, 161853, 1, 199, 'Overtuned Worn Medium Tank Armor', 22397), (161858, 161859, 1, 199, 'Overtuned Worn Very Light Omni-Tek Tank Armor', 41169), (161856, 161857, 1, 199, 'Overtuned Worn Very Light Tank Armor', 22401), (226110, 226111, 1, 500, 'Overwhelming Might', 239071), (226112, 226113, 1, 500, 'Overwhelming Might', 239071), (226114, 226115, 1, 500, 'Overwhelming Might', 239071), (32535, 32535, 1, 1, 'Ownership Access Card', 99180), (157416, 157416, 1, 1, 'Oxygen Fourtythree Horse Advantage', 81777), (239827, 239827, 1, 1, 'PDA from the Auxiliary One Third', 99281), (271601, 271602, 1, 300, 'PNG M1007A1 Tactical Revolver - 000', 113997), (271605, 271606, 1, 300, 'PNG M1007A1 Tactical Revolver - 401', 113997), (271607, 271608, 1, 300, 'PNG M1007A1 Tactical Revolver - C01', 113997), (275507, 275507, 1, 1, 'PSI-Gamma Converter', 218774), (275508, 275508, 1, 1, 'PSI-Gamma Receiver', 218769), (275506, 275506, 1, 1, 'PSI-Gamma Transmitter', 218777), (303444, 303444, 1, 1, 'Pack of Beacons', 99662), (301770, 301770, 1, 1, 'Pack-a-way Christmas Tree', 245610), (158267, 158267, 1, 1, 'Package to Fizzban', 154192), (158268, 158268, 1, 1, 'Package to Lindalu', 154193), (158266, 158266, 1, 1, 'Package to Ofoz', 154191), (160880, 160881, 1, 200, 'Padded Love Arms', 13221), (160884, 160885, 1, 200, 'Padded Love Boots', 13260), (160882, 160883, 1, 200, 'Padded Love Pants', 13288), (160831, 160832, 1, 200, 'Padded Love Shirt', 13239), (157998, 157998, 1, 1, 'Pads of Dedication', 31537), (158000, 158000, 1, 1, 'Pads of Interest', 31537), (157999, 157999, 1, 1, 'Pads of Will', 31537), (226053, 226054, 1, 500, 'Pain Lance', 239101), (226055, 226056, 1, 500, 'Pain Lance', 239101), (226057, 226058, 1, 500, 'Pain Lance', 239101), (168675, 168675, 200, 200, 'Pain of Patricia', 13311), (246719, 246719, 105, 105, 'Pained Panther', 21141), (243777, 243778, 250, 259, 'Painkiller', 233354), (243779, 243780, 260, 269, 'Painkiller', 233354), (243781, 243782, 270, 279, 'Painkiller', 233354), (243783, 243784, 280, 289, 'Painkiller', 233354), (243785, 243786, 290, 299, 'Painkiller', 233354), (150186, 150187, 121, 150, 'Painted Bodum-Larga Club', 85172), (295352, 295352, 1, 1, 'Painting of Andromeda', 295380), (234891, 234891, 1, 1, 'Palladium Alloy Calibration Device', 205506), (234889, 234889, 1, 1, 'Palladium Filament', 205516), (200215, 200215, 285, 285, 'Pan ICC Armor Boots', 22884), (200236, 200236, 285, 285, 'Pan ICC Armor Gloves', 31656), (200257, 200257, 285, 285, 'Pan ICC Armor Helmet', 31734), (200278, 200278, 285, 285, 'Pan ICC Armor Pants', 22919), (200299, 200299, 285, 285, 'Pan ICC Armor Sleeves', 31644), (200320, 200320, 285, 285, 'Pan ICC Body Armor', 31648), (303438, 303438, 1, 1, 'Pandemonium Explorer Pack', 99664), (304571, 304571, 1, 1, 'Pandemonium Explorer Pack', 304439), (245414, 245414, 1, 1, 'Pandemonium portal 1 Wearable', 84059), (245415, 245415, 1, 1, 'Pandemonium portal 2 Wearable', 84059), (245416, 245416, 1, 1, 'Pandemonium portal 3 Wearable', 84059), (245413, 245413, 1, 1, 'Pandemonium portal 4 Wearable', 84059), (253389, 253389, 1, 1, 'Pandemonium portal 5 Wearable', 84059), (246715, 246716, 100, 102, 'Panther', 21141), (246717, 246717, 103, 103, 'Panther', 21141), (246718, 246718, 104, 104, 'Panther', 21141), (165308, 165308, 200, 200, 'Pants of Azure Reveries', 22919), (200463, 200463, 200, 200, 'Pants of Participation', 30939), (208207, 208208, 100, 200, 'Pants of Yearning', 118185), (282116, 282116, 150, 150, 'Pants of the Goddess', 281511), (248990, 248990, 1, 1, 'Pants of the King', 254854), (41012, 41012, 1, 1, 'Pants with Buttons and a Zebra Print', 37099), (41018, 41018, 1, 1, 'Pants with Holes and a Stars Print', 41201), (41024, 41024, 1, 1, 'Pants with a Blue Leopard Print', 37093), (41013, 41013, 1, 1, 'Pants with a Blue Zebra Print', 37098), (41016, 41016, 1, 1, 'Pants with a Grey Waterlily Print', 37101), (41023, 41023, 1, 1, 'Pants with a Leopard Print', 37094), (40994, 40994, 1, 1, 'Pants with a Rainbow Leopard Print', 37092), (41019, 41019, 1, 1, 'Pants with a Stars Print', 41200), (41017, 41017, 1, 1, 'Pants with a Waterlily Print', 37102), (41021, 41021, 1, 1, 'Pants with a White Leopard Print', 37095), (41011, 41011, 1, 1, 'Pants with a Zebra Print', 37097), (119219, 119219, 1, 1, 'Paper Bin', 119208), (289907, 289907, 1, 1, 'Paper Clip', 289898), (125440, 125441, 21, 90, 'Paper Hammer', 33167), (125444, 125444, 190, 190, 'Paper Hammer of the Queen', 33167), (233106, 233106, 200, 200, 'Paper Mushroom', 156556), (249064, 249064, 1, 1, 'Parade Uniform Boots', 255356), (249059, 249059, 1, 1, 'Parade Uniform General Sleeves', 255271), (249081, 249081, 1, 1, 'Parade Uniform Gloves', 255168), (249056, 249056, 1, 1, 'Parade Uniform Jacket', 255312), (249058, 249058, 1, 1, 'Parade Uniform Major Sleeves', 255273), (249080, 249080, 1, 1, 'Parade Uniform Pants', 255193), (249045, 249045, 1, 1, 'Parade Uniform Private Sleeves', 255256), (249057, 249057, 1, 1, 'Parade Uniform Sergeant Sleeves', 255272), (250385, 250385, 1, 1, 'Parasitic Brain Implant', 250382), (206047, 206047, 1, 1, 'Parasitic Hecataleech', 38056), (250386, 250386, 200, 200, 'Parasitic Viral-Bot Cluster', 250383), (254887, 254887, 1, 1, 'Park Bench', 255946), (254888, 254888, 1, 1, 'Park Lamp Post', 256382), (254886, 254886, 1, 1, 'Park Tree', 256383), (101629, 101630, 1, 200, 'Parry Cluster - Bright (Left-Wrist)', 35981), (101627, 101628, 1, 200, 'Parry Cluster - Faded (Right-Arm)', 35980), (101631, 101632, 1, 200, 'Parry Cluster - Shiny (Right-Wrist)', 35982), (165807, 165808, 201, 300, 'Parry Refined Cluster - Bright (Left-Wrist)', 35981), (165805, 165806, 201, 300, 'Parry Refined Cluster - Faded (Right-Arm)', 35980), (165809, 165810, 201, 300, 'Parry Refined Cluster - Shiny (Right-Wrist)', 35982), (288207, 288207, 1, 1, 'Parsed''s Cursed Pool Cue', 288466), (287349, 287349, 1, 1, 'Parsed''s T-shirt', 287357), (290066, 290066, 1, 1, 'Parsed''s T-shirt Spawner', 287354), (275623, 275623, 1, 1, 'Parser''s Incomplete Formula', 154677), (163567, 163567, 1, 1, 'Part of an old diary', 136332), (153958, 153958, 1, 1, 'Partial Invisibility', 84060), (251953, 251953, 1, 1, 'Partial Keycard', 154680), (251980, 251980, 1, 1, 'Partial Keycard', 154677), (263263, 263263, 1, 1, 'Partially Filled Reposeful Visions Container', 154194), (263270, 263270, 1, 1, 'Partially Filled Tempestuous Visions Container', 154194), (263273, 263273, 1, 1, 'Partially Filled Unshakable Visions Container', 154194), (157948, 157948, 190, 190, 'Partially Wired Mantis Egg', 158273), (157949, 157949, 190, 190, 'Partially Wired Mantis Egg', 158273), (297192, 297192, 1, 1, 'Party Tent', 291287), (130592, 130592, 1, 1, 'Party-Mix', 37940), (288107, 288107, 200, 200, 'Passive Viral CPU Upgrade', 288100), (288126, 288126, 200, 200, 'Passive Viral Computer Deck Range Increaser', 288103), (288128, 288128, 200, 200, 'Passive Viral NCU Coolant Sink', 288097), (87488, 87488, 1, 1, 'Pastel Swimsuit', 96128), (162227, 162228, 1, 200, 'Patch of Hard Bronto Hide', 161084), (162239, 162240, 1, 200, 'Patch of Hard Bronto Hide - Tanned', 161081), (223453, 223454, 1, 300, 'Patch of Hard Living Hide', 161074), (223425, 223426, 1, 300, 'Patch of Hard Novictum Spangled Hide', 161077), (245211, 245211, 75, 75, 'Patch of Hard Skincrawler Hide', 161077), (245116, 245116, 75, 75, 'Patch of Inflexible Skincrawler Hide', 161076), (259787, 259787, 1, 1, 'Patch of Kolaana-Behn Fur', 161079), (158893, 158893, 100, 100, 'Patch of Living Dragon Skin', 156555), (165292, 165292, 200, 200, 'Patch of Pest', 161083), (162229, 162230, 1, 200, 'Patch of Soft Bronto Hide', 161084), (162241, 162242, 1, 200, 'Patch of Soft Bronto Hide - Tanned', 161081), (223455, 223456, 1, 300, 'Patch of Soft Living Hide', 161074), (223427, 223428, 1, 300, 'Patch of Soft Novictum Spangled Hide', 161077), (245212, 245212, 75, 75, 'Patch of Soft Skincrawler Hide', 161077), (306002, 306002, 100, 100, 'Patchwork Defensive Drone', 159123), (215362, 215362, 1, 1, 'Path of Darkness', 239341), (215481, 215481, 1, 1, 'Path of Darkness', 82197), (239352, 239352, 1, 1, 'Path of Darkness', 239341), (215365, 215365, 1, 1, 'Path of Light', 239340), (215482, 215482, 1, 1, 'Path of Light', 82197), (239353, 239353, 1, 1, 'Path of Light', 239340), (224736, 224736, 160, 160, 'Pathetic Essence Brain Spirit', 230992), (224924, 224924, 160, 160, 'Pathetic Heart Spirit of Knowledge', 230984), (224972, 224972, 160, 160, 'Pathetic Heart Spirit of Weakness', 230984), (225025, 225025, 160, 160, 'Pathetic Left Limb Spirit of Strength', 230995), (225007, 225007, 160, 160, 'Pathetic Left Limb Spirit of Weakness', 230995), (224872, 224872, 160, 160, 'Pathetic Midriff Spirit of Knowledge', 230976), (224890, 224890, 160, 160, 'Pathetic Midriff Spirit of Weakness', 230976), (224836, 224836, 160, 160, 'Pathetic Right Limb Spirit of Essence', 231004), (225183, 225183, 160, 160, 'Pathetic Spirit of Defense', 230998), (224686, 224686, 160, 160, 'Pathetic Spirit of Essence', 230998), (224785, 224785, 160, 160, 'Pathetic Spirit of Essence Whispered', 230986), (225255, 225255, 160, 160, 'Pathetic Spirit of Feet Defense', 230990), (225238, 225238, 160, 160, 'Pathetic Spirit of Feet Strength', 230990), (225163, 225163, 160, 160, 'Pathetic Spirit of Insight - Right Hand', 231002), (225093, 225093, 160, 160, 'Pathetic Spirit of Left Wrist Defense', 231000), (225112, 225112, 160, 160, 'Pathetic Spirit of Left Wrist Strength', 231000), (224769, 224769, 160, 160, 'Pathetic Spirit of Strength Whispered', 230986), (224653, 224653, 160, 160, 'Pathetic Spirit of True Seeing', 230988), (273397, 273397, 1, 1, 'Patrik''s Test Shirt', 273179), (231142, 231142, 1, 1, 'Pattern Inscribed with Ancient Unredeemed Symbols', 227529), (292517, 292517, 1, 1, 'Pattern Conversion Device', 292762), (263308, 263308, 1, 1, 'Pattern Essence', 261616), (231143, 231143, 1, 1, 'Pattern Inscribed with Ancient Redeemed Symbols', 227527), (255550, 255550, 200, 200, 'Pattern of Approaching Death', 231182), (255553, 255553, 200, 200, 'Pattern of Imminent Death', 231182), (255551, 255551, 200, 200, 'Pattern of Impending Death', 231182), (255549, 255549, 200, 200, 'Pattern of Indomitable Life', 231182), (255552, 255552, 200, 200, 'Pattern of Inevitable Death', 231182), (255554, 255554, 200, 200, 'Pattern of the Occurence of Death', 231182), (268386, 268386, 1, 1, 'Peach Adonis Recollection Shard', 292742), (100297, 100297, 154, 154, 'Pear Computer 7^49^2 Ghz', 100308), (232822, 232823, 1, 149, 'Pearl', 286935), (232823, 232825, 150, 199, 'Pearl', 286935), (232825, 232826, 200, 249, 'Pearl', 286935), (232826, 232827, 250, 400, 'Pearl', 286935), (136646, 136647, 1, 200, 'Pearl of Rubi-Ka', 286937), (259807, 259807, 1, 1, 'Pearl of the Endless Sea', 259874), (296607, 296607, 1, 1, 'Pebbles', 296618), (252386, 252386, 1, 1, 'Peel Layers', 255655), (281505, 281505, 300, 300, 'Peh''Wer Pistol', 281582), (246287, 246288, 100, 150, 'Pelisse of the Elysian Nymph', 218533), (234600, 234600, 1, 1, 'Pellucid Crystal', 136595), (42639, 42642, 1, 400, 'Pelted Monster Parts', 144707), (42645, 42646, 1, 400, 'Pelted Monster Parts with Ivory', 144711), (253014, 253014, 1, 1, 'Pen', 239237), (238922, 238923, 150, 179, 'Pensive Spirit Phulakterion', 161144), (238924, 238925, 180, 209, 'Pensive Spirit Phulakterion', 161144), (238926, 238927, 210, 239, 'Pensive Spirit Phulakterion', 161144), (238928, 238929, 240, 269, 'Pensive Spirit Phulakterion', 161144), (238930, 238931, 270, 299, 'Pensive Spirit Phulakterion', 161144), (238932, 238932, 300, 300, 'Pensive Spirit Phulakterion', 161144), (295345, 295345, 1, 1, 'Pentaflake''s Phosphorescent Pillars', 12253), (264178, 264179, 1, 300, 'Penultimate Ofab Adventurer Body Armor', 266411), (264176, 264177, 1, 300, 'Penultimate Ofab Adventurer Boots', 266412), (264182, 264183, 1, 300, 'Penultimate Ofab Adventurer Gloves', 266413), (264184, 264185, 1, 300, 'Penultimate Ofab Adventurer Helmet', 266370), (264174, 264175, 1, 300, 'Penultimate Ofab Adventurer Pants', 266414), (264180, 264181, 1, 300, 'Penultimate Ofab Adventurer Sleeves', 266410), (264301, 264302, 1, 300, 'Penultimate Ofab Agent Body Armor', 266421), (264307, 264308, 1, 300, 'Penultimate Ofab Agent Boots', 266422), (264289, 264290, 1, 300, 'Penultimate Ofab Agent Gloves', 266423), (264283, 264284, 1, 300, 'Penultimate Ofab Agent Helmet', 266372), (264313, 264314, 1, 300, 'Penultimate Ofab Agent Pants', 266424), (264295, 264296, 1, 300, 'Penultimate Ofab Agent Sleeves', 266420), (264523, 264524, 1, 300, 'Penultimate Ofab Bureaucrat Boots', 266432), (264505, 264506, 1, 300, 'Penultimate Ofab Bureaucrat Gloves', 266433), (264499, 264500, 1, 300, 'Penultimate Ofab Bureaucrat Headgear', 266374), (264529, 264530, 1, 300, 'Penultimate Ofab Bureaucrat Pants', 266434), (264511, 264512, 1, 300, 'Penultimate Ofab Bureaucrat Sleeves', 266430), (264517, 264518, 1, 300, 'Penultimate Ofab Bureaucrat Vest', 266431), (264664, 264665, 1, 300, 'Penultimate Ofab Doctor Body', 266441), (264670, 264671, 1, 300, 'Penultimate Ofab Doctor Boots', 266442), (264652, 264653, 1, 300, 'Penultimate Ofab Doctor Gloves', 266443), (264646, 264647, 1, 300, 'Penultimate Ofab Doctor Helmet', 266376), (264676, 264677, 1, 300, 'Penultimate Ofab Doctor Pants', 266444), (264658, 264659, 1, 300, 'Penultimate Ofab Doctor Sleeves', 266440), (264221, 264222, 1, 300, 'Penultimate Ofab Enforcer Boots', 266452), (264227, 264228, 1, 300, 'Penultimate Ofab Enforcer Breastplate', 266451), (264239, 264240, 1, 300, 'Penultimate Ofab Enforcer Gauntlets', 266453), (264245, 264246, 1, 300, 'Penultimate Ofab Enforcer Helmet', 266378), (264215, 264216, 1, 300, 'Penultimate Ofab Enforcer Pants', 266454), (264233, 264234, 1, 300, 'Penultimate Ofab Enforcer Sleeves', 266450), (264592, 264593, 1, 300, 'Penultimate Ofab Engineer Body', 266461), (264598, 264599, 1, 300, 'Penultimate Ofab Engineer Boots', 266462), (264577, 264578, 1, 300, 'Penultimate Ofab Engineer Gloves', 266463), (264571, 264572, 1, 300, 'Penultimate Ofab Engineer Helmet', 266380), (264604, 264605, 1, 300, 'Penultimate Ofab Engineer Pants', 266464), (264583, 264584, 1, 300, 'Penultimate Ofab Engineer Sleeves', 266460), (264481, 264482, 1, 300, 'Penultimate Ofab Fixer Body Armor', 266471), (264487, 264488, 1, 300, 'Penultimate Ofab Fixer Boots', 266472), (264469, 264470, 1, 300, 'Penultimate Ofab Fixer Gloves', 266473), (264463, 264464, 1, 300, 'Penultimate Ofab Fixer Helmet', 266382), (264493, 264494, 1, 300, 'Penultimate Ofab Fixer Pants', 266474), (264475, 264476, 1, 300, 'Penultimate Ofab Fixer Sleeves', 266470), (264628, 264629, 1, 300, 'Penultimate Ofab Keeper Body Armor', 266481), (264634, 264635, 1, 300, 'Penultimate Ofab Keeper Boots', 266482), (264616, 264617, 1, 300, 'Penultimate Ofab Keeper Gloves', 266483), (264610, 264611, 1, 300, 'Penultimate Ofab Keeper Helmet', 266384), (264640, 264641, 1, 300, 'Penultimate Ofab Keeper Pants', 266484), (264622, 264623, 1, 300, 'Penultimate Ofab Keeper Sleeves', 266480), (264337, 264338, 1, 300, 'Penultimate Ofab Martial Artist Body Armor', 266491), (264343, 264344, 1, 300, 'Penultimate Ofab Martial Artist Boots', 266492), (264325, 264326, 1, 300, 'Penultimate Ofab Martial Artist Gloves', 266493), (264319, 264320, 1, 300, 'Penultimate Ofab Martial Artist Helmet', 266386), (264349, 264350, 1, 300, 'Penultimate Ofab Martial Artist Pants', 266494), (264331, 264332, 1, 300, 'Penultimate Ofab Martial Artist Sleeves', 266490), (264373, 264374, 1, 300, 'Penultimate Ofab Metaphysicist Body Armor', 266501), (264379, 264380, 1, 300, 'Penultimate Ofab Metaphysicist Boots', 266502), (264361, 264362, 1, 300, 'Penultimate Ofab Metaphysicist Gloves', 266503), (264355, 264356, 1, 300, 'Penultimate Ofab Metaphysicist Headgear', 266388), (264385, 264386, 1, 300, 'Penultimate Ofab Metaphysicist Pants', 266504), (264367, 264368, 1, 300, 'Penultimate Ofab Metaphysicist Sleeves', 266500), (264409, 264410, 1, 300, 'Penultimate Ofab Nano Technician Body Armor', 266511), (264415, 264416, 1, 300, 'Penultimate Ofab Nano Technician Boots', 266512), (264397, 264398, 1, 300, 'Penultimate Ofab Nano Technician Gloves', 266513), (264391, 264392, 1, 300, 'Penultimate Ofab Nano Technician Helmet', 266390), (264421, 264422, 1, 300, 'Penultimate Ofab Nano Technician Pants', 266514), (264403, 264404, 1, 300, 'Penultimate Ofab Nano Technician Sleeves', 266510), (264553, 264554, 1, 300, 'Penultimate Ofab Shade Body Armor', 266521), (264559, 264560, 1, 300, 'Penultimate Ofab Shade Boots', 266522), (264541, 264542, 1, 300, 'Penultimate Ofab Shade Gloves', 266523), (264535, 264536, 1, 300, 'Penultimate Ofab Shade Headgear', 266392), (264565, 264566, 1, 300, 'Penultimate Ofab Shade Pants', 266524), (264547, 264548, 1, 300, 'Penultimate Ofab Shade Sleeves', 266520), (264445, 264446, 1, 300, 'Penultimate Ofab Soldier Body Armor', 266531), (264451, 264452, 1, 300, 'Penultimate Ofab Soldier Boots', 266532), (264433, 264434, 1, 300, 'Penultimate Ofab Soldier Gloves', 266533), (264427, 264428, 1, 300, 'Penultimate Ofab Soldier Helmet', 266394), (264457, 264458, 1, 300, 'Penultimate Ofab Soldier Pants', 266534), (264439, 264440, 1, 300, 'Penultimate Ofab Soldier Sleeves', 266530), (264265, 264266, 1, 300, 'Penultimate Ofab Trader Body Armor', 266541), (264277, 264278, 1, 300, 'Penultimate Ofab Trader Boots', 266542), (264253, 264254, 1, 300, 'Penultimate Ofab Trader Gloves', 266543), (264247, 264248, 1, 300, 'Penultimate Ofab Trader Helmet', 266368), (264271, 264272, 1, 300, 'Penultimate Ofab Trader Pants', 266544), (264259, 264260, 1, 300, 'Penultimate Ofab Trader Sleeves', 266540), (295083, 295083, 1, 1, 'Penumbra Garden Access', 295102), (295122, 295122, 1, 1, 'Penumbra Mission Reward', 281837), (295109, 295109, 1, 1, 'Penumbra Sanctuary Access', 295101), (245783, 245783, 250, 250, 'Penumbra Tuaq', 156567), (301749, 301749, 1, 1, 'Penumbra White Quabbit', 301818), (294452, 294452, 1, 1, 'Penumbric Painting', 294451), (101575, 101576, 1, 200, 'Perception Cluster - Bright (Eye)', 35987), (101573, 101574, 1, 200, 'Perception Cluster - Faded (Head)', 35986), (101577, 101578, 1, 200, 'Perception Cluster - Shiny (Ear)', 35988), (165753, 165754, 201, 300, 'Perception Refined Cluster - Bright (Eye)', 35987), (165751, 165752, 201, 300, 'Perception Refined Cluster - Faded (Head)', 35986), (165755, 165756, 201, 300, 'Perception Refined Cluster - Shiny (Ear)', 35988), (246415, 246416, 50, 99, 'Perennium Beamer', 45783), (246417, 246418, 100, 149, 'Perennium Beamer', 45783), (246419, 246420, 150, 199, 'Perennium Beamer', 45783), (260725, 260725, 300, 300, 'Perennium Beamer Rebuild Kit', 205502), (260728, 260728, 300, 300, 'Perennium Beamer Rebuild Kit', 205501), (246422, 246423, 50, 99, 'Perennium Blaster', 45783), (246424, 246425, 100, 149, 'Perennium Blaster', 45783), (246426, 246427, 150, 199, 'Perennium Blaster', 45783), (260724, 260724, 300, 300, 'Perennium Blaster Rebuild Kit', 205502), (260729, 260729, 300, 300, 'Perennium Blaster Rebuild Kit', 205501), (226020, 226021, 1, 300, 'Perennium Bolts', 205538), (260525, 260525, 1, 1, 'Perennium Casing', 218753), (246408, 246409, 50, 99, 'Perennium Sniper', 45782), (246410, 246411, 100, 149, 'Perennium Sniper', 45782), (246412, 246413, 150, 199, 'Perennium Sniper', 45782), (260726, 260726, 300, 300, 'Perennium Sniper Rebuild Kit', 205502), (260727, 260727, 300, 300, 'Perennium Sniper Rebuild Kit', 205501), (301935, 301935, 300, 300, 'Perfect Replica of Excalibur', 246020), (157286, 157286, 200, 200, 'Perfect Summer Burst SMP', 33156), (157292, 157292, 200, 200, 'Perfect Summer FA SMP', 33156), (157289, 157289, 200, 200, 'Perfect Summer Fling SMP', 33156), (157295, 157295, 200, 200, 'Perfect Summer Shells SMP', 33156), (268505, 268505, 150, 150, 'Perfected Alien Tank Armor', 22395), (301901, 301901, 300, 300, 'Perfected Diamondine Kick Pistol', 113990), (274551, 274551, 250, 250, 'Perfected Infused Dust Brigade Bracer', 290470), (244470, 244471, 1, 400, 'Perfectly Cut Almandine', 286891), (244455, 244456, 1, 400, 'Perfectly Cut Amber', 286893), (244247, 244248, 1, 400, 'Perfectly Cut Aquamarine', 286895), (244391, 244392, 1, 400, 'Perfectly Cut Balas ruby', 286897), (244331, 244332, 1, 400, 'Perfectly Cut Black opal', 286899), (151525, 151525, 1, 1, 'Perfectly Cut Blue Pearl by Conner', 301029), (244303, 244304, 1, 400, 'Perfectly Cut Chrysoberyl', 286903), (151595, 151596, 1, 200, 'Perfectly Cut Cold Stone', 286905), (244526, 244527, 1, 400, 'Perfectly Cut Coral', 286907), (151581, 151582, 1, 200, 'Perfectly Cut Crystal Sphere', 286909), (244377, 244378, 1, 400, 'Perfectly Cut Demantoid', 286911), (244289, 244290, 1, 400, 'Perfectly Cut Diamond', 286913), (151513, 151510, 1, 200, 'Perfectly Cut Ember', 286916), (151568, 151566, 1, 200, 'Perfectly Cut Ember Sphere', 286918), (244406, 244407, 1, 400, 'Perfectly Cut Emerald', 286920), (244233, 244234, 1, 400, 'Perfectly Cut Fire opal', 286922), (151470, 151470, 300, 300, 'Perfectly Cut Flawless Spring Crystal', 286924), (151554, 151552, 1, 200, 'Perfectly Cut Gem', 286926), (154808, 154808, 250, 250, 'Perfectly Cut High Quality Silver Onyx', 286932), (151539, 151540, 1, 200, 'Perfectly Cut Hot Stone', 286930), (244441, 244442, 1, 400, 'Perfectly Cut Jet', 286934), (282140, 282140, 150, 150, 'Perfectly Cut Notum Filled Gem Stone', 282139), (244512, 244513, 1, 400, 'Perfectly Cut Pearl', 286936), (151423, 151424, 1, 200, 'Perfectly Cut Pearl of Rubi-Ka', 286938), (244484, 244485, 1, 400, 'Perfectly Cut Red beryl', 286940), (151409, 151410, 1, 150, 'Perfectly Cut Rubi-Ka Ruby', 286946), (151499, 151496, 1, 200, 'Perfectly Cut Ruby', 286944), (244498, 244499, 1, 400, 'Perfectly Cut Ruby Pearl', 286946), (244261, 244262, 1, 400, 'Perfectly Cut Sapphire', 286948), (154809, 154809, 1, 1, 'Perfectly Cut Silver Onyx', 286952), (151457, 151455, 1, 200, 'Perfectly Cut Silver Perl', 286954), (151483, 151484, 1, 200, 'Perfectly Cut Soul Fragment', 286956), (151526, 151526, 400, 400, 'Perfectly Cut Soul Sphere by Divaad', 301031), (151469, 151469, 1, 1, 'Perfectly Cut Spring Crystal', 286959), (244275, 244276, 1, 400, 'Perfectly Cut Star Ruby', 286961), (244427, 244428, 1, 400, 'Perfectly Cut Topaz', 286963), (244317, 244318, 1, 400, 'Perfectly Cut Water opal', 286965), (244362, 244363, 1, 400, 'Perfectly Cut White opal', 286967), (259990, 259990, 1, 1, 'Perfectly Formed Seashell', 289780), (225589, 225590, 1, 500, 'Perforate', 239079), (225593, 225594, 1, 500, 'Perforate', 239079), (225597, 225598, 1, 500, 'Perforate', 239079), (161645, 161646, 1, 20, 'Perforated MTI Defender', 161057), (160112, 160113, 1, 50, 'Perforated OT Riot-Police Shield', 160124), (130193, 130193, 196, 196, 'Perfumed Hot Air Stick', 13349), (156763, 156763, 1, 1, 'Perfumed Morning Robe', 156748), (125451, 125452, 151, 193, 'Perfumed Pillow with Important Stripes', 85163), (287131, 287131, 200, 200, 'Peridotite', 287207), (281017, 281017, 1, 1, 'Perk Reset Item', 227904), (206062, 206062, 1, 1, 'Permafrost', 296405), (269937, 269937, 250, 250, 'Permafrost Armor Component', 269936), (269809, 269809, 250, 250, 'Permafrost Battery', 119141), (269805, 269805, 250, 250, 'Permafrost Melting Tool', 269844), (269810, 269810, 250, 250, 'Permafrost Powered Tubes', 20402), (269872, 269872, 200, 200, 'Permafrost Residue', 72768), (226457, 226458, 1, 300, 'Pernicious Body Armor', 213516), (226455, 226456, 1, 300, 'Pernicious Boots', 213561), (226463, 226464, 1, 300, 'Pernicious Energy Shield', 33152), (226461, 226462, 1, 300, 'Pernicious Gauntlets', 214752), (226453, 226454, 1, 300, 'Pernicious Pants', 213603), (226459, 226460, 1, 300, 'Pernicious Sleeves', 213478), (200216, 200216, 290, 290, 'Persephone ICC Armor Boots', 22884), (200237, 200237, 290, 290, 'Persephone ICC Armor Gloves', 31656), (200258, 200258, 290, 290, 'Persephone ICC Armor Helmet', 31734), (200279, 200279, 290, 290, 'Persephone ICC Armor Pants', 22919), (200300, 200300, 290, 290, 'Persephone ICC Armor Sleeves', 31644), (200321, 200321, 290, 290, 'Persephone ICC Body Armor', 31648), (235418, 235418, 220, 220, 'Persisting Brain Symbiant, Artillery Unit Aban', 215189), (235862, 235862, 220, 220, 'Persisting Brain Symbiant, Extermination Unit Aban', 215189), (236086, 236086, 220, 220, 'Persisting Brain Symbiant, Support Unit Aban', 215188), (235914, 235914, 220, 220, 'Persisting Chest Symbiant, Extermination Unit Aban', 215181), (235693, 235693, 220, 220, 'Persisting Chest Symbiant, Infantry Unit Aban', 215181), (236328, 236328, 220, 220, 'Persisting Ear Symbiant, Control Unit Aban', 230977), (236106, 236106, 220, 220, 'Persisting Ear Symbiant, Support Unit Aban', 230977), (236502, 236502, 220, 220, 'Persisting Feet Symbiant, Control Unit Aban', 215185), (236052, 236052, 220, 220, 'Persisting Feet Symbiant, Extermination Unit Aban', 215186), (235488, 235488, 220, 220, 'Persisting Left Arm Symbiant, Artillery Unit Aban', 215179), (236378, 236378, 220, 220, 'Persisting Left Arm Symbiant, Control Unit Aban', 215177), (235710, 235710, 220, 220, 'Persisting Left Arm Symbiant, Infantry Unit Aban', 215179), (235591, 235591, 220, 220, 'Persisting Left Hand Symbiant, Artillery Unit Aban', 215171), (236036, 236036, 220, 220, 'Persisting Left Hand Symbiant, Extermination Unit Aban', 215172), (236267, 236267, 220, 220, 'Persisting Left Hand Symbiant, Support Unit Aban', 215171), (236431, 236431, 220, 220, 'Persisting Left Wrist Symbiant, Control Unit Aban', 215196), (235983, 235983, 220, 220, 'Persisting Left Wrist Symbiant, Extermination Unit Aban', 215198), (236216, 236216, 220, 220, 'Persisting Left Wrist Symbiant, Support Unit Aban', 215198), (219140, 219140, 220, 220, 'Persisting Ocular Symbiant, Artillery Unit Aban', 230979), (236295, 236295, 220, 220, 'Persisting Ocular Symbiant, Control Unit Aban', 230979), (235626, 235626, 220, 220, 'Persisting Ocular Symbiant, Infantry Unit Aban', 230980), (235456, 235456, 220, 220, 'Persisting Right Arm Symbiant, Artillery Unit Aban', 215176), (236344, 236344, 220, 220, 'Persisting Right Arm Symbiant, Control Unit Aban', 215180), (235676, 235676, 220, 220, 'Persisting Right Arm Symbiant, Infantry Unit Aban', 215180), (235558, 235558, 220, 220, 'Persisting Right Hand Symbiant, Artillery Unit Aban', 215173), (236453, 236453, 220, 220, 'Persisting Right Hand Symbiant, Control Unit Aban', 215173), (236002, 236002, 220, 220, 'Persisting Right Hand Symbiant, Extermination Unit Aban', 215173), (235777, 235777, 220, 220, 'Persisting Right Hand Symbiant, Infantry Unit Aban', 215174), (236397, 236397, 220, 220, 'Persisting Right Wrist Symbiant, Control Unit Aban', 215170), (236180, 236180, 220, 220, 'Persisting Right Wrist Symbiant, Support Unit Aban', 215197), (236470, 236470, 220, 220, 'Persisting Thigh Symbiant, Control Unit Aban', 215191), (235794, 235794, 220, 220, 'Persisting Thigh Symbiant, Infantry Unit Aban', 215191), (236417, 236417, 220, 220, 'Persisting Waist Symbiant, Control Unit Aban', 215193), (235742, 235742, 220, 220, 'Persisting Waist Symbiant, Infantry Unit Aban', 215193), (236198, 236198, 220, 220, 'Persisting Waist Symbiant, Support Unit Aban', 215193), (207254, 207254, 1, 1, 'Personal Backpack', 99659), (157274, 157274, 100, 100, 'Personal Folded Note', 156325), (274130, 274130, 1, 1, 'Personal Food Cooker', 274156), (150930, 150930, 10, 10, 'Personal Furnace', 290713), (205224, 205225, 1, 49, 'Personal Grid Converter', 205463), (205225, 205226, 50, 99, 'Personal Grid Converter', 205463), (205226, 205227, 100, 199, 'Personal Grid Converter', 205463), (205227, 205228, 200, 300, 'Personal Grid Converter', 205463), (156639, 156639, 1, 1, 'Personal Lock Pick', 12709), (260686, 260687, 220, 259, 'Personal Massive Bolt Charger', 233213), (260688, 260688, 260, 260, 'Personal Massive Bolt Charger', 233213), (156351, 156352, 20, 80, 'Personal Order BLCG-7791', 156325), (156353, 156354, 20, 80, 'Personal Order FPGA-202', 156325), (206399, 206399, 100, 100, 'Personal Order OTSC-490 Group A', 156325), (156347, 156350, 20, 80, 'Personal Order XITL-0127', 156325), (156696, 156695, 40, 100, 'Personal Safe', 99285), (296335, 296335, 1, 1, 'Personal Surveillance Drone', 296336), (156026, 156027, 1, 200, 'Personalized Basic Robot Brain', 156087), (100359, 100359, 1, 1, 'Personalized Encrypted Information', 83316), (296576, 296576, 1, 1, 'Personalized ICC ID Chip', 297391), (304586, 304586, 1, 1, 'Personalized Pioneer Backpack', 151882), (258266, 258266, 1, 1, 'Personnel Locator', 156319), (258290, 258290, 1, 1, 'Personnel Team Protective Suit', 258287), (224737, 224737, 170, 170, 'Pessimistic Essence Brain Spirit', 230992), (224956, 224956, 170, 170, 'Pessimistic Heart Spirit of Strength', 230984), (224973, 224973, 170, 170, 'Pessimistic Heart Spirit of Weakness', 230984), (224990, 224990, 170, 170, 'Pessimistic Left Limb Spirit of Understanding', 230995), (224907, 224907, 170, 170, 'Pessimistic Midriff Spirit of Strength', 230976), (224891, 224891, 170, 170, 'Pessimistic Midriff Spirit of Weakness', 230976), (224805, 224805, 170, 170, 'Pessimistic Right Limb Spirit of Strength', 231004), (224668, 224668, 170, 170, 'Pessimistic Spirit of Discerning Weakness', 230988), (225256, 225256, 170, 170, 'Pessimistic Spirit of Feet Defense', 230990), (225239, 225239, 170, 170, 'Pessimistic Spirit of Feet Strength', 230990), (225094, 225094, 170, 170, 'Pessimistic Spirit of Left Wrist Defense', 231000), (225079, 225079, 170, 170, 'Pessimistic Spirit of Right Wrist Weakness', 231006), (224770, 224770, 170, 170, 'Pessimistic Spirit of Strength Whispered', 230986), (159064, 159064, 100, 100, 'Pestering Gadfly - Special Arrows', 131265), (297366, 297366, 1, 1, 'Pet Cage', 297363), (297367, 297367, 1, 1, 'Pet Cage With a Reet', 297364), (285899, 285899, 1, 1, 'Pet Terminate on Zone Item', 84059), (227085, 227086, 5, 14, 'Petrified Bone', 33169), (157950, 157950, 190, 190, 'Petrified Mantis Egg', 158274), (165291, 165291, 200, 200, 'Petticoat of Pest', 155108), (101701, 101702, 1, 200, 'Pharma Tech Cluster - Bright (Eye)', 36014), (101699, 101700, 1, 200, 'Pharma Tech Cluster - Faded (Right-Hand)', 36013), (101703, 101704, 1, 200, 'Pharma Tech Cluster - Shiny (Head)', 36015), (165879, 165880, 201, 300, 'Pharma Tech Refined Cluster - Bright (Eye)', 36014), (165877, 165878, 201, 300, 'Pharma Tech Refined Cluster - Faded (Right-Hand)', 36013), (165881, 165882, 201, 300, 'Pharma Tech Refined Cluster - Shiny (Head)', 36015), (55683, 55682, 1, 200, 'Pharma Tech Tutoring Device', 300885), (292219, 292220, 1, 199, 'Pharmaceutical Nanobots', 291003), (292220, 292221, 200, 400, 'Pharmaceutical Nanobots', 291003), (215249, 215249, 100, 100, 'Pharmaceuticals Logistics Assistant', 215258), (223718, 223719, 20, 80, 'Pharmacist''s Pad', 156512), (204745, 204745, 1, 1, 'Phase Blade', 204740), (270985, 270985, 1, 1, 'Phasefront Banshee - Black', 271903), (270992, 270992, 1, 1, 'Phasefront Banshee - Cream', 271905), (273469, 273469, 1, 1, 'Phasefront Banshee - Death Rider', 273470), (288796, 288796, 1, 1, 'Phasefront Banshee - Death Rider', 273470), (270994, 270994, 1, 1, 'Phasefront Banshee - Flames', 271906), (270996, 270996, 1, 1, 'Phasefront Banshee - Red', 271907), (270987, 270987, 1, 1, 'Phasefront Banshee - White', 271904), (270983, 270983, 1, 1, 'Phasefront Banshee - Yellow', 271902), (272323, 272323, 1, 1, 'Phasefront Banshee-Series Collection', 99669), (293620, 293620, 1, 1, 'Phasefront Besom - Sky Sweeper', 293588), (288810, 285055, 1, 100, 'Phasefront Chimera - Mistletoe Master', 284672), (288806, 288435, 1, 100, 'Phasefront Chimera - Skin''n Bones', 288436), (284004, 284004, 100, 100, 'Phasefront Chimera - Standard', 284055), (284006, 284006, 100, 100, 'Phasefront Chimera - Violet', 284056), (281571, 281571, 1, 1, 'Phasefront Classic -', 119081), (281570, 281570, 100, 100, 'Phasefront Classic - Charon', 281575), (294844, 294844, 100, 100, 'Phasefront Classic - Elamorado', 294925), (270635, 270635, 100, 100, 'Phasefront Ghost - Black', 271883), (270633, 270633, 100, 100, 'Phasefront Ghost - Blue', 271882), (271986, 271986, 100, 100, 'Phasefront Ghost - Camo', 271884), (272049, 272049, 100, 100, 'Phasefront Ghost - Green', 271881), (288803, 277713, 1, 100, 'Phasefront Ghost - Harvester Oni', 277887), (270644, 270644, 100, 100, 'Phasefront Ghost - White', 271886), (270642, 270642, 100, 100, 'Phasefront Ghost - Yellow', 271885), (272324, 272324, 1, 1, 'Phasefront Ghost-Series Collection', 99669), (272603, 272603, 1, 1, 'Phasefront Hoverbike Mega Collection', 99669), (272604, 272604, 1, 1, 'Phasefront Hoverboard Mega Collection', 99669), (296035, 296035, 1, 1, 'Phasefront Kananmuna', 296097), (294431, 294431, 1, 1, 'Phasefront Loungemaster - Koleda', 294400), (294432, 294432, 1, 1, 'Phasefront Loungemaster - Koleda (Unlimited)', 294400), (284069, 284069, 1, 1, 'Phasefront Loungemaster - Maximajack', 284071), (288818, 288818, 1, 1, 'Phasefront Loungemaster - Maximajack', 284071), (288819, 288819, 1, 1, 'Phasefront Loungemaster - Maximajack', 284071), (296633, 296633, 1, 1, 'Phasefront Loungemaster - Ndenjese', 296919), (289420, 289420, 1, 1, 'Phasefront Loungemaster - Orisky', 289430), (289579, 289579, 1, 1, 'Phasefront Loungemaster - Orisky (Unlimited)', 289430), (288203, 288203, 1, 1, 'Phasefront Loungemaster - The Executive', 288537), (272605, 272605, 1, 1, 'Phasefront Mega Collection', 99669), (270432, 270432, 100, 100, 'Phasefront Phantom - Beige', 272048), (270541, 270541, 100, 100, 'Phasefront Phantom - Black', 271889), (270543, 270543, 100, 100, 'Phasefront Phantom - Camo', 271890), (288809, 274273, 1, 100, 'Phasefront Phantom - Candy Cane Flyer', 274176), (288815, 288815, 1, 1, 'Phasefront Phantom - Flaming Eightball', 281750), (281685, 281685, 100, 100, 'Phasefront Phantom - Flaming Eightball', 281750), (281906, 281906, 100, 100, 'Phasefront Phantom - Flaming Eightball', 281750), (270539, 270539, 100, 100, 'Phasefront Phantom - Grey', 271888), (288813, 281669, 1, 100, 'Phasefront Phantom - The Jubilee Bunny', 281749), (270545, 270545, 100, 100, 'Phasefront Phantom - White', 271891), (270547, 270547, 100, 100, 'Phasefront Phantom - Yellow', 271892), (272325, 272325, 1, 1, 'Phasefront Phantom-Series Collection', 99669), (296670, 296670, 1, 1, 'Phasefront Sleigh', 296874), (294472, 294472, 1, 1, 'Phasefront Snow Speeder', 294459), (270885, 270885, 1, 1, 'Phasefront Spectre - Black', 271909), (270942, 270942, 1, 1, 'Phasefront Spectre - Flames', 271893), (270837, 270837, 1, 1, 'Phasefront Spectre - Green', 271908), (287286, 287286, 1, 1, 'Phasefront Spectre - Red Star', 287284), (288817, 288817, 1, 1, 'Phasefront Spectre - Red Star', 287284), (270944, 270944, 1, 1, 'Phasefront Spectre - Urban Camouflage', 271894), (270940, 270940, 1, 1, 'Phasefront Spectre - White', 271910), (270946, 270946, 1, 1, 'Phasefront Spectre - Yellow', 271895), (272322, 272322, 1, 1, 'Phasefront Spectre-Series Collection', 99669), (270712, 270712, 1, 1, 'Phasefront Wraith X2-45 - Black', 271897), (270732, 270732, 1, 1, 'Phasefront Wraith X2-45 - Camo', 271898), (270646, 270646, 1, 1, 'Phasefront Wraith X2-45 - Desert', 271896), (284062, 284062, 1, 1, 'Phasefront Wraith X2-45 - Nosferatu', 283966), (288800, 288800, 1, 1, 'Phasefront Wraith X2-45 - Nosferatu', 283966), (270765, 270765, 1, 1, 'Phasefront Wraith X2-45 - Red', 271901), (277425, 277425, 1, 1, 'Phasefront Wraith X2-45 - Skull Box', 277471), (288798, 288798, 1, 1, 'Phasefront Wraith X2-45 - Skull Box', 277471), (270739, 270739, 1, 1, 'Phasefront Wraith X2-45 - Urban Camouflage', 271899), (270780, 270780, 1, 1, 'Phasefront Wraith X2-45 - White', 271900), (272321, 272321, 1, 1, 'Phasefront Wraith-Series Collection', 99669), (280531, 280531, 100, 100, 'Phasefront: Westerlund Loungemaster', 280616), (303585, 303585, 1, 1, 'Phasetech Reaper', 303661), (248813, 248814, 1, 220, 'Phasing Nano Input Hood', 41160), (248776, 248776, 1, 1, 'Phasing Swatch of Alien Fabric', 161077), (211296, 211296, 1, 1, 'Phat Lewt - A Marius Doll', 162843), (246110, 246110, 250, 250, 'Phatmos'' Booty', 203551), (290636, 290636, 1, 1, 'Phil and the Gofles page 1174', 291106), (290942, 290942, 1, 1, 'Phil and the Gofles page 1174', 291106), (290637, 290637, 1, 1, 'Phil and the Gofles page 1209', 291106), (290943, 290943, 1, 1, 'Phil and the Gofles page 1209', 291106), (290638, 290638, 1, 1, 'Phil and the Gofles page 1321', 291106), (290944, 290944, 1, 1, 'Phil and the Gofles page 1321', 291106), (290633, 290633, 1, 1, 'Phil and the Gofles page 134', 291106), (290939, 290939, 1, 1, 'Phil and the Gofles page 134', 291106), (290639, 290639, 1, 1, 'Phil and the Gofles page 1397', 291106), (290945, 290945, 1, 1, 'Phil and the Gofles page 1397', 291106), (290640, 290640, 1, 1, 'Phil and the Gofles page 1457', 291106), (290946, 290946, 1, 1, 'Phil and the Gofles page 1457', 291106), (290634, 290634, 1, 1, 'Phil and the Gofles page 243', 291106), (290940, 290940, 1, 1, 'Phil and the Gofles page 243', 291106), (290632, 290632, 1, 1, 'Phil and the Gofles page 28', 291106), (290938, 290938, 1, 1, 'Phil and the Gofles page 28', 291106), (290635, 290635, 1, 1, 'Phil and the Gofles page 747', 291106), (290941, 290941, 1, 1, 'Phil and the Gofles page 747', 291106), (40838, 40838, 1, 1, 'Philip Ross Painting', 37712), (245324, 245324, 150, 150, 'Philosophical Slither Larvae', 37978), (225637, 225638, 1, 300, 'Phizzle''s Black Ring', 301032), (260661, 260661, 205, 205, 'Phobia Bead', 267409), (281777, 281777, 1, 1, 'Photon Embedded Cloak', 281785), (144788, 149863, 1, 24, 'Photon Particle Emitter', 297356), (149863, 149862, 25, 49, 'Photon Particle Emitter', 297356), (149862, 149861, 50, 74, 'Photon Particle Emitter', 297356), (149861, 149860, 75, 99, 'Photon Particle Emitter', 297356), (149860, 149859, 100, 124, 'Photon Particle Emitter', 297356), (149859, 144812, 125, 255, 'Photon Particle Emitter', 297356), (292014, 292014, 1, 1, 'Phylicity''s QQ Shirt', 293630), (101497, 101498, 1, 200, 'Physic. Init Cluster - Bright (Right-Arm)', 35981), (101495, 101496, 1, 200, 'Physic. Init Cluster - Faded (Left-Arm)', 35980), (101499, 101500, 1, 200, 'Physic. Init Cluster - Shiny (Feet)', 35982), (165657, 165658, 201, 300, 'Physic. Init Refined Cluster - Bright (Right-Arm)', 35981), (165655, 165656, 201, 300, 'Physic. Init Refined Cluster - Faded (Left-Arm)', 35980), (165659, 165660, 201, 300, 'Physic. Init Refined Cluster - Shiny (Feet)', 35982), (206551, 206552, 15, 75, 'Physician''s Cap', 205763), (49578, 49578, 1, 1, 'Pick-Up', 49561), (158755, 158755, 1, 1, 'Pick-a-Finger', 11616), (40836, 40836, 1, 1, 'Picture Book of Secrets', 37933), (267399, 267399, 1, 1, 'Piece of Litter', 144714), (158894, 158894, 100, 100, 'Piece of Living Dragon Wing', 144707), (200502, 200502, 1, 1, 'Piece of Living Enigma Bark', 163575), (259960, 259960, 1, 1, 'Piece of Wing Membrane', 161083), (259965, 259965, 1, 1, 'Piece of Wing Membrane', 161083), (259966, 259966, 1, 1, 'Piece of Wing Membrane', 161083), (259967, 259967, 1, 1, 'Piece of Wing Membrane', 161083), (259968, 259968, 1, 1, 'Piece of Wing Membrane', 161083), (101359, 101360, 1, 200, 'Piercing Cluster - Bright (Left-Arm)', 35999), (101357, 101358, 1, 200, 'Piercing Cluster - Faded (Waist)', 35998), (101361, 101362, 1, 200, 'Piercing Cluster - Shiny (Right-Arm)', 36000), (245766, 245767, 220, 259, 'Piercing Evil', 213075), (245768, 245768, 260, 260, 'Piercing Evil', 213075), (277911, 277912, 1, 300, 'Piercing Memory Cell', 276922), (165573, 165574, 201, 300, 'Piercing Refined Cluster - Bright (Left-Arm)', 35999), (165571, 165572, 201, 300, 'Piercing Refined Cluster - Faded (Waist)', 35998), (165575, 165576, 201, 300, 'Piercing Refined Cluster - Shiny (Right-Arm)', 36000), (278280, 278281, 1, 199, 'Piercing Skill NCU (1/6)', 276930), (278282, 278283, 200, 299, 'Piercing Skill NCU (1/6)', 276930), (278284, 278284, 300, 300, 'Piercing Skill NCU (1/6)', 276930), (278285, 278286, 1, 199, 'Piercing Skill NCU (2/6)', 276931), (278287, 278288, 200, 299, 'Piercing Skill NCU (2/6)', 276931), (278289, 278289, 300, 300, 'Piercing Skill NCU (2/6)', 276931), (278290, 278291, 1, 199, 'Piercing Skill NCU (3/6)', 276932), (278292, 278293, 200, 299, 'Piercing Skill NCU (3/6)', 276932), (278294, 278294, 300, 300, 'Piercing Skill NCU (3/6)', 276932), (278295, 278296, 1, 199, 'Piercing Skill NCU (4/6)', 276933), (278297, 278298, 200, 299, 'Piercing Skill NCU (4/6)', 276933), (278299, 278299, 300, 300, 'Piercing Skill NCU (4/6)', 276933), (278300, 278301, 1, 199, 'Piercing Skill NCU (5/6)', 276934), (278302, 278303, 200, 299, 'Piercing Skill NCU (5/6)', 276934), (278304, 278304, 300, 300, 'Piercing Skill NCU (5/6)', 276934), (278305, 278306, 1, 199, 'Piercing Skill NCU (6/6)', 276935), (278307, 278308, 200, 299, 'Piercing Skill NCU (6/6)', 276935), (278309, 278309, 300, 300, 'Piercing Skill NCU (6/6)', 276935), (142894, 142895, 1, 200, 'Piercing Weapon Base', 130863), (272274, 272275, 1, 300, 'Piercing Weapons Basic Upgrade Kit', 272250), (85466, 85467, 1, 250, 'Piercing Weapons Field Primer', 83390), (254453, 254453, 1, 1, 'Pietro''s Envelope', 156326), (253431, 253431, 1, 1, 'Pietro''s Sealed Envelope', 156326), (253407, 253407, 1, 1, 'Pietro''s Wedding Ring', 84059), (225671, 225672, 1, 300, 'Piip Ignatz'' Ring of Chemistry', 151931), (201192, 201193, 1, 200, 'Pilgrim Protector Armor Boots', 21978), (201195, 201196, 1, 200, 'Pilgrim Protector Armor Gloves', 21979), (201198, 201199, 1, 200, 'Pilgrim Protector Armor Helmet', 22270), (201201, 201202, 1, 200, 'Pilgrim Protector Armor Pants', 21980), (201186, 201187, 1, 200, 'Pilgrim Protector Armor Sleeves', 21976), (201189, 201190, 1, 200, 'Pilgrim Protector Body Armor', 21977), (201139, 201140, 1, 200, 'Pilgrim Seeker Armor Boots', 22884), (201141, 201142, 1, 200, 'Pilgrim Seeker Armor Gloves', 31656), (201143, 201144, 1, 200, 'Pilgrim Seeker Armor Helmet', 31734), (201145, 201146, 1, 200, 'Pilgrim Seeker Armor Pants', 22919), (201135, 201136, 1, 200, 'Pilgrim Seeker Armor Sleeves', 31644), (201137, 201138, 1, 200, 'Pilgrim Seeker Body Armor', 31648), (201160, 201161, 1, 200, 'Pilgrim Visionary Armor Boots', 22883), (201162, 201163, 1, 200, 'Pilgrim Visionary Armor Gloves', 31655), (201164, 201165, 1, 200, 'Pilgrim Visionary Armor Helmet', 31735), (201166, 201167, 1, 200, 'Pilgrim Visionary Armor Pants', 22921), (201156, 201157, 1, 200, 'Pilgrim Visionary Armor Sleeves', 31643), (201158, 201159, 1, 200, 'Pilgrim Visionary Body Armor', 31647), (125447, 125448, 51, 100, 'Pillow with Important Stripes', 85163), (233189, 233190, 1, 149, 'Pilot Blaster', 218700), (233191, 233192, 150, 299, 'Pilot Blaster', 218700), (245609, 245609, 1, 1, 'Pine Tree', 245610), (31245, 31245, 1, 1, 'Pink Boots', 30932), (290996, 290996, 1, 1, 'Pink Bouquet of Flowers', 291362), (273244, 273244, 1, 1, 'Pink Desert Orchid', 273612), (273245, 273245, 1, 1, 'Pink Desert Orchid', 273612), (273265, 273265, 1, 1, 'Pink Desert Orchid Container full of Flowers', 273549), (273263, 273263, 1, 1, 'Pink Desert Orchid Container with five Flowers', 273549), (273262, 273262, 1, 1, 'Pink Desert Orchid Container with four Flowers', 273549), (273259, 273259, 1, 1, 'Pink Desert Orchid Container with one Flower', 273549), (273261, 273261, 1, 1, 'Pink Desert Orchid Container with three Flowers', 273549), (273260, 273260, 1, 1, 'Pink Desert Orchid Container with two Flowers', 273549), (250247, 250247, 1, 1, 'Pink Djellaba Hood', 255400), (31243, 31243, 1, 1, 'Pink Female Hotpants', 31319), (31254, 31254, 1, 1, 'Pink Female Top with a Dragon Print', 30915), (275180, 275180, 1, 1, 'Pink Islander Shirt', 275187), (249716, 249716, 1, 1, 'Pink Riddle Cloak of the Underworld', 255394), (136614, 136615, 1, 200, 'Pink Ring', 287081), (31239, 31239, 1, 1, 'Pink Rubber Pants', 30941), (31249, 31249, 1, 1, 'Pink Shirt with a Symbol Print', 30922), (284034, 284034, 1, 1, 'Pink Skull Boots', 284182), (290258, 290258, 1, 1, 'Pink Thong', 290251), (249088, 249088, 1, 1, 'Pink Thong of Mister Tharaldsen', 255174), (40837, 40837, 1, 1, 'Pinky Jar', 20411), (296162, 296162, 3, 3, 'Pinnetti, Pinnetti, and Pinnetti Orientation Package', 296063), (214286, 214286, 300, 300, 'Pinpoint Rifle', 210169), (225834, 225835, 1, 500, 'Pinpoint Strike', 239093), (225836, 225837, 1, 500, 'Pinpoint Strike', 239093), (225838, 225839, 1, 500, 'Pinpoint Strike', 239093), (165203, 165204, 1, 200, 'Pioneer of Jobe Cloak', 88054), (159082, 159082, 10, 10, 'Pirate - Sugarfree Rum', 37934), (248833, 248833, 1, 1, 'Pirate Cloak of Captain Jim Salabim', 255314), (293291, 293291, 1, 1, 'Pirate Cutlass - Left', 293163), (293290, 293290, 1, 1, 'Pirate Cutlass - Right', 293163), (248848, 248848, 1, 1, 'Pirate Pants of Cerberus', 255195), (248849, 248849, 1, 1, 'Pirate Shoes of Cerberus', 255359), (248846, 248846, 1, 1, 'Pirate Sleeves of Cerberus', 255259), (248847, 248847, 1, 1, 'Pirate Vest of Cerberus', 255315), (248197, 248197, 1, 1, 'Pirate''s Striped Sleeves', 22946), (101449, 101450, 1, 200, 'Pistol Cluster - Bright (Right-Hand)', 35981), (101447, 101448, 1, 200, 'Pistol Cluster - Faded (Eye)', 35980), (101451, 101452, 1, 200, 'Pistol Cluster - Shiny (Right-Wrist)', 35982), (277921, 277922, 1, 300, 'Pistol Memory Cell', 276922), (165609, 165610, 201, 300, 'Pistol Refined Cluster - Bright (Right-Hand)', 35981), (165607, 165608, 201, 300, 'Pistol Refined Cluster - Faded (Eye)', 35980), (165611, 165612, 201, 300, 'Pistol Refined Cluster - Shiny (Right-Wrist)', 35982), (278190, 278191, 1, 199, 'Pistol Skill NCU (1/6)', 276930), (278192, 278193, 200, 299, 'Pistol Skill NCU (1/6)', 276930), (278194, 278194, 300, 300, 'Pistol Skill NCU (1/6)', 276930), (278195, 278196, 1, 199, 'Pistol Skill NCU (2/6)', 276931), (278197, 278198, 200, 299, 'Pistol Skill NCU (2/6)', 276931), (278199, 278199, 300, 300, 'Pistol Skill NCU (2/6)', 276931), (278200, 278201, 1, 199, 'Pistol Skill NCU (3/6)', 276932), (278202, 278203, 200, 299, 'Pistol Skill NCU (3/6)', 276932), (278204, 278204, 300, 300, 'Pistol Skill NCU (3/6)', 276932), (278205, 278206, 1, 199, 'Pistol Skill NCU (4/6)', 276933), (278207, 278208, 200, 299, 'Pistol Skill NCU (4/6)', 276933), (278209, 278209, 300, 300, 'Pistol Skill NCU (4/6)', 276933), (278210, 278211, 1, 199, 'Pistol Skill NCU (5/6)', 276934), (278212, 278213, 200, 299, 'Pistol Skill NCU (5/6)', 276934), (278214, 278214, 300, 300, 'Pistol Skill NCU (5/6)', 276934), (278215, 278216, 1, 199, 'Pistol Skill NCU (6/6)', 276935), (278217, 278218, 200, 299, 'Pistol Skill NCU (6/6)', 276935), (278219, 278219, 300, 300, 'Pistol Skill NCU (6/6)', 276935), (272280, 272281, 1, 300, 'Pistol Weapons Basic Upgrade Kit', 272250), (214297, 214298, 100, 199, 'Pistol of Education', 210183), (214299, 214300, 200, 299, 'Pistol of Education', 210183), (214308, 214309, 100, 199, 'Pistol of Endurance', 210183), (214310, 214311, 200, 299, 'Pistol of Endurance', 210183), (214301, 214301, 300, 300, 'Pistol of Indoctrination', 210183), (214312, 214312, 300, 300, 'Pistol of Survival', 210183), (214303, 214304, 100, 199, 'Pistol of Vitality', 210170), (214305, 214306, 200, 299, 'Pistol of Vitality', 210170), (214307, 214307, 300, 300, 'Pistol of Vivacity', 210170), (214269, 214269, 300, 300, 'Pistol of the Creator', 210183), (214265, 214266, 100, 199, 'Pistol of the Maker', 210183), (214267, 214268, 200, 299, 'Pistol of the Maker', 210183), (245171, 245171, 100, 100, 'Pit Demon Heart', 231393), (245169, 245169, 100, 100, 'Pit Demon Spit', 154417), (158300, 158300, 200, 200, 'Pitchfork of Red Terror', 85168), (224738, 224738, 180, 180, 'Pitiable Essence Brain Spirit', 230992), (224943, 224943, 180, 180, 'Pitiable Heart Spirit of Essence', 230984), (224957, 224957, 180, 180, 'Pitiable Heart Spirit of Strength', 230984), (225205, 225205, 180, 180, 'Pitiable Left Hand Spirit of Defence', 230994), (225223, 225223, 180, 180, 'Pitiable Left Hand Spirit of Strength', 230994), (225043, 225043, 180, 180, 'Pitiable Left Limb Spirit of Essence', 230995), (225026, 225026, 180, 180, 'Pitiable Left Limb Spirit of Strength', 230995), (224855, 224855, 180, 180, 'Pitiable Midriff Spirit of Essence', 230976), (224873, 224873, 180, 180, 'Pitiable Midriff Spirit of Knowledge', 230976), (224908, 224908, 180, 180, 'Pitiable Midriff Spirit of Strength', 230976), (225153, 225153, 180, 180, 'Pitiable Right Hand Defencive Spirit', 231002), (225132, 225132, 180, 180, 'Pitiable Right Hand Strength Spirit', 231002), (224837, 224837, 180, 180, 'Pitiable Right Limb Spirit of Essence', 231004), (224806, 224806, 180, 180, 'Pitiable Right Limb Spirit of Strength', 231004), (225184, 225184, 180, 180, 'Pitiable Spirit of Defense', 230998), (224669, 224669, 180, 180, 'Pitiable Spirit of Discerning Weakness', 230988), (224786, 224786, 180, 180, 'Pitiable Spirit of Essence Whispered', 230986), (225240, 225240, 180, 180, 'Pitiable Spirit of Feet Strength', 230990), (225164, 225164, 180, 180, 'Pitiable Spirit of Insight - Right Hand', 231002), (224753, 224753, 180, 180, 'Pitiable Spirit of Knowledge Whispered', 230986), (225095, 225095, 180, 180, 'Pitiable Spirit of Left Wrist Defense', 231000), (225113, 225113, 180, 180, 'Pitiable Spirit of Left Wrist Strength', 231000), (225080, 225080, 180, 180, 'Pitiable Spirit of Right Wrist Weakness', 231006), (288340, 288340, 1, 1, 'Placard - !points', 288339), (288326, 288326, 1, 1, 'Placard - Are We There Yet?', 288333), (288348, 288348, 1, 1, 'Placard - I Can See You Like Meat', 288341), (288347, 288347, 1, 1, 'Placard - I Like Meat', 288342), (288331, 288331, 1, 1, 'Placard - I Lost My Other Placard', 288338), (288327, 288327, 1, 1, 'Placard - IDKWTF', 288334), (288328, 288328, 1, 1, 'Placard - It', 288336), (288330, 288330, 1, 1, 'Placard - Mentor Looking for Noobs', 288337), (288329, 288329, 1, 1, 'Placard - My Leet Ate My Homework', 288335), (288318, 288318, 1, 1, 'Placard - Space for Rent', 288332), (90296, 90296, 5, 5, 'Placebo Pills', 20193), (90298, 90298, 5, 5, 'Placebo Pills', 20193), (90299, 90299, 5, 5, 'Placebo Pills', 20193), (90301, 126349, 5, 200, 'Placebo Pills', 20193), (89920, 89920, 7, 7, 'Placebo Pills', 20193), (89924, 89924, 7, 7, 'Placebo Pills', 20193), (89927, 89927, 7, 7, 'Placebo Pills', 20193), (89931, 90290, 7, 12, 'Placebo Pills', 20193), (90292, 90292, 12, 12, 'Placebo Pills', 20193), (90293, 90293, 12, 12, 'Placebo Pills', 20193), (90295, 90295, 12, 12, 'Placebo Pills', 20193), (126350, 126350, 200, 200, 'Placebo Pills', 20193), (126351, 126351, 200, 200, 'Placebo Pills', 20193), (126352, 126352, 200, 200, 'Placebo Pills', 20193), (126353, 126353, 200, 200, 'Placebo Pills', 20193), (126354, 126354, 200, 200, 'Placebo Pills', 20193), (126355, 126355, 200, 200, 'Placebo Pills', 20193), (126356, 126356, 200, 200, 'Placebo Pills', 20193), (127205, 127205, 200, 200, 'Placebo Pills', 20193), (127206, 127206, 200, 200, 'Placebo Pills', 20193), (127207, 127207, 200, 200, 'Placebo Pills', 20193), (127208, 127208, 200, 200, 'Placebo Pills', 20193), (119103, 119103, 1, 1, 'Plant', 119070), (119106, 119106, 1, 1, 'Plant', 119105), (119107, 119107, 1, 1, 'Plant', 119066), (119108, 119108, 1, 1, 'Plant', 119067), (281351, 281351, 1, 1, 'Plant Collector''s Box', 281338), (253180, 253181, 1, 300, 'Plasma Cannister', 100305), (288687, 288687, 1, 1, 'Plasma Cannon Barrel', 130705), (288724, 288724, 1, 1, 'Plasma Cannon Barrel', 130705), (288688, 288688, 1, 1, 'Plasma Cannon Scope', 130776), (288723, 288723, 1, 1, 'Plasma Cannon Scope', 130776), (288689, 288689, 1, 1, 'Plasma Cannon Stock', 130696), (288721, 288721, 1, 1, 'Plasma Cannon Stock', 130696), (137261, 137262, 1, 200, 'Plasma Streamer Interface Nozzle', 130688), (85450, 85451, 1, 250, 'Plasma Weapons Field Primer', 83342), (121882, 121883, 81, 100, 'Plasmaprojector', 21145), (272070, 272071, 1, 300, 'Plasmaprojector - 000', 21145), (272072, 272073, 1, 300, 'Plasmaprojector - 008', 21145), (272074, 272075, 1, 300, 'Plasmaprojector - 00C', 21145), (272076, 272077, 1, 300, 'Plasmaprojector - 40C', 21145), (272078, 272079, 1, 300, 'Plasmaprojector - C0C', 21145), (138991, 138991, 1, 1, 'Plasmaprojector Construction Manual', 37933), (266354, 266355, 1, 300, 'Plasmid Cultures', 281967), (137273, 137274, 1, 200, 'Plasteel Tissue Integrator', 130755), (152261, 152262, 1, 200, 'Plaster Circuit - Brawl', 119132), (120566, 120566, 1, 1, 'Plastic Boots', 118186), (289905, 289905, 1, 1, 'Plastic Container with Strange Powder', 289902), (249102, 249102, 1, 1, 'Plastic Hipster Pants of Yagyu', 255191), (249103, 249103, 1, 1, 'Plastic Hipster Shoes of Yagyu', 255354), (218475, 218475, 100, 100, 'Plastic Novictum', 20407), (120580, 120580, 1, 1, 'Plastic Pants', 118185), (211236, 211237, 1, 299, 'Plastic Pole', 203230), (120567, 120567, 1, 1, 'Plastic Shirt', 118194), (120568, 120568, 1, 1, 'Plastic Sleeves', 118192), (151374, 151373, 1, 250, 'Platinum Filigree Ring', 286840), (244476, 244482, 1, 400, 'Platinum Filigree Ring set with a Almandine', 286816), (244461, 244467, 1, 400, 'Platinum Filigree Ring set with a Amber', 286817), (244253, 244259, 1, 400, 'Platinum Filigree Ring set with a Aquamarine', 286818), (244397, 244403, 1, 400, 'Platinum Filigree Ring set with a Balas ruby', 286819), (244337, 244343, 1, 400, 'Platinum Filigree Ring set with a Black opal', 286820), (151521, 151517, 1, 400, 'Platinum Filigree Ring set with a Blue Pearl by Conner', 301038), (244309, 244315, 1, 400, 'Platinum Filigree Ring set with a Chrysoberyl', 286822), (151592, 151585, 1, 200, 'Platinum Filigree Ring set with a Cold Stone', 286823), (244532, 244538, 1, 400, 'Platinum Filigree Ring set with a Coral', 286824), (151579, 151571, 1, 200, 'Platinum Filigree Ring set with a Crystal Sphere', 286825), (244383, 244389, 1, 400, 'Platinum Filigree Ring set with a Demantoid', 286826), (244295, 244301, 1, 400, 'Platinum Filigree Ring set with a Diamond', 286827), (151507, 151501, 1, 200, 'Platinum Filigree Ring set with a Ember', 286828), (151565, 151557, 1, 200, 'Platinum Filigree Ring set with a Ember Sphere', 286829), (244412, 244418, 1, 400, 'Platinum Filigree Ring set with a Emerald', 286830), (244239, 244245, 1, 400, 'Platinum Filigree Ring set with a Fire opal', 286831), (151551, 151543, 1, 200, 'Platinum Filigree Ring set with a Gem', 286833), (151536, 151531, 1, 200, 'Platinum Filigree Ring set with a Hot Stone', 286834), (244447, 244453, 1, 400, 'Platinum Filigree Ring set with a Jet', 286836), (244518, 244524, 1, 400, 'Platinum Filigree Ring set with a Pearl', 286837), (151429, 151430, 1, 200, 'Platinum Filigree Ring set with a Pearl of Rubi-Ka', 286838), (244477, 244483, 1, 400, 'Platinum Filigree Ring set with a Perfectly Cut Almandine', 286816), (244462, 244468, 1, 400, 'Platinum Filigree Ring set with a Perfectly Cut Amber', 286817), (244254, 244260, 1, 400, 'Platinum Filigree Ring set with a Perfectly Cut Aquamarine', 286818), (244398, 244404, 1, 400, 'Platinum Filigree Ring set with a Perfectly Cut Balas ruby', 286819), (244338, 244344, 1, 400, 'Platinum Filigree Ring set with a Perfectly Cut Black opal', 286820), (151520, 151520, 1, 1, 'Platinum Filigree Ring set with a Perfectly Cut Blue Pearl by Conner', 301038), (244310, 244316, 1, 400, 'Platinum Filigree Ring set with a Perfectly Cut Chrysoberyl', 286822), (151588, 151584, 1, 200, 'Platinum Filigree Ring set with a Perfectly Cut Cold Stone', 286823), (244533, 244539, 1, 400, 'Platinum Filigree Ring set with a Perfectly Cut Coral', 286824), (151574, 151570, 1, 200, 'Platinum Filigree Ring set with a Perfectly Cut Crystal Sphere', 286825), (244384, 244390, 1, 400, 'Platinum Filigree Ring set with a Perfectly Cut Demantoid', 286826), (244296, 244302, 1, 400, 'Platinum Filigree Ring set with a Perfectly Cut Diamond', 286827), (151506, 151498, 1, 200, 'Platinum Filigree Ring set with a Perfectly Cut Ember', 286828), (151562, 151556, 1, 200, 'Platinum Filigree Ring set with a Perfectly Cut Ember Sphere', 286829), (244413, 244419, 1, 400, 'Platinum Filigree Ring set with a Perfectly Cut Emerald', 286830), (244240, 244246, 1, 400, 'Platinum Filigree Ring set with a Perfectly Cut Fire opal', 286831), (151456, 151456, 300, 300, 'Platinum Filigree Ring set with a Perfectly Cut Flawless Spring Crystal', 286832), (151547, 151542, 1, 200, 'Platinum Filigree Ring set with a Perfectly Cut Gem', 286833), (154874, 154874, 250, 250, 'Platinum Filigree Ring set with a Perfectly Cut High Quality Silver Onyx', 286835), (151532, 151527, 1, 200, 'Platinum Filigree Ring set with a Perfectly Cut Hot Stone', 286834), (244448, 244454, 1, 400, 'Platinum Filigree Ring set with a Perfectly Cut Jet', 286836), (244519, 244525, 1, 400, 'Platinum Filigree Ring set with a Perfectly Cut Pearl', 286837), (151431, 151432, 1, 200, 'Platinum Filigree Ring set with a Perfectly Cut Pearl of Rubi-Ka', 286838), (244491, 244497, 1, 400, 'Platinum Filigree Ring set with a Perfectly Cut Red beryl', 286839), (151417, 151418, 1, 150, 'Platinum Filigree Ring set with a Perfectly Cut Rubi-Ka Ruby', 286841), (151491, 151486, 1, 200, 'Platinum Filigree Ring set with a Perfectly Cut Ruby', 286842), (244505, 244511, 1, 400, 'Platinum Filigree Ring set with a Perfectly Cut Ruby Pearl', 286843), (244268, 244274, 1, 400, 'Platinum Filigree Ring set with a Perfectly Cut Sapphire', 286844), (154802, 154802, 1, 1, 'Platinum Filigree Ring set with a Perfectly Cut Silver Onyx', 286845), (151450, 151443, 1, 200, 'Platinum Filigree Ring set with a Perfectly Cut Silver Perl', 286846), (151476, 151472, 1, 200, 'Platinum Filigree Ring set with a Perfectly Cut Soul Fragment', 286847), (151512, 151512, 400, 400, 'Platinum Filigree Ring set with a Perfectly Cut Soul Sphere by Divaad', 301037), (151462, 151462, 1, 1, 'Platinum Filigree Ring set with a Perfectly Cut Spring Crystal', 286848), (244282, 244288, 1, 400, 'Platinum Filigree Ring set with a Perfectly Cut Star Ruby', 286849), (244434, 244440, 1, 400, 'Platinum Filigree Ring set with a Perfectly Cut Topaz', 286850), (244324, 244330, 1, 400, 'Platinum Filigree Ring set with a Perfectly Cut Water opal', 286851), (244369, 244375, 1, 400, 'Platinum Filigree Ring set with a Perfectly Cut White opal', 286852), (244490, 244496, 1, 400, 'Platinum Filigree Ring set with a Red beryl', 286839), (151415, 151416, 1, 150, 'Platinum Filigree Ring set with a Rubi-Ka Ruby', 286841), (151495, 151487, 1, 200, 'Platinum Filigree Ring set with a Ruby', 286842), (244504, 244510, 1, 400, 'Platinum Filigree Ring set with a Ruby Pearl', 286843), (244267, 244273, 1, 400, 'Platinum Filigree Ring set with a Sapphire', 286844), (154805, 154877, 1, 250, 'Platinum Filigree Ring set with a Silver Onyx', 286845), (151451, 151446, 1, 200, 'Platinum Filigree Ring set with a Silver Perl', 286846), (151481, 151475, 1, 200, 'Platinum Filigree Ring set with a Soul Fragment', 286847), (151465, 151461, 1, 300, 'Platinum Filigree Ring set with a Spring Crystal', 286848), (244281, 244287, 1, 400, 'Platinum Filigree Ring set with a Star Ruby', 286849), (244433, 244439, 1, 400, 'Platinum Filigree Ring set with a Topaz', 286850), (244323, 244329, 1, 400, 'Platinum Filigree Ring set with a Water opal', 286851), (244368, 244374, 1, 400, 'Platinum Filigree Ring set with a White opal', 286852), (151359, 151360, 1, 250, 'Platinum Filigree Wire', 151017), (199527, 199527, 210, 210, 'Platinum Periodic Tech Armor Boots', 22886), (199548, 199548, 210, 210, 'Platinum Periodic Tech Armor Gloves', 22933), (199569, 199569, 210, 210, 'Platinum Periodic Tech Armor Helmet', 31731), (199590, 199590, 210, 210, 'Platinum Periodic Tech Armor Pants', 22912), (199612, 199612, 210, 210, 'Platinum Periodic Tech Armor Sleeves', 22911), (199633, 199633, 210, 210, 'Platinum Periodic Tech Body Armor', 22990), (199654, 199654, 210, 210, 'Platinum Periodic Tech Female Body Armor', 22909), (204574, 204574, 1, 1, 'Platinum Ring of the Three', 286775), (204575, 204575, 1, 1, 'Platinum Ring of the Three', 286775), (204576, 204576, 1, 1, 'Platinum Ring of the Three', 286775), (157417, 157417, 1, 1, 'Platinum Twentynine Cockroach Advantage', 81777), (232646, 232647, 1, 149, 'Platinum ingot', 289748), (232647, 232648, 150, 199, 'Platinum ingot', 289748), (232648, 232649, 200, 249, 'Platinum ingot', 289748), (232649, 232650, 250, 400, 'Platinum ingot', 289748), (295634, 295634, 1, 1, 'Platinum-Infused Metallic Ring', 233133), (300588, 300588, 1, 1, 'Play Costume - Fifth Edition', 300589), (281732, 281732, 1, 1, 'Play Costume - First Edition', 281755), (296200, 296200, 1, 1, 'Play Costume - Fourth Edition', 296216), (289409, 289409, 1, 1, 'Play Costume - Holiday Series #1', 289437), (289580, 289580, 1, 1, 'Play Costume - Holiday Series #1', 289437), (296541, 296541, 1, 1, 'Play Costume - Holiday Series #2', 294186), (294167, 294167, 2, 2, 'Play Costume - Holiday Series #2', 294186), (296544, 296544, 1, 1, 'Play Costume - Holiday Series #3', 296543), (294818, 294818, 1, 1, 'Play Costume - Naughty Nightwear', 295015), (287165, 287165, 1, 1, 'Play Costume - Second Edition', 287212), (301462, 301462, 1, 1, 'Play Costume - Sixth Edition', 301468), (290025, 290025, 1, 1, 'Play Costume - Third Edition', 290153), (295856, 295856, 1, 1, 'Player vs. Player (PvP)', 277964), (284441, 284441, 1, 1, 'Plumbo XXX Leaflet', 285355), (286235, 286235, 1, 1, 'Plumbo XXX Leaflet Book', 286236), (248335, 248335, 1, 1, 'Pneumatic Compression Chamber', 100311), (152074, 152075, 101, 120, 'PoE - Mathis Multi-Energy Rifle', 13314), (153459, 153459, 1, 1, 'PoE - Mathis Multi-Energy Rifle Construction Manual', 136332), (243748, 243749, 200, 209, 'Pocket Cannon', 233215), (243750, 243751, 210, 219, 'Pocket Cannon', 233215), (243752, 243753, 220, 229, 'Pocket Cannon', 233215), (243754, 243755, 230, 239, 'Pocket Cannon', 233215), (243756, 243757, 240, 249, 'Pocket Cannon', 233215), (243758, 243759, 250, 259, 'Pocket Cannon', 233215), (243760, 243761, 260, 269, 'Pocket Cannon', 233215), (243762, 243763, 270, 279, 'Pocket Cannon', 233215), (243764, 243765, 280, 299, 'Pocket Cannon', 233215), (243766, 243766, 300, 300, 'Pocket Cannon', 233215), (291545, 291545, 1, 1, 'Pod Reflect Spawnitem', 84059), (152542, 152542, 105, 105, 'Poetic Pants', 37091), (152705, 152705, 105, 105, 'Poetic Sleeves', 37136), (152253, 152254, 1, 200, 'Poetic Stretch-band', 84063), (302068, 302069, 1, 500, 'Point Blank', 239065), (302070, 302071, 1, 500, 'Point Blank', 239065), (302072, 302073, 1, 500, 'Point Blank', 239065), (223996, 223996, 100, 100, 'Pointed Hood of Eric Miller', 205773), (223995, 223995, 100, 100, 'Pointed Hood of Min-Li Jiu', 205773), (162394, 162394, 10, 10, 'Poison Adventure Shield', 12686), (158576, 158577, 1, 200, 'Poison Arrowheads', 159116), (158588, 158589, 1, 200, 'Poison Bamboo - Special Arrows', 33177), (137253, 137254, 1, 200, 'Poison Chemical Combination Chamber', 130688), (244208, 244208, 250, 250, 'Poison Darts of the Deceptor', 100313), (248375, 248375, 1, 1, 'Poison Injector Bracelet', 84053), (214367, 214367, 1, 1, 'Poison Sprinkle', 239141), (247790, 247790, 100, 100, 'Poisoned Giant Chirop Egg', 20405), (248345, 248345, 1, 1, 'Polished Eliminator', 113991), (253451, 253451, 1, 1, 'Polished Gannondorph Bookshelves', 255927), (130169, 130170, 145, 194, 'Polished MTI Sword', 113987), (248313, 248313, 1, 1, 'Polishing Tool', 130870), (271649, 271650, 1, 300, 'Polizziotto M200 - 000', 113992), (271653, 271654, 1, 300, 'Polizziotto M200 - 401', 113992), (271655, 271656, 1, 300, 'Polizziotto M200 - C01', 113992), (123765, 123766, 25, 33, 'Polizziotto M201', 113992), (123767, 123768, 34, 89, 'Polizziotto M202F', 113992), (123769, 123770, 90, 100, 'Polizziotto M202F Hailstorm', 113992), (123771, 123772, 101, 120, 'Polizziotto M202F Hailstorm Senior', 113992), (123763, 123764, 12, 24, 'Polizziotto M202F Light', 113992), (123773, 243847, 121, 199, 'Polizziotto M203 Druid', 113992), (243848, 243848, 200, 200, 'Polizziotto M204 Hierophant', 113992), (162832, 162832, 1, 1, 'Polluted Instantaneous Encoding Crystal', 12255), (275471, 275471, 1, 1, 'Polluting Corrupted Crystal', 72772), (199533, 199533, 240, 240, 'Polonium Periodic Tech Armor Boots', 22886), (199554, 199554, 240, 240, 'Polonium Periodic Tech Armor Gloves', 22933), (199575, 199575, 240, 240, 'Polonium Periodic Tech Armor Helmet', 31731), (199597, 199597, 240, 240, 'Polonium Periodic Tech Armor Pants', 22912), (199618, 199618, 240, 240, 'Polonium Periodic Tech Armor Sleeves', 22911), (199639, 199639, 240, 240, 'Polonium Periodic Tech Body Armor', 22990), (199660, 199660, 240, 240, 'Polonium Periodic Tech Female Body Armor', 22909), (245167, 245167, 100, 100, 'Polymerizing Stim', 100310), (230625, 230625, 1, 1, 'Pond Dryad Anger', 130862), (224739, 224739, 190, 190, 'Poor Essence Brain Spirit', 230992), (224958, 224958, 190, 190, 'Poor Heart Spirit of Strength', 230984), (224974, 224974, 190, 190, 'Poor Heart Spirit of Weakness', 230984), (225206, 225206, 190, 190, 'Poor Left Hand Spirit of Defence', 230994), (225044, 225044, 190, 190, 'Poor Left Limb Spirit of Essence', 230995), (225008, 225008, 190, 190, 'Poor Left Limb Spirit of Weakness', 230995), (224874, 224874, 190, 190, 'Poor Midriff Spirit of Knowledge', 230976), (224892, 224892, 190, 190, 'Poor Midriff Spirit of Weakness', 230976), (224838, 224838, 190, 190, 'Poor Right Limb Spirit of Essence', 231004), (224807, 224807, 190, 190, 'Poor Right Limb Spirit of Strength', 231004), (224824, 224824, 190, 190, 'Poor Right Limb Spirit of Weakness', 231004), (225185, 225185, 190, 190, 'Poor Spirit of Defense', 230998), (224787, 224787, 190, 190, 'Poor Spirit of Essence Whispered', 230986), (225257, 225257, 190, 190, 'Poor Spirit of Feet Defense', 230990), (224754, 224754, 190, 190, 'Poor Spirit of Knowledge Whispered', 230986), (225114, 225114, 190, 190, 'Poor Spirit of Left Wrist Strength', 231000), (225081, 225081, 190, 190, 'Poor Spirit of Right Wrist Weakness', 231006), (224771, 224771, 190, 190, 'Poor Spirit of Strength Whispered', 230986), (224654, 224654, 190, 190, 'Poor Spirit of True Seeing', 230988), (252352, 252352, 1, 1, 'Popshot', 255636), (259970, 259970, 1, 1, 'Population Density Sensor', 218758), (218479, 218479, 100, 100, 'Porous Novictum Stone', 20407), (288762, 288762, 1, 1, 'Portable Bank Terminal', 292796), (288760, 288760, 1, 1, 'Portable Bank Terminal - Seven Days', 292796), (257958, 257958, 1, 1, 'Portable Market Interface', 296047), (288765, 288765, 1, 1, 'Portable Market Terminal', 296047), (288764, 288764, 1, 1, 'Portable Market Terminal - Seven Days', 296047), (302932, 302932, 300, 300, 'Portable Notum Infusion Device', 302888), (43552, 43552, 1, 1, 'Portable Surgery Clinic', 13369), (248268, 248268, 1, 1, 'Portal Pass', 81776), (142825, 142826, 81, 100, 'Portegon Survival Knife', 40783), (200217, 200217, 295, 295, 'Poseidon ICC Armor Boots', 22884), (200238, 200238, 295, 295, 'Poseidon ICC Armor Gloves', 31656), (200259, 200259, 295, 295, 'Poseidon ICC Armor Helmet', 31734), (200280, 200280, 295, 295, 'Poseidon ICC Armor Pants', 22919), (200301, 200301, 295, 295, 'Poseidon ICC Armor Sleeves', 31644), (200322, 200322, 295, 295, 'Poseidon ICC Body Armor', 31648), (160094, 160095, 1, 20, 'Positively Charged Compressed Blade', 113986), (155660, 155661, 1, 200, 'Positronic Nanites', 100305), (292525, 292525, 1, 1, 'Potassium Nitrate', 292763), (163535, 163535, 1, 1, 'Potent Glands', 144701), (226014, 226015, 1, 300, 'Potion of Yesterday''s Thoughts', 157930), (152113, 152114, 61, 90, 'Pow Bow', 85167), (253148, 253149, 1, 300, 'Powdered Viral-Bots', 290357), (274163, 274163, 1, 1, 'Powell''s Curse', 273626), (226506, 226507, 1, 500, 'Power Blast', 239061), (226508, 226509, 1, 500, 'Power Blast', 239061), (226510, 226511, 1, 500, 'Power Blast', 239061), (248818, 248819, 1, 500, 'Power Bolt', 255680), (248820, 248821, 1, 500, 'Power Bolt', 255680), (248843, 248844, 1, 500, 'Power Bolt', 255680), (231394, 231395, 1, 300, 'Power Bug', 231393), (226513, 226514, 1, 500, 'Power Combo', 239063), (226515, 226516, 1, 500, 'Power Combo', 239063), (226517, 226518, 1, 500, 'Power Combo', 239063), (287978, 287978, 1, 1, 'Power Core', 287967), (287977, 287977, 1, 1, 'Power Core Base Unit', 287969), (287975, 287975, 1, 1, 'Power Core Mainboard', 287968), (287976, 287976, 1, 1, 'Power Core Stabilizer', 287971), (204993, 204994, 1, 300, 'Power Puller', 156089), (225828, 225829, 1, 500, 'Power Shock', 239059), (225830, 225831, 1, 500, 'Power Shock', 239059), (225832, 225833, 1, 500, 'Power Shock', 239059), (248307, 248307, 1, 1, 'Power Supply', 20412), (225821, 225822, 1, 500, 'Power Volley', 239057), (225823, 225824, 1, 500, 'Power Volley', 239057), (225825, 225826, 1, 500, 'Power Volley', 239057), (281526, 281526, 1, 1, 'Power of Light', 239061), (253250, 253251, 1, 99, 'Power of the Mind', 290717), (253251, 253252, 100, 199, 'Power of the Mind', 290717), (253252, 253253, 200, 300, 'Power of the Mind', 290717), (253254, 253255, 1, 99, 'Power of the Muscle', 290716), (253255, 253256, 100, 199, 'Power of the Muscle', 290716), (253256, 253257, 200, 300, 'Power of the Muscle', 290716), (284289, 284289, 200, 200, 'Powered Kyr''ozch Teleportation Relay', 284350), (254328, 254367, 3, 75, 'Powerful Controller Recompiler Unit', 297739), (284283, 284283, 200, 200, 'Powerless Kyr''ozch Signal Amplifier', 284331), (168658, 168658, 200, 200, 'Pre-Universe Storage Device', 130903), (151672, 151673, 1, 19, 'Pre-configured NCU - Electrical Engineering', 119135), (151673, 151674, 20, 39, 'Pre-configured NCU - Electrical Engineering', 119135), (151674, 151675, 40, 49, 'Pre-configured NCU - Electrical Engineering', 119137), (151675, 151676, 50, 119, 'Pre-configured NCU - Electrical Engineering', 13370), (151676, 151677, 120, 199, 'Pre-configured NCU - Electrical Engineering', 119136), (151677, 151677, 200, 200, 'Pre-configured NCU - Electrical Engineering', 119134), (206195, 206195, 1, 1, 'Preceptor Robe', 159572), (205945, 205945, 1, 1, 'Preceptor Robe (monster wear)', 159572), (150929, 150929, 10, 10, 'Precious Metal Reclaimer', 149942), (246316, 246316, 100, 100, 'Predator Armband', 41176), (246319, 246319, 100, 100, 'Predator Armor Boots', 41193), (246312, 246312, 100, 100, 'Predator Armor Facemask', 160562), (246317, 246317, 100, 100, 'Predator Armor Gloves', 21870), (246318, 246318, 100, 100, 'Predator Armor Pants', 41195), (246314, 246314, 100, 100, 'Predator Armor Vest', 21858), (259957, 259957, 1, 1, 'Predator Blood Sample', 156495), (246313, 246313, 100, 100, 'Predator''s Circlet', 151921), (206053, 206053, 1, 1, 'Prelude to Chaos', 113994), (250163, 250163, 200, 200, 'Premium Adapting Notum Lever', 33163), (122709, 122709, 200, 200, 'Premium Advanced Baseballbat', 13335), (122633, 122633, 200, 200, 'Premium Aero Borealis Corona', 33147), (249035, 249035, 200, 200, 'Premium Arctic Metaplast Mace', 13333), (128889, 128889, 200, 200, 'Premium Arwen MM-50 Grenade Launcher', 13336), (123646, 123646, 200, 200, 'Premium BBI Sigma III', 13318), (124767, 124767, 200, 200, 'Premium BBI WMMA CAW', 13311), (123342, 123342, 50, 50, 'Premium Banjo', 85159), (249016, 249016, 200, 200, 'Premium Bio-Energy Shield', 33152), (122519, 122519, 200, 200, 'Premium Biogun', 38056), (122025, 122025, 200, 200, 'Premium Blackened Blaster', 13321), (139828, 139828, 1, 1, 'Premium Blackened Blaster Construction Manual', 136330), (122101, 122101, 200, 200, 'Premium Blackened Blaster Rifle', 13313), (161379, 161379, 1, 1, 'Premium Blackened Blaster Rifle Construction Manual', 136330), (122006, 122006, 200, 200, 'Premium Blackened Miniblaster', 13316), (139614, 139614, 1, 1, 'Premium Blackened Miniblaster Construction Manual', 136330), (122614, 122614, 200, 200, 'Premium Blackhole Mk IX', 33171), (141350, 141350, 1, 1, 'Premium Blackhole Mk IX Construction Manual', 136330), (122747, 122747, 200, 200, 'Premium Blackjack', 33169), (122942, 122942, 200, 200, 'Premium Blackjohn', 33170), (123132, 123132, 200, 200, 'Premium Bow Split', 21134), (122785, 122785, 200, 200, 'Premium Bow-Blaster', 114013), (144164, 144164, 200, 200, 'Premium Burning Copper Katana', 113998), (121873, 121873, 200, 200, 'Premium Chunkprojector', 21144), (138912, 138912, 1, 1, 'Premium Chunkprojector Construction Manual', 136330), (296485, 296485, 1, 1, 'Premium Clan Application Form', 297235), (303361, 303361, 1, 1, 'Premium Clan Application Form', 297235), (122082, 122082, 200, 200, 'Premium Clean Slay Axe', 21141), (122158, 122158, 200, 200, 'Premium Cutlass', 13347), (122215, 122215, 400, 400, 'Premium DNA-Locked Blaster Rifle', 13313), (123113, 123113, 200, 200, 'Premium DNA-Targeted Executioner Pistol', 13323), (130143, 130143, 200, 200, 'Premium Denunciatory Spear', 33163), (121816, 121816, 200, 200, 'Premium Disaffiliation Sniper', 21146), (138141, 138141, 1, 1, 'Premium Disaffiliation Sniper Construction Manual', 136330), (249853, 249853, 200, 200, 'Premium Dual Razor Disaffiliation Sniper', 21146), (122139, 122139, 200, 200, 'Premium E-Beamer', 21150), (138495, 138495, 1, 1, 'Premium E-Beamer Construction Manual', 136330), (122177, 122177, 200, 200, 'Premium E-Blade', 13337), (122481, 122481, 200, 200, 'Premium El Diablo', 31812), (122462, 122462, 200, 200, 'Premium El Dieu', 31809), (122253, 122253, 200, 200, 'Premium Electrical Pacifier', 21150), (123189, 123189, 200, 200, 'Premium Electron-Charged Pistol', 13316), (141846, 141846, 1, 1, 'Premium Electron-Charged Pistol Construction Manual', 136330), (122424, 122424, 200, 200, 'Premium Energy Buckler', 33151), (122386, 122386, 200, 200, 'Premium Energy Shield', 33152), (123323, 123323, 200, 200, 'Premium Enriched Uranium Sprayer', 21148), (122272, 122272, 200, 200, 'Premium Eradicator XCI-52', 13314), (122405, 122405, 200, 200, 'Premium Esoteric Energy Buckler', 33149), (293413, 293413, 1, 1, 'Premium Experience Construct', 281958), (293414, 293414, 1, 1, 'Premium Experience Construct', 281958), (294605, 294605, 1, 1, 'Premium Experience Construct', 281958), (124748, 124748, 200, 200, 'Premium FN P00', 21148), (128776, 128776, 200, 200, 'Premium Fabrique Des Armes Bizon 20-19', 21144), (121930, 121930, 200, 200, 'Premium Flamethrower', 19800), (139440, 139440, 1, 1, 'Premium Flamethrower Construction Manual', 136330), (144119, 144119, 200, 200, 'Premium Freedom Arms 4200', 113997), (124985, 124985, 200, 200, 'Premium GE XM-559 Man-Portable Laser', 21151), (128733, 128733, 200, 200, 'Premium Galahad Inc. 077 Personal Weapon', 21148), (128757, 128757, 200, 200, 'Premium Galahad Inc. Tactical Machine Pistol 1029', 21147), (121949, 121949, 200, 200, 'Premium Gatling Saw 20k', 84025), (122823, 122823, 200, 200, 'Premium Gofle-Prod', 33168), (122885, 122885, 200, 200, 'Premium Grenade-Thrower', 13336), (141533, 141533, 1, 1, 'Premium Grenade-Thrower Construction Manual', 136330), (128673, 128673, 200, 200, 'Premium HSR Arms Tech Assault IV', 21148), (128692, 128692, 200, 200, 'Premium HSR Arms Tech Assault V', 21148), (123361, 123361, 200, 200, 'Premium Hand Axe', 13345), (121740, 121740, 200, 200, 'Premium Haxor 9922', 13339), (130162, 130162, 200, 200, 'Premium Hayfork', 85168), (288783, 288783, 1, 1, 'Premium Healing Laboratory - Final Stage', 259107), (288779, 288779, 1, 1, 'Premium Healing Laboratory - Stage 1', 259107), (288780, 288780, 1, 1, 'Premium Healing Laboratory - Stage 2', 259107), (288781, 288781, 1, 1, 'Premium Healing Laboratory - Stage 3', 259107), (288782, 288782, 1, 1, 'Premium Healing Laboratory - Stage 4', 259107), (288784, 288784, 1, 1, 'Premium Healing Laboratory Upgrade Kit', 259108), (297274, 297274, 1, 1, 'Premium Health and Nano Recharger', 297175), (123151, 123151, 200, 200, 'Premium Heavy Gamma-Beamer', 33158), (121911, 121911, 200, 200, 'Premium Heavy Grinner', 21147), (139242, 139242, 1, 1, 'Premium Heavy Grinner Construction Manual', 136330), (122690, 122690, 200, 200, 'Premium Heavy Lead Sprayer', 21148), (141378, 141378, 1, 1, 'Premium Heavy Lead Sprayer Construction Manual', 136330), (124947, 124947, 200, 200, 'Premium IEC Flashpoint Laser Rifle', 33146), (123513, 123513, 200, 200, 'Premium IMI Desert Reet 1000', 13334), (206607, 206607, 200, 200, 'Premium Improved Clean Slay Axe', 21141), (161753, 161753, 200, 200, 'Premium Improved Stun-Baton', 13348), (122500, 122500, 200, 200, 'Premium Ingram Blaster 23-X', 13317), (125023, 125023, 200, 200, 'Premium Joint Clans Exocet II', 85167), (125042, 125042, 200, 200, 'Premium Joint Clans Patriot', 114013), (248577, 248577, 200, 200, 'Premium Kaetans Supernova', 33146), (124661, 124661, 200, 200, 'Premium Kalinkanov ZU-113 Security Weapon', 21148), (124559, 124559, 180, 180, 'Premium Kang Tao Spitting Cobra', 21148), (121987, 121987, 200, 200, 'Premium Katana', 13326), (122728, 122728, 200, 200, 'Premium Kevlar Bow', 85167), (123551, 123551, 200, 200, 'Premium Khemo-Tech Model 07 (Pocket 20)', 113995), (123532, 123532, 200, 200, 'Premium Khemo-Tech Model 200', 113994), (152404, 152404, 200, 200, 'Premium Khemo-Tech Platinum Wakisashi', 113983), (123570, 123570, 200, 200, 'Premium Knights Inc. Special-Purpose Pistol 29029', 13318), (122999, 122999, 200, 200, 'Premium Kolt 58 Magnum', 13334), (142059, 142059, 1, 1, 'Premium Kolt 58 Magnum Construction Manual', 136330), (122291, 122291, 200, 200, 'Premium Kolt PDW-37', 13315), (140575, 140575, 1, 1, 'Premium Kolt PDW-37 Construction Manual', 136330), (152438, 152438, 200, 200, 'Premium Large Ray Orb', 152424), (123380, 123380, 200, 200, 'Premium Lead Pipe', 85166), (123170, 123170, 200, 200, 'Premium Light Beamer Pistol', 33157), (142581, 142581, 1, 1, 'Premium Light Beamer Pistol Construction Manual', 136330), (130232, 130232, 200, 200, 'Premium Light Spear', 33163), (152172, 152172, 191, 191, 'Premium Light Tube-Bow', 85167), (122063, 122063, 200, 200, 'Premium Longmoon', 13338), (300766, 300766, 1, 1, 'Premium Lottery Ticket', 300449), (161663, 161663, 200, 200, 'Premium MTI Defender', 161057), (128626, 128626, 200, 200, 'Premium MTI G-36K', 33155), (124616, 124616, 200, 200, 'Premium MTI MP200', 21147), (128786, 128786, 120, 120, 'Premium MTI MP903A3D9', 13341), (124699, 124699, 200, 200, 'Premium MTI MPK-22 Briefcase Gun', 13311), (124642, 124642, 200, 200, 'Premium MTI UMP22', 114016), (123494, 123494, 200, 200, 'Premium MTI USP 21', 113993), (122961, 122961, 200, 200, 'Premium Mace', 13333), (142803, 142803, 200, 200, 'Premium Madam Freeze', 13336), (124680, 124680, 200, 200, 'Premium Malorian Arms M25 Goodgun', 33153), (122443, 122443, 200, 200, 'Premium Mausser Particle Streamer', 31807), (140968, 140968, 1, 1, 'Premium Mausser Particle Streamer Construction Manual', 136330), (123399, 123399, 200, 200, 'Premium Meat-Cleaver', 85169), (123056, 123056, 200, 200, 'Premium Medium Shotgun', 13340), (122196, 122196, 200, 200, 'Premium Megajolt', 13322), (140414, 140414, 1, 1, 'Premium Megajolt Construction Manual', 136330), (125380, 125380, 200, 200, 'Premium Merchant Executioner', 114003), (125329, 125329, 200, 200, 'Premium Merchant Squibber', 114007), (128975, 128975, 200, 200, 'Premium Merchant Warblade', 114011), (248607, 248607, 200, 200, 'Premium Merren Flamethrower', 19800), (122367, 122367, 200, 200, 'Premium Metaphysic Energy Shield', 33150), (142854, 142854, 200, 200, 'Premium Metaplast Mace', 13333), (152297, 152297, 200, 200, 'Premium Michael Patriot Ffi 29B', 21148), (153310, 153310, 1, 1, 'Premium Michael Patriot Ffi 29B Construction Manual', 136330), (121778, 121778, 200, 200, 'Premium Mini Axe', 13345), (123037, 123037, 200, 200, 'Premium Mini-Shotgun', 13341), (142231, 142231, 1, 1, 'Premium Mini-Shotgun Construction Manual', 136330), (122904, 122904, 200, 200, 'Premium Minielectronium', 13323), (122348, 122348, 200, 200, 'Premium Minigrinner', 33156), (140768, 140768, 1, 1, 'Premium Minigrinner Construction Manual', 136330), (296794, 296794, 1, 1, 'Premium Nano Crystal (50% Experience Buff)', 296549), (303380, 303380, 1, 1, 'Premium Nano Crystal (50% Experience Buff)', 296549), (296547, 296547, 1, 1, 'Premium Nano Crystal (Enter the Grid)', 296542), (303379, 303379, 1, 1, 'Premium Nano Crystal (Enter the Grid)', 296542), (288773, 288773, 1, 1, 'Premium Nano Crystal (Insight into the Shadowlands)', 296649), (288775, 288775, 1, 1, 'Premium Nano Crystal (L33t Transformation)', 296678), (303381, 303381, 1, 1, 'Premium Nano Crystal (L33t Transformation)', 296678), (303467, 303467, 1, 1, 'Premium Nano Crystal (L33t Transformation)', 296678), (303473, 303473, 1, 1, 'Premium Nano Crystal (Pronouncement of Magnanimity)', 300654), (290065, 290065, 20, 20, 'Premium Nano Crystal (Pronouncement of Magnanimity)', 300654), (303382, 303382, 20, 20, 'Premium Nano Crystal (Pronouncement of Magnanimity)', 300654), (300440, 300440, 1, 1, 'Premium Nano Crystal (Summon Buckethead Technodealer)', 300444), (289218, 289218, 1, 1, 'Premium Nano Recharger - Final Stage', 289213), (289214, 289214, 1, 1, 'Premium Nano Recharger - Stage 1', 289213), (289215, 289215, 1, 1, 'Premium Nano Recharger - Stage 2', 289213), (289216, 289216, 1, 1, 'Premium Nano Recharger - Stage 3', 289213), (289217, 289217, 1, 1, 'Premium Nano Recharger - Stage 4', 289213), (289219, 289219, 1, 1, 'Premium Nano Recharger Upgrade Kit', 289212), (123228, 123228, 200, 200, 'Premium Nano-Charged Assault Rifle', 45783), (123247, 123247, 200, 200, 'Premium Nano-Charged Rifle', 45782), (123266, 123266, 200, 200, 'Premium Nano-Charged Stun Glove', 45784), (130105, 130105, 200, 200, 'Premium Native Alloy Staff', 136738), (123437, 123437, 200, 200, 'Premium Netgun', 13322), (297238, 297238, 1, 1, 'Premium Neutral Application Form', 297236), (303359, 303359, 1, 1, 'Premium Neutral Application Form', 297236), (253233, 253233, 300, 300, 'Premium Nizno''s Bomb Blaster', 13336), (124729, 124729, 200, 200, 'Premium Nord Armwerk MAX', 21144), (130124, 130124, 200, 200, 'Premium Notum Lever', 33163), (123018, 123018, 200, 200, 'Premium Notum Spear', 21135), (143831, 143831, 1, 1, 'Premium Notum Spear Construction Manual', 136330), (122980, 122980, 200, 200, 'Premium Notum Staff', 33162), (143749, 143749, 1, 1, 'Premium Notum Staff Construction Manual', 136330), (123285, 123285, 200, 200, 'Premium Nova Flow - Mk IV', 33144), (128857, 128857, 200, 200, 'Premium OET Co. MP-21 Tactical Machine Pistol', 21148), (123589, 123589, 200, 200, 'Premium OT 0220 22mm Combat Magnum', 31808), (123475, 123475, 200, 200, 'Premium OT Boomer+.90AE', 113995), (128810, 128810, 200, 200, 'Premium OT Cobra M-33', 21148), (124909, 124909, 200, 200, 'Premium OT M-00 Crystal', 13336), (124816, 124816, 200, 200, 'Premium OT M-110 Renegade SAW', 13336), (124835, 124835, 200, 200, 'Premium OT M-70 HardRain GPMG', 13336), (124578, 124578, 200, 200, 'Premium OT Saladin', 21148), (124597, 124597, 200, 200, 'Premium OT Viper IX', 21148), (122310, 122310, 200, 200, 'Premium Omni-Flamer Mk IV', 33161), (122538, 122538, 200, 200, 'Premium Omni-Flamer Strategic', 33159), (122557, 122557, 200, 200, 'Premium Omni-Pol Standard Flamer', 33160), (296484, 296484, 1, 1, 'Premium Omni-Tek Application Form', 297237), (303360, 303360, 1, 1, 'Premium Omni-Tek Application Form', 297237), (125099, 125099, 200, 200, 'Premium Oneida Razor Half-Bow', 114013), (123627, 123627, 200, 200, 'Premium PNG M1007A1 Tactical Revolver', 113997), (128937, 128937, 200, 200, 'Premium Peasant Executioner', 114001), (128956, 128956, 200, 200, 'Premium Peasant Warblade', 114009), (124873, 124873, 200, 200, 'Premium Planet Gripon Arms Hard-Boomer', 13311), (121892, 121892, 200, 200, 'Premium Plasmaprojector', 21145), (139038, 139038, 1, 1, 'Premium Plasmaprojector Construction Manual', 136330), (125418, 125418, 200, 200, 'Premium Protector Executioner', 114002), (125361, 125361, 200, 200, 'Premium Protector Squibber', 114006), (129013, 129013, 200, 200, 'Premium Protector Warblade', 114010), (249867, 249867, 200, 200, 'Premium Razorback Disaffiliation Sniper', 21146), (125061, 125061, 200, 200, 'Premium Reet-Tech Junior Urban Crossbow', 114013), (125004, 125004, 200, 200, 'Premium Reet-Tech Stryker X', 85167), (125080, 125080, 200, 200, 'Premium Reet-Tech Venom Compound Bow', 85167), (125399, 125399, 200, 200, 'Premium Rider Executioner', 114004), (128994, 128994, 200, 200, 'Premium Rider Warblade', 114012), (121759, 121759, 200, 200, 'Premium Right Slice', 21142), (143535, 143535, 1, 1, 'Premium Right Slice Construction Manual', 136330), (123075, 123075, 200, 200, 'Premium Ritual Krys Knife', 13346), (123684, 123684, 200, 200, 'Premium River MV', 29116), (142816, 142816, 196, 196, 'Premium SSC Rustling Wakisashi', 113983), (123703, 123703, 200, 200, 'Premium Seburo Bobsons', 13330), (128654, 128654, 200, 200, 'Premium Seburo C-99a', 21144), (123608, 123608, 200, 200, 'Premium Sentinel 20mm Snub Pistol', 31811), (123665, 123665, 200, 200, 'Premium Sentinels ETE Strike Gun', 31810), (248539, 248539, 200, 200, 'Premium Sharky''s Kevlar Bow', 85167), (122671, 122671, 200, 200, 'Premium Silver Miniblaster', 13316), (121968, 121968, 200, 200, 'Premium Slank Chop', 21143), (143628, 143628, 1, 1, 'Premium Slank Chop Construction Manual', 136330), (129044, 129044, 200, 200, 'Premium Sledgehammer of Doom', 33167), (121854, 121854, 200, 200, 'Premium Sleekblaster', 13329), (138731, 138731, 1, 1, 'Premium Sleekblaster Construction Manual', 136330), (123094, 123094, 200, 200, 'Premium Sleekblaster Major', 13328), (142435, 142435, 1, 1, 'Premium Sleekblaster Major Construction Manual', 136330), (121835, 121835, 200, 200, 'Premium Sleekblaster Minor', 13327), (138525, 138525, 1, 1, 'Premium Sleekblaster Minor Construction Manual', 136330), (160499, 160499, 200, 200, 'Premium Sleekmaster Classic', 13329), (123304, 123304, 200, 200, 'Premium Slugger', 33154), (303375, 303375, 1, 1, 'Premium Specialization Catalogue of Books', 301016), (122120, 122120, 200, 200, 'Premium Stabber', 13346), (122329, 122329, 200, 200, 'Premium Stanton Stunner IV', 13313), (128908, 128908, 200, 200, 'Premium Steiner LM-5 Assault Laser', 33171), (122234, 122234, 200, 200, 'Premium Stigma Rifle', 33155), (122866, 122866, 200, 200, 'Premium Stun-Baton', 13348), (121797, 121797, 200, 200, 'Premium Subturbine', 21151), (137897, 137897, 1, 1, 'Premium Subturbine Construction Manual', 136330), (122576, 122576, 200, 200, 'Premium Sunburst Mk III', 33148), (143862, 143862, 200, 200, 'Premium Sunburst Mk IV', 33148), (122595, 122595, 200, 200, 'Premium Supernova Mk VI', 33146), (141160, 141160, 1, 1, 'Premium Supernova Mk VI Construction Manual', 136330), (122923, 122923, 200, 200, 'Premium Support Beam', 33143), (123208, 123208, 200, 200, 'Premium Suppressor', 31807), (142012, 142012, 1, 1, 'Premium Suppressor Construction Manual', 136330), (144081, 144081, 200, 200, 'Premium Survival Axe', 40782), (249055, 249055, 200, 200, 'Premium Survival Axe of Genevra', 40782), (142835, 142835, 200, 200, 'Premium Survival Knife', 40783), (122804, 122804, 200, 200, 'Premium Sword of Sir Galahad', 40781), (144100, 144100, 200, 200, 'Premium Tanto', 113986), (124966, 124966, 200, 200, 'Premium Techtronica Neural Disruptor', 21145), (122652, 122652, 200, 200, 'Premium The Original Plasma-Emitter', 33145), (122847, 122847, 200, 200, 'Premium Titanium Crowbar', 33166), (122044, 122044, 200, 200, 'Premium Triplejolt', 13320), (140024, 140024, 1, 1, 'Premium Triplejolt Construction Manual', 136330), (124797, 124797, 200, 200, 'Premium Tsunami Raiden MP-Drum', 13311), (122766, 122766, 200, 200, 'Premium Two-Handed Blackjack', 33170), (123456, 123456, 200, 200, 'Premium Ultra-Light Missile Pistol Raid 9-X', 13315), (249079, 249079, 200, 200, 'Premium Variable Density Tanto', 113986), (124854, 124854, 200, 200, 'Premium Vektor M-31 Automatic Grenade Launcher', 13336), (150272, 150272, 200, 200, 'Premium Wall-Blade', 113983), (124928, 124928, 200, 200, 'Premium Westinghouse IM-50 Plasma Burner', 33146), (121721, 121721, 200, 200, 'Premium Whings', 21139), (248626, 248626, 200, 200, 'Premium Xnemth Plasmaprojector', 21145), (128829, 128829, 200, 200, 'Premium Zastaba M0-2 Assault Weapon (Zero)', 33153), (265485, 265486, 1, 300, 'Preorder Vehicle Weapon', 13321), (265495, 265496, 1, 300, 'Preorder Vehicle Weapon - Upgrade', 13321), (227523, 227524, 1, 300, 'Prepared Enmeshed Clusters', 151031), (227525, 227525, 1, 1, 'Prepared Enmeshed Clusters', 151031), (227522, 227522, 300, 300, 'Prepared Enmeshed Clusters', 151031), (265666, 265666, 150, 150, 'Prepared Notum Crystal with ''Adolescent Voidling''', 235354), (265665, 265665, 100, 100, 'Prepared Notum Crystal with ''Immature Voidling''', 235354), (258528, 258528, 1, 1, 'Prepared Notum Crystal with ''Projection of Cama''', 235354), (258526, 258526, 1, 1, 'Prepared Notum Crystal with ''Projection of Dalja''', 235354), (258525, 258525, 1, 1, 'Prepared Notum Crystal with ''Projection of Gilthar''', 235354), (258529, 258529, 1, 1, 'Prepared Notum Crystal with ''Projection of Lord Galahad''', 235354), (258530, 258530, 1, 1, 'Prepared Notum Crystal with ''Projection of Lord Mordeth''', 235354), (258531, 258531, 1, 1, 'Prepared Notum Crystal with ''Projection of Vanya''', 235354), (297358, 297359, 1, 255, 'Prepared Program Crystal', 297355), (144787, 149833, 1, 49, 'Prepared Program Crystal - Combat', 72761), (149833, 149832, 50, 124, 'Prepared Program Crystal - Combat', 72761), (149832, 144811, 125, 255, 'Prepared Program Crystal - Combat', 72761), (144809, 149831, 1, 49, 'Prepared Program Crystal - Medical', 72762), (149831, 149830, 50, 124, 'Prepared Program Crystal - Medical', 72762), (149830, 144810, 125, 255, 'Prepared Program Crystal - Medical', 72762), (144806, 149827, 1, 49, 'Prepared Program Crystal - PSI', 83870), (149827, 149826, 50, 124, 'Prepared Program Crystal - PSI', 83870), (149826, 144805, 125, 255, 'Prepared Program Crystal - PSI', 83870), (144808, 149829, 1, 49, 'Prepared Program Crystal - Protection', 72763), (149829, 149828, 50, 124, 'Prepared Program Crystal - Protection', 72763), (149828, 144807, 125, 255, 'Prepared Program Crystal - Protection', 72763), (144804, 149825, 1, 49, 'Prepared Program Crystal - Space', 83871), (149825, 149824, 50, 124, 'Prepared Program Crystal - Space', 83871), (149824, 144803, 125, 255, 'Prepared Program Crystal - Space', 83871), (258524, 258524, 1, 1, 'Prepared Purified Crystal', 100312), (199397, 199397, 295, 295, 'Preponderate Bau Charger Armor Boots', 22878), (199418, 199418, 295, 295, 'Preponderate Bau Charger Armor Gloves', 22939), (199439, 199439, 295, 295, 'Preponderate Bau Charger Armor Helmet', 31738), (199460, 199460, 295, 295, 'Preponderate Bau Charger Armor Pants', 22928), (199481, 199481, 295, 295, 'Preponderate Bau Charger Armor Sleeves', 22889), (199502, 199502, 295, 295, 'Preponderate Bau Charger Body Armor', 22981), (199523, 199523, 295, 295, 'Preponderate Bau Charger Female Body Armor', 22942), (259925, 259925, 1, 1, 'Present Placard', 259945), (130211, 130212, 171, 190, 'Preserved Bloodworm Carapace', 85166), (306086, 306087, 1, 200, 'Preserved Colonist Body Armor', 306117), (306092, 306093, 1, 200, 'Preserved Colonist Boots', 306112), (306088, 306089, 1, 200, 'Preserved Colonist Gloves', 306113), (306080, 306081, 1, 200, 'Preserved Colonist Helmet', 306114), (306090, 306091, 1, 200, 'Preserved Colonist Legwear', 306115), (306094, 306095, 1, 200, 'Preserved Colonist Life Support System', 306111), (306082, 306083, 1, 200, 'Preserved Colonist Shoulderpad', 306116), (306084, 306085, 1, 200, 'Preserved Colonist Sleeve', 306110), (158682, 158682, 1, 1, 'Press Coat', 158676), (158681, 158681, 1, 1, 'Press Gear', 159889), (296609, 296609, 1, 1, 'Pretty Scarf', 296615), (296612, 296612, 1, 1, 'Pretty Snowman', 296588), (235413, 235413, 120, 120, 'Prevailing Brain Symbiant, Artillery Unit Aban', 215189), (235857, 235857, 120, 120, 'Prevailing Brain Symbiant, Extermination Unit Aban', 215189), (236082, 236082, 120, 120, 'Prevailing Brain Symbiant, Support Unit Aban', 215188), (236133, 236133, 120, 120, 'Prevailing Chest Symbiant, Support Unit Aban', 215181), (235874, 235874, 120, 120, 'Prevailing Ear Symbiant, Extermination Unit Aban', 230977), (236497, 236497, 120, 120, 'Prevailing Feet Symbiant, Control Unit Aban', 215185), (235824, 235824, 120, 120, 'Prevailing Feet Symbiant, Infantry Unit Aban', 215187), (236276, 236276, 120, 120, 'Prevailing Feet Symbiant, Support Unit Aban', 215187), (235927, 235927, 120, 120, 'Prevailing Left Arm Symbiant, Extermination Unit Aban', 215175), (236154, 236154, 120, 120, 'Prevailing Left Arm Symbiant, Support Unit Aban', 215175), (235587, 235587, 120, 120, 'Prevailing Left Hand Symbiant, Artillery Unit Aban', 215171), (235805, 235805, 120, 120, 'Prevailing Left Hand Symbiant, Infantry Unit Aban', 215172), (236261, 236261, 120, 120, 'Prevailing Left Hand Symbiant, Support Unit Aban', 215171), (235536, 235536, 120, 120, 'Prevailing Left Wrist Symbiant, Artillery Unit Aban', 215196), (236426, 236426, 120, 120, 'Prevailing Left Wrist Symbiant, Control Unit Aban', 215196), (235977, 235977, 120, 120, 'Prevailing Left Wrist Symbiant, Extermination Unit Aban', 215198), (235622, 235622, 120, 120, 'Prevailing Ocular Symbiant, Infantry Unit Aban', 230980), (236066, 236066, 120, 120, 'Prevailing Ocular Symbiant, Support Unit Aban', 230980), (235451, 235451, 120, 120, 'Prevailing Right Arm Symbiant, Artillery Unit Aban', 215176), (235892, 235892, 120, 120, 'Prevailing Right Arm Symbiant, Extermination Unit Aban', 215178), (235670, 235670, 120, 120, 'Prevailing Right Arm Symbiant, Infantry Unit Aban', 215180), (236114, 236114, 120, 120, 'Prevailing Right Arm Symbiant, Support Unit Aban', 215178), (235995, 235995, 120, 120, 'Prevailing Right Hand Symbiant, Extermination Unit Aban', 215173), (235947, 235947, 120, 120, 'Prevailing Right Wrist Symbiant, Extermination Unit Aban', 215170), (235721, 235721, 120, 120, 'Prevailing Right Wrist Symbiant, Infantry Unit Aban', 215197), (235518, 235518, 120, 120, 'Prevailing Waist Symbiant, Artillery Unit Aban', 215194), (235960, 235960, 120, 120, 'Prevailing Waist Symbiant, Extermination Unit Aban', 215193), (236194, 236194, 120, 120, 'Prevailing Waist Symbiant, Support Unit Aban', 215193), (207994, 207994, 125, 125, 'Prickly Tangleblade', 21135), (280720, 280720, 300, 300, 'Pride of the Xan', 280921), (269630, 269630, 1, 1, 'Primary Infrared Filter', 269423), (302920, 302920, 1, 1, 'Primed Spirit Capsule', 261597), (246208, 246208, 100, 100, 'Primitive Focus-Funneling Helper', 205510), (137263, 137264, 1, 200, 'Primitive Freon Bag Cooling System', 130737), (248910, 248910, 1, 1, 'Princess Robe of Ascension', 255317), (247106, 247107, 1, 300, 'Pristine Kyr''Ozch Bio-Material', 292811), (263919, 263919, 1, 1, 'Pristine Xan Notum Crystal', 220416), (281588, 281588, 1, 1, 'Private City Guest Key Generator', 256383), (254430, 254430, 1, 1, 'Private Laboratory', 159122), (254429, 254429, 1, 1, 'Private Study', 159122), (295738, 295738, 1, 1, 'Prized Houseplant', 119105), (302986, 302986, 1, 1, 'Prized Minibronto', 302987), (252013, 252013, 200, 200, 'Proactive Boots', 252432), (252015, 252015, 200, 200, 'Proactive Gloves', 252440), (252016, 252016, 200, 200, 'Proactive Helmet', 252429), (252011, 252011, 200, 200, 'Proactive Pants', 252438), (252014, 252014, 200, 200, 'Proactive Sleeves', 252436), (252012, 252012, 200, 200, 'Proactive Vest', 252434), (156592, 156592, 50, 50, 'Probe Casing Helmet', 96142), (273243, 273243, 1, 1, 'Probelet Tail Flaps', 156086), (246277, 246277, 100, 100, 'Problem Avoiding Device', 293707), (246278, 246278, 100, 100, 'Problem Seeking Device', 293706), (246276, 246276, 100, 100, 'Problem Solving Device', 293708), (268511, 268511, 150, 150, 'Processed Alien Armor Materials', 99668), (273242, 273242, 1, 1, 'Processor Chip', 158233), (290096, 290096, 20, 20, 'Profession Shirt Spawner', 12225), (250161, 250162, 161, 199, 'Professional Adapting Notum Lever', 33163), (150229, 150230, 121, 160, 'Professional Amytlo Executioner', 114001), (153331, 153331, 1, 1, 'Professional Amytlo Executioner Construction Manual', 136332), (123340, 123341, 42, 49, 'Professional Banjo', 85159), (122940, 122941, 161, 199, 'Professional Blackjohn', 33170), (144162, 144163, 161, 199, 'Professional Burning Copper Katana', 113998), (122175, 122176, 161, 199, 'Professional E-Blade', 13337), (160133, 160133, 200, 200, 'Professional Edwards RS Knife', 13349), (150220, 150221, 151, 180, 'Professional Fayalite Flamberge', 113987), (152106, 152107, 151, 180, 'Professional Fiddle Rifle', 13312), (153772, 153772, 1, 1, 'Professional Fiddle Rifle Construction Manual', 136329), (122821, 122822, 161, 199, 'Professional Gofle-Prod', 33168), (121738, 121739, 161, 199, 'Professional Haxor 9922', 13339), (130160, 130161, 161, 199, 'Professional Hayfork', 85168), (157626, 157627, 149, 199, 'Professional IMI Tellus TT', 13313), (160170, 160171, 121, 199, 'Professional KIWD 37 Hunter Crossbow', 114013), (160165, 160166, 121, 199, 'Professional KIWD 38 Sniper Crossbow', 114013), (121985, 121986, 161, 199, 'Professional Katana', 13326), (160151, 160151, 200, 200, 'Professional Light Suppressor', 31809), (152170, 152171, 181, 190, 'Professional Light Tube-Bow', 85167), (122061, 122062, 161, 199, 'Professional Longmoon', 13338), (152308, 152309, 151, 180, 'Professional Luxembourg Inferno Rifle', 13314), (152663, 152663, 1, 1, 'Professional Luxembourg Inferno Rifle Construction Manual', 136329), (152334, 152335, 101, 150, 'Professional MTI Aleph 99', 21148), (153895, 153895, 1, 1, 'Professional MTI Aleph 99 Construction Manual', 136332), (142801, 142802, 181, 199, 'Professional Madam Freeze', 13336), (216282, 216282, 150, 150, 'Professional Marksman''s Kit', 130788), (157714, 157715, 151, 199, 'Professional Mausser Chemical Streamer', 33154), (128973, 128974, 161, 199, 'Professional Merchant Warblade', 114011), (152285, 152286, 61, 80, 'Professional Michael Patriot Ffi 29A', 21148), (153179, 153179, 1, 1, 'Professional Michael Patriot Ffi 29A Construction Manual', 37933), (152295, 152296, 161, 199, 'Professional Michael Patriot Ffi 29B', 21148), (153291, 153291, 1, 1, 'Professional Michael Patriot Ffi 29B Construction Manual', 136329), (206723, 206723, 300, 300, 'Professional Mitaar of Snelton', 206710), (130122, 130123, 161, 199, 'Professional Notum Lever', 33163), (123016, 123017, 161, 199, 'Professional Notum Spear', 21135), (143822, 143822, 1, 1, 'Professional Notum Spear Construction Manual', 136329), (122978, 122979, 161, 199, 'Professional Notum Staff', 33162), (143736, 143736, 1, 1, 'Professional Notum Staff Construction Manual', 136329), (128954, 128955, 161, 199, 'Professional Peasant Warblade', 114009), (152119, 152120, 151, 180, 'Professional Pow Bow', 85167), (129011, 129012, 161, 199, 'Professional Protector Warblade', 114010), (128992, 128993, 161, 199, 'Professional Rider Warblade', 114012), (142814, 142815, 165, 195, 'Professional SSC Rustling Wakisashi', 113983), (150205, 150206, 151, 180, 'Professional Santiago Crossblade', 113983), (152132, 152133, 151, 180, 'Professional Sapphistic Bow', 85167), (129042, 129043, 161, 199, 'Professional Sledgehammer', 33167), (122921, 122922, 161, 199, 'Professional Support Beam', 33143), (122802, 122803, 161, 199, 'Professional Sword of Sir Galahad', 40781), (152744, 152745, 171, 199, 'Professional Tear Blade', 13347), (122764, 122765, 161, 199, 'Professional Two-Handed Blackjack', 33170), (121719, 121720, 161, 199, 'Professional Whings', 21139), (223466, 223466, 1, 1, 'Profiteer''s Helper', 159123), (168896, 168896, 1, 1, 'Profound Strike Pulser Wearable', 84059), (144801, 144802, 1, 255, 'Program Crystal', 297354), (250661, 250661, 1, 1, 'Program Overload', 255677), (164797, 164797, 1, 1, 'Programmable photon particle emitter', 83869), (203219, 203219, 199, 199, 'Programmed Photon Particle Emitter (A DCSD containing 1 BBI Minami-90 Sticky Love Rain)', 83680), (148848, 148848, 179, 179, 'Programmed Photon Particle Emitter (A Maker''s Touch)', 83706), (148573, 148573, 80, 80, 'Programmed Photon Particle Emitter (Abscess Explosion)', 83668), (160842, 160842, 142, 142, 'Programmed Photon Particle Emitter (Absolute Concentration)', 83578), (148772, 148772, 140, 140, 'Programmed Photon Particle Emitter (Absorb Punishment)', 144469), (149403, 149403, 66, 66, 'Programmed Photon Particle Emitter (Absorption Shield)', 144570), (149152, 149152, 33, 33, 'Programmed Photon Particle Emitter (Abyssal Flames)', 83834), (149153, 149153, 24, 24, 'Programmed Photon Particle Emitter (Accelerated Decay)', 83852), (149154, 149154, 24, 24, 'Programmed Photon Particle Emitter (Accelerated Titanium Pellet)', 83846), (149485, 149485, 74, 74, 'Programmed Photon Particle Emitter (Accomplished Health Haggler)', 83704), (148574, 148574, 152, 152, 'Programmed Photon Particle Emitter (Accumulate Scars)', 83705), (149155, 149155, 27, 27, 'Programmed Photon Particle Emitter (Acidic Conversion)', 83810), (148575, 148575, 149, 149, 'Programmed Photon Particle Emitter (Acidic Lesions)', 83669), (149156, 149156, 7, 7, 'Programmed Photon Particle Emitter (Acidic Projection)', 83810), (148993, 148993, 33, 33, 'Programmed Photon Particle Emitter (Active Distributed Entanglement)', 83719), (148994, 148994, 20, 20, 'Programmed Photon Particle Emitter (Active Micro Entanglement)', 83719), (148576, 148576, 33, 33, 'Programmed Photon Particle Emitter (Active Remedy)', 83700), (148577, 148577, 53, 53, 'Programmed Photon Particle Emitter (Active Viral Agent)', 83668), (163132, 163132, 149, 149, 'Programmed Photon Particle Emitter (Active Viral Compressor)', 83653), (149404, 149404, 132, 132, 'Programmed Photon Particle Emitter (Advanced Absorption Shield)', 144572), (148402, 148402, 136, 136, 'Programmed Photon Particle Emitter (Advanced Administrator-Droid)', 83764), (148403, 148403, 80, 80, 'Programmed Photon Particle Emitter (Advanced Aide-Droid)', 83763), (148849, 148849, 40, 40, 'Programmed Photon Particle Emitter (Advanced Android)', 83758), (148404, 148404, 57, 57, 'Programmed Photon Particle Emitter (Advanced Assistant-Droid)', 83763), (148405, 148405, 37, 37, 'Programmed Photon Particle Emitter (Advanced Attendant-Droid)', 83763), (148995, 148995, 142, 142, 'Programmed Photon Particle Emitter (Advanced Augmentation Cloud)', 144613), (148850, 148850, 14, 14, 'Programmed Photon Particle Emitter (Advanced Automaton)', 83758), (148406, 148406, 165, 165, 'Programmed Photon Particle Emitter (Advanced Bodyguard)', 83765), (148578, 148578, 136, 136, 'Programmed Photon Particle Emitter (Advanced Cellular Rebuild)', 83705), (149157, 149157, 163, 163, 'Programmed Photon Particle Emitter (Advanced Collapsing Barrier)', 144468), (149405, 149405, 119, 119, 'Programmed Photon Particle Emitter (Advanced Combat Barrier)', 144572), (148851, 148851, 126, 126, 'Programmed Photon Particle Emitter (Advanced Defensive Screen)', 144468), (149486, 149486, 123, 123, 'Programmed Photon Particle Emitter (Advanced Delayed Health Payment)', 83705), (148317, 148317, 150, 150, 'Programmed Photon Particle Emitter (Advanced Face Graft)', 83858), (148852, 148852, 179, 179, 'Programmed Photon Particle Emitter (Advanced Force Field)', 144470), (148853, 148853, 80, 80, 'Programmed Photon Particle Emitter (Advanced Gladiatorbot)', 83763), (148854, 148854, 116, 116, 'Programmed Photon Particle Emitter (Advanced Guardbot)', 83764), (149487, 149487, 103, 103, 'Programmed Photon Particle Emitter (Advanced Health Freeloader)', 144490), (149488, 149488, 30, 30, 'Programmed Photon Particle Emitter (Advanced Health Funnel)', 144487), (149489, 149489, 169, 169, 'Programmed Photon Particle Emitter (Advanced Health Plunder)', 144494), (148407, 148407, 20, 20, 'Programmed Photon Particle Emitter (Advanced Helper)', 83758), (148996, 148996, 103, 103, 'Programmed Photon Particle Emitter (Advanced Insurance Hack)', 83703), (149158, 149158, 107, 107, 'Programmed Photon Particle Emitter (Advanced Layered Protection)', 144466), (148408, 148408, 149, 149, 'Programmed Photon Particle Emitter (Advanced Minion)', 83765), (148580, 148580, 93, 93, 'Programmed Photon Particle Emitter (Advanced Nano Gorger)', 83668), (148997, 148997, 142, 142, 'Programmed Photon Particle Emitter (Advanced Policy Skim)', 83704), (148855, 148855, 119, 119, 'Programmed Photon Particle Emitter (Advanced Protective Field)', 144468), (148409, 148409, 109, 109, 'Programmed Photon Particle Emitter (Advanced Secretary-Droid)', 83764), (148856, 148856, 109, 109, 'Programmed Photon Particle Emitter (Advanced Shielding Barrier)', 144468), (148214, 148214, 146, 146, 'Programmed Photon Particle Emitter (Advanced Survival Technique)', 83702), (145081, 145081, 93, 93, 'Programmed Photon Particle Emitter (Advanced Symbol Manipulation)', 83752), (148857, 148857, 152, 152, 'Programmed Photon Particle Emitter (Advanced Warbot)', 83764), (148858, 148858, 169, 169, 'Programmed Photon Particle Emitter (Advanced Warmachine)', 83765), (148410, 148410, 7, 7, 'Programmed Photon Particle Emitter (Advanced Worker)', 83758), (148859, 148859, 189, 189, 'Programmed Photon Particle Emitter (Aegis Barrier)', 144470), (149406, 149406, 90, 90, 'Programmed Photon Particle Emitter (Aggressive Captivation)', 83678), (148773, 148773, 27, 27, 'Programmed Photon Particle Emitter (Aggressive Instincts)', 83678), (149159, 149159, 30, 30, 'Programmed Photon Particle Emitter (Aggressive Mutagen)', 83822), (148581, 148581, 159, 159, 'Programmed Photon Particle Emitter (All-Consuming Toxin)', 83669), (148215, 148215, 50, 50, 'Programmed Photon Particle Emitter (Alleviate Pain)', 83701), (148411, 148411, 136, 136, 'Programmed Photon Particle Emitter (Allure of Servitude)', 83780), (148582, 148582, 185, 185, 'Programmed Photon Particle Emitter (Alpha and Omega)', 83579), (149490, 149490, 4, 4, 'Programmed Photon Particle Emitter (Amateur Health Haggler)', 83700), (148318, 148318, 40, 40, 'Programmed Photon Particle Emitter (Anatomy Lesson)', 144611), (148860, 148860, 33, 33, 'Programmed Photon Particle Emitter (Android)', 83758), (148412, 148412, 27, 27, 'Programmed Photon Particle Emitter (Anger Addlement)', 83710), (145082, 145082, 4, 4, 'Programmed Photon Particle Emitter (Anger Manifestation)', 144523), (161406, 161406, 103, 103, 'Programmed Photon Particle Emitter (Anger of the Porcupine)', 83656), (151862, 151862, 110, 110, 'Programmed Photon Particle Emitter (Anima of Fathomless Rage)', 83730), (151863, 151863, 156, 156, 'Programmed Photon Particle Emitter (Anima of Implacable Hatred)', 83730), (151864, 151864, 189, 189, 'Programmed Photon Particle Emitter (Anima of Maddening Wrath)', 83730), (151865, 151865, 212, 212, 'Programmed Photon Particle Emitter (Anima of Pure Malevolence)', 83730), (151859, 151859, 67, 67, 'Programmed Photon Particle Emitter (Anima of Relentless Fury)', 83730), (151866, 151866, 239, 239, 'Programmed Photon Particle Emitter (Anima of The Abomination)', 83730), (151860, 151860, 37, 37, 'Programmed Photon Particle Emitter (Anima of Unleashed Malice)', 83730), (151861, 151861, 14, 14, 'Programmed Photon Particle Emitter (Anima of Unrestrained Ferocity)', 83730), (149160, 149160, 165, 165, 'Programmed Photon Particle Emitter (Annihilating Hadron String)', 83857), (149407, 149407, 70, 70, 'Programmed Photon Particle Emitter (Annoying Presence)', 83678), (145083, 145083, 50, 50, 'Programmed Photon Particle Emitter (Anticipation of Retaliation)', 83684), (202895, 202895, 133, 133, 'Programmed Photon Particle Emitter (Anvils Bane)', 83588), (203898, 203898, 74, 74, 'Programmed Photon Particle Emitter (Appeal for Freedom)', 83648), (149493, 149493, 17, 17, 'Programmed Photon Particle Emitter (Apprentice Health Haggler)', 83701), (149491, 149491, 24, 24, 'Programmed Photon Particle Emitter (Apprentice: Electrical Engineering)', 83679), (149492, 149492, 27, 27, 'Programmed Photon Particle Emitter (Apprentice: Field Quantum Physics)', 83687), (149494, 149494, 30, 30, 'Programmed Photon Particle Emitter (Apprentice: Mechanical Engineering)', 83744), (149495, 149495, 33, 33, 'Programmed Photon Particle Emitter (Apprentice: Pharmaceuticals)', 83766), (149496, 149496, 33, 33, 'Programmed Photon Particle Emitter (Apprentice: Weapon Smithing)', 83866), (148774, 148774, 37, 37, 'Programmed Photon Particle Emitter (Arctic Cloak)', 83656), (148216, 148216, 83, 83, 'Programmed Photon Particle Emitter (Arctic Gale)', 83656), (149161, 149161, 73, 73, 'Programmed Photon Particle Emitter (Arctic Welcome)', 83818), (148861, 148861, 1, 1, 'Programmed Photon Particle Emitter (Armor Megaboost)', 83634), (149497, 149497, 185, 185, 'Programmed Photon Particle Emitter (Armor Trade-In)', 144484), (203164, 203164, 161, 161, 'Programmed Photon Particle Emitter (Art of peace)', 83635), (148319, 148319, 139, 139, 'Programmed Photon Particle Emitter (Assassin''s Grin)', 144614), (149408, 149408, 50, 50, 'Programmed Photon Particle Emitter (Assault Rifle Mastery)', 83635), (205271, 205271, 117, 117, 'Programmed Photon Particle Emitter (Assist Aggression Subsystem)', 83760), (205256, 205256, 15, 15, 'Programmed Photon Particle Emitter (Assist Combat Array)', 83760), (148320, 148320, 86, 86, 'Programmed Photon Particle Emitter (Assume Profession: Adventurer)', 83798), (148321, 148321, 109, 109, 'Programmed Photon Particle Emitter (Assume Profession: Bureaucrat)', 83798), (148322, 148322, 103, 103, 'Programmed Photon Particle Emitter (Assume Profession: Doctor)', 83798), (148323, 148323, 76, 76, 'Programmed Photon Particle Emitter (Assume Profession: Enforcer)', 83798), (148324, 148324, 90, 90, 'Programmed Photon Particle Emitter (Assume Profession: Engineer)', 83798), (148325, 148325, 96, 96, 'Programmed Photon Particle Emitter (Assume Profession: Fixer)', 83798), (148326, 148326, 83, 83, 'Programmed Photon Particle Emitter (Assume Profession: Martial Artist)', 83798), (148327, 148327, 113, 113, 'Programmed Photon Particle Emitter (Assume Profession: Meta-Physicist)', 83798), (148328, 148328, 119, 119, 'Programmed Photon Particle Emitter (Assume Profession: Nanotechnician)', 83798), (148329, 148329, 80, 80, 'Programmed Photon Particle Emitter (Assume Profession: Soldier)', 83798), (148330, 148330, 99, 99, 'Programmed Photon Particle Emitter (Assume Profession: Trader)', 83798), (149162, 149162, 159, 159, 'Programmed Photon Particle Emitter (Atomic Collapse)', 83856), (149409, 149409, 27, 27, 'Programmed Photon Particle Emitter (Attack Booster)', 83637), (148998, 148998, 106, 106, 'Programmed Photon Particle Emitter (Augmentation Cloud)', 144612), (149163, 149163, 50, 50, 'Programmed Photon Particle Emitter (Augmented Energized Beam)', 83829), (148413, 148413, 43, 43, 'Programmed Photon Particle Emitter (Authority Figure)', 83782), (149410, 149410, 106, 106, 'Programmed Photon Particle Emitter (Automatic Targeting)', 83636), (148862, 148862, 7, 7, 'Programmed Photon Particle Emitter (Automaton)', 83758), (148583, 148583, 146, 146, 'Programmed Photon Particle Emitter (Autonomous Viral Agent)', 83669), (148775, 148775, 4, 4, 'Programmed Photon Particle Emitter (Avenging Shield)', 83656), (149584, 149584, 44, 44, 'Programmed Photon Particle Emitter (Average Delayed Health Payment)', 83702), (149585, 149585, 70, 70, 'Programmed Photon Particle Emitter (Average Health Freeloader)', 144489), (149586, 149586, 10, 10, 'Programmed Photon Particle Emitter (Average Health Funnel)', 144486), (149587, 149587, 149, 149, 'Programmed Photon Particle Emitter (Average Health Plunder)', 144492), (148999, 148999, 57, 57, 'Programmed Photon Particle Emitter (Back Pain)', 83793), (162762, 162762, 132, 132, 'Programmed Photon Particle Emitter (Backyard Revitalization)', 83705), (149164, 149164, 10, 10, 'Programmed Photon Particle Emitter (Bacterial Invasion)', 83822), (149067, 149067, 24, 24, 'Programmed Photon Particle Emitter (Bad Blood)', 83678), (149498, 149498, 7, 7, 'Programmed Photon Particle Emitter (Balanced Striker)', 83868), (148776, 148776, 57, 57, 'Programmed Photon Particle Emitter (Baleful Stare)', 83678), (149165, 149165, 106, 106, 'Programmed Photon Particle Emitter (Ball and Chain)', 83716), (161421, 161421, 47, 47, 'Programmed Photon Particle Emitter (Ballad of Smoke)', 83767), (161424, 161424, 99, 99, 'Programmed Photon Particle Emitter (Ballad of the Desperado)', 83767), (161427, 161427, 142, 142, 'Programmed Photon Particle Emitter (Ballad of the Pistolero)', 83767), (161430, 161430, 169, 169, 'Programmed Photon Particle Emitter (Ballad of the Plains Wanderer)', 83767), (149166, 149166, 113, 113, 'Programmed Photon Particle Emitter (Bane of the Living)', 83825), (148777, 148777, 83, 83, 'Programmed Photon Particle Emitter (Barbaric Blades)', 83656), (203696, 203696, 168, 168, 'Programmed Photon Particle Emitter (Bargain with Fate)', 83648), (149167, 149167, 96, 96, 'Programmed Photon Particle Emitter (Barrage of Blades)', 83615), (149168, 149168, 109, 109, 'Programmed Photon Particle Emitter (Barrage of Fire)', 83610), (148414, 148414, 129, 129, 'Programmed Photon Particle Emitter (Basic Administrator)', 83764), (148415, 148415, 70, 70, 'Programmed Photon Particle Emitter (Basic Aide-Droid)', 83763), (148416, 148416, 47, 47, 'Programmed Photon Particle Emitter (Basic Assistant-Droid)', 83763), (148417, 148417, 27, 27, 'Programmed Photon Particle Emitter (Basic Attendant-Droid)', 83758), (148418, 148418, 159, 159, 'Programmed Photon Particle Emitter (Basic Bodyguard)', 83765), (149169, 149169, 73, 73, 'Programmed Photon Particle Emitter (Basic Crystalizing Ray)', 83818), (148863, 148863, 37, 37, 'Programmed Photon Particle Emitter (Basic Defensive Screen)', 144466), (148864, 148864, 159, 159, 'Programmed Photon Particle Emitter (Basic Force Field)', 144469), (148419, 148419, 14, 14, 'Programmed Photon Particle Emitter (Basic Helper-Droid)', 83758), (149170, 149170, 17, 17, 'Programmed Photon Particle Emitter (Basic Humidity Extractor)', 83754), (149000, 149000, 4, 4, 'Programmed Photon Particle Emitter (Basic Insurance Hack)', 83700), (148420, 148420, 142, 142, 'Programmed Photon Particle Emitter (Basic Minion)', 83765), (148584, 148584, 149, 149, 'Programmed Photon Particle Emitter (Basic Omni-Med Enhancement)', 144475), (149001, 149001, 66, 66, 'Programmed Photon Particle Emitter (Basic Policy Skim)', 83702), (148865, 148865, 33, 33, 'Programmed Photon Particle Emitter (Basic Protective Field)', 144466), (148421, 148421, 96, 96, 'Programmed Photon Particle Emitter (Basic Secretary-Droid)', 83764), (148866, 148866, 27, 27, 'Programmed Photon Particle Emitter (Basic Shielding Barrier)', 83634), (148422, 148422, 1, 1, 'Programmed Photon Particle Emitter (Basic Worker-Droid)', 83758), (148423, 148423, 17, 17, 'Programmed Photon Particle Emitter (Baton of Authority)', 83859), (148424, 148424, 162, 162, 'Programmed Photon Particle Emitter (Baton of Command)', 83859), (148425, 148425, 99, 99, 'Programmed Photon Particle Emitter (Baton of Leadership)', 83859), (149411, 149411, 152, 152, 'Programmed Photon Particle Emitter (Battlefield Endurance)', 144479), (154921, 154921, 90, 90, 'Programmed Photon Particle Emitter (Beacon Warp)', 83858), (203892, 203892, 24, 24, 'Programmed Photon Particle Emitter (Beg for Freedom)', 83648), (148426, 148426, 33, 33, 'Programmed Photon Particle Emitter (Bend Will)', 83780), (203991, 203991, 78, 78, 'Programmed Photon Particle Emitter (Beseech Freedom)', 83648), (148585, 148585, 146, 146, 'Programmed Photon Particle Emitter (Bestow Healing)', 83705), (149171, 149171, 30, 30, 'Programmed Photon Particle Emitter (Bewilder)', 83710), (148586, 148586, 24, 24, 'Programmed Photon Particle Emitter (Bind Wounds)', 83701), (149172, 149172, 119, 119, 'Programmed Photon Particle Emitter (Bio-Acid Spray)', 83813), (145084, 145084, 37, 37, 'Programmed Photon Particle Emitter (BioMet Mastery)', 83639), (162753, 162753, 93, 93, 'Programmed Photon Particle Emitter (Biosign Rejuvenator)', 83703), (148588, 148588, 27, 27, 'Programmed Photon Particle Emitter (Biotoxin MK I)', 83664), (148589, 148589, 43, 43, 'Programmed Photon Particle Emitter (Biotoxin MK II)', 83664), (148590, 148590, 73, 73, 'Programmed Photon Particle Emitter (Biotoxin MK III)', 83668), (148591, 148591, 93, 93, 'Programmed Photon Particle Emitter (Biotoxin MK IV)', 83669), (161412, 161412, 103, 103, 'Programmed Photon Particle Emitter (Bite of the Wind)', 83790), (148217, 148217, 126, 126, 'Programmed Photon Particle Emitter (Biting Blades)', 83656), (162750, 162750, 70, 70, 'Programmed Photon Particle Emitter (Blackmarket Prescription)', 83703), (149173, 149173, 86, 86, 'Programmed Photon Particle Emitter (Blade Chaos)', 83842), (161394, 161394, 66, 66, 'Programmed Photon Particle Emitter (Blanket of Shadows)', 83654), (149174, 149174, 169, 169, 'Programmed Photon Particle Emitter (Blaze of Hephaestos)', 83611), (149175, 149175, 33, 33, 'Programmed Photon Particle Emitter (Blight)', 83668), (148427, 148427, 50, 50, 'Programmed Photon Particle Emitter (Blizzard of Red Tape)', 83715), (148592, 148592, 24, 24, 'Programmed Photon Particle Emitter (Blood Circle)', 83700), (149002, 149002, 116, 116, 'Programmed Photon Particle Emitter (Blood Makes Noise)', 83757), (148593, 148593, 129, 129, 'Programmed Photon Particle Emitter (Bloom of Health)', 83705), (162346, 162346, 159, 159, 'Programmed Photon Particle Emitter (Blur of Claws)', 144612), (148594, 148594, 43, 43, 'Programmed Photon Particle Emitter (Bodily Amplification)', 83795), (148595, 148595, 146, 146, 'Programmed Photon Particle Emitter (Bodily Purification)', 83706), (148596, 148596, 10, 10, 'Programmed Photon Particle Emitter (Bodily Reinforcement)', 144475), (149176, 149176, 152, 152, 'Programmed Photon Particle Emitter (Boil Blood)', 83665), (149177, 149177, 126, 126, 'Programmed Photon Particle Emitter (Boil from Within)', 83672), (205280, 205280, 174, 174, 'Programmed Photon Particle Emitter (Boost Aggression Subsystem)', 83760), (205265, 205265, 77, 77, 'Programmed Photon Particle Emitter (Boost Combat Array)', 83760), (149412, 149412, 17, 17, 'Programmed Photon Particle Emitter (Boot Camp Toughness)', 83641), (155478, 155478, 67, 67, 'Programmed Photon Particle Emitter (Bootleg Beamers ''n Bolters (OP-C))', 144601), (155473, 155473, 120, 120, 'Programmed Photon Particle Emitter (Bootleg Beamers ''n Bolters (OP-CC))', 144602), (155475, 155475, 107, 107, 'Programmed Photon Particle Emitter (Bootleg Beamers ''n Bolters (OP-CLX))', 144602), (155474, 155474, 113, 113, 'Programmed Photon Particle Emitter (Bootleg Beamers ''n Bolters (OP-CLXXX))', 144602), (155476, 155476, 103, 103, 'Programmed Photon Particle Emitter (Bootleg Beamers ''n Bolters (OP-CXL))', 144601), (155477, 155477, 90, 90, 'Programmed Photon Particle Emitter (Bootleg Beamers ''n Bolters (OP-CXX))', 144601), (155480, 155480, 34, 34, 'Programmed Photon Particle Emitter (Bootleg Beamers ''n Bolters (OP-LX))', 144600), (155479, 155479, 54, 54, 'Programmed Photon Particle Emitter (Bootleg Beamers ''n Bolters (OP-LXXX))', 144600), (155481, 155481, 21, 21, 'Programmed Photon Particle Emitter (Bootleg Beamers ''n Bolters (OP-XL))', 144600), (155482, 155482, 8, 8, 'Programmed Photon Particle Emitter (Bootleg Beamers ''n Bolters (OP-XX))', 144600), (155468, 155468, 67, 67, 'Programmed Photon Particle Emitter (Bootleg Blades ''n Blunts (OP-C))', 144598), (155463, 155463, 120, 120, 'Programmed Photon Particle Emitter (Bootleg Blades ''n Blunts (OP-CC))', 144599), (155465, 155465, 107, 107, 'Programmed Photon Particle Emitter (Bootleg Blades ''n Blunts (OP-CLX))', 144599), (155464, 155464, 113, 113, 'Programmed Photon Particle Emitter (Bootleg Blades ''n Blunts (OP-CLXXX))', 144599), (155466, 155466, 103, 103, 'Programmed Photon Particle Emitter (Bootleg Blades ''n Blunts (OP-CXL))', 144598), (155467, 155467, 90, 90, 'Programmed Photon Particle Emitter (Bootleg Blades ''n Blunts (OP-CXX))', 144598), (155470, 155470, 34, 34, 'Programmed Photon Particle Emitter (Bootleg Blades ''n Blunts (OP-LX))', 144597), (155469, 155469, 54, 54, 'Programmed Photon Particle Emitter (Bootleg Blades ''n Blunts (OP-LXXX))', 144597), (155471, 155471, 21, 21, 'Programmed Photon Particle Emitter (Bootleg Blades ''n Blunts (OP-XL))', 144597), (155472, 155472, 8, 8, 'Programmed Photon Particle Emitter (Bootleg Blades ''n Blunts (OP-XX))', 144597), (203938, 203938, 80, 80, 'Programmed Photon Particle Emitter (Bought Freedom)', 83648), (203944, 203944, 160, 160, 'Programmed Photon Particle Emitter (Bought Indulgence)', 83648), (149178, 149178, 149, 149, 'Programmed Photon Particle Emitter (Boundless Humidity Extractor)', 83754), (149499, 149499, 97, 97, 'Programmed Photon Particle Emitter (Brain Bender)', 83711), (149500, 149500, 50, 50, 'Programmed Photon Particle Emitter (Brain Swap)', 83710), (148779, 148779, 142, 142, 'Programmed Photon Particle Emitter (Brave Challenger to Behemoth)', 144516), (148780, 148780, 119, 119, 'Programmed Photon Particle Emitter (Brave Challenger to Colossus)', 144514), (148784, 148784, 14, 14, 'Programmed Photon Particle Emitter (Brave Challenger to Cyclops)', 83694), (148781, 148781, 76, 76, 'Programmed Photon Particle Emitter (Brave Challenger to Gargantua)', 144513), (148782, 148782, 132, 132, 'Programmed Photon Particle Emitter (Brave Challenger to Leviathan)', 144515), (148783, 148783, 40, 40, 'Programmed Photon Particle Emitter (Brave Challenger to Titan)', 144512), (204015, 204015, 52, 52, 'Programmed Photon Particle Emitter (Break Chains)', 83648), (203904, 203904, 149, 149, 'Programmed Photon Particle Emitter (Bribe for Freedom)', 83648), (148331, 148331, 47, 47, 'Programmed Photon Particle Emitter (Brief Interrogation)', 83715), (149179, 149179, 24, 24, 'Programmed Photon Particle Emitter (Brief Poison Fog)', 83595), (149501, 149501, 33, 33, 'Programmed Photon Particle Emitter (Bright Shiny Sparkling Thing)', 83710), (148785, 148785, 73, 73, 'Programmed Photon Particle Emitter (Bristling Guard)', 83656), (148786, 148786, 10, 10, 'Programmed Photon Particle Emitter (Bristling Shield)', 83656), (149180, 149180, 159, 159, 'Programmed Photon Particle Emitter (Brutal Cornea Attack)', 83755), (148787, 148787, 76, 76, 'Programmed Photon Particle Emitter (Brutal Thug)', 83640), (149502, 149502, 96, 96, 'Programmed Photon Particle Emitter (Bulk Trader)', 83782), (149181, 149181, 189, 189, 'Programmed Photon Particle Emitter (Burden of Atlas)', 83717), (149182, 149182, 93, 93, 'Programmed Photon Particle Emitter (Burn From Within)', 83836), (149183, 149183, 182, 182, 'Programmed Photon Particle Emitter (Burning Bones)', 83839), (149184, 149184, 57, 57, 'Programmed Photon Particle Emitter (Burning Orb)', 83835), (149185, 149185, 126, 126, 'Programmed Photon Particle Emitter (Burning Quartet)', 83837), (149186, 149186, 93, 93, 'Programmed Photon Particle Emitter (Burning Triumvirate)', 83836), (204044, 204044, 63, 63, 'Programmed Photon Particle Emitter (Burst Bonds (Other))', 83648), (203690, 203690, 53, 53, 'Programmed Photon Particle Emitter (Burst Bonds)', 83648), (203705, 203705, 62, 62, 'Programmed Photon Particle Emitter (Bypass Limitations)', 83648), (148219, 148219, 179, 179, 'Programmed Photon Particle Emitter (Calia''s Form: Pit Lizard (Other))', 83773), (148220, 148220, 182, 182, 'Programmed Photon Particle Emitter (Calia''s Form: Pit Lizard (Team))', 83773), (148218, 148218, 172, 172, 'Programmed Photon Particle Emitter (Calia''s Form: Pit Lizard)', 83773), (148225, 148225, 165, 165, 'Programmed Photon Particle Emitter (Calia''s Form: Sabretooth (Other))', 83771), (148226, 148226, 175, 175, 'Programmed Photon Particle Emitter (Calia''s Form: Sabretooth (Team))', 83771), (148224, 148224, 159, 159, 'Programmed Photon Particle Emitter (Calia''s Form: Sabretooth)', 83771), (148228, 148228, 159, 159, 'Programmed Photon Particle Emitter (Calia''s Form: Wolf (Other))', 83777), (148229, 148229, 162, 162, 'Programmed Photon Particle Emitter (Calia''s Form: Wolf (Team))', 83777), (148227, 148227, 156, 156, 'Programmed Photon Particle Emitter (Calia''s Form: Wolf)', 83777), (144820, 144820, 156, 156, 'Programmed Photon Particle Emitter (Calling of Altumus)', 144529), (144821, 144821, 186, 186, 'Programmed Photon Particle Emitter (Calling of Belamorte)', 144530), (145085, 145085, 169, 169, 'Programmed Photon Particle Emitter (Calling of Curatem The Grand)', 144529), (145086, 145086, 17, 17, 'Programmed Photon Particle Emitter (Calling of Medinos)', 144527), (145087, 145087, 113, 113, 'Programmed Photon Particle Emitter (Calling of Restite)', 144528), (145088, 145088, 37, 37, 'Programmed Photon Particle Emitter (Calling of Salvinous)', 144527), (145089, 145089, 87, 87, 'Programmed Photon Particle Emitter (Calling of Sanoo)', 144528), (145090, 145090, 143, 143, 'Programmed Photon Particle Emitter (Calling of The Vivificator)', 144528), (202892, 202892, 197, 197, 'Programmed Photon Particle Emitter (Calling of Thor)', 83640), (145091, 145091, 57, 57, 'Programmed Photon Particle Emitter (Calling of Valentyia)', 144527), (148597, 148597, 33, 33, 'Programmed Photon Particle Emitter (Cancerous Burrower)', 83664), (149503, 149503, 34, 34, 'Programmed Photon Particle Emitter (Capable Health Haggler)', 83702), (148429, 148429, 66, 66, 'Programmed Photon Particle Emitter (Captivate Crowd)', 83715), (148430, 148430, 109, 109, 'Programmed Photon Particle Emitter (Captivated Thoughts)', 83780), (148431, 148431, 152, 152, 'Programmed Photon Particle Emitter (Captivating Speech)', 83717), (148432, 148432, 40, 40, 'Programmed Photon Particle Emitter (Capture Attention)', 83714), (149187, 149187, 175, 175, 'Programmed Photon Particle Emitter (Cascade of the Storm)', 83833), (162765, 162765, 146, 146, 'Programmed Photon Particle Emitter (Cellular Crashcart)', 83706), (149188, 149188, 40, 40, 'Programmed Photon Particle Emitter (Cellular Decay)', 83823), (148598, 148598, 156, 156, 'Programmed Photon Particle Emitter (Cellular Dismantlement)', 83669), (148599, 148599, 47, 47, 'Programmed Photon Particle Emitter (Cellular Grafting)', 83702), (148600, 148600, 86, 86, 'Programmed Photon Particle Emitter (Cellular Rebuild)', 83703), (148230, 148230, 83, 83, 'Programmed Photon Particle Emitter (Cellular Reformation)', 83701), (148433, 148433, 165, 165, 'Programmed Photon Particle Emitter (Chains of Iron)', 83709), (148789, 148789, 139, 139, 'Programmed Photon Particle Emitter (Challenger to Behemoth)', 144516), (148790, 148790, 103, 103, 'Programmed Photon Particle Emitter (Challenger to Colossus)', 144514), (148791, 148791, 4, 4, 'Programmed Photon Particle Emitter (Challenger to Cyclops)', 83694), (148792, 148792, 66, 66, 'Programmed Photon Particle Emitter (Challenger to Gargantua)', 144513), (148793, 148793, 132, 132, 'Programmed Photon Particle Emitter (Challenger to Leviathan)', 144515), (148794, 148794, 33, 33, 'Programmed Photon Particle Emitter (Challenger to Titan)', 144512), (145092, 145092, 130, 130, 'Programmed Photon Particle Emitter (Chant of Effortless Strikes)', 83647), (145093, 145093, 87, 87, 'Programmed Photon Particle Emitter (Chant of Frenzied Blows)', 83647), (149189, 149189, 139, 139, 'Programmed Photon Particle Emitter (Chaos Lights)', 83831), (149190, 149190, 47, 47, 'Programmed Photon Particle Emitter (Chaotic Entropy)', 83829), (155629, 155629, 173, 173, 'Programmed Photon Particle Emitter (Character Assassin)', 83782), (148434, 148434, 169, 169, 'Programmed Photon Particle Emitter (Charismatic Rapture)', 83780), (149191, 149191, 24, 24, 'Programmed Photon Particle Emitter (Chemical Burn)', 83810), (148332, 148332, 63, 63, 'Programmed Photon Particle Emitter (Chemical Concoction)', 83650), (149192, 149192, 103, 103, 'Programmed Photon Particle Emitter (Chemical Liquefaction)', 83812), (145094, 145094, 116, 116, 'Programmed Photon Particle Emitter (Chill Spear)', 83818), (149193, 149193, 33, 33, 'Programmed Photon Particle Emitter (Chilling Stream)', 83816), (149068, 149068, 142, 142, 'Programmed Photon Particle Emitter (Chirp of the Mournful Cricket)', 144613), (149195, 149195, 60, 60, 'Programmed Photon Particle Emitter (Circle Scythe)', 83614), (148601, 148601, 149, 149, 'Programmed Photon Particle Emitter (Circle of Renewal)', 83705), (149194, 149194, 50, 50, 'Programmed Photon Particle Emitter (Circle of Winter)', 83590), (148602, 148602, 129, 129, 'Programmed Photon Particle Emitter (Circulate Health)', 83704), (203708, 203708, 109, 109, 'Programmed Photon Particle Emitter (Circumvent Restrictions)', 83648), (148867, 148867, 149, 149, 'Programmed Photon Particle Emitter (Citadel of Spikes)', 83656), (149196, 149196, 7, 7, 'Programmed Photon Particle Emitter (Claw Eyes)', 83755), (148603, 148603, 96, 96, 'Programmed Photon Particle Emitter (Cleanse Wounds)', 83703), (148231, 148231, 37, 37, 'Programmed Photon Particle Emitter (Cloak of Fire)', 83656), (161388, 161388, 129, 129, 'Programmed Photon Particle Emitter (Cloak of Night)', 83654), (203681, 203681, 164, 164, 'Programmed Photon Particle Emitter (Close Escape)', 83648), (148604, 148604, 90, 90, 'Programmed Photon Particle Emitter (Close Wounds)', 83704), (148232, 148232, 1, 1, 'Programmed Photon Particle Emitter (Coat of Barbs)', 83656), (149197, 149197, 40, 40, 'Programmed Photon Particle Emitter (Coherent Nano Pathway)', 83648), (145095, 145095, 90, 90, 'Programmed Photon Particle Emitter (Coherent Notum Web)', 83754), (204447, 204447, 193, 193, 'Programmed Photon Particle Emitter (Coherent Polarized Screening)', 144469), (149198, 149198, 142, 142, 'Programmed Photon Particle Emitter (Coherent Positron Stream)', 83832), (204465, 204465, 193, 193, 'Programmed Photon Particle Emitter (Coherent Sloughing Assault Shield)', 83577), (204459, 204459, 133, 133, 'Programmed Photon Particle Emitter (Coherent Sloughing Defensive Shield)', 83577), (204453, 204453, 83, 83, 'Programmed Photon Particle Emitter (Coherent Sloughing Protective Barrier)', 83577), (149199, 149199, 63, 63, 'Programmed Photon Particle Emitter (Cohesion Amplifier)', 83648), (149069, 149069, 132, 132, 'Programmed Photon Particle Emitter (Cohort)', 83695), (149200, 149200, 146, 146, 'Programmed Photon Particle Emitter (Collapsing Barrier)', 144467), (149201, 149201, 149, 149, 'Programmed Photon Particle Emitter (Collapsing Hadron String)', 83856), (148605, 148605, 116, 116, 'Programmed Photon Particle Emitter (Colossal Health)', 144475), (149413, 149413, 50, 50, 'Programmed Photon Particle Emitter (Combat Barrier)', 144570), (149414, 149414, 33, 33, 'Programmed Photon Particle Emitter (Combat Hardening)', 144475), (148868, 148868, 30, 30, 'Programmed Photon Particle Emitter (Common Android)', 83758), (148869, 148869, 7, 7, 'Programmed Photon Particle Emitter (Common Automaton)', 83758), (148870, 148870, 66, 66, 'Programmed Photon Particle Emitter (Common Gladiatorbot)', 83763), (148871, 148871, 103, 103, 'Programmed Photon Particle Emitter (Common Guardbot)', 83763), (148872, 148872, 146, 146, 'Programmed Photon Particle Emitter (Common Warbot)', 83764), (148873, 148873, 165, 165, 'Programmed Photon Particle Emitter (Common Warmachine)', 83765), (149504, 149504, 37, 37, 'Programmed Photon Particle Emitter (Commonplace Delayed Health Payment)', 83702), (149202, 149202, 165, 165, 'Programmed Photon Particle Emitter (Compacted Neutron Missile)', 83844), (148606, 148606, 37, 37, 'Programmed Photon Particle Emitter (Company Policy)', 83701), (148607, 148607, 169, 169, 'Programmed Photon Particle Emitter (Complete Healing)', 83707), (148608, 148608, 146, 146, 'Programmed Photon Particle Emitter (Complex Nano Contagion)', 83669), (148609, 148609, 152, 152, 'Programmed Photon Particle Emitter (Compress Wounds)', 83706), (149203, 149203, 70, 70, 'Programmed Photon Particle Emitter (Compressed Shockwave)', 83842), (149204, 149204, 30, 30, 'Programmed Photon Particle Emitter (Condensed Halon Jet)', 83816), (149205, 149205, 99, 99, 'Programmed Photon Particle Emitter (Condensed Pellet of Fire)', 83836), (149206, 149206, 156, 156, 'Programmed Photon Particle Emitter (Conduction Stream)', 83832), (203917, 203917, 128, 128, 'Programmed Photon Particle Emitter (Conductive Spike)', 83648), (148610, 148610, 182, 182, 'Programmed Photon Particle Emitter (Conglomerate Health Plan)', 83707), (148611, 148611, 146, 146, 'Programmed Photon Particle Emitter (Constitution Magnification)', 144583), (148612, 148612, 106, 106, 'Programmed Photon Particle Emitter (Consuming Toxin)', 83668), (148613, 148613, 106, 106, 'Programmed Photon Particle Emitter (Consummate Carer)', 83703), (149003, 149003, 27, 27, 'Programmed Photon Particle Emitter (Contact Poison)', 83868), (149207, 149207, 136, 136, 'Programmed Photon Particle Emitter (Contained Plasma Sphere)', 83837), (155581, 155581, 189, 189, 'Programmed Photon Particle Emitter (Contemplation)', 83713), (148614, 148614, 126, 126, 'Programmed Photon Particle Emitter (Continuous Cellular Reconditioning)', 83703), (149505, 149505, 176, 176, 'Programmed Photon Particle Emitter (Control Ends and Means)', 83713), (148874, 148874, 99, 99, 'Programmed Photon Particle Emitter (Controlled Energy Overload)', 144611), (149208, 149208, 76, 76, 'Programmed Photon Particle Emitter (Convergent Energy Beam)', 83830), (149209, 149209, 96, 96, 'Programmed Photon Particle Emitter (Cornea Attack)', 83755), (149210, 149210, 132, 132, 'Programmed Photon Particle Emitter (Coronet of Frost)', 83819), (148233, 148233, 132, 132, 'Programmed Photon Particle Emitter (Corrosive Barrier)', 83656), (161899, 161899, 179, 179, 'Programmed Photon Particle Emitter (Corrosive Cloud)', 83671), (149070, 149070, 37, 37, 'Programmed Photon Particle Emitter (Corrosive Fists)', 144610), (149211, 149211, 10, 10, 'Programmed Photon Particle Emitter (Corrosive Spray)', 83810), (149212, 149212, 103, 103, 'Programmed Photon Particle Emitter (Corrupt Molecular Integrity)', 83824), (149213, 149213, 4, 4, 'Programmed Photon Particle Emitter (Corruption)', 83664), (148795, 148795, 146, 146, 'Programmed Photon Particle Emitter (Coruscating Screen)', 83656), (148616, 148616, 50, 50, 'Programmed Photon Particle Emitter (Counteract Damage)', 83702), (148617, 148617, 86, 86, 'Programmed Photon Particle Emitter (Course of Treatment)', 83702), (149004, 149004, 14, 14, 'Programmed Photon Particle Emitter (Cracker''s Luck)', 83757), (149071, 149071, 10, 10, 'Programmed Photon Particle Emitter (Crash of Thunder)', 83868), (155053, 155053, 116, 116, 'Programmed Photon Particle Emitter (Creation: Asp of Semol)', 144598), (155052, 155052, 215, 215, 'Programmed Photon Particle Emitter (Creation: Azure Cobra of Orma)', 144598), (155051, 155051, 147, 147, 'Programmed Photon Particle Emitter (Creation: Belthior''s Flame Ward)', 144598), (155050, 155050, 136, 136, 'Programmed Photon Particle Emitter (Creation: Bitis Striker)', 144598), (155047, 155047, 90, 90, 'Programmed Photon Particle Emitter (Creation: Coplan''s Hand Taipan)', 144598), (155049, 155049, 177, 177, 'Programmed Photon Particle Emitter (Creation: Death Ward)', 144598), (155048, 155048, 190, 190, 'Programmed Photon Particle Emitter (Creation: Gold Acantophis)', 144598), (155046, 155046, 112, 112, 'Programmed Photon Particle Emitter (Creation: Living Shield of Evernan)', 144598), (155037, 155037, 187, 187, 'Programmed Photon Particle Emitter (Creation: Mocham''s Guard)', 144598), (155044, 155044, 72, 72, 'Programmed Photon Particle Emitter (Creation: Notum Defender)', 144598), (155043, 155043, 205, 205, 'Programmed Photon Particle Emitter (Creation: Shield of Asmodian)', 144598), (155042, 155042, 85, 85, 'Programmed Photon Particle Emitter (Creation: Solar Guard)', 144598), (155041, 155041, 48, 48, 'Programmed Photon Particle Emitter (Creation: The Crotalus)', 144598), (155040, 155040, 66, 66, 'Programmed Photon Particle Emitter (Creation: Viper Staff)', 144598), (155039, 155039, 59, 59, 'Programmed Photon Particle Emitter (Creation: Vital Bucker)', 144598), (155038, 155038, 129, 129, 'Programmed Photon Particle Emitter (Creation: Wave Breaker)', 144598), (155045, 155045, 160, 160, 'Programmed Photon Particle Emitter (Creation: Wixel''s Notum Python)', 144598), (148875, 148875, 20, 20, 'Programmed Photon Particle Emitter (Crowbar Subtlety)', 83645), (203167, 203167, 68, 68, 'Programmed Photon Particle Emitter (Crowd Disperser)', 83791), (149214, 149214, 156, 156, 'Programmed Photon Particle Emitter (Crown of Frost)', 83820), (149215, 149215, 10, 10, 'Programmed Photon Particle Emitter (CrunchCom Code Sieve)', 83754), (149217, 149217, 123, 123, 'Programmed Photon Particle Emitter (CrunchCom Nano Compressor Pro)', 83754), (149216, 149216, 47, 47, 'Programmed Photon Particle Emitter (CrunchCom Nano Compressor)', 83754), (148435, 148435, 110, 110, 'Programmed Photon Particle Emitter (Crush Bravery)', 83788), (149218, 149218, 103, 103, 'Programmed Photon Particle Emitter (Crystalizing Ray)', 83818), (148436, 148436, 103, 103, 'Programmed Photon Particle Emitter (Cubicle Dweller)', 83712), (145096, 145096, 169, 169, 'Programmed Photon Particle Emitter (Curse of Chronos)', 83709), (148618, 148618, 30, 30, 'Programmed Photon Particle Emitter (Cursory Examination)', 83701), (149219, 149219, 47, 47, 'Programmed Photon Particle Emitter (Curtain of Darkness)', 83755), (148619, 148619, 149, 149, 'Programmed Photon Particle Emitter (Cycle of Life)', 83704), (148620, 148620, 179, 179, 'Programmed Photon Particle Emitter (Cycle of Reconstruction)', 83707), (149415, 149415, 40, 40, 'Programmed Photon Particle Emitter (Damage Amplifier)', 144611), (149416, 149416, 7, 7, 'Programmed Photon Particle Emitter (Damage Multiplier)', 83868), (161442, 161442, 165, 165, 'Programmed Photon Particle Emitter (Dance of the Dervish)', 83736), (149220, 149220, 90, 90, 'Programmed Photon Particle Emitter (Dark Movement)', 83684), (148621, 148621, 47, 47, 'Programmed Photon Particle Emitter (Dark Venom)', 83668), (148796, 148796, 133, 133, 'Programmed Photon Particle Emitter (Deaden Pain)', 144468), (148333, 148333, 142, 142, 'Programmed Photon Particle Emitter (Death''s Gaze)', 83709), (148334, 148334, 136, 136, 'Programmed Photon Particle Emitter (Death''s Knocking)', 83671), (148622, 148622, 182, 182, 'Programmed Photon Particle Emitter (Deathless Blessing)', 83707), (163109, 163109, 93, 93, 'Programmed Photon Particle Emitter (Deck Recoder)', 83653), (148876, 148876, 179, 179, 'Programmed Photon Particle Emitter (Decommissioned Wardroid)', 83765), (145097, 145097, 146, 146, 'Programmed Photon Particle Emitter (Dedication of Thought)', 83782), (149221, 149221, 76, 76, 'Programmed Photon Particle Emitter (Deep Chemical Burn)', 83812), (149222, 149222, 17, 17, 'Programmed Photon Particle Emitter (Deep Slash)', 83840), (149506, 149506, 74, 74, 'Programmed Photon Particle Emitter (Deep Thought)', 83711), (148624, 148624, 159, 159, 'Programmed Photon Particle Emitter (Deep Tissue Repair)', 83707), (148625, 148625, 169, 169, 'Programmed Photon Particle Emitter (Deep Wound Cleanser)', 83706), (155628, 155628, 130, 130, 'Programmed Photon Particle Emitter (Defamation 101)', 83782), (148877, 148877, 83, 83, 'Programmed Photon Particle Emitter (Defensive Screen)', 144467), (149418, 149418, 37, 37, 'Programmed Photon Particle Emitter (Deflection Shield (Extended))', 144576), (149417, 149417, 33, 33, 'Programmed Photon Particle Emitter (Deflection Shield)', 144576), (148335, 148335, 57, 57, 'Programmed Photon Particle Emitter (Delay Pursuers)', 83719), (149005, 149005, 60, 60, 'Programmed Photon Particle Emitter (Delay Retreat)', 83715), (148336, 148336, 63, 63, 'Programmed Photon Particle Emitter (Delay the Inevitable)', 83715), (148337, 148337, 169, 169, 'Programmed Photon Particle Emitter (Delayed Assassin)', 83672), (149507, 149507, 70, 70, 'Programmed Photon Particle Emitter (Delayed Health Payment)', 83703), (203997, 203997, 169, 169, 'Programmed Photon Particle Emitter (Demand Freedom)', 83648), (204021, 204021, 154, 154, 'Programmed Photon Particle Emitter (Demolish Shackles)', 83648), (148438, 148438, 80, 80, 'Programmed Photon Particle Emitter (Demotivate)', 83711), (157591, 157591, 113, 113, 'Programmed Photon Particle Emitter (Demotivational Speech: 10 Thumbs)', 83636), (157607, 157607, 83, 83, 'Programmed Photon Particle Emitter (Demotivational Speech: Administrative Error)', 83754), (157606, 157606, 179, 179, 'Programmed Photon Particle Emitter (Demotivational Speech: Certainty of Defeat)', 83636), (157605, 157605, 34, 34, 'Programmed Photon Particle Emitter (Demotivational Speech: Factory Recall)', 83754), (157604, 157604, 21, 21, 'Programmed Photon Particle Emitter (Demotivational Speech: Fumble Fingers)', 83636), (157603, 157603, 44, 44, 'Programmed Photon Particle Emitter (Demotivational Speech: Let''s Make a Committee)', 83753), (157602, 157602, 186, 186, 'Programmed Photon Particle Emitter (Demotivational Speech: Mourner''s March)', 83753), (157600, 157600, 182, 182, 'Programmed Photon Particle Emitter (Demotivational Speech: Retreat to Glory)', 83754), (157599, 157599, 126, 126, 'Programmed Photon Particle Emitter (Demotivational Speech: Surge in the System)', 83754), (157598, 157598, 159, 159, 'Programmed Photon Particle Emitter (Demotivational Speech: Swapdisk Mayhem)', 83754), (157601, 157601, 100, 100, 'Programmed Photon Particle Emitter (Demotivational Speech: That is not on the Agenda)', 83753), (157597, 157597, 153, 153, 'Programmed Photon Particle Emitter (Demotivational Speech: Who Writes the Minutes?)', 83753), (149224, 149224, 86, 86, 'Programmed Photon Particle Emitter (Dense Matter Missile MK II)', 83848), (149223, 149223, 43, 43, 'Programmed Photon Particle Emitter (Dense Matter Missile)', 83847), (149225, 149225, 103, 103, 'Programmed Photon Particle Emitter (Dense Poison Fog)', 83597), (156179, 156179, 41, 41, 'Programmed Photon Particle Emitter (Deranged Mindreaver)', 144532), (149006, 149006, 73, 73, 'Programmed Photon Particle Emitter (Detailed Medical Claim)', 83702), (149515, 149515, 109, 109, 'Programmed Photon Particle Emitter (Detain Customer)', 83715), (148338, 148338, 1, 1, 'Programmed Photon Particle Emitter (Detain Suspect)', 83714), (149072, 149072, 142, 142, 'Programmed Photon Particle Emitter (Diamond Skin)', 144521), (161439, 161439, 139, 139, 'Programmed Photon Particle Emitter (Dichotomy of Nature)', 83736), (148626, 148626, 140, 140, 'Programmed Photon Particle Emitter (Digitizing Sequencer)', 83858), (204030, 204030, 166, 166, 'Programmed Photon Particle Emitter (Dire Circumstance)', 83648), (148439, 148439, 142, 142, 'Programmed Photon Particle Emitter (Director-Grade Administrator-Droid)', 83765), (148440, 148440, 90, 90, 'Programmed Photon Particle Emitter (Director-Grade Aide-Droid)', 83764), (148441, 148441, 66, 66, 'Programmed Photon Particle Emitter (Director-Grade Assistant-Droid)', 83763), (148442, 148442, 43, 43, 'Programmed Photon Particle Emitter (Director-Grade Attendant-Droid)', 83763), (148443, 148443, 169, 169, 'Programmed Photon Particle Emitter (Director-Grade Bodyguard)', 83765), (148444, 148444, 27, 27, 'Programmed Photon Particle Emitter (Director-Grade Helper-Droid)', 83758), (148445, 148445, 156, 156, 'Programmed Photon Particle Emitter (Director-Grade Minion)', 83765), (148446, 148446, 123, 123, 'Programmed Photon Particle Emitter (Director-Grade Secretary-Droid)', 83764), (148447, 148447, 14, 14, 'Programmed Photon Particle Emitter (Director-Grade Worker-Droid)', 83758), (149073, 149073, 33, 33, 'Programmed Photon Particle Emitter (Dirty Fighter)', 83644), (148448, 148448, 149, 149, 'Programmed Photon Particle Emitter (Disciplinary Action)', 83831), (149226, 149226, 129, 129, 'Programmed Photon Particle Emitter (Discourage Involvement)', 83712), (148449, 148449, 175, 175, 'Programmed Photon Particle Emitter (Disjointed From Reality)', 83713), (148450, 148450, 162, 162, 'Programmed Photon Particle Emitter (Disjointed Psyche)', 83712), (149227, 149227, 106, 106, 'Programmed Photon Particle Emitter (Dispersed Nanoblade Cloud)', 83843), (148451, 148451, 189, 189, 'Programmed Photon Particle Emitter (Displace Thought Patterns)', 83780), (148452, 148452, 185, 185, 'Programmed Photon Particle Emitter (Disrupted Psyche)', 83713), (154784, 154784, 113, 113, 'Programmed Photon Particle Emitter (Disruptive Barrier Negator)', 144487), (154783, 154783, 107, 107, 'Programmed Photon Particle Emitter (Disruptive Cocoon Harmonics)', 144481), (154782, 154782, 41, 41, 'Programmed Photon Particle Emitter (Disruptive Field Harmonics)', 144480), (154781, 154781, 17, 17, 'Programmed Photon Particle Emitter (Disruptive Field Negator)', 144485), (154780, 154780, 156, 156, 'Programmed Photon Particle Emitter (Disruptive Phase Harmonics)', 144482), (154779, 154779, 83, 83, 'Programmed Photon Particle Emitter (Disruptive Photon Absorber)', 144471), (154778, 154778, 149, 149, 'Programmed Photon Particle Emitter (Disruptive Photon Annihilator)', 144472), (154777, 154777, 41, 41, 'Programmed Photon Particle Emitter (Disruptive Photon Deflector)', 144471), (154776, 154776, 120, 120, 'Programmed Photon Particle Emitter (Disruptive Photon Devourer)', 144472), (154771, 154771, 153, 153, 'Programmed Photon Particle Emitter (Disruptive Retaliatory Negator)', 144488), (154774, 154774, 182, 182, 'Programmed Photon Particle Emitter (Disruptive Retributive Negator)', 144489), (154773, 154773, 57, 57, 'Programmed Photon Particle Emitter (Disruptive Shielding Negator)', 144486), (154772, 154772, 166, 166, 'Programmed Photon Particle Emitter (Disruptive Void Projector)', 144473), (148627, 148627, 10, 10, 'Programmed Photon Particle Emitter (Dissolve Molecular Bonding)', 83664), (149228, 149228, 109, 109, 'Programmed Photon Particle Emitter (Dissolving Sphere)', 83813), (149517, 149517, 20, 20, 'Programmed Photon Particle Emitter (Distract with Trinkets)', 83710), (148453, 148453, 10, 10, 'Programmed Photon Particle Emitter (Distracted Gaze)', 83710), (149518, 149518, 47, 47, 'Programmed Photon Particle Emitter (Distracting Baubles)', 83711), (149074, 149074, 53, 53, 'Programmed Photon Particle Emitter (Distracting Nuisance)', 83678), (156193, 156193, 11, 11, 'Programmed Photon Particle Emitter (Distracting Sphere)', 144531), (148628, 148628, 175, 175, 'Programmed Photon Particle Emitter (Distributed Care)', 83707), (161418, 161418, 169, 169, 'Programmed Photon Particle Emitter (Division of the Winds)', 83790), (148629, 148629, 7, 7, 'Programmed Photon Particle Emitter (Doctor''s Grace)', 83700), (203675, 203675, 57, 57, 'Programmed Photon Particle Emitter (Dodge Persuers)', 83648), (148797, 148797, 150, 150, 'Programmed Photon Particle Emitter (Dominate Foe)', 83788), (148454, 148454, 47, 47, 'Programmed Photon Particle Emitter (Dominate Psyche)', 83780), (145098, 145098, 142, 142, 'Programmed Photon Particle Emitter (Dominate: BioMet)', 83639), (145099, 145099, 142, 142, 'Programmed Photon Particle Emitter (Dominate: MatCrea)', 83741), (145101, 145101, 139, 139, 'Programmed Photon Particle Emitter (Dominate: MatMet)', 83743), (145102, 145102, 142, 142, 'Programmed Photon Particle Emitter (Dominate: PsyMod)', 83781), (145103, 145103, 142, 142, 'Programmed Photon Particle Emitter (Dominate: SenseImp)', 83789), (145100, 145100, 139, 139, 'Programmed Photon Particle Emitter (Dominate: SpaceTime)', 83742), (145104, 145104, 14, 14, 'Programmed Photon Particle Emitter (Douse Anger)', 144611), (162768, 162768, 152, 152, 'Programmed Photon Particle Emitter (Dr Hack ''n Quack)', 83707), (149527, 149527, 159, 159, 'Programmed Photon Particle Emitter (Draw AC (Advanced))', 144483), (149528, 149528, 165, 165, 'Programmed Photon Particle Emitter (Draw AC (Greater))', 144483), (149529, 149529, 179, 179, 'Programmed Photon Particle Emitter (Draw AC (Invasive))', 144484), (149530, 149530, 149, 149, 'Programmed Photon Particle Emitter (Draw AC (Major))', 144482), (149531, 149531, 113, 113, 'Programmed Photon Particle Emitter (Draw AC (Minor))', 144481), (149532, 149532, 93, 93, 'Programmed Photon Particle Emitter (Draw AC (Weak))', 144480), (149526, 149526, 136, 136, 'Programmed Photon Particle Emitter (Draw AC)', 144481), (149419, 149419, 14, 14, 'Programmed Photon Particle Emitter (Draw Attention)', 83678), (148630, 148630, 10, 10, 'Programmed Photon Particle Emitter (Dress Wounds)', 83700), (148455, 148455, 37, 37, 'Programmed Photon Particle Emitter (Drill Missile)', 83846), (148456, 148456, 136, 136, 'Programmed Photon Particle Emitter (Droid Overhaul)', 83701), (148457, 148457, 70, 70, 'Programmed Photon Particle Emitter (Droid Repair)', 83700), (149229, 149229, 20, 20, 'Programmed Photon Particle Emitter (Dual Energized Beams)', 83828), (149230, 149230, 60, 60, 'Programmed Photon Particle Emitter (Dual Ion Stream)', 83853), (149533, 149533, 99, 99, 'Programmed Photon Particle Emitter (Dubious Accounting)', 83780), (148234, 148234, 76, 76, 'Programmed Photon Particle Emitter (Eagle Eye)', 83757), (145105, 145105, 24, 24, 'Programmed Photon Particle Emitter (Ease of Execution)', 83754), (148631, 148631, 50, 50, 'Programmed Photon Particle Emitter (Easing Touch)', 83701), (202825, 202825, 173, 173, 'Programmed Photon Particle Emitter (Edge of Diamond)', 83790), (202800, 202800, 89, 89, 'Programmed Photon Particle Emitter (Edge of Molybdenum)', 83790), (202797, 202797, 133, 133, 'Programmed Photon Particle Emitter (Edge of Titanium)', 83790), (202779, 202779, 59, 59, 'Programmed Photon Particle Emitter (Edge of the Buccaneer)', 83790), (149231, 149231, 80, 80, 'Programmed Photon Particle Emitter (Efficient Humidity Extractor)', 83754), (149420, 149420, 4, 4, 'Programmed Photon Particle Emitter (Ego Taunt)', 83678), (148878, 148878, 24, 24, 'Programmed Photon Particle Emitter (Electrical Chastiser)', 83656), (148879, 148879, 76, 76, 'Programmed Photon Particle Emitter (Electrical Discharge Field)', 83656), (149232, 149232, 185, 185, 'Programmed Photon Particle Emitter (Electrifying Containment)', 83833), (161887, 161887, 60, 60, 'Programmed Photon Particle Emitter (Eleet Friend)', 144547), (149534, 149534, 31, 31, 'Programmed Photon Particle Emitter (Elementary Delayed Health Payment)', 83701), (148632, 148632, 14, 14, 'Programmed Photon Particle Emitter (Elementary Nano Contagion)', 83664), (149075, 149075, 37, 37, 'Programmed Photon Particle Emitter (Elusive Target)', 83684), (149535, 149535, 76, 76, 'Programmed Photon Particle Emitter (Embrace of Greed)', 83715), (149007, 149007, 27, 27, 'Programmed Photon Particle Emitter (Embrace of Shadows)', 83654), (148633, 148633, 162, 162, 'Programmed Photon Particle Emitter (Emergency Medical Response)', 83707), (148634, 148634, 4, 4, 'Programmed Photon Particle Emitter (Emergency Stitching)', 83700), (149233, 149233, 142, 142, 'Programmed Photon Particle Emitter (Encircle With Blades)', 83844), (148635, 148635, 80, 80, 'Programmed Photon Particle Emitter (Encode DNA Sequence)', 83858), (149076, 149076, 86, 86, 'Programmed Photon Particle Emitter (Encourage Hatred)', 83678), (148235, 148235, 86, 86, 'Programmed Photon Particle Emitter (Encourage Regrowth)', 83702), (203929, 203929, 40, 40, 'Programmed Photon Particle Emitter (Energize Shell)', 83648), (149234, 149234, 4, 4, 'Programmed Photon Particle Emitter (Energized Beam)', 83828), (148458, 148458, 4, 4, 'Programmed Photon Particle Emitter (Energized Bolt)', 83829), (203923, 203923, 197, 197, 'Programmed Photon Particle Emitter (Energized Casing of the Faithful Servant)', 83648), (149235, 149235, 113, 113, 'Programmed Photon Particle Emitter (Energized Collapse)', 83855), (149077, 149077, 20, 20, 'Programmed Photon Particle Emitter (Energized Fists)', 83868), (148880, 148880, 113, 113, 'Programmed Photon Particle Emitter (Energy Cocoon)', 83656), (149236, 149236, 53, 53, 'Programmed Photon Particle Emitter (Energy Projectile)', 83829), (148881, 148881, 37, 37, 'Programmed Photon Particle Emitter (Energy Spike)', 144610), (148459, 148459, 63, 63, 'Programmed Photon Particle Emitter (Enforce Rest Break)', 83715), (149536, 149536, 40, 40, 'Programmed Photon Particle Emitter (Enforced Loan)', 83780), (148460, 148460, 60, 60, 'Programmed Photon Particle Emitter (Enforced Sloth)', 83719), (150668, 150668, 156, 156, 'Programmed Photon Particle Emitter (Enfraam''s Augmented Fortification)', 144521), (150678, 150678, 47, 47, 'Programmed Photon Particle Emitter (Enfraam''s Fortification)', 144518), (150677, 150677, 140, 140, 'Programmed Photon Particle Emitter (Enfraam''s Glorious Fortification)', 144521), (150676, 150676, 93, 93, 'Programmed Photon Particle Emitter (Enfraam''s Greater Fortification)', 144520), (150675, 150675, 37, 37, 'Programmed Photon Particle Emitter (Enfraam''s Lesser Fortification)', 144518), (150674, 150674, 80, 80, 'Programmed Photon Particle Emitter (Enfraam''s Major Fortification)', 144519), (150673, 150673, 24, 24, 'Programmed Photon Particle Emitter (Enfraam''s Minor Fortification)', 144517), (150672, 150672, 166, 166, 'Programmed Photon Particle Emitter (Enfraam''s Perfected Fortification)', 144522), (150671, 150671, 60, 60, 'Programmed Photon Particle Emitter (Enfraam''s Superior Fortification)', 144519), (150670, 150670, 113, 113, 'Programmed Photon Particle Emitter (Enfraam''s Supreme Fortification)', 144520), (205164, 205164, 80, 80, 'Programmed Photon Particle Emitter (Enfraam''s Toolkit)', 83752), (150669, 150669, 14, 14, 'Programmed Photon Particle Emitter (Enfraam''s Trivial Fortification)', 144517), (145106, 145106, 47, 47, 'Programmed Photon Particle Emitter (Engrossing Activity)', 83782), (149237, 149237, 149, 149, 'Programmed Photon Particle Emitter (Engulf in Flame)', 83838), (205277, 205277, 158, 158, 'Programmed Photon Particle Emitter (Enhance Aggression Subsystem)', 83760), (205262, 205262, 56, 56, 'Programmed Photon Particle Emitter (Enhance Combat Array)', 83760), (148636, 148636, 27, 27, 'Programmed Photon Particle Emitter (Enhance Constitution)', 144475), (149238, 149238, 20, 20, 'Programmed Photon Particle Emitter (Enhance Nano Cohesion)', 83648), (149239, 149239, 4, 4, 'Programmed Photon Particle Emitter (Enhance Nano Communication)', 83648), (148637, 148637, 1, 1, 'Programmed Photon Particle Emitter (Enhance Team Health)', 144475), (148638, 148638, 14, 14, 'Programmed Photon Particle Emitter (Enhanced First Aid)', 83689), (148639, 148639, 132, 132, 'Programmed Photon Particle Emitter (Enhanced Health Surge)', 144583), (148339, 148339, 27, 27, 'Programmed Photon Particle Emitter (Enhanced Senses)', 83788), (160851, 160851, 126, 126, 'Programmed Photon Particle Emitter (Enhanced Sureshot)', 83578), (160854, 160854, 146, 146, 'Programmed Photon Particle Emitter (Enhanced Trueshot)', 83578), (148640, 148640, 37, 37, 'Programmed Photon Particle Emitter (Enlarge)', 83797), (149078, 149078, 142, 142, 'Programmed Photon Particle Emitter (Enlightened Aura of Healing)', 83703), (145107, 145107, 159, 159, 'Programmed Photon Particle Emitter (Enmity Personification)', 144526), (149422, 149422, 30, 30, 'Programmed Photon Particle Emitter (Enraged Mind)', 83678), (148461, 148461, 149, 149, 'Programmed Photon Particle Emitter (Enrapturing Bondage)', 83780), (148236, 148236, 24, 24, 'Programmed Photon Particle Emitter (Enshroud with Barbs)', 83656), (148340, 148340, 142, 142, 'Programmed Photon Particle Emitter (Entrap Victim)', 83717), (149537, 149537, 182, 182, 'Programmed Photon Particle Emitter (Entrepreneurial Thrall)', 83717), (149240, 149240, 30, 30, 'Programmed Photon Particle Emitter (Entropy Beam)', 83828), (148882, 148882, 149, 149, 'Programmed Photon Particle Emitter (Entropy Weapon)', 144612), (149241, 149241, 57, 57, 'Programmed Photon Particle Emitter (Enveloping Darkness)', 83755), (148462, 148462, 162, 162, 'Programmed Photon Particle Emitter (Erasing Ray)', 83831), (149242, 149242, 76, 76, 'Programmed Photon Particle Emitter (Eroding Spray)', 83812), (148463, 148463, 142, 142, 'Programmed Photon Particle Emitter (Erratic Laser)', 83830), (204038, 204038, 73, 73, 'Programmed Photon Particle Emitter (Escape Captivation)', 83648), (148798, 148798, 152, 152, 'Programmed Photon Particle Emitter (Essence of Behemoth)', 144479), (148799, 148799, 33, 33, 'Programmed Photon Particle Emitter (Essence of Boundless Health)', 144475), (148800, 148800, 132, 132, 'Programmed Photon Particle Emitter (Essence of Colossus)', 144478), (148801, 148801, 57, 57, 'Programmed Photon Particle Emitter (Essence of Cyclops)', 144476), (148802, 148802, 123, 123, 'Programmed Photon Particle Emitter (Essence of Gargantua)', 144477), (148237, 148237, 169, 169, 'Programmed Photon Particle Emitter (Essence of Life)', 83703), (148805, 148805, 24, 24, 'Programmed Photon Particle Emitter (Essence of Might)', 144475), (148807, 148807, 14, 14, 'Programmed Photon Particle Emitter (Essence of Vitality)', 83641), (149079, 149079, 162, 162, 'Programmed Photon Particle Emitter (Eternal Enmity)', 83678), (203711, 203711, 146, 146, 'Programmed Photon Particle Emitter (Evade Responsibility)', 83648), (203678, 203678, 110, 110, 'Programmed Photon Particle Emitter (Evade the Chase)', 83648), (149243, 149243, 152, 152, 'Programmed Photon Particle Emitter (Eviscerate Eyes)', 83755), (205201, 205201, 85, 85, 'Programmed Photon Particle Emitter (Evocation of Fathomless Rage)', 83730), (205204, 205204, 115, 115, 'Programmed Photon Particle Emitter (Evocation of Implacable Hatred)', 83730), (205207, 205207, 140, 140, 'Programmed Photon Particle Emitter (Evocation of Maddening Wrath)', 83730), (205210, 205210, 177, 177, 'Programmed Photon Particle Emitter (Evocation of Pure Malevolence)', 83730), (205213, 205213, 58, 58, 'Programmed Photon Particle Emitter (Evocation of Relentless Fury)', 83730), (205216, 205216, 200, 200, 'Programmed Photon Particle Emitter (Evocation of The Abomination)', 83730), (205219, 205219, 34, 34, 'Programmed Photon Particle Emitter (Evocation of Unleashed Malice)', 83730), (205222, 205222, 16, 16, 'Programmed Photon Particle Emitter (Evocation of Unrestrained Ferocity)', 83730), (148641, 148641, 80, 80, 'Programmed Photon Particle Emitter (Exaggerated Health)', 144475), (149538, 149538, 169, 169, 'Programmed Photon Particle Emitter (Exceptional Delayed Health Payment)', 83707), (148464, 148464, 139, 139, 'Programmed Photon Particle Emitter (Executive-Grade Administrator-Droid)', 83764), (148465, 148465, 86, 86, 'Programmed Photon Particle Emitter (Executive-Grade Aide-Droid)', 83764), (148466, 148466, 63, 63, 'Programmed Photon Particle Emitter (Executive-Grade Assistant-Droid)', 83763), (148467, 148467, 40, 40, 'Programmed Photon Particle Emitter (Executive-Grade Attendant-Droid)', 83763), (148468, 148468, 169, 169, 'Programmed Photon Particle Emitter (Executive-Grade Bodyguard)', 83765), (148469, 148469, 24, 24, 'Programmed Photon Particle Emitter (Executive-Grade Helper-Droid)', 83758), (148470, 148470, 152, 152, 'Programmed Photon Particle Emitter (Executive-Grade Minion)', 83765), (148471, 148471, 119, 119, 'Programmed Photon Particle Emitter (Executive-Grade Secretary-Droid)', 83764), (148472, 148472, 10, 10, 'Programmed Photon Particle Emitter (Executive-Grade Worker-Droid)', 83758), (203883, 203883, 107, 107, 'Programmed Photon Particle Emitter (Exoskeleton Pulse)', 83648), (149244, 149244, 70, 70, 'Programmed Photon Particle Emitter (Expanding Neutron Pulse)', 83629), (148643, 148643, 103, 103, 'Programmed Photon Particle Emitter (Experimental Panacea)', 83704), (149539, 149539, 97, 97, 'Programmed Photon Particle Emitter (Expert Health Haggler)', 83705), (149540, 149540, 50, 50, 'Programmed Photon Particle Emitter (Extended Line of Credit)', 83780), (148883, 148883, 139, 139, 'Programmed Photon Particle Emitter (Extreme Prejudice)', 83699), (149245, 149245, 169, 169, 'Programmed Photon Particle Emitter (Eye of Light)', 83667), (149246, 149246, 139, 139, 'Programmed Photon Particle Emitter (Eyeblighter)', 83755), (148341, 148341, 77, 77, 'Programmed Photon Particle Emitter (Face Graft)', 83858), (148473, 148473, 57, 57, 'Programmed Photon Particle Emitter (Face in the Crowd)', 83654), (148808, 148808, 150, 150, 'Programmed Photon Particle Emitter (Failing Impregnability)', 144470), (148474, 148474, 132, 132, 'Programmed Photon Particle Emitter (Faithful Administrator-Droid)', 83764), (148475, 148475, 76, 76, 'Programmed Photon Particle Emitter (Faithful Aide-Droid)', 83763), (148476, 148476, 53, 53, 'Programmed Photon Particle Emitter (Faithful Assistant-Droid)', 83763), (148477, 148477, 33, 33, 'Programmed Photon Particle Emitter (Faithful Attendant-Droid)', 83763), (148478, 148478, 162, 162, 'Programmed Photon Particle Emitter (Faithful Bodyguard)', 83765), (148479, 148479, 17, 17, 'Programmed Photon Particle Emitter (Faithful Helper-Droid)', 83758), (148480, 148480, 146, 146, 'Programmed Photon Particle Emitter (Faithful Minion)', 83765), (148481, 148481, 106, 106, 'Programmed Photon Particle Emitter (Faithful Secretary-Droid)', 83764), (148482, 148482, 4, 4, 'Programmed Photon Particle Emitter (Faithful Worker-Droid)', 83758), (148342, 148342, 17, 17, 'Programmed Photon Particle Emitter (False Profession: Adventurer)', 83798), (148343, 148343, 33, 33, 'Programmed Photon Particle Emitter (False Profession: Bureaucrat)', 83798), (148344, 148344, 30, 30, 'Programmed Photon Particle Emitter (False Profession: Doctor)', 83798), (148352, 148352, 10, 10, 'Programmed Photon Particle Emitter (False Profession: Enforcer)', 83798), (148345, 148345, 20, 20, 'Programmed Photon Particle Emitter (False Profession: Engineer)', 83798), (148350, 148350, 24, 24, 'Programmed Photon Particle Emitter (False Profession: Fixer)', 83798), (148346, 148346, 14, 14, 'Programmed Photon Particle Emitter (False Profession: Martial Artist)', 83798), (148347, 148347, 37, 37, 'Programmed Photon Particle Emitter (False Profession: Meta-Physicist)', 83798), (148348, 148348, 40, 40, 'Programmed Photon Particle Emitter (False Profession: Nanotechnician)', 83798), (148349, 148349, 14, 14, 'Programmed Photon Particle Emitter (False Profession: Soldier)', 83798), (148351, 148351, 27, 27, 'Programmed Photon Particle Emitter (False Profession: Trader)', 83798), (149009, 149009, 30, 30, 'Programmed Photon Particle Emitter (Falsify Medical Records)', 83701), (161436, 161436, 93, 93, 'Programmed Photon Particle Emitter (Fangs of the Snake)', 83736), (148644, 148644, 80, 80, 'Programmed Photon Particle Emitter (Fast Team Tissue Repair)', 83702), (148483, 148483, 169, 169, 'Programmed Photon Particle Emitter (Fear of Attention)', 83716), (148809, 148809, 37, 37, 'Programmed Photon Particle Emitter (Fearsome Shout)', 83788), (148884, 148884, 20, 20, 'Programmed Photon Particle Emitter (Feeble Android)', 83758), (148885, 148885, 1, 1, 'Programmed Photon Particle Emitter (Feeble Automaton)', 83758), (149247, 149247, 7, 7, 'Programmed Photon Particle Emitter (Feeble Blade Chaos)', 83840), (149541, 149541, 8, 8, 'Programmed Photon Particle Emitter (Feeble Delayed Health Payment)', 83700), (148886, 148886, 47, 47, 'Programmed Photon Particle Emitter (Feeble Gladiatorbot)', 83763), (149248, 149248, 90, 90, 'Programmed Photon Particle Emitter (Feeble Gravitational Anomaly)', 83842), (148887, 148887, 90, 90, 'Programmed Photon Particle Emitter (Feeble Guardbot)', 83763), (148888, 148888, 129, 129, 'Programmed Photon Particle Emitter (Feeble Warbot)', 83764), (148889, 148889, 156, 156, 'Programmed Photon Particle Emitter (Feeble Warmachine)', 83764), (204531, 204531, 90, 90, 'Programmed Photon Particle Emitter (Feelings of Mortality)', 83701), (149249, 149249, 73, 73, 'Programmed Photon Particle Emitter (Feet of Iron)', 83715), (149250, 149250, 165, 165, 'Programmed Photon Particle Emitter (Feet of Lead)', 83717), (149251, 149251, 14, 14, 'Programmed Photon Particle Emitter (Feet of Stone)', 83714), (148353, 148353, 53, 53, 'Programmed Photon Particle Emitter (Feline Grace)', 83658), (162343, 162343, 146, 146, 'Programmed Photon Particle Emitter (Feline Rage)', 144611), (149252, 149252, 162, 162, 'Programmed Photon Particle Emitter (Ferocious Impactor Missile)', 83850), (148646, 148646, 10, 10, 'Programmed Photon Particle Emitter (Field Dressings)', 83700), (148890, 148890, 120, 120, 'Programmed Photon Particle Emitter (Field Workshop)', 83704), (148811, 148811, 20, 20, 'Programmed Photon Particle Emitter (Field of Sparks)', 83656), (149253, 149253, 142, 142, 'Programmed Photon Particle Emitter (Fiery Blast)', 83837), (148238, 148238, 136, 136, 'Programmed Photon Particle Emitter (Fiery Vengeance)', 83656), (148239, 148239, 63, 63, 'Programmed Photon Particle Emitter (Fiery Wrap)', 83656), (149542, 149542, 126, 126, 'Programmed Photon Particle Emitter (Fine Tuning)', 144612), (149254, 149254, 27, 27, 'Programmed Photon Particle Emitter (Fire Snake)', 83834), (149255, 149255, 7, 7, 'Programmed Photon Particle Emitter (Fire Stream)', 83834), (148240, 148240, 30, 30, 'Programmed Photon Particle Emitter (Firefly''s Fury)', 83656), (149080, 149080, 96, 96, 'Programmed Photon Particle Emitter (First Strike)', 83727), (148647, 148647, 116, 116, 'Programmed Photon Particle Emitter (First-Degree Burns)', 83837), (149081, 149081, 66, 66, 'Programmed Photon Particle Emitter (Fists of Fire)', 144611), (149082, 149082, 47, 47, 'Programmed Photon Particle Emitter (Fists of Shocking Touch)', 144610), (149083, 149083, 165, 165, 'Programmed Photon Particle Emitter (Fists of Stellar Harmony)', 144614), (149084, 149084, 146, 146, 'Programmed Photon Particle Emitter (Fists of the Lightning Crane)', 144613), (149085, 149085, 86, 86, 'Programmed Photon Particle Emitter (Fists of the Maelstrom)', 144611), (149086, 149086, 106, 106, 'Programmed Photon Particle Emitter (Fists of the Polar Star)', 144612), (149087, 149087, 126, 126, 'Programmed Photon Particle Emitter (Fists of the Sorrowful Toad)', 144612), (148891, 148891, 27, 27, 'Programmed Photon Particle Emitter (Flawed Android)', 83758), (148892, 148892, 4, 4, 'Programmed Photon Particle Emitter (Flawed Automaton)', 83758), (148893, 148893, 20, 20, 'Programmed Photon Particle Emitter (Flawed Defensive Screen)', 83634), (148894, 148894, 156, 156, 'Programmed Photon Particle Emitter (Flawed Force Field)', 144469), (148895, 148895, 63, 63, 'Programmed Photon Particle Emitter (Flawed Gladiatorbot)', 83763), (148896, 148896, 99, 99, 'Programmed Photon Particle Emitter (Flawed Guardbot)', 83763), (148897, 148897, 14, 14, 'Programmed Photon Particle Emitter (Flawed Protective Field)', 83634), (148898, 148898, 7, 7, 'Programmed Photon Particle Emitter (Flawed Shielding Barrier)', 83634), (148899, 148899, 146, 146, 'Programmed Photon Particle Emitter (Flawed Warbot)', 83764), (148900, 148900, 162, 162, 'Programmed Photon Particle Emitter (Flawed Warmachine)', 83765), (149010, 149010, 129, 129, 'Programmed Photon Particle Emitter (Flawless Medical Claim)', 83704), (148241, 148241, 143, 143, 'Programmed Photon Particle Emitter (Flawless Stitching)', 83702), (149088, 149088, 83, 83, 'Programmed Photon Particle Emitter (Fleet Foot)', 83684), (149256, 149256, 182, 182, 'Programmed Photon Particle Emitter (Fleeting Immunity)', 144469), (149543, 149543, 132, 132, 'Programmed Photon Particle Emitter (Flow of Time)', 83716), (203717, 203717, 88, 88, 'Programmed Photon Particle Emitter (Fluctuate Manifestation)', 83648), (148812, 148812, 60, 60, 'Programmed Photon Particle Emitter (Focused Anger)', 83637), (149257, 149257, 116, 116, 'Programmed Photon Particle Emitter (Focused Ray)', 83831), (148901, 148901, 169, 169, 'Programmed Photon Particle Emitter (Force Field)', 144469), (203228, 203228, 63, 63, 'Programmed Photon Particle Emitter (Force of the Thunderclap)', 83680), (149544, 149544, 185, 185, 'Programmed Photon Particle Emitter (Forced Bankruptcy)', 83780), (149089, 149089, 165, 165, 'Programmed Photon Particle Emitter (Form of Tessai)', 144522), (160872, 160872, 179, 179, 'Programmed Photon Particle Emitter (Form of The Executioner)', 144614), (148813, 148813, 120, 120, 'Programmed Photon Particle Emitter (Fortify)', 144467), (148902, 148902, 175, 175, 'Programmed Photon Particle Emitter (Fortress of Spikes)', 83656), (204053, 204053, 198, 198, 'Programmed Photon Particle Emitter (Fortune''s Smile)', 83648), (149258, 149258, 90, 90, 'Programmed Photon Particle Emitter (Foul Bane)', 83824), (149259, 149259, 162, 162, 'Programmed Photon Particle Emitter (Foul Eyeblighter)', 83755), (149090, 149090, 169, 169, 'Programmed Photon Particle Emitter (Four Fists of Kali)', 83696), (148245, 148245, 43, 43, 'Programmed Photon Particle Emitter (Free Movement)', 83751), (149260, 149260, 96, 96, 'Programmed Photon Particle Emitter (Freezing Surge)', 83818), (145108, 145108, 129, 129, 'Programmed Photon Particle Emitter (Frenzy Embodiment)', 144525), (162349, 162349, 179, 179, 'Programmed Photon Particle Emitter (Frenzy of Fur)', 144613), (162515, 162515, 169, 169, 'Programmed Photon Particle Emitter (Frenzy of Shells)', 83746), (149545, 149545, 20, 20, 'Programmed Photon Particle Emitter (Frequent Customer)', 83653), (145109, 145109, 64, 64, 'Programmed Photon Particle Emitter (Frigid Blast)', 83817), (149261, 149261, 159, 159, 'Programmed Photon Particle Emitter (Frigid Landscape)', 83593), (145110, 145110, 17, 17, 'Programmed Photon Particle Emitter (Frost Slivers)', 83816), (148246, 148246, 7, 7, 'Programmed Photon Particle Emitter (Frost With Snow)', 83656), (149262, 149262, 43, 43, 'Programmed Photon Particle Emitter (Frosty Welcome)', 83817), (149263, 149263, 185, 185, 'Programmed Photon Particle Emitter (Full-Body Acid Coating)', 83815), (149264, 149264, 83, 83, 'Programmed Photon Particle Emitter (Furious Assault)', 83848), (149265, 149265, 103, 103, 'Programmed Photon Particle Emitter (Furious Wind Blade)', 83843), (145111, 145111, 20, 20, 'Programmed Photon Particle Emitter (Fury Externalization)', 144523), (205313, 205313, 71, 71, 'Programmed Photon Particle Emitter (Gallant Hero: The Aggravated Servant)', 83760), (205319, 205319, 110, 110, 'Programmed Photon Particle Emitter (Gallant Hero: The Angry Servitor)', 83760), (205322, 205322, 131, 131, 'Programmed Photon Particle Emitter (Gallant Hero: The Bitter Clerk)', 83760), (205307, 205307, 30, 30, 'Programmed Photon Particle Emitter (Gallant Hero: The Enraged Drone)', 83760), (205328, 205328, 173, 173, 'Programmed Photon Particle Emitter (Gallant Hero: The Incensed Retainer)', 83760), (205316, 205316, 92, 92, 'Programmed Photon Particle Emitter (Gallant Hero: The Indignant Flunky)', 83760), (205310, 205310, 52, 52, 'Programmed Photon Particle Emitter (Gallant Hero: The Infuriated Minion)', 83760), (205325, 205325, 152, 152, 'Programmed Photon Particle Emitter (Gallant Hero: The Irate Attache)', 83760), (205331, 205331, 199, 199, 'Programmed Photon Particle Emitter (Gallant Hero: The Vengeful Butler)', 83760), (149266, 149266, 37, 37, 'Programmed Photon Particle Emitter (Gaping Puncture)', 83847), (148648, 148648, 165, 165, 'Programmed Photon Particle Emitter (Gargantuan Health)', 144475), (162331, 162331, 139, 139, 'Programmed Photon Particle Emitter (Gaze of the Hunter)', 83757), (204062, 204062, 170, 170, 'Programmed Photon Particle Emitter (Gift of the Travelling Salesman)', 83648), (148814, 148814, 90, 90, 'Programmed Photon Particle Emitter (Gird for Punishment)', 144467), (149091, 149091, 7, 7, 'Programmed Photon Particle Emitter (Give Energy: 10)', 83754), (149092, 149092, 53, 53, 'Programmed Photon Particle Emitter (Give Energy: 100)', 83754), (149093, 149093, 14, 14, 'Programmed Photon Particle Emitter (Give Energy: 25)', 83754), (149094, 149094, 27, 27, 'Programmed Photon Particle Emitter (Give Energy: 50)', 83754), (149095, 149095, 7, 7, 'Programmed Photon Particle Emitter (Give Life: 10)', 83700), (149096, 149096, 50, 50, 'Programmed Photon Particle Emitter (Give Life: 100)', 83700), (149097, 149097, 14, 14, 'Programmed Photon Particle Emitter (Give Life: 25)', 83700), (149098, 149098, 27, 27, 'Programmed Photon Particle Emitter (Give Life: 50)', 83700), (149267, 149267, 50, 50, 'Programmed Photon Particle Emitter (Glacial Advance)', 83817), (148815, 148815, 132, 132, 'Programmed Photon Particle Emitter (Glacial Cloak)', 83656), (149268, 149268, 175, 175, 'Programmed Photon Particle Emitter (Glacial Finality)', 83821), (145112, 145112, 159, 159, 'Programmed Photon Particle Emitter (Glacial Lance)', 83819), (148903, 148903, 70, 70, 'Programmed Photon Particle Emitter (Gladiatorbot)', 83763), (149546, 149546, 136, 136, 'Programmed Photon Particle Emitter (Glib Health Haggler)', 83706), (149547, 149547, 106, 106, 'Programmed Photon Particle Emitter (Glittering Plaything)', 83712), (148247, 148247, 156, 156, 'Programmed Photon Particle Emitter (Glorious Healing)', 83703), (148816, 148816, 27, 27, 'Programmed Photon Particle Emitter (Glowing Retribution)', 83656), (160857, 160857, 169, 169, 'Programmed Photon Particle Emitter (Gnat''s Wing)', 83578), (149269, 149269, 27, 27, 'Programmed Photon Particle Emitter (Gouge Eyes)', 83755), (148649, 148649, 70, 70, 'Programmed Photon Particle Emitter (Gouge Flesh)', 83843), (149270, 149270, 169, 169, 'Programmed Photon Particle Emitter (Gravitational Anomaly)', 83845), (149011, 149011, 126, 126, 'Programmed Photon Particle Emitter (Gravity Bindings)', 83721), (149271, 149271, 149, 149, 'Programmed Photon Particle Emitter (Gravity Pull)', 83716), (148484, 148484, 80, 80, 'Programmed Photon Particle Emitter (Great Weight of the Guilty)', 83719), (148354, 148354, 106, 106, 'Programmed Photon Particle Emitter (Greater Anatomy Lesson)', 144613), (145113, 145113, 7, 7, 'Programmed Photon Particle Emitter (Greater Anger Manifestation)', 144523), (148904, 148904, 4, 4, 'Programmed Photon Particle Emitter (Greater Armor Megaboost)', 83634), (149272, 149272, 119, 119, 'Programmed Photon Particle Emitter (Greater Blade Chaos)', 83843), (148650, 148650, 156, 156, 'Programmed Photon Particle Emitter (Greater Bloom of Health)', 83707), (148651, 148651, 109, 109, 'Programmed Photon Particle Emitter (Greater Cellular Grafting)', 83704), (149273, 149273, 70, 70, 'Programmed Photon Particle Emitter (Greater Chilling Stream)', 83817), (203920, 203920, 154, 154, 'Programmed Photon Particle Emitter (Greater Conductive Spike)', 83648), (149274, 149274, 139, 139, 'Programmed Photon Particle Emitter (Greater Crystalizing Ray)', 83819), (148355, 148355, 149, 149, 'Programmed Photon Particle Emitter (Greater Death''s Knocking)', 83672), (149424, 149424, 57, 57, 'Programmed Photon Particle Emitter (Greater Deflection Shield (Extended))', 144576), (149423, 149423, 50, 50, 'Programmed Photon Particle Emitter (Greater Deflection Shield)', 144576), (148356, 148356, 109, 109, 'Programmed Photon Particle Emitter (Greater Delay Pursuers)', 83720), (149012, 149012, 139, 139, 'Programmed Photon Particle Emitter (Greater Delay Retreat)', 83717), (148357, 148357, 90, 90, 'Programmed Photon Particle Emitter (Greater Delay the Inevitable)', 83716), (149548, 149548, 149, 149, 'Programmed Photon Particle Emitter (Greater Delayed Health Payment)', 83706), (156192, 156192, 50, 50, 'Programmed Photon Particle Emitter (Greater Deranged Mindreaver)', 144532), (149549, 149549, 169, 169, 'Programmed Photon Particle Emitter (Greater Detain Customer)', 83717), (148358, 148358, 66, 66, 'Programmed Photon Particle Emitter (Greater Detain Suspect)', 83715), (156191, 156191, 17, 17, 'Programmed Photon Particle Emitter (Greater Distracting Sphere)', 144531), (149550, 149550, 149, 149, 'Programmed Photon Particle Emitter (Greater Embrace of Greed)', 83716), (148248, 148248, 142, 142, 'Programmed Photon Particle Emitter (Greater Encourage Regrowth)', 83703), (203932, 203932, 76, 76, 'Programmed Photon Particle Emitter (Greater Energize Shell)', 83648), (148485, 148485, 146, 146, 'Programmed Photon Particle Emitter (Greater Enforced Sloth)', 83720), (145114, 145114, 165, 165, 'Programmed Photon Particle Emitter (Greater Enmity Personification)', 144526), (203889, 203889, 192, 192, 'Programmed Photon Particle Emitter (Greater Exoskeleton Pulse)', 83648), (148486, 148486, 179, 179, 'Programmed Photon Particle Emitter (Greater Fear of Attention)', 83716), (148652, 148652, 149, 149, 'Programmed Photon Particle Emitter (Greater Field Dressings)', 83706), (145115, 145115, 146, 146, 'Programmed Photon Particle Emitter (Greater Frenzy Embodiment)', 144525), (145116, 145116, 27, 27, 'Programmed Photon Particle Emitter (Greater Fury Externalization)', 144523), (149013, 149013, 90, 90, 'Programmed Photon Particle Emitter (Greater Halt Flight)', 83716), (148905, 148905, 159, 159, 'Programmed Photon Particle Emitter (Greater Harmonic Cocoon)', 144579), (149099, 149099, 99, 99, 'Programmed Photon Particle Emitter (Greater Healing Touch)', 83702), (149551, 149551, 113, 113, 'Programmed Photon Particle Emitter (Greater Health Freeloader)', 144491), (149552, 149552, 33, 33, 'Programmed Photon Particle Emitter (Greater Health Funnel)', 144487), (149553, 149553, 175, 175, 'Programmed Photon Particle Emitter (Greater Health Plunder)', 144494), (148359, 148359, 83, 83, 'Programmed Photon Particle Emitter (Greater Hold Victim)', 83716), (148487, 148487, 146, 146, 'Programmed Photon Particle Emitter (Greater Illusory Paralysis)', 83716), (148653, 148653, 93, 93, 'Programmed Photon Particle Emitter (Greater Lasting Heal)', 83702), (148488, 148488, 126, 126, 'Programmed Photon Particle Emitter (Greater Mass Illusory Paralysis)', 83715), (148489, 148489, 162, 162, 'Programmed Photon Particle Emitter (Greater Musculature Command)', 83717), (148360, 148360, 146, 146, 'Programmed Photon Particle Emitter (Greater Mysterious Causes)', 83671), (149014, 149014, 136, 136, 'Programmed Photon Particle Emitter (Greater Nano Boost)', 144612), (149015, 149015, 103, 103, 'Programmed Photon Particle Emitter (Greater Nano Net)', 83716), (149016, 149016, 119, 119, 'Programmed Photon Particle Emitter (Greater Net Cast Wide)', 83720), (148361, 148361, 149, 149, 'Programmed Photon Particle Emitter (Greater Paralyze with Indecision)', 83717), (148654, 148654, 142, 142, 'Programmed Photon Particle Emitter (Greater Periodic Checkup)', 83704), (204444, 204444, 149, 149, 'Programmed Photon Particle Emitter (Greater Polarized Screening)', 144468), (148655, 148655, 172, 172, 'Programmed Photon Particle Emitter (Greater Policy Payout)', 83703), (149017, 149017, 152, 152, 'Programmed Photon Particle Emitter (Greater Prolong Encounter)', 83717), (148249, 148249, 43, 43, 'Programmed Photon Particle Emitter (Greater Quick Heal)', 83701), (149275, 149275, 129, 129, 'Programmed Photon Particle Emitter (Greater RNA Reaper)', 83855), (145117, 145117, 53, 53, 'Programmed Photon Particle Emitter (Greater Rage Materialization)', 144524), (149426, 149426, 132, 132, 'Programmed Photon Particle Emitter (Greater Reflective Field (Extended))', 144579), (149425, 149425, 129, 129, 'Programmed Photon Particle Emitter (Greater Reflective Field)', 144579), (149100, 149100, 129, 129, 'Programmed Photon Particle Emitter (Greater Restore Essence)', 83703), (148250, 148250, 130, 130, 'Programmed Photon Particle Emitter (Greater Restore Health)', 83702), (148490, 148490, 99, 99, 'Programmed Photon Particle Emitter (Greater Restrict Movement)', 83716), (148906, 148906, 165, 165, 'Programmed Photon Particle Emitter (Greater Retaliatory Barrier)', 83656), (149276, 149276, 172, 172, 'Programmed Photon Particle Emitter (Greater Searing Stream)', 83815), (149101, 149101, 132, 132, 'Programmed Photon Particle Emitter (Greater Shen Protection)', 144520), (149277, 149277, 132, 132, 'Programmed Photon Particle Emitter (Greater Shower with Sludge)', 83813), (149102, 149102, 86, 86, 'Programmed Photon Particle Emitter (Greater Steel Skin)', 144519), (149554, 149554, 80, 80, 'Programmed Photon Particle Emitter (Greater Strip Assets)', 83780), (148491, 148491, 106, 106, 'Programmed Photon Particle Emitter (Greater Stumbling Steps)', 83716), (148362, 148362, 116, 116, 'Programmed Photon Particle Emitter (Greater Suspicious Death)', 83670), (149103, 149103, 106, 106, 'Programmed Photon Particle Emitter (Greater Team Healing Touch)', 83701), (148656, 148656, 76, 76, 'Programmed Photon Particle Emitter (Greater Team Healing)', 83702), (148251, 148251, 57, 57, 'Programmed Photon Particle Emitter (Greater Team Quick Heal)', 83701), (149104, 149104, 132, 132, 'Programmed Photon Particle Emitter (Greater Team Restore Essence)', 83702), (149105, 149105, 123, 123, 'Programmed Photon Particle Emitter (Greater Titanium Skin)', 144520), (149278, 149278, 83, 83, 'Programmed Photon Particle Emitter (Greater Toxic Field)', 83812), (149279, 149279, 179, 179, 'Programmed Photon Particle Emitter (Greater Viral Assault)', 83827), (148252, 148252, 96, 96, 'Programmed Photon Particle Emitter (Greater Wilderness Protection)', 144573), (149106, 149106, 53, 53, 'Programmed Photon Particle Emitter (Greater Wooden Skin)', 144518), (145118, 145118, 93, 93, 'Programmed Photon Particle Emitter (Greater Wrath Incarnation)', 144525), (149018, 149018, 123, 123, 'Programmed Photon Particle Emitter (Grid Excursion)', 83858), (149555, 149555, 166, 166, 'Programmed Photon Particle Emitter (Grid Gateway)', 83858), (162607, 162607, 132, 132, 'Programmed Photon Particle Emitter (Grid Phase Accelerator (Team))', 144539), (149019, 149019, 136, 136, 'Programmed Photon Particle Emitter (Grid Phase Accelerator)', 83751), (149020, 149020, 20, 20, 'Programmed Photon Particle Emitter (Grid Phreak)', 83858), (162610, 162610, 40, 40, 'Programmed Photon Particle Emitter (Grid Runner (Team))', 144536), (149021, 149021, 43, 43, 'Programmed Photon Particle Emitter (Grid Runner)', 83751), (162613, 162613, 76, 76, 'Programmed Photon Particle Emitter (Grid Surfer (Team))', 144537), (149022, 149022, 83, 83, 'Programmed Photon Particle Emitter (Grid Surfer)', 83751), (162616, 162616, 156, 156, 'Programmed Photon Particle Emitter (Gridspace Freedom (Team))', 144540), (149023, 149023, 156, 156, 'Programmed Photon Particle Emitter (Gridspace Freedom)', 83751), (204027, 204027, 94, 94, 'Programmed Photon Particle Emitter (Grim Circumstance)', 83648), (148254, 148254, 90, 90, 'Programmed Photon Particle Emitter (Grinning Hunter (Other))', 83770), (148255, 148255, 93, 93, 'Programmed Photon Particle Emitter (Grinning Hunter (Team))', 83770), (148253, 148253, 83, 83, 'Programmed Photon Particle Emitter (Grinning Hunter)', 83770), (149556, 149556, 149, 149, 'Programmed Photon Particle Emitter (Guard Convoy)', 144613), (148256, 148256, 90, 90, 'Programmed Photon Particle Emitter (Guard of the Grizzly)', 83656), (148907, 148907, 109, 109, 'Programmed Photon Particle Emitter (Guardbot)', 83763), (160863, 160863, 93, 93, 'Programmed Photon Particle Emitter (Guidance of The Executioner)', 144611), (203714, 203714, 200, 200, 'Programmed Photon Particle Emitter (Guile of the Snake Oil Seller)', 83648), (148908, 148908, 10, 10, 'Programmed Photon Particle Emitter (Gun Enhancement)', 83868), (148492, 148492, 14, 14, 'Programmed Photon Particle Emitter (Gunslinger)', 83767), (162619, 162619, 27, 27, 'Programmed Photon Particle Emitter (Hack Grid Vector (Team))', 144535), (149024, 149024, 30, 30, 'Programmed Photon Particle Emitter (Hack Grid Vector)', 83751), (162744, 162744, 37, 37, 'Programmed Photon Particle Emitter (Hacked Diagnosis)', 83702), (203191, 203191, 80, 80, 'Programmed Photon Particle Emitter (Hail of Metal)', 83697), (148657, 148657, 146, 146, 'Programmed Photon Particle Emitter (Hale and Hearty)', 83706), (148658, 148658, 172, 172, 'Programmed Photon Particle Emitter (Halo of Health)', 83707), (149280, 149280, 20, 20, 'Programmed Photon Particle Emitter (Halon Cloud)', 83816), (149025, 149025, 4, 4, 'Programmed Photon Particle Emitter (Halt Flight)', 83714), (149107, 149107, 14, 14, 'Programmed Photon Particle Emitter (Harden Skin)', 83745), (148909, 148909, 139, 139, 'Programmed Photon Particle Emitter (Harmonic Cocoon)', 144578), (149026, 149026, 43, 43, 'Programmed Photon Particle Emitter (Hasty Augmentation Cloud)', 144610), (148817, 148817, 30, 30, 'Programmed Photon Particle Emitter (Headcracker)', 83640), (148659, 148659, 123, 123, 'Programmed Photon Particle Emitter (Healer''s Hands)', 83705), (149108, 149108, 73, 73, 'Programmed Photon Particle Emitter (Healing Aura)', 83702), (148660, 148660, 116, 116, 'Programmed Photon Particle Emitter (Healing Light)', 83705), (148257, 148257, 156, 156, 'Programmed Photon Particle Emitter (Healing Rays of Sunrise)', 83703), (149109, 149109, 43, 43, 'Programmed Photon Particle Emitter (Healing Touch)', 83701), (148661, 148661, 156, 156, 'Programmed Photon Particle Emitter (Health Assembler)', 144584), (148662, 148662, 4, 4, 'Programmed Photon Particle Emitter (Health Augmentation)', 83795), (148663, 148663, 165, 165, 'Programmed Photon Particle Emitter (Health Cartel)', 83706), (149557, 149557, 86, 86, 'Programmed Photon Particle Emitter (Health Freeloader)', 144490), (149558, 149558, 20, 20, 'Programmed Photon Particle Emitter (Health Funnel)', 144486), (148664, 148664, 17, 17, 'Programmed Photon Particle Emitter (Health Graft)', 144475), (149559, 149559, 159, 159, 'Programmed Photon Particle Emitter (Health Plunder)', 144493), (148665, 148665, 60, 60, 'Programmed Photon Particle Emitter (Health Pump)', 83701), (148666, 148666, 30, 30, 'Programmed Photon Particle Emitter (Health Surge)', 83795), (149427, 149427, 159, 159, 'Programmed Photon Particle Emitter (Heavy Assault Absorption Shield)', 144574), (149428, 149428, 152, 152, 'Programmed Photon Particle Emitter (Heavy Assault Combat Barrier)', 144574), (148910, 148910, 185, 185, 'Programmed Photon Particle Emitter (Heavy Assault Force Field)', 144470), (149429, 149429, 139, 139, 'Programmed Photon Particle Emitter (Helepolis of the Besieger)', 144613), (148363, 148363, 40, 40, 'Programmed Photon Particle Emitter (Hidden Killer)', 83668), (145119, 145119, 182, 182, 'Programmed Photon Particle Emitter (High Chant of Effortless Strikes)', 83647), (145120, 145120, 156, 156, 'Programmed Photon Particle Emitter (High Chant of Frenzied Blows)', 83647), (149560, 149560, 30, 30, 'Programmed Photon Particle Emitter (Hired Hands)', 144610), (149281, 149281, 57, 57, 'Programmed Photon Particle Emitter (Hoary Seep)', 83817), (148364, 148364, 132, 132, 'Programmed Photon Particle Emitter (Hold Victim)', 83715), (149110, 149110, 149, 149, 'Programmed Photon Particle Emitter (Horde)', 83695), (148493, 148493, 179, 179, 'Programmed Photon Particle Emitter (Horror From The Darkest Pit)', 83788), (149561, 149561, 90, 90, 'Programmed Photon Particle Emitter (Hostile Takeover)', 83780), (149282, 149282, 14, 14, 'Programmed Photon Particle Emitter (Hot Foot)', 83834), (162131, 162131, 126, 126, 'Programmed Photon Particle Emitter (Howl of the Wolf)', 83777), (149283, 149283, 40, 40, 'Programmed Photon Particle Emitter (Humidity Extractor)', 83754), (149430, 149430, 132, 132, 'Programmed Photon Particle Emitter (Id Assault)', 83678), (145121, 145121, 90, 90, 'Programmed Photon Particle Emitter (Ignore External Events)', 83782), (148494, 148494, 80, 80, 'Programmed Photon Particle Emitter (Illusory Paralysis)', 83715), (149562, 149562, 146, 146, 'Programmed Photon Particle Emitter (Imaginary Distractions)', 83712), (203225, 203225, 121, 121, 'Programmed Photon Particle Emitter (Imminent Storm)', 83680), (148818, 148818, 63, 63, 'Programmed Photon Particle Emitter (Immolation Shield)', 83656), (149284, 149284, 123, 123, 'Programmed Photon Particle Emitter (Impactor Missile)', 83849), (149285, 149285, 139, 139, 'Programmed Photon Particle Emitter (Impaling Tracer)', 83850), (148258, 148258, 153, 153, 'Programmed Photon Particle Emitter (Implacability of Life)', 83703), (148495, 148495, 86, 86, 'Programmed Photon Particle Emitter (Impose Will)', 83780), (149563, 149563, 146, 146, 'Programmed Photon Particle Emitter (Impoverish Accounts)', 83780), (155905, 155905, 10, 10, 'Programmed Photon Particle Emitter (Improve Crushing Weapons)', 83640), (155544, 155544, 30, 30, 'Programmed Photon Particle Emitter (Improve Slashing Weapons)', 83739), (155908, 155908, 20, 20, 'Programmed Photon Particle Emitter (Improve Thrusting Weapons)', 83736), (148668, 148668, 126, 126, 'Programmed Photon Particle Emitter (Incandescent Venom)', 83668), (161896, 161896, 172, 172, 'Programmed Photon Particle Emitter (Incinerate)', 83838), (148669, 148669, 126, 126, 'Programmed Photon Particle Emitter (Induce Musculature Spasms)', 83727), (148670, 148670, 30, 30, 'Programmed Photon Particle Emitter (Infected Wounds)', 83664), (148911, 148911, 24, 24, 'Programmed Photon Particle Emitter (Inferior Android)', 83758), (145122, 145122, 1, 1, 'Programmed Photon Particle Emitter (Inferior Anger Manifestation)', 144523), (148912, 148912, 4, 4, 'Programmed Photon Particle Emitter (Inferior Automaton)', 83758), (148671, 148671, 14, 14, 'Programmed Photon Particle Emitter (Inferior Cleanse Wounds)', 83700), (145123, 145123, 159, 159, 'Programmed Photon Particle Emitter (Inferior Enmity Personification)', 144526), (145124, 145124, 123, 123, 'Programmed Photon Particle Emitter (Inferior Frenzy Embodiment)', 144525), (145125, 145125, 17, 17, 'Programmed Photon Particle Emitter (Inferior Fury Externalization)', 144523), (148913, 148913, 57, 57, 'Programmed Photon Particle Emitter (Inferior Gladiatorbot)', 83763), (148914, 148914, 96, 96, 'Programmed Photon Particle Emitter (Inferior Guardbot)', 83763), (145126, 145126, 40, 40, 'Programmed Photon Particle Emitter (Inferior Rage Materialization)', 144524), (148915, 148915, 139, 139, 'Programmed Photon Particle Emitter (Inferior Warbot)', 83764), (148916, 148916, 162, 162, 'Programmed Photon Particle Emitter (Inferior Warmachine)', 83765), (148672, 148672, 4, 4, 'Programmed Photon Particle Emitter (Inferior Wound Bindings)', 83700), (145127, 145127, 83, 83, 'Programmed Photon Particle Emitter (Inferior Wrath Incarnation)', 144524), (148673, 148673, 7, 7, 'Programmed Photon Particle Emitter (Inflict Harm)', 83841), (151810, 151810, 123, 123, 'Programmed Photon Particle Emitter (Infuse With Knowledge: Biological Metamorphose)', 83639), (151809, 151809, 130, 130, 'Programmed Photon Particle Emitter (Infuse With Knowledge: Material Creation)', 83741), (151807, 151807, 126, 126, 'Programmed Photon Particle Emitter (Infuse With Knowledge: Material Metamorphose)', 83743), (151806, 151806, 136, 136, 'Programmed Photon Particle Emitter (Infuse With Knowledge: Psychological Modification)', 83781), (151816, 151816, 133, 133, 'Programmed Photon Particle Emitter (Infuse With Knowledge: Sensory Improvement)', 83789), (151808, 151808, 130, 130, 'Programmed Photon Particle Emitter (Infuse With Knowledge: Time and Space)', 83742), (148674, 148674, 156, 156, 'Programmed Photon Particle Emitter (Infuse with Life)', 144475), (148496, 148496, 132, 132, 'Programmed Photon Particle Emitter (Inhibit Motion)', 83716), (148365, 148365, 14, 14, 'Programmed Photon Particle Emitter (Inject Poison)', 83664), (148366, 148366, 66, 66, 'Programmed Photon Particle Emitter (Inject Venom)', 83668), (149111, 149111, 169, 169, 'Programmed Photon Particle Emitter (Inner Peace, Outward Rage)', 144614), (148497, 148497, 152, 152, 'Programmed Photon Particle Emitter (Insidious Beguilement)', 83780), (149564, 149564, 123, 123, 'Programmed Photon Particle Emitter (Insolvency)', 83780), (149027, 149027, 74, 74, 'Programmed Photon Particle Emitter (Instantaneous Encoding)', 83858), (145128, 145128, 166, 166, 'Programmed Photon Particle Emitter (Instill With Enduring Wrath)', 83647), (145129, 145129, 113, 113, 'Programmed Photon Particle Emitter (Instill With Ferocious Purpose)', 83647), (145130, 145130, 41, 41, 'Programmed Photon Particle Emitter (Instill With Fury)', 83647), (145131, 145131, 189, 189, 'Programmed Photon Particle Emitter (Instill With Malign Intent)', 83647), (145132, 145132, 21, 21, 'Programmed Photon Particle Emitter (Instill With Rage)', 83647), (145133, 145133, 150, 150, 'Programmed Photon Particle Emitter (Instill With Righteous Frenzy)', 83647), (145134, 145134, 74, 74, 'Programmed Photon Particle Emitter (Instill With Terrible Anger)', 83647), (149028, 149028, 47, 47, 'Programmed Photon Particle Emitter (Insurance Hack)', 83701), (148259, 148259, 142, 142, 'Programmed Photon Particle Emitter (Interlocking Barbs)', 83656), (149286, 149286, 162, 162, 'Programmed Photon Particle Emitter (Internal Combustion)', 83838), (148676, 148676, 175, 175, 'Programmed Photon Particle Emitter (Internal Decomposition)', 83669), (145135, 145135, 14, 14, 'Programmed Photon Particle Emitter (Internal Focus)', 83782), (148677, 148677, 156, 156, 'Programmed Photon Particle Emitter (Internal Renewal)', 83706), (148917, 148917, 156, 156, 'Programmed Photon Particle Emitter (Intricate Repairs)', 83705), (148498, 148498, 132, 132, 'Programmed Photon Particle Emitter (Introspective Engagement)', 83712), (204483, 204483, 60, 60, 'Programmed Photon Particle Emitter (Intrusive Aura Cancellation)', 83648), (204471, 204471, 97, 97, 'Programmed Photon Particle Emitter (Intrusive Aura of Binding)', 83718), (204468, 204468, 60, 60, 'Programmed Photon Particle Emitter (Intrusive Aura of Entanglement)', 83718), (204474, 204474, 132, 132, 'Programmed Photon Particle Emitter (Intrusive Aura of Malaise)', 83719), (204477, 204477, 166, 166, 'Programmed Photon Particle Emitter (Intrusive Aura of Sloth)', 83719), (204480, 204480, 199, 199, 'Programmed Photon Particle Emitter (Intrusive Aura of the Humble Servant)', 83720), (149029, 149029, 63, 63, 'Programmed Photon Particle Emitter (Invasive Distributed Entanglement)', 83719), (149030, 149030, 73, 73, 'Programmed Photon Particle Emitter (Invasive Micro Entanglement)', 83720), (149287, 149287, 70, 70, 'Programmed Photon Particle Emitter (Invasive Presence)', 83823), (148499, 148499, 162, 162, 'Programmed Photon Particle Emitter (Inveigle Support)', 83780), (148260, 148260, 159, 159, 'Programmed Photon Particle Emitter (Invocation of the Phoenix)', 83703), (149288, 149288, 14, 14, 'Programmed Photon Particle Emitter (Ion Stream)', 83852), (148678, 148678, 83, 83, 'Programmed Photon Particle Emitter (Iron Circle)', 83797), (149112, 149112, 4, 4, 'Programmed Photon Particle Emitter (Iron Fist)', 83868), (149565, 149565, 149, 149, 'Programmed Photon Particle Emitter (Irresistible Health Haggler)', 83706), (149289, 149289, 50, 50, 'Programmed Photon Particle Emitter (Isotope Deluge)', 83853), (149290, 149290, 146, 146, 'Programmed Photon Particle Emitter (Isotope Waves)', 83631), (149291, 149291, 182, 182, 'Programmed Photon Particle Emitter (Izgimmer''s Enveloping Flame)', 83730), (149292, 149292, 212, 212, 'Programmed Photon Particle Emitter (Izgimmer''s Last Word)', 83732), (149293, 149293, 185, 185, 'Programmed Photon Particle Emitter (Izgimmer''s Little Nuke)', 83733), (150679, 150679, 182, 182, 'Programmed Photon Particle Emitter (Izgimmer''s Mockery)', 144522), (149294, 149294, 179, 179, 'Programmed Photon Particle Emitter (Izgimmer''s Obfuscated Recompiler)', 83754), (148261, 148261, 17, 17, 'Programmed Photon Particle Emitter (Jacket of Blades)', 83656), (204024, 204024, 200, 200, 'Programmed Photon Particle Emitter (Jail Break)', 83648), (149295, 149295, 152, 152, 'Programmed Photon Particle Emitter (Jobe Nano Libraries)', 83754), (149566, 149566, 80, 80, 'Programmed Photon Particle Emitter (Journeyman: Electrical Engineering)', 83679), (149567, 149567, 80, 80, 'Programmed Photon Particle Emitter (Journeyman: Field Quantum Physics)', 83687), (149568, 149568, 83, 83, 'Programmed Photon Particle Emitter (Journeyman: Mechanical Engineer)', 83744), (149569, 149569, 86, 86, 'Programmed Photon Particle Emitter (Journeyman: Pharmaceutical)', 83766), (149570, 149570, 86, 86, 'Programmed Photon Particle Emitter (Journeyman: Weapon Smithing)', 83866), (163106, 163106, 63, 63, 'Programmed Photon Particle Emitter (Jury-rigged NCU Analyzer)', 83653), (156073, 156295, 40, 60, 'Programmed Photon Particle Emitter (Kamikaze Robot I)', 83759), (156077, 156296, 130, 155, 'Programmed Photon Particle Emitter (Kamikaze Robot II)', 83759), (149031, 149031, 152, 152, 'Programmed Photon Particle Emitter (Karma Harvest)', 83757), (149296, 149296, 212, 212, 'Programmed Photon Particle Emitter (Kel''s Neutronium Plaything)', 83733), (162747, 162747, 53, 53, 'Programmed Photon Particle Emitter (Kitchen-sink Surgery)', 83702), (149113, 149113, 139, 139, 'Programmed Photon Particle Emitter (Last Minute Adjustments)', 83636), (148679, 148679, 14, 14, 'Programmed Photon Particle Emitter (Lasting Heal)', 83700), (149297, 149297, 80, 80, 'Programmed Photon Particle Emitter (Layered Protection)', 83634), (162134, 162134, 152, 152, 'Programmed Photon Particle Emitter (Leader of the Pack)', 144568), (162622, 162622, 57, 57, 'Programmed Photon Particle Emitter (Leech Grid Vector (Team))', 144536), (149032, 149032, 63, 63, 'Programmed Photon Particle Emitter (Leech Grid Vector)', 83751), (161884, 161884, 30, 30, 'Programmed Photon Particle Emitter (Leet Friend)', 144547), (161890, 161890, 106, 106, 'Programmed Photon Particle Emitter (Leetas Friend)', 144547), (149298, 149298, 162, 162, 'Programmed Photon Particle Emitter (Legions of the Eyeblighter)', 83755), (148367, 148367, 165, 165, 'Programmed Photon Particle Emitter (Leisurely Interrogation)', 83717), (149571, 149571, 24, 24, 'Programmed Photon Particle Emitter (Lend Nano: 100)', 83754), (149575, 149575, 172, 172, 'Programmed Photon Particle Emitter (Lend Nano: 1000)', 83754), (149572, 149572, 53, 53, 'Programmed Photon Particle Emitter (Lend Nano: 250)', 83754), (149573, 149573, 10, 10, 'Programmed Photon Particle Emitter (Lend Nano: 50)', 83754), (149574, 149574, 116, 116, 'Programmed Photon Particle Emitter (Lend Nano: 500)', 83754), (149431, 149431, 37, 37, 'Programmed Photon Particle Emitter (Lesser Absorption Shield)', 144570), (148368, 148368, 10, 10, 'Programmed Photon Particle Emitter (Lesser Anatomy Lesson)', 83868), (148918, 148918, 24, 24, 'Programmed Photon Particle Emitter (Lesser Android)', 83758), (148919, 148919, 4, 4, 'Programmed Photon Particle Emitter (Lesser Automaton)', 83758), (149299, 149299, 40, 40, 'Programmed Photon Particle Emitter (Lesser Bane of the Living)', 83823), (148500, 148500, 7, 7, 'Programmed Photon Particle Emitter (Lesser Blizzard of Red Tape)', 83718), (148680, 148680, 63, 63, 'Programmed Photon Particle Emitter (Lesser Bloom of Health)', 83703), (148681, 148681, 1, 1, 'Programmed Photon Particle Emitter (Lesser Cellular Grafting)', 83700), (148501, 148501, 96, 96, 'Programmed Photon Particle Emitter (Lesser Charismatic Rapture)', 83780), (148682, 148682, 47, 47, 'Programmed Photon Particle Emitter (Lesser Circle of Renewal)', 83701), (149432, 149432, 20, 20, 'Programmed Photon Particle Emitter (Lesser Combat Barrier)', 83779), (203914, 203914, 102, 102, 'Programmed Photon Particle Emitter (Lesser Conductive Spike)', 83648), (149300, 149300, 109, 109, 'Programmed Photon Particle Emitter (Lesser Coronet of Frost)', 83819), (148369, 148369, 93, 93, 'Programmed Photon Particle Emitter (Lesser Death''s Knocking)', 83670), (148920, 148920, 57, 57, 'Programmed Photon Particle Emitter (Lesser Defensive Screen)', 144466), (149434, 149434, 30, 30, 'Programmed Photon Particle Emitter (Lesser Deflection Shield (Extended))', 144576), (149433, 149433, 24, 24, 'Programmed Photon Particle Emitter (Lesser Deflection Shield)', 83784), (148370, 148370, 27, 27, 'Programmed Photon Particle Emitter (Lesser Delay Pursuers)', 83718), (148371, 148371, 37, 37, 'Programmed Photon Particle Emitter (Lesser Delay the Inevitable)', 83714), (149576, 149576, 57, 57, 'Programmed Photon Particle Emitter (Lesser Delayed Health Payment)', 83703), (156190, 156190, 34, 34, 'Programmed Photon Particle Emitter (Lesser Deranged Mindreaver)', 144532), (149577, 149577, 1, 1, 'Programmed Photon Particle Emitter (Lesser Detain Customer)', 83714), (156189, 156189, 4, 4, 'Programmed Photon Particle Emitter (Lesser Distracting Sphere)', 144531), (149578, 149578, 14, 14, 'Programmed Photon Particle Emitter (Lesser Embrace of Greed)', 83714), (149301, 149301, 47, 47, 'Programmed Photon Particle Emitter (Lesser Encircle With Blades)', 83841), (203926, 203926, 14, 14, 'Programmed Photon Particle Emitter (Lesser Energize Shell)', 83648), (148502, 148502, 14, 14, 'Programmed Photon Particle Emitter (Lesser Enforced Sloth)', 83718), (145137, 145137, 156, 156, 'Programmed Photon Particle Emitter (Lesser Enmity Personification)', 144526), (203880, 203880, 71, 71, 'Programmed Photon Particle Emitter (Lesser Exoskeleton Pulse)', 83648), (149302, 149302, 86, 86, 'Programmed Photon Particle Emitter (Lesser Eyeblighter)', 83755), (148503, 148503, 149, 149, 'Programmed Photon Particle Emitter (Lesser Fear of Attention)', 83716), (148921, 148921, 162, 162, 'Programmed Photon Particle Emitter (Lesser Force Field)', 144469), (145138, 145138, 113, 113, 'Programmed Photon Particle Emitter (Lesser Frenzy Embodiment)', 144525), (145139, 145139, 14, 14, 'Programmed Photon Particle Emitter (Lesser Fury Externalization)', 144523), (148922, 148922, 53, 53, 'Programmed Photon Particle Emitter (Lesser Gladiatorbot)', 83763), (148923, 148923, 93, 93, 'Programmed Photon Particle Emitter (Lesser Guardbot)', 83763), (148924, 148924, 96, 96, 'Programmed Photon Particle Emitter (Lesser Harmonic Cocoon)', 144577), (149114, 149114, 10, 10, 'Programmed Photon Particle Emitter (Lesser Healing Touch)', 83700), (149579, 149579, 80, 80, 'Programmed Photon Particle Emitter (Lesser Health Freeloader)', 144489), (149580, 149580, 17, 17, 'Programmed Photon Particle Emitter (Lesser Health Funnel)', 144486), (149581, 149581, 156, 156, 'Programmed Photon Particle Emitter (Lesser Health Plunder)', 144493), (148372, 148372, 17, 17, 'Programmed Photon Particle Emitter (Lesser Hold Victim)', 83714), (148504, 148504, 4, 4, 'Programmed Photon Particle Emitter (Lesser Illusory Paralysis)', 83714), (148683, 148683, 17, 17, 'Programmed Photon Particle Emitter (Lesser Muscle Atrophy)', 83727), (148505, 148505, 33, 33, 'Programmed Photon Particle Emitter (Lesser Musculature Command)', 83715), (148373, 148373, 27, 27, 'Programmed Photon Particle Emitter (Lesser Mysterious Causes)', 83664), (148684, 148684, 17, 17, 'Programmed Photon Particle Emitter (Lesser Nano Bandage)', 83701), (149033, 149033, 10, 10, 'Programmed Photon Particle Emitter (Lesser Nano Boost)', 83868), (149034, 149034, 10, 10, 'Programmed Photon Particle Emitter (Lesser Nano Net)', 83714), (148685, 148685, 24, 24, 'Programmed Photon Particle Emitter (Lesser Nano Surgery)', 83701), (149035, 149035, 20, 20, 'Programmed Photon Particle Emitter (Lesser Net Cast Wide)', 83718), (148374, 148374, 33, 33, 'Programmed Photon Particle Emitter (Lesser Paralyze with Indecision)', 83714), (148506, 148506, 27, 27, 'Programmed Photon Particle Emitter (Lesser Pheromone Control)', 83780), (204441, 204441, 52, 52, 'Programmed Photon Particle Emitter (Lesser Polarized Screening)', 144465), (148686, 148686, 109, 109, 'Programmed Photon Particle Emitter (Lesser Policy Payout)', 83703), (149036, 149036, 27, 27, 'Programmed Photon Particle Emitter (Lesser Prolong Encounter)', 83715), (148925, 148925, 50, 50, 'Programmed Photon Particle Emitter (Lesser Protective Field)', 144466), (149303, 149303, 14, 14, 'Programmed Photon Particle Emitter (Lesser RNA Reaper)', 83852), (145140, 145140, 37, 37, 'Programmed Photon Particle Emitter (Lesser Rage Materialization)', 144524), (149436, 149436, 123, 123, 'Programmed Photon Particle Emitter (Lesser Reflective Field (Extended))', 144578), (149435, 149435, 123, 123, 'Programmed Photon Particle Emitter (Lesser Reflective Field)', 144578), (148262, 148262, 21, 21, 'Programmed Photon Particle Emitter (Lesser Restore to Health)', 83700), (148926, 148926, 37, 37, 'Programmed Photon Particle Emitter (Lesser Retaliatory Barrier)', 83656), (149115, 149115, 33, 33, 'Programmed Photon Particle Emitter (Lesser Shen Protection)', 144518), (148927, 148927, 43, 43, 'Programmed Photon Particle Emitter (Lesser Shielding Barrier)', 144466), (148507, 148507, 4, 4, 'Programmed Photon Particle Emitter (Lesser Stumbling Steps)', 83718), (162518, 162518, 14, 14, 'Programmed Photon Particle Emitter (Lesser Suppressor)', 83746), (148375, 148375, 4, 4, 'Programmed Photon Particle Emitter (Lesser Suspicious Death)', 83664), (148928, 148928, 136, 136, 'Programmed Photon Particle Emitter (Lesser Warbot)', 83764), (148929, 148929, 159, 159, 'Programmed Photon Particle Emitter (Lesser Warmachine)', 83764), (148508, 148508, 37, 37, 'Programmed Photon Particle Emitter (Lesser Weighty Announcement)', 83718), (148263, 148263, 20, 20, 'Programmed Photon Particle Emitter (Lesser Wilderness Protection)', 144570), (145141, 145141, 76, 76, 'Programmed Photon Particle Emitter (Lesser Wrath Incarnation)', 144524), (161934, 161934, 146, 146, 'Programmed Photon Particle Emitter (Lick Wounds)', 83703), (148821, 148821, 136, 136, 'Programmed Photon Particle Emitter (Lick of Fire)', 83656), (148687, 148687, 152, 152, 'Programmed Photon Particle Emitter (Life Balm)', 83706), (148688, 148688, 182, 182, 'Programmed Photon Particle Emitter (Life Channeler)', 144584), (148689, 148689, 50, 50, 'Programmed Photon Particle Emitter (Life Reinforcement)', 144582), (149037, 149037, 90, 90, 'Programmed Photon Particle Emitter (Lifebane Modification)', 144611), (148690, 148690, 165, 165, 'Programmed Photon Particle Emitter (Lifegiving Elixir)', 83707), (148822, 148822, 106, 106, 'Programmed Photon Particle Emitter (Lightning Shield)', 83656), (149304, 149304, 80, 80, 'Programmed Photon Particle Emitter (Lightning Strike)', 83830), (148264, 148264, 152, 152, 'Programmed Photon Particle Emitter (Lightning''s Child)', 83656), (149116, 149116, 17, 17, 'Programmed Photon Particle Emitter (Limbo Mastery)', 83684), (148509, 148509, 132, 132, 'Programmed Photon Particle Emitter (Limited Administrator-Droid)', 83764), (148510, 148510, 73, 73, 'Programmed Photon Particle Emitter (Limited Aide-Droid)', 83763), (148511, 148511, 50, 50, 'Programmed Photon Particle Emitter (Limited Assistant-Droid)', 83763), (148512, 148512, 30, 30, 'Programmed Photon Particle Emitter (Limited Attendant-Droid)', 83758), (148513, 148513, 162, 162, 'Programmed Photon Particle Emitter (Limited Bodyguard)', 83765), (162625, 162625, 14, 14, 'Programmed Photon Particle Emitter (Limited Grid Jump (Team))', 144535), (149038, 149038, 17, 17, 'Programmed Photon Particle Emitter (Limited Grid Jump)', 83751), (148514, 148514, 17, 17, 'Programmed Photon Particle Emitter (Limited Helper-Bot)', 83758), (148515, 148515, 146, 146, 'Programmed Photon Particle Emitter (Limited Minion)', 83765), (148691, 148691, 7, 7, 'Programmed Photon Particle Emitter (Limited Nano Reaper)', 83664), (148516, 148516, 99, 99, 'Programmed Photon Particle Emitter (Limited Secretary-Droid)', 83764), (149305, 149305, 83, 83, 'Programmed Photon Particle Emitter (Limited Shrapnel Spray)', 83624), (148517, 148517, 1, 1, 'Programmed Photon Particle Emitter (Limited Worker-Droid)', 83758), (149582, 149582, 7, 7, 'Programmed Photon Particle Emitter (Line of Credit)', 83780), (149306, 149306, 159, 159, 'Programmed Photon Particle Emitter (Linear Acceleration)', 83850), (149307, 149307, 132, 132, 'Programmed Photon Particle Emitter (Liquefying Sphere)', 83813), (149583, 149583, 156, 156, 'Programmed Photon Particle Emitter (Liquidation)', 83780), (205167, 205167, 166, 166, 'Programmed Photon Particle Emitter (Living Codex of Izgimmer)', 83752), (148518, 148518, 175, 175, 'Programmed Photon Particle Emitter (Living Embalming)', 83709), (149308, 149308, 189, 189, 'Programmed Photon Particle Emitter (Localized Dimensional Inversion)', 83845), (149117, 149117, 27, 27, 'Programmed Photon Particle Emitter (Lotus on Water)', 83868), (149039, 149039, 83, 83, 'Programmed Photon Particle Emitter (Luck''s Fickle Fate)', 83684), (203699, 203699, 200, 200, 'Programmed Photon Particle Emitter (Luck''s Lost Twin)', 83648), (145142, 145142, 162, 162, 'Programmed Photon Particle Emitter (Lull Wrath)', 83868), (162325, 162325, 53, 53, 'Programmed Photon Particle Emitter (Lupus Oculus)', 83757), (161403, 161403, 57, 57, 'Programmed Photon Particle Emitter (Lure of the Pincushion)', 83656), (149588, 149588, 152, 152, 'Programmed Photon Particle Emitter (Maestro: Electrical Engineering)', 83679), (149589, 149589, 152, 152, 'Programmed Photon Particle Emitter (Maestro: Field Quantum Physics)', 83687), (149590, 149590, 152, 152, 'Programmed Photon Particle Emitter (Maestro: Mechanical Engineering)', 83744), (149591, 149591, 156, 156, 'Programmed Photon Particle Emitter (Maestro: Pharmaceutical)', 83766), (149592, 149592, 156, 156, 'Programmed Photon Particle Emitter (Maestro: Weapon Smithing)', 83866), (148265, 148265, 109, 109, 'Programmed Photon Particle Emitter (Magma Coating)', 83656), (149593, 149593, 189, 189, 'Programmed Photon Particle Emitter (Major Armor Distributor)', 144484), (149309, 149309, 146, 146, 'Programmed Photon Particle Emitter (Major Chemical Burn)', 83814), (149438, 149438, 70, 70, 'Programmed Photon Particle Emitter (Major Deflection Shield (Extended))', 144577), (149437, 149437, 63, 63, 'Programmed Photon Particle Emitter (Major Deflection Shield)', 144577), (149594, 149594, 100, 100, 'Programmed Photon Particle Emitter (Major Delayed Health Payment)', 83704), (149595, 149595, 93, 93, 'Programmed Photon Particle Emitter (Major Health Freeloader)', 144490), (149596, 149596, 24, 24, 'Programmed Photon Particle Emitter (Major Health Funnel)', 144487), (148692, 148692, 93, 93, 'Programmed Photon Particle Emitter (Major Health Graft)', 144475), (149597, 149597, 162, 162, 'Programmed Photon Particle Emitter (Major Health Plunder)', 144493), (148376, 148376, 80, 80, 'Programmed Photon Particle Emitter (Major Nano Augmentation)', 144612), (149440, 149440, 139, 139, 'Programmed Photon Particle Emitter (Major Reflective Field (Extended))', 144580), (149439, 149439, 136, 136, 'Programmed Photon Particle Emitter (Major Reflective Field)', 144580), (149118, 149118, 99, 99, 'Programmed Photon Particle Emitter (Major Shen Protection)', 144519), (162503, 162503, 73, 73, 'Programmed Photon Particle Emitter (Major Suppressor)', 83746), (148266, 148266, 70, 70, 'Programmed Photon Particle Emitter (Major Wilderness Protection)', 144572), (148267, 148267, 74, 74, 'Programmed Photon Particle Emitter (Makeshift Bandaging)', 83701), (149310, 149310, 149, 149, 'Programmed Photon Particle Emitter (Malign Devourer)', 83826), (149598, 149598, 14, 14, 'Programmed Photon Particle Emitter (Margin Call)', 83780), (160624, 160624, 126, 126, 'Programmed Photon Particle Emitter (Mark of Danger)', 83636), (160627, 160627, 159, 159, 'Programmed Photon Particle Emitter (Mark of Peril)', 83636), (160621, 160621, 57, 57, 'Programmed Photon Particle Emitter (Mark of Risk)', 83636), (149119, 149119, 50, 50, 'Programmed Photon Particle Emitter (Martial Arts Mastery)', 83740), (149311, 149311, 20, 20, 'Programmed Photon Particle Emitter (Mass Claw Eyes)', 83755), (149312, 149312, 109, 109, 'Programmed Photon Particle Emitter (Mass Cornea Attack)', 83755), (148519, 148519, 10, 10, 'Programmed Photon Particle Emitter (Mass Daze)', 83714), (149040, 149040, 136, 136, 'Programmed Photon Particle Emitter (Mass Gravity Bindings)', 83721), (148520, 148520, 27, 27, 'Programmed Photon Particle Emitter (Mass Illusory Paralysis)', 83714), (149313, 149313, 132, 132, 'Programmed Photon Particle Emitter (Mass Pronounce Blindness)', 83755), (204041, 204041, 169, 169, 'Programmed Photon Particle Emitter (Master Escapologist)', 83648), (149599, 149599, 116, 116, 'Programmed Photon Particle Emitter (Masterly Health Haggler)', 83705), (145143, 145143, 43, 43, 'Programmed Photon Particle Emitter (MatCrea Mastery)', 83741), (145145, 145145, 50, 50, 'Programmed Photon Particle Emitter (MatMet Mastery)', 83743), (148695, 148695, 57, 57, 'Programmed Photon Particle Emitter (Medic''s Call)', 83702), (148696, 148696, 47, 47, 'Programmed Photon Particle Emitter (Medic''s Respite)', 144475), (149041, 149041, 17, 17, 'Programmed Photon Particle Emitter (Medical Claim)', 83700), (148693, 148693, 132, 132, 'Programmed Photon Particle Emitter (Medical Response)', 83705), (148694, 148694, 70, 70, 'Programmed Photon Particle Emitter (Medical Sequencer)', 83701), (149120, 149120, 40, 40, 'Programmed Photon Particle Emitter (Meditate on an Autumn Leaf)', 144610), (161385, 161385, 169, 169, 'Programmed Photon Particle Emitter (Meld With Background)', 83654), (149600, 149600, 34, 34, 'Programmed Photon Particle Emitter (Mental Switcheroo)', 83710), (149314, 149314, 123, 123, 'Programmed Photon Particle Emitter (Mephitic Ichor)', 83825), (149315, 149315, 103, 103, 'Programmed Photon Particle Emitter (Meson Blast)', 83830), (149316, 149316, 136, 136, 'Programmed Photon Particle Emitter (Meta-Dioxin Spray)', 83813), (148697, 148697, 119, 119, 'Programmed Photon Particle Emitter (Metabolic Disassembly)', 83668), (148698, 148698, 33, 33, 'Programmed Photon Particle Emitter (Metabolism Booster)', 144475), (203182, 203182, 170, 170, 'Programmed Photon Particle Emitter (Metal Barrage)', 83697), (203188, 203188, 106, 106, 'Programmed Photon Particle Emitter (Metal Storm)', 83697), (203185, 203185, 140, 140, 'Programmed Photon Particle Emitter (Metal Strike)', 83697), (149318, 149318, 116, 116, 'Programmed Photon Particle Emitter (Micro Flechette Swarm)', 83849), (149317, 149317, 17, 17, 'Programmed Photon Particle Emitter (Micro Flechette)', 83846), (149319, 149319, 47, 47, 'Programmed Photon Particle Emitter (Microblade Whirlwind)', 83670), (148824, 148824, 149, 149, 'Programmed Photon Particle Emitter (Mighty Challenger to Behemoth)', 144516), (148825, 148825, 129, 129, 'Programmed Photon Particle Emitter (Mighty Challenger to Colossus)', 144514), (148826, 148826, 24, 24, 'Programmed Photon Particle Emitter (Mighty Challenger to Cyclops)', 83694), (148827, 148827, 90, 90, 'Programmed Photon Particle Emitter (Mighty Challenger to Gargantua)', 144513), (148828, 148828, 136, 136, 'Programmed Photon Particle Emitter (Mighty Challenger to Leviathan)', 144515), (148829, 148829, 53, 53, 'Programmed Photon Particle Emitter (Mighty Challenger to Titan)', 144512), (149320, 149320, 37, 37, 'Programmed Photon Particle Emitter (Mild Toxic Spill)', 83583), (148930, 148930, 156, 156, 'Programmed Photon Particle Emitter (Military-Grade Warbot)', 83764), (148931, 148931, 175, 175, 'Programmed Photon Particle Emitter (Military-Grade Warmachine)', 83765), (148377, 148377, 152, 152, 'Programmed Photon Particle Emitter (Mimic Profession: Adventurer)', 83798), (148378, 148378, 165, 165, 'Programmed Photon Particle Emitter (Mimic Profession: Bureaucrat)', 83798), (148379, 148379, 162, 162, 'Programmed Photon Particle Emitter (Mimic Profession: Doctor)', 83798), (148380, 148380, 146, 146, 'Programmed Photon Particle Emitter (Mimic Profession: Enforcer)', 83798), (148381, 148381, 156, 156, 'Programmed Photon Particle Emitter (Mimic Profession: Engineer)', 83798), (148382, 148382, 159, 159, 'Programmed Photon Particle Emitter (Mimic Profession: Fixer)', 83798), (148383, 148383, 149, 149, 'Programmed Photon Particle Emitter (Mimic Profession: Martial Artist)', 83798), (148387, 148387, 165, 165, 'Programmed Photon Particle Emitter (Mimic Profession: Meta-Physicist)', 83798), (148384, 148384, 169, 169, 'Programmed Photon Particle Emitter (Mimic Profession: Nanotechnician)', 83798), (148385, 148385, 146, 146, 'Programmed Photon Particle Emitter (Mimic Profession: Soldier)', 83798), (148386, 148386, 162, 162, 'Programmed Photon Particle Emitter (Mimic Profession: Trader)', 83798), (145146, 145146, 146, 146, 'Programmed Photon Particle Emitter (Mind Banshee)', 83831), (145147, 145147, 87, 87, 'Programmed Photon Particle Emitter (Mind Howl)', 83830), (145149, 145149, 173, 173, 'Programmed Photon Particle Emitter (Mind Quake)', 83832), (145150, 145150, 50, 50, 'Programmed Photon Particle Emitter (Mind Scream)', 83829), (149441, 149441, 14, 14, 'Programmed Photon Particle Emitter (Minor Absorption Shield)', 83779), (148699, 148699, 40, 40, 'Programmed Photon Particle Emitter (Minor Balm)', 83702), (149321, 149321, 57, 57, 'Programmed Photon Particle Emitter (Minor Bane)', 83823), (149442, 149442, 4, 4, 'Programmed Photon Particle Emitter (Minor Combat Barrier)', 83779), (148700, 148700, 37, 37, 'Programmed Photon Particle Emitter (Minor Consuming Toxin)', 83664), (149444, 149444, 17, 17, 'Programmed Photon Particle Emitter (Minor Deflection Shield (Extended))', 83784), (149443, 149443, 14, 14, 'Programmed Photon Particle Emitter (Minor Deflection Shield)', 83784), (149601, 149601, 21, 21, 'Programmed Photon Particle Emitter (Minor Delayed Health Payment)', 83701), (203877, 203877, 36, 36, 'Programmed Photon Particle Emitter (Minor Exoskeleton Pulse)', 83648), (148932, 148932, 66, 66, 'Programmed Photon Particle Emitter (Minor Harmonic Cocoon)', 144576), (149602, 149602, 60, 60, 'Programmed Photon Particle Emitter (Minor Health Freeloader)', 144489), (149603, 149603, 7, 7, 'Programmed Photon Particle Emitter (Minor Health Funnel)', 144485), (149604, 149604, 146, 146, 'Programmed Photon Particle Emitter (Minor Health Plunder)', 144492), (149446, 149446, 119, 119, 'Programmed Photon Particle Emitter (Minor Reflective Field (Extended))', 144578), (149445, 149445, 113, 113, 'Programmed Photon Particle Emitter (Minor Reflective Field)', 144578), (149121, 149121, 7, 7, 'Programmed Photon Particle Emitter (Minor Shen Protection)', 83745), (148701, 148701, 7, 7, 'Programmed Photon Particle Emitter (Minor Team Healing)', 83700), (148702, 148702, 33, 33, 'Programmed Photon Particle Emitter (Minor Team Purification)', 83701), (149322, 149322, 1, 1, 'Programmed Photon Particle Emitter (Minor Toxic Barb)', 83822), (149323, 149323, 10, 10, 'Programmed Photon Particle Emitter (Minor Toxic Field)', 83810), (148268, 148268, 4, 4, 'Programmed Photon Particle Emitter (Minor Wilderness Protection)', 83779), (145151, 145151, 165, 165, 'Programmed Photon Particle Emitter (Mocham''s Gift: BioMet)', 83750), (145152, 145152, 165, 165, 'Programmed Photon Particle Emitter (Mocham''s Gift: MatCrea)', 83750), (145154, 145154, 162, 162, 'Programmed Photon Particle Emitter (Mocham''s Gift: MatMet)', 83750), (145155, 145155, 169, 169, 'Programmed Photon Particle Emitter (Mocham''s Gift: PsyMod)', 83750), (145156, 145156, 165, 165, 'Programmed Photon Particle Emitter (Mocham''s Gift: SenseImp)', 83750), (145153, 145153, 162, 162, 'Programmed Photon Particle Emitter (Mocham''s Gift: SpaceTime)', 83750), (145157, 145157, 159, 159, 'Programmed Photon Particle Emitter (Mocham''s Neural Interface-Web)', 83754), (203720, 203720, 120, 120, 'Programmed Photon Particle Emitter (Modulate Manifestation)', 83648), (149324, 149324, 185, 185, 'Programmed Photon Particle Emitter (Molecular Deconstruction)', 83827), (149325, 149325, 165, 165, 'Programmed Photon Particle Emitter (Molecular Flechettes)', 83850), (148703, 148703, 156, 156, 'Programmed Photon Particle Emitter (Molecular Rejuvenation)', 83705), (149326, 149326, 17, 17, 'Programmed Photon Particle Emitter (Molecule Lance)', 83846), (149327, 149327, 123, 123, 'Programmed Photon Particle Emitter (Momentum Impaler)', 83849), (205274, 205274, 136, 136, 'Programmed Photon Particle Emitter (Monitor Aggression Subsystem)', 83760), (205259, 205259, 37, 37, 'Programmed Photon Particle Emitter (Monitor Combat Array)', 83760), (148521, 148521, 169, 169, 'Programmed Photon Particle Emitter (Monofilament Cat-O', 83844), (148522, 148522, 152, 152, 'Programmed Photon Particle Emitter (Monofilament Scourger)', 83843), (148523, 148523, 50, 50, 'Programmed Photon Particle Emitter (Monofilament Whip)', 83841), (149122, 149122, 152, 152, 'Programmed Photon Particle Emitter (Monomolecular Skin)', 144522), (148269, 148269, 176, 176, 'Programmed Photon Particle Emitter (Moonbeam)', 83703), (148704, 148704, 172, 172, 'Programmed Photon Particle Emitter (Morgue Longings)', 83669), (157596, 157596, 156, 156, 'Programmed Photon Particle Emitter (Motivational Speech: Assassin''s Focus)', 83636), (155825, 155825, 83, 83, 'Programmed Photon Particle Emitter (Motivational Speech: Bravery Overcomes)', 83636), (155828, 155828, 156, 156, 'Programmed Photon Particle Emitter (Motivational Speech: Glorious Leader)', 83636), (155827, 155827, 186, 186, 'Programmed Photon Particle Emitter (Motivational Speech: Heroic Measures)', 83636), (157595, 157595, 149, 149, 'Programmed Photon Particle Emitter (Motivational Speech: Implement Through Iteration)', 83753), (157594, 157594, 149, 149, 'Programmed Photon Particle Emitter (Motivational Speech: Improvise and Adapt)', 83753), (155826, 155826, 37, 37, 'Programmed Photon Particle Emitter (Motivational Speech: Lead From The Front)', 83636), (157593, 157593, 50, 50, 'Programmed Photon Particle Emitter (Motivational Speech: Only the Paranoid Will Survive!)', 83753), (157592, 157592, 87, 87, 'Programmed Photon Particle Emitter (Motivational Speech: Opportunity Knocks)', 83636), (157608, 157608, 97, 97, 'Programmed Photon Particle Emitter (Motivational Speech: Organizational Opportunitites)', 83753), (155829, 155829, 130, 130, 'Programmed Photon Particle Emitter (Motivational Speech: Triumphant Pose)', 83636), (155627, 155627, 44, 44, 'Programmed Photon Particle Emitter (Mud Slinger)', 83782), (148524, 148524, 126, 126, 'Programmed Photon Particle Emitter (Muddled Psyche)', 83711), (149123, 149123, 70, 70, 'Programmed Photon Particle Emitter (Muscle Booster)', 83797), (149124, 149124, 20, 20, 'Programmed Photon Particle Emitter (Muscle Stim)', 83797), (148525, 148525, 116, 116, 'Programmed Photon Particle Emitter (Musculature Command)', 83716), (149605, 149605, 186, 186, 'Programmed Photon Particle Emitter (My Brain For Your Brain)', 83713), (148388, 148388, 83, 83, 'Programmed Photon Particle Emitter (Mysterious Causes)', 83669), (163100, 163100, 20, 20, 'Programmed Photon Particle Emitter (NCU Compressor)', 83653), (148389, 148389, 24, 24, 'Programmed Photon Particle Emitter (Nano Augmentation)', 144610), (148706, 148706, 73, 73, 'Programmed Photon Particle Emitter (Nano Bandage)', 83703), (149043, 149043, 80, 80, 'Programmed Photon Particle Emitter (Nano Boost)', 144611), (162756, 162756, 109, 109, 'Programmed Photon Particle Emitter (Nano Cauterization)', 83704), (149328, 149328, 149, 149, 'Programmed Photon Particle Emitter (Nano Cloud Supplement)', 83648), (149329, 149329, 53, 53, 'Programmed Photon Particle Emitter (Nano Contagion)', 83823), (149044, 149044, 37, 37, 'Programmed Photon Particle Emitter (Nano Net)', 83719), (148707, 148707, 99, 99, 'Programmed Photon Particle Emitter (Nano Reaper)', 83668), (145158, 145158, 162, 162, 'Programmed Photon Particle Emitter (Nano Shutdown)', 83754), (148709, 148709, 93, 93, 'Programmed Photon Particle Emitter (Nano Surgery)', 83704), (149330, 149330, 142, 142, 'Programmed Photon Particle Emitter (Nanoblade Cloud)', 83844), (148270, 148270, 34, 34, 'Programmed Photon Particle Emitter (Natural Cure)', 83700), (148271, 148271, 90, 90, 'Programmed Photon Particle Emitter (Natural Remedy)', 83701), (148272, 148272, 162, 162, 'Programmed Photon Particle Emitter (Nature''s Blessing)', 83703), (203901, 203901, 101, 101, 'Programmed Photon Particle Emitter (Negotiate for Freedom)', 83648), (148273, 148273, 99, 99, 'Programmed Photon Particle Emitter (Nest of Vipers)', 83656), (149045, 149045, 43, 43, 'Programmed Photon Particle Emitter (Net Cast Wide)', 83719), (149046, 149046, 159, 159, 'Programmed Photon Particle Emitter (Neural Interfaced Augmentation Cloud)', 144614), (149331, 149331, 152, 152, 'Programmed Photon Particle Emitter (Neural Stunner)', 83709), (145159, 145159, 129, 129, 'Programmed Photon Particle Emitter (Neuron-Notum Interface)', 83754), (149332, 149332, 66, 66, 'Programmed Photon Particle Emitter (Neutron Spiral)', 83853), (149047, 149047, 14, 14, 'Programmed Photon Particle Emitter (No Escape Possible)', 83714), (145160, 145160, 60, 60, 'Programmed Photon Particle Emitter (Notum Attunement)', 83754), (149333, 149333, 175, 175, 'Programmed Photon Particle Emitter (Notum Overload)', 83648), (145161, 145161, 149, 149, 'Programmed Photon Particle Emitter (Notum Rejection)', 83754), (149606, 149606, 11, 11, 'Programmed Photon Particle Emitter (Novice Health Haggler)', 83700), (154775, 154775, 189, 189, 'Programmed Photon Particle Emitter (Null Space Disruptor)', 144483), (150536, 150536, 159, 159, 'Programmed Photon Particle Emitter (Nullity Sphere MK II)', 144578), (150535, 150535, 90, 90, 'Programmed Photon Particle Emitter (Nullity Sphere)', 144575), (145162, 145162, 165, 165, 'Programmed Photon Particle Emitter (Odin''s Missing Eye)', 83755), (149447, 149447, 156, 156, 'Programmed Photon Particle Emitter (Offensive Steamroller)', 83637), (149334, 149334, 96, 96, 'Programmed Photon Particle Emitter (Ol'' Faithful)', 83848), (149048, 149048, 149, 149, 'Programmed Photon Particle Emitter (Omni-Med Incursion)', 83705), (205286, 205286, 200, 200, 'Programmed Photon Particle Emitter (Omni-Pol Pacification Logic System)', 83760), (149335, 149335, 73, 73, 'Programmed Photon Particle Emitter (On-The-Fly Compression)', 83754), (204534, 204534, 180, 180, 'Programmed Photon Particle Emitter (One Foot in the Grave)', 83701), (145163, 145163, 162, 162, 'Programmed Photon Particle Emitter (One Mind, One Purpose)', 83782), (148274, 148274, 182, 182, 'Programmed Photon Particle Emitter (One With Nature)', 83703), (149448, 149448, 76, 76, 'Programmed Photon Particle Emitter (One-More-Hit Healing)', 83700), (149449, 149449, 152, 152, 'Programmed Photon Particle Emitter (Only You, Only Me)', 83678), (149336, 149336, 7, 7, 'Programmed Photon Particle Emitter (Open Wound)', 83840), (148526, 148526, 152, 152, 'Programmed Photon Particle Emitter (Oppressive Weight of the Guilty)', 83717), (149607, 149607, 24, 24, 'Programmed Photon Particle Emitter (Overdraught)', 83780), (205283, 205283, 193, 193, 'Programmed Photon Particle Emitter (Overdrive Aggression Subsystem)', 83760), (205268, 205268, 96, 96, 'Programmed Photon Particle Emitter (Overdrive Combat Array)', 83760), (162128, 162128, 66, 66, 'Programmed Photon Particle Emitter (Pack Hunter)', 83776), (148390, 148390, 99, 99, 'Programmed Photon Particle Emitter (Paralyze with Indecision)', 83716), (148710, 148710, 40, 40, 'Programmed Photon Particle Emitter (Parasitic Affliction)', 83664), (148711, 148711, 152, 152, 'Programmed Photon Particle Emitter (Parasitic Horde)', 83669), (149451, 149451, 7, 7, 'Programmed Photon Particle Emitter (Partial Deflection Shield (Extended))', 83784), (149450, 149450, 1, 1, 'Programmed Photon Particle Emitter (Partial Deflection Shield)', 83784), (149125, 149125, 136, 136, 'Programmed Photon Particle Emitter (Partial Diamond Skin)', 144521), (162628, 162628, 106, 106, 'Programmed Photon Particle Emitter (Partial Grid Jump (Team))', 144538), (149049, 149049, 113, 113, 'Programmed Photon Particle Emitter (Partial Grid Jump)', 83751), (148933, 148933, 30, 30, 'Programmed Photon Particle Emitter (Partial Harmonic Cocoon)', 83784), (149453, 149453, 99, 99, 'Programmed Photon Particle Emitter (Partial Reflective Field (Extended))', 144578), (149452, 149452, 96, 96, 'Programmed Photon Particle Emitter (Partial Reflective Field)', 144577), (149337, 149337, 123, 123, 'Programmed Photon Particle Emitter (Particle Accelerator)', 83831), (149338, 149338, 129, 129, 'Programmed Photon Particle Emitter (Particle Flare)', 83855), (149339, 149339, 90, 90, 'Programmed Photon Particle Emitter (Particle Shower)', 83854), (204056, 204056, 67, 67, 'Programmed Photon Particle Emitter (Passage for One)', 83648), (149050, 149050, 7, 7, 'Programmed Photon Particle Emitter (Passive Distributed Entanglement)', 83718), (149051, 149051, 4, 4, 'Programmed Photon Particle Emitter (Passive Micro Entanglement)', 83714), (148275, 148275, 41, 41, 'Programmed Photon Particle Emitter (Patch Wounds)', 83700), (148934, 148934, 20, 20, 'Programmed Photon Particle Emitter (Patchwork Android)', 83758), (148935, 148935, 1, 1, 'Programmed Photon Particle Emitter (Patchwork Automaton)', 83758), (148936, 148936, 50, 50, 'Programmed Photon Particle Emitter (Patchwork Gladiatorbot)', 83763), (148937, 148937, 90, 90, 'Programmed Photon Particle Emitter (Patchwork Guardbot)', 83763), (148938, 148938, 132, 132, 'Programmed Photon Particle Emitter (Patchwork Warbot)', 83764), (148939, 148939, 159, 159, 'Programmed Photon Particle Emitter (Patchwork Warmachine)', 83764), (149608, 149608, 14, 14, 'Programmed Photon Particle Emitter (Patchy Delayed Health Payment)', 83700), (149609, 149609, 50, 50, 'Programmed Photon Particle Emitter (Patchy Health Freeloader)', 144488), (149610, 149610, 4, 4, 'Programmed Photon Particle Emitter (Patchy Health Funnel)', 144485), (149611, 149611, 142, 142, 'Programmed Photon Particle Emitter (Patchy Health Plunder)', 144492), (148940, 148940, 34, 34, 'Programmed Photon Particle Emitter (Patchy Repairs)', 83701), (160869, 160869, 149, 149, 'Programmed Photon Particle Emitter (Path of The Executioner)', 144613), (149612, 149612, 185, 185, 'Programmed Photon Particle Emitter (Pawnbroker''s Armor)', 144484), (203910, 203910, 199, 199, 'Programmed Photon Particle Emitter (Pay Bail)', 83648), (149613, 149613, 169, 169, 'Programmed Photon Particle Emitter (Pay the Pauper)', 83780), (149340, 149340, 159, 159, 'Programmed Photon Particle Emitter (Peaceful Intentions)', 83713), (149341, 149341, 83, 83, 'Programmed Photon Particle Emitter (Pellet of Fire)', 83836), (149454, 149454, 142, 142, 'Programmed Photon Particle Emitter (Perfected Absorption Shield)', 144573), (148941, 148941, 40, 40, 'Programmed Photon Particle Emitter (Perfected Android)', 83763), (148942, 148942, 14, 14, 'Programmed Photon Particle Emitter (Perfected Automaton)', 83758), (149455, 149455, 139, 139, 'Programmed Photon Particle Emitter (Perfected Combat Barrier)', 144573), (148943, 148943, 149, 149, 'Programmed Photon Particle Emitter (Perfected Defensive Screen)', 144469), (148944, 148944, 83, 83, 'Programmed Photon Particle Emitter (Perfected Gladiatorbot)', 83763), (148945, 148945, 119, 119, 'Programmed Photon Particle Emitter (Perfected Guardbot)', 83764), (148946, 148946, 146, 146, 'Programmed Photon Particle Emitter (Perfected Protective Field)', 144468), (148947, 148947, 139, 139, 'Programmed Photon Particle Emitter (Perfected Shielding Barrier)', 144468), (148948, 148948, 152, 152, 'Programmed Photon Particle Emitter (Perfected Warbot)', 83764), (148949, 148949, 172, 172, 'Programmed Photon Particle Emitter (Perfected Warmachine)', 83765), (148527, 148527, 43, 43, 'Programmed Photon Particle Emitter (Performance Review)', 83819), (148712, 148712, 27, 27, 'Programmed Photon Particle Emitter (Periodic Checkup)', 83700), (148713, 148713, 136, 136, 'Programmed Photon Particle Emitter (Perpetuating Nano Reaper)', 83669), (149456, 149456, 57, 57, 'Programmed Photon Particle Emitter (Persistent Damage Amplifier)', 144612), (149457, 149457, 17, 17, 'Programmed Photon Particle Emitter (Persistent Damage Multiplier)', 144610), (148276, 148276, 149, 149, 'Programmed Photon Particle Emitter (Personal Blizzard)', 83656), (149614, 149614, 100, 100, 'Programmed Photon Particle Emitter (Personal Grid Beacon)', 83858), (149126, 149126, 4, 4, 'Programmed Photon Particle Emitter (Personal Healing)', 83700), (148528, 148528, 53, 53, 'Programmed Photon Particle Emitter (Personal Magnetism)', 83780), (149342, 149342, 169, 169, 'Programmed Photon Particle Emitter (Personal Notum Harvester)', 83754), (203895, 203895, 49, 49, 'Programmed Photon Particle Emitter (Persuade for Freedom)', 83648), (203994, 203994, 124, 124, 'Programmed Photon Particle Emitter (Petition Freedom)', 83648), (148529, 148529, 76, 76, 'Programmed Photon Particle Emitter (Pheromone Control)', 83780), (148950, 148950, 53, 53, 'Programmed Photon Particle Emitter (Philosopher''s Stone)', 83650), (149343, 149343, 37, 37, 'Programmed Photon Particle Emitter (Phoenix Swarm)', 83834), (149344, 149344, 83, 83, 'Programmed Photon Particle Emitter (Phosphor Torch)', 83836), (149345, 149345, 172, 172, 'Programmed Photon Particle Emitter (Photon Deflector)', 83755), (148834, 148834, 113, 113, 'Programmed Photon Particle Emitter (Physical Dominance)', 83727), (148715, 148715, 33, 33, 'Programmed Photon Particle Emitter (Physician''s Skill)', 83701), (148951, 148951, 93, 93, 'Programmed Photon Particle Emitter (Pillar of Spikes)', 83656), (149458, 149458, 24, 24, 'Programmed Photon Particle Emitter (Pistol Mastery)', 83767), (149346, 149346, 50, 50, 'Programmed Photon Particle Emitter (Plasma Lights)', 83829), (148952, 148952, 185, 185, 'Programmed Photon Particle Emitter (Plasma Shield)', 83656), (149347, 149347, 76, 76, 'Programmed Photon Particle Emitter (Plasma Swirl)', 83602), (148278, 148278, 53, 53, 'Programmed Photon Particle Emitter (Playful Cub (Other))', 83776), (148279, 148279, 70, 70, 'Programmed Photon Particle Emitter (Playful Cub (Team))', 83776), (148277, 148277, 47, 47, 'Programmed Photon Particle Emitter (Playful Cub)', 83776), (149348, 149348, 30, 30, 'Programmed Photon Particle Emitter (Poison Missile)', 83822), (149052, 149052, 1, 1, 'Programmed Photon Particle Emitter (Poison Modification)', 83868), (148835, 148835, 47, 47, 'Programmed Photon Particle Emitter (Poison Stingers)', 83656), (149349, 149349, 4, 4, 'Programmed Photon Particle Emitter (Poke Eyes)', 83755), (204435, 204435, 84, 84, 'Programmed Photon Particle Emitter (Polarized Screening)', 144466), (149053, 149053, 119, 119, 'Programmed Photon Particle Emitter (Policy Skim)', 83703), (148280, 148280, 53, 53, 'Programmed Photon Particle Emitter (Porcupine Barrier)', 83656), (148716, 148716, 169, 169, 'Programmed Photon Particle Emitter (Positive Life Reinforcement)', 83706), (149350, 149350, 96, 96, 'Programmed Photon Particle Emitter (Positron Stream)', 83830), (148391, 148391, 14, 14, 'Programmed Photon Particle Emitter (Postpone Encounter)', 83718), (203176, 203176, 64, 64, 'Programmed Photon Particle Emitter (Power Burst)', 83646), (203222, 203222, 163, 163, 'Programmed Photon Particle Emitter (Power of the Thunderhead)', 83680), (148530, 148530, 136, 136, 'Programmed Photon Particle Emitter (Powerful Blizzard of Red Tape)', 83720), (149622, 149622, 27, 27, 'Programmed Photon Particle Emitter (Practiced Health Haggler)', 83701), (148281, 148281, 93, 93, 'Programmed Photon Particle Emitter (Practiced Stitching)', 83702), (148717, 148717, 139, 139, 'Programmed Photon Particle Emitter (Pre-Combat Conditioning)', 144475), (149459, 149459, 43, 43, 'Programmed Photon Particle Emitter (Precognition)', 83684), (149623, 149623, 159, 159, 'Programmed Photon Particle Emitter (Preeminent Health Haggler)', 83707), (148718, 148718, 37, 37, 'Programmed Photon Particle Emitter (Premium Cover)', 83702), (149624, 149624, 182, 182, 'Programmed Photon Particle Emitter (Premium Delayed Health Payment)', 83707), (163128, 163128, 152, 152, 'Programmed Photon Particle Emitter (Presence of the Dominator)', 83788), (163122, 163122, 43, 43, 'Programmed Photon Particle Emitter (Presence of the Master)', 83788), (163125, 163125, 113, 113, 'Programmed Photon Particle Emitter (Presence of the Overlord)', 83788), (148531, 148531, 57, 57, 'Programmed Photon Particle Emitter (Prey On Fear)', 83788), (148532, 148532, 159, 159, 'Programmed Photon Particle Emitter (Primal Fear)', 83788), (148836, 148836, 139, 139, 'Programmed Photon Particle Emitter (Primal Hatred)', 83678), (148719, 148719, 20, 20, 'Programmed Photon Particle Emitter (Primitive Nano Gorger)', 83664), (148720, 148720, 4, 4, 'Programmed Photon Particle Emitter (Primitive Viral Agent)', 83664), (148837, 148837, 136, 136, 'Programmed Photon Particle Emitter (Prodigious Strength)', 83797), (148721, 148721, 93, 93, 'Programmed Photon Particle Emitter (Professional Care)', 83703), (149625, 149625, 87, 87, 'Programmed Photon Particle Emitter (Professional Health Haggler)', 83704), (149626, 149626, 41, 41, 'Programmed Photon Particle Emitter (Proficient Health Haggler)', 83702), (149627, 149627, 159, 159, 'Programmed Photon Particle Emitter (Profit Preoccupation)', 83716), (149628, 149628, 37, 37, 'Programmed Photon Particle Emitter (Profiteer''s Grip)', 83714), (149351, 149351, 60, 60, 'Programmed Photon Particle Emitter (Project Calm)', 83711), (149629, 149629, 17, 17, 'Programmed Photon Particle Emitter (Project Thought Patterns)', 83710), (148392, 148392, 73, 73, 'Programmed Photon Particle Emitter (Projectile Magnet)', 83684), (149054, 149054, 123, 123, 'Programmed Photon Particle Emitter (Prolong Encounter)', 83716), (148393, 148393, 119, 119, 'Programmed Photon Particle Emitter (Prolonged Interrogation)', 83716), (149352, 149352, 119, 119, 'Programmed Photon Particle Emitter (Pronounce Blindness)', 83755), (148283, 148283, 149, 149, 'Programmed Photon Particle Emitter (Pronouncement of Greatness (Other))', 144547), (148282, 148282, 20, 20, 'Programmed Photon Particle Emitter (Pronouncement of Greatness)', 144547), (148284, 148284, 116, 116, 'Programmed Photon Particle Emitter (Protection of the Storm)', 83656), (148953, 148953, 73, 73, 'Programmed Photon Particle Emitter (Protective Field)', 144467), (148722, 148722, 17, 17, 'Programmed Photon Particle Emitter (Protein Breakdown)', 83664), (145164, 145164, 47, 47, 'Programmed Photon Particle Emitter (PsyMod Mastery)', 83781), (148533, 148533, 10, 10, 'Programmed Photon Particle Emitter (Punishing Blade)', 83840), (149630, 149630, 83, 83, 'Programmed Photon Particle Emitter (Pyramid Marketing)', 83715), (149631, 149631, 87, 87, 'Programmed Photon Particle Emitter (Quality Delayed Health Payment)', 83704), (149632, 149632, 139, 139, 'Programmed Photon Particle Emitter (Quantum Uncertainty)', 83684), (145165, 145165, 103, 103, 'Programmed Photon Particle Emitter (Quantum Wings)', 83867), (149353, 149353, 182, 182, 'Programmed Photon Particle Emitter (Quark Collapse)', 83857), (163115, 163115, 132, 132, 'Programmed Photon Particle Emitter (QuarkStor NCU Core)', 83653), (145166, 145166, 30, 30, 'Programmed Photon Particle Emitter (Quell Anger)', 144611), (145167, 145167, 40, 40, 'Programmed Photon Particle Emitter (Quench Anger)', 144611), (148954, 148954, 14, 14, 'Programmed Photon Particle Emitter (Quick Fix)', 83700), (148955, 148955, 40, 40, 'Programmed Photon Particle Emitter (Quick Weapon)', 83727), (149460, 149460, 17, 17, 'Programmed Photon Particle Emitter (Quickshot)', 83727), (148838, 148838, 70, 70, 'Programmed Photon Particle Emitter (Quivering Wreck)', 83788), (149358, 149358, 63, 63, 'Programmed Photon Particle Emitter (RNA Reaper)', 83853), (148723, 148723, 123, 123, 'Programmed Photon Particle Emitter (Radiant Heal)', 83704), (149354, 149354, 4, 4, 'Programmed Photon Particle Emitter (Radiation Pulse)', 83628), (149355, 149355, 76, 76, 'Programmed Photon Particle Emitter (Radiation Scour)', 83854), (149356, 149356, 99, 99, 'Programmed Photon Particle Emitter (Radioactive Cloud)', 83854), (145168, 145168, 93, 93, 'Programmed Photon Particle Emitter (Rage Abolishment)', 144611), (145169, 145169, 116, 116, 'Programmed Photon Particle Emitter (Rage Eradication)', 144611), (145170, 145170, 47, 47, 'Programmed Photon Particle Emitter (Rage Materialization)', 144524), (145171, 145171, 76, 76, 'Programmed Photon Particle Emitter (Rage Suppression)', 144611), (202901, 202901, 197, 197, 'Programmed Photon Particle Emitter (Rampage of Juggernaut)', 83588), (202822, 202822, 197, 197, 'Programmed Photon Particle Emitter (Rampage of the Berserker)', 83790), (148724, 148724, 165, 165, 'Programmed Photon Particle Emitter (Rampant Decay)', 83669), (149421, 149421, 63, 63, 'Programmed Photon Particle Emitter (Ranged Energy Weapon Mastery)', 83681), (148956, 148956, 129, 129, 'Programmed Photon Particle Emitter (Rapid Weapon)', 83727), (148285, 148285, 139, 139, 'Programmed Photon Particle Emitter (Razor Barrier)', 83656), (149056, 149056, 169, 169, 'Programmed Photon Particle Emitter (Re-Matrix Grid Vector)', 83858), (148957, 148957, 182, 182, 'Programmed Photon Particle Emitter (Reactivated Wardroid)', 83765), (149462, 149462, 83, 83, 'Programmed Photon Particle Emitter (Reactive Deflection Shield (Extended))', 144577), (149461, 149461, 76, 76, 'Programmed Photon Particle Emitter (Reactive Deflection Shield)', 144577), (148958, 148958, 179, 179, 'Programmed Photon Particle Emitter (Reactive Harmonic Cocoon)', 144580), (149464, 149464, 142, 142, 'Programmed Photon Particle Emitter (Reactive Reflective Field (Extended))', 144580), (149463, 149463, 142, 142, 'Programmed Photon Particle Emitter (Reactive Reflective Field)', 144580), (162741, 162741, 24, 24, 'Programmed Photon Particle Emitter (Rebinding Sutures)', 83701), (148959, 148959, 84, 84, 'Programmed Photon Particle Emitter (Rebuild Casing)', 83703), (149055, 149055, 47, 47, 'Programmed Photon Particle Emitter (Reckless Digitization)', 83858), (163112, 163112, 123, 123, 'Programmed Photon Particle Emitter (Recompiling Memory Analyzer)', 83653), (148960, 148960, 50, 50, 'Programmed Photon Particle Emitter (Recondition Parts)', 83702), (148726, 148726, 162, 162, 'Programmed Photon Particle Emitter (Recuperative Respite)', 83707), (148727, 148727, 40, 40, 'Programmed Photon Particle Emitter (Recurrent Remedy)', 83701), (148534, 148534, 116, 116, 'Programmed Photon Particle Emitter (Red Tape)', 83637), (149641, 149641, 165, 165, 'Programmed Photon Particle Emitter (Redeem AC (Advanced))', 144482), (149642, 149642, 175, 175, 'Programmed Photon Particle Emitter (Redeem AC (Greater))', 144483), (149643, 149643, 129, 129, 'Programmed Photon Particle Emitter (Redeem AC (Lesser))', 144481), (149644, 149644, 156, 156, 'Programmed Photon Particle Emitter (Redeem AC (Major))', 144482), (149645, 149645, 106, 106, 'Programmed Photon Particle Emitter (Redeem AC (Minor))', 144480), (149646, 149646, 90, 90, 'Programmed Photon Particle Emitter (Redeem AC (Weak))', 144480), (149640, 149640, 149, 149, 'Programmed Photon Particle Emitter (Redeem AC)', 144481), (149647, 149647, 149, 149, 'Programmed Photon Particle Emitter (Redirect Neural Signals)', 83712), (149127, 149127, 136, 136, 'Programmed Photon Particle Emitter (Reduce Inertia)', 83684), (148728, 148728, 66, 66, 'Programmed Photon Particle Emitter (Refined Nano Contagion)', 83668), (149466, 149466, 126, 126, 'Programmed Photon Particle Emitter (Reflective Field (Extended))', 144579), (149465, 149465, 126, 126, 'Programmed Photon Particle Emitter (Reflective Field)', 144579), (148287, 148287, 126, 126, 'Programmed Photon Particle Emitter (Relation to Cerberus (Other))', 83776), (148288, 148288, 132, 132, 'Programmed Photon Particle Emitter (Relation to Cerberus (Team))', 83776), (148286, 148286, 119, 119, 'Programmed Photon Particle Emitter (Relation to Cerberus)', 83776), (149648, 149648, 159, 159, 'Programmed Photon Particle Emitter (Relentless Slayer)', 144614), (148729, 148729, 20, 20, 'Programmed Photon Particle Emitter (Relief from Pain)', 83701), (162738, 162738, 7, 7, 'Programmed Photon Particle Emitter (Relieving Salve)', 83701), (148730, 148730, 159, 159, 'Programmed Photon Particle Emitter (Remedy Dissemination)', 83706), (148535, 148535, 109, 109, 'Programmed Photon Particle Emitter (Remembered Pain)', 83843), (204050, 204050, 152, 152, 'Programmed Photon Particle Emitter (Rend Bonds (Other))', 83648), (203693, 203693, 133, 133, 'Programmed Photon Particle Emitter (Rend Bonds)', 83648), (204498, 204498, 139, 139, 'Programmed Photon Particle Emitter (Rend Constraints)', 83648), (149357, 149357, 129, 129, 'Programmed Photon Particle Emitter (Rend Flesh)', 83843), (148731, 148731, 142, 142, 'Programmed Photon Particle Emitter (Repeated Cellular Trauma)', 83669), (203988, 203988, 36, 36, 'Programmed Photon Particle Emitter (Request Freedom)', 83648), (204059, 204059, 118, 118, 'Programmed Photon Particle Emitter (Reroute Impediments)', 83648), (152200, 152200, 107, 107, 'Programmed Photon Particle Emitter (Restock Ammo (Level OP-C))', 144587), (152204, 152204, 107, 107, 'Programmed Photon Particle Emitter (Restock Ammo (Level OP-CC))', 144587), (149057, 149057, 4, 4, 'Programmed Photon Particle Emitter (Restock Ammo (Level OP-I))', 144585), (152203, 152203, 18, 18, 'Programmed Photon Particle Emitter (Restock Ammo (Level OP-II))', 144585), (152202, 152202, 60, 60, 'Programmed Photon Particle Emitter (Restock Ammo (Level OP-X))', 144586), (152201, 152201, 74, 74, 'Programmed Photon Particle Emitter (Restock Ammo (Level OP-XX))', 144586), (148732, 148732, 40, 40, 'Programmed Photon Particle Emitter (Restorative Boost)', 83702), (149128, 149128, 20, 20, 'Programmed Photon Particle Emitter (Restore Essence)', 83701), (148290, 148290, 107, 107, 'Programmed Photon Particle Emitter (Restore Vitality)', 83702), (148289, 148289, 64, 64, 'Programmed Photon Particle Emitter (Restore to Health)', 83701), (148536, 148536, 24, 24, 'Programmed Photon Particle Emitter (Restrict Movement)', 83714), (148961, 148961, 132, 132, 'Programmed Photon Particle Emitter (Retaliatory Barrier)', 83656), (148291, 148291, 159, 159, 'Programmed Photon Particle Emitter (Retaliatory Venom Spit)', 83656), (163103, 163103, 40, 40, 'Programmed Photon Particle Emitter (Retool NCU)', 83653), (148292, 148292, 169, 169, 'Programmed Photon Particle Emitter (Retribution of the Aesir)', 83656), (149129, 149129, 146, 146, 'Programmed Photon Particle Emitter (Return Attack)', 83787), (148293, 148293, 165, 165, 'Programmed Photon Particle Emitter (Revenge of the Valkyrie)', 83656), (148537, 148537, 47, 47, 'Programmed Photon Particle Emitter (Revoke Movement License)', 83715), (149649, 149649, 80, 80, 'Programmed Photon Particle Emitter (Riding Shotgun)', 144611), (149467, 149467, 37, 37, 'Programmed Photon Particle Emitter (Rifle Mastery)', 83794), (148538, 148538, 93, 93, 'Programmed Photon Particle Emitter (Rigid Stance)', 83715), (149468, 149468, 126, 126, 'Programmed Photon Particle Emitter (Riot Control)', 83646), (148839, 148839, 116, 116, 'Programmed Photon Particle Emitter (Roar of Aggression)', 83678), (148294, 148294, 136, 136, 'Programmed Photon Particle Emitter (Robust Treatment)', 83860), (148295, 148295, 7, 7, 'Programmed Photon Particle Emitter (Rough Stitching)', 83700), (149130, 149130, 24, 24, 'Programmed Photon Particle Emitter (Rubber Skin)', 83745), (149359, 149359, 1, 1, 'Programmed Photon Particle Emitter (Rudimentary Humidity Extractor)', 83754), (148539, 148539, 179, 179, 'Programmed Photon Particle Emitter (Rule of One)', 83833), (149360, 149360, 33, 33, 'Programmed Photon Particle Emitter (Run-Time Recompiler)', 83754), (148395, 148395, 96, 96, 'Programmed Photon Particle Emitter (Ruse of Taren - Phase 2)', 83729), (148396, 148396, 162, 162, 'Programmed Photon Particle Emitter (Ruse of Taren - Phase 3)', 83729), (148394, 148394, 40, 40, 'Programmed Photon Particle Emitter (Ruse of Taren: Phase 1)', 83729), (149131, 149131, 76, 76, 'Programmed Photon Particle Emitter (Sadness of the Willow)', 144611), (204035, 204035, 21, 21, 'Programmed Photon Particle Emitter (Scatter Bonds (Other))', 83648), (203684, 203684, 10, 10, 'Programmed Photon Particle Emitter (Scatter Bonds)', 83648), (148840, 148840, 139, 139, 'Programmed Photon Particle Emitter (Screen of Blades)', 83656), (148733, 148733, 86, 86, 'Programmed Photon Particle Emitter (Scythe A Virus)', 83668), (148734, 148734, 182, 182, 'Programmed Photon Particle Emitter (Scythe B Virus)', 83669), (149361, 149361, 80, 80, 'Programmed Photon Particle Emitter (Searing Agony)', 83670), (148540, 148540, 93, 93, 'Programmed Photon Particle Emitter (Searing Bolt)', 83829), (149362, 149362, 152, 152, 'Programmed Photon Particle Emitter (Searing Circle)', 83838), (149363, 149363, 159, 159, 'Programmed Photon Particle Emitter (Searing Stream)', 83814), (148296, 148296, 169, 169, 'Programmed Photon Particle Emitter (Seed Life)', 83704), (148735, 148735, 60, 60, 'Programmed Photon Particle Emitter (Seethe with Germs)', 83668), (149132, 149132, 136, 136, 'Programmed Photon Particle Emitter (Seething Resentment)', 83678), (148962, 148962, 43, 43, 'Programmed Photon Particle Emitter (Semi-Sentient Android)', 83763), (149060, 149060, 169, 169, 'Programmed Photon Particle Emitter (Semi-Sentient Augmentation Cloud)', 144614), (148963, 148963, 17, 17, 'Programmed Photon Particle Emitter (Semi-Sentient Automaton)', 83758), (148964, 148964, 86, 86, 'Programmed Photon Particle Emitter (Semi-Sentient Gladiatorbot)', 83763), (148965, 148965, 123, 123, 'Programmed Photon Particle Emitter (Semi-Sentient Guardbot)', 83764), (148966, 148966, 156, 156, 'Programmed Photon Particle Emitter (Semi-Sentient Warbot)', 83764), (148967, 148967, 182, 182, 'Programmed Photon Particle Emitter (Semi-Sentient Wardroid)', 83765), (148968, 148968, 175, 175, 'Programmed Photon Particle Emitter (Semi-Sentient Warmachine)', 83765), (145172, 145172, 43, 43, 'Programmed Photon Particle Emitter (Sense Imp Mastery)', 83789), (148736, 148736, 185, 185, 'Programmed Photon Particle Emitter (Sentient Nano Gorger)', 83669), (163118, 163118, 162, 162, 'Programmed Photon Particle Emitter (Sentient Viral Recoder)', 83653), (163415, 163415, 172, 172, 'Programmed Photon Particle Emitter (Serene Sky)', 83712), (148541, 148541, 172, 172, 'Programmed Photon Particle Emitter (Shackles of Obedience)', 83717), (148397, 148397, 20, 20, 'Programmed Photon Particle Emitter (Shadow Crown)', 83654), (161391, 161391, 17, 17, 'Programmed Photon Particle Emitter (Shadow Filter)', 83654), (149650, 149650, 63, 63, 'Programmed Photon Particle Emitter (Shady Acquisition)', 83780), (162221, 162221, 60, 60, 'Programmed Photon Particle Emitter (Shape Hard Armor)', 144466), (162222, 162222, 60, 60, 'Programmed Photon Particle Emitter (Shape Soft Armor)', 144476), (162337, 162337, 80, 80, 'Programmed Photon Particle Emitter (Sharpen Claws)', 144609), (204047, 204047, 107, 107, 'Programmed Photon Particle Emitter (Shatter Bonds (Other))', 83648), (203687, 203687, 90, 90, 'Programmed Photon Particle Emitter (Shatter Bonds)', 83648), (148737, 148737, 37, 37, 'Programmed Photon Particle Emitter (Shatter Bone)', 83842), (204018, 204018, 103, 103, 'Programmed Photon Particle Emitter (Shatter Chains)', 83648), (145173, 145173, 7, 7, 'Programmed Photon Particle Emitter (Shed Anger)', 144611), (149133, 149133, 66, 66, 'Programmed Photon Particle Emitter (Shen Protection)', 144518), (148969, 148969, 63, 63, 'Programmed Photon Particle Emitter (Shielding Barrier)', 144466), (148841, 148841, 70, 70, 'Programmed Photon Particle Emitter (Shock Absorber)', 144466), (149364, 149364, 14, 14, 'Programmed Photon Particle Emitter (Shockball)', 83601), (149365, 149365, 66, 66, 'Programmed Photon Particle Emitter (Shockwave Slash)', 83841), (162512, 162512, 156, 156, 'Programmed Photon Particle Emitter (Shower With Lead)', 83746), (149366, 149366, 40, 40, 'Programmed Photon Particle Emitter (Shower With Sludge)', 83811), (149367, 149367, 123, 123, 'Programmed Photon Particle Emitter (Shrapnel Burst)', 83625), (149368, 149368, 66, 66, 'Programmed Photon Particle Emitter (Shroud of Darkness)', 83755), (149369, 149369, 182, 182, 'Programmed Photon Particle Emitter (Shroud of the Grave)', 83755), (148842, 148842, 136, 136, 'Programmed Photon Particle Emitter (Shrug Off Blows)', 144468), (203702, 203702, 22, 22, 'Programmed Photon Particle Emitter (Sidestep the Blame)', 83648), (149651, 149651, 162, 162, 'Programmed Photon Particle Emitter (Simple Mind, Simple Pleasures)', 83713), (149653, 149653, 152, 152, 'Programmed Photon Particle Emitter (Siphon AC (Advanced))', 144482), (149654, 149654, 162, 162, 'Programmed Photon Particle Emitter (Siphon AC (Greater))', 144483), (149655, 149655, 172, 172, 'Programmed Photon Particle Emitter (Siphon AC (Invasive))', 144484), (149656, 149656, 146, 146, 'Programmed Photon Particle Emitter (Siphon AC (Major))', 144482), (149657, 149657, 103, 103, 'Programmed Photon Particle Emitter (Siphon AC (Minor))', 144480), (149658, 149658, 86, 86, 'Programmed Photon Particle Emitter (Siphon AC (Weak))', 144480), (149652, 149652, 123, 123, 'Programmed Photon Particle Emitter (Siphon AC)', 144481), (148542, 148542, 123, 123, 'Programmed Photon Particle Emitter (Siren Call)', 83780), (149660, 149660, 113, 113, 'Programmed Photon Particle Emitter (Skill Wrangler (Advanced))', 144499), (149661, 149661, 34, 34, 'Programmed Photon Particle Emitter (Skill Wrangler (Commonplace))', 144496), (149662, 149662, 176, 176, 'Programmed Photon Particle Emitter (Skill Wrangler (Exceptional))', 144503), (149663, 149663, 150, 150, 'Programmed Photon Particle Emitter (Skill Wrangler (Greater))', 144500), (149664, 149664, 70, 70, 'Programmed Photon Particle Emitter (Skill Wrangler (Inferior))', 144498), (149666, 149666, 41, 41, 'Programmed Photon Particle Emitter (Skill Wrangler (Lossy))', 144497), (149667, 149667, 97, 97, 'Programmed Photon Particle Emitter (Skill Wrangler (Major))', 144499), (149668, 149668, 21, 21, 'Programmed Photon Particle Emitter (Skill Wrangler (Minor))', 144496), (149669, 149669, 14, 14, 'Programmed Photon Particle Emitter (Skill Wrangler (Patchy))', 144495), (149670, 149670, 189, 189, 'Programmed Photon Particle Emitter (Skill Wrangler (Premium))', 144504), (149671, 149671, 156, 156, 'Programmed Photon Particle Emitter (Skill Wrangler (Sophisticated))', 144501), (149672, 149672, 163, 163, 'Programmed Photon Particle Emitter (Skill Wrangler (Superb))', 144502), (149673, 149673, 126, 126, 'Programmed Photon Particle Emitter (Skill Wrangler (Superior))', 144500), (149674, 149674, 8, 8, 'Programmed Photon Particle Emitter (Skill Wrangler (Weak))', 144495), (149665, 149665, 54, 54, 'Programmed Photon Particle Emitter (Skill Wrangler Lesser)', 144497), (149659, 149659, 84, 84, 'Programmed Photon Particle Emitter (Skill Wrangler)', 144498), (202877, 202877, 133, 133, 'Programmed Photon Particle Emitter (Skill of the Guardian)', 83739), (202883, 202883, 197, 197, 'Programmed Photon Particle Emitter (Skill of the Guillotine)', 83739), (202874, 202874, 89, 89, 'Programmed Photon Particle Emitter (Skill of the Highlander)', 83790), (202880, 202880, 173, 173, 'Programmed Photon Particle Emitter (Skill of the Reaper)', 83739), (149675, 149675, 47, 47, 'Programmed Photon Particle Emitter (Skilled Health Haggler)', 83703), (148297, 148297, 73, 73, 'Programmed Photon Particle Emitter (Skin of the Toad)', 83656), (148970, 148970, 189, 189, 'Programmed Photon Particle Emitter (Slayerdroid Guardian)', 83765), (148971, 148971, 185, 185, 'Programmed Photon Particle Emitter (Slayerdroid Protector)', 83765), (148972, 148972, 189, 189, 'Programmed Photon Particle Emitter (Slayerdroid Sentinel)', 83765), (148973, 148973, 185, 185, 'Programmed Photon Particle Emitter (Slayerdroid Transference)', 83769), (148974, 148974, 185, 185, 'Programmed Photon Particle Emitter (Slayerdroid Warden)', 83765), (148543, 148543, 43, 43, 'Programmed Photon Particle Emitter (Sleep)', 83711), (149370, 149370, 93, 93, 'Programmed Photon Particle Emitter (Slime Cascade)', 83671), (148298, 148298, 14, 14, 'Programmed Photon Particle Emitter (Slipshod Bandaging)', 83700), (204462, 204462, 181, 181, 'Programmed Photon Particle Emitter (Sloughing Assault Shield)', 83577), (204492, 204492, 196, 196, 'Programmed Photon Particle Emitter (Sloughing Combat Field)', 83577), (204456, 204456, 107, 107, 'Programmed Photon Particle Emitter (Sloughing Defensive Shield)', 83577), (204450, 204450, 72, 72, 'Programmed Photon Particle Emitter (Sloughing Protective Barrier)', 83577), (204486, 204486, 93, 93, 'Programmed Photon Particle Emitter (Sloughing Protective Field)', 83577), (204489, 204489, 141, 141, 'Programmed Photon Particle Emitter (Sloughing Shielding Field)', 83577), (149372, 149372, 57, 57, 'Programmed Photon Particle Emitter (Smiting Missile Mk II)', 83847), (149371, 149371, 24, 24, 'Programmed Photon Particle Emitter (Smiting Missile)', 83846), (155458, 155458, 70, 70, 'Programmed Photon Particle Emitter (Smuggler Shipment (OP-C))', 144589), (155453, 155453, 120, 120, 'Programmed Photon Particle Emitter (Smuggler Shipment (OP-CC))', 144590), (155455, 155455, 107, 107, 'Programmed Photon Particle Emitter (Smuggler Shipment (OP-CLX))', 144590), (155454, 155454, 113, 113, 'Programmed Photon Particle Emitter (Smuggler Shipment (OP-CLXXX))', 144590), (155456, 155456, 103, 103, 'Programmed Photon Particle Emitter (Smuggler Shipment (OP-CXL))', 144589), (155457, 155457, 90, 90, 'Programmed Photon Particle Emitter (Smuggler Shipment (OP-CXX))', 144589), (155460, 155460, 34, 34, 'Programmed Photon Particle Emitter (Smuggler Shipment (OP-LX))', 144588), (155459, 155459, 54, 54, 'Programmed Photon Particle Emitter (Smuggler Shipment (OP-LXXX))', 144588), (155461, 155461, 24, 24, 'Programmed Photon Particle Emitter (Smuggler Shipment (OP-XL))', 144588), (155462, 155462, 8, 8, 'Programmed Photon Particle Emitter (Smuggler Shipment (OP-XX))', 144588), (148544, 148544, 83, 83, 'Programmed Photon Particle Emitter (Sneaking Terror)', 83678), (148398, 148398, 43, 43, 'Programmed Photon Particle Emitter (Sniper''s Bliss)', 83794), (148545, 148545, 40, 40, 'Programmed Photon Particle Emitter (Soft Siren Call)', 83780), (149373, 149373, 152, 152, 'Programmed Photon Particle Emitter (Solar Wind)', 83856), (203179, 203179, 200, 200, 'Programmed Photon Particle Emitter (Soldier Clip Junkie)', 83697), (161893, 161893, 152, 152, 'Programmed Photon Particle Emitter (Soleet Friend)', 144547), (204000, 204000, 200, 200, 'Programmed Photon Particle Emitter (Solicit Freedom)', 83648), (148546, 148546, 63, 63, 'Programmed Photon Particle Emitter (Solicit Support)', 83780), (163403, 163403, 24, 24, 'Programmed Photon Particle Emitter (Soothing Breeze)', 83710), (149676, 149676, 156, 156, 'Programmed Photon Particle Emitter (Sophisticated Delayed Health Payment)', 83706), (149677, 149677, 123, 123, 'Programmed Photon Particle Emitter (Sophisticated Health Freeloader)', 144491), (149678, 149678, 40, 40, 'Programmed Photon Particle Emitter (Sophisticated Health Funnel)', 144488), (149679, 149679, 182, 182, 'Programmed Photon Particle Emitter (Sophisticated Health Plunder)', 144494), (145144, 145144, 40, 40, 'Programmed Photon Particle Emitter (SpaceTime Mastery)', 83742), (148299, 148299, 47, 47, 'Programmed Photon Particle Emitter (Sparking Touch)', 83656), (148975, 148975, 159, 159, 'Programmed Photon Particle Emitter (Sparkling Field Array)', 83656), (148300, 148300, 24, 24, 'Programmed Photon Particle Emitter (Sparrow Flight)', 144560), (148738, 148738, 33, 33, 'Programmed Photon Particle Emitter (Specialist Treatment)', 83860), (148976, 148976, 53, 53, 'Programmed Photon Particle Emitter (Spike Armor)', 83656), (148977, 148977, 7, 7, 'Programmed Photon Particle Emitter (Spike Shield)', 83656), (149061, 149061, 156, 156, 'Programmed Photon Particle Emitter (Spin Nanoweb)', 83721), (149062, 149062, 96, 96, 'Programmed Photon Particle Emitter (Spin Weak Nanoweb)', 83720), (148843, 148843, 130, 130, 'Programmed Photon Particle Emitter (Spine of Jelly)', 83788), (148548, 148548, 123, 123, 'Programmed Photon Particle Emitter (Splinter Missile)', 83848), (162509, 162509, 136, 136, 'Programmed Photon Particle Emitter (Spray With Lead)', 83746), (148739, 148739, 27, 27, 'Programmed Photon Particle Emitter (Spreading Health)', 83700), (149063, 149063, 70, 70, 'Programmed Photon Particle Emitter (Stack the Odds)', 83757), (162334, 162334, 162, 162, 'Programmed Photon Particle Emitter (Stare of Cerberus)', 83757), (149374, 149374, 156, 156, 'Programmed Photon Particle Emitter (Stargasp)', 83832), (149134, 149134, 76, 76, 'Programmed Photon Particle Emitter (Steel Skin)', 144519), (160866, 160866, 132, 132, 'Programmed Photon Particle Emitter (Steps of The Executioner)', 144612), (149680, 149680, 24, 24, 'Programmed Photon Particle Emitter (Sticky Ground)', 83714), (145174, 145174, 53, 53, 'Programmed Photon Particle Emitter (Stifle Rage)', 144611), (149376, 149376, 179, 179, 'Programmed Photon Particle Emitter (Stinging Missile Swarm)', 83851), (149375, 149375, 63, 63, 'Programmed Photon Particle Emitter (Stinging Missile)', 83847), (148549, 148549, 63, 63, 'Programmed Photon Particle Emitter (Stinging Reminder)', 83849), (161415, 161415, 142, 142, 'Programmed Photon Particle Emitter (Stormedge)', 83790), (161433, 161433, 40, 40, 'Programmed Photon Particle Emitter (Strength of the Hummingbird)', 83736), (148740, 148740, 66, 66, 'Programmed Photon Particle Emitter (Strengthen Resolve)', 144582), (149681, 149681, 33, 33, 'Programmed Photon Particle Emitter (Strip Assets)', 83780), (148550, 148550, 30, 30, 'Programmed Photon Particle Emitter (Stumbling Steps)', 83715), (149135, 149135, 30, 30, 'Programmed Photon Particle Emitter (Subconscious Guiding)', 83636), (203907, 203907, 174, 174, 'Programmed Photon Particle Emitter (Subpoena for Freedom)', 83648), (148551, 148551, 20, 20, 'Programmed Photon Particle Emitter (Subsonic Blast)', 83841), (149682, 149682, 54, 54, 'Programmed Photon Particle Emitter (Successful Health Haggler)', 83703), (203723, 203723, 163, 163, 'Programmed Photon Particle Emitter (Succor of Expediuum)', 83648), (149377, 149377, 162, 162, 'Programmed Photon Particle Emitter (Sudden Affliction)', 83826), (149378, 149378, 24, 24, 'Programmed Photon Particle Emitter (Sudden Chill)', 83816), (148552, 148552, 37, 37, 'Programmed Photon Particle Emitter (Sudden Scare)', 83788), (149136, 149136, 152, 152, 'Programmed Photon Particle Emitter (Summer Rain)', 144614), (145175, 145175, 189, 189, 'Programmed Photon Particle Emitter (Summon Cacodemon)', 144526), (145176, 145176, 189, 189, 'Programmed Photon Particle Emitter (Summon Demon)', 144526), (145177, 145177, 182, 182, 'Programmed Photon Particle Emitter (Summon Fiend)', 144526), (155202, 155202, 60, 60, 'Programmed Photon Particle Emitter (Summon Grid Armor Mk I)', 83785), (155204, 155204, 93, 93, 'Programmed Photon Particle Emitter (Summon Grid Armor Mk II)', 83785), (155203, 155203, 116, 116, 'Programmed Photon Particle Emitter (Summon Grid Armor Mk III)', 83785), (155205, 155205, 140, 140, 'Programmed Photon Particle Emitter (Summon Grid Armor Mk IV)', 83785), (145178, 145178, 179, 179, 'Programmed Photon Particle Emitter (Summon Lemur)', 144526), (156188, 156188, 83, 83, 'Programmed Photon Particle Emitter (Summoning of Absuum)', 144533), (156187, 156187, 176, 176, 'Programmed Photon Particle Emitter (Summoning of Balbuto the Gibberer)', 144534), (156186, 156186, 166, 166, 'Programmed Photon Particle Emitter (Summoning of Confane)', 144534), (156185, 156185, 120, 120, 'Programmed Photon Particle Emitter (Summoning of Demenus)', 144533), (156184, 156184, 159, 159, 'Programmed Photon Particle Emitter (Summoning of Distral)', 144534), (156183, 156183, 153, 153, 'Programmed Photon Particle Emitter (Summoning of Duoco)', 144533), (156182, 156182, 100, 100, 'Programmed Photon Particle Emitter (Summoning of Ignatus Mind-Clouder)', 144533), (156194, 156194, 189, 189, 'Programmed Photon Particle Emitter (Summoning of Tumulten)', 144534), (204501, 204501, 180, 180, 'Programmed Photon Particle Emitter (Sunder Constraints)', 83648), (149137, 149137, 93, 93, 'Programmed Photon Particle Emitter (Sunrise over Pond)', 144611), (149469, 149469, 99, 99, 'Programmed Photon Particle Emitter (Superior Absorption Shield)', 144571), (145179, 145179, 4, 4, 'Programmed Photon Particle Emitter (Superior Anger Manifestation)', 144523), (148741, 148741, 57, 57, 'Programmed Photon Particle Emitter (Superior Bodily Reinforcement)', 144475), (149470, 149470, 83, 83, 'Programmed Photon Particle Emitter (Superior Combat Barrier)', 144571), (148978, 148978, 103, 103, 'Programmed Photon Particle Emitter (Superior Defensive Screen)', 144467), (149683, 149683, 140, 140, 'Programmed Photon Particle Emitter (Superior Delayed Health Payment)', 83705), (148742, 148742, 96, 96, 'Programmed Photon Particle Emitter (Superior Dress Wounds)', 83704), (145180, 145180, 162, 162, 'Programmed Photon Particle Emitter (Superior Enmity Personification)', 144526), (203886, 203886, 150, 150, 'Programmed Photon Particle Emitter (Superior Exoskeleton Pulse)', 83648), (148743, 148743, 119, 119, 'Programmed Photon Particle Emitter (Superior First Aid)', 83689), (148979, 148979, 172, 172, 'Programmed Photon Particle Emitter (Superior Force Field)', 144470), (145181, 145181, 139, 139, 'Programmed Photon Particle Emitter (Superior Frenzy Embodiment)', 144525), (145182, 145182, 24, 24, 'Programmed Photon Particle Emitter (Superior Fury Externalization)', 144523), (148744, 148744, 30, 30, 'Programmed Photon Particle Emitter (Superior Healing)', 83701), (148745, 148745, 83, 83, 'Programmed Photon Particle Emitter (Superior Health Augmentation)', 144582), (148746, 148746, 162, 162, 'Programmed Photon Particle Emitter (Superior Health Pump)', 83705), (149379, 149379, 99, 99, 'Programmed Photon Particle Emitter (Superior Humidity Extractor)', 83754), (148747, 148747, 169, 169, 'Programmed Photon Particle Emitter (Superior Life Reinforcement)', 144584), (149380, 149380, 172, 172, 'Programmed Photon Particle Emitter (Superior Malign Devourer)', 83827), (148748, 148748, 152, 152, 'Programmed Photon Particle Emitter (Superior Metabolism Booster)', 144475), (148749, 148749, 142, 142, 'Programmed Photon Particle Emitter (Superior Nano Bandage)', 83705), (149381, 149381, 93, 93, 'Programmed Photon Particle Emitter (Superior Nano Command)', 83648), (148750, 148750, 179, 179, 'Programmed Photon Particle Emitter (Superior Omni-Med Enhancement)', 144475), (204438, 204438, 118, 118, 'Programmed Photon Particle Emitter (Superior Polarized Screening)', 144467), (148980, 148980, 96, 96, 'Programmed Photon Particle Emitter (Superior Protective Field)', 144467), (145183, 145183, 50, 50, 'Programmed Photon Particle Emitter (Superior Rage Materialization)', 144524), (148981, 148981, 86, 86, 'Programmed Photon Particle Emitter (Superior Shielding Barrier)', 144467), (148751, 148751, 80, 80, 'Programmed Photon Particle Emitter (Superior Wound Bindings)', 83703), (145184, 145184, 90, 90, 'Programmed Photon Particle Emitter (Superior Wrath Incarnation)', 144525), (148553, 148553, 136, 136, 'Programmed Photon Particle Emitter (Supervisor-Grade Administrator-Droid)', 83764), (148554, 148554, 83, 83, 'Programmed Photon Particle Emitter (Supervisor-Grade Aide-Droid)', 83764), (148555, 148555, 60, 60, 'Programmed Photon Particle Emitter (Supervisor-Grade Assistant-Droid)', 83763), (148556, 148556, 37, 37, 'Programmed Photon Particle Emitter (Supervisor-Grade Attendant-Droid)', 83763), (148557, 148557, 165, 165, 'Programmed Photon Particle Emitter (Supervisor-Grade Bodyguard)', 83765), (148558, 148558, 20, 20, 'Programmed Photon Particle Emitter (Supervisor-Grade Helper-Droid)', 83758), (148559, 148559, 152, 152, 'Programmed Photon Particle Emitter (Supervisor-Grade Minion)', 83765), (148560, 148560, 113, 113, 'Programmed Photon Particle Emitter (Supervisor-Grade Secretary-Droid)', 83764), (148561, 148561, 7, 7, 'Programmed Photon Particle Emitter (Supervisor-Grade Worker-Droid)', 83758), (162500, 162500, 33, 33, 'Programmed Photon Particle Emitter (Suppressor)', 83746), (145185, 145185, 7, 7, 'Programmed Photon Particle Emitter (Supreme Anger Manifestation)', 144523), (156181, 156181, 67, 67, 'Programmed Photon Particle Emitter (Supreme Deranged Mindreaver)', 144532), (156180, 156180, 24, 24, 'Programmed Photon Particle Emitter (Supreme Distracting Sphere)', 144531), (145186, 145186, 172, 172, 'Programmed Photon Particle Emitter (Supreme Enmity Personification)', 144526), (145187, 145187, 149, 149, 'Programmed Photon Particle Emitter (Supreme Frenzy Embodiment)', 144525), (145188, 145188, 30, 30, 'Programmed Photon Particle Emitter (Supreme Fury Externalization)', 144524), (145189, 145189, 60, 60, 'Programmed Photon Particle Emitter (Supreme Rage Materialization)', 144524), (149138, 149138, 146, 146, 'Programmed Photon Particle Emitter (Supreme Shen Protection)', 144521), (162506, 162506, 106, 106, 'Programmed Photon Particle Emitter (Supreme Suppressor)', 83746), (148303, 148303, 123, 123, 'Programmed Photon Particle Emitter (Supreme Wilderness Protection)', 144574), (145190, 145190, 96, 96, 'Programmed Photon Particle Emitter (Supreme Wrath Incarnation)', 144525), (160845, 160845, 40, 40, 'Programmed Photon Particle Emitter (Sureshot)', 83578), (148752, 148752, 53, 53, 'Programmed Photon Particle Emitter (Surgeon''s Touch)', 83702), (148753, 148753, 14, 14, 'Programmed Photon Particle Emitter (Survivability Booster)', 83795), (148304, 148304, 33, 33, 'Programmed Photon Particle Emitter (Survival Aid)', 83689), (148306, 148306, 27, 27, 'Programmed Photon Particle Emitter (Survival Technique)', 83701), (148305, 148305, 116, 116, 'Programmed Photon Particle Emitter (Survival of the Fittest)', 83702), (149471, 149471, 139, 139, 'Programmed Photon Particle Emitter (Survivor''s Resilience)', 144478), (148399, 148399, 47, 47, 'Programmed Photon Particle Emitter (Suspicious Death)', 83668), (149684, 149684, 4, 4, 'Programmed Photon Particle Emitter (Swap Psyche)', 83710), (149139, 149139, 113, 113, 'Programmed Photon Particle Emitter (Sway of Bamboo)', 144612), (148982, 148982, 1, 1, 'Programmed Photon Particle Emitter (Swift Weapon)', 83727), (203170, 203170, 178, 178, 'Programmed Photon Particle Emitter (Swiss Cheese)', 83791), (145191, 145191, 10, 10, 'Programmed Photon Particle Emitter (Symbol Helper)', 83752), (154642, 154642, 34, 34, 'Programmed Photon Particle Emitter (Sympathetic Armor Boost)', 144505), (154641, 154641, 80, 80, 'Programmed Photon Particle Emitter (Sympathetic Arms Enhancement)', 144609), (154640, 154640, 146, 146, 'Programmed Photon Particle Emitter (Sympathetic Defensive Screen)', 144508), (154639, 154639, 153, 153, 'Programmed Photon Particle Emitter (Sympathetic Energy Cocoon)', 83656), (154638, 154638, 176, 176, 'Programmed Photon Particle Emitter (Sympathetic Entropy Infusion)', 144610), (154637, 154637, 163, 163, 'Programmed Photon Particle Emitter (Sympathetic Force Field)', 144509), (154636, 154636, 189, 189, 'Programmed Photon Particle Emitter (Sympathetic Fortress Screen)', 144510), (154635, 154635, 116, 116, 'Programmed Photon Particle Emitter (Sympathetic Harmonic Cocoon)', 144577), (154634, 154634, 90, 90, 'Programmed Photon Particle Emitter (Sympathetic Harmonic Field)', 144576), (154633, 154633, 189, 189, 'Programmed Photon Particle Emitter (Sympathetic Plasma Shielding)', 83656), (154632, 154632, 97, 97, 'Programmed Photon Particle Emitter (Sympathetic Protective Field)', 144507), (154631, 154631, 186, 186, 'Programmed Photon Particle Emitter (Sympathetic Reactive Cocoon)', 144579), (154630, 154630, 159, 159, 'Programmed Photon Particle Emitter (Sympathetic Reactive Field)', 144578), (154629, 154629, 93, 93, 'Programmed Photon Particle Emitter (Sympathetic Retaliatory Barrier)', 83656), (154628, 154628, 70, 70, 'Programmed Photon Particle Emitter (Sympathetic Shielding Barrier)', 144506), (148754, 148754, 86, 86, 'Programmed Photon Particle Emitter (Syndicated Healing)', 83703), (162759, 162759, 123, 123, 'Programmed Photon Particle Emitter (Systolic Equalizer)', 83704), (148755, 148755, 57, 57, 'Programmed Photon Particle Emitter (Tailored Cure)', 83703), (148400, 148400, 152, 152, 'Programmed Photon Particle Emitter (Take the Shot)', 83578), (202913, 202913, 93, 93, 'Programmed Photon Particle Emitter (Talon of the Anun)', 83638), (202907, 202907, 174, 174, 'Programmed Photon Particle Emitter (Talon of the Dragon)', 83638), (202910, 202910, 129, 129, 'Programmed Photon Particle Emitter (Talon of the Roc)', 83638), (149064, 149064, 149, 149, 'Programmed Photon Particle Emitter (Targeted Augmentation Cloud)', 144613), (148844, 148844, 7, 7, 'Programmed Photon Particle Emitter (Taunting Glare)', 83678), (151805, 151805, 18, 18, 'Programmed Photon Particle Emitter (Teachings of Biological Metamorphose)', 83639), (151815, 151815, 21, 21, 'Programmed Photon Particle Emitter (Teachings of Material Creation)', 83741), (151813, 151813, 17, 17, 'Programmed Photon Particle Emitter (Teachings of Material Metamorphose)', 83743), (151812, 151812, 24, 24, 'Programmed Photon Particle Emitter (Teachings of Psychological Modification)', 83781), (151811, 151811, 21, 21, 'Programmed Photon Particle Emitter (Teachings of Sensory Improvement)', 83789), (151814, 151814, 21, 21, 'Programmed Photon Particle Emitter (Teachings of Time and Space)', 83742), (154922, 154922, 159, 159, 'Programmed Photon Particle Emitter (Team Beacon Warp)', 83858), (148756, 148756, 60, 60, 'Programmed Photon Particle Emitter (Team Cellular Rebuild)', 83702), (148757, 148757, 70, 70, 'Programmed Photon Particle Emitter (Team Checkup)', 83702), (148758, 148758, 159, 159, 'Programmed Photon Particle Emitter (Team Compress Wounds)', 83706), (148307, 148307, 113, 113, 'Programmed Photon Particle Emitter (Team Eagle Eye)', 83757), (148759, 148759, 20, 20, 'Programmed Photon Particle Emitter (Team Field Dressings)', 83700), (148308, 148308, 66, 66, 'Programmed Photon Particle Emitter (Team Free Movement)', 144536), (149065, 149065, 57, 57, 'Programmed Photon Particle Emitter (Team Grid Phreak)', 83858), (149140, 149140, 70, 70, 'Programmed Photon Particle Emitter (Team Healing Aura)', 83701), (149141, 149141, 40, 40, 'Programmed Photon Particle Emitter (Team Healing Touch)', 83700), (148760, 148760, 40, 40, 'Programmed Photon Particle Emitter (Team Healing)', 83701), (148761, 148761, 113, 113, 'Programmed Photon Particle Emitter (Team Nano Bandage)', 83704), (148309, 148309, 116, 116, 'Programmed Photon Particle Emitter (Team Practiced Stitching)', 83702), (148762, 148762, 156, 156, 'Programmed Photon Particle Emitter (Team Purification)', 83705), (148310, 148310, 4, 4, 'Programmed Photon Particle Emitter (Team Quick Heal)', 83700), (149142, 149142, 17, 17, 'Programmed Photon Particle Emitter (Team Restore Essence)', 83700), (148311, 148311, 17, 17, 'Programmed Photon Particle Emitter (Team Rough Stitching)', 83700), (149686, 149686, 123, 123, 'Programmed Photon Particle Emitter (Team Skill Wrangler (Advanced))', 144499), (149687, 149687, 47, 47, 'Programmed Photon Particle Emitter (Team Skill Wrangler (Commonplace))', 144496), (149688, 149688, 169, 169, 'Programmed Photon Particle Emitter (Team Skill Wrangler (Exceptional))', 144503), (149689, 149689, 153, 153, 'Programmed Photon Particle Emitter (Team Skill Wrangler (Greater))', 144501), (149690, 149690, 77, 77, 'Programmed Photon Particle Emitter (Team Skill Wrangler (Lesser))', 144497), (149691, 149691, 60, 60, 'Programmed Photon Particle Emitter (Team Skill Wrangler (Lossy))', 144497), (149692, 149692, 107, 107, 'Programmed Photon Particle Emitter (Team Skill Wrangler (Major))', 144498), (149693, 149693, 37, 37, 'Programmed Photon Particle Emitter (Team Skill Wrangler (Minor))', 144496), (149694, 149694, 27, 27, 'Programmed Photon Particle Emitter (Team Skill Wrangler (Patchy))', 144495), (149695, 149695, 189, 189, 'Programmed Photon Particle Emitter (Team Skill Wrangler (Premium))', 144504), (149696, 149696, 159, 159, 'Programmed Photon Particle Emitter (Team Skill Wrangler (Sophisticated))', 144502), (149697, 149697, 140, 140, 'Programmed Photon Particle Emitter (Team Skill Wrangler (Superior))', 144500), (149698, 149698, 18, 18, 'Programmed Photon Particle Emitter (Team Skill Wrangler (Weak))', 144495), (149685, 149685, 93, 93, 'Programmed Photon Particle Emitter (Team Skill Wrangler)', 144498), (148312, 148312, 33, 33, 'Programmed Photon Particle Emitter (Team Survival Technique)', 83701), (148313, 148313, 24, 24, 'Programmed Photon Particle Emitter (Team Terrain Knowledge)', 144536), (148763, 148763, 139, 139, 'Programmed Photon Particle Emitter (Team Tissue Repair)', 83704), (150430, 150430, 97, 97, 'Programmed Photon Particle Emitter (Team Warp Time and Space: Borealis)', 83858), (204495, 204495, 68, 68, 'Programmed Photon Particle Emitter (Tear Constraints)', 83648), (149382, 149382, 116, 116, 'Programmed Photon Particle Emitter (Tear Flesh)', 83843), (145192, 145192, 136, 136, 'Programmed Photon Particle Emitter (Temper Wrath)', 144611), (148562, 148562, 159, 159, 'Programmed Photon Particle Emitter (Temporary Allegiance)', 83780), (148764, 148764, 90, 90, 'Programmed Photon Particle Emitter (Temporary Cellular Enhancement)', 144583), (148563, 148563, 20, 20, 'Programmed Photon Particle Emitter (Temporary Glamor)', 83780), (148314, 148314, 10, 10, 'Programmed Photon Particle Emitter (Terrain Knowledge)', 83751), (148564, 148564, 90, 90, 'Programmed Photon Particle Emitter (Terror Blast)', 83788), (204003, 204003, 42, 42, 'Programmed Photon Particle Emitter (The Claim to Freedom)', 83648), (203173, 203173, 88, 88, 'Programmed Photon Particle Emitter (The Power of Three)', 83646), (204009, 204009, 137, 137, 'Programmed Photon Particle Emitter (The Prerogative of Mobility)', 83648), (204012, 204012, 180, 180, 'Programmed Photon Particle Emitter (The Privilege of Speed)', 83648), (204006, 204006, 94, 94, 'Programmed Photon Particle Emitter (The Right to Movement)', 83648), (148845, 148845, 37, 37, 'Programmed Photon Particle Emitter (Thicken Skin)', 83634), (161397, 161397, 142, 142, 'Programmed Photon Particle Emitter (Thorn of the Rose)', 83656), (148765, 148765, 83, 83, 'Programmed Photon Particle Emitter (Thorough Examination)', 83703), (148565, 148565, 166, 166, 'Programmed Photon Particle Emitter (Thorough Overhaul)', 83702), (149699, 149699, 126, 126, 'Programmed Photon Particle Emitter (Thought Controller)', 83712), (149700, 149700, 159, 159, 'Programmed Photon Particle Emitter (Thought Juggler)', 83712), (202886, 202886, 133, 133, 'Programmed Photon Particle Emitter (Thugs Glory)', 83640), (202889, 202889, 173, 173, 'Programmed Photon Particle Emitter (Thugs Jubilation)', 83640), (149383, 149383, 60, 60, 'Programmed Photon Particle Emitter (Thunderclap)', 83841), (149384, 149384, 43, 43, 'Programmed Photon Particle Emitter (Thunderous Blow)', 83841), (148766, 148766, 7, 7, 'Programmed Photon Particle Emitter (Tired Limbs)', 83727), (148767, 148767, 113, 113, 'Programmed Photon Particle Emitter (Tissue Repair)', 83704), (149472, 149472, 113, 113, 'Programmed Photon Particle Emitter (Titan Physique)', 144477), (149143, 149143, 109, 109, 'Programmed Photon Particle Emitter (Titanium Skin)', 144520), (162340, 162340, 116, 116, 'Programmed Photon Particle Emitter (Toothy Grin)', 144610), (160836, 160836, 24, 24, 'Programmed Photon Particle Emitter (Total Concentration)', 83578), (149473, 149473, 136, 136, 'Programmed Photon Particle Emitter (Total Focus)', 83635), (148566, 148566, 179, 179, 'Programmed Photon Particle Emitter (Total Mental Domination)', 83780), (149474, 149474, 10, 10, 'Programmed Photon Particle Emitter (Total Mirror Shield Mk I)', 83784), (149475, 149475, 27, 27, 'Programmed Photon Particle Emitter (Total Mirror Shield Mk II)', 83784), (149476, 149476, 47, 47, 'Programmed Photon Particle Emitter (Total Mirror Shield Mk III)', 144576), (149477, 149477, 60, 60, 'Programmed Photon Particle Emitter (Total Mirror Shield Mk IV)', 144576), (149478, 149478, 132, 132, 'Programmed Photon Particle Emitter (Total Mirror Shield Mk IX)', 144580), (149479, 149479, 86, 86, 'Programmed Photon Particle Emitter (Total Mirror Shield Mk V)', 144577), (149480, 149480, 106, 106, 'Programmed Photon Particle Emitter (Total Mirror Shield Mk VI)', 144578), (149481, 149481, 126, 126, 'Programmed Photon Particle Emitter (Total Mirror Shield Mk VII)', 144579), (149482, 149482, 129, 129, 'Programmed Photon Particle Emitter (Total Mirror Shield Mk VIII)', 144579), (149483, 149483, 146, 146, 'Programmed Photon Particle Emitter (Total Mirror Shield Mk X)', 144580), (148567, 148567, 175, 175, 'Programmed Photon Particle Emitter (Total Musculature Command)', 83717), (149484, 149484, 63, 63, 'Programmed Photon Particle Emitter (Tough as Nails)', 144476), (149144, 149144, 1, 1, 'Programmed Photon Particle Emitter (Toughen Skin)', 83745), (148846, 148846, 126, 126, 'Programmed Photon Particle Emitter (Toxic Barrier)', 83656), (149385, 149385, 37, 37, 'Programmed Photon Particle Emitter (Toxic Field)', 83811), (149386, 149386, 126, 126, 'Programmed Photon Particle Emitter (Toxic Sphere)', 83813), (149387, 149387, 132, 132, 'Programmed Photon Particle Emitter (Toxic Spill)', 83586), (149701, 149701, 165, 165, 'Programmed Photon Particle Emitter (Trading Mogul)', 83782), (149703, 149703, 172, 172, 'Programmed Photon Particle Emitter (Traffic AC (Advanced))', 144482), (149704, 149704, 182, 182, 'Programmed Photon Particle Emitter (Traffic AC (Greater))', 144483), (149705, 149705, 139, 139, 'Programmed Photon Particle Emitter (Traffic AC (Lesser))', 144481), (149706, 149706, 159, 159, 'Programmed Photon Particle Emitter (Traffic AC (Major))', 144482), (149707, 149707, 119, 119, 'Programmed Photon Particle Emitter (Traffic AC (Minor))', 144480), (149708, 149708, 96, 96, 'Programmed Photon Particle Emitter (Traffic AC (Weak))', 144480), (149702, 149702, 152, 152, 'Programmed Photon Particle Emitter (Traffic AC)', 144481), (160860, 160860, 53, 53, 'Programmed Photon Particle Emitter (Training of The Executioner)', 144610), (163412, 163412, 139, 139, 'Programmed Photon Particle Emitter (Tranquility of the Vale)', 83711), (145193, 145193, 10, 10, 'Programmed Photon Particle Emitter (Transcendent Anger Manifestation)', 144523), (145194, 145194, 175, 175, 'Programmed Photon Particle Emitter (Transcendent Enmity Personification)', 144526), (145195, 145195, 152, 152, 'Programmed Photon Particle Emitter (Transcendent Frenzy Embodiment)', 144525), (145196, 145196, 33, 33, 'Programmed Photon Particle Emitter (Transcendent Fury Externalization)', 144524), (145197, 145197, 70, 70, 'Programmed Photon Particle Emitter (Transcendent Rage Materialization)', 144524), (149145, 149145, 159, 159, 'Programmed Photon Particle Emitter (Transcendent Shen Protection)', 144522), (145198, 145198, 106, 106, 'Programmed Photon Particle Emitter (Transcendent Wrath Incarnation)', 144525), (148983, 148983, 73, 73, 'Programmed Photon Particle Emitter (Trap Artifice)', 83660), (149388, 149388, 175, 175, 'Programmed Photon Particle Emitter (Tremor)', 83861), (149389, 149389, 109, 109, 'Programmed Photon Particle Emitter (Tri-Ion Stream)', 83855), (149709, 149709, 63, 63, 'Programmed Photon Particle Emitter (Trinkets and Toys)', 83711), (160848, 160848, 76, 76, 'Programmed Photon Particle Emitter (Trueshot)', 83578), (148984, 148984, 189, 189, 'Programmed Photon Particle Emitter (Ultimate Force Field)', 144470), (148768, 148768, 185, 185, 'Programmed Photon Particle Emitter (Uncontrollable Body Tremors)', 83727), (148401, 148401, 136, 136, 'Programmed Photon Particle Emitter (Unexpected Attack)', 83793), (149710, 149710, 17, 17, 'Programmed Photon Particle Emitter (Unfriendly Merger)', 83780), (149146, 149146, 169, 169, 'Programmed Photon Particle Emitter (Universal Vulnerability Compendium)', 83636), (145199, 145199, 73, 73, 'Programmed Photon Particle Emitter (Unmake: BioMet)', 83639), (145200, 145200, 73, 73, 'Programmed Photon Particle Emitter (Unmake: MatCrea)', 83741), (145202, 145202, 63, 63, 'Programmed Photon Particle Emitter (Unmake: MatMet)', 83743), (145203, 145203, 70, 70, 'Programmed Photon Particle Emitter (Unmake: PsyMod)', 83781), (145204, 145204, 66, 66, 'Programmed Photon Particle Emitter (Unmake: SenseImp)', 83789), (145201, 145201, 66, 66, 'Programmed Photon Particle Emitter (Unmake: SpaceTime)', 83742), (149390, 149390, 119, 119, 'Programmed Photon Particle Emitter (Unstable Hadron String)', 83855), (148985, 148985, 37, 37, 'Programmed Photon Particle Emitter (Upgraded Android)', 83758), (148986, 148986, 10, 10, 'Programmed Photon Particle Emitter (Upgraded Automaton)', 83758), (148987, 148987, 76, 76, 'Programmed Photon Particle Emitter (Upgraded Gladiatorbot)', 83763), (148988, 148988, 113, 113, 'Programmed Photon Particle Emitter (Upgraded Guardbot)', 83764), (148989, 148989, 149, 149, 'Programmed Photon Particle Emitter (Upgraded Warbot)', 83764), (148990, 148990, 169, 169, 'Programmed Photon Particle Emitter (Upgraded Warmachine)', 83765), (160839, 160839, 73, 73, 'Programmed Photon Particle Emitter (Utter Concentration)', 83578), (204522, 204522, 119, 119, 'Programmed Photon Particle Emitter (Vaccine of Deprivation)', 83766), (204528, 204528, 197, 197, 'Programmed Photon Particle Emitter (Vaccine of Divestiture)', 83766), (204525, 204525, 164, 164, 'Programmed Photon Particle Emitter (Vaccine of Plundering)', 83766), (204519, 204519, 77, 77, 'Programmed Photon Particle Emitter (Vaccine of Ransacking)', 83766), (149147, 149147, 60, 60, 'Programmed Photon Particle Emitter (Velocity)', 83751), (161400, 161400, 169, 169, 'Programmed Photon Particle Emitter (Vengeance of Nature)', 83656), (149066, 149066, 60, 60, 'Programmed Photon Particle Emitter (Venom Modification)', 144610), (149391, 149391, 66, 66, 'Programmed Photon Particle Emitter (Viral Assault)', 83823), (162328, 162328, 103, 103, 'Programmed Photon Particle Emitter (Vision of the Wolf)', 83757), (148568, 148568, 130, 130, 'Programmed Photon Particle Emitter (Visions of a Doomed Future)', 83788), (149392, 149392, 189, 189, 'Programmed Photon Particle Emitter (Visions of the Void)', 83755), (202904, 202904, 197, 197, 'Programmed Photon Particle Emitter (Vlad/', 83638), (148569, 148569, 182, 182, 'Programmed Photon Particle Emitter (Void Inertia)', 83717), (149393, 149393, 86, 86, 'Programmed Photon Particle Emitter (Void Warmth)', 83818), (149394, 149394, 182, 182, 'Programmed Photon Particle Emitter (Volcanic Eruption)', 83865), (149395, 149395, 113, 113, 'Programmed Photon Particle Emitter (Vulcan Flechette)', 83849), (149148, 149148, 90, 90, 'Programmed Photon Particle Emitter (Vulnerability Seeker)', 83636), (149149, 149149, 132, 132, 'Programmed Photon Particle Emitter (Waiting Panda)', 144613), (148570, 148570, 156, 156, 'Programmed Photon Particle Emitter (Wandering Mind)', 83713), (148991, 148991, 149, 149, 'Programmed Photon Particle Emitter (Warbot)', 83764), (148847, 148847, 54, 54, 'Programmed Photon Particle Emitter (Ward from Harm)', 144466), (148992, 148992, 165, 165, 'Programmed Photon Particle Emitter (Warmachine)', 83765), (149396, 149396, 189, 189, 'Programmed Photon Particle Emitter (Warmth of the Grave)', 83821), (150424, 150424, 87, 87, 'Programmed Photon Particle Emitter (Warp Time and Space: Borealis)', 83858), (149397, 149397, 57, 57, 'Programmed Photon Particle Emitter (Weak Chemical Liquefaction)', 83811), (149398, 149398, 33, 33, 'Programmed Photon Particle Emitter (Weak Gravity Collapse)', 83840), (149399, 149399, 40, 40, 'Programmed Photon Particle Emitter (Weak Gravity Pull)', 83715), (149712, 149712, 47, 47, 'Programmed Photon Particle Emitter (Weak Health Freeloader)', 144488), (149713, 149713, 132, 132, 'Programmed Photon Particle Emitter (Weak Health Plunder)', 144491), (149400, 149400, 1, 1, 'Programmed Photon Particle Emitter (Weak Smiting Missile)', 83846), (148770, 148770, 4, 4, 'Programmed Photon Particle Emitter (Weak Team Heal)', 83700), (148571, 148571, 17, 17, 'Programmed Photon Particle Emitter (Weight of the Guilty)', 83718), (148572, 148572, 83, 83, 'Programmed Photon Particle Emitter (Weighty Announcement)', 83719), (149401, 149401, 37, 37, 'Programmed Photon Particle Emitter (Wild Eye Gouger)', 83755), (148315, 148315, 43, 43, 'Programmed Photon Particle Emitter (Wilderness Protection)', 144571), (149402, 149402, 27, 27, 'Programmed Photon Particle Emitter (Wind Blade)', 83840), (161409, 161409, 47, 47, 'Programmed Photon Particle Emitter (Wind Slicer)', 83790), (149150, 149150, 57, 57, 'Programmed Photon Particle Emitter (Wind-Blown Blossom)', 144610), (148316, 148316, 162, 162, 'Programmed Photon Particle Emitter (Wings of the Phoenix)', 83656), (149151, 149151, 43, 43, 'Programmed Photon Particle Emitter (Wooden Skin)', 144518), (148771, 148771, 179, 179, 'Programmed Photon Particle Emitter (Wrack and Ruin)', 83669), (145205, 145205, 179, 179, 'Programmed Photon Particle Emitter (Wrath Abatement)', 144611), (145206, 145206, 149, 149, 'Programmed Photon Particle Emitter (Wrath Ebb)', 144611), (145207, 145207, 86, 86, 'Programmed Photon Particle Emitter (Wrath Incarnation)', 144524), (202898, 202898, 173, 173, 'Programmed Photon Particle Emitter (Wrecking Ball)', 83588), (203935, 203935, 40, 40, 'Programmed Photon Particle Emitter (Writ of Mobility)', 83648), (203941, 203941, 120, 120, 'Programmed Photon Particle Emitter (Writ of Passage)', 83648), (203947, 203947, 200, 200, 'Programmed Photon Particle Emitter (Writ of the Errant Salesman)', 83648), (246873, 246873, 250, 250, 'Prohibited Hand-Mortar of Bacam-Xum', 233213), (257969, 257969, 250, 250, 'Projectile Weapon Upgrade', 205501), (245216, 245216, 100, 100, 'Proliferation Unit', 205533), (165474, 165474, 1, 1, 'Proof of what happened to Joslyn', 144709), (269990, 269990, 200, 200, 'Protected Safeguarded NCU Memory Unit', 269989), (281232, 281232, 1, 1, 'Protecter''s Cut Gem', 281223), (281216, 281216, 1, 1, 'Protecter''s Gem', 281224), (281202, 281202, 1, 1, 'Protecter''s Signet of The Apocalypse', 281195), (223766, 223766, 1, 1, 'Protective Shirt of Exploration', 30922), (266358, 266359, 1, 300, 'Protein Mapping Data', 284230), (259193, 259193, 1, 1, 'Protest Placard - !', 259166), (259194, 259194, 1, 1, 'Protest Placard - AFK!', 259167), (259205, 259205, 1, 1, 'Protest Placard - Abandon SL!', 259179), (259318, 259318, 1, 1, 'Protest Placard - Clan Logo', 259316), (259198, 259198, 1, 1, 'Protest Placard - Down With OT!', 259172), (259211, 259211, 1, 1, 'Protest Placard - Fence Sitters!', 259185), (258821, 258821, 1, 1, 'Protest Placard - LFT', 259033), (259199, 259199, 1, 1, 'Protest Placard - Leet is Murder!', 259173), (259214, 259214, 1, 1, 'Protest Placard - Maybe?', 259170), (259209, 259209, 1, 1, 'Protest Placard - Neutral 4 Life', 259183), (259190, 259190, 1, 1, 'Protest Placard - No Bronto Burger', 259188), (259191, 259191, 1, 1, 'Protest Placard - No Mongol Meat', 259189), (259196, 259196, 1, 1, 'Protest Placard - No!', 259169), (259192, 259192, 1, 1, 'Protest Placard - Omni-Tek Logo', 259165), (259208, 259208, 1, 1, 'Protest Placard - Omni-Tek Protects!', 259182), (259212, 259212, 1, 1, 'Protest Placard - Oppressors!', 259186), (259210, 259210, 1, 1, 'Protest Placard - Respect', 259184), (259213, 259213, 1, 1, 'Protest Placard - Terrorists!', 259187), (259197, 259197, 1, 1, 'Protest Placard - The Only Good Clanner...', 259171), (259206, 259206, 1, 1, 'Protest Placard - They Come In Peace', 259180), (259207, 259207, 1, 1, 'Protest Placard - Unity', 259181), (259204, 259204, 1, 1, 'Protest Placard - Why Not?', 259178), (259203, 259203, 1, 1, 'Protest Placard - Why?', 259177), (259195, 259195, 1, 1, 'Protest Placard - Yes!', 259168), (259201, 259201, 1, 1, 'Protest Placard - credz plz', 259175), (259200, 259200, 1, 1, 'Protest Placard - pwn', 259174), (259202, 259202, 1, 1, 'Protest Placard - wtb implants', 259176), (305057, 305058, 1, 250, 'Prototype Brain Symbiant, Artillery Unit', 215189), (305117, 305118, 1, 250, 'Prototype Brain Symbiant, Control Unit', 215189), (305143, 305144, 1, 250, 'Prototype Brain Symbiant, Extermination Unit', 215189), (305169, 305170, 1, 250, 'Prototype Brain Symbiant, Infantry Unit', 215189), (305195, 305196, 1, 250, 'Prototype Brain Symbiant, Support Unit', 215189), (305063, 305064, 1, 250, 'Prototype Chest Symbiant, Artillery Unit', 215181), (305149, 305150, 1, 250, 'Prototype Chest Symbiant, Extermination Unit', 215181), (305175, 305176, 1, 250, 'Prototype Chest Symbiant, Infantry Unit', 215181), (305201, 305202, 1, 250, 'Prototype Chest Symbiant, Support Unit', 215181), (305123, 305124, 1, 250, 'Prototype Chest Symbiant. Control Unit', 215181), (274153, 274153, 100, 100, 'Prototype Cyborg Token Board', 274146), (208009, 208009, 150, 150, 'Prototype EVA Survivor', 13316), (305061, 305062, 1, 250, 'Prototype Ear Symbiant, Artillery Unit', 230978), (305121, 305122, 1, 250, 'Prototype Ear Symbiant, Control Unit', 230978), (305147, 305148, 1, 250, 'Prototype Ear Symbiant, Extermination Unit', 230978), (305173, 305174, 1, 250, 'Prototype Ear Symbiant, Infantry Unit', 230978), (305199, 305200, 1, 250, 'Prototype Ear Symbiant, Support Unit', 230978), (305071, 305072, 1, 250, 'Prototype Essence Brain Spirit', 230992), (305115, 305116, 1, 250, 'Prototype Feet Symbiant, Artillery Unit', 215184), (305141, 305142, 1, 250, 'Prototype Feet Symbiant, Control Unit', 215184), (305167, 305168, 1, 250, 'Prototype Feet Symbiant, Extermination Unit', 215184), (305193, 305194, 1, 250, 'Prototype Feet Symbiant, Infantry Unit', 215184), (305219, 305220, 1, 250, 'Prototype Feet Symbiant, Support Unit', 215184), (305077, 305078, 1, 250, 'Prototype Heart Spirit of Essence', 230984), (305079, 305080, 1, 250, 'Prototype Heart Spirit of Knowledge', 230984), (305081, 305082, 1, 250, 'Prototype Heart Spirit of Weakness', 230984), (154848, 154848, 1, 1, 'Prototype Inferno shield', 84059), (305065, 305066, 1, 250, 'Prototype Left Arm Symbiant, Artillery Unit', 215179), (305125, 305126, 1, 250, 'Prototype Left Arm Symbiant, Control Unit', 215179), (305151, 305152, 1, 250, 'Prototype Left Arm Symbiant, Extermination Unit', 215179), (305177, 305178, 1, 250, 'Prototype Left Arm Symbiant, Infantry Unit', 215179), (305203, 305204, 1, 250, 'Prototype Left Arm Symbiant, Support Unit', 215179), (305087, 305088, 1, 250, 'Prototype Left Hand Spirit of Strength', 230994), (305067, 305068, 1, 250, 'Prototype Left Hand Symbiant, Artillery Unit', 215171), (305127, 305128, 1, 250, 'Prototype Left Hand Symbiant, Control Unit', 215171), (305153, 305154, 1, 250, 'Prototype Left Hand Symbiant, Extermination Unit', 215171), (305179, 305180, 1, 250, 'Prototype Left Hand Symbiant, Infantry Unit', 215171), (305205, 305206, 1, 250, 'Prototype Left Hand Symbiant, Support Unit', 215171), (305083, 305084, 1, 250, 'Prototype Left Limb Spirit of Strength', 230995), (305085, 305086, 1, 250, 'Prototype Left Limb Spirit of Weakness', 230995), (305069, 305070, 1, 250, 'Prototype Left Wrist Symbiant, Artillery Unit', 215198), (305129, 305130, 1, 250, 'Prototype Left Wrist Symbiant, Control Unit', 215198), (305155, 305156, 1, 250, 'Prototype Left Wrist Symbiant, Extermination Unit', 215198), (305181, 305182, 1, 250, 'Prototype Left Wrist Symbiant, Infantry Unit', 215198), (305207, 305208, 1, 250, 'Prototype Left Wrist Symbiant, Support Unit', 215198), (305097, 305098, 1, 250, 'Prototype Midriff Spirit of Essence', 230976), (305099, 305100, 1, 250, 'Prototype Midriff Spirit of Weakness', 230976), (303279, 303279, 1, 1, 'Prototype Nano Armor Cloak', 88054), (123712, 123713, 150, 159, 'Prototype OT Biomag', 38055), (154831, 154832, 1, 199, 'Prototype OT New Pistol', 113992), (305059, 305060, 1, 250, 'Prototype Ocular Symbiant, Artillery Unit', 230980), (305119, 305120, 1, 250, 'Prototype Ocular Symbiant, Control Unit', 230980), (305145, 305146, 1, 250, 'Prototype Ocular Symbiant, Extermination Unit', 230980), (305171, 305172, 1, 250, 'Prototype Ocular Symbiant, Infantry Unit', 230980), (305197, 305198, 1, 250, 'Prototype Ocular Symbiant, Support Unit', 230980), (304555, 304556, 1, 220, 'Prototype Ofab Bear', 264824), (304537, 304538, 1, 220, 'Prototype Ofab Boar', 214358), (304541, 304542, 1, 220, 'Prototype Ofab Cobra', 264793), (304545, 304546, 1, 220, 'Prototype Ofab Hawk', 264807), (304553, 304554, 1, 220, 'Prototype Ofab Mongoose', 264818), (304535, 304536, 1, 220, 'Prototype Ofab Panther', 264812), (304539, 304540, 1, 220, 'Prototype Ofab Peregrine', 264787), (304543, 304544, 1, 220, 'Prototype Ofab Shark', 264836), (304547, 304548, 1, 220, 'Prototype Ofab Silverback', 264800), (304557, 304558, 1, 220, 'Prototype Ofab Tiger', 264842), (304549, 304550, 1, 220, 'Prototype Ofab Viper', 264781), (304551, 304552, 1, 220, 'Prototype Ofab Wolf', 264832), (305183, 305184, 1, 250, 'Prototype R Arm Symbiant, Infantry Unit', 215176), (305161, 305162, 1, 250, 'Prototype R. Wrist Symbiant, Extermination Unit', 215170), (305105, 305106, 1, 250, 'Prototype Right Arm Symbiant, Artillery Unit', 215176), (305131, 305132, 1, 250, 'Prototype Right Arm Symbiant, Control Unit', 215176), (305157, 305158, 1, 250, 'Prototype Right Arm Symbiant, Extermination Unit', 215176), (305209, 305210, 1, 250, 'Prototype Right Arm Symbiant, Support Unit', 215176), (305093, 305094, 1, 250, 'Prototype Right Hand Strength Spirit', 231002), (305107, 305108, 1, 250, 'Prototype Right Hand Symbiant, Artillery Unit', 215173), (305133, 305134, 1, 250, 'Prototype Right Hand Symbiant, Control Unit', 215173), (305159, 305160, 1, 250, 'Prototype Right Hand Symbiant, Extermination Unit', 215173), (305185, 305186, 1, 250, 'Prototype Right Hand Symbiant, Infantry Unit', 215173), (305211, 305212, 1, 250, 'Prototype Right Hand Symbiant, Support Unit', 215173), (305091, 305092, 1, 250, 'Prototype Right Limb Spirit of Strength', 231004), (305109, 305110, 1, 250, 'Prototype Right Wrist Symbiant, Artillery Unit', 215170), (305135, 305136, 1, 250, 'Prototype Right Wrist Symbiant, Control Unit', 215170), (305187, 305188, 1, 250, 'Prototype Right Wrist Symbiant, Infantry Unit', 215170), (305213, 305214, 1, 250, 'Prototype Right Wrist Symbiant, Support Unit', 215170), (124529, 124530, 1, 35, 'Prototype Sito-Tech Model 00', 113990), (305073, 305074, 1, 250, 'Prototype Spirit of Clear Thought', 230992), (305101, 305102, 1, 250, 'Prototype Spirit of Defense', 230998), (305103, 305104, 1, 250, 'Prototype Spirit of Feet Defense', 230990), (305075, 305076, 1, 250, 'Prototype Spirit of Knowledge Whispered', 230986), (305089, 305090, 1, 250, 'Prototype Spirit of Left Wrist Strength', 231000), (305095, 305096, 1, 250, 'Prototype Spirit of Right Wrist Offence', 231006), (152135, 152136, 1, 20, 'Prototype Spring Inc Tube-Bow', 85167), (305113, 305114, 1, 250, 'Prototype Thigh Symbiant, Artillery Unit', 215191), (305139, 305140, 1, 250, 'Prototype Thigh Symbiant, Control Unit', 215191), (305165, 305166, 1, 250, 'Prototype Thigh Symbiant, Extermination Unit', 215191), (305191, 305192, 1, 250, 'Prototype Thigh Symbiant, Infantry Unit', 215191), (305217, 305218, 1, 250, 'Prototype Thigh Symbiant, Support Unit', 215191), (100355, 100355, 1, 1, 'Prototype Virus Container', 20403), (305111, 305112, 1, 250, 'Prototype Waist Symbiant, Artillery Unit', 215193), (305137, 305138, 1, 250, 'Prototype Waist Symbiant, Control Unit', 215193), (305163, 305164, 1, 250, 'Prototype Waist Symbiant, Extermination Unit', 215193), (305189, 305190, 1, 250, 'Prototype Waist Symbiant, Infantry Unit', 215193), (305215, 305216, 1, 250, 'Prototype Waist Symbiant, Support Unit', 215193), (214941, 229945, 90, 129, 'Provoked Bond of Novictum', 233145), (245183, 245184, 75, 150, 'Prowler Armor Boots', 37596), (245179, 245180, 75, 150, 'Prowler Armor Gloves', 37630), (245187, 245188, 75, 150, 'Prowler Armor Hood', 23003), (245181, 245182, 75, 150, 'Prowler Armor Pants', 13288), (245185, 245186, 75, 150, 'Prowler Armor Shoulder Pad', 160890), (245175, 245176, 75, 150, 'Prowler Armor Sleeves', 37423), (245177, 245178, 75, 150, 'Prowler Body Armor', 13259), (273246, 273246, 1, 1, 'Pruning Knife', 131272), (165120, 165121, 1, 200, 'Pseudo-Nano Multibenzonoxydant Sulphosalycilic Liquid', 156495), (234899, 234899, 1, 1, 'Psudocoelomatic Membrane from a Molock', 218774), (120570, 120570, 1, 1, 'Psychedelic Boots', 118188), (120569, 120569, 1, 1, 'Psychedelic Pants', 118187), (120571, 120571, 1, 1, 'Psychedelic Shirt', 118193), (120572, 120572, 1, 1, 'Psychedelic Sleeves', 118191), (101803, 101804, 1, 200, 'Psychic Cluster - Bright (Chest)', 36014), (101801, 101802, 1, 200, 'Psychic Cluster - Faded (Ear)', 36013), (101805, 101806, 1, 200, 'Psychic Cluster - Shiny (Head)', 36015), (277171, 277172, 1, 300, 'Psychic Memory Cell', 276921), (165975, 165976, 201, 300, 'Psychic Refined Cluster - Bright (Chest)', 36014), (165973, 165974, 201, 300, 'Psychic Refined Cluster - Faded (Ear)', 36013), (165977, 165978, 201, 300, 'Psychic Refined Cluster - Shiny (Head)', 36015), (101551, 101552, 1, 200, 'Psycho Modi Cluster - Bright (Eye)', 36014), (101549, 101550, 1, 200, 'Psycho Modi Cluster - Faded (Ear)', 36013), (101553, 101407, 1, 200, 'Psycho Modi Cluster - Shiny (Head)', 36015), (165711, 165712, 201, 300, 'Psycho Modi Refined Cluster - Bright (Eye)', 36014), (165709, 165710, 201, 300, 'Psycho Modi Refined Cluster - Faded (Ear)', 36013), (165713, 165714, 201, 300, 'Psycho Modi Refined Cluster - Shiny (Head)', 36015), (29740, 29740, 200, 200, 'Psycho-Active Night Vision Drug.', 19853), (277836, 277837, 1, 300, 'Psychological Modifications Memory Cell', 276920), (101719, 101720, 1, 200, 'Psychology Cluster - Bright (Ear)', 36014), (101717, 101718, 1, 200, 'Psychology Cluster - Faded (Eye)', 36013), (101721, 101722, 1, 200, 'Psychology Cluster - Shiny (Head)', 36015), (215248, 215248, 100, 100, 'Psychology Logistics Assistant', 215258), (165897, 165898, 201, 300, 'Psychology Refined Cluster - Bright (Ear)', 36014), (165895, 165896, 201, 300, 'Psychology Refined Cluster - Faded (Eye)', 36013), (165899, 165900, 201, 300, 'Psychology Refined Cluster - Shiny (Head)', 36015), (55681, 55680, 1, 200, 'Psychology Tutoring Device', 300886), (258799, 258799, 1, 1, 'Pulmonary Tissue Sample', 253010), (150238, 150239, 120, 159, 'Pulsating Ares Bio-Staff', 136738), (275469, 275469, 1, 1, 'Pulsating Corrupted Crystal', 72772), (280585, 280585, 1, 1, 'Pulsating Green Notum Crystal', 275962), (155657, 155658, 1, 200, 'Pulsating Powder of Failed Experiment Bone', 99232), (155719, 155719, 1, 1, 'Pulsating chunk of bio-matter - surrounding a core of weird logics', 156563), (251268, 251269, 1, 300, 'Pulsing Biotech Rod', 100333), (251262, 251263, 1, 99, 'Pulsing Biotech Rod Ring', 289774), (251263, 251759, 100, 199, 'Pulsing Biotech Rod Ring', 289774), (251759, 251760, 200, 300, 'Pulsing Biotech Rod Ring', 289774), (287679, 287679, 1, 1, 'Pulsing Clump', 289657), (202280, 202280, 200, 200, 'Pulsing Notum Disruptor', 149943), (280418, 280418, 20, 20, 'Pulsing Xan Artifact', 280419), (226104, 226105, 1, 500, 'Pulverize', 239069), (226106, 226107, 1, 500, 'Pulverize', 239069), (226108, 226109, 1, 500, 'Pulverize', 239069), (208055, 208055, 50, 50, 'Pump Master', 113991), (208049, 208053, 40, 49, 'Pump Trainee', 113991), (293108, 293108, 1, 1, 'Pumpkin Afro Wig', 293104), (273473, 273473, 1, 1, 'Pumpkin Basket', 273476), (273182, 273182, 1, 1, 'Pumpkin Bikini', 96127), (256495, 256495, 1, 1, 'Pumpkin Helmet', 256520), (283859, 283859, 1, 1, 'Pumpkin Juice', 283903), (273474, 273474, 1, 1, 'Pumpkinhead Doll', 273475), (284060, 284060, 1, 1, 'Pumpkinhead Nanospray', 256520), (248421, 248422, 1, 20, 'Punctured Bio-Energy Shield', 33152), (122406, 122407, 1, 20, 'Punctured Energy Buckler', 33151), (122368, 122369, 1, 20, 'Punctured Energy Shield', 33152), (122387, 122388, 1, 20, 'Punctured Esoteric Energy Buckler', 33149), (122349, 122350, 1, 20, 'Punctured Metaphysic Energy Shield', 33150), (201943, 201943, 200, 200, 'Punishment Rod', 33165), (121671, 121672, 70, 92, 'Punk-Slicer X79 Nightspear Initiate', 21138), (143340, 143340, 1, 1, 'Punk-Slicer X79 Nightspear Initiate Construction Manual', 37933), (244650, 244650, 250, 250, 'Punters of the Scorpio', 213546), (251297, 251297, 1, 1, 'Puppeteer', 255684), (258254, 258254, 1, 1, 'Purchase Order', 163064), (144800, 144799, 1, 255, 'Pure Carbon Crystal', 72765), (163844, 163845, 1, 250, 'Pure Carbon Fragment', 151012), (218470, 218470, 100, 100, 'Pure Novictum Liquid', 20407), (236160, 236160, 1, 1, 'Pure Novictum Ring', 84064), (226308, 226308, 1, 1, 'Pure Novictum Ring for the Artillery Unit', 151930), (226290, 226290, 1, 1, 'Pure Novictum Ring for the Control Unit', 151930), (226291, 226291, 1, 1, 'Pure Novictum Ring for the Extermination Unit', 151930), (226307, 226307, 1, 1, 'Pure Novictum Ring for the Infantry Unit', 151930), (226288, 226288, 1, 1, 'Pure Novictum Ring for the Support Unit', 151930), (225476, 225476, 1, 1, 'Purge 1', 239111), (225477, 225477, 1, 1, 'Purge 2', 239113), (204262, 204263, 1, 49, 'Purge Nano Kit', 154420), (204263, 204264, 50, 99, 'Purge Nano Kit', 154420), (204264, 204265, 100, 199, 'Purge Nano Kit', 154420), (204265, 204266, 200, 300, 'Purge Nano Kit', 154420), (305978, 305978, 1, 1, 'Purification Stim', 11715), (305472, 305472, 1, 1, 'Purified Acolyte Hood', 305666), (305475, 305475, 1, 1, 'Purified Exarch Hood', 305670), (305471, 305471, 1, 1, 'Purified Hood of the Faithful', 305667), (305473, 305473, 1, 1, 'Purified Reverend Hood', 305669), (305465, 305465, 1, 1, 'Purified Robe of the Faithful', 159570), (305474, 305474, 1, 1, 'Purified Windcaller Hood', 305668), (252331, 252331, 1, 1, 'Purify', 255653), (204608, 204608, 1, 1, 'Purifying Rod', 100306), (268387, 268387, 1, 1, 'Purple Adonis Recollection Shard', 292744), (290987, 290987, 1, 1, 'Purple Bouquet of Flowers', 291363), (154273, 154274, 1, 200, 'Purple Glowing Stim', 11754), (248244, 248244, 1, 1, 'Purple Heart', 255692), (218344, 218344, 160, 160, 'Purple Star Glyph of Bhotaar', 227628), (290259, 290259, 1, 1, 'Purple Thong', 290252), (304622, 304622, 150, 150, 'Putrescent Ring', 289772), (284622, 284622, 14, 14, 'PvP Disabled', 273626), (287709, 287709, 1, 1, 'PvP Playfield Map', 287380), (203643, 203644, 160, 200, 'Quadruple NotuComm Circuitry', 130731), (224437, 224437, 50, 50, 'Quagmire Cloak of Nascence', 159572), (152091, 152092, 121, 150, 'Quality Abigail', 13314), (153614, 153614, 1, 1, 'Quality Abigail Construction Manual', 136332), (250154, 250155, 101, 120, 'Quality Adapting Notum Lever', 33163), (122701, 122702, 101, 120, 'Quality Advanced Baseballbat', 13335), (122625, 122626, 101, 120, 'Quality Aero Borealis Corona', 33147), (150227, 150228, 81, 120, 'Quality Amytlo Executioner', 114001), (153328, 153328, 1, 1, 'Quality Amytlo Executioner Construction Manual', 136332), (249027, 249028, 111, 130, 'Quality Arctic Metaplast Mace', 13333), (128881, 128882, 101, 120, 'Quality Arwen MM-50 Grenade Launcher', 13336), (152323, 152324, 171, 199, 'Quality Assault Partizan', 21140), (283744, 283744, 1, 1, 'Quality Augmented Wrist', 283765), (123638, 123639, 101, 120, 'Quality BBI Sigma III', 13318), (124759, 124760, 101, 120, 'Quality BBI WMMA CAW', 13311), (123334, 123335, 30, 33, 'Quality Banjo', 85159), (249005, 249006, 101, 120, 'Quality Bio-Energy Shield', 33152), (122511, 122512, 101, 120, 'Quality Biogun', 38056), (160223, 160223, 200, 200, 'Quality Black Pete', 33170), (122017, 122018, 101, 120, 'Quality Blackened Blaster', 13321), (139746, 139746, 1, 1, 'Quality Blackened Blaster Construction Manual', 136332), (122093, 122094, 101, 120, 'Quality Blackened Blaster Rifle', 13313), (161297, 161297, 1, 1, 'Quality Blackened Blaster Rifle Construction Manual', 136332), (121998, 121999, 101, 120, 'Quality Blackened Miniblaster', 13316), (139546, 139546, 1, 1, 'Quality Blackened Miniblaster Construction Manual', 136332), (122606, 122607, 101, 120, 'Quality Blackhole Mk IX', 33171), (141278, 141278, 1, 1, 'Quality Blackhole Mk IX Construction Manual', 136332), (122739, 122740, 101, 120, 'Quality Blackjack', 33169), (122934, 122935, 101, 120, 'Quality Blackjohn', 33170), (130209, 130210, 151, 170, 'Quality Bloodworm Carapace', 85166), (123124, 123125, 101, 120, 'Quality Bow Split', 21134), (122777, 122778, 101, 120, 'Quality Bow-Blaster', 114013), (144158, 144159, 121, 140, 'Quality Burning Copper Katana', 113998), (121865, 121866, 101, 120, 'Quality Chunkprojector', 21144), (138855, 138855, 1, 1, 'Quality Chunkprojector Construction Manual', 136332), (122074, 122075, 101, 120, 'Quality Clean Slay Axe', 21141), (131607, 131607, 100, 100, 'Quality Club', 85172), (159090, 159090, 200, 200, 'Quality Collins IX Bio-Energy Rifle', 114015), (122150, 122151, 101, 120, 'Quality Cutlass', 13347), (122207, 122208, 201, 240, 'Quality DNA-Locked Blaster Rifle', 13313), (123105, 123106, 101, 120, 'Quality DNA-Targeted Executioner Pistol', 13323), (130135, 130136, 101, 120, 'Quality Denunciatory Spear', 33163), (121808, 121809, 101, 120, 'Quality Disaffiliation Sniper', 21146), (138045, 138045, 1, 1, 'Quality Disaffiliation Sniper Construction Manual', 136332), (249844, 249845, 101, 120, 'Quality Dual Razor Disaffiliation Sniper', 21146), (122131, 122132, 101, 120, 'Quality E-Beamer', 21150), (138401, 138401, 1, 1, 'Quality E-Beamer Construction Manual', 136332), (122169, 122170, 101, 120, 'Quality E-Blade', 13337), (160131, 160132, 121, 199, 'Quality Edwards RS Knife', 13349), (122473, 122474, 101, 120, 'Quality El Diablo', 31812), (122454, 122455, 101, 120, 'Quality El Dieu', 31809), (122245, 122246, 101, 120, 'Quality Electrical Pacifier', 21150), (123181, 123182, 101, 120, 'Quality Electron-Charged Pistol', 13316), (141788, 141788, 1, 1, 'Quality Electron-Charged Pistol Construction Manual', 136332), (122416, 122417, 101, 120, 'Quality Energy Buckler', 33151), (122378, 122379, 101, 120, 'Quality Energy Shield', 33152), (123315, 123316, 101, 120, 'Quality Enriched Uranium Sprayer', 21148), (122264, 122265, 101, 120, 'Quality Eradicator XCI-52', 13314), (122397, 122398, 101, 120, 'Quality Esoteric Energy Buckler', 33149), (142863, 142864, 91, 110, 'Quality Eye Wind Onehander', 13341), (204970, 204971, 200, 224, 'Quality Eyemutant Orb Laser', 152424), (124740, 124741, 101, 120, 'Quality FN P00', 21148), (128768, 128769, 101, 120, 'Quality Fabrique Des Armes Bizon 20-19', 21144), (150214, 150215, 71, 90, 'Quality Fayalite Flamberge', 113987), (121922, 121923, 101, 120, 'Quality Flamethrower', 19800), (139364, 139364, 1, 1, 'Quality Flamethrower Construction Manual', 136332), (144111, 144112, 101, 120, 'Quality Freedom Arms 4200', 113997), (124884, 124885, 111, 130, 'Quality GE ME30 Mom', 13322), (124977, 124978, 101, 120, 'Quality GE XM-559 Man-Portable Laser', 21151), (128725, 128726, 101, 120, 'Quality Galahad Inc. 077 Personal Weapon', 21148), (128749, 128750, 101, 120, 'Quality Galahad Inc. Tactical Machine Pistol 1029', 21147), (121941, 121942, 101, 120, 'Quality Gatling Saw 20k', 84025), (122815, 122816, 101, 120, 'Quality Gofle-Prod', 33168), (122877, 122878, 101, 120, 'Quality Grenade-Thrower', 13336), (141589, 141589, 1, 1, 'Quality Grenade-Thrower Construction Manual', 136332), (128665, 128666, 101, 120, 'Quality HSR Arms Tech Assault IV', 21148), (128684, 128685, 101, 120, 'Quality HSR Arms Tech Assault V', 21148), (123353, 123354, 101, 120, 'Quality Hand Axe', 13345), (121732, 121733, 101, 120, 'Quality Haxor 9922', 13339), (130154, 130155, 101, 120, 'Quality Hayfork', 85168), (123143, 123144, 105, 122, 'Quality Heavy Gamma-Beamer', 33158), (121903, 121904, 101, 120, 'Quality Heavy Grinner', 21147), (139162, 139162, 1, 1, 'Quality Heavy Grinner Construction Manual', 136332), (122682, 122683, 101, 120, 'Quality Heavy Lead Sprayer', 21148), (141450, 141450, 1, 1, 'Quality Heavy Lead Sprayer Construction Manual', 136332), (130070, 130070, 195, 195, 'Quality Heavy Mountain Ash Staff', 136738), (160138, 160139, 121, 199, 'Quality Heavy Suppressor', 31811), (130191, 130192, 170, 195, 'Quality Hot Air Stick', 13349), (124939, 124940, 101, 120, 'Quality IEC Flashpoint Laser Rifle', 33146), (123505, 123506, 101, 120, 'Quality IMI Desert Reet 1000', 13334), (206599, 206600, 101, 120, 'Quality Improved Clean Slay Axe', 21141), (161745, 161746, 101, 120, 'Quality Improved Stun-Baton', 13348), (122492, 122493, 101, 120, 'Quality Ingram Blaster 23-X', 13317), (125015, 125016, 101, 120, 'Quality Joint Clans Exocet II', 85167), (125034, 125035, 101, 120, 'Quality Joint Clans Patriot', 114013), (160270, 160271, 181, 199, 'Quality Kaen-Archibald Kolt', 13334), (248569, 248570, 101, 120, 'Quality Kaetans Supernova', 33146), (124653, 124654, 101, 120, 'Quality Kalinkanov ZU-113 Security Weapon', 21148), (121979, 121980, 101, 120, 'Quality Katana', 13326), (122720, 122721, 101, 120, 'Quality Kevlar Bow', 85167), (123543, 123544, 105, 122, 'Quality Khemo-Tech Model 07 (Pocket 20)', 113995), (123524, 123525, 101, 120, 'Quality Khemo-Tech Model 200', 113994), (152398, 152399, 131, 160, 'Quality Khemo-Tech Platinum Wakisashi', 113983), (123562, 123563, 105, 122, 'Quality Knights Inc. Special-Purpose Pistol 29029', 13318), (122991, 122992, 101, 120, 'Quality Kolt 58 Magnum', 13334), (141746, 141746, 1, 1, 'Quality Kolt 58 Magnum Construction Manual', 136332), (122283, 122284, 101, 120, 'Quality Kolt PDW-37', 13315), (140522, 140522, 1, 1, 'Quality Kolt PDW-37 Construction Manual', 136332), (125336, 125337, 83, 110, 'Quality Large Rider Squibber', 114008), (123372, 123373, 101, 120, 'Quality Lead Pipe', 85166), (123162, 123163, 115, 130, 'Quality Light Beamer Pistol', 33157), (142523, 142523, 1, 1, 'Quality Light Beamer Pistol Construction Manual', 136332), (130226, 130227, 121, 140, 'Quality Light Spear', 33163), (130081, 130081, 180, 180, 'Quality Light Stone Pine Staff', 136738), (160149, 160150, 139, 199, 'Quality Light Suppressor', 31809), (152164, 152165, 96, 125, 'Quality Light Tube-Bow', 85167), (122055, 122056, 101, 120, 'Quality Longmoon', 13338), (152306, 152307, 121, 150, 'Quality Luxembourg Inferno Rifle', 13314), (152642, 152642, 1, 1, 'Quality Luxembourg Inferno Rifle Construction Manual', 136332), (159113, 159114, 131, 199, 'Quality MTI - Russian Good Day', 21148), (152332, 152333, 81, 100, 'Quality MTI Aleph 99', 21148), (153877, 153877, 1, 1, 'Quality MTI Aleph 99 Construction Manual', 37933), (161659, 161660, 141, 160, 'Quality MTI Defender', 161057), (128618, 128619, 101, 120, 'Quality MTI G-36K', 33155), (124608, 124609, 101, 140, 'Quality MTI MP200', 21147), (128870, 128870, 141, 141, 'Quality MTI MPK-22', 33153), (124691, 124692, 101, 120, 'Quality MTI MPK-22 Briefcase Gun', 13311), (124634, 124635, 101, 130, 'Quality MTI UMP22', 114016), (123486, 123487, 101, 120, 'Quality MTI USP 21', 113993), (122953, 122954, 101, 120, 'Quality Mace', 13333), (142795, 142796, 101, 120, 'Quality Madam Freeze', 13336), (124672, 124673, 101, 120, 'Quality Malorian Arms M25 Goodgun', 33153), (122435, 122436, 101, 120, 'Quality Mausser Particle Streamer', 31807), (140890, 140890, 1, 1, 'Quality Mausser Particle Streamer Construction Manual', 136332), (123391, 123392, 101, 120, 'Quality Meat-Cleaver', 85169), (123048, 123049, 101, 120, 'Quality Medium Shotgun', 13340), (122188, 122189, 101, 120, 'Quality Megajolt', 13322), (140314, 140314, 1, 1, 'Quality Megajolt Construction Manual', 136332), (125372, 125373, 101, 120, 'Quality Merchant Executioner', 114003), (125321, 125322, 101, 120, 'Quality Merchant Squibber', 114007), (128967, 128968, 101, 120, 'Quality Merchant Warblade', 114011), (248599, 248600, 101, 120, 'Quality Merren Flamethrower', 19800), (122359, 122360, 101, 120, 'Quality Metaphysic Energy Shield', 33150), (142846, 142847, 111, 130, 'Quality Metaplast Mace', 13333), (152283, 152284, 41, 60, 'Quality Michael Patriot Ffi 29A', 21148), (153158, 153158, 1, 1, 'Quality Michael Patriot Ffi 29A Construction Manual', 37932), (152293, 152294, 141, 160, 'Quality Michael Patriot Ffi 29B', 21148), (153262, 153262, 1, 1, 'Quality Michael Patriot Ffi 29B Construction Manual', 136329), (121770, 121771, 101, 120, 'Quality Mini Axe', 13345), (123029, 123030, 101, 120, 'Quality Mini-Shotgun', 13341), (142163, 142163, 1, 1, 'Quality Mini-Shotgun Construction Manual', 136332), (122896, 122897, 101, 120, 'Quality Minielectronium', 13323), (122340, 122341, 101, 120, 'Quality Minigrinner', 33156), (140687, 140687, 1, 1, 'Quality Minigrinner Construction Manual', 136332), (123219, 123220, 125, 139, 'Quality Nano-Charged Assault Rifle', 45783), (123239, 123240, 125, 139, 'Quality Nano-Charged Rifle', 45782), (123258, 123259, 130, 143, 'Quality Nano-Charged Stun Glove', 45784), (130097, 130098, 101, 120, 'Quality Native Alloy Staff', 136738), (123429, 123430, 101, 120, 'Quality Netgun', 13322), (253225, 253226, 150, 179, 'Quality Nizno''s Bomb Blaster', 13336), (124721, 124722, 101, 120, 'Quality Nord Armwerk MAX', 21144), (130116, 130117, 101, 120, 'Quality Notum Lever', 33163), (123010, 123011, 101, 120, 'Quality Notum Spear', 21135), (143793, 143793, 1, 1, 'Quality Notum Spear Construction Manual', 136332), (122972, 122973, 101, 120, 'Quality Notum Staff', 33162), (143701, 143701, 1, 1, 'Quality Notum Staff Construction Manual', 136332), (123277, 123278, 105, 123, 'Quality Nova Flow - Mk IV', 33144), (128849, 128850, 101, 120, 'Quality OET Co. MP-21 Tactical Machine Pistol', 21148), (123581, 123582, 105, 122, 'Quality OT 0220 22mm Combat Magnum', 31808), (160181, 160182, 161, 199, 'Quality OT 12', 21149), (123467, 123468, 101, 120, 'Quality OT Boomer+.90AE', 113995), (128802, 128803, 101, 120, 'Quality OT Cobra M-33', 21148), (160480, 160480, 200, 200, 'Quality OT Kerans Automatic Grinner', 21147), (124901, 124902, 101, 120, 'Quality OT M-00 Crystal', 13336), (124808, 124809, 101, 120, 'Quality OT M-110 Renegade SAW', 13336), (124827, 124828, 101, 120, 'Quality OT M-70 HardRain GPMG', 13336), (160118, 160119, 151, 199, 'Quality OT Riot-Police Shield', 160124), (124570, 124571, 101, 120, 'Quality OT Saladin', 21148), (124589, 124590, 101, 120, 'Quality OT Viper IX', 21148), (201091, 201091, 200, 200, 'Quality Omni Life Guard Armor Boots', 21866), (201091, 201092, 200, 299, 'Quality Omni Life Guard Armor Boots', 21866), (201094, 201094, 200, 200, 'Quality Omni Life Guard Armor Gloves', 21872), (201094, 201095, 200, 299, 'Quality Omni Life Guard Armor Gloves', 21872), (201097, 201097, 200, 200, 'Quality Omni Life Guard Armor Helmet', 22269), (201097, 201098, 200, 299, 'Quality Omni Life Guard Armor Helmet', 22269), (201102, 201102, 200, 200, 'Quality Omni Life Guard Armor Pants', 21879), (201102, 201103, 200, 299, 'Quality Omni Life Guard Armor Pants', 21879), (201085, 201085, 200, 200, 'Quality Omni Life Guard Armor Sleeves', 21850), (201085, 201086, 200, 299, 'Quality Omni Life Guard Armor Sleeves', 21850), (201088, 201088, 200, 200, 'Quality Omni Life Guard Body Armor', 19816), (201088, 201089, 200, 299, 'Quality Omni Life Guard Body Armor', 19816), (122302, 122303, 101, 120, 'Quality Omni-Flamer Mk IV', 33161), (122530, 122531, 101, 120, 'Quality Omni-Flamer Strategic', 33159), (122549, 122550, 101, 120, 'Quality Omni-Pol Standard Flamer', 33160), (201115, 201115, 200, 200, 'Quality Omni-Pol Trooper Armor Boots', 13270), (201115, 201115, 200, 200, 'Quality Omni-Pol Trooper Armor Boots', 13270), (201118, 201118, 200, 200, 'Quality Omni-Pol Trooper Armor Gloves', 13283), (201118, 201118, 200, 200, 'Quality Omni-Pol Trooper Armor Gloves', 13283), (201122, 201122, 200, 200, 'Quality Omni-Pol Trooper Armor Helmet', 10840), (201122, 201122, 200, 200, 'Quality Omni-Pol Trooper Armor Helmet', 10840), (201125, 201125, 200, 200, 'Quality Omni-Pol Trooper Armor Pants', 13300), (201125, 201125, 200, 200, 'Quality Omni-Pol Trooper Armor Pants', 13300), (201112, 201112, 200, 200, 'Quality Omni-Pol Trooper Armor Sleeves', 13232), (201112, 201112, 200, 200, 'Quality Omni-Pol Trooper Armor Sleeves', 13232), (201128, 201128, 200, 200, 'Quality Omni-Pol Trooper Body Armor', 13253), (201128, 201128, 200, 200, 'Quality Omni-Pol Trooper Body Armor', 13253), (125091, 125092, 101, 120, 'Quality Oneida Razor Half-Bow', 114013), (123619, 123620, 101, 120, 'Quality PNG M1007A1 Tactical Revolver', 113997), (125442, 125443, 91, 189, 'Quality Paper Hammer', 33167), (128929, 128930, 101, 120, 'Quality Peasant Executioner', 114001), (125304, 125305, 91, 130, 'Quality Peasant Squibber', 114005), (128948, 128949, 101, 120, 'Quality Peasant Warblade', 114009), (124865, 124866, 101, 120, 'Quality Planet Gripon Arms Hard-Boomer', 13311), (121884, 121885, 101, 120, 'Quality Plasmaprojector', 21145), (139008, 139008, 1, 1, 'Quality Plasmaprojector Construction Manual', 136332), (125410, 125411, 101, 120, 'Quality Protector Executioner', 114002), (125353, 125354, 101, 120, 'Quality Protector Squibber', 114006), (129005, 129006, 101, 120, 'Quality Protector Warblade', 114010), (249859, 249860, 101, 120, 'Quality Razorback Disaffiliation Sniper', 21146), (125053, 125054, 101, 120, 'Quality Reet-Tech Junior Urban Crossbow', 114013), (124996, 124997, 101, 120, 'Quality Reet-Tech Stryker X', 85167), (125072, 125073, 101, 120, 'Quality Reet-Tech Venom Compound Bow', 85167), (125391, 125392, 101, 120, 'Quality Rider Executioner', 114004), (128986, 128987, 101, 120, 'Quality Rider Warblade', 114012), (121751, 121752, 101, 120, 'Quality Right Slice', 21142), (143529, 143529, 1, 1, 'Quality Right Slice Construction Manual', 136332), (123067, 123068, 101, 120, 'Quality Ritual Krys Knife', 13346), (123676, 123677, 101, 120, 'Quality River MV', 29116), (160206, 160206, 200, 200, 'Quality SSC Byom Blade', 114011), (142812, 142813, 132, 164, 'Quality SSC Rustling Wakisashi', 113983), (150201, 150202, 91, 120, 'Quality Santiago Crossblade', 113983), (123695, 123696, 101, 120, 'Quality Seburo Bobsons', 13330), (124708, 124709, 60, 199, 'Quality Seburo C-19a', 21149), (128646, 128647, 101, 120, 'Quality Seburo C-99a', 21144), (123600, 123601, 105, 122, 'Quality Sentinel 20mm Snub Pistol', 31811), (123657, 123658, 101, 120, 'Quality Sentinels ETE Strike Gun', 31810), (248531, 248532, 101, 120, 'Quality Sharky''s Kevlar Bow', 85167), (122663, 122664, 101, 120, 'Quality Silver Miniblaster', 13316), (121960, 121961, 101, 120, 'Quality Slank Chop', 21143), (143607, 143607, 1, 1, 'Quality Slank Chop Construction Manual', 136332), (129036, 129037, 101, 120, 'Quality Sledgehammer', 33167), (121846, 121847, 101, 120, 'Quality Sleekblaster', 13329), (138651, 138651, 1, 1, 'Quality Sleekblaster Construction Manual', 136332), (123086, 123087, 101, 120, 'Quality Sleekblaster Major', 13328), (142353, 142353, 1, 1, 'Quality Sleekblaster Major Construction Manual', 136332), (121827, 121828, 101, 120, 'Quality Sleekblaster Minor', 13327), (138227, 138227, 1, 1, 'Quality Sleekblaster Minor Construction Manual', 136332), (160491, 160492, 121, 140, 'Quality Sleekmaster Classic', 13329), (123296, 123297, 115, 130, 'Quality Slugger', 33154), (122112, 122113, 101, 120, 'Quality Stabber', 13346), (122321, 122322, 101, 120, 'Quality Stanton Stunner IV', 13313), (128900, 128901, 101, 120, 'Quality Steiner LM-5 Assault Laser', 33171), (122226, 122227, 101, 120, 'Quality Stigma Rifle', 33155), (122858, 122859, 101, 120, 'Quality Stun-Baton', 13348), (121789, 121790, 101, 120, 'Quality Subturbine', 21151), (137795, 137795, 1, 1, 'Quality Subturbine Construction Manual', 136332), (122568, 122569, 101, 120, 'Quality Sunburst Mk III', 33148), (143854, 143855, 101, 120, 'Quality Sunburst Mk IV', 33148), (122587, 122588, 101, 120, 'Quality Supernova Mk VI', 33146), (141084, 141084, 1, 1, 'Quality Supernova Mk VI Construction Manual', 136332), (122915, 122916, 101, 120, 'Quality Support Beam', 33143), (123200, 123201, 101, 120, 'Quality Suppressor', 31807), (141940, 141940, 1, 1, 'Quality Suppressor Construction Manual', 136332), (144073, 144074, 101, 130, 'Quality Survival Axe', 40782), (249047, 249048, 101, 130, 'Quality Survival Axe of Genevra', 40782), (122796, 122797, 101, 120, 'Quality Sword of Sir Galahad', 40781), (144092, 144093, 81, 120, 'Quality Tanto', 113986), (152742, 152743, 141, 170, 'Quality Tear Blade', 13347), (124958, 124959, 101, 120, 'Quality Techtronica Neural Disruptor', 21145), (122644, 122645, 101, 120, 'Quality The Original Plasma-Emitter', 33145), (122839, 122840, 101, 120, 'Quality Titanium Crowbar', 33166), (125427, 125428, 81, 100, 'Quality Torch', 85172), (122036, 122037, 101, 120, 'Quality Triplejolt', 13320), (139946, 139946, 1, 1, 'Quality Triplejolt Construction Manual', 136332), (124789, 124790, 101, 120, 'Quality Tsunami Raiden MP-Drum', 13311), (122758, 122759, 101, 120, 'Quality Two-Handed Blackjack', 33170), (123448, 123449, 101, 120, 'Quality Ultra-Light Missile Pistol Raid 9-X', 13315), (249071, 249072, 81, 120, 'Quality Variable Density Tanto', 113986), (124846, 124847, 101, 120, 'Quality Vektor M-31 Automatic Grenade Launcher', 13336), (150264, 150265, 101, 120, 'Quality Wall-Blade', 113983), (129646, 129647, 101, 120, 'Quality Wen-Wen', 85161), (124920, 124921, 101, 120, 'Quality Westinghouse IM-50 Plasma Burner', 33146), (121713, 121714, 101, 120, 'Quality Whings', 21139), (248618, 248619, 101, 120, 'Quality Xnemth Plasmaprojector', 21145), (128821, 128822, 101, 120, 'Quality Zastaba M0-2 Assault Weapon (Zero)', 33153), (101689, 101690, 1, 200, 'Quantum FT Cluster - Bright (Eye)', 36014), (101687, 101688, 1, 200, 'Quantum FT Cluster - Faded (Right-Hand)', 36013), (101691, 101692, 1, 200, 'Quantum FT Cluster - Shiny (Head)', 36015), (165867, 165868, 201, 300, 'Quantum FT Refined Cluster - Bright (Eye)', 36014), (165865, 165866, 201, 300, 'Quantum FT Refined Cluster - Faded (Right-Hand)', 36013), (165869, 165870, 201, 300, 'Quantum FT Refined Cluster - Shiny (Head)', 36015), (254431, 254431, 1, 1, 'Quantum Physics Laboratory', 159122), (286463, 286463, 195, 195, 'Quark Building Template Containment Field', 233132), (286464, 286464, 195, 195, 'Quark Building Template Containment Field', 233132), (286465, 286465, 195, 195, 'Quark Building Template Containment Field', 233132), (227358, 227358, 1, 1, 'Quark Containment Field', 239251), (225659, 225660, 1, 300, 'Quasinom de Plume''s Ring of the Electric', 151926), (157761, 157761, 200, 200, 'Queen Blade', 158239), (248999, 248999, 1, 1, 'Queen Blouse of Krystanova', 255317), (248998, 248998, 1, 1, 'Queen Sleeves of Nynx', 255260), (31525, 31521, 1, 500, 'Quest Item: Protect!', 20408), (214938, 214938, 1, 1, 'Quest PvP Disable Caster', 156511), (214894, 214894, 1, 1, 'Quest PvP enable Caster', 156511), (259625, 259625, 1, 1, 'Quest to kill Remur', 20407), (226519, 226520, 1, 500, 'Quick Bash', 239067), (226521, 226522, 1, 500, 'Quick Bash', 239067), (226523, 226524, 1, 500, 'Quick Bash', 239067), (225788, 225789, 1, 500, 'Quick Cut', 239097), (225790, 225791, 1, 500, 'Quick Cut', 239097), (225792, 225793, 1, 500, 'Quick Cut', 239097), (226238, 226239, 1, 500, 'Quick Shot', 239057), (226240, 226241, 1, 500, 'Quick Shot', 239057), (226242, 226243, 1, 500, 'Quick Shot', 239057), (244469, 244469, 250, 250, 'Quick-Draw Holster of Aries', 205533), (242953, 242953, 1, 1, 'Quiescent Grid Waveform Packet', 149936), (265479, 265479, 1, 1, 'Quiescent Grid Waveform Template', 149936), (292012, 292012, 1, 1, 'Quieter456''s QQ Shirt', 293629), (295801, 295801, 1, 1, 'RC-P Audio Recording Device', 156082), (303297, 303297, 1, 1, 'Rabbit Ears - Black', 303309), (303304, 303304, 1, 1, 'Rabbit Ears - Blue', 303311), (303305, 303305, 1, 1, 'Rabbit Ears - Brown', 303312), (303306, 303306, 1, 1, 'Rabbit Ears - Pink', 303313), (303307, 303307, 1, 1, 'Rabbit Ears - Rainbow', 303314), (303308, 303308, 1, 1, 'Rabbit Ears - White', 303315), (100358, 100358, 154, 154, 'Radar Display', 100308), (295636, 295636, 1, 1, 'Radiant Essence', 233133), (218469, 218469, 100, 100, 'Radiant Novictum Gas', 20407), (101372, 101373, 1, 200, 'Radiation AC Cluster - Bright (Left-Arm)', 35987), (101333, 101371, 1, 200, 'Radiation AC Cluster - Faded (Right-Arm)', 35986), (101374, 101375, 1, 200, 'Radiation AC Cluster - Shiny (Waist)', 35988), (165513, 165514, 201, 300, 'Radiation AC Refined Cluster - Bright (Left-Arm)', 35987), (165511, 165512, 201, 300, 'Radiation AC Refined Cluster - Faded (Right-Arm)', 35986), (165515, 165516, 201, 300, 'Radiation AC Refined Cluster - Shiny (Waist)', 35988), (162398, 162398, 10, 10, 'Radiation Adventure Shield', 12667), (158584, 158585, 1, 200, 'Radiation Arrowheads', 159119), (142912, 142913, 1, 200, 'Radiation Burst Controller', 130828), (158035, 158035, 10, 10, 'Radiation Deflection Shield', 12667), (215409, 215409, 1, 1, 'Radient', 82197), (263571, 263571, 1, 1, 'Radio Chipped Collar', 233134), (284618, 284618, 1, 1, 'Radio SDF Shirt - Black', 259717), (284627, 284627, 1, 1, 'Radio SDF Shirt - White', 259717), (245581, 245581, 1, 1, 'Radio Transceiver', 205332), (155677, 155678, 1, 200, 'Radioactive Antibiotics', 99232), (267744, 267744, 250, 250, 'Radioactive Gland Sample', 144705), (100354, 100354, 1, 1, 'Radioactive Isotope Container', 20407), (137251, 137252, 1, 200, 'Radioactive Isotope Fusion System', 130734), (155739, 155739, 1, 1, 'Radioactive Malle Saliva Stew', 100338), (155640, 155641, 1, 200, 'Radioactive Roots of Khamak Tree', 99236), (199535, 199535, 250, 250, 'Radium Periodic Tech Armor Boots', 22886), (199556, 199556, 250, 250, 'Radium Periodic Tech Armor Gloves', 22933), (199577, 199577, 250, 250, 'Radium Periodic Tech Armor Helmet', 31731), (199599, 199599, 250, 250, 'Radium Periodic Tech Armor Pants', 22912), (199620, 199620, 250, 250, 'Radium Periodic Tech Armor Sleeves', 22911), (199641, 199641, 250, 250, 'Radium Periodic Tech Body Armor', 22990), (199662, 199662, 250, 250, 'Radium Periodic Tech Female Body Armor', 22909), (302331, 302331, 1, 1, 'Raetos''s T-shirt', 302307), (302332, 302332, 1, 1, 'Raetos''s T-shirt Spawner', 302307), (281471, 281471, 1, 1, 'Rafter Reflect Spawnitem', 84059), (259861, 259861, 1, 1, 'Rafter Tear Gland', 259860), (223764, 223764, 1, 1, 'Rag', 130748), (286210, 286210, 200, 200, 'Rage-Infused Wax', 284331), (302919, 302919, 1, 1, 'Raging Spirit Capsule', 231189), (248795, 248795, 1, 1, 'Raider''s Jacket Sleeves of Twilight Night', 255254), (248796, 248796, 1, 1, 'Raider''s Jacket of Twilight Night', 255310), (157418, 157418, 1, 1, 'Rain Fourty Cod Advantage', 81779), (215355, 215355, 1, 1, 'Rain of Light', 239344), (290006, 290006, 1, 1, 'Rainbow Afro Wig', 289998), (152066, 152067, 21, 40, 'Ramen and Devis - Mathis Multi-Energy Rifle', 13314), (153393, 153393, 1, 1, 'Ramen and Devis - Mathis Multi-Energy Rifle Construction Manual', 37932), (246212, 246212, 100, 100, 'Rancorous Focus-Funneling Helper', 205511), (248374, 248374, 1, 1, 'Range Meter', 99262), (166277, 166278, 1, 200, 'RangeInc. NF Jobe Cluster - Bright (Left-Hand)', 36026), (166273, 166274, 1, 200, 'RangeInc. NF Jobe Cluster - Faded (Right-Arm)', 36025), (166281, 166282, 1, 200, 'RangeInc. NF Jobe Cluster - Shiny (Left-Arm)', 36027), (166279, 166280, 201, 300, 'RangeInc. NF Refined Jobe Cluster - Bright (Left-Hand)', 36026), (166275, 166276, 201, 300, 'RangeInc. NF Refined Jobe Cluster - Faded (Right-Arm)', 36025), (166283, 166284, 201, 300, 'RangeInc. NF Refined Jobe Cluster - Shiny (Left-Arm)', 36027), (166265, 166266, 1, 200, 'RangeInc. Weapon Jobe Cluster - Bright (Feet)', 36026), (166261, 166262, 1, 200, 'RangeInc. Weapon Jobe Cluster - Faded (Right-Arm)', 36025), (166269, 166270, 1, 200, 'RangeInc. Weapon Jobe Cluster - Shiny (Eye)', 36027), (166267, 166268, 201, 300, 'RangeInc. Weapon Refined Jobe Cluster - Bright (Feet)', 36026), (166263, 166264, 201, 300, 'RangeInc. Weapon Refined Jobe Cluster - Faded (Right-Arm)', 36025), (166271, 166272, 201, 300, 'RangeInc. Weapon Refined Jobe Cluster - Shiny (Eye)', 36027), (101557, 101558, 1, 200, 'Ranged Ener Cluster - Bright (Eye)', 36014), (101555, 101556, 1, 200, 'Ranged Ener Cluster - Faded (Left-Hand)', 36013), (101559, 101560, 1, 200, 'Ranged Ener Cluster - Shiny (Head)', 36015), (165735, 165736, 201, 300, 'Ranged Ener Refined Cluster - Bright (Eye)', 36014), (165733, 165734, 201, 300, 'Ranged Ener Refined Cluster - Faded (Left-Hand)', 36013), (165737, 165738, 201, 300, 'Ranged Ener Refined Cluster - Shiny (Head)', 36015), (277931, 277932, 1, 300, 'Ranged Energy Memory Cell', 276922), (278070, 278071, 1, 199, 'Ranged Energy Skill NCU (1/6)', 276930), (278072, 278073, 200, 299, 'Ranged Energy Skill NCU (1/6)', 276930), (278074, 278074, 300, 300, 'Ranged Energy Skill NCU (1/6)', 276930), (278075, 278076, 1, 199, 'Ranged Energy Skill NCU (2/6)', 276931), (278077, 278078, 200, 299, 'Ranged Energy Skill NCU (2/6)', 276931), (278079, 278079, 300, 300, 'Ranged Energy Skill NCU (2/6)', 276931), (278080, 278081, 1, 199, 'Ranged Energy Skill NCU (3/6)', 276932), (278082, 278083, 200, 299, 'Ranged Energy Skill NCU (3/6)', 276932), (278084, 278084, 300, 300, 'Ranged Energy Skill NCU (3/6)', 276932), (278085, 278086, 1, 199, 'Ranged Energy Skill NCU (4/6)', 276933), (278087, 278088, 200, 299, 'Ranged Energy Skill NCU (4/6)', 276933), (278089, 278089, 300, 300, 'Ranged Energy Skill NCU (4/6)', 276933), (278090, 278091, 1, 199, 'Ranged Energy Skill NCU (5/6)', 276934), (278092, 278093, 200, 299, 'Ranged Energy Skill NCU (5/6)', 276934), (278094, 278094, 300, 300, 'Ranged Energy Skill NCU (5/6)', 276934), (278095, 278096, 1, 199, 'Ranged Energy Skill NCU (6/6)', 276935), (278097, 278098, 200, 299, 'Ranged Energy Skill NCU (6/6)', 276935), (278099, 278099, 300, 300, 'Ranged Energy Skill NCU (6/6)', 276935), (272292, 272293, 1, 300, 'Ranged Energy Weapons Basic Upgrade Kit', 272250), (272310, 272311, 1, 300, 'Ranged Weapons Adjustment Kit', 272251), (101491, 101492, 1, 200, 'Ranged. Init Cluster - Bright (Head)', 35981), (101489, 101490, 1, 200, 'Ranged. Init Cluster - Faded (Right-Hand)', 35980), (101493, 101494, 1, 200, 'Ranged. Init Cluster - Shiny (Right-Wrist)', 35982), (165651, 165652, 201, 300, 'Ranged. Init Refined Cluster - Bright (Head)', 35981), (165649, 165650, 201, 300, 'Ranged. Init Refined Cluster - Faded (Right-Hand)', 35980), (165653, 165654, 201, 300, 'Ranged. Init Refined Cluster - Shiny (Right-Wrist)', 35982), (274664, 274664, 1, 1, 'Ranger''s Spirit Vest', 274682), (137313, 137314, 1, 200, 'Rapid-Reload-And-Fire Gyro', 130700), (161627, 161628, 1, 49, 'Rasch Crystal I', 161143), (161629, 161630, 50, 99, 'Rasch Crystal II', 161143), (161631, 161632, 100, 149, 'Rasch Crystal III', 161143), (161633, 161634, 150, 199, 'Rasch Crystal IV', 161143), (161635, 161635, 200, 200, 'Rasch Crystal V', 161143), (152714, 152714, 100, 100, 'Rat Catcher Goggles', 12711), (232926, 232927, 1, 149, 'Rather cheap ring', 149950), (232927, 232929, 150, 199, 'Rather cheap ring', 149950), (232929, 232930, 200, 249, 'Rather cheap ring', 149950), (232930, 232931, 250, 400, 'Rather cheap ring', 149950), (275816, 275816, 220, 220, 'Ravening M-60', 99983), (276061, 276061, 220, 220, 'Ravening M-60 (BS)', 99983), (234885, 234885, 1, 1, 'Ravin''s Multi-Gyro Component', 205515), (236641, 236641, 1, 1, 'Raw Source Crystal', 235347), (245117, 245117, 1, 1, 'Razor''s Fang', 161139), (292235, 292235, 1, 1, 'Razor''s Polarized Specs', 234536), (249857, 249858, 81, 100, 'Razorback Disaffiliation Sniper', 21146), (164599, 164600, 1, 200, 'Re-Configured Nano Formula Recompiler', 119133), (268719, 268719, 1, 1, 'Re-fitted Backpack', 268734), (251996, 251996, 200, 200, 'Reactive Boots', 252431), (251998, 251998, 200, 200, 'Reactive Gloves', 252439), (251999, 251999, 200, 200, 'Reactive Helmet', 252430), (251995, 251995, 200, 200, 'Reactive Pants', 252437), (251997, 251997, 200, 200, 'Reactive Sleeves', 252435), (251994, 251994, 200, 200, 'Reactive Vest', 252433), (40826, 40826, 1, 1, 'Read-Only Memory Rack', 20402), (152706, 152706, 175, 175, 'Real Knickers Stockings', 82873), (258472, 258473, 100, 150, 'Reanimator''s Cloak', 22892), (227641, 227641, 1, 1, 'Reap Life', 239157), (227642, 227642, 1, 1, 'Reap Life', 154367), (227644, 227644, 1, 1, 'Reap Life', 154367), (227645, 227645, 1, 1, 'Reap Life', 154367), (227646, 227646, 1, 1, 'Reap Life', 154367), (227647, 227647, 1, 1, 'Reap Life', 154367), (227648, 227648, 1, 1, 'Reap Life', 154367), (227653, 227653, 1, 1, 'Reap Life', 154367), (227672, 227672, 1, 1, 'Reap Life', 154367), (227682, 227682, 1, 1, 'Reap Life', 154367), (304161, 304161, 1, 1, 'Reaper No Attack', 227249), (291250, 291250, 1, 1, 'Rebel Nano-Spray', 99232), (291267, 291267, 1, 1, 'Rebel Nano-Spray', 99232), (214287, 214288, 100, 199, 'Rebellion Rifle', 210169), (214289, 214290, 200, 299, 'Rebellion Rifle', 210169), (295800, 295800, 1, 1, 'Rebuilt HC-12 SecTec Monitor', 121435), (204980, 204981, 1, 300, 'Rebuilt NCU Wrist Implant', 20412), (260707, 260708, 50, 99, 'Rebuilt Perennium Beamer', 244836), (260709, 260710, 100, 149, 'Rebuilt Perennium Beamer', 244836), (260711, 260712, 150, 199, 'Rebuilt Perennium Beamer', 244836), (260700, 260701, 50, 99, 'Rebuilt Perennium Blaster', 244931), (260702, 260703, 100, 149, 'Rebuilt Perennium Blaster', 244931), (260704, 260705, 150, 199, 'Rebuilt Perennium Blaster', 244931), (260714, 260715, 50, 99, 'Rebuilt Perennium Sniper', 245082), (260716, 260717, 100, 149, 'Rebuilt Perennium Sniper', 245082), (260718, 260719, 150, 199, 'Rebuilt Perennium Sniper', 245082), (251274, 251274, 1, 1, 'Recalibrate', 255614), (248317, 248317, 1, 1, 'Recalibrated Scope Unit', 130777), (259431, 259431, 1, 1, 'Recapture Beacon', 149934), (203269, 203269, 1, 1, 'Receipt', 154679), (203270, 203270, 1, 1, 'Receipt', 154679), (203271, 203271, 1, 1, 'Receipt', 154679), (203272, 203272, 1, 1, 'Receipt', 154679), (203273, 203273, 1, 1, 'Receipt', 154679), (203274, 203274, 1, 1, 'Receipt', 154679), (285451, 285451, 1, 1, 'Receipt for Reclaim', 156343), (154265, 154266, 1, 200, 'Receptive Bots', 11755), (260676, 260676, 205, 205, 'Reciprocal Wen-Wen', 268035), (227236, 227236, 1, 1, 'Reconstruct DNA', 239147), (229119, 229119, 1, 1, 'Reconstruction', 239151), (214891, 214891, 1, 1, 'Record of Lost Diviner', 227288), (303637, 303637, 1, 1, 'Recruit Desert Nomad Rucksack', 303678), (85631, 22142, 1, 199, 'Recruit-Issue Omni-Pol Armor Boots', 13270), (85591, 22196, 1, 199, 'Recruit-Issue Omni-Pol Armor Gloves', 13283), (85552, 22246, 1, 199, 'Recruit-Issue Omni-Pol Armor Helmet', 10840), (85505, 22331, 1, 199, 'Recruit-Issue Omni-Pol Armor Pants', 13300), (85735, 21955, 1, 199, 'Recruit-Issue Omni-Pol Armor Sleeves', 13232), (88070, 88069, 1, 199, 'Recruit-Issue Omni-Pol Battle Suit', 41161), (85679, 22064, 1, 199, 'Recruit-Issue Omni-Pol Body Armor', 13253), (85630, 27392, 1, 199, 'Recruit-Issue Omni-Pol Desert Armor Boots', 27665), (85590, 27396, 1, 199, 'Recruit-Issue Omni-Pol Desert Armor Gloves', 27664), (85551, 27402, 1, 199, 'Recruit-Issue Omni-Pol Desert Armor Helmet', 27709), (85504, 27394, 1, 199, 'Recruit-Issue Omni-Pol Desert Armor Pants', 27663), (85734, 27400, 1, 199, 'Recruit-Issue Omni-Pol Desert Armor Sleeves', 27666), (85678, 27398, 1, 199, 'Recruit-Issue Omni-Pol Desert Body Armor', 22991), (85629, 22146, 1, 199, 'Recruit-Issue Omni-Pol Elite Armor Boots', 21866), (85589, 22200, 1, 199, 'Recruit-Issue Omni-Pol Elite Armor Gloves', 21872), (85550, 22250, 1, 199, 'Recruit-Issue Omni-Pol Elite Armor Helmet', 22269), (85503, 22335, 1, 199, 'Recruit-Issue Omni-Pol Elite Armor Pants', 21879), (85733, 21959, 1, 199, 'Recruit-Issue Omni-Pol Elite Armor Sleeves', 21850), (88068, 88077, 1, 199, 'Recruit-Issue Omni-Pol Elite Battle Suit', 41163), (85677, 22068, 1, 199, 'Recruit-Issue Omni-Pol Elite Body Armor', 19816), (85628, 22150, 1, 199, 'Recruit-Issue Omni-Pol Forest Armor Boots', 13271), (85588, 22204, 1, 199, 'Recruit-Issue Omni-Pol Forest Armor Gloves', 13284), (85549, 22254, 1, 199, 'Recruit-Issue Omni-Pol Forest Armor Helmet', 10841), (85502, 22339, 1, 199, 'Recruit-Issue Omni-Pol Forest Armor Pants', 13301), (85732, 21963, 1, 199, 'Recruit-Issue Omni-Pol Forest Armor Sleeves', 13233), (85676, 22072, 1, 199, 'Recruit-Issue Omni-Pol Forest Body Armor', 13254), (283743, 283743, 1, 1, 'Recycled Augmented Muscle Mass', 283761), (283738, 283738, 1, 1, 'Recycled Bio Matter', 283759), (283742, 283742, 1, 1, 'Recycled Flexible Backbone', 283762), (283740, 283740, 1, 1, 'Recycled Rusty Spikes', 283764), (283739, 283739, 1, 1, 'Recycled Scraps of Metal', 283760), (283741, 283741, 1, 1, 'Recycled Toxic Waste', 283763), (275083, 275083, 1, 1, 'Red Berry Wine', 37938), (209039, 209039, 200, 200, 'Red Bioplast Protective Helmet', 205768), (290997, 290997, 1, 1, 'Red Bouquet of Flowers', 291364), (258536, 258536, 1, 1, 'Red Carnation', 258542), (253495, 253495, 1, 1, 'Red Carpeting Square of Maze', 255913), (253496, 253496, 1, 1, 'Red Carpeting Strip of Maze', 255914), (31499, 31499, 1, 1, 'Red Cloak', 22893), (31528, 31528, 1, 1, 'Red Cloak Hood', 22998), (204995, 204996, 100, 150, 'Red Cranium Nano Cloak', 85941), (292514, 292514, 1, 1, 'Red Data Crystal', 292764), (254454, 254455, 1, 500, 'Red Dawn', 255694), (254456, 254457, 1, 500, 'Red Dawn', 255694), (254458, 254459, 100, 500, 'Red Dawn', 255694), (248719, 248719, 500, 500, 'Red Dawn', 239149), (31495, 31495, 1, 1, 'Red Dress', 88049), (248729, 248729, 1, 1, 'Red Dusk', 255698), (31251, 31251, 1, 1, 'Red Female Oriental Suit', 88043), (285870, 285870, 200, 200, 'Red Fiber', 284331), (274540, 274540, 1, 1, 'Red Freedom Tags', 218752), (42316, 42316, 1, 1, 'Red Fret Boots', 42277), (42313, 42313, 1, 1, 'Red Fret Thigh High Boots', 42266), (218343, 218343, 160, 160, 'Red Glyph of Aban', 227529), (227625, 227625, 160, 160, 'Red Glyph of Aban - Awakened', 227529), (227802, 227802, 160, 160, 'Red Glyph of Death', 227559), (218342, 218342, 160, 160, 'Red Glyph of Enel', 227546), (227627, 227627, 160, 160, 'Red Glyph of Enel - Awakened', 227546), (227800, 227800, 160, 160, 'Red Glyph of Justice', 227579), (218341, 218341, 160, 160, 'Red Glyph of Ocra', 227583), (227626, 227626, 160, 160, 'Red Glyph of Ocra - Awakened', 227583), (227797, 227797, 160, 160, 'Red Glyph of Strength', 227612), (227803, 227803, 160, 160, 'Red Glyph of Temperance', 227571), (227796, 227796, 160, 160, 'Red Glyph of the Chariot', 227563), (227793, 227793, 160, 160, 'Red Glyph of the Emperor', 227608), (227792, 227792, 160, 160, 'Red Glyph of the Empress', 227551), (227801, 227801, 160, 160, 'Red Glyph of the Hanged Man', 227555), (227798, 227798, 160, 160, 'Red Glyph of the Hermit', 227575), (227794, 227794, 160, 160, 'Red Glyph of the Hierophant', 227542), (227791, 227791, 160, 160, 'Red Glyph of the High Priestess', 227616), (227795, 227795, 160, 160, 'Red Glyph of the Lovers', 227567), (227790, 227790, 160, 160, 'Red Glyph of the Magician', 227538), (227799, 227799, 160, 160, 'Red Glyph of the Wheel of Fortune', 227588), (253503, 253503, 1, 1, 'Red Hanging Nepenthia Lanterns', 255960), (259781, 259781, 1, 1, 'Red Hat (Amanita muscaria) Fungus Sample', 255418), (259778, 259778, 1, 1, 'Red Hat Mixture', 259777), (259775, 259775, 1, 1, 'Red Hat Spores', 99236), (275934, 275934, 1, 1, 'Red Keycard', 99276), (275545, 275545, 1, 1, 'Red Keycard Fragment - Left', 99276), (275548, 275548, 1, 1, 'Red Keycard Fragment - Right', 99276), (276666, 276666, 1, 1, 'Red Keycard Fragment - Right', 99276), (250272, 250272, 1, 1, 'Red King Riding Hood', 255404), (208037, 208038, 40, 49, 'Red Line Grenade Launcher', 13336), (208039, 208039, 50, 50, 'Red Line Grenade Launcher', 13336), (31515, 31515, 1, 1, 'Red Omni-Tek Commander Cloak', 88051), (160658, 160659, 1, 200, 'Red Organic Combat Suit', 88040), (31262, 31262, 1, 1, 'Red Oriental Suit', 88040), (31241, 31241, 1, 1, 'Red Pants', 30939), (248541, 248541, 1, 1, 'Red Royal Robe of Fatal Shadows', 255297), (27353, 27353, 1, 1, 'Red Rubber Pants', 22916), (27354, 27354, 1, 1, 'Red Rubber Shirt', 22969), (27355, 27355, 1, 1, 'Red Rubbershirt Sleeves', 22947), (42322, 42322, 1, 1, 'Red Short Fret Top', 42272), (290256, 290256, 1, 1, 'Red Thong', 290248), (157419, 157419, 1, 1, 'Red Twenty Hummingbird Advantage', 81775), (42314, 42314, 1, 1, 'Red Twil Boots', 42275), (42312, 42312, 1, 1, 'Red Twil Thigh High Boots', 42268), (285897, 285897, 200, 200, 'Red Wax', 284331), (285871, 285871, 200, 200, 'Red Wick', 284331), (130590, 130590, 1, 1, 'Red Wine', 37938), (130614, 130614, 1, 1, 'Red Wine Glass', 37958), (285853, 285853, 200, 200, 'Red Wire', 284331), (150249, 150250, 121, 150, 'Red Zenith Taichi', 113987), (130632, 130632, 1, 1, 'Red and Grey Giant Pollen', 37973), (232756, 232757, 1, 149, 'Red beryl', 286939), (232757, 232759, 150, 199, 'Red beryl', 286939), (232759, 232760, 200, 249, 'Red beryl', 286939), (232760, 232761, 250, 400, 'Red beryl', 286939), (234500, 234500, 1, 1, 'Red flames of Tarrasque', 130862), (130640, 130640, 1, 1, 'Red-Hooot Pizza', 99287), (253137, 253137, 1, 1, 'Redeem Last Wish', 255692), (297143, 297143, 1, 1, 'Redeemed Faction Package: 10000', 296960), (303373, 303373, 1, 1, 'Redeemed Faction Package: 10000', 296960), (242290, 242290, 1, 1, 'Redeemed Grunt Fire Effect', 130862), (242303, 242303, 1, 1, 'Redeemed Grunt Forest', 130862), (242273, 242273, 1, 1, 'Redeemed Grunt Wear', 130862), (295626, 295626, 1, 1, 'Redeemed-Attuned Novictum Infuser', 233133), (292013, 292013, 1, 1, 'Redesine''s QQ Shirt', 293628), (248328, 248328, 1, 1, 'Reet Beak', 37977), (248327, 248327, 1, 1, 'Reet Beak Whistling Plug', 130677), (271449, 271450, 1, 300, 'Reet-Tech Compound Bow - 000', 85167), (271451, 271452, 1, 300, 'Reet-Tech Compound Bow - 002', 85167), (271453, 271454, 1, 300, 'Reet-Tech Compound Bow - 402', 85167), (271455, 271456, 1, 300, 'Reet-Tech Compound Bow - C02', 85167), (271441, 271442, 1, 300, 'Reet-Tech Crossbow - 000', 114013), (271443, 271444, 1, 300, 'Reet-Tech Crossbow - 002', 114013), (271445, 271446, 1, 300, 'Reet-Tech Crossbow - 402', 114013), (271447, 271448, 1, 300, 'Reet-Tech Crossbow - C02', 114013), (158575, 158575, 1, 1, 'Reet-Tech Metaplast Arrowshafts', 159121), (158574, 158574, 200, 200, 'Reet-Tech Superior Metaplast Arrowshafts', 159121), (207479, 207480, 1, 400, 'Refined Notum Pellet', 156562), (121610, 121611, 1, 23, 'Refitted Polearm', 21140), (143037, 143037, 1, 1, 'Refitted Polearm Construction Manual', 37931), (274977, 274977, 300, 300, 'Reflex Pistol', 264785), (157622, 157623, 49, 98, 'Refurbished IMI Tellus TT', 13313), (121595, 121596, 47, 69, 'Refurbished Moon Edge', 13343), (214068, 214068, 1, 1, 'Regain Nano', 239187), (269895, 269895, 200, 200, 'Regenerative Permafrost Chemicals', 100333), (247772, 254807, 1, 300, 'Regular Building Structure', 256071), (165218, 165218, 1, 1, 'Regular dog-tag', 149944), (246933, 246933, 1, 1, 'Regulated Heavy Bio Mesh', 161075), (246934, 246934, 1, 1, 'Regulated Light Bio Mesh', 161074), (212995, 212995, 200, 200, 'Reign of Patricia', 13311), (289442, 289442, 1, 1, 'Reindeer Mask', 289441), (213438, 213438, 1, 1, 'Reinforce Slugs', 239047), (249031, 249032, 151, 170, 'Reinforced Arctic Metaplast Mace', 13333), (160199, 160200, 171, 199, 'Reinforced Bang-Bang Glove', 45784), (305973, 305973, 1, 1, 'Reinforced Bau Cyber Armor Boots', 22878), (305971, 305971, 1, 1, 'Reinforced Bau Cyber Armor Gloves', 22939), (305972, 305972, 1, 1, 'Reinforced Bau Cyber Armor Helmet', 31738), (305970, 305970, 1, 1, 'Reinforced Bau Cyber Armor Pants', 22928), (305969, 305969, 1, 1, 'Reinforced Bau Cyber Armor Sleeves', 22889), (305967, 305967, 1, 1, 'Reinforced Bau Cyber Body Armor', 22981), (305968, 305968, 1, 1, 'Reinforced Bau Cyber Female Body Armor', 22942), (157163, 157163, 10, 10, 'Reinforced Blackpants', 13288), (251231, 251232, 1, 300, 'Reinforced Gauntlets', 13281), (248331, 248331, 1, 1, 'Reinforced Hammer Head', 130792), (160230, 160231, 151, 199, 'Reinforced Heavy Chop', 21143), (161661, 161662, 161, 199, 'Reinforced MTI Defender', 161057), (142850, 142851, 151, 170, 'Reinforced Metaplast Mace', 13333), (151694, 151695, 1, 19, 'Reinforced NCU Component Belt', 119145), (151695, 151696, 20, 39, 'Reinforced NCU Component Belt', 119145), (151696, 151697, 40, 80, 'Reinforced NCU Component Belt', 119142), (151697, 151698, 80, 119, 'Reinforced NCU Component Belt', 119142), (151698, 151699, 120, 199, 'Reinforced NCU Component Belt', 119144), (151699, 151699, 200, 200, 'Reinforced NCU Component Belt', 119143), (203645, 203646, 160, 200, 'Reinforced NotuComm Wire', 151017), (152115, 152116, 91, 120, 'Reinforced Pow Bow', 85167), (150199, 150200, 71, 90, 'Reinforced Santiago Crossblade', 113983), (252554, 252554, 1, 1, 'Reject', 239167), (254313, 254313, 1, 1, 'Reject', 255675), (270246, 270246, 200, 200, 'Rejected Brain Spirit of Computer Skill', 230992), (224718, 224718, 200, 200, 'Rejected Brain Spirit of Offence', 230992), (224975, 224975, 200, 200, 'Rejected Heart Spirit of Weakness', 230984), (225207, 225207, 200, 200, 'Rejected Left Hand Spirit of Defence', 230994), (224991, 224991, 200, 200, 'Rejected Left Limb Spirit of Understanding', 230995), (225009, 225009, 200, 200, 'Rejected Left Limb Spirit of Weakness', 230995), (224909, 224909, 200, 200, 'Rejected Midriff Spirit of Strength', 230976), (224893, 224893, 200, 200, 'Rejected Midriff Spirit of Weakness', 230976), (225154, 225154, 200, 200, 'Rejected Right Hand Defencive Spirit', 231002), (224808, 224808, 200, 200, 'Rejected Right Limb Spirit of Strength', 231004), (224825, 224825, 200, 200, 'Rejected Right Limb Spirit of Weakness', 231004), (224704, 224704, 200, 200, 'Rejected Spirit of Clear Thought', 230992), (224670, 224670, 200, 200, 'Rejected Spirit of Discerning Weakness', 230988), (224788, 224788, 200, 200, 'Rejected Spirit of Essence Whispered', 230986), (225258, 225258, 200, 200, 'Rejected Spirit of Feet Defense', 230990), (225241, 225241, 200, 200, 'Rejected Spirit of Feet Strength', 230990), (225096, 225096, 200, 200, 'Rejected Spirit of Left Wrist Defense', 231000), (225115, 225115, 200, 200, 'Rejected Spirit of Left Wrist Strength', 231000), (224772, 224772, 200, 200, 'Rejected Spirit of Strength Whispered', 230986), (224655, 224655, 200, 200, 'Rejected Spirit of True Seeing', 230988), (245003, 245003, 1, 1, 'Reload', 245002), (216272, 216272, 150, 150, 'Remains of AESA 10', 144712), (280526, 280526, 1, 1, 'Remains of Spacequest', 277964), (225983, 225984, 1, 300, 'Remains of a DOJA Tagging Device', 293709), (165473, 165473, 1, 1, 'Remains of a long lost pet', 144707), (248774, 248774, 1, 1, 'Remote Access Hacker Tool', 99282), (291421, 291421, 1, 1, 'Remote Access Hacker Tool', 99282), (285746, 285746, 1, 1, 'Remote Access Scanner', 285751), (225474, 225474, 1, 1, 'Removal 1', 239107), (225475, 225475, 1, 1, 'Removal 2', 239109), (245672, 245672, 150, 150, 'Repair Coordination Assistant', 301022), (229660, 229660, 1, 1, 'Repair Pet', 239147), (205742, 205743, 20, 50, 'Repairman''s Hat', 205772), (289030, 289030, 1, 1, 'Replica Armor Set: Combined Commando''s', 256308), (289024, 289024, 1, 1, 'Replica Armor Set: Combined Commando''s with Helmet', 256311), (289031, 289031, 1, 1, 'Replica Armor Set: Combined Mercenary''s', 256356), (289025, 289025, 1, 1, 'Replica Armor Set: Combined Mercenary''s with Helmet', 256359), (289032, 289032, 1, 1, 'Replica Armor Set: Combined Officer''s', 256320), (289026, 289026, 1, 1, 'Replica Armor Set: Combined Officer''s with Helmet', 256323), (289034, 289034, 1, 1, 'Replica Armor Set: Combined Paramedic''s', 256350), (289028, 289028, 1, 1, 'Replica Armor Set: Combined Paramedic''s with Helmet', 256353), (289033, 289033, 1, 1, 'Replica Armor Set: Combined Scout''s', 256326), (289027, 289027, 1, 1, 'Replica Armor Set: Combined Scout''s with Helmet', 256329), (289035, 289035, 1, 1, 'Replica Armor Set: Combined Sharpshooter''s', 256302), (289029, 289029, 1, 1, 'Replica Armor Set: Combined Sharpshooter''s with Helmet', 256305), (303219, 303219, 1, 1, 'Replica Armor Set: Dust Brigade Trooper', 37545), (289097, 289097, 1, 1, 'Replica Armor Set: ICC Peacekeeper', 289319), (289096, 289096, 1, 1, 'Replica Armor Set: ICC Peacekeeper with Helmet', 289318), (303220, 303220, 1, 1, 'Replica Armor Set: Manex Black & Orange', 286364), (303222, 303222, 1, 1, 'Replica Armor Set: Manex Camo', 286484), (303221, 303221, 1, 1, 'Replica Armor Set: Manex Purple & Grey', 286367), (289101, 289101, 1, 1, 'Replica Armor Set: Omni-Armed Forces', 19816), (289100, 289100, 1, 1, 'Replica Armor Set: Omni-Armed Forces with Helmet', 22269), (289103, 289103, 1, 1, 'Replica Armor Set: Omni-Med Battle Suit', 206980), (289102, 289102, 1, 1, 'Replica Armor Set: Omni-Med Battle Suit with Helmet', 206984), (289099, 289099, 1, 1, 'Replica Armor Set: Pandemonium', 245031), (289098, 289098, 1, 1, 'Replica Armor Set: Pandemonium with Helmet', 245034), (289084, 289084, 1, 1, 'Replica Armor Set: Penultimate Adventurer OFAB', 266411), (289069, 289069, 1, 1, 'Replica Armor Set: Penultimate Adventurer OFAB with Helmet', 266370), (289083, 289083, 1, 1, 'Replica Armor Set: Penultimate Agent OFAB', 266421), (289068, 289068, 1, 1, 'Replica Armor Set: Penultimate Agent OFAB with Helmet', 266372), (289086, 289086, 1, 1, 'Replica Armor Set: Penultimate Bureaucrat OFAB', 266431), (289072, 289072, 1, 1, 'Replica Armor Set: Penultimate Bureaucrat OFAB with Helmet', 266374), (289088, 289088, 1, 1, 'Replica Armor Set: Penultimate Doctor OFAB', 266441), (289074, 289074, 1, 1, 'Replica Armor Set: Penultimate Doctor OFAB with Helmet', 266376), (289087, 289087, 1, 1, 'Replica Armor Set: Penultimate Enforcer OFAB', 266451), (289073, 289073, 1, 1, 'Replica Armor Set: Penultimate Enforcer OFAB with Helmet', 266378), (289081, 289081, 1, 1, 'Replica Armor Set: Penultimate Engineer OFAB', 266461), (289066, 289066, 1, 1, 'Replica Armor Set: Penultimate Engineer OFAB with Helmet', 266380), (289082, 289082, 1, 1, 'Replica Armor Set: Penultimate Fixer OFAB', 266471), (289067, 289067, 1, 1, 'Replica Armor Set: Penultimate Fixer OFAB with Helmet', 266382), (289091, 289091, 1, 1, 'Replica Armor Set: Penultimate Keeper OFAB', 266481), (289077, 289077, 1, 1, 'Replica Armor Set: Penultimate Keeper OFAB with Helmet', 266384), (289080, 289080, 1, 1, 'Replica Armor Set: Penultimate Martial Artist OFAB', 266491), (289065, 289065, 1, 1, 'Replica Armor Set: Penultimate Martial Artist OFAB with Helmet', 266386), (289090, 289090, 1, 1, 'Replica Armor Set: Penultimate Meta-Physicist OFAB', 266501), (289076, 289076, 1, 1, 'Replica Armor Set: Penultimate Meta-Physicist OFAB with Helmet', 266388), (289089, 289089, 1, 1, 'Replica Armor Set: Penultimate Nano-Technician OFAB', 266511), (289075, 289075, 1, 1, 'Replica Armor Set: Penultimate Nano-Technician OFAB with Helmet', 266390), (289092, 289092, 1, 1, 'Replica Armor Set: Penultimate Shade OFAB', 266521), (289078, 289078, 1, 1, 'Replica Armor Set: Penultimate Shade OFAB with Helmet', 266392), (289079, 289079, 1, 1, 'Replica Armor Set: Penultimate Soldier OFAB', 266531), (289064, 289064, 1, 1, 'Replica Armor Set: Penultimate Soldier OFAB with Helmet', 154554), (289071, 289071, 1, 1, 'Replica Armor Set: Penultimate Soldier OFAB with Helmet', 266394), (289085, 289085, 1, 1, 'Replica Armor Set: Penultimate Trader OFAB', 266541), (289070, 289070, 1, 1, 'Replica Armor Set: Penultimate Trader OFAB with Helmet', 266368), (289055, 289055, 1, 1, 'Replica Armor Set: Standard Adventurer OFAB', 266406), (289041, 289041, 1, 1, 'Replica Armor Set: Standard Adventurer OFAB with Helmet', 266369), (289054, 289054, 1, 1, 'Replica Armor Set: Standard Agent OFAB', 266416), (289040, 289040, 1, 1, 'Replica Armor Set: Standard Agent OFAB with Helmet', 266371), (289057, 289057, 1, 1, 'Replica Armor Set: Standard Bureaucrat OFAB', 266426), (289043, 289043, 1, 1, 'Replica Armor Set: Standard Bureaucrat OFAB with Helmet', 266373), (289059, 289059, 1, 1, 'Replica Armor Set: Standard Doctor OFAB', 266436), (289045, 289045, 1, 1, 'Replica Armor Set: Standard Doctor OFAB with Helmet', 266375), (289058, 289058, 1, 1, 'Replica Armor Set: Standard Enforcer OFAB', 266446), (289044, 289044, 1, 1, 'Replica Armor Set: Standard Enforcer OFAB with Helmet', 266377), (289052, 289052, 1, 1, 'Replica Armor Set: Standard Engineer OFAB', 266456), (289038, 289038, 1, 1, 'Replica Armor Set: Standard Engineer OFAB with Helmet', 266379), (289053, 289053, 1, 1, 'Replica Armor Set: Standard Fixer OFAB', 266466), (289039, 289039, 1, 1, 'Replica Armor Set: Standard Fixer OFAB with Helmet', 266381), (289062, 289062, 1, 1, 'Replica Armor Set: Standard Keeper OFAB', 266476), (289048, 289048, 1, 1, 'Replica Armor Set: Standard Keeper OFAB with Helmet', 266383), (289051, 289051, 1, 1, 'Replica Armor Set: Standard Martial Artist OFAB', 266486), (289037, 289037, 1, 1, 'Replica Armor Set: Standard Martial Artist OFAB with Helmet', 266385), (289061, 289061, 1, 1, 'Replica Armor Set: Standard Meta-Physicist OFAB', 266496), (289047, 289047, 1, 1, 'Replica Armor Set: Standard Meta-Physicist OFAB with Helmet', 266387), (289060, 289060, 1, 1, 'Replica Armor Set: Standard Nano-Technician OFAB', 266506), (289046, 289046, 1, 1, 'Replica Armor Set: Standard Nano-Technician OFAB with Helmet', 266389), (289063, 289063, 1, 1, 'Replica Armor Set: Standard Shade OFAB', 266516), (289049, 289049, 1, 1, 'Replica Armor Set: Standard Shade OFAB with Helmet', 266391), (289050, 289050, 1, 1, 'Replica Armor Set: Standard Soldier OFAB', 266526), (289036, 289036, 1, 1, 'Replica Armor Set: Standard Soldier OFAB with Helmet', 266393), (289056, 289056, 1, 1, 'Replica Armor Set: Standard Trader OFAB', 266536), (289042, 289042, 1, 1, 'Replica Armor Set: Standard Trader OFAB with Helmet', 266395), (289105, 289105, 1, 1, 'Replica Armor Set: Superior Sentinel''s Set', 31749), (289104, 289104, 1, 1, 'Replica Armor Set: Superior Sentinel''s Set with Helmet', 31539), (289095, 289095, 1, 1, 'Replica Armor Set: Xan Dust Brigade - Orange', 154554), (303648, 303648, 1, 1, 'Replica Hellfury Assault Cannon', 154362), (275718, 275718, 1, 1, 'Request Form - 423454', 154680), (258265, 258265, 1, 1, 'Requisition Order', 163063), (269401, 269401, 100, 100, 'Research Attunement Device - Combat Level One', 293671), (269403, 269403, 100, 100, 'Research Attunement Device - Combat Level Three', 293671), (269402, 269402, 100, 100, 'Research Attunement Device - Combat Level Two', 293671), (269412, 269412, 100, 100, 'Research Attunement Device - Defense Level One', 293672), (269411, 269411, 100, 100, 'Research Attunement Device - Defense Level Three', 293672), (269410, 269410, 100, 100, 'Research Attunement Device - Defense Level Two', 293672), (269418, 269418, 100, 100, 'Research Attunement Device - Health Level One', 293673), (269417, 269417, 100, 100, 'Research Attunement Device - Health Level Three', 293673), (269416, 269416, 100, 100, 'Research Attunement Device - Health Level Two', 293673), (269407, 269407, 100, 100, 'Research Attunement Device - Medical Level One', 293674), (269409, 269409, 100, 100, 'Research Attunement Device - Medical Level Three', 293674), (269408, 269408, 100, 100, 'Research Attunement Device - Medical Level Two', 293674), (269406, 269406, 100, 100, 'Research Attunement Device - Nano Technology Level One', 293675), (269405, 269405, 100, 100, 'Research Attunement Device - Nano Technology Level Three', 293675), (269404, 269404, 100, 100, 'Research Attunement Device - Nano Technology Level Two', 293675), (269415, 269415, 100, 100, 'Research Attunement Device - Offense Level One', 293676), (269414, 269414, 100, 100, 'Research Attunement Device - Offense Level Three', 293676), (269413, 269413, 100, 100, 'Research Attunement Device - Offense Level Two', 293676), (293693, 293693, 100, 100, 'Research Attunement Device - Tradeskill Level One', 293677), (293701, 293701, 100, 100, 'Research Attunement Device - Tradeskill Level Three', 293677), (293699, 293699, 100, 100, 'Research Attunement Device - Tradeskill Level Two', 293677), (275526, 275526, 1, 1, 'Reservation Form - 430733', 154680), (284236, 284236, 1, 1, 'Reset Flag 405 Item', 273626), (285919, 285919, 1, 1, 'Reset Flag 406 Item', 273626), (284420, 284420, 1, 1, 'Reset Flag 407 Item', 273626), (286712, 286712, 1, 1, 'Reset Flag 413 Item', 273626), (289365, 289365, 1, 1, 'Reset Flag 415 Item', 273626), (242883, 242883, 1, 1, 'Reset Jobe Apartment', 218755), (242882, 242882, 1, 1, 'Reset Jobe Luxury Apartment', 218756), (207125, 207125, 1, 1, 'Reset Point Contract', 154680), (160877, 160877, 1, 1, 'Reset Rubi-Ka Apartment Key', 149944), (235414, 235414, 130, 130, 'Residing Brain Symbiant, Artillery Unit Aban', 215189), (235640, 235640, 130, 130, 'Residing Brain Symbiant, Infantry Unit Aban', 215189), (235466, 235466, 130, 130, 'Residing Chest Symbiant, Artillery Unit Aban', 215181), (235909, 235909, 130, 130, 'Residing Chest Symbiant, Extermination Unit Aban', 215181), (235433, 235433, 130, 130, 'Residing Ear Symbiant, Artillery Unit Aban', 230977), (235654, 235654, 130, 130, 'Residing Ear Symbiant, Infantry Unit Aban', 230977), (235605, 235605, 130, 130, 'Residing Feet Symbiant, Artillery Unit Aban', 215185), (236498, 236498, 130, 130, 'Residing Feet Symbiant, Control Unit Aban', 215185), (236049, 236049, 130, 130, 'Residing Feet Symbiant, Extermination Unit Aban', 215186), (236155, 236155, 130, 130, 'Residing Left Arm Symbiant, Support Unit Aban', 215175), (235588, 235588, 130, 130, 'Residing Left Hand Symbiant, Artillery Unit Aban', 215171), (236483, 236483, 130, 130, 'Residing Left Hand Symbiant, Control Unit Aban', 215172), (235806, 235806, 130, 130, 'Residing Left Hand Symbiant, Infantry Unit Aban', 215172), (236427, 236427, 130, 130, 'Residing Left Wrist Symbiant, Control Unit Aban', 215196), (235978, 235978, 130, 130, 'Residing Left Wrist Symbiant, Extermination Unit Aban', 215198), (235756, 235756, 130, 130, 'Residing Left Wrist Symbiant, Infantry Unit Aban', 215198), (236291, 236291, 130, 130, 'Residing Ocular Symbiant, Control Unit Aban', 230979), (235452, 235452, 130, 130, 'Residing Right Arm Symbiant, Artillery Unit Aban', 215176), (236342, 236342, 130, 130, 'Residing Right Arm Symbiant, Control Unit Aban', 215180), (235671, 235671, 130, 130, 'Residing Right Arm Symbiant, Infantry Unit Aban', 215180), (236447, 236447, 130, 130, 'Residing Right Hand Symbiant, Control Unit Aban', 215173), (235996, 235996, 130, 130, 'Residing Right Hand Symbiant, Extermination Unit Aban', 215173), (236228, 236228, 130, 130, 'Residing Right Hand Symbiant, Support Unit Aban', 215174), (235501, 235501, 130, 130, 'Residing Right Wrist Symbiant, Artillery Unit Aban', 215170), (235722, 235722, 130, 130, 'Residing Right Wrist Symbiant, Infantry Unit Aban', 215197), (236464, 236464, 130, 130, 'Residing Thigh Symbiant, Control Unit Aban', 215191), (236243, 236243, 130, 130, 'Residing Thigh Symbiant, Support Unit Aban', 215190), (235738, 235738, 130, 130, 'Residing Waist Symbiant, Infantry Unit Aban', 215193), (236195, 236195, 130, 130, 'Residing Waist Symbiant, Support Unit Aban', 215193), (157243, 157243, 40, 40, 'Resistance Inhalator', 156479), (159461, 159462, 1, 199, 'Resistance Item', 84059), (159465, 159466, 1, 199, 'Resistance Item', 84059), (163434, 163435, 1, 199, 'Resistance Item', 84059), (159462, 159463, 200, 249, 'Resistance Item', 84059), (159466, 159468, 200, 400, 'Resistance Item', 84059), (163435, 163436, 200, 249, 'Resistance Item', 84059), (159463, 159464, 250, 400, 'Resistance Item', 84059), (163436, 163437, 250, 400, 'Resistance Item', 84059), (40825, 40825, 1, 1, 'Resonance Tuner', 25805), (248320, 248320, 1, 1, 'Resonating Chamber', 130812), (259776, 259776, 1, 1, 'Resource Request', 154677), (253393, 253393, 1, 1, 'Restorative Herbs', 151032), (160879, 160879, 1, 1, 'Restore Fight and Movement Ability', 149940), (160878, 160878, 1, 1, 'Restore Movement Ability', 149939), (263975, 263975, 1, 1, 'Restraining Mine Layer', 205499), (287333, 287333, 1, 1, 'Retro GSP Poster', 287306), (287473, 287473, 1, 1, 'Retro GSP Poster', 287474), (305467, 305467, 1, 1, 'Reverend Purified Robe', 159571), (204762, 204762, 1, 1, 'Reverend Robe', 159571), (161729, 161729, 1, 1, 'Reverend Robe (monster wear)', 159571), (154343, 154344, 1, 200, 'Revitalizing Serum', 20192), (214291, 214291, 300, 300, 'Revolution Rifle', 210169), (202780, 202780, 204, 204, 'Revolving Cold Laser', 13329), (202781, 202781, 205, 205, 'Revolving Cold Laser', 13329), (281507, 281507, 300, 300, 'Rhat''Ata Gun', 281599), (283380, 283380, 300, 300, 'Rhat''Ata Gun', 281599), (268518, 268519, 1, 300, 'Rhinoman Leather Boots', 13264), (268526, 268527, 1, 300, 'Rhinoman Leather Gloves', 13278), (268522, 268523, 1, 300, 'Rhinoman Leather Jacket', 13244), (268520, 268521, 1, 300, 'Rhinoman Leather Pants', 13293), (268524, 268525, 1, 300, 'Rhinoman Leather Sleeve', 13226), (284308, 284308, 200, 200, 'Rho Compiler Unit', 284332), (284305, 284305, 200, 200, 'Rho Crystal - Left Fragment', 284340), (284306, 284306, 200, 200, 'Rho Crystal - Right Fragment', 284341), (284293, 284293, 200, 200, 'Rho Signal Relay', 284323), (284307, 284307, 200, 200, 'Rho Tuning Crystal', 284339), (284309, 284309, 200, 200, 'Rho Tuning Unit', 284328), (284435, 284435, 200, 200, 'Rho Tuning Unit - Inactive', 284328), (205739, 205739, 20, 20, 'Rhysen''s Carrier Cap', 205762), (225807, 225808, 1, 500, 'Ribbon Flesh', 239103), (225809, 225810, 1, 500, 'Ribbon Flesh', 239103), (225811, 225812, 1, 500, 'Ribbon Flesh', 239103), (129021, 129022, 101, 150, 'Rich Chocolate Surprise', 85164), (200438, 200438, 100, 100, 'Rich and Rapturous', 130518), (121688, 121689, 47, 69, 'Rick Bolter 42mm', 21149), (137390, 137390, 1, 1, 'Rick Bolter 42mm Construction Manual', 37932), (121690, 121691, 70, 92, 'Rick Bolter 45mm', 21149), (137421, 137421, 1, 1, 'Rick Bolter 45mm Construction Manual', 37933), (82104, 82104, 1, 1, 'Ricky Pattern Pants', 81983), (82105, 82105, 1, 1, 'Ricky Pattern Shirt', 81993), (82106, 82106, 1, 1, 'Ricky Pattern Sleeves', 81977), (163574, 163574, 1, 1, 'Rider Signet Ring', 84060), (101455, 101456, 1, 200, 'Rifle Cluster - Bright (Right-Wrist)', 35981), (101453, 101454, 1, 200, 'Rifle Cluster - Faded (Left-Wrist)', 35980), (101457, 101458, 1, 200, 'Rifle Cluster - Shiny (Eye)', 35982), (277929, 277930, 1, 300, 'Rifle Memory Cell', 276922), (165615, 165616, 201, 300, 'Rifle Refined Cluster - Bright (Right-Wrist)', 35981), (165613, 165614, 201, 300, 'Rifle Refined Cluster - Faded (Left-Wrist)', 35980), (165617, 165618, 201, 300, 'Rifle Refined Cluster - Shiny (Eye)', 35982), (278100, 278101, 1, 199, 'Rifle Skill NCU (1/6)', 276930), (278102, 278103, 200, 299, 'Rifle Skill NCU (1/6)', 276930), (278104, 278104, 300, 300, 'Rifle Skill NCU (1/6)', 276930), (278105, 278106, 1, 199, 'Rifle Skill NCU (2/6)', 276931), (278107, 278108, 200, 299, 'Rifle Skill NCU (2/6)', 276931), (278109, 278109, 300, 300, 'Rifle Skill NCU (2/6)', 276931), (278110, 278111, 1, 199, 'Rifle Skill NCU (3/6)', 276932), (278112, 278113, 200, 299, 'Rifle Skill NCU (3/6)', 276932), (278114, 278114, 300, 300, 'Rifle Skill NCU (3/6)', 276932), (278115, 278116, 1, 199, 'Rifle Skill NCU (4/6)', 276933), (278117, 278118, 200, 299, 'Rifle Skill NCU (4/6)', 276933), (278119, 278119, 300, 300, 'Rifle Skill NCU (4/6)', 276933), (278120, 278121, 1, 199, 'Rifle Skill NCU (5/6)', 276934), (278122, 278123, 200, 299, 'Rifle Skill NCU (5/6)', 276934), (278124, 278124, 300, 300, 'Rifle Skill NCU (5/6)', 276934), (278125, 278126, 1, 199, 'Rifle Skill NCU (6/6)', 276935), (278127, 278128, 200, 299, 'Rifle Skill NCU (6/6)', 276935), (278129, 278129, 300, 300, 'Rifle Skill NCU (6/6)', 276935), (272288, 272289, 1, 300, 'Rifle Weapons Basic Upgrade Kit', 272250), (85452, 85453, 1, 250, 'Rifles Field Primer', 83285), (206054, 206054, 1, 1, 'Right Hand of Entropy', 113997), (165287, 165287, 200, 200, 'Right Sleeves of the Pest', 22956), (271149, 271150, 1, 300, 'Right Slice - 000', 21142), (271151, 271152, 1, 300, 'Right Slice - 010', 21142), (271153, 271154, 1, 300, 'Right Slice - 050', 21142), (271155, 271156, 1, 300, 'Right Slice - 070', 21142), (271157, 271158, 1, 300, 'Right Slice - 870', 21142), (210894, 210894, 1, 1, 'Righteous Fury', 82201), (210874, 210875, 1, 500, 'Righteous Fury Item', 13326), (210876, 210877, 1, 500, 'Righteous Fury Item', 13326), (210878, 210879, 1, 500, 'Righteous Fury Item', 13326), (210880, 210881, 1, 500, 'Righteous Fury Item', 13326), (214182, 214183, 100, 199, 'Righteous Gladius', 214357), (214184, 214185, 200, 299, 'Righteous Gladius', 214357), (272375, 272376, 1, 500, 'Righteous Wrath', 13326), (272377, 272378, 1, 500, 'Righteous Wrath Item', 13326), (272379, 272380, 1, 500, 'Righteous Wrath Item', 13326), (272381, 272382, 1, 500, 'Righteous Wrath Item', 13326), (303067, 303067, 1, 1, 'Riker''s Resolve', 100320), (236167, 236167, 1, 1, 'Rimy Ring', 84064), (226188, 226188, 1, 1, 'Rimy Ring for the Artillery Unit', 151920), (226189, 226189, 1, 1, 'Rimy Ring for the Control Unit', 151920), (226190, 226190, 1, 1, 'Rimy Ring for the Extermination Unit', 151920), (226191, 226191, 1, 1, 'Rimy Ring for the Infantry Unit', 151920), (226192, 226192, 1, 1, 'Rimy Ring for the Support Unit', 151920), (267584, 267585, 1, 300, 'Ring', 151931), (305491, 305491, 1, 1, 'Ring of Blighted Flesh', 151927), (151665, 151666, 1, 200, 'Ring of Body Maintenance', 84059), (246090, 246090, 250, 250, 'Ring of Burning Flesh', 245483), (238910, 238911, 100, 300, 'Ring of Computing', 151920), (165477, 165477, 200, 200, 'Ring of Crawling Ants', 151933), (258743, 258743, 1, 1, 'Ring of Damage', 84046), (267905, 267905, 250, 250, 'Ring of Divided Loyalty', 245483), (238914, 238915, 100, 300, 'Ring of Divine Teardrops', 151919), (269188, 269189, 1, 300, 'Ring of Endurance', 84064), (223769, 223769, 1, 1, 'Ring of Enhanced Psychic', 84059), (269190, 269191, 1, 300, 'Ring of Essence', 151917), (204598, 204598, 1, 1, 'Ring of Eternal Night', 151921), (206743, 206743, 100, 100, 'Ring of Flying', 151918), (267906, 267906, 250, 250, 'Ring of Gruesome Misery', 84067), (248909, 248909, 70, 70, 'Ring of Haste', 245673), (245674, 245674, 150, 150, 'Ring of Herodotus', 245673), (70256, 70255, 1, 200, 'Ring of Knowledge', 84046), (84142, 84141, 1, 200, 'Ring of Luck - Defensive', 84068), (84144, 84143, 1, 200, 'Ring of Luck - Offensive', 84067), (165484, 165484, 200, 200, 'Ring of Magpie Tail Feathers', 151928), (204569, 204569, 1, 1, 'Ring of Memory Loss', 84066), (269396, 269396, 1, 1, 'Ring of Penumbra', 269395), (260693, 260693, 250, 250, 'Ring of Plausibility', 84065), (300871, 300872, 1, 200, 'Ring of Power - Burning Force', 300867), (84158, 84157, 1, 200, 'Ring of Power - Elements', 287083), (300873, 300874, 1, 200, 'Ring of Power - Energized Physics', 287073), (84156, 84155, 1, 200, 'Ring of Power - Energy', 287072), (300869, 300870, 1, 200, 'Ring of Power - Kinetic', 300866), (84154, 84153, 1, 200, 'Ring of Power - Melee', 287074), (84150, 84149, 1, 200, 'Ring of Power - Physics', 287075), (84148, 84147, 1, 200, 'Ring of Power - Projectiles', 287076), (300875, 300876, 1, 200, 'Ring of Power - Ultimate Force', 300868), (160425, 160426, 1, 200, 'Ring of Presence', 289768), (305493, 305493, 1, 1, 'Ring of Purifying Flame', 84060), (206202, 206202, 1, 1, 'Ring of Putrescent Flesh', 151927), (267907, 267907, 250, 250, 'Ring of Sister Merciless', 295562), (267909, 267909, 250, 250, 'Ring of Sister Pestilence', 84067), (245482, 245482, 150, 150, 'Ring of Something Extra', 151921), (136616, 136617, 1, 200, 'Ring of Suffering', 84068), (267911, 267911, 250, 250, 'Ring of Summoned Terror', 84067), (204593, 204593, 1, 1, 'Ring of Tattered Flame', 84060), (136612, 136613, 1, 200, 'Ring of Thorns', 84066), (204595, 204595, 1, 1, 'Ring of Weeping Flesh', 286778), (206203, 206203, 1, 1, 'Ring of Wilting Flame', 84060), (136600, 136601, 1, 200, 'Ring of Zern', 289769), (305496, 305496, 1, 1, 'Ring of the Coiled Serpent', 84065), (165482, 165482, 200, 200, 'Ring of the Dolphin Spine', 151929), (163703, 163704, 1, 200, 'Ring of the Endless Depths', 151920), (165479, 165479, 200, 200, 'Ring of the Falcon Talon', 151923), (165475, 165475, 200, 200, 'Ring of the Monkey Tail', 151925), (202717, 202718, 1, 200, 'Ring of the Nucleus Basalis', 301035), (225989, 225990, 1, 300, 'Ring of the Second Pact', 84063), (245665, 245665, 150, 150, 'Ring that Turns Rocks', 151920), (165478, 165478, 200, 200, 'Ringlet of Black Panther Whiskers', 151922), (82217, 82217, 1, 1, 'Riposte', 82204), (101617, 101618, 1, 200, 'Riposte Cluster - Bright (Left-Wrist)', 35981), (101615, 101616, 1, 200, 'Riposte Cluster - Faded (Right-Arm)', 35980), (101619, 101620, 1, 200, 'Riposte Cluster - Shiny (Right-Wrist)', 35982), (42034, 42031, 1, 500, 'Riposte Item', 11708), (165795, 165796, 201, 300, 'Riposte Refined Cluster - Bright (Left-Wrist)', 35981), (165793, 165794, 201, 300, 'Riposte Refined Cluster - Faded (Right-Arm)', 35980), (165797, 165798, 201, 300, 'Riposte Refined Cluster - Shiny (Right-Wrist)', 35982), (269385, 269385, 1, 1, 'Ripped Note', 269436), (269386, 269386, 1, 1, 'Ripped Note', 269435), (294410, 294411, 1, 300, 'Rise of the Pendpod', 274168), (130596, 130596, 1, 1, 'Rising Sun Sake', 37944), (303234, 303234, 1, 1, 'Rites of the High Exarch', 136332), (225335, 225336, 1, 500, 'Ritual of Blood', 239055), (225337, 225338, 1, 500, 'Ritual of Blood', 239055), (225339, 225340, 1, 500, 'Ritual of Blood', 239055), (225317, 225318, 1, 500, 'Ritual of Devotion', 239049), (225319, 225320, 1, 500, 'Ritual of Devotion', 239049), (225321, 225322, 1, 500, 'Ritual of Devotion', 239049), (225329, 225330, 1, 500, 'Ritual of Spirit', 239053), (225331, 225332, 1, 500, 'Ritual of Spirit', 239053), (225333, 225334, 1, 500, 'Ritual of Spirit', 239053), (225323, 225324, 1, 500, 'Ritual of Zeal', 239051), (225325, 225326, 1, 500, 'Ritual of Zeal', 239051), (225327, 225328, 1, 500, 'Ritual of Zeal', 239051), (271625, 271626, 1, 300, 'River MV - 000', 29116), (271629, 271630, 1, 300, 'River MV - 401', 29116), (271631, 271632, 1, 300, 'River MV - C01', 29116), (162929, 162930, 66, 132, 'River Seasons XP', 29116), (162931, 162932, 133, 199, 'River Seasons XP Advanced', 29116), (162933, 162933, 200, 200, 'River Seasons XP Special', 29116), (128712, 128713, 40, 184, 'River Series 6', 19800), (215363, 215363, 1, 1, 'Road to Darkness', 239343), (215483, 215483, 1, 1, 'Road to Darkness', 82197), (239354, 239354, 1, 1, 'Road to Darkness', 239343), (259905, 259905, 1, 1, 'Roast Turkey', 37979), (224515, 224515, 150, 150, 'Robe of City Lights', 159128), (269999, 269999, 150, 150, 'Robe of City Lights', 159128), (204761, 204761, 1, 1, 'Robe of the Faithful', 159570), (41009, 41009, 1, 1, 'Robe with a Blue Leopard Print', 41179), (41231, 41231, 1, 1, 'Robe with a Leopard Print', 37096), (41008, 41008, 1, 1, 'Robe with a Rainbow Leopard Print', 41180), (41007, 41007, 1, 1, 'Robe with a White Leopard Print', 41181), (161584, 161585, 1, 49, 'Robinson Crystal I', 161135), (161586, 161587, 50, 99, 'Robinson Crystal II', 161135), (161604, 161605, 100, 149, 'Robinson Crystal III', 161135), (161606, 161607, 150, 199, 'Robinson Crystal IV', 161135), (161608, 161608, 200, 200, 'Robinson Crystal V', 161135), (208028, 208029, 140, 149, 'Robinson De Luxe', 161135), (208030, 208030, 150, 150, 'Robinson Special De Luxe', 161135), (155903, 155903, 10, 10, 'Robot Compiled Algorithm (Improve Crushing Weapons)', 83052), (155534, 155534, 30, 30, 'Robot Compiled Algorithm (Improve Slashing Weapons)', 83151), (155904, 155904, 20, 20, 'Robot Compiled Algorithm (Improve Thrusting Weapons)', 83148), (155906, 155906, 10, 10, 'Robot Instruction Disc (Improve Crushing Weapons)', 83347), (155533, 155533, 30, 30, 'Robot Instruction Disc (Improve Slashing Weapons)', 83446), (155907, 155907, 20, 20, 'Robot Instruction Disc (Improve Thrusting Weapons)', 83443), (156064, 156298, 30, 50, 'Robot Instruction Disc (Kamikaze Robot I)', 83466), (156075, 156301, 130, 150, 'Robot Instruction Disc (Kamikaze Robot II)', 83466), (42620, 42619, 1, 400, 'Robot Junk', 290417), (164528, 164529, 1, 200, 'Robotic Self-Preservation System', 11606), (290063, 290063, 1, 1, 'Robotoy Pet (Robotoy Pet Series 1)', 254462), (158790, 158790, 1, 1, 'Robust Backpack', 99666), (263794, 263794, 1, 1, 'Rock Sampler', 245779), (204758, 204758, 1, 1, 'Rockcrusher Gauntlets', 13286), (266989, 266990, 1, 219, 'Rocket Launcher', 264797), (302624, 302624, 1, 1, 'Rocket Launcher', 264797), (304910, 304910, 1, 1, 'Rocket Launcher', 264797), (206017, 206017, 1, 1, 'Rod of Dismissal', 100306), (211218, 211219, 1, 299, 'Rod of Repayment', 13321), (258814, 258814, 1, 1, 'Rollerrat Balloon', 259217), (289805, 289805, 1, 1, 'Rollerrat Balloon', 259217), (206896, 206897, 100, 200, 'Rollerrat Carbonum Helmet', 205769), (155638, 155639, 1, 200, 'Rollerrat Glands', 144709), (206877, 206877, 20, 20, 'Rollerrat Helmet - 2 Layers', 205768), (206878, 206878, 30, 30, 'Rollerrat Helmet - 3 Layers', 205768), (206879, 206879, 40, 40, 'Rollerrat Helmet - 4 Layers', 205768), (206880, 206880, 50, 50, 'Rollerrat Helmet - 5 Layers', 205768), (206881, 206881, 60, 60, 'Rollerrat Helmet - 6 Layers', 205768), (206882, 206882, 70, 70, 'Rollerrat Helmet - 7 Layers', 205768), (206883, 206883, 80, 80, 'Rollerrat Helmet - 8 Layers', 205768), (206884, 206884, 90, 90, 'Rollerrat Helmet - 9 Layers', 205768), (248333, 248333, 1, 1, 'Rollerrat Intestines', 144703), (247758, 247758, 100, 100, 'Rollerrat Queen Blood', 100331), (247759, 247759, 100, 100, 'Rollerrat Queen Erythrocyte', 100330), (258260, 258260, 1, 1, 'Rollerrat Report', 163065), (284161, 284161, 1, 1, 'Rollerrat death', 273626), (289830, 289830, 1, 1, 'Rollerrat in a Cage', 289940), (297047, 297047, 1, 1, 'Romantic Flowers', 207020), (297049, 297049, 1, 1, 'Romantic Flowers', 207020), (302333, 302333, 1, 1, 'Rooibos''s T-shirt', 302308), (302334, 302334, 1, 1, 'Rooibos''s T-shirt Spawner', 302308), (159075, 159075, 1, 1, 'Rookie Sailor - Sugarfree Rum', 37934), (165217, 165217, 1, 1, 'Rookie dog-tag', 149944), (217074, 217074, 1, 1, 'Room 3 Wearable', 84059), (294839, 294839, 1, 1, 'Rose Blossom Nanospray', 294825), (253803, 253803, 1, 1, 'Rose Boots', 253705), (249686, 249686, 1, 1, 'Rose Djellaba of the Snugglebunnies of Doom', 255389), (253800, 253800, 1, 1, 'Rose Pants', 253725), (152355, 152356, 171, 199, 'Rose Parry Stick', 136738), (253801, 253801, 1, 1, 'Rose Shirt', 253666), (253802, 253802, 1, 1, 'Rose Sleeves', 253688), (211241, 211241, 300, 300, 'Rotating Club of Muir-Mare', 85172), (123704, 123705, 1, 29, 'Rotting OT Biomag', 38055), (164086, 164087, 1, 49, 'Rough Black Staff', 203230), (164092, 164093, 150, 199, 'Rough Black Staff of the Glove', 203230), (164094, 164094, 200, 200, 'Rough Black Staff of the Locked Fist', 203230), (164090, 164091, 100, 149, 'Rough Black Staff of the Palm', 203230), (164088, 164089, 50, 99, 'Rough Black Staff of the Thumb', 203230), (131605, 131606, 1, 99, 'Rough Club', 85172), (152160, 152161, 41, 50, 'Rough Light Tube-Bow', 85167), (258768, 258768, 1, 1, 'Routine Data', 156342), (41045, 41045, 1, 1, 'Rubber Catsuit Boots', 37127), (41033, 41033, 1, 1, 'Rubber Catsuit Gloves', 37106), (41020, 41020, 1, 1, 'Rubber Catsuit Pants', 37091), (41086, 41086, 1, 1, 'Rubber Catsuit Sleeves', 37136), (41067, 41067, 1, 1, 'Rubber Catsuit Top', 37153), (87482, 87482, 1, 1, 'Rubber Swimmingtrunks', 96137), (27361, 27361, 1, 1, 'Rubbershirt Sleeves with a Light Blue Stripe', 22950), (27358, 27358, 1, 1, 'Rubbershirt Sleeves with an Orange Stripe', 22946), (234898, 234898, 1, 1, 'Rubbery Resin', 163352), (130638, 130638, 1, 1, 'Rubi-Ka Cod Plate', 130570), (303475, 303475, 1, 1, 'Rubi-Ka Colonist Bundle', 99664), (268748, 268748, 1, 1, 'Rubi-Ka Recall Beacon', 296467), (25822, 25831, 1, 150, 'Rubi-Ka Ruby', 286941), (262413, 262413, 1, 1, 'Rubi-Ka Tours Standard Expedition Disclaimer', 154680), (100353, 100353, 1, 1, 'Rubi-Ka World Collectables', 155940), (130608, 130608, 1, 1, 'Rubirango Can', 37954), (136626, 136627, 1, 200, 'Ruby', 286943), (205778, 205778, 1, 1, 'Ruby Arcanum Specs', 205747), (157420, 157420, 1, 1, 'Ruby Eigth Lion Advantage', 81778), (232816, 232817, 1, 149, 'Ruby Pearl', 286945), (232817, 232819, 150, 199, 'Ruby Pearl', 286945), (232819, 232820, 200, 249, 'Ruby Pearl', 286945), (232820, 232821, 250, 400, 'Ruby Pearl', 286945), (129032, 129033, 61, 80, 'Rugged Sledgehammer', 33167), (231150, 231150, 1, 1, 'Ruined Blueprint attuned to Lady G.', 227250), (278942, 278942, 1, 1, 'Ruins Exit Portal Item', 84059), (49577, 49577, 1, 1, 'Run', 49556), (130005, 130006, 1, 200, 'Run Speed Cluster - Bright (Left-Wrist)', 35981), (130003, 130004, 1, 200, 'Run Speed Cluster - Faded (Leg)', 35980), (130007, 130008, 1, 200, 'Run Speed Cluster - Shiny (Right-Wrist)', 35982), (165939, 165940, 201, 300, 'Run Speed Refined Cluster - Bright (Left-Wrist)', 35981), (165937, 165938, 201, 300, 'Run Speed Refined Cluster - Faded (Leg)', 35980), (165941, 165942, 201, 300, 'Run Speed Refined Cluster - Shiny (Right-Wrist)', 35982), (235415, 235415, 140, 140, 'Running Brain Symbiant, Artillery Unit Aban', 215189), (236307, 236307, 140, 140, 'Running Brain Symbiant, Control Unit Aban', 215189), (235641, 235641, 140, 140, 'Running Brain Symbiant, Infantry Unit Aban', 215189), (235467, 235467, 140, 140, 'Running Chest Symbiant, Artillery Unit Aban', 215181), (236358, 236358, 140, 140, 'Running Chest Symbiant, Control Unit Aban', 215183), (235910, 235910, 140, 140, 'Running Chest Symbiant, Extermination Unit Aban', 215181), (235688, 235688, 140, 140, 'Running Chest Symbiant, Infantry Unit Aban', 215181), (236134, 236134, 140, 140, 'Running Chest Symbiant, Support Unit Aban', 215181), (235434, 235434, 140, 140, 'Running Ear Symbiant, Artillery Unit Aban', 230977), (236322, 236322, 140, 140, 'Running Ear Symbiant, Control Unit Aban', 230977), (235655, 235655, 140, 140, 'Running Ear Symbiant, Infantry Unit Aban', 230977), (235708, 235708, 140, 140, 'Running Left Arm Symbiant, Infantry Unit Aban', 215179), (235807, 235807, 140, 140, 'Running Left Hand Symbiant, Infantry Unit Aban', 215172), (236262, 236262, 140, 140, 'Running Left Hand Symbiant, Support Unit Aban', 215171), (236428, 236428, 140, 140, 'Running Left Wrist Symbiant, Control Unit Aban', 215196), (236212, 236212, 140, 140, 'Running Left Wrist Symbiant, Support Unit Aban', 215198), (219133, 219133, 140, 140, 'Running Ocular Symbiant, Artillery Unit Aban', 230979), (236292, 236292, 140, 140, 'Running Ocular Symbiant, Control Unit Aban', 230979), (235623, 235623, 140, 140, 'Running Ocular Symbiant, Infantry Unit Aban', 230980), (235997, 235997, 140, 140, 'Running Right Hand Symbiant, Extermination Unit Aban', 215173), (235773, 235773, 140, 140, 'Running Right Hand Symbiant, Infantry Unit Aban', 215174), (236229, 236229, 140, 140, 'Running Right Hand Symbiant, Support Unit Aban', 215174), (235502, 235502, 140, 140, 'Running Right Wrist Symbiant, Artillery Unit Aban', 215170), (236176, 236176, 140, 140, 'Running Right Wrist Symbiant, Support Unit Aban', 215197), (236465, 236465, 140, 140, 'Running Thigh Symbiant, Control Unit Aban', 215191), (236015, 236015, 140, 140, 'Running Thigh Symbiant, Extermination Unit Aban', 215192), (236412, 236412, 140, 140, 'Running Waist Symbiant, Control Unit Aban', 215193), (137299, 137300, 1, 200, 'Runtime Critical Area Analyzer', 130696), (156772, 156772, 100, 100, 'Rust-pitted Ring', 151931), (124092, 124093, 1, 37, 'Rusted AcuTek Cruncher', 13321), (303596, 303597, 1, 200, 'Rusted Carbonum Breastplate', 303666), (303594, 303595, 1, 200, 'Rusted Carbonum Plate Arms', 303665), (303600, 303601, 1, 200, 'Rusted Carbonum Plate Boots', 303662), (303592, 303593, 1, 200, 'Rusted Carbonum Plate Gloves', 303664), (303602, 303603, 1, 200, 'Rusted Carbonum Plate Helmet', 303668), (303598, 303599, 1, 200, 'Rusted Carbonum Plate Legs', 303663), (206254, 206254, 1, 1, 'Rusted Iron-bound Funeral Urn', 154195), (207250, 207251, 200, 224, 'Rusted Juggernaut Rear Mitrailleuse', 13314), (82100, 82100, 1, 1, 'Rustic Boots', 81987), (82101, 82101, 1, 1, 'Rustic Pants', 81982), (82102, 82102, 1, 1, 'Rustic Shirt', 81992), (82092, 82092, 1, 1, 'Rustic Sleeves', 81990), (163582, 163583, 1, 199, 'Rusty Ancient Adventurer Sword', 113987), (163585, 163586, 1, 199, 'Rusty Ancient Sword', 113987), (128627, 128628, 1, 50, 'Rusty Ares Arms AR-90 Jet Rifle', 21149), (152315, 152316, 51, 70, 'Rusty Assault Partizan', 21140), (124073, 124074, 1, 25, 'Rusty BBI PS500', 33155), (121686, 121687, 24, 46, 'Rusty Bolter 42mm', 21149), (137365, 137365, 1, 1, 'Rusty Bolter 42mm Construction Manual', 37932), (124453, 124454, 1, 23, 'Rusty EN-RAL', 13320), (123928, 123929, 1, 49, 'Rusty FN 7-7 Pistol', 13317), (128830, 128831, 1, 10, 'Rusty Freedom Arms Defender', 33153), (123844, 123845, 1, 19, 'Rusty Freedom Arms Super 90', 33157), (124465, 124466, 1, 20, 'Rusty G.C. AKMR 1K20', 21148), (121591, 121592, 1, 23, 'Rusty Hand Blade', 13343), (130144, 130145, 1, 20, 'Rusty Hayfork', 85168), (124121, 124122, 1, 20, 'Rusty ICC Arms SB21 Assault Shotgun', 113990), (124313, 124314, 1, 32, 'Rusty Ithaca Ki-8', 113990), (124276, 124277, 1, 21, 'Rusty Krutt Assault 219', 113991), (124004, 124005, 1, 54, 'Rusty M150 Booster Edition', 21146), (123774, 123775, 1, 20, 'Rusty MTI 95 Match Pistol', 13316), (161649, 161650, 41, 60, 'Rusty MTI Defender', 161057), (124407, 124408, 1, 10, 'Rusty MTI G-70', 21146), (124386, 124387, 1, 29, 'Rusty MTI G02K', 113990), (123909, 123910, 1, 20, 'Rusty MTI SOCOM Mk IV', 113992), (123808, 123809, 1, 14, 'Rusty MTI SW500', 113988), (130165, 130166, 35, 74, 'Rusty MTI Sword', 113987), (123984, 123985, 1, 27, 'Rusty MTI-OT PF55 Flechette System', 33155), (123979, 123980, 1, 20, 'Rusty Nomad 21.7 BMG Ranger', 21146), (137591, 137591, 1, 1, 'Rusty Nomad 21.7 BMG Ranger Construction Manual', 37931), (123904, 123905, 1, 32, 'Rusty OT 0120 Machine Pistol', 13311), (160175, 160176, 21, 40, 'Rusty OT 12', 21149), (124364, 124365, 1, 39, 'Rusty OT Anti-Cyborg Rifle', 21146), (123893, 123894, 1, 23, 'Rusty OT Backup', 113988), (123968, 123970, 1, 29, 'Rusty OT Boomer M30', 21147), (124503, 124504, 1, 5, 'Rusty OT Eskorpio 21', 21147), (123742, 123743, 1, 11, 'Rusty OT M-10 Flechette Pistol', 113994), (124241, 124242, 1, 29, 'Rusty OT M50 Shotgun', 113990), (124285, 124286, 1, 27, 'Rusty OT-Windchaser SM30 Shotgun', 13340), (163579, 163580, 1, 199, 'Rusty Old Buccaneer Pistol', 113988), (123991, 123992, 1, 9, 'Rusty Old English Trading Co. Type 77a', 21146), (163576, 163577, 1, 199, 'Rusty Pistol of the Buccaneer', 113988), (123761, 123762, 1, 11, 'Rusty Polizziotto M202F', 113992), (161657, 161658, 121, 140, 'Rusty Quality MTI Defender', 161057), (128710, 128711, 1, 39, 'Rusty River Series 6', 19800), (124510, 124511, 1, 20, 'Rusty Sentinels Personal Edition', 33153), (124016, 124017, 1, 7, 'Rusty Sig SG 992 SWAT Edition 2', 13321), (160154, 160155, 21, 40, 'Rusty Sleek Cannon', 13342), (121629, 121630, 1, 23, 'Rusty Spiked Axe', 21135), (121574, 121575, 24, 46, 'Rusty Tripler', 13344), (165070, 165070, 1, 1, 'Rusty Tripler Construction Manual', 37932), (123837, 123838, 1, 9, 'Rusty Zastaba Cz-200', 21147), (267566, 267567, 1, 300, 'Rusty''s Ring of Bolts', 287082), (199536, 199536, 255, 255, 'Rutherfordium Periodic Tech Armor Boots', 22886), (199557, 199557, 255, 255, 'Rutherfordium Periodic Tech Armor Gloves', 22933), (199578, 199578, 255, 255, 'Rutherfordium Periodic Tech Armor Helmet', 31731), (199600, 199600, 255, 255, 'Rutherfordium Periodic Tech Armor Pants', 22912), (199621, 199621, 255, 255, 'Rutherfordium Periodic Tech Armor Sleeves', 22911), (199642, 199642, 255, 255, 'Rutherfordium Periodic Tech Body Armor', 22990), (199663, 199663, 255, 255, 'Rutherfordium Periodic Tech Female Body Armor', 22909), (275496, 275496, 1, 1, 'Ryker''s Security Chip', 275808), (155611, 155611, 1, 1, 'S h o p - o f - F o r t u n e !', 154675), (124234, 124235, 35, 65, 'S.A. Confident Home Defender', 113989), (124236, 124237, 66, 98, 'S.A. Safe Home Defender', 113989), (124238, 124239, 99, 199, 'S.A. Secure Home Defender', 113989), (124240, 124240, 200, 200, 'S.A. Tranquil Home Defender', 113989), (262550, 262551, 1, 250, 'SAM Battery', 262586), (262554, 262555, 1, 250, 'SAM Battery', 262586), (258770, 258770, 1, 1, 'SD Power Core', 100305), (160242, 160243, 1, 199, 'SOL Fire Executioner Type C', 114003), (160239, 160240, 1, 199, 'SOL Fire Executioner Type E', 114003), (160236, 160237, 1, 199, 'SOL Fire Executioner Type F', 114003), (160233, 160234, 1, 199, 'SOL Fire Executioner Type T', 114003), (201275, 201275, 200, 200, 'SOL K-91 Gold Monster', 113993), (201269, 201270, 1, 64, 'SOL K-91 Mini Monster', 113993), (201271, 201272, 65, 124, 'SOL K-91 Monster', 113993), (201273, 201274, 125, 199, 'SOL K-91 Yellow Monster', 113993), (201262, 201263, 1, 64, 'SOL K-94 Baby Monster', 113994), (201268, 201268, 200, 200, 'SOL K-94 Crimson Monster', 113994), (201264, 201265, 65, 124, 'SOL K-94 Monster', 113994), (201266, 201267, 125, 199, 'SOL K-94 Pink Monster', 113994), (208031, 208032, 40, 49, 'SOL SG-70 Robust', 13341), (208033, 208033, 50, 50, 'SOL SG-71 Robust', 13341), (208062, 208063, 40, 49, 'SOL XI-P Medical Laser', 13331), (208064, 208064, 50, 50, 'SOL XII-P Medical Laser', 13331), (291909, 291909, 1, 1, 'SSC "Bastion" Left Shoulder Armor - Inactive B&B', 291366), (291915, 291915, 1, 1, 'SSC "Bastion" Left Shoulder Armor - Inactive B&B', 291366), (291916, 291916, 1, 1, 'SSC "Bastion" Left Shoulder Armor - Inactive B&R', 291373), (291908, 291908, 1, 1, 'SSC "Bastion" Left Shoulder Armor - Inactive B&W', 291367), (291914, 291914, 1, 1, 'SSC "Bastion" Left Shoulder Armor - Inactive B&W', 291367), (291907, 291907, 1, 1, 'SSC "Bastion" Left Shoulder Armor - Inactive B&Y', 291368), (291913, 291913, 1, 1, 'SSC "Bastion" Left Shoulder Armor - Inactive B&Y', 291368), (291906, 291906, 1, 1, 'SSC "Bastion" Left Shoulder Armor - Inactive G&R', 291369), (291912, 291912, 1, 1, 'SSC "Bastion" Left Shoulder Armor - Inactive G&R', 291369), (291904, 291904, 1, 1, 'SSC "Bastion" Left Shoulder Armor - Inactive P&P', 291372), (291910, 291910, 1, 1, 'SSC "Bastion" Left Shoulder Armor - Inactive P&P', 291372), (291905, 291905, 1, 1, 'SSC "Bastion" Left Shoulder Armor - Inactive W&P', 291370), (291911, 291911, 1, 1, 'SSC "Bastion" Left Shoulder Armor - Inactive W&P', 291370), (292194, 292194, 250, 250, 'SSC "Bastion" Back Armor - Collatz', 291379), (293634, 293634, 1, 1, 'SSC "Bastion" Back Armor - Fatou', 291379), (293638, 293638, 1, 1, 'SSC "Bastion" Back Armor - Inactive', 291379), (293753, 293753, 1, 1, 'SSC "Bastion" Back Armor - Inactive Supreme B&B', 291374), (293752, 293752, 1, 1, 'SSC "Bastion" Back Armor - Inactive Supreme B&R', 291365), (293747, 293747, 1, 1, 'SSC "Bastion" Back Armor - Inactive Supreme B&W', 291375), (293748, 293748, 1, 1, 'SSC "Bastion" Back Armor - Inactive Supreme B&Y', 291376), (293749, 293749, 1, 1, 'SSC "Bastion" Back Armor - Inactive Supreme G&R', 291377), (293751, 293751, 1, 1, 'SSC "Bastion" Back Armor - Inactive Supreme P&P', 291380), (293750, 293750, 1, 1, 'SSC "Bastion" Back Armor - Inactive Supreme W&P', 291378), (293633, 293633, 225, 225, 'SSC "Bastion" Back Armor - Mandelbrot', 291379), (293726, 293726, 1, 1, 'SSC "Bastion" Back Armor - Supreme Collatz B&B', 291374), (293727, 293727, 1, 1, 'SSC "Bastion" Back Armor - Supreme Collatz B&R', 291365), (293732, 293732, 1, 1, 'SSC "Bastion" Back Armor - Supreme Collatz B&W', 291375), (293731, 293731, 1, 1, 'SSC "Bastion" Back Armor - Supreme Collatz B&Y', 291376), (293636, 293636, 1, 1, 'SSC "Bastion" Back Armor - Supreme Collatz Base', 291379), (293730, 293730, 1, 1, 'SSC "Bastion" Back Armor - Supreme Collatz G&R', 291377), (293728, 293728, 1, 1, 'SSC "Bastion" Back Armor - Supreme Collatz P&P', 291380), (293729, 293729, 1, 1, 'SSC "Bastion" Back Armor - Supreme Collatz W&P', 291378), (293740, 293740, 1, 1, 'SSC "Bastion" Back Armor - Supreme Fatou B&B', 291374), (293741, 293741, 1, 1, 'SSC "Bastion" Back Armor - Supreme Fatou B&R', 291365), (293746, 293746, 1, 1, 'SSC "Bastion" Back Armor - Supreme Fatou B&W', 291375), (293745, 293745, 1, 1, 'SSC "Bastion" Back Armor - Supreme Fatou B&Y', 291376), (293637, 293637, 200, 200, 'SSC "Bastion" Back Armor - Supreme Fatou Base', 291379), (293744, 293744, 1, 1, 'SSC "Bastion" Back Armor - Supreme Fatou G&R', 291377), (293742, 293742, 1, 1, 'SSC "Bastion" Back Armor - Supreme Fatou P&P', 291380), (293743, 293743, 1, 1, 'SSC "Bastion" Back Armor - Supreme Fatou W&P', 291378), (293639, 293639, 100, 100, 'SSC "Bastion" Back Armor - Supreme Inactive Base', 291379), (293734, 293734, 1, 1, 'SSC "Bastion" Back Armor - Supreme Mandelbrot B&B', 291374), (293735, 293735, 1, 1, 'SSC "Bastion" Back Armor - Supreme Mandelbrot B&R', 291365), (293739, 293739, 1, 1, 'SSC "Bastion" Back Armor - Supreme Mandelbrot B&W', 291375), (293738, 293738, 1, 1, 'SSC "Bastion" Back Armor - Supreme Mandelbrot B&Y', 291376), (293635, 293635, 225, 225, 'SSC "Bastion" Back Armor - Supreme Mandelbrot Base', 291379), (293737, 293737, 1, 1, 'SSC "Bastion" Back Armor - Supreme Mandelbrot G&R', 291377), (293733, 293733, 1, 1, 'SSC "Bastion" Back Armor - Supreme Mandelbrot P&P', 291380), (293736, 293736, 1, 1, 'SSC "Bastion" Back Armor - Supreme Mandelbrot W&P', 291378), (291932, 291932, 1, 1, 'SSC "Bastion" Left Shoulder Armor - Collatz', 293723), (293641, 293641, 1, 1, 'SSC "Bastion" Left Shoulder Armor - Fatou', 293723), (293643, 293643, 1, 1, 'SSC "Bastion" Left Shoulder Armor - Inactive', 293723), (291903, 291903, 1, 1, 'SSC "Bastion" Left Shoulder Armor - Inactive B&R', 291373), (293642, 293642, 1, 1, 'SSC "Bastion" Left Shoulder Armor - Mandelbrot', 293723), (293787, 293787, 1, 1, 'SSC "Bastion" Left Shoulder Armor - Supreme Collatz B&B', 293720), (293795, 293795, 1, 1, 'SSC "Bastion" Left Shoulder Armor - Supreme Collatz B&R', 293721), (293786, 293786, 1, 1, 'SSC "Bastion" Left Shoulder Armor - Supreme Collatz B&W', 293719), (293785, 293785, 1, 1, 'SSC "Bastion" Left Shoulder Armor - Supreme Collatz B&Y', 293718), (293644, 293644, 1, 1, 'SSC "Bastion" Left Shoulder Armor - Supreme Collatz Base', 293723), (293784, 293784, 1, 1, 'SSC "Bastion" Left Shoulder Armor - Supreme Collatz G&R', 293717), (293782, 293782, 1, 1, 'SSC "Bastion" Left Shoulder Armor - Supreme Collatz P&P', 293722), (293783, 293783, 1, 1, 'SSC "Bastion" Left Shoulder Armor - Supreme Collatz W&P', 293724), (293762, 293762, 1, 1, 'SSC "Bastion" Left Shoulder Armor - Supreme Fatou B&B', 293720), (293754, 293754, 1, 1, 'SSC "Bastion" Left Shoulder Armor - Supreme Fatou B&R', 293721), (293763, 293763, 1, 1, 'SSC "Bastion" Left Shoulder Armor - Supreme Fatou B&W', 293719), (293764, 293764, 1, 1, 'SSC "Bastion" Left Shoulder Armor - Supreme Fatou B&Y', 293718), (293645, 293645, 1, 1, 'SSC "Bastion" Left Shoulder Armor - Supreme Fatou Base', 293723), (293765, 293765, 1, 1, 'SSC "Bastion" Left Shoulder Armor - Supreme Fatou G&R', 293717), (293767, 293767, 1, 1, 'SSC "Bastion" Left Shoulder Armor - Supreme Fatou P&P', 293722), (293766, 293766, 1, 1, 'SSC "Bastion" Left Shoulder Armor - Supreme Fatou W&P', 293724), (291925, 291925, 1, 1, 'SSC "Bastion" Left Shoulder Armor - Supreme Inactive B&B', 293720), (291917, 291917, 1, 1, 'SSC "Bastion" Left Shoulder Armor - Supreme Inactive B&R', 293721), (291926, 291926, 1, 1, 'SSC "Bastion" Left Shoulder Armor - Supreme Inactive B&W', 293719), (291927, 291927, 1, 1, 'SSC "Bastion" Left Shoulder Armor - Supreme Inactive B&Y', 293718), (293647, 293647, 1, 1, 'SSC "Bastion" Left Shoulder Armor - Supreme Inactive Base', 293723), (291928, 291928, 1, 1, 'SSC "Bastion" Left Shoulder Armor - Supreme Inactive G&R', 293717), (291930, 291930, 1, 1, 'SSC "Bastion" Left Shoulder Armor - Supreme Inactive P&P', 293722), (291929, 291929, 1, 1, 'SSC "Bastion" Left Shoulder Armor - Supreme Inactive W&P', 293724), (293773, 293773, 1, 1, 'SSC "Bastion" Left Shoulder Armor - Supreme Mandelbrot B&B', 293720), (293781, 293781, 1, 1, 'SSC "Bastion" Left Shoulder Armor - Supreme Mandelbrot B&R', 293721), (293772, 293772, 1, 1, 'SSC "Bastion" Left Shoulder Armor - Supreme Mandelbrot B&W', 293719), (293771, 293771, 1, 1, 'SSC "Bastion" Left Shoulder Armor - Supreme Mandelbrot B&Y', 293718), (293646, 293646, 1, 1, 'SSC "Bastion" Left Shoulder Armor - Supreme Mandelbrot Base', 293723), (293770, 293770, 1, 1, 'SSC "Bastion" Left Shoulder Armor - Supreme Mandelbrot G&R', 293717), (293768, 293768, 1, 1, 'SSC "Bastion" Left Shoulder Armor - Supreme Mandelbrot P&P', 293722), (293769, 293769, 1, 1, 'SSC "Bastion" Left Shoulder Armor - Supreme Mandelbrot W&P', 293724), (293640, 293640, 1, 1, 'SSC "Bastion" NanoPaint Chip', 43135), (291931, 291931, 1, 1, 'SSC "Bastion" Right Shoulder Armor - Collatz', 291371), (293651, 293651, 1, 1, 'SSC "Bastion" Right Shoulder Armor - Fatou', 291371), (293653, 293653, 1, 1, 'SSC "Bastion" Right Shoulder Armor - Inactive', 291371), (293649, 293649, 1, 1, 'SSC "Bastion" Right Shoulder Armor - Mandelbrot', 291371), (293793, 293793, 1, 1, 'SSC "Bastion" Right Shoulder Armor - Supreme Collatz B&B', 291366), (293794, 293794, 1, 1, 'SSC "Bastion" Right Shoulder Armor - Supreme Collatz B&R', 291373), (293792, 293792, 1, 1, 'SSC "Bastion" Right Shoulder Armor - Supreme Collatz B&W', 291367), (293791, 293791, 1, 1, 'SSC "Bastion" Right Shoulder Armor - Supreme Collatz B&Y', 291368), (293648, 293648, 1, 1, 'SSC "Bastion" Right Shoulder Armor - Supreme Collatz Base', 291371), (293790, 293790, 1, 1, 'SSC "Bastion" Right Shoulder Armor - Supreme Collatz G&R', 291369), (293788, 293788, 1, 1, 'SSC "Bastion" Right Shoulder Armor - Supreme Collatz P&P', 291372), (293789, 293789, 1, 1, 'SSC "Bastion" Right Shoulder Armor - Supreme Collatz W&P', 291370), (293756, 293756, 1, 1, 'SSC "Bastion" Right Shoulder Armor - Supreme Fatou B&B', 291366), (293755, 293755, 1, 1, 'SSC "Bastion" Right Shoulder Armor - Supreme Fatou B&R', 291373), (293757, 293757, 1, 1, 'SSC "Bastion" Right Shoulder Armor - Supreme Fatou B&W', 291367), (293758, 293758, 1, 1, 'SSC "Bastion" Right Shoulder Armor - Supreme Fatou B&Y', 291368), (293652, 293652, 1, 1, 'SSC "Bastion" Right Shoulder Armor - Supreme Fatou Base', 291371), (293759, 293759, 1, 1, 'SSC "Bastion" Right Shoulder Armor - Supreme Fatou G&R', 291369), (293761, 293761, 1, 1, 'SSC "Bastion" Right Shoulder Armor - Supreme Fatou P&P', 291372), (293760, 293760, 1, 1, 'SSC "Bastion" Right Shoulder Armor - Supreme Fatou W&P', 291370), (291919, 291919, 1, 1, 'SSC "Bastion" Right Shoulder Armor - Supreme Inactive B&B', 291366), (291918, 291918, 1, 1, 'SSC "Bastion" Right Shoulder Armor - Supreme Inactive B&R', 291373), (291920, 291920, 1, 1, 'SSC "Bastion" Right Shoulder Armor - Supreme Inactive B&W', 291367), (291921, 291921, 1, 1, 'SSC "Bastion" Right Shoulder Armor - Supreme Inactive B&Y', 291368), (293654, 293654, 1, 1, 'SSC "Bastion" Right Shoulder Armor - Supreme Inactive Base', 291371), (291922, 291922, 1, 1, 'SSC "Bastion" Right Shoulder Armor - Supreme Inactive G&R', 291369), (291924, 291924, 1, 1, 'SSC "Bastion" Right Shoulder Armor - Supreme Inactive P&P', 291372), (291923, 291923, 1, 1, 'SSC "Bastion" Right Shoulder Armor - Supreme Inactive W&P', 291370), (293779, 293779, 1, 1, 'SSC "Bastion" Right Shoulder Armor - Supreme Mandelbrot B&B', 291366), (293780, 293780, 1, 1, 'SSC "Bastion" Right Shoulder Armor - Supreme Mandelbrot B&R', 291373), (293778, 293778, 1, 1, 'SSC "Bastion" Right Shoulder Armor - Supreme Mandelbrot B&W', 291367), (293777, 293777, 1, 1, 'SSC "Bastion" Right Shoulder Armor - Supreme Mandelbrot B&Y', 291368), (293650, 293650, 1, 1, 'SSC "Bastion" Right Shoulder Armor - Supreme Mandelbrot Base', 291371), (293776, 293776, 1, 1, 'SSC "Bastion" Right Shoulder Armor - Supreme Mandelbrot G&R', 291369), (293774, 293774, 1, 1, 'SSC "Bastion" Right Shoulder Armor - Supreme Mandelbrot P&P', 291372), (293775, 293775, 1, 1, 'SSC "Bastion" Right Shoulder Armor - Supreme Mandelbrot W&P', 291370), (160204, 160205, 99, 199, 'SSC Byom Blade', 114011), (154942, 154943, 1, 200, 'SSC Reversive Energy-Packs', 12667), (142810, 142811, 60, 131, 'SSC Rustling Wakisashi', 113983), (238918, 238919, 100, 300, 'Sable Sleeves of Fantasies', 13238), (212997, 212997, 1, 1, 'Sabotage Quark Field', 239171), (201237, 201238, 1, 199, 'Sabotaged Omni-Med Field Surgeons Cloak', 120623), (201238, 201239, 200, 300, 'Sabotaged Omni-Med Field Surgeons Cloak', 120623), (226983, 226984, 1, 300, 'Saboteur''s Armor Boots', 213554), (226975, 226976, 1, 300, 'Saboteur''s Armor Gloves', 21871), (226977, 226978, 1, 300, 'Saboteur''s Armor Sleeve', 13225), (226981, 226982, 1, 300, 'Saboteur''s Armor Trousers', 213454), (226979, 226980, 1, 300, 'Saboteur''s Body Armor', 37545), (207085, 207085, 1, 1, 'Saboteur''s Monocle', 205748), (295328, 295328, 1, 1, 'Sabrekitty Pet (Test Reward Series 1)', 220432), (81968, 81968, 1, 1, 'Sabretooth Trenchcoat', 81973), (82917, 82917, 1, 1, 'Sabretooth Trenchcoat Hood', 82922), (162566, 162566, 1, 1, 'Sacchariferous Guide to Over-Tuned Tank Armors', 154679), (100346, 100346, 1, 1, 'Sacks of Turbo-Proteins etc', 99666), (301637, 301637, 1, 1, 'Sacred Blade', 246020), (234921, 234921, 1, 1, 'Sacred Blueprint of Cama', 234926), (234922, 234922, 1, 1, 'Sacred Blueprint of Vanya', 234926), (305523, 305523, 1, 1, 'Sacred Chalice', 245993), (305514, 305514, 1, 1, 'Sacred Text of the Immortal One', 136329), (293312, 293313, 1, 1, 'Sacred Treasure of the Enigma', 37545), (293313, 293460, 2, 11, 'Sacred Treasure of the Enigma', 37545), (293461, 293475, 12, 21, 'Sacred Treasure of the Enigma', 37545), (293476, 293488, 22, 31, 'Sacred Treasure of the Enigma', 37545), (293489, 293498, 32, 41, 'Sacred Treasure of the Enigma', 37545), (293499, 293499, 42, 42, 'Sacred Treasure of the Enigma', 37545), (248242, 248242, 1, 1, 'Sacrifice', 255702), (281455, 281455, 1, 1, 'Sacrificed Corpses', 227904), (246219, 246219, 100, 100, 'Sacrificial Ensigns of Cerubin', 205525), (212600, 212601, 100, 199, 'Sacrosanct Aban Mallet', 210191), (212602, 212603, 200, 299, 'Sacrosanct Aban Mallet', 210191), (212604, 212604, 300, 300, 'Sacrosanct Aban Mallet', 210191), (212429, 212430, 100, 199, 'Sacrosanct Aban Short Sword', 214357), (212431, 212432, 200, 299, 'Sacrosanct Aban Short Sword', 214357), (212433, 212433, 300, 300, 'Sacrosanct Aban Short Sword', 214357), (212564, 212565, 100, 199, 'Sacrosanct Aban-Shere Mallet', 210191), (212566, 212567, 200, 299, 'Sacrosanct Aban-Shere Mallet', 210191), (212568, 212568, 300, 300, 'Sacrosanct Aban-Shere Mallet', 210191), (212464, 212465, 100, 199, 'Sacrosanct Aban-Shere Short Sword', 214357), (212466, 212467, 200, 299, 'Sacrosanct Aban-Shere Short Sword', 214357), (212468, 212468, 300, 300, 'Sacrosanct Aban-Shere Short Sword', 214357), (212569, 212570, 100, 199, 'Sacrosanct Aban-Thar Mallet', 210191), (212571, 212572, 200, 299, 'Sacrosanct Aban-Thar Mallet', 210191), (212573, 212573, 300, 300, 'Sacrosanct Aban-Thar Mallet', 210191), (212459, 212460, 100, 199, 'Sacrosanct Aban-Thar Short Sword', 214357), (212461, 212462, 200, 299, 'Sacrosanct Aban-Thar Short Sword', 214357), (212463, 212463, 300, 300, 'Sacrosanct Aban-Thar Short Sword', 214357), (212243, 212244, 100, 199, 'Sacrosanct Bhotaar Blaster', 210185), (212245, 212246, 200, 299, 'Sacrosanct Bhotaar Blaster', 210185), (212247, 212247, 300, 300, 'Sacrosanct Bhotaar Blaster', 210185), (212218, 212219, 100, 199, 'Sacrosanct Bhotaar Pistol', 210183), (212220, 212221, 200, 299, 'Sacrosanct Bhotaar Pistol', 210183), (212222, 212222, 300, 300, 'Sacrosanct Bhotaar Pistol', 210183), (212248, 212249, 100, 199, 'Sacrosanct Blaster', 210185), (212250, 212251, 200, 299, 'Sacrosanct Blaster', 210185), (212252, 212252, 300, 300, 'Sacrosanct Blaster', 210185), (212590, 212591, 100, 199, 'Sacrosanct Enel Mallet', 210191), (212592, 212593, 200, 299, 'Sacrosanct Enel Mallet', 210191), (212594, 212594, 300, 300, 'Sacrosanct Enel Mallet', 210191), (212409, 212410, 100, 199, 'Sacrosanct Enel Nunchaku', 210171), (212411, 212412, 200, 299, 'Sacrosanct Enel Nunchaku', 210171), (212413, 212413, 300, 300, 'Sacrosanct Enel Nunchaku', 210171), (212439, 212440, 100, 199, 'Sacrosanct Enel Short Sword', 214357), (212441, 212442, 200, 299, 'Sacrosanct Enel Short Sword', 214357), (212443, 212443, 300, 300, 'Sacrosanct Enel Short Sword', 214357), (212610, 212611, 100, 199, 'Sacrosanct Enel Sword Staff', 210165), (212612, 212613, 200, 299, 'Sacrosanct Enel Sword Staff', 210165), (212614, 212614, 300, 300, 'Sacrosanct Enel Sword Staff', 210165), (212575, 212576, 100, 199, 'Sacrosanct Enel-Thar Mallet', 210191), (212577, 212578, 200, 299, 'Sacrosanct Enel-Thar Mallet', 210191), (212579, 212579, 300, 300, 'Sacrosanct Enel-Thar Mallet', 210191), (212454, 212455, 100, 199, 'Sacrosanct Enel-Thar Short Sword', 214357), (212456, 212457, 200, 299, 'Sacrosanct Enel-Thar Short Sword', 214357), (212458, 212458, 300, 300, 'Sacrosanct Enel-Thar Short Sword', 214357), (212630, 212631, 100, 199, 'Sacrosanct Enel-Thar Sword Staff', 210165), (212632, 212633, 200, 299, 'Sacrosanct Enel-Thar Sword Staff', 210165), (212634, 212634, 300, 300, 'Sacrosanct Enel-Thar Sword Staff', 210165), (212580, 212581, 100, 199, 'Sacrosanct Enel-Xum Mallet', 210191), (212582, 212583, 200, 299, 'Sacrosanct Enel-Xum Mallet', 210191), (212584, 212584, 300, 300, 'Sacrosanct Enel-Xum Mallet', 210191), (212414, 212415, 100, 199, 'Sacrosanct Enel-Xum Nunchaku', 210171), (212416, 212417, 200, 299, 'Sacrosanct Enel-Xum Nunchaku', 210171), (212418, 212418, 300, 300, 'Sacrosanct Enel-Xum Nunchaku', 210171), (212449, 212450, 100, 199, 'Sacrosanct Enel-Xum Short Sword', 214357), (212451, 212452, 200, 299, 'Sacrosanct Enel-Xum Short Sword', 214357), (212453, 212453, 300, 300, 'Sacrosanct Enel-Xum Short Sword', 214357), (212625, 212626, 100, 199, 'Sacrosanct Enel-Xum Sword Staff', 210165), (212627, 212628, 200, 299, 'Sacrosanct Enel-Xum Sword Staff', 210165), (212629, 212629, 300, 300, 'Sacrosanct Enel-Xum Sword Staff', 210165), (212559, 212560, 100, 199, 'Sacrosanct Mallet', 210191), (212561, 212562, 200, 299, 'Sacrosanct Mallet', 210191), (212563, 212563, 300, 300, 'Sacrosanct Mallet', 210191), (212404, 212405, 100, 199, 'Sacrosanct Nunchaku', 210171), (212406, 212407, 200, 299, 'Sacrosanct Nunchaku', 210171), (212408, 212408, 300, 300, 'Sacrosanct Nunchaku', 210171), (212223, 212224, 100, 199, 'Sacrosanct Ocra Pistol', 210183), (212225, 212226, 200, 299, 'Sacrosanct Ocra Pistol', 210183), (212227, 212227, 300, 300, 'Sacrosanct Ocra Pistol', 210183), (212263, 212264, 100, 199, 'Sacrosanct Ocra Shotgun', 210188), (212265, 212266, 200, 299, 'Sacrosanct Ocra Shotgun', 210188), (212267, 212267, 300, 300, 'Sacrosanct Ocra Shotgun', 210188), (212228, 212229, 100, 199, 'Sacrosanct Pistol', 210183), (212230, 212231, 200, 299, 'Sacrosanct Pistol', 210183), (212232, 212232, 300, 300, 'Sacrosanct Pistol', 210183), (212424, 212425, 100, 199, 'Sacrosanct Short Sword', 214357), (212426, 212427, 200, 299, 'Sacrosanct Short Sword', 214357), (212428, 212428, 300, 300, 'Sacrosanct Short Sword', 214357), (212268, 212269, 100, 199, 'Sacrosanct Shotgun', 210188), (212270, 212271, 200, 299, 'Sacrosanct Shotgun', 210188), (212272, 212272, 300, 300, 'Sacrosanct Shotgun', 210188), (212605, 212606, 100, 199, 'Sacrosanct Sword Staff', 210165), (212607, 212608, 200, 299, 'Sacrosanct Sword Staff', 210165), (212609, 212609, 300, 300, 'Sacrosanct Sword Staff', 210165), (212595, 212596, 100, 199, 'Sacrosanct Thar Mallet', 210191), (212597, 212598, 200, 299, 'Sacrosanct Thar Mallet', 210191), (212599, 212599, 300, 300, 'Sacrosanct Thar Mallet', 210191), (212434, 212435, 100, 199, 'Sacrosanct Thar Short Sword', 214357), (212436, 212437, 200, 299, 'Sacrosanct Thar Short Sword', 214357), (212438, 212438, 300, 300, 'Sacrosanct Thar Short Sword', 214357), (212620, 212621, 100, 199, 'Sacrosanct Thar Sword Staff', 210165), (212622, 212623, 200, 299, 'Sacrosanct Thar Sword Staff', 210165), (212624, 212624, 300, 300, 'Sacrosanct Thar Sword Staff', 210165), (212585, 212586, 100, 199, 'Sacrosanct Xum Mallet', 210191), (212587, 212588, 200, 299, 'Sacrosanct Xum Mallet', 210191), (212589, 212589, 300, 300, 'Sacrosanct Xum Mallet', 210191), (212419, 212420, 100, 199, 'Sacrosanct Xum Nunchaku', 210171), (212421, 212422, 200, 299, 'Sacrosanct Xum Nunchaku', 210171), (212423, 212423, 300, 300, 'Sacrosanct Xum Nunchaku', 210171), (212444, 212445, 100, 199, 'Sacrosanct Xum Short Sword', 214357), (212446, 212447, 200, 299, 'Sacrosanct Xum Short Sword', 214357), (212448, 212448, 300, 300, 'Sacrosanct Xum Short Sword', 214357), (212615, 212616, 100, 199, 'Sacrosanct Xum Sword Staff', 210165), (212617, 212618, 200, 299, 'Sacrosanct Xum Sword Staff', 210165), (212619, 212619, 300, 300, 'Sacrosanct Xum Sword Staff', 210165), (277386, 277386, 1, 1, 'Sad Panda Mask', 277475), (294035, 294035, 1, 1, 'Sad Snowman Mask', 294403), (168833, 168834, 1, 19, 'Safeguarded NCU Memory Unit', 119135), (168834, 168835, 20, 39, 'Safeguarded NCU Memory Unit', 119135), (168835, 168836, 40, 49, 'Safeguarded NCU Memory Unit', 119137), (168836, 168837, 50, 119, 'Safeguarded NCU Memory Unit', 13370), (168837, 168838, 120, 199, 'Safeguarded NCU Memory Unit', 119136), (168838, 168838, 200, 200, 'Safeguarded NCU Memory Unit', 119134), (295134, 295134, 1, 1, 'Safety Not Guaranteed Shirt', 295265), (244643, 244643, 250, 250, 'Sagittarius''s Hearty Spirit Helper', 12701), (124332, 124333, 32, 41, 'Sako J-21 P-103 Response Rifle', 13321), (124330, 124331, 16, 31, 'Sako J-21 P-96 Response Rifle', 13321), (124340, 124340, 133, 133, 'Sako J21P-103-12 Response Rifle', 13321), (124334, 124335, 42, 61, 'Sako J21P-103-4 Response Rifle', 13321), (124336, 124337, 62, 81, 'Sako J21P-103-6 Response Rifle', 13321), (124338, 124339, 82, 132, 'Sako J21P-103-8 Response Rifle', 13321), (253234, 253235, 1, 299, 'Salabim Shotgun', 113991), (253236, 253236, 300, 300, 'Salabim Shotgun Supremo', 113991), (248337, 248337, 1, 1, 'Salamander Bile', 100308), (258547, 258547, 1, 1, 'Salamander Pie', 130518), (206742, 206742, 20, 20, 'Salesman''s Chip', 43121), (205738, 205738, 20, 20, 'Salesman''s Hat', 205771), (156769, 156769, 48, 48, 'Salvaged Beetle Blaster', 33155), (267732, 267732, 250, 250, 'Sample of a chemical based compound', 19860), (267731, 267731, 250, 250, 'Sample of a cold based compound', 19852), (267730, 267730, 250, 250, 'Sample of a fire based compound', 19857), (267734, 267734, 250, 250, 'Sample of a poisonous compound', 19862), (267733, 267733, 250, 250, 'Sample of a radioactive compound', 19862), (212735, 212736, 100, 199, 'Sancrosanct Aban Spear', 214359), (212737, 212738, 200, 299, 'Sancrosanct Aban Spear', 214359), (212739, 212739, 300, 300, 'Sancrosanct Aban Spear', 214359), (212808, 212809, 100, 199, 'Sancrosanct Aban Stiletto', 210190), (212810, 212811, 200, 299, 'Sancrosanct Aban Stiletto', 210190), (212812, 212812, 300, 300, 'Sancrosanct Aban Stiletto', 210190), (212756, 212757, 100, 199, 'Sancrosanct Aban-Shere Spear', 214359), (212758, 212759, 200, 299, 'Sancrosanct Aban-Shere Spear', 214359), (212760, 212760, 300, 300, 'Sancrosanct Aban-Shere Spear', 214359), (212840, 212841, 100, 199, 'Sancrosanct Aban-Shere Stiletto', 210190), (212843, 212844, 200, 299, 'Sancrosanct Aban-Shere Stiletto', 210190), (212845, 212845, 300, 300, 'Sancrosanct Aban-Shere Stiletto', 210190), (212751, 212752, 100, 199, 'Sancrosanct Aban-Thar Spear', 214359), (212753, 212754, 200, 299, 'Sancrosanct Aban-Thar Spear', 214359), (212755, 212755, 300, 300, 'Sancrosanct Aban-Thar Spear', 214359), (212835, 212836, 100, 199, 'Sancrosanct Aban-Thar Stiletto', 210190), (212837, 212838, 200, 299, 'Sancrosanct Aban-Thar Stiletto', 210190), (212839, 212839, 300, 300, 'Sancrosanct Aban-Thar Stiletto', 210190), (212303, 212304, 100, 199, 'Sancrosanct Assault Rifle', 210186), (212305, 212306, 200, 299, 'Sancrosanct Assault Rifle', 210186), (212307, 212307, 300, 300, 'Sancrosanct Assault Rifle', 210186), (212308, 212309, 100, 199, 'Sancrosanct Bhotaar Assault Rifle', 210186), (212310, 212311, 200, 299, 'Sancrosanct Bhotaar Assault Rifle', 210186), (212312, 212312, 300, 300, 'Sancrosanct Bhotaar Assault Rifle', 210186), (212363, 212364, 100, 199, 'Sancrosanct Bow', 213412), (212365, 212366, 200, 299, 'Sancrosanct Bow', 213412), (212367, 212367, 300, 300, 'Sancrosanct Bow', 213412), (212720, 212721, 100, 199, 'Sancrosanct Crusher', 211288), (212722, 212723, 200, 299, 'Sancrosanct Crusher', 211288), (212724, 212724, 300, 300, 'Sancrosanct Crusher', 211288), (212705, 212706, 100, 199, 'Sancrosanct Enel Crusher', 211288), (212707, 212708, 200, 299, 'Sancrosanct Enel Crusher', 211288), (212709, 212709, 300, 300, 'Sancrosanct Enel Crusher', 211288), (212730, 212731, 100, 199, 'Sancrosanct Enel Spear', 214359), (212732, 212733, 200, 299, 'Sancrosanct Enel Spear', 214359), (212734, 212734, 300, 300, 'Sancrosanct Enel Spear', 214359), (212818, 212819, 100, 199, 'Sancrosanct Enel Stiletto', 210190), (212820, 212821, 200, 299, 'Sancrosanct Enel Stiletto', 210190), (212822, 212822, 300, 300, 'Sancrosanct Enel Stiletto', 210190), (212695, 212696, 100, 199, 'Sancrosanct Enel-Thar Crusher', 211288), (212697, 212698, 200, 299, 'Sancrosanct Enel-Thar Crusher', 211288), (212699, 212699, 300, 300, 'Sancrosanct Enel-Thar Crusher', 211288), (212746, 212747, 100, 199, 'Sancrosanct Enel-Thar Spear', 214359), (212748, 212749, 200, 299, 'Sancrosanct Enel-Thar Spear', 214359), (212750, 212750, 300, 300, 'Sancrosanct Enel-Thar Spear', 214359), (212828, 212829, 100, 199, 'Sancrosanct Enel-Thar Stiletto', 210190), (212832, 212833, 200, 299, 'Sancrosanct Enel-Thar Stiletto', 210190), (212834, 212834, 300, 300, 'Sancrosanct Enel-Thar Stiletto', 210190), (212700, 212701, 100, 199, 'Sancrosanct Enel-Xum Crusher', 211288), (212702, 212703, 200, 299, 'Sancrosanct Enel-Xum Crusher', 211288), (212704, 212704, 300, 300, 'Sancrosanct Enel-Xum Crusher', 211288), (212823, 212824, 100, 199, 'Sancrosanct Enel-Xum Stiletto', 210190), (212825, 212826, 200, 299, 'Sancrosanct Enel-Xum Stiletto', 210190), (212827, 212827, 300, 300, 'Sancrosanct Enel-Xum Stiletto', 210190), (212318, 212319, 100, 199, 'Sancrosanct Ocra-Bhotaar Assault Rifle', 210186), (212320, 212321, 200, 299, 'Sancrosanct Ocra-Bhotaar Assault Rifle', 210186), (212322, 212322, 300, 300, 'Sancrosanct Ocra-Bhotaar Assault Rifle', 210186), (212323, 212324, 100, 199, 'Sancrosanct Ocra-Roch Assault Rifle', 210186), (212325, 212326, 200, 299, 'Sancrosanct Ocra-Roch Assault Rifle', 210186), (212327, 212327, 300, 300, 'Sancrosanct Ocra-Roch Assault Rifle', 210186), (212358, 212359, 100, 199, 'Sancrosanct Ocra-Shere Rifle', 210169), (212360, 212361, 200, 299, 'Sancrosanct Ocra-Shere Rifle', 210169), (212362, 212362, 300, 300, 'Sancrosanct Ocra-Shere Rifle', 210169), (212328, 212329, 100, 199, 'Sancrosanct Ocra-Xum Assault Rifle', 210186), (212330, 212331, 200, 299, 'Sancrosanct Ocra-Xum Assault Rifle', 210186), (212332, 212332, 300, 300, 'Sancrosanct Ocra-Xum Assault Rifle', 210186), (212348, 212349, 100, 199, 'Sancrosanct Rifle', 210169), (212350, 212351, 200, 299, 'Sancrosanct Rifle', 210169), (212352, 212352, 300, 300, 'Sancrosanct Rifle', 210169), (212313, 212314, 100, 199, 'Sancrosanct Roch Assault Rifle', 210186), (212315, 212316, 200, 299, 'Sancrosanct Roch Assault Rifle', 210186), (212317, 212317, 300, 300, 'Sancrosanct Roch Assault Rifle', 210186), (212368, 212369, 100, 199, 'Sancrosanct Shere Bow', 213412), (212370, 212371, 200, 299, 'Sancrosanct Shere Bow', 213412), (212372, 212372, 300, 300, 'Sancrosanct Shere Bow', 213412), (212353, 212354, 100, 199, 'Sancrosanct Shere Rifle', 210169), (212355, 212356, 200, 299, 'Sancrosanct Shere Rifle', 210169), (212357, 212357, 300, 300, 'Sancrosanct Shere Rifle', 210169), (212725, 212726, 100, 199, 'Sancrosanct Spear', 214359), (212727, 212728, 200, 299, 'Sancrosanct Spear', 214359), (212729, 212729, 300, 300, 'Sancrosanct Spear', 214359), (212796, 212797, 100, 199, 'Sancrosanct Stiletto', 210190), (212798, 212799, 200, 299, 'Sancrosanct Stiletto', 210190), (212800, 212800, 300, 300, 'Sancrosanct Stiletto', 210190), (212715, 212716, 100, 199, 'Sancrosanct Thar Crusher', 211288), (212717, 212718, 200, 299, 'Sancrosanct Thar Crusher', 211288), (212719, 212719, 300, 300, 'Sancrosanct Thar Crusher', 211288), (212740, 212741, 100, 199, 'Sancrosanct Thar Spear', 214359), (212742, 212743, 200, 299, 'Sancrosanct Thar Spear', 214359), (212745, 212745, 300, 300, 'Sancrosanct Thar Spear', 214359), (212813, 212814, 100, 199, 'Sancrosanct Thar Stiletto', 210190), (212815, 212816, 200, 299, 'Sancrosanct Thar Stiletto', 210190), (212817, 212817, 300, 300, 'Sancrosanct Thar Stiletto', 210190), (212710, 212711, 100, 199, 'Sancrosanct Xum Crusher', 211288), (212712, 212713, 200, 299, 'Sancrosanct Xum Crusher', 211288), (212714, 212714, 300, 300, 'Sancrosanct Xum Crusher', 211288), (212801, 212802, 100, 199, 'Sancrosanct Xum Stiletto', 210190), (212803, 212804, 200, 299, 'Sancrosanct Xum Stiletto', 210190), (212805, 212805, 300, 300, 'Sancrosanct Xum Stiletto', 210190), (224038, 224048, 1, 400, 'Sanctified and Cleaned Human Arms', 144713), (224042, 224043, 1, 400, 'Sanctified and Cleaned Human Hands and Wrists', 144707), (224040, 224041, 1, 300, 'Sanctified and Cleaned Human Head', 144706), (224044, 224045, 1, 300, 'Sanctified and Cleaned Human Legs and Feet', 144711), (224046, 224047, 1, 300, 'Sanctified and Cleaned Human Torso', 144704), (289640, 289640, 1, 1, 'Sanctuary Access', 283768), (248912, 248912, 1, 1, 'Sandals of Cognizance', 255363), (225627, 225628, 1, 300, 'Sandals of Navigation', 42265), (273280, 273280, 1, 1, 'Sandcrawler Hides', 259862), (248913, 248913, 100, 100, 'Sandy Boots', 21865), (248916, 248916, 100, 100, 'Sandy Piece of Goo', 300971), (248920, 248920, 100, 100, 'Sandy Shoulder Plate', 160886), (236174, 236174, 1, 1, 'Sanguine Ring', 84064), (226287, 226287, 1, 1, 'Sanguine Ring for the Artillery Unit', 151926), (226293, 226293, 1, 1, 'Sanguine Ring for the Control Unit', 151926), (226294, 226294, 1, 1, 'Sanguine Ring for the Extermination Unit', 151926), (226295, 226295, 1, 1, 'Sanguine Ring for the Infantry Unit', 151926), (226306, 226306, 1, 1, 'Sanguine Ring for the Support Unit', 151926), (305500, 305500, 1, 1, 'Sanguine Vambrace', 84050), (226829, 226830, 1, 300, 'Sanguisugent Body Armor', 213515), (226825, 226826, 1, 300, 'Sanguisugent Boots', 213555), (226835, 226836, 1, 300, 'Sanguisugent Energy Shield', 33150), (226833, 226834, 1, 300, 'Sanguisugent Gauntlets', 214752), (226827, 226828, 1, 300, 'Sanguisugent Pants', 213597), (226831, 226832, 1, 300, 'Sanguisugent Sleeves', 213476), (258261, 258261, 1, 1, 'Sanitation Study', 136331), (275003, 275003, 50, 50, 'Sanity Recovery Medication', 20187), (284567, 284567, 1, 1, 'Santa Bag', 284680), (206001, 206001, 1, 1, 'Santa Hat', 206000), (301761, 301761, 1, 1, 'Santa Hat', 206000), (274172, 274172, 1, 1, 'Santa Leet Doll', 274168), (289521, 289521, 1, 1, 'Santa Mask', 289520), (257560, 257560, 1, 1, 'Santa Suit', 257572), (301762, 301762, 1, 1, 'Santa Suit', 257572), (294409, 294409, 1, 1, 'Santaleet', 273626), (294103, 294103, 1, 1, 'Santaleet Gift', 274183), (294104, 294104, 1, 1, 'Santaleet Gift', 274179), (294105, 294105, 1, 1, 'Santaleet Gift', 274179), (150197, 150198, 41, 70, 'Santiago Crossblade', 113983), (232744, 232745, 1, 149, 'Sapphire', 286947), (232745, 232747, 150, 199, 'Sapphire', 286947), (232747, 232748, 200, 249, 'Sapphire', 286947), (232748, 232749, 250, 400, 'Sapphire', 286947), (205777, 205777, 1, 1, 'Sapphire Arcanum Specs', 254314), (157421, 157421, 1, 1, 'Sapphire Seven Lynx Advantage', 81777), (152126, 152127, 61, 90, 'Sapphistic Bow', 85167), (267525, 267525, 300, 300, 'Sappo', 43092), (244648, 244648, 250, 250, 'Sash of Scorpio Strength', 161070), (208022, 208023, 140, 149, 'Saturated Metaplast Six-Shooter', 113995), (214328, 214329, 100, 199, 'Savage Hammer', 210191), (214330, 214331, 200, 299, 'Savage Hammer', 210191), (262211, 262211, 1, 1, 'Scalding Weaver Skin', 262205), (264007, 264007, 1, 1, 'Scan of Yuttos Wall Carvings', 149949), (254100, 254100, 1, 1, 'Scanning Device', 149946), (294339, 294340, 1, 300, 'Scared Leet Respawn', 274168), (264081, 264081, 1, 1, 'Schematics of Scheol Tunnel structures', 83871), (295081, 295081, 1, 1, 'Scheol Garden Access', 295100), (295120, 295120, 1, 1, 'Scheol Mission Reward', 281837), (295107, 295107, 1, 1, 'Scheol Sanctuary Access', 295099), (164058, 164059, 1, 48, 'Schiacciamento Foschia', 203229), (164060, 164061, 49, 199, 'Schiacciamento Foschia', 203229), (164062, 164062, 200, 200, 'Schiacciamento Foschia', 203229), (164048, 164049, 1, 48, 'Schiacciamento Rabbia', 203229), (164050, 164051, 49, 199, 'Schiacciamento Rabbia', 203229), (164052, 164052, 200, 200, 'Schiacciamento Rabbia', 203229), (164063, 164064, 1, 48, 'Schiacciamento Tuono', 203229), (164065, 164066, 49, 199, 'Schiacciamento Tuono', 203229), (164067, 164067, 200, 200, 'Schiacciamento Tuono', 203229), (164053, 164054, 1, 48, 'Schiacciamento Vento', 203229), (164055, 164056, 49, 199, 'Schiacciamento Vento', 203229), (164057, 164057, 200, 200, 'Schiacciamento Vento', 203229), (249708, 249708, 1, 1, 'Schreiner''s Copper Colored Disco Shoes', 255346), (159021, 159022, 1, 199, 'Schuyler Bow', 85167), (208034, 208035, 40, 49, 'Schuyler Pup', 85167), (208036, 208036, 50, 50, 'Schuyler Super Pup', 85167), (275397, 275397, 1, 1, 'Schweinshaxe mit Sauerkraut und Kartoffelpuree', 37979), (246044, 246045, 240, 244, 'Scimitar of Spetses', 213074), (246046, 246047, 245, 249, 'Scimitar of Spetses', 213074), (246048, 246049, 250, 254, 'Scimitar of Spetses', 213074), (246050, 246051, 255, 259, 'Scimitar of Spetses', 213074), (215410, 215410, 1, 1, 'Scintillant', 82197), (123983, 123983, 80, 80, 'Scoped Nomad 21.7 BMG Ranger', 21146), (137639, 137639, 1, 1, 'Scoped Nomad 21.7 BMG Ranger Construction Manual', 37933), (257141, 257141, 300, 300, 'Scoped Salabim Shotgun Supremo', 257711), (150192, 150192, 200, 200, 'Scorching Bodum-Larga Club', 85172), (244655, 244655, 250, 250, 'Scorpio''s Aim of Anger', 245000), (244654, 244654, 250, 250, 'Scorpio''s Shell of Change', 22401), (155679, 155680, 1, 200, 'Scorpiod Droppings', 99239), (253005, 253005, 1, 1, 'Scorpiod Scent', 160727), (155642, 155643, 1, 200, 'Scorpoid Poison', 100332), (130598, 130598, 1, 1, 'Scottish Whiskey Group - Vintage xI', 37946), (233804, 233804, 1, 1, 'Scourged Bracer of Jobe', 227249), (265499, 265500, 1, 300, 'Scout Vehicle Weapon', 13321), (265497, 265498, 1, 300, 'Scout Vehicle Weapon - Upgrade', 13321), (155664, 155664, 1, 1, 'Scrap of Notum', 156562), (155648, 155649, 1, 200, 'Scrap of Paper', 154679), (215358, 215358, 1, 1, 'Scream of Death', 239345), (215488, 215488, 1, 1, 'Scream of light', 82197), (302917, 302917, 1, 1, 'Screaming Spirit Capsule', 231185), (268172, 268172, 1, 1, 'Screech of The Shadowy Wing', 37931), (215359, 215359, 1, 1, 'Screen of Light', 239340), (239356, 239356, 1, 1, 'Screen of Light', 239340), (150922, 150922, 10, 10, 'Screwdriver', 151011), (214180, 214180, 300, 300, 'Scrimshaw Sculptor', 213076), (257308, 257308, 1, 1, 'Scriptstarter Item', 16248), (150232, 150233, 1, 39, 'Scruffy Ares Bio-Staff', 136738), (119110, 119110, 1, 1, 'Sculpture - Deluxe', 119083), (119112, 119112, 1, 1, 'Sculpture - Kra', 119085), (303285, 303285, 1, 1, 'Scythe of the Harvester', 303310), (199538, 199538, 265, 265, 'Seaborgium Periodic Tech Armor Boots', 22886), (199559, 199559, 265, 265, 'Seaborgium Periodic Tech Armor Gloves', 22933), (199580, 199580, 265, 265, 'Seaborgium Periodic Tech Armor Helmet', 31731), (199602, 199602, 265, 265, 'Seaborgium Periodic Tech Armor Pants', 22912), (199623, 199623, 265, 265, 'Seaborgium Periodic Tech Armor Sleeves', 22911), (199644, 199644, 265, 265, 'Seaborgium Periodic Tech Body Armor', 22990), (199665, 199665, 265, 265, 'Seaborgium Periodic Tech Female Body Armor', 22909), (214369, 214369, 1, 1, 'Seal Wounds', 239113), (302052, 302052, 1, 1, 'Sealed Adorable Feelers', 302029), (302054, 302054, 1, 1, 'Sealed Amorous Shortbow', 302035), (300528, 300528, 1, 1, 'Sealed Bazzit''s Alien Library', 300450), (303378, 303378, 1, 1, 'Sealed Bazzit''s Alien Library', 300450), (302056, 302056, 1, 1, 'Sealed Bikini', 302033), (157341, 157341, 100, 100, 'Sealed Bioplast Folder', 157369), (302049, 302049, 1, 1, 'Sealed Black Heart Lantern', 302034), (302055, 302055, 1, 1, 'Sealed Boxer Shorts', 302032), (301789, 301789, 1, 1, 'Sealed Bulwark of Incalescence', 301813), (296448, 296448, 1, 1, 'Sealed Catgirl Costume', 284189), (289287, 289287, 1, 1, 'Sealed Catgirl Costume Generator - Limited', 284189), (289288, 289288, 1, 1, 'Sealed Catgirl Costume Generator - Unlimited', 284189), (302044, 302044, 1, 1, 'Sealed Cherubic Quiver', 294716), (258581, 258581, 200, 200, 'Sealed Container of Foodstuffs', 300972), (258595, 258595, 200, 200, 'Sealed Container of Foodstuffs Awaiting Credentials', 99662), (301794, 301794, 1, 1, 'Sealed Crunk Goblet', 289526), (302041, 302041, 1, 1, 'Sealed Cute Pajamas', 302024), (301787, 301787, 1, 1, 'Sealed Dark Winter Knight', 301819), (258463, 258463, 1, 1, 'Sealed Equipment Crate', 154186), (302051, 302051, 1, 1, 'Sealed Executive Cardinal Red Suit with Skirt', 302025), (302050, 302050, 1, 1, 'Sealed Executive Cardinal Red Suit with Trousers', 302022), (302043, 302043, 1, 1, 'Sealed Executive Carnation Pink Suit with Skirt', 302027), (302042, 302042, 1, 1, 'Sealed Executive Carnation Pink Suit with Trousers', 302026), (301790, 301790, 1, 1, 'Sealed Gelid Camouflage Balaclava Helmet', 301816), (301799, 301799, 1, 1, 'Sealed Gelid Camouflage Boots', 301814), (301798, 301798, 1, 1, 'Sealed Gelid Camouflage Gloves', 301815), (301792, 301792, 1, 1, 'Sealed Gelid Camouflage Jacket', 301811), (301797, 301797, 1, 1, 'Sealed Gelid Camouflage Sleeves', 301817), (301791, 301791, 1, 1, 'Sealed Gelid Camouflage Trousers', 301820), (302048, 302048, 1, 1, 'Sealed Heart Breaker', 302036), (302059, 302059, 1, 1, 'Sealed Heart Print Pajamas', 302023), (302045, 302045, 1, 1, 'Sealed Heart-Shaped Shades', 295037), (288586, 288586, 1, 1, 'Sealed High-Quality T-Shirt', 157448), (288692, 288692, 1, 1, 'Sealed High-Quality T-Shirt', 157448), (301803, 301803, 1, 1, 'Sealed Icicle Dagger', 301809), (303740, 303741, 1, 200, 'Sealed Implant and Spirit Package', 99669), (304502, 304502, 1, 1, 'Sealed Implant and Spirit Package', 99669), (304000, 304001, 25, 59, 'Sealed Implant and Spirit Package', 99669), (304001, 304002, 60, 99, 'Sealed Implant and Spirit Package', 99669), (304002, 304003, 100, 149, 'Sealed Implant and Spirit Package', 99669), (304003, 304004, 150, 200, 'Sealed Implant and Spirit Package', 99669), (207107, 207107, 1, 1, 'Sealed Inner Sanctum Pass', 300960), (301691, 301691, 1, 1, 'Sealed JOBE Modified Unlearning Device', 290826), (303431, 303432, 1, 220, 'Sealed Junior Ofab Weapons', 99670), (303427, 303428, 1, 220, 'Sealed Junior Ofab Weapons - Close Quarters', 99669), (303429, 303430, 1, 220, 'Sealed Junior Ofab Weapons - Ranged Combat', 99669), (165272, 165272, 1, 1, 'Sealed Letter', 154681), (214792, 214792, 1, 1, 'Sealed Letter', 231177), (214793, 214793, 1, 1, 'Sealed Letter', 227289), (214892, 214892, 1, 1, 'Sealed Letter', 163062), (214893, 214893, 1, 1, 'Sealed Letter', 163062), (231140, 231140, 1, 1, 'Sealed Letter - Redeemed', 227289), (231156, 231156, 1, 1, 'Sealed Letter - Unredeemed', 227289), (231159, 231159, 1, 1, 'Sealed Letter from High Priest - Redeemed', 227289), (302053, 302053, 1, 1, 'Sealed Love Sombrero', 302028), (288696, 288696, 1, 1, 'Sealed Low-Quality T-Shirt', 157448), (289163, 289163, 1, 1, 'Sealed Midnight Pumpkin Bikini Set', 157448), (301785, 301785, 1, 1, 'Sealed Nano Crystal (Aspect of the Antleet)', 301807), (301804, 301804, 1, 1, 'Sealed Nano Crystal (Gingerleet)', 300856), (301805, 301805, 1, 1, 'Sealed Nano Crystal (Pronouncement of Cuteness)', 300855), (289246, 289246, 1, 1, 'Sealed Naughty List Bikini Set', 157448), (302046, 302046, 1, 1, 'Sealed Naughty Nightwear', 295015), (156329, 156330, 20, 80, 'Sealed Order BLCG-7791', 156326), (156331, 156332, 20, 80, 'Sealed Order FPGA-202', 156326), (156327, 156328, 20, 80, 'Sealed Order XITL-0127', 156326), (301802, 301802, 1, 1, 'Sealed Pack-a-way Christmas Tree', 245610), (292529, 292529, 1, 1, 'Sealed Packet of Bilayer Graphene Sheets', 292779), (301784, 301784, 1, 1, 'Sealed Party Popper', 301810), (301782, 301782, 1, 1, 'Sealed Penumbra White Quabbit', 301818), (157278, 157278, 100, 100, 'Sealed Personal Note', 156325), (302058, 302058, 1, 1, 'Sealed Phasefront Elamorado', 294925), (301801, 301801, 1, 1, 'Sealed Phasefront Loungemaster - Koleda', 294400), (301800, 301800, 1, 1, 'Sealed Phasefront Loungemaster - Orisky', 289430), (301783, 301783, 1, 1, 'Sealed Phasefront Snow Speeder', 294459), (288766, 288766, 1, 1, 'Sealed Portable Bank Terminal', 157448), (288761, 288761, 1, 1, 'Sealed Portable Bank Terminal - Seven Days', 157448), (288767, 288767, 1, 1, 'Sealed Portable Market Terminal', 157448), (288768, 288768, 1, 1, 'Sealed Portable Market Terminal - Seven Days', 157448), (302080, 302080, 1, 1, 'Sealed Profession Nanodeck', 270749), (304565, 304566, 1, 220, 'Sealed Prototype Ofab Weapons', 99670), (304561, 304562, 1, 220, 'Sealed Prototype Ofab Weapons - Close Quarters', 99669), (304563, 304564, 1, 220, 'Sealed Prototype Ofab Weapons - Ranged Combat', 99669), (302047, 302047, 1, 1, 'Sealed Red Ball', 302031), (301786, 301786, 1, 1, 'Sealed Reindeer Mask', 289441), (301795, 301795, 1, 1, 'Sealed Santa Hat', 206000), (301793, 301793, 1, 1, 'Sealed Santa Mask', 289520), (301796, 301796, 1, 1, 'Sealed Santa Suit', 257572), (301806, 301806, 1, 1, 'Sealed Snowflake Etching Machine - Flake #1', 163066), (303742, 303742, 215, 215, 'Sealed Symbiant and Spirit Package', 99669), (304005, 304005, 215, 215, 'Sealed Symbiant and Spirit Package', 99669), (207040, 207040, 1, 1, 'Sealed Tin of Mint and Liquorice Valentine''s Candies', 156509), (302057, 302057, 1, 1, 'Sealed Tophat', 302030), (157669, 157670, 1, 200, 'Sealed Weapon Receptacle - Alsaqri Chemical Rifle', 157448), (157671, 157672, 1, 200, 'Sealed Weapon Receptacle - HSR Explorer 661', 157448), (157647, 157648, 1, 200, 'Sealed Weapon Receptacle - IMI Tellus TT', 157448), (162904, 162905, 1, 200, 'Sealed Weapon Receptacle - Ithaca Ki12 Vulture', 157448), (162935, 162934, 1, 200, 'Sealed Weapon Receptacle - River Seasons XP', 157448), (157653, 157654, 1, 200, 'Sealed Weapon Receptacle - Soft Pepper Pistol', 157448), (157649, 157650, 1, 200, 'Sealed Weapon Receptacle - Sol Chironis Systems', 157448), (157449, 157450, 1, 200, 'Sealed Weapon Receptacle - Summer SMP', 157448), (301823, 301823, 1, 1, 'Sealed Yalmaha - 29500 - The Stiletto', 203498), (301788, 301788, 1, 1, 'Sealed Yuletide Visage', 301812), (234920, 234920, 1, 1, 'Sealed instructions to Acolyte Cama Hume', 227289), (234919, 234919, 1, 1, 'Sealed instructions to Ardent Gulu Van', 227289), (157275, 157275, 1, 1, 'Sealing Cell Kit', 157282), (121303, 121303, 1, 1, 'Search', 123962), (271633, 271634, 1, 300, 'Seburo Bobsons - 000', 13330), (271637, 271638, 1, 300, 'Seburo Bobsons - 401', 13330), (271639, 271640, 1, 300, 'Seburo Bobsons - C01', 13330), (272140, 272141, 1, 300, 'Seburo C-99a - 000', 21144), (272142, 272143, 1, 300, 'Seburo C-99a - 008', 21144), (272144, 272145, 1, 300, 'Seburo C-99a - 00C', 21144), (272146, 272147, 1, 300, 'Seburo C-99a - 40C', 21144), (272148, 272149, 1, 300, 'Seburo C-99a - C0C', 21144), (124550, 124551, 24, 69, 'Seburo M35', 33153), (124554, 124555, 110, 174, 'Seburo M35 Hysteric', 33153), (124552, 124553, 70, 109, 'Seburo M35 Rolig', 33153), (124556, 124556, 175, 175, 'Seburo M35 Somber', 33153), (206232, 206232, 1, 1, 'Second Circle of the Inner Sanctum', 84068), (206235, 206235, 1, 1, 'Second Circle of the Inner Sanctum', 84068), (206236, 206236, 1, 1, 'Second Circle of the Inner Sanctum', 84068), (128836, 128837, 31, 119, 'Second Hand Freedom Arms Defender', 33153), (209269, 209270, 1, 9, 'Second Hand MTI Pocket Launcher', 13322), (142791, 142792, 29, 38, 'Second Hand Madam Freeze', 13336), (128847, 128848, 81, 100, 'Second Hand OET Co. MP-21 Tactical Machine Pistol', 21148), (239833, 239833, 1, 1, 'Second Portal Technician', 136596), (218693, 218694, 160, 220, 'Second Tier Adventurer Body Armor', 213493), (218691, 218692, 160, 220, 'Second Tier Adventurer Boots', 213534), (218698, 218699, 160, 220, 'Second Tier Adventurer Gloves', 21871), (218717, 218718, 160, 220, 'Second Tier Adventurer Helmet', 213620), (218689, 218690, 160, 220, 'Second Tier Adventurer Pants', 213574), (218696, 218697, 160, 220, 'Second Tier Adventurer Sleeves', 213593), (218726, 218727, 160, 220, 'Second Tier Adventurer Support System', 218593), (218555, 218556, 160, 220, 'Second Tier Agent Body Armor', 213496), (218553, 218554, 160, 220, 'Second Tier Agent Boots', 213537), (218559, 218560, 160, 220, 'Second Tier Agent Gloves', 22940), (218562, 218563, 160, 220, 'Second Tier Agent Helmet', 213623), (218551, 218552, 160, 220, 'Second Tier Agent Pants', 213580), (218564, 218565, 160, 220, 'Second Tier Agent Shoulderpad', 160886), (218557, 218558, 160, 220, 'Second Tier Agent Sleeves', 213457), (219067, 219068, 160, 220, 'Second Tier Bureaucrat Boots', 213540), (219059, 219060, 160, 220, 'Second Tier Bureaucrat Gloves', 27661), (219057, 219058, 160, 220, 'Second Tier Bureaucrat Headgear', 213626), (219069, 219070, 160, 220, 'Second Tier Bureaucrat Pants', 213454), (219055, 219056, 160, 220, 'Second Tier Bureaucrat Shoulderpad', 160886), (219061, 219062, 160, 220, 'Second Tier Bureaucrat Sleeves', 213460), (219065, 219066, 160, 220, 'Second Tier Bureaucrat Vest', 213499), (214759, 214760, 160, 220, 'Second Tier Doctor Suit Body', 213502), (214757, 214758, 160, 220, 'Second Tier Doctor Suit Boots', 213543), (214763, 214764, 160, 220, 'Second Tier Doctor Suit Gloves', 13281), (214765, 214766, 160, 220, 'Second Tier Doctor Suit Helmet', 213641), (214755, 214756, 160, 220, 'Second Tier Doctor Suit Pants', 213586), (214767, 214768, 160, 220, 'Second Tier Doctor Suit Shoulderpad', 213659), (214761, 214762, 160, 220, 'Second Tier Doctor Suit Sleeves', 213463), (220305, 220306, 160, 220, 'Second Tier Enforcer Boots', 213545), (220307, 220308, 160, 220, 'Second Tier Enforcer Breastplate', 213505), (220313, 220314, 160, 220, 'Second Tier Enforcer Gauntlets', 13281), (220315, 220316, 160, 220, 'Second Tier Enforcer Helmet', 213629), (220303, 220304, 160, 220, 'Second Tier Enforcer Pants', 213454), (220317, 220318, 160, 220, 'Second Tier Enforcer Shoulderplate', 213656), (220310, 220311, 160, 220, 'Second Tier Enforcer Sleeves', 213465), (218244, 218245, 160, 220, 'Second Tier Engineer Body', 213508), (218246, 218247, 160, 220, 'Second Tier Engineer Boots', 213548), (218240, 218241, 160, 220, 'Second Tier Engineer Gloves', 21871), (218238, 218239, 160, 220, 'Second Tier Engineer Helmet', 213632), (218248, 218249, 160, 220, 'Second Tier Engineer Pants', 213590), (218236, 218237, 160, 220, 'Second Tier Engineer Shoulderpad', 160887), (218242, 218243, 160, 220, 'Second Tier Engineer Sleeves', 213468), (218435, 218436, 160, 220, 'Second Tier Fixer Body Armor', 213511), (218437, 218438, 160, 220, 'Second Tier Fixer Boots', 213551), (218431, 218432, 160, 220, 'Second Tier Fixer Gloves', 27661), (218429, 218430, 160, 220, 'Second Tier Fixer Helmet', 213635), (218439, 218440, 160, 220, 'Second Tier Fixer Pants', 213454), (218427, 218428, 160, 220, 'Second Tier Fixer Shoulderpad', 160886), (218433, 218434, 160, 220, 'Second Tier Fixer Sleeves', 213471), (218038, 218039, 160, 220, 'Second Tier Keeper Barbute', 216707), (218044, 218045, 160, 220, 'Second Tier Keeper Cuirass', 226608), (218040, 218041, 160, 220, 'Second Tier Keeper Gauntlets', 226641), (218048, 218049, 160, 220, 'Second Tier Keeper Greaves', 226656), (218036, 218037, 160, 220, 'Second Tier Keeper Pauldron', 216715), (218046, 218047, 160, 220, 'Second Tier Keeper Sabatons', 226626), (218042, 218043, 160, 220, 'Second Tier Keeper Vambrace', 226593), (217657, 217658, 160, 220, 'Second Tier Martial Artist Body Armor', 213521), (217655, 217656, 160, 220, 'Second Tier Martial Artist Boots', 213560), (217665, 217666, 160, 220, 'Second Tier Martial Artist Cuirass', 216899), (217661, 217662, 160, 220, 'Second Tier Martial Artist Gloves', 31655), (217663, 217664, 160, 220, 'Second Tier Martial Artist Helmet', 31735), (217653, 217654, 160, 220, 'Second Tier Martial Artist Pants', 213602), (217659, 217660, 160, 220, 'Second Tier Martial Artist Sleeves', 213480), (222641, 222642, 160, 220, 'Second Tier Metaphysicist Body Armor', 213522), (222645, 222646, 160, 220, 'Second Tier Metaphysicist Boots', 213562), (222633, 222634, 160, 220, 'Second Tier Metaphysicist Gloves', 21871), (222631, 222632, 160, 220, 'Second Tier Metaphysicist Headgear', 213644), (222649, 222650, 160, 220, 'Second Tier Metaphysicist Pants', 213604), (222629, 222630, 160, 220, 'Second Tier Metaphysicist Shoulder Cover', 213661), (222637, 222638, 160, 220, 'Second Tier Metaphysicist Sleeves', 213481), (222793, 222794, 160, 220, 'Second Tier Nano Technician Body Armor', 213525), (222797, 222798, 160, 220, 'Second Tier Nano Technician Boots', 213565), (222785, 222786, 160, 220, 'Second Tier Nano Technician Gloves', 21871), (222783, 222784, 160, 220, 'Second Tier Nano Technician Helmet', 213647), (222801, 222802, 160, 220, 'Second Tier Nano Technician Pants', 213590), (222774, 222775, 160, 220, 'Second Tier Nano Technician Shoulderpad', 160905), (222789, 222790, 160, 220, 'Second Tier Nano Technician Sleeves', 213484), (222903, 222904, 160, 220, 'Second Tier Shade Arm Tattoos', 226599), (222901, 222902, 160, 220, 'Second Tier Shade Body Wraps', 226615), (222899, 222900, 160, 220, 'Second Tier Shade Foot Covers', 226632), (222907, 222908, 160, 220, 'Second Tier Shade Hand Wraps', 226647), (222911, 222912, 160, 220, 'Second Tier Shade Headgear', 214730), (222897, 222898, 160, 220, 'Second Tier Shade Leg Covers', 226662), (222913, 222914, 160, 220, 'Second Tier Shade Shoulder Tattoos', 226649), (216996, 216997, 160, 220, 'Second Tier Soldier Jobe Body Armor', 213528), (216994, 216995, 160, 220, 'Second Tier Soldier Jobe Boots', 213568), (217004, 217005, 160, 220, 'Second Tier Soldier Jobe Cuirass', 216899), (217000, 217001, 160, 220, 'Second Tier Soldier Jobe Gloves', 37630), (217002, 217003, 160, 220, 'Second Tier Soldier Jobe Helmet', 213650), (216992, 216993, 160, 220, 'Second Tier Soldier Jobe Pants', 213610), (216998, 216999, 160, 220, 'Second Tier Soldier Jobe Sleeves', 213489), (218913, 218914, 160, 220, 'Second Tier Trader Body Armor', 213531), (218911, 218912, 160, 220, 'Second Tier Trader Boots', 213571), (218917, 218918, 160, 220, 'Second Tier Trader Gloves', 37630), (218919, 218920, 160, 220, 'Second Tier Trader Helmet', 213653), (218909, 218910, 160, 220, 'Second Tier Trader Pants', 213454), (218921, 218922, 160, 220, 'Second Tier Trader Shoulderpad', 160886), (218915, 218916, 160, 220, 'Second Tier Trader Sleeves', 213490), (158089, 158089, 1, 1, 'Second Update Syringe', 11716), (279945, 279945, 1, 1, 'Second Wave of Adds', 84059), (214896, 214896, 1, 1, 'Second piece of Gilthars Blueprint', 130748), (122621, 122622, 61, 80, 'Second-Hand Aero Borealis Corona', 33147), (123634, 123635, 61, 80, 'Second-Hand BBI Sigma III', 13318), (124757, 124758, 81, 100, 'Second-Hand BBI WMMA CAW', 13311), (121631, 121632, 24, 46, 'Second-Hand Battle Axe', 21135), (122507, 122508, 61, 80, 'Second-Hand Biogun', 38056), (122013, 122014, 61, 80, 'Second-Hand Blackened Blaster', 13321), (139702, 139702, 1, 1, 'Second-Hand Blackened Blaster Construction Manual', 37933), (122089, 122090, 61, 80, 'Second-Hand Blackened Blaster Rifle', 13313), (161255, 161255, 1, 1, 'Second-Hand Blackened Blaster Rifle Construction Manual', 37933), (121994, 121995, 61, 80, 'Second-Hand Blackened Miniblaster', 13316), (139510, 139510, 1, 1, 'Second-Hand Blackened Miniblaster Construction Manual', 37933), (122602, 122603, 61, 80, 'Second-Hand Blackhole Mk IX', 33171), (141240, 141240, 1, 1, 'Second-Hand Blackhole Mk IX Construction Manual', 37933), (122773, 122774, 61, 80, 'Second-Hand Bow-Blaster', 114013), (121861, 121862, 61, 80, 'Second-Hand Chunkprojector', 21144), (138815, 138815, 1, 1, 'Second-Hand Chunkprojector Construction Manual', 37933), (122203, 122204, 121, 160, 'Second-Hand DNA-Locked Blaster Rifle', 13313), (123101, 123102, 61, 80, 'Second-Hand DNA-Targeted Executioner Pistol', 13323), (121804, 121805, 61, 80, 'Second-Hand Disaffiliation Sniper', 21146), (137995, 137995, 1, 1, 'Second-Hand Disaffiliation Sniper Construction Manual', 37933), (249839, 249840, 61, 80, 'Second-Hand Dual Razor Disaffiliation Sniper', 21146), (122127, 122128, 61, 80, 'Second-Hand E-Beamer', 21150), (138355, 138355, 1, 1, 'Second-Hand E-Beamer Construction Manual', 37933), (122469, 122470, 61, 80, 'Second-Hand El Diablo', 31812), (122450, 122451, 61, 80, 'Second-Hand El Dieu', 31809), (122241, 122242, 61, 80, 'Second-Hand Electrical Pacifier', 21150), (123177, 123178, 61, 80, 'Second-Hand Electron-Charged Pistol', 13316), (214138, 214138, 1, 1, 'Second-Hand Electron-Charged Pistol Construction Manual', 37933), (123311, 123312, 61, 80, 'Second-Hand Enriched Uranium Sprayer', 21148), (122260, 122261, 61, 80, 'Second-Hand Eradicator XCI-52', 13314), (124738, 124739, 81, 100, 'Second-Hand FN P00', 21148), (121918, 121919, 61, 80, 'Second-Hand Flamethrower', 19800), (139322, 139322, 1, 1, 'Second-Hand Flamethrower Construction Manual', 37933), (124882, 124883, 91, 110, 'Second-Hand GE ME30 Mom', 13322), (124975, 124976, 81, 100, 'Second-Hand GE XM-559 Man-Portable Laser', 21151), (121937, 121938, 61, 80, 'Second-Hand Gatling Saw 20k', 84025), (122873, 122874, 61, 80, 'Second-Hand Grenade-Thrower', 13336), (141559, 141559, 1, 1, 'Second-Hand Grenade-Thrower Construction Manual', 37933), (160226, 160227, 51, 100, 'Second-Hand Heavy Chop', 21143), (123139, 123140, 69, 86, 'Second-Hand Heavy Gamma-Beamer', 33158), (121899, 121900, 61, 80, 'Second-Hand Heavy Grinner', 21147), (139120, 139120, 1, 1, 'Second-Hand Heavy Grinner Construction Manual', 37933), (122678, 122679, 61, 80, 'Second-Hand Heavy Lead Sprayer', 21148), (141414, 141414, 1, 1, 'Second-Hand Heavy Lead Sprayer Construction Manual', 37933), (124937, 124938, 81, 100, 'Second-Hand IEC Flashpoint Laser Rifle', 33146), (123501, 123502, 61, 80, 'Second-Hand IMI Desert Reet 1000', 13334), (122488, 122489, 61, 80, 'Second-Hand Ingram Blaster 23-X', 13317), (125013, 125014, 81, 100, 'Second-Hand Joint Clans Exocet II', 85167), (125032, 125033, 81, 100, 'Second-Hand Joint Clans Patriot', 114013), (248565, 248566, 61, 80, 'Second-Hand Kaetans Supernova', 33146), (124651, 124652, 81, 100, 'Second-Hand Kalinkanov ZU-113 Security Weapon', 21148), (122716, 122717, 61, 80, 'Second-Hand Kevlar Bow', 85167), (123539, 123540, 69, 86, 'Second-Hand Khemo-Tech Model 07 (Pocket 20)', 113995), (123520, 123521, 61, 80, 'Second-Hand Khemo-Tech Model 200', 113994), (123558, 123559, 69, 86, 'Second-Hand Knights Inc. Special-Purpose Pistol 29029', 13318), (122987, 122988, 61, 80, 'Second-Hand Kolt 58 Magnum', 13334), (141708, 141708, 1, 1, 'Second-Hand Kolt 58 Magnum Construction Manual', 37933), (122279, 122280, 61, 80, 'Second-Hand Kolt PDW-37', 13315), (140488, 140488, 1, 1, 'Second-Hand Kolt PDW-37 Construction Manual', 37933), (123158, 123159, 83, 98, 'Second-Hand Light Beamer Pistol', 33157), (142493, 142493, 1, 1, 'Second-Hand Light Beamer Pistol Construction Manual', 37933), (124606, 124607, 51, 100, 'Second-Hand MTI MP200', 21147), (124689, 124690, 81, 100, 'Second-Hand MTI MPK-22 Briefcase Gun', 13311), (124632, 124633, 71, 100, 'Second-Hand MTI UMP22', 114016), (123482, 123483, 61, 80, 'Second-Hand MTI USP 21', 113993), (124670, 124671, 81, 100, 'Second-Hand Malorian Arms M25 Goodgun', 33153), (122431, 122432, 61, 80, 'Second-Hand Mausser Particle Streamer', 31807), (140850, 140850, 1, 1, 'Second-Hand Mausser Particle Streamer Construction Manual', 37933), (123044, 123045, 61, 80, 'Second-Hand Medium Shotgun', 13340), (122184, 122185, 61, 80, 'Second-Hand Megajolt', 13322), (140272, 140272, 1, 1, 'Second-Hand Megajolt Construction Manual', 37933), (248595, 248596, 61, 80, 'Second-Hand Merren Flamethrower', 19800), (123025, 123026, 61, 80, 'Second-Hand Mini-Shotgun', 13341), (142127, 142127, 1, 1, 'Second-Hand Mini-Shotgun Construction Manual', 37933), (122892, 122893, 61, 80, 'Second-Hand Minielectronium', 13323), (122336, 122337, 61, 80, 'Second-Hand Minigrinner', 33156), (140647, 140647, 1, 1, 'Second-Hand Minigrinner Construction Manual', 37933), (123215, 123216, 95, 109, 'Second-Hand Nano-Charged Assault Rifle', 45783), (123235, 123236, 95, 109, 'Second-Hand Nano-Charged Rifle', 45782), (123425, 123426, 61, 80, 'Second-Hand Netgun', 13322), (124719, 124720, 81, 100, 'Second-Hand Nord Armwerk MAX', 21144), (123273, 123274, 67, 85, 'Second-Hand Nova Flow - Mk IV', 33144), (123577, 123578, 69, 86, 'Second-Hand OT 0220 22mm Combat Magnum', 31808), (123463, 123464, 61, 80, 'Second-Hand OT Boomer+.90AE', 113995), (124899, 124900, 81, 100, 'Second-Hand OT M-00 Crystal', 13336), (124806, 124807, 81, 100, 'Second-Hand OT M-110 Renegade SAW', 13336), (124825, 124826, 81, 100, 'Second-Hand OT M-70 HardRain GPMG', 13336), (124568, 124569, 81, 100, 'Second-Hand OT Saladin', 21148), (123855, 123856, 1, 39, 'Second-Hand Old English Trading Co.', 13315), (122298, 122299, 61, 80, 'Second-Hand Omni-Flamer Mk IV', 33161), (122526, 122527, 61, 80, 'Second-Hand Omni-Flamer Strategic', 33159), (122545, 122546, 61, 80, 'Second-Hand Omni-Pol Standard Flamer', 33160), (125089, 125090, 81, 100, 'Second-Hand Oneida Razor Half-Bow', 114013), (123615, 123616, 61, 80, 'Second-Hand PNG M1007A1 Tactical Revolver', 113997), (124863, 124864, 81, 100, 'Second-Hand Planet Gripon Arms Hard-Boomer', 13311), (121880, 121881, 61, 80, 'Second-Hand Plasmaprojector', 21145), (249855, 249856, 61, 80, 'Second-Hand Razorback Disaffiliation Sniper', 21146), (125051, 125052, 81, 100, 'Second-Hand Reet-Tech Junior Urban Crossbow', 114013), (124994, 124995, 81, 100, 'Second-Hand Reet-Tech Stryker X', 85167), (125070, 125071, 81, 100, 'Second-Hand Reet-Tech Venom Compound Bow', 85167), (123672, 123673, 61, 80, 'Second-Hand River MV', 29116), (123691, 123692, 61, 80, 'Second-Hand Seburo Bobsons', 13330), (124706, 124707, 48, 59, 'Second-Hand Seburo C-19a', 21149), (123596, 123597, 69, 86, 'Second-Hand Sentinel 20mm Snub Pistol', 31811), (123653, 123654, 61, 80, 'Second-Hand Sentinels ETE Strike Gun', 31810), (248527, 248528, 61, 80, 'Second-Hand Sharky''s Kevlar Bow', 85167), (122659, 122660, 61, 80, 'Second-Hand Silver Miniblaster', 13316), (121842, 121843, 61, 80, 'Second-Hand Sleekblaster', 13329), (138611, 138611, 1, 1, 'Second-Hand Sleekblaster Construction Manual', 37933), (123082, 123083, 61, 80, 'Second-Hand Sleekblaster Major', 13328), (142311, 142311, 1, 1, 'Second-Hand Sleekblaster Major Construction Manual', 37933), (121823, 121824, 61, 80, 'Second-Hand Sleekblaster Minor', 13327), (138210, 138210, 1, 1, 'Second-Hand Sleekblaster Minor Construction Manual', 37933), (123292, 123293, 83, 98, 'Second-Hand Slugger', 33154), (122317, 122318, 61, 80, 'Second-Hand Stanton Stunner IV', 13313), (122222, 122223, 61, 80, 'Second-Hand Stigma Rifle', 33155), (121785, 121786, 61, 80, 'Second-Hand Subturbine', 21151), (137745, 137745, 1, 1, 'Second-Hand Subturbine Construction Manual', 37933), (122564, 122565, 61, 80, 'Second-Hand Sunburst Mk III', 33148), (143850, 143851, 61, 80, 'Second-Hand Sunburst Mk IV', 33148), (122583, 122584, 61, 80, 'Second-Hand Supernova Mk VI', 33146), (141044, 141044, 1, 1, 'Second-Hand Supernova Mk VI Construction Manual', 37933), (123196, 123197, 61, 80, 'Second-Hand Suppressor', 31807), (141908, 141908, 1, 1, 'Second-Hand Suppressor Construction Manual', 37933), (124956, 124957, 81, 100, 'Second-Hand Techtronica Neural Disruptor', 21145), (121667, 121668, 24, 46, 'Second-Hand Thagh Whings', 21138), (143314, 143314, 1, 1, 'Second-Hand Thagh Whings Construction Manual', 37932), (122640, 122641, 61, 80, 'Second-Hand The Original Plasma-Emitter', 33145), (122032, 122033, 61, 80, 'Second-Hand Triplejolt', 13320), (139906, 139906, 1, 1, 'Second-Hand Triplejolt Construction Manual', 37933), (121576, 121577, 47, 69, 'Second-Hand Tripler', 13344), (165071, 165071, 1, 1, 'Second-Hand Tripler Construction Manual', 37932), (124787, 124788, 81, 100, 'Second-Hand Tsunami Raiden MP-Drum', 13311), (123444, 123445, 61, 80, 'Second-Hand Ultra-Light Missile Pistol Raid 9-X', 13315), (124844, 124845, 81, 100, 'Second-Hand Vektor M-31 Automatic Grenade Launcher', 13336), (124918, 124919, 81, 100, 'Second-Hand Westinghouse IM-50 Plasma Burner', 33146), (248614, 248615, 61, 80, 'Second-Hand Xnemth Plasmaprojector', 21145), (128879, 128880, 81, 100, 'Second-hand Arwen MM-50 Grenade Launcher', 13336), (128766, 128767, 81, 100, 'Second-hand Fabrique Des Armes Bizon 20-19', 21144), (128723, 128724, 81, 100, 'Second-hand Galahad Inc. 077 Personal Weapon', 21148), (128747, 128748, 81, 100, 'Second-hand Galahad Inc. Tactical Machine Pistol', 21147), (128663, 128664, 81, 100, 'Second-hand HSR Arms Tech Assault IV', 21148), (128682, 128683, 81, 100, 'Second-hand HSR Arms Tech Assault V', 21148), (128616, 128617, 81, 100, 'Second-hand MTI G-36K', 33155), (128866, 128867, 66, 87, 'Second-hand MTI MPK-22', 33153), (253223, 253224, 120, 149, 'Second-hand Nizno''s Bomb Blaster', 13336), (123710, 123711, 70, 149, 'Second-hand OT Biomag', 38055), (128800, 128801, 81, 100, 'Second-hand OT Cobra M-33', 21148), (128644, 128645, 81, 100, 'Second-hand Seburo C-99a', 21144), (128898, 128899, 81, 100, 'Second-hand Steiner LM-5 Assault Laser', 33171), (128819, 128820, 81, 100, 'Second-hand Zastaba M0-2 Assault Weapon (Zero)', 33153), (204873, 204873, 10, 10, 'Secondary Eyemutant Heart', 144702), (204872, 204872, 10, 10, 'Secondary Eyemutant Heart Blood Plasma', 19861), (269631, 269631, 1, 1, 'Secondary Infrared Filter', 269421), (152274, 152275, 1, 200, 'Secretary Assistant Eye', 149945), (288548, 288548, 1, 1, 'Sector 7 Alien Experience Quest Reward', 284425), (288547, 288547, 1, 1, 'Sector 7 Repeatable Alien Experience Reward', 284425), (258767, 258767, 1, 1, 'Secure Terminal Hacking Protocols', 156323), (165118, 165119, 1, 200, 'Secured May Fly Throwing Grenade', 131256), (285502, 285502, 1, 1, 'SecuriChest Access Card', 43133), (258761, 258761, 1, 1, 'Security Camera', 156546), (258739, 258739, 1, 1, 'Security Clearance ID Card - Alpha Clearance', 99183), (258784, 258784, 1, 1, 'Security Clearance ID Card - Beta Clearance', 99183), (258786, 258786, 1, 1, 'Security Clearance ID Card - Delta Clearance', 99183), (258785, 258785, 1, 1, 'Security Clearance ID Card - Gamma Clearance', 99183), (258764, 258764, 1, 1, 'Security Clearance ID Card Blank', 99183), (251955, 251955, 1, 1, 'Security Pass - Biodome 1', 43135), (251956, 251956, 1, 1, 'Security Pass - Biodome 2', 43135), (251957, 251957, 1, 1, 'Security Pass - Biodome 3', 43135), (251978, 251978, 1, 1, 'Security Pass - Research Dome 1', 43127), (251976, 251976, 1, 1, 'Security Pass - Research Dome 3', 43127), (251977, 251977, 1, 1, 'Security Pass -Research Dome 2', 43127), (289600, 289600, 1, 1, 'Seed Box', 289655), (289601, 289601, 1, 1, 'Seed Box With One Plant Sample', 289656), (289603, 289603, 1, 1, 'Seed Box With Three Plant Samples', 289654), (289602, 289602, 1, 1, 'Seed Box With Two Plant Samples', 289653), (137197, 137198, 1, 200, 'Seek-and-destroy Targeting Scope', 130783), (226119, 226120, 1, 500, 'Seismic Smash', 239075), (226121, 226122, 1, 500, 'Seismic Smash', 239075), (226123, 226124, 1, 500, 'Seismic Smash', 239075), (160401, 160402, 1, 200, 'Sekutek Chilled Plasteel Armor Boots', 22885), (160393, 160394, 1, 200, 'Sekutek Chilled Plasteel Armor Gloves', 31654), (160395, 160396, 1, 200, 'Sekutek Chilled Plasteel Armor Helmet', 31736), (160397, 160398, 1, 200, 'Sekutek Chilled Plasteel Armor Pants', 22920), (160399, 160400, 1, 200, 'Sekutek Chilled Plasteel Armor Sleeves', 31642), (160391, 160392, 1, 200, 'Sekutek Chilled Plasteel Body Armor', 31646), (137279, 137280, 1, 200, 'Self-Cleaning KO-CR Device', 130743), (294761, 294761, 1, 1, 'Self-Deploying Picnic Basket', 294780), (303647, 303647, 1, 1, 'Self-Deploying Tent', 303681), (275475, 275475, 1, 1, 'Self-Extracting Positioning Tuner', 156550), (137283, 137284, 1, 200, 'Self-Repairing Ultra-X', 130741), (161618, 161619, 1, 49, 'Sellers Crystal I', 161138), (161620, 161621, 50, 99, 'Sellers Crystal II', 161138), (161622, 161623, 100, 149, 'Sellers Crystal III', 161138), (161624, 161625, 150, 199, 'Sellers Crystal IV', 161138), (161626, 161626, 200, 200, 'Sellers Crystal V', 161138), (275464, 275464, 1, 1, 'Semi Working Cellular Assembler', 205510), (206733, 206734, 1, 250, 'Semi-Finished First-Aid Kit', 11748), (207504, 207505, 1, 400, 'Semi-Finished Nano Kit', 11751), (207501, 207503, 1, 400, 'Semi-Finished Nano Recharger', 37991), (206737, 206738, 1, 250, 'Semi-Finished Treatment Laboratory', 37985), (202578, 202578, 150, 150, 'Semi-Sentient Service Tower Brain', 203577), (202579, 202579, 150, 150, 'Semi-Sentient Service Tower Library', 83297), (297053, 297053, 1, 1, 'Send Mail', 33162), (250158, 250159, 141, 160, 'Senior Adapting Notum Lever', 33163), (122705, 122706, 141, 160, 'Senior Advanced Baseballbat', 13335), (122629, 122630, 141, 160, 'Senior Aero Borealis Corona', 33147), (249033, 249034, 171, 199, 'Senior Arctic Metaplast Mace', 13333), (152325, 152325, 200, 200, 'Senior Assault Partizan', 21140), (123642, 123643, 141, 160, 'Senior BBI Sigma III', 13318), (123338, 123339, 38, 41, 'Senior Banjo', 85159), (249012, 249013, 141, 160, 'Senior Bio-Energy Shield', 33152), (122002, 122003, 141, 160, 'Senior Blackened Miniblaster', 13316), (139580, 139580, 1, 1, 'Senior Blackened Miniblaster Construction Manual', 136329), (122743, 122744, 141, 160, 'Senior Blackjack', 33169), (122938, 122939, 141, 160, 'Senior Blackjohn', 33170), (123128, 123129, 141, 160, 'Senior Bow Split', 21134), (144160, 144161, 141, 160, 'Senior Burning Copper Katana', 113998), (122078, 122079, 141, 160, 'Senior Clean Slay Axe', 21141), (122154, 122155, 141, 160, 'Senior Cutlass', 13347), (123109, 123110, 141, 160, 'Senior DNA-Targeted Executioner Pistol', 13323), (130139, 130140, 141, 160, 'Senior Denunciatory Spear', 33163), (122173, 122174, 141, 160, 'Senior E-Blade', 13337), (122477, 122478, 141, 160, 'Senior El Diablo', 31812), (122458, 122459, 141, 160, 'Senior El Dieu', 31809), (123185, 123186, 141, 160, 'Senior Electron-Charged Pistol', 13316), (141816, 141816, 1, 1, 'Senior Electron-Charged Pistol Construction Manual', 136329), (122420, 122421, 141, 160, 'Senior Energy Buckler', 33151), (122382, 122383, 141, 160, 'Senior Energy Shield', 33152), (122401, 122402, 141, 160, 'Senior Esoteric Energy Buckler', 33149), (142867, 142868, 131, 160, 'Senior Eye Wind Onehander', 13341), (150218, 150219, 121, 150, 'Senior Fayalite Flamberge', 113987), (144115, 144116, 141, 160, 'Senior Freedom Arms 4200', 113997), (130048, 130049, 150, 199, 'Senior G-Staff', 136738), (122819, 122820, 141, 160, 'Senior Gofle-Prod', 33168), (123357, 123358, 141, 160, 'Senior Hand Axe', 13345), (121736, 121737, 141, 160, 'Senior Haxor 9922', 13339), (123509, 123510, 141, 160, 'Senior IMI Desert Reet 1000', 13334), (206603, 206604, 141, 160, 'Senior Improved Clean Slay Axe', 21141), (161749, 161750, 141, 160, 'Senior Improved Stun-Baton', 13348), (122496, 122497, 141, 160, 'Senior Ingram Blaster 23-X', 13317), (121983, 121984, 141, 160, 'Senior Katana', 13326), (123547, 123548, 141, 158, 'Senior Khemo-Tech Model 07 (Pocket 20)', 113995), (123528, 123529, 141, 160, 'Senior Khemo-Tech Model 200', 113994), (152400, 152401, 161, 180, 'Senior Khemo-Tech Platinum Wakisashi', 113983), (123566, 123567, 141, 158, 'Senior Knights Inc. Special-Purpose Pistol 29029', 13318), (122995, 122996, 141, 160, 'Senior Kolt 58 Magnum', 13334), (142023, 142023, 1, 1, 'Senior Kolt 58 Magnum Construction Manual', 136329), (122287, 122288, 141, 160, 'Senior Kolt PDW-37', 13315), (140558, 140558, 1, 1, 'Senior Kolt PDW-37 Construction Manual', 136329), (123376, 123377, 141, 160, 'Senior Lead Pipe', 85166), (123166, 123167, 147, 162, 'Senior Light Beamer Pistol', 33157), (142551, 142551, 1, 1, 'Senior Light Beamer Pistol Construction Manual', 136329), (122059, 122060, 141, 160, 'Senior Longmoon', 13338), (123490, 123491, 141, 160, 'Senior MTI USP 21', 113993), (122957, 122958, 141, 160, 'Senior Mace', 13333), (123395, 123396, 141, 160, 'Senior Meat-Cleaver', 85169), (125376, 125377, 141, 160, 'Senior Merchant Executioner', 114003), (125325, 125326, 141, 160, 'Senior Merchant Squibber', 114007), (128971, 128972, 141, 160, 'Senior Merchant Warblade', 114011), (122363, 122364, 141, 160, 'Senior Metaphysic Energy Shield', 33150), (142852, 142853, 171, 199, 'Senior Metaplast Mace', 13333), (121774, 121775, 141, 160, 'Senior Mini Axe', 13345), (143561, 143561, 1, 1, 'Senior Mini Axe Construction Manual', 136329), (122900, 122901, 141, 160, 'Senior Minielectronium', 13323), (122344, 122345, 141, 160, 'Senior Minigrinner', 33156), (140727, 140727, 1, 1, 'Senior Minigrinner Construction Manual', 136329), (123262, 123263, 158, 171, 'Senior Nano-Charged Stun Glove', 45784), (130101, 130102, 141, 160, 'Senior Native Alloy Staff', 136738), (130120, 130121, 141, 160, 'Senior Notum Lever', 33163), (123014, 123015, 141, 160, 'Senior Notum Spear', 21135), (143811, 143811, 1, 1, 'Senior Notum Spear Construction Manual', 136329), (122976, 122977, 141, 160, 'Senior Notum Staff', 33162), (143725, 143725, 1, 1, 'Senior Notum Staff Construction Manual', 136329), (123471, 123472, 141, 160, 'Senior OT Boomer+.90AE', 113995), (124593, 124594, 141, 160, 'Senior OT Viper IX', 21148), (160926, 160927, 1, 200, 'Senior Omni Intern-Op Coat', 27658), (122306, 122307, 141, 160, 'Senior Omni-Flamer Mk IV', 33161), (123623, 123624, 141, 160, 'Senior PNG M1007A1 Tactical Revolver', 113997), (128933, 128934, 141, 160, 'Senior Peasant Executioner', 114001), (128952, 128953, 141, 160, 'Senior Peasant Warblade', 114009), (125414, 125415, 141, 160, 'Senior Protector Executioner', 114002), (125357, 125358, 141, 160, 'Senior Protector Squibber', 114006), (129009, 129010, 141, 160, 'Senior Protector Warblade', 114010), (125395, 125396, 141, 160, 'Senior Rider Executioner', 114004), (128990, 128991, 141, 160, 'Senior Rider Warblade', 114012), (121755, 121756, 141, 160, 'Senior Right Slice', 21142), (143528, 143528, 1, 1, 'Senior Right Slice Construction Manual', 136329), (123071, 123072, 141, 160, 'Senior Ritual Krys Knife', 13346), (123680, 123681, 141, 160, 'Senior River MV', 29116), (150203, 150204, 121, 150, 'Senior Santiago Crossblade', 113983), (123699, 123700, 141, 160, 'Senior Seburo Bobsons', 13330), (123661, 123662, 141, 160, 'Senior Sentinels ETE Strike Gun', 31810), (122667, 122668, 141, 160, 'Senior Silver Miniblaster', 13316), (121964, 121965, 141, 160, 'Senior Slank Chop', 21143), (143623, 143623, 1, 1, 'Senior Slank Chop Construction Manual', 136329), (129040, 129041, 141, 160, 'Senior Sledgehammer', 33167), (121850, 121851, 141, 160, 'Senior Sleekblaster', 13329), (138693, 138693, 1, 1, 'Senior Sleekblaster Construction Manual', 136329), (123090, 123091, 141, 160, 'Senior Sleekblaster Major', 13328), (142393, 142393, 1, 1, 'Senior Sleekblaster Major Construction Manual', 136329), (121831, 121832, 141, 160, 'Senior Sleekblaster Minor', 13327), (138259, 138259, 1, 1, 'Senior Sleekblaster Minor Construction Manual', 136329), (160495, 160496, 161, 180, 'Senior Sleekmaster Classic', 13329), (122116, 122117, 141, 160, 'Senior Stabber', 13346), (122862, 122863, 141, 160, 'Senior Stun-Baton', 13348), (122919, 122920, 141, 160, 'Senior Support Beam', 33143), (144077, 144078, 151, 174, 'Senior Survival Axe', 40782), (249051, 249052, 151, 174, 'Senior Survival Axe of Genevra', 40782), (122800, 122801, 141, 160, 'Senior Sword of Sir Galahad', 40781), (144096, 144097, 141, 180, 'Senior Tanto', 113986), (152746, 152746, 200, 200, 'Senior Tear Blade', 13347), (122648, 122649, 141, 160, 'Senior The Original Plasma-Emitter', 33145), (122843, 122844, 141, 160, 'Senior Titanium Crowbar', 33166), (122040, 122041, 141, 160, 'Senior Triplejolt', 13320), (139984, 139984, 1, 1, 'Senior Triplejolt Construction Manual', 136329), (122762, 122763, 141, 160, 'Senior Two-Handed Blackjack', 33170), (123452, 123453, 141, 160, 'Senior Ultra-Light Missile Pistol Raid 9-X', 13315), (249075, 249076, 141, 180, 'Senior Variable Density Tanto', 113986), (150268, 150269, 141, 160, 'Senior Wall-Blade', 113983), (129652, 129653, 161, 180, 'Senior Wen-Wen', 85161), (121717, 121718, 141, 160, 'Senior Whings', 21139), (142631, 142645, 1, 199, 'Senpai Primus Decus Armor Boots', 13275), (142650, 142649, 1, 199, 'Senpai Primus Decus Armor Coat', 96107), (142644, 142643, 1, 199, 'Senpai Primus Decus Armor Gloves', 13287), (120574, 142642, 1, 199, 'Senpai Primus Decus Armor Helmet', 96143), (142641, 142640, 1, 199, 'Senpai Primus Decus Armor Pants', 161025), (142652, 142651, 1, 199, 'Senpai Primus Decus Armor Sleeves', 13237), (142648, 142647, 1, 199, 'Senpai Primus Decus Body Armor', 13258), (142672, 142671, 1, 199, 'Senpai Secundus Decus Armor Boots', 13275), (142676, 142675, 1, 199, 'Senpai Secundus Decus Armor Coat', 96108), (142670, 142669, 1, 199, 'Senpai Secundus Decus Armor Gloves', 13287), (120575, 142668, 1, 199, 'Senpai Secundus Decus Armor Helmet', 96141), (142667, 142666, 1, 199, 'Senpai Secundus Decus Armor Pants', 161024), (142678, 142677, 1, 199, 'Senpai Secundus Decus Armor Sleeves', 13237), (142674, 142673, 1, 199, 'Senpai Secundus Decus Body Armor', 13258), (142660, 142659, 1, 199, 'Senpai Tertius Decus Armor Boots', 13275), (142653, 142663, 1, 199, 'Senpai Tertius Decus Armor Coat', 96106), (142658, 142657, 1, 199, 'Senpai Tertius Decus Armor Gloves', 13287), (120573, 142656, 1, 199, 'Senpai Tertius Decus Armor Helmet', 96140), (142655, 142654, 1, 199, 'Senpai Tertius Decus Armor Pants', 161026), (142665, 142664, 1, 199, 'Senpai Tertius Decus Armor Sleeves', 13237), (142662, 142661, 1, 199, 'Senpai Tertius Decus Body Armor', 13258), (101797, 101798, 1, 200, 'Sense Cluster - Bright (Waist)', 35993), (101795, 101796, 1, 200, 'Sense Cluster - Faded (Head)', 35992), (101799, 101800, 1, 200, 'Sense Cluster - Shiny (Chest)', 35994), (277173, 277174, 1, 300, 'Sense Memory Cell', 276921), (165969, 165970, 201, 300, 'Sense Refined Cluster - Bright (Waist)', 35993), (165967, 165968, 201, 300, 'Sense Refined Cluster - Faded (Head)', 35992), (165971, 165972, 201, 300, 'Sense Refined Cluster - Shiny (Chest)', 35994), (246927, 246927, 1, 1, 'Sensitive Cybernetic Fingertips', 205526), (258769, 258769, 1, 1, 'Sensitive Data', 163064), (101509, 101510, 1, 200, 'Sensory Impr Cluster - Bright (Eye)', 35993), (101507, 101508, 1, 200, 'Sensory Impr Cluster - Faded (Chest)', 35992), (101511, 101512, 1, 200, 'Sensory Impr Cluster - Shiny (Head)', 35994), (165669, 165670, 201, 300, 'Sensory Impr Refined Cluster - Bright (Eye)', 35993), (165667, 165668, 201, 300, 'Sensory Impr Refined Cluster - Faded (Chest)', 35992), (165671, 165672, 201, 300, 'Sensory Impr Refined Cluster - Shiny (Head)', 35994), (277838, 277839, 1, 300, 'Sensory Improvement Memory Cell', 276920), (203647, 203648, 1, 200, 'Sentient Cold Stone', 25800), (202782, 202782, 249, 249, 'Sentient Corrosion Sprayer', 33161), (202783, 202783, 250, 250, 'Sentient Corrosion Sprayer', 33161), (202589, 202590, 200, 300, 'Sentient Corrosion Turret Controller', 203580), (203084, 203085, 200, 300, 'Sentient Corrosive Turret', 202227), (203086, 203087, 200, 300, 'Sentient Corrosive Turret', 202227), (123598, 123599, 87, 104, 'Sentinel 20mm Snub Pistol', 31811), (272120, 272121, 1, 300, 'Sentinel 20mm Snub Pistol - 000', 31811), (272122, 272123, 1, 300, 'Sentinel 20mm Snub Pistol - 008', 31811), (272124, 272125, 1, 300, 'Sentinel 20mm Snub Pistol - 00C', 31811), (272126, 272127, 1, 300, 'Sentinel 20mm Snub Pistol - 40C', 31811), (272128, 272129, 1, 300, 'Sentinel 20mm Snub Pistol - C0C', 31811), (118180, 142635, 1, 200, 'Sentinel Armor Boots', 31746), (118195, 142634, 1, 200, 'Sentinel Armor Helmet', 31539), (118181, 142633, 1, 200, 'Sentinel Armor Pants', 31748), (118184, 142637, 1, 200, 'Sentinel Armor Sleeves', 31747), (199381, 199381, 215, 215, 'Sentinel Bau Charger Armor Boots', 22878), (199402, 199402, 215, 215, 'Sentinel Bau Charger Armor Gloves', 22939), (199423, 199423, 215, 215, 'Sentinel Bau Charger Armor Helmet', 31738), (199444, 199444, 215, 215, 'Sentinel Bau Charger Armor Pants', 22928), (199465, 199465, 215, 215, 'Sentinel Bau Charger Armor Sleeves', 22889), (199486, 199486, 215, 215, 'Sentinel Bau Charger Body Armor', 22981), (199507, 199507, 215, 215, 'Sentinel Bau Charger Female Body Armor', 22942), (118183, 142636, 1, 200, 'Sentinel Body Armor', 31749), (271617, 271618, 1, 300, 'Sentinels ETE Strike Gun - 000', 31810), (271621, 271622, 1, 300, 'Sentinels ETE Strike Gun - 401', 31810), (271623, 271624, 1, 300, 'Sentinels ETE Strike Gun - C01', 31810), (124512, 124513, 21, 40, 'Sentinels Personal Edition', 33153), (272150, 272151, 1, 300, 'Sentinels Personal Edition G1 - 000', 33153), (272152, 272153, 1, 300, 'Sentinels Personal Edition G1 - 008', 33153), (272154, 272155, 1, 300, 'Sentinels Personal Edition G1 - 00C', 33153), (272156, 272157, 1, 300, 'Sentinels Personal Edition G1 - 40C', 33153), (272158, 272159, 1, 300, 'Sentinels Personal Edition G1 - C0C', 33153), (124514, 124515, 41, 60, 'Sentinels Personal Edition G1-B', 33153), (124516, 124517, 61, 80, 'Sentinels Personal Edition G1-B6', 33153), (124520, 124521, 101, 120, 'Sentinels Personal Edition G1-C-42', 33153), (124518, 124519, 81, 100, 'Sentinels Personal Edition G1-C27', 33153), (124522, 124523, 121, 140, 'Sentinels Personal Edition G1-Pro', 33153), (124524, 124525, 141, 160, 'Sentinels Personal Edition G1-Pro IV', 33153), (124526, 124527, 161, 199, 'Sentinels Personal Edition G1-Pro VII', 33153), (124528, 124528, 200, 200, 'Sentinels Personal Edition G1-Pro X', 33153), (226382, 226382, 1, 1, 'Seppuku Slash', 239105), (296196, 296196, 1, 1, 'Seramyu''s T-shirt', 296199), (296198, 296198, 1, 1, 'Seramyu''s T-shirt Spawner', 296199), (214337, 214337, 300, 300, 'Seraph Bow', 213412), (248519, 248519, 1, 1, 'Seraphim Cleric''s Belly Dancing Outfit', 255290), (281820, 281820, 1, 1, 'Serenity Island Costume', 281826), (168415, 168415, 30, 30, 'Sergeant of Tir Ring', 290367), (211229, 211229, 300, 300, 'Serious Destruction', 13332), (207988, 207988, 140, 140, 'Serious Gravity', 13335), (304456, 304457, 1, 220, 'Serpentine Sneaking Boots', 304426), (304454, 304455, 1, 220, 'Serpentine Sneaking Gloves', 304428), (304444, 304445, 1, 220, 'Serpentine Sneaking Helmet', 304429), (304446, 304447, 1, 220, 'Serpentine Sneaking Legwear', 304430), (304448, 304449, 1, 220, 'Serpentine Sneaking Shoulderplate', 304431), (304452, 304453, 1, 220, 'Serpentine Sneaking Sleeves', 304424), (304450, 304451, 1, 220, 'Serpentine Sneaking Suit', 304425), (204564, 204564, 1, 1, 'Service Droid Controller', 99230), (214249, 214249, 300, 300, 'Service Energy Gauntlet', 210167), (231309, 231309, 1, 1, 'Service Excavator Area Healer', 130862), (202580, 202581, 75, 300, 'Service Tower Shell', 203582), (285728, 285728, 1, 1, 'Set Blue Name on NPC', 273626), (285727, 285727, 1, 1, 'Set Flag 265 Item', 273626), (288068, 288068, 1, 1, 'Set Flag 323 Item', 273626), (285920, 285920, 1, 1, 'Set Flag 395 Item', 273626), (284237, 284237, 1, 1, 'Set Flag 404 Item', 273626), (284235, 284235, 1, 1, 'Set Flag 405 Item', 273626), (285918, 285918, 1, 1, 'Set Flag 406 Item', 273626), (284419, 284419, 1, 1, 'Set Flag 407 Item', 273626), (286711, 286711, 1, 1, 'Set Flag 413 Item', 273626), (289366, 289366, 1, 1, 'Set Flag 415 Item', 273626), (275463, 275463, 1, 1, 'Set-and-Reset Flip-Flop', 205505), (130597, 130597, 1, 1, 'Setting Sun Sake', 37945), (121593, 121594, 24, 46, 'Setting-Moon Edge', 13343), (165467, 165467, 1, 1, 'Severed leg of the Grand Master', 144709), (220456, 220456, 74, 74, 'Severly Corroded Shadow Crystal (Accomplished Health Haggler)', 220429), (220500, 220500, 123, 123, 'Severly Corroded Shadow Crystal (Advanced Delayed Health Payment)', 220436), (220620, 220620, 103, 103, 'Severly Corroded Shadow Crystal (Advanced Health Freeloader)', 220436), (220593, 220593, 30, 30, 'Severly Corroded Shadow Crystal (Advanced Health Funnel)', 220422), (220799, 220799, 169, 169, 'Severly Corroded Shadow Crystal (Advanced Health Plunder)', 220436), (221899, 221899, 4, 4, 'Severly Corroded Shadow Crystal (Amateur Health Haggler)', 220422), (221682, 221682, 17, 17, 'Severly Corroded Shadow Crystal (Apprentice Health Haggler)', 220422), (221905, 221905, 24, 24, 'Severly Corroded Shadow Crystal (Apprentice: Electrical Engineering)', 220425), (221907, 221907, 27, 27, 'Severly Corroded Shadow Crystal (Apprentice: Field Quantum Physics)', 220425), (221906, 221906, 30, 30, 'Severly Corroded Shadow Crystal (Apprentice: Mechanical Engineering)', 220425), (221956, 221956, 33, 33, 'Severly Corroded Shadow Crystal (Apprentice: Pharmaceuticals)', 220425), (221908, 221908, 33, 33, 'Severly Corroded Shadow Crystal (Apprentice: Weapon Smithing)', 220425), (220982, 220982, 185, 185, 'Severly Corroded Shadow Crystal (Armor Trade-In)', 220413), (221947, 221947, 44, 44, 'Severly Corroded Shadow Crystal (Average Delayed Health Payment)', 220422), (220805, 220805, 7, 7, 'Severly Corroded Shadow Crystal (Balanced Striker)', 220424), (222279, 222279, 97, 97, 'Severly Corroded Shadow Crystal (Brain Bender)', 220432), (222280, 222280, 50, 50, 'Severly Corroded Shadow Crystal (Brain Swap)', 220425), (220465, 220465, 33, 33, 'Severly Corroded Shadow Crystal (Bright Shiny Sparkling Thing)', 220423), (221910, 221910, 96, 96, 'Severly Corroded Shadow Crystal (Bulk Trader)', 220432), (220524, 220524, 34, 34, 'Severly Corroded Shadow Crystal (Capable Health Haggler)', 220422), (222160, 222160, 37, 37, 'Severly Corroded Shadow Crystal (Commonplace Delayed Health Payment)', 220422), (222285, 222285, 176, 176, 'Severly Corroded Shadow Crystal (Control Ends and Means)', 220412), (222281, 222281, 74, 74, 'Severly Corroded Shadow Crystal (Deep Thought)', 220432), (222039, 222039, 70, 70, 'Severly Corroded Shadow Crystal (Delayed Health Payment)', 220429), (222244, 222244, 109, 109, 'Severly Corroded Shadow Crystal (Detain Customer)', 220437), (221204, 221204, 20, 20, 'Severly Corroded Shadow Crystal (Distract with Trinkets)', 220423), (221990, 221990, 47, 47, 'Severly Corroded Shadow Crystal (Distracting Baubles)', 220423), (220663, 220663, 159, 159, 'Severly Corroded Shadow Crystal (Draw AC (Advanced))', 220413), (221277, 221277, 165, 165, 'Severly Corroded Shadow Crystal (Draw AC (Greater))', 220413), (220839, 220839, 179, 179, 'Severly Corroded Shadow Crystal (Draw AC (Invasive))', 220413), (222157, 222157, 149, 149, 'Severly Corroded Shadow Crystal (Draw AC (Major))', 220413), (220795, 220795, 113, 113, 'Severly Corroded Shadow Crystal (Draw AC (Minor))', 220413), (222224, 222224, 93, 93, 'Severly Corroded Shadow Crystal (Draw AC (Weak))', 220433), (220933, 220933, 136, 136, 'Severly Corroded Shadow Crystal (Draw AC)', 220413), (220515, 220515, 99, 99, 'Severly Corroded Shadow Crystal (Dubious Accounting)', 220431), (220450, 220450, 31, 31, 'Severly Corroded Shadow Crystal (Elementary Delayed Health Payment)', 220422), (222112, 222112, 76, 76, 'Severly Corroded Shadow Crystal (Embrace of Greed)', 220430), (221639, 221639, 40, 40, 'Severly Corroded Shadow Crystal (Enforced Loan)', 220424), (221062, 221062, 182, 182, 'Severly Corroded Shadow Crystal (Entrepreneurial Thrall)', 220437), (221871, 221871, 169, 169, 'Severly Corroded Shadow Crystal (Exceptional Delayed Health Payment)', 220436), (221974, 221974, 97, 97, 'Severly Corroded Shadow Crystal (Expert Health Haggler)', 220429), (221090, 221090, 50, 50, 'Severly Corroded Shadow Crystal (Extended Line of Credit)', 220424), (221779, 221779, 8, 8, 'Severly Corroded Shadow Crystal (Feeble Delayed Health Payment)', 220422), (221217, 221217, 126, 126, 'Severly Corroded Shadow Crystal (Fine Tuning)', 220411), (221586, 221586, 132, 132, 'Severly Corroded Shadow Crystal (Flow of Time)', 220437), (221902, 221902, 185, 185, 'Severly Corroded Shadow Crystal (Forced Bankruptcy)', 220411), (221917, 221917, 20, 20, 'Severly Corroded Shadow Crystal (Frequent Customer)', 220425), (221979, 221979, 136, 136, 'Severly Corroded Shadow Crystal (Glib Health Haggler)', 220436), (220528, 220528, 106, 106, 'Severly Corroded Shadow Crystal (Glittering Plaything)', 220437), (221768, 221768, 149, 149, 'Severly Corroded Shadow Crystal (Greater Delayed Health Payment)', 220436), (221117, 221117, 169, 169, 'Severly Corroded Shadow Crystal (Greater Detain Customer)', 220437), (222205, 222205, 149, 149, 'Severly Corroded Shadow Crystal (Greater Embrace of Greed)', 220437), (220990, 220990, 113, 113, 'Severly Corroded Shadow Crystal (Greater Health Freeloader)', 220436), (221211, 221211, 33, 33, 'Severly Corroded Shadow Crystal (Greater Health Funnel)', 220422), (221136, 221136, 175, 175, 'Severly Corroded Shadow Crystal (Greater Health Plunder)', 220436), (222176, 222176, 80, 80, 'Severly Corroded Shadow Crystal (Greater Strip Assets)', 220431), (222273, 222273, 166, 166, 'Severly Corroded Shadow Crystal (Grid Gateway)', 220411), (220764, 220764, 149, 149, 'Severly Corroded Shadow Crystal (Guard Convoy)', 220411), (221685, 221685, 86, 86, 'Severly Corroded Shadow Crystal (Health Freeloader)', 220429), (220826, 220826, 20, 20, 'Severly Corroded Shadow Crystal (Health Funnel)', 220422), (221270, 221270, 159, 159, 'Severly Corroded Shadow Crystal (Health Plunder)', 220436), (220995, 220995, 30, 30, 'Severly Corroded Shadow Crystal (Hired Hands)', 220424), (221924, 221924, 90, 90, 'Severly Corroded Shadow Crystal (Hostile Takeover)', 220431), (221628, 221628, 146, 146, 'Severly Corroded Shadow Crystal (Imaginary Distractions)', 220437), (221134, 221134, 146, 146, 'Severly Corroded Shadow Crystal (Impoverish Accounts)', 220411), (220948, 220948, 123, 123, 'Severly Corroded Shadow Crystal (Insolvency)', 220411), (220750, 220750, 149, 149, 'Severly Corroded Shadow Crystal (Irresistible Health Haggler)', 220436), (221367, 221367, 80, 80, 'Severly Corroded Shadow Crystal (Journeyman: Electrical Engineering)', 220432), (221931, 221931, 80, 80, 'Severly Corroded Shadow Crystal (Journeyman: Field Quantum Physics)', 220432), (221930, 221930, 83, 83, 'Severly Corroded Shadow Crystal (Journeyman: Mechanical Engineer)', 220432), (220503, 220503, 86, 86, 'Severly Corroded Shadow Crystal (Journeyman: Pharmaceutical)', 220432), (221932, 221932, 86, 86, 'Severly Corroded Shadow Crystal (Journeyman: Weapon Smithing)', 220432), (221939, 221939, 24, 24, 'Severly Corroded Shadow Crystal (Lend Nano: 100)', 220422), (220539, 220539, 172, 172, 'Severly Corroded Shadow Crystal (Lend Nano: 1000)', 220436), (222201, 222201, 53, 53, 'Severly Corroded Shadow Crystal (Lend Nano: 250)', 220429), (221073, 221073, 10, 10, 'Severly Corroded Shadow Crystal (Lend Nano: 50)', 220422), (220702, 220702, 116, 116, 'Severly Corroded Shadow Crystal (Lend Nano: 500)', 220436), (221863, 221863, 57, 57, 'Severly Corroded Shadow Crystal (Lesser Delayed Health Payment)', 220429), (221638, 221638, 1, 1, 'Severly Corroded Shadow Crystal (Lesser Detain Customer)', 220423), (221196, 221196, 14, 14, 'Severly Corroded Shadow Crystal (Lesser Embrace of Greed)', 220423), (220692, 220692, 80, 80, 'Severly Corroded Shadow Crystal (Lesser Health Freeloader)', 220429), (221060, 221060, 17, 17, 'Severly Corroded Shadow Crystal (Lesser Health Funnel)', 220422), (221149, 221149, 156, 156, 'Severly Corroded Shadow Crystal (Lesser Health Plunder)', 220436), (221748, 221748, 7, 7, 'Severly Corroded Shadow Crystal (Line of Credit)', 220424), (221938, 221938, 156, 156, 'Severly Corroded Shadow Crystal (Liquidation)', 220411), (221649, 221649, 70, 70, 'Severly Corroded Shadow Crystal (Lossy Health Freeloader)', 220429), (220978, 220978, 10, 10, 'Severly Corroded Shadow Crystal (Lossy Health Funnel)', 220422), (221081, 221081, 149, 149, 'Severly Corroded Shadow Crystal (Lossy Health Plunder)', 220436), (221940, 221940, 152, 152, 'Severly Corroded Shadow Crystal (Maestro: Electrical Engineering)', 220412), (221944, 221944, 152, 152, 'Severly Corroded Shadow Crystal (Maestro: Field Quantum Physics)', 220412), (221942, 221942, 152, 152, 'Severly Corroded Shadow Crystal (Maestro: Mechanical Engineering)', 220412), (221943, 221943, 156, 156, 'Severly Corroded Shadow Crystal (Maestro: Pharmaceutical)', 220412), (221945, 221945, 156, 156, 'Severly Corroded Shadow Crystal (Maestro: Weapon Smithing)', 220412), (220945, 220945, 189, 189, 'Severly Corroded Shadow Crystal (Major Armor Distributor)', 220413), (220683, 220683, 100, 100, 'Severly Corroded Shadow Crystal (Major Delayed Health Payment)', 220429), (220765, 220765, 93, 93, 'Severly Corroded Shadow Crystal (Major Health Freeloader)', 220429), (222031, 222031, 24, 24, 'Severly Corroded Shadow Crystal (Major Health Funnel)', 220422), (220929, 220929, 162, 162, 'Severly Corroded Shadow Crystal (Major Health Plunder)', 220436), (221941, 221941, 14, 14, 'Severly Corroded Shadow Crystal (Margin Call)', 220424), (221903, 221903, 116, 116, 'Severly Corroded Shadow Crystal (Masterly Health Haggler)', 220436), (222282, 222282, 34, 34, 'Severly Corroded Shadow Crystal (Mental Switcheroo)', 220425), (220886, 220886, 21, 21, 'Severly Corroded Shadow Crystal (Minor Delayed Health Payment)', 220422), (221186, 221186, 60, 60, 'Severly Corroded Shadow Crystal (Minor Health Freeloader)', 220429), (220677, 220677, 7, 7, 'Severly Corroded Shadow Crystal (Minor Health Funnel)', 220422), (221730, 221730, 146, 146, 'Severly Corroded Shadow Crystal (Minor Health Plunder)', 220436), (222286, 222286, 186, 186, 'Severly Corroded Shadow Crystal (My Brain For Your Brain)', 220412), (221740, 221740, 11, 11, 'Severly Corroded Shadow Crystal (Novice Health Haggler)', 220422), (220508, 220508, 24, 24, 'Severly Corroded Shadow Crystal (Overdraught)', 220424), (222509, 222509, 67, 67, 'Severly Corroded Shadow Crystal (Passage for One)', 220431), (220951, 220951, 14, 14, 'Severly Corroded Shadow Crystal (Patchy Delayed Health Payment)', 220422), (222113, 222113, 50, 50, 'Severly Corroded Shadow Crystal (Patchy Health Freeloader)', 220422), (222194, 222194, 4, 4, 'Severly Corroded Shadow Crystal (Patchy Health Funnel)', 220422), (222061, 222061, 142, 142, 'Severly Corroded Shadow Crystal (Patchy Health Plunder)', 220436), (221794, 221794, 185, 185, 'Severly Corroded Shadow Crystal (Pawnbroker''s Armor)', 220413), (220900, 220900, 169, 169, 'Severly Corroded Shadow Crystal (Pay the Pauper)', 220411), (222274, 222274, 100, 100, 'Severly Corroded Shadow Crystal (Personal Grid Beacon)', 220431), (220787, 220787, 27, 27, 'Severly Corroded Shadow Crystal (Practiced Health Haggler)', 220422), (220480, 220480, 159, 159, 'Severly Corroded Shadow Crystal (Preeminent Health Haggler)', 220436), (220935, 220935, 182, 182, 'Severly Corroded Shadow Crystal (Premium Delayed Health Payment)', 220436), (221861, 221861, 87, 87, 'Severly Corroded Shadow Crystal (Professional Health Haggler)', 220429), (222116, 222116, 41, 41, 'Severly Corroded Shadow Crystal (Proficient Health Haggler)', 220422), (220845, 220845, 159, 159, 'Severly Corroded Shadow Crystal (Profit Preoccupation)', 220437), (221891, 221891, 37, 37, 'Severly Corroded Shadow Crystal (Profiteer''s Grip)', 220423), (222283, 222283, 17, 17, 'Severly Corroded Shadow Crystal (Project Thought Patterns)', 220425), (222136, 222136, 83, 83, 'Severly Corroded Shadow Crystal (Pyramid Marketing)', 220430), (221879, 221879, 87, 87, 'Severly Corroded Shadow Crystal (Quality Delayed Health Payment)', 220429), (221950, 221950, 139, 139, 'Severly Corroded Shadow Crystal (Quantum Uncertainty)', 220412), (220895, 220895, 165, 165, 'Severly Corroded Shadow Crystal (Redeem AC (Advanced))', 220413), (221094, 221094, 175, 175, 'Severly Corroded Shadow Crystal (Redeem AC (Greater))', 220413), (220984, 220984, 129, 129, 'Severly Corroded Shadow Crystal (Redeem AC (Lesser))', 220413), (220653, 220653, 156, 156, 'Severly Corroded Shadow Crystal (Redeem AC (Major))', 220413), (222127, 222127, 106, 106, 'Severly Corroded Shadow Crystal (Redeem AC (Minor))', 220413), (222171, 222171, 90, 90, 'Severly Corroded Shadow Crystal (Redeem AC (Weak))', 220433), (220837, 220837, 149, 149, 'Severly Corroded Shadow Crystal (Redeem AC)', 220413), (222287, 222287, 149, 149, 'Severly Corroded Shadow Crystal (Redirect Neural Signals)', 220412), (221859, 221859, 159, 159, 'Severly Corroded Shadow Crystal (Relentless Slayer)', 220411), (221055, 221055, 80, 80, 'Severly Corroded Shadow Crystal (Riding Shotgun)', 220431), (220495, 220495, 63, 63, 'Severly Corroded Shadow Crystal (Shady Acquisition)', 220431), (221984, 221984, 162, 162, 'Severly Corroded Shadow Crystal (Simple Mind, Simple Pleasures)', 220437), (221757, 221757, 152, 152, 'Severly Corroded Shadow Crystal (Siphon AC (Advanced))', 220413), (221128, 221128, 162, 162, 'Severly Corroded Shadow Crystal (Siphon AC (Greater))', 220413), (221653, 221653, 172, 172, 'Severly Corroded Shadow Crystal (Siphon AC (Invasive))', 220413), (220693, 220693, 146, 146, 'Severly Corroded Shadow Crystal (Siphon AC (Major))', 220413), (221059, 221059, 103, 103, 'Severly Corroded Shadow Crystal (Siphon AC (Minor))', 220413), (222248, 222248, 86, 86, 'Severly Corroded Shadow Crystal (Siphon AC (Weak))', 220433), (221818, 221818, 123, 123, 'Severly Corroded Shadow Crystal (Siphon AC)', 220413), (221732, 221732, 113, 113, 'Severly Corroded Shadow Crystal (Skill Wrangler (Advanced))', 220412), (220471, 220471, 34, 34, 'Severly Corroded Shadow Crystal (Skill Wrangler (Commonplace))', 220425), (220697, 220697, 176, 176, 'Severly Corroded Shadow Crystal (Skill Wrangler (Exceptional))', 220412), (220504, 220504, 150, 150, 'Severly Corroded Shadow Crystal (Skill Wrangler (Greater))', 220412), (221118, 221118, 70, 70, 'Severly Corroded Shadow Crystal (Skill Wrangler (Inferior))', 220432), (221636, 221636, 41, 41, 'Severly Corroded Shadow Crystal (Skill Wrangler (Lossy))', 220425), (220499, 220499, 97, 97, 'Severly Corroded Shadow Crystal (Skill Wrangler (Major))', 220432), (220629, 220629, 21, 21, 'Severly Corroded Shadow Crystal (Skill Wrangler (Minor))', 220425), (220571, 220571, 14, 14, 'Severly Corroded Shadow Crystal (Skill Wrangler (Patchy))', 220425), (221920, 221920, 189, 189, 'Severly Corroded Shadow Crystal (Skill Wrangler (Premium))', 220412), (220527, 220527, 156, 156, 'Severly Corroded Shadow Crystal (Skill Wrangler (Sophisticated))', 220412), (221185, 221185, 163, 163, 'Severly Corroded Shadow Crystal (Skill Wrangler (Superb))', 220412), (222203, 222203, 126, 126, 'Severly Corroded Shadow Crystal (Skill Wrangler (Superior))', 220412), (220473, 220473, 8, 8, 'Severly Corroded Shadow Crystal (Skill Wrangler (Weak))', 220425), (221629, 221629, 54, 54, 'Severly Corroded Shadow Crystal (Skill Wrangler Lesser)', 220432), (222177, 222177, 84, 84, 'Severly Corroded Shadow Crystal (Skill Wrangler)', 220432), (220855, 220855, 47, 47, 'Severly Corroded Shadow Crystal (Skilled Health Haggler)', 220422), (220756, 220756, 156, 156, 'Severly Corroded Shadow Crystal (Sophisticated Delayed Health Payment)', 220436), (222206, 222206, 123, 123, 'Severly Corroded Shadow Crystal (Sophisticated Health Freeloader)', 220436), (220955, 220955, 40, 40, 'Severly Corroded Shadow Crystal (Sophisticated Health Funnel)', 220422), (222010, 222010, 182, 182, 'Severly Corroded Shadow Crystal (Sophisticated Health Plunder)', 220436), (220606, 220606, 24, 24, 'Severly Corroded Shadow Crystal (Sticky Ground)', 220423), (221131, 221131, 33, 33, 'Severly Corroded Shadow Crystal (Strip Assets)', 220424), (221980, 221980, 54, 54, 'Severly Corroded Shadow Crystal (Successful Health Haggler)', 220429), (220453, 220453, 140, 140, 'Severly Corroded Shadow Crystal (Superior Delayed Health Payment)', 220436), (222284, 222284, 4, 4, 'Severly Corroded Shadow Crystal (Swap Psyche)', 220425), (220463, 220463, 123, 123, 'Severly Corroded Shadow Crystal (Team Skill Wrangler (Advanced))', 220412), (220461, 220461, 47, 47, 'Severly Corroded Shadow Crystal (Team Skill Wrangler (Commonplace))', 220425), (221901, 221901, 169, 169, 'Severly Corroded Shadow Crystal (Team Skill Wrangler (Exceptional))', 220412), (221198, 221198, 153, 153, 'Severly Corroded Shadow Crystal (Team Skill Wrangler (Greater))', 220412), (222191, 222191, 77, 77, 'Severly Corroded Shadow Crystal (Team Skill Wrangler (Lesser))', 220432), (220502, 220502, 60, 60, 'Severly Corroded Shadow Crystal (Team Skill Wrangler (Lossy))', 220432), (222118, 222118, 107, 107, 'Severly Corroded Shadow Crystal (Team Skill Wrangler (Major))', 220412), (220457, 220457, 37, 37, 'Severly Corroded Shadow Crystal (Team Skill Wrangler (Minor))', 220425), (220526, 220526, 27, 27, 'Severly Corroded Shadow Crystal (Team Skill Wrangler (Patchy))', 220425), (220794, 220794, 189, 189, 'Severly Corroded Shadow Crystal (Team Skill Wrangler (Premium))', 220412), (220518, 220518, 159, 159, 'Severly Corroded Shadow Crystal (Team Skill Wrangler (Sophisticated))', 220412), (220442, 220442, 140, 140, 'Severly Corroded Shadow Crystal (Team Skill Wrangler (Superior))', 220412), (222225, 222225, 18, 18, 'Severly Corroded Shadow Crystal (Team Skill Wrangler (Weak))', 220425), (221831, 221831, 93, 93, 'Severly Corroded Shadow Crystal (Team Skill Wrangler)', 220432), (222288, 222288, 126, 126, 'Severly Corroded Shadow Crystal (Thought Controller)', 220412), (222289, 222289, 159, 159, 'Severly Corroded Shadow Crystal (Thought Juggler)', 220412), (221965, 221965, 165, 165, 'Severly Corroded Shadow Crystal (Trading Mogul)', 220412), (221049, 221049, 172, 172, 'Severly Corroded Shadow Crystal (Traffic AC (Advanced))', 220413), (222199, 222199, 182, 182, 'Severly Corroded Shadow Crystal (Traffic AC (Greater))', 220413), (221622, 221622, 139, 139, 'Severly Corroded Shadow Crystal (Traffic AC (Lesser))', 220413), (220967, 220967, 159, 159, 'Severly Corroded Shadow Crystal (Traffic AC (Major))', 220413), (221833, 221833, 119, 119, 'Severly Corroded Shadow Crystal (Traffic AC (Minor))', 220413), (221063, 221063, 96, 96, 'Severly Corroded Shadow Crystal (Traffic AC (Weak))', 220433), (221551, 221551, 152, 152, 'Severly Corroded Shadow Crystal (Traffic AC)', 220413), (221218, 221218, 63, 63, 'Severly Corroded Shadow Crystal (Trinkets and Toys)', 220430), (220849, 220849, 17, 17, 'Severly Corroded Shadow Crystal (Unfriendly Merger)', 220424), (220836, 220836, 47, 47, 'Severly Corroded Shadow Crystal (Weak Health Freeloader)', 220422), (221008, 221008, 132, 132, 'Severly Corroded Shadow Crystal (Weak Health Plunder)', 220436), (222498, 222498, 40, 40, 'Severly Corroded Shadow Crystal (Writ of Mobility)', 220424), (153979, 153979, 83, 83, 'Severus'' Fusion Sprayer', 31809), (153980, 153980, 83, 83, 'Severus'' Void Spinner', 31809), (296051, 296051, 1, 1, 'Sezmra''s T-shirt', 296150), (296048, 296048, 1, 1, 'Sezmra''s T-shirt Spawner', 296150), (290185, 290185, 1, 1, 'Shade Action Figure', 290565), (270767, 270767, 1, 1, 'Shade Nanodeck', 270749), (300893, 300893, 1, 1, 'Shade Nanoprogram Container', 292142), (290093, 290093, 1, 1, 'Shade Shirt', 287356), (152713, 152713, 165, 165, 'Shades of Lucubration', 86483), (267576, 267577, 1, 300, 'Shades'' Ring of Shadows', 151931), (226231, 226232, 1, 500, 'Shadow Bullet', 239091), (226233, 226234, 1, 500, 'Shadow Bullet', 239091), (226235, 226236, 1, 500, 'Shadow Bullet', 239091), (226219, 226220, 1, 500, 'Shadow Killer', 239103), (226221, 226222, 1, 500, 'Shadow Killer', 239103), (226223, 226224, 1, 500, 'Shadow Killer', 239103), (283644, 283644, 201, 201, 'Shadow Level Clan Application Form', 81771), (283651, 283651, 201, 201, 'Shadow Level Omni Application Form', 81773), (283797, 283797, 1, 1, 'Shadow Ops Shirt', 283941), (286231, 286231, 1, 1, 'Shadow Ops Shirt', 283941), (162451, 162451, 1, 1, 'Shadow Rift of the Bear', 20412), (162452, 162452, 1, 1, 'Shadow Rift of the Eagle', 20412), (162453, 162453, 1, 1, 'Shadow Rift of the Firefly', 20412), (162454, 162454, 1, 1, 'Shadow Rift of the Frog', 20412), (162630, 162630, 1, 1, 'Shadow Rift of the Phoenix', 20412), (295847, 295847, 1, 1, 'Shadow Rift of the Snake', 20412), (162631, 162631, 1, 1, 'Shadow Rift of the Spirits', 20412), (162632, 162632, 1, 1, 'Shadow Rift of the Wolf', 20412), (226213, 226214, 1, 500, 'Shadow Stab', 239097), (226215, 226216, 1, 500, 'Shadow Stab', 239097), (226217, 226218, 1, 500, 'Shadow Stab', 239097), (204699, 204699, 1, 1, 'Shadowfade Armor (Body)', 13249), (204703, 204703, 1, 1, 'Shadowfade Armor (Boots)', 13265), (204701, 204701, 1, 1, 'Shadowfade Armor (Gloves)', 13279), (204704, 204704, 1, 1, 'Shadowfade Armor (Helmet)', 22269), (204702, 204702, 1, 1, 'Shadowfade Armor (Pants)', 13294), (204700, 204700, 1, 1, 'Shadowfade Armor (Sleeves)', 13227), (290911, 290911, 1, 1, 'Shadowgod''s T-shirt', 290953), (234725, 234725, 1, 1, 'Shadowland Anvian Effect', 130862), (303439, 303439, 1, 1, 'Shadowlands Adventure Pack', 99664), (301646, 301646, 1, 1, 'Shadowlands Mission Reward', 281837), (301647, 301647, 1, 1, 'Shadowlands Mission Reward', 281837), (301648, 301648, 1, 1, 'Shadowlands Mission Reward', 281837), (259103, 259103, 1, 1, 'Shadowlands Recall Beacon', 296466), (287929, 287929, 1, 1, 'Shadowleet Shirt', 288358), (224390, 224390, 1, 1, 'Shadowweb Spinner MK I', 218755), (224392, 224392, 1, 1, 'Shadowweb Spinner MK II', 218755), (224393, 224393, 1, 1, 'Shadowweb Spinner MK III', 218755), (224394, 224394, 1, 1, 'Shadowweb Spinner MK IV', 218755), (224399, 224399, 1, 1, 'Shadowweb Spinner MK IX', 218755), (224395, 224395, 1, 1, 'Shadowweb Spinner MK V', 218755), (224396, 224396, 1, 1, 'Shadowweb Spinner MK VI', 218755), (224397, 224397, 1, 1, 'Shadowweb Spinner MK VII', 218755), (224398, 224398, 1, 1, 'Shadowweb Spinner MK VIII', 218755), (224400, 224400, 1, 1, 'Shadowweb Spinner MK X', 218755), (273350, 273350, 1, 1, 'Shadowweb Spinner MK XI', 218755), (215374, 215374, 1, 1, 'Shady', 82197), (124420, 124421, 1, 11, 'Shaky MTI B-94', 114014), (142787, 142788, 9, 18, 'Shaky Madam Freeze', 13336), (238956, 238957, 1, 49, 'Shank of Maze', 233353), (238958, 238959, 50, 99, 'Shank of Maze', 233353), (238960, 238961, 100, 299, 'Shank of Maze', 233353), (234655, 234656, 1, 49, 'Shank of Maze - Left Monster Version', 233353), (234657, 234658, 50, 99, 'Shank of Maze - Left Monster Version', 233353), (234659, 234660, 100, 299, 'Shank of Maze - Left Monster Version', 233353), (234661, 234661, 300, 300, 'Shank of Maze - Left Monster Version', 233353), (248354, 248354, 1, 1, 'Shaolin Sporting Bow', 85167), (253247, 253248, 1, 299, 'Shaolin Staff', 33162), (253249, 253249, 300, 300, 'Shaolin Staff', 33162), (225699, 225700, 1, 300, 'Shaolin''s Harmonic Circlet', 151921), (305024, 305024, 1, 1, 'Shapeshifter''s Chestplate', 13252), (246222, 246222, 100, 100, 'Shapeshifter''s Vest', 13252), (268745, 268745, 1, 1, 'Shapeshifting Mimic', 246816), (205989, 205990, 1, 200, 'Shapeshifting Pearl of Notum', 286949), (158896, 158896, 100, 100, 'Shard of Living Dragon Skull', 136596), (251950, 251950, 1, 1, 'Shard of a Keycard', 154675), (251951, 251951, 1, 1, 'Shard of a Keycard', 154675), (251952, 251952, 1, 1, 'Shard of a Keycard', 154675), (251981, 251981, 1, 1, 'Shard of a Keycard', 154676), (251982, 251982, 1, 1, 'Shard of a Keycard', 154676), (251983, 251983, 1, 1, 'Shard of a Keycard', 154676), (258813, 258813, 1, 1, 'Shark Fin', 259027), (258953, 258953, 1, 1, 'Shark Helmet', 259028), (248529, 248530, 81, 100, 'Sharky''s Kevlar Bow', 85167), (269511, 269511, 200, 200, 'Sharl''s Cybernetic Tattoo', 269769), (250156, 250157, 121, 140, 'Sharp Adapting Notum Lever', 33163), (123336, 123337, 34, 37, 'Sharp Banjo', 85159), (122936, 122937, 121, 140, 'Sharp Blackjohn', 33170), (122171, 122172, 121, 140, 'Sharp E-Blade', 13337), (122817, 122818, 121, 140, 'Sharp Gofle-Prod', 33168), (121734, 121735, 121, 140, 'Sharp Haxor 9922', 13339), (130156, 130157, 121, 140, 'Sharp Hayfork', 85168), (121981, 121982, 121, 140, 'Sharp Katana', 13326), (122057, 122058, 121, 140, 'Sharp Longmoon', 13338), (128969, 128970, 121, 140, 'Sharp Merchant Warblade', 114011), (130118, 130119, 121, 140, 'Sharp Notum Lever', 33163), (123012, 123013, 121, 140, 'Sharp Notum Spear', 21135), (143802, 143802, 1, 1, 'Sharp Notum Spear Construction Manual', 136332), (122974, 122975, 121, 140, 'Sharp Notum Staff', 33162), (143714, 143714, 1, 1, 'Sharp Notum Staff Construction Manual', 136332), (101425, 101426, 1, 200, 'Sharp Obj Cluster - Bright (Right-Hand)', 35981), (101369, 101370, 1, 200, 'Sharp Obj Cluster - Faded (Eye)', 35980), (101427, 101428, 1, 200, 'Sharp Obj Cluster - Shiny (Right-Wrist)', 35982), (165585, 165586, 201, 300, 'Sharp Obj Refined Cluster - Bright (Right-Hand)', 35981), (165583, 165584, 201, 300, 'Sharp Obj Refined Cluster - Faded (Eye)', 35980), (165587, 165588, 201, 300, 'Sharp Obj Refined Cluster - Shiny (Right-Wrist)', 35982), (128950, 128951, 121, 140, 'Sharp Peasant Warblade', 114009), (230635, 230635, 1, 1, 'Sharp Point of the Silvertail', 130862), (129007, 129008, 121, 140, 'Sharp Protector Warblade', 114010), (128988, 128989, 121, 140, 'Sharp Rider Warblade', 114012), (122917, 122918, 121, 140, 'Sharp Support Beam', 33143), (122798, 122799, 121, 140, 'Sharp Sword of Sir Galahad', 40781), (122760, 122761, 121, 140, 'Sharp Two-Handed Blackjack', 33170), (121715, 121716, 121, 140, 'Sharp Whings', 21139), (144156, 144157, 101, 120, 'Sharpened Burning Copper Katana', 113998), (209285, 209285, 25, 25, 'Sharpened Kinetic Axe', 40782), (129038, 129039, 121, 140, 'Sharpened Sledgehammer', 33167), (206990, 206990, 150, 150, 'Sharpshooter''s Chip', 43133), (206977, 206978, 100, 200, 'Sharpshooter''s Helmet', 205764), (212912, 212912, 1, 1, 'Shatter Psyche', 154367), (145823, 145830, 4, 65, 'Shattered Instruction Disc', 300939), (146514, 146516, 4, 135, 'Shattered Instruction Disc', 300939), (148823, 148830, 4, 65, 'Shattered Instruction Disc', 300939), (149514, 149516, 4, 135, 'Shattered Instruction Disc', 300939), (146639, 146711, 10, 69, 'Shattered Instruction Disc', 300939), (149639, 149711, 10, 69, 'Shattered Instruction Disc', 300939), (146513, 146513, 14, 14, 'Shattered Instruction Disc', 300939), (149513, 149513, 14, 14, 'Shattered Instruction Disc', 300939), (145832, 145833, 17, 131, 'Shattered Instruction Disc', 300939), (148832, 148833, 17, 131, 'Shattered Instruction Disc', 300939), (146638, 146638, 20, 20, 'Shattered Instruction Disc', 300939), (149638, 149638, 20, 20, 'Shattered Instruction Disc', 300939), (146511, 146512, 24, 57, 'Shattered Instruction Disc', 300939), (149511, 149512, 24, 57, 'Shattered Instruction Disc', 300939), (145301, 145302, 30, 40, 'Shattered Instruction Disc', 300939), (145714, 145725, 30, 159, 'Shattered Instruction Disc', 300939), (145778, 145788, 30, 79, 'Shattered Instruction Disc', 300939), (146636, 146637, 30, 70, 'Shattered Instruction Disc', 300939), (146801, 146802, 30, 39, 'Shattered Instruction Disc', 300939), (147214, 147225, 30, 159, 'Shattered Instruction Disc', 300939), (148301, 148302, 30, 40, 'Shattered Instruction Disc', 300939), (148714, 148725, 30, 159, 'Shattered Instruction Disc', 300939), (148778, 148788, 30, 79, 'Shattered Instruction Disc', 300939), (149636, 149637, 30, 70, 'Shattered Instruction Disc', 300939), (146510, 146510, 33, 33, 'Shattered Instruction Disc', 300939), (149510, 149510, 33, 33, 'Shattered Instruction Disc', 300939), (145428, 145437, 37, 159, 'Shattered Instruction Disc', 300939), (148428, 148437, 37, 159, 'Shattered Instruction Disc', 300939), (146635, 146635, 40, 40, 'Shattered Instruction Disc', 300939), (146802, 147079, 40, 65, 'Shattered Instruction Disc', 300939), (149635, 149635, 40, 40, 'Shattered Instruction Disc', 300939), (145642, 145645, 43, 152, 'Shattered Instruction Disc', 300939), (145806, 145810, 43, 49, 'Shattered Instruction Disc', 300939), (146508, 146509, 43, 80, 'Shattered Instruction Disc', 300939), (147142, 147145, 43, 152, 'Shattered Instruction Disc', 300939), (148642, 148645, 43, 152, 'Shattered Instruction Disc', 300939), (148806, 148810, 43, 49, 'Shattered Instruction Disc', 300939), (149508, 149509, 43, 80, 'Shattered Instruction Disc', 300939), (145810, 145819, 50, 131, 'Shattered Instruction Disc', 300939), (146633, 146634, 50, 86, 'Shattered Instruction Disc', 300939), (148810, 148819, 50, 131, 'Shattered Instruction Disc', 300939), (149633, 149634, 50, 86, 'Shattered Instruction Disc', 300939), (163404, 163404, 50, 50, 'Shattered Instruction Disc', 300939), (163405, 163405, 50, 50, 'Shattered Instruction Disc', 300939), (163406, 163407, 50, 90, 'Shattered Instruction Disc', 300939), (145579, 145587, 66, 173, 'Shattered Instruction Disc', 300939), (145830, 145831, 66, 149, 'Shattered Instruction Disc', 300939), (147079, 147087, 66, 173, 'Shattered Instruction Disc', 300939), (148579, 148587, 66, 173, 'Shattered Instruction Disc', 300939), (148830, 148831, 66, 149, 'Shattered Instruction Disc', 300939), (146711, 146721, 70, 148, 'Shattered Instruction Disc', 300939), (148211, 148221, 70, 148, 'Shattered Instruction Disc', 300939), (149711, 150372, 70, 87, 'Shattered Instruction Disc', 300939), (145667, 145675, 76, 90, 'Shattered Instruction Disc', 300939), (148667, 148675, 76, 90, 'Shattered Instruction Disc', 300939), (145788, 145803, 80, 142, 'Shattered Instruction Disc', 300939), (148788, 148803, 80, 142, 'Shattered Instruction Disc', 300939), (204502, 204502, 80, 80, 'Shattered Instruction Disc', 300939), (204503, 204503, 80, 80, 'Shattered Instruction Disc', 300939), (204504, 204505, 80, 120, 'Shattered Instruction Disc', 300939), (145705, 145708, 83, 99, 'Shattered Instruction Disc', 300939), (147205, 147205, 83, 83, 'Shattered Instruction Disc', 300939), (148705, 148708, 83, 99, 'Shattered Instruction Disc', 300939), (161926, 161926, 86, 86, 'Shattered Instruction Disc', 300939), (161927, 161927, 86, 86, 'Shattered Instruction Disc', 300939), (161928, 161929, 86, 119, 'Shattered Instruction Disc', 300939), (150373, 150374, 87, 103, 'Shattered Instruction Disc', 300939), (150396, 150396, 87, 87, 'Shattered Instruction Disc', 300939), (150397, 150398, 87, 103, 'Shattered Instruction Disc', 300939), (150420, 150420, 87, 87, 'Shattered Instruction Disc', 300939), (150421, 150422, 87, 103, 'Shattered Instruction Disc', 300939), (145242, 145243, 90, 98, 'Shattered Instruction Disc', 300939), (145547, 145547, 90, 90, 'Shattered Instruction Disc', 300939), (146742, 146743, 90, 98, 'Shattered Instruction Disc', 300939), (148242, 148243, 90, 98, 'Shattered Instruction Disc', 300939), (148547, 148547, 90, 90, 'Shattered Instruction Disc', 300939), (163408, 163408, 90, 90, 'Shattered Instruction Disc', 300939), (163409, 163409, 90, 90, 'Shattered Instruction Disc', 300939), (145804, 145804, 93, 93, 'Shattered Instruction Disc', 300939), (146525, 146615, 93, 161, 'Shattered Instruction Disc', 300939), (148804, 148804, 93, 93, 'Shattered Instruction Disc', 300939), (149525, 149615, 93, 161, 'Shattered Instruction Disc', 300939), (150378, 150378, 97, 97, 'Shattered Instruction Disc', 300939), (150379, 150380, 97, 113, 'Shattered Instruction Disc', 300939), (150402, 150402, 97, 97, 'Shattered Instruction Disc', 300939), (150403, 150404, 97, 113, 'Shattered Instruction Disc', 300939), (150426, 150426, 97, 97, 'Shattered Instruction Disc', 300939), (150427, 150428, 97, 113, 'Shattered Instruction Disc', 300939), (145243, 145244, 99, 109, 'Shattered Instruction Disc', 300939), (145769, 145769, 99, 99, 'Shattered Instruction Disc', 300939), (146743, 146744, 99, 109, 'Shattered Instruction Disc', 300939), (147269, 147508, 99, 145, 'Shattered Instruction Disc', 300939), (148243, 148244, 99, 109, 'Shattered Instruction Disc', 300939), (148769, 148769, 99, 99, 'Shattered Instruction Disc', 300939), (146058, 146059, 103, 140, 'Shattered Instruction Disc', 300939), (146621, 146621, 103, 103, 'Shattered Instruction Disc', 300939), (147558, 147559, 103, 140, 'Shattered Instruction Disc', 300939), (149058, 149059, 103, 140, 'Shattered Instruction Disc', 300939), (149621, 149621, 103, 103, 'Shattered Instruction Disc', 300939), (150375, 150375, 103, 103, 'Shattered Instruction Disc', 300939), (150377, 150377, 103, 103, 'Shattered Instruction Disc', 300939), (150399, 150399, 103, 103, 'Shattered Instruction Disc', 300939), (150401, 150401, 103, 103, 'Shattered Instruction Disc', 300939), (150423, 150423, 103, 103, 'Shattered Instruction Disc', 300939), (150425, 150425, 103, 103, 'Shattered Instruction Disc', 300939), (146524, 146524, 113, 113, 'Shattered Instruction Disc', 300939), (149524, 149524, 113, 113, 'Shattered Instruction Disc', 300939), (150381, 150381, 113, 113, 'Shattered Instruction Disc', 300939), (150383, 150384, 113, 159, 'Shattered Instruction Disc', 300939), (150405, 150405, 113, 113, 'Shattered Instruction Disc', 300939), (150407, 150408, 113, 159, 'Shattered Instruction Disc', 300939), (150429, 150429, 113, 113, 'Shattered Instruction Disc', 300939), (150431, 150432, 113, 159, 'Shattered Instruction Disc', 300939), (161930, 161930, 119, 119, 'Shattered Instruction Disc', 300939), (161931, 161935, 119, 162, 'Shattered Instruction Disc', 300939), (204506, 204506, 120, 120, 'Shattered Instruction Disc', 300939), (204507, 204508, 120, 145, 'Shattered Instruction Disc', 300939), (146620, 146620, 123, 123, 'Shattered Instruction Disc', 300939), (149620, 149620, 123, 123, 'Shattered Instruction Disc', 300939), (145819, 145820, 132, 139, 'Shattered Instruction Disc', 300939), (145833, 146008, 132, 145, 'Shattered Instruction Disc', 300939), (146522, 146523, 132, 165, 'Shattered Instruction Disc', 300939), (148819, 148820, 132, 139, 'Shattered Instruction Disc', 300939), (148833, 149008, 132, 145, 'Shattered Instruction Disc', 300939), (149522, 149523, 132, 165, 'Shattered Instruction Disc', 300939), (146516, 146519, 136, 155, 'Shattered Instruction Disc', 300939), (148016, 148016, 136, 136, 'Shattered Instruction Disc', 300939), (149516, 149519, 136, 155, 'Shattered Instruction Disc', 300939), (204509, 204509, 145, 145, 'Shattered Instruction Disc', 300939), (204510, 204511, 145, 170, 'Shattered Instruction Disc', 300939), (145615, 145623, 146, 172, 'Shattered Instruction Disc', 300939), (146008, 146042, 146, 159, 'Shattered Instruction Disc', 300939), (146618, 146619, 146, 172, 'Shattered Instruction Disc', 300939), (147508, 147542, 146, 159, 'Shattered Instruction Disc', 300939), (148615, 148623, 146, 172, 'Shattered Instruction Disc', 300939), (149008, 149042, 146, 159, 'Shattered Instruction Disc', 300939), (149618, 149619, 146, 172, 'Shattered Instruction Disc', 300939), (145221, 145222, 149, 151, 'Shattered Instruction Disc', 300939), (146521, 146521, 149, 149, 'Shattered Instruction Disc', 300939), (146721, 146722, 149, 151, 'Shattered Instruction Disc', 300939), (148221, 148222, 149, 151, 'Shattered Instruction Disc', 300939), (149521, 149521, 149, 149, 'Shattered Instruction Disc', 300939), (145222, 145223, 152, 156, 'Shattered Instruction Disc', 300939), (146617, 146617, 152, 152, 'Shattered Instruction Disc', 300939), (146722, 146723, 152, 156, 'Shattered Instruction Disc', 300939), (148222, 148223, 152, 156, 'Shattered Instruction Disc', 300939), (149617, 149617, 152, 152, 'Shattered Instruction Disc', 300939), (163398, 163398, 152, 152, 'Shattered Instruction Disc', 300939), (163399, 163399, 152, 152, 'Shattered Instruction Disc', 300939), (163400, 163400, 152, 152, 'Shattered Instruction Disc', 300939), (146519, 146520, 156, 179, 'Shattered Instruction Disc', 300939), (149519, 149520, 156, 179, 'Shattered Instruction Disc', 300939), (150390, 150390, 156, 156, 'Shattered Instruction Disc', 300939), (150391, 150392, 156, 163, 'Shattered Instruction Disc', 300939), (150394, 150395, 156, 163, 'Shattered Instruction Disc', 300939), (150414, 150414, 156, 156, 'Shattered Instruction Disc', 300939), (150415, 150416, 156, 163, 'Shattered Instruction Disc', 300939), (150418, 150419, 156, 163, 'Shattered Instruction Disc', 300939), (150438, 150438, 156, 156, 'Shattered Instruction Disc', 300939), (150439, 150440, 156, 163, 'Shattered Instruction Disc', 300939), (150442, 150443, 156, 162, 'Shattered Instruction Disc', 300939), (150385, 150386, 159, 166, 'Shattered Instruction Disc', 300939), (150388, 150389, 159, 166, 'Shattered Instruction Disc', 300939), (150409, 150410, 159, 166, 'Shattered Instruction Disc', 300939), (150412, 150413, 159, 166, 'Shattered Instruction Disc', 300939), (150433, 150434, 159, 166, 'Shattered Instruction Disc', 300939), (150436, 150437, 159, 166, 'Shattered Instruction Disc', 300939), (146615, 146616, 162, 185, 'Shattered Instruction Disc', 300939), (149615, 149616, 162, 185, 'Shattered Instruction Disc', 300939), (161936, 161936, 162, 162, 'Shattered Instruction Disc', 300939), (161937, 161938, 162, 182, 'Shattered Instruction Disc', 300939), (150393, 150393, 163, 163, 'Shattered Instruction Disc', 300939), (150417, 150417, 163, 163, 'Shattered Instruction Disc', 300939), (150441, 150441, 163, 163, 'Shattered Instruction Disc', 300939), (150443, 161879, 163, 182, 'Shattered Instruction Disc', 300939), (150387, 150387, 166, 166, 'Shattered Instruction Disc', 300939), (150411, 150411, 166, 166, 'Shattered Instruction Disc', 300939), (150435, 150435, 166, 166, 'Shattered Instruction Disc', 300939), (204512, 204512, 170, 170, 'Shattered Instruction Disc', 300939), (204513, 204514, 170, 190, 'Shattered Instruction Disc', 300939), (147123, 147123, 172, 172, 'Shattered Instruction Disc', 300939), (161880, 161880, 182, 182, 'Shattered Instruction Disc', 300939), (161881, 161881, 182, 182, 'Shattered Instruction Disc', 300939), (161900, 161900, 182, 182, 'Shattered Instruction Disc', 300939), (161901, 161901, 182, 182, 'Shattered Instruction Disc', 300939), (161902, 161902, 182, 182, 'Shattered Instruction Disc', 300939), (161939, 161939, 182, 182, 'Shattered Instruction Disc', 300939), (161940, 161940, 182, 182, 'Shattered Instruction Disc', 300939), (204515, 204515, 190, 190, 'Shattered Instruction Disc', 300939), (204516, 204516, 190, 190, 'Shattered Instruction Disc', 300939), (216865, 217669, 1, 207, 'Shattered Nano Crystal', 300932), (220892, 220902, 1, 59, 'Shattered Nano Crystal', 300932), (27310, 28774, 4, 152, 'Shattered Nano Crystal', 300932), (221297, 221312, 4, 39, 'Shattered Nano Crystal', 300932), (221537, 221550, 4, 29, 'Shattered Nano Crystal', 300932), (221576, 221641, 4, 42, 'Shattered Nano Crystal', 300932), (222083, 222089, 4, 19, 'Shattered Nano Crystal', 300932), (27309, 27309, 10, 10, 'Shattered Nano Crystal', 300932), (220808, 220809, 10, 162, 'Shattered Nano Crystal', 300932), (220877, 220877, 10, 10, 'Shattered Nano Crystal', 300932), (220924, 220940, 10, 50, 'Shattered Nano Crystal', 300932), (221536, 221536, 10, 10, 'Shattered Nano Crystal', 300932), (222074, 222074, 14, 14, 'Shattered Nano Crystal', 300932), (220590, 220602, 17, 179, 'Shattered Nano Crystal', 300932), (221363, 221363, 17, 17, 'Shattered Nano Crystal', 300932), (220636, 220646, 20, 128, 'Shattered Nano Crystal', 300932), (222089, 222117, 20, 149, 'Shattered Nano Crystal', 300932), (221158, 221160, 24, 56, 'Shattered Nano Crystal', 300932), (220857, 220861, 27, 146, 'Shattered Nano Crystal', 300932), (82841, 85126, 30, 50, 'Shattered Nano Crystal', 300932), (99590, 99591, 30, 159, 'Shattered Nano Crystal', 300932), (220533, 220536, 30, 50, 'Shattered Nano Crystal', 300932), (221550, 221558, 30, 39, 'Shattered Nano Crystal', 300932), (221703, 221762, 30, 132, 'Shattered Nano Crystal', 300932), (221922, 221967, 30, 185, 'Shattered Nano Crystal', 300932), (221247, 221281, 33, 179, 'Shattered Nano Crystal', 300932), (85131, 85132, 40, 178, 'Shattered Nano Crystal', 300932), (220441, 220469, 40, 65, 'Shattered Nano Crystal', 300932), (221285, 221295, 40, 165, 'Shattered Nano Crystal', 300932), (221312, 221317, 40, 50, 'Shattered Nano Crystal', 300932), (221558, 221563, 40, 49, 'Shattered Nano Crystal', 300932), (99595, 99596, 43, 65, 'Shattered Nano Crystal', 300932), (220505, 220509, 43, 98, 'Shattered Nano Crystal', 300932), (220922, 220922, 43, 43, 'Shattered Nano Crystal', 300932), (221050, 221069, 43, 139, 'Shattered Nano Crystal', 300932), (221641, 221654, 43, 98, 'Shattered Nano Crystal', 300932), (31557, 31557, 50, 50, 'Shattered Nano Crystal', 300932), (82840, 82840, 50, 50, 'Shattered Nano Crystal', 300932), (85127, 85127, 50, 50, 'Shattered Nano Crystal', 300932), (85128, 85129, 50, 152, 'Shattered Nano Crystal', 300932), (85130, 85130, 50, 50, 'Shattered Nano Crystal', 300932), (85135, 85135, 50, 50, 'Shattered Nano Crystal', 300932), (85136, 85136, 50, 50, 'Shattered Nano Crystal', 300932), (85137, 85137, 50, 50, 'Shattered Nano Crystal', 300932), (85138, 85139, 50, 89, 'Shattered Nano Crystal', 300932), (85143, 85143, 50, 50, 'Shattered Nano Crystal', 300932), (85144, 85144, 50, 50, 'Shattered Nano Crystal', 300932), (85146, 85146, 50, 50, 'Shattered Nano Crystal', 300932), (85147, 99588, 50, 99, 'Shattered Nano Crystal', 300932), (163391, 163393, 50, 90, 'Shattered Nano Crystal', 300932), (217673, 217675, 50, 218, 'Shattered Nano Crystal', 300932), (217677, 217677, 50, 50, 'Shattered Nano Crystal', 300932), (217679, 217679, 50, 50, 'Shattered Nano Crystal', 300932), (220537, 220537, 50, 50, 'Shattered Nano Crystal', 300932), (220546, 220549, 50, 69, 'Shattered Nano Crystal', 300932), (220570, 220570, 50, 50, 'Shattered Nano Crystal', 300932), (220949, 220974, 50, 132, 'Shattered Nano Crystal', 300932), (220992, 220992, 50, 50, 'Shattered Nano Crystal', 300932), (221000, 221000, 50, 50, 'Shattered Nano Crystal', 300932), (221002, 221002, 50, 50, 'Shattered Nano Crystal', 300932), (221010, 221018, 50, 102, 'Shattered Nano Crystal', 300932), (221140, 221140, 50, 50, 'Shattered Nano Crystal', 300932), (221563, 221568, 50, 156, 'Shattered Nano Crystal', 300932), (221791, 221793, 50, 122, 'Shattered Nano Crystal', 300932), (221810, 221810, 50, 50, 'Shattered Nano Crystal', 300932), (221823, 221847, 50, 93, 'Shattered Nano Crystal', 300932), (222025, 222025, 50, 50, 'Shattered Nano Crystal', 300932), (222036, 222036, 50, 50, 'Shattered Nano Crystal', 300932), (222056, 222057, 50, 85, 'Shattered Nano Crystal', 300932), (222132, 222137, 50, 182, 'Shattered Nano Crystal', 300932), (222154, 222174, 50, 141, 'Shattered Nano Crystal', 300932), (223079, 223080, 50, 89, 'Shattered Nano Crystal', 300932), (221160, 221174, 57, 148, 'Shattered Nano Crystal', 300932), (220902, 220910, 60, 66, 'Shattered Nano Crystal', 300932), (99596, 99597, 66, 172, 'Shattered Nano Crystal', 300932), (220469, 220492, 66, 159, 'Shattered Nano Crystal', 300932), (142747, 150348, 70, 86, 'Shattered Nano Crystal', 300932), (220549, 220554, 70, 95, 'Shattered Nano Crystal', 300932), (221086, 221113, 70, 152, 'Shattered Nano Crystal', 300932), (222275, 222276, 70, 173, 'Shattered Nano Crystal', 300932), (221785, 221785, 73, 73, 'Shattered Nano Crystal', 300932), (221872, 221872, 76, 76, 'Shattered Nano Crystal', 300932), (210404, 210406, 77, 131, 'Shattered Nano Crystal', 300932), (204294, 204296, 80, 119, 'Shattered Nano Crystal', 300932), (220610, 220610, 80, 80, 'Shattered Nano Crystal', 300932), (221074, 221074, 80, 80, 'Shattered Nano Crystal', 300932), (222210, 222263, 80, 145, 'Shattered Nano Crystal', 300932), (222512, 222512, 80, 80, 'Shattered Nano Crystal', 300932), (99592, 99592, 83, 83, 'Shattered Nano Crystal', 300932), (221683, 221683, 83, 83, 'Shattered Nano Crystal', 300932), (161917, 161919, 86, 118, 'Shattered Nano Crystal', 300932), (222057, 222070, 86, 136, 'Shattered Nano Crystal', 300932), (150348, 150349, 87, 103, 'Shattered Nano Crystal', 300932), (150350, 150352, 87, 103, 'Shattered Nano Crystal', 300932), (222311, 222312, 87, 103, 'Shattered Nano Crystal', 300932), (222314, 222314, 87, 87, 'Shattered Nano Crystal', 300932), (222315, 222315, 87, 87, 'Shattered Nano Crystal', 300932), (85139, 85140, 90, 98, 'Shattered Nano Crystal', 300932), (220874, 220874, 90, 90, 'Shattered Nano Crystal', 300932), (221570, 221570, 90, 90, 'Shattered Nano Crystal', 300932), (223080, 223146, 90, 194, 'Shattered Nano Crystal', 300932), (221784, 221784, 93, 93, 'Shattered Nano Crystal', 300932), (220554, 220555, 96, 162, 'Shattered Nano Crystal', 300932), (150353, 150354, 97, 102, 'Shattered Nano Crystal', 300932), (150356, 150358, 97, 112, 'Shattered Nano Crystal', 300932), (222305, 222306, 97, 113, 'Shattered Nano Crystal', 300932), (222308, 222308, 97, 97, 'Shattered Nano Crystal', 300932), (222309, 222310, 97, 103, 'Shattered Nano Crystal', 300932), (85140, 85141, 99, 109, 'Shattered Nano Crystal', 300932), (220509, 220511, 99, 131, 'Shattered Nano Crystal', 300932), (221125, 221125, 99, 99, 'Shattered Nano Crystal', 300932), (221654, 221664, 99, 165, 'Shattered Nano Crystal', 300932), (267309, 270794, 100, 215, 'Shattered Nano Crystal', 300932), (142718, 142720, 103, 159, 'Shattered Nano Crystal', 300932), (150354, 150355, 103, 113, 'Shattered Nano Crystal', 300932), (221018, 221031, 103, 112, 'Shattered Nano Crystal', 300932), (222269, 222270, 103, 140, 'Shattered Nano Crystal', 300932), (222313, 222313, 103, 103, 'Shattered Nano Crystal', 300932), (221767, 221767, 106, 106, 'Shattered Nano Crystal', 300932), (221569, 221569, 109, 109, 'Shattered Nano Crystal', 300932), (150358, 150359, 113, 159, 'Shattered Nano Crystal', 300932), (150360, 150361, 113, 166, 'Shattered Nano Crystal', 300932), (221031, 221047, 113, 142, 'Shattered Nano Crystal', 300932), (222304, 222304, 113, 113, 'Shattered Nano Crystal', 300932), (222307, 222307, 113, 113, 'Shattered Nano Crystal', 300932), (161919, 161923, 119, 165, 'Shattered Nano Crystal', 300932), (204296, 204298, 120, 144, 'Shattered Nano Crystal', 300932), (221793, 221808, 123, 149, 'Shattered Nano Crystal', 300932), (287069, 287070, 125, 200, 'Shattered Nano Crystal', 300932), (220646, 220678, 129, 172, 'Shattered Nano Crystal', 300932), (220511, 220530, 132, 142, 'Shattered Nano Crystal', 300932), (220828, 220828, 132, 132, 'Shattered Nano Crystal', 300932), (142744, 142746, 136, 173, 'Shattered Nano Crystal', 300932), (222272, 222272, 136, 136, 'Shattered Nano Crystal', 300932), (142723, 142723, 140, 140, 'Shattered Nano Crystal', 300932), (222174, 222178, 142, 172, 'Shattered Nano Crystal', 300932), (204298, 204300, 145, 169, 'Shattered Nano Crystal', 300932), (142722, 142722, 146, 146, 'Shattered Nano Crystal', 300932), (222263, 222266, 146, 159, 'Shattered Nano Crystal', 300932), (26022, 26022, 149, 149, 'Shattered Nano Crystal', 300932), (220560, 220560, 149, 149, 'Shattered Nano Crystal', 300932), (221174, 221205, 149, 185, 'Shattered Nano Crystal', 300932), (221998, 221998, 149, 149, 'Shattered Nano Crystal', 300932), (162818, 162818, 152, 152, 'Shattered Nano Crystal', 300932), (220725, 220725, 152, 152, 'Shattered Nano Crystal', 300932), (221969, 221969, 152, 152, 'Shattered Nano Crystal', 300932), (223304, 224174, 152, 200, 'Shattered Nano Crystal', 300932), (85134, 85134, 156, 156, 'Shattered Nano Crystal', 300932), (150366, 150367, 156, 163, 'Shattered Nano Crystal', 300932), (150368, 150369, 156, 163, 'Shattered Nano Crystal', 300932), (150370, 150371, 156, 162, 'Shattered Nano Crystal', 300932), (221666, 221666, 156, 156, 'Shattered Nano Crystal', 300932), (222293, 222294, 156, 163, 'Shattered Nano Crystal', 300932), (222296, 222296, 156, 156, 'Shattered Nano Crystal', 300932), (222297, 222298, 156, 166, 'Shattered Nano Crystal', 300932), (150362, 150363, 159, 166, 'Shattered Nano Crystal', 300932), (150365, 150365, 159, 159, 'Shattered Nano Crystal', 300932), (222299, 222300, 159, 166, 'Shattered Nano Crystal', 300932), (222302, 222302, 159, 159, 'Shattered Nano Crystal', 300932), (222303, 222303, 159, 159, 'Shattered Nano Crystal', 300932), (150371, 161695, 163, 182, 'Shattered Nano Crystal', 300932), (222292, 222292, 163, 163, 'Shattered Nano Crystal', 300932), (222295, 222295, 163, 163, 'Shattered Nano Crystal', 300932), (150364, 150364, 166, 166, 'Shattered Nano Crystal', 300932), (161923, 161925, 166, 182, 'Shattered Nano Crystal', 300932), (222301, 222301, 166, 166, 'Shattered Nano Crystal', 300932), (204300, 204302, 170, 190, 'Shattered Nano Crystal', 300932), (85132, 85133, 179, 182, 'Shattered Nano Crystal', 300932), (161878, 161878, 182, 182, 'Shattered Nano Crystal', 300932), (286468, 286468, 189, 189, 'Shattered Nano Crystal', 300932), (223146, 223150, 195, 214, 'Shattered Nano Crystal', 300932), (223154, 223156, 195, 206, 'Shattered Nano Crystal', 300932), (236511, 236513, 198, 204, 'Shattered Nano Crystal', 300932), (267307, 267307, 200, 200, 'Shattered Nano Crystal', 300932), (224174, 224176, 201, 214, 'Shattered Nano Crystal', 300932), (287070, 287071, 201, 211, 'Shattered Nano Crystal', 300932), (223156, 223158, 207, 213, 'Shattered Nano Crystal', 300932), (223162, 223164, 207, 213, 'Shattered Nano Crystal', 300932), (223158, 223160, 214, 220, 'Shattered Nano Crystal', 300932), (223164, 223166, 214, 220, 'Shattered Nano Crystal', 300932), (156016, 156017, 1, 200, 'Sheet of Curved Carbonum Plating', 156091), (206702, 206703, 1, 200, 'Sheet of Junkmetal', 156091), (226018, 226019, 1, 300, 'Sheet of Perennium', 226011), (267562, 267563, 1, 300, 'Sheffy''s Micro Coil', 151931), (137259, 137260, 1, 200, 'Shells Magazine', 130694), (70618, 70616, 100, 199, 'Shen', 43094), (70616, 201281, 200, 300, 'Shen', 43094), (166049, 166050, 1, 200, 'Shield Chemical AC Jobe Cluster - Bright (Feet)', 36003), (166045, 166046, 1, 200, 'Shield Chemical AC Jobe Cluster - Faded (Left-Wrist)', 36002), (166053, 166054, 1, 200, 'Shield Chemical AC Jobe Cluster - Shiny (Left-Hand)', 36004), (166051, 166052, 201, 300, 'Shield Chemical AC Refined Jobe Cluster - Bright (Feet)', 36003), (166047, 166048, 201, 300, 'Shield Chemical AC Refined Jobe Cluster - Faded (Left-Wrist)', 36002), (166055, 166056, 201, 300, 'Shield Chemical AC Refined Jobe Cluster - Shiny (Left-Hand)', 36004), (166073, 166074, 1, 200, 'Shield Cold AC Jobe Cluster - Bright (Feet)', 36020), (166069, 166070, 1, 200, 'Shield Cold AC Jobe Cluster - Faded (Left-Wrist)', 36019), (166077, 166078, 1, 200, 'Shield Cold AC Jobe Cluster - Shiny (Left-Hand)', 36021), (166075, 166076, 201, 300, 'Shield Cold AC Refined Jobe Cluster - Bright (Feet)', 36020), (166071, 166072, 201, 300, 'Shield Cold AC Refined Jobe Cluster - Faded (Left-Wrist)', 36019), (166079, 166080, 201, 300, 'Shield Cold AC Refined Jobe Cluster - Shiny (Left-Hand)', 36021), (166037, 166038, 1, 200, 'Shield Energy AC Jobe Cluster - Bright (Left-Hand)', 36003), (166033, 166034, 1, 200, 'Shield Energy AC Jobe Cluster - Faded (Leg)', 36002), (166041, 166042, 1, 200, 'Shield Energy AC Jobe Cluster - Shiny (Left-Wrist)', 36004), (166039, 166040, 201, 300, 'Shield Energy AC Refined Jobe Cluster - Bright (Left-Hand)', 36003), (166035, 166036, 201, 300, 'Shield Energy AC Refined Jobe Cluster - Faded (Leg)', 36002), (166043, 166044, 201, 300, 'Shield Energy AC Refined Jobe Cluster - Shiny (Left-Wrist)', 36004), (166085, 166086, 1, 200, 'Shield Fire AC Jobe Cluster - Bright (Left-Hand)', 36020), (166081, 166082, 1, 200, 'Shield Fire AC Jobe Cluster - Faded (Leg)', 36019), (166089, 166090, 1, 200, 'Shield Fire AC Jobe Cluster - Shiny (Left-Wrist)', 36021), (166087, 166088, 201, 300, 'Shield Fire AC Refined Jobe Cluster - Bright (Left-Hand)', 36020), (166083, 166084, 201, 300, 'Shield Fire AC Refined Jobe Cluster - Faded (Leg)', 36019), (166091, 166092, 201, 300, 'Shield Fire AC Refined Jobe Cluster - Shiny (Left-Wrist)', 36021), (278863, 278863, 1, 1, 'Shield Item', 12711), (278864, 278864, 1, 1, 'Shield Item', 12711), (278866, 278866, 1, 1, 'Shield Item', 12711), (278867, 278867, 1, 1, 'Shield Item', 12711), (166025, 166026, 1, 200, 'Shield Melee AC Jobe Cluster - Bright (Feet)', 36020), (166021, 166022, 1, 200, 'Shield Melee AC Jobe Cluster - Faded (Left-Wrist)', 36019), (166029, 166030, 1, 200, 'Shield Melee AC Jobe Cluster - Shiny (Left-Hand)', 36021), (166027, 166028, 201, 300, 'Shield Melee AC Refined Jobe Cluster - Bright (Feet)', 36020), (166023, 166024, 201, 300, 'Shield Melee AC Refined Jobe Cluster - Faded (Left-Wrist)', 36019), (166031, 166032, 201, 300, 'Shield Melee AC Refined Jobe Cluster - Shiny (Left-Hand)', 36021), (166097, 166098, 1, 200, 'Shield Poison AC Jobe Cluster - Bright (Feet)', 36003), (166093, 166094, 1, 200, 'Shield Poison AC Jobe Cluster - Faded (Left-Wrist)', 36002), (166101, 166102, 1, 200, 'Shield Poison AC Jobe Cluster - Shiny (Left-Hand)', 36004), (166099, 166100, 201, 300, 'Shield Poison AC Refined Jobe Cluster - Bright (Feet)', 36003), (166095, 166096, 201, 300, 'Shield Poison AC Refined Jobe Cluster - Faded (Left-Wrist)', 36002), (166103, 166104, 201, 300, 'Shield Poison AC Refined Jobe Cluster - Shiny (Left-Hand)', 36004), (166013, 166014, 1, 200, 'Shield Projectile AC Jobe Cluster - Bright (Left-Hand)', 36003), (166009, 166010, 1, 200, 'Shield Projectile AC Jobe Cluster - Faded (Leg)', 36002), (166017, 166018, 1, 200, 'Shield Projectile AC Jobe Cluster - Shiny (Left-Wrist)', 36004), (166015, 166016, 201, 300, 'Shield Projectile AC Refined Jobe Cluster - Bright (Left-Hand)', 36003), (166011, 166012, 201, 300, 'Shield Projectile AC Refined Jobe Cluster - Faded (Leg)', 36002), (166019, 166020, 201, 300, 'Shield Projectile AC Refined Jobe Cluster - Shiny (Left-Wrist)', 36004), (166061, 166062, 1, 200, 'Shield Radiation AC Jobe Cluster - Bright (Left-Hand)', 36020), (166057, 166058, 1, 200, 'Shield Radiation AC Jobe Cluster - Faded (Leg)', 36019), (166065, 166066, 1, 200, 'Shield Radiation AC Jobe Cluster - Shiny (Left-Wrist)', 36021), (166063, 166064, 201, 300, 'Shield Radiation AC Refined Jobe Cluster - Bright (Left-Hand)', 36020), (166059, 166060, 201, 300, 'Shield Radiation AC Refined Jobe Cluster - Faded (Leg)', 36019), (166067, 166068, 201, 300, 'Shield Radiation AC Refined Jobe Cluster - Shiny (Left-Wrist)', 36021), (154929, 154929, 199, 199, 'Shield of Asmodian', 154367), (275851, 275851, 215, 215, 'Shield of Esa', 154364), (215360, 215360, 1, 1, 'Shield of Light', 239342), (273377, 273377, 215, 215, 'Shield of Zset', 273415), (305605, 305605, 215, 215, 'Shield of Zset', 273415), (263285, 263285, 125, 125, 'Shield of the Honorable Warrior', 245994), (200503, 200503, 1, 1, 'Shielded Bio-Container', 99670), (200501, 200501, 1, 1, 'Shielded Bio-Container full of Pieces of Living Enigma Bark', 99670), (200511, 200511, 1, 1, 'Shielded Bio-Container with eight Pieces of Living Enigma Bark', 99670), (200521, 200521, 1, 1, 'Shielded Bio-Container with eighteen Pieces of Living Enigma Bark', 99670), (200514, 200514, 1, 1, 'Shielded Bio-Container with eleven Pieces of Living Enigma Bark', 99670), (200518, 200518, 1, 1, 'Shielded Bio-Container with fifteen Pieces of Living Enigma Bark', 99670), (200508, 200508, 1, 1, 'Shielded Bio-Container with five Pieces of Living Enigma Bark', 99670), (200507, 200507, 1, 1, 'Shielded Bio-Container with four Pieces of Living Enigma Bark', 99670), (200517, 200517, 1, 1, 'Shielded Bio-Container with fourteen Pieces of Living Enigma Bark', 99670), (200491, 200491, 1, 1, 'Shielded Bio-Container with fourty Pieces of Living Enigma Bark', 99670), (200499, 200499, 1, 1, 'Shielded Bio-Container with fourty eight Pieces of Living Enigma Bark', 99670), (200496, 200496, 1, 1, 'Shielded Bio-Container with fourty five Pieces of Living Enigma Bark', 99670), (200495, 200495, 1, 1, 'Shielded Bio-Container with fourty four Pieces of Living Enigma Bark', 99670), (200500, 200500, 1, 1, 'Shielded Bio-Container with fourty nine Pieces of Living Enigma Bark', 99670), (200492, 200492, 1, 1, 'Shielded Bio-Container with fourty one Pieces of Living Enigma Bark', 99670), (200498, 200498, 1, 1, 'Shielded Bio-Container with fourty seven Pieces of Living Enigma Bark', 99670), (200497, 200497, 1, 1, 'Shielded Bio-Container with fourty six Pieces of Living Enigma Bark', 99670), (200494, 200494, 1, 1, 'Shielded Bio-Container with fourty three Pieces of Living Enigma Bark', 99670), (200493, 200493, 1, 1, 'Shielded Bio-Container with fourty two Pieces of Living Enigma Bark', 99670), (200512, 200512, 1, 1, 'Shielded Bio-Container with nine Pieces of Living Enigma Bark', 99670), (200522, 200522, 1, 1, 'Shielded Bio-Container with nineteen Pieces of Living Enigma Bark', 99670), (200504, 200504, 1, 1, 'Shielded Bio-Container with one Piece of Living Enigma Bark', 99670), (200510, 200510, 1, 1, 'Shielded Bio-Container with seven Pieces of Living Enigma Bark', 99670), (200520, 200520, 1, 1, 'Shielded Bio-Container with seventeen Pieces of Living Enigma Bark', 99670), (200509, 200509, 1, 1, 'Shielded Bio-Container with six Pieces of Living Enigma Bark', 99670), (200519, 200519, 1, 1, 'Shielded Bio-Container with sixteen Pieces of Living Enigma Bark', 99670), (200513, 200513, 1, 1, 'Shielded Bio-Container with ten Pieces of Living Enigma Bark', 99670), (200516, 200516, 1, 1, 'Shielded Bio-Container with thirteen Pieces of Living Enigma Bark', 99670), (200481, 200481, 1, 1, 'Shielded Bio-Container with thirty Pieces of Living Enigma Bark', 99670), (200489, 200489, 1, 1, 'Shielded Bio-Container with thirty eight Pieces of Living Enigma Bark', 99670), (200486, 200486, 1, 1, 'Shielded Bio-Container with thirty five Pieces of Living Enigma Bark', 99670), (200485, 200485, 1, 1, 'Shielded Bio-Container with thirty four Pieces of Living Enigma Bark', 99670), (200490, 200490, 1, 1, 'Shielded Bio-Container with thirty nine Pieces of Living Enigma Bark', 99670), (200482, 200482, 1, 1, 'Shielded Bio-Container with thirty one Pieces of Living Enigma Bark', 99670), (200488, 200488, 1, 1, 'Shielded Bio-Container with thirty seven Pieces of Living Enigma Bark', 99670), (200487, 200487, 1, 1, 'Shielded Bio-Container with thirty six Pieces of Living Enigma Bark', 99670), (200484, 200484, 1, 1, 'Shielded Bio-Container with thirty three Pieces of Living Enigma Bark', 99670), (200483, 200483, 1, 1, 'Shielded Bio-Container with thirty two Pieces of Living Enigma Bark', 99670), (200506, 200506, 1, 1, 'Shielded Bio-Container with three Pieces of Living Enigma Bark', 99670), (200515, 200515, 1, 1, 'Shielded Bio-Container with twelve Pieces of Living Enigma Bark', 99670), (200523, 200523, 1, 1, 'Shielded Bio-Container with twenty Pieces of Living Enigma Bark', 99670), (200531, 200531, 1, 1, 'Shielded Bio-Container with twenty eight Pieces of Living Enigma Bark', 99670), (200528, 200528, 1, 1, 'Shielded Bio-Container with twenty five Pieces of Living Enigma Bark', 99670), (200527, 200527, 1, 1, 'Shielded Bio-Container with twenty four Pieces of Living Enigma Bark', 99670), (200532, 200532, 1, 1, 'Shielded Bio-Container with twenty nine Pieces of Living Enigma Bark', 99670), (200524, 200524, 1, 1, 'Shielded Bio-Container with twenty one Pieces of Living Enigma Bark', 99670), (200530, 200530, 1, 1, 'Shielded Bio-Container with twenty seven Pieces of Living Enigma Bark', 99670), (200529, 200529, 1, 1, 'Shielded Bio-Container with twenty six Pieces of Living Enigma Bark', 99670), (200526, 200526, 1, 1, 'Shielded Bio-Container with twenty three Pieces of Living Enigma Bark', 99670), (200525, 200525, 1, 1, 'Shielded Bio-Container with twenty two Pieces of Living Enigma Bark', 99670), (200505, 200505, 1, 1, 'Shielded Bio-Container with two Pieces of Living Enigma Bark', 99670), (25826, 25826, 250, 250, 'Shining 2 Sphere by Pearl, Peters & Tool', 286950), (164077, 164078, 1, 49, 'Shining Black Staff', 203230), (164083, 164084, 150, 199, 'Shining Black Staff of Articulated Speech', 203230), (164081, 164082, 100, 149, 'Shining Black Staff of Attentive Listening', 203230), (164079, 164080, 50, 99, 'Shining Black Staff of Keen Smelling', 203230), (164085, 164085, 200, 200, 'Shining Black Staff of the Watchful Eye', 203230), (274726, 274726, 1, 1, 'Shining Combined Soul Crystal', 274673), (154666, 154667, 1, 200, 'Shining Nano Knot of Muscular Increase', 19862), (154269, 154270, 1, 200, 'Shining Nano Knot of Restoration', 19860), (154386, 154385, 1, 200, 'Shining Nano Knot of Swimming', 19855), (157642, 157643, 151, 193, 'Shining Soft Pepper Pistol', 113995), (215411, 215411, 1, 1, 'Shiny', 82197), (265797, 265797, 1, 1, 'Shiny Band', 151917), (211205, 211205, 300, 300, 'Shiny Glaive of the Proselyte', 13339), (208074, 208074, 75, 75, 'Shiny Slicer of Aesthetic Rage', 114008), (297289, 297289, 1, 1, 'Shiny Sword', 158280), (282119, 282119, 150, 150, 'Shirt of the Goddess', 281509), (248988, 248988, 1, 1, 'Shirt of the King', 254852), (31247, 31247, 1, 1, 'Shirt with a Jobe Symbol Print', 30926), (31248, 31248, 1, 1, 'Shirt with a Symbol Print', 30925), (88058, 95805, 1, 200, 'Shock Trooper Force Field Projector', 12702), (208516, 208516, 200, 200, 'Shock Trooper Muffin', 130516), (211272, 211273, 1, 299, 'Shock of Truth', 21149), (211266, 211267, 1, 299, 'Shooter of the Door-Keeper', 13322), (211268, 211268, 300, 300, 'Shooter of the Porter', 13322), (284621, 284621, 14, 14, 'Shop Lifter', 273626), (246091, 246091, 250, 250, 'Shopkeeper''s Sharkskin Sleeves', 22956), (268707, 268707, 1, 1, 'Shopping Bag', 268658), (268708, 268708, 1, 1, 'Shopping Bag', 268659), (268709, 268709, 1, 1, 'Shopping Bag', 268660), (268710, 268710, 1, 1, 'Shopping Bag', 268661), (268711, 268711, 1, 1, 'Shopping Bag', 268662), (268712, 268712, 1, 1, 'Shopping Bag', 268663), (268713, 268713, 1, 1, 'Shopping Bag', 268664), (268714, 268714, 1, 1, 'Shopping Bag', 268665), (268715, 268715, 1, 1, 'Shopping Bag', 268666), (268716, 268716, 1, 1, 'Shopping Bag', 268667), (268717, 268717, 1, 1, 'Shopping Bag', 268668), (268718, 268718, 1, 1, 'Shopping Bag', 268669), (41075, 41075, 1, 1, 'Short Black Leather Sleeves', 41173), (42351, 42351, 1, 1, 'Short Black Sweater Pants', 42287), (42335, 42335, 1, 1, 'Short Blue Sweater Pants', 42285), (85460, 85461, 1, 250, 'Short Blunt Weapons Field Primer', 83347), (245728, 245728, 250, 250, 'Short Circuited Spiritech Circlet', 245726), (245729, 245729, 250, 250, 'Short Circuited Spiritech Circlet', 245727), (137233, 137234, 1, 200, 'Short Composite Barrel', 130704), (204767, 204767, 50, 50, 'Short Eyemutant Sinews', 156557), (204770, 204770, 50, 50, 'Short Eyemutant Sinews - Preserved', 156557), (248085, 248085, 1, 1, 'Short Flapper Skirt of The Honored Maidens', 255177), (42331, 42331, 1, 1, 'Short Green Sweater Pants', 42283), (142884, 142885, 1, 200, 'Short Handle', 130873), (246394, 246395, 50, 200, 'Short Perennium Muzzle', 130714), (42324, 42324, 1, 1, 'Short Red Twil Sleeves', 42270), (42320, 42320, 1, 1, 'Short Red Twil Top', 42274), (42358, 42358, 1, 1, 'Short Silver Sleeves', 42306), (41079, 41079, 1, 1, 'Short Sleeves with a Grey Waterlily Print', 37120), (41081, 41081, 1, 1, 'Short Sleeves with a Waterlily Print', 37119), (41055, 41055, 1, 1, 'Short Top with a Grey Waterlily Print', 41190), (41054, 41054, 1, 1, 'Short Top with a Waterlily Print', 37145), (41101, 41101, 1, 1, 'Short White Sleeves', 85944), (123974, 123975, 1, 4, 'Shortened Gripo-Com AKR 1K20', 21146), (123895, 123896, 24, 41, 'Shortened OT Backup', 113988), (123744, 123745, 12, 21, 'Shortened OT M-10 Flechette Pistol', 113994), (101467, 101468, 1, 200, 'Shotgun Cluster - Bright (Right-Hand)', 35981), (101465, 101466, 1, 200, 'Shotgun Cluster - Faded (Waist)', 35980), (101469, 101470, 1, 200, 'Shotgun Cluster - Shiny (Right-Arm)', 35982), (277927, 277928, 1, 300, 'Shotgun Memory Cell', 276922), (165627, 165628, 201, 300, 'Shotgun Refined Cluster - Bright (Right-Hand)', 35981), (165625, 165626, 201, 300, 'Shotgun Refined Cluster - Faded (Waist)', 35980), (165629, 165630, 201, 300, 'Shotgun Refined Cluster - Shiny (Right-Arm)', 35982), (278250, 278251, 1, 199, 'Shotgun Skill NCU (1/6)', 276930), (278252, 278253, 200, 299, 'Shotgun Skill NCU (1/6)', 276930), (278254, 278254, 300, 300, 'Shotgun Skill NCU (1/6)', 276930), (278255, 278256, 1, 199, 'Shotgun Skill NCU (2/6)', 276931), (278257, 278258, 200, 299, 'Shotgun Skill NCU (2/6)', 276931), (278259, 278259, 300, 300, 'Shotgun Skill NCU (2/6)', 276931), (278260, 278261, 1, 199, 'Shotgun Skill NCU (3/6)', 276932), (278262, 278263, 200, 299, 'Shotgun Skill NCU (3/6)', 276932), (278264, 278264, 300, 300, 'Shotgun Skill NCU (3/6)', 276932), (278265, 278266, 1, 199, 'Shotgun Skill NCU (4/6)', 276933), (278267, 278268, 200, 299, 'Shotgun Skill NCU (4/6)', 276933), (278269, 278269, 300, 300, 'Shotgun Skill NCU (4/6)', 276933), (278270, 278271, 1, 199, 'Shotgun Skill NCU (5/6)', 276934), (278272, 278273, 200, 299, 'Shotgun Skill NCU (5/6)', 276934), (278274, 278274, 300, 300, 'Shotgun Skill NCU (5/6)', 276934), (278275, 278276, 1, 199, 'Shotgun Skill NCU (6/6)', 276935), (278277, 278278, 200, 299, 'Shotgun Skill NCU (6/6)', 276935), (278279, 278279, 300, 300, 'Shotgun Skill NCU (6/6)', 276935), (272286, 272287, 1, 300, 'Shotgun Weapons Basic Upgrade Kit', 272250), (214281, 214281, 300, 300, 'Shotgun of Impressive Presence', 210175), (214277, 214278, 100, 199, 'Shotgun of Noticeable Presence', 210175), (214279, 214280, 200, 299, 'Shotgun of Noticeable Presence', 210175), (214274, 214274, 300, 300, 'Shotgun of Safekeeping', 210188), (214270, 214271, 100, 199, 'Shotgun of Security', 210188), (214272, 214273, 200, 299, 'Shotgun of Security', 210188), (85454, 85455, 1, 250, 'Shotguns Field Primer', 83498), (304619, 304619, 150, 150, 'Shoulder Marking of Auraka', 19724), (245858, 245858, 250, 250, 'Shoulderpads of Asteroid Calling', 245852), (260685, 260685, 250, 250, 'Shoulderpads of Asteroid Calling', 245852), (269897, 269897, 1, 1, 'Shoulderpads of the Icy Wastes', 269968), (304478, 304479, 1, 220, 'Shoulderplate of the Eight', 305048), (244713, 244713, 300, 300, 'Shoulderplates of Sabotage', 245036), (258819, 258819, 1, 1, 'Shovel', 259034), (269492, 269492, 1, 1, 'Shovel X-6000', 259034), (245886, 245886, 250, 250, 'Shroud of Darkest Night', 22898), (260682, 260682, 250, 250, 'Shroud of Darkest Night', 22898), (247015, 247016, 100, 150, 'Shroud of the Revoked', 160451), (246289, 246289, 100, 100, 'Shuffling Finger', 11611), (225471, 225471, 1, 1, 'Shutdown Removal', 239113), (297262, 297262, 1, 1, 'Sided Faction Wipe', 285191), (124024, 124024, 200, 200, 'Sig SG 992 SWAT Army Special', 13321), (124022, 124023, 190, 199, 'Sig SG 992 SWAT Edition 1', 13321), (124018, 124019, 8, 91, 'Sig SG 992 SWAT Edition 2', 13321), (124020, 124021, 92, 189, 'Sig SG 992 SWAT Vagabond', 13321), (231085, 231086, 1, 19, 'Sigd I', 131264), (231087, 231088, 20, 29, 'Sigd II', 131264), (231089, 231090, 30, 39, 'Sigd III', 131264), (231091, 231092, 40, 59, 'Sigd IV', 131264), (231101, 231102, 250, 299, 'Sigd IX', 131264), (231093, 231094, 60, 99, 'Sigd V', 131264), (231095, 231096, 100, 149, 'Sigd VI', 131264), (231097, 231098, 150, 199, 'Sigd VII', 131264), (231099, 231100, 200, 249, 'Sigd VIII', 131264), (231103, 231103, 300, 300, 'Sigd X', 131264), (244750, 244750, 300, 300, 'Sigil of Bahomet', 131259), (302731, 302731, 300, 300, 'Sigil of Samael', 131259), (284301, 284301, 200, 200, 'Sigma Compiler Unit', 284332), (284304, 284304, 200, 200, 'Sigma Crystal - Left Fragment', 284337), (284303, 284303, 200, 200, 'Sigma Crystal - Right Fragment', 284338), (284292, 284292, 200, 200, 'Sigma Signal Relay', 284322), (284302, 284302, 200, 200, 'Sigma Tuning Crystal', 284336), (284300, 284300, 200, 200, 'Sigma Tuning Unit', 284327), (284434, 284434, 200, 200, 'Sigma Tuning Unit - Inactive', 284327), (301655, 301655, 1, 1, 'Signal Beacon: Big Red', 149933), (306185, 306185, 1, 1, 'Signal Beacon: Energy Shielding', 149941), (302514, 302514, 1, 1, 'Signal Beacon: Explosive Entry', 149941), (306183, 306183, 1, 1, 'Signal Beacon: Fuchsia Fog', 149941), (300804, 300804, 1, 1, 'Signal Beacon: Lightning', 300812), (303142, 303142, 1, 1, 'Signal Beacon: Meteo', 149933), (306184, 306184, 1, 1, 'Signal Beacon: Pale Flames', 149941), (302994, 302994, 1, 1, 'Signal Beacon: Purple Rays', 149937), (249847, 249847, 1, 1, 'Signed Contract', 154678), (275404, 275404, 1, 1, 'Signed Picture', 275407), (158801, 158801, 1, 1, 'Signet Ring of the Green Knight', 84046), (275720, 275720, 1, 1, 'Signet ring', 277960), (215368, 215368, 1, 1, 'Silence', 239341), (215484, 215484, 1, 1, 'Silence', 82197), (239349, 239349, 1, 1, 'Silence', 239341), (257967, 257967, 300, 300, 'Silenced Kyr''Ozch Rifle - Type 2', 255470), (257131, 257131, 300, 300, 'Silenced Kyr''Ozch Rifle - Type 3', 255470), (303257, 303258, 1, 200, 'Silencer''s Boots', 303263), (303283, 303284, 1, 200, 'Silencer''s Bulwark', 303282), (303255, 303256, 1, 200, 'Silencer''s Gloves', 303264), (303247, 303248, 1, 200, 'Silencer''s Helmet', 303265), (303259, 303260, 1, 200, 'Silencer''s Mark', 131249), (303251, 303252, 1, 200, 'Silencer''s Shirt', 303262), (303253, 303254, 1, 200, 'Silencer''s Sleeves', 303261), (303249, 303250, 1, 200, 'Silencer''s Trousers', 303266), (251281, 251281, 1, 1, 'Silent Plague', 239143), (142804, 142805, 1, 15, 'Silent SSC Rustling Wakisashi', 113983), (249089, 249089, 1, 1, 'Silk Hipster Pants of Java Corp.', 255189), (249090, 249090, 1, 1, 'Silk Hipster Shoes of Java Corp.', 255352), (248914, 248914, 1, 1, 'Silk Kimono of the Coven of Hunters', 255326), (152544, 152544, 160, 160, 'Silken Legchopper Gloves', 37105), (253508, 253508, 1, 1, 'Sillum Party Pole', 255939), (257380, 257380, 300, 300, 'Sillum''s Combined Mercenary''s Headwear', 256359), (163644, 163645, 1, 200, 'Silly Ring', 301128), (42356, 42356, 1, 1, 'Silver Boots', 42294), (281347, 281347, 1, 1, 'Silver Card', 281339), (286561, 286561, 1, 1, 'Silver Chest of the Collector', 286445), (121609, 121609, 200, 200, 'Silver Crescent Edge', 13343), (151367, 151377, 1, 250, 'Silver Filigree Ring', 286877), (244472, 244478, 1, 400, 'Silver Filigree Ring set with a Almandine', 286853), (244457, 244463, 1, 400, 'Silver Filigree Ring set with a Amber', 286854), (244249, 244255, 1, 400, 'Silver Filigree Ring set with a Aquamarine', 286855), (244393, 244399, 1, 400, 'Silver Filigree Ring set with a Balas ruby', 286856), (244333, 244339, 1, 400, 'Silver Filigree Ring set with a Black opal', 286857), (151524, 151518, 1, 400, 'Silver Filigree Ring set with a Blue Pearl by Conner', 301036), (244305, 244311, 1, 400, 'Silver Filigree Ring set with a Chrysoberyl', 286859), (151594, 151589, 1, 200, 'Silver Filigree Ring set with a Cold Stone', 286860), (244528, 244534, 1, 400, 'Silver Filigree Ring set with a Coral', 286861), (151580, 151575, 1, 200, 'Silver Filigree Ring set with a Crystal Sphere', 286862), (244379, 244385, 1, 400, 'Silver Filigree Ring set with a Demantoid', 286863), (244291, 244297, 1, 400, 'Silver Filigree Ring set with a Diamond', 286864), (151511, 151504, 1, 200, 'Silver Filigree Ring set with a Ember', 286865), (151567, 151560, 1, 200, 'Silver Filigree Ring set with a Ember Sphere', 286866), (244408, 244414, 1, 400, 'Silver Filigree Ring set with a Emerald', 286867), (244235, 244241, 1, 400, 'Silver Filigree Ring set with a Fire opal', 286868), (151553, 151546, 1, 200, 'Silver Filigree Ring set with a Gem', 286870), (151538, 151533, 1, 200, 'Silver Filigree Ring set with a Hot Stone', 286871), (244443, 244449, 1, 400, 'Silver Filigree Ring set with a Jet', 286873), (244514, 244520, 1, 400, 'Silver Filigree Ring set with a Pearl', 286874), (151433, 151434, 1, 200, 'Silver Filigree Ring set with a Pearl of Rubi-Ka', 286875), (244473, 244479, 1, 400, 'Silver Filigree Ring set with a Perfectly Cut Almandine', 286853), (244458, 244464, 1, 400, 'Silver Filigree Ring set with a Perfectly Cut Amber', 286854), (244250, 244256, 1, 400, 'Silver Filigree Ring set with a Perfectly Cut Aquamarine', 286855), (244394, 244400, 1, 400, 'Silver Filigree Ring set with a Perfectly Cut Balas ruby', 286856), (244334, 244340, 1, 400, 'Silver Filigree Ring set with a Perfectly Cut Black opal', 286857), (151522, 151522, 1, 1, 'Silver Filigree Ring set with a Perfectly Cut Blue Pearl by Conner', 301036), (244306, 244312, 1, 400, 'Silver Filigree Ring set with a Perfectly Cut Chrysoberyl', 286859), (151591, 151586, 1, 200, 'Silver Filigree Ring set with a Perfectly Cut Cold Stone', 286860), (244529, 244535, 1, 400, 'Silver Filigree Ring set with a Perfectly Cut Coral', 286861), (151577, 151572, 1, 200, 'Silver Filigree Ring set with a Perfectly Cut Crystal Sphere', 286862), (244380, 244386, 1, 400, 'Silver Filigree Ring set with a Perfectly Cut Demantoid', 286863), (244292, 244298, 1, 400, 'Silver Filigree Ring set with a Perfectly Cut Diamond', 286864), (151508, 151502, 1, 200, 'Silver Filigree Ring set with a Perfectly Cut Ember', 286865), (151563, 151558, 1, 200, 'Silver Filigree Ring set with a Perfectly Cut Ember Sphere', 286866), (244409, 244415, 1, 400, 'Silver Filigree Ring set with a Perfectly Cut Emerald', 286867), (244236, 244242, 1, 400, 'Silver Filigree Ring set with a Perfectly Cut Fire opal', 286868), (151459, 151459, 300, 300, 'Silver Filigree Ring set with a Perfectly Cut Flawless Spring Crystal', 286869), (151549, 151544, 1, 200, 'Silver Filigree Ring set with a Perfectly Cut Gem', 286870), (154876, 154876, 250, 250, 'Silver Filigree Ring set with a Perfectly Cut High Quality Silver Onyx', 286872), (151535, 151529, 1, 200, 'Silver Filigree Ring set with a Perfectly Cut Hot Stone', 286871), (244444, 244450, 1, 400, 'Silver Filigree Ring set with a Perfectly Cut Jet', 286873), (244515, 244521, 1, 400, 'Silver Filigree Ring set with a Perfectly Cut Pearl', 286874), (151435, 151436, 1, 200, 'Silver Filigree Ring set with a Perfectly Cut Pearl of Rubi-Ka', 286875), (244487, 244493, 1, 400, 'Silver Filigree Ring set with a Perfectly Cut Red beryl', 286876), (151421, 151422, 1, 150, 'Silver Filigree Ring set with a Perfectly Cut Rubi-Ka Ruby', 286878), (151493, 151488, 1, 200, 'Silver Filigree Ring set with a Perfectly Cut Ruby', 286879), (244501, 244507, 1, 400, 'Silver Filigree Ring set with a Perfectly Cut Ruby Pearl', 286880), (244264, 244270, 1, 400, 'Silver Filigree Ring set with a Perfectly Cut Sapphire', 286881), (154804, 154804, 1, 1, 'Silver Filigree Ring set with a Perfectly Cut Silver Onyx', 286882), (151452, 151445, 1, 200, 'Silver Filigree Ring set with a Perfectly Cut Silver Perl', 286883), (151479, 151473, 1, 200, 'Silver Filigree Ring set with a Perfectly Cut Soul Fragment', 286884), (151515, 151515, 400, 400, 'Silver Filigree Ring set with a Perfectly Cut Soul Sphere by Divaad', 301041), (151466, 151466, 1, 1, 'Silver Filigree Ring set with a Perfectly Cut Spring Crystal', 286885), (244278, 244284, 1, 400, 'Silver Filigree Ring set with a Perfectly Cut Star Ruby', 286886), (244430, 244436, 1, 400, 'Silver Filigree Ring set with a Perfectly Cut Topaz', 286887), (244320, 244326, 1, 400, 'Silver Filigree Ring set with a Perfectly Cut Water opal', 286888), (244365, 244371, 1, 400, 'Silver Filigree Ring set with a Perfectly Cut White opal', 286889), (244486, 244492, 1, 400, 'Silver Filigree Ring set with a Red beryl', 286876), (151419, 151420, 1, 150, 'Silver Filigree Ring set with a Rubi-Ka Ruby', 286878), (151497, 151490, 1, 200, 'Silver Filigree Ring set with a Ruby', 286879), (244500, 244506, 1, 400, 'Silver Filigree Ring set with a Ruby Pearl', 286880), (244263, 244269, 1, 400, 'Silver Filigree Ring set with a Sapphire', 286881), (154807, 154801, 1, 250, 'Silver Filigree Ring set with a Silver Onyx', 286882), (151454, 151448, 1, 200, 'Silver Filigree Ring set with a Silver Perl', 286883), (151482, 151477, 1, 200, 'Silver Filigree Ring set with a Soul Fragment', 286884), (151468, 151463, 1, 300, 'Silver Filigree Ring set with a Spring Crystal', 286885), (244277, 244283, 1, 400, 'Silver Filigree Ring set with a Star Ruby', 286886), (244429, 244435, 1, 400, 'Silver Filigree Ring set with a Topaz', 286887), (244319, 244325, 1, 400, 'Silver Filigree Ring set with a Water opal', 286888), (244364, 244370, 1, 400, 'Silver Filigree Ring set with a White opal', 286889), (150933, 150932, 1, 250, 'Silver Filigree Wire', 151017), (130189, 130190, 150, 169, 'Silver Hot Air Stick', 13349), (125437, 125437, 200, 200, 'Silver Inlaid Ebony Torch', 85172), (121599, 121600, 93, 115, 'Silver Moon Edge', 13343), (150921, 150920, 1, 250, 'Silver Nano Circuitry Filigree Wire', 151017), (136634, 136635, 1, 200, 'Silver Nugget', 290361), (25832, 25832, 1, 1, 'Silver Onyx', 286951), (42355, 42355, 1, 1, 'Silver Pants', 42288), (136652, 136653, 1, 200, 'Silver Pearl', 286953), (204572, 204572, 1, 1, 'Silver Ring of the Three', 286776), (42357, 42357, 1, 1, 'Silver Shirt', 42264), (238916, 238917, 100, 300, 'Silver Spider Knuckledusters', 13280), (289552, 289552, 1, 1, 'Silver Star Field Nanospray', 289592), (289542, 289542, 1, 1, 'Silver Star Nanospray', 289589), (157422, 157422, 1, 1, 'Silver Twentyfive Stag Beetle Advantage', 81778), (232669, 232670, 1, 149, 'Silver ingot', 289749), (232670, 232671, 150, 199, 'Silver ingot', 289749), (232671, 232672, 200, 249, 'Silver ingot', 289749), (232672, 232673, 250, 400, 'Silver ingot', 289749), (232850, 232851, 1, 149, 'Silver tiara set with pearls', 151918), (232851, 232853, 150, 199, 'Silver tiara set with pearls', 151918), (232853, 232854, 200, 249, 'Silver tiara set with pearls', 151918), (232854, 232855, 250, 400, 'Silver tiara set with pearls', 151918), (227094, 227095, 1, 14, 'Silvertail Dagger', 218708), (227168, 227169, 1, 15, 'Silvertail Horn', 218708), (232904, 232905, 1, 149, 'Silvery bangle', 151917), (232905, 232906, 150, 199, 'Silvery bangle', 151917), (232906, 232907, 200, 249, 'Silvery bangle', 151917), (232907, 232908, 250, 400, 'Silvery bangle', 151917), (225639, 225640, 1, 300, 'Simians''s Bracelet', 151929), (152085, 152086, 31, 60, 'Simple Abigail', 13314), (153563, 153563, 1, 1, 'Simple Abigail Construction Manual', 37932), (156028, 156028, 1, 1, 'Simple Active Tube', 156093), (156014, 156015, 1, 200, 'Simple Crawling Drive', 156086), (137181, 137182, 1, 200, 'Simple Crosshair Target', 130841), (225770, 225771, 1, 300, 'Simple Distance Weapons Guide', 205503), (152098, 152099, 31, 60, 'Simple Fiddle Rifle', 13312), (153691, 153691, 1, 1, 'Simple Fiddle Rifle Construction Manual', 37932), (23314, 23316, 1, 200, 'Simple First-Aid Kit', 11708), (23316, 160276, 200, 399, 'Simple First-Aid Kit', 11708), (152328, 152329, 21, 40, 'Simple MTI Aleph 99', 21148), (153845, 153845, 1, 1, 'Simple MTI Aleph 99 Construction Manual', 37932), (203044, 203045, 10, 200, 'Simple Missile Turret', 202239), (203048, 203049, 10, 200, 'Simple Missile Turret', 202239), (203046, 203047, 201, 250, 'Simple Missile Turret', 202239), (203050, 203051, 201, 250, 'Simple Missile Turret', 202239), (85366, 85367, 1, 200, 'Simple Nano Kit', 11752), (152111, 152112, 31, 60, 'Simple Pow Bow', 85167), (225773, 225774, 1, 300, 'Simple Ranged Weapons Guide', 205504), (154271, 154271, 1, 1, 'Simple Restoration Kit', 11714), (206876, 206876, 10, 10, 'Simple Rollerrat Helmet', 205768), (152124, 152125, 31, 60, 'Simple Sapphistic Bow', 85167), (158764, 158764, 1, 1, 'Sinew of Tarasque', 12676), (227182, 227183, 1, 15, 'Singing Soul Stone', 136594), (156034, 156037, 1, 199, 'Single Charged Liquid Bomb', 131257), (305021, 305021, 300, 300, 'Sinister Pistol of The Revoked', 13316), (229658, 229658, 1, 1, 'Siphon Box', 239201), (290912, 290912, 1, 1, 'SirSalad''s T-shirt', 290954), (142829, 142830, 121, 140, 'Sistergold Inc Survival Knife', 40783), (49576, 49576, 1, 1, 'Sit', 49564), (124531, 124532, 36, 139, 'Sito-Tech Model 00', 113990), (124533, 124533, 140, 140, 'Sito-Tech Model 00 Chigwell', 113990), (303059, 303059, 100, 100, 'Skawt''s Compact Plasma Emitter', 33145), (303058, 303058, 200, 200, 'Skawt''s Plasma Emitter', 33171), (283934, 283934, 1, 1, 'Skeleton Arms', 283933), (283849, 283849, 1, 1, 'Skeleton Chest', 283924), (283940, 283940, 1, 1, 'Skeleton Feet', 283931), (283939, 283939, 1, 1, 'Skeleton Hands', 283932), (284067, 284067, 1, 1, 'Skeleton Head', 284148), (283926, 283926, 1, 1, 'Skeleton Legs', 283925), (288637, 288637, 1, 1, 'Skeleton Nanospray', 288630), (294046, 294046, 1, 1, 'Ski Pole', 229956), (248961, 248961, 1, 1, 'Ski Suit Boots of Huge Inc.', 255366), (248963, 248963, 1, 1, 'Ski Suit Gloves of Huge Inc.', 255171), (248958, 248958, 1, 1, 'Ski Suit Jacket of Huge Inc.', 255327), (248964, 248964, 1, 1, 'Ski Suit Pants of Huge Inc.', 255201), (248957, 248957, 1, 1, 'Ski Suit Sleeves of Huge Inc.', 255270), (225470, 225470, 1, 1, 'Skill Drain Removal', 239111), (166289, 166290, 1, 200, 'Skill Time Lock Modifier Jobe Cluster - Bright (Left-Hand)', 36003), (166285, 166286, 1, 200, 'Skill Time Lock Modifier Jobe Cluster - Faded (Chest)', 36002), (166293, 166294, 1, 200, 'Skill Time Lock Modifier Jobe Cluster - Shiny (Leg)', 36004), (166291, 166292, 201, 300, 'Skill Time Lock Modifier Refined Jobe Cluster - Bright (Left-Hand)', 36003), (166287, 166288, 201, 300, 'Skill Time Lock Modifier Refined Jobe Cluster - Faded (Chest)', 36002), (166295, 166296, 201, 300, 'Skill Time Lock Modifier Refined Jobe Cluster - Shiny (Leg)', 36004), (304822, 304822, 1, 1, 'Skroog''s List', 275964), (259749, 259749, 1, 1, 'Skull', 265376), (288572, 288572, 1, 1, 'Skull ''n Crossbones Nanospray', 288569), (214166, 214167, 100, 199, 'Skull Smasher', 211288), (214168, 214169, 200, 299, 'Skull Smasher', 211288), (234650, 234651, 100, 199, 'Skull Smasher - Left Monster Version', 211288), (234652, 234653, 200, 299, 'Skull Smasher - Left Monster Version', 211288), (259752, 259752, 1, 1, 'Skull With Candle', 265375), (305035, 305035, 1, 1, 'Skull of Anguish', 296406), (206060, 206060, 1, 1, 'Skull of Despair', 296406), (204752, 204752, 1, 1, 'Skull of Lamentation', 204742), (206059, 206059, 1, 1, 'Skull of Misery', 296406), (204751, 204751, 1, 1, 'Skull of Woe', 204742), (204647, 204647, 1, 1, 'Skull of the Ancient', 195259), (265358, 265358, 1, 1, 'Skull''n''Bones', 265355), (215357, 215357, 1, 1, 'Slam of Darkness', 239343), (215489, 215489, 1, 1, 'Slam of Darkness', 82197), (239357, 239357, 1, 1, 'Slam of Darkness', 239343), (271282, 271283, 1, 300, 'Slank Chop - 000', 21143), (271284, 271285, 1, 300, 'Slank Chop - 010', 21143), (271286, 271287, 1, 300, 'Slank Chop - 050', 21143), (271288, 271289, 1, 300, 'Slank Chop - 070', 21143), (271290, 271291, 1, 300, 'Slank Chop - 870', 21143), (265362, 265362, 1, 1, 'Slasher Shirt', 265354), (165131, 165132, 1, 199, 'Slayerdroid Claw', 131272), (165133, 165133, 200, 200, 'Slayerdroid Crystal Claw', 131272), (305026, 305026, 200, 200, 'Slayerdroid Notum-Imbued Claw', 131272), (297045, 297045, 1, 1, 'Sledgehammer', 33167), (271391, 271392, 1, 300, 'Sledgehammer - 000', 33167), (271393, 271394, 1, 300, 'Sledgehammer - 010', 33167), (271395, 271396, 1, 300, 'Sledgehammer - 050', 33167), (271397, 271398, 1, 300, 'Sledgehammer - 850', 33167), (164095, 164096, 1, 49, 'Sleek Black Staff', 203230), (164101, 164102, 150, 199, 'Sleek Black Staff of Crushed Knee Cap', 203230), (164097, 164098, 50, 99, 'Sleek Black Staff of Swift Feet', 203230), (164103, 164103, 200, 200, 'Sleek Black Staff of the Lithe Dancer', 203230), (164099, 164100, 100, 149, 'Sleek Black Staff of the Soft Sole', 203230), (160158, 160159, 61, 140, 'Sleek Cannon', 13342), (200467, 200467, 200, 200, 'Sleek Gauntlets of Crushing', 37106), (200466, 200466, 200, 200, 'Sleek Gauntlets of Slashing', 37106), (200469, 200469, 200, 200, 'Sleek Gauntlets of Technique', 37106), (200468, 200468, 200, 200, 'Sleek Gauntlets of Thrusting', 37106), (208013, 208014, 140, 149, 'Sleek Minor Fantastic', 13331), (208015, 208015, 150, 150, 'Sleek Minor Fantastic 04', 13331), (238962, 238962, 300, 300, 'Sleek Shank of Maze', 233353), (272007, 272008, 1, 300, 'Sleekblaster - 000', 13329), (272011, 272012, 1, 300, 'Sleekblaster - 005', 13329), (272013, 272014, 1, 300, 'Sleekblaster - 405', 13329), (272015, 272016, 1, 300, 'Sleekblaster - C05', 13329), (160489, 160490, 41, 120, 'Sleekmaster Classic', 13329), (271959, 271960, 1, 300, 'Sleekmaster Classic - 000', 13329), (271963, 271964, 1, 300, 'Sleekmaster Classic - 404', 13329), (271965, 271966, 1, 300, 'Sleekmaster Classic - C04', 13329), (235407, 235407, 30, 30, 'Sleeping Brain Symbiant, Artillery Unit Aban', 215189), (236303, 236303, 30, 30, 'Sleeping Brain Symbiant, Control Unit Aban', 215189), (236078, 236078, 30, 30, 'Sleeping Brain Symbiant, Support Unit Aban', 215188), (236354, 236354, 30, 30, 'Sleeping Chest Symbiant, Control Unit Aban', 215183), (235684, 235684, 30, 30, 'Sleeping Chest Symbiant, Infantry Unit Aban', 215181), (236127, 236127, 30, 30, 'Sleeping Chest Symbiant, Support Unit Aban', 215181), (235427, 235427, 30, 30, 'Sleeping Ear Symbiant, Artillery Unit Aban', 230977), (236318, 236318, 30, 30, 'Sleeping Ear Symbiant, Control Unit Aban', 230977), (236094, 236094, 30, 30, 'Sleeping Ear Symbiant, Support Unit Aban', 230977), (235601, 235601, 30, 30, 'Sleeping Feet Symbiant, Artillery Unit Aban', 215185), (235819, 235819, 30, 30, 'Sleeping Feet Symbiant, Infantry Unit Aban', 215187), (236271, 236271, 30, 30, 'Sleeping Feet Symbiant, Support Unit Aban', 215187), (235480, 235480, 30, 30, 'Sleeping Left Arm Symbiant, Artillery Unit Aban', 215179), (236370, 236370, 30, 30, 'Sleeping Left Arm Symbiant, Control Unit Aban', 215177), (235923, 235923, 30, 30, 'Sleeping Left Arm Symbiant, Extermination Unit Aban', 215175), (235702, 235702, 30, 30, 'Sleeping Left Arm Symbiant, Infantry Unit Aban', 215179), (236149, 236149, 30, 30, 'Sleeping Left Arm Symbiant, Support Unit Aban', 215175), (236478, 236478, 30, 30, 'Sleeping Left Hand Symbiant, Control Unit Aban', 215172), (235533, 235533, 30, 30, 'Sleeping Left Wrist Symbiant, Artillery Unit Aban', 215196), (235750, 235750, 30, 30, 'Sleeping Left Wrist Symbiant, Infantry Unit Aban', 215198), (219128, 219128, 30, 30, 'Sleeping Ocular Symbiant, Artillery Unit Aban', 230979), (235618, 235618, 30, 30, 'Sleeping Ocular Symbiant, Infantry Unit Aban', 230980), (236061, 236061, 30, 30, 'Sleeping Ocular Symbiant, Support Unit Aban', 230980), (235889, 235889, 30, 30, 'Sleeping Right Arm Symbiant, Extermination Unit Aban', 215178), (235991, 235991, 30, 30, 'Sleeping Right Hand Symbiant, Extermination Unit Aban', 215173), (235498, 235498, 30, 30, 'Sleeping Right Wrist Symbiant, Artillery Unit Aban', 215170), (236170, 236170, 30, 30, 'Sleeping Right Wrist Symbiant, Support Unit Aban', 215197), (236460, 236460, 30, 30, 'Sleeping Thigh Symbiant, Control Unit Aban', 215191), (235513, 235513, 30, 30, 'Sleeping Waist Symbiant, Artillery Unit Aban', 215194), (236406, 236406, 30, 30, 'Sleeping Waist Symbiant, Control Unit Aban', 215193), (235957, 235957, 30, 30, 'Sleeping Waist Symbiant, Extermination Unit Aban', 215193), (282118, 282118, 150, 150, 'Sleeve of the Goddess', 281512), (165303, 165303, 200, 200, 'Sleeves of Azure Reveries', 31644), (246109, 246109, 250, 250, 'Sleeves of Boiling Blood', 21976), (245433, 245433, 150, 150, 'Sleeves of Gashing', 213593), (233468, 233468, 110, 110, 'Sleeves of Material Command', 22949), (244705, 244705, 300, 300, 'Sleeves of Senseless Violence', 245029), (208200, 208201, 100, 200, 'Sleeves of Yearning', 22956), (248987, 248987, 1, 1, 'Sleeves of the King', 254851), (41230, 41230, 1, 1, 'Sleeves with Holes and a Stars Print', 41229), (41090, 41090, 1, 1, 'Sleeves with a Blue Leopard Print', 37111), (41082, 41082, 1, 1, 'Sleeves with a Blue Zebra Print', 37133), (41085, 41085, 1, 1, 'Sleeves with a Grey Waterlily Print', 37115), (41091, 41091, 1, 1, 'Sleeves with a Leopard Print', 37112), (41089, 41089, 1, 1, 'Sleeves with a Rainbow Leopard Print', 37113), (41087, 41087, 1, 1, 'Sleeves with a Stars Print', 41175), (41108, 41108, 1, 1, 'Sleeves with a Symbol Print', 30925), (41084, 41084, 1, 1, 'Sleeves with a Waterlily Print', 37116), (41088, 41088, 1, 1, 'Sleeves with a White Leopard Print', 37114), (41005, 41005, 1, 1, 'Sleeves with a Zebra Print', 37132), (226044, 226045, 1, 500, 'Slice and Dice', 239105), (226046, 226047, 1, 500, 'Slice and Dice', 239105), (226048, 226049, 1, 500, 'Slice and Dice', 239105), (248091, 248091, 1, 1, 'Slick Jacket of The Mockers', 255286), (248092, 248092, 1, 1, 'Slick Pants of The Mockers', 255178), (248093, 248093, 1, 1, 'Slick Shoes of The Mockers', 255334), (248090, 248090, 1, 1, 'Slick Sleeves of The Mockers', 255229), (199677, 199677, 220, 220, 'Slightly Above Average Nadir Homage Armor Boots', 22876), (199698, 199698, 220, 220, 'Slightly Above Average Nadir Homage Armor Gloves', 22931), (199719, 199719, 220, 220, 'Slightly Above Average Nadir Homage Armor Helmet', 31733), (199740, 199740, 220, 220, 'Slightly Above Average Nadir Homage Armor Pants', 22914), (199761, 199761, 220, 220, 'Slightly Above Average Nadir Homage Armor Sleeves', 22960), (199782, 199782, 220, 220, 'Slightly Above Average Nadir Homage Body Armor', 22985), (199675, 199675, 210, 210, 'Slightly Below Average Nadir Homage Armor Boots', 22876), (199696, 199696, 210, 210, 'Slightly Below Average Nadir Homage Armor Gloves', 22931), (199717, 199717, 210, 210, 'Slightly Below Average Nadir Homage Armor Helmet', 31733), (199738, 199738, 210, 210, 'Slightly Below Average Nadir Homage Armor Pants', 22914), (199759, 199759, 210, 210, 'Slightly Below Average Nadir Homage Armor Sleeves', 22960), (199780, 199780, 210, 210, 'Slightly Below Average Nadir Homage Body Armor', 22985), (160096, 160097, 21, 40, 'Slightly Bent Compressed Blade', 113986), (284137, 284137, 1, 1, 'Slime Nanospray', 284143), (275827, 275827, 1, 1, 'Slimy Alien Plant', 32171), (225649, 225650, 1, 300, 'Slippers of Manoeuvring', 42265), (245890, 245890, 250, 250, 'Slippers of Screaming', 42265), (280727, 280727, 300, 300, 'Sloth of the Xan', 280911), (247791, 247791, 100, 100, 'Slow-Killing Poison', 100335), (123294, 123295, 99, 114, 'Slugger', 33154), (271919, 271920, 1, 300, 'Slugger - 000', 33154), (271923, 271924, 1, 300, 'Slugger - 404', 33154), (271925, 271926, 1, 300, 'Slugger - C04', 33154), (235408, 235408, 40, 40, 'Sluggish Brain Symbiant, Artillery Unit Aban', 215189), (236355, 236355, 40, 40, 'Sluggish Chest Symbiant, Control Unit Aban', 215183), (235685, 235685, 40, 40, 'Sluggish Chest Symbiant, Infantry Unit Aban', 215181), (236128, 236128, 40, 40, 'Sluggish Chest Symbiant, Support Unit Aban', 215181), (235428, 235428, 40, 40, 'Sluggish Ear Symbiant, Artillery Unit Aban', 230977), (236319, 236319, 40, 40, 'Sluggish Ear Symbiant, Control Unit Aban', 230977), (235869, 235869, 40, 40, 'Sluggish Ear Symbiant, Extermination Unit Aban', 230977), (235650, 235650, 40, 40, 'Sluggish Ear Symbiant, Infantry Unit Aban', 230977), (236095, 236095, 40, 40, 'Sluggish Ear Symbiant, Support Unit Aban', 230977), (236044, 236044, 40, 40, 'Sluggish Feet Symbiant, Extermination Unit Aban', 215186), (236371, 236371, 40, 40, 'Sluggish Left Arm Symbiant, Control Unit Aban', 215177), (302931, 302931, 300, 300, 'Sluggish Notum Lens', 160723), (236287, 236287, 40, 40, 'Sluggish Ocular Symbiant, Control Unit Aban', 230979), (235619, 235619, 40, 40, 'Sluggish Ocular Symbiant, Infantry Unit Aban', 230980), (235445, 235445, 40, 40, 'Sluggish Right Arm Symbiant, Artillery Unit Aban', 215176), (236338, 236338, 40, 40, 'Sluggish Right Arm Symbiant, Control Unit Aban', 215180), (235890, 235890, 40, 40, 'Sluggish Right Arm Symbiant, Extermination Unit Aban', 215178), (235550, 235550, 40, 40, 'Sluggish Right Hand Symbiant, Artillery Unit Aban', 215173), (236443, 236443, 40, 40, 'Sluggish Right Hand Symbiant, Control Unit Aban', 215173), (235768, 235768, 40, 40, 'Sluggish Right Hand Symbiant, Infantry Unit Aban', 215174), (235941, 235941, 40, 40, 'Sluggish Right Wrist Symbiant, Extermination Unit Aban', 215170), (236407, 236407, 40, 40, 'Sluggish Waist Symbiant, Control Unit Aban', 215193), (99228, 99228, 1, 1, 'Small Backpack', 99661), (23157, 23157, 1, 1, 'Small Box', 154188), (258252, 258252, 1, 1, 'Small Chirop Egg', 258679), (254211, 254212, 1, 300, 'Small Clan Organization Headquarters', 255790), (212908, 212908, 1, 1, 'Small Crate', 20412), (202412, 202412, 200, 200, 'Small Ebony Figurine', 119081), (202417, 202417, 200, 200, 'Small Ebony Figurine', 119081), (202424, 202424, 200, 200, 'Small Ebony Figurine', 119081), (202428, 202428, 200, 200, 'Small Ebony Figurine', 119081), (202430, 202430, 200, 200, 'Small Ebony Figurine', 119081), (202432, 202432, 200, 200, 'Small Ebony Figurine', 119081), (202413, 202413, 201, 201, 'Small Ebony Figurine', 119081), (202418, 202418, 201, 201, 'Small Ebony Figurine', 119081), (202425, 202425, 201, 201, 'Small Ebony Figurine', 119081), (202429, 202429, 201, 201, 'Small Ebony Figurine', 119081), (202431, 202431, 201, 201, 'Small Ebony Figurine', 119081), (202433, 202433, 201, 201, 'Small Ebony Figurine', 119081), (202414, 202414, 202, 202, 'Small Ebony Figurine', 119081), (202419, 202419, 202, 202, 'Small Ebony Figurine', 119081), (202427, 202427, 202, 202, 'Small Ebony Figurine', 119081), (202434, 202434, 202, 202, 'Small Ebony Figurine', 119081), (202415, 202415, 203, 203, 'Small Ebony Figurine', 119081), (202420, 202420, 203, 203, 'Small Ebony Figurine', 119081), (202435, 202435, 203, 203, 'Small Ebony Figurine', 119081), (202416, 202416, 204, 204, 'Small Ebony Figurine', 119081), (202421, 202421, 204, 204, 'Small Ebony Figurine', 119081), (202436, 202436, 204, 204, 'Small Ebony Figurine', 119081), (202422, 202422, 205, 205, 'Small Ebony Figurine', 119081), (202437, 202437, 205, 205, 'Small Ebony Figurine', 119081), (202423, 202423, 206, 206, 'Small Ebony Figurine', 119081), (202390, 202390, 220, 220, 'Small Ebony Figurine', 119081), (202394, 202394, 220, 220, 'Small Ebony Figurine', 119081), (202397, 202397, 220, 220, 'Small Ebony Figurine', 119081), (202401, 202401, 220, 220, 'Small Ebony Figurine', 119081), (202409, 202409, 220, 220, 'Small Ebony Figurine', 119081), (202391, 202391, 221, 221, 'Small Ebony Figurine', 119081), (202395, 202395, 221, 221, 'Small Ebony Figurine', 119081), (202398, 202398, 221, 221, 'Small Ebony Figurine', 119081), (202402, 202402, 221, 221, 'Small Ebony Figurine', 119081), (202410, 202410, 221, 221, 'Small Ebony Figurine', 119081), (202392, 202392, 222, 222, 'Small Ebony Figurine', 119081), (202396, 202396, 222, 222, 'Small Ebony Figurine', 119081), (202399, 202399, 222, 222, 'Small Ebony Figurine', 119081), (202403, 202403, 222, 222, 'Small Ebony Figurine', 119081), (202411, 202411, 222, 222, 'Small Ebony Figurine', 119081), (202393, 202393, 223, 223, 'Small Ebony Figurine', 119081), (202400, 202400, 223, 223, 'Small Ebony Figurine', 119081), (202404, 202404, 223, 223, 'Small Ebony Figurine', 119081), (202405, 202405, 224, 224, 'Small Ebony Figurine', 119081), (202406, 202406, 225, 225, 'Small Ebony Figurine', 119081), (202407, 202407, 226, 226, 'Small Ebony Figurine', 119081), (202408, 202408, 227, 227, 'Small Ebony Figurine', 119081), (202369, 202369, 240, 240, 'Small Ebony Figurine', 119081), (202374, 202374, 240, 240, 'Small Ebony Figurine', 119081), (202381, 202381, 240, 240, 'Small Ebony Figurine', 119081), (202384, 202384, 240, 240, 'Small Ebony Figurine', 119081), (202387, 202387, 240, 240, 'Small Ebony Figurine', 119081), (202370, 202370, 241, 241, 'Small Ebony Figurine', 119081), (202375, 202375, 241, 241, 'Small Ebony Figurine', 119081), (202382, 202382, 241, 241, 'Small Ebony Figurine', 119081), (202385, 202385, 241, 241, 'Small Ebony Figurine', 119081), (202388, 202388, 241, 241, 'Small Ebony Figurine', 119081), (202371, 202371, 242, 242, 'Small Ebony Figurine', 119081), (202376, 202376, 242, 242, 'Small Ebony Figurine', 119081), (202383, 202383, 242, 242, 'Small Ebony Figurine', 119081), (202386, 202386, 242, 242, 'Small Ebony Figurine', 119081), (202389, 202389, 242, 242, 'Small Ebony Figurine', 119081), (202372, 202372, 243, 243, 'Small Ebony Figurine', 119081), (202377, 202377, 243, 243, 'Small Ebony Figurine', 119081), (202373, 202373, 244, 244, 'Small Ebony Figurine', 119081), (202378, 202378, 244, 244, 'Small Ebony Figurine', 119081), (202297, 202297, 250, 250, 'Small Ebony Figurine', 119081), (202347, 202347, 250, 250, 'Small Ebony Figurine', 119081), (202350, 202350, 250, 250, 'Small Ebony Figurine', 119081), (202356, 202356, 250, 250, 'Small Ebony Figurine', 119081), (202363, 202363, 250, 250, 'Small Ebony Figurine', 119081), (202298, 202298, 251, 251, 'Small Ebony Figurine', 119081), (202348, 202348, 251, 251, 'Small Ebony Figurine', 119081), (202351, 202351, 251, 251, 'Small Ebony Figurine', 119081), (202357, 202357, 251, 251, 'Small Ebony Figurine', 119081), (202364, 202364, 251, 251, 'Small Ebony Figurine', 119081), (202299, 202299, 252, 252, 'Small Ebony Figurine', 119081), (202349, 202349, 252, 252, 'Small Ebony Figurine', 119081), (202352, 202352, 252, 252, 'Small Ebony Figurine', 119081), (202358, 202358, 252, 252, 'Small Ebony Figurine', 119081), (202365, 202365, 252, 252, 'Small Ebony Figurine', 119081), (202300, 202300, 253, 253, 'Small Ebony Figurine', 119081), (202353, 202353, 253, 253, 'Small Ebony Figurine', 119081), (202359, 202359, 253, 253, 'Small Ebony Figurine', 119081), (202366, 202366, 253, 253, 'Small Ebony Figurine', 119081), (202301, 202301, 254, 254, 'Small Ebony Figurine', 119081), (202354, 202354, 254, 254, 'Small Ebony Figurine', 119081), (202360, 202360, 254, 254, 'Small Ebony Figurine', 119081), (202367, 202367, 254, 254, 'Small Ebony Figurine', 119081), (202302, 202302, 255, 255, 'Small Ebony Figurine', 119081), (202355, 202355, 255, 255, 'Small Ebony Figurine', 119081), (202361, 202361, 255, 255, 'Small Ebony Figurine', 119081), (202368, 202368, 255, 255, 'Small Ebony Figurine', 119081), (202362, 202362, 256, 256, 'Small Ebony Figurine', 119081), (151370, 151369, 1, 250, 'Small Gold Ingot', 289750), (303079, 303079, 1, 1, 'Small Mission Reward', 281837), (254207, 254208, 1, 300, 'Small Neutral Organization Headquarters', 255790), (206477, 206477, 140, 140, 'Small Obsidian Jar', 119173), (254209, 254210, 1, 300, 'Small Omni-Tek Organization Headquarters', 255790), (162231, 162232, 1, 200, 'Small Patch of Hard Bronto Hide', 161086), (162243, 162244, 1, 200, 'Small Patch of Hard Bronto Hide - Tanned', 161080), (223451, 223452, 1, 300, 'Small Patch of Hard Living Hide', 161083), (223423, 223424, 1, 300, 'Small Patch of Hard Novictum Spangled Hide', 161076), (245209, 245209, 75, 75, 'Small Patch of Hard Skincrawler Hide', 161076), (162233, 162234, 1, 200, 'Small Patch of Soft Bronto Hide', 161086), (162245, 162246, 1, 200, 'Small Patch of Soft Bronto Hide - Tanned', 161080), (223449, 223450, 1, 300, 'Small Patch of Soft Living Hide', 161083), (223421, 223422, 1, 300, 'Small Patch of Soft Novictum Spangled Hide', 161076), (245210, 245210, 75, 75, 'Small Patch of Soft Skincrawler Hide', 161076), (232708, 232709, 1, 149, 'Small Piece of Gold ore', 292647), (232709, 232711, 150, 199, 'Small Piece of Gold ore', 292647), (232711, 232712, 200, 249, 'Small Piece of Gold ore', 292647), (232712, 232713, 250, 400, 'Small Piece of Gold ore', 292647), (232714, 232715, 1, 149, 'Small Piece of Iridium ore', 290487), (232715, 232717, 150, 199, 'Small Piece of Iridium ore', 290487), (232717, 232718, 200, 249, 'Small Piece of Iridium ore', 290487), (232718, 232719, 250, 400, 'Small Piece of Iridium ore', 290487), (232702, 232703, 1, 149, 'Small Piece of Osmium ore', 290489), (232703, 232705, 150, 199, 'Small Piece of Osmium ore', 290489), (232705, 232706, 200, 249, 'Small Piece of Osmium ore', 290489), (232706, 232707, 250, 400, 'Small Piece of Osmium ore', 290489), (232696, 232697, 1, 149, 'Small Piece of Platinum ore', 290486), (232697, 232699, 150, 199, 'Small Piece of Platinum ore', 290486), (232699, 232700, 200, 249, 'Small Piece of Platinum ore', 290486), (232700, 232701, 250, 400, 'Small Piece of Platinum ore', 290486), (232720, 232721, 1, 149, 'Small Piece of Silver ore', 301025), (232721, 232723, 150, 199, 'Small Piece of Silver ore', 301025), (232723, 232724, 200, 249, 'Small Piece of Silver ore', 301025), (232724, 232725, 250, 400, 'Small Piece of Silver ore', 301025), (151364, 151363, 1, 250, 'Small Platinum Ingot', 289751), (234877, 234877, 1, 1, 'Small Power Supply', 234928), (40823, 40823, 1, 1, 'Small Red Book of Secrets', 37931), (119605, 119605, 1, 1, 'Small Refrigerator', 119180), (150914, 150912, 1, 250, 'Small Silver Ingot', 289752), (296604, 296604, 1, 1, 'Small Snowball', 296591), (157222, 157222, 100, 100, 'Small Titan Message Container', 131266), (23143, 23143, 1, 1, 'Small Trunk', 154186), (232909, 232910, 1, 149, 'Small bag of amber and jet beads', 149935), (232910, 232912, 150, 199, 'Small bag of amber and jet beads', 149935), (232912, 232913, 200, 249, 'Small bag of amber and jet beads', 149935), (232913, 232914, 250, 400, 'Small bag of amber and jet beads', 149935), (223770, 223770, 1, 1, 'Smart Backpack', 99661), (158789, 158789, 1, 1, 'Smart Hood of the Wanderer', 22999), (158844, 158844, 1, 1, 'Smelly Butcher Gloves', 159134), (157077, 157077, 40, 40, 'Smelly Deadeye Stim', 11756), (253172, 253173, 1, 300, 'Smelly Liquid', 20412), (245988, 245988, 1, 1, 'Smokey Willy''s Guide to Apocalypse Leather Armor', 154678), (245953, 245953, 1, 1, 'Smokey Willy''s Guide to Omni-Tek Steel-Ribbed Armor', 154678), (262349, 262349, 1, 1, 'Smoky Salamander Skin', 161083), (262427, 262427, 1, 1, 'Smoldering Hair Strand', 262426), (163697, 163699, 1, 200, 'Smooth Gold Alloy Ring', 151931), (130609, 130609, 1, 1, 'Smudge Cola Can', 37955), (267106, 267106, 1, 1, 'Smuggled Combat Merit Board Base', 216287), (267108, 267108, 1, 1, 'Smuggled Nanite Merit Board Base', 216287), (227016, 227017, 1, 300, 'Smuggler''s Armor Boots', 213554), (227024, 227025, 1, 300, 'Smuggler''s Armor Gloves', 21871), (227022, 227023, 1, 300, 'Smuggler''s Armor Sleeve', 13225), (227018, 227019, 1, 300, 'Smuggler''s Armor Trousers', 213454), (227020, 227021, 1, 300, 'Smuggler''s Body Armor', 37545), (283751, 283751, 1, 1, 'Smuggler''s Cargo Crate', 283770), (227172, 227173, 1, 15, 'Snake Bile', 156493), (136610, 136611, 1, 200, 'Snake Ring', 290359), (246023, 246023, 260, 260, 'Snake Tamer Guard', 245994), (246021, 246022, 240, 259, 'Snake Tamer Shield', 245994), (49575, 49575, 1, 1, 'Sneak', 49559), (101635, 101636, 1, 200, 'Sneak Atck Cluster - Bright (Right-Wrist)', 35981), (101633, 101634, 1, 200, 'Sneak Atck Cluster - Faded (Eye)', 35980), (101637, 101638, 1, 200, 'Sneak Atck Cluster - Shiny (Feet)', 35982), (165813, 165814, 201, 300, 'Sneak Atck Refined Cluster - Bright (Right-Wrist)', 35981), (165811, 165812, 201, 300, 'Sneak Atck Refined Cluster - Faded (Eye)', 35980), (165815, 165816, 201, 300, 'Sneak Atck Refined Cluster - Shiny (Feet)', 35982), (129082, 129082, 1, 1, 'Sneak Attack', 117745), (226201, 226202, 1, 500, 'Snipe Shot 1', 239091), (226203, 226204, 1, 500, 'Snipe Shot 1', 239091), (226205, 226206, 1, 500, 'Snipe Shot 1', 239091), (226207, 226208, 1, 500, 'Snipe Shot 2', 239095), (226209, 226210, 1, 500, 'Snipe Shot 2', 239095), (226211, 226212, 1, 500, 'Snipe Shot 2', 239095), (281225, 281225, 1, 1, 'Sniper''s Cut Gem', 281223), (281209, 281209, 1, 1, 'Sniper''s Gem', 281224), (281194, 281194, 1, 1, 'Sniper''s Signet of The Apocalypse', 281195), (294192, 294192, 1, 1, 'Snow Blower - Left', 294433), (294521, 294521, 1, 1, 'Snow Blower - Left', 294433), (294438, 294438, 1, 1, 'Snow Blower - Right', 294509), (294669, 294669, 1, 1, 'Snow Blower - Right', 294509), (222187, 222187, 33, 33, 'Snow Crashed Shadow Crystal (Active Distributed Entanglement)', 220423), (222229, 222229, 20, 20, 'Snow Crashed Shadow Crystal (Active Micro Entanglement)', 220423), (221994, 221994, 103, 103, 'Snow Crashed Shadow Crystal (Advanced Insurance Hack)', 220436), (220830, 220830, 142, 142, 'Snow Crashed Shadow Crystal (Advanced Policy Skim)', 220436), (220852, 220852, 57, 57, 'Snow Crashed Shadow Crystal (Backpain)', 220432), (221241, 221241, 4, 4, 'Snow Crashed Shadow Crystal (Basic Insurance Hack)', 220422), (221116, 221116, 66, 66, 'Snow Crashed Shadow Crystal (Basic Policy Skim)', 220429), (220853, 220853, 116, 116, 'Snow Crashed Shadow Crystal (Blood Makes Noise)', 220412), (222400, 222400, 67, 67, 'Snow Crashed Shadow Crystal (Bootleg Beamers ''n Bolters (OP-C))', 220431), (222405, 222405, 120, 120, 'Snow Crashed Shadow Crystal (Bootleg Beamers ''n Bolters (OP-CC))', 220411), (222403, 222403, 107, 107, 'Snow Crashed Shadow Crystal (Bootleg Beamers ''n Bolters (OP-CLX))', 220411), (222404, 222404, 113, 113, 'Snow Crashed Shadow Crystal (Bootleg Beamers ''n Bolters (OP-CLXXX))', 220411), (222402, 222402, 103, 103, 'Snow Crashed Shadow Crystal (Bootleg Beamers ''n Bolters (OP-CXL))', 220411), (222401, 222401, 90, 90, 'Snow Crashed Shadow Crystal (Bootleg Beamers ''n Bolters (OP-CXX))', 220431), (222398, 222398, 34, 34, 'Snow Crashed Shadow Crystal (Bootleg Beamers ''n Bolters (OP-LX))', 220424), (222399, 222399, 54, 54, 'Snow Crashed Shadow Crystal (Bootleg Beamers ''n Bolters (OP-LXXX))', 220431), (222397, 222397, 21, 21, 'Snow Crashed Shadow Crystal (Bootleg Beamers ''n Bolters (OP-XL))', 220424), (222396, 222396, 8, 8, 'Snow Crashed Shadow Crystal (Bootleg Beamers ''n Bolters (OP-XX))', 220424), (222410, 222410, 67, 67, 'Snow Crashed Shadow Crystal (Bootleg Blades ''n Blunts (OP-C))', 220431), (222415, 222415, 120, 120, 'Snow Crashed Shadow Crystal (Bootleg Blades ''n Blunts (OP-CC))', 220411), (222413, 222413, 107, 107, 'Snow Crashed Shadow Crystal (Bootleg Blades ''n Blunts (OP-CLX))', 220411), (222414, 222414, 113, 113, 'Snow Crashed Shadow Crystal (Bootleg Blades ''n Blunts (OP-CLXXX))', 220411), (222412, 222412, 103, 103, 'Snow Crashed Shadow Crystal (Bootleg Blades ''n Blunts (OP-CXL))', 220411), (222411, 222411, 90, 90, 'Snow Crashed Shadow Crystal (Bootleg Blades ''n Blunts (OP-CXX))', 220431), (222408, 222408, 34, 34, 'Snow Crashed Shadow Crystal (Bootleg Blades ''n Blunts (OP-LX))', 220424), (222409, 222409, 54, 54, 'Snow Crashed Shadow Crystal (Bootleg Blades ''n Blunts (OP-LXXX))', 220431), (222407, 222407, 21, 21, 'Snow Crashed Shadow Crystal (Bootleg Blades ''n Blunts (OP-XL))', 220424), (222406, 222406, 8, 8, 'Snow Crashed Shadow Crystal (Bootleg Blades ''n Blunts (OP-XX))', 220424), (222494, 222494, 53, 53, 'Snow Crashed Shadow Crystal (Burst Bonds)', 220431), (220858, 220858, 14, 14, 'Snow Crashed Shadow Crystal (Cracker''s Luck)', 220425), (221556, 221556, 60, 60, 'Snow Crashed Shadow Crystal (Delay Retreat)', 220430), (220920, 220920, 73, 73, 'Snow Crashed Shadow Crystal (Detailed Medical Claim)', 220429), (220864, 220864, 27, 27, 'Snow Crashed Shadow Crystal (Embrace of Shadows)', 220425), (222501, 222501, 73, 73, 'Snow Crashed Shadow Crystal (Escape Captivation)', 220431), (221206, 221206, 30, 30, 'Snow Crashed Shadow Crystal (Falsify Medical Records)', 220422), (222218, 222218, 129, 129, 'Snow Crashed Shadow Crystal (Flawless Medical Claim)', 220436), (221173, 221173, 126, 126, 'Snow Crashed Shadow Crystal (Gravity Bindings)', 220437), (221960, 221960, 139, 139, 'Snow Crashed Shadow Crystal (Greater Delay Retreat)', 220437), (222028, 222028, 90, 90, 'Snow Crashed Shadow Crystal (Greater Halt Flight)', 220430), (221693, 221693, 103, 103, 'Snow Crashed Shadow Crystal (Greater Nano Net)', 220437), (221019, 221019, 119, 119, 'Snow Crashed Shadow Crystal (Greater Net Cast Wide)', 220437), (221170, 221170, 152, 152, 'Snow Crashed Shadow Crystal (Greater Prolong Encounter)', 220437), (222264, 222264, 123, 123, 'Snow Crashed Shadow Crystal (Grid Excursion)', 220411), (220801, 220801, 136, 136, 'Snow Crashed Shadow Crystal (Grid Phase Accelerator)', 220411), (220446, 220446, 20, 20, 'Snow Crashed Shadow Crystal (Grid Phreak)', 220424), (222123, 222123, 43, 43, 'Snow Crashed Shadow Crystal (Grid Runner)', 220424), (222242, 222242, 83, 83, 'Snow Crashed Shadow Crystal (Grid Surfer)', 220431), (221012, 221012, 156, 156, 'Snow Crashed Shadow Crystal (Gridspace Freedom)', 220411), (220905, 220905, 30, 30, 'Snow Crashed Shadow Crystal (Hack Grid Vector)', 220424), (221853, 221853, 4, 4, 'Snow Crashed Shadow Crystal (Halt Flight)', 220423), (222265, 222265, 74, 74, 'Snow Crashed Shadow Crystal (Instantaneous Encoding)', 220431), (221011, 221011, 47, 47, 'Snow Crashed Shadow Crystal (Insurance Hack)', 220422), (222192, 222192, 63, 63, 'Snow Crashed Shadow Crystal (Invasive Distributed Entanglement)', 220430), (221577, 221577, 73, 73, 'Snow Crashed Shadow Crystal (Invasive Micro Entanglement)', 220430), (220797, 220797, 152, 152, 'Snow Crashed Shadow Crystal (Karma Harvest)', 220412), (220962, 220962, 63, 63, 'Snow Crashed Shadow Crystal (Leech Grid Vector)', 220431), (222121, 222121, 10, 10, 'Snow Crashed Shadow Crystal (Lesser Nano Net)', 220423), (220996, 220996, 20, 20, 'Snow Crashed Shadow Crystal (Lesser Net Cast Wide)', 220423), (220543, 220543, 27, 27, 'Snow Crashed Shadow Crystal (Lesser Prolong Encounter)', 220423), (222237, 222237, 17, 17, 'Snow Crashed Shadow Crystal (Limited Grid Jump)', 220424), (220875, 220875, 83, 83, 'Snow Crashed Shadow Crystal (Luck''s Fickle Fate)', 220432), (221699, 221699, 136, 136, 'Snow Crashed Shadow Crystal (Mass Gravity Bindings)', 220437), (222049, 222049, 17, 17, 'Snow Crashed Shadow Crystal (Medical Claim)', 220422), (222472, 222472, 20, 20, 'Snow Crashed Shadow Crystal (NCU Compressor)', 220424), (221584, 221584, 37, 37, 'Snow Crashed Shadow Crystal (Nano Net)', 220423), (221583, 221583, 43, 43, 'Snow Crashed Shadow Crystal (Net Cast Wide)', 220423), (220745, 220745, 14, 14, 'Snow Crashed Shadow Crystal (No Escape Possible)', 220423), (222214, 222214, 149, 149, 'Snow Crashed Shadow Crystal (Omni-Med Incursion)', 220436), (220541, 220541, 113, 113, 'Snow Crashed Shadow Crystal (Partial Grid Jump)', 220411), (222142, 222142, 7, 7, 'Snow Crashed Shadow Crystal (Passive Distributed Entanglement)', 220423), (220878, 220878, 4, 4, 'Snow Crashed Shadow Crystal (Passive Micro Entanglement)', 220423), (220916, 220916, 119, 119, 'Snow Crashed Shadow Crystal (Policy Skim)', 220436), (221557, 221557, 123, 123, 'Snow Crashed Shadow Crystal (Prolong Encounter)', 220437), (222268, 222268, 169, 169, 'Snow Crashed Shadow Crystal (Re-Matrix Grid Vector)', 220411), (222267, 222267, 47, 47, 'Snow Crashed Shadow Crystal (Reckless Digitization)', 220424), (222350, 222350, 107, 107, 'Snow Crashed Shadow Crystal (Restock Ammo (Level OP-C))', 220411), (222351, 222351, 107, 107, 'Snow Crashed Shadow Crystal (Restock Ammo (Level OP-CC))', 220411), (221665, 221665, 10, 10, 'Snow Crashed Shadow Crystal (Restock Ammo (Level OP-I))', 220424), (222347, 222347, 18, 18, 'Snow Crashed Shadow Crystal (Restock Ammo (Level OP-II))', 220424), (222348, 222348, 60, 60, 'Snow Crashed Shadow Crystal (Restock Ammo (Level OP-X))', 220431), (222349, 222349, 74, 74, 'Snow Crashed Shadow Crystal (Restock Ammo (Level OP-XX))', 220431), (222511, 222511, 21, 21, 'Snow Crashed Shadow Crystal (Scatter Bonds (Other))', 220424), (222493, 222493, 10, 10, 'Snow Crashed Shadow Crystal (Scatter Bonds)', 220424), (222420, 222420, 70, 70, 'Snow Crashed Shadow Crystal (Smuggler Shipment (OP-C))', 220431), (222425, 222425, 120, 120, 'Snow Crashed Shadow Crystal (Smuggler Shipment (OP-CC))', 220411), (222423, 222423, 107, 107, 'Snow Crashed Shadow Crystal (Smuggler Shipment (OP-CLX))', 220411), (222424, 222424, 113, 113, 'Snow Crashed Shadow Crystal (Smuggler Shipment (OP-CLXXX))', 220411), (222422, 222422, 103, 103, 'Snow Crashed Shadow Crystal (Smuggler Shipment (OP-CXL))', 220411), (222421, 222421, 90, 90, 'Snow Crashed Shadow Crystal (Smuggler Shipment (OP-CXX))', 220431), (222418, 222418, 34, 34, 'Snow Crashed Shadow Crystal (Smuggler Shipment (OP-LX))', 220424), (222419, 222419, 54, 54, 'Snow Crashed Shadow Crystal (Smuggler Shipment (OP-LXXX))', 220431), (222417, 222417, 24, 24, 'Snow Crashed Shadow Crystal (Smuggler Shipment (OP-XL))', 220424), (222416, 222416, 8, 8, 'Snow Crashed Shadow Crystal (Smuggler Shipment (OP-XX))', 220424), (222092, 222092, 156, 156, 'Snow Crashed Shadow Crystal (Spin Nanoweb)', 220437), (221752, 221752, 96, 96, 'Snow Crashed Shadow Crystal (Spin Weak Nanoweb)', 220430), (220880, 220880, 70, 70, 'Snow Crashed Shadow Crystal (Stack the Odds)', 220432), (222271, 222271, 57, 57, 'Snow Crashed Shadow Crystal (Team Grid Phreak)', 220431), (275401, 275401, 1, 1, 'Snow Globe', 275400), (294445, 294445, 1, 1, 'Snow Heckler Action Figure', 294437), (259898, 259898, 1, 1, 'Snowball Fighting Manual', 37933), (284713, 284713, 1, 1, 'Snowball Fighting Manual v2.1', 37933), (279551, 279551, 1, 1, 'Snowball Lantern', 279548), (300853, 300853, 1, 1, 'Snowball Lantern', 279548), (284972, 284972, 1, 1, 'Snowflake Etching Machine - Empty', 163066), (284977, 284977, 1, 1, 'Snowflake Etching Machine - Five Flakes', 163066), (284980, 284980, 1, 1, 'Snowflake Etching Machine - Flake #1', 163066), (284981, 284981, 1, 1, 'Snowflake Etching Machine - Flake #2', 163066), (284982, 284982, 1, 1, 'Snowflake Etching Machine - Flake #3', 163066), (284983, 284983, 1, 1, 'Snowflake Etching Machine - Flake #4', 163066), (284999, 284999, 1, 1, 'Snowflake Etching Machine - Flake #5', 163066), (285000, 285000, 1, 1, 'Snowflake Etching Machine - Flake #6', 163066), (284985, 284985, 1, 1, 'Snowflake Etching Machine - Flake #7', 163066), (284986, 284986, 1, 1, 'Snowflake Etching Machine - Flake #8', 163066), (284976, 284976, 1, 1, 'Snowflake Etching Machine - Four Flakes', 163066), (284973, 284973, 1, 1, 'Snowflake Etching Machine - One Flake', 163066), (284979, 284979, 1, 1, 'Snowflake Etching Machine - Seven Flakes', 163066), (284978, 284978, 1, 1, 'Snowflake Etching Machine - Six Flakes', 163066), (284975, 284975, 1, 1, 'Snowflake Etching Machine - Three Flakes', 163066), (284974, 284974, 1, 1, 'Snowflake Etching Machine - Two Flakes', 163066), (284717, 284717, 1, 1, 'Snowflake Placard', 284964), (289532, 289532, 1, 1, 'Snowglobe', 289533), (301721, 301721, 1, 1, 'Snowglobe', 289533), (274261, 274261, 1, 1, 'Snowman', 274274), (300859, 300859, 1, 1, 'Snowman', 274274), (296661, 296661, 1, 1, 'Snowman With Pebbles for Eyes', 296590), (296659, 296659, 1, 1, 'Snowman With Twigs for Arms', 296592), (296658, 296658, 1, 1, 'Snowman With a Carrot Nose', 296587), (296660, 296660, 1, 1, 'Snowman With a Top Hat', 296593), (207966, 207967, 90, 109, 'Sockdolager', 13348), (207968, 207968, 110, 110, 'Sockdolager', 13348), (304637, 304637, 1, 1, 'Sode of Yamauchi', 304647), (163216, 163217, 1, 199, 'Soft Flesh Hood', 23001), (157640, 157641, 101, 150, 'Soft Pepper Pistol', 113995), (125449, 125450, 101, 150, 'Soft Pillow with Important Stripes', 85163), (163711, 163712, 1, 200, 'Soft Ring with Fluff', 84064), (200652, 200652, 1, 1, 'Soft Rubber Club', 33169), (226679, 226679, 1, 1, 'Soften Up', 239009), (157629, 157630, 1, 79, 'Sol Chironis Systems D11', 33154), (157631, 157632, 80, 109, 'Sol Chironis Systems D14', 33154), (157633, 157634, 110, 199, 'Sol Chironis Systems E04', 33154), (157635, 157635, 200, 200, 'Sol Chironis Systems Professional', 33154), (154930, 154930, 82, 82, 'Solar Guard', 154367), (268720, 268720, 1, 1, 'Solar Powered Backpack', 268735), (203060, 203061, 40, 200, 'Solar Turret', 202255), (203064, 203065, 40, 200, 'Solar Turret', 202255), (203062, 203063, 201, 250, 'Solar Turret', 202255), (203066, 203067, 201, 250, 'Solar Turret', 202255), (218405, 218405, 1, 1, 'Solar-Powered Adventuring Pistol', 29116), (121569, 121569, 1, 1, 'Solar-Powered Assault Rifle', 13313), (248340, 248340, 1, 1, 'Solar-Powered Energy Rifle', 13314), (164512, 164513, 180, 199, 'Solar-Powered Engineer Pistol', 29116), (248338, 248338, 1, 1, 'Solar-Powered Grenade Launcher', 13311), (164510, 164511, 140, 179, 'Solar-Powered Machinist Pistol', 29116), (164515, 164515, 200, 200, 'Solar-Powered Master Engineer Pistol', 29116), (164500, 164501, 100, 139, 'Solar-Powered Mechanic Pistol', 29116), (164497, 164498, 40, 99, 'Solar-Powered Mender Pistol', 29116), (121567, 121567, 1, 1, 'Solar-Powered Pistol', 29116), (121568, 121568, 1, 1, 'Solar-Powered Rifle', 13321), (121570, 121570, 1, 1, 'Solar-Powered Shotgun', 113990), (121571, 121571, 1, 1, 'Solar-Powered Submachine Gun', 33153), (164489, 164490, 1, 39, 'Solar-Powered Tinker Pistol', 29116), (164524, 164525, 1, 200, 'Solar-Powered Weapon Device', 130758), (164522, 164523, 1, 200, 'Solar-Powered Weapon Supervisor', 130762), (290182, 290182, 1, 1, 'Soldier Action Figure', 290566), (270768, 270768, 1, 1, 'Soldier Nanodeck', 270749), (248265, 248265, 1, 1, 'Soldier Nanoprogram Container', 292143), (290094, 290094, 1, 1, 'Soldier Shirt', 287356), (29092, 29092, 1, 1, 'Soldier: Startup Crystal - Body Boost', 12228), (267578, 267579, 1, 300, 'Soldiers'' Ring of Focus', 151931), (247102, 247103, 1, 300, 'Solid Clump of Kyr''Ozch Bio-Material', 247101), (247104, 247105, 1, 300, 'Solid Clump of Kyr''Ozch Bio-Material', 247101), (247697, 247698, 1, 300, 'Solid Clump of Kyr''Ozch Bio-Material', 247101), (247699, 247700, 1, 300, 'Solid Clump of Kyr''Ozch Bio-Material', 247101), (247701, 247702, 1, 300, 'Solid Clump of Kyr''Ozch Bio-Material', 247101), (247703, 247704, 1, 300, 'Solid Clump of Kyr''Ozch Bio-Material', 247101), (247705, 247706, 1, 300, 'Solid Clump of Kyr''Ozch Bio-Material', 247101), (247707, 247708, 1, 300, 'Solid Clump of Kyr''Ozch Bio-Material', 247101), (247709, 247710, 1, 300, 'Solid Clump of Kyr''Ozch Bio-Material', 247101), (247711, 247712, 1, 300, 'Solid Clump of Kyr''Ozch Bio-Material', 247101), (247713, 247714, 1, 300, 'Solid Clump of Kyr''Ozch Bio-Material', 247101), (247715, 247716, 1, 300, 'Solid Clump of Kyr''Ozch Bio-Material', 247101), (247717, 247718, 1, 300, 'Solid Clump of Kyr''Ozch Bio-Material', 247101), (247719, 247720, 1, 300, 'Solid Clump of Kyr''Ozch Bio-Material', 247101), (247764, 254804, 1, 300, 'Solid Clump of Kyr''Ozch Bio-Material', 247101), (288699, 288700, 1, 300, 'Solid Clump of Kyr''Ozch Bio-Material', 247101), (256035, 256035, 100, 100, 'Solid Clump of Kyr''Ozch Bio-Material', 247101), (152102, 152103, 91, 120, 'Solid Fiddle Rifle', 13312), (153727, 153727, 1, 1, 'Solid Fiddle Rifle Construction Manual', 136332), (253246, 253246, 300, 300, 'Solid Odum Blade', 40781), (214170, 214170, 300, 300, 'Solid Skull Smasher', 211288), (234654, 234654, 300, 300, 'Solid Skull Smasher - Left Monster Version', 211288), (213978, 213978, 1, 1, 'Solid Slug', 239059), (245676, 245676, 160, 160, 'Solid Spiritech Mesh', 151933), (168677, 168677, 5, 5, 'Solid Steel Hydraulic Legwear', 37674), (232868, 232869, 1, 149, 'Solid gold chain', 151931), (232869, 232871, 150, 199, 'Solid gold chain', 151931), (232871, 232872, 200, 249, 'Solid gold chain', 151931), (232872, 232873, 250, 400, 'Solid gold chain', 151931), (158763, 158763, 1, 1, 'Soltoyz Intimate Helper', 159123), (224720, 224720, 220, 220, 'Somber Brain Spirit of Offence', 230992), (224740, 224740, 220, 220, 'Somber Essence Brain Spirit', 230992), (225225, 225225, 220, 220, 'Somber Left Hand Spirit of Strength', 230994), (225027, 225027, 220, 220, 'Somber Left Limb Spirit of Strength', 230995), (224993, 224993, 220, 220, 'Somber Left Limb Spirit of Understanding', 230995), (225010, 225010, 220, 220, 'Somber Left Limb Spirit of Weakness', 230995), (224894, 224894, 220, 220, 'Somber Midriff Spirit of Weakness', 230976), (225145, 225145, 220, 220, 'Somber Right Hand Defencive Spirit', 231002), (225133, 225133, 220, 220, 'Somber Right Hand Strength Spirit', 231002), (224826, 224826, 220, 220, 'Somber Right Limb Spirit of Weakness', 231004), (224671, 224671, 220, 220, 'Somber Spirit of Discerning Weakness', 230988), (225193, 225193, 220, 220, 'Somber Spirit of Essence', 230998), (224789, 224789, 220, 220, 'Somber Spirit of Essence Whispered', 230986), (225166, 225166, 220, 220, 'Somber Spirit of Insight - Right Hand', 231002), (224756, 224756, 220, 220, 'Somber Spirit of Knowledge Whispered', 230986), (225097, 225097, 220, 220, 'Somber Spirit of Left Wrist Defense', 231000), (226674, 226675, 1, 300, 'Sombreous Arm Tattoo''s', 226606), (226590, 226591, 1, 300, 'Sombreous Feet Tattoo''s', 226639), (226676, 226677, 1, 300, 'Sombreous Hands Tattoo''s', 226654), (226670, 226671, 1, 300, 'Sombreous Leg Tattoo''s', 226669), (226672, 226673, 1, 300, 'Sombreous Torso Tattoo''s', 226623), (268699, 268699, 200, 200, 'Sombrero Hat', 268670), (163588, 163588, 200, 200, 'Some Pieces of an Old Pistol', 130786), (163555, 163555, 1, 1, 'Some enigma fibers', 163575), (259790, 259790, 1, 1, 'Somphos Horn', 259789), (258258, 258258, 1, 1, 'Sonic Analyzer', 205332), (124534, 124535, 1, 31, 'Sooted YES Assault 1007 Model 5', 113990), (236660, 236660, 1, 1, 'Soothing Herbs', 290377), (268429, 268429, 1, 1, 'Soothing Mixture', 156493), (85367, 160295, 200, 399, 'Sophisticated Nano Kit', 11752), (283748, 283748, 1, 1, 'Sophisticated Virus Datadisc', 283768), (250284, 250284, 1, 1, 'Sorcerer''s Hood', 255406), (248409, 248409, 1, 1, 'Sorcerer''s Robe of the Fist of Chronos', 255283), (224959, 224959, 230, 230, 'Sorrowful Heart Spirit of Strength', 230984), (225046, 225046, 230, 230, 'Sorrowful Left Limb Spirit of Essence', 230995), (225028, 225028, 230, 230, 'Sorrowful Left Limb Spirit of Strength', 230995), (224875, 224875, 230, 230, 'Sorrowful Midriff Spirit of Knowledge', 230976), (224911, 224911, 230, 230, 'Sorrowful Midriff Spirit of Strength', 230976), (224895, 224895, 230, 230, 'Sorrowful Midriff Spirit of Weakness', 230976), (225146, 225146, 230, 230, 'Sorrowful Right Hand Defencive Spirit', 231002), (225134, 225134, 230, 230, 'Sorrowful Right Hand Strength Spirit', 231002), (224839, 224839, 230, 230, 'Sorrowful Right Limb Spirit of Essence', 231004), (224705, 224705, 230, 230, 'Sorrowful Spirit of Clear Thought', 230992), (225186, 225186, 230, 230, 'Sorrowful Spirit of Defense', 230998), (224672, 224672, 230, 230, 'Sorrowful Spirit of Discerning Weakness', 230988), (224790, 224790, 230, 230, 'Sorrowful Spirit of Essence Whispered', 230986), (225260, 225260, 230, 230, 'Sorrowful Spirit of Feet Defense', 230990), (225243, 225243, 230, 230, 'Sorrowful Spirit of Feet Strength', 230990), (224757, 224757, 230, 230, 'Sorrowful Spirit of Knowledge Whispered', 230986), (225098, 225098, 230, 230, 'Sorrowful Spirit of Left Wrist Defense', 231000), (225117, 225117, 230, 230, 'Sorrowful Spirit of Left Wrist Strength', 231000), (224773, 224773, 230, 230, 'Sorrowful Spirit of Strength Whispered', 230986), (224657, 224657, 230, 230, 'Sorrowful Spirit of True Seeing', 230988), (224721, 224721, 240, 240, 'Sorry Brain Spirit of Offence', 230992), (224926, 224926, 240, 240, 'Sorry Heart Spirit of Knowledge', 230984), (224960, 224960, 240, 240, 'Sorry Heart Spirit of Strength', 230984), (224977, 224977, 240, 240, 'Sorry Heart Spirit of Weakness', 230984), (225011, 225011, 240, 240, 'Sorry Left Limb Spirit of Weakness', 230995), (224857, 224857, 240, 240, 'Sorry Midriff Spirit of Essence', 230976), (224876, 224876, 240, 240, 'Sorry Midriff Spirit of Knowledge', 230976), (224896, 224896, 240, 240, 'Sorry Midriff Spirit of Weakness', 230976), (225135, 225135, 240, 240, 'Sorry Right Hand Strength Spirit', 231002), (224840, 224840, 240, 240, 'Sorry Right Limb Spirit of Essence', 231004), (224673, 224673, 240, 240, 'Sorry Spirit of Discerning Weakness', 230988), (224688, 224688, 240, 240, 'Sorry Spirit of Essence', 230998), (224791, 224791, 240, 240, 'Sorry Spirit of Essence Whispered', 230986), (225261, 225261, 240, 240, 'Sorry Spirit of Feet Defense', 230990), (225167, 225167, 240, 240, 'Sorry Spirit of Insight - Right Hand', 231002), (225099, 225099, 240, 240, 'Sorry Spirit of Left Wrist Defense', 231000), (225118, 225118, 240, 240, 'Sorry Spirit of Left Wrist Strength', 231000), (236635, 238946, 1, 300, 'Soul Capsule', 297341), (136632, 136633, 1, 200, 'Soul Fragment', 286955), (40835, 40835, 1, 1, 'Soul Globe', 25799), (225995, 225996, 1, 300, 'Soul Locket', 149945), (244638, 244638, 250, 250, 'Soul Mark of Pisces', 226602), (274650, 274650, 1, 1, 'Soul Ripper', 274684), (206066, 206066, 1, 1, 'Soul Siphon', 149936), (25833, 25833, 400, 400, 'Soul Sphere by Divaad', 286957), (274655, 274655, 1, 1, 'Soul of the Gladiator', 274670), (274656, 274656, 1, 1, 'Soul of the Healer', 274672), (274652, 274652, 1, 1, 'Soul of the Illusionist', 274673), (274653, 274653, 1, 1, 'Soul of the Jester', 274674), (274654, 274654, 1, 1, 'Soul of the Ranger', 274675), (274657, 274657, 1, 1, 'Soul of the Reanimated Gladiator', 274670), (274658, 274658, 1, 1, 'Soul of the Reanimated Healer', 274672), (274659, 274659, 1, 1, 'Soul of the Reanimated Illusionist', 274673), (274660, 274660, 1, 1, 'Soul of the Reanimated Jester', 274674), (274661, 274661, 1, 1, 'Soul of the Reanimated Ranger', 274675), (274662, 274662, 1, 1, 'Soul of the Reanimated Summoner', 274677), (274649, 274649, 1, 1, 'Soul of the Reanimator', 274676), (274651, 274651, 1, 1, 'Soul of the Summoner', 274677), (206009, 206009, 1, 1, 'Soulmark', 25794), (231269, 231270, 5, 14, 'Source Excavator Shell', 218765), (231270, 231271, 15, 49, 'Source Excavator Shell', 218765), (231271, 231272, 50, 74, 'Source Excavator Shell', 218765), (231272, 231273, 75, 99, 'Source Excavator Shell', 218766), (231273, 231274, 100, 124, 'Source Excavator Shell', 218766), (231274, 231275, 125, 149, 'Source Excavator Shell', 218766), (231275, 231276, 150, 199, 'Source Excavator Shell', 218767), (231276, 231277, 200, 224, 'Source Excavator Shell', 218767), (231277, 231278, 225, 300, 'Source Excavator Shell', 218768), (236677, 236676, 1, 300, 'Source Extraction Calibration Device', 235347), (236642, 236642, 1, 1, 'Source Fragment Scanner', 218750), (236643, 236643, 1, 1, 'Source Fragment Scanner', 218750), (236644, 236644, 1, 1, 'Source Fragment Scanner', 218750), (236645, 236645, 1, 1, 'Source Fragment Scanner', 218750), (236646, 236646, 1, 1, 'Source Fragment Scanner', 218750), (236647, 236647, 1, 1, 'Source Fragment Scanner', 218750), (236650, 236650, 1, 1, 'Source Fragment Scanner', 218750), (236651, 236651, 1, 1, 'Source Fragment Scanner', 218750), (236652, 236652, 1, 1, 'Source Fragment Scanner', 218750), (236653, 238948, 1, 150, 'Source Fragment Scanner', 218750), (238949, 238949, 150, 150, 'Source Fragment Scanner - Scan In Progress', 218750), (238950, 238950, 150, 150, 'Source Fragment Scanner - Scan In Progress', 218750), (238951, 238951, 150, 150, 'Source Fragment Scanner - Scan In Progress', 218750), (238952, 238952, 150, 150, 'Source Fragment Scanner - Scan In Progress', 218750), (238953, 238953, 150, 150, 'Source Fragment Scanner - Scan In Progress', 218750), (238954, 238954, 150, 150, 'Source Fragment Scanner - Scan In Progress', 218750), (236648, 238955, 1, 150, 'Source Fragment Scanner - Scan completed', 218750), (157423, 157423, 1, 1, 'South Sixteen Weasel Advantage', 81779), (160213, 160214, 1, 199, 'South Wind Katana', 113998), (263888, 263888, 1, 1, 'Space-Time Extraction Device', 263887), (160193, 160194, 1, 50, 'Sparking Bang-Bang Glove', 45784), (124256, 124257, 1, 4, 'Sparking Vektor ND Shotgun', 21144), (129069, 129070, 1, 29, 'Sparkling Breathing Space', 13349), (274725, 274725, 1, 1, 'Sparkling Combined Soul Crystal', 274673), (123826, 123827, 1, 9, 'Sparkling Freedom Arms 3927', 113997), (144101, 144102, 1, 20, 'Sparkling Freedom Arms 4200', 113997), (123886, 123887, 1, 20, 'Sparkling HSR Arms', 33161), (233792, 233793, 1, 20, 'Sparkling Illicit Laser Backup', 13311), (246052, 246052, 260, 260, 'Sparkling Scimitar of Spetses', 213074), (214332, 214332, 300, 300, 'Spartan Hammer', 210191), (214212, 214212, 300, 300, 'Spasmodic Assault Rifle', 210174), (214208, 214209, 100, 199, 'Spastic Assault Rifle', 210174), (214210, 214211, 200, 299, 'Spastic Assault Rifle', 210174), (247070, 247071, 200, 219, 'Spear of Forbidden Ceremonies', 214392), (247072, 247073, 220, 239, 'Spear of Forbidden Ceremonies', 214392), (247074, 247075, 240, 259, 'Spear of Forbidden Ceremonies', 214392), (247076, 247077, 260, 279, 'Spear of Forbidden Ceremonies', 214392), (247078, 247079, 280, 299, 'Spear of Forbidden Ceremonies', 214392), (247080, 247080, 300, 300, 'Spear of Forbidden Ceremonies', 214392), (121683, 121683, 200, 200, 'Spear of the Night', 21138), (143412, 143412, 1, 1, 'Spear of the Night Construction Manual', 136330), (281841, 281841, 1, 1, 'Special Agent''s Communication Device', 281971), (282144, 282144, 1, 1, 'Special DOJA Chip', 293710), (284961, 284961, 1, 1, 'Special DOJA Chip Alappaa', 293802), (284962, 284962, 1, 1, 'Special DOJA Chip Albtraum', 293801), (284960, 284960, 1, 1, 'Special DOJA Chip Pandemonium', 293725), (225768, 225769, 1, 300, 'Special Distance Weapons Guide', 205503), (288290, 288290, 150, 150, 'Special Edition Kyr''Ozch Axe', 288702), (288298, 288298, 150, 150, 'Special Edition Kyr''Ozch Cannon', 288706), (288283, 288283, 150, 150, 'Special Edition Kyr''Ozch Carbine', 288706), (288286, 288286, 150, 150, 'Special Edition Kyr''Ozch Crossbow', 288707), (288297, 288297, 150, 150, 'Special Edition Kyr''Ozch Energy Pistol', 288708), (288287, 288287, 150, 150, 'Special Edition Kyr''Ozch Energy Rapier', 288709), (288296, 288296, 150, 150, 'Special Edition Kyr''Ozch Grenade Gun', 288706), (288292, 288292, 150, 150, 'Special Edition Kyr''Ozch Hammer', 288703), (288291, 288291, 150, 150, 'Special Edition Kyr''Ozch Nunchacko', 288713), (288293, 288293, 150, 150, 'Special Edition Kyr''Ozch Pistol', 288708), (288288, 288288, 150, 150, 'Special Edition Kyr''Ozch Rapier', 288709), (288284, 288284, 150, 150, 'Special Edition Kyr''Ozch Rifle', 288711), (288289, 288289, 150, 150, 'Special Edition Kyr''Ozch Shotgun', 288712), (288285, 288285, 150, 150, 'Special Edition Kyr''Ozch Sledgehammer', 288705), (288295, 288295, 150, 150, 'Special Edition Kyr''Ozch Submachine Gun', 288710), (288294, 288294, 150, 150, 'Special Edition Kyr''Ozch Sword', 288704), (267353, 267354, 1, 300, 'Special Edition Ofab Adventurer Helmet', 266370), (267356, 267357, 1, 300, 'Special Edition Ofab Agent Helmet', 266372), (267363, 267364, 1, 300, 'Special Edition Ofab Bureaucrat Headgear', 266374), (267351, 267352, 1, 300, 'Special Edition Ofab Doctor Helmet', 266375), (267365, 267366, 1, 300, 'Special Edition Ofab Enforcer Helmet', 266378), (267369, 267370, 1, 300, 'Special Edition Ofab Engineer Helmet', 266380), (267367, 267368, 1, 300, 'Special Edition Ofab Fixer Helmet', 266382), (267375, 267376, 1, 300, 'Special Edition Ofab Keeper Helmet', 266384), (267371, 267372, 1, 300, 'Special Edition Ofab Martial Artist Helmet', 266386), (267373, 267374, 1, 300, 'Special Edition Ofab Metaphysicist Headgear', 266388), (267383, 267384, 1, 300, 'Special Edition Ofab Nano Technician Helmet', 266390), (267377, 267378, 1, 300, 'Special Edition Ofab Shade Headgear', 266392), (267379, 267380, 1, 300, 'Special Edition Ofab Soldier Helmet', 266394), (267381, 267382, 1, 300, 'Special Edition Ofab Trader Helmet', 266368), (204875, 204875, 10, 10, 'Special Emergency Treatment Laboratory', 37994), (245520, 245520, 1, 1, 'Special Issue Omni Intern-Op Boots', 27660), (245521, 245521, 1, 1, 'Special Issue Omni Intern-Op Gloves', 27661), (245519, 245519, 1, 1, 'Special Issue Omni Intern-Op Pants', 27670), (245523, 245523, 1, 1, 'Special Issue Omni Intern-Op Shirt', 27658), (245522, 245522, 1, 1, 'Special Issue Omni Intern-Op Sleeves', 27659), (199802, 199803, 215, 220, 'Special Omni-Internops Armor Boots', 13270), (199823, 199824, 215, 220, 'Special Omni-Internops Armor Gloves', 13283), (199844, 199845, 215, 220, 'Special Omni-Internops Armor Helmet', 10840), (199865, 199866, 215, 220, 'Special Omni-Internops Armor Pants', 13300), (199886, 199887, 215, 220, 'Special Omni-Internops Armor Sleeves', 13232), (199907, 199908, 215, 220, 'Special Omni-Internops Body Armor', 13253), (199928, 199929, 215, 220, 'Special Omni-Internops Elite Armor Boots', 21866), (199949, 199950, 215, 220, 'Special Omni-Internops Elite Armor Gloves', 21872), (199970, 199971, 215, 220, 'Special Omni-Internops Elite Armor Helmet', 22269), (199991, 199992, 215, 220, 'Special Omni-Internops Elite Armor Pants', 21879), (200012, 200013, 215, 220, 'Special Omni-Internops Elite Armor Sleeves', 21850), (200033, 200034, 215, 220, 'Special Omni-Internops Elite Body Armor', 19816), (205968, 205969, 1, 200, 'Special Pearl', 25800), (159893, 159893, 1, 1, 'Special Press Card', 37872), (100344, 100344, 1, 1, 'Special Prototype Medicine', 99237), (225781, 225782, 1, 300, 'Special Ranged Weapons Guide', 205504), (268512, 268512, 150, 150, 'Specialised Alien Armor Materials', 99669), (300441, 300441, 1, 1, 'Specialist Commerce Access', 300448), (229611, 229611, 1, 1, 'Specialization Item - First Spec', 154677), (229613, 229613, 1, 1, 'Specialization Item - Fourth Spec', 154677), (229614, 229614, 1, 1, 'Specialization Item - Second Spec', 154677), (229612, 229612, 1, 1, 'Specialization Item - Third Spec', 154677), (260527, 260527, 1, 1, 'Specialized Detonator', 218759), (168881, 168881, 200, 200, 'Specialized Dustbrigade Vambrace - Atrox Breed', 151917), (168882, 168882, 200, 200, 'Specialized Dustbrigade Vambrace - Nano Breed', 151917), (168880, 168880, 200, 200, 'Specialized Dustbrigade Vambrace - Opifex Breed', 151917), (40834, 40834, 1, 1, 'Specialized Pinky Cutter', 20410), (273487, 273487, 1, 1, 'Specimen of Amanita Muscaria', 273510), (272383, 272384, 1, 500, 'Spectator Wrath', 13326), (272385, 272386, 1, 500, 'Spectator Wrath Item', 13326), (272387, 272388, 1, 500, 'Spectator Wrath Item', 13326), (272389, 272390, 1, 500, 'Spectator Wrath Item', 13326), (157126, 157126, 1, 1, 'Spectral Com-Glasses', 45781), (275327, 275327, 1, 1, 'Spectrum Collection Blue', 275277), (275316, 275316, 1, 1, 'Spectrum Collection Bondi Blue', 275260), (275324, 275324, 1, 1, 'Spectrum Collection Brown', 275262), (275322, 275322, 1, 1, 'Spectrum Collection Burnt Auburn', 275261), (275371, 275371, 1, 1, 'Spectrum Collection Coffee', 275369), (275323, 275323, 1, 1, 'Spectrum Collection Dark Cerulean', 275263), (275315, 275315, 1, 1, 'Spectrum Collection Fern', 275265), (275317, 275317, 1, 1, 'Spectrum Collection Orange', 275266), (275332, 275332, 1, 1, 'Spectrum Collection Pea Green', 275267), (275329, 275329, 1, 1, 'Spectrum Collection Pink', 275268), (275325, 275325, 1, 1, 'Spectrum Collection Plum', 275269), (275328, 275328, 1, 1, 'Spectrum Collection Purple', 275264), (275319, 275319, 1, 1, 'Spectrum Collection Red', 275270), (275326, 275326, 1, 1, 'Spectrum Collection Sienna', 275271), (275331, 275331, 1, 1, 'Spectrum Collection Sky Blue', 275272), (275320, 275320, 1, 1, 'Spectrum Collection Slate', 275273), (275321, 275321, 1, 1, 'Spectrum Collection Tan', 275274), (275318, 275318, 1, 1, 'Spectrum Collection Teal', 275275), (275330, 275330, 1, 1, 'Spectrum Collection Violet', 275276), (275370, 275370, 1, 1, 'Spectrum Collection Water Leaf', 275366), (275259, 275259, 1, 1, 'Spectrum Collection Yellow', 275278), (142882, 142883, 1, 200, 'Speedy Re-Swing Analyzer', 130829), (214947, 214947, 1, 1, 'Spell Casting 1', 82197), (214948, 214948, 1, 1, 'Spell Casting 2', 82197), (214949, 214949, 1, 1, 'Spell Casting 3', 82197), (259784, 259784, 1, 1, 'Sphagnum Moss', 255417), (253033, 253033, 1, 1, 'Sphere', 239123), (292964, 292964, 1, 1, 'Spider Pack - Firey', 293613), (293608, 293608, 1, 1, 'Spider Pack - Icy', 293591), (293610, 293610, 1, 1, 'Spider Pack - Shadowy', 293614), (293609, 293609, 1, 1, 'Spider Pack - Swampy', 293615), (227170, 227171, 1, 15, 'Spider Shank', 158238), (227088, 227089, 1, 14, 'Spider Shank Machete', 158238), (288354, 288354, 1, 1, 'Spider Shirt', 288352), (230537, 230537, 1, 1, 'Spider Venom', 130862), (283904, 283904, 1, 1, 'Spider Web Nanospray', 284054), (245303, 245303, 150, 150, 'Spider Web Tattoo', 130731), (214156, 214157, 100, 199, 'Spike of Menace', 213075), (214158, 214159, 200, 299, 'Spike of Menace', 213075), (121635, 121636, 70, 92, 'Spiked Battle Axe', 21135), (199379, 199379, 205, 205, 'Spiked Bau Charger Armor Boots', 22878), (199400, 199400, 205, 205, 'Spiked Bau Charger Armor Gloves', 22939), (199421, 199421, 205, 205, 'Spiked Bau Charger Armor Helmet', 31738), (199442, 199442, 205, 205, 'Spiked Bau Charger Armor Pants', 22928), (199463, 199463, 205, 205, 'Spiked Bau Charger Armor Sleeves', 22889), (199484, 199484, 205, 205, 'Spiked Bau Charger Body Armor', 22981), (199505, 199505, 205, 205, 'Spiked Bau Charger Female Body Armor', 22942), (100292, 100292, 1, 1, 'Spiked Food Sacks', 290375), (130066, 130067, 103, 174, 'Spiked Heavy Staff', 136738), (130077, 130078, 88, 149, 'Spiked Light Staff', 136738), (136658, 136659, 1, 200, 'Spin Art', 25805), (248323, 248323, 1, 1, 'Spinal Section', 204742), (248351, 248351, 1, 1, 'Spine Sword', 114005), (259979, 259979, 1, 1, 'Spinetooth Egg', 158274), (259981, 259981, 1, 1, 'Spinetooth Skin', 161080), (259972, 259972, 1, 1, 'Spinetooth Talon', 259785), (259978, 259978, 1, 1, 'Spinetooth Tongue', 253010), (259980, 259980, 1, 1, 'Spinetooth Venom Sac', 144707), (218744, 218745, 1, 200, 'Spiri-Aid Spindle', 218756), (223436, 223437, 1, 300, 'Spirit Bauble of Artillery Expertise', 25801), (223442, 223443, 1, 300, 'Spirit Bauble of Control Expertise', 25798), (223438, 223439, 1, 300, 'Spirit Bauble of Extermination Expertise', 25797), (223434, 223435, 1, 300, 'Spirit Bauble of Infantry Expertise', 25801), (223440, 223441, 1, 300, 'Spirit Bauble of Support Expertise', 25798), (226369, 226369, 1, 1, 'Spirit Dissolution', 239083), (281352, 281352, 1, 1, 'Spirit Energy Bottle', 281340), (158915, 158915, 1, 1, 'Spirit Focus', 96124), (267796, 267797, 160, 300, 'Spirit Infused Yuttos Modified NCU', 205500), (281449, 281449, 1, 1, 'Spirit Leaf Bush', 227904), (225977, 225978, 1, 300, 'Spirit Leech Bug', 11702), (246310, 246311, 100, 150, 'Spirit Ring of Self-Education', 151920), (246889, 246889, 200, 200, 'Spirit Shroud of the Artillery Unit', 246888), (246892, 246892, 200, 200, 'Spirit Shroud of the Control Unit', 246888), (246890, 246890, 200, 200, 'Spirit Shroud of the Exterminator Unit', 246888), (246887, 246887, 200, 200, 'Spirit Shroud of the Infantry Unit', 246888), (246891, 246891, 200, 200, 'Spirit Shroud of the Support Unit', 246888), (246404, 246405, 50, 200, 'Spirit Tech Apparatus: Double Barrel', 246391), (246389, 246390, 50, 200, 'Spirit Tech Apparatus: Long Muzzle', 246391), (246387, 246388, 50, 200, 'Spirit Tech Apparatus: Short Muzzle', 246391), (245139, 245139, 100, 100, 'Spirit Tech Circlet of Cerubin', 130733), (235392, 235393, 1, 300, 'Spirit Tech Circlet of Edamie-Ang', 130730), (235388, 235389, 1, 300, 'Spirit Tech Circlet of Haran-Zhafer', 130728), (235394, 235395, 1, 300, 'Spirit Tech Circlet of Phar-Gaets', 130730), (235390, 235391, 1, 300, 'Spirit Tech Circlet of Thubotac', 130729), (235398, 235399, 1, 300, 'Spirit Tech Circlet of Yadmaron', 130730), (235396, 235397, 1, 300, 'Spirit Tech Circlet of Zipatshar', 130730), (233109, 233109, 200, 200, 'Spirit Tech Crafting Tool', 156212), (246053, 246054, 240, 244, 'Spirit Tech Toolbox', 100328), (246055, 246056, 245, 249, 'Spirit Tech Toolbox', 100328), (246057, 246058, 250, 254, 'Spirit Tech Toolbox', 100328), (246059, 246060, 255, 259, 'Spirit Tech Toolbox', 100328), (246209, 246209, 100, 100, 'Spirit Training Program', 205512), (246211, 246211, 100, 100, 'Spirit Training Program', 205512), (211253, 211253, 300, 300, 'Spirit Treasure of the Enigma', 211278), (241166, 241166, 1, 1, 'Spirit of Blessing', 239149), (245481, 245481, 150, 150, 'Spirit of Opportunity', 25800), (241258, 241258, 1, 1, 'Spirit of Purity', 239189), (245424, 245424, 150, 150, 'Spirit of Saccelum', 203503), (245888, 245888, 200, 200, 'Spirit of the Hooded Crow', 236568), (245428, 245428, 150, 150, 'Spirit of the Innocent', 203502), (281236, 281236, 1, 1, 'Spirit''s Cut Gem', 281223), (281220, 281220, 1, 1, 'Spirit''s Gem', 281224), (281206, 281206, 1, 1, 'Spirit''s Signet of The Apocalypse', 281195), (244993, 244993, 250, 250, 'Spiritech Medical Analyzer', 205501), (244992, 244992, 250, 250, 'Spiritech Network Analyzer', 205502), (246595, 246596, 1, 300, 'Spiritual Armor Footwear', 256333), (246603, 246604, 1, 300, 'Spiritual Armor Gloves', 256334), (246597, 246598, 1, 300, 'Spiritual Armor Headwear', 256335), (246605, 246606, 1, 300, 'Spiritual Armor Legwear', 256336), (246601, 246602, 1, 300, 'Spiritual Armor Sleeves', 256331), (246599, 246600, 1, 300, 'Spiritual Body Armor', 256332), (247146, 247147, 1, 300, 'Spiritual Lead Viralbots', 290346), (273010, 273010, 1, 1, 'Splat Shirt', 273002), (215412, 215412, 1, 1, 'Splendent', 82197), (215413, 215413, 1, 1, 'Splendid', 82197), (249017, 249018, 1, 10, 'Splintered Arctic Metaplast Mace', 13333), (130197, 130198, 1, 10, 'Splintered Bloodworm Carapace', 85166), (150176, 150177, 21, 30, 'Splintered Bodum-Larga Club', 85172), (130125, 130126, 1, 20, 'Splintered Denunciatory Spear', 33163), (206080, 206081, 1, 49, 'Splintered Incan Blood Tainter', 113986), (152386, 152387, 1, 20, 'Splintered Khemo-Tech Platinum Wakisashi', 113983), (125330, 125331, 1, 29, 'Splintered Large Rider Squibber', 114008), (130214, 130215, 1, 11, 'Splintered Light Spear', 33163), (130071, 130072, 1, 11, 'Splintered Light Staff', 136738), (152158, 152159, 21, 40, 'Splintered Light Tube-Bow', 85167), (164427, 164428, 1, 99, 'Splintered Mantis Predator Blade', 269399), (125362, 125363, 1, 20, 'Splintered Merchant Executioner', 114003), (125311, 125312, 1, 20, 'Splintered Merchant Squibber', 114007), (142836, 142837, 1, 10, 'Splintered Metaplast Mace', 13333), (130087, 130088, 1, 20, 'Splintered Native Alloy Staff', 136738), (253242, 253243, 1, 149, 'Splintered Odum Blade', 40781), (128919, 128920, 1, 20, 'Splintered Peasant Executioner', 114001), (125296, 125297, 1, 22, 'Splintered Peasant Squibber', 114005), (125400, 125401, 1, 20, 'Splintered Protector Executioner', 114002), (125343, 125344, 1, 20, 'Splintered Protector Squibber', 114006), (125381, 125382, 1, 20, 'Splintered Rider Executioner', 114004), (129034, 129035, 81, 100, 'Splintered Sledgehammer', 33167), (144063, 144064, 1, 10, 'Splintered Survival Axe', 40782), (249036, 249037, 1, 10, 'Splintered Survival Axe of Genevra', 40782), (125419, 125420, 1, 20, 'Splintered Torch', 85172), (150254, 150255, 1, 20, 'Splintered Wall-Blade', 113983), (82103, 82103, 1, 1, 'Split Velvet Boots', 81985), (82093, 82093, 1, 1, 'Split Velvet Pants', 81980), (82094, 82094, 1, 1, 'Split Velvet Shirt', 81972), (82095, 82095, 1, 1, 'Split Velvet Sleeves', 81978), (304942, 304942, 1, 1, 'Spoils of War', 227904), (304953, 304953, 1, 1, 'Spoils of War', 227904), (304954, 304954, 1, 1, 'Spoils of War', 227904), (304955, 304955, 1, 1, 'Spoils of War', 227904), (304956, 304956, 1, 1, 'Spoils of War', 227904), (304957, 304957, 1, 1, 'Spoils of War', 227904), (218474, 218474, 100, 100, 'Spongy Novictum', 20407), (277451, 277451, 1, 1, 'Spooky Leet Pet (Halloween Leet Series 1)', 254462), (303468, 303468, 1, 1, 'Spooky Leet Pet (Halloween Leet Series 1)', 254462), (275676, 275676, 1, 1, 'Spot Jammer', 275673), (259943, 259943, 1, 1, 'Sprig of Mistletoe', 259948), (25828, 25828, 1, 1, 'Spring Crystal', 286958), (253783, 253783, 1, 1, 'Spring Field Boots', 253710), (253780, 253780, 1, 1, 'Spring Field Pants', 253730), (253781, 253781, 1, 1, 'Spring Field Shirt', 253671), (253782, 253782, 1, 1, 'Spring Field Sleeves', 253693), (130641, 130641, 1, 1, 'Spring-Roll Sushi Delight', 99288), (124232, 124233, 16, 34, 'Springfield Arms Home Defender', 113989), (214333, 214334, 100, 199, 'Sprite Bow', 213412), (214335, 214336, 200, 299, 'Sprite Bow', 213412), (263901, 263901, 1, 1, 'Spun Pygmaeus Platter', 263900), (302335, 302335, 1, 1, 'Spynosaur''s T-shirt', 302309), (302336, 302336, 1, 1, 'Spynosaur''s T-shirt Spawner', 302309), (253156, 253157, 1, 300, 'Square Kyr''Ozch Chip Mold', 130842), (271305, 271306, 1, 300, 'Squibber - 000', 114005), (271307, 271308, 1, 300, 'Squibber - 010', 114005), (271309, 271310, 1, 300, 'Squibber - 050', 114005), (271311, 271312, 1, 300, 'Squibber - 070', 114005), (271313, 271314, 1, 300, 'Squibber - 870', 114005), (258713, 258713, 1, 1, 'Sriami''s Sunday Morning Robe', 258714), (259361, 259361, 1, 1, 'Sriami''s Sunday Morning Robe', 258714), (225581, 225582, 1, 500, 'Stab', 239077), (225583, 225584, 1, 500, 'Stab', 239077), (225585, 225586, 1, 500, 'Stab', 239077), (271295, 271296, 1, 300, 'Stabber - 000', 13346), (271297, 271298, 1, 300, 'Stabber - 010', 13346), (271299, 271300, 1, 300, 'Stabber - 050', 13346), (271301, 271302, 1, 300, 'Stabber - 070', 13346), (271303, 271304, 1, 300, 'Stabber - 870', 13346), (260690, 260690, 250, 250, 'Stabilization Unit', 218765), (164955, 164956, 1, 200, 'Stabilized OT Metamorphing Liquid Nanobots', 164949), (248344, 248344, 1, 1, 'Stabilized Silent Spitter', 33153), (245730, 245730, 250, 250, 'Stabilized Spiritech Circlet', 151922), (164535, 164536, 1, 200, 'Stable Preservation System', 149947), (258255, 258255, 1, 1, 'Stack of Bronto Hides', 247756), (259863, 259863, 1, 1, 'Stack of Stalking Slayer hides', 259862), (275560, 275560, 1, 1, 'Stack of Very Explosive Unicorn Ammo', 32171), (275561, 275561, 1, 1, 'Stack of Very Explosive Unicorn Ammo', 32171), (275554, 275554, 1, 1, 'Stack of Very Explosive Unicorn Ammunition', 32171), (288691, 288691, 1, 1, 'Stack of Very Explosive Unicorn Ammunition', 32171), (303465, 303465, 1, 1, 'Staff of Cleansing', 154366), (245627, 245628, 1, 19, 'Staff of Pelias', 218708), (245629, 245630, 20, 29, 'Staff of Pelias', 218708), (245631, 245632, 30, 39, 'Staff of Pelias', 218708), (245633, 245634, 40, 99, 'Staff of Pelias', 218708), (245635, 245636, 100, 199, 'Staff of Pelias', 218708), (245637, 245638, 200, 249, 'Staff of Pelias', 218708), (245639, 245640, 250, 299, 'Staff of Pelias', 218708), (245641, 245641, 300, 300, 'Staff of Pelias', 218708), (305387, 305387, 300, 300, 'Staff of Time', 156102), (258461, 258461, 20, 20, 'Staff of the Champion', 156598), (258462, 258462, 20, 20, 'Staff of the Champion', 156598), (277894, 277894, 1, 1, 'Staff of the Harvester', 277896), (302841, 302841, 215, 215, 'Staff of the Maiden', 156102), (214171, 214172, 100, 199, 'Staff of the Tempest', 210166), (214173, 214174, 200, 299, 'Staff of the Tempest', 210166), (214175, 214175, 300, 300, 'Staff of the Typhoon', 210166), (263183, 263183, 1, 1, 'Stained Chimera Fang', 262478), (123933, 123934, 1, 21, 'Stained MTI USP 1200', 13314), (130203, 130204, 31, 40, 'Stale Bloodworm Carapace', 85166), (247817, 247817, 100, 100, 'Stalker Carapace', 247816), (247803, 247803, 100, 100, 'Stalker Helmet', 247804), (248314, 248314, 1, 1, 'Stalker Limb', 286199), (248749, 248749, 1, 1, 'Stalking Cloak of Conflicted Singularity', 255300), (269248, 269248, 1, 1, 'Stalking Predator Hide', 269286), (101785, 101786, 1, 200, 'Stamina Cluster - Bright (Leg)', 35984), (101783, 101784, 1, 200, 'Stamina Cluster - Faded (Waist)', 35983), (101787, 101788, 1, 200, 'Stamina Cluster - Shiny (Chest)', 35985), (277175, 277176, 1, 300, 'Stamina Memory Cell', 276921), (165957, 165958, 201, 300, 'Stamina Refined Cluster - Bright (Leg)', 35984), (165955, 165956, 201, 300, 'Stamina Refined Cluster - Faded (Waist)', 35983), (165959, 165960, 201, 300, 'Stamina Refined Cluster - Shiny (Chest)', 35985), (305554, 305554, 1, 1, 'Stampede of the Boar', 43082), (49574, 49574, 1, 1, 'Stand', 49563), (160707, 160708, 1, 199, 'Standard Bureaucrat Suit', 156355), (285059, 285059, 1, 1, 'Standard Clan Guard Armor', 22990), (216323, 216323, 1, 1, 'Standard Clan Leader Merit Board', 216287), (156529, 156530, 20, 80, 'Standard Clans Administration Suit', 156356), (154327, 154327, 1, 1, 'Standard Emergency Treatment Laboratory', 37994), (207253, 207253, 220, 220, 'Standard Juggernaut Nano Containment Module', 119134), (290621, 290621, 1, 1, 'Standard Lottery Ticket', 290691), (152278, 152410, 1, 200, 'Standard Medical Epaulet', 37987), (159892, 159892, 1, 1, 'Standard Press Card', 37872), (122319, 122320, 81, 100, 'Stanton Stunner IV', 13313), (271987, 271988, 1, 300, 'Stanton Stunner IV - 000', 13313), (271991, 271992, 1, 300, 'Stanton Stunner IV - 005', 13313), (271993, 271994, 1, 300, 'Stanton Stunner IV - 405', 13313), (271995, 271996, 1, 300, 'Stanton Stunner IV - C05', 13313), (224055, 224055, 100, 100, 'Star Ring of Eckel Roch', 151928), (232738, 232739, 1, 149, 'Star Ruby', 286960), (232739, 232741, 150, 199, 'Star Ruby', 286960), (232741, 232742, 200, 249, 'Star Ruby', 286960), (232742, 232743, 250, 400, 'Star Ruby', 286960), (243788, 243789, 275, 279, 'Star Shooter', 233352), (243790, 243791, 280, 284, 'Star Shooter', 233352), (243792, 243793, 285, 289, 'Star Shooter', 233352), (243794, 243795, 290, 294, 'Star Shooter', 233352), (243796, 243797, 295, 299, 'Star Shooter', 233352), (244700, 244700, 250, 250, 'Star of Ardency', 131260), (244693, 244693, 250, 250, 'Star of Enterprice', 131260), (244703, 244703, 250, 250, 'Star of Enticement', 131260), (244691, 244691, 250, 250, 'Star of Equanimity', 131260), (244702, 244702, 250, 250, 'Star of Faith', 131260), (244690, 244690, 250, 250, 'Star of Fidelity', 131260), (244698, 244698, 250, 250, 'Star of Fortitude', 131260), (244695, 244695, 250, 250, 'Star of Freedom', 131260), (244692, 244692, 250, 250, 'Star of Ingenuity', 131260), (244696, 244696, 250, 250, 'Star of Interchange', 131260), (244697, 244697, 250, 250, 'Star of Management', 131260), (244701, 244701, 250, 250, 'Star of Moral', 131260), (244699, 244699, 250, 250, 'Star of Recovery', 131260), (244694, 244694, 250, 250, 'Star of Stealth', 131260), (152795, 152795, 40, 40, 'Starched Armbands', 41177), (245682, 245682, 150, 150, 'Stark Pants', 13304), (290059, 290059, 1, 1, 'Starla''s Red Tuxedo', 290054), (290033, 290033, 1, 1, 'Starla''s Red Tuxedo - Deluxe Edition', 290054), (49573, 49573, 1, 1, 'Start Combat', 49565), (215423, 215423, 1, 1, 'Startup Coil of Health', 218303), (78417, 78417, 1, 1, 'Startup Crystal: Nano Crystal (Weak Health Funnel)', 12228), (116629, 116629, 1, 1, 'Startup First-Aid Kit', 11707), (218741, 218741, 1, 1, 'Startup Health Spindle', 218754), (116696, 116696, 1, 1, 'Startup Maps - Clans', 100318), (116697, 116697, 1, 1, 'Startup Maps - Neutrals', 100318), (116693, 116693, 1, 1, 'Startup Maps - Omni-Tek', 100318), (116628, 116628, 1, 1, 'Startup Treatment Laboratory', 37987), (43553, 43553, 1, 1, 'Stationary Automated Surgery Clinic', 13369), (295742, 295742, 1, 1, 'Stationary Automated Surgery Clinic', 13369), (303633, 303633, 1, 1, 'Statuesque Body Armor', 303657), (303635, 303635, 1, 1, 'Statuesque Boots', 303654), (303631, 303631, 1, 1, 'Statuesque Facemask', 303658), (303636, 303636, 1, 1, 'Statuesque Gloves', 303656), (303634, 303634, 1, 1, 'Statuesque Legwear', 303655), (303632, 303632, 1, 1, 'Statuesque Sleeve', 303680), (157296, 157296, 1, 1, 'Steaming Hot Cup of Enhanced Coffee', 130566), (159676, 159676, 1, 1, 'Steel Arrowheads', 159119), (203471, 203472, 100, 200, 'Steiner Flexipus Chassis', 203519), (272220, 272221, 1, 300, 'Steiner LM-5 Assault Laser - 000', 33171), (272222, 272223, 1, 300, 'Steiner LM-5 Assault Laser - 008', 33171), (272224, 272225, 1, 300, 'Steiner LM-5 Assault Laser - 00C', 33171), (272226, 272227, 1, 300, 'Steiner LM-5 Assault Laser - 40C', 33171), (272228, 272229, 1, 300, 'Steiner LM-5 Assault Laser - C0C', 33171), (280771, 280771, 1, 1, 'Stellar Adventurer Nanodeck', 281043), (280772, 280772, 1, 1, 'Stellar Agent Nanodeck', 281043), (281055, 281055, 250, 250, 'Stellar Ardency', 281044), (280773, 280773, 1, 1, 'Stellar Bureaucrat Nanodeck', 281043), (280770, 280770, 1, 1, 'Stellar Doctor Nanodeck', 281043), (280774, 280774, 1, 1, 'Stellar Enforcer Nanodeck', 281043), (280775, 280775, 1, 1, 'Stellar Engineer Nanodeck', 281043), (281048, 281048, 250, 250, 'Stellar Enterprice', 281044), (281058, 281058, 250, 250, 'Stellar Enticement', 281044), (281046, 281046, 250, 250, 'Stellar Equanimity', 281044), (281057, 281057, 250, 250, 'Stellar Faith', 281044), (281045, 281045, 250, 250, 'Stellar Fidelity', 281044), (280776, 280776, 1, 1, 'Stellar Fixer Nanodeck', 281043), (281053, 281053, 250, 250, 'Stellar Fortitude', 281044), (281050, 281050, 250, 250, 'Stellar Freedom', 281044), (281047, 281047, 250, 250, 'Stellar Ingenuity', 281044), (281051, 281051, 250, 250, 'Stellar Interchange', 281044), (168512, 168512, 165, 165, 'Stellar Jewel of Burning Plasma', 286731), (168796, 168796, 165, 165, 'Stellar Jewel of Corroded Glory', 286725), (230295, 230295, 165, 165, 'Stellar Jewel of Decayed Glory', 25794), (230091, 230091, 165, 165, 'Stellar Jewel of Fiery Plasma', 25794), (230044, 230044, 165, 165, 'Stellar Jewel of the Broken Moebius', 25794), (168472, 168472, 165, 165, 'Stellar Jewel of the Bruised Brawler', 286723), (230215, 230215, 165, 165, 'Stellar Jewel of the Craggy Landscape', 25794), (230135, 230135, 165, 165, 'Stellar Jewel of the Empty Desert', 25794), (165388, 165388, 165, 165, 'Stellar Jewel of the Eternal Juggernaut', 286727), (229983, 229983, 165, 165, 'Stellar Jewel of the Frail Juggernaut', 25794), (168619, 168619, 165, 165, 'Stellar Jewel of the Frozen Tundra', 286732), (230175, 230175, 165, 165, 'Stellar Jewel of the Icy Tundra', 25794), (168431, 168431, 165, 165, 'Stellar Jewel of the Infinite Moebius', 286730), (230335, 230335, 165, 165, 'Stellar Jewel of the Insidious Killer', 25794), (168716, 168716, 165, 165, 'Stellar Jewel of the Jagged Landscape', 286729), (230050, 230050, 165, 165, 'Stellar Jewel of the Novice Brawler', 25794), (168756, 168756, 165, 165, 'Stellar Jewel of the Rainbow-hued Sky', 286726), (230255, 230255, 165, 165, 'Stellar Jewel of the Scarlet Sky', 25794), (168552, 168552, 165, 165, 'Stellar Jewel of the Searing Desert', 286724), (168842, 168842, 165, 165, 'Stellar Jewel of the Silent Killer', 286728), (280777, 280777, 1, 1, 'Stellar Keeper Nanodeck', 281043), (281052, 281052, 250, 250, 'Stellar Management', 281044), (280778, 280778, 1, 1, 'Stellar Martial Artist Nanodeck', 281043), (280779, 280779, 1, 1, 'Stellar Meta-Physicist Nanodeck', 281043), (281056, 281056, 250, 250, 'Stellar Moral', 281044), (280780, 280780, 1, 1, 'Stellar Nano-Technician Nanodeck', 281043), (281054, 281054, 250, 250, 'Stellar Recovery', 281044), (280781, 280781, 1, 1, 'Stellar Shade Nanodeck', 281043), (280782, 280782, 1, 1, 'Stellar Soldier Nanodeck', 281043), (281049, 281049, 250, 250, 'Stellar Stealth', 281044), (280783, 280783, 1, 1, 'Stellar Trader Nanodeck', 281043), (154040, 154040, 1, 1, 'Steps of Madness', 130561), (158843, 158843, 200, 200, 'Stereotypical Dragon Tooth Poker', 131261), (130185, 130186, 71, 83, 'Sticky Hot Air Stick', 13349), (122224, 122225, 81, 100, 'Stigma Rifle', 33155), (203817, 203817, 1, 1, 'Stiletto Registar', 163069), (275235, 275235, 1, 1, 'Still Alive T-Shirt', 275236), (305542, 305542, 1, 1, 'Sting of the Viper', 43091), (246087, 246087, 250, 250, 'Stinging Louse', 11706), (260679, 260679, 250, 250, 'Stinging Louse', 11706), (152538, 152538, 110, 110, 'Stinging Snake Tattoo', 96110), (246877, 246877, 250, 250, 'Stock of Bacam-Xum', 130872), (289573, 289573, 1, 1, 'Stolen Gift', 274183), (289574, 289574, 1, 1, 'Stolen Gift', 274178), (289575, 289575, 1, 1, 'Stolen Gift', 274180), (289576, 289576, 1, 1, 'Stolen Gift', 274180), (289577, 289577, 1, 1, 'Stolen Gift', 274183), (289584, 289584, 1, 1, 'Stolen Gift', 274180), (289586, 289586, 1, 1, 'Stolen Gift', 274178), (254099, 254099, 1, 1, 'Stolen Goods', 154190), (254855, 254855, 1, 1, 'Stolen Goods II', 154190), (297055, 297055, 1, 1, 'Stolen Handbag', 291231), (297051, 297051, 1, 1, 'Stolen Yalmaha', 290478), (294529, 294529, 1, 1, 'Stone Fireplace', 294526), (227072, 227072, 1, 1, 'Stone Fist', 239263), (233088, 233088, 15, 15, 'Stone Ghost Maggot Sample', 156496), (165205, 165205, 200, 200, 'Stone Samurai Boots', 13275), (255584, 255584, 1, 1, 'Stone Table', 255948), (227326, 227326, 1, 1, 'Stoneworks', 239255), (213252, 213252, 1, 1, 'Stop Bluffing', 82207), (227322, 227322, 1, 1, 'Stop Notum Flow', 239009), (82220, 82220, 1, 1, 'Stop Sneaking', 82207), (155756, 155756, 20, 20, 'Storage Crystal (Empty)', 156511), (233108, 233108, 300, 300, 'Storage Tree Pollen', 37973), (208255, 208256, 1, 200, 'Storm Carbonum Breastplate', 162421), (208253, 208254, 1, 200, 'Storm Carbonum Plate Arms', 162420), (208257, 208258, 1, 200, 'Storm Carbonum Plate Boots', 162422), (208259, 208260, 1, 200, 'Storm Carbonum Plate Gloves', 162423), (208261, 208262, 1, 200, 'Storm Carbonum Plate Helmet', 10833), (208263, 208264, 1, 200, 'Storm Carbonum Plate Legs', 162425), (150184, 150185, 101, 120, 'Straight Bodum-Larga Club', 85172), (287902, 287902, 1, 1, 'Strange Device', 12711), (155752, 155752, 1, 1, 'Strange Gooey Blood Stew', 100307), (155751, 155751, 1, 1, 'Strange Gooey Leet Stew', 99232), (279067, 279067, 1, 1, 'Strange Piece of Alien Technology', 255263), (280415, 280415, 20, 20, 'Strange Xan Artifact', 136597), (275198, 275198, 150, 150, 'Strapped Leather Coat', 275206), (253453, 253453, 1, 1, 'Streamlined Gannondorph Bookshelves', 255929), (101773, 101774, 1, 200, 'Strength Cluster - Bright (Left-Arm)', 35984), (101771, 101772, 1, 200, 'Strength Cluster - Faded (Chest)', 35983), (101775, 101776, 1, 200, 'Strength Cluster - Shiny (Right-Arm)', 35985), (277177, 277178, 1, 300, 'Strength Memory Cell', 276921), (165945, 165946, 201, 300, 'Strength Refined Cluster - Bright (Left-Arm)', 35984), (165943, 165944, 201, 300, 'Strength Refined Cluster - Faded (Chest)', 35983), (165947, 165948, 201, 300, 'Strength Refined Cluster - Shiny (Right-Arm)', 35985), (305478, 305478, 1, 1, 'Strength of the Immortal', 290523), (249082, 249082, 1, 1, 'String Vest of Auno', 255328), (227219, 227219, 1, 1, 'Strip Nano', 239173), (248215, 248215, 1, 1, 'Striped Pajamas Pants of the First Order', 255202), (248213, 248213, 1, 1, 'Striped Pajamas Shirt of the First Order', 255329), (248210, 248210, 1, 1, 'Striped Pajamas Sleeves of the First Order', 255274), (248216, 248216, 1, 1, 'Striped Pajamas Slippers of the First Order', 255368), (302065, 302065, 1, 1, 'Stripped Basic Cyberdeck', 218706), (302066, 302066, 1, 1, 'Stripped Basic Cyberdeck', 218706), (266337, 266337, 1, 1, 'Stripped Cyberdeck', 218706), (266338, 266338, 1, 1, 'Stripped Cyberdeck', 218706), (266339, 266339, 1, 1, 'Stripped Cyberdeck', 218706), (266340, 266340, 1, 1, 'Stripped Cyberdeck', 218706), (266341, 266341, 1, 1, 'Stripped Cyberdeck', 218706), (266342, 266342, 1, 1, 'Stripped Cyberdeck', 218706), (266343, 266343, 1, 1, 'Stripped Cyberdeck', 218706), (266344, 266344, 1, 1, 'Stripped Cyberdeck', 218706), (266345, 266345, 1, 1, 'Stripped Cyberdeck', 218706), (266346, 266346, 1, 1, 'Stripped Cyberdeck', 218706), (266347, 266347, 1, 1, 'Stripped Cyberdeck', 218706), (266348, 266348, 1, 1, 'Stripped Cyberdeck', 218706), (266349, 266349, 1, 1, 'Stripped Cyberdeck', 218706), (266350, 266350, 1, 1, 'Stripped Cyberdeck', 218706), (303064, 303064, 150, 150, 'Stripped Merit Board', 303063), (303457, 303458, 1, 220, 'Stripped Silencer''s Boots', 303263), (303445, 303446, 1, 220, 'Stripped Silencer''s Bulwark', 303282), (303455, 303456, 1, 220, 'Stripped Silencer''s Gloves', 303264), (303447, 303448, 1, 220, 'Stripped Silencer''s Helmet', 303265), (303459, 303460, 1, 220, 'Stripped Silencer''s Mark', 131249), (303451, 303452, 1, 220, 'Stripped Silencer''s Shirt', 303262), (303453, 303454, 1, 220, 'Stripped Silencer''s Sleeves', 303261), (303449, 303450, 1, 220, 'Stripped Silencer''s Trousers', 303266), (246607, 246608, 1, 300, 'Strong Armor Footwear', 256363), (246611, 246612, 1, 300, 'Strong Armor Gloves', 256364), (246617, 246618, 1, 300, 'Strong Armor Headwear', 256365), (246609, 246610, 1, 300, 'Strong Armor Legwear', 256294), (246613, 246614, 1, 300, 'Strong Armor Sleeves', 256361), (246615, 246616, 1, 300, 'Strong Body Armor', 256362), (160218, 160218, 200, 200, 'Strong East Wind Katana', 113999), (247138, 247139, 1, 300, 'Strong Lead Viralbots', 290350), (152304, 152305, 91, 120, 'Strong Luxembourg Inferno Rifle', 13314), (152623, 152623, 1, 1, 'Strong Luxembourg Inferno Rifle Construction Manual', 136332), (244647, 244647, 250, 250, 'Strong Mittens of the Sagittarius', 22939), (160212, 160212, 200, 200, 'Strong North Wind Katana', 114000), (301071, 301071, 1, 1, 'Strong Oak Bo', 33162), (247757, 247757, 100, 100, 'Strong Regenerating Bioplate', 247756), (160215, 160215, 200, 200, 'Strong South Wind Katana', 113998), (160275, 160275, 200, 200, 'Strong West Wind Katana', 113999), (271018, 271019, 1, 300, 'Stun-Baton - 000', 13348), (271020, 271021, 1, 300, 'Stun-Baton - 010', 13348), (271022, 271023, 1, 300, 'Stun-Baton - 050', 13348), (271024, 271025, 1, 300, 'Stun-Baton - 070', 13348), (271026, 271027, 1, 300, 'Stun-Baton - 870', 13348), (259434, 259434, 1, 1, 'Stunned 3 sec wearable', 84046), (274976, 274976, 200, 200, 'Sturdy Detention Boots', 31746), (204755, 204755, 1, 1, 'Stygian Desolator', 204827), (289433, 289433, 1, 1, 'Stylish Skiing Outfit', 289438), (100347, 100347, 1, 1, 'Sub-Atomic Memory Storage', 119136), (154406, 154406, 85, 85, 'Sub-Dermal Vengeance Screen (Left Hand)', 12669), (154407, 154407, 85, 85, 'Sub-Dermal Vengeance Screen (Right Hand)', 12670), (229659, 229924, 1, 300, 'Subdued Flow of Novictum', 235352), (128918, 128918, 180, 180, 'Sublime Water balloon', 85173), (288684, 288684, 1, 1, 'Submachine Gun Barrel', 130705), (288727, 288727, 1, 1, 'Submachine Gun Barrel', 130705), (288685, 288685, 1, 1, 'Submachine Gun Scope', 130776), (288726, 288726, 1, 1, 'Submachine Gun Scope', 130776), (288686, 288686, 1, 1, 'Submachine Gun Stock', 130696), (288725, 288725, 1, 1, 'Submachine Gun Stock', 130696), (85456, 85457, 1, 250, 'Submachine Guns Field Primer', 83498), (272284, 272285, 1, 300, 'Submachinegun Weapons Basic Upgrade Kit', 272250), (245720, 245720, 250, 250, 'Subspace Mesh', 205520), (245721, 245721, 250, 250, 'Subspace Meta-Cerebellum Pocket', 203551), (245719, 245719, 250, 250, 'Subspace Pocket', 203551), (245723, 245723, 250, 250, 'Subspace Storage Device', 203551), (258264, 258264, 1, 1, 'Substance Analysis RNDY5554651', 156341), (260675, 260675, 205, 205, 'Subtle Wen-Wen', 268035), (121787, 121788, 81, 100, 'Subturbine', 21151), (272060, 272061, 1, 300, 'Subturbine - 000', 21151), (272062, 272063, 1, 300, 'Subturbine - 008', 21151), (272064, 272065, 1, 300, 'Subturbine - 00C', 21151), (272066, 272067, 1, 300, 'Subturbine - 40C', 21151), (272068, 272069, 1, 300, 'Subturbine - C0C', 21151), (137770, 137770, 1, 1, 'Subturbine Construction Manual', 37933), (303777, 303777, 1, 1, 'Subway Explorer Pack', 99664), (304572, 304572, 1, 1, 'Subway Explorer Pack', 304438), (285508, 285508, 1, 1, 'Subway Ticket', 154675), (292833, 292833, 1, 1, 'Subway Ticket', 99184), (227065, 227065, 1, 1, 'Succumb', 239009), (157284, 157285, 1, 199, 'Summer Burst SMP', 33156), (157290, 157291, 1, 199, 'Summer FA SMP', 33156), (157287, 157288, 1, 199, 'Summer Fling SMP', 33156), (157293, 157294, 1, 199, 'Summer Shells SMP', 33156), (274666, 274666, 1, 1, 'Summoner''s Spirit Vest', 274683), (305526, 305526, 1, 1, 'Summoner''s Staff of Dismissal', 154366), (224053, 224053, 100, 100, 'Sun Ring of Eckel Roch', 151927), (157424, 157424, 1, 1, 'Sun Thirtyeight Salmon Advantage', 81777), (234890, 234890, 1, 1, 'Sunburst CF Electrolyte Base', 205511), (122566, 122567, 81, 100, 'Sunburst Mk III', 33148), (143852, 143853, 81, 100, 'Sunburst Mk IV', 33148), (272100, 272101, 1, 300, 'Sunburst Mk IV - 000', 33148), (272102, 272103, 1, 300, 'Sunburst Mk IV - 008', 33148), (272104, 272105, 1, 300, 'Sunburst Mk IV - 00C', 33148), (272106, 272107, 1, 300, 'Sunburst Mk IV - 40C', 33148), (272108, 272109, 1, 300, 'Sunburst Mk IV - C0C', 33148), (234050, 234051, 1, 15, 'Sundance Boots', 21865), (234061, 234062, 1, 15, 'Sundance Gloves', 21871), (234065, 234066, 1, 15, 'Sundance Headband', 130728), (234057, 234058, 1, 15, 'Sundance Pants', 13304), (234059, 234060, 1, 15, 'Sundance Shirt', 13240), (234063, 234064, 1, 15, 'Sundance Sleeves', 22967), (152345, 152346, 61, 80, 'Sunflower Parry Stick', 136738), (163631, 163631, 100, 100, 'Sunglasses of Syncopated Heartbeats', 45780), (285475, 285475, 1, 1, 'Sunglasses of the Servants of Eight', 45780), (246813, 246813, 200, 200, 'Sunrise Hilt', 235342), (281129, 281129, 1, 1, 'Sunrise Luxury Residence Key', 281871), (281835, 281835, 1, 1, 'Sunrise Luxury Residence Key', 281834), (246814, 246814, 200, 200, 'Sunset Hilt', 235341), (259378, 259378, 106, 106, 'Super Charged Nano Crystal (Ball and Chain)', 42449), (259368, 259368, 106, 106, 'Super Charged Nano Crystal (Bewilder)', 12224), (259381, 259381, 215, 215, 'Super Charged Nano Crystal (Burden of Atlas)', 42449), (259370, 259370, 204, 204, 'Super Charged Nano Crystal (Discourage Involvement)', 42449), (259380, 259380, 204, 204, 'Super Charged Nano Crystal (Feet of Lead)', 42449), (259379, 259379, 129, 129, 'Super Charged Nano Crystal (Gravity Pull)', 42449), (259369, 259369, 215, 215, 'Super Charged Nano Crystal (Peaceful Intentions)', 42449), (259371, 259371, 129, 129, 'Super Charged Nano Crystal (Project Calm)', 12257), (289901, 289901, 1, 1, 'Super Effective Tape', 289913), (160244, 160244, 200, 200, 'Super SOL Fire Executioner Type C', 114003), (160241, 160241, 200, 200, 'Super SOL Fire Executioner Type E', 114003), (160238, 160238, 200, 200, 'Super SOL Fire Executioner Type F', 114003), (160235, 160235, 200, 200, 'Super SOL Fire Executioner Type T', 114003), (243798, 243798, 300, 300, 'Super Star Shooter', 233352), (100299, 100299, 1, 1, 'Super-Coolant', 100311), (164957, 164958, 1, 200, 'Super-Stabilized OT Metamorphing Liquid Nanobots', 164950), (290881, 290881, 1, 1, 'Superb NipponTech "Metsuki" Sight Overlay Device - Blue', 289927), (290884, 290884, 1, 1, 'Superb NipponTech "Metsuki" Sight Overlay Device - Green', 289928), (290883, 290883, 1, 1, 'Superb NipponTech "Metsuki" Sight Overlay Device - Grey', 289929), (290882, 290882, 1, 1, 'Superb NipponTech "Metsuki" Sight Overlay Device - Orange', 289931), (290886, 290886, 1, 1, 'Superb NipponTech "Metsuki" Sight Overlay Device - Pink', 289932), (290880, 290880, 1, 1, 'Superb NipponTech "Metsuki" Sight Overlay Device - Purple', 289933), (290885, 290885, 1, 1, 'Superb NipponTech "Metsuki" Sight Overlay Device - Red', 289926), (290879, 290879, 1, 1, 'Superb NipponTech "Metsuki" Sight Overlay Device - White', 289934), (290878, 290878, 1, 1, 'Superb NipponTech "Metsuki" Sight Overlay Device - Yellow', 289925), (160277, 160277, 400, 400, 'Superb Quality Health Treatment Laboratory', 37990), (304505, 303843, 1, 24, 'Supercharged Adventurer Nano Crystal', 12223), (303843, 303844, 25, 59, 'Supercharged Adventurer Nano Crystal', 12223), (303844, 303845, 60, 99, 'Supercharged Adventurer Nano Crystal', 12223), (303845, 303846, 100, 149, 'Supercharged Adventurer Nano Crystal', 12223), (303846, 303847, 150, 199, 'Supercharged Adventurer Nano Crystal', 12223), (303847, 303848, 200, 215, 'Supercharged Adventurer Nano Crystal', 12223), (304506, 303849, 1, 24, 'Supercharged Agent Nano Crystal', 12223), (303849, 303850, 25, 59, 'Supercharged Agent Nano Crystal', 12223), (303850, 303851, 60, 99, 'Supercharged Agent Nano Crystal', 12223), (303851, 303852, 100, 149, 'Supercharged Agent Nano Crystal', 12223), (303852, 303853, 150, 199, 'Supercharged Agent Nano Crystal', 12223), (303853, 303854, 200, 215, 'Supercharged Agent Nano Crystal', 12223), (304507, 303855, 1, 24, 'Supercharged Bureaucrat Nano Crystal', 12223), (303855, 303856, 25, 59, 'Supercharged Bureaucrat Nano Crystal', 12223), (303856, 303857, 60, 99, 'Supercharged Bureaucrat Nano Crystal', 12223), (303857, 303858, 100, 149, 'Supercharged Bureaucrat Nano Crystal', 12223), (303858, 303859, 150, 199, 'Supercharged Bureaucrat Nano Crystal', 12223), (303859, 303860, 200, 215, 'Supercharged Bureaucrat Nano Crystal', 12223), (304508, 303861, 1, 24, 'Supercharged Doctor Nano Crystal', 12223), (303861, 303862, 25, 59, 'Supercharged Doctor Nano Crystal', 12223), (303862, 303863, 60, 99, 'Supercharged Doctor Nano Crystal', 12223), (303863, 303864, 100, 149, 'Supercharged Doctor Nano Crystal', 12223), (303864, 303865, 150, 199, 'Supercharged Doctor Nano Crystal', 12223), (303865, 303866, 200, 215, 'Supercharged Doctor Nano Crystal', 12223), (304509, 303867, 1, 24, 'Supercharged Enforcer Nano Crystal', 12223), (303867, 303868, 25, 59, 'Supercharged Enforcer Nano Crystal', 12223), (303868, 303869, 60, 99, 'Supercharged Enforcer Nano Crystal', 12223), (303869, 303870, 100, 149, 'Supercharged Enforcer Nano Crystal', 12223), (303870, 303871, 150, 199, 'Supercharged Enforcer Nano Crystal', 12223), (303871, 303872, 200, 215, 'Supercharged Enforcer Nano Crystal', 12223), (304510, 303873, 1, 24, 'Supercharged Engineer Nano Crystal', 12223), (303873, 303874, 25, 59, 'Supercharged Engineer Nano Crystal', 12223), (303874, 303875, 60, 99, 'Supercharged Engineer Nano Crystal', 12223), (303875, 303876, 100, 149, 'Supercharged Engineer Nano Crystal', 12223), (303876, 303877, 150, 199, 'Supercharged Engineer Nano Crystal', 12223), (303877, 303878, 200, 215, 'Supercharged Engineer Nano Crystal', 12223), (304511, 303879, 1, 24, 'Supercharged Fixer Nano Crystal', 12223), (303879, 303880, 25, 59, 'Supercharged Fixer Nano Crystal', 12223), (303880, 303881, 60, 99, 'Supercharged Fixer Nano Crystal', 12223), (303881, 303882, 100, 149, 'Supercharged Fixer Nano Crystal', 12223), (303882, 303883, 150, 199, 'Supercharged Fixer Nano Crystal', 12223), (303883, 303884, 200, 215, 'Supercharged Fixer Nano Crystal', 12223), (304512, 303885, 1, 24, 'Supercharged Keeper Nano Crystal', 12223), (303885, 303886, 25, 59, 'Supercharged Keeper Nano Crystal', 12223), (303886, 303887, 60, 99, 'Supercharged Keeper Nano Crystal', 12223), (303887, 303888, 100, 149, 'Supercharged Keeper Nano Crystal', 12223), (303888, 303889, 150, 199, 'Supercharged Keeper Nano Crystal', 12223), (303889, 303890, 200, 215, 'Supercharged Keeper Nano Crystal', 12223), (304513, 303891, 1, 24, 'Supercharged Martial Artist Nano Crystal', 12223), (303891, 303892, 25, 59, 'Supercharged Martial Artist Nano Crystal', 12223), (303892, 303893, 60, 99, 'Supercharged Martial Artist Nano Crystal', 12223), (303893, 303894, 100, 149, 'Supercharged Martial Artist Nano Crystal', 12223), (303894, 303895, 150, 199, 'Supercharged Martial Artist Nano Crystal', 12223), (303895, 303896, 200, 215, 'Supercharged Martial Artist Nano Crystal', 12223), (304514, 303897, 1, 24, 'Supercharged Metaphysicist Nano Crystal', 12223), (303897, 303898, 25, 59, 'Supercharged Metaphysicist Nano Crystal', 12223), (303898, 303899, 60, 99, 'Supercharged Metaphysicist Nano Crystal', 12223), (303899, 303900, 100, 149, 'Supercharged Metaphysicist Nano Crystal', 12223), (303900, 303901, 150, 199, 'Supercharged Metaphysicist Nano Crystal', 12223), (303901, 303902, 200, 215, 'Supercharged Metaphysicist Nano Crystal', 12223), (304515, 303903, 1, 24, 'Supercharged Nanotechnician Nano Crystal', 12223), (303903, 303904, 25, 59, 'Supercharged Nanotechnician Nano Crystal', 12223), (303904, 303905, 60, 99, 'Supercharged Nanotechnician Nano Crystal', 12223), (303905, 303906, 100, 149, 'Supercharged Nanotechnician Nano Crystal', 12223), (303906, 303907, 150, 199, 'Supercharged Nanotechnician Nano Crystal', 12223), (303907, 303908, 200, 215, 'Supercharged Nanotechnician Nano Crystal', 12223), (304516, 303969, 1, 24, 'Supercharged Shade Nano Crystal', 12223), (303969, 303970, 25, 59, 'Supercharged Shade Nano Crystal', 12223), (303970, 303971, 60, 99, 'Supercharged Shade Nano Crystal', 12223), (303971, 303972, 100, 149, 'Supercharged Shade Nano Crystal', 12223), (303972, 303973, 150, 199, 'Supercharged Shade Nano Crystal', 12223), (303973, 303974, 200, 215, 'Supercharged Shade Nano Crystal', 12223), (304517, 303975, 1, 24, 'Supercharged Soldier Nano Crystal', 12223), (303975, 303976, 25, 59, 'Supercharged Soldier Nano Crystal', 12223), (303976, 303977, 60, 99, 'Supercharged Soldier Nano Crystal', 12223), (303977, 303978, 100, 149, 'Supercharged Soldier Nano Crystal', 12223), (303978, 303979, 150, 199, 'Supercharged Soldier Nano Crystal', 12223), (303979, 303980, 200, 215, 'Supercharged Soldier Nano Crystal', 12223), (304518, 303981, 1, 24, 'Supercharged Trader Nano Crystal', 12223), (303981, 303982, 25, 59, 'Supercharged Trader Nano Crystal', 12223), (303982, 303983, 60, 99, 'Supercharged Trader Nano Crystal', 12223), (303983, 303984, 100, 149, 'Supercharged Trader Nano Crystal', 12223), (303984, 303985, 150, 199, 'Supercharged Trader Nano Crystal', 12223), (303985, 303986, 200, 215, 'Supercharged Trader Nano Crystal', 12223), (152095, 152095, 181, 181, 'Superior Abigail', 13314), (153646, 153646, 1, 1, 'Superior Abigail Construction Manual', 136329), (162387, 162387, 200, 200, 'Superior Adventure Shield', 33152), (150231, 150231, 161, 161, 'Superior Amytlo Executioner', 114001), (153336, 153336, 1, 1, 'Superior Amytlo Executioner Construction Manual', 136329), (267695, 267695, 250, 250, 'Superior Ancient Combat Tuner', 218768), (199390, 199390, 260, 260, 'Superior Bau Charger Armor Boots', 22878), (199411, 199411, 260, 260, 'Superior Bau Charger Armor Gloves', 22939), (199432, 199432, 260, 260, 'Superior Bau Charger Armor Helmet', 31738), (199453, 199453, 260, 260, 'Superior Bau Charger Armor Pants', 22928), (199474, 199474, 260, 260, 'Superior Bau Charger Armor Sleeves', 22889), (199495, 199495, 260, 260, 'Superior Bau Charger Body Armor', 22981), (199516, 199516, 260, 260, 'Superior Bau Charger Female Body Armor', 22942), (162021, 162022, 320, 329, 'Superior Bau Cyber Armor Helmet', 31738), (162022, 162023, 330, 340, 'Superior Bau Cyber Armor Helmet', 31738), (247767, 254806, 1, 300, 'Superior Bioplate', 247769), (254824, 254825, 1, 100, 'Superior Building Structure', 256070), (247797, 254808, 100, 300, 'Superior Building Structure', 256070), (254826, 254827, 101, 200, 'Superior Building Structure', 256070), (254828, 254829, 201, 300, 'Superior Building Structure', 256070), (162389, 162389, 200, 200, 'Superior Chemical Adventure Shield', 33152), (158020, 158020, 200, 200, 'Superior Chemical Deflection Shield', 33152), (162390, 162390, 200, 200, 'Superior Cold Adventure Shield', 12702), (158036, 158036, 200, 200, 'Superior Cold Deflection Shield', 12702), (152432, 152432, 200, 200, 'Superior Cold Ray Orb', 152424), (70252, 70252, 200, 200, 'Superior Deflection Shield', 33152), (162391, 162391, 200, 200, 'Superior Energy Adventure Shield', 12663), (158039, 158039, 200, 200, 'Superior Energy Deflection Shield', 12663), (150222, 150222, 181, 181, 'Superior Fayalite Flamberge', 113987), (152108, 152108, 181, 181, 'Superior Fiddle Rifle', 13312), (153791, 153791, 1, 1, 'Superior Fiddle Rifle Construction Manual', 136329), (162393, 162393, 200, 200, 'Superior Fire Adventure Shield', 12668), (158021, 158021, 200, 200, 'Superior Fire Deflection Shield', 12668), (152435, 152435, 200, 200, 'Superior Hot Ray Orb', 152424), (157628, 157628, 200, 200, 'Superior IMI Tellus TT', 13313), (269903, 269903, 1, 1, 'Superior Icy Shoulderpads of Brawn', 269964), (269899, 269899, 1, 1, 'Superior Icy Shoulderpads of Explosive Power', 269963), (269900, 269900, 1, 1, 'Superior Icy Shoulderpads of the Powerful Mind', 269962), (155849, 155849, 200, 200, 'Superior Improved Baseballbat', 13335), (155860, 155860, 200, 200, 'Superior Improved Club', 85172), (155846, 155846, 200, 200, 'Superior Improved Cutlass', 13347), (155854, 155854, 200, 200, 'Superior Improved Gofleprod', 33168), (155857, 155857, 200, 200, 'Superior Improved Meatcleaver', 85169), (155843, 155843, 200, 200, 'Superior Improved Slank Chop', 21143), (155837, 155837, 200, 200, 'Superior Improved Tripler', 13344), (155840, 155840, 200, 200, 'Superior Improved Whings', 21139), (152310, 152310, 181, 181, 'Superior Luxembourg Inferno Rifle', 13314), (152684, 152684, 1, 1, 'Superior Luxembourg Inferno Rifle Construction Manual', 136329), (155591, 155591, 175, 175, 'Superior Mass Relocating Robot', 155928), (152287, 152288, 81, 100, 'Superior Michael Patriot Ffi 29A', 21148), (153200, 153200, 1, 1, 'Superior Michael Patriot Ffi 29A Construction Manual', 37933), (199685, 199687, 260, 270, 'Superior Nadir Homage Armor Boots', 22876), (199706, 199708, 260, 270, 'Superior Nadir Homage Armor Gloves', 22931), (199727, 199729, 260, 270, 'Superior Nadir Homage Armor Helmet', 31733), (199748, 199750, 260, 270, 'Superior Nadir Homage Armor Pants', 22914), (199769, 199771, 260, 270, 'Superior Nadir Homage Armor Sleeves', 22960), (199790, 199792, 260, 270, 'Superior Nadir Homage Body Armor', 22985), (246421, 246421, 200, 200, 'Superior Perennium Beamer', 45783), (246428, 246428, 200, 200, 'Superior Perennium Blaster', 45783), (246414, 246414, 200, 200, 'Superior Perennium Sniper', 45782), (25807, 25807, 200, 200, 'Superior Plastic Muscles', 12688), (162395, 162395, 200, 200, 'Superior Poison Adventure Shield', 12686), (152121, 152121, 181, 181, 'Superior Pow Bow', 85167), (234906, 234906, 1, 1, 'Superior Quality Molock Muktuk', 231393), (162396, 162396, 200, 200, 'Superior Radiation Adventure Shield', 12667), (158034, 158034, 200, 200, 'Superior Radiation Deflection Shield', 12667), (260713, 260713, 200, 200, 'Superior Rebuilt Perennium Beamer', 244836), (260706, 260706, 200, 200, 'Superior Rebuilt Perennium Blaster', 244931), (260720, 260720, 200, 200, 'Superior Rebuilt Perennium Sniper', 245082), (305028, 305028, 250, 250, 'Superior Ring of the Nucleus Basalis', 301035), (152134, 152134, 181, 181, 'Superior Sapphistic Bow', 85167), (203452, 203452, 200, 200, 'Superior Sentinel Armor Boots', 31746), (203455, 203455, 200, 200, 'Superior Sentinel Armor Gloves', 13287), (203453, 203453, 200, 200, 'Superior Sentinel Armor Helmet', 31539), (203454, 203454, 200, 200, 'Superior Sentinel Armor Pants', 31748), (203450, 203450, 200, 200, 'Superior Sentinel Armor Sleeves', 31747), (203451, 203451, 200, 200, 'Superior Sentinel Body Armor', 31749), (245669, 245669, 160, 160, 'Superior Skylight Shield', 245666), (161130, 161130, 200, 200, 'Superior Yatamutchy X-3 Counter-Sniper Rifle', 33155), (207995, 207996, 140, 149, 'Superjolt', 13320), (207997, 207997, 150, 150, 'Superjolt of Snufle', 13320), (296137, 296137, 1, 1, 'Supernatural''s T-shirt', 296147), (296295, 296295, 1, 1, 'Supernatural''s T-shirt', 296147), (296139, 296139, 1, 1, 'Supernatural''s T-shirt Spawner', 296147), (226134, 226135, 1, 500, 'Supernova', 239175), (226136, 226137, 1, 500, 'Supernova', 239175), (226138, 226139, 1, 500, 'Supernova', 239175), (122585, 122586, 81, 100, 'Supernova Mk VI', 33146), (271997, 271998, 1, 300, 'Supernova Mk VI - 000', 33146), (272001, 272002, 1, 300, 'Supernova Mk VI - 005', 33146), (272003, 272004, 1, 300, 'Supernova Mk VI - 405', 33146), (272005, 272006, 1, 300, 'Supernova Mk VI - C05', 33146), (141065, 141065, 1, 1, 'Supernova Mk VI Construction Manual', 37933), (160272, 160272, 200, 200, 'Supervisors Kaen-Archibald Kolt', 13334), (246627, 246628, 1, 300, 'Supple Armor Footwear', 256297), (246625, 246626, 1, 300, 'Supple Armor Gloves', 256298), (246619, 246620, 1, 300, 'Supple Armor Headwear', 256299), (246629, 246630, 1, 300, 'Supple Armor Legwear', 256300), (246623, 246624, 1, 300, 'Supple Armor Sleeves', 256295), (246621, 246622, 1, 300, 'Supple Body Armor', 256296), (247140, 247141, 1, 300, 'Supple Lead Viralbots', 290351), (223761, 223761, 1, 1, 'Supplies', 227291), (165273, 165273, 1, 1, 'Supply Crate', 154188), (215474, 215475, 25, 300, 'Supply Unit Boots', 214751), (215462, 215463, 75, 300, 'Supply Unit Chest Plate', 214744), (215468, 215469, 25, 300, 'Supply Unit Gloves', 214752), (215466, 215467, 75, 300, 'Supply Unit Helmet', 213617), (215476, 215477, 25, 300, 'Supply Unit Pants', 214753), (215470, 215471, 25, 300, 'Supply Unit Sleeves', 214749), (215472, 215473, 25, 300, 'Supply Unit Vest', 214750), (271407, 271408, 1, 300, 'Support Beam - 000', 33143), (271409, 271410, 1, 300, 'Support Beam - 010', 33143), (271411, 271412, 1, 300, 'Support Beam - 050', 33143), (271413, 271414, 1, 300, 'Support Beam - 850', 33143), (202719, 202720, 10, 30, 'Support Beam of Intolerance', 33143), (305030, 305030, 250, 250, 'Support Beam of Malice', 33143), (214245, 214246, 100, 199, 'Support Energy Gauntlet', 210167), (214247, 214248, 200, 299, 'Support Energy Gauntlet', 210167), (223394, 223395, 1, 300, 'Support Unit Crepuscule Boots', 13265), (223405, 223406, 1, 300, 'Support Unit Crepuscule Gloves', 13279), (223400, 223401, 1, 300, 'Support Unit Crepuscule Jacket', 13249), (223396, 223397, 1, 300, 'Support Unit Crepuscule Pants', 213574), (223407, 223408, 1, 300, 'Support Unit Crepuscule Skinchip', 160723), (223403, 223404, 1, 300, 'Support Unit Crepuscule Sleeve', 213487), (152411, 152412, 1, 200, 'Support Wire', 130727), (151714, 151715, 1, 200, 'Supporting Carbonan Holster', 290496), (292513, 292513, 1, 1, 'Suppressed Bacteriophage F9', 292801), (292512, 292512, 1, 1, 'Suppressed Bacteriophage M73', 292802), (292511, 292511, 1, 1, 'Suppressed Bacteriophage Phi X 3957', 292803), (157244, 157244, 40, 40, 'Suppression Spray', 156480), (155707, 155708, 1, 500, 'Suppressive Burst Item', 13326), (155749, 155749, 1, 1, 'Suppressive Khamak Cocktail', 100337), (227360, 227360, 1, 1, 'Suppressive Primer', 239175), (123198, 123199, 81, 100, 'Suppressor', 31807), (271911, 271912, 1, 300, 'Suppressor - 000', 31807), (271915, 271916, 1, 300, 'Suppressor - 404', 31807), (271917, 271918, 1, 300, 'Suppressor - C04', 31807), (141923, 141923, 1, 1, 'Suppressor Construction Manual', 37933), (199396, 199396, 290, 290, 'Supreme Bau Charger Armor Boots', 22878), (199417, 199417, 290, 290, 'Supreme Bau Charger Armor Gloves', 22939), (199438, 199438, 290, 290, 'Supreme Bau Charger Armor Helmet', 31738), (199459, 199459, 290, 290, 'Supreme Bau Charger Armor Pants', 22928), (199480, 199480, 290, 290, 'Supreme Bau Charger Armor Sleeves', 22889), (199501, 199501, 290, 290, 'Supreme Bau Charger Body Armor', 22981), (199522, 199522, 290, 290, 'Supreme Bau Charger Female Body Armor', 22942), (199688, 199688, 275, 275, 'Supreme Nadir Homage Armor Boots', 22876), (199709, 199709, 275, 275, 'Supreme Nadir Homage Armor Gloves', 22931), (199730, 199730, 275, 275, 'Supreme Nadir Homage Armor Helmet', 31733), (199751, 199751, 275, 275, 'Supreme Nadir Homage Armor Pants', 22914), (199772, 199772, 275, 275, 'Supreme Nadir Homage Armor Sleeves', 22960), (199793, 199793, 275, 275, 'Supreme Nadir Homage Body Armor', 22985), (305982, 305982, 220, 220, 'Supreme Office Worker Suit', 156355), (155701, 155701, 1, 1, 'Supressive Burst', 155700), (248183, 248183, 1, 1, 'Supressive Horde', 255610), (253182, 253183, 100, 300, 'Sureshot Glasses', 86483), (248355, 248355, 1, 1, 'Surge Baseball Bat', 13335), (152885, 152885, 1, 1, 'Surgeons Overcoat', 120629), (253048, 253048, 1, 1, 'Survival', 239165), (144071, 144072, 41, 100, 'Survival Axe', 40782), (249044, 249046, 41, 100, 'Survival Axe of Genevra', 40782), (305987, 305987, 200, 200, 'Survivalist Leather Armor Legwear', 245961), (235858, 235858, 150, 150, 'Surviving Brain Symbiant, Extermination Unit Aban', 215189), (236359, 236359, 150, 150, 'Surviving Chest Symbiant, Control Unit Aban', 215183), (235435, 235435, 150, 150, 'Surviving Ear Symbiant, Artillery Unit Aban', 230977), (236323, 236323, 150, 150, 'Surviving Ear Symbiant, Control Unit Aban', 230977), (236102, 236102, 150, 150, 'Surviving Ear Symbiant, Support Unit Aban', 230977), (235825, 235825, 150, 150, 'Surviving Feet Symbiant, Infantry Unit Aban', 215187), (235486, 235486, 150, 150, 'Surviving Left Arm Symbiant, Artillery Unit Aban', 215179), (236375, 236375, 150, 150, 'Surviving Left Arm Symbiant, Control Unit Aban', 215177), (236156, 236156, 150, 150, 'Surviving Left Arm Symbiant, Support Unit Aban', 215175), (235589, 235589, 150, 150, 'Surviving Left Hand Symbiant, Artillery Unit Aban', 215171), (236032, 236032, 150, 150, 'Surviving Left Hand Symbiant, Extermination Unit Aban', 215172), (235808, 235808, 150, 150, 'Surviving Left Hand Symbiant, Infantry Unit Aban', 215172), (236263, 236263, 150, 150, 'Surviving Left Hand Symbiant, Support Unit Aban', 215171), (235537, 235537, 150, 150, 'Surviving Left Wrist Symbiant, Artillery Unit Aban', 215196), (235757, 235757, 150, 150, 'Surviving Left Wrist Symbiant, Infantry Unit Aban', 215198), (236213, 236213, 150, 150, 'Surviving Left Wrist Symbiant, Support Unit Aban', 215198), (219134, 219134, 150, 150, 'Surviving Ocular Symbiant, Artillery Unit Aban', 230979), (235842, 235842, 150, 150, 'Surviving Ocular Symbiant, Extermination Unit Aban', 230979), (236067, 236067, 150, 150, 'Surviving Ocular Symbiant, Support Unit Aban', 230980), (235893, 235893, 150, 150, 'Surviving Right Arm Symbiant, Extermination Unit Aban', 215178), (235672, 235672, 150, 150, 'Surviving Right Arm Symbiant, Infantry Unit Aban', 215180), (236448, 236448, 150, 150, 'Surviving Right Hand Symbiant, Control Unit Aban', 215173), (235503, 235503, 150, 150, 'Surviving Right Wrist Symbiant, Artillery Unit Aban', 215170), (236393, 236393, 150, 150, 'Surviving Right Wrist Symbiant, Control Unit Aban', 215170), (235723, 235723, 150, 150, 'Surviving Right Wrist Symbiant, Infantry Unit Aban', 215197), (235570, 235570, 150, 150, 'Surviving Thigh Symbiant, Artillery Unit Aban', 215190), (235790, 235790, 150, 150, 'Surviving Thigh Symbiant, Infantry Unit Aban', 215191), (235519, 235519, 150, 150, 'Surviving Waist Symbiant, Artillery Unit Aban', 215194), (236413, 236413, 150, 150, 'Surviving Waist Symbiant, Control Unit Aban', 215193), (235961, 235961, 150, 150, 'Surviving Waist Symbiant, Extermination Unit Aban', 215193), (236196, 236196, 150, 150, 'Surviving Waist Symbiant, Support Unit Aban', 215193), (82212, 82212, 1, 1, 'Suspended Animation', 82199), (155665, 155665, 1, 1, 'Suspicious Looking Parts of Biotechnology', 156565), (155721, 155721, 1, 1, 'Suspicious looking polyhedral casing - emitting strange sounds', 156551), (214160, 214160, 300, 300, 'Susurrating Spike of Menace', 213075), (216449, 216449, 200, 200, 'Suzerain''s Military Chief Headwear', 205774), (216448, 216448, 200, 200, 'Suzerain''s Political Chief Headwear', 205775), (216450, 216450, 200, 200, 'Suzerain''s Spiritual Chief Headwear', 205776), (252291, 252291, 1, 1, 'Swamp Witch Cloud', 130862), (234967, 234967, 1, 1, 'Swarmer', 130862), (275677, 275677, 1, 1, 'Sweep Jammer', 275674), (207038, 207038, 1, 1, 'Sweet Leet Chocolates', 207017), (284658, 284658, 1, 1, 'Sweet Rice Pudding', 284857), (144058, 144059, 161, 180, 'Sweet Tear Eye Wind Onehander', 13341), (164008, 164009, 1, 48, 'Swift Meibutsu Daito of Heart and Fist', 113983), (164010, 164011, 49, 199, 'Swift Meibutsu Daito of Heart and Fist', 113983), (164012, 164012, 200, 200, 'Swift Meibutsu Daito of Heart and Fist', 113983), (154383, 154384, 1, 200, 'Swim Stim', 11707), (101587, 101588, 1, 200, 'Swimming Cluster - Bright (Right-Arm)', 35984), (101585, 101586, 1, 200, 'Swimming Cluster - Faded (Left-Arm)', 35983), (101589, 101590, 1, 200, 'Swimming Cluster - Shiny (Leg)', 35985), (165765, 165766, 201, 300, 'Swimming Refined Cluster - Bright (Right-Arm)', 35984), (165763, 165764, 201, 300, 'Swimming Refined Cluster - Faded (Left-Arm)', 35983), (165767, 165768, 201, 300, 'Swimming Refined Cluster - Shiny (Leg)', 35985), (87489, 87489, 1, 1, 'Swimsuit with Holes', 96129), (303232, 303232, 1, 1, 'Swollen Mass of Mutant Flesh', 259804), (252559, 252559, 1, 1, 'Sword', 239239), (233271, 233272, 1, 19, 'Sword of Achilles', 218703), (233273, 233274, 20, 29, 'Sword of Achilles', 218703), (233275, 233276, 30, 39, 'Sword of Achilles', 218703), (233277, 233278, 40, 99, 'Sword of Achilles', 218703), (233279, 233280, 100, 199, 'Sword of Achilles', 218703), (233281, 233282, 200, 249, 'Sword of Achilles', 218703), (233283, 233284, 250, 299, 'Sword of Achilles', 218703), (246097, 246098, 240, 244, 'Sword of Curiosity', 113999), (246099, 246100, 245, 249, 'Sword of Curiosity', 113999), (246101, 246102, 250, 254, 'Sword of Curiosity', 113999), (246103, 246104, 255, 259, 'Sword of Curiosity', 113999), (246244, 246244, 200, 200, 'Sword of Dawn', 246241), (246256, 246256, 200, 200, 'Sword of Dusk', 246240), (233301, 233302, 1, 19, 'Sword of Hercules', 218704), (233303, 233304, 20, 29, 'Sword of Hercules', 218704), (233305, 233306, 30, 39, 'Sword of Hercules', 218704), (233307, 233308, 40, 99, 'Sword of Hercules', 218704), (233309, 233310, 100, 199, 'Sword of Hercules', 218704), (233311, 233312, 200, 249, 'Sword of Hercules', 218704), (233313, 233314, 250, 299, 'Sword of Hercules', 218704), (233420, 233421, 75, 84, 'Sword of Light', 113987), (233422, 233423, 85, 94, 'Sword of Light', 113987), (233424, 233425, 95, 99, 'Sword of Light', 113987), (225513, 225513, 200, 200, 'Sword of Lord Mordeth', 40781), (233286, 233287, 1, 19, 'Sword of Perseus', 218705), (233288, 233289, 20, 29, 'Sword of Perseus', 218705), (233290, 233291, 30, 39, 'Sword of Perseus', 218705), (233292, 233293, 40, 99, 'Sword of Perseus', 218705), (233294, 233295, 100, 199, 'Sword of Perseus', 218705), (233296, 233297, 200, 249, 'Sword of Perseus', 218705), (233298, 233299, 250, 299, 'Sword of Perseus', 218705), (233426, 233426, 100, 100, 'Sword of Pure Light', 113987), (225509, 225509, 200, 200, 'Sword of Sir Galahad', 40781), (271259, 271260, 1, 300, 'Sword of Sir Galahad - 000', 40781), (271261, 271262, 1, 300, 'Sword of Sir Galahad - 010', 40781), (271263, 271264, 1, 300, 'Sword of Sir Galahad - 050', 40781), (271265, 271266, 1, 300, 'Sword of Sir Galahad - 070', 40781), (271267, 271268, 1, 300, 'Sword of Sir Galahad - 870', 40781), (231125, 231126, 20, 29, 'Sword of Sir Tristram', 40781), (231127, 231128, 30, 44, 'Sword of Sir Tristram', 40781), (231129, 231130, 45, 99, 'Sword of Sir Tristram', 40781), (231131, 231132, 100, 149, 'Sword of Sir Tristram', 40781), (231133, 231134, 150, 199, 'Sword of Sir Tristram', 40781), (231135, 231136, 200, 249, 'Sword of Sir Tristram', 40781), (231137, 231138, 250, 299, 'Sword of Sir Tristram', 40781), (246105, 246105, 260, 260, 'Sword of Wonder', 113999), (245578, 245579, 140, 159, 'Sword of the Illuminated', 113987), (257114, 257114, 200, 200, 'Sworn Knight Commander Genevra''s Helmet', 257712), (225515, 225515, 200, 200, 'Sworn Knight''s Armor Cloak', 32157), (225517, 225517, 200, 200, 'Sworn Knight''s Gauntlets', 32156), (225514, 225514, 200, 200, 'Sworn Knight''s Helmet', 32163), (225519, 225519, 200, 200, 'Sworn Knight''s Pauldron', 32159), (225518, 225518, 200, 200, 'Sworn Knight''s Sabatons', 32160), (225516, 225516, 200, 200, 'Sworn Knight''s Vambrace', 32161), (88392, 127241, 12, 200, 'Symbio-Graft: 1H Blunt Weapon Expertise', 11647), (88404, 127245, 13, 200, 'Symbio-Graft: 1H Blunt Weapon Incompetence', 11647), (88416, 127249, 6, 200, 'Symbio-Graft: 1H Blunt Weapon Inexperience', 11652), (88427, 127253, 5, 200, 'Symbio-Graft: 1H Blunt Weapon Proficiency', 11652), (88442, 127681, 12, 200, 'Symbio-Graft: 1H Edged Weapon Expertise', 11647), (88461, 127685, 13, 200, 'Symbio-Graft: 1H Edged Weapon Incompetence', 11647), (88480, 127689, 6, 200, 'Symbio-Graft: 1H Edged Weapon Inexperience', 11652), (88498, 127693, 5, 200, 'Symbio-Graft: 1H Edged Weapon Proficiency', 11652), (88517, 127697, 12, 200, 'Symbio-Graft: 2H Blunt Weapon Expertise', 11647), (88536, 127701, 13, 200, 'Symbio-Graft: 2H Blunt Weapon Incompetence', 11647), (88554, 127705, 6, 200, 'Symbio-Graft: 2H Blunt Weapon Inexperience', 11652), (88573, 127709, 5, 200, 'Symbio-Graft: 2H Blunt Weapon Proficiency', 11652), (88590, 127713, 12, 200, 'Symbio-Graft: 2H Edged Weapon Expertise', 11647), (88607, 127717, 13, 200, 'Symbio-Graft: 2H Edged Weapon Incompetence', 11647), (88627, 127721, 6, 200, 'Symbio-Graft: 2H Edged Weapon Inexperience', 11652), (88644, 127725, 5, 200, 'Symbio-Graft: 2H Edged Weapon Proficiency', 11652), (88661, 127277, 12, 200, 'Symbio-Graft: Adrenaline Pump', 11647), (93678, 128271, 98, 200, 'Symbio-Graft: Advanced Shielding Barrier', 11653), (89437, 127421, 12, 200, 'Symbio-Graft: Adventuring Expertise', 11647), (88678, 127257, 6, 200, 'Symbio-Graft: Agility Boost', 11652), (88695, 127261, 13, 200, 'Symbio-Graft: Aimed Shot Expertise', 11647), (88711, 127265, 14, 200, 'Symbio-Graft: Aimed Shot Incompetence', 11647), (88728, 127269, 7, 200, 'Symbio-Graft: Aimed Shot Inexperience', 11652), (88747, 127273, 6, 200, 'Symbio-Graft: Aimed Shot Proficiency', 11652), (93679, 128097, 2, 200, 'Symbio-Graft: Armor Megaboost', 11652), (88795, 127357, 12, 200, 'Symbio-Graft: Assault Rifle Expertise', 11647), (88814, 127285, 13, 200, 'Symbio-Graft: Assault Rifle Incompetence', 11647), (88831, 127289, 6, 200, 'Symbio-Graft: Assault Rifle Inexperience', 11652), (88849, 127293, 5, 200, 'Symbio-Graft: Assault Rifle Proficiency', 11652), (88865, 127297, 3, 200, 'Symbio-Graft: Augment Agility', 11652), (88882, 127301, 3, 200, 'Symbio-Graft: Augment Intelligence', 11652), (88899, 127305, 3, 200, 'Symbio-Graft: Augment Psychic', 11652), (88917, 127309, 3, 200, 'Symbio-Graft: Augment Sense', 11652), (88933, 127313, 3, 200, 'Symbio-Graft: Augment Stamina', 11652), (88951, 127317, 3, 200, 'Symbio-Graft: Augment Strength', 11652), (93672, 128133, 4, 200, 'Symbio-Graft: Avenging Shield', 11652), (94567, 128117, 8, 200, 'Symbio-Graft: Balanced Striker', 11647), (93681, 128205, 35, 200, 'Symbio-Graft: Basic Defensive Screen', 11648), (93683, 128209, 30, 200, 'Symbio-Graft: Basic Protective Field', 11648), (93685, 128213, 24, 200, 'Symbio-Graft: Basic Shielding Barrier', 11648), (88967, 127321, 12, 200, 'Symbio-Graft: BioMet Expertise', 11647), (88984, 127325, 13, 200, 'Symbio-Graft: BioMet Incompetence', 11647), (89001, 127329, 6, 200, 'Symbio-Graft: BioMet Inexperience', 11652), (89015, 127333, 5, 200, 'Symbio-Graft: BioMet Proficiency', 11652), (93663, 128077, 23, 200, 'Symbio-Graft: Blood Circle', 11648), (89034, 127337, 5, 200, 'Symbio-Graft: Bot Mass Migration', 11652), (89051, 127341, 3, 200, 'Symbio-Graft: Bot Migration', 11652), (89070, 127345, 12, 200, 'Symbio-Graft: Bow Expertise', 11647), (89086, 127349, 13, 200, 'Symbio-Graft: Bow Incompetence', 11647), (89104, 127353, 6, 200, 'Symbio-Graft: Bow Inexperience', 11652), (89120, 127281, 5, 200, 'Symbio-Graft: Bow Proficiency', 11652), (89135, 127425, 13, 200, 'Symbio-Graft: Bow Special Attack Expertise', 11647), (89153, 127361, 14, 200, 'Symbio-Graft: Bow Special Attack Incompetence', 11647), (89171, 127365, 7, 200, 'Symbio-Graft: Bow Special Attack Inexperience', 11652), (89188, 127369, 6, 200, 'Symbio-Graft: Bow Special Attack Proficiency', 11652), (89205, 127373, 13, 200, 'Symbio-Graft: Brawl Expertise', 11647), (89221, 127377, 14, 200, 'Symbio-Graft: Brawl Incompetence', 11647), (89238, 127381, 7, 200, 'Symbio-Graft: Brawl Inexperience', 11652), (89253, 127385, 6, 200, 'Symbio-Graft: Brawl Proficiency', 11652), (89269, 127389, 12, 200, 'Symbio-Graft: Breaking and Entering Expertise', 11647), (89287, 127393, 5, 200, 'Symbio-Graft: Breaking and Entering Proficiency', 11652), (89304, 127397, 13, 200, 'Symbio-Graft: Burst Expertise', 11647), (89321, 127401, 14, 200, 'Symbio-Graft: Burst Incompetence', 11647), (89338, 127405, 7, 200, 'Symbio-Graft: Burst Inexperience', 11652), (89353, 127409, 6, 200, 'Symbio-Graft: Burst Proficiency', 11652), (89404, 127413, 12, 200, 'Symbio-Graft: Chemistry Expertise', 11647), (89420, 127417, 5, 200, 'Symbio-Graft: Chemistry Proficiency', 11652), (95257, 128149, 42, 200, 'Symbio-Graft: Cloak of Fire', 11649), (93665, 128129, 36, 200, 'Symbio-Graft: Company Policy', 11648), (89500, 127525, 12, 200, 'Symbio-Graft: Computer Literacy Expertise', 11647), (89517, 127433, 5, 200, 'Symbio-Graft: Computer Literacy Proficiency', 11652), (89533, 127437, 12, 200, 'Symbio-Graft: Concealment Expertise', 11647), (89550, 127441, 5, 200, 'Symbio-Graft: Concealment Proficiency', 11652), (94555, 128085, 46, 200, 'Symbio-Graft: Damage Amplifier', 11649), (94556, 128089, 7, 200, 'Symbio-Graft: Damage Multiplier', 11652), (93655, 128169, 3, 200, 'Symbio-Graft: Detain Suspect', 11652), (93721, 127445, 14, 200, 'Symbio-Graft: Dimach Incompetence', 11647), (93722, 127449, 7, 200, 'Symbio-Graft: Dimach Inexperience', 11652), (93723, 127453, 5, 200, 'Symbio-Graft: Diminish Agility', 11652), (93724, 127457, 5, 200, 'Symbio-Graft: Diminish Intelligence', 11652), (93725, 127461, 5, 200, 'Symbio-Graft: Diminish Psychic', 11652), (93726, 127465, 5, 200, 'Symbio-Graft: Diminish Sense', 11652), (93727, 127469, 5, 200, 'Symbio-Graft: Diminish Stamina', 11652), (93728, 127473, 5, 200, 'Symbio-Graft: Diminish Strength', 11652), (93729, 127477, 12, 200, 'Symbio-Graft: Disarm Traps Expertise', 11647), (93730, 127481, 5, 200, 'Symbio-Graft: Disarm Traps Proficiency', 11652), (93731, 127485, 9, 200, 'Symbio-Graft: Drain Agility', 11647), (93732, 127489, 9, 200, 'Symbio-Graft: Drain Intelligence', 11647), (93733, 127493, 9, 200, 'Symbio-Graft: Drain Psychic', 11647), (93734, 127497, 9, 200, 'Symbio-Graft: Drain Sense', 11647), (93735, 127501, 9, 200, 'Symbio-Graft: Drain Stamina', 11647), (93736, 127505, 9, 200, 'Symbio-Graft: Drain Strength', 11647), (93687, 128145, 20, 200, 'Symbio-Graft: Electrical Chastiser', 11647), (93737, 127509, 12, 200, 'Symbio-Graft: Electrical Engineering Expertise', 11647), (93738, 128073, 5, 200, 'Symbio-Graft: Electrical Engineering Proficiency', 11652), (93739, 127513, 12, 200, 'Symbio-Graft: Energy Melee Expertise', 11647), (93740, 127517, 5, 200, 'Symbio-Graft: Energy Melee Incompetence', 11652), (93741, 127521, 12, 200, 'Symbio-Graft: Energy Melee Inexperience', 11647), (93742, 127429, 5, 200, 'Symbio-Graft: Energy Melee Proficiency', 11652), (93688, 128101, 33, 200, 'Symbio-Graft: Energy Spike', 11648), (125877, 125878, 29, 200, 'Symbio-Graft: Enhanced Senses', 11648), (93750, 127549, 13, 200, 'Symbio-Graft: Fast Attack Expertise', 11647), (93751, 127553, 14, 200, 'Symbio-Graft: Fast Attack Incompetence', 11647), (93753, 127557, 7, 200, 'Symbio-Graft: Fast Attack Inexperience', 11652), (93755, 127561, 6, 200, 'Symbio-Graft: Fast Attack Proficiency', 11652), (94554, 128161, 12, 200, 'Symbio-Graft: Feet of Stone', 11647), (93756, 127565, 12, 200, 'Symbio-Graft: Field Quantum Physics Expertise', 11647), (93758, 127569, 5, 200, 'Symbio-Graft: Field Quantum Physics Proficiency', 11652), (93674, 128137, 24, 200, 'Symbio-Graft: Field of Sparks', 11648), (93765, 127573, 12, 200, 'Symbio-Graft: First Aid Expertise', 11647), (93767, 127577, 5, 200, 'Symbio-Graft: First Aid Proficiency', 11652), (93690, 128217, 18, 200, 'Symbio-Graft: Flawed Defensive Screen', 11647), (93692, 128229, 12, 200, 'Symbio-Graft: Flawed Protective Field', 11647), (93694, 128256, 8, 200, 'Symbio-Graft: Flawed Shielding Barrier', 11647), (93770, 127581, 13, 200, 'Symbio-Graft: Fling Shot Expertise', 11647), (93772, 127585, 14, 200, 'Symbio-Graft: Fling Shot Incompetence', 11647), (93775, 127589, 7, 200, 'Symbio-Graft: Fling Shot Inexperience', 11652), (93778, 127593, 6, 200, 'Symbio-Graft: Fling Shot Proficiency', 11652), (93633, 128157, 10, 200, 'Symbio-Graft: Frost With Snow', 11647), (93780, 127597, 13, 200, 'Symbio-Graft: Full Auto Expertise', 11647), (93782, 127601, 14, 200, 'Symbio-Graft: Full Auto Incompetence', 11647), (93784, 127605, 7, 200, 'Symbio-Graft: Full Auto Inexperience', 11652), (93786, 127609, 6, 200, 'Symbio-Graft: Full Auto Proficiency', 11652), (93676, 128093, 34, 200, 'Symbio-Graft: Glowing Retribution', 11648), (93696, 128275, 5, 200, 'Symbio-Graft: Greater Armor Megaboost', 11652), (93797, 127733, 12, 200, 'Symbio-Graft: Grenade Expertise', 11647), (93799, 127677, 13, 200, 'Symbio-Graft: Grenade Incompetence', 11647), (93801, 127673, 6, 200, 'Symbio-Graft: Grenade Inexperience', 11652), (93804, 127737, 5, 200, 'Symbio-Graft: Grenade Proficiency', 11652), (93698, 128105, 10, 200, 'Symbio-Graft: Gun Enhancement', 11647), (93711, 128323, 47, 200, 'Symbio-Graft: Hasty Augmentation Cloud', 11649), (93810, 127645, 5, 200, 'Symbio-Graft: Healing', 11652), (94553, 128335, 49, 200, 'Symbio-Graft: Healing Touch', 11649), (93788, 127613, 12, 200, 'Symbio-Graft: Heavy Weapons Expertise', 11647), (93791, 127617, 13, 200, 'Symbio-Graft: Heavy Weapons Incompetence', 11647), (93794, 127621, 6, 200, 'Symbio-Graft: Heavy Weapons Inexperience', 11652), (93795, 127625, 5, 200, 'Symbio-Graft: Heavy Weapons Proficiency', 11652), (94568, 128331, 30, 200, 'Symbio-Graft: Hired Hands', 11648), (93811, 127741, 7, 200, 'Symbio-Graft: Improve Health', 11652), (93666, 128081, 1, 200, 'Symbio-Graft: Improved Healing', 11652), (93813, 127745, 6, 200, 'Symbio-Graft: Intelligence Boost', 11652), (93634, 128153, 18, 200, 'Symbio-Graft: Jacket of Blades', 11647), (93745, 127533, 12, 200, 'Symbio-Graft: LR Energy Weapon Expertise', 11647), (93746, 127537, 13, 200, 'Symbio-Graft: LR Energy Weapon Incompetence', 11647), (93747, 127541, 6, 200, 'Symbio-Graft: LR Energy Weapon Inexp', 11652), (93748, 127545, 5, 200, 'Symbio-Graft: LR Energy Weapon Proficiency', 11652), (93669, 128121, 13, 200, 'Symbio-Graft: Lasting Heal', 11647), (93825, 127657, 6, 200, 'Symbio-Graft: Leaden Feet', 11652), (94557, 128299, 40, 200, 'Symbio-Graft: Lesser Absorption Shield', 11649), (93657, 128319, 9, 200, 'Symbio-Graft: Lesser Anatomy Lesson', 11647), (94558, 128303, 24, 200, 'Symbio-Graft: Lesser Combat Barrier', 11648), (93699, 128279, 54, 200, 'Symbio-Graft: Lesser Defensive Screen', 11650), (94559, 128193, 28, 200, 'Symbio-Graft: Lesser Deflection Shield', 11648), (94560, 128197, 37, 200, 'Symbio-Graft: Lesser Deflection Shield (Extended)', 11648), (93713, 128327, 11, 200, 'Symbio-Graft: Lesser Nano Boost', 11647), (93659, 128165, 35, 200, 'Symbio-Graft: Lesser Paralyze with Indecision', 11648), (93642, 128351, 48, 200, 'Symbio-Graft: Lesser Playful Cub', 11649), (93700, 128283, 48, 200, 'Symbio-Graft: Lesser Protective Field', 11649), (93702, 128141, 36, 200, 'Symbio-Graft: Lesser Retaliatory Barrier', 11648), (93704, 128201, 42, 200, 'Symbio-Graft: Lesser Shielding Barrier', 11649), (93648, 128343, 3, 200, 'Symbio-Graft: Lesser Sparrow Flight', 11652), (93637, 128291, 22, 200, 'Symbio-Graft: Lesser Wilderness Protection', 11647), (93827, 127661, 6, 200, 'Symbio-Graft: Lethargy', 11652), (93839, 127773, 12, 200, 'Symbio-Graft: Martial Arts Expertise', 11647), (93841, 127777, 13, 200, 'Symbio-Graft: Martial Arts Incompetence', 11647), (93843, 127781, 6, 200, 'Symbio-Graft: Martial Arts Inexperience', 11652), (93845, 127785, 5, 200, 'Symbio-Graft: Martial Arts Proficiency', 11652), (93848, 127789, 12, 200, 'Symbio-Graft: MatCrea Expertise', 11647), (93850, 127793, 13, 200, 'Symbio-Graft: MatCrea Incompetence', 11647), (93851, 127797, 6, 200, 'Symbio-Graft: MatCrea Inexperience', 11652), (93853, 127801, 5, 200, 'Symbio-Graft: MatCrea Proficiency', 11652), (93866, 127821, 12, 200, 'Symbio-Graft: MatMet Expertise', 11647), (93868, 127825, 13, 200, 'Symbio-Graft: MatMet Incompetence', 11647), (93870, 127829, 6, 200, 'Symbio-Graft: MatMet Inexperience', 11652), (93872, 127833, 5, 200, 'Symbio-Graft: MatMet Proficiency', 11652), (93874, 127837, 12, 200, 'Symbio-Graft: Mechanical Engineering Expertise', 11647), (93876, 127841, 5, 200, 'Symbio-Graft: Mechanical Engineering Proficiency', 11652), (94561, 128307, 14, 200, 'Symbio-Graft: Minor Absorption Shield', 11647), (94562, 128311, 6, 200, 'Symbio-Graft: Minor Combat Barrier', 11652), (94563, 128189, 16, 200, 'Symbio-Graft: Minor Deflection Shield', 11647), (94564, 128185, 21, 200, 'Symbio-Graft: Minor Deflection Shield (Extended)', 11647), (93883, 127641, 2, 200, 'Symbio-Graft: Minor Healing', 11652), (93640, 128295, 4, 200, 'Symbio-Graft: Minor Wilderness Protection', 11652), (93661, 128315, 23, 200, 'Symbio-Graft: Nano Augmentation', 11648), (93886, 127845, 12, 200, 'Symbio-Graft: Nano Programming Expertise', 11647), (93889, 127849, 5, 200, 'Symbio-Graft: Nano Programming Proficiency', 11652), (93893, 127853, 9, 200, 'Symbio-Graft: Nano Restoration', 11647), (93897, 127857, 13, 200, 'Symbio-Graft: Parry Expertise', 11647), (93899, 127861, 14, 200, 'Symbio-Graft: Parry Incompetence', 11647), (93901, 127865, 7, 200, 'Symbio-Graft: Parry Inexperience', 11652), (93903, 127869, 6, 200, 'Symbio-Graft: Parry Proficiency', 11652), (94565, 128181, 3, 200, 'Symbio-Graft: Partial Deflection Shield', 11652), (94566, 128177, 9, 200, 'Symbio-Graft: Partial Deflection Shield (Extended)', 11647), (93706, 128173, 27, 200, 'Symbio-Graft: Partial Harmonic Cocoon', 11648), (93670, 128125, 26, 200, 'Symbio-Graft: Periodic Checkup', 11648), (93906, 127873, 12, 200, 'Symbio-Graft: Pharmaceutical Expertise', 11647), (93908, 127877, 5, 200, 'Symbio-Graft: Pharmaceutical Proficiency', 11652), (93910, 127629, 12, 200, 'Symbio-Graft: Piercing Expert', 11647), (93911, 127633, 13, 200, 'Symbio-Graft: Piercing Incompetence', 11647), (93913, 127637, 6, 200, 'Symbio-Graft: Piercing Inexperience', 11652), (93916, 127529, 5, 200, 'Symbio-Graft: Piercing Proficiency', 11652), (93918, 127881, 12, 200, 'Symbio-Graft: Pistol Expertise', 11647), (93919, 127885, 13, 200, 'Symbio-Graft: Pistol Incompetence', 11647), (93921, 127889, 6, 200, 'Symbio-Graft: Pistol Inexperience', 11652), (93923, 127729, 5, 200, 'Symbio-Graft: Pistol Proficiency', 11652), (93938, 127905, 12, 200, 'Symbio-Graft: PsyMod Expertise', 11647), (93940, 127909, 13, 200, 'Symbio-Graft: PsyMod Incompetence', 11647), (93942, 127913, 6, 200, 'Symbio-Graft: PsyMod Inexperience', 11652), (93944, 127917, 5, 200, 'Symbio-Graft: PsyMod Proficiency', 11652), (93933, 127893, 6, 200, 'Symbio-Graft: Psychic Boost', 11652), (93935, 127897, 12, 200, 'Symbio-Graft: Psychology Expertise', 11647), (93936, 127901, 5, 200, 'Symbio-Graft: Psychology Proficiency', 11652), (93644, 127649, 1, 200, 'Symbio-Graft: Quick Heal', 11652), (93946, 127921, 20, 200, 'Symbio-Graft: Quickness', 11647), (93948, 127925, 3, 200, 'Symbio-Graft: Radiation Shield', 11652), (93950, 127929, 8, 200, 'Symbio-Graft: Radiation Ward', 11647), (93952, 127933, 12, 200, 'Symbio-Graft: Regeneration', 11647), (93953, 127937, 12, 200, 'Symbio-Graft: Rifle Expertise', 11647), (93955, 127941, 13, 200, 'Symbio-Graft: Rifle Incompetence', 11647), (93957, 127945, 6, 200, 'Symbio-Graft: Rifle Inexperience', 11652), (93959, 127949, 5, 200, 'Symbio-Graft: Rifle Proficiency', 11652), (93961, 127953, 13, 200, 'Symbio-Graft: Riposte Expertise', 11647), (93963, 127957, 14, 200, 'Symbio-Graft: Riposte Incompetence', 11647), (93965, 127961, 7, 200, 'Symbio-Graft: Riposte Inexperience', 11652), (93967, 127965, 6, 200, 'Symbio-Graft: Riposte Proficiency', 11652), (93646, 128339, 8, 200, 'Symbio-Graft: Rough Stitching', 11647), (93969, 127969, 6, 200, 'Symbio-Graft: Sense Boost', 11652), (93971, 127973, 12, 200, 'Symbio-Graft: Sense Imp Expertise', 11647), (93973, 127977, 13, 200, 'Symbio-Graft: Sense Imp Incomp', 11647), (93974, 127981, 6, 200, 'Symbio-Graft: Sense Imp Inexperience', 11652), (93975, 127985, 5, 200, 'Symbio-Graft: Sense Imp Proficiency', 11652), (93977, 127989, 12, 200, 'Symbio-Graft: Shotgun Expertise', 11647), (93979, 127993, 13, 200, 'Symbio-Graft: Shotgun Incompetence', 11647), (93981, 127997, 6, 200, 'Symbio-Graft: Shotgun Inexperience', 11652), (93983, 128001, 5, 200, 'Symbio-Graft: Shotgun Proficiency', 11652), (93985, 128005, 13, 200, 'Symbio-Graft: Sneak Attack Expertise', 11647), (93987, 128009, 14, 200, 'Symbio-Graft: Sneak Attack Incompetence', 11647), (93988, 128013, 7, 200, 'Symbio-Graft: Sneak Attack Inexperience', 11652), (93990, 128017, 6, 200, 'Symbio-Graft: Sneak Attack Proficiency', 11652), (93856, 127805, 12, 200, 'Symbio-Graft: SpaceTime Expertise', 11647), (93858, 127809, 13, 200, 'Symbio-Graft: SpaceTime Incompetence', 11647), (93861, 127813, 6, 200, 'Symbio-Graft: SpaceTime Inexperience', 11652), (93864, 127817, 5, 200, 'Symbio-Graft: SpaceTime Proficiency', 11652), (93707, 128109, 51, 200, 'Symbio-Graft: Spike Armor', 11649), (93709, 128113, 6, 200, 'Symbio-Graft: Spike Shield', 11652), (93992, 128021, 6, 200, 'Symbio-Graft: Stamina Boost', 11652), (93994, 128025, 6, 200, 'Symbio-Graft: Strength Boost', 11652), (93829, 127757, 12, 200, 'Symbio-Graft: Submachine Gun Expertise', 11647), (93832, 127761, 13, 200, 'Symbio-Graft: Submachine Gun Incompetence', 11647), (93834, 127765, 6, 200, 'Symbio-Graft: Submachine Gun Inexperience', 11652), (93837, 127769, 5, 200, 'Symbio-Graft: Submachine Gun Proficiency', 11652), (94000, 128029, 5, 200, 'Symbio-Graft: Swiftness', 11652), (93651, 127653, 5, 200, 'Symbio-Graft: Team Quick Heal', 11652), (93816, 127749, 12, 200, 'Symbio-Graft: Throwing Knife Expertise', 11647), (93818, 127669, 13, 200, 'Symbio-Graft: Throwing Knife Incompetence', 11647), (93820, 127665, 6, 200, 'Symbio-Graft: Throwing Knife Inexperience', 11652), (93822, 127753, 5, 200, 'Symbio-Graft: Throwing Knife Proficiency', 11652), (94006, 128041, 12, 200, 'Symbio-Graft: Treatment Expertise', 11647), (94008, 128045, 5, 200, 'Symbio-Graft: Treatment Proficiency', 11652), (94010, 128049, 12, 200, 'Symbio-Graft: Tutoring Expertise', 11647), (94012, 128053, 5, 200, 'Symbio-Graft: Tutoring Proficiency', 11652), (94029, 128057, 8, 200, 'Symbio-Graft: Weapon Augmentation', 11647), (94030, 128061, 17, 200, 'Symbio-Graft: Weapon Enhancement', 11647), (94031, 128065, 12, 200, 'Symbio-Graft: Weapon Smithing Expertise', 11647), (94032, 128069, 5, 200, 'Symbio-Graft: Weapon Smithing Proficiency', 11652), (93653, 128287, 46, 200, 'Symbio-Graft: Wilderness Protection', 11649), (225286, 225286, 1, 1, 'Symbiosis', 239053), (304621, 304621, 190, 190, 'Symbiotic Gloves of Erudition', 99790), (164620, 164620, 200, 200, 'Symbiotic NCU', 100323), (305990, 305990, 200, 200, 'Symbiotic Nanite Gloves', 21871), (144797, 149858, 1, 24, 'Symbol Library - Combat', 72778), (149858, 149857, 25, 49, 'Symbol Library - Combat', 72778), (149857, 149856, 50, 74, 'Symbol Library - Combat', 72778), (149856, 149855, 75, 99, 'Symbol Library - Combat', 72778), (149855, 149854, 100, 124, 'Symbol Library - Combat', 72778), (149854, 144798, 125, 255, 'Symbol Library - Combat', 72778), (144796, 149853, 1, 24, 'Symbol Library - Medical', 72779), (149853, 149852, 25, 49, 'Symbol Library - Medical', 72779), (149852, 149851, 50, 74, 'Symbol Library - Medical', 72779), (149851, 149850, 75, 99, 'Symbol Library - Medical', 72779), (149850, 149849, 100, 124, 'Symbol Library - Medical', 72779), (149849, 144795, 125, 255, 'Symbol Library - Medical', 72779), (144792, 149843, 1, 24, 'Symbol Library - PSI', 72781), (149843, 149842, 25, 49, 'Symbol Library - PSI', 72781), (149842, 149841, 50, 74, 'Symbol Library - PSI', 72781), (149841, 149840, 75, 99, 'Symbol Library - PSI', 72781), (149840, 149839, 100, 124, 'Symbol Library - PSI', 72781), (149839, 144791, 125, 255, 'Symbol Library - PSI', 72781), (144794, 149848, 1, 24, 'Symbol Library - Protection', 72780), (149848, 149847, 25, 49, 'Symbol Library - Protection', 72780), (149847, 149846, 50, 74, 'Symbol Library - Protection', 72780), (149846, 149845, 75, 99, 'Symbol Library - Protection', 72780), (149845, 149844, 100, 124, 'Symbol Library - Protection', 72780), (149844, 144793, 125, 255, 'Symbol Library - Protection', 72780), (144789, 149838, 1, 24, 'Symbol Library - Space', 72782), (149838, 149837, 25, 49, 'Symbol Library - Space', 72782), (149837, 149836, 50, 74, 'Symbol Library - Space', 72782), (149836, 149835, 75, 99, 'Symbol Library - Space', 72782), (149835, 149834, 100, 124, 'Symbol Library - Space', 72782), (149834, 144790, 125, 255, 'Symbol Library - Space', 72782), (292538, 292538, 1, 1, 'Synchotronic Recombinator - Pocket Edition (Empty)', 292772), (292543, 292543, 1, 1, 'Synchotronic Recombinator - Pocket Edition (Filled)', 292773), (292542, 292542, 1, 1, 'Synchotronic Recombinator - Pocket Edition (Four of Five)', 292771), (292539, 292539, 1, 1, 'Synchotronic Recombinator - Pocket Edition (One of Five)', 292768), (292541, 292541, 1, 1, 'Synchotronic Recombinator - Pocket Edition (Three of Five)', 292770), (292540, 292540, 1, 1, 'Synchotronic Recombinator - Pocket Edition (Two of Five)', 292769), (268357, 268357, 180, 180, 'Syndicate Brain Spirit of Guile', 230992), (268287, 268287, 180, 180, 'Syndicate Brain Symbiant of the Balanced', 215189), (268279, 268279, 180, 180, 'Syndicate Brain Symbiant of the Constructor', 215189), (268275, 268275, 180, 180, 'Syndicate Brain Symbiant of the Devious', 215189), (268288, 268288, 180, 180, 'Syndicate Brain Symbiant of the Enlightened', 215189), (268274, 268274, 180, 180, 'Syndicate Brain Symbiant of the Explorer', 215189), (268300, 268300, 180, 180, 'Syndicate Brain Symbiant of the Grunt', 215189), (268286, 268286, 180, 180, 'Syndicate Brain Symbiant of the Healer', 215189), (268276, 268276, 180, 180, 'Syndicate Brain Symbiant of the Leader', 215189), (268278, 268278, 180, 180, 'Syndicate Brain Symbiant of the Messenger', 215189), (268304, 268304, 180, 180, 'Syndicate Brain Symbiant of the Notum Lord', 215189), (268291, 268291, 180, 180, 'Syndicate Brain Symbiant of the Protector', 215189), (268303, 268303, 180, 180, 'Syndicate Brain Symbiant of the Salesman', 215189), (268277, 268277, 180, 180, 'Syndicate Brain Symbiant of the Thug', 215189), (245797, 245798, 240, 259, 'Syndicate Messenger Gun', 210189), (245593, 245593, 150, 150, 'Syndicate Shades', 86483), (258756, 258756, 1, 1, 'Systems Monthly', 37931), (306153, 306153, 1, 1, 'T.O.T.E.M. Drone', 306158), (258740, 258740, 1, 1, 'T.P.S.', 20406), (253357, 253357, 1, 1, 'TEST Grid House', 202150), (156548, 156548, 1, 1, 'TK III Decoder', 156550), (295351, 295351, 1, 1, 'TL Logo Nanospray - Black', 295376), (295365, 295365, 1, 1, 'TL Logo Nanospray - Blue', 295377), (295367, 295367, 1, 1, 'TL Logo Nanospray - Green', 295374), (295364, 295364, 1, 1, 'TL Logo Nanospray - Red', 295373), (295363, 295363, 1, 1, 'TL Logo Nanospray - White', 295375), (295366, 295366, 1, 1, 'TL Logo Nanospray - Yellow', 295372), (253030, 253030, 1, 1, 'Tacky Hack', 239253), (263902, 263902, 1, 1, 'Tagged Girder DNA sample', 156494), (263912, 263912, 1, 1, 'Tagged Shadow DNA sample', 156494), (263911, 263911, 1, 1, 'Tagged Spider DNA sample', 156494), (214366, 214366, 1, 1, 'Taint Wounds', 239137), (221223, 221223, 93, 93, 'Tainted Shadow Crystal (Advanced Symbol Manipulation)', 220432), (221712, 221712, 4, 4, 'Tainted Shadow Crystal (Anger Manifestation)', 220424), (222339, 222339, 110, 110, 'Tainted Shadow Crystal (Anima of Fathomless Rage)', 220436), (222340, 222340, 156, 156, 'Tainted Shadow Crystal (Anima of Implacable Hatred)', 220436), (222341, 222341, 189, 189, 'Tainted Shadow Crystal (Anima of Maddening Wrath)', 220436), (222342, 222342, 212, 212, 'Tainted Shadow Crystal (Anima of Pure Malevolence)', 220436), (222343, 222343, 67, 67, 'Tainted Shadow Crystal (Anima of Relentless Fury)', 220429), (222344, 222344, 239, 239, 'Tainted Shadow Crystal (Anima of The Abomination)', 220436), (222345, 222345, 37, 37, 'Tainted Shadow Crystal (Anima of Unleashed Malice)', 220422), (222346, 222346, 14, 14, 'Tainted Shadow Crystal (Anima of Unrestrained Ferocity)', 220422), (221222, 221222, 50, 50, 'Tainted Shadow Crystal (Anticipation of Retaliation)', 220425), (221225, 221225, 37, 37, 'Tainted Shadow Crystal (BioMet Mastery)', 220425), (222013, 222013, 156, 156, 'Tainted Shadow Crystal (Calling of Altumus)', 220411), (221634, 221634, 186, 186, 'Tainted Shadow Crystal (Calling of Belamorte)', 220411), (221177, 221177, 169, 169, 'Tainted Shadow Crystal (Calling of Curatem The Grand)', 220411), (220786, 220786, 17, 17, 'Tainted Shadow Crystal (Calling of Medinos)', 220424), (222249, 222249, 113, 113, 'Tainted Shadow Crystal (Calling of Restite)', 220411), (222541, 222541, 37, 37, 'Tainted Shadow Crystal (Calling of Salvinous)', 220424), (220631, 220631, 87, 87, 'Tainted Shadow Crystal (Calling of Sanoo)', 220431), (220447, 220447, 143, 143, 'Tainted Shadow Crystal (Calling of The Vivificator)', 220411), (220490, 220490, 57, 57, 'Tainted Shadow Crystal (Calling of Valentyia)', 220431), (220630, 220630, 130, 130, 'Tainted Shadow Crystal (Chant of Effortless Strikes)', 220436), (220521, 220521, 87, 87, 'Tainted Shadow Crystal (Chant of Frenzied Blows)', 220429), (220965, 220965, 116, 116, 'Tainted Shadow Crystal (Chill Spear)', 220437), (220727, 220727, 90, 90, 'Tainted Shadow Crystal (Coherent Notum Web)', 220429), (222382, 222382, 116, 116, 'Tainted Shadow Crystal (Creation: Asp of Semol)', 220411), (222383, 222383, 147, 147, 'Tainted Shadow Crystal (Creation: Belthior''s Flame Ward)', 220411), (222384, 222384, 136, 136, 'Tainted Shadow Crystal (Creation: Bitis Striker)', 220411), (222386, 222386, 90, 90, 'Tainted Shadow Crystal (Creation: Coplan''s Hand Taipan)', 220411), (222385, 222385, 177, 177, 'Tainted Shadow Crystal (Creation: Death Ward)', 220411), (222387, 222387, 112, 112, 'Tainted Shadow Crystal (Creation: Living Shield of Evernan)', 220411), (222388, 222388, 187, 187, 'Tainted Shadow Crystal (Creation: Mocham''s Guard)', 220411), (222389, 222389, 72, 72, 'Tainted Shadow Crystal (Creation: Notum Defender)', 220431), (222390, 222390, 85, 85, 'Tainted Shadow Crystal (Creation: Solar Guard)', 220411), (222391, 222391, 48, 48, 'Tainted Shadow Crystal (Creation: The Crotalus)', 220431), (222392, 222392, 66, 66, 'Tainted Shadow Crystal (Creation: Viper Staff)', 220431), (222393, 222393, 59, 59, 'Tainted Shadow Crystal (Creation: Vital Buckler)', 220431), (222394, 222394, 129, 129, 'Tainted Shadow Crystal (Creation: Wave Breaker)', 220411), (222395, 222395, 160, 160, 'Tainted Shadow Crystal (Creation: Wixel''s Notum Python)', 220411), (221229, 221229, 169, 169, 'Tainted Shadow Crystal (Curse of Chronos)', 220411), (222589, 222589, 108, 108, 'Tainted Shadow Crystal (Dagger in the Back)', 220412), (221304, 221304, 146, 146, 'Tainted Shadow Crystal (Dedication of Thought)', 220412), (222435, 222435, 41, 41, 'Tainted Shadow Crystal (Deranged Mindreaver)', 220424), (222436, 222436, 11, 11, 'Tainted Shadow Crystal (Distracting Sphere)', 220424), (221231, 221231, 142, 142, 'Tainted Shadow Crystal (Dominate: BioMet)', 220412), (221235, 221235, 142, 142, 'Tainted Shadow Crystal (Dominate: MatCrea)', 220412), (221236, 221236, 139, 139, 'Tainted Shadow Crystal (Dominate: MatMet)', 220412), (221237, 221237, 142, 142, 'Tainted Shadow Crystal (Dominate: PsyMod)', 220412), (221238, 221238, 142, 142, 'Tainted Shadow Crystal (Dominate: SenseImp)', 220412), (221240, 221240, 139, 139, 'Tainted Shadow Crystal (Dominate: SpaceTime)', 220412), (222591, 222591, 44, 44, 'Tainted Shadow Crystal (Double Cover)', 220425), (221741, 221741, 14, 14, 'Tainted Shadow Crystal (Douse Anger)', 220425), (222590, 222590, 14, 14, 'Tainted Shadow Crystal (Dual Defender)', 220425), (220950, 220950, 24, 24, 'Tainted Shadow Crystal (Ease of Execution)', 220422), (221789, 221789, 47, 47, 'Tainted Shadow Crystal (Engrossing Activity)', 220425), (222111, 222111, 159, 159, 'Tainted Shadow Crystal (Enmity Personification)', 220411), (222525, 222525, 85, 85, 'Tainted Shadow Crystal (Evocation of Fathomless Rage)', 220429), (222526, 222526, 115, 115, 'Tainted Shadow Crystal (Evocation of Implacable Hatred)', 220436), (222527, 222527, 58, 58, 'Tainted Shadow Crystal (Evocation of Relentless Fury)', 220429), (222528, 222528, 34, 34, 'Tainted Shadow Crystal (Evocation of Unleashed Malice)', 220422), (222529, 222529, 16, 16, 'Tainted Shadow Crystal (Evocation of Unrestrained Ferocity)', 220422), (222495, 222495, 88, 88, 'Tainted Shadow Crystal (Fluctuate Manifestation)', 220431), (222587, 222587, 22, 22, 'Tainted Shadow Crystal (Footpad Apprentice)', 220425), (220649, 220649, 129, 129, 'Tainted Shadow Crystal (Frenzy Embodiment)', 220411), (221203, 221203, 64, 64, 'Tainted Shadow Crystal (Frigid Blast)', 220430), (220736, 220736, 17, 17, 'Tainted Shadow Crystal (Frost Slivers)', 220423), (221727, 221727, 20, 20, 'Tainted Shadow Crystal (Fury Externalization)', 220424), (221159, 221159, 159, 159, 'Tainted Shadow Crystal (Glacial Lance)', 220437), (220758, 220758, 7, 7, 'Tainted Shadow Crystal (Greater Anger Manifestation)', 220424), (222437, 222437, 50, 50, 'Tainted Shadow Crystal (Greater Deranged Mindreaver)', 220424), (222438, 222438, 17, 17, 'Tainted Shadow Crystal (Greater Distracting Sphere)', 220424), (222195, 222195, 165, 165, 'Tainted Shadow Crystal (Greater Enmity Personification)', 220411), (221582, 221582, 146, 146, 'Tainted Shadow Crystal (Greater Frenzy Embodiment)', 220411), (222185, 222185, 27, 27, 'Tainted Shadow Crystal (Greater Fury Externalization)', 220424), (221573, 221573, 53, 53, 'Tainted Shadow Crystal (Greater Rage Materialization)', 220431), (222065, 222065, 93, 93, 'Tainted Shadow Crystal (Greater Wrath Incarnation)', 220431), (222584, 222584, 106, 106, 'Tainted Shadow Crystal (Hand of the Shadow)', 220412), (220497, 220497, 182, 182, 'Tainted Shadow Crystal (High Chant of Effortless Strikes)', 220436), (220657, 220657, 156, 156, 'Tainted Shadow Crystal (High Chant of Frenzied Blows)', 220436), (221708, 221708, 90, 90, 'Tainted Shadow Crystal (Ignore External Events)', 220432), (221144, 221144, 1, 1, 'Tainted Shadow Crystal (Inferior Anger Manifestation)', 220424), (220651, 220651, 159, 159, 'Tainted Shadow Crystal (Inferior Enmity Personification)', 220411), (220729, 220729, 123, 123, 'Tainted Shadow Crystal (Inferior Frenzy Embodiment)', 220411), (221777, 221777, 17, 17, 'Tainted Shadow Crystal (Inferior Fury Externalization)', 220424), (222254, 222254, 40, 40, 'Tainted Shadow Crystal (Inferior Rage Materialization)', 220424), (221005, 221005, 83, 83, 'Tainted Shadow Crystal (Inferior Wrath Incarnation)', 220431), (222333, 222333, 123, 123, 'Tainted Shadow Crystal (Infuse With Knowledge: Biological Metamorphose)', 220412), (222334, 222334, 130, 130, 'Tainted Shadow Crystal (Infuse With Knowledge: Material Creation)', 220412), (222336, 222336, 126, 126, 'Tainted Shadow Crystal (Infuse With Knowledge: Material Metamorphose)', 220412), (222337, 222337, 136, 136, 'Tainted Shadow Crystal (Infuse With Knowledge: Psychological Modification)', 220412), (222338, 222338, 133, 133, 'Tainted Shadow Crystal (Infuse With Knowledge: Sensory Improvement)', 220412), (222335, 222335, 130, 130, 'Tainted Shadow Crystal (Infuse With Knowledge: Time and Space)', 220412), (221175, 221175, 166, 166, 'Tainted Shadow Crystal (Instill With Enduring Wrath)', 220436), (220545, 220545, 113, 113, 'Tainted Shadow Crystal (Instill With Ferocious Purpose)', 220436), (222204, 222204, 41, 41, 'Tainted Shadow Crystal (Instill With Fury)', 220422), (220961, 220961, 189, 189, 'Tainted Shadow Crystal (Instill With Malign Intent)', 220436), (221188, 221188, 21, 21, 'Tainted Shadow Crystal (Instill With Rage)', 220422), (220598, 220598, 150, 150, 'Tainted Shadow Crystal (Instill With Righteous Frenzy)', 220436), (220525, 220525, 74, 74, 'Tainted Shadow Crystal (Instill With Terrible Anger)', 220429), (222131, 222131, 14, 14, 'Tainted Shadow Crystal (Internal Focus)', 220425), (222583, 222583, 71, 71, 'Tainted Shadow Crystal (Kick of the Phantom)', 220432), (222582, 222582, 29, 29, 'Tainted Shadow Crystal (Knock of the Poltergeist)', 220425), (222439, 222439, 34, 34, 'Tainted Shadow Crystal (Lesser Deranged Mindreaver)', 220424), (222440, 222440, 4, 4, 'Tainted Shadow Crystal (Lesser Distracting Sphere)', 220424), (220611, 220611, 156, 156, 'Tainted Shadow Crystal (Lesser Enmity Personification)', 220411), (222027, 222027, 113, 113, 'Tainted Shadow Crystal (Lesser Frenzy Embodiment)', 220411), (222098, 222098, 14, 14, 'Tainted Shadow Crystal (Lesser Fury Externalization)', 220424), (220987, 220987, 37, 37, 'Tainted Shadow Crystal (Lesser Rage Materialization)', 220424), (221625, 221625, 76, 76, 'Tainted Shadow Crystal (Lesser Wrath Incarnation)', 220431), (221045, 221045, 162, 162, 'Tainted Shadow Crystal (Lull Wrath)', 220412), (221291, 221291, 43, 43, 'Tainted Shadow Crystal (MatCrea Mastery)', 220425), (221293, 221293, 50, 50, 'Tainted Shadow Crystal (MatMet Mastery)', 220425), (221290, 221290, 146, 146, 'Tainted Shadow Crystal (Mind Banshee)', 220437), (221039, 221039, 87, 87, 'Tainted Shadow Crystal (Mind Howl)', 220430), (220963, 220963, 173, 173, 'Tainted Shadow Crystal (Mind Quake)', 220437), (222053, 222053, 37, 37, 'Tainted Shadow Crystal (Mind Scream)', 220423), (221255, 221255, 165, 165, 'Tainted Shadow Crystal (Mocham''s Gift: BioMet)', 220412), (221265, 221265, 165, 165, 'Tainted Shadow Crystal (Mocham''s Gift: MatCrea)', 220412), (221266, 221266, 162, 162, 'Tainted Shadow Crystal (Mocham''s Gift: MatMet)', 220412), (221267, 221267, 169, 169, 'Tainted Shadow Crystal (Mocham''s Gift: PsyMod)', 220412), (221268, 221268, 165, 165, 'Tainted Shadow Crystal (Mocham''s Gift: SenseImp)', 220412), (221269, 221269, 162, 162, 'Tainted Shadow Crystal (Mocham''s Gift: SpaceTime)', 220412), (220645, 220645, 159, 159, 'Tainted Shadow Crystal (Mocham''s Neural Interface-Web)', 220436), (222586, 222586, 82, 82, 'Tainted Shadow Crystal (Mugger)', 220432), (220773, 220773, 162, 162, 'Tainted Shadow Crystal (Nano Shutdown)', 220436), (220639, 220639, 129, 129, 'Tainted Shadow Crystal (Neuron-Notum Interface)', 220436), (220888, 220888, 60, 60, 'Tainted Shadow Crystal (Notum Attunement)', 220429), (220534, 220534, 149, 149, 'Tainted Shadow Crystal (Notum Rejection)', 220411), (221952, 221952, 162, 162, 'Tainted Shadow Crystal (One Mind, One Purpose)', 220412), (222594, 222594, 87, 87, 'Tainted Shadow Crystal (Piercing Gash)', 220432), (222595, 222595, 49, 49, 'Tainted Shadow Crystal (Piercing Tooth)', 220425), (222593, 222593, 122, 122, 'Tainted Shadow Crystal (Probe of Death)', 220412), (221278, 221278, 47, 47, 'Tainted Shadow Crystal (PsyMod Mastery)', 220425), (221996, 221996, 103, 103, 'Tainted Shadow Crystal (Quantum Wings)', 220411), (221717, 221717, 30, 30, 'Tainted Shadow Crystal (Quell Anger)', 220425), (220455, 220455, 40, 40, 'Tainted Shadow Crystal (Quench Anger)', 220425), (221809, 221809, 93, 93, 'Tainted Shadow Crystal (Rage Abolishment)', 220432), (221132, 221132, 116, 116, 'Tainted Shadow Crystal (Rage Eradication)', 220412), (221961, 221961, 47, 47, 'Tainted Shadow Crystal (Rage Materialization)', 220424), (221606, 221606, 76, 76, 'Tainted Shadow Crystal (Rage Suppression)', 220432), (222553, 222553, 17, 17, 'Tainted Shadow Crystal (Ritualistic Blow)', 220424), (222552, 222552, 4, 4, 'Tainted Shadow Crystal (Ritualistic Touch)', 220424), (222554, 222554, 21, 21, 'Tainted Shadow Crystal (Rudimentary Dissipation)', 220424), (221300, 221300, 43, 43, 'Tainted Shadow Crystal (Sense Imp Mastery)', 220425), (222596, 222596, 19, 19, 'Tainted Shadow Crystal (Sharpen Dagger)', 220425), (222072, 222072, 7, 7, 'Tainted Shadow Crystal (Shed Anger)', 220425), (222588, 222588, 66, 66, 'Tainted Shadow Crystal (Silent Dagger)', 220432), (222581, 222581, 5, 5, 'Tainted Shadow Crystal (Slap of the Zombie)', 220425), (222585, 222585, 36, 36, 'Tainted Shadow Crystal (Sneak)', 220425), (221302, 221302, 40, 40, 'Tainted Shadow Crystal (SpaceTime Mastery)', 220425), (221790, 221790, 53, 53, 'Tainted Shadow Crystal (Stifle Rage)', 220432), (222188, 222188, 189, 189, 'Tainted Shadow Crystal (Summon Cacodemon)', 220411), (221194, 221194, 189, 189, 'Tainted Shadow Crystal (Summon Demon)', 220411), (220681, 220681, 182, 182, 'Tainted Shadow Crystal (Summon Fiend)', 220411), (221696, 221696, 179, 179, 'Tainted Shadow Crystal (Summon Lemur)', 220411), (222441, 222441, 83, 83, 'Tainted Shadow Crystal (Summoning of Absuum)', 220431), (222442, 222442, 176, 176, 'Tainted Shadow Crystal (Summoning of Balbuto the Gibberer)', 220411), (222443, 222443, 166, 166, 'Tainted Shadow Crystal (Summoning of Confane)', 220411), (222444, 222444, 120, 120, 'Tainted Shadow Crystal (Summoning of Demenus)', 220411), (222445, 222445, 159, 159, 'Tainted Shadow Crystal (Summoning of Distral)', 220411), (222446, 222446, 153, 153, 'Tainted Shadow Crystal (Summoning of Duoco)', 220411), (222447, 222447, 100, 100, 'Tainted Shadow Crystal (Summoning of Ignatus Mind-Clouder)', 220431), (222291, 222291, 189, 189, 'Tainted Shadow Crystal (Summoning of Tumulten)', 220411), (222060, 222060, 4, 4, 'Tainted Shadow Crystal (Superior Anger Manifestation)', 220424), (220612, 220612, 162, 162, 'Tainted Shadow Crystal (Superior Enmity Personification)', 220411), (222040, 222040, 139, 139, 'Tainted Shadow Crystal (Superior Frenzy Embodiment)', 220411), (222175, 222175, 24, 24, 'Tainted Shadow Crystal (Superior Fury Externalization)', 220424), (221750, 221750, 50, 50, 'Tainted Shadow Crystal (Superior Rage Materialization)', 220424), (221925, 221925, 90, 90, 'Tainted Shadow Crystal (Superior Wrath Incarnation)', 220431), (220544, 220544, 7, 7, 'Tainted Shadow Crystal (Supreme Anger Manifestation)', 220424), (222448, 222448, 67, 67, 'Tainted Shadow Crystal (Supreme Deranged Mindreaver)', 220431), (222449, 222449, 24, 24, 'Tainted Shadow Crystal (Supreme Distracting Sphere)', 220424), (221674, 221674, 172, 172, 'Tainted Shadow Crystal (Supreme Enmity Personification)', 220411), (221200, 221200, 149, 149, 'Tainted Shadow Crystal (Supreme Frenzy Embodiment)', 220411), (221087, 221087, 30, 30, 'Tainted Shadow Crystal (Supreme Fury Externalization)', 220424), (221975, 221975, 60, 60, 'Tainted Shadow Crystal (Supreme Rage Materialization)', 220431), (221707, 221707, 96, 96, 'Tainted Shadow Crystal (Supreme Wrath Incarnation)', 220431), (221280, 221280, 10, 10, 'Tainted Shadow Crystal (Symbol Helper)', 220425), (222327, 222327, 18, 18, 'Tainted Shadow Crystal (Teachings of Biological Metamorphose)', 220425), (222328, 222328, 21, 21, 'Tainted Shadow Crystal (Teachings of Material Creation)', 220425), (222330, 222330, 17, 17, 'Tainted Shadow Crystal (Teachings of Material Metamorphose)', 220425), (222331, 222331, 24, 24, 'Tainted Shadow Crystal (Teachings of Psychological Modification)', 220425), (222332, 222332, 21, 21, 'Tainted Shadow Crystal (Teachings of Sensory Improvement)', 220425), (222329, 222329, 21, 21, 'Tainted Shadow Crystal (Teachings of Time and Space)', 220425), (221850, 221850, 136, 136, 'Tainted Shadow Crystal (Temper Wrath)', 220412), (221726, 221726, 10, 10, 'Tainted Shadow Crystal (Transcendent Anger Manifestation)', 220424), (221933, 221933, 175, 175, 'Tainted Shadow Crystal (Transcendent Enmity Personification)', 220411), (220769, 220769, 152, 152, 'Tainted Shadow Crystal (Transcendent Frenzy Embodiment)', 220411), (220981, 220981, 33, 33, 'Tainted Shadow Crystal (Transcendent Fury Externalization)', 220424), (221314, 221314, 70, 70, 'Tainted Shadow Crystal (Transcendent Rage Materialization)', 220431), (221921, 221921, 106, 106, 'Tainted Shadow Crystal (Transcendent Wrath Incarnation)', 220411), (222592, 222592, 97, 97, 'Tainted Shadow Crystal (Twice the Shield)', 220432), (221306, 221306, 73, 73, 'Tainted Shadow Crystal (Unmake: BioMet)', 220432), (221307, 221307, 73, 73, 'Tainted Shadow Crystal (Unmake: MatCrea)', 220432), (221308, 221308, 63, 63, 'Tainted Shadow Crystal (Unmake: MatMet)', 220432), (221309, 221309, 70, 70, 'Tainted Shadow Crystal (Unmake: PsyMod)', 220432), (221310, 221310, 66, 66, 'Tainted Shadow Crystal (Unmake: SenseImp)', 220432), (221311, 221311, 66, 66, 'Tainted Shadow Crystal (Unmake: SpaceTime)', 220432), (221580, 221580, 179, 179, 'Tainted Shadow Crystal (Wrath Abatement)', 220412), (220476, 220476, 149, 149, 'Tainted Shadow Crystal (Wrath Ebb)', 220412), (222014, 222014, 86, 86, 'Tainted Shadow Crystal (Wrath Incarnation)', 220431), (206010, 206010, 1, 1, 'Tainted Soulmark', 25794), (209491, 209491, 1, 1, 'Take me to the Shop!', 163067), (152702, 152702, 145, 145, 'Talented Cloak', 22898), (152703, 152703, 145, 145, 'Talented Hood', 23003), (303228, 303228, 1, 1, 'Tamed Rainbow McKaw', 303229), (303176, 303176, 1, 1, 'Tamtor''s Vorpal Rapier', 303175), (207992, 207993, 100, 124, 'Tangleblade', 21135), (159007, 159008, 1, 199, 'Tango Dirk', 131270), (248992, 248992, 1, 1, 'Tank top of Legion', 255278), (248993, 248993, 1, 1, 'Tank top of the Enlivenment of Nyaya', 255281), (248994, 248994, 1, 1, 'Tank top of the Reborn', 255284), (206890, 206890, 20, 20, 'Tanned Piece of Rollerrat Flesh', 144701), (144090, 144091, 41, 80, 'Tanto', 113986), (227221, 227221, 1, 1, 'Tap Notum Source', 239193), (248233, 248233, 1, 1, 'Tap Vitae', 239207), (301456, 301456, 1, 1, 'Tarasque No Attack', 227249), (100293, 100293, 1, 1, 'Targeted Radiation Extractor', 100307), (137189, 137190, 1, 200, 'Targeting Scope', 83326), (160632, 205620, 100, 259, 'Targeting Scope - Vision Enhancer', 99270), (205620, 160633, 260, 400, 'Targeting Scope - Vision Enhancer', 99270), (225511, 225511, 199, 199, 'Tarnished Sword of Lord Mordeth', 40781), (225512, 225512, 199, 199, 'Tarnished Sword of Lord Mordeth', 40781), (225507, 225507, 199, 199, 'Tarnished Sword of Sir Galahad', 40781), (225508, 225508, 199, 199, 'Tarnished Sword of Sir Galahad', 40781), (297046, 297046, 1, 1, 'Tasty Chocolates', 207018), (297050, 297050, 1, 1, 'Tasty Chocolates', 207018), (297370, 297370, 1, 1, 'Tasty Peanut Butter Cookie', 297365), (269437, 269437, 1, 1, 'Tattered Book: 1001 Survival Tips...And More!', 247828), (204719, 204719, 1, 1, 'Tattered Book: Ape Fist of Khalum (complete)', 286783), (206190, 206190, 1, 1, 'Tattered Book: Karmic Fist (complete)', 136332), (305553, 305553, 1, 1, 'Tattered Book: Stampede of the Boar (complete)', 269476), (305541, 305541, 1, 1, 'Tattered Book: Sting of the Viper (complete)', 136332), (258253, 258253, 1, 1, 'Tattered Bronto Gloves', 21871), (204716, 204716, 1, 1, 'Tattered book: Ape Fist of Khalum (incomplete)', 286780), (204717, 204717, 1, 1, 'Tattered book: Ape Fist of Khalum (incomplete)', 286781), (204718, 204718, 1, 1, 'Tattered book: Ape Fist of Khalum (incomplete)', 286782), (204711, 204711, 1, 1, 'Tattered book: Ape Fist of Khalum (section 1)', 286779), (204712, 204712, 1, 1, 'Tattered book: Ape Fist of Khalum (section 2)', 286780), (204713, 204713, 1, 1, 'Tattered book: Ape Fist of Khalum (section 3)', 286781), (204714, 204714, 1, 1, 'Tattered book: Ape Fist of Khalum (section 4)', 286782), (204715, 204715, 1, 1, 'Tattered book: Ape Fist of Khalum (section 5)', 286783), (206186, 206186, 1, 1, 'Tattered book: Karmic Fist (incomplete)', 136332), (206187, 206187, 1, 1, 'Tattered book: Karmic Fist (incomplete)', 136332), (206188, 206188, 1, 1, 'Tattered book: Karmic Fist (incomplete)', 136332), (206189, 206189, 1, 1, 'Tattered book: Karmic Fist (incomplete)', 136332), (206180, 206180, 1, 1, 'Tattered book: Karmic Fist (section 1)', 136332), (206181, 206181, 1, 1, 'Tattered book: Karmic Fist (section 2)', 136332), (206182, 206182, 1, 1, 'Tattered book: Karmic Fist (section 3)', 136332), (206183, 206183, 1, 1, 'Tattered book: Karmic Fist (section 4)', 136332), (206184, 206184, 1, 1, 'Tattered book: Karmic Fist (section 5)', 136332), (206185, 206185, 1, 1, 'Tattered book: Karmic Fist (section 6)', 136332), (305549, 305549, 1, 1, 'Tattered book: Stampede of the Boar (incomplete)', 269476), (305550, 305550, 1, 1, 'Tattered book: Stampede of the Boar (incomplete)', 269476), (305551, 305551, 1, 1, 'Tattered book: Stampede of the Boar (incomplete)', 269476), (305552, 305552, 1, 1, 'Tattered book: Stampede of the Boar (incomplete)', 269476), (305543, 305543, 1, 1, 'Tattered book: Stampede of the Boar (section 1)', 269476), (305544, 305544, 1, 1, 'Tattered book: Stampede of the Boar (section 2)', 269476), (305545, 305545, 1, 1, 'Tattered book: Stampede of the Boar (section 3)', 269476), (305546, 305546, 1, 1, 'Tattered book: Stampede of the Boar (section 4)', 269476), (305547, 305547, 1, 1, 'Tattered book: Stampede of the Boar (section 5)', 269476), (305548, 305548, 1, 1, 'Tattered book: Stampede of the Boar (section 6)', 269476), (305537, 305537, 1, 1, 'Tattered book: Sting of the Viper (incomplete)', 136332), (305538, 305538, 1, 1, 'Tattered book: Sting of the Viper (incomplete)', 136332), (305539, 305539, 1, 1, 'Tattered book: Sting of the Viper (incomplete)', 136332), (305540, 305540, 1, 1, 'Tattered book: Sting of the Viper (incomplete)', 136332), (305531, 305531, 1, 1, 'Tattered book: Sting of the Viper (section 1)', 136332), (305532, 305532, 1, 1, 'Tattered book: Sting of the Viper (section 2)', 136332), (305533, 305533, 1, 1, 'Tattered book: Sting of the Viper (section 3)', 136332), (305534, 305534, 1, 1, 'Tattered book: Sting of the Viper (section 4)', 136332), (305535, 305535, 1, 1, 'Tattered book: Sting of the Viper (section 5)', 136332), (305536, 305536, 1, 1, 'Tattered book: Sting of the Viper (section 6)', 136332), (204730, 204730, 1, 1, 'Tattered book: Tree of Enlightenment (complete)', 286784), (204726, 204726, 1, 1, 'Tattered book: Tree of Enlightenment (incomplete)', 286786), (204727, 204727, 1, 1, 'Tattered book: Tree of Enlightenment (incomplete)', 286787), (204728, 204728, 1, 1, 'Tattered book: Tree of Enlightenment (incomplete)', 286788), (204729, 204729, 1, 1, 'Tattered book: Tree of Enlightenment (incomplete)', 286789), (204720, 204720, 1, 1, 'Tattered book: Tree of Enlightenment (section 1)', 286785), (204721, 204721, 1, 1, 'Tattered book: Tree of Enlightenment (section 2)', 286786), (204722, 204722, 1, 1, 'Tattered book: Tree of Enlightenment (section 3)', 286787), (204723, 204723, 1, 1, 'Tattered book: Tree of Enlightenment (section 4)', 286788), (204724, 204724, 1, 1, 'Tattered book: Tree of Enlightenment (section 5)', 286789), (204725, 204725, 1, 1, 'Tattered book: Tree of Enlightenment (section 6)', 286784), (87470, 87470, 1, 1, 'Tattoo', 96117), (87471, 87471, 1, 1, 'Tattoo', 96122), (87472, 87472, 1, 1, 'Tattoo', 96119), (87473, 87473, 1, 1, 'Tattoo', 96120), (87474, 87474, 1, 1, 'Tattoo', 96121), (87475, 87475, 1, 1, 'Tattoo', 96116), (87476, 87476, 1, 1, 'Tattoo', 96123), (87477, 87477, 1, 1, 'Tattoo', 96124), (87478, 87478, 1, 1, 'Tattoo', 96125), (87479, 87479, 1, 1, 'Tattoo', 96126), (87483, 87483, 1, 1, 'Tattoo', 96118), (100012, 100012, 1, 1, 'Tattoo', 96114), (100013, 100013, 1, 1, 'Tattoo', 96110), (223765, 223765, 1, 1, 'Tattoo of Inner Peace', 96124), (227152, 227153, 1, 500, 'Taunt', 239039), (227154, 227155, 1, 500, 'Taunt', 239039), (227156, 227157, 1, 500, 'Taunt', 239039), (229132, 229132, 1, 1, 'Taunt Box', 239197), (244661, 244661, 250, 250, 'Taurus'' Ring of the Heart', 289776), (244659, 244659, 250, 250, 'Taurus'' Spirit of Patience', 130792), (244658, 244658, 250, 250, 'Taurus'' Spirit of Reflection', 149940), (244660, 244660, 250, 250, 'Taurus'' Swordmaster Spirit', 130788), (292015, 292015, 1, 1, 'Tazalanche''s QQ Shirt', 293631), (130601, 130601, 1, 1, 'Tea-Pot', 130560), (206242, 206242, 1, 1, 'Teachings of the Immortal One', 136329), (225506, 225506, 1, 1, 'Team Hale and Hearty', 239235), (214129, 214129, 1, 1, 'Team Heal', 239149), (152740, 152741, 51, 140, 'Tear Blade', 13347), (244216, 244216, 300, 300, 'Tear of Oedipus', 161141), (125445, 125446, 1, 50, 'Tear-soaked Pillow with Important Stripes', 85163), (168953, 168954, 1, 200, 'Tech Body Armor of the Pink Rose', 22909), (168951, 168952, 1, 200, 'Tech Body Armor of the Vermillion Rose', 22990), (168943, 168944, 1, 200, 'Tech Boots of the Rose', 22886), (168945, 168946, 1, 200, 'Tech Gloves of the Rose', 22933), (168941, 168942, 1, 200, 'Tech Helmet of the Rose', 31731), (168949, 168950, 1, 200, 'Tech Pants of the Rose', 22912), (168947, 168948, 1, 200, 'Tech Sleeves of the Rose', 22911), (305981, 305981, 250, 250, 'Technical Guidance Personal Terminal', 218777), (267740, 267740, 250, 250, 'Technical Knowledge Crystal', 151030), (287997, 287997, 1, 1, 'Technician Death Item', 84059), (281235, 281235, 1, 1, 'Techno Wizard''s Cut Gem', 281223), (281219, 281219, 1, 1, 'Techno Wizard''s Gem', 281224), (281205, 281205, 1, 1, 'Techno Wizard''s Signet of The Apocalypse', 281195), (216325, 216325, 1, 1, 'Technocrat Merit Board', 216287), (164537, 164538, 1, 200, 'Technoscavenger Brain', 130562), (164540, 164541, 1, 200, 'Technoscavenger Mechanics Library', 100321), (272230, 272231, 1, 300, 'Techtronica Neural Disruptor - 000', 21145), (272232, 272233, 1, 300, 'Techtronica Neural Disruptor - 008', 21145), (272234, 272235, 1, 300, 'Techtronica Neural Disruptor - 00C', 21145), (272236, 272237, 1, 300, 'Techtronica Neural Disruptor - 40C', 21145), (272238, 272239, 1, 300, 'Techtronica Neural Disruptor - C0C', 21145), (284431, 284431, 1, 1, 'Teleport Ring', 100339), (255539, 255539, 1, 1, 'Teleporter to Baboons', 256377), (255577, 255577, 1, 1, 'Teleporter to Neuters ''R'' Us', 256378), (255583, 255583, 1, 1, 'Teleporter to Reet Retreat', 256379), (255540, 255540, 1, 1, 'Teleporter to the Rompa Bar', 256380), (225667, 225668, 1, 300, 'Temar Eldanti''s Ring of Nano Programming', 151920), (163995, 163996, 49, 199, 'Tempered Meibutsu Daito', 113983), (303434, 303434, 1, 1, 'Temple Explorer Pack', 99664), (304567, 304567, 1, 1, 'Temple Explorer Pack', 304574), (238908, 238909, 190, 240, 'Temple Tubes', 156557), (207023, 207023, 1, 1, 'Temple of Three Winds Key', 154676), (204706, 204706, 1, 1, 'Temporal Chalice', 37929), (262264, 262264, 1, 1, 'Temporal Recovery System Unit', 262224), (265494, 265494, 1, 1, 'Temporary Altitude Output Disk', 100339), (296577, 296577, 1, 1, 'Temporary License Card', 99188), (283485, 283485, 1, 1, 'Temporary VIP Keycard', 283540), (245671, 245671, 150, 150, 'Tenderfoot Hood', 41150), (305020, 305020, 1, 1, 'Tentacle Cups', 37121), (305019, 305019, 1, 1, 'Tentacle Lifter', 21876), (246831, 246831, 1, 1, 'Tentacle Tape', 13228), (246830, 246830, 1, 1, 'Tentacle Thongs', 21876), (246832, 246832, 1, 1, 'Tentacle Threads', 37121), (305018, 305018, 1, 1, 'Tentacle Wrap', 13228), (214259, 214255, 100, 199, 'Termite Nunchaku', 229956), (214256, 214257, 200, 299, 'Termite Nunchaku', 229956), (249085, 249085, 1, 1, 'Terri''s Slippers', 255367), (288560, 288560, 1, 1, 'Terrifying Leet Pet (Halloween Leet Series 2)', 220432), (303469, 303469, 1, 1, 'Terrifying Leet Pet (Halloween Leet Series 2)', 220432), (259723, 259723, 1, 1, 'Terrifying Plush', 259739), (203848, 203848, 1, 1, 'Tertium Quid', 203849), (269478, 269478, 110, 110, 'Test Tattoo', 96110), (286232, 286232, 1, 1, 'Test Test Test Ring', 234505), (287993, 287993, 1, 1, 'Test Tube', 287972), (258200, 258200, 1, 1, 'Test Wig', 205835), (160462, 160462, 100, 100, 'Test10', 100313), (295198, 295198, 1, 1, 'Tester Placard - Beware of Green Names', 295248), (295199, 295199, 1, 1, 'Tester Placard - Boost Plx!', 295224), (295200, 295200, 1, 1, 'Tester Placard - Bugs Are Evul!', 295225), (295201, 295201, 1, 1, 'Tester Placard - Found a Bug!', 295226), (295202, 295202, 1, 1, 'Tester Placard - Gief Points!', 295227), (295207, 295207, 1, 1, 'Tester Placard - Green', 295232), (295204, 295204, 1, 1, 'Tester Placard - H.O.P.E.', 295229), (295212, 295212, 1, 1, 'Tester Placard - I Love Testing!', 295237), (295206, 295206, 1, 1, 'Tester Placard - Known Issue', 295231), (295213, 295213, 1, 1, 'Tester Placard - MMOATP', 295238), (295214, 295214, 1, 1, 'Tester Placard - More Bugs Plx', 295239), (295208, 295208, 1, 1, 'Tester Placard - Orange', 295233), (295209, 295209, 1, 1, 'Tester Placard - Pink', 295234), (295205, 295205, 1, 1, 'Tester Placard - Remember to Insure!', 295230), (295216, 295216, 1, 1, 'Tester Placard - Sassy FTW!', 295241), (295218, 295218, 1, 1, 'Tester Placard - Save the Bugs!', 295243), (295217, 295217, 1, 1, 'Tester Placard - Save the Mechdogs!', 295242), (295219, 295219, 1, 1, 'Tester Placard - Sploits Are Evul', 295244), (295215, 295215, 1, 1, 'Tester Placard - This is My Spot!', 295240), (295220, 295220, 1, 1, 'Tester Placard - Use Social', 295245), (295221, 295221, 1, 1, 'Tester Placard - Where''s Auto?', 295246), (295210, 295210, 1, 1, 'Tester Placard - White', 295235), (295211, 295211, 1, 1, 'Tester Placard - Yellow', 295236), (295222, 295222, 1, 1, 'Tester Placard - Zap!', 295247), (295203, 295203, 1, 1, 'Tester Placard - gugu', 295228), (199530, 199530, 225, 225, 'Thallium Periodic Tech Armor Boots', 22886), (199551, 199551, 225, 225, 'Thallium Periodic Tech Armor Gloves', 22933), (199572, 199572, 225, 225, 'Thallium Periodic Tech Armor Helmet', 31731), (199594, 199594, 225, 225, 'Thallium Periodic Tech Armor Pants', 22912), (199615, 199615, 225, 225, 'Thallium Periodic Tech Armor Sleeves', 22911), (199636, 199636, 225, 225, 'Thallium Periodic Tech Body Armor', 22990), (199657, 199657, 225, 225, 'Thallium Periodic Tech Female Body Armor', 22909), (223655, 223656, 1, 200, 'Thar''s Boots', 37596), (223665, 223666, 1, 200, 'Thar''s Circlet', 84063), (223663, 223664, 1, 200, 'Thar''s Gloves', 21871), (223661, 223662, 1, 200, 'Thar''s Sleeve', 213459), (223657, 223658, 1, 200, 'Thar''s Trousers', 22917), (223659, 223660, 1, 200, 'Thar''s Tunic', 37545), (304818, 304818, 1, 1, 'The Admiral''s Antlers', 304828), (100001, 100001, 1, 1, 'The Advisor Suit', 99997), (301995, 301995, 1, 1, 'The Affectionate Bikini', 302033), (258882, 258882, 1, 1, 'The Alphabet Shirt - A', 259083), (258881, 258881, 1, 1, 'The Alphabet Shirt - B', 259084), (258883, 258883, 1, 1, 'The Alphabet Shirt - C', 259085), (258884, 258884, 1, 1, 'The Alphabet Shirt - D', 259086), (258885, 258885, 1, 1, 'The Alphabet Shirt - E', 259087), (258886, 258886, 1, 1, 'The Alphabet Shirt - F', 259088), (258887, 258887, 1, 1, 'The Alphabet Shirt - G', 259089), (258888, 258888, 1, 1, 'The Alphabet Shirt - H', 259090), (258889, 258889, 1, 1, 'The Alphabet Shirt - I', 259091), (258890, 258890, 1, 1, 'The Alphabet Shirt - J', 259092), (258891, 258891, 1, 1, 'The Alphabet Shirt - K', 259093), (258892, 258892, 1, 1, 'The Alphabet Shirt - L', 259094), (258893, 258893, 1, 1, 'The Alphabet Shirt - M', 259095), (258894, 258894, 1, 1, 'The Alphabet Shirt - N', 259096), (258895, 258895, 1, 1, 'The Alphabet Shirt - O', 259071), (258896, 258896, 1, 1, 'The Alphabet Shirt - P', 259072), (258897, 258897, 1, 1, 'The Alphabet Shirt - Q', 259073), (258898, 258898, 1, 1, 'The Alphabet Shirt - R', 259074), (258899, 258899, 1, 1, 'The Alphabet Shirt - S', 259075), (258900, 258900, 1, 1, 'The Alphabet Shirt - T', 259076), (258901, 258901, 1, 1, 'The Alphabet Shirt - U', 259077), (258902, 258902, 1, 1, 'The Alphabet Shirt - V', 259078), (258903, 258903, 1, 1, 'The Alphabet Shirt - W', 259079), (258904, 258904, 1, 1, 'The Alphabet Shirt - X', 259080), (258905, 258905, 1, 1, 'The Alphabet Shirt - Y', 259081), (258906, 258906, 1, 1, 'The Alphabet Shirt - Z', 259082), (223467, 223468, 150, 199, 'The Argument', 21138), (223469, 223469, 200, 200, 'The Argument', 21138), (158586, 158586, 1, 1, 'The Art of Fletching', 37930), (158587, 158587, 1, 1, 'The Art of Fletching - By Katelin Demesa', 37930), (100008, 100008, 1, 1, 'The Assistant Advisor Suit', 99992), (296168, 296168, 1, 1, 'The Beast Action Figure', 296039), (157974, 157974, 1, 1, 'The Beer and Booze T-Shirt', 157940), (259721, 259721, 1, 1, 'The Black Grin', 259717), (259741, 259741, 1, 1, 'The Black Grin - Pwned Version', 259717), (301357, 301357, 1, 1, 'The Black Mankini', 290250), (301358, 301358, 1, 1, 'The Blue Mankini', 290249), (234917, 234917, 1, 1, 'The Book of Insignificant Rituals', 136329), (256581, 256581, 1, 1, 'The Book of Insignificant Rituals', 136329), (296108, 296108, 1, 1, 'The Briefcase', 296107), (258219, 258219, 100, 100, 'The Briefcase', 99662), (295699, 295699, 1, 1, 'The Brute Suit', 295726), (296223, 296223, 1, 1, 'The Bulk', 296249), (306173, 306173, 250, 250, 'The Bull''s Ring of Literacy', 84063), (306172, 306172, 250, 250, 'The Bull''s Ring of Restoration', 84059), (301760, 301760, 1, 1, 'The Bulwark of Incalescence', 301813), (205178, 205178, 1, 1, 'The CR Suit', 99997), (296582, 296582, 1, 1, 'The CalcuL33T Action Figure', 296968), (284223, 284223, 1, 1, 'The Catgirl Costume', 284186), (284224, 284224, 1, 1, 'The Catgirl Costume', 284186), (284225, 284225, 1, 1, 'The Catgirl Costume', 284186), (284226, 284226, 1, 1, 'The Catgirl Costume', 284186), (284227, 284227, 1, 1, 'The Catgirl Costume', 284186), (284228, 284228, 1, 1, 'The Catgirl Costume', 284186), (303321, 303321, 1, 1, 'The Catgirl Costume - Unchained', 284186), (245321, 245321, 150, 150, 'The Cause of Headache', 11700), (296559, 296559, 1, 1, 'The CheerL33T Action Figure', 296969), (215364, 215364, 1, 1, 'The Choice', 239345), (215367, 215367, 1, 1, 'The Choice', 239344), (290081, 290081, 1, 1, 'The Coming Soon Shirt', 290107), (265515, 265515, 1, 1, 'The Corpse of a Canine Mongrel', 144703), (154898, 154898, 45, 45, 'The Crotalus', 154366), (245429, 245429, 125, 125, 'The Dantian Belt of Life', 119143), (215425, 215425, 1, 1, 'The Dark Side', 136597), (215444, 215444, 1, 1, 'The Dark Side', 136597), (301758, 301758, 1, 1, 'The Dark Winter Knight', 301819), (215445, 215445, 1, 1, 'The Darker Side', 290380), (304135, 304135, 1, 1, 'The Darktooth Grin Bikini Bottom', 304091), (304136, 304136, 1, 1, 'The Darktooth Grin Bikini Top', 304090), (304134, 304134, 1, 1, 'The Darktooth Grin Boxer Shorts', 304092), (151405, 151405, 1, 1, 'The Developers Attire', 151875), (225578, 225578, 1, 1, 'The Director', 239285), (303060, 303060, 100, 100, 'The Dog of War', 113994), (157856, 157856, 200, 200, 'The Edge of the Tarasque', 158280), (277876, 277876, 1, 1, 'The Emoticon Shirt - 0:)', 85945), (289154, 289154, 1, 1, 'The Emoticon Shirt - 0:)', 85945), (277870, 277870, 1, 1, 'The Emoticon Shirt - :(', 85945), (289142, 289142, 1, 1, 'The Emoticon Shirt - :(', 85945), (277866, 277866, 1, 1, 'The Emoticon Shirt - :)', 85945), (289138, 289138, 1, 1, 'The Emoticon Shirt - :)', 85945), (277872, 277872, 1, 1, 'The Emoticon Shirt - :O', 85945), (289144, 289144, 1, 1, 'The Emoticon Shirt - :O', 85945), (277867, 277867, 1, 1, 'The Emoticon Shirt - :P', 85945), (289139, 289139, 1, 1, 'The Emoticon Shirt - :P', 85945), (277871, 277871, 1, 1, 'The Emoticon Shirt - :|', 85945), (289143, 289143, 1, 1, 'The Emoticon Shirt - :|', 85945), (277873, 277873, 1, 1, 'The Emoticon Shirt - <3', 85945), (289145, 289145, 1, 1, 'The Emoticon Shirt - <3', 85945), (277181, 277181, 1, 1, 'The Emoticon Shirt - =D', 85945), (289136, 289136, 1, 1, 'The Emoticon Shirt - =D', 85945), (277877, 277877, 1, 1, 'The Emoticon Shirt - >:)', 85945), (289155, 289155, 1, 1, 'The Emoticon Shirt - >:)', 85945), (277865, 277865, 1, 1, 'The Emoticon Shirt - ><', 85945), (289137, 289137, 1, 1, 'The Emoticon Shirt - ><', 85945), (277875, 277875, 1, 1, 'The Emoticon Shirt - Dance', 85945), (289153, 289153, 1, 1, 'The Emoticon Shirt - Dance', 85945), (277878, 277878, 1, 1, 'The Emoticon Shirt - QQ', 85945), (289156, 289156, 1, 1, 'The Emoticon Shirt - QQ', 85945), (277874, 277874, 1, 1, 'The Emoticon Shirt - ROCK', 85945), (289152, 289152, 1, 1, 'The Emoticon Shirt - ROCK', 85945), (277869, 277869, 1, 1, 'The Emoticon Shirt - XD', 85945), (289141, 289141, 1, 1, 'The Emoticon Shirt - XD', 85945), (277868, 277868, 1, 1, 'The Emoticon Shirt - ^^', 85945), (289140, 289140, 1, 1, 'The Emoticon Shirt - ^^', 85945), (231343, 231343, 1, 1, 'The Event Staff Suit', 99997), (302465, 302465, 1, 1, 'The Executioner''s Visage', 302464), (302523, 302523, 1, 1, 'The Executioner''s Visage', 302464), (151680, 151681, 1, 200, 'The Expensive Kevlar Vest of Professor Jones', 21858), (252027, 252027, 1, 1, 'The Extruder', 149952), (290875, 290875, 1, 1, 'The Final Dinner Poster', 290893), (288205, 288205, 1, 1, 'The Final Respite', 288390), (288567, 288567, 1, 1, 'The Final Respite - Fixture', 288587), (288701, 288701, 1, 1, 'The Final Respite Backpack', 288390), (226265, 226265, 1, 1, 'The Girl that Saw it All', 300997), (226256, 226256, 1, 1, 'The Girl that Saw it All - Chapter 1', 300996), (226263, 226263, 1, 1, 'The Girl that Saw it All - Chapter 1 - 2', 300998), (226264, 226264, 1, 1, 'The Girl that Saw it All - Chapter 1 - 3', 300992), (226257, 226257, 1, 1, 'The Girl that Saw it All - Chapter 2', 300995), (226258, 226258, 1, 1, 'The Girl that Saw it All - Chapter 3', 300994), (226259, 226259, 1, 1, 'The Girl that Saw it All - Chapter 4', 300993), (301359, 301359, 1, 1, 'The Green Mankini', 290246), (282062, 282062, 1, 1, 'The Grind Shirt', 282060), (282058, 282058, 1, 1, 'The Grind Staff Shirt', 282060), (282061, 282061, 1, 1, 'The Grind Staff Shirt', 282060), (272999, 272999, 1, 1, 'The Grinning Devil', 259717), (273239, 273239, 1, 1, 'The Grinning Devil', 273179), (273467, 273467, 1, 1, 'The Grinning Devil', 273179), (202802, 202802, 1, 1, 'The Guardian Conductor - Build it yourself', 136331), (165282, 165282, 200, 200, 'The HSR Detective', 130908), (158887, 159135, 21, 199, 'The Heavy-Headed Staff', 136738), (290102, 290102, 1, 1, 'The Heckler Shirt', 290106), (289294, 289294, 1, 1, 'The Hideously Over-Priced Shirt of Uber +2', 41182), (291631, 291631, 1, 1, 'The Hunt', 273626), (259719, 259719, 1, 1, 'The Hunter Shirt', 259715), (292862, 292862, 1, 1, 'The I Fail Button', 255941), (292942, 292942, 1, 1, 'The I Lose Button', 255941), (277441, 277441, 1, 1, 'The I Win Button', 255941), (281486, 281486, 1, 1, 'The Judge', 13321), (229057, 229057, 1, 1, 'The Key to Cama''s Sanctuary', 234676), (229058, 229058, 1, 1, 'The Key to Dalja''s Sanctuary', 234677), (229059, 229059, 1, 1, 'The Key to Enel''s Sanctuary', 234678), (229061, 229061, 1, 1, 'The Key to Gilthar''s Sanctuary', 234679), (229060, 229060, 1, 1, 'The Key to Lord Galahad''s Sanctuary', 234680), (229063, 229063, 1, 1, 'The Key to Lord Mordeth''s Sanctuary', 234681), (233406, 233406, 1, 1, 'The Key to Ocra''s Sanctuary', 234682), (233407, 233407, 1, 1, 'The Key to Roch''s Sanctuary', 234683), (229062, 229062, 1, 1, 'The Key to Shere''s Sanctuary', 234684), (229064, 229064, 1, 1, 'The Key to Vanya''s Sanctuary', 234685), (295111, 295111, 1, 1, 'The Key to the Dante''s Sanctuary', 234670), (226824, 226824, 1, 1, 'The Key to the Garden of Aban', 234662), (226985, 226985, 1, 1, 'The Key to the Garden of Cama', 234663), (226986, 226986, 1, 1, 'The Key to the Garden of Dalja', 234664), (226987, 226987, 1, 1, 'The Key to the Garden of Enel', 234665), (226989, 226989, 1, 1, 'The Key to the Garden of Gilthar', 234666), (226988, 226988, 1, 1, 'The Key to the Garden of Lord Galahad', 234667), (226990, 226990, 1, 1, 'The Key to the Garden of Lord Mordeth', 234668), (226991, 226991, 1, 1, 'The Key to the Garden of Ocra', 234669), (226992, 226992, 1, 1, 'The Key to the Garden of Roch', 234672), (226993, 226993, 1, 1, 'The Key to the Garden of Shere', 234673), (226994, 226994, 1, 1, 'The Key to the Garden of Thrak', 234674), (226995, 226995, 1, 1, 'The Key to the Garden of Vanya', 234675), (295112, 295112, 1, 1, 'The Key to the Macciavelli''s Sanctuary', 234671), (296560, 296560, 1, 1, 'The L33Tzilla Action Figure', 296971), (215442, 215442, 1, 1, 'The Lighter Side', 290391), (289322, 289322, 1, 1, 'The Logo Shirt - Black on Black', 41182), (289375, 289375, 1, 1, 'The Logo Shirt - Black on Black', 41182), (289347, 289347, 1, 1, 'The Logo Shirt - Black on White', 289355), (289383, 289383, 1, 1, 'The Logo Shirt - Black on White', 289355), (289339, 289339, 1, 1, 'The Logo Shirt - Blue on Black', 41182), (289376, 289376, 1, 1, 'The Logo Shirt - Blue on Black', 41182), (289348, 289348, 1, 1, 'The Logo Shirt - Blue on White', 289355), (289384, 289384, 1, 1, 'The Logo Shirt - Blue on White', 289355), (289340, 289340, 1, 1, 'The Logo Shirt - Green on Black', 41182), (289377, 289377, 1, 1, 'The Logo Shirt - Green on Black', 41182), (289349, 289349, 1, 1, 'The Logo Shirt - Green on White', 289355), (289385, 289385, 1, 1, 'The Logo Shirt - Green on White', 289355), (289341, 289341, 1, 1, 'The Logo Shirt - Orange on Black', 41182), (289378, 289378, 1, 1, 'The Logo Shirt - Orange on Black', 41182), (289350, 289350, 1, 1, 'The Logo Shirt - Orange on White', 289355), (289386, 289386, 1, 1, 'The Logo Shirt - Orange on White', 289355), (289342, 289342, 1, 1, 'The Logo Shirt - Pink on Black', 41182), (289379, 289379, 1, 1, 'The Logo Shirt - Pink on Black', 41182), (289351, 289351, 1, 1, 'The Logo Shirt - Pink on White', 289355), (289387, 289387, 1, 1, 'The Logo Shirt - Pink on White', 289355), (289343, 289343, 1, 1, 'The Logo Shirt - Purple on Black', 41182), (289380, 289380, 1, 1, 'The Logo Shirt - Purple on Black', 41182), (289352, 289352, 1, 1, 'The Logo Shirt - Purple on White', 289355), (289388, 289388, 1, 1, 'The Logo Shirt - Purple on White', 289355), (289344, 289344, 1, 1, 'The Logo Shirt - Red on Black', 41182), (289381, 289381, 1, 1, 'The Logo Shirt - Red on Black', 41182), (289353, 289353, 1, 1, 'The Logo Shirt - Red on White', 289355), (289389, 289389, 1, 1, 'The Logo Shirt - Red on White', 289355), (289345, 289345, 1, 1, 'The Logo Shirt - Yellow on Black', 41182), (289382, 289382, 1, 1, 'The Logo Shirt - Yellow on Black', 41182), (289354, 289354, 1, 1, 'The Logo Shirt - Yellow on White', 289355), (289390, 289390, 1, 1, 'The Logo Shirt - Yellow on White', 289355), (302006, 302006, 1, 1, 'The Love Sombrero', 302028), (295268, 295268, 1, 1, 'The MMOATP Shirt', 295264), (302009, 302009, 1, 1, 'The Mad Lover Topper', 302030), (226262, 226262, 1, 1, 'The Mariner''s Father', 300967), (226252, 226252, 1, 1, 'The Mariner''s Father - Chapter 1', 300961), (226260, 226260, 1, 1, 'The Mariner''s Father - Chapter 1 - 2', 300962), (226261, 226261, 1, 1, 'The Mariner''s Father - Chapter 1 - 3', 300963), (226253, 226253, 1, 1, 'The Mariner''s Father - Chapter 2', 300966), (226254, 226254, 1, 1, 'The Mariner''s Father - Chapter 3', 300965), (226255, 226255, 1, 1, 'The Mariner''s Father - Chapter 4', 300964), (296581, 296581, 1, 1, 'The MascuL33T Action Figure', 296972), (165124, 165124, 100, 100, 'The May Fly Throwing Grenade - by Zixxax', 154679), (96079, 96078, 10, 120, 'The Mid', 202452), (273186, 273186, 100, 100, 'The Midnight Pumpkin', 271890), (273208, 273208, 1, 1, 'The Midnight Pumpkin Bikini Bottom', 273210), (273207, 273207, 1, 1, 'The Midnight Pumpkin Bikini Top', 273211), (273209, 273209, 1, 1, 'The Midnight Pumpkin Boxer Shorts', 273212), (248209, 248209, 1, 1, 'The Mojo Cloak', 22897), (292568, 292568, 1, 1, 'The Moment of Victory Painting', 292807), (155926, 155926, 1, 1, 'The Multiple Uses of a Mass Relocating Robot', 154678), (274002, 274002, 1, 1, 'The Naughty List Bikini Bottoms', 274170), (274003, 274003, 1, 1, 'The Naughty List Bikini Top', 274169), (274008, 274008, 1, 1, 'The Naughty List Bikini Top', 273211), (273999, 273999, 1, 1, 'The Naughty List Boxers', 274171), (274007, 274007, 1, 1, 'The Naughty List Boxers', 273212), (292884, 292884, 1, 1, 'The Night Heart Poster', 293845), (277898, 277898, 1, 1, 'The Oni Shirt', 277900), (288805, 288805, 1, 1, 'The Oni Shirt', 277900), (259720, 259720, 1, 1, 'The Orange Grin', 259716), (160288, 160289, 1, 98, 'The Original Electronicum', 13323), (160290, 160291, 99, 199, 'The Original Electronicum v2', 13323), (160292, 160292, 200, 200, 'The Original Electronicum v3', 13323), (271577, 271578, 1, 300, 'The Original Plasma-Emitter - 000', 33145), (271581, 271582, 1, 300, 'The Original Plasma-Emitter - 401', 33145), (271583, 271584, 1, 300, 'The Original Plasma-Emitter - C01', 33145), (295340, 295340, 1, 1, 'The Overcompensator', 295342), (301750, 301750, 1, 1, 'The Party Popper', 301810), (301360, 301360, 1, 1, 'The Pink Mankini', 290251), (152039, 152039, 1, 1, 'The Pioneer Backpack', 151882), (156831, 156831, 1, 1, 'The Pioneer Backpack (Modified Version)', 151882), (206246, 206246, 1, 1, 'The Primeval Skull', 195259), (301361, 301361, 1, 1, 'The Purple Mankini', 290252), (262907, 262907, 1, 1, 'The Raymond Richards III Trophy', 262912), (304130, 304130, 200, 200, 'The Reaper''s Cloak', 304095), (304129, 304129, 200, 200, 'The Reaper''s Legwear', 304094), (304128, 304128, 200, 200, 'The Reaper''s Robes', 304093), (302010, 302010, 1, 1, 'The Red Ball', 302031), (301362, 301362, 1, 1, 'The Red Mankini', 290248), (159196, 159197, 1, 400, 'The Repressor', 156092), (152787, 152787, 165, 165, 'The Rhyme of the Ancient Mariner', 37933), (284150, 284150, 1, 1, 'The Riding Crop', 284080), (281919, 281919, 1, 1, 'The Rollback Shirt', 281984), (245824, 245824, 250, 250, 'The Sacrificed Bracelet of Kay', 84058), (296558, 296558, 1, 1, 'The SantaL33T Action Figure', 296973), (156310, 156310, 1, 1, 'The Secret Revealed - How to create Kamikaze Robots', 37930), (156306, 156306, 1, 1, 'The Secret Revealed - Kamikaze Pets I and II', 37930), (100000, 100000, 1, 1, 'The Senior Advisor Suit', 99994), (251284, 251284, 1, 1, 'The Shot', 255618), (259722, 259722, 1, 1, 'The Sighting', 259718), (277849, 277849, 1, 1, 'The Skull Box Shirt', 277884), (288797, 288797, 1, 1, 'The Skull Box Shirt', 277884), (262348, 262348, 1, 1, 'The Song of Sorrow', 156212), (295147, 295147, 1, 1, 'The Sploit Hate Shirt', 295266), (296159, 296159, 2, 2, 'The Style', 205751), (296064, 296064, 1, 1, 'The Suit', 296063), (259838, 259838, 1, 1, 'The Sword in the Stone', 246020), (262287, 262287, 1, 1, 'The Tale Of The Stubborn Yuttos', 262224), (152218, 152173, 1, 200, 'The Third Eye of Daria', 149950), (289661, 289661, 1, 1, 'The Thousandth Winter', 37931), (293576, 293576, 1, 1, 'The Three Leet Moon Shirt', 293814), (248794, 248794, 1, 1, 'The Tiptoe Consortium''s Hula Hula Outfit', 255309), (262962, 262962, 1, 1, 'The Token T-Shirt', 262963), (303629, 303629, 1, 1, 'The Trash Buddy', 303669), (202801, 202801, 1, 1, 'The Turret - Build it yourself', 136331), (215443, 215443, 1, 1, 'The Unknown Path', 290379), (151885, 151885, 1, 1, 'The Veteran Advisor Suit', 151872), (152822, 152822, 1, 1, 'The Veteran Guardian', 151880), (296557, 296557, 1, 1, 'The VioL33T Action Figure', 296974), (301342, 301342, 1, 1, 'The White Mankini', 21876), (303056, 303056, 1, 1, 'The Wizdom of Huzzum', 43082), (263878, 263878, 1, 1, 'The Word of Ocra', 263875), (263877, 263877, 1, 1, 'The Word of Roch', 263876), (204610, 204610, 1, 1, 'The XXX Test Helmet (for Atrox)', 160562), (204611, 204611, 1, 1, 'The XXX Test Helmet (for Nano)', 160562), (204612, 204612, 1, 1, 'The XXX Test Helmet (for Opifex)', 160562), (204320, 204320, 1, 1, 'The XXX Test Helmet (for Solitus)', 160562), (301363, 301363, 1, 1, 'The Yellow Mankini', 290247), (277847, 277847, 1, 1, 'The Zooming Witch Shirt', 277895), (253353, 253353, 100, 100, 'The briefcase of Gilbert Glove', 99662), (262957, 262957, 100, 100, 'The briefcase of Omni-Pol Commissioner Lee', 99662), (262958, 262958, 100, 100, 'The briefcase of Omni-Pol Secretary Lambeer', 99662), (262960, 262960, 100, 100, 'The briefcase of Sentinel Commander Higgins', 99664), (262959, 262959, 100, 100, 'The briefcase of Unionist Agitator Scarpese', 99664), (258543, 258543, 1, 1, 'The fr00b T-shirt', 85945), (245905, 245905, 250, 250, 'The sacrificed wedding ring of Lady Ettard', 151933), (100345, 100345, 154, 154, 'Theft Secure Food Dispenser', 99234), (226141, 226142, 1, 500, 'Thermal Detonation', 239173), (226143, 226144, 1, 500, 'Thermal Detonation', 239173), (226145, 226146, 1, 500, 'Thermal Detonation', 239173), (227361, 227361, 1, 1, 'Thermal Primer', 239215), (287134, 287134, 200, 200, 'Thermal Radiation Unit', 287208), (130600, 130600, 1, 1, 'Thermos', 130559), (258256, 258256, 1, 1, 'Thermos', 100311), (295746, 295747, 1, 200, 'Thick Club', 295745), (163217, 163217, 200, 200, 'Thick Flesh Hood', 23001), (216283, 216283, 150, 150, 'Thick Leather Wristbands', 161086), (232862, 232863, 1, 149, 'Thick- serpent like gold bracelet', 84064), (232863, 232865, 150, 199, 'Thick- serpent like gold bracelet', 84064), (232865, 232866, 200, 249, 'Thick- serpent like gold bracelet', 84064), (232866, 232867, 250, 400, 'Thick- serpent like gold bracelet', 84064), (259954, 259954, 1, 1, 'Thigh of a Hiathlin', 259788), (259955, 259955, 1, 1, 'Thigh of a Hiathlin Prime', 259788), (200372, 200372, 1, 1, 'Thin Plasteel Loop', 151922), (200406, 200406, 1, 1, 'Thin Plasteel Loop full of Medusa Rings', 151922), (200380, 200380, 1, 1, 'Thin Plasteel Loop with eight Medusa Rings', 151922), (200390, 200390, 1, 1, 'Thin Plasteel Loop with eighteen Medusa Rings', 151922), (200383, 200383, 1, 1, 'Thin Plasteel Loop with eleven Medusa Rings', 151922), (200387, 200387, 1, 1, 'Thin Plasteel Loop with fifteen Medusa Rings', 151922), (200377, 200377, 1, 1, 'Thin Plasteel Loop with five Medusa Rings', 151922), (200376, 200376, 1, 1, 'Thin Plasteel Loop with four Medusa Rings', 151922), (200386, 200386, 1, 1, 'Thin Plasteel Loop with fourteen Medusa Rings', 151922), (200396, 200396, 1, 1, 'Thin Plasteel Loop with fourty Medusa Rings', 151922), (200404, 200404, 1, 1, 'Thin Plasteel Loop with fourty eight Medusa Rings', 151922), (200401, 200401, 1, 1, 'Thin Plasteel Loop with fourty five Medusa Rings', 151922), (200400, 200400, 1, 1, 'Thin Plasteel Loop with fourty four Medusa Rings', 151922), (200405, 200405, 1, 1, 'Thin Plasteel Loop with fourty nine Medusa Rings', 151922), (200397, 200397, 1, 1, 'Thin Plasteel Loop with fourty one Medusa Rings', 151922), (200403, 200403, 1, 1, 'Thin Plasteel Loop with fourty seven Medusa Rings', 151922), (200402, 200402, 1, 1, 'Thin Plasteel Loop with fourty six Medusa Rings', 151922), (200399, 200399, 1, 1, 'Thin Plasteel Loop with fourty three Medusa Rings', 151922), (200398, 200398, 1, 1, 'Thin Plasteel Loop with fourty two Medusa Rings', 151922), (200381, 200381, 1, 1, 'Thin Plasteel Loop with nine Medusa Rings', 151922), (200391, 200391, 1, 1, 'Thin Plasteel Loop with nineteen Medusa Rings', 151922), (200373, 200373, 1, 1, 'Thin Plasteel Loop with one Medusa Ring', 151922), (200379, 200379, 1, 1, 'Thin Plasteel Loop with seven Medusa Rings', 151922), (200389, 200389, 1, 1, 'Thin Plasteel Loop with seventeen Medusa Rings', 151922), (200378, 200378, 1, 1, 'Thin Plasteel Loop with six Medusa Rings', 151922), (200388, 200388, 1, 1, 'Thin Plasteel Loop with sixteen Medusa Rings', 151922), (200382, 200382, 1, 1, 'Thin Plasteel Loop with ten Medusa Rings', 151922), (200385, 200385, 1, 1, 'Thin Plasteel Loop with thirteen Medusa Rings', 151922), (200416, 200416, 1, 1, 'Thin Plasteel Loop with thirty Medusa Rings', 151922), (200394, 200394, 1, 1, 'Thin Plasteel Loop with thirty eight Medusa Rings', 151922), (200421, 200421, 1, 1, 'Thin Plasteel Loop with thirty five Medusa Rings', 151922), (200420, 200420, 1, 1, 'Thin Plasteel Loop with thirty four Medusa Rings', 151922), (200395, 200395, 1, 1, 'Thin Plasteel Loop with thirty nine Medusa Rings', 151922), (200417, 200417, 1, 1, 'Thin Plasteel Loop with thirty one Medusa Rings', 151922), (200393, 200393, 1, 1, 'Thin Plasteel Loop with thirty seven Medusa Rings', 151922), (200422, 200422, 1, 1, 'Thin Plasteel Loop with thirty six Medusa Rings', 151922), (200419, 200419, 1, 1, 'Thin Plasteel Loop with thirty three Medusa Rings', 151922), (200418, 200418, 1, 1, 'Thin Plasteel Loop with thirty two Medusa Rings', 151922), (200375, 200375, 1, 1, 'Thin Plasteel Loop with three Medusa Rings', 151922), (200384, 200384, 1, 1, 'Thin Plasteel Loop with twelve Medusa Rings', 151922), (200392, 200392, 1, 1, 'Thin Plasteel Loop with twenty Medusa Rings', 151922), (200414, 200414, 1, 1, 'Thin Plasteel Loop with twenty eight Medusa Rings', 151922), (200411, 200411, 1, 1, 'Thin Plasteel Loop with twenty five Medusa Rings', 151922), (200410, 200410, 1, 1, 'Thin Plasteel Loop with twenty four Medusa Rings', 151922), (200415, 200415, 1, 1, 'Thin Plasteel Loop with twenty nine Medusa Rings', 151922), (200407, 200407, 1, 1, 'Thin Plasteel Loop with twenty one Medusa Rings', 151922), (200413, 200413, 1, 1, 'Thin Plasteel Loop with twenty seven Medusa Rings', 151922), (200412, 200412, 1, 1, 'Thin Plasteel Loop with twenty six Medusa Rings', 151922), (200409, 200409, 1, 1, 'Thin Plasteel Loop with twenty three Medusa Rings', 151922), (200408, 200408, 1, 1, 'Thin Plasteel Loop with twenty two Medusa Rings', 151922), (200374, 200374, 1, 1, 'Thin Plasteel Loop with two Medusa Rings', 151922), (225415, 225415, 175, 175, 'Thin Shoulder Pad of Cama Thar', 30902), (225458, 225458, 175, 175, 'Thin Shoulder Pad of Urga Van', 30893), (232844, 232845, 1, 149, 'Thin but solid platinum Crown', 151933), (232845, 232847, 150, 199, 'Thin but solid platinum Crown', 151933), (232847, 232848, 200, 249, 'Thin but solid platinum Crown', 151933), (232848, 232849, 250, 400, 'Thin but solid platinum Crown', 151933), (232874, 232875, 1, 149, 'Thin platinum anklet', 151919), (232875, 232877, 150, 199, 'Thin platinum anklet', 151919), (232877, 232878, 200, 249, 'Thin platinum anklet', 151919), (232878, 232879, 250, 400, 'Thin platinum anklet', 151919), (242884, 242884, 1, 1, 'Things the Milliner needs to make Hyper-Radiation Protection Skin and Glasses', 154675), (206237, 206237, 1, 1, 'Third Circle of the Inner Sanctum', 151926), (206238, 206238, 1, 1, 'Third Circle of the Inner Sanctum', 151926), (206239, 206239, 1, 1, 'Third Circle of the Inner Sanctum', 151926), (239834, 239834, 1, 1, 'Third Portal Technician', 136596), (279946, 279946, 1, 1, 'Third Wave of Adds', 84059), (150803, 150804, 1, 10, 'This Axe Belonged to Jack', 13345), (150807, 150808, 21, 199, 'This Axe Belongs to Jack', 13345), (150809, 150809, 200, 200, 'This Axe Belongs to Jack too', 13345), (150805, 150806, 11, 20, 'This Axe Will Belong to Jack Again', 13345), (253472, 253472, 1, 1, 'This Means Bar', 255908), (253468, 253468, 1, 1, 'This Means Cabinet', 255945), (253470, 253470, 1, 1, 'This Means Chair', 255940), (253466, 253466, 1, 1, 'This Means Corner Couch', 255941), (253467, 253467, 1, 1, 'This Means Couch', 255942), (253478, 253478, 1, 1, 'This Means Endtable', 255967), (253469, 253469, 1, 1, 'This Means Expensive Couch', 255949), (253471, 253471, 1, 1, 'This Means Table', 255951), (230477, 230478, 50, 99, 'Thousand Stings of Boredom', 218707), (230479, 230480, 100, 149, 'Thousand Stings of Fatigue', 218707), (230483, 230484, 200, 249, 'Thousand Stings of Fear', 218707), (230487, 230487, 300, 300, 'Thousand Stings of Pain', 218707), (230485, 230486, 250, 299, 'Thousand Stings of Panic', 218707), (230481, 230482, 150, 199, 'Thousand Stings of Sorrow', 218707), (200464, 200464, 200, 200, 'Threatening Trousers', 30937), (292873, 292873, 1, 1, 'Three Leet Moon Poster', 293846), (301330, 301330, 30, 30, 'Threefold Bright Eye Twinking Implant', 12712), (301331, 301331, 30, 30, 'Threefold Faded Right Hand Twinking Implant', 12670), (301329, 301329, 30, 30, 'Threefold Shiny Brain Twinking Implant', 195261), (234915, 234915, 1, 1, 'Thrice Enchanted Hellion Trinity Talisman', 218767), (301653, 301653, 1, 1, 'Throbbing Pustule', 301677), (165122, 165123, 1, 200, 'Throwing Grenade Basic Kit', 156202), (156602, 156602, 100, 100, 'Thugs notebooks, Volume 1', 37933), (211280, 211281, 1, 299, 'Thunder Stick of Elysium', 13312), (296123, 296123, 1, 1, 'Thursdaze''s T-shirt', 296148), (296285, 296285, 1, 1, 'Thursdaze''s T-shirt', 296148), (296124, 296124, 1, 1, 'Thursdaze''s T-shirt Spawner', 296148), (252367, 252368, 1, 500, 'Tick', 239211), (252369, 252370, 1, 500, 'Tick', 239211), (252371, 252372, 1, 500, 'Tick', 239211), (296482, 296482, 1, 1, 'Tick Pack - Basic', 296481), (275396, 275396, 1, 1, 'Ticket', 154676), (101416, 101417, 1, 200, 'Time & Space Cluster - Bright (Right-Hand)', 36014), (101414, 101415, 1, 200, 'Time & Space Cluster - Faded (Eye)', 36013), (101418, 101419, 1, 200, 'Time & Space Cluster - Shiny (Head)', 36015), (277840, 277841, 1, 300, 'Time & Space Memory Cell', 276920), (165723, 165724, 201, 300, 'Time & Space Refined Cluster - Bright (Right-Hand)', 36014), (165721, 165722, 201, 300, 'Time & Space Refined Cluster - Faded (Eye)', 36013), (165725, 165726, 201, 300, 'Time & Space Refined Cluster - Shiny (Head)', 36015), (206291, 206292, 100, 199, 'Timmy Gun', 13312), (254317, 254317, 20, 20, 'Tinfoil Hat', 303238), (300590, 300590, 1, 1, 'Tinker Token', 205521), (304617, 304617, 1, 1, 'Tinkerer''s Loupe', 205749), (245425, 245425, 150, 150, 'Tiny Spider Band', 84068), (245426, 245426, 150, 150, 'Tiny Spider Band', 84068), (245427, 245427, 150, 150, 'Tiny Spider Band', 84068), (269312, 269312, 1, 1, 'Tissue Sample Collection Device', 99667), (165202, 165202, 200, 200, 'Titan Viper Tattoo', 96119), (136656, 136657, 1, 200, 'Toe-Ring', 25804), (248911, 248911, 1, 1, 'Toga of Redemption', 255320), (162441, 162441, 1, 1, 'Token Adder - One Charge (Clan)', 149945), (157484, 157484, 1, 1, 'Token Adder - One Charge (Omni)', 149945), (162442, 162442, 1, 1, 'Token Adder - Reusable (Clan)', 149946), (157485, 157485, 1, 1, 'Token Adder - Reusable (Omni)', 149946), (304167, 304167, 1, 1, 'Token Bundle', 100308), (288747, 288747, 1, 1, 'Token Package: 100', 259105), (294593, 294593, 1, 1, 'Token Package: 100', 259105), (288750, 288750, 1, 1, 'Token Package: 1000', 259105), (294596, 294596, 1, 1, 'Token Package: 1000', 259105), (288751, 288751, 1, 1, 'Token Package: 2000', 259105), (294597, 294597, 1, 1, 'Token Package: 2000', 259105), (288748, 288748, 1, 1, 'Token Package: 250', 259105), (294594, 294594, 1, 1, 'Token Package: 250', 259105), (288749, 288749, 1, 1, 'Token Package: 500', 259105), (294595, 294595, 1, 1, 'Token Package: 500', 259105), (259757, 259757, 1, 1, 'Tombstone', 265377), (262304, 262304, 1, 1, 'Tombstone', 262224), (262305, 262305, 1, 1, 'Tombstone', 262224), (262306, 262306, 1, 1, 'Tombstone', 262224), (262307, 262307, 1, 1, 'Tombstone', 262224), (262308, 262308, 1, 1, 'Tombstone', 262224), (262309, 262309, 1, 1, 'Tombstone', 262224), (262310, 262310, 1, 1, 'Tombstone', 262224), (251924, 251924, 1, 1, 'Tome_AI-spawn', 130862), (252415, 252415, 1, 1, 'Tome_AI-spawn-Boss', 130862), (263316, 263316, 1, 1, 'Tongue of LaCroix', 144709), (274584, 274584, 1, 1, 'Tool Table of Kaetan', 255909), (158913, 158913, 1, 1, 'Toothpicker', 13346), (296608, 296608, 1, 1, 'Top Hat', 296616), (41072, 41072, 1, 1, 'Top with a Blue Leopard Print', 37152), (41061, 41061, 1, 1, 'Top with a Blue Zebra Print', 37157), (41063, 41063, 1, 1, 'Top with a Grey Waterlily Print', 37154), (41068, 41068, 1, 1, 'Top with a Leopard Print', 37149), (41069, 41069, 1, 1, 'Top with a Rainbow Print', 37150), (41062, 41062, 1, 1, 'Top with a Waterlily Print', 37155), (41066, 41066, 1, 1, 'Top with a White Leopard Print', 37151), (41059, 41059, 1, 1, 'Top with a Zebra Print', 37156), (232780, 232781, 1, 149, 'Topaz', 286962), (232781, 232783, 150, 199, 'Topaz', 286962), (232783, 232784, 200, 249, 'Topaz', 286962), (232784, 232785, 250, 400, 'Topaz', 286962), (263312, 263312, 1, 1, 'Topographic Interferometer Specification Unit', 218771), (271088, 271089, 1, 300, 'Torch - 000', 85172), (271090, 271091, 1, 300, 'Torch - 010', 85172), (271092, 271093, 1, 300, 'Torch - 050', 85172), (271094, 271095, 1, 300, 'Torch - 070', 85172), (271096, 271097, 1, 300, 'Torch - 870', 85172), (163570, 163570, 1, 1, 'Torn parts and pieces of an old diary', 136332), (163566, 163566, 1, 1, 'Torn pieces of a diary', 136332), (157425, 157425, 1, 1, 'Tornado Fourtyone Herring Advantage', 81775), (225985, 225986, 1, 300, 'Torque of Citizenship', 151930), (223987, 223988, 80, 120, 'Torso Tattoo''s of Eric Miller', 226612), (223971, 223972, 80, 120, 'Torso Tattoo''s of Min-Li Jiu', 226622), (157898, 157899, 1, 199, 'Torturing Tool', 85160), (272370, 272370, 150, 150, 'Torus of Nano Energy', 272369), (285809, 285809, 200, 200, 'Touch of Marius (ALPHA)', 245769), (275018, 275018, 215, 215, 'Touch of Sai Fung', 43094), (204651, 204651, 1, 1, 'Touch of the Gripper', 12671), (220299, 220299, 200, 200, 'Touched by the devs ***Beta item only***', 151920), (205136, 205136, 1, 1, 'Tower No Crit Item', 84061), (226918, 226918, 1, 1, 'Toxic Shock', 239209), (214215, 214215, 1, 1, 'Toxic Shot', 154367), (226184, 226185, 1, 500, 'Tracer', 239127), (226186, 226187, 1, 500, 'Tracer', 239127), (226193, 226194, 1, 500, 'Tracer', 239127), (40821, 40821, 1, 1, 'Tracker Bug Prototype', 20404), (49572, 49572, 1, 1, 'Trade', 49558), (144740, 144740, 1, 1, 'Trade Caravan', 11606), (290186, 290186, 1, 1, 'Trader Action Figure', 290574), (215237, 215237, 100, 100, 'Trader NICS', 158233), (270769, 270769, 1, 1, 'Trader Nanodeck', 270749), (248266, 248266, 1, 1, 'Trader Nanoprogram Container', 292144), (290095, 290095, 1, 1, 'Trader Shirt', 287356), (245025, 245025, 20, 20, 'Trader''s Utility Belt', 11606), (43378, 43378, 1, 1, 'Trader: Startup Crystal - Weak Delayed Health Payment', 12228), (295858, 295858, 1, 1, 'Tradeskilling', 277964), (284657, 284657, 1, 1, 'Traditional Christmas Plate', 284653), (293110, 293110, 1, 1, 'Traffic Cone', 293096), (224722, 224722, 250, 250, 'Tragic Brain Spirit of Offence', 230992), (224945, 224945, 250, 250, 'Tragic Heart Spirit of Essence', 230984), (224978, 224978, 250, 250, 'Tragic Heart Spirit of Weakness', 230984), (225209, 225209, 250, 250, 'Tragic Left Hand Spirit of Defence', 230994), (225226, 225226, 250, 250, 'Tragic Left Hand Spirit of Strength', 230994), (225047, 225047, 250, 250, 'Tragic Left Limb Spirit of Essence', 230995), (225029, 225029, 250, 250, 'Tragic Left Limb Spirit of Strength', 230995), (224994, 224994, 250, 250, 'Tragic Left Limb Spirit of Understanding', 230995), (224858, 224858, 250, 250, 'Tragic Midriff Spirit of Essence', 230976), (224877, 224877, 250, 250, 'Tragic Midriff Spirit of Knowledge', 230976), (224912, 224912, 250, 250, 'Tragic Midriff Spirit of Strength', 230976), (225147, 225147, 250, 250, 'Tragic Right Hand Defencive Spirit', 231002), (224809, 224809, 250, 250, 'Tragic Right Limb Spirit of Strength', 231004), (224706, 224706, 250, 250, 'Tragic Spirit of Clear Thought', 230992), (224689, 224689, 250, 250, 'Tragic Spirit of Essence', 230988), (224792, 224792, 250, 250, 'Tragic Spirit of Essence Whispered', 230986), (225244, 225244, 250, 250, 'Tragic Spirit of Feet Strength', 230990), (225100, 225100, 250, 250, 'Tragic Spirit of Left Wrist Defense', 231000), (224658, 224658, 250, 250, 'Tragic Spirit of True Seeing', 230988), (200681, 200681, 1, 1, 'Trainee Rubber Boots', 37130), (200655, 200655, 1, 1, 'Trainee Rubber Gloves', 37109), (121612, 121613, 24, 46, 'Training Bladestaff', 21140), (143052, 143052, 1, 1, 'Training Bladestaff Construction Manual', 37932), (200653, 200653, 1, 1, 'Training Pistol', 33145), (214202, 214202, 1, 1, 'Tranquilizer', 239237), (285315, 285315, 1, 1, 'Transfer Password Information', 285191), (285380, 285380, 1, 1, 'Transfer Password Information', 285191), (226038, 226039, 1, 500, 'Transfix', 239099), (226040, 226041, 1, 500, 'Transfix', 239099), (226042, 226043, 1, 500, 'Transfix', 239099), (205741, 205741, 20, 20, 'Transformed Salesman''s Hat', 205772), (202743, 202744, 21, 40, 'Transfusion Rifle', 21146), (268486, 268486, 150, 150, 'Translated Alien Data Storage Crystal - Combat', 82988), (268488, 268488, 150, 150, 'Translated Alien Data Storage Crystal - Defense', 82988), (268491, 268491, 150, 150, 'Translated Alien Data Storage Crystal - Insight', 82988), (268490, 268490, 150, 150, 'Translated Alien Data Storage Crystal - Medical', 82988), (268487, 268487, 150, 150, 'Translated Alien Data Storage Crystal - Nano Technology', 82988), (268492, 268492, 150, 150, 'Translated Alien Data Storage Crystal - Protection', 82988), (268489, 268489, 150, 150, 'Translated Alien Data Storage Crystal - Technical', 82988), (156547, 156547, 1, 1, 'Transmission Bug', 156546), (288452, 288452, 1, 1, 'Transmographic Dimension Shifter', 289658), (260655, 260655, 1, 1, 'Transparent Muscle Strands', 156553), (218468, 218468, 100, 100, 'Transparent Novictum Gas', 20407), (246930, 246930, 1, 1, 'Transparent Thermostatic Vest', 13246), (101569, 101570, 1, 200, 'Trap Disarm Cluster - Bright (Left-Hand)', 35981), (101567, 101568, 1, 200, 'Trap Disarm Cluster - Faded (Head)', 35980), (101571, 101572, 1, 200, 'Trap Disarm Cluster - Shiny (Right-Hand)', 35982), (165747, 165748, 201, 300, 'Trap Disarm Refined Cluster - Bright (Left-Hand)', 35981), (165745, 165746, 201, 300, 'Trap Disarm Refined Cluster - Faded (Head)', 35980), (165749, 165750, 201, 300, 'Trap Disarm Refined Cluster - Shiny (Right-Hand)', 35982), (248853, 248853, 1, 1, 'Trapeze Artist Gloves of Elite Operations', 255166), (248854, 248854, 1, 1, 'Trapeze Artist Longs of Elite Operations', 255185), (248852, 248852, 1, 1, 'Trapeze Artist Shoes of Elite Operations', 255349), (248850, 248850, 1, 1, 'Trapeze Artist Sleeves of Elite Operations', 255246), (248851, 248851, 1, 1, 'Trapeze Artist Top of Elite Operations', 255304), (211251, 211252, 1, 299, 'Treasure of the Enigma', 211278), (304819, 304819, 1, 1, 'Treasured Santa Leet Doll', 274168), (101521, 101522, 1, 200, 'Treatment Cluster - Bright (Eye)', 36014), (101519, 101520, 1, 200, 'Treatment Cluster - Faded (Right-Hand)', 36013), (101523, 101524, 1, 200, 'Treatment Cluster - Shiny (Head)', 36015), (25812, 25811, 1, 199, 'Treatment Laboratory', 37989), (154339, 154340, 1, 200, 'Treatment Laboratory Bot-Injector', 154420), (161769, 161770, 1, 200, 'Treatment Library', 161869), (165681, 165682, 201, 300, 'Treatment Refined Cluster - Bright (Eye)', 36014), (165679, 165680, 201, 300, 'Treatment Refined Cluster - Faded (Right-Hand)', 36013), (165683, 165684, 201, 300, 'Treatment Refined Cluster - Shiny (Head)', 36015), (214120, 214120, 1, 1, 'Treatment Transfer', 239155), (161771, 161772, 1, 200, 'Treatment and Pharmacy Library', 161870), (300793, 300793, 1, 1, 'Tree Dress', 300796), (300837, 300837, 1, 1, 'Tree Hat', 300842), (204607, 204607, 1, 1, 'Tree of Enlightenment', 43082), (281451, 281451, 1, 1, 'Tree of Eternal Life', 227904), (226797, 226798, 1, 500, 'Tremor Hand', 239257), (226799, 226800, 1, 500, 'Tremor Hand', 239257), (226801, 226802, 1, 500, 'Tremor Hand', 239257), (226838, 226839, 1, 300, 'Trench Soldier''s Straps', 130735), (31516, 31516, 1, 1, 'Trenchcoat', 22891), (153960, 153999, 1, 200, 'Trenchcoat', 22891), (253452, 253452, 1, 1, 'Trendy Gannondorph Bookshelves', 255928), (253158, 253159, 1, 300, 'Triangular Kyr''Ozch Chip Mold', 130745), (226699, 226699, 1, 1, 'Triangulate Target', 239131), (253190, 253191, 1, 300, 'Trick Boots', 213557), (214161, 214162, 100, 199, 'Trick Poker', 210190), (214163, 214164, 200, 299, 'Trick Poker', 210190), (283665, 283666, 1, 500, 'Trigger Happy', 239059), (283667, 283668, 1, 500, 'Trigger Happy', 239059), (283669, 283670, 1, 500, 'Trigger Happy', 239059), (249107, 249107, 100, 100, 'Trimmer - Cold Damage Modifier', 292756), (88379, 88380, 10, 200, 'Trimmer - Divert Energy to Avoidance', 292752), (87893, 87936, 10, 200, 'Trimmer - Divert Energy to Defense', 292749), (88381, 88382, 10, 200, 'Trimmer - Divert Energy to Hitpoints', 292753), (88377, 88378, 10, 200, 'Trimmer - Divert Energy to Offense', 292751), (249110, 249110, 100, 100, 'Trimmer - Energy Damage Modifier', 292755), (249109, 249109, 100, 100, 'Trimmer - Fire Damage Modifier', 292795), (253188, 253189, 1, 300, 'Trimmer - Improve Actuators', 292754), (154939, 154940, 30, 200, 'Trimmer - Increase Aggressiveness', 292747), (88385, 88386, 1, 100, 'Trimmer - Negative Aggressive-Defensive', 292745), (88383, 88384, 1, 100, 'Trimmer - Positive Aggressive-Defensive', 292746), (154912, 154938, 1, 199, 'Trimmer Casing', 154935), (154938, 263824, 200, 300, 'Trimmer Casing', 154935), (130629, 130629, 1, 1, 'Triple Cherries', 37970), (40831, 40831, 1, 1, 'Triple Pinky', 20409), (137297, 137298, 1, 200, 'Triple Pulse Enabler', 130699), (271830, 271831, 1, 300, 'Triplejolt - 000', 13320), (271834, 271835, 1, 300, 'Triplejolt - 401', 13320), (271836, 271837, 1, 300, 'Triplejolt - C01', 13320), (121578, 121579, 70, 92, 'Tripler', 13344), (121580, 121581, 93, 115, 'Tripler', 13344), (271129, 271130, 1, 300, 'Tripler - 000', 13344), (271131, 271132, 1, 300, 'Tripler - 010', 13344), (271133, 271134, 1, 300, 'Tripler - 050', 13344), (271135, 271136, 1, 300, 'Tripler - 070', 13344), (271137, 271138, 1, 300, 'Tripler - 870', 13344), (165079, 165079, 1, 1, 'Tripler Construction Manual', 37933), (199393, 199393, 275, 275, 'Triumphant Bau Charger Armor Boots', 22878), (199414, 199414, 275, 275, 'Triumphant Bau Charger Armor Gloves', 22939), (199435, 199435, 275, 275, 'Triumphant Bau Charger Armor Helmet', 31738), (199456, 199456, 275, 275, 'Triumphant Bau Charger Armor Pants', 22928), (199477, 199477, 275, 275, 'Triumphant Bau Charger Armor Sleeves', 22889), (199498, 199498, 275, 275, 'Triumphant Bau Charger Body Armor', 22981), (199519, 199519, 275, 275, 'Triumphant Bau Charger Female Body Armor', 22942), (281506, 281506, 300, 300, 'Troa''Ler Pistol', 281583), (227068, 227068, 1, 1, 'Troll Form', 239003), (224961, 224961, 260, 260, 'Troubled Heart Spirit of Strength', 230984), (224979, 224979, 260, 260, 'Troubled Heart Spirit of Weakness', 230984), (225210, 225210, 260, 260, 'Troubled Left Hand Spirit of Defence', 230994), (225048, 225048, 260, 260, 'Troubled Left Limb Spirit of Essence', 230995), (225030, 225030, 260, 260, 'Troubled Left Limb Spirit of Strength', 230995), (224995, 224995, 260, 260, 'Troubled Left Limb Spirit of Understanding', 230995), (224859, 224859, 260, 260, 'Troubled Midriff Spirit of Essence', 230976), (224878, 224878, 260, 260, 'Troubled Midriff Spirit of Knowledge', 230976), (224913, 224913, 260, 260, 'Troubled Midriff Spirit of Strength', 230976), (225148, 225148, 260, 260, 'Troubled Right Hand Defencive Spirit', 231002), (224841, 224841, 260, 260, 'Troubled Right Limb Spirit of Essence', 231004), (225194, 225194, 260, 260, 'Troubled Spirit of Essence', 230998), (225262, 225262, 260, 260, 'Troubled Spirit of Feet Defense', 230990), (225245, 225245, 260, 260, 'Troubled Spirit of Feet Strength', 230990), (225168, 225168, 260, 260, 'Troubled Spirit of Insight - Right Hand', 231002), (225083, 225083, 260, 260, 'Troubled Spirit of Right Wrist Weakness', 231006), (224774, 224774, 260, 260, 'Troubled Spirit of Strength Whispered', 230986), (211244, 211244, 300, 300, 'True Ax of Violeta', 21136), (211277, 211277, 300, 300, 'True Fist of Justice', 13343), (159046, 159047, 150, 199, 'True Katana of the Brave Warrior', 13326), (159040, 159041, 1, 49, 'True Katana of the Cunning Farmer', 13326), (159048, 159048, 200, 200, 'True Katana of the Loyal Samurai', 13326), (159042, 159043, 50, 99, 'True Katana of the Wary Merchant', 13326), (159044, 159045, 100, 149, 'True Katana of the Wise Wanderer', 13326), (152707, 152707, 175, 175, 'True Knickers Stockings', 82873), (168932, 168932, 200, 200, 'Truspace 900 XL - Vision', 45781), (124341, 124342, 1, 39, 'Tsakachumi PTO-HV Counter-Sniper Rifle', 33155), (124343, 124344, 40, 79, 'Tsakachumi PTO-HV.2 Counter-Sniper Rifle', 33155), (124345, 124346, 80, 174, 'Tsakachumi PTO-HV3a Counter-Sniper Rifle', 33155), (124347, 124347, 175, 175, 'Tsakachumi PTO-HV6 Counter-Sniper Rifle', 33155), (152045, 152046, 1, 20, 'Tsubuyaite Miru GR-1', 33158), (152063, 152063, 200, 200, 'Tsubuyaite Miru GR-11', 33158), (152047, 152048, 21, 40, 'Tsubuyaite Miru GR-2', 33158), (152049, 152050, 41, 60, 'Tsubuyaite Miru GR-3', 33158), (152051, 152052, 61, 80, 'Tsubuyaite Miru GR-4', 33158), (152053, 152054, 81, 100, 'Tsubuyaite Miru GR-5.5', 33158), (152055, 152056, 101, 120, 'Tsubuyaite Miru GR-6', 33158), (152057, 152058, 121, 140, 'Tsubuyaite Miru GR-7', 33158), (152059, 152060, 141, 160, 'Tsubuyaite Miru GR-8', 33158), (152061, 152062, 161, 199, 'Tsubuyaite Miru GR-9', 33158), (208019, 208020, 140, 149, 'Tsunami BM-301 Bloodletter', 38055), (208021, 208021, 150, 150, 'Tsunami BM-302 Bloodletter', 38055), (271856, 271857, 1, 300, 'Tsunami Raiden MP-Drum - 000', 13311), (271860, 271861, 1, 300, 'Tsunami Raiden MP-Drum - 401', 13311), (271862, 271863, 1, 300, 'Tsunami Raiden MP-Drum - C01', 13311), (269397, 269397, 1, 1, 'Tube Container', 154193), (234904, 234904, 1, 1, 'Tube of Blood from a Fiery Imp', 100331), (225972, 225973, 1, 300, 'Tube of Dangerous Matter', 119163), (275462, 275462, 1, 1, 'Tube of Flexible Carbon Fiber', 205519), (152349, 152350, 101, 120, 'Tulip Parry Stick', 136738), (253748, 253748, 1, 1, 'Tulips Boots', 253703), (253751, 253751, 1, 1, 'Tulips Pants', 253719), (253750, 253750, 1, 1, 'Tulips Shirt', 253677), (253749, 253749, 1, 1, 'Tulips Sleeves', 270009), (292145, 292145, 1, 1, 'Tuned Agency Transmitter', 266694), (124621, 124622, 120, 199, 'Tuned MTI SO1210', 13340), (215366, 215366, 1, 1, 'Tunnel of Light', 239342), (121702, 121702, 200, 200, 'Turbo Mass Cannon 42mm', 21149), (137565, 137565, 1, 1, 'Turbo Mass Cannon 42mm Construction Manual', 136330), (246233, 246234, 100, 199, 'Turn Spirit Flesh Pouch', 246237), (246234, 246235, 200, 249, 'Turn Spirit Flesh Pouch', 246237), (246235, 246236, 250, 300, 'Turn Spirit Flesh Pouch', 246237), (215084, 215085, 100, 300, 'Turn Spirit of Aam', 131268), (215058, 215059, 100, 300, 'Turn Spirit of An-Bathel the Artful', 131260), (215086, 215087, 100, 300, 'Turn Spirit of Bacam-Xum', 131268), (215090, 215091, 100, 300, 'Turn Spirit of Beauty', 131268), (215106, 215107, 100, 300, 'Turn Spirit of Clever Cama Jodi', 131268), (215076, 215077, 100, 300, 'Turn Spirit of Fiery Hatred', 131268), (215116, 215117, 100, 300, 'Turn Spirit of Gil Ogimag the Defender', 131260), (215078, 215079, 100, 300, 'Turn Spirit of Laethosin the Leader', 131268), (215088, 215089, 100, 300, 'Turn Spirit of Lamal the Steadfast', 131268), (215080, 215081, 100, 300, 'Turn Spirit of Loyal Service', 131260), (215098, 215099, 100, 300, 'Turn Spirit of Melhig the Teacher', 131268), (215108, 215109, 100, 300, 'Turn Spirit of Nxame', 131260), (215094, 215095, 100, 300, 'Turn Spirit of Retrogression', 131268), (215062, 215063, 100, 300, 'Turn Spirit of Roaring Shacu-Nach', 131260), (215068, 215069, 100, 300, 'Turn Spirit of The Blinking', 131268), (215110, 215111, 100, 300, 'Turn Spirit of The Hearth', 131260), (215082, 215083, 100, 300, 'Turn Spirit of The Termite', 131260), (215064, 215065, 100, 300, 'Turn Spirit of the Bone Collector', 131260), (215072, 215073, 100, 300, 'Turn Spirit of the Caretaker', 131268), (215114, 215115, 100, 300, 'Turn Spirit of the Comforter', 131268), (215100, 215101, 100, 300, 'Turn Spirit of the Flesh Gardener', 131268), (215074, 215075, 100, 300, 'Turn Spirit of the Idealist', 131268), (215104, 215105, 100, 300, 'Turn Spirit of the Lord of Glass', 131268), (215070, 215071, 100, 300, 'Turn Spirit of the Masked Adjutant', 131268), (215092, 215093, 100, 300, 'Turn Spirit of the Minature', 131268), (215118, 215119, 100, 300, 'Turn Spirit of the Morning Girl', 131260), (215102, 215103, 100, 300, 'Turn Spirit of the Ninth Shepard', 131268), (215096, 215097, 100, 300, 'Turn Spirit of the Past', 131268), (215060, 215061, 100, 300, 'Turn Spirit of the Savage', 131260), (215112, 215113, 100, 300, 'Turn Spirit of the Shifter', 131268), (215056, 215057, 100, 300, 'Turn Spirit of the Tormentor', 131260), (215066, 215067, 100, 300, 'Turn Spirit of the True Seer', 131260), (160656, 160657, 1, 199, 'Turquoise Organic Combat Suit', 88041), (202582, 202582, 160, 160, 'Turret Construction Base', 203578), (202584, 202584, 160, 160, 'Turret Controller', 203579), (82218, 82218, 1, 1, 'Tutor', 82205), (101605, 101606, 1, 200, 'Tutoring Cluster - Bright (Ear)', 36014), (101603, 101604, 1, 200, 'Tutoring Cluster - Faded (Head)', 36013), (101607, 101608, 1, 200, 'Tutoring Cluster - Shiny (Eye)', 36015), (165783, 165784, 201, 300, 'Tutoring Refined Cluster - Bright (Ear)', 36014), (165781, 165782, 201, 300, 'Tutoring Refined Cluster - Faded (Head)', 36013), (165785, 165786, 201, 300, 'Tutoring Refined Cluster - Shiny (Eye)', 36015), (268721, 268721, 200, 200, 'Tutu', 268671), (165366, 165366, 200, 200, 'Twelve-Fingered Graspers of Ljotur', 21871), (257124, 257124, 300, 300, 'Twice Augmented Hellspinner Shock Cannon', 154361), (154687, 154687, 2, 2, 'Twice Burning Desire', 37944), (156047, 156047, 200, 200, 'Twice Charged Liquid Bomb', 131249), (234914, 234914, 1, 1, 'Twice Enchanted Hellion Trinity Talisman', 218766), (296606, 296606, 1, 1, 'Twigs', 296613), (305483, 305483, 1, 1, 'Twilight Entreatment Armor (Body)', 13249), (305481, 305481, 1, 1, 'Twilight Entreatment Armor (Boots)', 13265), (305484, 305484, 1, 1, 'Twilight Entreatment Armor (Gloves)', 13279), (305485, 305485, 1, 1, 'Twilight Entreatment Armor (Helmet)', 22269), (305486, 305486, 1, 1, 'Twilight Entreatment Armor (Pants)', 13294), (305482, 305482, 1, 1, 'Twilight Entreatment Armor (Sleeves)', 13227), (206204, 206204, 1, 1, 'Twilight''s Murder', 151921), (288836, 288836, 1, 1, 'Twinking Nano Can: Enhanced Senses', 296387), (303394, 303394, 1, 1, 'Twinking Nano Can: Enhanced Senses', 296387), (288861, 288861, 1, 1, 'Twinking Nano Can: Essence of Behemoth', 296393), (303396, 303396, 1, 1, 'Twinking Nano Can: Essence of Behemoth', 296393), (288839, 288839, 1, 1, 'Twinking Nano Can: Feline Grace', 296388), (303398, 303398, 1, 1, 'Twinking Nano Can: Feline Grace', 296388), (288862, 288862, 1, 1, 'Twinking Nano Can: Improved Essence of Behemoth', 296393), (303395, 303395, 1, 1, 'Twinking Nano Can: Improved Essence of Behemoth', 296393), (303397, 303397, 1, 1, 'Twinking Nano Can: Improved Essence of Behemoth', 296393), (288849, 288849, 1, 1, 'Twinking Nano Can: Iron Circle', 296389), (303399, 303399, 1, 1, 'Twinking Nano Can: Iron Circle', 296389), (288933, 288933, 1, 1, 'Twinking Nano Can: Neuronal Stimulator', 296392), (303400, 303400, 1, 1, 'Twinking Nano Can: Neuronal Stimulator', 296392), (288876, 288876, 1, 1, 'Twinking Nano Can: Prodigious Strength', 296391), (303401, 303401, 1, 1, 'Twinking Nano Can: Prodigious Strength', 296391), (288852, 288852, 1, 1, 'Twinking Nano Can: Superior First Aid', 296390), (303402, 303402, 1, 1, 'Twinking Nano Can: Superior First Aid', 296390), (300555, 300555, 1, 1, 'Twinking Nano Can: Treatment Transfer', 300553), (303391, 303391, 1, 1, 'Twinking Nano Can: Treatment Transfer', 300553), (214165, 214165, 300, 300, 'Twinkling Trick Poker', 210190), (130594, 130594, 1, 1, 'Twister', 37942), (150240, 150240, 160, 160, 'Twisting Ares Bio-Staff', 136738), (211239, 211240, 1, 299, 'Twisting Club of Muir-Mare', 85172), (274979, 274979, 300, 300, 'Twitch Pistol', 264785), (272270, 272271, 1, 300, 'Two Handed Blunt Weapons Basic Upgrade Kit', 272250), (272272, 272273, 1, 300, 'Two Handed Edged Weapons Basic Upgrade Kit', 272250), (245718, 245718, 250, 250, 'Two-Dimensional Hole', 203551), (208024, 208024, 150, 150, 'Two-Layered Saturated Metaplast Six-Shooter', 113995), (158841, 158842, 1, 199, 'Typical Dragon Tooth Poker', 131261), (199398, 199398, 300, 300, 'Uber Bau Charger Armor Boots', 22878), (199419, 199419, 300, 300, 'Uber Bau Charger Armor Gloves', 22939), (199440, 199440, 300, 300, 'Uber Bau Charger Armor Helmet', 31738), (199461, 199461, 300, 300, 'Uber Bau Charger Armor Pants', 22928), (199482, 199482, 300, 300, 'Uber Bau Charger Armor Sleeves', 22889), (199503, 199503, 300, 300, 'Uber Bau Charger Body Armor', 22981), (199524, 199524, 300, 300, 'Uber Bau Charger Female Body Armor', 22942), (162027, 162028, 380, 389, 'Uber Bau Cyber Armor Helmet', 31738), (162028, 162029, 390, 400, 'Uber Bau Cyber Armor Helmet', 31738), (215376, 215376, 300, 300, 'Uber imp!', 215185), (305525, 305525, 300, 300, 'Uklesh''s Talon', 210190), (155592, 155592, 205, 205, 'Ultimate Mass Relocating Robot', 155928), (160276, 160276, 400, 400, 'Ultra Advanced First-Aid Kit', 11708), (137231, 137232, 1, 200, 'Ultra Short Composite Barrel', 130713), (160295, 160295, 400, 400, 'Ultra Sophisticated Nano Kit', 11752), (271805, 271806, 1, 300, 'Ultra-Light Missile Pistol Raid 9-X - 000', 13315), (271809, 271810, 1, 300, 'Ultra-Light Missile Pistol Raid 9-X - 401', 13315), (271811, 271812, 1, 300, 'Ultra-Light Missile Pistol Raid 9-X - C01', 13315), (137239, 137240, 1, 200, 'Ultra-Long Composite Barrel', 130710), (295647, 295647, 1, 1, 'Umbral Essence', 233133), (301678, 301678, 1, 1, 'Umbral Hand Wraps of Restoration', 226647), (258817, 258817, 1, 1, 'Umbrella', 259097), (210157, 210157, 1, 1, 'Ummoh the Pedagogue Wearable', 84059), (168673, 168673, 198, 198, 'Un-repairable Pain of Patricia', 13311), (168674, 168674, 199, 199, 'Un-repairable Pain of Patricia', 13311), (212993, 212993, 198, 198, 'Un-repairable Reign of Patricia', 13311), (212994, 212994, 199, 199, 'Un-repairable Reign of Patricia', 13311), (160481, 160482, 1, 10, 'Un-repairable Sleekmaster Classic', 13329), (287202, 287202, 100, 100, 'Unaligned Building Structure: BFSHKASXCXZZZXXHHHHSASF!111', 287234), (301624, 301624, 2, 2, 'Unattuned Augmented Cyberdeck', 218706), (301623, 301623, 1, 1, 'Unattuned Basic Cyberdeck', 218706), (301627, 301627, 4, 4, 'Unattuned Izgimmer-modified Cyberdeck', 218706), (301626, 301626, 3, 3, 'Unattuned Jobe-chipped Cyberdeck', 218706), (295635, 295635, 1, 1, 'Unattuned Redeemed Key', 233133), (295638, 295638, 1, 1, 'Unattuned Redeemed Key', 233133), (266351, 266351, 200, 200, 'Unattuned Stripped Izgimmer-modified Cyberdeck', 218706), (295645, 295645, 1, 1, 'Unattuned Unredeemed Key', 233133), (122691, 122692, 1, 20, 'Unbalanced Advanced Baseballbat', 13335), (122729, 122730, 1, 20, 'Unbalanced Blackjack', 33169), (123114, 123115, 1, 20, 'Unbalanced Bow Split', 21134), (150871, 150870, 80, 109, 'Unbalanced Bracelet Blueprints', 151026), (150870, 150869, 110, 149, 'Unbalanced Bracelet Blueprints', 151023), (150869, 150867, 150, 179, 'Unbalanced Bracelet Blueprints', 151024), (150867, 150868, 180, 200, 'Unbalanced Bracelet Blueprints', 151025), (122064, 122065, 1, 20, 'Unbalanced Clean Slay Axe', 21141), (122140, 122141, 1, 20, 'Unbalanced Cutlass', 13347), (123343, 123344, 1, 20, 'Unbalanced Hand Axe', 13345), (130146, 130147, 21, 40, 'Unbalanced Hayfork', 85168), (130060, 130061, 1, 10, 'Unbalanced Heavy Staff', 136738), (206589, 206590, 1, 20, 'Unbalanced Improved Clean Slay Axe', 21141), (161700, 161701, 1, 20, 'Unbalanced Improved Stun-Baton', 13348), (123362, 123363, 1, 20, 'Unbalanced Lead Pipe', 85166), (122943, 122944, 1, 20, 'Unbalanced Mace', 13333), (123381, 123382, 1, 20, 'Unbalanced Meat-Cleaver', 85169), (121760, 121761, 1, 20, 'Unbalanced Mini Axe', 13345), (143540, 143540, 1, 1, 'Unbalanced Mini Axe Construction Manual', 37931), (123248, 123249, 60, 73, 'Unbalanced Nano-Charged Stun Glove', 45784), (130089, 130090, 21, 40, 'Unbalanced Native Alloy Staff', 136738), (121741, 121742, 1, 20, 'Unbalanced Right Slice', 21142), (143508, 143508, 1, 1, 'Unbalanced Right Slice Construction Manual', 37931), (123057, 123058, 1, 20, 'Unbalanced Ritual Krys Knife', 13346), (121950, 121951, 1, 20, 'Unbalanced Slank Chop', 21143), (129028, 129029, 21, 40, 'Unbalanced Sledgehammer', 33167), (122102, 122103, 1, 20, 'Unbalanced Stabber', 13346), (122848, 122849, 1, 20, 'Unbalanced Stun-Baton', 13348), (122829, 122830, 1, 20, 'Unbalanced Titanium Crowbar', 33166), (165361, 165361, 200, 200, 'Unbecoming Sleeves of Ljotur', 21848), (199690, 199690, 285, 285, 'Unbeliavable Nadir Homage Armor Boots', 22876), (199711, 199711, 285, 285, 'Unbeliavable Nadir Homage Armor Gloves', 22931), (199732, 199732, 285, 285, 'Unbeliavable Nadir Homage Armor Helmet', 31733), (199753, 199753, 285, 285, 'Unbeliavable Nadir Homage Armor Pants', 22914), (199774, 199774, 285, 285, 'Unbeliavable Nadir Homage Armor Sleeves', 22960), (199795, 199795, 285, 285, 'Unbeliavable Nadir Homage Body Armor', 22985), (231146, 231146, 1, 1, 'Unblemished blueprint', 231191), (230905, 230905, 1, 1, 'Uncertain', 82197), (128499, 128500, 36, 95, 'Uncle Bazzit (New) Custom 22mm', 113988), (128497, 128498, 1, 35, 'Uncle Bazzit Custom 22mm', 113988), (206670, 206671, 100, 199, 'Uncle Bazzit Diplomatic', 113988), (128501, 128501, 96, 96, 'Uncle Bazzit Rusty 22mm', 113988), (247794, 247794, 100, 100, 'Uncle Bazzit''s Bio-Mechanical AI', 247793), (247110, 247110, 100, 100, 'Uncle Bazzit''s Generic Nano-Solvent', 100333), (288553, 288553, 1, 1, 'Uncle Pumpkinhead - The Poster', 288576), (203096, 204583, 75, 250, 'Uncloak Pulse Turret', 202215), (203097, 204584, 75, 250, 'Uncloak Pulse Turret', 202215), (235405, 235405, 1, 1, 'Unconscious Brain Symbiant, Artillery Unit Aban', 215189), (236300, 236300, 1, 1, 'Unconscious Brain Symbiant, Control Unit Aban', 215189), (235850, 235850, 1, 1, 'Unconscious Brain Symbiant, Extermination Unit Aban', 215189), (235632, 235632, 1, 1, 'Unconscious Brain Symbiant, Infantry Unit Aban', 215189), (236075, 236075, 1, 1, 'Unconscious Brain Symbiant, Support Unit Aban', 215188), (235458, 235458, 1, 1, 'Unconscious Chest Symbiant, Artillery Unit Aban', 215181), (236350, 236350, 1, 1, 'Unconscious Chest Symbiant, Control Unit Aban', 215183), (235902, 235902, 1, 1, 'Unconscious Chest Symbiant, Extermination Unit Aban', 215181), (235681, 235681, 1, 1, 'Unconscious Chest Symbiant, Infantry Unit Aban', 215181), (236125, 236125, 1, 1, 'Unconscious Chest Symbiant, Support Unit Aban', 215181), (235423, 235423, 1, 1, 'Unconscious Ear Symbiant, Artillery Unit Aban', 230977), (236315, 236315, 1, 1, 'Unconscious Ear Symbiant, Control Unit Aban', 230977), (235867, 235867, 1, 1, 'Unconscious Ear Symbiant, Extermination Unit Aban', 230977), (235647, 235647, 1, 1, 'Unconscious Ear Symbiant, Infantry Unit Aban', 230977), (236092, 236092, 1, 1, 'Unconscious Ear Symbiant, Support Unit Aban', 230977), (235597, 235597, 1, 1, 'Unconscious Feet Symbiant, Artillery Unit Aban', 215185), (236490, 236490, 1, 1, 'Unconscious Feet Symbiant, Control Unit Aban', 215185), (236041, 236041, 1, 1, 'Unconscious Feet Symbiant, Extermination Unit Aban', 215186), (235816, 235816, 1, 1, 'Unconscious Feet Symbiant, Infantry Unit Aban', 215187), (236269, 236269, 1, 1, 'Unconscious Feet Symbiant, Support Unit Aban', 215187), (235476, 235476, 1, 1, 'Unconscious Left Arm Symbiant, Artillery Unit Aban', 215179), (236367, 236367, 1, 1, 'Unconscious Left Arm Symbiant, Control Unit Aban', 215177), (235919, 235919, 1, 1, 'Unconscious Left Arm Symbiant, Extermination Unit Aban', 215175), (235697, 235697, 1, 1, 'Unconscious Left Arm Symbiant, Infantry Unit Aban', 215179), (236144, 236144, 1, 1, 'Unconscious Left Arm Symbiant, Support Unit Aban', 215175), (235580, 235580, 1, 1, 'Unconscious Left Hand Symbiant, Artillery Unit Aban', 215171), (236474, 236474, 1, 1, 'Unconscious Left Hand Symbiant, Control Unit Aban', 215172), (236024, 236024, 1, 1, 'Unconscious Left Hand Symbiant, Extermination Unit Aban', 215172), (235799, 235799, 1, 1, 'Unconscious Left Hand Symbiant, Infantry Unit Aban', 215172), (236253, 236253, 1, 1, 'Unconscious Left Hand Symbiant, Support Unit Aban', 215171), (235528, 235528, 1, 1, 'Unconscious Left Wrist Symbiant, Artillery Unit Aban', 215196), (236421, 236421, 1, 1, 'Unconscious Left Wrist Symbiant, Control Unit Aban', 215196), (235970, 235970, 1, 1, 'Unconscious Left Wrist Symbiant, Extermination Unit Aban', 215198), (235747, 235747, 1, 1, 'Unconscious Left Wrist Symbiant, Infantry Unit Aban', 215198), (236201, 236201, 1, 1, 'Unconscious Left Wrist Symbiant, Support Unit Aban', 215198), (219124, 219124, 1, 1, 'Unconscious Ocular Symbiant, Artillery Unit Aban', 230979), (236285, 236285, 1, 1, 'Unconscious Ocular Symbiant, Control Unit Aban', 230979), (235834, 235834, 1, 1, 'Unconscious Ocular Symbiant, Extermination Unit Aban', 230979), (235615, 235615, 1, 1, 'Unconscious Ocular Symbiant, Infantry Unit Aban', 230980), (236058, 236058, 1, 1, 'Unconscious Ocular Symbiant, Support Unit Aban', 230980), (235441, 235441, 1, 1, 'Unconscious Right Arm Symbiant, Artillery Unit Aban', 215176), (236332, 236332, 1, 1, 'Unconscious Right Arm Symbiant, Control Unit Aban', 215180), (235884, 235884, 1, 1, 'Unconscious Right Arm Symbiant, Extermination Unit Aban', 215178), (235664, 235664, 1, 1, 'Unconscious Right Arm Symbiant, Infantry Unit Aban', 215180), (236109, 236109, 1, 1, 'Unconscious Right Arm Symbiant, Support Unit Aban', 215178), (235545, 235545, 1, 1, 'Unconscious Right Hand Symbiant, Artillery Unit Aban', 215173), (236438, 236438, 1, 1, 'Unconscious Right Hand Symbiant, Control Unit Aban', 215173), (235988, 235988, 1, 1, 'Unconscious Right Hand Symbiant, Extermination Unit Aban', 215173), (235764, 235764, 1, 1, 'Unconscious Right Hand Symbiant, Infantry Unit Aban', 215174), (236219, 236219, 1, 1, 'Unconscious Right Hand Symbiant, Support Unit Aban', 215174), (235493, 235493, 1, 1, 'Unconscious Right Wrist Symbiant, Artillery Unit Aban', 215170), (236385, 236385, 1, 1, 'Unconscious Right Wrist Symbiant, Control Unit Aban', 215170), (235936, 235936, 1, 1, 'Unconscious Right Wrist Symbiant, Extermination Unit Aban', 215170), (235714, 235714, 1, 1, 'Unconscious Right Wrist Symbiant, Infantry Unit Aban', 215197), (236165, 236165, 1, 1, 'Unconscious Right Wrist Symbiant, Support Unit Aban', 215197), (235563, 235563, 1, 1, 'Unconscious Thigh Symbiant, Artillery Unit Aban', 215190), (236456, 236456, 1, 1, 'Unconscious Thigh Symbiant, Control Unit Aban', 215191), (236006, 236006, 1, 1, 'Unconscious Thigh Symbiant, Extermination Unit Aban', 215192), (235782, 235782, 1, 1, 'Unconscious Thigh Symbiant, Infantry Unit Aban', 215191), (236236, 236236, 1, 1, 'Unconscious Thigh Symbiant, Support Unit Aban', 215190), (235510, 235510, 1, 1, 'Unconscious Waist Symbiant, Artillery Unit Aban', 215194), (236403, 236403, 1, 1, 'Unconscious Waist Symbiant, Control Unit Aban', 215193), (235953, 235953, 1, 1, 'Unconscious Waist Symbiant, Extermination Unit Aban', 215193), (235730, 235730, 1, 1, 'Unconscious Waist Symbiant, Infantry Unit Aban', 215193), (236184, 236184, 1, 1, 'Unconscious Waist Symbiant, Support Unit Aban', 215193), (168514, 168514, 80, 80, 'Uncut Arbiter Gem of Burning Plasma', 136594), (168798, 168798, 80, 80, 'Uncut Arbiter Gem of Corroded Glory', 151032), (230297, 230297, 80, 80, 'Uncut Arbiter Gem of Decayed Glory', 151032), (230093, 230093, 80, 80, 'Uncut Arbiter Gem of Fiery Plasma', 136594), (230046, 230046, 80, 80, 'Uncut Arbiter Gem of the Broken Moebius', 151029), (168474, 168474, 80, 80, 'Uncut Arbiter Gem of the Bruised Brawler', 25795), (230217, 230217, 80, 80, 'Uncut Arbiter Gem of the Craggy Landscape', 43071), (230137, 230137, 80, 80, 'Uncut Arbiter Gem of the Empty Desert', 25796), (165390, 165390, 80, 80, 'Uncut Arbiter Gem of the Eternal Juggernaut', 25796), (229985, 229985, 80, 80, 'Uncut Arbiter Gem of the Frail Juggernaut', 25796), (168621, 168621, 80, 80, 'Uncut Arbiter Gem of the Frozen Tundra', 43072), (230177, 230177, 80, 80, 'Uncut Arbiter Gem of the Icy Tundra', 43072), (168433, 168433, 80, 80, 'Uncut Arbiter Gem of the Infinite Moebius', 151029), (230337, 230337, 80, 80, 'Uncut Arbiter Gem of the Insidious Killer', 43072), (168718, 168718, 80, 80, 'Uncut Arbiter Gem of the Jagged Landscape', 43071), (230052, 230052, 80, 80, 'Uncut Arbiter Gem of the Novice Brawler', 25795), (168758, 168758, 80, 80, 'Uncut Arbiter Gem of the Rainbow-hued Sky', 151027), (230257, 230257, 80, 80, 'Uncut Arbiter Gem of the Scarlet Sky', 151027), (168554, 168554, 80, 80, 'Uncut Arbiter Gem of the Searing Desert', 25796), (168844, 168844, 80, 80, 'Uncut Arbiter Gem of the Silent Killer', 43072), (168516, 168516, 130, 130, 'Uncut Emperor Gem of Burning Plasma', 151029), (168800, 168800, 130, 130, 'Uncut Emperor Gem of Corroded Glory', 25799), (230299, 230299, 130, 130, 'Uncut Emperor Gem of Decayed Glory', 25794), (230096, 230096, 130, 130, 'Uncut Emperor Gem of Fiery Plasma', 25794), (230008, 230008, 130, 130, 'Uncut Emperor Gem of the Broken Moebius', 25794), (168476, 168476, 130, 130, 'Uncut Emperor Gem of the Bruised Brawler', 25801), (230219, 230219, 130, 130, 'Uncut Emperor Gem of the Craggy Landscape', 25794), (230139, 230139, 130, 130, 'Uncut Emperor Gem of the Empty Desert', 25794), (165392, 165392, 130, 130, 'Uncut Emperor Gem of the Eternal Juggernaut', 136594), (229987, 229987, 130, 130, 'Uncut Emperor Gem of the Frail Juggernaut', 25794), (168623, 168623, 130, 130, 'Uncut Emperor Gem of the Frozen Tundra', 25799), (230179, 230179, 130, 130, 'Uncut Emperor Gem of the Icy Tundra', 25794), (168435, 168435, 130, 130, 'Uncut Emperor Gem of the Infinite Moebius', 136597), (230339, 230339, 130, 130, 'Uncut Emperor Gem of the Insidious Killer', 25794), (168720, 168720, 130, 130, 'Uncut Emperor Gem of the Jagged Landscape', 151033), (230054, 230054, 130, 130, 'Uncut Emperor Gem of the Novice Brawler', 25794), (168760, 168760, 130, 130, 'Uncut Emperor Gem of the Rainbow-hued Sky', 136597), (230259, 230259, 130, 130, 'Uncut Emperor Gem of the Scarlet Sky', 25794), (168556, 168556, 130, 130, 'Uncut Emperor Gem of the Searing Desert', 25794), (168846, 168846, 130, 130, 'Uncut Emperor Gem of the Silent Killer', 151030), (168518, 168518, 200, 200, 'Uncut Galactic Jewel of Burning Plasma', 25801), (168802, 168802, 200, 200, 'Uncut Galactic Jewel of Corroded Glory', 25796), (230301, 230301, 200, 200, 'Uncut Galactic Jewel of Decayed Glory', 25794), (230098, 230098, 200, 200, 'Uncut Galactic Jewel of Fiery Plasma', 25794), (230010, 230010, 200, 200, 'Uncut Galactic Jewel of the Broken Moebius', 25794), (168478, 168478, 200, 200, 'Uncut Galactic Jewel of the Bruised Brawler', 25802), (230221, 230221, 200, 200, 'Uncut Galactic Jewel of the Craggy Landscape', 25794), (230141, 230141, 200, 200, 'Uncut Galactic Jewel of the Empty Desert', 25794), (165394, 165394, 200, 200, 'Uncut Galactic Jewel of the Eternal Juggernaut', 25798), (229989, 229989, 200, 200, 'Uncut Galactic Jewel of the Frail Juggernaut', 25794), (168625, 168625, 200, 200, 'Uncut Galactic Jewel of the Frozen Tundra', 151033), (230181, 230181, 200, 200, 'Uncut Galactic Jewel of the Icy Tundra', 25794), (168437, 168437, 200, 200, 'Uncut Galactic Jewel of the Infinite Moebius', 151030), (230341, 230341, 200, 200, 'Uncut Galactic Jewel of the Insidious Killer', 25794), (168722, 168722, 200, 200, 'Uncut Galactic Jewel of the Jagged Landscape', 151030), (230056, 230056, 200, 200, 'Uncut Galactic Jewel of the Novice Brawler', 25794), (230261, 230261, 200, 200, 'Uncut Galactic Jewel of the Scarlet Sky', 25794), (168558, 168558, 200, 200, 'Uncut Galactic Jewel of the Searing Desert', 151032), (168848, 168848, 200, 200, 'Uncut Galactic Jewel of the Silent Killer', 151031), (168762, 168762, 200, 200, 'Uncut Galactic Jewel the Rainbow-hued Sky', 25801), (168515, 168515, 110, 110, 'Uncut Monarch Gem of Burning Plasma', 25794), (168799, 168799, 110, 110, 'Uncut Monarch Gem of Corroded Glory', 151030), (230298, 230298, 110, 110, 'Uncut Monarch Gem of Decayed Glory', 25794), (230094, 230094, 110, 110, 'Uncut Monarch Gem of Fiery Plasma', 25794), (230007, 230007, 110, 110, 'Uncut Monarch Gem of the Broken Moebius', 25794), (168475, 168475, 110, 110, 'Uncut Monarch Gem of the Bruised Brawler', 151029), (230218, 230218, 110, 110, 'Uncut Monarch Gem of the Craggy Landscape', 25794), (230138, 230138, 110, 110, 'Uncut Monarch Gem of the Empty Desert', 25794), (165391, 165391, 110, 110, 'Uncut Monarch Gem of the Eternal Juggernaut', 25794), (229986, 229986, 110, 110, 'Uncut Monarch Gem of the Frail Juggernaut', 25794), (168622, 168622, 110, 110, 'Uncut Monarch Gem of the Frozen Tundra', 25796), (230178, 230178, 110, 110, 'Uncut Monarch Gem of the Icy Tundra', 25794), (168434, 168434, 110, 110, 'Uncut Monarch Gem of the Infinite Moebius', 151033), (230338, 230338, 110, 110, 'Uncut Monarch Gem of the Insidious Killer', 25794), (168719, 168719, 110, 110, 'Uncut Monarch Gem of the Jagged Landscape', 25794), (230053, 230053, 110, 110, 'Uncut Monarch Gem of the Novice Brawler', 25794), (168759, 168759, 110, 110, 'Uncut Monarch Gem of the Rainbow-hued Sky', 25799), (230258, 230258, 110, 110, 'Uncut Monarch Gem of the Scarlet Sky', 25794), (168555, 168555, 110, 110, 'Uncut Monarch Gem of the Searing Desert', 136596), (168845, 168845, 110, 110, 'Uncut Monarch Gem of the Silent Killer', 25796), (168517, 168517, 165, 165, 'Uncut Stellar Jewel of Burning Plasma', 43071), (168801, 168801, 165, 165, 'Uncut Stellar Jewel of Corroded Glory', 151031), (230300, 230300, 165, 165, 'Uncut Stellar Jewel of Decayed Glory', 25794), (230097, 230097, 165, 165, 'Uncut Stellar Jewel of Fiery Plasma', 25794), (230009, 230009, 165, 165, 'Uncut Stellar Jewel of the Broken Moebius', 25794), (168477, 168477, 165, 165, 'Uncut Stellar Jewel of the Bruised Brawler', 151031), (230220, 230220, 165, 165, 'Uncut Stellar Jewel of the Craggy Landscape', 25794), (230140, 230140, 165, 165, 'Uncut Stellar Jewel of the Empty Desert', 25794), (165393, 165393, 165, 165, 'Uncut Stellar Jewel of the Eternal Juggernaut', 25801), (229988, 229988, 165, 165, 'Uncut Stellar Jewel of the Frail Juggernaut', 25794), (168624, 168624, 165, 165, 'Uncut Stellar Jewel of the Frozen Tundra', 151029), (230180, 230180, 165, 165, 'Uncut Stellar Jewel of the Icy Tundra', 25794), (168436, 168436, 165, 165, 'Uncut Stellar Jewel of the Infinite Moebius', 151028), (230340, 230340, 165, 165, 'Uncut Stellar Jewel of the Insidious Killer', 25794), (168721, 168721, 165, 165, 'Uncut Stellar Jewel of the Jagged Landscape', 136593), (230055, 230055, 165, 165, 'Uncut Stellar Jewel of the Novice Brawler', 25794), (168761, 168761, 165, 165, 'Uncut Stellar Jewel of the Rainbow-hued Sky', 151031), (230260, 230260, 165, 165, 'Uncut Stellar Jewel of the Scarlet Sky', 25794), (168557, 168557, 165, 165, 'Uncut Stellar Jewel of the Searing Desert', 151030), (168847, 168847, 165, 165, 'Uncut Stellar Jewel of the Silent Killer', 151029), (206886, 206886, 10, 10, 'Undamaged Piece of Rubbery Rollerrat Flesh', 144702), (165274, 165274, 1, 1, 'Undamaged Roller-Rat tail', 144710), (230911, 230911, 1, 1, 'Undecided', 82197), (230902, 230902, 1, 1, 'Undefinable', 82197), (230910, 230910, 1, 1, 'Undetermined', 82197), (285747, 285747, 1, 1, 'Unexamined Alien Spongle', 285750), (157667, 157668, 1, 200, 'Unfinished Alsaqri Chemical Rifle', 13312), (150843, 150844, 80, 149, 'Unfinished Bracelet of Arul Saba', 151026), (150846, 150847, 80, 110, 'Unfinished Bracelet of Arul Saba', 151026), (150833, 150834, 110, 149, 'Unfinished Bracelet of Arul Saba', 151026), (150836, 150837, 110, 179, 'Unfinished Bracelet of Arul Saba', 151026), (150841, 150842, 110, 150, 'Unfinished Bracelet of Arul Saba', 151023), (150818, 150819, 150, 200, 'Unfinished Bracelet of Arul Saba', 151023), (150820, 150821, 150, 179, 'Unfinished Bracelet of Arul Saba', 151026), (150832, 150832, 150, 150, 'Unfinished Bracelet of Arul Saba', 151023), (150834, 150835, 150, 200, 'Unfinished Bracelet of Arul Saba', 151026), (150844, 150845, 150, 200, 'Unfinished Bracelet of Arul Saba', 151024), (150821, 150822, 180, 200, 'Unfinished Bracelet of Arul Saba', 151026), (150825, 150825, 180, 180, 'Unfinished Bracelet of Arul Saba', 151024), (150826, 150827, 180, 200, 'Unfinished Bracelet of Arul Saba', 151024), (150828, 150828, 180, 180, 'Unfinished Bracelet of Arul Saba', 151023), (150829, 150830, 180, 200, 'Unfinished Bracelet of Arul Saba', 151023), (150831, 150831, 180, 180, 'Unfinished Bracelet of Arul Saba', 151026), (150837, 150838, 180, 200, 'Unfinished Bracelet of Arul Saba', 151025), (150840, 150840, 180, 180, 'Unfinished Bracelet of Arul Saba', 151025), (150817, 150817, 200, 200, 'Unfinished Bracelet of Arul Saba', 151026), (150823, 150823, 200, 200, 'Unfinished Bracelet of Arul Saba', 151024), (150824, 150824, 200, 200, 'Unfinished Bracelet of Arul Saba', 151025), (157673, 157674, 1, 200, 'Unfinished HSR Explorer 661', 29116), (157645, 157646, 1, 200, 'Unfinished IMI Tellus TT', 13313), (162906, 162907, 1, 200, 'Unfinished Ithaca Ki12 Vulture', 113989), (162936, 162937, 1, 200, 'Unfinished River Seasons XP', 29116), (157655, 157656, 1, 200, 'Unfinished Soft Pepper Pistol', 113995), (157651, 157652, 1, 200, 'Unfinished Sol Chironis Systems', 33154), (157451, 157452, 1, 200, 'Unfinished Summer SMP', 33156), (206197, 206197, 1, 1, 'Unhallowed Bloodseal of the Infernal Tyrant', 25801), (205963, 205963, 1, 1, 'Unhallowed Carapace of the Infernal Tyrant (Body)', 21977), (205966, 205966, 1, 1, 'Unhallowed Carapace of the Infernal Tyrant (Boots)', 21978), (205965, 205965, 1, 1, 'Unhallowed Carapace of the Infernal Tyrant (Gloves)', 21979), (205967, 205967, 1, 1, 'Unhallowed Carapace of the Infernal Tyrant (Helmet)', 22270), (205964, 205964, 1, 1, 'Unhallowed Carapace of the Infernal Tyrant (Pants)', 21980), (205962, 205962, 1, 1, 'Unhallowed Carapace of the Infernal Tyrant (Sleeves)', 21976), (206016, 206016, 1, 1, 'Unhallowed Chalice', 37929), (210895, 210895, 1, 1, 'Unhallowed Fury', 82201), (210882, 210883, 1, 500, 'Unhallowed Fury Item', 13326), (210884, 210885, 1, 500, 'Unhallowed Fury Item', 13326), (210886, 210887, 1, 500, 'Unhallowed Fury Item', 13326), (210888, 210889, 1, 500, 'Unhallowed Fury Item', 13326), (272391, 272392, 1, 500, 'Unhallowed Wrath', 13326), (272393, 272394, 1, 500, 'Unhallowed Wrath Item', 13326), (272395, 272396, 1, 500, 'Unhallowed Wrath Item', 13326), (272397, 272398, 1, 500, 'Unhallowed Wrath Item', 13326), (224946, 224946, 270, 270, 'Unhappy Heart Spirit of Essence', 230984), (224927, 224927, 270, 270, 'Unhappy Heart Spirit of Knowledge', 230984), (225211, 225211, 270, 270, 'Unhappy Left Hand Spirit of Defence', 230994), (225031, 225031, 270, 270, 'Unhappy Left Limb Spirit of Strength', 230995), (225012, 225012, 270, 270, 'Unhappy Left Limb Spirit of Weakness', 230995), (224879, 224879, 270, 270, 'Unhappy Midriff Spirit of Knowledge', 230976), (224842, 224842, 270, 270, 'Unhappy Right Limb Spirit of Essence', 231004), (224810, 224810, 270, 270, 'Unhappy Right Limb Spirit of Strength', 231004), (225187, 225187, 270, 270, 'Unhappy Spirit of Defense', 230998), (224674, 224674, 270, 270, 'Unhappy Spirit of Discerning Weakness', 230988), (224690, 224690, 270, 270, 'Unhappy Spirit of Essence', 230998), (224793, 224793, 270, 270, 'Unhappy Spirit of Essence Whispered', 230986), (225263, 225263, 270, 270, 'Unhappy Spirit of Feet Defense', 230990), (225169, 225169, 270, 270, 'Unhappy Spirit of Insight - Right Hand', 231002), (225101, 225101, 270, 270, 'Unhappy Spirit of Left Wrist Defense', 231000), (225064, 225064, 270, 270, 'Unhappy Spirit of Right Wrist Offence', 231006), (224659, 224659, 270, 270, 'Unhappy Spirit of True Seeing', 230988), (128607, 128607, 180, 180, 'Unharmed D-nort Compact Assault Rifle', 114016), (260426, 260426, 1, 1, 'Unicorn Authorization', 151933), (246863, 246863, 1, 1, 'Unicorn Cloak', 22905), (267556, 267556, 1, 1, 'Unicorn Commendation', 259105), (267557, 267557, 1, 1, 'Unicorn Commendation', 259105), (275630, 275630, 1, 1, 'Unicorn Company Quantum Information Nano Inhibiter Device', 99275), (286077, 286077, 1, 1, 'Unicorn Death Item', 84059), (278870, 278870, 1, 1, 'Unicorn Edition: Laser Tagging Device', 266694), (285812, 285812, 220, 220, 'Unicorn Intercom', 285848), (279245, 279245, 1, 1, 'Unicorn Interpretation Program', 255263), (303223, 303223, 1, 1, 'Unicorn Kyr''Ozch Stat Purge', 255962), (268683, 268683, 250, 250, 'Unicorn Laser Cage Beacon - (ULCB)', 156503), (284702, 284702, 1, 1, 'Unicorn Mainframe', 277964), (288082, 288082, 1, 1, 'Unicorn Nanobot Bomb', 288078), (257455, 257455, 1, 1, 'Unicorn Portal Wearable', 16248), (257352, 257352, 1, 1, 'Unicorn Scriptstarter Item', 16248), (256594, 256594, 1, 1, 'Unicorn Ship Ring', 151931), (293587, 293587, 1, 1, 'Unicorn Teleportation Beacon', 100339), (285752, 285752, 1, 1, 'Unicorn Weapon Crate', 285749), (275529, 275529, 1, 1, 'Unicorn-Modified Hacking Tool', 99275), (275530, 275530, 1, 1, 'Unicorn-Modified Hacking Tool - Full', 99274), (253392, 253392, 1, 1, 'Unidentified Toxin', 100311), (82913, 82913, 1, 1, 'Uniform Boots', 82873), (82911, 82911, 1, 1, 'Uniform Pants', 82872), (82912, 82912, 1, 1, 'Uniform Shirt', 82875), (82919, 82919, 1, 1, 'Uniform Sleeves', 82874), (208085, 208086, 115, 134, 'Unionist Arbalest', 114013), (201812, 204691, 1, 99, 'Universal Advantage - Access', 81781), (204691, 201813, 100, 199, 'Universal Advantage - Access', 81781), (201813, 201814, 200, 300, 'Universal Advantage - Access', 81781), (201764, 204676, 1, 99, 'Universal Advantage - Arcane Aim', 81778), (204676, 201765, 100, 199, 'Universal Advantage - Arcane Aim', 81778), (201765, 201766, 200, 300, 'Universal Advantage - Arcane Aim', 81778), (201755, 204673, 1, 99, 'Universal Advantage - Ballistics', 81775), (204673, 201756, 100, 199, 'Universal Advantage - Ballistics', 81775), (201756, 201757, 200, 300, 'Universal Advantage - Ballistics', 81775), (201827, 204696, 1, 99, 'Universal Advantage - Chemicals', 81783), (204696, 201828, 100, 199, 'Universal Advantage - Chemicals', 81783), (201828, 201829, 200, 300, 'Universal Advantage - Chemicals', 81783), (201740, 204668, 1, 99, 'Universal Advantage - Concentration', 81784), (204668, 201741, 100, 199, 'Universal Advantage - Concentration', 81784), (201741, 201742, 200, 300, 'Universal Advantage - Concentration', 81784), (201761, 204675, 1, 99, 'Universal Advantage - Coordination', 81779), (204675, 201762, 100, 199, 'Universal Advantage - Coordination', 81779), (201762, 201763, 200, 300, 'Universal Advantage - Coordination', 81779), (201758, 204674, 1, 99, 'Universal Advantage - Energy Expertise', 81779), (204674, 201759, 100, 199, 'Universal Advantage - Energy Expertise', 81779), (201759, 201760, 200, 300, 'Universal Advantage - Energy Expertise', 81779), (201815, 204692, 1, 99, 'Universal Advantage - Espionage', 81781), (204692, 201816, 100, 199, 'Universal Advantage - Espionage', 81781), (201816, 201817, 200, 300, 'Universal Advantage - Espionage', 81781), (201737, 204666, 1, 99, 'Universal Advantage - Harmony', 81784), (204666, 201738, 100, 199, 'Universal Advantage - Harmony', 81784), (201738, 201739, 200, 300, 'Universal Advantage - Harmony', 81784), (201731, 204664, 1, 99, 'Universal Advantage - Heart Pump Boost', 81777), (204664, 201732, 100, 199, 'Universal Advantage - Heart Pump Boost', 81777), (201732, 201733, 200, 300, 'Universal Advantage - Heart Pump Boost', 81777), (201770, 204678, 1, 99, 'Universal Advantage - Heavy Aim', 81778), (204678, 201771, 100, 199, 'Universal Advantage - Heavy Aim', 81778), (201771, 201772, 200, 300, 'Universal Advantage - Heavy Aim', 81778), (201746, 204670, 1, 99, 'Universal Advantage - Heavy Arc', 81775), (204670, 201747, 100, 199, 'Universal Advantage - Heavy Arc', 81775), (201747, 201748, 200, 300, 'Universal Advantage - Heavy Arc', 81775), (201779, 204681, 1, 99, 'Universal Advantage - Heavy Balance', 81778), (204681, 201780, 100, 199, 'Universal Advantage - Heavy Balance', 81778), (201780, 201781, 200, 300, 'Universal Advantage - Heavy Balance', 81778), (201791, 204685, 1, 99, 'Universal Advantage - Improved Intuition', 81780), (204685, 201792, 100, 199, 'Universal Advantage - Improved Intuition', 81780), (201792, 201796, 200, 300, 'Universal Advantage - Improved Intuition', 81780), (201797, 204686, 1, 99, 'Universal Advantage - Improved Movement', 81780), (204686, 201798, 100, 199, 'Universal Advantage - Improved Movement', 81780), (201798, 201799, 200, 300, 'Universal Advantage - Improved Movement', 81780), (201767, 204677, 1, 99, 'Universal Advantage - Light Aim', 81778), (204677, 201768, 100, 199, 'Universal Advantage - Light Aim', 81778), (201768, 201769, 200, 300, 'Universal Advantage - Light Aim', 81778), (201743, 204669, 1, 99, 'Universal Advantage - Light Arc', 81775), (204669, 201744, 100, 199, 'Universal Advantage - Light Arc', 81775), (201744, 201745, 200, 300, 'Universal Advantage - Light Arc', 81775), (201776, 204680, 1, 99, 'Universal Advantage - Light Balance', 81778), (204680, 201777, 100, 199, 'Universal Advantage - Light Balance', 81778), (201777, 201778, 200, 300, 'Universal Advantage - Light Balance', 81778), (201833, 204667, 1, 99, 'Universal Advantage - Logic', 81784), (204667, 201834, 100, 199, 'Universal Advantage - Logic', 81784), (201834, 201835, 200, 300, 'Universal Advantage - Logic', 81784), (201821, 204694, 1, 99, 'Universal Advantage - Mechanics', 81783), (204694, 201822, 100, 199, 'Universal Advantage - Mechanics', 81783), (201822, 201823, 200, 300, 'Universal Advantage - Mechanics', 81783), (201809, 204690, 1, 99, 'Universal Advantage - Medical Expertise', 81782), (204690, 201810, 100, 199, 'Universal Advantage - Medical Expertise', 81782), (201810, 201811, 200, 300, 'Universal Advantage - Medical Expertise', 81782), (201785, 204683, 1, 99, 'Universal Advantage - Melee Expertise', 81780), (204683, 201786, 100, 199, 'Universal Advantage - Melee Expertise', 81780), (201786, 201787, 200, 300, 'Universal Advantage - Melee Expertise', 81780), (201803, 204688, 1, 99, 'Universal Advantage - Metaphysics', 81782), (204688, 201804, 100, 199, 'Universal Advantage - Metaphysics', 81782), (201804, 201805, 200, 300, 'Universal Advantage - Metaphysics', 81782), (201727, 204663, 1, 99, 'Universal Advantage - Muscular Compactness', 81777), (204663, 201728, 100, 199, 'Universal Advantage - Muscular Compactness', 81777), (201728, 201729, 200, 300, 'Universal Advantage - Muscular Compactness', 81777), (201734, 204665, 1, 99, 'Universal Advantage - Muscular Elasticity', 81777), (204665, 201735, 100, 199, 'Universal Advantage - Muscular Elasticity', 81777), (201735, 201736, 200, 300, 'Universal Advantage - Muscular Elasticity', 81777), (201830, 204697, 1, 99, 'Universal Advantage - Nano Manipulation', 81783), (204697, 201831, 100, 199, 'Universal Advantage - Nano Manipulation', 81783), (201831, 201832, 200, 300, 'Universal Advantage - Nano Manipulation', 81783), (201806, 204689, 1, 99, 'Universal Advantage - Personae', 81782), (204689, 201807, 100, 199, 'Universal Advantage - Personae', 81782), (201807, 201808, 200, 300, 'Universal Advantage - Personae', 81782), (201788, 204684, 1, 99, 'Universal Advantage - Physical Expertise', 81780), (204684, 201789, 100, 199, 'Universal Advantage - Physical Expertise', 81780), (201789, 201790, 200, 300, 'Universal Advantage - Physical Expertise', 81780), (201824, 204695, 1, 99, 'Universal Advantage - Power', 81783), (204695, 201825, 100, 199, 'Universal Advantage - Power', 81783), (201825, 201826, 200, 300, 'Universal Advantage - Power', 81783), (201782, 204682, 1, 99, 'Universal Advantage - Ranged Expertise', 81780), (204682, 201783, 100, 199, 'Universal Advantage - Ranged Expertise', 81780), (201783, 201784, 200, 300, 'Universal Advantage - Ranged Expertise', 81780), (201752, 204672, 1, 99, 'Universal Advantage - Reaction', 81775), (204672, 201753, 100, 199, 'Universal Advantage - Reaction', 81775), (201753, 201754, 200, 300, 'Universal Advantage - Reaction', 81775), (201773, 204679, 1, 99, 'Universal Advantage - Specialist Aim', 81778), (204679, 201774, 100, 199, 'Universal Advantage - Specialist Aim', 81778), (201774, 201775, 200, 300, 'Universal Advantage - Specialist Aim', 81778), (201749, 204671, 1, 99, 'Universal Advantage - Thrusting', 81775), (204671, 201750, 100, 199, 'Universal Advantage - Thrusting', 81775), (201750, 201751, 200, 300, 'Universal Advantage - Thrusting', 81775), (201800, 204687, 1, 99, 'Universal Advantage - Transformation', 81782), (204687, 201801, 100, 199, 'Universal Advantage - Transformation', 81782), (201801, 201802, 200, 300, 'Universal Advantage - Transformation', 81782), (201818, 204693, 1, 99, 'Universal Advantage - Transportation', 81781), (204693, 201819, 100, 199, 'Universal Advantage - Transportation', 81781), (201819, 201820, 200, 300, 'Universal Advantage - Transportation', 81781), (156537, 156538, 20, 80, 'Universal Office Worker Suit', 156355), (295767, 295767, 1, 1, 'Unknown Device', 297275), (295768, 295768, 1, 1, 'Unknown Device', 297275), (247444, 247444, 100, 100, 'Unknown Device', 247097), (281095, 281095, 1, 1, 'Unknown Mixture', 281093), (260422, 260422, 1, 1, 'Unlearning Device', 290826), (203818, 203819, 160, 200, 'Unmarked Yalmaha 29500 - The Stiletto', 203498), (235298, 235299, 1, 300, 'Unpolluted Crystal', 72765), (280482, 280482, 300, 300, 'Unpolluted Crystal', 72765), (214865, 214865, 1, 1, 'Unpolluted Notum Crystal set with the blueprint of a Trapped Soul', 231184), (296573, 296573, 1, 1, 'Unprogrammed DNA-Locking Device', 297390), (296572, 296572, 1, 1, 'Unprogrammed Identification Chip', 297390), (297144, 297144, 1, 1, 'Unredeemed Faction Package: 10000', 296959), (303374, 303374, 1, 1, 'Unredeemed Faction Package: 10000', 296959), (295656, 295656, 1, 1, 'Unredeemed-Attuned Novictum Infuser', 233133), (247786, 247786, 100, 100, 'Unrefined Notum Salt', 247785), (225465, 225465, 1, 1, 'Unsealed Blight', 239137), (225468, 225468, 1, 1, 'Unsealed Contagion', 239141), (225469, 225469, 1, 1, 'Unsealed Pestilence', 239139), (230909, 230909, 1, 1, 'Unsettled', 82197), (305974, 305974, 1, 1, 'Unstable Damage Augmentation Device', 218769), (164530, 164531, 1, 200, 'Unstable Preservation System', 149948), (164561, 164562, 1, 200, 'Unstable Space Reduction Chamber', 20412), (284290, 284290, 200, 200, 'Untuned Kyr''ozch Signal Relay', 284325), (199542, 199542, 285, 285, 'Ununbium Periodic Tech Armor Boots', 22886), (199563, 199563, 285, 285, 'Ununbium Periodic Tech Armor Gloves', 22933), (199584, 199584, 285, 285, 'Ununbium Periodic Tech Armor Helmet', 31731), (199606, 199606, 285, 285, 'Ununbium Periodic Tech Armor Pants', 22912), (199627, 199627, 285, 285, 'Ununbium Periodic Tech Armor Sleeves', 22911), (199648, 199648, 285, 285, 'Ununbium Periodic Tech Body Armor', 22990), (199669, 199669, 285, 285, 'Ununbium Periodic Tech Female Body Armor', 22909), (199544, 199544, 295, 295, 'Ununhexium Periodic Tech Armor Boots', 22886), (199565, 199565, 295, 295, 'Ununhexium Periodic Tech Armor Gloves', 22933), (199586, 199586, 295, 295, 'Ununhexium Periodic Tech Armor Helmet', 31731), (199608, 199608, 295, 295, 'Ununhexium Periodic Tech Armor Pants', 22912), (199629, 199629, 295, 295, 'Ununhexium Periodic Tech Armor Sleeves', 22911), (199650, 199650, 295, 295, 'Ununhexium Periodic Tech Body Armor', 22990), (199671, 199671, 295, 295, 'Ununhexium Periodic Tech Female Body Armor', 22909), (199545, 199545, 300, 300, 'Ununoctium Periodic Tech Armor Boots', 22886), (199566, 199566, 300, 300, 'Ununoctium Periodic Tech Armor Gloves', 22933), (199587, 199587, 300, 300, 'Ununoctium Periodic Tech Armor Helmet', 31731), (199609, 199609, 300, 300, 'Ununoctium Periodic Tech Armor Pants', 22912), (199630, 199630, 300, 300, 'Ununoctium Periodic Tech Armor Sleeves', 22911), (199651, 199651, 300, 300, 'Ununoctium Periodic Tech Body Armor', 22990), (199672, 199672, 300, 300, 'Ununoctium Periodic Tech Female Body Armor', 22909), (199543, 199543, 290, 290, 'Ununquadium Periodic Tech Armor Boots', 22886), (199564, 199564, 290, 290, 'Ununquadium Periodic Tech Armor Gloves', 22933), (199585, 199585, 290, 290, 'Ununquadium Periodic Tech Armor Helmet', 31731), (199607, 199607, 290, 290, 'Ununquadium Periodic Tech Armor Pants', 22912), (199628, 199628, 290, 290, 'Ununquadium Periodic Tech Armor Sleeves', 22911), (199649, 199649, 290, 290, 'Ununquadium Periodic Tech Body Armor', 22990), (199670, 199670, 290, 290, 'Ununquadium Periodic Tech Female Body Armor', 22909), (203573, 203573, 199, 199, 'Unusual Longshot', 13312), (294127, 294127, 1, 1, 'Unwrapped Gift', 294193), (257110, 257110, 1, 1, 'Upgraded Controller Recompiler Unit', 297742), (262750, 262751, 1, 99, 'Upgraded Otek Club', 262721), (262752, 262753, 100, 199, 'Upgraded Otek Club', 262721), (262754, 262755, 200, 299, 'Upgraded Otek Club', 262721), (262756, 262756, 300, 300, 'Upgraded Otek Club', 262721), (262778, 262779, 1, 99, 'Upgraded Otek Dicer', 262726), (262780, 262781, 100, 199, 'Upgraded Otek Dicer', 262726), (262782, 262783, 200, 299, 'Upgraded Otek Dicer', 262726), (262784, 262784, 300, 300, 'Upgraded Otek Dicer', 262726), (262792, 262793, 1, 99, 'Upgraded Otek Eviscerator', 262730), (262794, 262795, 100, 199, 'Upgraded Otek Eviscerator', 262730), (262796, 262797, 200, 299, 'Upgraded Otek Eviscerator', 262730), (262798, 262798, 300, 300, 'Upgraded Otek Eviscerator', 262730), (262764, 262765, 1, 99, 'Upgraded Otek Slicer', 262728), (262766, 262767, 100, 199, 'Upgraded Otek Slicer', 262728), (262768, 262769, 200, 299, 'Upgraded Otek Slicer', 262728), (262770, 262770, 300, 300, 'Upgraded Otek Slicer', 262728), (205404, 205405, 50, 199, 'Upon a Wave of Summer', 43079), (205405, 205406, 200, 300, 'Upon a Wave of Summer', 43079), (165364, 165364, 200, 200, 'Upper Part of Ljotur', 21856), (224723, 224723, 280, 280, 'Upset Brain Spirit of Offence', 230992), (224935, 224935, 280, 280, 'Upset Heart Spirit of Essence', 230984), (224962, 224962, 280, 280, 'Upset Heart Spirit of Strength', 230984), (225049, 225049, 280, 280, 'Upset Left Limb Spirit of Essence', 230995), (224860, 224860, 280, 280, 'Upset Midriff Spirit of Essence', 230976), (225149, 225149, 280, 280, 'Upset Right Hand Defencive Spirit', 231002), (224811, 224811, 280, 280, 'Upset Right Limb Spirit of Strength', 231004), (224827, 224827, 280, 280, 'Upset Right Limb Spirit of Weakness', 231004), (224691, 224691, 280, 280, 'Upset Spirit of Essence', 230998), (224794, 224794, 280, 280, 'Upset Spirit of Essence Whispered', 230986), (224758, 224758, 280, 280, 'Upset Spirit of Knowledge Whispered', 230986), (225119, 225119, 280, 280, 'Upset Spirit of Left Wrist Strength', 231000), (225065, 225065, 280, 280, 'Upset Spirit of Right Wrist Offence', 231006), (224775, 224775, 280, 280, 'Upset Spirit of Strength Whispered', 230986), (152089, 152090, 91, 120, 'Uptuned Abigail', 13314), (153597, 153597, 1, 1, 'Uptuned Abigail Construction Manual', 136332), (244581, 244581, 250, 250, 'Urbane Pants of Libra', 22914), (259758, 259758, 1, 1, 'Urgent Letter', 163062), (100341, 100341, 1, 1, 'Urgent Sensitive Information', 99234), (234644, 234645, 1, 299, 'Uriel Blade - Monster', 218712), (234646, 234646, 300, 300, 'Uriel Blade - Monster', 218712), (303094, 303094, 1, 1, 'Uriel Cleric Blade', 295422), (303095, 303095, 1, 1, 'Uriel Fencing Blade', 295339), (303093, 303093, 1, 1, 'Uriel Guardian Blade', 295420), (234647, 234648, 1, 299, 'Uriel Short Sword - Monster', 218713), (234649, 234649, 300, 300, 'Uriel Short Sword - Monster', 218713), (234638, 234639, 1, 299, 'Uriel Staff - Monster', 218714), (234640, 234640, 300, 300, 'Uriel Staff - Monster', 218714), (234641, 234642, 1, 299, 'Uriel Sword Staff - Monster', 218711), (234643, 234643, 300, 300, 'Uriel Sword Staff - Monster', 218711), (295419, 295419, 1, 1, 'Uriel''s Carmine Sword', 295420), (295416, 295416, 1, 1, 'Uriel''s Cerulean Sword', 295422), (295418, 295418, 1, 1, 'Uriel''s Citrine Sword', 295421), (295417, 295417, 1, 1, 'Uriel''s Coral Sword', 295423), (295338, 295338, 1, 1, 'Uriel''s Verdant Sword', 295339), (265350, 265350, 1, 1, 'Urn', 265351), (292075, 292075, 1, 1, 'Urn', 265351), (49571, 49571, 1, 1, 'Use', 49557), (287695, 287695, 1, 1, 'Use Item: Abduction AOE', 275961), (287772, 287772, 1, 1, 'Use Item: Power Ups', 275961), (123725, 123726, 12, 23, 'Used MTI M-1 Bipower', 13314), (124617, 124618, 1, 39, 'Used MTI SO1210', 13340), (254326, 254350, 1, 25, 'Useful Controller Recompiler Unit', 297737), (246871, 246871, 248, 248, 'Useless Hand-Mortar of Bacam-Xum', 233213), (246872, 246872, 249, 249, 'Useless Hand-Mortar of Bacam-Xum', 233213), (256036, 256036, 100, 100, 'Useless Kyr''Ozch Bio-Material', 255705), (121572, 121573, 1, 23, 'Useless Triple-Blade', 13344), (250651, 250651, 1, 1, 'Utilize', 255646), (129081, 129081, 180, 180, 'V-five Breathing Space', 13349), (129079, 129080, 150, 179, 'V-four Breathing Space', 13349), (129073, 129074, 60, 89, 'V-one Breathing Space', 13349), (129077, 129078, 120, 149, 'V-three Breathing Space', 13349), (129075, 129076, 90, 119, 'V-two Breathing Space', 13349), (282123, 282123, 1, 1, 'VIP Keycard', 281340), (292526, 292526, 1, 1, 'VLS Synthesis Catalyst', 292777), (281718, 281718, 1, 1, 'VP Gift - Monster Spawn Item', 84059), (281729, 281729, 1, 1, 'VP Reward', 100323), (281739, 281739, 1, 1, 'VP Reward', 100323), (281740, 281740, 1, 1, 'VP Reward', 100323), (225483, 225483, 1, 1, 'Vaccinate 1', 239109), (225484, 225484, 1, 1, 'Vaccinate 2', 239111), (296236, 296236, 1, 1, 'Vacuum Packed Captain Anarchy Costume', 296190), (304674, 304674, 1, 1, 'Vacuum Packed Captain Anarchy Turbo Suit', 304782), (304559, 304560, 1, 220, 'Vacuum Packed Crude Silencer Armor', 303265), (303520, 303520, 1, 1, 'Vacuum Packed Cybernetic Assasin Armor - No Helmet', 303518), (285354, 285354, 1, 1, 'Vacuum Packed Cyborg Costume', 283767), (290287, 290287, 1, 1, 'Vacuum Packed Desert Nomad Armor', 290005), (303181, 303181, 1, 1, 'Vacuum Packed Digummy Skoot Armor', 276397), (303050, 303050, 1, 1, 'Vacuum Packed Dust Brigade Parasite Armor - No Helmet', 303035), (303715, 303715, 1, 1, 'Vacuum Packed Dust Brigade Technician Set', 303711), (303652, 303652, 1, 1, 'Vacuum Packed Elite Desert Nomad Armor', 303676), (303653, 303653, 1, 1, 'Vacuum Packed Elite Desert Nomad Armor', 303676), (304492, 304492, 1, 1, 'Vacuum Packed Frontline Surveyor Armor', 304410), (302295, 302295, 1, 1, 'Vacuum Packed Hacker Tool', 302294), (302982, 302982, 1, 1, 'Vacuum Packed Hiisi Pupil Armor', 302963), (304280, 304280, 1, 1, 'Vacuum Packed Kryoguard N-1N Armor', 304279), (295999, 295999, 1, 1, 'Vacuum Packed Lock Pick', 300945), (296000, 296000, 2, 2, 'Vacuum Packed Lock Pick', 300945), (296001, 296001, 3, 3, 'Vacuum Packed Lock Pick', 300945), (297014, 297014, 4, 4, 'Vacuum Packed Lock Pick', 300945), (303474, 303474, 1, 1, 'Vacuum Packed Luxurious Armor', 300692), (295728, 295728, 1, 1, 'Vacuum Packed Newcomer''s Armor', 295702), (297054, 297054, 1, 1, 'Vacuum Packed Omni-Med Suit', 300881), (304006, 304006, 1, 1, 'Vacuum Packed Omni-Med Suit', 300881), (304585, 304585, 1, 1, 'Vacuum Packed Pioneer Backpack', 151882), (306119, 306119, 1, 1, 'Vacuum Packed Preserved Colonist Armor', 306118), (303466, 303466, 1, 1, 'Vacuum Packed Santa Bag', 284680), (206161, 206161, 1, 1, 'Vacuum Packed Santa Hat', 20407), (289240, 289240, 1, 1, 'Vacuum Packed Santa Outfit', 20407), (257573, 257573, 1, 1, 'Vacuum Packed Santa Suit', 20407), (303267, 303267, 1, 1, 'Vacuum Packed Silencer Armor', 303265), (303461, 303462, 1, 220, 'Vacuum Packed Stripped Silencer Armor', 303265), (304638, 304638, 1, 1, 'Vacuum Packed Yamauchi''s Regalia', 304646), (305604, 305604, 1, 1, 'Vacuum Packed Zenith Commando Armor', 305621), (273381, 204397, 1, 100, 'Vagabond Cloak', 22898), (230906, 230906, 1, 1, 'Vague', 82197), (207033, 207033, 1, 1, 'Valentine''s Card', 207021), (248175, 248175, 1, 1, 'Vanguard Node 19 Access Card', 43114), (248771, 248771, 1, 1, 'Vanguard Node 19 Logs', 227247), (248772, 248772, 1, 1, 'Vanguard Node 19 Logs', 227247), (130603, 130603, 1, 1, 'Vanilla Ice-cream', 37949), (234923, 234923, 1, 1, 'Vanya''s Beating Heart', 290511), (236667, 236667, 1, 1, 'Vanya''s Lifeless Heart', 290512), (225382, 225382, 175, 175, 'Vanya''s Pearl of the Left Brain', 290784), (225381, 225381, 175, 175, 'Vanya''s Pearl of the Right Brain', 290785), (249069, 249070, 41, 80, 'Variable Density Tanto', 113986), (253178, 253179, 1, 300, 'Variable Friction Jelly', 100310), (300602, 300602, 2, 2, 'Vash''s Notice of Epic Failure', 163063), (137271, 137272, 1, 200, 'Vector Strengthening Alloys', 130749), (101593, 101594, 1, 200, 'Vehicle Air Cluster - Bright (Ear)', 35987), (101591, 101592, 1, 200, 'Vehicle Air Cluster - Faded (Head)', 35986), (101595, 101596, 1, 200, 'Vehicle Air Cluster - Shiny (Eye)', 35988), (165771, 165772, 201, 300, 'Vehicle Air Refined Cluster - Bright (Ear)', 35987), (165769, 165770, 201, 300, 'Vehicle Air Refined Cluster - Faded (Head)', 35986), (165773, 165774, 201, 300, 'Vehicle Air Refined Cluster - Shiny (Eye)', 35988), (101743, 101744, 1, 200, 'Vehicle Grnd Cluster - Bright (Eye)', 35987), (101741, 101742, 1, 200, 'Vehicle Grnd Cluster - Faded (Ear)', 35986), (101745, 101746, 1, 200, 'Vehicle Grnd Cluster - Shiny (Head)', 35988), (165921, 165922, 201, 300, 'Vehicle Grnd Refined Cluster - Bright (Eye)', 35987), (165919, 165920, 201, 300, 'Vehicle Grnd Refined Cluster - Faded (Ear)', 35986), (165923, 165924, 201, 300, 'Vehicle Grnd Refined Cluster - Shiny (Head)', 35988), (101479, 101480, 1, 200, 'Vehicle Hydr Cluster - Bright (Eye)', 35987), (101477, 101478, 1, 200, 'Vehicle Hydr Cluster - Faded (Ear)', 35986), (101481, 101482, 1, 200, 'Vehicle Hydr Cluster - Shiny (Head)', 35988), (165639, 165640, 201, 300, 'Vehicle Hydr Refined Cluster - Bright (Eye)', 35987), (165637, 165638, 201, 300, 'Vehicle Hydr Refined Cluster - Faded (Ear)', 35986), (165641, 165642, 201, 300, 'Vehicle Hydr Refined Cluster - Shiny (Head)', 35988), (263831, 263831, 1, 1, 'Vehicle Test Weapon', 13321), (247081, 247081, 100, 100, 'Veil of the Revoked', 246888), (124262, 124262, 180, 180, 'Vektor ND DRAGON Shotgun', 21144), (257123, 257123, 300, 300, 'Vektor ND Grand Wyrm', 257711), (124260, 124261, 70, 179, 'Vektor ND LIZARD Shotgun', 21144), (124258, 124259, 5, 69, 'Vektor ND Shotgun', 21144), (124400, 124401, 1, 39, 'Vektor V.21 Flechette Rifle', 21146), (124402, 124403, 40, 79, 'Vektor V.21.16 Flechette Rifle', 21146), (124404, 124405, 80, 124, 'Vektor V.21.30 Flechette Rifle', 21146), (124406, 124406, 125, 125, 'Vektor V.21.31 Flechette Rifle', 21146), (152267, 152784, 1, 100, 'Velocity Tin', 130660), (152786, 152786, 150, 150, 'Velocity Tin', 41176), (87481, 87481, 1, 1, 'Velvet Swimmingtrunks with a Split', 96139), (258268, 258268, 1, 1, 'Vendor License Renewal', 154679), (258338, 258338, 1, 1, 'Vendor License Renewal', 154679), (295849, 295849, 1, 1, 'Vendors', 277964), (248321, 248321, 1, 1, 'Venom Cartridge', 130825), (267745, 267745, 250, 250, 'Venom Gland Sample', 253010), (248322, 248322, 1, 1, 'Venom Sample', 100307), (226449, 226450, 1, 300, 'Venomous Coolie', 205767), (248408, 248408, 1, 1, 'Verdant Enigma Cloak of The Independant Rubikans', 255282), (305997, 305997, 1, 1, 'Vergil''s Black Trenchcoat', 18849), (206721, 206722, 225, 299, 'Very High Quality Mitaar', 206710), (124623, 124623, 200, 200, 'Very Nice MTI SO1210', 13340), (206713, 206714, 25, 49, 'Very Old Mitaar', 206710), (152704, 152704, 150, 150, 'Very Very Very Cool Top', 30915), (152543, 152543, 150, 150, 'Very Very Very Hot Pants', 31319), (245854, 245854, 250, 250, 'Vest of Torpid Sunrays', 213530), (259016, 259016, 1, 1, 'Veteran Backpack', 259030), (259382, 259382, 1, 1, 'Veteran Backpack', 259030), (259113, 259113, 1, 1, 'Veteran Healing Laboratory - Final Stage', 259107), (259109, 259109, 1, 1, 'Veteran Healing Laboratory - Stage 1', 259107), (259110, 259110, 1, 1, 'Veteran Healing Laboratory - Stage 2', 259107), (259111, 259111, 1, 1, 'Veteran Healing Laboratory - Stage 3', 259107), (259112, 259112, 1, 1, 'Veteran Healing Laboratory - Stage 4', 259107), (259114, 259114, 1, 1, 'Veteran Healing Laboratory Upgrade Kit', 259108), (289210, 289210, 1, 1, 'Veteran Nano Recharger - Final Stage', 289213), (289206, 289206, 1, 1, 'Veteran Nano Recharger - Stage 1', 289213), (289207, 289207, 1, 1, 'Veteran Nano Recharger - Stage 2', 289213), (289208, 289208, 1, 1, 'Veteran Nano Recharger - Stage 3', 289213), (289209, 289209, 1, 1, 'Veteran Nano Recharger - Stage 4', 289213), (289211, 289211, 1, 1, 'Veteran Nano Recharger Upgrade Kit', 289212), (258804, 258804, 1, 1, 'Veteran Token', 259105), (201039, 201040, 1, 200, 'Vial of Bileswarm Ichor', 100338), (150190, 150191, 176, 199, 'Vibrating Bodum-Larga Club', 85172), (235855, 235855, 90, 90, 'Vibrating Brain Symbiant, Extermination Unit Aban', 215189), (235638, 235638, 90, 90, 'Vibrating Brain Symbiant, Infantry Unit Aban', 215189), (235465, 235465, 90, 90, 'Vibrating Chest Symbiant, Artillery Unit Aban', 215181), (235687, 235687, 90, 90, 'Vibrating Chest Symbiant, Infantry Unit Aban', 215181), (236131, 236131, 90, 90, 'Vibrating Chest Symbiant, Support Unit Aban', 215181), (235873, 235873, 90, 90, 'Vibrating Ear Symbiant, Extermination Unit Aban', 230977), (235652, 235652, 90, 90, 'Vibrating Ear Symbiant, Infantry Unit Aban', 230977), (236099, 236099, 90, 90, 'Vibrating Ear Symbiant, Support Unit Aban', 230977), (235604, 235604, 90, 90, 'Vibrating Feet Symbiant, Artillery Unit Aban', 215185), (236047, 236047, 90, 90, 'Vibrating Feet Symbiant, Extermination Unit Aban', 215186), (235822, 235822, 90, 90, 'Vibrating Feet Symbiant, Infantry Unit Aban', 215187), (235484, 235484, 90, 90, 'Vibrating Left Arm Symbiant, Artillery Unit Aban', 215179), (236372, 236372, 90, 90, 'Vibrating Left Arm Symbiant, Control Unit Aban', 215177), (235925, 235925, 90, 90, 'Vibrating Left Arm Symbiant, Extermination Unit Aban', 215175), (235705, 235705, 90, 90, 'Vibrating Left Arm Symbiant, Infantry Unit Aban', 215179), (235585, 235585, 90, 90, 'Vibrating Left Hand Symbiant, Artillery Unit Aban', 215171), (236480, 236480, 90, 90, 'Vibrating Left Hand Symbiant, Control Unit Aban', 215172), (236425, 236425, 90, 90, 'Vibrating Left Wrist Symbiant, Control Unit Aban', 215196), (235975, 235975, 90, 90, 'Vibrating Left Wrist Symbiant, Extermination Unit Aban', 215198), (236209, 236209, 90, 90, 'Vibrating Left Wrist Symbiant, Support Unit Aban', 215198), (219131, 219131, 90, 90, 'Vibrating Ocular Symbiant, Artillery Unit Aban', 230979), (236340, 236340, 90, 90, 'Vibrating Right Arm Symbiant, Control Unit Aban', 215180), (235668, 235668, 90, 90, 'Vibrating Right Arm Symbiant, Infantry Unit Aban', 215180), (236225, 236225, 90, 90, 'Vibrating Right Hand Symbiant, Support Unit Aban', 215174), (236392, 236392, 90, 90, 'Vibrating Right Wrist Symbiant, Control Unit Aban', 215170), (235945, 235945, 90, 90, 'Vibrating Right Wrist Symbiant, Extermination Unit Aban', 215170), (236463, 236463, 90, 90, 'Vibrating Thigh Symbiant, Control Unit Aban', 215191), (236013, 236013, 90, 90, 'Vibrating Thigh Symbiant, Extermination Unit Aban', 215192), (235787, 235787, 90, 90, 'Vibrating Thigh Symbiant, Infantry Unit Aban', 215191), (235516, 235516, 90, 90, 'Vibrating Waist Symbiant, Artillery Unit Aban', 215194), (235959, 235959, 90, 90, 'Vibrating Waist Symbiant, Extermination Unit Aban', 215193), (214974, 229947, 160, 189, 'Vicious Novictum Continuity', 233151), (305965, 305965, 300, 300, 'Vicious Support Beam of Malice', 33143), (288753, 288753, 1, 1, 'Victory Points Package: 10000', 290829), (294601, 294601, 1, 1, 'Victory Points Package: 10000', 290829), (288756, 288756, 1, 1, 'Victory Points Package: 100000', 290829), (294604, 294604, 1, 1, 'Victory Points Package: 100000', 290829), (288754, 288754, 1, 1, 'Victory Points Package: 25000', 290829), (294602, 294602, 1, 1, 'Victory Points Package: 25000', 290829), (288752, 288752, 1, 1, 'Victory Points Package: 5000', 290829), (294600, 294600, 1, 1, 'Victory Points Package: 5000', 290829), (288755, 288755, 1, 1, 'Victory Points Package: 50000', 290829), (294603, 294603, 1, 1, 'Victory Points Package: 50000', 290829), (267046, 267046, 1, 1, 'Victory Transfer', 259105), (209259, 209259, 1, 1, 'Viggo''s Super Laser Sword', 113998), (229039, 229039, 1, 1, 'Viggo''s Super Laser Sword', 113998), (235863, 235863, 230, 230, 'Vigorous Brain Symbiant, Extermination Unit Aban', 215189), (236087, 236087, 230, 230, 'Vigorous Brain Symbiant, Support Unit Aban', 215188), (235880, 235880, 230, 230, 'Vigorous Ear Symbiant, Extermination Unit Aban', 230977), (235489, 235489, 230, 230, 'Vigorous Left Arm Symbiant, Artillery Unit Aban', 215179), (236379, 236379, 230, 230, 'Vigorous Left Arm Symbiant, Control Unit Aban', 215177), (235812, 235812, 230, 230, 'Vigorous Left Hand Symbiant, Infantry Unit Aban', 215172), (235540, 235540, 230, 230, 'Vigorous Left Wrist Symbiant, Artillery Unit Aban', 215196), (236432, 236432, 230, 230, 'Vigorous Left Wrist Symbiant, Control Unit Aban', 215196), (219137, 219137, 230, 230, 'Vigorous Ocular Symbiant, Artillery Unit Aban', 230979), (235627, 235627, 230, 230, 'Vigorous Ocular Symbiant, Infantry Unit Aban', 230980), (236345, 236345, 230, 230, 'Vigorous Right Arm Symbiant, Control Unit Aban', 215180), (235677, 235677, 230, 230, 'Vigorous Right Arm Symbiant, Infantry Unit Aban', 215180), (235559, 235559, 230, 230, 'Vigorous Right Hand Symbiant, Artillery Unit Aban', 215173), (236003, 236003, 230, 230, 'Vigorous Right Hand Symbiant, Extermination Unit Aban', 215173), (236232, 236232, 230, 230, 'Vigorous Right Hand Symbiant, Support Unit Aban', 215174), (235505, 235505, 230, 230, 'Vigorous Right Wrist Symbiant, Artillery Unit Aban', 215170), (236398, 236398, 230, 230, 'Vigorous Right Wrist Symbiant, Control Unit Aban', 215170), (235950, 235950, 230, 230, 'Vigorous Right Wrist Symbiant, Extermination Unit Aban', 215170), (236181, 236181, 230, 230, 'Vigorous Right Wrist Symbiant, Support Unit Aban', 215197), (235574, 235574, 230, 230, 'Vigorous Thigh Symbiant, Artillery Unit Aban', 215190), (236248, 236248, 230, 230, 'Vigorous Thigh Symbiant, Support Unit Aban', 215190), (235963, 235963, 230, 230, 'Vigorous Waist Symbiant, Extermination Unit Aban', 215193), (235743, 235743, 230, 230, 'Vigorous Waist Symbiant, Infantry Unit Aban', 215193), (265345, 265345, 1, 1, 'Vintage GSP T-shirt', 266233), (130586, 130586, 1, 1, 'Vintage Red Wine', 37934), (227336, 227336, 1, 1, 'Violence', 239051), (285864, 285864, 200, 200, 'Violet Fiber', 284331), (285891, 285891, 200, 200, 'Violet Wax', 284331), (285877, 285877, 200, 200, 'Violet Wick', 284331), (285859, 285859, 200, 200, 'Violet Wire', 284331), (150251, 150252, 151, 180, 'Violet Zenith Taichi', 113987), (271967, 271968, 1, 300, 'Viper IX - 000', 21148), (271971, 271972, 1, 300, 'Viper IX - 404', 21148), (271973, 271974, 1, 300, 'Viper IX - C04', 21148), (154897, 267760, 63, 300, 'Viper Staff', 154363), (267761, 267761, 300, 300, 'Viper Staff - monster only - LH', 154363), (288134, 288134, 200, 200, 'Viral Belt', 288094), (288084, 288084, 200, 200, 'Viral Belt Component Platform', 288088), (288719, 288719, 200, 200, 'Viral Belt Component Platform', 288088), (288130, 288130, 200, 200, 'Viral Belt Control Component', 288090), (288133, 288133, 200, 200, 'Viral Belt NCU Slots', 288091), (288135, 288135, 200, 200, 'Viral Belt Nanobot Power Unit', 288092), (215724, 215724, 1, 1, 'Viral Combination', 239137), (288281, 288281, 1, 1, 'Viral Communications Larvae', 288690), (251222, 251223, 20, 300, 'Viral Compiler', 119132), (251224, 251225, 1, 300, 'Viral Data Storage', 246275), (251242, 251243, 1, 149, 'Viral Memory Storage Unit', 20402), (251243, 251254, 150, 300, 'Viral Memory Storage Unit', 20402), (288140, 288140, 150, 150, 'Viral Memory Storage Unit (Damage)', 288099), (288139, 288139, 150, 150, 'Viral Memory Storage Unit (XP)', 288102), (248811, 248812, 1, 300, 'Viral Targeting Enhancer Kit', 11710), (251238, 251239, 1, 99, 'Viral Targeting Subunit', 99272), (251239, 251240, 100, 259, 'Viral Targeting Subunit', 99272), (251240, 251241, 260, 300, 'Viral Targeting Subunit', 99272), (248516, 248517, 1, 200, 'Viral Weapon Upgrade', 100335), (227237, 227237, 1, 1, 'Viral Wipe', 239227), (207037, 207037, 1, 1, 'Virgin Chocolates', 207019), (234610, 234610, 300, 300, 'Virgin Naginata', 213073), (244665, 244665, 250, 250, 'Virgo''s Analytical Spirit Helper', 11652), (244662, 244662, 250, 250, 'Virgo''s Arrow Guide', 13280), (244664, 244664, 250, 250, 'Virgo''s Modest Spirit of Faith', 20411), (244663, 244663, 250, 250, 'Virgo''s Practical Spirit Helper', 11646), (275716, 275716, 1, 1, 'Viridian rune', 227629), (157953, 157953, 190, 190, 'Virral Egg with Dual Gems', 158272), (157954, 157954, 190, 190, 'Virral Egg with Gem', 158272), (157955, 157955, 190, 190, 'Virral Triumvirate Egg', 158272), (214186, 214186, 300, 300, 'Virtuous Gladius', 214357), (292510, 292510, 1, 1, 'Virus Programming: Bacteriophage F9', 292774), (292509, 292509, 1, 1, 'Virus Programming: Bacteriophage M73', 292775), (292508, 292508, 1, 1, 'Virus Programming: Bacteriophage Phi X 3957', 292776), (204139, 204140, 1, 49, 'Virus Scanner', 156490), (204140, 204141, 50, 99, 'Virus Scanner', 156490), (204141, 204142, 100, 199, 'Virus Scanner', 156490), (204142, 204143, 200, 300, 'Virus Scanner', 156490), (269894, 269894, 200, 200, 'Viscous Permafrost Chemicals', 100337), (257964, 257964, 250, 250, 'Visible Light Remodulation Device', 235270), (303070, 303070, 1, 1, 'Vision of Destruction', 289926), (303069, 303069, 1, 1, 'Vision of Hope', 289927), (304474, 304475, 1, 220, 'Vision of the Eight', 305046), (305507, 305507, 1, 1, 'Vision of the Heretic', 230980), (225635, 225636, 1, 300, 'Visionist Tool', 156552), (239466, 239466, 1, 1, 'Visions of The Reposeful', 151032), (239467, 239467, 1, 1, 'Visions of the Tempestuous', 151031), (239468, 239468, 1, 1, 'Visions of the Unshakable', 151033), (86443, 86443, 1, 1, 'Visor', 45781), (165281, 165281, 1, 1, 'Visual T.R.A.C Scanner', 144715), (150236, 150237, 80, 119, 'Vital Ares Bio-Staff', 136738), (235420, 235420, 260, 260, 'Vital Brain Symbiant, Artillery Unit Aban', 215189), (236089, 236089, 260, 260, 'Vital Brain Symbiant, Support Unit Aban', 215188), (154931, 154931, 68, 68, 'Vital Buckler', 154365), (235473, 235473, 260, 260, 'Vital Chest Symbiant, Artillery Unit Aban', 215181), (235916, 235916, 260, 260, 'Vital Chest Symbiant, Extermination Unit Aban', 215181), (235694, 235694, 260, 260, 'Vital Chest Symbiant, Infantry Unit Aban', 215181), (236140, 236140, 260, 260, 'Vital Chest Symbiant, Support Unit Aban', 215181), (235438, 235438, 260, 260, 'Vital Ear Symbiant, Artillery Unit Aban', 230977), (236329, 236329, 260, 260, 'Vital Ear Symbiant, Control Unit Aban', 230977), (236054, 236054, 260, 260, 'Vital Feet Symbiant, Extermination Unit Aban', 215186), (235830, 235830, 260, 260, 'Vital Feet Symbiant, Infantry Unit Aban', 215187), (236382, 236382, 260, 260, 'Vital Left Arm Symbiant, Control Unit Aban', 215177), (235711, 235711, 260, 260, 'Vital Left Arm Symbiant, Infantry Unit Aban', 215179), (236161, 236161, 260, 260, 'Vital Left Arm Symbiant, Support Unit Aban', 215175), (235594, 235594, 260, 260, 'Vital Left Hand Symbiant, Artillery Unit Aban', 215171), (236435, 236435, 260, 260, 'Vital Left Wrist Symbiant, Control Unit Aban', 215196), (235629, 235629, 260, 260, 'Vital Ocular Symbiant, Infantry Unit Aban', 230980), (236073, 236073, 260, 260, 'Vital Ocular Symbiant, Support Unit Aban', 230980), (236347, 236347, 260, 260, 'Vital Right Arm Symbiant, Control Unit Aban', 215180), (235898, 235898, 260, 260, 'Vital Right Arm Symbiant, Extermination Unit Aban', 215178), (236121, 236121, 260, 260, 'Vital Right Arm Symbiant, Support Unit Aban', 215178), (235779, 235779, 260, 260, 'Vital Right Hand Symbiant, Infantry Unit Aban', 215174), (236233, 236233, 260, 260, 'Vital Right Hand Symbiant, Support Unit Aban', 215174), (236399, 236399, 260, 260, 'Vital Right Wrist Symbiant, Control Unit Aban', 215170), (235726, 235726, 260, 260, 'Vital Right Wrist Symbiant, Infantry Unit Aban', 215197), (236182, 236182, 260, 260, 'Vital Right Wrist Symbiant, Support Unit Aban', 215197), (226687, 226687, 1, 1, 'Vital Shock', 239263), (235796, 235796, 260, 260, 'Vital Thigh Symbiant, Infantry Unit Aban', 215191), (235524, 235524, 260, 260, 'Vital Waist Symbiant, Artillery Unit Aban', 215194), (236418, 236418, 260, 260, 'Vital Waist Symbiant, Control Unit Aban', 215193), (235966, 235966, 260, 260, 'Vital Waist Symbiant, Extermination Unit Aban', 215193), (246220, 246220, 1, 1, 'Vivid', 82197), (246221, 246221, 1, 1, 'Vivid', 82197), (208025, 208026, 140, 199, 'Voice of Thunder', 85167), (269893, 269893, 200, 200, 'Volatile Permafrost Chemicals', 100330), (119593, 119593, 1, 1, 'Volcano - Rocket Lamp', 119158), (253768, 253768, 1, 1, 'Vulcana Boots', 253713), (253771, 253771, 1, 1, 'Vulcana Pants', 253733), (253770, 253770, 1, 1, 'Vulcana Shirt', 253674), (253769, 253769, 1, 1, 'Vulcana Sleeves', 253696), (248341, 248341, 1, 1, 'Wailing Bat', 13335), (49570, 49570, 1, 1, 'Walk', 49560), (284201, 284201, 1, 1, 'Wall Hecks Nanospray', 284203), (287146, 287146, 200, 200, 'Wall-Mounted Titanium Rod', 287463), (163553, 163553, 1, 1, 'Wanted Poster', 154677), (271269, 271270, 1, 300, 'Warblade - 000', 114009), (271271, 271272, 1, 300, 'Warblade - 010', 114009), (271273, 271274, 1, 300, 'Warblade - 050', 114009), (271275, 271276, 1, 300, 'Warblade - 070', 114009), (271277, 271278, 1, 300, 'Warblade - 870', 114009), (303061, 303061, 150, 150, 'Wardog''s Heated Razor Gloves', 21979), (302977, 302977, 1, 1, 'Wardog''s Mask', 302969), (156762, 156762, 1, 1, 'Warm Heart Tattoo', 156749), (280439, 280439, 1, 1, 'Warped Inside', 255263), (280440, 280440, 1, 1, 'Warped Outside', 255263), (200732, 200732, 1, 1, 'Warr Cry Pulser Wearable', 84059), (302039, 302039, 1, 1, 'Warrant', 154675), (281237, 281237, 1, 1, 'Warrior''s Cut Gem', 281223), (281221, 281221, 1, 1, 'Warrior''s Gem', 281224), (281207, 281207, 1, 1, 'Warrior''s Signet of The Apocalypse', 281195), (207260, 207260, 50, 50, 'Waste Collector NCU', 119139), (155681, 155682, 1, 200, 'Wasted Mixture', 144711), (168414, 168414, 5, 5, 'Watcher of Tir Ring', 290366), (238933, 238934, 150, 179, 'Watchful Spirit Phulakterion', 161139), (238935, 238936, 180, 209, 'Watchful Spirit Phulakterion', 161139), (238937, 238939, 210, 239, 'Watchful Spirit Phulakterion', 161139), (238940, 238941, 240, 269, 'Watchful Spirit Phulakterion', 161139), (238942, 238943, 270, 299, 'Watchful Spirit Phulakterion', 161139), (238944, 238944, 300, 300, 'Watchful Spirit Phulakterion', 161139), (229049, 229049, 220, 220, 'Water Glyph of Judgement', 227584), (229052, 229052, 220, 220, 'Water Glyph of the World', 227584), (157426, 157426, 1, 1, 'Water Thirtyfour Boa Advantage', 81778), (128916, 128917, 1, 179, 'Water balloon', 85173), (232798, 232799, 1, 149, 'Water opal', 286964), (232799, 232801, 150, 199, 'Water opal', 286964), (232801, 232802, 200, 249, 'Water opal', 286964), (232802, 232803, 250, 400, 'Water opal', 286964), (287786, 287786, 1, 1, 'Waterballoon', 85173), (152343, 152344, 41, 60, 'Waterlily Parry Stick', 136738), (154924, 154924, 125, 125, 'Wave Breaker', 154364), (248349, 248349, 1, 1, 'Wave Heated Plasma Gun', 13314), (218351, 218352, 1, 9, 'Weak Coil of Health', 218303), (218352, 218353, 10, 19, 'Weak Coil of Health', 218303), (218353, 218354, 20, 29, 'Weak Coil of Health', 218303), (218354, 218355, 30, 39, 'Weak Coil of Health', 218303), (218355, 218356, 40, 49, 'Weak Coil of Health', 218303), (218356, 218357, 50, 59, 'Weak Coil of Health', 218303), (218357, 218358, 60, 69, 'Weak Coil of Health', 218303), (218358, 218359, 70, 79, 'Weak Coil of Health', 218303), (218359, 218360, 80, 90, 'Weak Coil of Health', 218303), (291046, 291047, 1, 9, 'Weak Coil of Health and Nano', 290999), (291047, 291048, 10, 19, 'Weak Coil of Health and Nano', 290999), (291048, 291049, 20, 29, 'Weak Coil of Health and Nano', 290999), (291049, 291050, 30, 39, 'Weak Coil of Health and Nano', 290999), (291050, 291051, 40, 49, 'Weak Coil of Health and Nano', 290999), (291051, 291052, 50, 59, 'Weak Coil of Health and Nano', 290999), (291052, 291053, 60, 69, 'Weak Coil of Health and Nano', 290999), (291053, 291054, 70, 79, 'Weak Coil of Health and Nano', 290999), (291054, 291055, 80, 90, 'Weak Coil of Health and Nano', 290999), (218822, 218823, 1, 9, 'Weak Coil of Nano Energy', 218300), (218823, 218824, 10, 19, 'Weak Coil of Nano Energy', 218300), (218824, 218825, 20, 29, 'Weak Coil of Nano Energy', 218300), (218825, 218826, 30, 39, 'Weak Coil of Nano Energy', 218300), (218826, 218827, 40, 49, 'Weak Coil of Nano Energy', 218300), (218827, 218828, 50, 59, 'Weak Coil of Nano Energy', 218300), (218828, 218829, 60, 69, 'Weak Coil of Nano Energy', 218300), (218829, 218830, 70, 79, 'Weak Coil of Nano Energy', 218300), (218830, 218831, 80, 90, 'Weak Coil of Nano Energy', 218300), (225869, 225870, 1, 500, 'Weapon Bash', 239257), (225871, 225872, 1, 500, 'Weapon Bash', 239257), (225873, 225874, 1, 500, 'Weapon Bash', 239257), (55679, 55678, 1, 200, 'Weapon Smithing Tutoring Device', 300887), (101695, 101696, 1, 200, 'Weapon Smt Cluster - Bright (Head)', 36014), (101693, 101694, 1, 200, 'Weapon Smt Cluster - Faded (Eye)', 36013), (101697, 101698, 1, 200, 'Weapon Smt Cluster - Shiny (Right-Hand)', 36015), (165873, 165874, 201, 300, 'Weapon Smt Refined Cluster - Bright (Head)', 36014), (165871, 165872, 201, 300, 'Weapon Smt Refined Cluster - Faded (Eye)', 36013), (165875, 165876, 201, 300, 'Weapon Smt Refined Cluster - Shiny (Right-Hand)', 36015), (297195, 297195, 1, 1, 'Wedding Arch', 291288), (301381, 301381, 1, 1, 'Wedding Arch', 291288), (130584, 130584, 1, 1, 'Wedding Cake', 130519), (280978, 280978, 1, 1, 'Wedding Day Painting', 255921), (31496, 31496, 1, 1, 'Wedding Dress', 88048), (290501, 290501, 1, 1, 'Wedding Ring', 290502), (290503, 290503, 1, 1, 'Wedding Ring', 294591), (290505, 290505, 1, 1, 'Wedding Ring', 290498), (290508, 290508, 1, 1, 'Wedding Ring', 290499), (290509, 290509, 1, 1, 'Wedding Ring', 294592), (258759, 258759, 1, 1, 'Weekly Progress Report', 149950), (224724, 224724, 290, 290, 'Weeping Brain Spirit of Offence', 230992), (224741, 224741, 290, 290, 'Weeping Essence Brain Spirit', 230992), (224928, 224928, 290, 290, 'Weeping Heart Spirit of Knowledge', 230984), (225227, 225227, 290, 290, 'Weeping Left Hand Spirit of Strength', 230994), (225013, 225013, 290, 290, 'Weeping Left Limb Spirit of Weakness', 230995), (224861, 224861, 290, 290, 'Weeping Midriff Spirit of Essence', 230976), (224914, 224914, 290, 290, 'Weeping Midriff Spirit of Strength', 230976), (224897, 224897, 290, 290, 'Weeping Midriff Spirit of Weakness', 230976), (225136, 225136, 290, 290, 'Weeping Right Hand Strength Spirit', 231002), (224843, 224843, 290, 290, 'Weeping Right Limb Spirit of Essence', 231004), (224707, 224707, 290, 290, 'Weeping Spirit of Clear Thought', 230992), (224675, 224675, 290, 290, 'Weeping Spirit of Discerning Weakness', 230988), (224692, 224692, 290, 290, 'Weeping Spirit of Essence', 230988), (225066, 225066, 290, 290, 'Weeping Spirit of Right Wrist Offence', 231006), (224776, 224776, 290, 290, 'Weeping Spirit of Strength Whispered', 230986), (277409, 277409, 1, 1, 'Weird Looking Candy', 37974), (277410, 277410, 2, 2, 'Weird Looking Candy', 37974), (277411, 277411, 3, 3, 'Weird Looking Candy', 37974), (277412, 277412, 4, 4, 'Weird Looking Candy', 37974), (277413, 277413, 5, 5, 'Weird Looking Candy', 37974), (277414, 277414, 6, 6, 'Weird Looking Candy', 37974), (277415, 277415, 7, 7, 'Weird Looking Candy', 37974), (277416, 277416, 8, 8, 'Weird Looking Candy', 37974), (277417, 277417, 9, 9, 'Weird Looking Candy', 37974), (277418, 277418, 10, 10, 'Weird Looking Candy', 37974), (273083, 273083, 1, 1, 'Weird Looking Candy Cherry', 37968), (273084, 273084, 2, 2, 'Weird Looking Candy Cherry', 37968), (273085, 273085, 3, 3, 'Weird Looking Candy Cherry', 37968), (273086, 273086, 4, 4, 'Weird Looking Candy Cherry', 37968), (273087, 273087, 5, 5, 'Weird Looking Candy Cherry', 37968), (273088, 273088, 6, 6, 'Weird Looking Candy Cherry', 37968), (273089, 273089, 7, 7, 'Weird Looking Candy Cherry', 37968), (273090, 273090, 8, 8, 'Weird Looking Candy Cherry', 37968), (273091, 273091, 9, 9, 'Weird Looking Candy Cherry', 37968), (273092, 273092, 10, 10, 'Weird Looking Candy Cherry', 37968), (220604, 220604, 106, 106, 'Weird Looking Nano Crystal (Augmentation Cloud)', 301242), (220617, 220617, 37, 37, 'Weird Looking Nano Crystal (Bot Reproduction)', 301078), (220710, 220710, 146, 146, 'Weird Looking Nano Crystal (Continuous Reconstruction)', 301188), (220587, 220587, 159, 159, 'Weird Looking Nano Crystal (Cut Red Tape)', 301180), (221129, 221129, 43, 43, 'Weird Looking Nano Crystal (Hasty Augmentation Cloud)', 301242), (220730, 220730, 76, 76, 'Weird Looking Nano Crystal (Hearty Constitution)', 301188), (220733, 220733, 90, 90, 'Weird Looking Nano Crystal (Improved Instinctive Control)', 301186), (220743, 220743, 99, 99, 'Weird Looking Nano Crystal (Nano Repulsor)', 301189), (221759, 221759, 159, 159, 'Weird Looking Nano Crystal (Neural Interfaced Augmentation Cloud)', 301242), (221183, 221183, 169, 169, 'Weird Looking Nano Crystal (Semi-Sentient Augmentation Cloud)', 301242), (223082, 223082, 172, 172, 'Weird Looking Nano Crystal (Serene Sky)', 301157), (301161, 301161, 200, 200, 'Weird Looking Nano Crystal (Smoke Bomb)', 301163), (222473, 222473, 24, 24, 'Weird Looking Nano Crystal (Soothing Breeze)', 301157), (220625, 220625, 90, 90, 'Weird Looking Nano Crystal (Soothing Calm)', 301078), (223081, 223081, 139, 139, 'Weird Looking Nano Crystal (Tranquility of the Vale)', 301157), (119058, 119058, 1, 1, 'Weird Painting', 81771), (100356, 100356, 1, 1, 'Weird-Looking Bomb', 99232), (130068, 130069, 175, 194, 'Well Balanced Heavy Pear Tree Staff', 136738), (130079, 130080, 150, 179, 'Well Balanced Light Hickory Staff', 136738), (244579, 244579, 250, 250, 'Well Balanced Spirit Helper of Libra', 119141), (275626, 275626, 1, 1, 'Well Preserved Sample of Alien Tissue', 269286), (150216, 150217, 91, 120, 'Well balanced Fayalite Flamberge', 113987), (158295, 158296, 1, 199, 'Well-Worn Antiquated Sword', 113987), (152168, 152169, 166, 180, 'Well-shaped Light Tube-Bow', 85167), (129644, 129645, 61, 100, 'Wen-Wen', 85161), (260672, 260672, 205, 205, 'Wen-Wen Decoy', 268035), (303638, 303638, 1, 1, 'Wen-Wen Observer', 85161), (129642, 129643, 41, 60, 'Wen-Wen Teen', 85161), (129656, 129656, 200, 200, 'Wen-Wen master of the universe', 85161), (260670, 260670, 205, 205, 'Wen-Wen of Fortitude', 268035), (260669, 260669, 205, 205, 'Wen-Wen of Insignificance', 268035), (157427, 157427, 1, 1, 'West Fifteen Marten Advantage', 81778), (160273, 160274, 1, 199, 'West Wind Katana', 113999), (155177, 155178, 1, 200, 'Wet Anti-Radiation Body', 19814), (155179, 155180, 1, 200, 'Wet Anti-Radiation Skirt', 155127), (155175, 155176, 1, 200, 'Wet Anti-Radiation Sleeves', 155126), (275216, 275216, 1, 1, 'Wet Bar of Sataran', 255908), (271229, 271230, 1, 300, 'Whings - 000', 21139), (271231, 271232, 1, 300, 'Whings - 010', 21139), (271233, 271234, 1, 300, 'Whings - 050', 21139), (271235, 271236, 1, 300, 'Whings - 070', 21139), (271237, 271238, 1, 300, 'Whings - 870', 21139), (227186, 227187, 1, 15, 'Whispering Soul Stone', 136594), (218576, 218576, 1, 1, 'Whispering Spirit', 215180), (152415, 152416, 1, 200, 'Whistle-box', 20407), (130183, 130184, 20, 70, 'Whistling Hot Air Stick', 13349), (152364, 152365, 151, 199, 'White Acroblade', 113986), (152709, 152709, 175, 175, 'White Agent Cloak', 22892), (214258, 214258, 300, 300, 'White Ant Nunchaku', 229956), (41093, 41093, 1, 1, 'White Armbands', 41177), (31514, 31514, 1, 1, 'White Bikini', 21876), (41039, 41039, 1, 1, 'White Boots', 37124), (281343, 281343, 1, 1, 'White Card', 281342), (31498, 31498, 1, 1, 'White Cloak', 22892), (225457, 225457, 175, 175, 'White Cloak Hood', 23000), (295625, 295625, 1, 1, 'White Coral Shell Fragment', 233133), (31497, 31497, 1, 1, 'White Dress', 88050), (296232, 296232, 1, 1, 'White Fancy Outfit', 296234), (285863, 285863, 200, 200, 'White Fiber', 284331), (41032, 41032, 1, 1, 'White Gloves', 37105), (40997, 40997, 1, 1, 'White Hood', 23000), (272459, 272459, 250, 250, 'White Molybdenum-Matrix of Xan', 272535), (41014, 41014, 1, 1, 'White Pants', 37100), (31511, 31511, 1, 1, 'White Pumps', 22904), (152793, 152793, 5, 5, 'White Sack', 23000), (41103, 41103, 1, 1, 'White Shirt with Clan Symbol', 37158), (41083, 41083, 1, 1, 'White Sleeves', 37135), (218340, 218340, 160, 160, 'White Sun Glyph of Xum', 227591), (87480, 87480, 1, 1, 'White Swimmingtrunks', 96138), (290260, 290260, 1, 1, 'White Thong', 21876), (41060, 41060, 1, 1, 'White Top', 37147), (81969, 81969, 1, 1, 'White Trenchcoat', 82001), (82918, 82918, 1, 1, 'White Trenchcoat Hood', 82923), (157428, 157428, 1, 1, 'White Twentythree Bullfinch Advantage', 81778), (285890, 285890, 200, 200, 'White Wax', 284331), (285878, 285878, 200, 200, 'White Wick', 284331), (130589, 130589, 1, 1, 'White Wine', 37937), (130613, 130613, 1, 1, 'White Wine Glass', 37957), (285860, 285860, 200, 200, 'White Wire', 284331), (150253, 150253, 181, 181, 'White Zenith Taichi', 113987), (119602, 119602, 1, 1, 'White drawer', 119175), (232786, 232787, 1, 149, 'White opal', 286966), (232787, 232789, 150, 199, 'White opal', 286966), (232789, 232790, 200, 249, 'White opal', 286966), (232790, 232791, 250, 400, 'White opal', 286966), (163558, 163558, 1, 1, 'Whole lotta enigma fibers', 163575), (265369, 265369, 1, 1, 'Wicked Grin Shirt', 265371), (273012, 273012, 1, 1, 'Wicked Leggings of the East', 273005), (273028, 273028, 1, 1, 'Wicked Tights of the East', 273005), (273011, 273011, 1, 1, 'Wicked Tights of the West', 273003), (273027, 273027, 1, 1, 'Wicked Tights of the West', 273003), (234884, 234884, 1, 1, 'Widget to Gadget', 205498), (239469, 239469, 1, 1, 'Will of the Reposeful', 151031), (239470, 239470, 1, 1, 'Will of the Tempestuous', 151033), (239471, 239471, 1, 1, 'Will of the Unshakable', 151032), (286212, 286212, 200, 200, 'Will-Infused Wax', 284331), (157429, 157429, 1, 1, 'Wind Thirtyseven Pilchard Advantage', 81769), (305468, 305468, 1, 1, 'Windcaller Purified Robe', 159572), (204760, 204760, 1, 1, 'Windcaller Robe', 159572), (161730, 161730, 1, 1, 'Windcaller Robe (monster wear)', 159572), (137072, 137072, 300, 300, 'Wings of the ARK Angels', 16348), (259928, 259928, 1, 1, 'Winter Jacket', 259946), (285057, 285057, 1, 1, 'Winter Leet Pet (Winter Leet Series 1)', 254462), (285084, 285084, 1, 1, 'Winter Leet Pet (Winter Leet Series 1)', 254462), (303470, 303470, 1, 1, 'Winter Leet Pet (Winter Leet Series 1)', 254462), (259929, 259929, 1, 1, 'Winter Survival Kit', 205499), (259934, 259934, 1, 1, 'Winter Sweater', 259947), (150916, 150917, 1, 200, 'Wire Drawing Machine', 149952), (199382, 199382, 220, 220, 'Wired Bau Charger Armor Boots', 22878), (199403, 199403, 220, 220, 'Wired Bau Charger Armor Gloves', 22939), (199424, 199424, 220, 220, 'Wired Bau Charger Armor Helmet', 31738), (199445, 199445, 220, 220, 'Wired Bau Charger Armor Pants', 22928), (199466, 199466, 220, 220, 'Wired Bau Charger Armor Sleeves', 22889), (199487, 199487, 220, 220, 'Wired Bau Charger Body Armor', 22981), (199508, 199508, 220, 220, 'Wired Bau Charger Female Body Armor', 22942), (275026, 275026, 300, 300, 'Wistful Brain Spirit of Computer Skill', 230992), (224725, 224725, 300, 300, 'Wistful Brain Spirit of Offence', 230992), (224742, 224742, 300, 300, 'Wistful Essence Brain Spirit', 230992), (224936, 224936, 300, 300, 'Wistful Heart Spirit of Essence', 230984), (224929, 224929, 300, 300, 'Wistful Heart Spirit of Knowledge', 230984), (224963, 224963, 300, 300, 'Wistful Heart Spirit of Strength', 230984), (224980, 224980, 300, 300, 'Wistful Heart Spirit of Weakness', 230984), (225212, 225212, 300, 300, 'Wistful Left Hand Spirit of Defence', 230994), (225228, 225228, 300, 300, 'Wistful Left Hand Spirit of Strength', 230994), (225050, 225050, 300, 300, 'Wistful Left Limb Spirit of Essence', 230995), (225032, 225032, 300, 300, 'Wistful Left Limb Spirit of Strength', 230995), (224996, 224996, 300, 300, 'Wistful Left Limb Spirit of Understanding', 230995), (225014, 225014, 300, 300, 'Wistful Left Limb Spirit of Weakness', 230995), (224862, 224862, 300, 300, 'Wistful Midriff Spirit of Essence', 230976), (224880, 224880, 300, 300, 'Wistful Midriff Spirit of Knowledge', 230976), (224915, 224915, 300, 300, 'Wistful Midriff Spirit of Strength', 230976), (224898, 224898, 300, 300, 'Wistful Midriff Spirit of Weakness', 230976), (225150, 225150, 300, 300, 'Wistful Right Hand Defencive Spirit', 231002), (225137, 225137, 300, 300, 'Wistful Right Hand Strength Spirit', 231002), (224844, 224844, 300, 300, 'Wistful Right Limb Spirit of Essence', 231004), (224812, 224812, 300, 300, 'Wistful Right Limb Spirit of Strength', 231004), (224828, 224828, 300, 300, 'Wistful Right Limb Spirit of Weakness', 231004), (224708, 224708, 300, 300, 'Wistful Spirit of Clear Thought', 230992), (225188, 225188, 300, 300, 'Wistful Spirit of Defense', 230998), (224693, 224693, 300, 300, 'Wistful Spirit of Essence', 230998), (224795, 224795, 300, 300, 'Wistful Spirit of Essence Whispered', 230986), (225264, 225264, 300, 300, 'Wistful Spirit of Feet Defense', 230990), (225246, 225246, 300, 300, 'Wistful Spirit of Feet Strength', 230990), (225170, 225170, 300, 300, 'Wistful Spirit of Insight - Right Hand', 231002), (224759, 224759, 300, 300, 'Wistful Spirit of Knowledge Whispered', 230986), (225102, 225102, 300, 300, 'Wistful Spirit of Left Wrist Defense', 231000), (225120, 225120, 300, 300, 'Wistful Spirit of Left Wrist Strength', 231000), (225067, 225067, 300, 300, 'Wistful Spirit of Right Wrist Offence', 231006), (225084, 225084, 300, 300, 'Wistful Spirit of Right Wrist Weakness', 231006), (224777, 224777, 300, 300, 'Wistful Spirit of Strength Whispered', 230986), (252508, 252508, 1, 1, 'Wit of the Atrox', 239277), (305504, 305504, 1, 1, 'Wit of the Immortal', 195259), (277437, 277437, 1, 1, 'Witch Mask', 277476), (204698, 204698, 1, 1, 'Withered Flesh', 289777), (154903, 154903, 157, 157, 'Wixel''s Notum Python', 154363), (296126, 296126, 1, 1, 'Wobey''s T-shirt', 296144), (296287, 296287, 1, 1, 'Wobey''s T-shirt', 296144), (296127, 296127, 1, 1, 'Wobey''s T-shirt Spawner', 296144), (119088, 119088, 1, 1, 'Wonderful Cactus', 119062), (119087, 119087, 1, 1, 'Wonderful Marble Statue of the Goddess Buffy Summers.', 119081), (224037, 224037, 100, 100, 'Wondrous Bronze Ring of Ocra Lux', 84068), (224019, 224019, 100, 100, 'Wondrous Gold Ring of Ocra Lux', 84059), (224035, 224035, 100, 100, 'Wondrous Silver Ring of Ocra Lux', 84063), (294530, 294530, 1, 1, 'Wooden Sled', 294528), (277477, 277477, 1, 1, 'Wooden Stake', 277377), (253494, 253494, 1, 1, 'Wooden Table', 255909), (282084, 282084, 1, 1, 'Wooha Poster', 283583), (282075, 282075, 1, 1, 'Wooha!', 283487), (304219, 304219, 1, 1, 'Woolen Pajamas', 304275), (236308, 236308, 160, 160, 'Working Brain Symbiant, Control Unit Aban', 215189), (235642, 235642, 160, 160, 'Working Brain Symbiant, Infantry Unit Aban', 215189), (236083, 236083, 160, 160, 'Working Brain Symbiant, Support Unit Aban', 215188), (236135, 236135, 160, 160, 'Working Chest Symbiant, Support Unit Aban', 215181), (236324, 236324, 160, 160, 'Working Ear Symbiant, Control Unit Aban', 230977), (235875, 235875, 160, 160, 'Working Ear Symbiant, Extermination Unit Aban', 230977), (235656, 235656, 160, 160, 'Working Ear Symbiant, Infantry Unit Aban', 230977), (236103, 236103, 160, 160, 'Working Ear Symbiant, Support Unit Aban', 230977), (235606, 235606, 160, 160, 'Working Feet Symbiant, Artillery Unit Aban', 215185), (236499, 236499, 160, 160, 'Working Feet Symbiant, Control Unit Aban', 215185), (235826, 235826, 160, 160, 'Working Feet Symbiant, Infantry Unit Aban', 215187), (235928, 235928, 160, 160, 'Working Left Arm Symbiant, Extermination Unit Aban', 215175), (236484, 236484, 160, 160, 'Working Left Hand Symbiant, Control Unit Aban', 215172), (235809, 235809, 160, 160, 'Working Left Hand Symbiant, Infantry Unit Aban', 215172), (235758, 235758, 160, 160, 'Working Left Wrist Symbiant, Infantry Unit Aban', 215198), (236214, 236214, 160, 160, 'Working Left Wrist Symbiant, Support Unit Aban', 215198), (236293, 236293, 160, 160, 'Working Ocular Symbiant, Control Unit Aban', 230979), (236068, 236068, 160, 160, 'Working Ocular Symbiant, Support Unit Aban', 230980), (235453, 235453, 160, 160, 'Working Right Arm Symbiant, Artillery Unit Aban', 215176), (236115, 236115, 160, 160, 'Working Right Arm Symbiant, Support Unit Aban', 215178), (235555, 235555, 160, 160, 'Working Right Hand Symbiant, Artillery Unit Aban', 215173), (236449, 236449, 160, 160, 'Working Right Hand Symbiant, Control Unit Aban', 215173), (235998, 235998, 160, 160, 'Working Right Hand Symbiant, Extermination Unit Aban', 215173), (235774, 235774, 160, 160, 'Working Right Hand Symbiant, Infantry Unit Aban', 215174), (235948, 235948, 160, 160, 'Working Right Wrist Symbiant, Extermination Unit Aban', 215170), (236177, 236177, 160, 160, 'Working Right Wrist Symbiant, Support Unit Aban', 215197), (236016, 236016, 160, 160, 'Working Thigh Symbiant, Extermination Unit Aban', 215192), (235791, 235791, 160, 160, 'Working Thigh Symbiant, Infantry Unit Aban', 215191), (235520, 235520, 160, 160, 'Working Waist Symbiant, Artillery Unit Aban', 215194), (151702, 151703, 1, 19, 'Worm Control Band', 84063), (151703, 151704, 20, 39, 'Worm Control Band', 84063), (151704, 151705, 40, 79, 'Worm Control Band', 84063), (151705, 151706, 80, 119, 'Worm Control Band', 84063), (151706, 151707, 120, 200, 'Worm Control Band', 84063), (122623, 122624, 81, 100, 'Worn Aero Borealis Corona', 33147), (123636, 123637, 81, 100, 'Worn BBI Sigma III', 13318), (121564, 121564, 1, 1, 'Worn Baseball Bat', 13335), (85654, 85653, 1, 199, 'Worn Bau Cyber Armor Boots', 22878), (85611, 85610, 1, 199, 'Worn Bau Cyber Armor Gloves', 22939), (85571, 85570, 1, 199, 'Worn Bau Cyber Armor Helmet', 31738), (85530, 85529, 1, 199, 'Worn Bau Cyber Armor Pants', 22928), (85759, 85758, 1, 199, 'Worn Bau Cyber Armor Sleeves', 22889), (85710, 85709, 1, 199, 'Worn Bau Cyber Body Armor', 22981), (85708, 85707, 1, 199, 'Worn Bau Cyber Female Body Armor', 22942), (123879, 123880, 1, 49, 'Worn BigBurger Inc.', 113994), (121996, 121997, 81, 100, 'Worn Blackened Miniblaster', 13316), (139529, 139529, 1, 1, 'Worn Blackened Miniblaster Construction Manual', 37933), (218403, 218403, 1, 1, 'Worn Blade', 114012), (248339, 248339, 1, 1, 'Worn Bow', 85167), (23151, 23151, 1, 1, 'Worn Crate', 154190), (85655, 22104, 1, 199, 'Worn Cyber Armor Boots', 13262), (85612, 22166, 1, 199, 'Worn Cyber Armor Gloves', 13276), (85572, 22219, 1, 199, 'Worn Cyber Armor Helmet', 22267), (85531, 22289, 1, 199, 'Worn Cyber Armor Pants', 13290), (85477, 21917, 1, 199, 'Worn Cyber Armor Sleeves', 13223), (85712, 22010, 1, 199, 'Worn Cyber Body Armor', 22089), (85711, 22014, 1, 199, 'Worn Cyber Female Body Armor', 13245), (297665, 297665, 1, 1, 'Worn Cyberdeck', 218706), (297666, 297666, 1, 1, 'Worn Cyberdeck', 218706), (297667, 297667, 1, 1, 'Worn Cyberdeck', 218706), (123103, 123104, 81, 100, 'Worn DNA-Targeted Executioner Pistol', 13323), (218395, 218395, 1, 1, 'Worn Dagger', 131264), (88072, 88071, 1, 199, 'Worn Desert Battle Suit', 41165), (122471, 122472, 81, 100, 'Worn El Diablo', 31812), (122452, 122453, 81, 100, 'Worn El Dieu', 31809), (123179, 123180, 81, 100, 'Worn Electron-Charged Pistol', 13316), (214153, 214153, 1, 1, 'Worn Electron-Charged Pistol Construction Manual', 37933), (144107, 144108, 41, 50, 'Worn Freedom Arms 4200', 113997), (218406, 218406, 1, 1, 'Worn Hammer', 33167), (85485, 41402, 1, 199, 'Worn Heavy Omni-Tek Tank Armor', 41168), (85486, 28735, 1, 199, 'Worn Heavy Tank Armor', 22395), (158749, 158750, 50, 100, 'Worn ICC Bodyguard Cloak', 22893), (158751, 158752, 50, 100, 'Worn ICC Delegate Cloak', 22892), (158743, 158744, 50, 100, 'Worn ICC InternOps Cloak', 22898), (158745, 158746, 50, 100, 'Worn ICC Messenger Cloak', 22894), (158747, 158748, 50, 100, 'Worn ICC Pilot Cloak', 22897), (158753, 158754, 50, 100, 'Worn ICC Secretary Cloak', 22895), (123503, 123504, 81, 100, 'Worn IMI Desert Reet 1000', 13334), (122490, 122491, 81, 100, 'Worn Ingram Blaster 23-X', 13317), (160266, 160267, 51, 100, 'Worn Kaen-Archibald Kolt', 13334), (124106, 124107, 1, 12, 'Worn Kalo-BBI Model 55', 13314), (123541, 123542, 87, 104, 'Worn Khemo-Tech Model 07 (Pocket 20)', 113995), (123522, 123523, 81, 100, 'Worn Khemo-Tech Model 200', 113994), (123560, 123561, 87, 104, 'Worn Knights Inc. Special-Purpose Pistol 29029', 13318), (122989, 122990, 81, 100, 'Worn Kolt 58 Magnum', 13334), (141727, 141727, 1, 1, 'Worn Kolt 58 Magnum Construction Manual', 37933), (122281, 122282, 81, 100, 'Worn Kolt PDW-37', 13315), (140505, 140505, 1, 1, 'Worn Kolt PDW-37 Construction Manual', 37933), (123160, 123161, 99, 114, 'Worn Light Beamer Pistol', 33157), (142508, 142508, 1, 1, 'Worn Light Beamer Pistol Construction Manual', 37933), (85483, 41390, 1, 199, 'Worn Light Omni-Tek Tank Armor', 41170), (85484, 28736, 1, 199, 'Worn Light Tank Armor', 22393), (161651, 161652, 61, 80, 'Worn MTI Defender', 161057), (123484, 123485, 81, 100, 'Worn MTI USP 21', 113993), (85478, 41395, 1, 199, 'Worn Medium Omni-Tek Tank Armor', 41167), (85482, 28734, 1, 199, 'Worn Medium Tank Armor', 22397), (85638, 85637, 1, 199, 'Worn Metaplast Armor Boots', 13268), (85596, 85595, 1, 199, 'Worn Metaplast Armor Gloves', 13281), (85557, 85556, 1, 199, 'Worn Metaplast Armor Helmet', 10833), (85512, 85511, 1, 199, 'Worn Metaplast Armor Pants', 13298), (85742, 85741, 1, 199, 'Worn Metaplast Armor Sleeves', 13230), (85686, 85685, 1, 199, 'Worn Metaplast Body Armor', 13251), (122894, 122895, 81, 100, 'Worn Minielectronium', 13323), (122338, 122339, 81, 100, 'Worn Minigrinner', 33156), (140668, 140668, 1, 1, 'Worn Minigrinner Construction Manual', 37933), (85619, 85618, 1, 199, 'Worn Nadir Steel-Ribbed Armor Boots', 22876), (85579, 85578, 1, 199, 'Worn Nadir Steel-Ribbed Armor Gloves', 22931), (85540, 85539, 1, 199, 'Worn Nadir Steel-Ribbed Armor Helmet', 31733), (85493, 85492, 1, 199, 'Worn Nadir Steel-Ribbed Armor Pants', 22914), (85723, 85722, 1, 199, 'Worn Nadir Steel-Ribbed Armor Sleeves', 22960), (85667, 85666, 1, 199, 'Worn Nadir Steel-Ribbed Body Armor', 22985), (160177, 160178, 41, 60, 'Worn OT 12', 21149), (123465, 123466, 81, 100, 'Worn OT Boomer+.90AE', 113995), (124587, 124588, 81, 100, 'Worn OT Viper IX', 21148), (124183, 124184, 1, 11, 'Worn OT-Windchaser RM70', 33155), (124198, 124199, 1, 32, 'Worn OT-Windchaser RM70 Junior', 21146), (121565, 121565, 1, 1, 'Worn Oak Bo', 33162), (85617, 85616, 1, 199, 'Worn Obtru Steel-Ribbed Armor Boots', 22881), (85577, 85576, 1, 199, 'Worn Obtru Steel-Ribbed Armor Gloves', 22932), (85538, 85537, 1, 199, 'Worn Obtru Steel-Ribbed Armor Helmet', 31732), (85491, 85490, 1, 199, 'Worn Obtru Steel-Ribbed Armor Pants', 22913), (85721, 85720, 1, 199, 'Worn Obtru Steel-Ribbed Armor Sleeves', 22961), (85665, 85664, 1, 199, 'Worn Obtru Steel-Ribbed Body Armor', 22986), (122300, 122301, 81, 100, 'Worn Omni-Flamer Mk IV', 33161), (123617, 123618, 81, 100, 'Worn PNG M1007A1 Tactical Revolver', 113997), (123674, 123675, 81, 100, 'Worn River MV', 29116), (124328, 124329, 1, 15, 'Worn Sako J-21 P-96 Response Rifle', 13321), (123693, 123694, 81, 100, 'Worn Seburo Bobsons', 13330), (123655, 123656, 81, 100, 'Worn Sentinels ETE Strike Gun', 31810), (122661, 122662, 81, 100, 'Worn Silver Miniblaster', 13316), (160156, 160157, 41, 60, 'Worn Sleek Cannon', 13342), (121844, 121845, 81, 100, 'Worn Sleekblaster', 13329), (138632, 138632, 1, 1, 'Worn Sleekblaster Construction Manual', 37933), (123084, 123085, 81, 100, 'Worn Sleekblaster Major', 13328), (142332, 142332, 1, 1, 'Worn Sleekblaster Major Construction Manual', 37933), (121825, 121826, 81, 100, 'Worn Sleekblaster Minor', 13327), (138159, 138159, 1, 1, 'Worn Sleekblaster Minor Construction Manual', 37933), (160487, 160488, 31, 40, 'Worn Sleekmaster Classic', 13329), (157638, 157639, 51, 100, 'Worn Soft Pepper Pistol', 113995), (85620, 22158, 1, 199, 'Worn Steel-Ribbed Armor Boots', 13274), (85580, 22212, 1, 199, 'Worn Steel-Ribbed Armor Gloves', 13286), (85541, 22262, 1, 199, 'Worn Steel-Ribbed Armor Helmet', 10843), (85494, 22347, 1, 199, 'Worn Steel-Ribbed Armor Pants', 13304), (85724, 21971, 1, 199, 'Worn Steel-Ribbed Armor Sleeves', 13236), (85668, 22080, 1, 199, 'Worn Steel-Ribbed Body Armor', 13257), (218404, 218404, 1, 1, 'Worn Sword', 114005), (122642, 122643, 81, 100, 'Worn The Original Plasma-Emitter', 33145), (122034, 122035, 81, 100, 'Worn Triplejolt', 13320), (139927, 139927, 1, 1, 'Worn Triplejolt Construction Manual', 37933), (123446, 123447, 81, 100, 'Worn Ultra-Light Missile Pistol Raid 9-X', 13315), (85479, 41398, 1, 199, 'Worn Very Light Omni-Tek Tank Armor', 41169), (85480, 28738, 1, 199, 'Worn Very Light Tank Armor', 22401), (85652, 85651, 1, 199, 'Worn Waitt Cyber Armor Boots', 22877), (85609, 85608, 1, 199, 'Worn Waitt Cyber Armor Gloves', 22940), (85569, 85568, 1, 199, 'Worn Waitt Cyber Armor Helmet', 31737), (85528, 85527, 1, 199, 'Worn Waitt Cyber Armor Pants', 22927), (85757, 85756, 1, 199, 'Worn Waitt Cyber Armor Sleeves', 22888), (85706, 85705, 1, 199, 'Worn Waitt Cyber Body Armor', 22982), (85704, 85703, 1, 199, 'Worn Waitt Cyber Female Body Armor', 22941), (122824, 122825, 1, 20, 'Worn-Out Chair', 33164), (281234, 281234, 1, 1, 'Worshipper''s Cut Gem', 281223), (281218, 281218, 1, 1, 'Worshipper''s Gem', 281224), (281204, 281204, 1, 1, 'Worshipper''s Signet of The Apocalypse', 281195), (294047, 294047, 1, 1, 'Wrapped Box Head', 294363), (301742, 301742, 1, 1, 'Wrapped Gift', 205832), (297156, 297156, 1, 1, 'Wrapped Premium Health and Nano Recharger', 301309), (294131, 294131, 1, 1, 'Wrapped Present', 294209), (233236, 233237, 1, 99, 'Wrath of Zeus', 233218), (233238, 233239, 100, 199, 'Wrath of Zeus', 233218), (233240, 233241, 200, 299, 'Wrath of Zeus', 233218), (259919, 259919, 1, 1, 'Wreath', 119081), (207265, 207265, 20, 20, 'Wreath of Insects', 151933), (248757, 248758, 1, 220, 'Wrinkled Nano Input Hood', 82922), (248822, 248822, 1, 1, 'Wrinkled Swatch of Alien Fabric', 161077), (268700, 268700, 1, 1, 'Wrist Datapad', 268672), (268701, 268701, 1, 1, 'Wrist Datapad', 268672), (268702, 268702, 1, 1, 'Wrist Datapad', 268672), (268703, 268703, 1, 1, 'Wrist Datapad', 268672), (268704, 268704, 1, 1, 'Wrist Datapad', 268672), (268705, 268705, 1, 1, 'Wrist Datapad', 268672), (268706, 268706, 1, 1, 'Wrist Datapad', 268672), (294567, 294567, 1, 1, 'Writ of Dissolution', 295023), (142827, 142828, 101, 120, 'Wyatt Quality Survival Knife', 40783), (203088, 203089, 250, 300, 'X-11 Ejector Turret', 202210), (203090, 203091, 250, 300, 'X-11 Ejector Turret', 202210), (202591, 202592, 250, 300, 'X-11 Ejector Turret Controller', 203580), (301885, 301885, 300, 300, 'X1-R4 Viral Force-Blades', 301893), (287422, 287422, 1, 1, 'XLarge Backpack - AO', 287410), (287421, 287421, 1, 1, 'XLarge Backpack - Alien', 287409), (287423, 287423, 1, 1, 'XLarge Backpack - Armor', 287411), (287609, 287609, 1, 1, 'XLarge Backpack - Biohazard', 287597), (287610, 287610, 1, 1, 'XLarge Backpack - Bolts', 287598), (287427, 287427, 1, 1, 'XLarge Backpack - CStar', 287415), (287417, 287417, 1, 1, 'XLarge Backpack - Circle', 287405), (287424, 287424, 1, 1, 'XLarge Backpack - Clan', 287412), (287425, 287425, 1, 1, 'XLarge Backpack - Clover', 287413), (287426, 287426, 1, 1, 'XLarge Backpack - Cold', 287414), (287611, 287611, 1, 1, 'XLarge Backpack - Credits', 287599), (287428, 287428, 1, 1, 'XLarge Backpack - Diamond', 287385), (287418, 287418, 1, 1, 'XLarge Backpack - Dots', 287406), (287612, 287612, 1, 1, 'XLarge Backpack - Fire', 287600), (287613, 287613, 1, 1, 'XLarge Backpack - Food', 287601), (287429, 287429, 1, 1, 'XLarge Backpack - Gear', 287386), (287430, 287430, 1, 1, 'XLarge Backpack - Gems', 287387), (287614, 287614, 1, 1, 'XLarge Backpack - Glasses', 287602), (287431, 287431, 1, 1, 'XLarge Backpack - Hand', 287388), (287615, 287615, 1, 1, 'XLarge Backpack - Lock', 287603), (287432, 287432, 1, 1, 'XLarge Backpack - Luck', 287389), (287433, 287433, 1, 1, 'XLarge Backpack - MA', 287390), (287434, 287434, 1, 1, 'XLarge Backpack - Medical', 287391), (287435, 287435, 1, 1, 'XLarge Backpack - Melee', 287392), (287437, 287437, 1, 1, 'XLarge Backpack - NCU', 287393), (287436, 287436, 1, 1, 'XLarge Backpack - Nano', 287416), (287616, 287616, 1, 1, 'XLarge Backpack - Nanokit', 287604), (287438, 287438, 1, 1, 'XLarge Backpack - Nuke', 287394), (287439, 287439, 1, 1, 'XLarge Backpack - Omni', 287395), (287419, 287419, 1, 1, 'XLarge Backpack - Pies', 287407), (287440, 287440, 1, 1, 'XLarge Backpack - Power', 287396), (287441, 287441, 1, 1, 'XLarge Backpack - Ranged', 287397), (287617, 287617, 1, 1, 'XLarge Backpack - Redeemed', 287605), (287442, 287442, 1, 1, 'XLarge Backpack - Rings', 287398), (287618, 287618, 1, 1, 'XLarge Backpack - Social', 287606), (287420, 287420, 1, 1, 'XLarge Backpack - Squares', 287408), (287443, 287443, 1, 1, 'XLarge Backpack - Star', 287399), (287444, 287444, 1, 1, 'XLarge Backpack - Target', 287400), (287445, 287445, 1, 1, 'XLarge Backpack - Time', 287401), (287446, 287446, 1, 1, 'XLarge Backpack - Tools', 287402), (287619, 287619, 1, 1, 'XLarge Backpack - Tower', 287607), (287447, 287447, 1, 1, 'XLarge Backpack - Trash', 287403), (287620, 287620, 1, 1, 'XLarge Backpack - UnRedeemed', 287608), (287448, 287448, 1, 1, 'XLarge Backpack - X', 287404), (286987, 286987, 1, 1, 'XP & Tokens Reward', 281837), (83935, 83935, 1, 1, 'XP Pinky', 20411), (286988, 286988, 1, 1, 'XP Reward', 281837), (119586, 119586, 1, 1, 'XT42 Audio Component System', 119178), (119587, 119587, 1, 1, 'XT982 Audio Component System', 119177), (154908, 154909, 1, 200, 'XU-11 Serum', 100338), (282086, 282086, 1, 1, 'XXX Plumbo Poster', 283584), (130607, 130607, 1, 1, 'XXX-Plumbo Beer Can', 37953), (278940, 278940, 1, 1, 'Xan Alien Playfield Script Item', 16248), (279311, 279311, 1, 1, 'Xan Alien Playfield Script Item', 16248), (279313, 279313, 1, 1, 'Xan Alien Playfield Script Item', 16248), (279315, 279315, 1, 1, 'Xan Alien Playfield Script Item', 16248), (279317, 279317, 1, 1, 'Xan Alien Playfield Script Item', 16248), (279319, 279319, 1, 1, 'Xan Alien Playfield Script Item', 16248), (278941, 278941, 1, 1, 'Xan Alien Playfield Script Item Wearable', 16248), (279312, 279312, 1, 1, 'Xan Alien Playfield Script Item Wearable', 16248), (279314, 279314, 1, 1, 'Xan Alien Playfield Script Item Wearable', 16248), (279316, 279316, 1, 1, 'Xan Alien Playfield Script Item Wearable', 16248), (279318, 279318, 1, 1, 'Xan Alien Playfield Script Item Wearable', 16248), (279320, 279320, 1, 1, 'Xan Alien Playfield Script Item Wearable', 16248), (279322, 279323, 250, 300, 'Xan Brain Spirit of Computer Skill - Alpha', 230992), (279321, 279321, 250, 250, 'Xan Brain Spirit of Computer Skill - Beta', 230992), (279324, 279325, 250, 300, 'Xan Brain Spirit of Intellect - Alpha', 230992), (279103, 279104, 250, 300, 'Xan Brain Spirit of Offence - Alpha', 230992), (279068, 279068, 250, 250, 'Xan Brain Spirit of Offence - Beta', 230992), (279189, 279190, 250, 300, 'Xan Brain Spirit of Power - Alpha', 230992), (279191, 279192, 250, 300, 'Xan Brain Spirit of Will - Alpha', 230992), (278907, 278907, 300, 300, 'Xan Brain Symbiant, Artillery Unit', 215189), (278944, 278944, 300, 300, 'Xan Brain Symbiant, Artillery Unit Alpha', 280927), (278892, 278892, 300, 300, 'Xan Brain Symbiant, Artillery Unit Beta', 215189), (278957, 278957, 300, 300, 'Xan Brain Symbiant, Control Unit Alpha', 280927), (279009, 279009, 300, 300, 'Xan Brain Symbiant, Control Unit Beta', 215189), (278970, 278970, 300, 300, 'Xan Brain Symbiant, Extermination Unit Alpha', 280927), (279022, 279022, 300, 300, 'Xan Brain Symbiant, Extermination Unit Beta', 215189), (278983, 278983, 300, 300, 'Xan Brain Symbiant, Infantry Unit Alpha', 280927), (279035, 279035, 300, 300, 'Xan Brain Symbiant, Infantry Unit Beta', 215189), (278996, 278996, 300, 300, 'Xan Brain Symbiant, Support Unit Alpha', 280927), (279048, 279048, 300, 300, 'Xan Brain Symbiant, Support Unit Beta', 215189), (278910, 278910, 300, 300, 'Xan Chest Symbiant, Artillery Unit', 215181), (278947, 278947, 300, 300, 'Xan Chest Symbiant, Artillery Unit Alpha', 280928), (278895, 278895, 300, 300, 'Xan Chest Symbiant, Artillery Unit Beta', 215181), (278960, 278960, 300, 300, 'Xan Chest Symbiant, Control Unit Alpha', 280928), (279012, 279012, 300, 300, 'Xan Chest Symbiant, Control Unit Beta', 215181), (278973, 278973, 300, 300, 'Xan Chest Symbiant, Extermination Unit Alpha', 280928), (279025, 279025, 300, 300, 'Xan Chest Symbiant, Extermination Unit Beta', 215181), (278986, 278986, 300, 300, 'Xan Chest Symbiant, Infantry Unit Alpha', 280928), (279038, 279038, 300, 300, 'Xan Chest Symbiant, Infantry Unit Beta', 215181), (278999, 278999, 300, 300, 'Xan Chest Symbiant, Support Unit Alpha', 280928), (279051, 279051, 300, 300, 'Xan Chest Symbiant, Support Unit Beta', 215181), (279439, 279439, 1, 1, 'Xan Combat Merit Board Base', 279442), (279440, 279440, 1, 1, 'Xan Defense Merit Board Base', 279443), (278909, 278909, 300, 300, 'Xan Ear Symbiant, Artillery Unit', 230978), (278946, 278946, 300, 300, 'Xan Ear Symbiant, Artillery Unit Alpha', 280929), (278894, 278894, 300, 300, 'Xan Ear Symbiant, Artillery Unit Beta', 230978), (278959, 278959, 300, 300, 'Xan Ear Symbiant, Control Unit Alpha', 280929), (279011, 279011, 300, 300, 'Xan Ear Symbiant, Control Unit Beta', 230978), (278972, 278972, 300, 300, 'Xan Ear Symbiant, Extermination Unit Alpha', 280929), (279024, 279024, 300, 300, 'Xan Ear Symbiant, Extermination Unit Beta', 230978), (278985, 278985, 300, 300, 'Xan Ear Symbiant, Infantry Unit Alpha', 280929), (279037, 279037, 300, 300, 'Xan Ear Symbiant, Infantry Unit Beta', 230978), (278998, 278998, 300, 300, 'Xan Ear Symbiant, Support Unit Alpha', 280929), (279050, 279050, 300, 300, 'Xan Ear Symbiant, Support Unit Beta', 230978), (279105, 279106, 250, 300, 'Xan Essence Brain Spirit - Alpha', 230992), (279069, 279069, 250, 250, 'Xan Essence Brain Spirit - Beta', 230992), (267800, 267800, 250, 250, 'Xan Essence Crystal - Divided Loyalty', 235354), (267904, 267904, 250, 250, 'Xan Essence Crystal - Gruesome Misery', 235354), (267799, 267799, 250, 250, 'Xan Essence Crystal - Sister Merciless', 235354), (267880, 267880, 250, 250, 'Xan Essence Crystal - Sister Pestilence', 235354), (267892, 267892, 250, 250, 'Xan Essence Crystal - Summoned Terror', 235354), (278919, 278919, 300, 300, 'Xan Feet Symbiant, Artillery Unit', 215184), (278956, 278956, 300, 300, 'Xan Feet Symbiant, Artillery Unit Alpha', 280931), (278904, 278904, 300, 300, 'Xan Feet Symbiant, Artillery Unit Beta', 215184), (278969, 278969, 300, 300, 'Xan Feet Symbiant, Control Unit Alpha', 280931), (279021, 279021, 300, 300, 'Xan Feet Symbiant, Control Unit Beta', 215184), (278982, 278982, 300, 300, 'Xan Feet Symbiant, Extermination Unit Alpha', 280931), (279034, 279034, 300, 300, 'Xan Feet Symbiant, Extermination Unit Beta', 215184), (278995, 278995, 300, 300, 'Xan Feet Symbiant, Infantry Unit Alpha', 280931), (279047, 279047, 300, 300, 'Xan Feet Symbiant, Infantry Unit Beta', 215184), (279008, 279008, 300, 300, 'Xan Feet Symbiant, Support Unit Alpha', 280931), (279060, 279060, 300, 300, 'Xan Feet Symbiant, Support Unit Beta', 215184), (226016, 226017, 1, 300, 'Xan Funeral Urn', 119173), (279117, 279118, 250, 300, 'Xan Heart Spirit of Essence - Alpha', 230984), (279075, 279075, 250, 250, 'Xan Heart Spirit of Essence - Beta', 230984), (279119, 279120, 250, 300, 'Xan Heart Spirit of Knowledge - Alpha', 230984), (279076, 279076, 250, 250, 'Xan Heart Spirit of Knowledge - Beta', 230984), (279206, 279207, 250, 300, 'Xan Heart Spirit of Power - Alpha', 230984), (279121, 279122, 250, 300, 'Xan Heart Spirit of Strength - Alpha', 230984), (279077, 279077, 250, 250, 'Xan Heart Spirit of Strength - Beta', 230984), (279123, 279124, 250, 300, 'Xan Heart Spirit of Weakness - Alpha', 230984), (279078, 279078, 250, 250, 'Xan Heart Spirit of Weakness - Beta', 230984), (279204, 279205, 250, 300, 'Xan Heart Spirit of Will - Alpha', 230984), (281065, 281065, 1, 1, 'Xan Instance Blocker', 84059), (279328, 279328, 1, 1, 'Xan Knowledge', 281837), (278911, 278911, 300, 300, 'Xan Left Arm Symbiant, Artillery Unit', 215179), (278948, 278948, 300, 300, 'Xan Left Arm Symbiant, Artillery Unit Alpha', 280932), (278896, 278896, 300, 300, 'Xan Left Arm Symbiant, Artillery Unit Beta', 215179), (278961, 278961, 300, 300, 'Xan Left Arm Symbiant, Control Unit Alpha', 280932), (279013, 279013, 300, 300, 'Xan Left Arm Symbiant, Control Unit Beta', 215179), (278974, 278974, 300, 300, 'Xan Left Arm Symbiant, Extermination Unit Alpha', 280932), (279026, 279026, 300, 300, 'Xan Left Arm Symbiant, Extermination Unit Beta', 215179), (278987, 278987, 300, 300, 'Xan Left Arm Symbiant, Infantry Unit Alpha', 280932), (279039, 279039, 300, 300, 'Xan Left Arm Symbiant, Infantry Unit Beta', 215179), (279000, 279000, 300, 300, 'Xan Left Arm Symbiant, Support Unit Alpha', 280932), (279052, 279052, 300, 300, 'Xan Left Arm Symbiant, Support Unit Beta', 215179), (279133, 279134, 250, 300, 'Xan Left Hand Spirit of Defence - Alpha', 230994), (279083, 279083, 250, 250, 'Xan Left Hand Spirit of Defence - Beta', 230994), (279212, 279213, 250, 300, 'Xan Left Hand Spirit of Power - Alpha', 230994), (279135, 279136, 250, 300, 'Xan Left Hand Spirit of Strength - Alpha', 230994), (279084, 279084, 250, 250, 'Xan Left Hand Spirit of Strength - Beta', 230994), (278912, 278912, 300, 300, 'Xan Left Hand Symbiant, Artillery Unit', 215171), (278949, 278949, 300, 300, 'Xan Left Hand Symbiant, Artillery Unit Alpha', 280933), (278897, 278897, 300, 300, 'Xan Left Hand Symbiant, Artillery Unit Beta', 215171), (278962, 278962, 300, 300, 'Xan Left Hand Symbiant, Control Unit Alpha', 280933), (279014, 279014, 300, 300, 'Xan Left Hand Symbiant, Control Unit Beta', 215171), (278975, 278975, 300, 300, 'Xan Left Hand Symbiant, Extermination Unit Alpha', 280933), (279027, 279027, 300, 300, 'Xan Left Hand Symbiant, Extermination Unit Beta', 215171), (278988, 278988, 300, 300, 'Xan Left Hand Symbiant, Infantry Unit Alpha', 280933), (279040, 279040, 300, 300, 'Xan Left Hand Symbiant, Infantry Unit Beta', 215171), (279001, 279001, 300, 300, 'Xan Left Hand Symbiant, Support Unit Alpha', 280933), (279053, 279053, 300, 300, 'Xan Left Hand Symbiant, Support Unit Beta', 215171), (279210, 279211, 250, 300, 'Xan Left Limb Spirit of Defense - Alpha', 230995), (279125, 279126, 250, 300, 'Xan Left Limb Spirit of Essence - Alpha', 230995), (279079, 279079, 250, 250, 'Xan Left Limb Spirit of Essence - Beta', 230995), (279208, 279209, 250, 300, 'Xan Left Limb Spirit of Power - Alpha', 230995), (279127, 279128, 250, 300, 'Xan Left Limb Spirit of Strength - Alpha', 230995), (279080, 279080, 250, 250, 'Xan Left Limb Spirit of Strength - Beta', 230995), (279129, 279130, 250, 300, 'Xan Left Limb Spirit of Understanding - Alpha', 230995), (279081, 279081, 250, 250, 'Xan Left Limb Spirit of Understanding - Beta', 230995), (279131, 279132, 250, 300, 'Xan Left Limb Spirit of Weakness - Alpha', 230995), (279082, 279082, 250, 250, 'Xan Left Limb Spirit of Weakness - Beta', 230995), (278913, 278913, 300, 300, 'Xan Left Wrist Symbiant, Artillery Unit', 215198), (278950, 278950, 300, 300, 'Xan Left Wrist Symbiant, Artillery Unit Alpha', 280934), (278898, 278898, 300, 300, 'Xan Left Wrist Symbiant, Artillery Unit Beta', 215198), (278963, 278963, 300, 300, 'Xan Left Wrist Symbiant, Control Unit Alpha', 280934), (279015, 279015, 300, 300, 'Xan Left Wrist Symbiant, Control Unit Beta', 215198), (278976, 278976, 300, 300, 'Xan Left Wrist Symbiant, Extermination Unit Alpha', 280934), (279028, 279028, 300, 300, 'Xan Left Wrist Symbiant, Extermination Unit Beta', 215198), (278989, 278989, 300, 300, 'Xan Left Wrist Symbiant, Infantry Unit Alpha', 280934), (279041, 279041, 300, 300, 'Xan Left Wrist Symbiant, Infantry Unit Beta', 215198), (279002, 279002, 300, 300, 'Xan Left Wrist Symbiant, Support Unit Alpha', 280934), (279054, 279054, 300, 300, 'Xan Left Wrist Symbiant, Support Unit Beta', 215198), (279229, 279230, 250, 300, 'Xan Midriff Spirit of Defense - Alpha', 230976), (279157, 279158, 250, 300, 'Xan Midriff Spirit of Essence - Alpha', 230976), (279095, 279095, 250, 250, 'Xan Midriff Spirit of Essence - Beta', 230976), (279159, 279160, 250, 300, 'Xan Midriff Spirit of Knowledge - Alpha', 230976), (279096, 279096, 250, 250, 'Xan Midriff Spirit of Knowledge - Beta', 230976), (279227, 279228, 250, 300, 'Xan Midriff Spirit of Power - Alpha', 230976), (279161, 279162, 250, 300, 'Xan Midriff Spirit of Strength - Alpha', 230976), (279097, 279097, 250, 250, 'Xan Midriff Spirit of Strength - Beta', 230976), (279163, 279164, 250, 300, 'Xan Midriff Spirit of Weakness - Alpha', 230976), (279098, 279098, 250, 250, 'Xan Midriff Spirit of Weakness - Beta', 230976), (278908, 278908, 300, 300, 'Xan Ocular Symbiant, Artillery Unit', 230980), (278945, 278945, 300, 300, 'Xan Ocular Symbiant, Artillery Unit Alpha', 280930), (278893, 278893, 300, 300, 'Xan Ocular Symbiant, Artillery Unit Beta', 230980), (278958, 278958, 300, 300, 'Xan Ocular Symbiant, Control Unit Alpha', 280930), (279010, 279010, 300, 300, 'Xan Ocular Symbiant, Control Unit Beta', 230980), (278971, 278971, 300, 300, 'Xan Ocular Symbiant, Extermination Unit Alpha', 280930), (279023, 279023, 300, 300, 'Xan Ocular Symbiant, Extermination Unit Beta', 230980), (278984, 278984, 300, 300, 'Xan Ocular Symbiant, Infantry Unit Alpha', 280930), (279036, 279036, 300, 300, 'Xan Ocular Symbiant, Infantry Unit Beta', 230980), (278997, 278997, 300, 300, 'Xan Ocular Symbiant, Support Unit Alpha', 280930), (279049, 279049, 300, 300, 'Xan Ocular Symbiant, Support Unit Beta', 230980), (265349, 265349, 1, 1, 'Xan Prayer Urn', 154195), (278914, 278914, 300, 300, 'Xan Right Arm Symbiant, Artillery Unit', 215176), (278951, 278951, 300, 300, 'Xan Right Arm Symbiant, Artillery Unit Alpha', 280935), (278899, 278899, 300, 300, 'Xan Right Arm Symbiant, Artillery Unit Beta', 215176), (278964, 278964, 300, 300, 'Xan Right Arm Symbiant, Control Unit Alpha', 280935), (279016, 279016, 300, 300, 'Xan Right Arm Symbiant, Control Unit Beta', 215176), (278977, 278977, 300, 300, 'Xan Right Arm Symbiant, Extermination Unit Alpha', 280935), (279029, 279029, 300, 300, 'Xan Right Arm Symbiant, Extermination Unit Beta', 215176), (278990, 278990, 300, 300, 'Xan Right Arm Symbiant, Infantry Unit Alpha', 280935), (279042, 279042, 300, 300, 'Xan Right Arm Symbiant, Infantry Unit Beta', 215176), (279003, 279003, 300, 300, 'Xan Right Arm Symbiant, Support Unit Alpha', 280935), (279055, 279055, 300, 300, 'Xan Right Arm Symbiant, Support Unit Beta', 215176), (279147, 279148, 250, 300, 'Xan Right Hand Defensive Spirit - Alpha', 231002), (279090, 279090, 250, 250, 'Xan Right Hand Defensive Spirit - Beta', 231002), (279149, 279150, 250, 300, 'Xan Right Hand Strength Spirit - Alpha', 231002), (279091, 279091, 250, 250, 'Xan Right Hand Strength Spirit - Beta', 231002), (278915, 278915, 300, 300, 'Xan Right Hand Symbiant, Artillery Unit', 215173), (278952, 278952, 300, 300, 'Xan Right Hand Symbiant, Artillery Unit Alpha', 280936), (278900, 278900, 300, 300, 'Xan Right Hand Symbiant, Artillery Unit Beta', 215173), (278965, 278965, 300, 300, 'Xan Right Hand Symbiant, Control Unit Alpha', 280936), (279017, 279017, 300, 300, 'Xan Right Hand Symbiant, Control Unit Beta', 215173), (278978, 278978, 300, 300, 'Xan Right Hand Symbiant, Extermination Unit Alpha', 280936), (279030, 279030, 300, 300, 'Xan Right Hand Symbiant, Extermination Unit Beta', 215173), (278991, 278991, 300, 300, 'Xan Right Hand Symbiant, Infantry Unit Alpha', 280936), (279043, 279043, 300, 300, 'Xan Right Hand Symbiant, Infantry Unit Beta', 215173), (279004, 279004, 300, 300, 'Xan Right Hand Symbiant, Support Unit Alpha', 280936), (279056, 279056, 300, 300, 'Xan Right Hand Symbiant, Support Unit Beta', 215173), (279219, 279220, 250, 300, 'Xan Right Limb Spirit of Defense - Alpha', 231004), (279141, 279142, 250, 300, 'Xan Right Limb Spirit of Essence - Alpha', 231004), (279087, 279087, 250, 250, 'Xan Right Limb Spirit of Essence - Beta', 231004), (279216, 279217, 250, 300, 'Xan Right Limb Spirit of Power - Alpha', 231004), (279143, 279144, 250, 300, 'Xan Right Limb Spirit of Strength - Alpha', 231004), (279088, 279088, 250, 250, 'Xan Right Limb Spirit of Strength - Beta', 231004), (279145, 279146, 250, 300, 'Xan Right Limb Spirit of Weakness - Alpha', 231004), (279089, 279089, 250, 250, 'Xan Right Limb Spirit of Weakness - Beta', 231004), (278916, 278916, 300, 300, 'Xan Right Wrist Symbiant, Artillery Unit', 215170), (278953, 278953, 300, 300, 'Xan Right Wrist Symbiant, Artillery Unit Alpha', 280937), (278901, 278901, 300, 300, 'Xan Right Wrist Symbiant, Artillery Unit Beta', 215170), (278966, 278966, 300, 300, 'Xan Right Wrist Symbiant, Control Unit Alpha', 280937), (279018, 279018, 300, 300, 'Xan Right Wrist Symbiant, Control Unit Beta', 215170), (278979, 278979, 300, 300, 'Xan Right Wrist Symbiant, Extermination Unit Alpha', 280937), (279031, 279031, 300, 300, 'Xan Right Wrist Symbiant, Extermination Unit Beta', 215170), (278992, 278992, 300, 300, 'Xan Right Wrist Symbiant, Infantry Unit Alpha', 280937), (279044, 279044, 300, 300, 'Xan Right Wrist Symbiant, Infantry Unit Beta', 215170), (279005, 279005, 300, 300, 'Xan Right Wrist Symbiant, Support Unit Alpha', 280937), (279057, 279057, 300, 300, 'Xan Right Wrist Symbiant, Support Unit Beta', 215170), (279221, 279222, 250, 300, 'Xan Right hand Spirit of Power - Alpha', 231002), (279223, 279224, 250, 300, 'Xan Right hand Spirit of Will - Alpha', 231002), (265357, 265357, 1, 1, 'Xan Ritual Scepter', 265359), (279107, 279108, 250, 300, 'Xan Spirit of Clear Thought - Alpha', 230992), (279070, 279070, 250, 250, 'Xan Spirit of Clear Thought - Beta', 230992), (279165, 279166, 250, 300, 'Xan Spirit of Defense - Alpha', 230998), (279099, 279099, 250, 250, 'Xan Spirit of Defense - Beta', 230998), (279109, 279110, 250, 300, 'Xan Spirit of Discerning Weakness - Alpha', 230988), (279071, 279071, 250, 250, 'Xan Spirit of Discerning Weakness - Beta', 230988), (279167, 279168, 250, 300, 'Xan Spirit of Essence - Alpha', 230998), (279174, 279175, 250, 300, 'Xan Spirit of Essence - Alpha', 230988), (279100, 279100, 250, 250, 'Xan Spirit of Essence - Beta', 230998), (279173, 279173, 250, 250, 'Xan Spirit of Essence - Beta', 230988), (279111, 279112, 250, 300, 'Xan Spirit of Essence Whispered - Alpha', 230986), (279072, 279072, 250, 250, 'Xan Spirit of Essence Whispered - Beta', 230986), (279169, 279170, 250, 300, 'Xan Spirit of Feet Defense - Alpha', 230990), (279101, 279101, 250, 250, 'Xan Spirit of Feet Defense - Beta', 230990), (279171, 279172, 250, 300, 'Xan Spirit of Feet Strength - Alpha', 230990), (279102, 279102, 250, 250, 'Xan Spirit of Feet Strength - Beta', 230990), (279151, 279152, 250, 300, 'Xan Spirit of Insight - Right Hand - Alpha', 231002), (279092, 279092, 250, 250, 'Xan Spirit of Insight - Right Hand - Beta', 231002), (279113, 279114, 250, 300, 'Xan Spirit of Knowledge Whispered - Alpha', 230986), (279073, 279073, 250, 250, 'Xan Spirit of Knowledge Whispered - Beta', 230986), (279214, 279215, 250, 300, 'Xan Spirit of Left Wrist Power - Alpha', 231000), (279137, 279138, 250, 300, 'Xan Spirit of Left Wrist Defense - Alpha', 231000), (279085, 279085, 250, 250, 'Xan Spirit of Left Wrist Defense - Beta', 231000), (279139, 279140, 250, 300, 'Xan Spirit of Left Wrist Strength - Alpha', 231000), (279086, 279086, 250, 250, 'Xan Spirit of Left Wrist Strength - Beta', 231000), (279231, 279232, 250, 300, 'Xan Spirit of Power - Alpha', 230998), (279225, 279226, 250, 300, 'Xan Spirit of Right Wrist Power - Alpha', 231006), (279153, 279154, 250, 300, 'Xan Spirit of Right Wrist Offence - Alpha', 231006), (279093, 279093, 250, 250, 'Xan Spirit of Right Wrist Offence - Beta', 231006), (279155, 279156, 250, 300, 'Xan Spirit of Right Wrist Weakness - Alpha', 231006), (279094, 279094, 250, 250, 'Xan Spirit of Right Wrist Weakness - Beta', 231006), (279195, 279196, 250, 300, 'Xan Spirit of Secrecy Whispered - Alpha', 230986), (279193, 279194, 250, 300, 'Xan Spirit of Stealth - Alpha', 230988), (279199, 279200, 250, 300, 'Xan Spirit of Stealth Whispered - Alpha', 230986), (279115, 279116, 250, 300, 'Xan Spirit of Strength Whispered - Alpha', 230986), (279074, 279074, 250, 250, 'Xan Spirit of Strength Whispered - Beta', 230986), (267923, 267923, 250, 250, 'Xan Storage Matrix', 83872), (267924, 267924, 250, 250, 'Xan Storage Matrix', 83872), (267925, 267925, 250, 250, 'Xan Storage Matrix', 83872), (267926, 267926, 250, 250, 'Xan Storage Matrix', 83872), (267927, 267927, 250, 250, 'Xan Storage Matrix', 83872), (278918, 278918, 300, 300, 'Xan Thigh Symbiant, Artillery Unit', 215191), (278955, 278955, 300, 300, 'Xan Thigh Symbiant, Artillery Unit Alpha', 280938), (278903, 278903, 300, 300, 'Xan Thigh Symbiant, Artillery Unit Beta', 215191), (278968, 278968, 300, 300, 'Xan Thigh Symbiant, Control Unit Alpha', 280938), (279020, 279020, 300, 300, 'Xan Thigh Symbiant, Control Unit Beta', 215191), (278981, 278981, 300, 300, 'Xan Thigh Symbiant, Extermination Unit Alpha', 280938), (279033, 279033, 300, 300, 'Xan Thigh Symbiant, Extermination Unit Beta', 215191), (278994, 278994, 300, 300, 'Xan Thigh Symbiant, Infantry Unit Alpha', 280938), (279046, 279046, 300, 300, 'Xan Thigh Symbiant, Infantry Unit Beta', 215191), (279007, 279007, 300, 300, 'Xan Thigh Symbiant, Support Unit Alpha', 280938), (279059, 279059, 300, 300, 'Xan Thigh Symbiant, Support Unit Beta', 215191), (278917, 278917, 300, 300, 'Xan Waist Symbiant, Artillery Unit', 215193), (278954, 278954, 300, 300, 'Xan Waist Symbiant, Artillery Unit Alpha', 280939), (278902, 278902, 300, 300, 'Xan Waist Symbiant, Artillery Unit Beta', 215193), (278967, 278967, 300, 300, 'Xan Waist Symbiant, Control Unit Alpha', 280939), (279019, 279019, 300, 300, 'Xan Waist Symbiant, Control Unit Beta', 215193), (278980, 278980, 300, 300, 'Xan Waist Symbiant, Extermination Unit Alpha', 280939), (279032, 279032, 300, 300, 'Xan Waist Symbiant, Extermination Unit Beta', 215193), (278993, 278993, 300, 300, 'Xan Waist Symbiant, Infantry Unit Alpha', 280939), (279045, 279045, 300, 300, 'Xan Waist Symbiant, Infantry Unit Beta', 215193), (279006, 279006, 300, 300, 'Xan Waist Symbiant, Support Unit Alpha', 280939), (279058, 279058, 300, 300, 'Xan Waist Symbiant, Support Unit Beta', 215193), (280786, 280786, 300, 300, 'Xan Weapon Upgrade Device', 246391), (279451, 279451, 300, 300, 'Xan''s Blue Belt of Triple Prudence', 280960), (279450, 279450, 300, 300, 'Xan''s Red Belt of Triple Power', 280962), (279449, 279449, 300, 300, 'Xan''s Viral Belt Component Platform', 280959), (279452, 279452, 300, 300, 'Xan''s Yellow Belt of Triple Speed', 280963), (245121, 245121, 1, 1, 'Xark''s Whisker', 203230), (254452, 254452, 1, 1, 'XenoRing', 151931), (248616, 248617, 81, 100, 'Xnemth Plasmaprojector', 21145), (268305, 268306, 1, 300, 'XtremTech''s Ring of Casting', 151931), (124536, 124537, 32, 59, 'YES Assault 1007 Model 5', 113990), (124538, 124539, 60, 99, 'YES Assault 1007 Model 5.2', 113990), (124540, 124541, 100, 140, 'YES Assault 1007 Model 5.2 Miles', 113990), (124542, 124543, 141, 191, 'YES Assault 1007 Model 5.3', 113990), (124544, 124544, 192, 192, 'YES Assault 1007 Model 5.5 Piratos', 113990), (124545, 124546, 1, 99, 'YES Support 1010', 21148), (124547, 124547, 100, 100, 'YES Support 1011', 21148), (304390, 304390, 1, 1, 'YYY', 281837), (304391, 304391, 1, 1, 'YYY', 281837), (304392, 304392, 1, 1, 'YYY', 281837), (304393, 304393, 1, 1, 'YYY', 281837), (304394, 304394, 1, 1, 'YYY', 281837), (304395, 304395, 1, 1, 'YYY', 281837), (304396, 304396, 1, 1, 'YYY', 281837), (304397, 304397, 1, 1, 'YYY', 281837), (304398, 304398, 1, 1, 'YYY', 281837), (304399, 304399, 1, 1, 'YYY', 281837), (304400, 304400, 1, 1, 'YYY', 281837), (142819, 142820, 21, 40, 'Yadol Co Survival Knife', 40783), (253446, 253446, 1, 1, 'Yakomo Daylight Mural', 255922), (253445, 253445, 1, 1, 'Yakomo Evening Mural', 255921), (253487, 253487, 1, 1, 'Yakomo Seat', 255904), (253488, 253488, 1, 1, 'Yakomo Sofa', 255905), (253473, 253473, 1, 1, 'Yakomo Spiral Speaker', 255943), (253447, 253447, 1, 1, 'Yakomo Sunrise Mural', 255923), (253489, 253489, 1, 1, 'Yakomo Table', 255906), (253490, 253490, 1, 1, 'Yakomo Waste Receptacle', 255907), (257382, 257382, 300, 300, 'Yakomo''s Combined Scout''s Headwear', 256329), (203550, 203549, 130, 200, 'Yalmaha - 29500 - Custom Adaga Brutal', 203500), (203553, 203554, 130, 200, 'Yalmaha - 29500 - Custom Adaga Elegante', 203499), (301671, 301671, 1, 1, 'Yalmaha - 29500 - The Adaga', 203497), (301701, 301701, 1, 1, 'Yalmaha - 29500 - The Adaga', 203497), (203557, 203558, 130, 200, 'Yalmaha - 29500 - The Adaga', 203497), (202453, 202454, 100, 200, 'Yalmaha - 29500 - The Poniard', 203501), (301673, 301673, 1, 1, 'Yalmaha - 29500 - The Stiletto', 203498), (203555, 203556, 160, 200, 'Yalmaha - 29500 - The Stiletto', 203498), (253581, 253582, 100, 200, 'Yalmaha - 29600 - Obsidian', 255895), (253583, 253584, 100, 200, 'Yalmaha - 29600 - Pearl', 255900), (253575, 253576, 200, 300, 'Yalmaha - 29610 - Daylight', 255898), (253579, 253580, 200, 300, 'Yalmaha - 29610 - Dusk', 255899), (253573, 253574, 200, 300, 'Yalmaha - 29610 - Sunrise', 255896), (253577, 253578, 200, 300, 'Yalmaha - 29610 - Sunset', 255897), (203649, 203828, 160, 200, 'Yalmaha 29500 - Stiletto Building Kit', 203520), (203826, 203827, 160, 200, 'Yalmaha 29500 - Stiletto Building Kit - Step 1', 203520), (203824, 203825, 160, 200, 'Yalmaha 29500 - Stiletto Building Kit - Step 2', 203520), (203822, 203823, 160, 200, 'Yalmaha 29500 - Stiletto Building Kit - Step 3', 203520), (203820, 203821, 160, 200, 'Yalmaha 29500 - Stiletto Building Kit - Step 4', 203520), (254817, 254817, 100, 100, 'Yalmaha 29600 - Obsidian Upgrade Kit', 20406), (254818, 254818, 100, 100, 'Yalmaha 29600 - Pearl Upgrade Kit', 20406), (254820, 254820, 200, 200, 'Yalmaha 29610 - Daylight Upgrade Kit', 81786), (254823, 254823, 200, 200, 'Yalmaha 29610 - Dusk Upgrade Kit', 81786), (254819, 254819, 200, 200, 'Yalmaha 29610 - Sunrise Upgrade Kit', 81786), (254821, 254821, 200, 200, 'Yalmaha 29610 - Sunset Upgrade Kit', 81786), (290474, 290474, 100, 100, 'Yalmaha Clio', 281575), (290583, 290583, 100, 100, 'Yalmaha Clio', 290478), (202442, 202443, 150, 200, 'Yalmaha Obscura - 29480', 202447), (301668, 301668, 1, 1, 'Yalmaha XL - 29478', 38023), (117322, 96088, 30, 200, 'Yalmaha XL - 29478', 38023), (258907, 258907, 1, 1, 'Yalmaha XL - 29478 Package', 38023), (203292, 203293, 30, 200, 'Yalmaha XL Gold Flash - 29478', 202446), (203294, 203295, 30, 200, 'Yalmaha XL Vivid Red - 29478', 202445), (88373, 88374, 5, 199, 'Yatamutchy Movement Predictor -X7B', 99267), (88374, 88374, 200, 200, 'Yatamutchy Movement Predictor -Xl1', 99267), (161128, 161129, 49, 199, 'Yatamutchy X-3 Counter-Sniper Rifle', 33155), (152362, 152363, 101, 150, 'Yellow Acroblade', 113986), (264863, 264863, 1, 1, 'Yellow Boots', 264862), (259987, 259987, 1, 1, 'Yellow Corundum', 289778), (273249, 273249, 1, 1, 'Yellow Desert Orchid', 273614), (273250, 273250, 1, 1, 'Yellow Desert Orchid', 273614), (273279, 273279, 1, 1, 'Yellow Desert Orchid Container full of Flowers', 273547), (273278, 273278, 1, 1, 'Yellow Desert Orchid Container with five Flowers', 273547), (273277, 273277, 1, 1, 'Yellow Desert Orchid Container with four Flowers', 273547), (273274, 273274, 1, 1, 'Yellow Desert Orchid Container with one Flower', 273547), (273276, 273276, 1, 1, 'Yellow Desert Orchid Container with three Flowers', 273547), (273275, 273275, 1, 1, 'Yellow Desert Orchid Container with two Flowers', 273547), (285866, 285866, 200, 200, 'Yellow Fiber', 284331), (235306, 235307, 1, 300, 'Yellow Force Tight Boots', 213560), (235300, 235301, 1, 300, 'Yellow Force Tight Shirt', 213521), (235302, 235303, 1, 300, 'Yellow Force Tight Sleeves', 213480), (235304, 235305, 1, 300, 'Yellow Force Tights', 213602), (42317, 42317, 1, 1, 'Yellow Fret Boots', 42276), (42336, 42336, 1, 1, 'Yellow Fret Thigh High Boots', 42267), (218339, 218339, 100, 100, 'Yellow Glyph of Aban', 227531), (227624, 227624, 100, 100, 'Yellow Glyph of Aban - Awakened', 227530), (218338, 218338, 100, 100, 'Yellow Glyph of Enel', 227548), (227622, 227622, 100, 100, 'Yellow Glyph of Enel - Awakened', 227547), (218337, 218337, 100, 100, 'Yellow Glyph of Ocra', 227585), (227623, 227623, 100, 100, 'Yellow Glyph of Ocra - Awakened', 227584), (253504, 253504, 1, 1, 'Yellow Hanging Nepenthia Lanterns', 255961), (275935, 275935, 1, 1, 'Yellow Keycard', 279549), (275551, 275551, 1, 1, 'Yellow Keycard Fragment - Left', 279549), (275553, 275553, 1, 1, 'Yellow Keycard Fragment - Right', 279549), (281288, 281288, 1, 1, 'Yellow Keycard Fragment - Right', 227904), (281289, 281289, 1, 1, 'Yellow Keycard Fragment - Right', 227904), (281290, 281290, 1, 1, 'Yellow Keycard Fragment - Right', 227904), (281291, 281291, 1, 1, 'Yellow Keycard Fragment - Right', 227904), (42319, 42319, 1, 1, 'Yellow Short Fret Top', 42271), (249701, 249701, 1, 1, 'Yellow Tank Top of Sirillion', 255397), (290257, 290257, 1, 1, 'Yellow Thong', 290247), (157430, 157430, 1, 1, 'Yellow Twentyone Starling Advantage', 81769), (285893, 285893, 200, 200, 'Yellow Wax', 284331), (285875, 285875, 200, 200, 'Yellow Wick', 284331), (285857, 285857, 200, 200, 'Yellow Wire', 284331), (150245, 150246, 61, 90, 'Yellow Zenith Taichi', 113987), (269790, 269790, 1, 1, 'Yidira Off Proc', 37931), (154055, 154055, 1, 1, 'You have just made a mistake!', 81774), (165373, 165374, 90, 99, 'Young Spider Poison Gland', 38055), (223714, 223715, 20, 80, 'Yuan Chi''s Air-cooled Cloak', 218276), (223716, 223717, 20, 80, 'Yuan Chi''s Boots of Persecution', 13261), (130642, 130642, 1, 1, 'Yummie-Malle-Mix', 99289), (269381, 269381, 1, 1, 'Yutto Field Glasses', 269382), (269884, 269884, 250, 250, 'Yuttos Filter', 205505), (238920, 238921, 160, 240, 'Yuttos Modified NCU', 205500), (214085, 214086, 100, 300, 'Yuttos Ritual Suit Boots', 13263), (233102, 233102, 75, 75, 'Yuttos'' Helper', 11697), (294124, 294124, 1, 1, 'Yuttos'' Reinforced Container', 294125), (282069, 282069, 1, 1, 'Z: The Drink', 283488), (282085, 282085, 1, 1, 'Z: The Drink: The Poster', 283585), (277261, 277261, 1, 1, 'ZOMG ALIUMS Shirt', 277445), (156568, 156568, 1, 1, 'ZZX Key', 43120), (304369, 304369, 1, 1, 'ZZZ', 281837), (304370, 304370, 1, 1, 'ZZZ', 281837), (304371, 304371, 1, 1, 'ZZZ', 281837), (304372, 304372, 1, 1, 'ZZZ', 281837), (304373, 304373, 1, 1, 'ZZZ', 281837), (304374, 304374, 1, 1, 'ZZZ', 281837), (304375, 304375, 1, 1, 'ZZZ', 281837), (304376, 304376, 1, 1, 'ZZZ', 281837), (304377, 304377, 1, 1, 'ZZZ', 281837), (304378, 304378, 1, 1, 'ZZZ', 281837), (304379, 304379, 1, 1, 'ZZZ', 281837), (304380, 304380, 1, 1, 'ZZZ', 281837), (304381, 304381, 1, 1, 'ZZZ', 281837), (304382, 304382, 1, 1, 'ZZZ', 281837), (304383, 304383, 1, 1, 'ZZZ', 281837), (304384, 304384, 1, 1, 'ZZZ', 281837), (304385, 304385, 1, 1, 'ZZZ', 259105), (304386, 304386, 1, 1, 'ZZZ', 281837), (304387, 304387, 1, 1, 'ZZZ', 281837), (304388, 304388, 1, 1, 'ZZZ', 281837), (304389, 304389, 1, 1, 'ZZZ', 281837), (142823, 142824, 61, 80, 'Zaap Inc Survival Knife', 40783), (227500, 227500, 1, 1, 'Zap Nano', 239167), (227501, 227501, 1, 1, 'Zap Nano', 239167), (227502, 227502, 1, 1, 'Zap Nano', 239167), (227503, 227503, 1, 1, 'Zap Nano', 239167), (227504, 227504, 1, 1, 'Zap Nano', 239167), (227505, 227505, 1, 1, 'Zap Nano', 239167), (227506, 227506, 1, 1, 'Zap Nano', 239167), (227507, 227507, 1, 1, 'Zap Nano', 239167), (271657, 271658, 1, 300, 'Zastaba Cz-200 - 000', 21147), (271661, 271662, 1, 300, 'Zastaba Cz-200 - 401', 21147), (271663, 271664, 1, 300, 'Zastaba Cz-200 - C01', 21147), (123839, 123840, 10, 93, 'Zastaba Cz-200 Assault Pistol', 21147), (272180, 272181, 1, 300, 'Zastaba M0-2 Assault Weapon - 000', 33153), (272182, 272183, 1, 300, 'Zastaba M0-2 Assault Weapon - 008', 33153), (272184, 272185, 1, 300, 'Zastaba M0-2 Assault Weapon - 00C', 33153), (272186, 272187, 1, 300, 'Zastaba M0-2 Assault Weapon - 40C', 33153), (272188, 272189, 1, 300, 'Zastaba M0-2 Assault Weapon - C0C', 33153), (160103, 160104, 1, 50, 'Zastaba Velocity ST', 21146), (160105, 160106, 51, 100, 'Zastaba Velocity SU', 21146), (160107, 160108, 101, 165, 'Zastaba Velocity SV', 21146), (160109, 160110, 166, 199, 'Zastaba Velocity SW - Army', 21146), (160111, 160111, 200, 200, 'Zastaba Velocity SX - Special Forces', 21146), (123841, 123842, 94, 199, 'Zastaba-Grier Cz-200', 21147), (123843, 123843, 200, 200, 'Zastaba-Grier Cz-200 Chapman', 21147), (225591, 225592, 1, 300, 'Zathaka''s Bracer', 151917), (227014, 227015, 1, 300, 'Zealot''s Armor Boots', 213554), (227006, 227007, 1, 300, 'Zealot''s Armor Gloves', 21871), (227008, 227009, 1, 300, 'Zealot''s Armor Sleeve', 13225), (227012, 227013, 1, 300, 'Zealot''s Armor Trousers', 213454), (227010, 227011, 1, 300, 'Zealot''s Body Armor', 37545), (248991, 248991, 1, 1, 'Zen Robe of the Lost Chapter', 255332), (305602, 305603, 1, 200, 'Zenith Commando Bastion', 305618), (305594, 305595, 1, 200, 'Zenith Commando Body Armor', 305620), (305600, 305601, 1, 200, 'Zenith Commando Boots', 305619), (305596, 305597, 1, 200, 'Zenith Commando Gloves', 305622), (305588, 305589, 1, 200, 'Zenith Commando Helmet', 305623), (305598, 305599, 1, 200, 'Zenith Commando Legwear', 305624), (305590, 305591, 1, 200, 'Zenith Commando Pauldron', 305625), (305592, 305593, 1, 200, 'Zenith Commando Sleeve', 305652), (157431, 157431, 1, 1, 'Zero Badger', 81784), (275035, 275035, 1, 1, 'Zero-Point Transmission Relay Scoop', 218768), (275038, 275038, 1, 1, 'Zero-Point Transmission Relay Scoop', 218768), (275039, 275039, 1, 1, 'Zero-Point Transmission Relay Scoop', 218768), (275040, 275040, 1, 1, 'Zero-Point Transmission Relay Scoop', 218768), (275042, 275042, 1, 1, 'Zero-Point Transmission Relay Scoop', 218768), (200218, 200218, 300, 300, 'Zeus ICC Armor Boots', 22884), (200239, 200239, 300, 300, 'Zeus ICC Armor Gloves', 31656), (200260, 200260, 300, 300, 'Zeus ICC Armor Helmet', 31734), (200281, 200281, 300, 300, 'Zeus ICC Armor Pants', 22919), (200302, 200302, 300, 300, 'Zeus ICC Armor Sleeves', 31644), (200323, 200323, 300, 300, 'Zeus ICC Body Armor', 31648), (268441, 268441, 1, 1, 'Zigball Banners - 4 Holes Cogs', 268425), (268440, 268440, 1, 1, 'Zigball Banners - Avalon Cleavers', 268424), (268443, 268443, 1, 1, 'Zigball Banners - Clondyke Galaxy', 268408), (268444, 268444, 1, 1, 'Zigball Banners - Galway Titans', 268411), (268445, 268445, 1, 1, 'Zigball Banners - Milky Way Monsters', 268409), (268448, 268448, 1, 1, 'Zigball Banners - Newland Angry Trouts', 268412), (268446, 268446, 1, 1, 'Zigball Banners - Rome Red Raidas', 268410), (268447, 268447, 1, 1, 'Zigball Banners - Stret West Explorers', 268427), (268442, 268442, 1, 1, 'Zigball Banners - Tir Defenders', 268426), (268428, 268428, 1, 1, 'Zigball Banners - West Athen Chargers', 268423), (268587, 268587, 1, 1, 'Zigball Pennant - 4 Holes Cogs', 268399), (268586, 268586, 1, 1, 'Zigball Pennant - Avalon Cleavers', 268398), (268589, 268589, 1, 1, 'Zigball Pennant - Clondyke Galaxy', 268402), (268590, 268590, 1, 1, 'Zigball Pennant - Galway Titans', 268405), (268591, 268591, 1, 1, 'Zigball Pennant - Milky Way Monsters', 268403), (268594, 268594, 1, 1, 'Zigball Pennant - Newland Angry Trouts', 268597), (268592, 268592, 1, 1, 'Zigball Pennant - Rome Red Raidas', 268404), (268593, 268593, 1, 1, 'Zigball Pennant - Stret West Explorers', 268401), (268588, 268588, 1, 1, 'Zigball Pennant - Tir Defenders', 268400), (268585, 268585, 1, 1, 'Zigball Pennant - West Athen Chargers', 268407), (268747, 268747, 1, 1, 'Zigball Trading Cards', 268746), (296610, 296610, 1, 1, 'Zingy Scarf', 296614), (296611, 296611, 1, 1, 'Zingy Snowman', 296589), (290557, 290557, 1, 1, 'b0rked', 290128), (302160, 302160, 1, 1, 'b0rked', 265375), (302161, 302161, 1, 1, 'b0rked', 265375), (302238, 302238, 50, 50, 'br0ken', 300932), (287551, 287551, 1, 1, 'kLoathing - Squares: Blue Shirt', 287452), (287453, 287453, 1, 1, 'kLoathing - Squares: Blue Shirt (Special Edition)', 287452), (287552, 287552, 1, 1, 'kLoathing - Squares: White Shirt', 287451), (287454, 287454, 1, 1, 'kLoathing - Squares: White Shirt (Special Edition)', 287451), (294519, 294519, 1, 1, 'kLoathing Holiday Series #1: Snowflake Shirt - Red', 294360), (294520, 294520, 1, 1, 'kLoathing Holiday Series #1: Snowflake Shirt - White', 294361), (223759, 223759, 1, 1, 'ph@t l3wt', 130748), (285550, 285550, 1, 1, 'sneaking', 273626), (259759, 259759, 1, 1, 'some device', 203515), (287894, 287894, 1, 1, 'test spawn nano win', 271896), (229109, 229109, 1, 1, 'test_environment', 156511); diff --git a/modules/standard/items/auno_comment.py b/modules/standard/items/auno_comment.py new file mode 100644 index 0000000..cc0527c --- /dev/null +++ b/modules/standard/items/auno_comment.py @@ -0,0 +1,5 @@ +class AunoComment: + def __init__(self, author, date, content): + self.author = author + self.date = date + self.content = content diff --git a/modules/standard/items/auno_controller.py b/modules/standard/items/auno_controller.py new file mode 100644 index 0000000..703bf09 --- /dev/null +++ b/modules/standard/items/auno_controller.py @@ -0,0 +1,179 @@ +import html +import re +from typing import List + +import requests +from bs4 import BeautifulSoup + +from core.chat_blob import ChatBlob +from core.command_param_types import Any, Int, Item +from core.decorators import instance, command +from core.text import Text +from modules.standard.items.auno_comment import AunoComment +from modules.standard.items.items_controller import ItemsController + + +@instance() +class AunoController: + def __init__(self): + pass + + def inject(self, registry): + self.text: Text = registry.get_instance("text") + self.items_controller: ItemsController = registry.get_instance("items_controller") + + @command(command="auno", params=[Int("item_id")], access_level="member", + description="Fetch comments for item from Auno by item id") + def auno_comments_item_id_cmd(self, _, item_id): + item = self.items_controller.get_by_item_id(item_id) + if item: + low_id = item.lowid + high_id = item.highid + name = item.name + else: + low_id = item_id + high_id = item_id + name = item_id + + return self.get_combined_response(low_id, high_id, name) + + @command(command="auno", params=[Item("item_link")], access_level="member", + description="Fetch comments for item from Auno by item link") + def auno_comments_item_link_cmd(self, _, item): + return self.get_combined_response(item.low_id, item.high_id, item.name) + + @command(command="auno", params=[Any("search")], access_level="member", + description="Fetch comments for item from Auno by search") + def auno_comments_cmd(self, _, search): + items = self.items_controller.find_items(search) + count = len(items) + + if count > 0: + if count > 1: + link_txt = f"Multiple search results for \"{search}\" ({count})" + return ChatBlob(link_txt, self.multiple_results_blob(items, search)) + else: + return self.get_combined_response(items[0].lowid, items[0].highid, items[0].name) + else: + return "No items found matching %s." % search + + def get_combined_response(self, low_id, high_id, name): + combined_response = self.get_auno_response(low_id, high_id) + + if len(combined_response) > 0: + # high id comments + soup = BeautifulSoup(combined_response[0].text, features="html.parser") + comments: List[AunoComment] = self.find_comments(soup) + + if len(combined_response) > 1: + # low id comments + soup = BeautifulSoup(combined_response[1].text, features="html.parser") + comments += self.find_comments(soup) + + # sort the comments by date + comments.sort(key=lambda comment: comment.date) + + if len(comments) > 0: + return ChatBlob(f"Comments for {name} ({len(comments)})", + self.build_comments_blob(comments, name, low_id, high_id)) + else: + return f"No comments found for {name}." + else: + return "Error fetching comments from Auno.org." + + def build_comments_blob(self, comments, name, low_id, high_id): + link_auno = self.text.make_chatcmd("Auno", f"/start {self.get_auno_request_url(high_id)}") + link_aoitems = self.text.make_chatcmd("AOItems", f"/start {self.get_aoitems_request_url(high_id)}") + + item = self.items_controller.get_by_item_id(high_id) + blob = "" + if item: + ql = item.highql + blob += f"Item: {self.text.make_item(int(low_id), int(high_id), int(ql), name)}\n" + blob += f"Item links: [{link_auno}] [{link_aoitems}]\n\n" + blob += "Comments\n" + + for comment in comments: + blob += html.unescape(comment.content) + "\n" + blob += f"{comment.author} [{comment.date}]\n" + blob += "\n" + + return blob + + def multiple_results_blob(self, items, search): + max_multiple_results = 40 + + blob = f"Found {len(items)} items matching \"{search}\"\n" + if len(items) > max_multiple_results: + blob += "Results have been truncated to only show the first %s results...\n\n" % max_multiple_results + items = items[:max_multiple_results] + + for i, item in enumerate(items): + itemref = self.text.make_item(item.lowid, item.highid, item.highql, item.name) + comments_link = self.text.make_tellcmd("Comments", f"auno {item.highid}") + auno_link_h = self.text.make_chatcmd("Auno", f"/start {self.get_auno_request_url(item.highid)}") + blob += f"{i + 1}. {itemref}\n | [{comments_link}] [{auno_link_h}]" + blob += "\n\n" + + return blob + + def find_comments(self, soup): + comments: List[AunoComment] = [] + + brs = soup.find_all("br") + for br in brs: + br.replace_with("\n") + + trs = soup.find_all(self.tr_contains_comment) + for tr in trs: + author, date = tr.find("span").string.split("@") + + comment_content = tr.find("div") + comment = "" + + for content in comment_content: + if type(content) is str: + comment += html.escape(content) + else: + comment += html.escape(content.string) + + # when those halfwits think a billion linebreaks are necessary + # and because auno's comment output is ever so lovely... + # noinspection RegExpUnnecessaryNonCapturingGroup + comment = re.sub(r"(\n(?:\n)*(?:\s)*)", "\n", comment) + + comments.append(AunoComment(author.strip(), date.strip(), comment.strip())) + return comments + + def tr_contains_comment(self, tag): + if tag: + if 'id' in tag.attrs: + p = re.compile(r"aoc\d+") + return p.match(tag['id']) + + def get_auno_response(self, low_id, high_id): + auno_request_low = self.get_auno_request_url(low_id) + auno_request_high = self.get_auno_request_url(high_id) + + auno_response_h = requests.get(auno_request_high, timeout=5) + auno_response_l = None + + if low_id != high_id: + auno_response_l = requests.get(auno_request_low, timeout=5) + + combined_response = [] + + if auno_response_h: + if auno_response_h.status_code == 200: + combined_response.append(auno_response_h) + if auno_response_l: + if auno_response_l.status_code == 200: + combined_response.append(auno_response_l) + + return combined_response + + def get_auno_request_url(self, item_id): + return "https://auno.org/ao/db.php?id=%s" % item_id + + def get_aoitems_request_url(self, item_id): + return "https://aoitems.com/item/%s/" % item_id diff --git a/modules/standard/items/item_buffs.sql b/modules/standard/items/item_buffs.sql new file mode 100644 index 0000000..4a20604 --- /dev/null +++ b/modules/standard/items/item_buffs.sql @@ -0,0 +1,99573 @@ +DROP TABLE IF EXISTS item_buffs; +CREATE TABLE item_buffs +( + item_id INT, + attribute_id INT, + amount INT +); +INSERT INTO item_buffs (item_id, attribute_id, amount) +VALUES (21793, 93, 62), + (21793, 95, 218), + (21793, 92, 250), + (21793, 97, 218), + (21793, 91, 250), + (21793, 96, 250), + (21793, 90, 218), + (21793, 94, 218), + (21797, 93, 156), + (21797, 95, 546), + (21797, 92, 625), + (21797, 97, 546), + (21797, 91, 625), + (21797, 96, 625), + (21797, 90, 546), + (21797, 94, 546), + (21801, 93, 250), + (21801, 95, 875), + (21801, 92, 1000), + (21801, 97, 875), + (21801, 91, 1000), + (21801, 96, 1000), + (21801, 90, 875), + (21801, 94, 875), + (21805, 93, 93), + (21805, 95, 328), + (21805, 92, 375), + (21805, 97, 328), + (21805, 91, 375), + (21805, 96, 375), + (21805, 90, 328), + (21805, 94, 328), + (21809, 93, 62), + (21809, 95, 218), + (21809, 92, 250), + (21809, 97, 218), + (21809, 91, 250), + (21809, 96, 250), + (21809, 90, 218), + (21809, 94, 218), + (21813, 93, 187), + (21813, 95, 656), + (21813, 92, 750), + (21813, 97, 656), + (21813, 91, 750), + (21813, 96, 750), + (21813, 90, 656), + (21813, 94, 656), + (21817, 93, 156), + (21817, 95, 546), + (21817, 92, 625), + (21817, 97, 546), + (21817, 91, 625), + (21817, 96, 625), + (21817, 90, 546), + (21817, 94, 546), + (21917, 93, 50), + (21917, 95, 156), + (21917, 92, 218), + (21917, 97, 156), + (21917, 91, 250), + (21917, 96, 50), + (21917, 90, 250), + (21917, 94, 50), + (21921, 93, 50), + (21921, 95, 50), + (21921, 92, 250), + (21921, 97, 50), + (21921, 91, 218), + (21921, 96, 50), + (21921, 90, 250), + (21921, 94, 218), + (21929, 93, 156), + (21929, 95, 156), + (21929, 92, 218), + (21929, 97, 50), + (21929, 91, 250), + (21929, 96, 156), + (21929, 90, 250), + (21929, 94, 50), + (21937, 93, 62), + (21937, 95, 250), + (21937, 92, 250), + (21937, 97, 250), + (21937, 91, 250), + (21937, 96, 62), + (21937, 90, 250), + (21937, 94, 62), + (21955, 93, 218), + (21955, 95, 62), + (21955, 92, 250), + (21955, 97, 62), + (21955, 91, 250), + (21955, 96, 187), + (21955, 90, 250), + (21955, 94, 218), + (21959, 93, 62), + (21959, 95, 218), + (21959, 92, 250), + (21959, 97, 218), + (21959, 91, 250), + (21959, 96, 218), + (21959, 90, 250), + (21959, 94, 218), + (21963, 93, 156), + (21963, 95, 50), + (21963, 92, 250), + (21963, 97, 50), + (21963, 91, 218), + (21963, 96, 50), + (21963, 90, 250), + (21963, 94, 156), + (21967, 93, 37), + (21967, 95, 37), + (21967, 92, 218), + (21967, 97, 218), + (21967, 91, 250), + (21967, 96, 37), + (21967, 90, 250), + (21967, 94, 37), + (21971, 93, 250), + (21971, 95, 50), + (21971, 92, 250), + (21971, 97, 50), + (21971, 91, 218), + (21971, 96, 218), + (21971, 90, 250), + (21971, 94, 50), + (21975, 93, 187), + (21975, 95, 62), + (21975, 92, 250), + (21975, 97, 156), + (21975, 91, 250), + (21975, 96, 62), + (21975, 90, 250), + (21975, 94, 218), + (22004, 93, 500), + (22004, 95, 500), + (22004, 92, 750), + (22004, 97, 175), + (22004, 91, 875), + (22004, 96, 500), + (22004, 90, 875), + (22004, 94, 175), + (22010, 93, 200), + (22010, 95, 625), + (22010, 92, 875), + (22010, 97, 625), + (22010, 91, 1000), + (22010, 96, 200), + (22010, 90, 1000), + (22010, 94, 200), + (22014, 93, 200), + (22014, 95, 625), + (22014, 92, 875), + (22014, 97, 625), + (22014, 91, 1000), + (22014, 96, 200), + (22014, 90, 1000), + (22014, 94, 200), + (22018, 93, 200), + (22018, 95, 200), + (22018, 92, 1000), + (22018, 97, 200), + (22018, 91, 875), + (22018, 96, 200), + (22018, 90, 1000), + (22018, 94, 875), + (22026, 93, 625), + (22026, 95, 625), + (22026, 92, 875), + (22026, 97, 200), + (22026, 91, 1000), + (22026, 96, 625), + (22026, 90, 1000), + (22026, 94, 200), + (22046, 93, 250), + (22046, 95, 1000), + (22046, 92, 1000), + (22046, 97, 1000), + (22046, 91, 1000), + (22046, 96, 250), + (22046, 90, 1000), + (22046, 94, 250), + (22064, 93, 875), + (22064, 95, 250), + (22064, 92, 1000), + (22064, 97, 250), + (22064, 91, 1000), + (22064, 96, 750), + (22064, 90, 1000), + (22064, 94, 875), + (22068, 93, 250), + (22068, 95, 875), + (22068, 92, 1000), + (22068, 97, 875), + (22068, 91, 1000), + (22068, 96, 875), + (22068, 90, 1000), + (22068, 94, 875), + (22072, 93, 625), + (22072, 95, 200), + (22072, 92, 1000), + (22072, 97, 200), + (22072, 91, 875), + (22072, 96, 200), + (22072, 90, 1000), + (22072, 94, 625), + (22076, 93, 150), + (22076, 95, 150), + (22076, 92, 875), + (22076, 97, 875), + (22076, 91, 1000), + (22076, 96, 150), + (22076, 90, 1000), + (22076, 94, 150), + (22080, 93, 1000), + (22080, 95, 200), + (22080, 92, 1000), + (22080, 97, 200), + (22080, 91, 875), + (22080, 96, 875), + (22080, 90, 1000), + (22080, 94, 200), + (22084, 93, 750), + (22084, 95, 250), + (22084, 92, 1000), + (22084, 97, 625), + (22084, 91, 1000), + (22084, 96, 250), + (22084, 90, 1000), + (22084, 94, 875), + (22088, 93, 750), + (22088, 95, 250), + (22088, 92, 1000), + (22088, 97, 625), + (22088, 91, 1000), + (22088, 96, 250), + (22088, 90, 1000), + (22088, 94, 875), + (22104, 93, 75), + (22104, 95, 234), + (22104, 92, 328), + (22104, 97, 234), + (22104, 91, 375), + (22104, 96, 75), + (22104, 90, 375), + (22104, 94, 75), + (22108, 93, 75), + (22108, 95, 75), + (22108, 92, 375), + (22108, 97, 75), + (22108, 91, 328), + (22108, 96, 75), + (22108, 90, 375), + (22108, 94, 328), + (22116, 93, 234), + (22116, 95, 234), + (22116, 92, 328), + (22116, 97, 75), + (22116, 91, 375), + (22116, 96, 234), + (22116, 90, 375), + (22116, 94, 75), + (22124, 93, 93), + (22124, 95, 375), + (22124, 92, 375), + (22124, 97, 375), + (22124, 91, 375), + (22124, 96, 93), + (22124, 90, 375), + (22124, 94, 93), + (22142, 93, 328), + (22142, 95, 93), + (22142, 92, 375), + (22142, 97, 93), + (22142, 91, 375), + (22142, 96, 281), + (22142, 90, 375), + (22142, 94, 328), + (22146, 93, 93), + (22146, 95, 328), + (22146, 92, 375), + (22146, 97, 328), + (22146, 91, 375), + (22146, 96, 328), + (22146, 90, 375), + (22146, 94, 328), + (22150, 93, 234), + (22150, 95, 75), + (22150, 92, 375), + (22150, 97, 75), + (22150, 91, 328), + (22150, 96, 75), + (22150, 90, 375), + (22150, 94, 234), + (22154, 93, 56), + (22154, 95, 56), + (22154, 92, 328), + (22154, 97, 328), + (22154, 91, 375), + (22154, 96, 56), + (22154, 90, 375), + (22154, 94, 56), + (22158, 93, 375), + (22158, 95, 75), + (22158, 92, 375), + (22158, 97, 75), + (22158, 91, 328), + (22158, 96, 328), + (22158, 90, 375), + (22158, 94, 75), + (22162, 93, 281), + (22162, 95, 93), + (22162, 92, 375), + (22162, 97, 234), + (22162, 91, 375), + (22162, 96, 93), + (22162, 90, 375), + (22162, 94, 328), + (22166, 93, 50), + (22166, 95, 156), + (22166, 92, 218), + (22166, 97, 156), + (22166, 91, 250), + (22166, 96, 50), + (22166, 90, 250), + (22166, 94, 50), + (22170, 93, 50), + (22170, 95, 50), + (22170, 92, 250), + (22170, 97, 50), + (22170, 91, 218), + (22170, 96, 50), + (22170, 90, 250), + (22170, 94, 218), + (22178, 93, 156), + (22178, 95, 156), + (22178, 92, 218), + (22178, 97, 50), + (22178, 91, 250), + (22178, 96, 156), + (22178, 90, 250), + (22178, 94, 50), + (22196, 93, 218), + (22196, 95, 62), + (22196, 92, 250), + (22196, 97, 62), + (22196, 91, 250), + (22196, 96, 187), + (22196, 90, 250), + (22196, 94, 218), + (22200, 93, 62), + (22200, 95, 218), + (22200, 92, 250), + (22200, 97, 218), + (22200, 91, 250), + (22200, 96, 218), + (22200, 90, 250), + (22200, 94, 218), + (22204, 93, 156), + (22204, 95, 50), + (22204, 92, 250), + (22204, 97, 50), + (22204, 91, 218), + (22204, 96, 50), + (22204, 90, 250), + (22204, 94, 156), + (22208, 93, 37), + (22208, 95, 37), + (22208, 92, 218), + (22208, 97, 218), + (22208, 91, 250), + (22208, 96, 37), + (22208, 90, 250), + (22208, 94, 37), + (22212, 93, 250), + (22212, 95, 50), + (22212, 92, 250), + (22212, 97, 50), + (22212, 91, 218), + (22212, 96, 218), + (22212, 90, 250), + (22212, 94, 50), + (22216, 93, 187), + (22216, 95, 62), + (22216, 92, 250), + (22216, 97, 156), + (22216, 91, 250), + (22216, 96, 62), + (22216, 90, 250), + (22216, 94, 218), + (22219, 93, 150), + (22219, 95, 468), + (22219, 92, 656), + (22219, 97, 468), + (22219, 91, 750), + (22219, 96, 150), + (22219, 90, 750), + (22219, 94, 150), + (22223, 93, 150), + (22223, 95, 150), + (22223, 92, 750), + (22223, 97, 150), + (22223, 91, 656), + (22223, 96, 150), + (22223, 90, 750), + (22223, 94, 656), + (22246, 93, 656), + (22246, 95, 187), + (22246, 92, 750), + (22246, 97, 187), + (22246, 91, 750), + (22246, 96, 562), + (22246, 90, 750), + (22246, 94, 656), + (22250, 93, 187), + (22250, 95, 656), + (22250, 92, 750), + (22250, 97, 656), + (22250, 91, 750), + (22250, 96, 656), + (22250, 90, 750), + (22250, 94, 656), + (22254, 93, 468), + (22254, 95, 150), + (22254, 92, 750), + (22254, 97, 150), + (22254, 91, 656), + (22254, 96, 150), + (22254, 90, 750), + (22254, 94, 468), + (22258, 93, 112), + (22258, 95, 112), + (22258, 92, 656), + (22258, 97, 656), + (22258, 91, 750), + (22258, 96, 112), + (22258, 90, 750), + (22258, 94, 112), + (22262, 93, 750), + (22262, 95, 150), + (22262, 92, 750), + (22262, 97, 150), + (22262, 91, 656), + (22262, 96, 656), + (22262, 90, 750), + (22262, 94, 150), + (22266, 93, 562), + (22266, 95, 187), + (22266, 92, 750), + (22266, 97, 468), + (22266, 91, 750), + (22266, 96, 187), + (22266, 90, 750), + (22266, 94, 656), + (22289, 93, 125), + (22289, 95, 390), + (22289, 92, 546), + (22289, 97, 390), + (22289, 91, 625), + (22289, 96, 125), + (22289, 90, 625), + (22289, 94, 125), + (22293, 93, 125), + (22293, 95, 125), + (22293, 92, 625), + (22293, 97, 125), + (22293, 91, 546), + (22293, 96, 125), + (22293, 90, 625), + (22293, 94, 546), + (22301, 93, 390), + (22301, 95, 390), + (22301, 92, 546), + (22301, 97, 125), + (22301, 91, 625), + (22301, 96, 390), + (22301, 90, 625), + (22301, 94, 125), + (22313, 93, 156), + (22313, 95, 625), + (22313, 92, 625), + (22313, 97, 625), + (22313, 91, 625), + (22313, 96, 156), + (22313, 90, 625), + (22313, 94, 156), + (22331, 93, 546), + (22331, 95, 156), + (22331, 92, 625), + (22331, 97, 156), + (22331, 91, 625), + (22331, 96, 468), + (22331, 90, 625), + (22331, 94, 546), + (22335, 93, 156), + (22335, 95, 546), + (22335, 92, 625), + (22335, 97, 546), + (22335, 91, 625), + (22335, 96, 546), + (22335, 90, 625), + (22335, 94, 546), + (22339, 93, 390), + (22339, 95, 125), + (22339, 92, 625), + (22339, 97, 125), + (22339, 91, 546), + (22339, 96, 125), + (22339, 90, 625), + (22339, 94, 390), + (22343, 93, 93), + (22343, 95, 93), + (22343, 92, 546), + (22343, 97, 546), + (22343, 91, 625), + (22343, 96, 93), + (22343, 90, 625), + (22343, 94, 93), + (22347, 93, 625), + (22347, 95, 125), + (22347, 92, 625), + (22347, 97, 125), + (22347, 91, 546), + (22347, 96, 546), + (22347, 90, 625), + (22347, 94, 125), + (22351, 93, 468), + (22351, 95, 156), + (22351, 92, 625), + (22351, 97, 390), + (22351, 91, 625), + (22351, 96, 156), + (22351, 90, 625), + (22351, 94, 546), + (26015, 159, 50), + (26015, 163, 50), + (26019, 201, 10), + (26019, 360, -80), + (26166, 136, 240), + (26206, 17, 25), + (26207, 20, 15), + (26245, 156, 125), + (26461, 102, 10), + (26462, 102, -20), + (26463, 102, -10), + (26464, 102, 20), + (26467, 106, 10), + (26469, 17, 12), + (26470, 151, 20), + (26471, 151, -20), + (26471, 121, -20), + (26471, 148, -20), + (26471, 150, -20), + (26471, 167, -20), + (26471, 108, -20), + (26472, 151, -10), + (26473, 151, 10), + (26478, 116, 20), + (26479, 116, -20), + (26480, 116, -10), + (26481, 116, 10), + (26482, 17, 6), + (26483, 19, 6), + (26484, 21, 6), + (26485, 20, 6), + (26486, 18, 6), + (26487, 16, 6), + (26488, 128, 20), + (26489, 128, -20), + (26489, 127, -20), + (26489, 130, -20), + (26489, 131, -20), + (26489, 129, -20), + (26489, 122, -20), + (26490, 128, -10), + (26491, 128, 10), + (26494, 111, 20), + (26495, 111, -20), + (26496, 111, -10), + (26497, 111, 10), + (26498, 121, 20), + (26499, 121, -20), + (26500, 121, -10), + (26501, 121, 10), + (26502, 142, 20), + (26503, 142, -20), + (26503, 144, -20), + (26503, 147, -20), + (26503, 145, -20), + (26503, 143, -20), + (26503, 146, -20), + (26504, 142, -10), + (26505, 142, 10), + (26506, 165, 20), + (26507, 165, 10), + (26508, 148, 20), + (26509, 148, -20), + (26510, 148, -10), + (26511, 148, 10), + (26514, 163, 20), + (26515, 163, 10), + (26516, 137, 20), + (26522, 161, 20), + (26523, 161, 10), + (26524, 164, 20), + (26525, 164, 10), + (26526, 144, -20), + (26527, 144, -10), + (26528, 17, -6), + (26529, 19, -6), + (26530, 21, -6), + (26531, 20, -6), + (26532, 18, -6), + (26533, 16, -6), + (26534, 135, 20), + (26535, 135, 10), + (26539, 17, -12), + (26540, 19, -12), + (26541, 17, -12), + (26541, 21, -12), + (26541, 19, -12), + (26541, 20, -12), + (26541, 18, -12), + (26541, 16, -12), + (26542, 20, -12), + (26543, 18, -12), + (26544, 16, -12), + (26547, 126, 20), + (26549, 104, 20), + (26550, 104, -20), + (26551, 104, -10), + (26552, 104, 10), + (26555, 133, 20), + (26556, 133, -20), + (26557, 133, -10), + (26558, 133, 10), + (26559, 147, 20), + (26560, 147, -20), + (26561, 147, -10), + (26562, 147, 10), + (26564, 157, 20), + (26565, 157, 10), + (26568, 123, 20), + (26569, 123, 10), + (26570, 150, 20), + (26571, 150, -20), + (26572, 150, -10), + (26573, 150, 10), + (26574, 167, 20), + (26575, 167, -20), + (26576, 167, -10), + (26577, 167, 10), + (26578, 110, 20), + (26580, 110, -10), + (26581, 110, 10), + (26582, 106, 20), + (26583, 106, -20), + (26584, 106, -10), + (26585, 156, 20), + (26680, 110, -20), + (26682, 137, 10), + (27197, 158, 10), + (27198, 103, 20), + (27199, 103, -20), + (27199, 102, -20), + (27199, 105, -20), + (27199, 107, -20), + (27199, 106, -20), + (27199, 104, -20), + (27199, 100, -20), + (27199, 101, -20), + (27200, 103, -10), + (27201, 103, 10), + (27202, 107, 20), + (27203, 107, -20), + (27204, 107, -10), + (27205, 107, 10), + (27206, 105, 20), + (27207, 105, -20), + (27208, 105, -10), + (27209, 105, 10), + (27210, 109, 20), + (27211, 109, -20), + (27212, 109, -10), + (27213, 109, 10), + (27216, 1, 10), + (27217, 19, 12), + (27218, 108, 20), + (27219, 108, -20), + (27220, 108, -10), + (27221, 108, 10), + (27222, 155, -10), + (27223, 154, -20), + (27223, 155, -20), + (27223, 153, -20), + (27225, 114, 20), + (27226, 114, -20), + (27227, 114, -10), + (27228, 114, 10), + (27229, 100, 20), + (27230, 100, -20), + (27231, 100, -10), + (27232, 100, 10), + (27233, 130, 20), + (27234, 130, -20), + (27235, 130, -10), + (27236, 130, 10), + (27237, 131, 20), + (27238, 131, -20), + (27239, 131, -10), + (27240, 131, 10), + (27241, 127, 20), + (27242, 127, -20), + (27243, 127, -10), + (27244, 127, 10), + (27245, 125, 20), + (27246, 125, 10), + (27250, 160, 20), + (27251, 160, 10), + (27253, 364, 2), + (27256, 145, 20), + (27257, 145, -20), + (27258, 145, -10), + (27259, 145, 10), + (27260, 159, 20), + (27261, 159, 10), + (27262, 112, 20), + (27263, 112, -20), + (27263, 116, -20), + (27263, 111, -20), + (27263, 109, -20), + (27263, 110, -20), + (27263, 114, -20), + (27263, 113, -20), + (27263, 115, -20), + (27263, 133, -20), + (27264, 112, -10), + (27265, 112, 10), + (27270, 21, 12), + (27271, 162, 20), + (27272, 162, 10), + (27273, 129, 20), + (27274, 129, -20), + (27275, 129, -10), + (27276, 129, 10), + (27277, 156, 30), + (27278, 94, 6), + (27279, 94, 14), + (27280, 343, 3), + (27282, 113, 20), + (27283, 113, -20), + (27284, 113, -10), + (27285, 113, 10), + (27286, 143, 20), + (27287, 143, -20), + (27288, 143, -10), + (27289, 143, 10), + (27290, 20, 12), + (27291, 122, 20), + (27292, 122, -20), + (27293, 122, -10), + (27294, 122, 10), + (27295, 115, 20), + (27296, 115, -20), + (27297, 115, -10), + (27298, 115, 10), + (27299, 153, -10), + (27300, 146, 20), + (27301, 146, -20), + (27302, 146, -10), + (27303, 146, 10), + (27304, 18, 12), + (27305, 16, 12), + (27308, 156, 10), + (27311, 124, 20), + (27312, 124, 10), + (27313, 141, 20), + (27314, 141, 10), + (27324, 316, 2), + (27325, 316, 5), + (27326, 158, 20), + (27360, 93, 93), + (27360, 95, 93), + (27360, 92, 546), + (27360, 97, 93), + (27360, 91, 468), + (27360, 96, 93), + (27360, 90, 625), + (27360, 94, 390), + (27381, 124, 10), + (27381, 123, 10), + (27382, 124, 6), + (27382, 123, 6), + (27383, 124, 20), + (27383, 123, 20), + (27384, 124, 14), + (27384, 123, 14), + (27385, 124, 14), + (27385, 123, 14), + (27386, 124, 14), + (27386, 123, 14), + (27387, 124, 20), + (27387, 123, 20), + (27389, 93, 150), + (27389, 95, 150), + (27389, 92, 875), + (27389, 97, 150), + (27389, 91, 750), + (27389, 96, 150), + (27389, 90, 1000), + (27389, 94, 625), + (27391, 93, 37), + (27391, 95, 37), + (27391, 92, 218), + (27391, 97, 37), + (27391, 91, 187), + (27391, 96, 37), + (27391, 90, 250), + (27391, 94, 156), + (27392, 93, 234), + (27392, 95, 75), + (27392, 92, 375), + (27392, 97, 234), + (27392, 91, 328), + (27392, 96, 75), + (27392, 90, 375), + (27392, 94, 75), + (27394, 93, 390), + (27394, 95, 125), + (27394, 92, 625), + (27394, 97, 390), + (27394, 91, 546), + (27394, 96, 125), + (27394, 90, 625), + (27394, 94, 125), + (27396, 93, 156), + (27396, 95, 50), + (27396, 92, 250), + (27396, 97, 156), + (27396, 91, 218), + (27396, 96, 50), + (27396, 90, 250), + (27396, 94, 50), + (27398, 93, 625), + (27398, 95, 200), + (27398, 92, 1000), + (27398, 97, 625), + (27398, 91, 875), + (27398, 96, 200), + (27398, 90, 1000), + (27398, 94, 200), + (27400, 93, 156), + (27400, 95, 50), + (27400, 92, 250), + (27400, 97, 156), + (27400, 91, 218), + (27400, 96, 50), + (27400, 90, 250), + (27400, 94, 50), + (27402, 93, 468), + (27402, 95, 150), + (27402, 92, 750), + (27402, 97, 468), + (27402, 91, 656), + (27402, 96, 150), + (27402, 90, 750), + (27402, 94, 150), + (27708, 126, 10), + (28734, 93, 250), + (28734, 95, 875), + (28734, 154, -50), + (28734, 153, -50), + (28734, 92, 1000), + (28734, 155, -50), + (28734, 97, 250), + (28734, 91, 1000), + (28734, 96, 250), + (28734, 90, 1000), + (28734, 94, 750), + (28734, 156, -50), + (28735, 93, 250), + (28735, 95, 750), + (28735, 154, -50), + (28735, 153, -50), + (28735, 92, 1000), + (28735, 155, -50), + (28735, 97, 875), + (28735, 91, 1000), + (28735, 96, 250), + (28735, 90, 1000), + (28735, 94, 250), + (28735, 156, -50), + (28736, 93, 750), + (28736, 95, 250), + (28736, 154, -50), + (28736, 153, -50), + (28736, 92, 1000), + (28736, 155, -50), + (28736, 97, 250), + (28736, 91, 1000), + (28736, 96, 250), + (28736, 90, 1000), + (28736, 94, 875), + (28736, 156, -50), + (28738, 93, 875), + (28738, 95, 250), + (28738, 154, -50), + (28738, 153, -50), + (28738, 92, 1000), + (28738, 155, -50), + (28738, 97, 250), + (28738, 91, 1000), + (28738, 96, 750), + (28738, 90, 1000), + (28738, 94, 250), + (28738, 156, -50), + (28743, 124, 60), + (28743, 123, 60), + (28744, 123, 46), + (28745, 151, 165), + (28752, 156, 65), + (28764, 343, 25), + (28770, 123, 15), + (28770, 124, 10), + (28771, 16, 10), + (28771, 18, 10), + (28771, 360, 8), + (28776, 343, 10), + (28782, 149, 200), + (28782, 168, 25), + (28782, 221, 150), + (28784, 168, 92), + (28787, 124, 35), + (28787, 123, 20), + (28788, 123, 80), + (28788, 124, 80), + (28794, 100, -100), + (28794, 102, -100), + (28794, 103, -100), + (28794, 104, -100), + (28794, 105, -100), + (28794, 106, -100), + (28794, 107, -100), + (28794, 108, -100), + (28794, 109, -100), + (28794, 110, -100), + (28794, 111, -100), + (28794, 112, -100), + (28794, 113, -100), + (28794, 114, -100), + (28794, 115, -100), + (28794, 116, -100), + (28794, 133, -100), + (28806, 153, 80), + (28806, 154, 80), + (28806, 155, 80), + (28913, 156, 70), + (28920, 90, 439), + (28920, 91, 517), + (28920, 92, 439), + (28920, 93, 439), + (28920, 94, 439), + (28920, 95, 439), + (28920, 96, 439), + (28920, 97, 439), + (28921, 142, 45), + (28923, 153, 50), + (28923, 154, 50), + (28923, 155, 50), + (28926, 118, 93), + (28926, 120, 93), + (28929, 153, 85), + (28929, 154, 85), + (28929, 155, 85), + (28930, 16, 40), + (28930, 17, -70), + (28930, 90, 574), + (28930, 91, 676), + (28930, 92, 574), + (28930, 93, 574), + (28930, 94, 574), + (28930, 95, 574), + (28930, 96, 574), + (28930, 97, 574), + (28930, 156, -250), + (28931, 100, 160), + (28931, 108, 60), + (28931, 144, 150), + (28931, 147, 30), + (28945, 153, 30), + (28946, 100, 60), + (28946, 108, 30), + (28949, 16, 25), + (28950, 16, 12), + (28954, 153, 120), + (28954, 154, 120), + (28954, 155, 120), + (28955, 143, 80), + (28955, 145, 80), + (28956, 90, 80), + (28956, 91, 95), + (28956, 92, 80), + (28956, 93, 80), + (28956, 94, 80), + (28956, 95, 80), + (28956, 96, 80), + (28956, 97, 80), + (28958, 90, 229), + (28958, 91, 269), + (28958, 92, 229), + (28958, 93, 229), + (28958, 94, 229), + (28958, 95, 229), + (28958, 96, 229), + (28958, 97, 229), + (29092, 1, 20), + (29102, 158, 40), + (29103, 159, 40), + (29191, 164, 20), + (29192, 160, 20), + (29194, 119, 12), + (29195, 165, 32), + (29202, 364, 10), + (29329, 108, 50), + (29329, 109, 50), + (29329, 110, 50), + (29329, 111, 50), + (29329, 112, 50), + (29329, 113, 50), + (29329, 114, 50), + (29329, 115, 50), + (29329, 116, 50), + (29329, 133, 50), + (29329, 155, -40), + (29329, 153, -40), + (29329, 154, -40), + (29332, 116, 60), + (29333, 118, 43), + (29333, 119, 43), + (29333, 120, 43), + (29333, 149, 43), + (29334, 276, 30), + (29342, 133, 70), + (29344, 90, 125), + (29344, 91, 125), + (29344, 92, 125), + (29344, 93, 125), + (29344, 94, 125), + (29344, 95, 125), + (29344, 96, 125), + (29344, 97, 125), + (29344, 156, -150), + (29352, 118, 133), + (29352, 119, 133), + (29352, 120, 133), + (29352, 149, 133), + (29352, 150, 30), + (29358, 112, 40), + (29359, 153, 55), + (29359, 154, 55), + (29359, 155, 55), + (29360, 119, 28), + (29362, 113, 50), + (29363, 148, 110), + (29366, 1, 241), + (29366, 343, 2), + (29367, 90, 196), + (29367, 91, 196), + (29367, 92, 196), + (29367, 93, 196), + (29367, 94, 196), + (29367, 95, 196), + (29367, 96, 196), + (29367, 97, 196), + (29369, 153, 60), + (29369, 154, 60), + (29369, 155, 60), + (29372, 128, 50), + (29383, 128, -125), + (29384, 130, -125), + (29385, 131, -125), + (29386, 127, -125), + (29387, 129, -125), + (29388, 122, -125), + (29391, 130, 50), + (29392, 131, 50), + (29393, 127, 50), + (29396, 128, 140), + (29397, 130, 140), + (29398, 131, 140), + (29399, 127, 140), + (29400, 129, 140), + (29401, 122, 140), + (29403, 122, -1000), + (29403, 131, -1000), + (29403, 130, -1000), + (29403, 129, -1000), + (29403, 128, -1000), + (29403, 127, -1000), + (29406, 19, 43), + (29406, 21, 43), + (29406, 129, 40), + (29406, 122, 40), + (29406, 131, 40), + (29406, 130, 40), + (29406, 128, 40), + (29406, 127, 40), + (29406, 168, 100), + (29409, 129, 50), + (29412, 122, 50), + (29418, 128, -75), + (29419, 130, -75), + (29420, 131, -75), + (29421, 127, -75), + (29422, 129, -75), + (29423, 122, -75), + (29424, 160, 92), + (29426, 91, 10), + (29792, 102, 87), + (29792, 107, 87), + (29803, 118, 72), + (29803, 119, 72), + (29803, 120, 72), + (29803, 149, 72), + (29804, 1, 99), + (29804, 226, 8), + (29804, 227, 8), + (29804, 228, 8), + (29804, 229, 8), + (29804, 230, 8), + (29804, 231, 8), + (29804, 233, 8), + (29804, 234, 8), + (29804, 94, 75), + (29806, 102, 46), + (29806, 107, 46), + (29807, 1, 201), + (29807, 226, 18), + (29807, 227, 18), + (29807, 228, 18), + (29807, 229, 18), + (29807, 230, 18), + (29807, 231, 18), + (29807, 233, 18), + (29807, 234, 18), + (29807, 97, 140), + (29808, 1, 412), + (29808, 226, 47), + (29808, 227, 47), + (29808, 228, 47), + (29808, 229, 47), + (29808, 230, 47), + (29808, 231, 47), + (29808, 233, 47), + (29808, 234, 47), + (29808, 97, 230), + (29811, 118, 107), + (29811, 120, 107), + (29814, 16, 40), + (29820, 1, 357), + (29820, 226, 36), + (29820, 227, 36), + (29820, 228, 36), + (29820, 229, 36), + (29820, 230, 36), + (29820, 231, 36), + (29820, 233, 36), + (29820, 234, 36), + (29823, 90, 13), + (29823, 91, 13), + (29823, 92, 13), + (29823, 93, 13), + (29823, 94, 13), + (29823, 95, 13), + (29823, 96, 13), + (29823, 97, 13), + (29842, 109, 120), + (29842, 110, 50), + (29842, 112, 120), + (29843, 226, 53), + (29843, 227, 53), + (29843, 228, 53), + (29843, 229, 53), + (29843, 230, 53), + (29843, 231, 53), + (29843, 233, 53), + (29843, 234, 53), + (29843, 91, 800), + (29852, 163, 62), + (29852, 159, 62), + (29853, 226, 19), + (29853, 227, 19), + (29853, 228, 19), + (29853, 229, 19), + (29853, 230, 19), + (29853, 231, 19), + (29853, 233, 19), + (29853, 234, 19), + (29853, 91, 180), + (29854, 226, 65), + (29854, 227, 65), + (29854, 228, 65), + (29854, 229, 65), + (29854, 230, 65), + (29854, 231, 65), + (29854, 233, 65), + (29854, 234, 65), + (29854, 92, 1200), + (29858, 119, 52), + (29859, 119, 114), + (29861, 226, 11), + (29861, 227, 11), + (29861, 228, 11), + (29861, 229, 11), + (29861, 230, 11), + (29861, 231, 11), + (29861, 233, 11), + (29861, 234, 11), + (29861, 91, 120), + (29862, 226, 1), + (29862, 227, 1), + (29862, 228, 1), + (29862, 229, 1), + (29862, 230, 1), + (29862, 231, 1), + (29862, 233, 1), + (29862, 234, 1), + (29862, 91, 40), + (29865, 135, 79), + (29868, 90, 690), + (29868, 91, 690), + (29868, 92, 690), + (29868, 93, 690), + (29868, 94, 690), + (29868, 95, 690), + (29868, 96, 690), + (29868, 97, 690), + (29869, 90, 720), + (29869, 91, 720), + (29869, 92, 720), + (29869, 93, 720), + (29869, 94, 720), + (29869, 95, 720), + (29869, 96, 720), + (29869, 97, 720), + (30101, 118, -550), + (30101, 119, -550), + (30101, 120, -550), + (30101, 149, -550), + (30102, 162, 50), + (30109, 277, 25), + (30109, 382, -1), + (30109, 391, 1), + (30110, 118, -416), + (30110, 119, -416), + (30110, 120, -416), + (30110, 149, -416), + (30119, 164, 86), + (30122, 112, 20), + (30135, 382, 25), + (30138, 118, -701), + (30138, 119, -701), + (30138, 120, -701), + (30138, 149, -701), + (30140, 364, 20), + (30266, 221, 100), + (30757, 161, 260), + (30758, 157, 40), + (30759, 125, 40), + (30764, 119, 15), + (30766, 161, 160), + (30769, 119, 45), + (30771, 161, 55), + (30775, 126, 80), + (30776, 157, 80), + (30777, 125, 80), + (30778, 159, 80), + (30779, 158, 80), + (30780, 221, 250), + (30781, 221, 50), + (30782, 221, 500), + (30783, 221, 1000), + (30785, 126, 125), + (30786, 157, 125), + (30787, 125, 125), + (30788, 159, 125), + (30789, 158, 125), + (30796, 153, 110), + (30796, 154, 110), + (30796, 155, 110), + (30804, 126, 40), + (31415, 136, 240), + (31420, 165, 23), + (31420, 135, 23), + (31422, 164, 40), + (31425, 165, 130), + (31425, 135, 130), + (31427, 153, -85), + (31427, 154, -85), + (31427, 155, -85), + (31427, 180, 15), + (31441, 165, 79), + (31441, 135, 79), + (31443, 146, 70), + (31594, 100, 400), + (31594, 101, 50), + (31594, 142, 50), + (31594, 147, 50), + (31594, 90, 150), + (31594, 91, 150), + (31594, 92, 150), + (31835, 93, 62), + (31835, 95, 218), + (31835, 92, 250), + (31835, 97, 218), + (31835, 91, 250), + (31835, 96, 250), + (31835, 90, 218), + (31835, 94, 218), + (32099, 154, -78), + (32100, 164, 200), + (32100, 360, -10), + (32101, 164, 400), + (32101, 360, -20), + (32102, 164, 600), + (32102, 360, -30), + (32103, 164, 63), + (32105, 113, 50), + (32106, 151, 165), + (32108, 113, 120), + (36777, 45, 3), + (36778, 181, 4), + (36779, 181, 2), + (36780, 181, 16), + (36781, 181, 32), + (36782, 45, 2), + (36783, 45, 1), + (36784, 45, 5), + (36785, 45, 4), + (36786, 181, 8), + (36787, 45, 6), + (41390, 93, 750), + (41390, 95, 250), + (41390, 154, -50), + (41390, 153, -50), + (41390, 92, 1000), + (41390, 155, -50), + (41390, 97, 250), + (41390, 91, 1000), + (41390, 96, 250), + (41390, 90, 1000), + (41390, 94, 875), + (41390, 156, -50), + (41395, 93, 250), + (41395, 95, 875), + (41395, 154, -50), + (41395, 153, -50), + (41395, 92, 1000), + (41395, 155, -50), + (41395, 97, 250), + (41395, 91, 1000), + (41395, 96, 250), + (41395, 90, 1000), + (41395, 94, 750), + (41395, 156, -50), + (41398, 93, 875), + (41398, 95, 250), + (41398, 154, -50), + (41398, 153, -50), + (41398, 92, 1000), + (41398, 155, -50), + (41398, 97, 250), + (41398, 91, 1000), + (41398, 96, 750), + (41398, 90, 1000), + (41398, 94, 250), + (41398, 156, -50), + (41398, 318, 0), + (41402, 93, 250), + (41402, 95, 750), + (41402, 154, -50), + (41402, 153, -50), + (41402, 92, 1000), + (41402, 155, -50), + (41402, 97, 875), + (41402, 91, 1000), + (41402, 96, 250), + (41402, 90, 1000), + (41402, 94, 250), + (41402, 156, -50), + (42415, 16, 20), + (42415, 18, 20), + (43379, 102, 14), + (43380, 114, 8), + (43380, 148, 7), + (43382, 100, 12), + (43382, 120, 8), + (49812, 276, 113), + (49812, 360, 26), + (49813, 276, 62), + (49813, 360, 20), + (49814, 276, 157), + (49814, 278, 44), + (49814, 279, 44), + (49814, 280, 44), + (49814, 281, 44), + (49814, 282, 44), + (49814, 311, 44), + (49814, 316, 44), + (49814, 317, 44), + (49814, 360, 32), + (49815, 276, 224), + (49815, 360, 44), + (49816, 276, 252), + (49816, 360, 60), + (49817, 276, 205), + (49817, 360, 38), + (49818, 276, 211), + (49818, 360, 40), + (49819, 276, 78), + (49819, 360, 22), + (49820, 276, 170), + (49820, 360, 34), + (49821, 276, 27), + (49821, 360, 16), + (49822, 276, 131), + (49822, 360, 28), + (49823, 276, 45), + (49823, 360, 18), + (49824, 276, 232), + (49824, 360, 46), + (49825, 276, 144), + (49825, 360, 30), + (49826, 276, 218), + (49826, 360, 42), + (49827, 276, 92), + (49827, 360, 24), + (49828, 276, 190), + (49828, 360, 36), + (49829, 276, 240), + (49829, 360, 48), + (55752, 1, 479), + (55752, 226, 60), + (55752, 227, 60), + (55752, 228, 60), + (55752, 229, 60), + (55752, 230, 60), + (55752, 231, 60), + (55752, 233, 60), + (55752, 234, 60), + (55752, 92, 240), + (55753, 1, 454), + (55753, 226, 55), + (55753, 227, 55), + (55753, 228, 55), + (55753, 229, 55), + (55753, 230, 55), + (55753, 231, 55), + (55753, 233, 55), + (55753, 234, 55), + (55754, 1, 310), + (55754, 226, 30), + (55754, 227, 30), + (55754, 228, 30), + (55754, 229, 30), + (55754, 230, 30), + (55754, 231, 30), + (55754, 233, 30), + (55754, 234, 30), + (55754, 92, 160), + (55755, 1, 256), + (55755, 226, 25), + (55755, 227, 25), + (55755, 228, 25), + (55755, 229, 25), + (55755, 230, 25), + (55755, 231, 25), + (55755, 233, 25), + (55755, 234, 25), + (55756, 1, 381), + (55756, 226, 40), + (55756, 227, 40), + (55756, 228, 40), + (55756, 229, 40), + (55756, 230, 40), + (55756, 231, 40), + (55756, 231, 40), + (55756, 233, 40), + (55756, 234, 40), + (55756, 95, 200), + (55757, 1, 161), + (55757, 226, 15), + (55757, 227, 15), + (55757, 228, 15), + (55757, 229, 15), + (55757, 230, 15), + (55757, 231, 15), + (55757, 233, 15), + (55757, 234, 15), + (55758, 1, 228), + (55758, 226, 22), + (55758, 227, 22), + (55758, 228, 22), + (55758, 229, 22), + (55758, 230, 22), + (55758, 231, 22), + (55758, 233, 22), + (55758, 234, 22), + (55759, 1, 73), + (55759, 226, 5), + (55759, 227, 5), + (55759, 228, 5), + (55759, 229, 5), + (55759, 230, 5), + (55759, 231, 5), + (55759, 233, 5), + (55759, 234, 5), + (55759, 92, 60), + (55760, 1, 128), + (55760, 226, 11), + (55760, 227, 11), + (55760, 228, 11), + (55760, 229, 11), + (55760, 230, 11), + (55760, 231, 11), + (55760, 233, 11), + (55760, 234, 11), + (55760, 95, 90), + (55761, 1, 44), + (55761, 226, 3), + (55761, 227, 3), + (55761, 228, 3), + (55761, 229, 3), + (55761, 230, 3), + (55761, 231, 3), + (55761, 233, 3), + (55761, 234, 3), + (55762, 1, 18), + (55762, 226, 1), + (55762, 227, 1), + (55762, 228, 1), + (55762, 229, 1), + (55762, 230, 1), + (55762, 231, 1), + (55762, 234, 1), + (55762, 233, 1), + (55775, 226, 4), + (55775, 227, 4), + (55775, 228, 4), + (55775, 229, 4), + (55775, 230, 4), + (55775, 231, 4), + (55775, 233, 4), + (55775, 234, 4), + (55775, 92, 100), + (55776, 226, 7), + (55776, 227, 7), + (55776, 228, 7), + (55776, 229, 7), + (55776, 230, 7), + (55776, 231, 7), + (55776, 233, 7), + (55776, 234, 7), + (55776, 94, 110), + (55777, 226, 15), + (55777, 227, 15), + (55777, 228, 15), + (55777, 229, 15), + (55777, 230, 15), + (55777, 231, 15), + (55777, 233, 15), + (55777, 234, 15), + (55777, 92, 140), + (55778, 226, 28), + (55778, 227, 28), + (55778, 228, 28), + (55778, 229, 28), + (55778, 230, 28), + (55778, 231, 28), + (55778, 233, 28), + (55778, 234, 28), + (55778, 94, 230), + (55779, 226, 24), + (55779, 227, 24), + (55779, 228, 24), + (55779, 229, 24), + (55779, 230, 24), + (55779, 231, 24), + (55779, 233, 24), + (55779, 234, 24), + (55779, 92, 220), + (55780, 226, 39), + (55780, 227, 39), + (55780, 228, 39), + (55780, 229, 39), + (55780, 230, 39), + (55780, 231, 39), + (55780, 233, 39), + (55780, 234, 39), + (55780, 91, 240), + (55781, 226, 39), + (55781, 227, 39), + (55781, 228, 39), + (55781, 229, 39), + (55781, 230, 39), + (55781, 231, 39), + (55781, 233, 39), + (55781, 234, 39), + (55781, 92, 400), + (55782, 226, 43), + (55782, 227, 43), + (55782, 228, 43), + (55782, 229, 43), + (55782, 230, 43), + (55782, 231, 43), + (55782, 233, 43), + (55782, 234, 43), + (55782, 94, 600), + (55838, 226, 3), + (55838, 227, 3), + (55838, 228, 3), + (55838, 229, 3), + (55838, 230, 3), + (55838, 231, 3), + (55838, 233, 3), + (55838, 234, 3), + (55839, 226, 91), + (55839, 227, 91), + (55839, 228, 91), + (55839, 229, 91), + (55839, 230, 91), + (55839, 231, 91), + (55839, 233, 91), + (55839, 234, 91), + (55840, 226, 6), + (55840, 227, 6), + (55840, 228, 6), + (55840, 229, 6), + (55840, 230, 6), + (55840, 231, 6), + (55840, 233, 6), + (55840, 234, 6), + (55841, 226, 11), + (55841, 227, 11), + (55841, 228, 11), + (55841, 229, 11), + (55841, 230, 11), + (55841, 231, 11), + (55841, 233, 11), + (55841, 234, 11), + (55842, 226, 8), + (55842, 227, 8), + (55842, 228, 8), + (55842, 229, 8), + (55842, 230, 8), + (55842, 231, 8), + (55842, 233, 8), + (55842, 234, 8), + (55843, 226, 15), + (55843, 227, 15), + (55843, 228, 15), + (55843, 229, 15), + (55843, 230, 15), + (55843, 231, 15), + (55843, 233, 15), + (55843, 234, 15), + (55844, 226, 18), + (55844, 227, 18), + (55844, 228, 18), + (55844, 229, 18), + (55844, 230, 18), + (55844, 231, 18), + (55844, 233, 18), + (55844, 234, 18), + (55845, 226, 21), + (55845, 227, 21), + (55845, 228, 21), + (55845, 229, 21), + (55845, 230, 21), + (55845, 231, 21), + (55845, 233, 21), + (55845, 234, 21), + (55846, 226, 25), + (55846, 227, 25), + (55846, 228, 25), + (55846, 229, 25), + (55846, 230, 25), + (55846, 231, 25), + (55846, 233, 25), + (55846, 234, 25), + (55847, 226, 28), + (55847, 227, 28), + (55847, 228, 28), + (55847, 229, 28), + (55847, 230, 28), + (55847, 231, 28), + (55847, 233, 28), + (55847, 234, 28), + (55848, 226, 35), + (55848, 227, 35), + (55848, 228, 35), + (55848, 229, 35), + (55848, 230, 35), + (55848, 231, 35), + (55848, 233, 35), + (55848, 234, 35), + (55849, 226, 32), + (55849, 227, 32), + (55849, 228, 32), + (55849, 229, 32), + (55849, 230, 32), + (55849, 231, 32), + (55849, 233, 32), + (55849, 234, 32), + (55850, 226, 43), + (55850, 227, 43), + (55850, 228, 43), + (55850, 229, 43), + (55850, 230, 43), + (55850, 231, 43), + (55850, 233, 43), + (55850, 234, 43), + (55851, 226, 38), + (55851, 227, 38), + (55851, 228, 38), + (55851, 229, 38), + (55851, 230, 38), + (55851, 231, 38), + (55851, 233, 38), + (55851, 234, 38), + (55852, 226, 47), + (55852, 227, 47), + (55852, 228, 47), + (55852, 229, 47), + (55852, 230, 47), + (55852, 231, 47), + (55852, 233, 47), + (55852, 234, 47), + (55853, 226, 55), + (55853, 227, 55), + (55853, 228, 55), + (55853, 229, 55), + (55853, 230, 55), + (55853, 231, 55), + (55853, 233, 55), + (55853, 234, 55), + (55854, 226, 51), + (55854, 227, 51), + (55854, 228, 51), + (55854, 229, 51), + (55854, 230, 51), + (55854, 231, 51), + (55854, 233, 51), + (55854, 234, 51), + (55855, 226, 63), + (55855, 227, 63), + (55855, 228, 63), + (55855, 229, 63), + (55855, 230, 63), + (55855, 231, 63), + (55855, 233, 63), + (55855, 234, 63), + (55856, 226, 59), + (55856, 227, 59), + (55856, 228, 59), + (55856, 229, 59), + (55856, 230, 59), + (55856, 231, 59), + (55856, 233, 59), + (55856, 234, 59), + (55857, 226, 71), + (55857, 227, 71), + (55857, 228, 71), + (55857, 229, 71), + (55857, 230, 71), + (55857, 231, 71), + (55857, 233, 71), + (55857, 234, 71), + (55858, 226, 76), + (55858, 227, 76), + (55858, 228, 76), + (55858, 229, 76), + (55858, 230, 76), + (55858, 231, 76), + (55858, 233, 76), + (55858, 234, 76), + (55859, 226, 67), + (55859, 227, 67), + (55859, 228, 67), + (55859, 229, 67), + (55859, 230, 67), + (55859, 231, 67), + (55859, 233, 67), + (55859, 234, 67), + (55860, 226, 84), + (55860, 227, 84), + (55860, 228, 84), + (55860, 229, 84), + (55860, 230, 84), + (55860, 231, 84), + (55860, 233, 84), + (55860, 234, 84), + (55861, 226, 80), + (55861, 227, 80), + (55861, 228, 80), + (55861, 229, 80), + (55861, 230, 80), + (55861, 231, 80), + (55861, 233, 80), + (55861, 234, 80), + (55862, 226, 88), + (55862, 227, 88), + (55862, 228, 88), + (55862, 229, 88), + (55862, 230, 88), + (55862, 231, 88), + (55862, 233, 88), + (55862, 234, 88), + (55863, 226, 2), + (55863, 227, 2), + (55863, 228, 2), + (55863, 229, 2), + (55863, 230, 2), + (55863, 231, 2), + (55863, 233, 2), + (55863, 234, 2), + (70251, 226, 15), + (70251, 227, 15), + (70251, 228, 15), + (70251, 229, 15), + (70251, 230, 15), + (70251, 231, 15), + (70251, 232, 15), + (70251, 233, 15), + (70252, 155, 20), + (70253, 155, 1), + (70254, 226, 1), + (70254, 227, 1), + (70254, 228, 1), + (70254, 229, 1), + (70254, 230, 1), + (70254, 231, 1), + (70254, 232, 1), + (70254, 233, 1), + (70383, 205, 14), + (70383, 206, 14), + (70383, 207, 14), + (70383, 208, 14), + (70383, 216, 14), + (70383, 217, 14), + (70383, 219, 14), + (70383, 225, 14), + (70383, 475, 9), + (70383, 476, 9), + (70383, 477, 9), + (70383, 478, 9), + (70383, 479, 9), + (70383, 480, 9), + (70383, 482, 9), + (70383, 483, 9), + (70384, 205, 14), + (70384, 206, 14), + (70384, 207, 14), + (70384, 208, 14), + (70384, 216, 14), + (70384, 217, 14), + (70384, 219, 14), + (70384, 225, 14), + (70384, 475, 10), + (70384, 476, 10), + (70384, 477, 10), + (70384, 478, 10), + (70384, 479, 10), + (70384, 480, 10), + (70384, 482, 10), + (70384, 483, 10), + (70385, 205, 15), + (70385, 206, 15), + (70385, 207, 15), + (70385, 208, 15), + (70385, 216, 15), + (70385, 217, 15), + (70385, 219, 15), + (70385, 225, 15), + (70385, 475, 13), + (70385, 476, 13), + (70385, 477, 13), + (70385, 478, 13), + (70385, 479, 13), + (70385, 480, 13), + (70385, 482, 13), + (70385, 483, 13), + (70386, 205, 15), + (70386, 206, 15), + (70386, 207, 15), + (70386, 208, 15), + (70386, 216, 15), + (70386, 217, 15), + (70386, 219, 15), + (70386, 225, 15), + (70386, 475, 14), + (70386, 476, 14), + (70386, 477, 14), + (70386, 478, 14), + (70386, 479, 14), + (70386, 480, 14), + (70386, 482, 14), + (70386, 483, 14), + (70387, 205, 26), + (70387, 206, 26), + (70387, 207, 26), + (70387, 208, 26), + (70387, 216, 26), + (70387, 217, 26), + (70387, 219, 26), + (70387, 225, 26), + (70387, 475, 40), + (70387, 476, 40), + (70387, 477, 40), + (70387, 478, 40), + (70387, 479, 40), + (70387, 480, 40), + (70387, 482, 40), + (70387, 483, 40), + (70388, 205, 26), + (70388, 206, 26), + (70388, 207, 26), + (70388, 208, 26), + (70388, 216, 26), + (70388, 217, 26), + (70388, 219, 26), + (70388, 225, 26), + (70388, 475, 42), + (70388, 476, 42), + (70388, 477, 42), + (70388, 478, 42), + (70388, 479, 42), + (70388, 480, 42), + (70388, 482, 42), + (70388, 483, 42), + (70389, 205, 13), + (70389, 206, 13), + (70389, 207, 13), + (70389, 208, 13), + (70389, 216, 13), + (70389, 217, 13), + (70389, 219, 13), + (70389, 225, 13), + (70389, 475, 7), + (70389, 476, 7), + (70389, 477, 7), + (70389, 478, 7), + (70389, 479, 7), + (70389, 480, 7), + (70389, 482, 7), + (70389, 483, 7), + (70390, 205, 13), + (70390, 206, 13), + (70390, 207, 13), + (70390, 208, 13), + (70390, 216, 13), + (70390, 217, 13), + (70390, 219, 13), + (70390, 225, 13), + (70390, 475, 5), + (70390, 476, 5), + (70390, 477, 5), + (70390, 478, 5), + (70390, 479, 5), + (70390, 480, 5), + (70390, 482, 5), + (70390, 483, 5), + (70391, 205, 24), + (70391, 206, 24), + (70391, 207, 24), + (70391, 208, 24), + (70391, 216, 24), + (70391, 217, 24), + (70391, 219, 24), + (70391, 225, 24), + (70391, 475, 33), + (70391, 476, 33), + (70391, 477, 33), + (70391, 478, 33), + (70391, 479, 33), + (70391, 480, 33), + (70391, 482, 33), + (70391, 483, 33), + (70392, 205, 24), + (70392, 206, 24), + (70392, 207, 24), + (70392, 208, 24), + (70392, 216, 24), + (70392, 217, 24), + (70392, 219, 24), + (70392, 225, 24), + (70392, 475, 31), + (70392, 476, 31), + (70392, 477, 31), + (70392, 478, 31), + (70392, 479, 31), + (70392, 480, 31), + (70392, 482, 31), + (70392, 483, 31), + (70393, 205, 17), + (70393, 206, 17), + (70393, 207, 17), + (70393, 208, 17), + (70393, 216, 17), + (70393, 217, 17), + (70393, 219, 17), + (70393, 225, 17), + (70393, 475, 16), + (70393, 476, 16), + (70393, 477, 16), + (70393, 478, 16), + (70393, 479, 16), + (70393, 480, 16), + (70393, 482, 16), + (70393, 483, 16), + (70394, 205, 17), + (70394, 206, 17), + (70394, 207, 17), + (70394, 208, 17), + (70394, 216, 17), + (70394, 217, 17), + (70394, 219, 17), + (70394, 225, 17), + (70394, 475, 18), + (70394, 476, 18), + (70394, 477, 18), + (70394, 478, 18), + (70394, 479, 18), + (70394, 480, 18), + (70394, 482, 18), + (70394, 483, 18), + (70395, 205, 28), + (70395, 206, 28), + (70395, 207, 28), + (70395, 208, 28), + (70395, 216, 28), + (70395, 217, 28), + (70395, 219, 28), + (70395, 225, 28), + (70395, 475, 44), + (70395, 476, 44), + (70395, 477, 44), + (70395, 478, 44), + (70395, 479, 44), + (70395, 480, 44), + (70395, 482, 44), + (70395, 483, 44), + (70396, 205, 28), + (70396, 206, 28), + (70396, 207, 28), + (70396, 208, 28), + (70396, 216, 28), + (70396, 217, 28), + (70396, 219, 28), + (70396, 225, 28), + (70396, 475, 46), + (70396, 476, 46), + (70396, 477, 46), + (70396, 478, 46), + (70396, 479, 46), + (70396, 480, 46), + (70396, 482, 46), + (70396, 483, 46), + (70397, 205, 12), + (70397, 206, 12), + (70397, 207, 12), + (70397, 208, 12), + (70397, 216, 12), + (70397, 217, 12), + (70397, 219, 12), + (70397, 225, 12), + (70397, 475, 3), + (70397, 476, 3), + (70397, 477, 3), + (70397, 478, 3), + (70397, 479, 3), + (70397, 480, 3), + (70397, 482, 3), + (70397, 483, 3), + (70398, 205, 12), + (70398, 206, 12), + (70398, 207, 12), + (70398, 208, 12), + (70398, 216, 12), + (70398, 217, 12), + (70398, 219, 12), + (70398, 225, 12), + (70398, 475, 4), + (70398, 476, 4), + (70398, 477, 4), + (70398, 478, 4), + (70398, 479, 4), + (70398, 480, 4), + (70398, 482, 4), + (70398, 483, 4), + (70399, 205, 22), + (70399, 206, 22), + (70399, 207, 22), + (70399, 208, 22), + (70399, 216, 22), + (70399, 217, 22), + (70399, 219, 22), + (70399, 225, 22), + (70399, 475, 28), + (70399, 476, 28), + (70399, 477, 28), + (70399, 478, 28), + (70399, 479, 28), + (70399, 480, 28), + (70399, 482, 28), + (70399, 483, 28), + (70400, 205, 22), + (70400, 206, 22), + (70400, 207, 22), + (70400, 208, 22), + (70400, 216, 22), + (70400, 217, 22), + (70400, 219, 22), + (70400, 225, 22), + (70400, 475, 29), + (70400, 476, 29), + (70400, 477, 29), + (70400, 478, 29), + (70400, 479, 29), + (70400, 480, 29), + (70400, 482, 29), + (70400, 483, 29), + (70401, 205, 10), + (70401, 206, 10), + (70401, 207, 10), + (70401, 208, 10), + (70401, 216, 10), + (70401, 217, 10), + (70401, 219, 10), + (70401, 225, 10), + (70401, 475, 1), + (70401, 476, 1), + (70401, 477, 1), + (70401, 478, 1), + (70401, 479, 1), + (70401, 480, 1), + (70401, 482, 1), + (70401, 483, 1), + (70402, 205, 21), + (70402, 206, 21), + (70402, 207, 21), + (70402, 208, 21), + (70402, 216, 21), + (70402, 217, 21), + (70402, 219, 21), + (70402, 225, 21), + (70402, 475, 24), + (70402, 476, 24), + (70402, 477, 24), + (70402, 478, 24), + (70402, 479, 24), + (70402, 480, 24), + (70402, 482, 24), + (70402, 483, 24), + (70403, 205, 10), + (70403, 206, 10), + (70403, 207, 10), + (70403, 208, 10), + (70403, 216, 10), + (70403, 217, 10), + (70403, 219, 10), + (70403, 225, 10), + (70403, 475, 2), + (70403, 476, 2), + (70403, 477, 2), + (70403, 478, 2), + (70403, 479, 2), + (70403, 480, 2), + (70403, 482, 2), + (70403, 483, 2), + (70404, 205, 19), + (70404, 206, 19), + (70404, 207, 19), + (70404, 208, 19), + (70404, 216, 19), + (70404, 217, 19), + (70404, 219, 19), + (70404, 225, 19), + (70404, 475, 20), + (70404, 476, 20), + (70404, 477, 20), + (70404, 478, 20), + (70404, 479, 20), + (70404, 480, 20), + (70404, 482, 20), + (70404, 483, 20), + (70405, 205, 21), + (70405, 206, 21), + (70405, 207, 21), + (70405, 208, 21), + (70405, 216, 21), + (70405, 217, 21), + (70405, 219, 21), + (70405, 225, 21), + (70405, 475, 25), + (70405, 476, 25), + (70405, 477, 25), + (70405, 478, 25), + (70405, 479, 25), + (70405, 480, 25), + (70405, 482, 25), + (70405, 483, 25), + (70406, 205, 19), + (70406, 206, 19), + (70406, 207, 19), + (70406, 208, 19), + (70406, 216, 19), + (70406, 217, 19), + (70406, 219, 19), + (70406, 225, 19), + (70406, 475, 21), + (70406, 476, 21), + (70406, 477, 21), + (70406, 478, 21), + (70406, 479, 21), + (70406, 480, 21), + (70406, 482, 21), + (70406, 483, 21), + (70407, 205, 30), + (70407, 206, 30), + (70407, 207, 30), + (70407, 208, 30), + (70407, 216, 30), + (70407, 217, 30), + (70407, 219, 30), + (70407, 225, 30), + (70407, 475, 48), + (70407, 476, 48), + (70407, 477, 48), + (70407, 478, 48), + (70407, 479, 48), + (70407, 480, 48), + (70407, 482, 48), + (70407, 483, 48), + (70408, 205, 30), + (70408, 206, 30), + (70408, 207, 30), + (70408, 208, 30), + (70408, 216, 30), + (70408, 217, 30), + (70408, 219, 30), + (70408, 225, 30), + (70408, 475, 49), + (70408, 476, 49), + (70408, 477, 49), + (70408, 478, 49), + (70408, 479, 49), + (70408, 480, 49), + (70408, 482, 49), + (70408, 483, 49), + (70409, 205, 25), + (70409, 206, 25), + (70409, 207, 25), + (70409, 208, 25), + (70409, 216, 25), + (70409, 217, 25), + (70409, 219, 25), + (70409, 225, 25), + (70409, 475, 36), + (70409, 476, 36), + (70409, 477, 36), + (70409, 478, 36), + (70409, 479, 36), + (70409, 480, 36), + (70409, 482, 36), + (70409, 483, 36), + (70410, 205, 25), + (70410, 206, 25), + (70410, 207, 25), + (70410, 208, 25), + (70410, 216, 25), + (70410, 217, 25), + (70410, 219, 25), + (70410, 225, 25), + (70410, 475, 37), + (70410, 476, 37), + (70410, 477, 37), + (70410, 478, 37), + (70410, 479, 37), + (70410, 480, 37), + (70410, 482, 37), + (70410, 483, 37), + (70411, 205, 75), + (70411, 206, 75), + (70411, 207, 75), + (70411, 208, 75), + (70411, 216, 75), + (70411, 217, 75), + (70411, 219, 75), + (70411, 225, 75), + (70411, 475, 7), + (70411, 476, 7), + (70411, 477, 7), + (70411, 478, 7), + (70411, 479, 7), + (70411, 480, 7), + (70411, 482, 7), + (70411, 483, 7), + (70411, 689, 10), + (70412, 205, 75), + (70412, 206, 75), + (70412, 207, 75), + (70412, 208, 75), + (70412, 216, 75), + (70412, 217, 75), + (70412, 219, 75), + (70412, 225, 75), + (70412, 475, 21), + (70412, 476, 21), + (70412, 477, 21), + (70412, 478, 21), + (70412, 479, 21), + (70412, 480, 21), + (70412, 482, 21), + (70412, 483, 21), + (70412, 689, 10), + (70413, 205, 75), + (70413, 206, 75), + (70413, 207, 75), + (70413, 208, 75), + (70413, 216, 75), + (70413, 217, 75), + (70413, 219, 75), + (70413, 225, 75), + (70413, 475, 38), + (70413, 476, 38), + (70413, 477, 38), + (70413, 478, 38), + (70413, 479, 38), + (70413, 480, 38), + (70413, 482, 38), + (70413, 483, 38), + (70413, 689, 10), + (70414, 205, 75), + (70414, 206, 75), + (70414, 207, 75), + (70414, 208, 75), + (70414, 216, 75), + (70414, 217, 75), + (70414, 219, 75), + (70414, 225, 75), + (70414, 475, 49), + (70414, 476, 49), + (70414, 477, 49), + (70414, 478, 49), + (70414, 479, 49), + (70414, 480, 49), + (70414, 482, 49), + (70414, 483, 49), + (70414, 689, 10), + (70415, 205, 75), + (70415, 206, 75), + (70415, 207, 75), + (70415, 208, 75), + (70415, 216, 75), + (70415, 217, 75), + (70415, 219, 75), + (70415, 225, 75), + (70415, 475, 115), + (70415, 476, 115), + (70415, 477, 115), + (70415, 478, 115), + (70415, 479, 115), + (70415, 480, 115), + (70415, 482, 115), + (70415, 483, 115), + (70415, 689, 10), + (70416, 205, 75), + (70416, 206, 75), + (70416, 207, 75), + (70416, 208, 75), + (70416, 216, 75), + (70416, 217, 75), + (70416, 219, 75), + (70416, 225, 75), + (70416, 475, 66), + (70416, 476, 66), + (70416, 477, 66), + (70416, 478, 66), + (70416, 479, 66), + (70416, 480, 66), + (70416, 482, 66), + (70416, 483, 66), + (70416, 689, 10), + (70417, 205, 75), + (70417, 206, 75), + (70417, 207, 75), + (70417, 208, 75), + (70417, 216, 75), + (70417, 217, 75), + (70417, 219, 75), + (70417, 225, 75), + (70417, 475, 80), + (70417, 476, 80), + (70417, 477, 80), + (70417, 478, 80), + (70417, 479, 80), + (70417, 480, 80), + (70417, 482, 80), + (70417, 483, 80), + (70417, 689, 10), + (70418, 205, 75), + (70418, 206, 75), + (70418, 207, 75), + (70418, 208, 75), + (70418, 216, 75), + (70418, 217, 75), + (70418, 219, 75), + (70418, 225, 75), + (70418, 475, 97), + (70418, 476, 97), + (70418, 477, 97), + (70418, 478, 97), + (70418, 479, 97), + (70418, 480, 97), + (70418, 482, 97), + (70418, 483, 97), + (70418, 689, 10), + (70419, 205, 75), + (70419, 206, 75), + (70419, 207, 75), + (70419, 208, 75), + (70419, 216, 75), + (70419, 217, 75), + (70419, 219, 75), + (70419, 225, 75), + (70419, 475, 111), + (70419, 476, 111), + (70419, 477, 111), + (70419, 478, 111), + (70419, 479, 111), + (70419, 480, 111), + (70419, 482, 111), + (70419, 483, 111), + (70419, 689, 10), + (70420, 205, 25), + (70420, 206, 25), + (70420, 207, 25), + (70420, 208, 25), + (70420, 216, 25), + (70420, 217, 25), + (70420, 219, 25), + (70420, 225, 25), + (70420, 475, 30), + (70420, 476, 30), + (70420, 477, 30), + (70420, 478, 30), + (70420, 479, 30), + (70420, 480, 30), + (70420, 482, 30), + (70420, 483, 30), + (70421, 205, 75), + (70421, 206, 75), + (70421, 207, 75), + (70421, 208, 75), + (70421, 216, 75), + (70421, 217, 75), + (70421, 219, 75), + (70421, 225, 75), + (70421, 475, 136), + (70421, 476, 136), + (70421, 477, 136), + (70421, 478, 136), + (70421, 479, 136), + (70421, 480, 136), + (70421, 482, 136), + (70421, 483, 136), + (70421, 689, 10), + (70422, 205, 16), + (70422, 206, 16), + (70422, 207, 16), + (70422, 208, 16), + (70422, 216, 16), + (70422, 217, 16), + (70422, 219, 16), + (70422, 225, 16), + (70422, 475, 10), + (70422, 476, 10), + (70422, 477, 10), + (70422, 478, 10), + (70422, 479, 10), + (70422, 480, 10), + (70422, 482, 10), + (70422, 483, 10), + (70423, 205, 13), + (70423, 206, 13), + (70423, 207, 13), + (70423, 208, 13), + (70423, 216, 13), + (70423, 217, 13), + (70423, 219, 13), + (70423, 225, 13), + (70423, 475, 7), + (70423, 476, 7), + (70423, 477, 7), + (70423, 478, 7), + (70423, 479, 7), + (70423, 480, 7), + (70423, 482, 7), + (70423, 483, 7), + (70424, 205, 19), + (70424, 206, 19), + (70424, 207, 19), + (70424, 208, 19), + (70424, 216, 19), + (70424, 217, 19), + (70424, 219, 19), + (70424, 225, 19), + (70424, 475, 15), + (70424, 476, 15), + (70424, 477, 15), + (70424, 478, 15), + (70424, 479, 15), + (70424, 480, 15), + (70424, 482, 15), + (70424, 483, 15), + (70425, 205, 29), + (70425, 206, 29), + (70425, 207, 29), + (70425, 208, 29), + (70425, 216, 29), + (70425, 217, 29), + (70425, 219, 29), + (70425, 225, 29), + (70425, 475, 40), + (70425, 476, 40), + (70425, 477, 40), + (70425, 478, 40), + (70425, 479, 40), + (70425, 480, 40), + (70425, 482, 40), + (70425, 483, 40), + (70426, 205, 10), + (70426, 206, 10), + (70426, 207, 10), + (70426, 208, 10), + (70426, 216, 10), + (70426, 217, 10), + (70426, 219, 10), + (70426, 225, 10), + (70426, 475, 3), + (70426, 476, 3), + (70426, 477, 3), + (70426, 478, 3), + (70426, 479, 3), + (70426, 480, 3), + (70426, 482, 3), + (70426, 483, 3), + (70558, 93, 1), + (70558, 95, 1), + (70558, 92, 1), + (70558, 97, 1), + (70558, 91, 3), + (70558, 96, 1), + (70558, 90, 3), + (70558, 94, 1), + (70559, 93, 1), + (70559, 95, 1), + (70559, 92, 5), + (70559, 97, 1), + (70559, 91, 5), + (70559, 96, 1), + (70559, 90, 5), + (70559, 94, 1), + (70560, 93, 1), + (70560, 95, 1), + (70560, 92, 5), + (70560, 97, 1), + (70560, 91, 5), + (70560, 96, 1), + (70560, 90, 5), + (70560, 94, 1), + (70561, 93, 1), + (70561, 95, 1), + (70561, 92, 1), + (70561, 97, 1), + (70561, 91, 3), + (70561, 96, 1), + (70561, 90, 3), + (70561, 94, 1), + (70562, 93, 1), + (70562, 95, 1), + (70562, 92, 1), + (70562, 97, 1), + (70562, 91, 3), + (70562, 96, 1), + (70562, 90, 3), + (70562, 94, 1), + (70563, 93, 1), + (70563, 95, 1), + (70563, 92, 3), + (70563, 97, 1), + (70563, 91, 3), + (70563, 96, 1), + (70563, 90, 3), + (70563, 94, 1), + (70564, 93, 1), + (70564, 95, 1), + (70564, 92, 3), + (70564, 97, 1), + (70564, 91, 3), + (70564, 96, 1), + (70564, 90, 3), + (70564, 94, 1), + (70565, 93, 1), + (70565, 95, 1), + (70565, 92, 3), + (70565, 97, 1), + (70565, 91, 3), + (70565, 96, 1), + (70565, 90, 3), + (70565, 94, 1), + (70570, 90, 672), + (70570, 91, 672), + (70570, 92, 672), + (70570, 93, 672), + (70570, 94, 672), + (70570, 95, 672), + (70570, 96, 672), + (70570, 97, 672), + (70571, 90, 189), + (70571, 91, 189), + (70571, 92, 189), + (70571, 93, 189), + (70571, 94, 189), + (70571, 95, 189), + (70571, 96, 189), + (70571, 97, 189), + (70572, 90, 168), + (70572, 91, 168), + (70572, 92, 168), + (70572, 93, 168), + (70572, 94, 168), + (70572, 95, 168), + (70572, 96, 168), + (70572, 97, 168), + (70573, 90, 206), + (70573, 91, 206), + (70573, 92, 206), + (70573, 93, 206), + (70573, 94, 206), + (70573, 95, 206), + (70573, 96, 206), + (70573, 97, 206), + (70574, 90, 252), + (70574, 91, 252), + (70574, 92, 252), + (70574, 93, 252), + (70574, 94, 252), + (70574, 95, 252), + (70574, 96, 252), + (70574, 97, 252), + (70575, 90, 231), + (70575, 91, 231), + (70575, 92, 231), + (70575, 93, 231), + (70575, 94, 231), + (70575, 95, 231), + (70575, 96, 231), + (70575, 97, 231), + (70576, 90, 273), + (70576, 91, 273), + (70576, 92, 273), + (70576, 93, 273), + (70576, 94, 273), + (70576, 95, 273), + (70576, 96, 273), + (70576, 97, 273), + (70577, 90, 23), + (70577, 91, 23), + (70577, 92, 23), + (70577, 93, 23), + (70577, 94, 23), + (70577, 95, 23), + (70577, 96, 23), + (70577, 97, 23), + (70578, 90, 322), + (70578, 91, 322), + (70578, 92, 322), + (70578, 93, 322), + (70578, 94, 322), + (70578, 95, 322), + (70578, 96, 322), + (70578, 97, 322), + (70579, 90, 301), + (70579, 91, 301), + (70579, 92, 301), + (70579, 93, 301), + (70579, 94, 301), + (70579, 95, 301), + (70579, 96, 301), + (70579, 97, 301), + (70580, 90, 343), + (70580, 91, 343), + (70580, 92, 343), + (70580, 93, 343), + (70580, 94, 343), + (70580, 95, 343), + (70580, 96, 343), + (70580, 97, 343), + (70581, 90, 46), + (70581, 91, 46), + (70581, 92, 46), + (70581, 93, 46), + (70581, 94, 46), + (70581, 95, 46), + (70581, 96, 46), + (70581, 97, 46), + (70582, 90, 33), + (70582, 91, 33), + (70582, 92, 33), + (70582, 93, 33), + (70582, 94, 33), + (70582, 95, 33), + (70582, 96, 33), + (70582, 97, 33), + (70583, 90, 105), + (70583, 91, 105), + (70583, 92, 105), + (70583, 93, 105), + (70583, 94, 105), + (70583, 95, 105), + (70583, 96, 105), + (70583, 97, 105), + (70584, 90, 85), + (70584, 91, 85), + (70584, 92, 85), + (70584, 93, 85), + (70584, 94, 85), + (70584, 95, 85), + (70584, 96, 85), + (70584, 97, 85), + (70585, 90, 66), + (70585, 91, 66), + (70585, 92, 66), + (70585, 93, 66), + (70585, 94, 66), + (70585, 95, 66), + (70585, 96, 66), + (70585, 97, 66), + (70586, 90, 122), + (70586, 91, 122), + (70586, 92, 122), + (70586, 93, 122), + (70586, 94, 122), + (70586, 95, 122), + (70586, 96, 122), + (70586, 97, 122), + (70587, 90, 147), + (70587, 91, 147), + (70587, 92, 147), + (70587, 93, 147), + (70587, 94, 147), + (70587, 95, 147), + (70587, 96, 147), + (70587, 97, 147), + (70588, 90, 389), + (70588, 91, 389), + (70588, 92, 389), + (70588, 93, 389), + (70588, 94, 389), + (70588, 95, 389), + (70588, 96, 389), + (70588, 97, 389), + (70589, 90, 364), + (70589, 91, 364), + (70589, 92, 364), + (70589, 93, 364), + (70589, 94, 364), + (70589, 95, 364), + (70589, 96, 364), + (70589, 97, 364), + (70590, 90, 418), + (70590, 91, 418), + (70590, 92, 418), + (70590, 93, 418), + (70590, 94, 418), + (70590, 95, 418), + (70590, 96, 418), + (70590, 97, 418), + (70591, 90, 517), + (70591, 91, 517), + (70591, 92, 517), + (70591, 93, 517), + (70591, 94, 517), + (70591, 95, 517), + (70591, 96, 517), + (70591, 97, 517), + (70592, 90, 472), + (70592, 91, 472), + (70592, 92, 472), + (70592, 93, 472), + (70592, 94, 472), + (70592, 95, 472), + (70592, 96, 472), + (70592, 97, 472), + (70593, 90, 440), + (70593, 91, 440), + (70593, 92, 440), + (70593, 93, 440), + (70593, 94, 440), + (70593, 95, 440), + (70593, 96, 440), + (70593, 97, 440), + (70594, 90, 545), + (70594, 91, 545), + (70594, 92, 545), + (70594, 93, 545), + (70594, 94, 545), + (70594, 95, 545), + (70594, 96, 545), + (70594, 97, 545), + (70595, 90, 566), + (70595, 91, 566), + (70595, 92, 566), + (70595, 93, 566), + (70595, 94, 566), + (70595, 95, 566), + (70595, 96, 566), + (70595, 97, 566), + (70596, 90, 590), + (70596, 91, 590), + (70596, 92, 590), + (70596, 93, 590), + (70596, 94, 590), + (70596, 95, 590), + (70596, 96, 590), + (70596, 97, 590), + (70597, 90, 617), + (70597, 91, 617), + (70597, 92, 617), + (70597, 93, 617), + (70597, 94, 617), + (70597, 95, 617), + (70597, 96, 617), + (70597, 97, 617), + (70598, 90, 652), + (70598, 91, 652), + (70598, 92, 652), + (70598, 93, 652), + (70598, 94, 652), + (70598, 95, 652), + (70598, 96, 652), + (70598, 97, 652), + (75352, 90, 538), + (75352, 91, 621), + (75352, 92, 538), + (75352, 93, 538), + (75352, 94, 538), + (75352, 95, 538), + (75352, 96, 538), + (75352, 97, 538), + (75353, 90, 31), + (75353, 91, 36), + (75353, 92, 31), + (75353, 93, 31), + (75353, 94, 31), + (75353, 95, 31), + (75353, 96, 31), + (75353, 97, 31), + (75354, 90, 14), + (75354, 91, 16), + (75354, 92, 14), + (75354, 93, 14), + (75354, 94, 14), + (75354, 95, 14), + (75354, 96, 14), + (75354, 97, 14), + (75355, 90, 53), + (75355, 91, 62), + (75355, 92, 53), + (75355, 93, 53), + (75355, 94, 53), + (75355, 95, 53), + (75355, 96, 53), + (75355, 97, 53), + (75356, 90, 110), + (75356, 91, 129), + (75356, 92, 110), + (75356, 93, 110), + (75356, 94, 110), + (75356, 95, 110), + (75356, 96, 110), + (75356, 97, 110), + (75357, 90, 139), + (75357, 91, 164), + (75357, 92, 139), + (75357, 93, 139), + (75357, 94, 139), + (75357, 95, 139), + (75357, 96, 139), + (75357, 97, 139), + (75358, 90, 169), + (75358, 91, 199), + (75358, 92, 169), + (75358, 93, 169), + (75358, 94, 169), + (75358, 95, 169), + (75358, 96, 169), + (75358, 97, 169), + (75359, 90, 258), + (75359, 91, 304), + (75359, 92, 258), + (75359, 93, 258), + (75359, 94, 258), + (75359, 95, 258), + (75359, 96, 258), + (75359, 97, 258), + (75360, 90, 199), + (75360, 91, 234), + (75360, 92, 199), + (75360, 93, 199), + (75360, 94, 199), + (75360, 95, 199), + (75360, 96, 199), + (75360, 97, 199), + (75361, 90, 318), + (75361, 91, 375), + (75361, 92, 318), + (75361, 93, 318), + (75361, 94, 318), + (75361, 95, 318), + (75361, 96, 318), + (75361, 97, 318), + (75362, 90, 349), + (75362, 91, 411), + (75362, 92, 349), + (75362, 93, 349), + (75362, 94, 349), + (75362, 95, 349), + (75362, 96, 349), + (75362, 97, 349), + (75363, 90, 288), + (75363, 91, 339), + (75363, 92, 288), + (75363, 93, 288), + (75363, 94, 288), + (75363, 95, 288), + (75363, 96, 288), + (75363, 97, 288), + (75364, 90, 380), + (75364, 91, 447), + (75364, 92, 380), + (75364, 93, 380), + (75364, 94, 380), + (75364, 95, 380), + (75364, 96, 380), + (75364, 97, 380), + (75365, 90, 469), + (75365, 91, 552), + (75365, 92, 469), + (75365, 93, 469), + (75365, 94, 469), + (75365, 95, 469), + (75365, 96, 469), + (75365, 97, 469), + (75366, 90, 410), + (75366, 91, 482), + (75366, 92, 410), + (75366, 93, 410), + (75366, 94, 410), + (75366, 95, 410), + (75366, 96, 410), + (75366, 97, 410), + (75367, 90, 499), + (75367, 91, 587), + (75367, 92, 499), + (75367, 93, 499), + (75367, 94, 499), + (75367, 95, 499), + (75367, 96, 499), + (75367, 97, 499), + (75368, 90, 18), + (75368, 91, 18), + (75368, 92, 18), + (75368, 93, 18), + (75368, 94, 18), + (75368, 95, 18), + (75368, 96, 18), + (75368, 97, 18), + (75369, 90, 71), + (75369, 91, 71), + (75369, 92, 71), + (75369, 93, 71), + (75369, 94, 71), + (75369, 95, 71), + (75369, 96, 71), + (75369, 97, 71), + (75370, 90, 144), + (75370, 91, 144), + (75370, 92, 144), + (75370, 93, 144), + (75370, 94, 144), + (75370, 95, 144), + (75370, 96, 144), + (75370, 97, 144), + (75371, 90, 220), + (75371, 91, 220), + (75371, 92, 220), + (75371, 93, 220), + (75371, 94, 220), + (75371, 95, 220), + (75371, 96, 220), + (75371, 97, 220), + (75372, 90, 296), + (75372, 91, 296), + (75372, 92, 296), + (75372, 93, 296), + (75372, 94, 296), + (75372, 95, 296), + (75372, 96, 296), + (75372, 97, 296), + (75373, 90, 773), + (75373, 91, 773), + (75373, 92, 773), + (75373, 93, 773), + (75373, 94, 773), + (75373, 95, 773), + (75373, 96, 773), + (75373, 97, 773), + (75415, 90, 21), + (75415, 91, 21), + (75415, 92, 21), + (75415, 93, 21), + (75415, 94, 21), + (75415, 95, 21), + (75415, 96, 21), + (75415, 97, 21), + (75416, 90, 42), + (75416, 91, 42), + (75416, 92, 42), + (75416, 93, 42), + (75416, 94, 42), + (75416, 95, 42), + (75416, 96, 42), + (75416, 97, 42), + (75417, 90, 68), + (75417, 91, 68), + (75417, 92, 68), + (75417, 93, 68), + (75417, 94, 68), + (75417, 95, 68), + (75417, 96, 68), + (75417, 97, 68), + (75418, 90, 154), + (75418, 91, 154), + (75418, 92, 154), + (75418, 93, 154), + (75418, 94, 154), + (75418, 95, 154), + (75418, 96, 154), + (75418, 97, 154), + (75419, 90, 112), + (75419, 91, 112), + (75419, 92, 112), + (75419, 93, 112), + (75419, 94, 112), + (75419, 95, 112), + (75419, 96, 112), + (75419, 97, 112), + (75420, 90, 238), + (75420, 91, 238), + (75420, 92, 238), + (75420, 93, 238), + (75420, 94, 238), + (75420, 95, 238), + (75420, 96, 238), + (75420, 97, 238), + (75421, 90, 323), + (75421, 91, 323), + (75421, 92, 323), + (75421, 93, 323), + (75421, 94, 323), + (75421, 95, 323), + (75421, 96, 323), + (75421, 97, 323), + (75422, 90, 280), + (75422, 91, 280), + (75422, 92, 280), + (75422, 93, 280), + (75422, 94, 280), + (75422, 95, 280), + (75422, 96, 280), + (75422, 97, 280), + (75423, 90, 366), + (75423, 91, 366), + (75423, 92, 366), + (75423, 93, 366), + (75423, 94, 366), + (75423, 95, 366), + (75423, 96, 366), + (75423, 97, 366), + (75424, 90, 450), + (75424, 91, 450), + (75424, 92, 450), + (75424, 93, 450), + (75424, 94, 450), + (75424, 95, 450), + (75424, 96, 450), + (75424, 97, 450), + (75425, 90, 408), + (75425, 91, 408), + (75425, 92, 408), + (75425, 93, 408), + (75425, 94, 408), + (75425, 95, 408), + (75425, 96, 408), + (75425, 97, 408), + (75426, 90, 491), + (75426, 91, 491), + (75426, 92, 491), + (75426, 93, 491), + (75426, 94, 491), + (75426, 95, 491), + (75426, 96, 491), + (75426, 97, 491), + (75427, 90, 530), + (75427, 91, 530), + (75427, 92, 530), + (75427, 93, 530), + (75427, 94, 530), + (75427, 95, 530), + (75427, 96, 530), + (75427, 97, 530), + (82800, 156, -100), + (82801, 156, -480), + (82802, 156, -180), + (82803, 156, -750), + (82804, 156, -920), + (82805, 156, -1080), + (82806, 156, -320), + (82807, 156, -210), + (82808, 156, -430), + (82809, 156, -840), + (82810, 156, -650), + (82811, 156, -220), + (82812, 156, -360), + (82813, 156, -1400), + (82814, 156, -1000), + (82815, 156, -1250), + (82816, 156, -60), + (82817, 156, -150), + (82818, 156, -880), + (82819, 156, -720), + (82820, 156, -600), + (84140, 1, 25), + (84140, 221, 25), + (84141, 277, 28), + (84142, 277, 1), + (84143, 276, 28), + (84144, 276, 1), + (84145, 319, 7), + (84146, 319, 1), + (84147, 278, 28), + (84148, 278, 1), + (84149, 281, 28), + (84149, 282, 28), + (84149, 317, 28), + (84150, 281, 1), + (84150, 282, 1), + (84150, 317, 1), + (84153, 279, 28), + (84154, 279, 1), + (84155, 280, 28), + (84156, 280, 1), + (84157, 311, 28), + (84157, 316, 28), + (84158, 311, 1), + (84158, 316, 1), + (84159, 136, 65), + (84159, 164, 65), + (84160, 136, 10), + (84160, 164, 10), + (84163, 226, 21), + (84164, 226, 1), + (84165, 229, 21), + (84165, 230, 21), + (84165, 234, 21), + (84166, 229, 1), + (84166, 230, 1), + (84166, 234, 1), + (84167, 232, 21), + (84168, 232, 1), + (84169, 227, 21), + (84170, 227, 1), + (84171, 228, 21), + (84172, 228, 1), + (84173, 231, 21), + (84173, 233, 21), + (84174, 231, 1), + (84174, 233, 1), + (84175, 475, 21), + (84175, 205, 7), + (84176, 475, 1), + (84176, 205, 1), + (84177, 208, 7), + (84177, 216, 7), + (84177, 225, 7), + (84177, 478, 21), + (84177, 479, 21), + (84177, 483, 21), + (84178, 208, 1), + (84178, 216, 1), + (84178, 225, 1), + (84178, 478, 1), + (84178, 479, 1), + (84178, 483, 1), + (84179, 481, 21), + (84179, 218, 7), + (84180, 481, 1), + (84180, 218, 1), + (84181, 476, 21), + (84181, 206, 7), + (84182, 476, 1), + (84182, 206, 1), + (84183, 477, 21), + (84183, 207, 7), + (84184, 477, 1), + (84184, 207, 1), + (84185, 482, 21), + (84185, 480, 21), + (84185, 219, 7), + (84185, 217, 7), + (84186, 482, 1), + (84186, 480, 1), + (84186, 219, 1), + (84186, 217, 1), + (84188, 1, 100), + (84188, 221, 100), + (85146, 156, 100), + (85477, 93, 1), + (85477, 95, 1), + (85477, 92, 1), + (85477, 97, 1), + (85477, 91, 1), + (85477, 96, 1), + (85477, 90, 1), + (85477, 94, 1), + (85478, 93, 1), + (85478, 95, 5), + (85478, 154, -1), + (85478, 153, -1), + (85478, 92, 5), + (85478, 155, -1), + (85478, 97, 1), + (85478, 91, 5), + (85478, 96, 1), + (85478, 90, 5), + (85478, 94, 5), + (85478, 156, -1), + (85479, 93, 5), + (85479, 95, 1), + (85479, 154, -1), + (85479, 153, -1), + (85479, 92, 5), + (85479, 155, -1), + (85479, 97, 1), + (85479, 91, 5), + (85479, 96, 5), + (85479, 90, 5), + (85479, 94, 1), + (85479, 156, -1), + (85479, 318, 8), + (85480, 93, 5), + (85480, 95, 1), + (85480, 154, -1), + (85480, 153, -1), + (85480, 92, 5), + (85480, 155, -1), + (85480, 97, 1), + (85480, 91, 5), + (85480, 96, 5), + (85480, 90, 5), + (85480, 94, 1), + (85480, 156, -1), + (85481, 93, 1), + (85481, 95, 5), + (85481, 92, 1), + (85481, 97, 5), + (85481, 91, 5), + (85481, 96, 1), + (85481, 90, 5), + (85481, 94, 5), + (85482, 93, 1), + (85482, 95, 5), + (85482, 154, -1), + (85482, 153, -1), + (85482, 92, 5), + (85482, 155, -1), + (85482, 97, 1), + (85482, 91, 5), + (85482, 96, 1), + (85482, 90, 5), + (85482, 94, 5), + (85482, 156, -1), + (85483, 93, 5), + (85483, 95, 1), + (85483, 154, -1), + (85483, 153, -1), + (85483, 92, 5), + (85483, 155, -1), + (85483, 97, 1), + (85483, 91, 5), + (85483, 96, 1), + (85483, 90, 5), + (85483, 94, 5), + (85483, 156, -1), + (85484, 93, 5), + (85484, 95, 1), + (85484, 154, -1), + (85484, 153, -1), + (85484, 92, 5), + (85484, 155, -1), + (85484, 97, 1), + (85484, 91, 5), + (85484, 96, 1), + (85484, 90, 5), + (85484, 94, 5), + (85484, 156, -1), + (85485, 93, 1), + (85485, 95, 5), + (85485, 154, -1), + (85485, 153, -1), + (85485, 92, 5), + (85485, 155, -1), + (85485, 97, 5), + (85485, 91, 5), + (85485, 96, 1), + (85485, 90, 5), + (85485, 94, 1), + (85485, 156, -1), + (85486, 93, 1), + (85486, 95, 5), + (85486, 154, -1), + (85486, 153, -1), + (85486, 92, 5), + (85486, 155, -1), + (85486, 97, 5), + (85486, 91, 5), + (85486, 96, 1), + (85486, 90, 5), + (85486, 94, 1), + (85486, 156, -1), + (85487, 93, 546), + (85487, 95, 468), + (85487, 92, 625), + (85487, 97, 262), + (85487, 91, 625), + (85487, 96, 156), + (85487, 90, 625), + (85487, 94, 625), + (85488, 93, 3), + (85488, 95, 3), + (85488, 92, 3), + (85488, 97, 3), + (85488, 91, 3), + (85488, 96, 1), + (85488, 90, 3), + (85488, 94, 3), + (85489, 93, 3), + (85489, 95, 1), + (85489, 92, 3), + (85489, 97, 3), + (85489, 91, 3), + (85489, 96, 1), + (85489, 90, 3), + (85489, 94, 3), + (85490, 96, 546), + (85490, 94, 156), + (85490, 95, 546), + (85490, 97, 546), + (85490, 91, 546), + (85490, 93, 625), + (85490, 90, 625), + (85490, 92, 625), + (85491, 96, 3), + (85491, 94, 1), + (85491, 95, 3), + (85491, 97, 3), + (85491, 91, 3), + (85491, 93, 3), + (85491, 90, 3), + (85491, 92, 3), + (85492, 97, 546), + (85492, 91, 546), + (85492, 93, 625), + (85492, 90, 625), + (85492, 92, 625), + (85492, 96, 546), + (85492, 94, 156), + (85492, 95, 156), + (85493, 97, 3), + (85493, 91, 3), + (85493, 93, 3), + (85493, 90, 3), + (85493, 92, 3), + (85493, 96, 3), + (85493, 94, 1), + (85493, 95, 1), + (85494, 93, 3), + (85494, 95, 1), + (85494, 92, 3), + (85494, 97, 1), + (85494, 91, 3), + (85494, 96, 3), + (85494, 90, 3), + (85494, 94, 1), + (85495, 93, 125), + (85495, 95, 625), + (85495, 92, 546), + (85495, 97, 125), + (85495, 91, 625), + (85495, 96, 125), + (85495, 90, 625), + (85495, 94, 546), + (85496, 93, 1), + (85496, 95, 3), + (85496, 92, 3), + (85496, 97, 1), + (85496, 91, 3), + (85496, 96, 1), + (85496, 90, 3), + (85496, 94, 3), + (85497, 93, 546), + (85497, 95, 125), + (85497, 92, 546), + (85497, 97, 625), + (85497, 91, 625), + (85497, 96, 125), + (85497, 90, 625), + (85497, 94, 125), + (85498, 93, 3), + (85498, 95, 1), + (85498, 92, 3), + (85498, 97, 3), + (85498, 91, 3), + (85498, 96, 1), + (85498, 90, 3), + (85498, 94, 1), + (85499, 93, 93), + (85499, 95, 546), + (85499, 92, 546), + (85499, 97, 93), + (85499, 91, 625), + (85499, 96, 93), + (85499, 90, 625), + (85499, 94, 93), + (85500, 93, 1), + (85500, 95, 3), + (85500, 92, 3), + (85500, 97, 1), + (85500, 91, 3), + (85500, 96, 1), + (85500, 90, 3), + (85500, 94, 1), + (85501, 93, 1), + (85501, 95, 1), + (85501, 92, 3), + (85501, 97, 3), + (85501, 91, 3), + (85501, 96, 1), + (85501, 90, 3), + (85501, 94, 1), + (85502, 93, 3), + (85502, 95, 1), + (85502, 92, 3), + (85502, 97, 1), + (85502, 91, 3), + (85502, 96, 1), + (85502, 90, 3), + (85502, 94, 3), + (85503, 93, 1), + (85503, 95, 3), + (85503, 92, 3), + (85503, 97, 3), + (85503, 91, 3), + (85503, 96, 3), + (85503, 90, 3), + (85503, 94, 3), + (85504, 93, 3), + (85504, 95, 1), + (85504, 92, 3), + (85504, 97, 3), + (85504, 91, 3), + (85504, 96, 1), + (85504, 90, 3), + (85504, 94, 1), + (85505, 93, 3), + (85505, 95, 1), + (85505, 92, 3), + (85505, 97, 1), + (85505, 91, 3), + (85505, 96, 3), + (85505, 90, 3), + (85505, 94, 3), + (85506, 92, 546), + (85506, 91, 625), + (85506, 97, 546), + (85506, 95, 546), + (85506, 90, 625), + (85506, 96, 156), + (85506, 94, 156), + (85506, 93, 156), + (85507, 92, 3), + (85507, 91, 3), + (85507, 97, 3), + (85507, 95, 3), + (85507, 90, 3), + (85507, 96, 1), + (85507, 94, 1), + (85507, 93, 1), + (85508, 93, 1), + (85508, 95, 3), + (85508, 92, 3), + (85508, 97, 3), + (85508, 91, 3), + (85508, 96, 3), + (85508, 90, 3), + (85508, 94, 3), + (85509, 96, 93), + (85509, 94, 93), + (85509, 93, 93), + (85509, 97, 93), + (85509, 95, 93), + (85509, 90, 546), + (85509, 92, 468), + (85509, 91, 546), + (85510, 96, 1), + (85510, 94, 1), + (85510, 93, 1), + (85510, 97, 1), + (85510, 95, 1), + (85510, 90, 3), + (85510, 92, 3), + (85510, 91, 3), + (85511, 93, 468), + (85511, 95, 93), + (85511, 92, 625), + (85511, 97, 93), + (85511, 91, 546), + (85511, 96, 93), + (85511, 90, 625), + (85511, 94, 93), + (85512, 93, 3), + (85512, 95, 1), + (85512, 92, 3), + (85512, 97, 1), + (85512, 91, 3), + (85512, 96, 1), + (85512, 90, 3), + (85512, 94, 1), + (85513, 93, 1), + (85513, 95, 3), + (85513, 92, 3), + (85513, 97, 3), + (85513, 91, 3), + (85513, 96, 1), + (85513, 90, 3), + (85513, 94, 1), + (85514, 93, 93), + (85514, 95, 93), + (85514, 92, 468), + (85514, 97, 93), + (85514, 91, 546), + (85514, 96, 93), + (85514, 90, 546), + (85514, 94, 93), + (85515, 93, 93), + (85515, 95, 93), + (85515, 92, 468), + (85515, 97, 93), + (85515, 91, 546), + (85515, 96, 93), + (85515, 90, 546), + (85515, 94, 93), + (85516, 93, 3), + (85516, 95, 3), + (85516, 92, 3), + (85516, 97, 1), + (85516, 91, 3), + (85516, 96, 3), + (85516, 90, 3), + (85516, 94, 1), + (85517, 93, 1), + (85517, 95, 1), + (85517, 92, 3), + (85517, 97, 1), + (85517, 91, 3), + (85517, 96, 1), + (85517, 90, 3), + (85517, 94, 3), + (85518, 93, 93), + (85518, 95, 546), + (85518, 92, 93), + (85518, 97, 546), + (85518, 91, 625), + (85518, 96, 93), + (85518, 90, 546), + (85518, 94, 546), + (85519, 93, 1), + (85519, 95, 3), + (85519, 92, 1), + (85519, 97, 3), + (85519, 91, 3), + (85519, 96, 1), + (85519, 90, 3), + (85519, 94, 3), + (85520, 90, 546), + (85520, 91, 625), + (85520, 95, 546), + (85520, 92, 93), + (85520, 97, 93), + (85520, 93, 93), + (85520, 94, 546), + (85520, 96, 93), + (85521, 90, 3), + (85521, 91, 3), + (85521, 95, 3), + (85521, 92, 1), + (85521, 97, 1), + (85521, 93, 1), + (85521, 94, 3), + (85521, 96, 1), + (85522, 93, 156), + (85522, 95, 546), + (85522, 92, 625), + (85522, 97, 546), + (85522, 91, 546), + (85522, 96, 156), + (85522, 90, 625), + (85522, 94, 625), + (85523, 93, 1), + (85523, 95, 3), + (85523, 92, 3), + (85523, 97, 3), + (85523, 91, 3), + (85523, 96, 1), + (85523, 90, 3), + (85523, 94, 3), + (85524, 93, 125), + (85524, 95, 546), + (85524, 92, 625), + (85524, 97, 125), + (85524, 91, 546), + (85524, 96, 125), + (85524, 90, 625), + (85524, 94, 546), + (85525, 93, 1), + (85525, 95, 3), + (85525, 92, 3), + (85525, 97, 1), + (85525, 91, 3), + (85525, 96, 1), + (85525, 90, 3), + (85525, 94, 3), + (85526, 93, 1), + (85526, 95, 1), + (85526, 92, 3), + (85526, 97, 1), + (85526, 91, 3), + (85526, 96, 1), + (85526, 90, 3), + (85526, 94, 3), + (85527, 93, 390), + (85527, 95, 546), + (85527, 92, 546), + (85527, 97, 546), + (85527, 91, 625), + (85527, 96, 156), + (85527, 90, 625), + (85527, 94, 468), + (85528, 93, 3), + (85528, 95, 3), + (85528, 92, 3), + (85528, 97, 3), + (85528, 91, 3), + (85528, 96, 1), + (85528, 90, 3), + (85528, 94, 3), + (85529, 93, 125), + (85529, 95, 468), + (85529, 92, 546), + (85529, 97, 468), + (85529, 91, 625), + (85529, 96, 125), + (85529, 90, 625), + (85529, 94, 390), + (85530, 93, 1), + (85530, 95, 3), + (85530, 92, 3), + (85530, 97, 3), + (85530, 91, 3), + (85530, 96, 1), + (85530, 90, 3), + (85530, 94, 3), + (85531, 93, 1), + (85531, 95, 3), + (85531, 92, 3), + (85531, 97, 3), + (85531, 91, 3), + (85531, 96, 1), + (85531, 90, 3), + (85531, 94, 1), + (85532, 96, 390), + (85532, 94, 156), + (85532, 97, 156), + (85532, 95, 156), + (85532, 92, 156), + (85532, 93, 468), + (85532, 91, 625), + (85532, 90, 546), + (85533, 96, 3), + (85533, 94, 1), + (85533, 97, 1), + (85533, 95, 1), + (85533, 92, 1), + (85533, 93, 3), + (85533, 91, 3), + (85533, 90, 3), + (85534, 93, 656), + (85534, 95, 562), + (85534, 92, 750), + (85534, 97, 562), + (85534, 91, 750), + (85534, 96, 187), + (85534, 90, 750), + (85534, 94, 750), + (85535, 93, 3), + (85535, 95, 3), + (85535, 92, 3), + (85535, 97, 3), + (85535, 91, 3), + (85535, 96, 1), + (85535, 90, 3), + (85535, 94, 3), + (85536, 93, 3), + (85536, 95, 1), + (85536, 92, 3), + (85536, 97, 3), + (85536, 91, 3), + (85536, 96, 1), + (85536, 90, 3), + (85536, 94, 3), + (85537, 93, 750), + (85537, 95, 656), + (85537, 92, 750), + (85537, 97, 656), + (85537, 91, 656), + (85537, 96, 656), + (85537, 90, 750), + (85537, 94, 187), + (85538, 93, 3), + (85538, 95, 3), + (85538, 92, 3), + (85538, 97, 3), + (85538, 91, 3), + (85538, 96, 3), + (85538, 90, 3), + (85538, 94, 1), + (85539, 93, 750), + (85539, 95, 187), + (85539, 92, 750), + (85539, 97, 656), + (85539, 91, 656), + (85539, 96, 656), + (85539, 90, 750), + (85539, 94, 187), + (85540, 93, 3), + (85540, 95, 1), + (85540, 92, 3), + (85540, 97, 3), + (85540, 91, 3), + (85540, 96, 3), + (85540, 90, 3), + (85540, 94, 1), + (85541, 93, 3), + (85541, 95, 1), + (85541, 92, 3), + (85541, 97, 1), + (85541, 91, 3), + (85541, 96, 3), + (85541, 90, 3), + (85541, 94, 1), + (85542, 93, 150), + (85542, 95, 750), + (85542, 92, 656), + (85542, 97, 150), + (85542, 91, 750), + (85542, 96, 150), + (85542, 90, 750), + (85542, 94, 656), + (85543, 93, 1), + (85543, 95, 3), + (85543, 92, 3), + (85543, 97, 1), + (85543, 91, 3), + (85543, 96, 1), + (85543, 90, 3), + (85543, 94, 3), + (85544, 93, 656), + (85544, 95, 150), + (85544, 92, 656), + (85544, 97, 750), + (85544, 91, 750), + (85544, 96, 150), + (85544, 90, 750), + (85544, 94, 150), + (85545, 93, 3), + (85545, 95, 1), + (85545, 92, 3), + (85545, 97, 3), + (85545, 91, 3), + (85545, 96, 1), + (85545, 90, 3), + (85545, 94, 1), + (85546, 93, 112), + (85546, 95, 656), + (85546, 92, 656), + (85546, 97, 112), + (85546, 91, 750), + (85546, 96, 112), + (85546, 90, 750), + (85546, 94, 112), + (85547, 93, 1), + (85547, 95, 3), + (85547, 92, 3), + (85547, 97, 1), + (85547, 91, 3), + (85547, 96, 1), + (85547, 90, 3), + (85547, 94, 1), + (85548, 93, 1), + (85548, 95, 1), + (85548, 92, 3), + (85548, 97, 3), + (85548, 91, 3), + (85548, 96, 1), + (85548, 90, 3), + (85548, 94, 1), + (85549, 93, 3), + (85549, 95, 1), + (85549, 92, 3), + (85549, 97, 1), + (85549, 91, 3), + (85549, 96, 1), + (85549, 90, 3), + (85549, 94, 3), + (85550, 93, 1), + (85550, 95, 3), + (85550, 92, 3), + (85550, 97, 3), + (85550, 91, 3), + (85550, 96, 3), + (85550, 90, 3), + (85550, 94, 3), + (85551, 93, 3), + (85551, 95, 1), + (85551, 92, 3), + (85551, 97, 3), + (85551, 91, 3), + (85551, 96, 1), + (85551, 90, 3), + (85551, 94, 1), + (85552, 93, 3), + (85552, 95, 1), + (85552, 92, 3), + (85552, 97, 1), + (85552, 91, 3), + (85552, 96, 3), + (85552, 90, 3), + (85552, 94, 3), + (85553, 93, 187), + (85553, 95, 656), + (85553, 92, 656), + (85553, 97, 656), + (85553, 91, 750), + (85553, 96, 187), + (85553, 90, 750), + (85553, 94, 187), + (85554, 93, 1), + (85554, 95, 3), + (85554, 92, 3), + (85554, 97, 3), + (85554, 91, 3), + (85554, 96, 1), + (85554, 90, 3), + (85554, 94, 1), + (85555, 93, 1), + (85555, 95, 3), + (85555, 92, 3), + (85555, 97, 3), + (85555, 91, 3), + (85555, 96, 3), + (85555, 90, 3), + (85555, 94, 3), + (85556, 93, 562), + (85556, 95, 112), + (85556, 92, 750), + (85556, 97, 112), + (85556, 91, 656), + (85556, 96, 112), + (85556, 90, 750), + (85556, 94, 112), + (85557, 93, 3), + (85557, 95, 1), + (85557, 92, 3), + (85557, 97, 1), + (85557, 91, 3), + (85557, 96, 1), + (85557, 90, 3), + (85557, 94, 1), + (85558, 93, 112), + (85558, 95, 112), + (85558, 92, 562), + (85558, 97, 112), + (85558, 91, 656), + (85558, 96, 112), + (85558, 90, 656), + (85558, 94, 112), + (85559, 93, 112), + (85559, 95, 656), + (85559, 92, 112), + (85559, 97, 656), + (85559, 91, 750), + (85559, 96, 112), + (85559, 90, 656), + (85559, 94, 656), + (85560, 93, 1), + (85560, 95, 3), + (85560, 92, 1), + (85560, 97, 3), + (85560, 91, 3), + (85560, 96, 1), + (85560, 90, 3), + (85560, 94, 3), + (85561, 93, 112), + (85561, 95, 656), + (85561, 92, 112), + (85561, 97, 112), + (85561, 91, 750), + (85561, 96, 112), + (85561, 90, 656), + (85561, 94, 656), + (85562, 93, 1), + (85562, 95, 3), + (85562, 92, 1), + (85562, 97, 1), + (85562, 91, 3), + (85562, 96, 1), + (85562, 90, 3), + (85562, 94, 3), + (85563, 93, 187), + (85563, 95, 656), + (85563, 92, 750), + (85563, 97, 656), + (85563, 91, 656), + (85563, 96, 187), + (85563, 90, 750), + (85563, 94, 750), + (85564, 93, 1), + (85564, 95, 3), + (85564, 92, 3), + (85564, 97, 3), + (85564, 91, 3), + (85564, 96, 1), + (85564, 90, 3), + (85564, 94, 3), + (85565, 93, 150), + (85565, 95, 656), + (85565, 92, 750), + (85565, 97, 150), + (85565, 91, 656), + (85565, 96, 150), + (85565, 90, 750), + (85565, 94, 656), + (85566, 93, 1), + (85566, 95, 3), + (85566, 92, 3), + (85566, 97, 1), + (85566, 91, 3), + (85566, 96, 1), + (85566, 90, 3), + (85566, 94, 3), + (85567, 93, 1), + (85567, 95, 1), + (85567, 92, 3), + (85567, 97, 1), + (85567, 91, 3), + (85567, 96, 1), + (85567, 90, 3), + (85567, 94, 3), + (85568, 93, 468), + (85568, 95, 656), + (85568, 92, 656), + (85568, 97, 656), + (85568, 91, 750), + (85568, 96, 187), + (85568, 90, 750), + (85568, 94, 562), + (85569, 93, 3), + (85569, 95, 3), + (85569, 92, 3), + (85569, 97, 3), + (85569, 91, 3), + (85569, 96, 1), + (85569, 90, 3), + (85569, 94, 3), + (85570, 93, 150), + (85570, 95, 562), + (85570, 92, 656), + (85570, 97, 562), + (85570, 91, 750), + (85570, 96, 150), + (85570, 90, 750), + (85570, 94, 468), + (85571, 93, 1), + (85571, 95, 3), + (85571, 92, 3), + (85571, 97, 3), + (85571, 91, 3), + (85571, 96, 1), + (85571, 90, 3), + (85571, 94, 3), + (85572, 93, 1), + (85572, 95, 3), + (85572, 92, 3), + (85572, 97, 3), + (85572, 91, 3), + (85572, 96, 1), + (85572, 90, 3), + (85572, 94, 1), + (85573, 93, 218), + (85573, 95, 187), + (85573, 92, 250), + (85573, 97, 187), + (85573, 91, 250), + (85573, 96, 62), + (85573, 90, 250), + (85573, 94, 250), + (85574, 93, 1), + (85574, 95, 1), + (85574, 92, 1), + (85574, 97, 1), + (85574, 91, 1), + (85574, 96, 1), + (85574, 90, 1), + (85574, 94, 1), + (85575, 93, 1), + (85575, 95, 1), + (85575, 92, 1), + (85575, 97, 1), + (85575, 91, 1), + (85575, 96, 1), + (85575, 90, 1), + (85575, 94, 1), + (85576, 93, 250), + (85576, 95, 218), + (85576, 92, 250), + (85576, 97, 218), + (85576, 91, 218), + (85576, 96, 218), + (85576, 90, 250), + (85576, 94, 62), + (85577, 93, 1), + (85577, 95, 1), + (85577, 92, 1), + (85577, 97, 1), + (85577, 91, 1), + (85577, 96, 1), + (85577, 90, 1), + (85577, 94, 1), + (85578, 96, 218), + (85578, 94, 62), + (85578, 95, 62), + (85578, 97, 218), + (85578, 93, 250), + (85578, 91, 218), + (85578, 92, 250), + (85578, 90, 250), + (85579, 96, 1), + (85579, 94, 1), + (85579, 95, 1), + (85579, 97, 1), + (85579, 93, 1), + (85579, 91, 1), + (85579, 92, 1), + (85579, 90, 1), + (85580, 93, 1), + (85580, 95, 1), + (85580, 92, 1), + (85580, 97, 1), + (85580, 91, 1), + (85580, 96, 1), + (85580, 90, 1), + (85580, 94, 1), + (85581, 94, 218), + (85581, 92, 218), + (85581, 91, 250), + (85581, 95, 250), + (85581, 90, 250), + (85581, 96, 50), + (85581, 93, 50), + (85581, 97, 50), + (85582, 94, 1), + (85582, 92, 1), + (85582, 91, 1), + (85582, 95, 1), + (85582, 90, 1), + (85582, 96, 1), + (85582, 93, 1), + (85582, 97, 1), + (85583, 93, 218), + (85583, 95, 50), + (85583, 92, 218), + (85583, 97, 250), + (85583, 91, 250), + (85583, 96, 50), + (85583, 90, 250), + (85583, 94, 50), + (85584, 93, 1), + (85584, 95, 1), + (85584, 92, 1), + (85584, 97, 1), + (85584, 91, 1), + (85584, 96, 1), + (85584, 90, 1), + (85584, 94, 1), + (85585, 92, 218), + (85585, 91, 250), + (85585, 95, 218), + (85585, 90, 250), + (85585, 96, 37), + (85585, 94, 37), + (85585, 93, 37), + (85585, 97, 37), + (85586, 92, 1), + (85586, 91, 1), + (85586, 95, 1), + (85586, 90, 1), + (85586, 96, 1), + (85586, 94, 1), + (85586, 93, 1), + (85586, 97, 1), + (85587, 93, 1), + (85587, 95, 1), + (85587, 92, 1), + (85587, 97, 1), + (85587, 91, 1), + (85587, 96, 1), + (85587, 90, 1), + (85587, 94, 1), + (85588, 93, 1), + (85588, 95, 1), + (85588, 92, 1), + (85588, 97, 1), + (85588, 91, 1), + (85588, 96, 1), + (85588, 90, 1), + (85588, 94, 1), + (85589, 93, 1), + (85589, 95, 1), + (85589, 92, 1), + (85589, 97, 1), + (85589, 91, 1), + (85589, 96, 1), + (85589, 90, 1), + (85589, 94, 1), + (85590, 93, 1), + (85590, 95, 1), + (85590, 92, 1), + (85590, 97, 1), + (85590, 91, 1), + (85590, 96, 1), + (85590, 90, 1), + (85590, 94, 1), + (85591, 93, 1), + (85591, 95, 1), + (85591, 92, 1), + (85591, 97, 1), + (85591, 91, 1), + (85591, 96, 1), + (85591, 90, 1), + (85591, 94, 1), + (85592, 93, 62), + (85592, 95, 218), + (85592, 92, 218), + (85592, 97, 218), + (85592, 91, 250), + (85592, 96, 62), + (85592, 90, 250), + (85592, 94, 62), + (85593, 93, 1), + (85593, 95, 1), + (85593, 92, 1), + (85593, 97, 1), + (85593, 91, 1), + (85593, 96, 1), + (85593, 90, 1), + (85593, 94, 1), + (85594, 93, 1), + (85594, 95, 1), + (85594, 92, 1), + (85594, 97, 1), + (85594, 91, 1), + (85594, 96, 1), + (85594, 90, 1), + (85594, 94, 1), + (85595, 90, 250), + (85595, 92, 250), + (85595, 91, 218), + (85595, 96, 37), + (85595, 94, 37), + (85595, 93, 187), + (85595, 97, 37), + (85595, 95, 37), + (85596, 90, 1), + (85596, 92, 1), + (85596, 91, 1), + (85596, 96, 1), + (85596, 94, 1), + (85596, 93, 1), + (85596, 97, 1), + (85596, 95, 1), + (85597, 93, 37), + (85597, 95, 37), + (85597, 92, 187), + (85597, 97, 37), + (85597, 91, 218), + (85597, 96, 37), + (85597, 90, 218), + (85597, 94, 37), + (85598, 93, 1), + (85598, 95, 1), + (85598, 92, 1), + (85598, 97, 1), + (85598, 91, 1), + (85598, 96, 1), + (85598, 90, 1), + (85598, 94, 1), + (85599, 93, 37), + (85599, 95, 218), + (85599, 92, 37), + (85599, 97, 218), + (85599, 91, 250), + (85599, 96, 37), + (85599, 90, 218), + (85599, 94, 218), + (85600, 93, 1), + (85600, 95, 1), + (85600, 92, 1), + (85600, 97, 1), + (85600, 91, 1), + (85600, 96, 1), + (85600, 90, 1), + (85600, 94, 1), + (85601, 90, 218), + (85601, 91, 250), + (85601, 95, 218), + (85601, 92, 37), + (85601, 97, 37), + (85601, 93, 37), + (85601, 94, 218), + (85601, 96, 37), + (85602, 90, 1), + (85602, 91, 1), + (85602, 95, 1), + (85602, 92, 1), + (85602, 97, 1), + (85602, 93, 1), + (85602, 94, 1), + (85602, 96, 1), + (85603, 93, 62), + (85603, 95, 218), + (85603, 95, 218), + (85603, 92, 250), + (85603, 91, 218), + (85603, 96, 62), + (85603, 90, 250), + (85603, 94, 250), + (85604, 93, 1), + (85604, 95, 1), + (85604, 95, 1), + (85604, 92, 1), + (85604, 91, 1), + (85604, 96, 1), + (85604, 90, 1), + (85604, 94, 1), + (85605, 93, 50), + (85605, 95, 218), + (85605, 92, 250), + (85605, 97, 50), + (85605, 91, 218), + (85605, 96, 50), + (85605, 90, 250), + (85605, 94, 218), + (85606, 93, 1), + (85606, 95, 1), + (85606, 92, 1), + (85606, 97, 1), + (85606, 91, 1), + (85606, 96, 1), + (85606, 90, 1), + (85606, 94, 1), + (85607, 93, 1), + (85607, 95, 1), + (85607, 92, 1), + (85607, 97, 1), + (85607, 91, 1), + (85607, 96, 1), + (85607, 90, 1), + (85607, 94, 1), + (85608, 93, 156), + (85608, 95, 218), + (85608, 92, 218), + (85608, 97, 218), + (85608, 91, 250), + (85608, 96, 62), + (85608, 90, 250), + (85608, 94, 187), + (85609, 93, 1), + (85609, 95, 1), + (85609, 92, 1), + (85609, 97, 1), + (85609, 91, 1), + (85609, 96, 1), + (85609, 90, 1), + (85609, 94, 1), + (85610, 94, 156), + (85610, 91, 250), + (85610, 97, 187), + (85610, 92, 218), + (85610, 90, 250), + (85610, 96, 50), + (85610, 93, 50), + (85610, 95, 187), + (85611, 94, 1), + (85611, 91, 1), + (85611, 97, 1), + (85611, 92, 1), + (85611, 90, 1), + (85611, 96, 1), + (85611, 93, 1), + (85611, 95, 1), + (85612, 93, 1), + (85612, 95, 1), + (85612, 92, 1), + (85612, 97, 1), + (85612, 91, 1), + (85612, 96, 1), + (85612, 90, 1), + (85612, 94, 1), + (85613, 93, 328), + (85613, 95, 281), + (85613, 92, 375), + (85613, 97, 281), + (85613, 91, 375), + (85613, 96, 93), + (85613, 90, 375), + (85613, 94, 375), + (85614, 93, 1), + (85614, 95, 1), + (85614, 92, 1), + (85614, 97, 1), + (85614, 91, 1), + (85614, 96, 1), + (85614, 90, 1), + (85614, 94, 1), + (85615, 93, 1), + (85615, 95, 1), + (85615, 92, 1), + (85615, 97, 1), + (85615, 91, 1), + (85615, 96, 1), + (85615, 90, 1), + (85615, 94, 1), + (85616, 95, 328), + (85616, 97, 328), + (85616, 90, 375), + (85616, 92, 375), + (85616, 91, 328), + (85616, 93, 375), + (85616, 96, 328), + (85616, 94, 93), + (85617, 95, 1), + (85617, 97, 1), + (85617, 90, 1), + (85617, 92, 1), + (85617, 91, 1), + (85617, 93, 1), + (85617, 96, 1), + (85617, 94, 1), + (85618, 97, 328), + (85618, 90, 375), + (85618, 92, 375), + (85618, 91, 328), + (85618, 93, 375), + (85618, 96, 328), + (85618, 94, 93), + (85618, 95, 93), + (85619, 97, 1), + (85619, 90, 1), + (85619, 92, 1), + (85619, 91, 1), + (85619, 93, 1), + (85619, 96, 1), + (85619, 94, 1), + (85619, 95, 1), + (85620, 93, 1), + (85620, 95, 1), + (85620, 92, 1), + (85620, 97, 1), + (85620, 91, 1), + (85620, 96, 1), + (85620, 90, 1), + (85620, 94, 1), + (85621, 94, 328), + (85621, 95, 375), + (85621, 91, 375), + (85621, 92, 328), + (85621, 90, 375), + (85621, 96, 75), + (85621, 93, 75), + (85621, 97, 75), + (85622, 94, 1), + (85622, 95, 1), + (85622, 91, 1), + (85622, 92, 1), + (85622, 90, 1), + (85622, 96, 1), + (85622, 93, 1), + (85622, 97, 1), + (85623, 93, 328), + (85623, 95, 75), + (85623, 92, 328), + (85623, 97, 375), + (85623, 91, 375), + (85623, 96, 75), + (85623, 90, 375), + (85623, 94, 75), + (85624, 93, 1), + (85624, 95, 1), + (85624, 92, 1), + (85624, 97, 1), + (85624, 91, 1), + (85624, 96, 1), + (85624, 90, 1), + (85624, 94, 1), + (85625, 95, 328), + (85625, 91, 375), + (85625, 92, 328), + (85625, 90, 375), + (85625, 96, 56), + (85625, 94, 56), + (85625, 93, 56), + (85625, 97, 56), + (85626, 95, 1), + (85626, 91, 1), + (85626, 92, 1), + (85626, 90, 1), + (85626, 96, 1), + (85626, 94, 1), + (85626, 93, 1), + (85626, 97, 1), + (85627, 93, 1), + (85627, 95, 1), + (85627, 92, 1), + (85627, 97, 1), + (85627, 91, 1), + (85627, 96, 1), + (85627, 90, 1), + (85627, 94, 1), + (85628, 93, 1), + (85628, 95, 1), + (85628, 92, 1), + (85628, 97, 1), + (85628, 91, 1), + (85628, 96, 1), + (85628, 90, 1), + (85628, 94, 1), + (85629, 93, 1), + (85629, 95, 1), + (85629, 92, 1), + (85629, 97, 1), + (85629, 91, 1), + (85629, 96, 1), + (85629, 90, 1), + (85629, 94, 1), + (85630, 93, 1), + (85630, 95, 1), + (85630, 92, 1), + (85630, 97, 1), + (85630, 91, 1), + (85630, 96, 1), + (85630, 90, 1), + (85630, 94, 1), + (85631, 93, 1), + (85631, 95, 1), + (85631, 92, 1), + (85631, 97, 1), + (85631, 91, 1), + (85631, 96, 1), + (85631, 90, 1), + (85631, 94, 1), + (85632, 93, 93), + (85632, 95, 328), + (85632, 92, 328), + (85632, 97, 328), + (85632, 91, 375), + (85632, 96, 93), + (85632, 90, 375), + (85632, 94, 93), + (85633, 93, 1), + (85633, 95, 1), + (85633, 92, 1), + (85633, 97, 1), + (85633, 91, 1), + (85633, 96, 1), + (85633, 90, 1), + (85633, 94, 1), + (85634, 93, 1), + (85634, 95, 1), + (85634, 92, 1), + (85634, 97, 1), + (85634, 91, 1), + (85634, 96, 1), + (85634, 90, 1), + (85634, 94, 1), + (85635, 93, 56), + (85635, 95, 56), + (85635, 92, 281), + (85635, 97, 56), + (85635, 91, 328), + (85635, 96, 56), + (85635, 90, 328), + (85635, 94, 56), + (85636, 93, 1), + (85636, 95, 1), + (85636, 92, 1), + (85636, 97, 1), + (85636, 91, 1), + (85636, 96, 1), + (85636, 90, 1), + (85636, 94, 1), + (85637, 91, 328), + (85637, 92, 375), + (85637, 90, 375), + (85637, 96, 56), + (85637, 94, 56), + (85637, 93, 281), + (85637, 97, 56), + (85637, 95, 56), + (85638, 91, 1), + (85638, 92, 1), + (85638, 90, 1), + (85638, 96, 1), + (85638, 94, 1), + (85638, 93, 1), + (85638, 97, 1), + (85638, 95, 1), + (85639, 93, 1), + (85639, 95, 1), + (85639, 92, 1), + (85639, 97, 1), + (85639, 91, 1), + (85639, 96, 1), + (85639, 90, 1), + (85639, 94, 1), + (85640, 93, 56), + (85640, 95, 56), + (85640, 92, 281), + (85640, 97, 56), + (85640, 91, 328), + (85640, 96, 56), + (85640, 90, 328), + (85640, 94, 56), + (85641, 93, 1), + (85641, 95, 1), + (85641, 92, 1), + (85641, 97, 1), + (85641, 91, 1), + (85641, 96, 1), + (85641, 90, 1), + (85641, 94, 1), + (85642, 93, 56), + (85642, 95, 328), + (85642, 92, 56), + (85642, 97, 328), + (85642, 91, 375), + (85642, 96, 56), + (85642, 90, 328), + (85642, 94, 328), + (85643, 93, 1), + (85643, 95, 1), + (85643, 92, 1), + (85643, 97, 1), + (85643, 91, 1), + (85643, 96, 1), + (85643, 90, 1), + (85643, 94, 1), + (85644, 90, 328), + (85644, 91, 375), + (85644, 95, 328), + (85644, 92, 56), + (85644, 97, 56), + (85644, 93, 56), + (85644, 94, 328), + (85644, 96, 56), + (85645, 90, 1), + (85645, 91, 1), + (85645, 95, 1), + (85645, 92, 1), + (85645, 97, 1), + (85645, 93, 1), + (85645, 94, 1), + (85645, 96, 1), + (85646, 93, 93), + (85646, 95, 328), + (85646, 92, 375), + (85646, 97, 328), + (85646, 91, 328), + (85646, 96, 93), + (85646, 90, 375), + (85646, 94, 375), + (85647, 93, 1), + (85647, 95, 1), + (85647, 92, 1), + (85647, 97, 1), + (85647, 91, 1), + (85647, 96, 1), + (85647, 90, 1), + (85647, 94, 1), + (85648, 93, 75), + (85648, 95, 328), + (85648, 92, 375), + (85648, 97, 75), + (85648, 91, 328), + (85648, 96, 75), + (85648, 90, 375), + (85648, 94, 328), + (85649, 93, 1), + (85649, 95, 1), + (85649, 92, 1), + (85649, 97, 1), + (85649, 91, 1), + (85649, 96, 1), + (85649, 90, 1), + (85649, 94, 1), + (85650, 93, 1), + (85650, 95, 1), + (85650, 92, 1), + (85650, 97, 1), + (85650, 91, 1), + (85650, 96, 1), + (85650, 90, 1), + (85650, 94, 1), + (85651, 93, 234), + (85651, 95, 328), + (85651, 92, 328), + (85651, 97, 328), + (85651, 91, 375), + (85651, 96, 93), + (85651, 90, 375), + (85651, 94, 281), + (85652, 93, 1), + (85652, 95, 1), + (85652, 92, 1), + (85652, 97, 1), + (85652, 91, 1), + (85652, 96, 1), + (85652, 90, 1), + (85652, 94, 1), + (85653, 94, 234), + (85653, 97, 281), + (85653, 91, 375), + (85653, 92, 328), + (85653, 90, 375), + (85653, 96, 75), + (85653, 93, 75), + (85653, 95, 281), + (85654, 94, 1), + (85654, 97, 1), + (85654, 91, 1), + (85654, 92, 1), + (85654, 90, 1), + (85654, 96, 1), + (85654, 93, 1), + (85654, 95, 1), + (85655, 93, 1), + (85655, 95, 1), + (85655, 92, 1), + (85655, 97, 1), + (85655, 91, 1), + (85655, 96, 1), + (85655, 90, 1), + (85655, 94, 1), + (85656, 96, 234), + (85656, 94, 93), + (85656, 97, 93), + (85656, 95, 93), + (85656, 92, 93), + (85656, 90, 328), + (85656, 91, 375), + (85656, 93, 281), + (85657, 96, 1), + (85657, 94, 1), + (85657, 97, 1), + (85657, 95, 1), + (85657, 92, 1), + (85657, 90, 1), + (85657, 91, 1), + (85657, 93, 1), + (85658, 93, 875), + (85658, 95, 750), + (85658, 92, 1000), + (85658, 97, 750), + (85658, 91, 1000), + (85658, 96, 250), + (85658, 90, 1000), + (85658, 94, 1000), + (85659, 93, 5), + (85659, 95, 5), + (85659, 92, 5), + (85659, 97, 5), + (85659, 91, 5), + (85659, 96, 1), + (85659, 90, 5), + (85659, 94, 5), + (85660, 93, 875), + (85660, 95, 750), + (85660, 92, 1000), + (85660, 97, 750), + (85660, 91, 1000), + (85660, 96, 250), + (85660, 90, 1000), + (85660, 94, 1000), + (85661, 93, 5), + (85661, 95, 5), + (85661, 92, 5), + (85661, 97, 5), + (85661, 91, 5), + (85661, 96, 1), + (85661, 90, 5), + (85661, 94, 5), + (85662, 93, 5), + (85662, 95, 1), + (85662, 92, 5), + (85662, 97, 5), + (85662, 91, 5), + (85662, 96, 1), + (85662, 90, 5), + (85662, 94, 5), + (85663, 93, 5), + (85663, 95, 1), + (85663, 92, 5), + (85663, 97, 5), + (85663, 91, 5), + (85663, 96, 1), + (85663, 90, 5), + (85663, 94, 5), + (85664, 93, 1000), + (85664, 95, 875), + (85664, 92, 1000), + (85664, 97, 875), + (85664, 91, 875), + (85664, 96, 875), + (85664, 90, 1000), + (85664, 94, 250), + (85665, 93, 5), + (85665, 95, 5), + (85665, 92, 5), + (85665, 97, 5), + (85665, 91, 5), + (85665, 96, 5), + (85665, 90, 5), + (85665, 94, 1), + (85666, 97, 875), + (85666, 91, 875), + (85666, 90, 1000), + (85666, 92, 1000), + (85666, 93, 1000), + (85666, 96, 875), + (85666, 94, 250), + (85666, 95, 250), + (85667, 97, 5), + (85667, 91, 5), + (85667, 90, 5), + (85667, 92, 5), + (85667, 93, 5), + (85667, 96, 5), + (85667, 94, 1), + (85667, 95, 1), + (85668, 93, 5), + (85668, 95, 1), + (85668, 92, 5), + (85668, 97, 1), + (85668, 91, 5), + (85668, 96, 5), + (85668, 90, 5), + (85668, 94, 1), + (85669, 93, 200), + (85669, 95, 1000), + (85669, 92, 875), + (85669, 97, 200), + (85669, 91, 1000), + (85669, 96, 200), + (85669, 90, 1000), + (85669, 94, 875), + (85670, 93, 1), + (85670, 95, 5), + (85670, 92, 5), + (85670, 97, 1), + (85670, 91, 5), + (85670, 96, 1), + (85670, 90, 5), + (85670, 94, 5), + (85671, 93, 875), + (85671, 95, 200), + (85671, 92, 875), + (85671, 97, 1000), + (85671, 91, 1000), + (85671, 96, 200), + (85671, 90, 1000), + (85671, 94, 200), + (85672, 93, 5), + (85672, 95, 1), + (85672, 92, 5), + (85672, 97, 5), + (85672, 91, 5), + (85672, 96, 1), + (85672, 90, 5), + (85672, 94, 1), + (85673, 95, 875), + (85673, 91, 1000), + (85673, 92, 875), + (85673, 90, 1000), + (85673, 96, 150), + (85673, 94, 150), + (85673, 93, 150), + (85673, 97, 150), + (85674, 95, 5), + (85674, 91, 5), + (85674, 92, 5), + (85674, 90, 5), + (85674, 96, 1), + (85674, 94, 1), + (85674, 93, 1), + (85674, 97, 1), + (85675, 93, 1), + (85675, 95, 1), + (85675, 92, 5), + (85675, 97, 5), + (85675, 91, 5), + (85675, 96, 1), + (85675, 90, 5), + (85675, 94, 1), + (85676, 93, 5), + (85676, 95, 1), + (85676, 92, 5), + (85676, 97, 1), + (85676, 91, 5), + (85676, 96, 1), + (85676, 90, 5), + (85676, 94, 5), + (85677, 93, 1), + (85677, 95, 5), + (85677, 92, 5), + (85677, 97, 5), + (85677, 91, 5), + (85677, 96, 5), + (85677, 90, 5), + (85677, 94, 5), + (85678, 93, 5), + (85678, 95, 1), + (85678, 92, 5), + (85678, 97, 5), + (85678, 91, 5), + (85678, 96, 1), + (85678, 90, 5), + (85678, 94, 1), + (85679, 93, 5), + (85679, 95, 1), + (85679, 92, 5), + (85679, 97, 1), + (85679, 91, 5), + (85679, 96, 5), + (85679, 90, 5), + (85679, 94, 5), + (85680, 93, 250), + (85680, 95, 875), + (85680, 92, 875), + (85680, 97, 875), + (85680, 91, 1000), + (85680, 96, 250), + (85680, 90, 1000), + (85680, 94, 250), + (85681, 93, 1), + (85681, 95, 5), + (85681, 92, 5), + (85681, 97, 5), + (85681, 91, 5), + (85681, 96, 1), + (85681, 90, 5), + (85681, 94, 1), + (85682, 93, 1), + (85682, 95, 5), + (85682, 92, 5), + (85682, 97, 5), + (85682, 91, 5), + (85682, 96, 5), + (85682, 90, 5), + (85682, 94, 5), + (85683, 90, 875), + (85683, 92, 750), + (85683, 91, 875), + (85683, 96, 150), + (85683, 94, 150), + (85683, 93, 150), + (85683, 97, 150), + (85683, 95, 150), + (85684, 90, 5), + (85684, 92, 5), + (85684, 91, 5), + (85684, 96, 1), + (85684, 94, 1), + (85684, 93, 1), + (85684, 97, 1), + (85684, 95, 1), + (85685, 90, 1000), + (85685, 92, 1000), + (85685, 91, 875), + (85685, 96, 150), + (85685, 94, 150), + (85685, 93, 750), + (85685, 97, 150), + (85685, 95, 150), + (85686, 90, 5), + (85686, 92, 5), + (85686, 91, 5), + (85686, 96, 1), + (85686, 94, 1), + (85686, 93, 5), + (85686, 97, 1), + (85686, 95, 1), + (85687, 93, 1), + (85687, 95, 5), + (85687, 92, 5), + (85687, 97, 5), + (85687, 91, 5), + (85687, 96, 1), + (85687, 90, 5), + (85687, 94, 1), + (85688, 93, 150), + (85688, 95, 150), + (85688, 92, 750), + (85688, 97, 150), + (85688, 91, 875), + (85688, 96, 150), + (85688, 90, 875), + (85688, 94, 150), + (85689, 93, 150), + (85689, 95, 150), + (85689, 92, 750), + (85689, 97, 150), + (85689, 91, 875), + (85689, 96, 150), + (85689, 90, 875), + (85689, 94, 150), + (85690, 93, 150), + (85690, 95, 875), + (85690, 92, 150), + (85690, 97, 150), + (85690, 91, 1000), + (85690, 96, 150), + (85690, 90, 875), + (85690, 94, 875), + (85691, 93, 5), + (85691, 95, 5), + (85691, 92, 5), + (85691, 97, 1), + (85691, 91, 5), + (85691, 96, 5), + (85691, 90, 5), + (85691, 94, 1), + (85692, 93, 5), + (85692, 95, 5), + (85692, 92, 5), + (85692, 97, 1), + (85692, 91, 5), + (85692, 96, 5), + (85692, 90, 5), + (85692, 94, 1), + (85693, 93, 1), + (85693, 95, 1), + (85693, 92, 5), + (85693, 97, 1), + (85693, 91, 5), + (85693, 96, 1), + (85693, 90, 5), + (85693, 94, 5), + (85694, 93, 150), + (85694, 95, 875), + (85694, 92, 150), + (85694, 97, 875), + (85694, 91, 1000), + (85694, 96, 150), + (85694, 90, 875), + (85694, 94, 875), + (85695, 93, 1), + (85695, 95, 5), + (85695, 92, 1), + (85695, 97, 5), + (85695, 91, 5), + (85695, 96, 1), + (85695, 90, 5), + (85695, 94, 5), + (85696, 91, 1000), + (85696, 95, 875), + (85696, 90, 875), + (85696, 92, 150), + (85696, 97, 150), + (85696, 93, 150), + (85696, 94, 875), + (85696, 96, 150), + (85697, 91, 5), + (85697, 95, 5), + (85697, 90, 5), + (85697, 92, 1), + (85697, 97, 1), + (85697, 93, 1), + (85697, 94, 5), + (85697, 96, 1), + (85698, 93, 250), + (85698, 95, 875), + (85698, 92, 1000), + (85698, 97, 875), + (85698, 91, 875), + (85698, 96, 250), + (85698, 90, 1000), + (85698, 94, 1000), + (85699, 93, 1), + (85699, 95, 5), + (85699, 92, 5), + (85699, 97, 5), + (85699, 91, 5), + (85699, 96, 1), + (85699, 90, 5), + (85699, 94, 5), + (85700, 93, 200), + (85700, 95, 875), + (85700, 92, 1000), + (85700, 97, 200), + (85700, 91, 875), + (85700, 96, 200), + (85700, 90, 1000), + (85700, 94, 875), + (85701, 93, 1), + (85701, 95, 5), + (85701, 92, 5), + (85701, 97, 1), + (85701, 91, 5), + (85701, 96, 1), + (85701, 90, 5), + (85701, 94, 5), + (85702, 93, 1), + (85702, 95, 1), + (85702, 92, 5), + (85702, 97, 1), + (85702, 91, 5), + (85702, 96, 1), + (85702, 90, 5), + (85702, 94, 5), + (85703, 93, 625), + (85703, 95, 875), + (85703, 92, 875), + (85703, 97, 875), + (85703, 91, 1000), + (85703, 96, 250), + (85703, 90, 1000), + (85703, 94, 750), + (85704, 93, 5), + (85704, 95, 5), + (85704, 92, 5), + (85704, 97, 5), + (85704, 91, 5), + (85704, 96, 1), + (85704, 90, 5), + (85704, 94, 5), + (85705, 93, 625), + (85705, 95, 875), + (85705, 92, 875), + (85705, 97, 875), + (85705, 91, 1000), + (85705, 96, 250), + (85705, 90, 1000), + (85705, 94, 750), + (85706, 93, 5), + (85706, 95, 5), + (85706, 92, 5), + (85706, 97, 5), + (85706, 91, 5), + (85706, 96, 1), + (85706, 90, 5), + (85706, 94, 5), + (85707, 93, 200), + (85707, 95, 750), + (85707, 92, 875), + (85707, 97, 750), + (85707, 91, 1000), + (85707, 96, 200), + (85707, 90, 1000), + (85707, 94, 625), + (85708, 93, 1), + (85708, 95, 5), + (85708, 92, 5), + (85708, 97, 5), + (85708, 91, 5), + (85708, 96, 1), + (85708, 90, 5), + (85708, 94, 5), + (85709, 94, 625), + (85709, 92, 875), + (85709, 91, 1000), + (85709, 97, 750), + (85709, 90, 1000), + (85709, 96, 200), + (85709, 93, 200), + (85709, 95, 750), + (85710, 94, 5), + (85710, 92, 5), + (85710, 91, 5), + (85710, 97, 5), + (85710, 90, 5), + (85710, 96, 1), + (85710, 93, 1), + (85710, 95, 5), + (85711, 93, 1), + (85711, 95, 5), + (85711, 92, 5), + (85711, 97, 5), + (85711, 91, 5), + (85711, 96, 1), + (85711, 90, 5), + (85711, 94, 1), + (85712, 93, 1), + (85712, 95, 5), + (85712, 92, 5), + (85712, 97, 5), + (85712, 91, 5), + (85712, 96, 1), + (85712, 90, 5), + (85712, 94, 1), + (85713, 96, 625), + (85713, 94, 250), + (85713, 97, 250), + (85713, 95, 250), + (85713, 92, 250), + (85713, 93, 750), + (85713, 91, 1000), + (85713, 90, 875), + (85714, 96, 5), + (85714, 94, 1), + (85714, 97, 1), + (85714, 95, 1), + (85714, 92, 1), + (85714, 93, 5), + (85714, 91, 5), + (85714, 90, 5), + (85715, 93, 1), + (85715, 95, 1), + (85715, 92, 1), + (85715, 97, 1), + (85715, 91, 1), + (85715, 96, 1), + (85715, 90, 1), + (85715, 94, 1), + (85716, 93, 1), + (85716, 95, 5), + (85716, 92, 5), + (85716, 97, 5), + (85716, 91, 5), + (85716, 96, 5), + (85716, 90, 5), + (85716, 94, 5), + (85717, 93, 218), + (85717, 95, 187), + (85717, 92, 250), + (85717, 97, 187), + (85717, 91, 250), + (85717, 96, 62), + (85717, 90, 250), + (85717, 94, 250), + (85718, 93, 1), + (85718, 95, 1), + (85718, 92, 1), + (85718, 97, 1), + (85718, 91, 1), + (85718, 96, 1), + (85718, 90, 1), + (85718, 94, 1), + (85719, 93, 1), + (85719, 95, 1), + (85719, 92, 1), + (85719, 97, 1), + (85719, 91, 1), + (85719, 96, 1), + (85719, 90, 1), + (85719, 94, 1), + (85720, 95, 218), + (85720, 97, 218), + (85720, 90, 250), + (85720, 92, 250), + (85720, 91, 218), + (85720, 93, 250), + (85720, 96, 218), + (85720, 94, 62), + (85721, 95, 1), + (85721, 97, 1), + (85721, 90, 1), + (85721, 92, 1), + (85721, 91, 1), + (85721, 93, 1), + (85721, 96, 1), + (85721, 94, 1), + (85722, 96, 218), + (85722, 94, 62), + (85722, 95, 62), + (85722, 97, 218), + (85722, 90, 250), + (85722, 92, 250), + (85722, 91, 218), + (85722, 93, 250), + (85723, 96, 1), + (85723, 94, 1), + (85723, 95, 1), + (85723, 97, 1), + (85723, 90, 1), + (85723, 92, 1), + (85723, 91, 1), + (85723, 93, 1), + (85724, 93, 1), + (85724, 95, 1), + (85724, 92, 1), + (85724, 97, 1), + (85724, 91, 1), + (85724, 96, 1), + (85724, 90, 1), + (85724, 94, 1), + (85725, 93, 50), + (85725, 95, 250), + (85725, 92, 218), + (85725, 97, 50), + (85725, 91, 250), + (85725, 96, 50), + (85725, 90, 250), + (85725, 94, 218), + (85726, 93, 1), + (85726, 95, 1), + (85726, 92, 1), + (85726, 97, 1), + (85726, 91, 1), + (85726, 96, 1), + (85726, 90, 1), + (85726, 94, 1), + (85727, 93, 218), + (85727, 95, 50), + (85727, 92, 218), + (85727, 97, 250), + (85727, 91, 250), + (85727, 96, 50), + (85727, 90, 250), + (85727, 94, 50), + (85728, 93, 1), + (85728, 95, 1), + (85728, 92, 1), + (85728, 97, 1), + (85728, 91, 1), + (85728, 96, 1), + (85728, 90, 1), + (85728, 94, 1), + (85729, 92, 218), + (85729, 90, 250), + (85729, 91, 250), + (85729, 95, 218), + (85729, 96, 37), + (85729, 94, 37), + (85729, 93, 37), + (85729, 97, 37), + (85730, 92, 1), + (85730, 90, 1), + (85730, 91, 1), + (85730, 95, 1), + (85730, 96, 1), + (85730, 94, 1), + (85730, 93, 1), + (85730, 97, 1), + (85731, 93, 1), + (85731, 95, 1), + (85731, 92, 1), + (85731, 97, 1), + (85731, 91, 1), + (85731, 96, 1), + (85731, 90, 1), + (85731, 94, 1), + (85732, 93, 1), + (85732, 95, 1), + (85732, 92, 1), + (85732, 97, 1), + (85732, 91, 1), + (85732, 96, 1), + (85732, 90, 1), + (85732, 94, 1), + (85733, 93, 1), + (85733, 95, 1), + (85733, 92, 1), + (85733, 97, 1), + (85733, 91, 1), + (85733, 96, 1), + (85733, 90, 1), + (85733, 94, 1), + (85734, 93, 1), + (85734, 95, 1), + (85734, 92, 1), + (85734, 97, 1), + (85734, 91, 1), + (85734, 96, 1), + (85734, 90, 1), + (85734, 94, 1), + (85735, 93, 1), + (85735, 95, 1), + (85735, 92, 1), + (85735, 97, 1), + (85735, 91, 1), + (85735, 96, 1), + (85735, 90, 1), + (85735, 94, 1), + (85736, 93, 62), + (85736, 95, 218), + (85736, 92, 218), + (85736, 97, 218), + (85736, 91, 250), + (85736, 96, 62), + (85736, 90, 250), + (85736, 94, 62), + (85737, 93, 1), + (85737, 95, 1), + (85737, 92, 1), + (85737, 97, 1), + (85737, 91, 1), + (85737, 96, 1), + (85737, 90, 1), + (85737, 94, 1), + (85738, 93, 1), + (85738, 95, 1), + (85738, 92, 1), + (85738, 97, 1), + (85738, 91, 1), + (85738, 96, 1), + (85738, 90, 1), + (85738, 94, 1), + (85739, 90, 218), + (85739, 91, 218), + (85739, 92, 187), + (85739, 96, 37), + (85739, 94, 37), + (85739, 93, 37), + (85739, 97, 37), + (85739, 95, 37), + (85740, 90, 1), + (85740, 91, 1), + (85740, 92, 1), + (85740, 96, 1), + (85740, 94, 1), + (85740, 93, 1), + (85740, 97, 1), + (85740, 95, 1), + (85741, 93, 187), + (85741, 95, 37), + (85741, 92, 250), + (85741, 97, 37), + (85741, 91, 218), + (85741, 96, 37), + (85741, 90, 250), + (85741, 94, 37), + (85742, 93, 1), + (85742, 95, 1), + (85742, 92, 1), + (85742, 97, 1), + (85742, 91, 1), + (85742, 96, 1), + (85742, 90, 1), + (85742, 94, 1), + (85743, 93, 1), + (85743, 95, 1), + (85743, 92, 1), + (85743, 97, 1), + (85743, 91, 1), + (85743, 96, 1), + (85743, 90, 1), + (85743, 94, 1), + (85744, 93, 37), + (85744, 95, 37), + (85744, 92, 187), + (85744, 97, 37), + (85744, 91, 218), + (85744, 96, 37), + (85744, 90, 218), + (85744, 94, 37), + (85745, 93, 1), + (85745, 95, 1), + (85745, 92, 1), + (85745, 97, 1), + (85745, 91, 1), + (85745, 96, 1), + (85745, 90, 1), + (85745, 94, 1), + (85746, 93, 1), + (85746, 95, 1), + (85746, 92, 1), + (85746, 97, 1), + (85746, 91, 1), + (85746, 96, 1), + (85746, 90, 1), + (85746, 94, 1), + (85747, 93, 37), + (85747, 95, 218), + (85747, 92, 37), + (85747, 97, 218), + (85747, 91, 250), + (85747, 96, 37), + (85747, 90, 218), + (85747, 94, 218), + (85748, 93, 1), + (85748, 95, 1), + (85748, 92, 1), + (85748, 97, 1), + (85748, 91, 1), + (85748, 96, 1), + (85748, 90, 1), + (85748, 94, 1), + (85749, 93, 37), + (85749, 95, 218), + (85749, 92, 37), + (85749, 97, 37), + (85749, 91, 250), + (85749, 96, 37), + (85749, 90, 218), + (85749, 94, 218), + (85750, 93, 1), + (85750, 95, 1), + (85750, 92, 1), + (85750, 97, 1), + (85750, 91, 1), + (85750, 96, 1), + (85750, 90, 1), + (85750, 94, 1), + (85751, 93, 62), + (85751, 95, 218), + (85751, 92, 250), + (85751, 97, 218), + (85751, 91, 218), + (85751, 96, 62), + (85751, 90, 250), + (85751, 94, 250), + (85752, 93, 1), + (85752, 95, 1), + (85752, 92, 1), + (85752, 97, 1), + (85752, 91, 1), + (85752, 96, 1), + (85752, 90, 1), + (85752, 94, 1), + (85753, 93, 50), + (85753, 95, 218), + (85753, 92, 250), + (85753, 97, 50), + (85753, 91, 218), + (85753, 96, 50), + (85753, 90, 250), + (85753, 94, 218), + (85754, 93, 1), + (85754, 95, 1), + (85754, 92, 1), + (85754, 97, 1), + (85754, 91, 1), + (85754, 96, 1), + (85754, 90, 1), + (85754, 94, 1), + (85755, 93, 1), + (85755, 95, 1), + (85755, 92, 1), + (85755, 97, 1), + (85755, 91, 1), + (85755, 96, 1), + (85755, 90, 1), + (85755, 94, 1), + (85756, 93, 156), + (85756, 95, 218), + (85756, 92, 218), + (85756, 97, 218), + (85756, 91, 250), + (85756, 96, 62), + (85756, 90, 250), + (85756, 94, 187), + (85757, 93, 1), + (85757, 95, 1), + (85757, 92, 1), + (85757, 97, 1), + (85757, 91, 1), + (85757, 96, 1), + (85757, 90, 1), + (85757, 94, 1), + (85758, 93, 50), + (85758, 95, 187), + (85758, 92, 218), + (85758, 97, 187), + (85758, 91, 250), + (85758, 96, 50), + (85758, 90, 250), + (85758, 94, 156), + (85759, 93, 1), + (85759, 95, 1), + (85759, 92, 1), + (85759, 97, 1), + (85759, 91, 1), + (85759, 96, 1), + (85759, 90, 1), + (85759, 94, 1), + (85760, 96, 156), + (85760, 94, 62), + (85760, 97, 62), + (85760, 95, 62), + (85760, 92, 62), + (85760, 90, 218), + (85760, 91, 250), + (85760, 93, 187), + (85761, 96, 1), + (85761, 94, 1), + (85761, 97, 1), + (85761, 95, 1), + (85761, 92, 1), + (85761, 90, 1), + (85761, 91, 1), + (85761, 93, 1), + (85907, 118, 5), + (85907, 120, 5), + (85908, 118, 50), + (85908, 120, 50), + (85935, 93, 25), + (85935, 95, 25), + (85935, 92, 25), + (85935, 97, 25), + (85935, 91, 25), + (85935, 96, 25), + (85935, 90, 25), + (85935, 94, 25), + (88058, 205, 35), + (88058, 206, 35), + (88058, 207, 35), + (88058, 208, 35), + (88058, 217, 35), + (88058, 219, 35), + (88058, 225, 35), + (88058, 216, 35), + (88067, 93, 1250), + (88067, 95, 1250), + (88067, 92, 5000), + (88067, 97, 1250), + (88067, 91, 5000), + (88067, 96, 1250), + (88067, 90, 5000), + (88067, 94, 1250), + (88068, 93, 10), + (88068, 95, 25), + (88068, 92, 25), + (88068, 97, 25), + (88068, 91, 25), + (88068, 96, 25), + (88068, 90, 25), + (88068, 94, 25), + (88069, 93, 4375), + (88069, 95, 1250), + (88069, 92, 5000), + (88069, 97, 1250), + (88069, 91, 5000), + (88069, 96, 3750), + (88069, 90, 5000), + (88069, 94, 4375), + (88070, 93, 25), + (88070, 95, 10), + (88070, 92, 25), + (88070, 97, 10), + (88070, 91, 25), + (88070, 96, 25), + (88070, 90, 25), + (88070, 94, 25), + (88071, 93, 3125), + (88071, 95, 4375), + (88071, 92, 5000), + (88071, 97, 4375), + (88071, 91, 5000), + (88071, 96, 1250), + (88071, 90, 5000), + (88071, 94, 1250), + (88072, 93, 25), + (88072, 95, 25), + (88072, 92, 25), + (88072, 97, 25), + (88072, 91, 25), + (88072, 96, 10), + (88072, 90, 25), + (88072, 94, 10), + (88073, 93, 1250), + (88073, 95, 1250), + (88073, 92, 5000), + (88073, 97, 5000), + (88073, 91, 5000), + (88073, 96, 1250), + (88073, 90, 5000), + (88073, 94, 1250), + (88074, 93, 10), + (88074, 95, 10), + (88074, 92, 25), + (88074, 97, 25), + (88074, 91, 25), + (88074, 96, 10), + (88074, 90, 25), + (88074, 94, 10), + (88075, 93, 3125), + (88075, 95, 1250), + (88075, 92, 5000), + (88075, 97, 1250), + (88075, 91, 5000), + (88075, 96, 1250), + (88075, 90, 5000), + (88075, 94, 1250), + (88076, 93, 25), + (88076, 95, 10), + (88076, 92, 25), + (88076, 97, 10), + (88076, 91, 25), + (88076, 96, 10), + (88076, 90, 25), + (88076, 94, 10), + (88077, 93, 1250), + (88077, 95, 4375), + (88077, 92, 5000), + (88077, 97, 4375), + (88077, 91, 5000), + (88077, 96, 4375), + (88077, 90, 5000), + (88077, 94, 4375), + (88078, 93, 10), + (88078, 95, 10), + (88078, 92, 25), + (88078, 97, 10), + (88078, 91, 25), + (88078, 96, 10), + (88078, 90, 25), + (88078, 94, 10), + (88373, 380, 1), + (88374, 380, 50), + (88375, 118, -50), + (88375, 119, -50), + (88375, 120, -50), + (88375, 151, 30), + (88375, 379, 1), + (88375, 380, 1), + (88376, 118, -800), + (88376, 119, -800), + (88376, 120, -800), + (88376, 151, 300), + (88376, 379, 15), + (88376, 380, 45), + (91378, 90, -290), + (91378, 91, -290), + (91378, 92, -290), + (91378, 93, -290), + (91378, 94, -290), + (91378, 95, -290), + (91378, 96, -290), + (91378, 97, -290), + (91381, 90, -202), + (91381, 91, -202), + (91381, 92, -202), + (91381, 93, -202), + (91381, 94, -202), + (91381, 95, -202), + (91381, 96, -202), + (91381, 97, -202), + (91382, 90, -824), + (91382, 91, -824), + (91382, 92, -824), + (91382, 93, -824), + (91382, 94, -824), + (91382, 95, -824), + (91382, 96, -824), + (91382, 97, -824), + (91384, 90, -1000), + (91384, 91, -1000), + (91384, 92, -1000), + (91384, 93, -1000), + (91384, 94, -1000), + (91384, 95, -1000), + (91384, 96, -1000), + (91384, 97, -1000), + (91386, 90, -513), + (91386, 91, -513), + (91386, 92, -513), + (91386, 93, -513), + (91386, 94, -513), + (91386, 95, -513), + (91386, 96, -513), + (91386, 97, -513), + (91387, 90, -393), + (91387, 91, -393), + (91387, 92, -393), + (91387, 93, -393), + (91387, 94, -393), + (91387, 95, -393), + (91387, 96, -393), + (91387, 97, -393), + (91389, 90, -652), + (91389, 91, -652), + (91389, 92, -652), + (91389, 93, -652), + (91389, 94, -652), + (91389, 95, -652), + (91389, 96, -652), + (91389, 97, -652), + (91390, 90, -244), + (91390, 91, -244), + (91390, 92, -244), + (91390, 93, -244), + (91390, 94, -244), + (91390, 95, -244), + (91390, 96, -244), + (91390, 97, -244), + (91392, 90, -1200), + (91392, 91, -1200), + (91392, 92, -1200), + (91392, 93, -1200), + (91392, 94, -1200), + (91392, 95, -1200), + (91392, 96, -1200), + (91392, 97, -1200), + (91394, 90, -582), + (91394, 91, -582), + (91394, 92, -582), + (91394, 93, -582), + (91394, 94, -582), + (91394, 95, -582), + (91394, 96, -582), + (91394, 97, -582), + (91395, 90, -337), + (91395, 91, -337), + (91395, 92, -337), + (91395, 93, -337), + (91395, 94, -337), + (91395, 95, -337), + (91395, 96, -337), + (91395, 97, -337), + (91397, 90, -913), + (91397, 91, -913), + (91397, 92, -913), + (91397, 93, -913), + (91397, 94, -913), + (91397, 95, -913), + (91397, 96, -913), + (91397, 97, -913), + (91399, 90, -1098), + (91399, 91, -1098), + (91399, 92, -1098), + (91399, 93, -1098), + (91399, 94, -1098), + (91399, 95, -1098), + (91399, 96, -1098), + (91399, 97, -1098), + (91401, 90, -449), + (91401, 91, -449), + (91401, 92, -449), + (91401, 93, -449), + (91401, 94, -449), + (91401, 95, -449), + (91401, 96, -449), + (91401, 97, -449), + (91403, 90, -733), + (91403, 91, -733), + (91403, 92, -733), + (91403, 93, -733), + (91403, 94, -733), + (91403, 95, -733), + (91403, 96, -733), + (91403, 97, -733), + (92189, 90, 342), + (92189, 91, 342), + (92189, 92, 342), + (92189, 93, 342), + (92189, 94, 342), + (92189, 95, 342), + (92189, 96, 342), + (92189, 97, 342), + (92194, 90, 522), + (92194, 91, 522), + (92194, 92, 522), + (92194, 93, 522), + (92194, 94, 522), + (92194, 95, 522), + (92194, 96, 522), + (92194, 97, 522), + (92196, 90, 706), + (92196, 91, 706), + (92196, 92, 706), + (92196, 93, 706), + (92196, 94, 706), + (92196, 95, 706), + (92196, 96, 706), + (92196, 97, 706), + (92197, 90, 426), + (92197, 91, 426), + (92197, 92, 426), + (92197, 93, 426), + (92197, 94, 426), + (92197, 95, 426), + (92197, 96, 426), + (92197, 97, 426), + (92199, 90, 613), + (92199, 91, 613), + (92199, 92, 613), + (92199, 93, 613), + (92199, 94, 613), + (92199, 95, 613), + (92199, 96, 613), + (92199, 97, 613), + (92201, 90, 822), + (92201, 91, 822), + (92201, 92, 822), + (92201, 93, 822), + (92201, 94, 822), + (92201, 95, 822), + (92201, 96, 822), + (92201, 97, 822), + (92203, 90, 928), + (92203, 91, 928), + (92203, 92, 928), + (92203, 93, 928), + (92203, 94, 928), + (92203, 95, 928), + (92203, 96, 928), + (92203, 97, 928), + (92205, 90, 1012), + (92205, 91, 1012), + (92205, 92, 1012), + (92205, 93, 1012), + (92205, 94, 1012), + (92205, 95, 1012), + (92205, 96, 1012), + (92205, 97, 1012), + (93133, 153, 70), + (93133, 154, 70), + (93133, 155, 70), + (93133, 156, 620), + (93134, 153, 61), + (93134, 154, 61), + (93134, 155, 61), + (93134, 156, 450), + (93135, 153, 79), + (93135, 154, 79), + (93135, 155, 79), + (93135, 156, 720), + (93136, 153, 7), + (93136, 154, 7), + (93136, 155, 7), + (93136, 156, 190), + (93137, 153, 25), + (93137, 154, 25), + (93137, 155, 25), + (93137, 156, 310), + (93138, 153, 16), + (93138, 154, 16), + (93138, 155, 16), + (93138, 156, 260), + (93139, 153, 37), + (93139, 154, 37), + (93139, 155, 37), + (93139, 156, 390), + (93140, 153, 2), + (93140, 154, 2), + (93140, 155, 2), + (93140, 156, 140), + (95512, 318, -1), + (95513, 318, -15), + (95514, 383, 40), + (95515, 383, 99), + (95516, 381, 110), + (95517, 381, 150), + (95518, 149, 10), + (95519, 149, 400), + (95520, 181, 64), + (95531, 379, 28), + (95532, 379, 12), + (95533, 379, 23), + (95538, 379, 17), + (95723, 1, 105), + (95723, 343, 1), + (95724, 1, 361), + (95724, 343, 3), + (95725, 1, 176), + (95725, 343, 2), + (95726, 1, 405), + (95726, 343, 3), + (95727, 1, 58), + (95727, 343, 1), + (95728, 1, 112), + (95728, 16, 5), + (95728, 18, 5), + (95728, 360, 3), + (95729, 689, 20), + (95729, 1, 500), + (95729, 16, 10), + (95729, 18, 10), + (95730, 689, 20), + (95730, 1, 3500), + (95730, 16, 23), + (95730, 18, 23), + (95731, 1, 171), + (95731, 16, 8), + (95731, 18, 8), + (95731, 360, 4), + (95732, 689, 20), + (95732, 1, 1500), + (95732, 16, 15), + (95732, 18, 15), + (95733, 1, 401), + (95733, 16, 17), + (95733, 18, 17), + (95733, 360, 7), + (95734, 1, 707), + (95734, 16, 22), + (95734, 18, 22), + (95734, 360, 9), + (95735, 689, 20), + (95735, 1, 6000), + (95735, 16, 27), + (95735, 18, 27), + (95736, 1, 996), + (95736, 16, 27), + (95736, 18, 27), + (95736, 360, 12), + (95737, 1, 240), + (95737, 16, 11), + (95737, 18, 11), + (95737, 360, 5), + (95738, 1, 819), + (95738, 16, 24), + (95738, 18, 24), + (95738, 360, 10), + (95805, 205, 35), + (95805, 206, 35), + (95805, 207, 35), + (95805, 208, 35), + (95805, 217, 35), + (95805, 219, 35), + (95805, 225, 35), + (95805, 216, 35), + (96078, 164, 350), + (96078, 156, 150), + (96078, 96, -200), + (96078, 90, -200), + (96078, 91, -200), + (96078, 92, -200), + (96078, 93, -200), + (96078, 94, -200), + (96078, 97, -200), + (96079, 164, 18), + (96079, 156, 30), + (96079, 96, -200), + (96079, 90, -200), + (96079, 91, -200), + (96079, 92, -200), + (96079, 93, -200), + (96079, 94, -200), + (96079, 97, -200), + (96086, 16, 5), + (96087, 16, 150), + (96088, 156, 900), + (96092, 156, -1000), + (96093, 156, -1000), + (96094, 156, -500), + (96094, 16, 50), + (96094, 168, 50), + (96094, 90, 50), + (96094, 91, 50), + (96094, 92, 50), + (96094, 93, 30), + (96094, 94, 60), + (96094, 97, 5), + (96095, 156, -500), + (96095, 16, 150), + (96095, 168, 150), + (96095, 90, 150), + (96095, 91, 150), + (96095, 92, 150), + (96095, 93, 30), + (96095, 94, 160), + (96095, 97, 5), + (96351, 1, 40), + (96351, 221, 20), + (96352, 1, 60), + (96352, 221, 40), + (96353, 1, 200), + (96353, 221, 150), + (96353, 319, 1), + (96354, 1, 350), + (96354, 221, 300), + (96354, 277, 10), + (96354, 319, 3), + (96355, 1, 450), + (96355, 221, 400), + (96355, 276, 10), + (96355, 277, 20), + (96355, 319, 4), + (96356, 1, 500), + (96356, 221, 500), + (96356, 276, 25), + (96356, 277, 35), + (96356, 278, 10), + (96356, 279, 10), + (96356, 280, 10), + (96356, 281, 10), + (96356, 282, 10), + (96356, 311, 10), + (96356, 316, 10), + (96356, 317, 10), + (96356, 319, 6), + (96357, 1, 950), + (96357, 156, 210), + (96357, 160, 210), + (96357, 161, 210), + (96357, 164, 140), + (96357, 221, 950), + (96357, 276, 45), + (96357, 277, 60), + (96357, 278, 20), + (96357, 279, 20), + (96357, 280, 20), + (96357, 281, 20), + (96357, 282, 20), + (96357, 311, 20), + (96357, 316, 20), + (96357, 317, 20), + (96357, 319, 7), + (96358, 1, 20), + (96358, 221, 10), + (97447, 1, 644), + (97449, 1, 118), + (97450, 1, 1234), + (97452, 1, 581), + (97453, 1, 463), + (97455, 1, 379), + (97456, 1, 1344), + (97458, 1, 221), + (97459, 1, 57), + (97461, 1, 1123), + (97462, 1, 928), + (97464, 1, 317), + (97465, 1, 1017), + (99129, 118, -261), + (99129, 119, -261), + (99129, 120, -261), + (99130, 118, -222), + (99130, 119, -222), + (99130, 120, -222), + (99131, 118, -199), + (99131, 119, -199), + (99131, 120, -199), + (99132, 118, -101), + (99132, 119, -101), + (99132, 120, -101), + (99133, 118, -19), + (99133, 119, -19), + (99133, 120, -19), + (99134, 118, -181), + (99134, 119, -181), + (99134, 120, -181), + (99135, 118, -134), + (99135, 119, -134), + (99135, 120, -134), + (99136, 118, -156), + (99136, 119, -156), + (99136, 120, -156), + (99137, 118, -81), + (99137, 119, -81), + (99137, 120, -81), + (99138, 118, -61), + (99138, 119, -61), + (99138, 120, -61), + (99139, 118, -32), + (99139, 119, -32), + (99139, 120, -32), + (99140, 118, -244), + (99140, 119, -244), + (99140, 120, -244), + (99719, 1, 20), + (99719, 221, 10), + (99720, 1, 40), + (99720, 221, 20), + (99721, 1, 60), + (99721, 221, 40), + (99722, 1, 200), + (99722, 221, 150), + (99722, 319, 1), + (99723, 1, 350), + (99723, 221, 300), + (99723, 277, 10), + (99723, 319, 3), + (99724, 1, 450), + (99724, 221, 400), + (99724, 276, 10), + (99724, 277, 20), + (99724, 319, 4), + (99725, 1, 500), + (99725, 221, 500), + (99725, 276, 25), + (99725, 277, 35), + (99725, 278, 10), + (99725, 279, 10), + (99725, 280, 10), + (99725, 281, 10), + (99725, 282, 10), + (99725, 311, 10), + (99725, 316, 10), + (99725, 317, 10), + (99725, 319, 6), + (99726, 1, 950), + (99726, 156, 210), + (99726, 160, 210), + (99726, 161, 210), + (99726, 164, 140), + (99726, 221, 950), + (99726, 276, 45), + (99726, 277, 60), + (99726, 278, 20), + (99726, 279, 20), + (99726, 280, 20), + (99726, 281, 20), + (99726, 282, 20), + (99726, 311, 20), + (99726, 316, 20), + (99726, 317, 20), + (99726, 319, 7), + (100000, 156, 500), + (100000, 205, 1000), + (100000, 206, 1000), + (100000, 207, 1000), + (100000, 208, 1000), + (100000, 216, 1000), + (100000, 217, 1000), + (100000, 218, 1000), + (100000, 219, 1000), + (100000, 225, 1000), + (100000, 93, 5000), + (100000, 95, 5000), + (100000, 92, 5000), + (100000, 97, 5000), + (100000, 91, 5000), + (100000, 168, 5000), + (100000, 96, 5000), + (100000, 90, 5000), + (100000, 94, 5000), + (100000, 1, 100000), + (100000, 27, 100000), + (100000, 343, 100000), + (100000, 364, 100000), + (100001, 156, 500), + (100001, 205, 1000), + (100001, 206, 1000), + (100001, 207, 1000), + (100001, 208, 1000), + (100001, 216, 1000), + (100001, 217, 1000), + (100001, 218, 1000), + (100001, 219, 1000), + (100001, 225, 1000), + (100001, 93, 5000), + (100001, 95, 5000), + (100001, 92, 5000), + (100001, 97, 5000), + (100001, 91, 5000), + (100001, 168, 5000), + (100001, 96, 5000), + (100001, 90, 5000), + (100001, 94, 5000), + (100001, 1, 100000), + (100001, 27, 100000), + (100001, 343, 100000), + (100001, 364, 100000), + (100002, 93, 5000), + (100002, 95, 5000), + (100002, 92, 5000), + (100002, 97, 5000), + (100002, 91, 5000), + (100002, 168, 5000), + (100002, 96, 5000), + (100002, 90, 5000), + (100002, 94, 5000), + (100002, 1, 100000), + (100002, 27, 100000), + (100002, 343, 100000), + (100002, 364, 100000), + (100003, 93, 5000), + (100003, 95, 5000), + (100003, 92, 5000), + (100003, 97, 5000), + (100003, 91, 5000), + (100003, 168, 5000), + (100003, 96, 5000), + (100003, 90, 5000), + (100003, 94, 5000), + (100003, 1, 100000), + (100003, 27, 100000), + (100003, 343, 100000), + (100003, 364, 100000), + (100008, 156, 500), + (100008, 205, 1000), + (100008, 206, 1000), + (100008, 207, 1000), + (100008, 208, 1000), + (100008, 216, 1000), + (100008, 217, 1000), + (100008, 218, 1000), + (100008, 219, 1000), + (100008, 225, 1000), + (100008, 93, 5000), + (100008, 95, 5000), + (100008, 92, 5000), + (100008, 97, 5000), + (100008, 91, 5000), + (100008, 168, 5000), + (100008, 96, 5000), + (100008, 90, 5000), + (100008, 94, 5000), + (100008, 1, 100000), + (100008, 27, 100000), + (100008, 343, 100000), + (100008, 364, 100000), + (100260, 156, 160), + (100260, 168, 630), + (100260, 689, -20), + (100260, 118, 290), + (100260, 119, 290), + (100260, 120, 290), + (100260, 149, 290), + (100261, 156, 200), + (100261, 168, 800), + (100261, 689, -30), + (100261, 118, 350), + (100261, 119, 350), + (100261, 120, 350), + (100261, 149, 350), + (100262, 156, 140), + (100262, 168, 420), + (100262, 689, -15), + (100262, 118, 240), + (100262, 119, 240), + (100262, 120, 240), + (100262, 149, 240), + (100263, 156, 65), + (100263, 168, 260), + (100263, 689, -10), + (100263, 118, 180), + (100263, 119, 180), + (100263, 120, 180), + (100263, 149, 180), + (100264, 156, 50), + (100264, 168, 150), + (100264, 689, -5), + (100264, 118, 100), + (100264, 119, 100), + (100264, 120, 100), + (100264, 149, 100), + (100444, 118, -1128), + (100444, 119, -1128), + (100444, 120, -1128), + (100444, 149, -1128), + (100445, 118, -802), + (100445, 119, -802), + (100445, 120, -802), + (100445, 149, -802), + (100446, 118, -643), + (100446, 119, -643), + (100446, 120, -643), + (100446, 149, -643), + (100447, 118, -291), + (100447, 119, -291), + (100447, 120, -291), + (100447, 149, -291), + (100448, 118, -85), + (100448, 119, -85), + (100448, 120, -85), + (100448, 149, -85), + (100449, 118, -173), + (100449, 119, -173), + (100449, 120, -173), + (100449, 149, -173), + (100450, 118, -143), + (100450, 119, -143), + (100450, 120, -143), + (100450, 149, -143), + (100451, 118, -115), + (100451, 119, -115), + (100451, 120, -115), + (100451, 149, -115), + (100452, 118, -50), + (100452, 119, -50), + (100452, 120, -50), + (100452, 149, -50), + (100453, 118, -73), + (100453, 119, -73), + (100453, 120, -73), + (100453, 149, -73), + (100454, 118, -61), + (100454, 119, -61), + (100454, 120, -61), + (100454, 149, -61), + (100455, 118, -1580), + (100455, 119, -1580), + (100455, 120, -1580), + (100455, 149, -1580), + (100457, 118, -1312), + (100457, 119, -1312), + (100457, 120, -1312), + (100457, 149, -1312), + (100460, 118, -1831), + (100460, 119, -1831), + (100460, 120, -1831), + (100460, 149, -1831), + (100461, 118, -927), + (100461, 119, -927), + (100461, 120, -927), + (100461, 149, -927), + (100462, 118, -404), + (100462, 119, -404), + (100462, 120, -404), + (100462, 149, -404), + (116822, 51, 101), + (116822, 119, 510), + (116822, 149, 510), + (116822, 120, 510), + (116822, 118, 510), + (116822, 201, 50), + (116829, 51, 139), + (116829, 119, 700), + (116829, 149, 700), + (116829, 120, 700), + (116829, 118, 700), + (116829, 201, 65), + (116830, 51, 184), + (116830, 120, 920), + (116830, 118, 920), + (116830, 119, 920), + (116830, 149, 920), + (116830, 201, 80), + (116831, 51, 73), + (116831, 119, 360), + (116831, 149, 360), + (116831, 120, 360), + (116831, 118, 360), + (116831, 201, 30), + (117294, 156, 150), + (117295, 156, 750), + (117322, 156, 300), + (118180, 96, 1), + (118180, 94, 1), + (118180, 93, 1), + (118180, 97, 1), + (118180, 95, 1), + (118180, 90, 1), + (118180, 92, 1), + (118180, 91, 1), + (118181, 96, 3), + (118181, 94, 3), + (118181, 93, 3), + (118181, 97, 3), + (118181, 95, 3), + (118181, 90, 3), + (118181, 92, 3), + (118181, 91, 3), + (118183, 96, 5), + (118183, 94, 5), + (118183, 93, 5), + (118183, 97, 5), + (118183, 95, 5), + (118183, 90, 5), + (118183, 92, 5), + (118183, 91, 5), + (118184, 96, 1), + (118184, 94, 1), + (118184, 93, 1), + (118184, 97, 1), + (118184, 95, 1), + (118184, 90, 1), + (118184, 91, 1), + (118184, 92, 1), + (118195, 93, 3), + (118195, 95, 3), + (118195, 92, 3), + (118195, 97, 3), + (118195, 91, 3), + (118195, 96, 3), + (118195, 90, 3), + (118195, 94, 3), + (120500, 156, 600), + (120565, 93, 3), + (120565, 95, 1), + (120565, 92, 3), + (120565, 97, 3), + (120565, 91, 3), + (120565, 96, 3), + (120565, 90, 3), + (120565, 94, 3), + (120573, 93, 1), + (120573, 95, 3), + (120573, 92, 3), + (120573, 97, 3), + (120573, 91, 3), + (120573, 96, 3), + (120573, 90, 3), + (120573, 94, 1), + (120574, 93, 3), + (120574, 95, 3), + (120574, 92, 3), + (120574, 97, 3), + (120574, 91, 3), + (120574, 96, 3), + (120574, 90, 3), + (120574, 94, 1), + (120575, 93, 1), + (120575, 95, 3), + (120575, 92, 3), + (120575, 97, 3), + (120575, 91, 3), + (120575, 96, 3), + (120575, 90, 3), + (120575, 94, 1), + (120579, 93, 3), + (120579, 95, 1), + (120579, 92, 3), + (120579, 97, 3), + (120579, 91, 3), + (120579, 96, 3), + (120579, 90, 3), + (120579, 94, 3), + (120581, 93, 1), + (120581, 95, 1), + (120581, 92, 1), + (120581, 97, 1), + (120581, 91, 1), + (120581, 96, 1), + (120581, 90, 1), + (120581, 94, 1), + (120582, 96, 1), + (120582, 93, 1), + (120582, 97, 1), + (120582, 95, 1), + (120582, 92, 1), + (120582, 91, 1), + (120582, 94, 1), + (120582, 90, 1), + (120583, 93, 5), + (120583, 95, 1), + (120583, 92, 5), + (120583, 97, 5), + (120583, 91, 5), + (120583, 96, 5), + (120583, 90, 5), + (120583, 94, 5), + (120584, 93, 1), + (120584, 95, 1), + (120584, 92, 1), + (120584, 97, 1), + (120584, 91, 1), + (120584, 96, 1), + (120584, 90, 1), + (120584, 94, 1), + (120585, 96, 3), + (120585, 93, 3), + (120585, 97, 3), + (120585, 95, 1), + (120585, 94, 1), + (120585, 91, 3), + (120585, 92, 3), + (120585, 90, 3), + (120586, 93, 3), + (120586, 95, 1), + (120586, 92, 3), + (120586, 97, 3), + (120586, 91, 3), + (120586, 96, 3), + (120586, 90, 3), + (120586, 94, 1), + (120587, 96, 1), + (120587, 93, 1), + (120587, 97, 1), + (120587, 95, 1), + (120587, 90, 1), + (120587, 92, 1), + (120587, 94, 1), + (120587, 91, 1), + (120588, 96, 1), + (120588, 93, 1), + (120588, 97, 1), + (120588, 95, 1), + (120588, 92, 1), + (120588, 91, 1), + (120588, 94, 1), + (120588, 90, 1), + (120589, 96, 5), + (120589, 93, 5), + (120589, 97, 5), + (120589, 95, 1), + (120589, 94, 1), + (120589, 91, 5), + (120589, 92, 5), + (120589, 90, 5), + (120590, 96, 1), + (120590, 93, 1), + (120590, 97, 1), + (120590, 95, 1), + (120590, 92, 1), + (120590, 90, 1), + (120590, 94, 1), + (120590, 91, 1), + (120591, 93, 3), + (120591, 95, 3), + (120591, 92, 3), + (120591, 97, 3), + (120591, 123, 1), + (120591, 91, 3), + (120591, 96, 3), + (120591, 90, 3), + (120591, 94, 1), + (120591, 124, 1), + (120592, 93, 3), + (120592, 95, 3), + (120592, 92, 3), + (120592, 97, 3), + (120592, 123, 1), + (120592, 91, 3), + (120592, 96, 3), + (120592, 90, 3), + (120592, 94, 1), + (120592, 124, 1), + (120593, 93, 1), + (120593, 95, 1), + (120593, 92, 1), + (120593, 97, 1), + (120593, 123, 1), + (120593, 91, 1), + (120593, 96, 1), + (120593, 90, 1), + (120593, 94, 1), + (120593, 124, 1), + (120594, 93, 1), + (120594, 95, 1), + (120594, 92, 1), + (120594, 97, 1), + (120594, 123, 1), + (120594, 91, 1), + (120594, 96, 1), + (120594, 90, 1), + (120594, 94, 1), + (120594, 124, 1), + (120595, 93, 5), + (120595, 95, 5), + (120595, 92, 5), + (120595, 97, 5), + (120595, 123, 1), + (120595, 91, 5), + (120595, 96, 5), + (120595, 90, 5), + (120595, 94, 1), + (120595, 124, 1), + (120596, 93, 1), + (120596, 95, 1), + (120596, 92, 1), + (120596, 97, 1), + (120596, 123, 1), + (120596, 91, 1), + (120596, 96, 1), + (120596, 90, 1), + (120596, 94, 1), + (120596, 124, 1), + (121360, 113, 3), + (121360, 102, 3), + (121360, 107, 3), + (121360, 103, 3), + (121360, 105, 3), + (121360, 104, 3), + (121360, 106, 3), + (121360, 100, 3), + (121360, 109, 3), + (121360, 133, 3), + (121360, 110, 3), + (121360, 112, 3), + (121360, 130, 3), + (121360, 114, 3), + (121360, 115, 3), + (121360, 116, 3), + (121360, 108, 3), + (121360, 128, 3), + (121360, 122, 3), + (121360, 129, 3), + (121360, 127, 3), + (121360, 131, 3), + (121360, 111, 3), + (121362, 113, 85), + (121362, 102, 85), + (121362, 107, 85), + (121362, 103, 85), + (121362, 105, 85), + (121362, 104, 85), + (121362, 106, 85), + (121362, 100, 85), + (121362, 109, 85), + (121362, 133, 85), + (121362, 110, 85), + (121362, 112, 85), + (121362, 130, 85), + (121362, 114, 85), + (121362, 115, 85), + (121362, 116, 85), + (121362, 108, 85), + (121362, 128, 85), + (121362, 122, 85), + (121362, 129, 85), + (121362, 127, 85), + (121362, 131, 85), + (121362, 111, 85), + (121363, 113, 106), + (121363, 102, 106), + (121363, 107, 106), + (121363, 103, 106), + (121363, 105, 106), + (121363, 104, 106), + (121363, 106, 106), + (121363, 100, 106), + (121363, 109, 106), + (121363, 133, 106), + (121363, 110, 106), + (121363, 112, 106), + (121363, 130, 106), + (121363, 114, 106), + (121363, 115, 106), + (121363, 116, 106), + (121363, 108, 106), + (121363, 128, 106), + (121363, 122, 106), + (121363, 129, 106), + (121363, 127, 106), + (121363, 131, 106), + (121363, 111, 106), + (121364, 113, 112), + (121364, 102, 112), + (121364, 107, 112), + (121364, 103, 112), + (121364, 105, 112), + (121364, 104, 112), + (121364, 106, 112), + (121364, 100, 112), + (121364, 109, 112), + (121364, 133, 112), + (121364, 110, 112), + (121364, 112, 112), + (121364, 130, 112), + (121364, 114, 112), + (121364, 115, 112), + (121364, 116, 112), + (121364, 108, 112), + (121364, 128, 112), + (121364, 122, 112), + (121364, 129, 112), + (121364, 127, 112), + (121364, 131, 112), + (121364, 111, 112), + (121365, 113, 131), + (121365, 102, 131), + (121365, 107, 131), + (121365, 103, 131), + (121365, 105, 131), + (121365, 104, 131), + (121365, 106, 131), + (121365, 100, 131), + (121365, 109, 131), + (121365, 133, 131), + (121365, 110, 131), + (121365, 112, 131), + (121365, 130, 131), + (121365, 114, 131), + (121365, 115, 131), + (121365, 116, 131), + (121365, 108, 131), + (121365, 128, 131), + (121365, 122, 131), + (121365, 129, 131), + (121365, 127, 131), + (121365, 131, 131), + (121365, 111, 131), + (121366, 113, 13), + (121366, 102, 13), + (121366, 107, 13), + (121366, 103, 13), + (121366, 105, 13), + (121366, 104, 13), + (121366, 106, 13), + (121366, 100, 13), + (121366, 109, 13), + (121366, 133, 13), + (121366, 110, 13), + (121366, 112, 13), + (121366, 130, 13), + (121366, 114, 13), + (121366, 115, 13), + (121366, 116, 13), + (121366, 108, 13), + (121366, 128, 13), + (121366, 122, 13), + (121366, 129, 13), + (121366, 127, 13), + (121366, 131, 13), + (121366, 111, 13), + (121367, 113, 9), + (121367, 102, 9), + (121367, 107, 9), + (121367, 103, 9), + (121367, 105, 9), + (121367, 104, 9), + (121367, 106, 9), + (121367, 100, 9), + (121367, 109, 9), + (121367, 133, 9), + (121367, 110, 9), + (121367, 112, 9), + (121367, 130, 9), + (121367, 114, 9), + (121367, 115, 9), + (121367, 116, 9), + (121367, 108, 9), + (121367, 128, 9), + (121367, 122, 9), + (121367, 129, 9), + (121367, 127, 9), + (121367, 131, 9), + (121367, 111, 9), + (121368, 113, 65), + (121368, 102, 65), + (121368, 107, 65), + (121368, 103, 65), + (121368, 105, 65), + (121368, 104, 65), + (121368, 106, 65), + (121368, 100, 65), + (121368, 109, 65), + (121368, 133, 65), + (121368, 110, 65), + (121368, 112, 65), + (121368, 130, 65), + (121368, 114, 65), + (121368, 115, 65), + (121368, 116, 65), + (121368, 108, 65), + (121368, 128, 65), + (121368, 122, 65), + (121368, 129, 65), + (121368, 127, 65), + (121368, 131, 65), + (121368, 111, 65), + (121369, 113, 37), + (121369, 102, 37), + (121369, 107, 37), + (121369, 103, 37), + (121369, 105, 37), + (121369, 104, 37), + (121369, 106, 37), + (121369, 100, 37), + (121369, 109, 37), + (121369, 133, 37), + (121369, 110, 37), + (121369, 112, 37), + (121369, 130, 37), + (121369, 114, 37), + (121369, 115, 37), + (121369, 116, 37), + (121369, 108, 37), + (121369, 128, 37), + (121369, 122, 37), + (121369, 129, 37), + (121369, 127, 37), + (121369, 131, 37), + (121369, 111, 37), + (121370, 113, 27), + (121370, 102, 27), + (121370, 107, 27), + (121370, 103, 27), + (121370, 105, 27), + (121370, 104, 27), + (121370, 106, 27), + (121370, 100, 27), + (121370, 109, 27), + (121370, 133, 27), + (121370, 110, 27), + (121370, 112, 27), + (121370, 130, 27), + (121370, 114, 27), + (121370, 115, 27), + (121370, 116, 27), + (121370, 108, 27), + (121370, 128, 27), + (121370, 122, 27), + (121370, 129, 27), + (121370, 127, 27), + (121370, 131, 27), + (121370, 111, 27), + (121371, 113, 99), + (121371, 102, 99), + (121371, 107, 99), + (121371, 103, 99), + (121371, 105, 99), + (121371, 104, 99), + (121371, 106, 99), + (121371, 100, 99), + (121371, 109, 99), + (121371, 133, 99), + (121371, 110, 99), + (121371, 112, 99), + (121371, 130, 99), + (121371, 114, 99), + (121371, 115, 99), + (121371, 116, 99), + (121371, 108, 99), + (121371, 128, 99), + (121371, 122, 99), + (121371, 129, 99), + (121371, 127, 99), + (121371, 131, 99), + (121371, 111, 99), + (121372, 113, 46), + (121372, 102, 46), + (121372, 107, 46), + (121372, 103, 46), + (121372, 105, 46), + (121372, 104, 46), + (121372, 106, 46), + (121372, 100, 46), + (121372, 109, 46), + (121372, 133, 46), + (121372, 110, 46), + (121372, 112, 46), + (121372, 130, 46), + (121372, 114, 46), + (121372, 115, 46), + (121372, 116, 46), + (121372, 108, 46), + (121372, 128, 46), + (121372, 122, 46), + (121372, 129, 46), + (121372, 127, 46), + (121372, 131, 46), + (121372, 111, 46), + (121373, 113, 121), + (121373, 102, 121), + (121373, 107, 121), + (121373, 103, 121), + (121373, 105, 121), + (121373, 104, 121), + (121373, 106, 121), + (121373, 100, 121), + (121373, 109, 121), + (121373, 133, 121), + (121373, 110, 121), + (121373, 112, 121), + (121373, 130, 121), + (121373, 114, 121), + (121373, 115, 121), + (121373, 116, 121), + (121373, 108, 121), + (121373, 128, 121), + (121373, 122, 121), + (121373, 129, 121), + (121373, 127, 121), + (121373, 131, 121), + (121373, 111, 121), + (121374, 113, 74), + (121374, 102, 74), + (121374, 107, 74), + (121374, 103, 74), + (121374, 105, 74), + (121374, 104, 74), + (121374, 106, 74), + (121374, 100, 74), + (121374, 109, 74), + (121374, 133, 74), + (121374, 110, 74), + (121374, 112, 74), + (121374, 130, 74), + (121374, 114, 74), + (121374, 115, 74), + (121374, 116, 74), + (121374, 108, 74), + (121374, 128, 74), + (121374, 122, 74), + (121374, 129, 74), + (121374, 127, 74), + (121374, 131, 74), + (121374, 111, 74), + (121375, 113, 22), + (121375, 102, 22), + (121375, 107, 22), + (121375, 103, 22), + (121375, 105, 22), + (121375, 104, 22), + (121375, 106, 22), + (121375, 100, 22), + (121375, 109, 22), + (121375, 133, 22), + (121375, 110, 22), + (121375, 112, 22), + (121375, 130, 22), + (121375, 114, 22), + (121375, 115, 22), + (121375, 116, 22), + (121375, 108, 22), + (121375, 128, 22), + (121375, 122, 22), + (121375, 129, 22), + (121375, 127, 22), + (121375, 131, 22), + (121375, 111, 22), + (121376, 113, 56), + (121376, 102, 56), + (121376, 107, 56), + (121376, 103, 56), + (121376, 105, 56), + (121376, 104, 56), + (121376, 106, 56), + (121376, 100, 56), + (121376, 109, 56), + (121376, 133, 56), + (121376, 110, 56), + (121376, 112, 56), + (121376, 130, 56), + (121376, 114, 56), + (121376, 115, 56), + (121376, 116, 56), + (121376, 108, 56), + (121376, 128, 56), + (121376, 122, 56), + (121376, 129, 56), + (121376, 127, 56), + (121376, 131, 56), + (121376, 111, 56), + (121566, 92, 10), + (121566, 91, 10), + (121566, 90, 10), + (121578, 103, 5), + (121579, 103, 5), + (121580, 103, 10), + (121581, 103, 10), + (121582, 103, 15), + (121583, 103, 15), + (121584, 103, 20), + (121584, 106, 5), + (121585, 103, 20), + (121585, 106, 5), + (121586, 103, 25), + (121586, 106, 10), + (121587, 103, 25), + (121587, 106, 10), + (121588, 103, 30), + (121588, 1, 100), + (121588, 106, 20), + (121589, 103, 30), + (121589, 1, 100), + (121589, 106, 20), + (121590, 103, 35), + (121590, 1, 100), + (121590, 106, 30), + (121595, 118, 2), + (121596, 118, 2), + (121597, 118, 4), + (121598, 118, 4), + (121599, 118, 7), + (121599, 100, 5), + (121600, 118, 7), + (121600, 100, 5), + (121601, 118, 12), + (121601, 100, 10), + (121602, 118, 12), + (121602, 100, 10), + (121603, 118, 15), + (121603, 100, 20), + (121604, 118, 15), + (121604, 100, 20), + (121605, 118, 18), + (121605, 100, 30), + (121606, 118, 18), + (121606, 100, 30), + (121607, 118, 20), + (121607, 100, 40), + (121608, 118, 20), + (121608, 100, 40), + (121609, 118, 22), + (121609, 100, 45), + (121610, 105, 1), + (121611, 105, 1), + (121612, 105, 2), + (121613, 105, 2), + (121614, 105, 5), + (121615, 105, 5), + (121616, 105, 10), + (121617, 105, 10), + (121618, 105, 15), + (121619, 105, 15), + (121620, 105, 20), + (121621, 105, 20), + (121622, 105, 25), + (121623, 105, 25), + (121624, 105, 30), + (121625, 105, 30), + (121626, 105, 35), + (121627, 105, 35), + (121628, 105, 50), + (121629, 105, 1), + (121630, 105, 1), + (121631, 105, 1), + (121632, 105, 1), + (121633, 105, 1), + (121634, 105, 1), + (121635, 105, 1), + (121636, 105, 1), + (121637, 105, 1), + (121638, 105, 1), + (121639, 105, 1), + (121640, 105, 1), + (121641, 105, 1), + (121642, 105, 1), + (121643, 105, 1), + (121644, 105, 1), + (121645, 105, 1), + (121646, 105, 1), + (121647, 105, 1), + (121654, 156, 2), + (121655, 156, 2), + (121656, 105, 5), + (121656, 156, 2), + (121657, 105, 5), + (121657, 156, 2), + (121658, 105, 10), + (121658, 156, 2), + (121659, 105, 10), + (121659, 156, 2), + (121660, 105, 15), + (121660, 156, 2), + (121661, 105, 15), + (121661, 156, 2), + (121662, 105, 15), + (121662, 156, 2), + (121663, 105, 15), + (121663, 156, 2), + (121664, 105, 15), + (121664, 136, 40), + (121664, 156, 2), + (121667, 146, 1), + (121668, 146, 1), + (121669, 1, 20), + (121669, 146, 2), + (121670, 1, 20), + (121670, 146, 2), + (121671, 1, 40), + (121671, 146, 4), + (121672, 1, 40), + (121672, 146, 4), + (121673, 1, 60), + (121673, 146, 8), + (121674, 1, 60), + (121674, 146, 8), + (121675, 1, 80), + (121675, 146, 16), + (121676, 1, 80), + (121676, 146, 16), + (121677, 1, 100), + (121677, 146, 24), + (121678, 1, 100), + (121678, 146, 24), + (121679, 1, 120), + (121679, 146, 32), + (121680, 1, 120), + (121680, 146, 32), + (121681, 1, 130), + (121681, 146, 32), + (121682, 1, 130), + (121682, 146, 32), + (121683, 1, 140), + (121683, 146, 32), + (122349, 97, 3), + (122350, 97, 3), + (122351, 97, 11), + (122352, 97, 11), + (122353, 97, 19), + (122354, 97, 19), + (122355, 97, 27), + (122356, 97, 27), + (122357, 97, 35), + (122358, 97, 35), + (122359, 93, 8), + (122359, 97, 42), + (122359, 94, 8), + (122360, 93, 8), + (122360, 97, 42), + (122360, 94, 8), + (122361, 93, 14), + (122361, 97, 50), + (122361, 94, 14), + (122362, 93, 14), + (122362, 97, 50), + (122362, 94, 14), + (122363, 93, 20), + (122363, 97, 58), + (122363, 94, 20), + (122364, 93, 20), + (122364, 97, 58), + (122364, 94, 20), + (122365, 93, 26), + (122365, 97, 66), + (122365, 94, 26), + (122366, 93, 26), + (122366, 97, 66), + (122366, 94, 26), + (122367, 93, 32), + (122367, 97, 74), + (122367, 94, 32), + (122368, 91, 5), + (122369, 91, 5), + (122370, 91, 10), + (122371, 91, 10), + (122372, 91, 15), + (122373, 91, 15), + (122374, 91, 20), + (122374, 90, 5), + (122375, 91, 20), + (122375, 90, 5), + (122376, 91, 25), + (122376, 90, 10), + (122377, 91, 25), + (122377, 90, 10), + (122378, 91, 30), + (122378, 90, 15), + (122379, 91, 30), + (122379, 90, 15), + (122380, 92, 20), + (122380, 91, 35), + (122380, 90, 20), + (122381, 92, 20), + (122381, 91, 35), + (122381, 90, 20), + (122382, 92, 25), + (122382, 91, 40), + (122382, 90, 25), + (122383, 92, 25), + (122383, 91, 40), + (122383, 90, 25), + (122384, 92, 30), + (122384, 91, 45), + (122384, 90, 30), + (122385, 92, 30), + (122385, 91, 45), + (122385, 90, 30), + (122386, 92, 45), + (122386, 91, 50), + (122386, 90, 45), + (122387, 90, 4), + (122388, 90, 4), + (122389, 90, 8), + (122390, 90, 8), + (122391, 92, 12), + (122391, 90, 12), + (122392, 92, 12), + (122392, 90, 12), + (122393, 92, 16), + (122393, 90, 16), + (122394, 92, 16), + (122394, 90, 16), + (122395, 92, 20), + (122395, 90, 20), + (122397, 92, 24), + (122397, 91, 24), + (122397, 90, 24), + (122398, 92, 24), + (122398, 91, 24), + (122398, 90, 24), + (122399, 92, 28), + (122399, 91, 28), + (122399, 90, 28), + (122400, 92, 28), + (122400, 91, 28), + (122400, 90, 28), + (122401, 92, 32), + (122401, 91, 32), + (122401, 90, 32), + (122402, 92, 32), + (122402, 91, 32), + (122402, 90, 32), + (122403, 92, 36), + (122403, 91, 36), + (122403, 90, 36), + (122404, 92, 36), + (122404, 91, 36), + (122404, 90, 36), + (122405, 92, 40), + (122405, 91, 40), + (122405, 90, 40), + (122406, 92, 6), + (122407, 92, 6), + (122408, 92, 10), + (122409, 92, 10), + (122410, 92, 14), + (122411, 92, 14), + (122412, 92, 18), + (122413, 92, 18), + (122414, 92, 22), + (122415, 92, 22), + (122416, 95, 20), + (122416, 92, 26), + (122417, 95, 20), + (122417, 92, 26), + (122418, 95, 30), + (122418, 92, 30), + (122419, 95, 30), + (122419, 92, 30), + (122420, 95, 40), + (122420, 92, 34), + (122421, 95, 40), + (122421, 92, 34), + (122422, 95, 50), + (122422, 92, 40), + (122423, 95, 50), + (122423, 92, 40), + (122424, 95, 60), + (122424, 92, 50), + (122828, 21, 5), + (123731, 95, 12), + (123732, 95, 12), + (123733, 148, 4), + (123733, 95, 14), + (123734, 148, 4), + (123734, 95, 14), + (123735, 148, 8), + (123735, 95, 16), + (123736, 148, 8), + (123736, 95, 16), + (123737, 148, 12), + (123737, 95, 18), + (123737, 134, 4), + (123738, 148, 12), + (123738, 95, 18), + (123738, 134, 4), + (123739, 148, 16), + (123739, 95, 20), + (123739, 134, 8), + (123740, 148, 16), + (123740, 95, 20), + (123740, 134, 8), + (123741, 148, 20), + (123741, 95, 26), + (123741, 134, 16), + (123752, 93, 20), + (123753, 93, 20), + (123754, 93, 26), + (123754, 112, 10), + (123755, 93, 26), + (123755, 112, 10), + (123756, 93, 33), + (123756, 163, 20), + (123756, 112, 15), + (123757, 93, 33), + (123757, 163, 20), + (123757, 112, 15), + (123758, 93, 42), + (123758, 163, 25), + (123758, 112, 20), + (123759, 93, 42), + (123759, 163, 25), + (123759, 112, 20), + (123760, 93, 50), + (123760, 163, 30), + (123760, 112, 25), + (123769, 20, 10), + (123770, 20, 10), + (123771, 136, 15), + (123771, 20, 15), + (123772, 136, 15), + (123772, 20, 15), + (123773, 136, 20), + (123773, 20, 20), + (123773, 122, 20), + (123778, 136, 4), + (123779, 136, 4), + (123780, 136, 9), + (123781, 136, 9), + (123782, 136, 14), + (123783, 136, 14), + (123784, 97, 10), + (123784, 136, 19), + (123785, 97, 10), + (123785, 136, 19), + (123786, 97, 15), + (123786, 136, 24), + (123787, 97, 15), + (123787, 136, 24), + (123788, 151, 20), + (123788, 164, 45), + (123788, 136, 29), + (123801, 17, 10), + (123802, 17, 10), + (123803, 17, 20), + (123804, 17, 20), + (123805, 17, 30), + (123805, 119, 20), + (123806, 17, 30), + (123806, 119, 20), + (123807, 17, 30), + (123807, 119, 30), + (123807, 136, 15), + (123812, 155, 10), + (123813, 155, 10), + (123814, 123, 17), + (123814, 90, 17), + (123815, 123, 17), + (123815, 90, 17), + (123816, 136, 10), + (123816, 112, 20), + (123817, 136, 10), + (123817, 112, 20), + (123818, 134, 30), + (123818, 136, 20), + (123818, 112, 30), + (123819, 134, 10), + (123819, 18, 20), + (123819, 16, 20), + (123820, 134, 10), + (123820, 18, 20), + (123820, 16, 20), + (123821, 134, 20), + (123821, 124, 25), + (123821, 112, 20), + (123822, 134, 20), + (123822, 124, 25), + (123822, 112, 20), + (123823, 134, 20), + (123823, 18, 20), + (123823, 127, 25), + (123824, 134, 20), + (123824, 18, 20), + (123824, 127, 25), + (123825, 134, 30), + (123825, 18, 25), + (123825, 16, 30), + (123834, 18, 10), + (123834, 16, 10), + (123835, 18, 10), + (123835, 16, 10), + (123836, 18, 20), + (123836, 16, 20), + (123841, 120, 15), + (123842, 120, 15), + (123843, 120, 25), + (123843, 122, 25), + (123848, 92, 10), + (123849, 92, 10), + (123850, 92, 15), + (123851, 92, 15), + (123852, 92, 15), + (123852, 20, 15), + (123853, 92, 15), + (123853, 20, 15), + (123854, 92, 30), + (123854, 20, 30), + (123855, 19, 5), + (123856, 19, 5), + (123857, 19, 5), + (123858, 19, 5), + (123859, 19, 10), + (123860, 19, 10), + (123861, 19, 15), + (123862, 19, 15), + (123863, 19, 20), + (123863, 21, 20), + (123864, 19, 20), + (123864, 21, 20), + (123865, 19, 20), + (123865, 21, 25), + (123866, 19, 20), + (123866, 21, 25), + (123867, 19, 25), + (123867, 21, 25), + (123872, 112, 5), + (123873, 112, 5), + (123874, 112, 5), + (123874, 21, 10), + (123875, 112, 5), + (123875, 21, 10), + (123876, 112, 10), + (123876, 21, 15), + (123877, 112, 10), + (123877, 21, 15), + (123878, 112, 15), + (123878, 21, 15), + (123878, 20, 15), + (123883, 148, 30), + (123884, 148, 30), + (123885, 148, 40), + (123890, 18, 25), + (123891, 18, 25), + (123892, 119, 15), + (123892, 18, 25), + (123899, 17, 12), + (123900, 17, 12), + (123901, 17, 18), + (123901, 136, 18), + (123902, 17, 18), + (123902, 136, 18), + (123903, 17, 24), + (123903, 92, 24), + (123903, 136, 32), + (123908, 119, 20), + (123915, 91, 10), + (123916, 91, 10), + (123917, 91, 12), + (123918, 91, 12), + (123919, 94, 25), + (123920, 94, 25), + (123921, 90, 25), + (123922, 90, 25), + (123923, 90, 30), + (123924, 90, 30), + (123925, 92, 30), + (123925, 112, 20), + (123926, 92, 30), + (123926, 112, 20), + (123927, 91, 15), + (123927, 90, 40), + (123932, 120, 35), + (123937, 90, 10), + (123938, 90, 10), + (123939, 90, 30), + (123940, 90, 30), + (123941, 151, 20), + (123941, 136, 20), + (123941, 90, 50), + (123946, 91, 12), + (123946, 90, 12), + (123947, 91, 12), + (123947, 90, 12), + (123948, 119, 14), + (123948, 112, 14), + (123949, 119, 14), + (123949, 112, 14), + (123950, 161, 20), + (123950, 157, 20), + (123951, 161, 20), + (123951, 157, 20), + (123952, 164, 25), + (123952, 20, 20), + (123953, 164, 25), + (123953, 20, 20), + (123954, 128, 20), + (123954, 127, 20), + (123955, 128, 20), + (123955, 127, 20), + (123956, 21, 25), + (123956, 129, 20), + (123957, 21, 25), + (123957, 129, 20), + (123958, 130, 20), + (123958, 90, 30), + (123959, 130, 20), + (123959, 90, 30), + (123960, 130, 30), + (123960, 131, 30), + (123960, 125, 30), + (123973, 90, 30), + (123973, 156, 30), + (123978, 17, 15), + (123978, 151, 15), + (123983, 151, 20), + (123988, 17, 20), + (123989, 17, 20), + (123990, 17, 25), + (123990, 90, 35), + (123991, 155, 5), + (123992, 155, 5), + (123993, 155, 5), + (123994, 155, 5), + (123995, 155, 10), + (123995, 21, 8), + (123996, 155, 10), + (123996, 21, 8), + (123997, 155, 15), + (123997, 16, 12), + (123998, 155, 15), + (123998, 16, 12), + (123999, 155, 20), + (123999, 90, 20), + (123999, 94, 20), + (124000, 155, 20), + (124000, 90, 20), + (124000, 94, 20), + (124001, 155, 25), + (124001, 136, 20), + (124001, 20, 20), + (124002, 155, 25), + (124002, 136, 20), + (124002, 20, 20), + (124003, 154, 30), + (124003, 155, 30), + (124003, 20, 20), + (124013, 113, 16), + (124014, 113, 16), + (124015, 90, 40), + (124015, 113, 30), + (124020, 90, 25), + (124021, 90, 25), + (124022, 154, 20), + (124022, 90, 40), + (124023, 154, 20), + (124023, 90, 40), + (124024, 154, 25), + (124024, 91, 35), + (124024, 90, 50), + (124029, 119, 10), + (124030, 119, 10), + (124031, 119, 15), + (124032, 119, 15), + (124033, 95, 30), + (124033, 119, 10), + (124033, 1, 30), + (124034, 95, 30), + (124034, 119, 10), + (124034, 1, 30), + (124035, 119, 10), + (124035, 136, 30), + (124035, 122, 20), + (124036, 119, 10), + (124036, 136, 30), + (124036, 122, 20), + (124037, 119, 15), + (124037, 167, 30), + (124037, 90, 35), + (124038, 119, 15), + (124038, 167, 30), + (124038, 90, 35), + (124039, 119, 15), + (124039, 154, 30), + (124039, 91, 40), + (124040, 119, 15), + (124040, 154, 30), + (124040, 91, 40), + (124041, 119, 25), + (124041, 221, 50), + (124041, 90, 50), + (124052, 1, 20), + (124064, 1, 20), + (124065, 1, 30), + (124066, 1, 30), + (124067, 1, 40), + (124068, 1, 40), + (124069, 119, 35), + (124069, 1, 50), + (124077, 1, 5), + (124078, 1, 5), + (124079, 1, 10), + (124080, 1, 10), + (124081, 1, 15), + (124082, 1, 15), + (124083, 1, 20), + (124083, 20, 5), + (124084, 1, 20), + (124084, 20, 5), + (124085, 1, 25), + (124085, 20, 10), + (124086, 1, 25), + (124086, 20, 10), + (124087, 1, 30), + (124087, 20, 15), + (124088, 1, 30), + (124088, 20, 15), + (124089, 1, 35), + (124089, 113, 20), + (124089, 20, 20), + (124090, 1, 35), + (124090, 113, 20), + (124090, 20, 20), + (124091, 1, 40), + (124091, 113, 30), + (124091, 20, 25), + (124096, 97, 20), + (124097, 97, 20), + (124098, 97, 30), + (124099, 97, 30), + (124100, 95, 50), + (124100, 113, 25), + (124100, 156, 50), + (124101, 136, 3), + (124102, 136, 3), + (124103, 90, 15), + (124104, 90, 15), + (124105, 154, 30), + (124105, 155, 20), + (124105, 90, 45), + (124112, 21, 6), + (124113, 21, 6), + (124114, 181, 2), + (124114, 21, 12), + (124115, 181, 2), + (124115, 21, 12), + (124116, 181, 4), + (124116, 21, 20), + (124117, 181, 4), + (124117, 21, 20), + (124118, 1, 50), + (124118, 181, 4), + (124118, 94, 30), + (124119, 1, 50), + (124119, 181, 4), + (124119, 94, 30), + (124120, 119, 20), + (124120, 181, 7), + (124120, 21, 20), + (124125, 123, 5), + (124126, 123, 5), + (124127, 123, 10), + (124127, 18, 5), + (124128, 123, 10), + (124128, 18, 5), + (124129, 123, 15), + (124129, 18, 10), + (124130, 123, 15), + (124130, 18, 10), + (124131, 123, 18), + (124131, 1, 15), + (124131, 18, 18), + (124132, 123, 18), + (124132, 1, 15), + (124132, 18, 18), + (124133, 123, 22), + (124133, 1, 25), + (124133, 18, 22), + (124134, 123, 22), + (124134, 1, 25), + (124134, 18, 22), + (124135, 164, 30), + (124135, 123, 30), + (124135, 18, 25), + (124138, 20, 10), + (124139, 20, 10), + (124140, 21, 10), + (124140, 20, 20), + (124141, 21, 10), + (124141, 20, 20), + (124142, 136, 35), + (124142, 21, 20), + (124142, 20, 30), + (124147, 1, 20), + (124147, 18, 8), + (124147, 124, 10), + (124148, 1, 20), + (124148, 18, 8), + (124148, 124, 10), + (124149, 17, 8), + (124149, 119, 12), + (124149, 113, 15), + (124150, 17, 8), + (124150, 119, 12), + (124150, 113, 15), + (124151, 154, 15), + (124151, 155, 10), + (124151, 156, 18), + (124152, 154, 15), + (124152, 155, 10), + (124152, 156, 18), + (124153, 92, 20), + (124153, 91, 20), + (124153, 90, 20), + (124154, 92, 20), + (124154, 91, 20), + (124154, 90, 20), + (124155, 136, 10), + (124155, 162, 10), + (124155, 20, 10), + (124156, 136, 10), + (124156, 162, 10), + (124156, 20, 10), + (124157, 19, 10), + (124157, 221, 25), + (124157, 181, 3), + (124158, 19, 10), + (124158, 221, 25), + (124158, 181, 3), + (124159, 151, 12), + (124159, 181, 4), + (124159, 21, 10), + (124160, 151, 12), + (124160, 181, 4), + (124160, 21, 10), + (124161, 151, 20), + (124161, 164, 30), + (124161, 135, 30), + (124168, 154, 5), + (124168, 19, 5), + (124169, 154, 5), + (124169, 19, 5), + (124170, 154, 10), + (124170, 19, 10), + (124171, 154, 10), + (124171, 19, 10), + (124174, 154, 15), + (124174, 19, 15), + (124175, 154, 15), + (124175, 19, 15), + (124180, 154, 20), + (124180, 19, 20), + (124181, 154, 20), + (124181, 19, 20), + (124182, 154, 30), + (124182, 19, 25), + (124187, 155, 15), + (124188, 155, 15), + (124189, 155, 20), + (124190, 155, 20), + (124191, 155, 25), + (124191, 20, 5), + (124192, 155, 25), + (124192, 20, 5), + (124193, 155, 25), + (124193, 91, 25), + (124193, 20, 10), + (124194, 155, 25), + (124194, 91, 25), + (124194, 20, 10), + (124195, 155, 30), + (124195, 91, 35), + (124195, 20, 15), + (124196, 155, 30), + (124196, 91, 35), + (124196, 20, 15), + (124197, 155, 30), + (124197, 91, 45), + (124197, 20, 20), + (124202, 91, 20), + (124202, 90, 20), + (124203, 91, 20), + (124203, 90, 20), + (124204, 1, 35), + (124204, 18, 10), + (124205, 1, 35), + (124205, 18, 10), + (124206, 316, 3), + (124206, 181, 4), + (124207, 316, 3), + (124207, 181, 4), + (124208, 221, 50), + (124208, 21, 12), + (124209, 221, 50), + (124209, 21, 12), + (124210, 51, 5), + (124210, 1, 50), + (124210, 91, 50), + (124211, 51, 5), + (124211, 1, 50), + (124211, 91, 50), + (124212, 93, 45), + (124212, 94, 45), + (124213, 93, 45), + (124213, 94, 45), + (124214, 17, 20), + (124214, 119, 25), + (124214, 113, 20), + (124215, 17, 20), + (124215, 119, 25), + (124215, 113, 20), + (124216, 136, 30), + (124216, 156, 30), + (124216, 122, 30), + (124221, 151, 20), + (124221, 164, 15), + (124221, 156, 20), + (124222, 151, 20), + (124222, 164, 15), + (124222, 156, 20), + (124223, 155, 25), + (124223, 1, 40), + (124223, 91, 30), + (124224, 155, 25), + (124224, 1, 40), + (124224, 91, 30), + (124225, 92, 40), + (124225, 91, 40), + (124225, 90, 40), + (124226, 92, 40), + (124226, 91, 40), + (124226, 90, 40), + (124227, 128, 20), + (124227, 123, 24), + (124227, 130, 20), + (124228, 128, 20), + (124228, 123, 24), + (124228, 130, 20), + (124229, 19, 20), + (124229, 221, 50), + (124229, 181, 10), + (124234, 1, 25), + (124235, 1, 25), + (124236, 1, 45), + (124237, 1, 45), + (124238, 1, 60), + (124238, 136, 20), + (124239, 1, 60), + (124239, 136, 20), + (124240, 155, 20), + (124240, 1, 80), + (124240, 136, 25), + (124245, 136, 15), + (124246, 136, 15), + (124247, 136, 15), + (124247, 115, 15), + (124248, 136, 15), + (124248, 115, 15), + (124249, 136, 20), + (124249, 115, 20), + (124250, 136, 20), + (124250, 115, 20), + (124251, 136, 25), + (124251, 115, 20), + (124252, 136, 25), + (124252, 115, 20), + (124253, 136, 30), + (124253, 115, 25), + (124254, 136, 30), + (124254, 115, 25), + (124255, 136, 30), + (124255, 115, 30), + (124260, 21, 15), + (124261, 21, 15), + (124262, 21, 25), + (124267, 95, 30), + (124267, 97, 30), + (124268, 95, 30), + (124268, 97, 30), + (124269, 95, 40), + (124269, 97, 40), + (124270, 95, 40), + (124270, 97, 40), + (124271, 95, 50), + (124271, 97, 50), + (124272, 95, 50), + (124272, 97, 50), + (124273, 95, 60), + (124273, 97, 60), + (124274, 95, 60), + (124274, 97, 60), + (124275, 95, 65), + (124275, 97, 65), + (124275, 19, 15), + (124280, 19, 12), + (124280, 18, 12), + (124281, 19, 12), + (124281, 18, 12), + (124282, 19, 18), + (124282, 18, 18), + (124283, 19, 18), + (124283, 18, 18), + (124284, 161, 20), + (124284, 19, 24), + (124284, 18, 24), + (124289, 119, 4), + (124290, 119, 4), + (124291, 119, 9), + (124292, 119, 9), + (124293, 119, 14), + (124294, 119, 14), + (124295, 119, 19), + (124296, 119, 19), + (124297, 119, 24), + (124297, 278, 3), + (124298, 119, 24), + (124298, 278, 3), + (124299, 119, 29), + (124299, 278, 4), + (124300, 119, 29), + (124300, 278, 4), + (124301, 119, 33), + (124301, 278, 5), + (124306, 115, 14), + (124307, 115, 14), + (124308, 278, 3), + (124309, 278, 3), + (124310, 118, 30), + (124310, 119, 30), + (124311, 118, 30), + (124311, 119, 30), + (124312, 17, 30), + (124312, 91, 40), + (124312, 90, 40), + (124317, 154, 5), + (124318, 154, 5), + (124319, 154, 10), + (124320, 154, 10), + (124321, 154, 15), + (124321, 155, 15), + (124322, 154, 15), + (124322, 155, 15), + (124323, 154, 20), + (124323, 155, 20), + (124324, 154, 20), + (124324, 155, 20), + (124325, 154, 25), + (124325, 153, 25), + (124325, 155, 25), + (124326, 154, 25), + (124326, 153, 25), + (124326, 155, 25), + (124327, 154, 30), + (124327, 153, 30), + (124327, 155, 30), + (124332, 278, 1), + (124333, 278, 1), + (124334, 278, 2), + (124335, 278, 2), + (124336, 51, 2), + (124336, 278, 3), + (124337, 51, 2), + (124337, 278, 3), + (124338, 51, 4), + (124338, 278, 4), + (124339, 51, 4), + (124339, 278, 4), + (124340, 51, 6), + (124340, 278, 5), + (124341, 17, 4), + (124342, 17, 4), + (124343, 17, 20), + (124344, 17, 20), + (124345, 17, 25), + (124345, 113, 20), + (124346, 17, 25), + (124346, 113, 20), + (124347, 17, 30), + (124347, 151, 30), + (124347, 113, 30), + (124352, 18, 12), + (124353, 18, 12), + (124354, 18, 18), + (124354, 16, 14), + (124355, 18, 18), + (124355, 16, 14), + (124356, 17, 12), + (124356, 18, 24), + (124356, 16, 18), + (124359, 90, 14), + (124360, 90, 14), + (124361, 51, 4), + (124361, 90, 25), + (124362, 51, 4), + (124362, 90, 25), + (124363, 51, 8), + (124363, 90, 40), + (124368, 16, 15), + (124371, 119, 15), + (124371, 136, 15), + (124376, 20, 6), + (124377, 20, 6), + (124378, 20, 14), + (124379, 20, 14), + (124380, 51, 5), + (124380, 20, 16), + (124381, 51, 5), + (124381, 20, 16), + (124382, 51, 15), + (124382, 164, 30), + (124382, 20, 22), + (124385, 136, 42), + (124390, 1, 50), + (124393, 92, 10), + (124393, 97, 10), + (124394, 92, 10), + (124394, 97, 10), + (124395, 92, 20), + (124395, 97, 20), + (124396, 92, 20), + (124396, 97, 20), + (124397, 92, 30), + (124397, 97, 30), + (124398, 92, 30), + (124398, 97, 30), + (124399, 93, 55), + (124399, 92, 55), + (124399, 97, 55), + (124400, 18, 5), + (124401, 18, 5), + (124402, 18, 10), + (124403, 18, 10), + (124404, 116, 15), + (124404, 18, 15), + (124405, 116, 15), + (124405, 18, 15), + (124406, 116, 20), + (124406, 148, 10), + (124406, 18, 20), + (124411, 116, 5), + (124411, 91, 20), + (124412, 116, 5), + (124412, 91, 20), + (124413, 128, 8), + (124413, 123, 15), + (124413, 124, 10), + (124414, 128, 8), + (124414, 123, 15), + (124414, 124, 10), + (124415, 116, 15), + (124415, 91, 35), + (124416, 116, 15), + (124416, 91, 35), + (124417, 154, 20), + (124417, 155, 25), + (124418, 154, 20), + (124418, 155, 25), + (124419, 152, 30), + (124419, 119, 30), + (124419, 18, 20), + (124422, 319, 1), + (124423, 319, 1), + (124424, 319, 2), + (124425, 319, 2), + (124426, 319, 3), + (124427, 319, 3), + (124428, 319, 4), + (124429, 319, 4), + (124430, 319, 5), + (124435, 128, 4), + (124435, 127, 4), + (124436, 128, 4), + (124436, 127, 4), + (124437, 128, 8), + (124437, 127, 8), + (124438, 128, 8), + (124438, 127, 8), + (124439, 128, 12), + (124439, 127, 12), + (124440, 128, 12), + (124440, 127, 12), + (124441, 128, 16), + (124441, 127, 16), + (124441, 20, 12), + (124442, 128, 16), + (124442, 127, 16), + (124442, 20, 12), + (124443, 128, 20), + (124443, 127, 20), + (124443, 20, 16), + (124448, 129, 12), + (124449, 129, 12), + (124450, 129, 18), + (124451, 129, 18), + (124452, 129, 24), + (124452, 20, 16), + (124457, 126, 30), + (124457, 91, 30), + (124457, 90, 30), + (124458, 92, 1), + (124459, 92, 1), + (124460, 92, 8), + (124461, 92, 8), + (124462, 92, 14), + (124463, 92, 14), + (124464, 92, 20), + (124469, 17, 2), + (124469, 1, 10), + (124470, 17, 2), + (124470, 1, 10), + (124471, 17, 4), + (124471, 1, 15), + (124472, 17, 4), + (124472, 1, 15), + (124473, 17, 6), + (124473, 1, 20), + (124474, 17, 6), + (124474, 1, 20), + (124475, 119, 12), + (124475, 92, 35), + (124475, 1, 35), + (124476, 119, 12), + (124476, 92, 35), + (124476, 1, 35), + (124477, 17, 8), + (124477, 1, 30), + (124477, 20, 3), + (124478, 17, 8), + (124478, 1, 30), + (124478, 20, 3), + (124479, 17, 12), + (124479, 1, 35), + (124479, 20, 6), + (124480, 17, 12), + (124480, 1, 35), + (124480, 20, 6), + (124481, 17, 14), + (124481, 1, 40), + (124481, 20, 10), + (124482, 17, 14), + (124482, 1, 40), + (124482, 20, 10), + (124483, 17, 20), + (124483, 1, 50), + (124483, 20, 15), + (124486, 136, 20), + (124486, 20, 20), + (124489, 167, 12), + (124489, 90, 25), + (124490, 167, 12), + (124490, 90, 25), + (124491, 164, 18), + (124491, 114, 18), + (124492, 164, 18), + (124492, 114, 18), + (124493, 164, 24), + (124493, 114, 24), + (124498, 19, 12), + (124498, 127, 12), + (124499, 19, 12), + (124499, 127, 12), + (124500, 116, 14), + (124500, 130, 16), + (124501, 116, 14), + (124501, 130, 16), + (124502, 165, 26), + (124502, 135, 22), + (124507, 18, 13), + (124507, 16, 13), + (124508, 18, 13), + (124508, 16, 13), + (124509, 91, 40), + (124509, 18, 22), + (124509, 16, 22), + (124514, 19, 4), + (124514, 94, 20), + (124515, 19, 4), + (124515, 94, 20), + (124516, 19, 8), + (124516, 94, 24), + (124517, 19, 8), + (124517, 94, 24), + (124518, 19, 12), + (124518, 94, 29), + (124519, 19, 12), + (124519, 94, 29), + (124520, 19, 16), + (124520, 94, 33), + (124521, 19, 16), + (124521, 94, 33), + (124522, 155, 17), + (124522, 19, 20), + (124522, 94, 38), + (124523, 155, 17), + (124523, 19, 20), + (124523, 94, 38), + (124524, 155, 21), + (124524, 19, 24), + (124524, 94, 45), + (124525, 155, 21), + (124525, 19, 24), + (124525, 94, 45), + (124526, 155, 25), + (124526, 19, 28), + (124526, 94, 51), + (124527, 155, 25), + (124527, 19, 28), + (124527, 94, 51), + (124528, 155, 30), + (124528, 19, 30), + (124528, 94, 58), + (124531, 116, 10), + (124531, 114, 10), + (124532, 116, 10), + (124532, 114, 10), + (124533, 116, 22), + (124533, 156, 32), + (124533, 114, 22), + (124538, 90, 30), + (124539, 90, 30), + (124540, 90, 40), + (124541, 90, 40), + (124542, 90, 50), + (124543, 90, 50), + (124544, 90, 60), + (124544, 18, 25), + (124545, 20, 5), + (124546, 20, 5), + (124547, 20, 25), + (124552, 119, 14), + (124552, 114, 12), + (124553, 119, 14), + (124553, 114, 12), + (124554, 119, 22), + (124554, 114, 24), + (124555, 119, 22), + (124555, 114, 24), + (124556, 119, 30), + (124556, 136, 28), + (124556, 114, 28), + (124557, 51, 3), + (124558, 51, 3), + (124559, 51, 8), + (124621, 1, 40), + (124622, 1, 40), + (124623, 1, 80), + (124643, 95, 15), + (124644, 95, 15), + (124645, 95, 20), + (124646, 95, 20), + (124647, 95, 25), + (124648, 95, 25), + (124649, 95, 30), + (124650, 95, 30), + (124651, 95, 35), + (124652, 95, 35), + (124653, 95, 40), + (124654, 95, 40), + (124655, 95, 45), + (124656, 95, 45), + (124657, 95, 50), + (124658, 95, 50), + (124659, 95, 55), + (124660, 95, 55), + (124661, 95, 60), + (125034, 164, 5), + (125035, 164, 5), + (125036, 164, 10), + (125037, 164, 10), + (125038, 164, 15), + (125039, 164, 15), + (125040, 164, 20), + (125041, 164, 20), + (125042, 164, 25), + (125053, 90, 100), + (125054, 90, 100), + (125055, 90, 140), + (125056, 90, 140), + (125057, 154, 10), + (125057, 90, 180), + (125058, 154, 10), + (125058, 90, 180), + (125059, 154, 20), + (125059, 90, 220), + (125059, 319, 1), + (125060, 154, 20), + (125060, 90, 220), + (125060, 319, 1), + (125061, 154, 30), + (125061, 90, 280), + (125061, 319, 2), + (125093, 1, 50), + (125094, 1, 50), + (125095, 1, 100), + (125096, 1, 100), + (125097, 1, 150), + (125098, 1, 150), + (125099, 1, 200), + (125100, 105, 5), + (125100, 154, 2), + (125101, 105, 5), + (125101, 154, 2), + (125102, 105, 10), + (125102, 154, 4), + (125103, 105, 10), + (125103, 154, 4), + (125104, 105, 15), + (125104, 154, 6), + (125105, 105, 15), + (125105, 154, 6), + (125106, 105, 20), + (125106, 154, 10), + (125107, 105, 20), + (125107, 154, 10), + (125108, 105, 25), + (125108, 154, 15), + (125109, 105, 25), + (125109, 154, 15), + (125110, 105, 30), + (125110, 154, 20), + (125445, 128, 2), + (125445, 130, 2), + (125445, 127, 2), + (125446, 128, 2), + (125446, 130, 2), + (125446, 127, 2), + (125447, 128, 15), + (125447, 130, 15), + (125447, 127, 15), + (125448, 128, 15), + (125448, 130, 15), + (125448, 127, 15), + (125449, 128, 20), + (125449, 130, 20), + (125449, 127, 20), + (125450, 128, 20), + (125450, 130, 20), + (125450, 127, 20), + (125451, 128, 25), + (125451, 130, 25), + (125451, 127, 25), + (125452, 128, 25), + (125452, 130, 25), + (125452, 127, 25), + (125453, 128, 30), + (125453, 130, 30), + (125453, 127, 30), + (125454, 18, 2), + (125454, 16, 2), + (125455, 18, 2), + (125455, 16, 2), + (125456, 18, 8), + (125456, 16, 8), + (125457, 18, 8), + (125457, 16, 8), + (125458, 18, 20), + (125458, 16, 20), + (128499, 20, 5), + (128500, 20, 5), + (128501, 136, 15), + (128501, 20, 20), + (128786, 1, 65), + (128786, 18, 25), + (128791, 93, 30), + (129023, 1, 80), + (129024, 1, 80), + (129025, 1, 140), + (129045, 146, 7), + (129046, 146, 7), + (129047, 146, 10), + (129048, 146, 10), + (129049, 146, 13), + (129050, 146, 13), + (129051, 146, 16), + (129052, 146, 16), + (129053, 146, 19), + (129054, 146, 19), + (129055, 146, 22), + (129056, 146, 22), + (129057, 146, 25), + (129058, 146, 25), + (129059, 146, 28), + (129061, 146, 31), + (129062, 146, 31), + (129063, 146, 34), + (129073, 92, 25), + (129074, 92, 25), + (129075, 92, 35), + (129076, 92, 35), + (129077, 92, 45), + (129077, 19, 10), + (129078, 92, 45), + (129078, 19, 10), + (129079, 92, 55), + (129079, 19, 20), + (129080, 92, 55), + (129080, 19, 20), + (129081, 92, 65), + (129081, 19, 30), + (129638, 136, 3), + (129639, 136, 3), + (129640, 136, 6), + (129641, 136, 6), + (129642, 136, 10), + (129643, 136, 10), + (129644, 136, 15), + (129645, 136, 25), + (129646, 136, 30), + (129647, 136, 30), + (129648, 136, 35), + (129649, 136, 35), + (129650, 136, 40), + (129651, 136, 40), + (129652, 136, 45), + (129653, 136, 45), + (129654, 136, 50), + (129655, 136, 50), + (129656, 136, 55), + (130046, 1, 20), + (130046, 17, 20), + (130048, 1, 40), + (130048, 17, 40), + (130049, 1, 40), + (130049, 17, 40), + (130050, 181, 20), + (130050, 1, 60), + (130050, 17, 60), + (135719, 91, 10), + (137072, 216, 200), + (137072, 225, 200), + (137072, 208, 200), + (137072, 217, 200), + (137072, 219, 200), + (137072, 207, 200), + (137072, 205, 200), + (137072, 206, 200), + (137669, 156, 1000), + (137669, 216, 200), + (137669, 225, 200), + (137669, 208, 200), + (137669, 217, 200), + (137669, 219, 200), + (137669, 207, 200), + (137669, 205, 200), + (137669, 206, 200), + (142631, 94, 1), + (142631, 93, 1), + (142631, 91, 1), + (142631, 92, 1), + (142631, 90, 1), + (142631, 96, 1), + (142631, 97, 1), + (142631, 95, 1), + (142632, 93, 5), + (142632, 95, 5), + (142632, 92, 5), + (142632, 97, 5), + (142632, 123, 1), + (142632, 91, 5), + (142632, 96, 5), + (142632, 90, 5), + (142632, 94, 3), + (142632, 124, 1), + (142633, 96, 468), + (142633, 94, 546), + (142633, 93, 468), + (142633, 97, 390), + (142633, 95, 390), + (142633, 90, 625), + (142633, 92, 625), + (142633, 91, 625), + (142634, 93, 562), + (142634, 95, 468), + (142634, 92, 750), + (142634, 97, 468), + (142634, 91, 750), + (142634, 96, 562), + (142634, 90, 750), + (142634, 94, 656), + (142635, 96, 281), + (142635, 94, 328), + (142635, 93, 281), + (142635, 97, 234), + (142635, 95, 234), + (142635, 90, 375), + (142635, 92, 375), + (142635, 91, 375), + (142636, 96, 750), + (142636, 94, 875), + (142636, 93, 750), + (142636, 97, 625), + (142636, 95, 625), + (142636, 90, 1000), + (142636, 92, 1000), + (142636, 91, 1000), + (142637, 96, 187), + (142637, 94, 218), + (142637, 93, 187), + (142637, 97, 156), + (142637, 95, 156), + (142637, 90, 250), + (142637, 91, 250), + (142637, 92, 250), + (142638, 93, 3750), + (142638, 95, 4375), + (142638, 92, 5000), + (142638, 97, 4375), + (142638, 91, 5000), + (142638, 96, 3125), + (142638, 90, 5000), + (142638, 94, 3750), + (142640, 93, 390), + (142640, 95, 546), + (142640, 92, 625), + (142640, 97, 546), + (142640, 91, 625), + (142640, 96, 546), + (142640, 90, 625), + (142640, 94, 156), + (142641, 93, 3), + (142641, 95, 3), + (142641, 92, 3), + (142641, 97, 3), + (142641, 91, 3), + (142641, 96, 3), + (142641, 90, 3), + (142641, 94, 1), + (142642, 93, 468), + (142642, 95, 656), + (142642, 92, 750), + (142642, 97, 656), + (142642, 91, 750), + (142642, 96, 656), + (142642, 90, 750), + (142642, 94, 187), + (142643, 94, 62), + (142643, 93, 156), + (142643, 91, 250), + (142643, 92, 250), + (142643, 90, 250), + (142643, 96, 218), + (142643, 97, 218), + (142643, 95, 218), + (142644, 94, 1), + (142644, 93, 1), + (142644, 91, 1), + (142644, 92, 1), + (142644, 90, 1), + (142644, 96, 1), + (142644, 97, 1), + (142644, 95, 1), + (142645, 94, 93), + (142645, 93, 234), + (142645, 91, 375), + (142645, 92, 375), + (142645, 90, 375), + (142645, 96, 328), + (142645, 97, 328), + (142645, 95, 328), + (142646, 93, 925), + (142646, 95, 746), + (142646, 92, 746), + (142646, 97, 746), + (142646, 123, 10), + (142646, 91, 1125), + (142646, 96, 746), + (142646, 90, 925), + (142646, 94, 356), + (142646, 124, 10), + (142647, 91, 1000), + (142647, 92, 1000), + (142647, 93, 625), + (142647, 94, 250), + (142647, 90, 1000), + (142647, 96, 875), + (142647, 97, 875), + (142647, 95, 875), + (142648, 91, 5), + (142648, 92, 5), + (142648, 93, 5), + (142648, 94, 1), + (142648, 90, 5), + (142648, 96, 5), + (142648, 97, 5), + (142648, 95, 5), + (142649, 93, 625), + (142649, 95, 875), + (142649, 92, 1000), + (142649, 97, 875), + (142649, 91, 1000), + (142649, 96, 875), + (142649, 90, 1000), + (142649, 94, 250), + (142650, 93, 5), + (142650, 95, 5), + (142650, 92, 5), + (142650, 97, 5), + (142650, 91, 5), + (142650, 96, 5), + (142650, 90, 5), + (142650, 94, 1), + (142651, 94, 62), + (142651, 93, 156), + (142651, 91, 250), + (142651, 92, 250), + (142651, 90, 250), + (142651, 96, 218), + (142651, 97, 218), + (142651, 95, 218), + (142652, 94, 1), + (142652, 93, 1), + (142652, 91, 1), + (142652, 92, 1), + (142652, 90, 1), + (142652, 96, 1), + (142652, 97, 1), + (142652, 95, 1), + (142653, 93, 1), + (142653, 95, 5), + (142653, 92, 5), + (142653, 97, 5), + (142653, 91, 5), + (142653, 96, 5), + (142653, 90, 5), + (142653, 94, 1), + (142654, 93, 93), + (142654, 95, 390), + (142654, 92, 625), + (142654, 97, 390), + (142654, 91, 625), + (142654, 96, 468), + (142654, 90, 625), + (142654, 94, 93), + (142655, 93, 1), + (142655, 95, 3), + (142655, 92, 3), + (142655, 97, 3), + (142655, 91, 3), + (142655, 96, 3), + (142655, 90, 3), + (142655, 94, 1), + (142656, 93, 112), + (142656, 95, 468), + (142656, 92, 750), + (142656, 97, 468), + (142656, 91, 750), + (142656, 96, 562), + (142656, 90, 750), + (142656, 94, 112), + (142657, 94, 37), + (142657, 93, 37), + (142657, 91, 250), + (142657, 92, 250), + (142657, 90, 250), + (142657, 96, 187), + (142657, 97, 156), + (142657, 95, 156), + (142658, 94, 1), + (142658, 93, 1), + (142658, 91, 1), + (142658, 92, 1), + (142658, 90, 1), + (142658, 96, 1), + (142658, 97, 1), + (142658, 95, 1), + (142659, 94, 56), + (142659, 93, 56), + (142659, 91, 375), + (142659, 92, 375), + (142659, 90, 375), + (142659, 96, 281), + (142659, 97, 234), + (142659, 95, 234), + (142660, 94, 1), + (142660, 93, 1), + (142660, 91, 1), + (142660, 92, 1), + (142660, 90, 1), + (142660, 96, 1), + (142660, 97, 1), + (142660, 95, 1), + (142661, 91, 1000), + (142661, 92, 1000), + (142661, 93, 150), + (142661, 94, 150), + (142661, 90, 1000), + (142661, 96, 750), + (142661, 97, 625), + (142661, 95, 625), + (142662, 91, 5), + (142662, 92, 5), + (142662, 93, 1), + (142662, 94, 1), + (142662, 90, 5), + (142662, 96, 5), + (142662, 97, 5), + (142662, 95, 5), + (142663, 93, 150), + (142663, 95, 625), + (142663, 92, 1000), + (142663, 97, 625), + (142663, 91, 1000), + (142663, 96, 750), + (142663, 90, 1000), + (142663, 94, 150), + (142664, 94, 37), + (142664, 93, 37), + (142664, 91, 250), + (142664, 92, 250), + (142664, 90, 250), + (142664, 96, 187), + (142664, 97, 156), + (142664, 95, 156), + (142665, 94, 1), + (142665, 93, 1), + (142665, 91, 1), + (142665, 92, 1), + (142665, 90, 1), + (142665, 96, 1), + (142665, 97, 1), + (142665, 95, 1), + (142666, 93, 125), + (142666, 95, 546), + (142666, 92, 625), + (142666, 97, 546), + (142666, 91, 625), + (142666, 96, 546), + (142666, 90, 625), + (142666, 94, 125), + (142667, 93, 1), + (142667, 95, 3), + (142667, 92, 3), + (142667, 97, 3), + (142667, 91, 3), + (142667, 96, 3), + (142667, 90, 3), + (142667, 94, 1), + (142668, 93, 150), + (142668, 95, 656), + (142668, 92, 750), + (142668, 97, 656), + (142668, 91, 750), + (142668, 96, 656), + (142668, 90, 750), + (142668, 94, 150), + (142669, 94, 50), + (142669, 93, 50), + (142669, 91, 250), + (142669, 92, 250), + (142669, 90, 250), + (142669, 96, 218), + (142669, 97, 218), + (142669, 95, 218), + (142670, 94, 1), + (142670, 93, 1), + (142670, 91, 1), + (142670, 92, 1), + (142670, 90, 1), + (142670, 96, 1), + (142670, 97, 1), + (142670, 95, 1), + (142671, 94, 75), + (142671, 93, 75), + (142671, 91, 375), + (142671, 92, 375), + (142671, 90, 375), + (142671, 96, 328), + (142671, 97, 328), + (142671, 95, 328), + (142672, 94, 1), + (142672, 93, 1), + (142672, 91, 1), + (142672, 92, 1), + (142672, 90, 1), + (142672, 96, 1), + (142672, 97, 1), + (142672, 95, 1), + (142673, 93, 200), + (142673, 95, 875), + (142673, 92, 1000), + (142673, 97, 875), + (142673, 91, 1000), + (142673, 96, 875), + (142673, 90, 1000), + (142673, 94, 200), + (142674, 93, 1), + (142674, 95, 5), + (142674, 92, 5), + (142674, 97, 5), + (142674, 91, 5), + (142674, 96, 5), + (142674, 90, 5), + (142674, 94, 1), + (142675, 93, 200), + (142675, 95, 875), + (142675, 92, 1000), + (142675, 97, 875), + (142675, 91, 1000), + (142675, 96, 875), + (142675, 90, 1000), + (142675, 94, 200), + (142676, 93, 1), + (142676, 95, 5), + (142676, 92, 5), + (142676, 97, 5), + (142676, 91, 5), + (142676, 96, 5), + (142676, 90, 5), + (142676, 94, 1), + (142677, 94, 50), + (142677, 93, 50), + (142677, 91, 250), + (142677, 92, 250), + (142677, 90, 250), + (142677, 96, 218), + (142677, 97, 218), + (142677, 95, 218), + (142678, 94, 1), + (142678, 93, 1), + (142678, 91, 1), + (142678, 92, 1), + (142678, 90, 1), + (142678, 96, 1), + (142678, 97, 1), + (142678, 95, 1), + (142679, 93, 468), + (142679, 95, 125), + (142679, 92, 625), + (142679, 97, 546), + (142679, 91, 625), + (142679, 96, 546), + (142679, 90, 546), + (142679, 94, 390), + (142680, 96, 546), + (142680, 93, 468), + (142680, 97, 546), + (142680, 95, 125), + (142680, 94, 125), + (142680, 91, 625), + (142680, 92, 625), + (142680, 90, 546), + (142681, 93, 562), + (142681, 95, 150), + (142681, 92, 750), + (142681, 97, 656), + (142681, 91, 750), + (142681, 96, 656), + (142681, 90, 656), + (142681, 94, 468), + (142682, 93, 562), + (142682, 95, 150), + (142682, 92, 750), + (142682, 97, 656), + (142682, 91, 750), + (142682, 96, 656), + (142682, 90, 656), + (142682, 94, 150), + (142683, 93, 187), + (142683, 95, 50), + (142683, 92, 250), + (142683, 97, 218), + (142683, 91, 250), + (142683, 96, 218), + (142683, 90, 218), + (142683, 94, 156), + (142684, 96, 218), + (142684, 93, 187), + (142684, 97, 218), + (142684, 95, 50), + (142684, 90, 218), + (142684, 92, 250), + (142684, 94, 50), + (142684, 91, 250), + (142685, 96, 328), + (142685, 93, 281), + (142685, 97, 328), + (142685, 95, 75), + (142685, 92, 375), + (142685, 91, 375), + (142685, 94, 234), + (142685, 90, 328), + (142686, 96, 328), + (142686, 93, 281), + (142686, 97, 328), + (142686, 95, 75), + (142686, 92, 375), + (142686, 91, 375), + (142686, 94, 75), + (142686, 90, 328), + (142687, 93, 750), + (142687, 95, 200), + (142687, 92, 1000), + (142687, 97, 825), + (142687, 91, 1000), + (142687, 96, 825), + (142687, 90, 825), + (142687, 94, 625), + (142688, 96, 875), + (142688, 93, 750), + (142688, 97, 875), + (142688, 95, 200), + (142688, 94, 200), + (142688, 91, 1000), + (142688, 92, 1000), + (142688, 90, 875), + (142689, 93, 187), + (142689, 95, 50), + (142689, 92, 250), + (142689, 97, 218), + (142689, 91, 250), + (142689, 96, 218), + (142689, 90, 218), + (142689, 94, 156), + (142690, 96, 218), + (142690, 93, 187), + (142690, 97, 218), + (142690, 95, 50), + (142690, 92, 250), + (142690, 90, 218), + (142690, 94, 50), + (142690, 91, 250), + (142691, 93, 625), + (142691, 95, 546), + (142691, 92, 546), + (142691, 97, 546), + (142691, 123, 10), + (142691, 91, 625), + (142691, 96, 546), + (142691, 90, 625), + (142691, 94, 156), + (142691, 124, 10), + (142692, 93, 750), + (142692, 95, 656), + (142692, 92, 656), + (142692, 97, 656), + (142692, 123, 10), + (142692, 91, 750), + (142692, 96, 656), + (142692, 90, 750), + (142692, 94, 187), + (142692, 124, 10), + (142693, 93, 250), + (142693, 95, 218), + (142693, 92, 218), + (142693, 97, 218), + (142693, 123, 10), + (142693, 91, 250), + (142693, 96, 218), + (142693, 90, 250), + (142693, 94, 62), + (142693, 124, 10), + (142694, 93, 375), + (142694, 95, 328), + (142694, 92, 328), + (142694, 97, 328), + (142694, 123, 10), + (142694, 91, 375), + (142694, 96, 328), + (142694, 90, 375), + (142694, 94, 93), + (142694, 124, 10), + (142695, 93, 1000), + (142695, 95, 875), + (142695, 92, 875), + (142695, 97, 875), + (142695, 123, 10), + (142695, 91, 1000), + (142695, 96, 875), + (142695, 90, 1000), + (142695, 94, 250), + (142695, 124, 10), + (142696, 93, 250), + (142696, 95, 218), + (142696, 92, 218), + (142696, 97, 218), + (142696, 123, 10), + (142696, 91, 250), + (142696, 96, 218), + (142696, 90, 250), + (142696, 94, 62), + (142696, 124, 10), + (144058, 135, 30), + (144059, 135, 30), + (144060, 93, 30), + (144060, 135, 30), + (144061, 93, 30), + (144061, 135, 30), + (144062, 93, 30), + (144062, 135, 30), + (144062, 94, 30), + (149901, 96, 55), + (149901, 91, 95), + (149902, 97, 1), + (149902, 94, 1), + (149903, 94, 125), + (149904, 94, 1), + (149905, 93, 55), + (149905, 90, 95), + (149906, 93, 1), + (149906, 90, 1), + (149907, 90, 125), + (149908, 90, 1), + (149909, 90, 55), + (149909, 96, 95), + (149910, 90, 1), + (149910, 96, 1), + (149911, 96, 125), + (149912, 96, 1), + (149913, 97, 55), + (149913, 94, 95), + (149914, 96, 1), + (149914, 91, 1), + (149915, 91, 125), + (149916, 91, 1), + (149917, 92, 55), + (149917, 97, 95), + (149918, 92, 1), + (149918, 97, 1), + (149919, 97, 125), + (149920, 97, 1), + (149921, 95, 55), + (149921, 92, 95), + (149922, 95, 1), + (149922, 92, 1), + (149923, 92, 125), + (149924, 92, 1), + (149925, 94, 55), + (149925, 95, 95), + (149926, 94, 1), + (149926, 95, 1), + (149927, 95, 125), + (149928, 95, 1), + (149929, 91, 55), + (149929, 93, 95), + (149930, 91, 1), + (149930, 93, 1), + (149931, 93, 125), + (149932, 93, 1), + (150006, 276, -400), + (150008, 118, -500), + (150008, 119, -500), + (150008, 120, -500), + (150008, 149, -500), + (150009, 19, -40), + (150013, 19, -25), + (150015, 118, -1950), + (150015, 119, -1950), + (150015, 120, -1950), + (150015, 149, -1950), + (150017, 19, -15), + (150019, 205, 98), + (150019, 206, 98), + (150019, 207, 98), + (150019, 208, 98), + (150019, 216, 98), + (150019, 217, 98), + (150019, 219, 98), + (150019, 225, 98), + (150020, 118, 1000), + (150020, 119, 1000), + (150020, 120, 1000), + (150020, 149, 1000), + (150020, 279, 100), + (150020, 280, 100), + (150020, 311, 100), + (150020, 51, 200), + (150022, 118, -2000), + (150022, 119, -2000), + (150022, 120, -2000), + (150022, 149, -2000), + (150022, 156, -500), + (150176, 118, 6), + (150176, 181, 2), + (150177, 118, 6), + (150177, 181, 2), + (150178, 118, 9), + (150178, 181, 3), + (150179, 118, 9), + (150179, 181, 3), + (150180, 118, 12), + (150180, 181, 4), + (150181, 118, 12), + (150181, 181, 4), + (150182, 118, 15), + (150182, 181, 5), + (150183, 118, 15), + (150183, 181, 5), + (150184, 118, 18), + (150184, 181, 10), + (150185, 118, 18), + (150185, 181, 10), + (150186, 118, 21), + (150186, 181, 12), + (150187, 118, 21), + (150187, 181, 12), + (150188, 118, 24), + (150188, 181, 15), + (150189, 118, 24), + (150189, 181, 15), + (150190, 118, 27), + (150190, 181, 17), + (150191, 118, 27), + (150191, 181, 17), + (150192, 118, 30), + (150192, 181, 20), + (150254, 91, 15), + (150254, 145, 5), + (150255, 91, 15), + (150255, 145, 5), + (150256, 91, 25), + (150256, 145, 15), + (150257, 91, 25), + (150257, 145, 15), + (150258, 91, 35), + (150258, 145, 20), + (150259, 91, 35), + (150259, 145, 20), + (150260, 91, 45), + (150260, 145, 25), + (150261, 91, 45), + (150261, 145, 25), + (150262, 91, 55), + (150262, 145, 30), + (150263, 91, 55), + (150263, 145, 30), + (150264, 91, 70), + (150264, 145, 35), + (150265, 91, 70), + (150265, 145, 35), + (150266, 91, 80), + (150266, 145, 40), + (150267, 91, 80), + (150267, 145, 40), + (150268, 91, 90), + (150268, 145, 45), + (150269, 91, 90), + (150269, 145, 45), + (150270, 91, 100), + (150270, 145, 50), + (150271, 91, 100), + (150271, 145, 50), + (150272, 91, 110), + (150272, 145, 55), + (150503, 205, 100), + (150503, 206, 100), + (150503, 207, 100), + (150503, 208, 100), + (150503, 216, 100), + (150503, 217, 100), + (150503, 219, 100), + (150503, 225, 100), + (150503, 156, -2500), + (150503, 164, -2000), + (150504, 205, 100), + (150504, 206, 100), + (150504, 207, 100), + (150504, 208, 100), + (150504, 216, 100), + (150504, 217, 100), + (150504, 219, 100), + (150504, 225, 100), + (150504, 156, -2500), + (150504, 164, -2000), + (150632, 97, 331), + (150632, 93, 331), + (150632, 94, 331), + (150632, 90, 331), + (150632, 92, 331), + (150632, 91, 331), + (150632, 96, 331), + (150632, 95, 331), + (150632, 1, 350), + (150632, 168, 140), + (150633, 96, 17), + (150633, 95, 17), + (150633, 97, 17), + (150633, 93, 17), + (150633, 94, 17), + (150633, 90, 17), + (150633, 92, 17), + (150633, 91, 17), + (150633, 1, 27), + (150633, 168, 18), + (150634, 96, 138), + (150634, 95, 138), + (150634, 97, 138), + (150634, 93, 138), + (150634, 94, 138), + (150634, 90, 138), + (150634, 92, 138), + (150634, 91, 138), + (150634, 1, 207), + (150634, 168, 96), + (150635, 96, 79), + (150635, 95, 79), + (150635, 97, 79), + (150635, 93, 79), + (150635, 94, 79), + (150635, 90, 79), + (150635, 92, 79), + (150635, 91, 79), + (150635, 1, 120), + (150635, 168, 62), + (150636, 96, 230), + (150636, 95, 230), + (150636, 97, 230), + (150636, 93, 230), + (150636, 94, 230), + (150636, 90, 230), + (150636, 92, 230), + (150636, 91, 230), + (150636, 1, 307), + (150636, 168, 129), + (150637, 96, 31), + (150637, 95, 31), + (150637, 97, 31), + (150637, 93, 31), + (150637, 94, 31), + (150637, 90, 31), + (150637, 92, 31), + (150637, 91, 31), + (150637, 1, 50), + (150637, 168, 32), + (150638, 96, 96), + (150638, 95, 96), + (150638, 97, 96), + (150638, 93, 96), + (150638, 94, 96), + (150638, 90, 96), + (150638, 92, 96), + (150638, 91, 96), + (150638, 1, 150), + (150638, 168, 74), + (150639, 96, 47), + (150639, 95, 47), + (150639, 97, 47), + (150639, 93, 47), + (150639, 94, 47), + (150639, 90, 47), + (150639, 92, 47), + (150639, 91, 47), + (150639, 1, 75), + (150639, 168, 44), + (150640, 96, 116), + (150640, 95, 116), + (150640, 97, 116), + (150640, 93, 116), + (150640, 94, 116), + (150640, 90, 116), + (150640, 92, 116), + (150640, 91, 116), + (150640, 1, 177), + (150640, 168, 85), + (150641, 96, 167), + (150641, 95, 167), + (150641, 97, 167), + (150641, 93, 167), + (150641, 94, 167), + (150641, 90, 167), + (150641, 92, 167), + (150641, 91, 167), + (150641, 1, 246), + (150641, 168, 111), + (150642, 96, 61), + (150642, 95, 61), + (150642, 97, 61), + (150642, 93, 61), + (150642, 94, 61), + (150642, 90, 61), + (150642, 92, 61), + (150642, 91, 61), + (150642, 1, 92), + (150642, 168, 51), + (150643, 96, 200), + (150643, 95, 200), + (150643, 97, 200), + (150643, 93, 200), + (150643, 94, 200), + (150643, 90, 200), + (150643, 92, 200), + (150643, 91, 200), + (150643, 1, 281), + (150643, 168, 122), + (151405, 156, 500), + (151405, 205, 1000), + (151405, 206, 1000), + (151405, 207, 1000), + (151405, 208, 1000), + (151405, 216, 1000), + (151405, 217, 1000), + (151405, 218, 1000), + (151405, 219, 1000), + (151405, 225, 1000), + (151405, 93, 5000), + (151405, 95, 5000), + (151405, 92, 5000), + (151405, 97, 5000), + (151405, 91, 5000), + (151405, 168, 5000), + (151405, 96, 5000), + (151405, 90, 5000), + (151405, 94, 5000), + (151405, 1, 100000), + (151405, 27, 100000), + (151405, 343, 100000), + (151405, 364, 100000), + (151665, 279, 1), + (151665, 1, 1), + (151666, 279, 28), + (151666, 1, 100), + (151672, 126, 1), + (151672, 181, 2), + (151673, 126, 5), + (151673, 181, 4), + (151674, 126, 10), + (151674, 181, 8), + (151675, 126, 12), + (151675, 181, 16), + (151676, 126, 30), + (151676, 181, 32), + (151677, 126, 50), + (151677, 181, 64), + (151680, 128, 1), + (151680, 93, 5), + (151680, 95, 5), + (151680, 92, 5), + (151680, 97, 1), + (151680, 19, 1), + (151680, 130, 1), + (151680, 131, 1), + (151680, 127, 1), + (151680, 91, 5), + (151680, 160, 1), + (151680, 149, 1), + (151680, 96, 5), + (151680, 90, 5), + (151680, 129, 1), + (151680, 94, 1), + (151680, 122, 1), + (151681, 128, 20), + (151681, 93, 500), + (151681, 95, 500), + (151681, 92, 750), + (151681, 97, 175), + (151681, 19, 20), + (151681, 130, 20), + (151681, 131, 20), + (151681, 127, 20), + (151681, 91, 875), + (151681, 160, 50), + (151681, 149, 50), + (151681, 96, 500), + (151681, 90, 875), + (151681, 129, 20), + (151681, 94, 175), + (151681, 122, 20), + (151685, 93, 1), + (151685, 95, 1), + (151685, 92, 1), + (151685, 97, 1), + (151685, 134, 1), + (151685, 91, 1), + (151685, 101, 1), + (151685, 96, 1), + (151685, 90, 1), + (151685, 94, 1), + (151686, 93, 37), + (151686, 95, 37), + (151686, 92, 218), + (151686, 97, 218), + (151686, 134, 40), + (151686, 91, 250), + (151686, 101, 20), + (151686, 96, 37), + (151686, 90, 250), + (151686, 94, 37), + (151692, 90, 2), + (151692, 205, 1), + (151693, 90, 400), + (151693, 205, 6), + (151694, 45, 1), + (151694, 94, 2), + (151695, 45, 2), + (151695, 94, 30), + (151696, 45, 3), + (151696, 94, 60), + (151697, 45, 4), + (151697, 94, 120), + (151698, 45, 5), + (151698, 94, 180), + (151699, 45, 6), + (151699, 94, 300), + (151702, 45, 1), + (151702, 19, 1), + (151703, 45, 2), + (151703, 19, 4), + (151704, 45, 3), + (151704, 19, 8), + (151705, 45, 4), + (151705, 19, 16), + (151706, 45, 5), + (151706, 19, 24), + (151707, 45, 6), + (151707, 19, 40), + (151708, 160, 1), + (151708, 157, 1), + (151708, 158, 1), + (151708, 163, 1), + (151708, 159, 1), + (151709, 160, 15), + (151709, 157, 15), + (151709, 158, 15), + (151709, 163, 15), + (151709, 159, 15), + (151714, 16, 1), + (151715, 16, 14), + (151716, 156, 1), + (151716, 149, 1), + (151716, 120, 1), + (151716, 119, 1), + (151716, 118, 1), + (151717, 156, 15), + (151717, 149, 15), + (151717, 120, 15), + (151717, 119, 15), + (151717, 118, 15), + (151718, 142, 1), + (151718, 16, 1), + (151719, 142, 12), + (151719, 16, 10), + (151731, 129, 1), + (151731, 181, 2), + (151732, 129, 2), + (151732, 181, 4), + (151733, 129, 4), + (151733, 181, 8), + (151734, 129, 6), + (151734, 181, 16), + (151735, 129, 8), + (151735, 181, 32), + (151736, 129, 10), + (151736, 181, 64), + (151737, 124, 1), + (151737, 123, 1), + (151738, 124, 40), + (151738, 123, 40), + (151739, 160, 1), + (151739, 161, 1), + (151739, 91, 3), + (151739, 90, 3), + (151739, 94, 3), + (151739, 92, 3), + (151739, 95, 1), + (151739, 97, 1), + (151739, 96, 1), + (151739, 93, 1), + (151740, 160, 30), + (151740, 161, 15), + (151740, 91, 656), + (151740, 90, 750), + (151740, 94, 656), + (151740, 92, 750), + (151740, 95, 150), + (151740, 97, 150), + (151740, 96, 150), + (151740, 93, 150), + (151743, 152, 1), + (151744, 152, 100), + (151745, 278, 2), + (151745, 150, 5), + (151745, 112, 5), + (151746, 278, 28), + (151746, 150, 15), + (151746, 112, 15), + (151769, 122, 90), + (151770, 127, 90), + (151771, 129, 90), + (151772, 128, 90), + (151773, 130, 90), + (151774, 131, 90), + (151775, 127, 25), + (151776, 129, 25), + (151777, 122, 25), + (151778, 130, 25), + (151779, 131, 25), + (151780, 128, 25), + (151884, 1, 100000), + (151884, 27, 100000), + (151884, 343, 100000), + (151884, 205, 200), + (151884, 206, 200), + (151884, 207, 200), + (151884, 208, 200), + (151884, 216, 200), + (151884, 217, 200), + (151884, 219, 200), + (151884, 225, 200), + (151884, 364, 100000), + (151885, 156, 500), + (151885, 205, 1000), + (151885, 206, 1000), + (151885, 207, 1000), + (151885, 208, 1000), + (151885, 216, 1000), + (151885, 217, 1000), + (151885, 218, 1000), + (151885, 219, 1000), + (151885, 225, 1000), + (151885, 93, 5000), + (151885, 95, 5000), + (151885, 92, 5000), + (151885, 97, 5000), + (151885, 91, 5000), + (151885, 168, 5000), + (151885, 96, 5000), + (151885, 90, 5000), + (151885, 94, 5000), + (151885, 1, 100000), + (151885, 27, 100000), + (151885, 343, 100000), + (151885, 364, 100000), + (151895, 94, 25), + (151895, 92, 40), + (151895, 221, 90), + (151895, 128, 8), + (151895, 122, 8), + (151895, 129, 8), + (151895, 130, 8), + (151895, 131, 8), + (151895, 127, 8), + (151896, 19, -4), + (151896, 21, -4), + (151896, 168, 26), + (151903, 106, 20), + (151906, 122, 1), + (151906, 181, 2), + (151908, 122, 4), + (151908, 181, 8), + (151909, 122, 6), + (151909, 181, 16), + (151910, 122, 8), + (151910, 181, 32), + (151911, 122, 10), + (151911, 181, 64), + (152021, 107, 4), + (152021, 102, 4), + (152021, 95, 29), + (152021, 93, 29), + (152021, 94, 29), + (152021, 96, 29), + (152021, 97, 49), + (152021, 92, 49), + (152021, 90, 56), + (152021, 91, 56), + (152022, 123, 4), + (152022, 124, 4), + (152022, 127, 2), + (152022, 128, 2), + (152022, 96, 22), + (152022, 94, 22), + (152022, 93, 22), + (152022, 95, 35), + (152022, 97, 35), + (152022, 92, 49), + (152022, 90, 56), + (152022, 91, 56), + (152023, 105, 4), + (152023, 103, 4), + (152023, 95, 29), + (152023, 97, 29), + (152023, 94, 29), + (152023, 96, 29), + (152023, 93, 42), + (152023, 91, 49), + (152023, 92, 56), + (152023, 90, 56), + (152024, 19, 3), + (152024, 21, 3), + (152025, 94, 20), + (152026, 221, 50), + (152039, 123, 10), + (152039, 141, 150), + (152039, 156, 25), + (152039, 16, 1), + (152039, 17, 1), + (152039, 18, 1), + (152039, 19, 1), + (152039, 20, 1), + (152039, 21, 1), + (152039, 319, 1), + (152109, 154, 4), + (152110, 154, 4), + (152111, 154, 8), + (152112, 154, 8), + (152113, 154, 12), + (152114, 154, 12), + (152115, 154, 16), + (152116, 154, 16), + (152117, 154, 20), + (152118, 154, 20), + (152119, 154, 24), + (152120, 154, 24), + (152121, 154, 28), + (152130, 123, 5), + (152130, 20, 4), + (152131, 123, 5), + (152131, 20, 4), + (152132, 123, 10), + (152132, 20, 6), + (152133, 123, 10), + (152133, 20, 6), + (152134, 123, 15), + (152134, 221, 70), + (152134, 20, 8), + (152154, 92, 2), + (152155, 92, 2), + (152156, 92, 5), + (152157, 92, 5), + (152158, 92, 5), + (152159, 92, 5), + (152160, 92, 10), + (152161, 92, 10), + (152162, 92, 10), + (152163, 92, 10), + (152164, 92, 15), + (152165, 92, 15), + (152166, 92, 15), + (152167, 92, 15), + (152168, 92, 25), + (152169, 92, 25), + (152170, 92, 40), + (152171, 92, 40), + (152172, 92, 60), + (152173, 122, 40), + (152173, 155, 50), + (152173, 120, 50), + (152215, 20, 22), + (152218, 122, 1), + (152218, 155, 1), + (152218, 120, 1), + (152219, 122, 2), + (152219, 181, 4), + (152253, 162, 1), + (152253, 129, 1), + (152253, 91, 1), + (152253, 21, 1), + (152254, 162, 40), + (152254, 129, 40), + (152254, 91, 100), + (152254, 21, 30), + (152255, 102, 1), + (152255, 103, 1), + (152255, 104, 1), + (152255, 106, 1), + (152256, 102, 40), + (152256, 103, 40), + (152256, 104, 40), + (152256, 106, 40), + (152257, 91, 1), + (152257, 134, 1), + (152257, 101, 1), + (152258, 91, 100), + (152258, 134, 50), + (152258, 101, 50), + (152259, 92, 1), + (152259, 90, 1), + (152259, 91, 1), + (152259, 136, 1), + (152259, 122, 1), + (152259, 20, 1), + (152260, 92, 150), + (152260, 90, 150), + (152260, 91, 150), + (152260, 136, 34), + (152260, 122, 30), + (152260, 20, 40), + (152261, 142, 1), + (152262, 142, 50), + (152263, 92, 1), + (152263, 207, 1), + (152263, 162, 1), + (152263, 135, 1), + (152263, 129, 1), + (152263, 122, 1), + (152264, 92, 250), + (152264, 207, 10), + (152264, 162, 45), + (152264, 135, 65), + (152264, 129, 40), + (152264, 122, 40), + (152265, 112, 1), + (152265, 114, 1), + (152265, 133, 1), + (152266, 114, 40), + (152266, 112, 40), + (152266, 133, 40), + (152267, 181, 1), + (152267, 156, 1), + (152268, 19, 1), + (152268, 21, 1), + (152269, 19, 15), + (152269, 21, 15), + (152270, 160, 1), + (152270, 181, 1), + (152271, 160, 40), + (152271, 181, 40), + (152272, 207, 1), + (152273, 207, 4), + (152274, 155, 1), + (152274, 154, 1), + (152274, 153, 1), + (152274, 145, 1), + (152274, 144, 1), + (152274, 20, 1), + (152275, 155, 30), + (152275, 154, 30), + (152275, 153, 30), + (152275, 145, 30), + (152275, 144, 20), + (152275, 20, 20), + (152276, 136, 1), + (152277, 136, 40), + (152278, 123, 5), + (152278, 124, 1), + (152326, 18, 3), + (152327, 18, 3), + (152328, 18, 6), + (152329, 18, 6), + (152330, 18, 9), + (152331, 18, 9), + (152332, 18, 12), + (152333, 18, 12), + (152334, 18, 15), + (152335, 18, 15), + (152336, 18, 18), + (152337, 18, 18), + (152338, 18, 27), + (152339, 155, 10), + (152339, 145, 10), + (152340, 155, 10), + (152340, 145, 10), + (152341, 155, 20), + (152341, 145, 20), + (152342, 155, 20), + (152342, 145, 20), + (152343, 155, 30), + (152343, 145, 30), + (152344, 155, 30), + (152344, 145, 30), + (152345, 155, 40), + (152345, 145, 40), + (152346, 155, 40), + (152346, 145, 40), + (152347, 155, 50), + (152347, 145, 50), + (152348, 155, 50), + (152348, 145, 50), + (152349, 155, 60), + (152349, 145, 60), + (152350, 155, 60), + (152350, 145, 60), + (152351, 155, 70), + (152351, 145, 70), + (152352, 155, 70), + (152352, 145, 70), + (152353, 155, 80), + (152353, 145, 80), + (152354, 155, 80), + (152354, 145, 80), + (152355, 155, 90), + (152355, 145, 90), + (152356, 155, 90), + (152356, 145, 90), + (152357, 155, 100), + (152357, 145, 100), + (152410, 123, 30), + (152410, 124, 15), + (152411, 110, 10), + (152411, 109, 10), + (152412, 110, 40), + (152412, 109, 40), + (152413, 162, 10), + (152413, 141, 10), + (152414, 162, 30), + (152414, 141, 30), + (152415, 277, 1), + (152416, 277, 20), + (152428, 97, 160), + (152431, 97, 160), + (152432, 97, 180), + (152433, 95, 160), + (152434, 95, 160), + (152435, 95, 180), + (152436, 95, 60), + (152436, 97, 60), + (152437, 95, 60), + (152437, 97, 60), + (152438, 95, 70), + (152438, 97, 70), + (152527, 205, 30), + (152527, 206, 30), + (152527, 207, 30), + (152527, 208, 30), + (152527, 216, 30), + (152527, 217, 30), + (152527, 219, 30), + (152527, 225, 30), + (152527, 475, 50), + (152527, 476, 50), + (152527, 477, 50), + (152527, 478, 50), + (152527, 479, 50), + (152527, 480, 50), + (152527, 482, 50), + (152527, 483, 50), + (152528, 90, 450), + (152528, 91, 450), + (152528, 92, 450), + (152528, 93, 450), + (152528, 94, 450), + (152528, 95, 450), + (152528, 96, 450), + (152528, 97, 450), + (152528, 226, 40), + (152528, 227, 40), + (152528, 228, 40), + (152528, 229, 40), + (152528, 230, 40), + (152528, 231, 40), + (152528, 233, 40), + (152528, 234, 40), + (152529, 118, 450), + (152529, 119, 450), + (152529, 120, 450), + (152529, 149, 450), + (152529, 278, 190), + (152529, 279, 190), + (152529, 280, 190), + (152529, 281, 190), + (152529, 282, 190), + (152529, 311, 190), + (152529, 316, 190), + (152529, 317, 190), + (152529, 51, 120), + (152531, 278, 93), + (152531, 279, 93), + (152531, 280, 93), + (152531, 281, 93), + (152531, 282, 93), + (152531, 311, 93), + (152531, 316, 93), + (152531, 317, 93), + (152531, 51, 90), + (152533, 233, 4), + (152533, 219, 4), + (152533, 97, 536), + (152537, 91, 322), + (152537, 155, 27), + (152537, 145, 27), + (152538, 1, 176), + (152542, 92, 525), + (152542, 181, 19), + (152543, 17, 27), + (152543, 95, 750), + (152544, 105, 40), + (152544, 103, 40), + (152702, 17, 14), + (152702, 95, 102), + (152702, 97, 102), + (152702, 181, 22), + (152702, 91, 102), + (152703, 91, 145), + (152703, 136, 36), + (152704, 20, 30), + (152704, 97, 750), + (152705, 137, 8), + (152705, 117, 10), + (152705, 91, 105), + (152706, 156, 50), + (152706, 155, 50), + (152706, 154, 20), + (152706, 153, 20), + (152707, 205, 2), + (152707, 91, 88), + (152707, 156, 52), + (152708, 155, 25), + (152708, 154, 25), + (152708, 153, 25), + (152708, 113, 20), + (152708, 151, 20), + (152708, 164, 20), + (152709, 155, 25), + (152709, 154, 25), + (152709, 153, 25), + (152709, 113, 20), + (152709, 151, 20), + (152709, 164, 20), + (152710, 96, 200), + (152710, 94, 200), + (152710, 93, 200), + (152710, 90, 300), + (152710, 91, 300), + (152710, 97, 450), + (152710, 95, 450), + (152710, 92, 450), + (152710, 18, 22), + (152710, 16, 22), + (152711, 116, 36), + (152711, 93, 450), + (152711, 167, 36), + (152711, 96, 450), + (152711, 94, 450), + (152712, 91, 143), + (152712, 131, 22), + (152712, 130, 22), + (152713, 21, 30), + (152713, 19, 30), + (152714, 136, 25), + (152714, 20, 8), + (152715, 97, 95), + (152715, 95, 95), + (152715, 93, 95), + (152715, 91, 95), + (152715, 90, 95), + (152715, 136, 48), + (152783, 228, 20), + (152783, 230, 20), + (152783, 229, 20), + (152783, 234, 20), + (152783, 233, 20), + (152783, 231, 20), + (152783, 227, 20), + (152783, 226, 20), + (152784, 156, 20), + (152784, 181, 10), + (152786, 91, 218), + (152786, 155, 56), + (152786, 145, 56), + (152788, 20, 1), + (152788, 136, 1), + (152788, 96, 1), + (152788, 94, 1), + (152788, 95, 1), + (152788, 93, 3), + (152788, 90, 3), + (152788, 92, 3), + (152788, 91, 3), + (152788, 97, 3), + (152792, 20, 15), + (152792, 136, 30), + (152792, 96, 150), + (152792, 94, 150), + (152792, 95, 150), + (152792, 93, 656), + (152792, 90, 750), + (152792, 92, 656), + (152792, 91, 750), + (152792, 97, 750), + (152793, 91, 10), + (152793, 128, 5), + (152794, 142, 15), + (152794, 91, 50), + (152794, 90, 50), + (152795, 152, 16), + (152795, 93, 120), + (152796, 111, 10), + (152796, 121, 10), + (152797, 111, 80), + (152797, 121, 80), + (152822, 156, 500), + (152822, 205, 1000), + (152822, 206, 1000), + (152822, 207, 1000), + (152822, 208, 1000), + (152822, 216, 1000), + (152822, 217, 1000), + (152822, 218, 1000), + (152822, 219, 1000), + (152822, 225, 1000), + (152822, 93, 5000), + (152822, 95, 5000), + (152822, 92, 5000), + (152822, 97, 5000), + (152822, 91, 5000), + (152822, 168, 5000), + (152822, 96, 5000), + (152822, 90, 5000), + (152822, 94, 5000), + (152822, 1, 100000), + (152822, 27, 100000), + (152822, 343, 100000), + (152822, 364, 100000), + (152825, 343, 100000), + (152825, 93, 5000), + (152825, 95, 5000), + (152825, 92, 5000), + (152825, 97, 5000), + (152825, 91, 5000), + (152825, 168, 5000), + (152825, 96, 5000), + (152825, 90, 5000), + (152825, 94, 5000), + (152825, 1, 100000), + (152825, 27, 100000), + (152825, 205, 200), + (152825, 206, 200), + (152825, 207, 200), + (152825, 208, 200), + (152825, 216, 200), + (152825, 217, 200), + (152825, 219, 200), + (152825, 225, 200), + (152825, 364, 100000), + (152826, 343, 100000), + (152826, 93, 5000), + (152826, 95, 5000), + (152826, 92, 5000), + (152826, 97, 5000), + (152826, 91, 5000), + (152826, 168, 5000), + (152826, 96, 5000), + (152826, 90, 5000), + (152826, 94, 5000), + (152826, 1, 100000), + (152826, 27, 100000), + (152826, 205, 200), + (152826, 206, 200), + (152826, 207, 200), + (152826, 208, 200), + (152826, 216, 200), + (152826, 217, 200), + (152826, 219, 200), + (152826, 225, 200), + (152826, 364, 100000), + (152827, 343, 100000), + (152827, 93, 5000), + (152827, 95, 5000), + (152827, 92, 5000), + (152827, 97, 5000), + (152827, 91, 5000), + (152827, 168, 5000), + (152827, 96, 5000), + (152827, 90, 5000), + (152827, 94, 5000), + (152827, 1, 100000), + (152827, 27, 100000), + (152827, 205, 200), + (152827, 206, 200), + (152827, 207, 200), + (152827, 208, 200), + (152827, 216, 200), + (152827, 217, 200), + (152827, 219, 200), + (152827, 225, 200), + (152827, 364, 100000), + (152844, 122, -110), + (152844, 127, -110), + (152844, 128, -110), + (152844, 129, -110), + (152844, 130, -110), + (152844, 131, -110), + (152844, 90, -450), + (152844, 91, -450), + (152844, 92, -450), + (152844, 93, -450), + (152844, 94, -450), + (152844, 95, -450), + (152844, 96, -450), + (152844, 97, -450), + (152847, 343, 100000), + (152847, 93, 5000), + (152847, 95, 5000), + (152847, 92, 5000), + (152847, 97, 5000), + (152847, 91, 5000), + (152847, 168, 5000), + (152847, 96, 5000), + (152847, 90, 5000), + (152847, 94, 5000), + (152847, 1, 100000), + (152847, 27, 100000), + (152847, 205, 200), + (152847, 206, 200), + (152847, 207, 200), + (152847, 208, 200), + (152847, 216, 200), + (152847, 217, 200), + (152847, 219, 200), + (152847, 225, 200), + (152847, 364, 100000), + (152883, 156, 500), + (152883, 205, 1000), + (152883, 206, 1000), + (152883, 207, 1000), + (152883, 208, 1000), + (152883, 216, 1000), + (152883, 217, 1000), + (152883, 218, 1000), + (152883, 219, 1000), + (152883, 225, 1000), + (152883, 93, 5000), + (152883, 95, 5000), + (152883, 92, 5000), + (152883, 97, 5000), + (152883, 91, 5000), + (152883, 168, 5000), + (152883, 96, 5000), + (152883, 90, 5000), + (152883, 94, 5000), + (152883, 1, 100000), + (152883, 27, 100000), + (152883, 343, 100000), + (152883, 364, 100000), + (152884, 156, 500), + (152884, 205, 1000), + (152884, 206, 1000), + (152884, 207, 1000), + (152884, 208, 1000), + (152884, 216, 1000), + (152884, 217, 1000), + (152884, 218, 1000), + (152884, 219, 1000), + (152884, 225, 1000), + (152884, 93, 5000), + (152884, 95, 5000), + (152884, 92, 5000), + (152884, 97, 5000), + (152884, 91, 5000), + (152884, 168, 5000), + (152884, 96, 5000), + (152884, 90, 5000), + (152884, 94, 5000), + (152884, 1, 100000), + (152884, 27, 100000), + (152884, 343, 100000), + (152884, 364, 100000), + (152885, 156, 500), + (152885, 27, 100000), + (152885, 343, 100000), + (152885, 364, 100000), + (153087, 17, 16), + (153087, 1, 20), + (153088, 17, 16), + (153088, 1, 20), + (153089, 17, 20), + (153089, 1, 40), + (153090, 17, 20), + (153090, 1, 40), + (153091, 17, 24), + (153091, 1, 70), + (153091, 181, 10), + (153976, 97, 120), + (153976, 94, 120), + (153977, 97, 100), + (153977, 94, 100), + (153982, 93, 429), + (153982, 95, 313), + (153982, 154, -20), + (153982, 153, -20), + (153982, 92, 429), + (153982, 155, -20), + (153982, 97, 372), + (153982, 91, 429), + (153982, 96, 429), + (153982, 90, 429), + (153982, 94, 372), + (153982, 156, -20), + (154037, 137, 3), + (154043, 125, 3), + (154400, 181, 8), + (154400, 96, 222), + (154400, 94, 253), + (154400, 95, 72), + (154400, 93, 222), + (154400, 91, 253), + (154400, 92, 253), + (154400, 90, 253), + (154400, 97, 222), + (154401, 181, 7), + (154401, 93, 266), + (154401, 95, 86), + (154401, 92, 302), + (154401, 97, 266), + (154401, 91, 302), + (154401, 96, 266), + (154401, 90, 302), + (154401, 94, 302), + (154402, 181, 4), + (154402, 96, 89), + (154402, 94, 101), + (154402, 95, 29), + (154402, 93, 89), + (154402, 92, 101), + (154402, 91, 101), + (154402, 97, 89), + (154402, 90, 101), + (154403, 181, 3), + (154403, 96, 133), + (154403, 94, 151), + (154403, 95, 43), + (154403, 93, 133), + (154403, 97, 133), + (154403, 91, 151), + (154403, 92, 151), + (154403, 90, 151), + (154404, 181, 10), + (154404, 96, 357), + (154404, 94, 405), + (154404, 95, 116), + (154404, 93, 357), + (154404, 97, 357), + (154404, 91, 405), + (154404, 92, 405), + (154404, 90, 405), + (154405, 181, 5), + (154405, 93, 89), + (154405, 95, 29), + (154405, 92, 101), + (154405, 97, 89), + (154405, 91, 101), + (154405, 96, 89), + (154405, 90, 101), + (154405, 94, 101), + (154503, 1, 60), + (154503, 20, 5), + (154503, 319, 2), + (154504, 1, 60), + (154504, 20, 5), + (154504, 319, 2), + (154505, 1, 120), + (154505, 20, 10), + (154505, 319, 4), + (154686, 93, 5), + (154687, 93, 10), + (154844, 234, 7), + (154844, 229, 7), + (154844, 230, 7), + (154844, 231, 7), + (154844, 233, 7), + (154844, 228, 7), + (154844, 226, 7), + (154844, 227, 7), + (154845, 219, 50), + (154846, 234, 23), + (154846, 229, 23), + (154846, 230, 23), + (154846, 231, 23), + (154846, 233, 23), + (154846, 228, 23), + (154846, 226, 23), + (154846, 227, 23), + (154846, 219, 50), + (154847, 234, 14), + (154847, 229, 14), + (154847, 230, 14), + (154847, 231, 14), + (154847, 233, 14), + (154847, 228, 14), + (154847, 226, 14), + (154847, 227, 14), + (154848, 234, 20), + (154848, 229, 20), + (154848, 230, 20), + (154848, 231, 20), + (154848, 233, 20), + (154848, 228, 20), + (154848, 226, 20), + (154848, 227, 20), + (154848, 216, 200), + (154848, 207, 200), + (154848, 219, 200), + (154896, 221, 700), + (154896, 318, -4), + (154897, 221, 374), + (154897, 318, -2), + (154898, 221, 38), + (154898, 318, -1), + (154899, 221, 146), + (154899, 318, -4), + (154900, 221, 77), + (154900, 318, -2), + (154901, 221, 118), + (154901, 318, -3), + (154902, 221, 1021), + (154902, 318, -6), + (154903, 221, 1435), + (154903, 318, -8), + (154924, 318, -6), + (154924, 221, 684), + (154924, 168, 24), + (154924, 96, 191), + (154924, 94, 191), + (154924, 93, 191), + (154924, 95, 191), + (154924, 97, 191), + (154924, 92, 191), + (154924, 90, 191), + (154924, 91, 191), + (154925, 145, 37), + (154925, 1, 481), + (154925, 95, 224), + (154925, 97, 224), + (154925, 96, 224), + (154925, 94, 224), + (154925, 93, 224), + (154925, 90, 224), + (154925, 92, 224), + (154925, 91, 224), + (154926, 145, 24), + (154926, 1, 342), + (154926, 95, 142), + (154926, 97, 142), + (154926, 96, 142), + (154926, 94, 142), + (154926, 93, 142), + (154926, 90, 142), + (154926, 92, 142), + (154926, 91, 142), + (154927, 318, -10), + (154927, 221, 857), + (154927, 168, 37), + (154927, 96, 276), + (154927, 94, 276), + (154927, 93, 276), + (154927, 95, 276), + (154927, 97, 276), + (154927, 92, 276), + (154927, 90, 276), + (154927, 91, 276), + (154928, 168, 10), + (154928, 318, -3), + (154928, 221, 370), + (154928, 96, 104), + (154928, 94, 104), + (154928, 93, 104), + (154928, 95, 104), + (154928, 97, 104), + (154928, 92, 104), + (154928, 90, 104), + (154928, 91, 104), + (154929, 277, 210), + (154929, 219, 30), + (154929, 96, 410), + (154929, 94, 410), + (154929, 93, 410), + (154929, 95, 410), + (154929, 97, 410), + (154929, 90, 410), + (154929, 92, 410), + (154929, 91, 410), + (154930, 277, 100), + (154930, 219, 15), + (154930, 96, 169), + (154930, 94, 169), + (154930, 93, 169), + (154930, 95, 169), + (154930, 97, 169), + (154930, 90, 169), + (154930, 92, 169), + (154930, 91, 169), + (154931, 145, 10), + (154931, 1, 170), + (154931, 95, 72), + (154931, 97, 72), + (154931, 96, 72), + (154931, 94, 72), + (154931, 93, 72), + (154931, 90, 72), + (154931, 92, 72), + (154931, 91, 72), + (154932, 277, 160), + (154932, 219, 23), + (154932, 96, 297), + (154932, 94, 297), + (154932, 93, 297), + (154932, 95, 297), + (154932, 97, 297), + (154932, 90, 297), + (154932, 92, 297), + (154932, 91, 297), + (155086, 97, 1), + (155086, 95, 1), + (155086, 90, 2), + (155086, 91, 4), + (155086, 93, 1), + (155087, 97, 50), + (155087, 95, 50), + (155087, 90, 150), + (155087, 91, 300), + (155087, 93, 50), + (155088, 97, 3), + (155088, 95, 3), + (155088, 90, 3), + (155088, 91, 5), + (155088, 93, 1), + (155089, 97, 200), + (155089, 95, 200), + (155089, 90, 600), + (155089, 91, 1150), + (155089, 93, 200), + (155090, 93, 1), + (155090, 95, 3), + (155090, 97, 3), + (155090, 91, 4), + (155090, 90, 3), + (155091, 93, 125), + (155091, 95, 125), + (155091, 97, 125), + (155091, 91, 725), + (155091, 90, 375), + (155150, 277, 2000), + (155150, 96, 2000), + (155150, 91, 2000), + (155150, 90, 2000), + (155150, 92, 2000), + (155150, 97, 2000), + (155150, 94, 2000), + (155150, 93, 2000), + (155150, 95, 2000), + (155150, 155, 150), + (155150, 153, 150), + (155150, 154, 150), + (155150, 181, 100), + (155150, 1, 150), + (155150, 311, 20), + (155150, 279, 20), + (155150, 282, 20), + (155150, 281, 20), + (155150, 316, 20), + (155150, 278, 20), + (155150, 280, 20), + (155150, 317, 20), + (155150, 168, 200), + (155172, 277, 850), + (155172, 96, 265), + (155172, 91, 265), + (155172, 90, 265), + (155172, 92, 265), + (155172, 97, 265), + (155172, 94, 265), + (155172, 93, 265), + (155172, 95, 265), + (155172, 155, 100), + (155172, 153, 100), + (155172, 154, 100), + (155172, 181, 25), + (155172, 1, 50), + (155172, 282, 4), + (155172, 317, 4), + (155172, 281, 4), + (155172, 311, 4), + (155172, 316, 4), + (155172, 278, 4), + (155172, 279, 4), + (155172, 280, 4), + (155172, 168, 50), + (155173, 277, 1250), + (155173, 96, 750), + (155173, 91, 750), + (155173, 90, 750), + (155173, 92, 750), + (155173, 97, 750), + (155173, 94, 750), + (155173, 93, 750), + (155173, 95, 750), + (155173, 155, 120), + (155173, 153, 120), + (155173, 154, 120), + (155173, 181, 50), + (155173, 1, 75), + (155173, 317, 7), + (155173, 282, 7), + (155173, 281, 7), + (155173, 311, 7), + (155173, 316, 7), + (155173, 278, 7), + (155173, 279, 7), + (155173, 280, 7), + (155173, 168, 100), + (155174, 277, 1600), + (155174, 93, 1250), + (155174, 94, 1250), + (155174, 97, 1250), + (155174, 91, 1250), + (155174, 90, 1250), + (155174, 92, 1250), + (155174, 95, 1250), + (155174, 96, 1250), + (155174, 155, 136), + (155174, 153, 136), + (155174, 154, 136), + (155174, 181, 75), + (155174, 1, 100), + (155174, 317, 12), + (155174, 282, 12), + (155174, 280, 12), + (155174, 281, 12), + (155174, 311, 12), + (155174, 316, 12), + (155174, 278, 12), + (155174, 279, 12), + (155174, 168, 150), + (155175, 93, 1), + (155175, 94, 4), + (155176, 93, 50), + (155176, 94, 280), + (155177, 93, 2), + (155177, 94, 5), + (155178, 93, 250), + (155178, 94, 1160), + (155179, 93, 1), + (155179, 94, 4), + (155180, 93, 125), + (155180, 94, 705), + (155181, 97, 1), + (155181, 95, 1), + (155181, 90, 2), + (155181, 91, 4), + (155181, 93, 1), + (155182, 97, 50), + (155182, 95, 50), + (155182, 90, 150), + (155182, 91, 300), + (155182, 93, 50), + (155183, 97, 1), + (155183, 95, 1), + (155183, 90, 2), + (155183, 91, 4), + (155183, 93, 1), + (155184, 97, 50), + (155184, 95, 50), + (155184, 90, 150), + (155184, 91, 300), + (155184, 93, 50), + (155578, 118, -2100), + (155578, 119, -2100), + (155578, 120, -2100), + (155578, 149, -2100), + (155618, 201, 31), + (155619, 201, 57), + (155620, 201, 80), + (156026, 20, 3), + (156027, 20, 15), + (156522, 162, 12), + (156522, 19, 6), + (156522, 20, 6), + (156522, 21, 6), + (156522, 96, 150), + (156522, 221, 20), + (156522, 319, 1), + (156522, 94, 150), + (156528, 162, 24), + (156528, 19, 16), + (156528, 20, 16), + (156528, 21, 16), + (156528, 221, 40), + (156528, 319, 1), + (156528, 94, 470), + (156528, 96, 470), + (156529, 162, 6), + (156529, 19, 4), + (156529, 20, 4), + (156529, 21, 4), + (156529, 221, 15), + (156529, 319, 1), + (156529, 94, 200), + (156529, 96, 200), + (156530, 162, 12), + (156530, 19, 14), + (156530, 20, 14), + (156530, 21, 14), + (156530, 221, 30), + (156530, 319, 1), + (156530, 94, 600), + (156530, 96, 600), + (156537, 94, 140), + (156537, 96, 140), + (156537, 162, 8), + (156537, 19, 4), + (156537, 21, 4), + (156537, 20, 4), + (156537, 221, 30), + (156537, 319, 1), + (156538, 94, 400), + (156538, 96, 400), + (156538, 162, 18), + (156538, 19, 12), + (156538, 21, 12), + (156538, 20, 12), + (156538, 221, 70), + (156538, 319, 1), + (156539, 160, 4), + (156539, 159, 4), + (156539, 158, 4), + (156539, 163, 4), + (156539, 157, 4), + (156539, 126, 4), + (156539, 125, 4), + (156539, 221, 50), + (156539, 1, 50), + (156540, 160, 12), + (156540, 159, 12), + (156540, 158, 12), + (156540, 163, 12), + (156540, 157, 12), + (156540, 126, 12), + (156540, 125, 12), + (156540, 221, 100), + (156540, 1, 100), + (156575, 123, 7), + (156575, 124, 7), + (156575, 127, 3), + (156575, 128, 3), + (156575, 153, -14), + (156575, 154, -14), + (156575, 155, -14), + (156575, 156, -14), + (156575, 90, 135), + (156575, 91, 135), + (156575, 92, 135), + (156575, 93, 135), + (156575, 94, 100), + (156575, 95, 34), + (156575, 96, 100), + (156575, 97, 34), + (156576, 90, 440), + (156576, 92, 440), + (156576, 91, 440), + (156576, 93, 440), + (156576, 96, 330), + (156576, 94, 110), + (156576, 95, 110), + (156576, 97, 110), + (156576, 318, 5), + (156576, 156, -17), + (156576, 153, -17), + (156576, 154, -17), + (156576, 155, -17), + (156592, 162, 2), + (156592, 168, 7), + (156592, 90, 164), + (156592, 91, 187), + (156592, 92, 187), + (156592, 93, 187), + (156592, 94, 187), + (156592, 95, 38), + (156592, 96, 164), + (156592, 97, 164), + (156599, 149, 3), + (156693, 318, -1), + (156693, 181, 16), + (156694, 318, -1), + (156694, 181, 24), + (156717, 97, 20), + (156717, 91, 10), + (156717, 90, 10), + (156718, 97, 20), + (156718, 91, 10), + (156718, 90, 10), + (156719, 97, 300), + (156719, 91, 60), + (156719, 90, 60), + (156762, 95, 5), + (156772, 1, 220), + (156773, 113, 19), + (156773, 119, 180), + (156773, 151, 23), + (156773, 379, 1), + (156773, 380, 5), + (156774, 126, 35), + (156774, 157, 35), + (156831, 123, 10), + (156831, 141, 150), + (156831, 156, 25), + (156831, 16, 1), + (156831, 17, 1), + (156831, 18, 1), + (156831, 19, 1), + (156831, 20, 1), + (156831, 21, 1), + (156831, 319, 1), + (157126, 136, 30), + (157126, 139, 15), + (157126, 19, 10), + (157163, 93, 50), + (157163, 91, 50), + (157163, 16, 5), + (157164, 93, 1), + (157164, 95, 1), + (157164, 153, 1), + (157164, 92, 3), + (157164, 155, 1), + (157164, 97, 1), + (157164, 1, 1), + (157164, 91, 3), + (157164, 96, 1), + (157164, 90, 3), + (157164, 94, 3), + (157165, 93, 93), + (157165, 95, 93), + (157165, 153, 32), + (157165, 92, 546), + (157165, 155, 32), + (157165, 97, 93), + (157165, 1, 70), + (157165, 91, 468), + (157165, 96, 93), + (157165, 90, 625), + (157165, 94, 390), + (157166, 93, 1), + (157166, 95, 1), + (157166, 119, 1), + (157166, 92, 1), + (157166, 97, 1), + (157166, 1, 1), + (157166, 91, 1), + (157166, 96, 1), + (157166, 90, 1), + (157166, 94, 1), + (157167, 93, 37), + (157167, 95, 37), + (157167, 119, 20), + (157167, 92, 218), + (157167, 97, 37), + (157167, 1, 25), + (157167, 91, 187), + (157167, 96, 37), + (157167, 90, 250), + (157167, 94, 156), + (157168, 93, 1), + (157168, 95, 1), + (157168, 154, 1), + (157168, 92, 5), + (157168, 97, 1), + (157168, 1, 1), + (157168, 91, 5), + (157168, 96, 1), + (157168, 90, 5), + (157168, 94, 5), + (157169, 93, 150), + (157169, 95, 150), + (157169, 154, 32), + (157169, 92, 875), + (157169, 97, 150), + (157169, 1, 90), + (157169, 91, 750), + (157169, 96, 150), + (157169, 90, 1000), + (157169, 94, 625), + (157279, 21, 1), + (157279, 18, 1), + (157620, 119, 2), + (157621, 119, 2), + (157622, 119, 4), + (157623, 119, 4), + (157624, 119, 8), + (157625, 119, 8), + (157626, 119, 11), + (157627, 119, 11), + (157628, 119, 13), + (157629, 156, 6), + (157630, 156, 6), + (157631, 156, 12), + (157632, 156, 12), + (157633, 156, 18), + (157634, 156, 18), + (157635, 156, 26), + (157636, 128, 2), + (157636, 130, 2), + (157636, 127, 2), + (157637, 128, 2), + (157637, 130, 2), + (157637, 127, 2), + (157638, 128, 14), + (157638, 130, 14), + (157638, 127, 14), + (157639, 128, 14), + (157639, 130, 14), + (157639, 127, 14), + (157640, 128, 18), + (157640, 130, 18), + (157640, 127, 18), + (157641, 128, 18), + (157641, 130, 18), + (157641, 127, 18), + (157642, 128, 24), + (157642, 130, 24), + (157642, 127, 24), + (157643, 128, 24), + (157643, 130, 24), + (157643, 127, 24), + (157644, 128, 28), + (157644, 130, 28), + (157644, 127, 28), + (157662, 1, 30), + (157663, 1, 30), + (157664, 1, 60), + (157665, 1, 60), + (157666, 1, 200), + (157760, 1, 30), + (157760, 96, 100), + (157761, 1, 320), + (157761, 93, 150), + (157761, 96, 150), + (157762, 96, 525), + (157762, 95, 525), + (157762, 97, 525), + (157762, 93, 613), + (157762, 92, 700), + (157762, 91, 700), + (157762, 94, 700), + (157762, 90, 700), + (157762, 1, 80), + (157762, 181, 4), + (157763, 96, 239), + (157763, 95, 239), + (157763, 97, 239), + (157763, 93, 279), + (157763, 92, 319), + (157763, 91, 319), + (157763, 94, 319), + (157763, 90, 319), + (157763, 1, 140), + (157763, 181, 7), + (157764, 96, 398), + (157764, 95, 398), + (157764, 97, 398), + (157764, 93, 464), + (157764, 92, 531), + (157764, 91, 531), + (157764, 94, 531), + (157764, 90, 531), + (157764, 1, 140), + (157764, 181, 7), + (157765, 96, 159), + (157765, 95, 159), + (157765, 97, 159), + (157765, 93, 185), + (157765, 92, 212), + (157765, 91, 212), + (157765, 94, 212), + (157765, 90, 212), + (157765, 1, 140), + (157765, 181, 7), + (157766, 96, 638), + (157766, 95, 638), + (157766, 97, 638), + (157766, 93, 744), + (157766, 92, 850), + (157766, 91, 850), + (157766, 94, 850), + (157766, 90, 850), + (157766, 1, 140), + (157766, 181, 7), + (157767, 91, 637), + (157767, 94, 637), + (157767, 92, 637), + (157767, 93, 558), + (157767, 97, 478), + (157767, 95, 478), + (157767, 96, 478), + (157767, 90, 637), + (157767, 1, 140), + (157767, 181, 7), + (157768, 96, 197), + (157768, 95, 197), + (157768, 97, 197), + (157768, 93, 229), + (157768, 92, 262), + (157768, 91, 262), + (157768, 94, 262), + (157768, 90, 262), + (157768, 1, 80), + (157768, 181, 4), + (157769, 96, 328), + (157769, 95, 328), + (157769, 97, 328), + (157769, 93, 382), + (157769, 92, 437), + (157769, 91, 437), + (157769, 94, 437), + (157769, 90, 437), + (157769, 1, 80), + (157769, 181, 4), + (157770, 96, 131), + (157770, 95, 131), + (157770, 97, 131), + (157770, 93, 153), + (157770, 92, 175), + (157770, 91, 175), + (157770, 94, 175), + (157770, 90, 175), + (157770, 1, 80), + (157770, 181, 4), + (157771, 90, 525), + (157771, 91, 525), + (157771, 92, 525), + (157771, 93, 459), + (157771, 94, 525), + (157771, 95, 393), + (157771, 96, 393), + (157771, 97, 393), + (157771, 1, 80), + (157771, 181, 4), + (157773, 96, 109), + (157773, 95, 109), + (157773, 97, 109), + (157773, 93, 131), + (157773, 92, 175), + (157773, 91, 175), + (157773, 94, 175), + (157773, 90, 175), + (157773, 1, 80), + (157773, 181, 4), + (157774, 96, 154), + (157774, 95, 154), + (157774, 97, 154), + (157774, 93, 185), + (157774, 92, 212), + (157774, 91, 212), + (157774, 94, 212), + (157774, 90, 212), + (157774, 1, 140), + (157774, 181, 7), + (157821, 95, 20), + (157822, 95, 20), + (157823, 95, 120), + (157824, 155, 10), + (157825, 155, 10), + (157826, 155, 30), + (157854, 118, 40), + (157854, 1, 350), + (157854, 96, 300), + (157855, 118, 40), + (157855, 1, 350), + (157855, 96, 300), + (157856, 118, 40), + (157856, 1, 350), + (157856, 96, 300), + (157898, 1, 150), + (157899, 1, 150), + (157900, 1, 150), + (157901, 142, 20), + (157901, 118, 20), + (157901, 1, 200), + (157902, 142, 20), + (157902, 118, 20), + (157902, 1, 200), + (157903, 142, 20), + (157903, 118, 20), + (157903, 1, 200), + (157952, 19, 1), + (157952, 21, 1), + (157952, 1, 10), + (157952, 221, 10), + (157953, 19, 7), + (157953, 21, 7), + (157953, 1, 35), + (157953, 221, 35), + (157954, 19, 4), + (157954, 21, 4), + (157954, 1, 20), + (157954, 221, 20), + (157955, 19, 15), + (157955, 21, 15), + (157955, 1, 150), + (157955, 221, 150), + (157955, 317, 3), + (157955, 282, 3), + (157955, 281, 3), + (157955, 311, 3), + (157955, 316, 3), + (157955, 278, 3), + (157955, 280, 3), + (157955, 279, 3), + (157970, 16, 1), + (157971, 19, 1), + (157972, 17, 1), + (157973, 18, 1), + (157976, 152, 2), + (157978, 221, 2), + (157981, 136, 1), + (157982, 21, 1), + (157998, 123, 20), + (157998, 90, 100), + (157998, 1, 200), + (157998, 93, 100), + (157998, 94, 100), + (157998, 96, 100), + (157998, 97, 100), + (157998, 95, 100), + (157998, 221, 200), + (157998, 91, 100), + (157999, 1, 100), + (157999, 123, 15), + (157999, 221, 100), + (157999, 90, 45), + (157999, 91, 45), + (157999, 93, 45), + (157999, 94, 45), + (157999, 95, 45), + (157999, 96, 45), + (157999, 97, 45), + (158000, 1, 75), + (158000, 123, 5), + (158000, 221, 75), + (158000, 90, 20), + (158000, 91, 20), + (158000, 93, 20), + (158000, 94, 20), + (158000, 95, 20), + (158000, 96, 20), + (158000, 97, 20), + (158085, 1, 200), + (158085, 123, 16), + (158085, 221, 200), + (158085, 90, 100), + (158085, 91, 100), + (158085, 93, 100), + (158085, 94, 100), + (158085, 95, 100), + (158085, 96, 100), + (158085, 97, 100), + (158086, 1, 100), + (158086, 123, 12), + (158086, 221, 100), + (158086, 90, 45), + (158086, 91, 45), + (158086, 93, 45), + (158086, 94, 45), + (158086, 95, 45), + (158086, 96, 45), + (158086, 97, 45), + (158087, 1, 75), + (158087, 123, 4), + (158087, 221, 75), + (158087, 90, 20), + (158087, 91, 20), + (158087, 93, 20), + (158087, 94, 20), + (158087, 95, 20), + (158087, 96, 20), + (158087, 97, 20), + (158295, 92, 150), + (158296, 92, 150), + (158297, 92, 150), + (158298, 118, 20), + (158298, 155, 20), + (158298, 1, 50), + (158299, 118, 20), + (158299, 155, 20), + (158299, 1, 50), + (158300, 118, 20), + (158300, 155, 20), + (158300, 1, 50), + (158321, 96, 90), + (158321, 91, 90), + (158321, 1, 100), + (158322, 96, 24), + (158322, 1, 25), + (158403, 96, 90), + (158403, 91, 90), + (158403, 1, 100), + (158416, 122, 1), + (158416, 127, 1), + (158416, 128, 1), + (158416, 129, 1), + (158416, 130, 1), + (158416, 131, 1), + (158417, 122, 60), + (158417, 127, 60), + (158417, 128, 60), + (158417, 129, 60), + (158417, 130, 60), + (158417, 131, 60), + (158481, 126, 2), + (158481, 125, 2), + (158743, 164, 2), + (158743, 165, 2), + (158743, 90, 300), + (158743, 91, 250), + (158743, 92, 250), + (158743, 93, 300), + (158743, 94, 250), + (158743, 95, 250), + (158743, 96, 300), + (158743, 97, 250), + (158744, 164, 8), + (158744, 165, 8), + (158744, 90, 600), + (158744, 91, 400), + (158744, 92, 400), + (158744, 93, 600), + (158744, 94, 400), + (158744, 95, 400), + (158744, 96, 600), + (158744, 97, 400), + (158745, 156, 3), + (158745, 90, 300), + (158745, 91, 250), + (158745, 92, 250), + (158745, 93, 300), + (158745, 94, 250), + (158745, 95, 300), + (158745, 96, 250), + (158745, 97, 250), + (158746, 156, 12), + (158746, 90, 600), + (158746, 91, 400), + (158746, 92, 400), + (158746, 93, 600), + (158746, 94, 400), + (158746, 95, 600), + (158746, 96, 400), + (158746, 97, 400), + (158747, 117, 3), + (158747, 166, 3), + (158747, 90, 250), + (158747, 91, 250), + (158747, 92, 300), + (158747, 93, 250), + (158747, 94, 250), + (158747, 95, 300), + (158747, 96, 250), + (158747, 97, 300), + (158748, 117, 12), + (158748, 166, 12), + (158748, 90, 400), + (158748, 91, 400), + (158748, 92, 600), + (158748, 93, 400), + (158748, 94, 400), + (158748, 95, 600), + (158748, 96, 400), + (158748, 97, 600), + (158749, 152, 2), + (158749, 162, 2), + (158749, 90, 300), + (158749, 91, 300), + (158749, 92, 250), + (158749, 93, 250), + (158749, 94, 250), + (158749, 95, 250), + (158749, 96, 250), + (158749, 97, 300), + (158750, 152, 8), + (158750, 162, 8), + (158750, 90, 600), + (158750, 91, 600), + (158750, 92, 400), + (158750, 93, 400), + (158750, 94, 400), + (158750, 95, 400), + (158750, 96, 400), + (158750, 97, 600), + (158751, 132, 2), + (158751, 221, 2), + (158751, 90, 300), + (158751, 91, 250), + (158751, 92, 300), + (158751, 93, 250), + (158751, 94, 300), + (158751, 95, 250), + (158751, 96, 250), + (158751, 97, 250), + (158752, 132, 8), + (158752, 221, 8), + (158752, 90, 600), + (158752, 91, 400), + (158752, 92, 600), + (158752, 93, 400), + (158752, 94, 600), + (158752, 95, 400), + (158752, 96, 400), + (158752, 97, 400), + (158753, 123, 2), + (158753, 137, 3), + (158753, 90, 250), + (158753, 91, 300), + (158753, 92, 250), + (158753, 93, 250), + (158753, 94, 300), + (158753, 95, 250), + (158753, 96, 300), + (158753, 97, 250), + (158754, 123, 8), + (158754, 137, 12), + (158754, 90, 400), + (158754, 91, 600), + (158754, 92, 400), + (158754, 93, 400), + (158754, 94, 600), + (158754, 95, 400), + (158754, 96, 600), + (158754, 97, 400), + (158755, 135, 16), + (158755, 165, 16), + (158756, 90, 450), + (158756, 91, 450), + (158756, 92, 500), + (158756, 93, 450), + (158756, 96, 450), + (158756, 132, 100), + (158756, 152, 100), + (158762, 132, 5), + (158762, 221, 40), + (158763, 221, 40), + (158763, 1, 40), + (158763, 319, 3), + (158788, 90, 540), + (158788, 1, 300), + (158788, 276, 40), + (158788, 277, 20), + (158788, 279, 18), + (158788, 278, 18), + (158788, 316, 18), + (158788, 311, 18), + (158788, 281, 18), + (158788, 282, 18), + (158788, 156, 40), + (158788, 91, 540), + (158788, 280, 18), + (158788, 97, 540), + (158788, 95, 540), + (158788, 93, 540), + (158788, 94, 540), + (158788, 96, 540), + (158788, 92, 540), + (158788, 317, 18), + (158789, 277, 15), + (158789, 156, 20), + (158789, 1, 150), + (158789, 276, 20), + (158789, 92, 200), + (158789, 21, 15), + (158789, 91, 200), + (158789, 90, 200), + (158789, 97, 200), + (158789, 95, 200), + (158789, 93, 200), + (158789, 96, 200), + (158789, 94, 200), + (158789, 19, 15), + (158790, 1, 400), + (158790, 278, 60), + (158790, 280, 60), + (158790, 282, 60), + (158790, 316, 60), + (158790, 90, 900), + (158790, 91, 900), + (158790, 92, 900), + (158790, 93, 600), + (158790, 94, 900), + (158790, 95, 900), + (158790, 96, 900), + (158790, 97, 900), + (158791, 1, 300), + (158791, 100, 29), + (158791, 120, 60), + (158791, 278, 42), + (158791, 279, 42), + (158791, 280, 42), + (158791, 281, 42), + (158791, 282, 42), + (158791, 311, 42), + (158791, 316, 42), + (158791, 317, 42), + (158791, 90, 1200), + (158791, 91, 1200), + (158791, 92, 1200), + (158791, 93, 1200), + (158791, 94, 1200), + (158791, 95, 1200), + (158791, 96, 1200), + (158791, 97, 1200), + (158792, 108, 20), + (158792, 111, 12), + (158792, 143, 12), + (158792, 145, 12), + (158792, 156, 25), + (158792, 90, 200), + (158792, 91, 200), + (158792, 92, 200), + (158792, 93, 200), + (158792, 94, 200), + (158792, 95, 200), + (158792, 96, 200), + (158792, 97, 200), + (158793, 153, 25), + (158793, 154, 25), + (158793, 155, 25), + (158793, 90, 600), + (158793, 91, 600), + (158793, 92, 600), + (158793, 93, 600), + (158793, 94, 600), + (158793, 95, 600), + (158793, 96, 600), + (158793, 97, 600), + (158794, 137, 15), + (158794, 156, 25), + (158794, 164, 25), + (158794, 90, 300), + (158794, 91, 300), + (158794, 92, 300), + (158794, 93, 300), + (158794, 94, 300), + (158794, 95, 300), + (158794, 96, 300), + (158794, 97, 300), + (158795, 122, 9), + (158795, 127, 9), + (158795, 128, 9), + (158795, 129, 9), + (158795, 130, 9), + (158795, 131, 9), + (158795, 132, 20), + (158795, 221, 400), + (158795, 318, -15), + (158795, 90, 300), + (158795, 91, 300), + (158795, 92, 300), + (158795, 93, 300), + (158795, 94, 300), + (158795, 95, 300), + (158795, 96, 300), + (158795, 97, 300), + (158796, 1, 350), + (158796, 92, 280), + (158796, 94, 280), + (158796, 96, 280), + (158796, 93, 280), + (158796, 95, 280), + (158796, 97, 280), + (158796, 90, 280), + (158796, 91, 280), + (158797, 221, 50), + (158797, 276, 10), + (158797, 277, 10), + (158797, 379, 1), + (158798, 100, 15), + (158798, 221, 200), + (158798, 278, 20), + (158798, 279, 20), + (158798, 280, 20), + (158798, 281, 20), + (158798, 282, 20), + (158798, 311, 20), + (158798, 316, 20), + (158798, 317, 20), + (158798, 90, 800), + (158798, 91, 800), + (158798, 92, 800), + (158798, 93, 800), + (158798, 94, 800), + (158798, 95, 800), + (158798, 96, 800), + (158798, 97, 800), + (158799, 121, 25), + (158799, 132, 50), + (158799, 141, 20), + (158799, 144, 15), + (158799, 93, 700), + (158799, 95, 700), + (158799, 92, 700), + (158799, 97, 700), + (158799, 91, 700), + (158799, 96, 700), + (158799, 90, 700), + (158799, 94, 700), + (158800, 132, 20), + (158800, 152, 20), + (158800, 153, 20), + (158800, 93, 900), + (158800, 95, 650), + (158800, 92, 900), + (158800, 97, 650), + (158800, 91, 900), + (158800, 96, 900), + (158800, 90, 900), + (158800, 94, 900), + (158801, 128, 5), + (158801, 137, 25), + (158801, 90, 45), + (158801, 91, 45), + (158801, 92, 45), + (158801, 93, 45), + (158801, 94, 45), + (158801, 95, 45), + (158801, 96, 45), + (158801, 97, 45), + (158841, 101, 25), + (158842, 101, 25), + (158843, 101, 25), + (158844, 103, 14), + (158844, 90, 300), + (158844, 97, 300), + (158844, 95, 300), + (158844, 93, 300), + (158844, 96, 300), + (158844, 92, 300), + (158844, 91, 300), + (158844, 102, 14), + (158844, 120, 14), + (158844, 106, 14), + (158844, 107, 14), + (158844, 105, 14), + (158844, 104, 14), + (158844, 101, 21), + (158844, 100, 14), + (158844, 118, 14), + (158891, 160, 25), + (158891, 149, 25), + (158891, 221, 75), + (158891, 132, 25), + (158914, 127, 1), + (158914, 130, 1), + (158914, 131, 1), + (158914, 122, 1), + (158914, 129, 1), + (158914, 128, 1), + (158914, 91, 78), + (158914, 97, 60), + (158914, 94, 78), + (158914, 92, 78), + (158914, 90, 78), + (158914, 93, 70), + (158914, 96, 70), + (158914, 95, 60), + (158914, 221, 100), + (158914, 168, 20), + (158915, 100, 7), + (158915, 1, 33), + (158915, 282, 4), + (158915, 279, 4), + (158915, 280, 4), + (158915, 278, 4), + (158915, 281, 4), + (158915, 317, 4), + (158915, 311, 4), + (158915, 316, 4), + (158915, 96, 70), + (158915, 97, 60), + (158915, 95, 60), + (158915, 94, 78), + (158915, 91, 78), + (158915, 92, 78), + (158915, 90, 78), + (158915, 93, 70), + (158965, 126, 10), + (158965, 125, 10), + (158965, 158, 10), + (158966, 126, 10), + (158966, 125, 10), + (158966, 158, 10), + (158967, 126, 20), + (158967, 125, 20), + (158967, 158, 20), + (158970, 19, 2), + (158971, 19, 2), + (158972, 19, 3), + (158973, 19, 3), + (158988, 19, 4), + (158988, 149, 4), + (158989, 19, 4), + (158989, 149, 4), + (158990, 19, 5), + (158990, 149, 6), + (158990, 162, 1), + (158991, 19, 5), + (158991, 149, 6), + (158991, 162, 1), + (158992, 19, 6), + (158992, 149, 8), + (158992, 162, 3), + (158993, 19, 6), + (158993, 149, 8), + (158993, 162, 3), + (158994, 19, 7), + (158994, 149, 10), + (158994, 162, 5), + (158995, 19, 7), + (158995, 149, 10), + (158995, 162, 5), + (158996, 19, 8), + (158996, 149, 12), + (158996, 162, 8), + (159007, 155, 4), + (159008, 155, 4), + (159009, 154, 20), + (159009, 153, 15), + (159009, 155, 20), + (159023, 155, 30), + (159023, 1, 150), + (159023, 136, 20), + (159026, 148, 2), + (159027, 148, 2), + (159028, 148, 4), + (159029, 148, 4), + (159030, 148, 6), + (159031, 148, 6), + (159032, 148, 8), + (159033, 148, 8), + (159034, 148, 10), + (159039, 154, 15), + (159039, 153, 15), + (159042, 162, 4), + (159043, 162, 4), + (159044, 162, 8), + (159045, 162, 8), + (159046, 162, 12), + (159047, 162, 12), + (159048, 162, 16), + (159073, 95, 10), + (159073, 136, 1), + (159074, 152, 1), + (159074, 18, 1), + (159075, 154, 3), + (159075, 155, 3), + (159076, 17, 1), + (159076, 16, 1), + (159077, 97, 10), + (159077, 20, 1), + (159078, 123, 2), + (159078, 124, 1), + (159080, 19, 1), + (159080, 162, 2), + (159081, 132, 2), + (159081, 21, 1), + (159082, 165, 2), + (159082, 156, 2), + (159111, 154, 5), + (159112, 154, 5), + (159113, 154, 10), + (159114, 154, 10), + (159115, 154, 15), + (159828, 226, 1000), + (159828, 206, 99), + (159828, 207, 99), + (159828, 208, 99), + (159828, 216, 99), + (159828, 217, 99), + (159828, 205, 99), + (159828, 219, 99), + (159828, 233, 1000), + (159828, 227, 1000), + (159828, 228, 1000), + (159828, 229, 1000), + (159828, 230, 1000), + (159828, 231, 1000), + (159828, 234, 1000), + (159828, 225, 99), + (159893, 90, 6000), + (159893, 156, 500), + (159893, 91, 6000), + (159893, 153, 5000), + (159893, 92, 6000), + (159893, 97, 6000), + (159893, 95, 6000), + (159893, 93, 6000), + (159893, 94, 6000), + (159893, 96, 6000), + (159893, 155, 5000), + (159893, 154, 5000), + (159893, 1, 50000), + (159893, 27, 50000), + (160050, 95, 390), + (160050, 97, 390), + (160050, 91, 625), + (160050, 90, 625), + (160050, 93, 125), + (160050, 96, 125), + (160050, 92, 546), + (160050, 94, 125), + (160050, 1, 250), + (160050, 221, 250), + (160051, 95, 3), + (160051, 97, 3), + (160051, 91, 3), + (160051, 90, 3), + (160051, 93, 1), + (160051, 96, 1), + (160051, 92, 3), + (160051, 94, 1), + (160051, 1, 25), + (160051, 221, 25), + (160094, 96, 10), + (160094, 94, 10), + (160095, 96, 10), + (160095, 94, 10), + (160096, 96, 20), + (160096, 94, 20), + (160097, 96, 20), + (160097, 94, 20), + (160098, 96, 30), + (160098, 94, 30), + (160099, 96, 30), + (160099, 94, 30), + (160100, 96, 90), + (160100, 94, 90), + (160100, 20, 5), + (160101, 96, 90), + (160101, 94, 90), + (160101, 20, 5), + (160102, 96, 130), + (160102, 94, 130), + (160102, 20, 8), + (160103, 156, 6), + (160104, 156, 6), + (160105, 156, 12), + (160106, 156, 12), + (160107, 156, 18), + (160108, 156, 18), + (160109, 119, 24), + (160109, 156, 24), + (160110, 119, 24), + (160110, 156, 24), + (160111, 119, 36), + (160111, 156, 36), + (160112, 155, 10), + (160112, 91, 40), + (160112, 90, 20), + (160113, 155, 10), + (160113, 91, 40), + (160113, 90, 20), + (160114, 155, 20), + (160114, 91, 105), + (160114, 90, 80), + (160115, 155, 20), + (160115, 91, 105), + (160115, 90, 80), + (160116, 155, 30), + (160116, 91, 210), + (160116, 90, 160), + (160117, 155, 30), + (160117, 91, 210), + (160117, 90, 160), + (160118, 155, 40), + (160118, 91, 315), + (160118, 90, 240), + (160119, 155, 40), + (160119, 91, 315), + (160119, 90, 240), + (160120, 155, 70), + (160120, 91, 420), + (160120, 90, 320), + (160121, 163, 2), + (160122, 163, 2), + (160123, 163, 4), + (160129, 155, 10), + (160130, 155, 10), + (160131, 155, 20), + (160132, 155, 20), + (160133, 155, 30), + (160140, 152, 5), + (160140, 162, 20), + (160140, 18, 5), + (160152, 92, 20), + (160153, 92, 20), + (160154, 92, 40), + (160155, 92, 40), + (160156, 92, 80), + (160157, 92, 80), + (160158, 92, 100), + (160159, 92, 100), + (160160, 92, 200), + (160161, 92, 200), + (160162, 92, 300), + (160167, 20, 10), + (160172, 17, 10), + (160173, 157, 2), + (160174, 157, 2), + (160175, 157, 4), + (160176, 157, 4), + (160177, 157, 6), + (160178, 157, 6), + (160179, 157, 8), + (160180, 157, 8), + (160181, 157, 12), + (160182, 157, 12), + (160183, 157, 18), + (160190, 164, 5), + (160190, 181, 4), + (160191, 164, 5), + (160191, 181, 4), + (160192, 164, 10), + (160192, 181, 8), + (160193, 92, 10), + (160193, 221, 3), + (160193, 91, 10), + (160194, 92, 10), + (160194, 221, 3), + (160194, 91, 10), + (160195, 92, 30), + (160195, 221, 9), + (160195, 91, 30), + (160196, 92, 30), + (160196, 221, 9), + (160196, 91, 30), + (160197, 92, 50), + (160197, 221, 18), + (160197, 91, 50), + (160198, 92, 50), + (160198, 221, 18), + (160198, 91, 50), + (160199, 92, 80), + (160199, 221, 21), + (160199, 91, 80), + (160200, 92, 80), + (160200, 221, 21), + (160200, 91, 80), + (160201, 92, 100), + (160201, 221, 24), + (160201, 91, 100), + (160207, 154, 5), + (160207, 123, 3), + (160207, 159, 3), + (160208, 154, 5), + (160208, 123, 3), + (160208, 159, 3), + (160209, 154, 10), + (160209, 123, 6), + (160209, 159, 6), + (160212, 95, 200), + (160215, 97, 200), + (160218, 92, 200), + (160219, 152, 2), + (160219, 137, 2), + (160219, 156, 2), + (160220, 152, 2), + (160220, 137, 2), + (160220, 156, 2), + (160221, 152, 4), + (160221, 137, 4), + (160221, 156, 4), + (160222, 152, 4), + (160222, 137, 4), + (160222, 156, 4), + (160223, 152, 10), + (160223, 137, 10), + (160223, 156, 10), + (160224, 123, 2), + (160224, 1, 5), + (160225, 123, 2), + (160225, 1, 5), + (160226, 123, 4), + (160226, 1, 10), + (160227, 123, 4), + (160227, 1, 10), + (160228, 123, 6), + (160228, 1, 20), + (160229, 123, 6), + (160229, 1, 20), + (160230, 123, 8), + (160230, 1, 30), + (160231, 123, 8), + (160231, 1, 30), + (160232, 123, 10), + (160232, 1, 40), + (160235, 155, 20), + (160238, 155, 20), + (160241, 155, 20), + (160244, 155, 20), + (160247, 152, 2), + (160248, 152, 2), + (160249, 152, 4), + (160250, 152, 4), + (160251, 152, 6), + (160252, 152, 6), + (160253, 152, 8), + (160254, 152, 8), + (160257, 152, 10), + (160258, 152, 10), + (160259, 152, 12), + (160259, 16, 2), + (160260, 152, 12), + (160260, 16, 2), + (160261, 152, 14), + (160261, 16, 4), + (160262, 152, 14), + (160262, 16, 4), + (160263, 152, 16), + (160263, 154, 10), + (160263, 16, 6), + (160264, 119, 4), + (160264, 154, 2), + (160264, 319, 1), + (160265, 119, 4), + (160265, 154, 2), + (160265, 319, 1), + (160266, 119, 8), + (160266, 154, 4), + (160266, 319, 1), + (160267, 119, 8), + (160267, 154, 4), + (160267, 319, 1), + (160268, 119, 12), + (160268, 154, 6), + (160268, 319, 2), + (160269, 119, 12), + (160269, 154, 6), + (160269, 319, 2), + (160270, 119, 16), + (160270, 154, 8), + (160270, 319, 2), + (160271, 119, 16), + (160271, 154, 8), + (160271, 319, 2), + (160272, 119, 20), + (160272, 154, 10), + (160272, 319, 3), + (160275, 93, 200), + (160285, 154, 8), + (160285, 155, 8), + (160286, 154, 8), + (160286, 155, 8), + (160287, 154, 16), + (160287, 155, 16), + (160288, 181, 2), + (160288, 160, 2), + (160288, 149, 3), + (160289, 181, 2), + (160289, 160, 2), + (160289, 149, 3), + (160290, 181, 3), + (160290, 160, 4), + (160290, 149, 6), + (160291, 181, 3), + (160291, 160, 4), + (160291, 149, 6), + (160292, 181, 5), + (160292, 160, 8), + (160292, 149, 11), + (160293, 17, 1), + (160293, 93, 1), + (160293, 95, 1), + (160293, 92, 1), + (160293, 97, 1), + (160293, 1, 1), + (160293, 91, 1), + (160293, 96, 1), + (160293, 90, 1), + (160293, 21, 1), + (160293, 94, 1), + (160293, 20, 1), + (160294, 17, 5), + (160294, 93, 234), + (160294, 95, 234), + (160294, 92, 328), + (160294, 97, 75), + (160294, 1, 40), + (160294, 91, 375), + (160294, 96, 234), + (160294, 90, 375), + (160294, 21, 5), + (160294, 94, 75), + (160294, 20, 5), + (160330, 17, 1), + (160330, 93, 1), + (160330, 95, 1), + (160330, 92, 1), + (160330, 97, 1), + (160330, 1, 1), + (160330, 91, 1), + (160330, 96, 1), + (160330, 90, 1), + (160330, 21, 1), + (160330, 94, 1), + (160330, 20, 1), + (160331, 17, 5), + (160331, 93, 156), + (160331, 95, 156), + (160331, 92, 218), + (160331, 97, 50), + (160331, 1, 20), + (160331, 91, 250), + (160331, 96, 156), + (160331, 90, 250), + (160331, 21, 5), + (160331, 94, 50), + (160331, 20, 5), + (160332, 17, 1), + (160332, 93, 1), + (160332, 95, 1), + (160332, 92, 1), + (160332, 97, 1), + (160332, 1, 1), + (160332, 91, 1), + (160332, 96, 1), + (160332, 90, 1), + (160332, 21, 1), + (160332, 94, 1), + (160332, 20, 1), + (160333, 17, 5), + (160333, 93, 156), + (160333, 95, 156), + (160333, 92, 218), + (160333, 97, 50), + (160333, 1, 30), + (160333, 91, 250), + (160333, 96, 156), + (160333, 90, 250), + (160333, 21, 5), + (160333, 94, 50), + (160333, 20, 5), + (160334, 17, 1), + (160334, 93, 3), + (160334, 95, 3), + (160334, 92, 3), + (160334, 97, 1), + (160334, 1, 1), + (160334, 91, 3), + (160334, 96, 3), + (160334, 90, 3), + (160334, 21, 1), + (160334, 94, 1), + (160334, 20, 1), + (160335, 17, 5), + (160335, 93, 390), + (160335, 95, 390), + (160335, 92, 546), + (160335, 97, 125), + (160335, 1, 80), + (160335, 91, 625), + (160335, 96, 390), + (160335, 90, 625), + (160335, 21, 5), + (160335, 94, 125), + (160335, 20, 5), + (160336, 17, 1), + (160336, 93, 5), + (160336, 95, 5), + (160336, 92, 5), + (160336, 97, 1), + (160336, 1, 1), + (160336, 91, 5), + (160336, 96, 5), + (160336, 90, 5), + (160336, 21, 1), + (160336, 94, 1), + (160336, 20, 1), + (160337, 17, 5), + (160337, 93, 625), + (160337, 95, 625), + (160337, 92, 875), + (160337, 97, 200), + (160337, 1, 100), + (160337, 91, 1000), + (160337, 96, 625), + (160337, 90, 1000), + (160337, 21, 5), + (160337, 94, 200), + (160337, 20, 5), + (160338, 17, 1), + (160338, 93, 5), + (160338, 95, 5), + (160338, 164, 1), + (160338, 154, 1), + (160338, 153, 1), + (160338, 92, 5), + (160338, 155, 1), + (160338, 97, 1), + (160338, 1, 1), + (160338, 91, 5), + (160338, 145, 1), + (160338, 96, 5), + (160338, 90, 5), + (160338, 21, 1), + (160338, 94, 1), + (160338, 143, 1), + (160338, 20, 1), + (160339, 17, 5), + (160339, 93, 500), + (160339, 95, 500), + (160339, 164, 10), + (160339, 154, 20), + (160339, 153, 20), + (160339, 92, 750), + (160339, 155, 20), + (160339, 97, 175), + (160339, 1, 80), + (160339, 91, 875), + (160339, 145, 20), + (160339, 96, 500), + (160339, 90, 875), + (160339, 21, 5), + (160339, 94, 175), + (160339, 143, 20), + (160339, 20, 5), + (160389, 93, 250), + (160389, 95, 750), + (160389, 92, 1100), + (160389, 97, 875), + (160389, 221, 400), + (160389, 91, 1100), + (160389, 149, 50), + (160389, 96, 250), + (160389, 90, 1100), + (160389, 162, 20), + (160389, 94, 250), + (160389, 156, -50), + (160390, 93, 1), + (160390, 95, 5), + (160390, 92, 5), + (160390, 97, 5), + (160390, 221, 2), + (160390, 91, 5), + (160390, 149, 1), + (160390, 96, 1), + (160390, 90, 5), + (160390, 162, 1), + (160390, 94, 1), + (160390, 156, -1), + (160391, 221, 1), + (160391, 153, 1), + (160391, 19, 1), + (160391, 17, 1), + (160391, 16, 1), + (160391, 96, 1), + (160391, 94, 1), + (160391, 93, 1), + (160391, 97, 1), + (160391, 95, 5), + (160391, 91, 5), + (160391, 92, 5), + (160391, 90, 5), + (160392, 221, 80), + (160392, 153, 20), + (160392, 19, 5), + (160392, 17, 5), + (160392, 16, 5), + (160392, 96, 150), + (160392, 94, 150), + (160392, 93, 150), + (160392, 97, 150), + (160392, 95, 875), + (160392, 91, 1000), + (160392, 92, 875), + (160392, 90, 1000), + (160393, 221, 1), + (160393, 153, 1), + (160393, 19, 1), + (160393, 17, 1), + (160393, 16, 1), + (160393, 96, 1), + (160393, 94, 1), + (160393, 93, 1), + (160393, 97, 1), + (160393, 92, 1), + (160393, 91, 1), + (160393, 95, 1), + (160393, 90, 1), + (160394, 221, 15), + (160394, 153, 10), + (160394, 19, 5), + (160394, 17, 5), + (160394, 16, 5), + (160394, 96, 37), + (160394, 94, 37), + (160394, 93, 37), + (160394, 97, 37), + (160394, 92, 218), + (160394, 91, 250), + (160394, 95, 218), + (160394, 90, 250), + (160395, 17, 1), + (160395, 93, 1), + (160395, 95, 3), + (160395, 153, 1), + (160395, 92, 3), + (160395, 97, 1), + (160395, 19, 1), + (160395, 221, 1), + (160395, 91, 3), + (160395, 96, 1), + (160395, 90, 3), + (160395, 94, 1), + (160395, 16, 1), + (160396, 17, 5), + (160396, 93, 112), + (160396, 95, 656), + (160396, 153, 15), + (160396, 92, 656), + (160396, 97, 112), + (160396, 19, 5), + (160396, 221, 70), + (160396, 91, 750), + (160396, 96, 112), + (160396, 90, 750), + (160396, 94, 112), + (160396, 16, 5), + (160397, 17, 1), + (160397, 93, 1), + (160397, 95, 3), + (160397, 153, 1), + (160397, 92, 3), + (160397, 97, 1), + (160397, 19, 1), + (160397, 221, 1), + (160397, 91, 3), + (160397, 96, 1), + (160397, 90, 3), + (160397, 94, 1), + (160397, 16, 1), + (160398, 17, 5), + (160398, 93, 93), + (160398, 95, 546), + (160398, 153, 15), + (160398, 92, 546), + (160398, 97, 93), + (160398, 19, 5), + (160398, 221, 60), + (160398, 91, 625), + (160398, 96, 93), + (160398, 90, 625), + (160398, 94, 93), + (160398, 16, 5), + (160399, 221, 1), + (160399, 153, 1), + (160399, 19, 1), + (160399, 16, 1), + (160399, 17, 1), + (160399, 96, 1), + (160399, 94, 1), + (160399, 93, 1), + (160399, 97, 1), + (160399, 92, 1), + (160399, 90, 1), + (160399, 91, 1), + (160399, 95, 1), + (160400, 221, 20), + (160400, 153, 10), + (160400, 19, 5), + (160400, 16, 5), + (160400, 17, 5), + (160400, 96, 37), + (160400, 94, 37), + (160400, 93, 37), + (160400, 97, 37), + (160400, 92, 218), + (160400, 90, 250), + (160400, 91, 250), + (160400, 95, 218), + (160401, 221, 1), + (160401, 153, 1), + (160401, 19, 1), + (160401, 16, 1), + (160401, 17, 1), + (160401, 96, 1), + (160401, 94, 1), + (160401, 93, 1), + (160401, 97, 1), + (160401, 95, 1), + (160401, 91, 1), + (160401, 92, 1), + (160401, 90, 1), + (160402, 221, 15), + (160402, 153, 10), + (160402, 19, 5), + (160402, 16, 5), + (160402, 17, 5), + (160402, 96, 56), + (160402, 94, 56), + (160402, 93, 56), + (160402, 97, 56), + (160402, 95, 328), + (160402, 91, 375), + (160402, 92, 328), + (160402, 90, 375), + (160403, 93, 1), + (160403, 95, 1), + (160403, 92, 1), + (160403, 97, 1), + (160403, 19, 1), + (160403, 91, 1), + (160403, 106, 1), + (160403, 96, 1), + (160403, 90, 1), + (160403, 94, 1), + (160403, 18, 1), + (160404, 93, 56), + (160404, 95, 328), + (160404, 92, 56), + (160404, 97, 56), + (160404, 19, 3), + (160404, 91, 375), + (160404, 106, 6), + (160404, 96, 56), + (160404, 90, 328), + (160404, 94, 328), + (160404, 18, 3), + (160405, 93, 1), + (160405, 95, 1), + (160405, 92, 1), + (160405, 97, 1), + (160405, 19, 1), + (160405, 91, 1), + (160405, 106, 1), + (160405, 96, 1), + (160405, 90, 1), + (160405, 94, 1), + (160405, 18, 1), + (160406, 93, 37), + (160406, 95, 218), + (160406, 92, 37), + (160406, 97, 218), + (160406, 19, 10), + (160406, 91, 250), + (160406, 106, 6), + (160406, 96, 37), + (160406, 90, 218), + (160406, 94, 218), + (160406, 18, 10), + (160407, 93, 1), + (160407, 118, 1), + (160407, 95, 5), + (160407, 92, 1), + (160407, 97, 1), + (160407, 19, 1), + (160407, 91, 5), + (160407, 106, 1), + (160407, 96, 1), + (160407, 90, 5), + (160407, 94, 5), + (160407, 18, 1), + (160408, 93, 150), + (160408, 118, 40), + (160408, 95, 875), + (160408, 92, 150), + (160408, 97, 150), + (160408, 19, 10), + (160408, 91, 1000), + (160408, 106, 6), + (160408, 96, 150), + (160408, 90, 875), + (160408, 94, 875), + (160408, 18, 10), + (160409, 106, 1), + (160409, 19, 1), + (160409, 18, 1), + (160409, 92, 1), + (160409, 97, 1), + (160409, 93, 1), + (160409, 94, 1), + (160409, 96, 1), + (160409, 90, 1), + (160409, 91, 1), + (160409, 95, 1), + (160410, 106, 6), + (160410, 19, 10), + (160410, 18, 10), + (160410, 92, 37), + (160410, 97, 37), + (160410, 93, 37), + (160410, 94, 218), + (160410, 96, 37), + (160410, 90, 218), + (160410, 91, 250), + (160410, 95, 218), + (160411, 93, 1), + (160411, 95, 3), + (160411, 92, 1), + (160411, 97, 1), + (160411, 19, 1), + (160411, 91, 3), + (160411, 106, 1), + (160411, 96, 1), + (160411, 90, 3), + (160411, 94, 3), + (160411, 122, 1), + (160411, 18, 1), + (160412, 93, 112), + (160412, 95, 656), + (160412, 92, 112), + (160412, 97, 112), + (160412, 19, 10), + (160412, 91, 750), + (160412, 106, 6), + (160412, 96, 112), + (160412, 90, 656), + (160412, 94, 656), + (160412, 122, 10), + (160412, 18, 10), + (160413, 93, 1), + (160413, 95, 3), + (160413, 92, 1), + (160413, 97, 1), + (160413, 19, 1), + (160413, 91, 3), + (160413, 106, 1), + (160413, 96, 1), + (160413, 90, 3), + (160413, 94, 3), + (160413, 18, 1), + (160414, 93, 93), + (160414, 95, 546), + (160414, 92, 93), + (160414, 97, 93), + (160414, 19, 10), + (160414, 91, 625), + (160414, 106, 6), + (160414, 96, 93), + (160414, 90, 546), + (160414, 94, 546), + (160414, 18, 10), + (160415, 152, 1), + (160415, 93, 1), + (160415, 95, 5), + (160415, 119, 1), + (160415, 92, 5), + (160415, 155, 1), + (160415, 97, 5), + (160415, 91, 5), + (160415, 96, 1), + (160415, 90, 5), + (160415, 94, 1), + (160415, 110, 1), + (160416, 152, 16), + (160416, 93, 250), + (160416, 95, 875), + (160416, 119, 30), + (160416, 92, 875), + (160416, 155, 16), + (160416, 97, 875), + (160416, 91, 1000), + (160416, 96, 250), + (160416, 90, 1000), + (160416, 94, 250), + (160416, 110, 12), + (160417, 165, 1), + (160417, 93, 1), + (160417, 95, 1), + (160417, 135, 1), + (160417, 126, 1), + (160417, 92, 1), + (160417, 97, 1), + (160417, 125, 1), + (160417, 91, 1), + (160417, 96, 1), + (160417, 90, 1), + (160417, 94, 1), + (160418, 165, 12), + (160418, 93, 250), + (160418, 95, 218), + (160418, 135, 12), + (160418, 126, 12), + (160418, 92, 250), + (160418, 97, 218), + (160418, 125, 12), + (160418, 91, 218), + (160418, 96, 218), + (160418, 90, 250), + (160418, 94, 62), + (160419, 93, 1), + (160419, 95, 1), + (160419, 164, 1), + (160419, 153, 1), + (160419, 92, 1), + (160419, 97, 1), + (160419, 91, 1), + (160419, 96, 1), + (160419, 90, 1), + (160419, 94, 1), + (160419, 156, 1), + (160420, 93, 93), + (160420, 95, 375), + (160420, 164, 30), + (160420, 153, 30), + (160420, 92, 375), + (160420, 97, 375), + (160420, 91, 375), + (160420, 96, 93), + (160420, 90, 375), + (160420, 94, 93), + (160420, 156, 40), + (160421, 118, 8), + (160421, 119, 8), + (160421, 149, 8), + (160421, 136, 2), + (160421, 120, 8), + (160422, 118, 10), + (160422, 119, 10), + (160422, 123, 2), + (160422, 221, 10), + (160422, 149, 10), + (160422, 136, 2), + (160422, 120, 10), + (160422, 162, 2), + (160422, 124, 2), + (160423, 129, 1), + (160423, 162, 1), + (160424, 129, 10), + (160424, 162, 20), + (160425, 128, 1), + (160425, 161, 1), + (160425, 123, 1), + (160425, 19, 1), + (160425, 130, 1), + (160425, 131, 1), + (160425, 127, 1), + (160425, 160, 1), + (160425, 136, 1), + (160425, 21, 1), + (160425, 129, 1), + (160425, 162, 1), + (160425, 122, 1), + (160425, 124, 1), + (160425, 141, 1), + (160426, 128, 4), + (160426, 161, 4), + (160426, 123, 4), + (160426, 19, 4), + (160426, 130, 4), + (160426, 131, 4), + (160426, 127, 4), + (160426, 160, 4), + (160426, 136, 4), + (160426, 21, 4), + (160426, 129, 4), + (160426, 162, 4), + (160426, 122, 4), + (160426, 124, 4), + (160426, 141, 4), + (160427, 152, 1), + (160427, 142, 1), + (160427, 93, 1), + (160427, 95, 1), + (160427, 164, 1), + (160427, 154, 1), + (160427, 153, 1), + (160427, 92, 1), + (160427, 155, 1), + (160427, 97, 1), + (160427, 91, 1), + (160427, 96, 1), + (160427, 90, 1), + (160427, 21, 1), + (160427, 94, 1), + (160428, 152, 6), + (160428, 142, 6), + (160428, 93, 156), + (160428, 95, 218), + (160428, 164, 6), + (160428, 154, 12), + (160428, 153, 12), + (160428, 92, 250), + (160428, 155, 12), + (160428, 97, 218), + (160428, 91, 250), + (160428, 96, 218), + (160428, 90, 250), + (160428, 21, 10), + (160428, 94, 62), + (160429, 152, 1), + (160429, 93, 5), + (160429, 95, 5), + (160429, 164, 1), + (160429, 154, 1), + (160429, 153, 1), + (160429, 92, 5), + (160429, 155, 1), + (160429, 97, 5), + (160429, 100, 1), + (160429, 91, 5), + (160429, 96, 5), + (160429, 90, 5), + (160429, 94, 1), + (160429, 18, 1), + (160430, 152, 6), + (160430, 93, 625), + (160430, 95, 875), + (160430, 164, 6), + (160430, 154, 12), + (160430, 153, 12), + (160430, 92, 1000), + (160430, 155, 12), + (160430, 97, 875), + (160430, 100, 12), + (160430, 91, 1000), + (160430, 96, 875), + (160430, 90, 1000), + (160430, 94, 250), + (160430, 18, 10), + (160431, 152, 1), + (160431, 164, 1), + (160431, 153, 1), + (160431, 154, 1), + (160431, 155, 1), + (160431, 143, 1), + (160431, 94, 1), + (160431, 93, 1), + (160431, 91, 1), + (160431, 92, 1), + (160431, 90, 1), + (160431, 96, 1), + (160431, 97, 1), + (160431, 95, 1), + (160432, 152, 6), + (160432, 164, 6), + (160432, 153, 12), + (160432, 154, 12), + (160432, 155, 12), + (160432, 143, 16), + (160432, 94, 93), + (160432, 93, 234), + (160432, 91, 375), + (160432, 92, 375), + (160432, 90, 375), + (160432, 96, 328), + (160432, 97, 328), + (160432, 95, 328), + (160433, 152, 1), + (160433, 93, 1), + (160433, 95, 1), + (160433, 164, 1), + (160433, 154, 1), + (160433, 153, 1), + (160433, 92, 1), + (160433, 155, 1), + (160433, 97, 1), + (160433, 100, 1), + (160433, 91, 1), + (160433, 96, 1), + (160433, 90, 1), + (160433, 94, 1), + (160434, 152, 6), + (160434, 93, 156), + (160434, 95, 218), + (160434, 164, 6), + (160434, 154, 12), + (160434, 153, 12), + (160434, 92, 250), + (160434, 155, 12), + (160434, 97, 218), + (160434, 100, 6), + (160434, 91, 250), + (160434, 96, 218), + (160434, 90, 250), + (160434, 94, 62), + (160435, 17, 1), + (160435, 152, 1), + (160435, 93, 3), + (160435, 95, 3), + (160435, 164, 1), + (160435, 154, 1), + (160435, 153, 1), + (160435, 92, 3), + (160435, 155, 1), + (160435, 97, 3), + (160435, 91, 3), + (160435, 120, 1), + (160435, 96, 3), + (160435, 90, 3), + (160435, 94, 1), + (160436, 17, 10), + (160436, 152, 6), + (160436, 93, 390), + (160436, 95, 546), + (160436, 164, 6), + (160436, 154, 12), + (160436, 153, 12), + (160436, 92, 625), + (160436, 155, 12), + (160436, 97, 546), + (160436, 91, 625), + (160436, 120, 16), + (160436, 96, 546), + (160436, 90, 625), + (160436, 94, 156), + (160437, 152, 1), + (160437, 93, 3), + (160437, 95, 3), + (160437, 164, 1), + (160437, 144, 1), + (160437, 154, 1), + (160437, 153, 1), + (160437, 92, 3), + (160437, 155, 1), + (160437, 97, 3), + (160437, 91, 3), + (160437, 96, 3), + (160437, 90, 3), + (160437, 94, 1), + (160437, 20, 1), + (160438, 152, 6), + (160438, 93, 468), + (160438, 95, 656), + (160438, 164, 6), + (160438, 144, 12), + (160438, 154, 12), + (160438, 153, 12), + (160438, 92, 750), + (160438, 155, 12), + (160438, 97, 656), + (160438, 91, 750), + (160438, 96, 656), + (160438, 90, 750), + (160438, 94, 187), + (160438, 20, 10), + (160439, 102, 1), + (160439, 103, 1), + (160439, 107, 1), + (160439, 105, 1), + (160439, 104, 1), + (160439, 106, 1), + (160439, 101, 1), + (160439, 116, 1), + (160439, 112, 1), + (160439, 113, 1), + (160439, 115, 1), + (160439, 114, 1), + (160439, 110, 1), + (160439, 109, 1), + (160439, 133, 1), + (160439, 134, 1), + (160439, 118, 1), + (160439, 119, 1), + (160439, 123, 1), + (160439, 1, 2), + (160439, 93, 25), + (160439, 95, 25), + (160439, 92, 25), + (160439, 97, 25), + (160439, 91, 25), + (160439, 96, 10), + (160439, 90, 25), + (160439, 94, 10), + (160440, 102, 10), + (160440, 103, 10), + (160440, 107, 10), + (160440, 105, 10), + (160440, 104, 10), + (160440, 106, 10), + (160440, 101, 10), + (160440, 116, 10), + (160440, 112, 10), + (160440, 113, 10), + (160440, 115, 10), + (160440, 114, 10), + (160440, 110, 10), + (160440, 109, 10), + (160440, 133, 10), + (160440, 134, 10), + (160440, 118, 24), + (160440, 119, 24), + (160440, 123, 10), + (160440, 1, 300), + (160440, 93, 3125), + (160440, 95, 4375), + (160440, 92, 5000), + (160440, 97, 4375), + (160440, 91, 5000), + (160440, 96, 1250), + (160440, 90, 5000), + (160440, 94, 1250), + (160449, 17, 5), + (160449, 137, 10), + (160449, 156, 15), + (160463, 119, 1), + (160463, 96, 4), + (160463, 93, 4), + (160463, 97, 5), + (160463, 95, 4), + (160463, 91, 5), + (160463, 92, 5), + (160463, 90, 5), + (160463, 94, 4), + (160464, 123, 20), + (160464, 96, 800), + (160464, 93, 550), + (160464, 97, 900), + (160464, 95, 900), + (160464, 91, 1000), + (160464, 92, 1000), + (160464, 90, 1000), + (160464, 94, 550), + (160465, 152, 1), + (160465, 96, 5), + (160465, 93, 5), + (160465, 97, 5), + (160465, 95, 5), + (160465, 91, 5), + (160465, 92, 5), + (160465, 90, 5), + (160465, 94, 1), + (160466, 119, 20), + (160466, 96, 700), + (160466, 93, 700), + (160466, 97, 900), + (160466, 95, 700), + (160466, 91, 1000), + (160466, 92, 1000), + (160466, 90, 1000), + (160466, 94, 700), + (160467, 123, 1), + (160467, 96, 5), + (160467, 93, 2), + (160467, 97, 5), + (160467, 95, 5), + (160467, 91, 5), + (160467, 92, 5), + (160467, 90, 5), + (160467, 94, 2), + (160468, 221, 20), + (160468, 96, 630), + (160468, 93, 630), + (160468, 97, 900), + (160468, 95, 900), + (160468, 91, 1000), + (160468, 92, 1000), + (160468, 90, 1000), + (160468, 94, 630), + (160469, 221, 1), + (160469, 96, 3), + (160469, 93, 3), + (160469, 97, 5), + (160469, 95, 5), + (160469, 91, 5), + (160469, 92, 5), + (160469, 90, 5), + (160469, 94, 3), + (160470, 152, 20), + (160470, 96, 900), + (160470, 93, 750), + (160470, 97, 900), + (160470, 95, 900), + (160470, 91, 1000), + (160470, 92, 1000), + (160470, 90, 1000), + (160470, 94, 250), + (160471, 153, 1), + (160471, 96, 5), + (160471, 93, 1), + (160471, 97, 5), + (160471, 95, 5), + (160471, 91, 5), + (160471, 92, 5), + (160471, 90, 5), + (160471, 94, 3), + (160472, 153, 20), + (160472, 96, 900), + (160472, 93, 400), + (160472, 97, 900), + (160472, 95, 900), + (160472, 91, 1000), + (160472, 92, 1000), + (160472, 90, 1000), + (160472, 94, 600), + (160476, 20, 2), + (160477, 20, 2), + (160478, 20, 4), + (160479, 20, 4), + (160480, 20, 6), + (160481, 136, 1), + (160482, 136, 1), + (160483, 136, 2), + (160484, 136, 2), + (160485, 136, 3), + (160486, 136, 3), + (160487, 136, 4), + (160488, 136, 4), + (160489, 136, 6), + (160490, 136, 6), + (160491, 136, 8), + (160492, 136, 8), + (160493, 136, 10), + (160494, 136, 10), + (160495, 136, 12), + (160496, 136, 12), + (160497, 136, 14), + (160498, 136, 14), + (160499, 136, 16), + (160568, 156, 1), + (160568, 379, 1), + (160568, 164, 1), + (160568, 136, 1), + (160568, 165, 1), + (160568, 281, 1), + (160568, 317, 1), + (160568, 278, 1), + (160568, 280, 1), + (160568, 93, 5), + (160568, 96, 8), + (160568, 95, 4), + (160568, 97, 4), + (160568, 91, 5), + (160568, 90, 5), + (160568, 92, 5), + (160568, 94, 3), + (160569, 156, 20), + (160569, 379, 2), + (160569, 164, 20), + (160569, 136, 20), + (160569, 165, 10), + (160569, 281, 10), + (160569, 317, 10), + (160569, 278, 10), + (160569, 280, 10), + (160569, 93, 735), + (160569, 96, 900), + (160569, 95, 675), + (160569, 97, 675), + (160569, 91, 735), + (160569, 90, 735), + (160569, 92, 735), + (160569, 94, 440), + (160577, 379, 11), + (160578, 379, 8), + (160579, 379, 6), + (160632, 118, -50), + (160632, 119, -50), + (160632, 120, -50), + (160632, 149, -50), + (160632, 151, 30), + (160632, 379, 1), + (160632, 380, 1), + (160633, 118, -800), + (160633, 119, -800), + (160633, 120, -800), + (160633, 149, 1), + (160633, 151, 600), + (160633, 379, 15), + (160633, 380, 80), + (160652, 100, 1), + (160652, 120, 1), + (160652, 142, 1), + (160652, 90, 6), + (160652, 91, 6), + (160652, 92, 3), + (160652, 93, 6), + (160652, 94, 3), + (160652, 95, 5), + (160652, 96, 3), + (160652, 97, 5), + (160653, 100, 14), + (160653, 120, 28), + (160653, 142, 14), + (160653, 90, 1200), + (160653, 91, 1200), + (160653, 92, 400), + (160653, 93, 1200), + (160653, 94, 400), + (160653, 95, 800), + (160653, 96, 400), + (160653, 97, 800), + (160654, 153, 1), + (160654, 154, 1), + (160654, 155, 1), + (160654, 156, 1), + (160654, 90, 6), + (160654, 91, 6), + (160654, 92, 5), + (160654, 93, 5), + (160654, 94, 3), + (160654, 95, 5), + (160654, 96, 3), + (160654, 97, 5), + (160655, 153, 24), + (160655, 154, 24), + (160655, 155, 24), + (160655, 156, 24), + (160655, 90, 1200), + (160655, 91, 1200), + (160655, 92, 800), + (160655, 93, 800), + (160655, 94, 400), + (160655, 95, 800), + (160655, 96, 400), + (160655, 97, 800), + (160656, 122, 1), + (160656, 127, 1), + (160656, 128, 1), + (160656, 129, 1), + (160656, 130, 1), + (160656, 131, 1), + (160656, 221, 1), + (160656, 90, 5), + (160656, 91, 5), + (160656, 92, 5), + (160656, 93, 5), + (160656, 94, 5), + (160656, 95, 5), + (160656, 96, 5), + (160656, 97, 5), + (160657, 122, 8), + (160657, 127, 8), + (160657, 128, 8), + (160657, 129, 8), + (160657, 130, 8), + (160657, 131, 8), + (160657, 221, 80), + (160657, 90, 800), + (160657, 91, 800), + (160657, 92, 800), + (160657, 93, 800), + (160657, 94, 800), + (160657, 95, 800), + (160657, 96, 800), + (160657, 97, 800), + (160658, 1, 5), + (160658, 123, 1), + (160658, 90, 6), + (160658, 91, 6), + (160658, 92, 5), + (160658, 93, 5), + (160658, 94, 5), + (160658, 95, 3), + (160658, 96, 5), + (160658, 97, 3), + (160659, 1, 300), + (160659, 123, 20), + (160659, 90, 1200), + (160659, 91, 1200), + (160659, 92, 800), + (160659, 93, 800), + (160659, 94, 800), + (160659, 95, 400), + (160659, 96, 800), + (160659, 97, 400), + (160704, 276, 15), + (160704, 278, 20), + (160704, 279, 20), + (160704, 280, 20), + (160704, 281, 20), + (160704, 282, 20), + (160704, 311, 20), + (160704, 316, 20), + (160704, 317, 20), + (160704, 379, 100), + (160707, 96, 6), + (160707, 94, 6), + (160707, 97, 4), + (160707, 93, 4), + (160707, 95, 4), + (160707, 92, 4), + (160707, 91, 3), + (160707, 90, 3), + (160707, 319, 1), + (160707, 132, 1), + (160707, 149, 3), + (160708, 96, 1180), + (160708, 94, 1180), + (160708, 97, 710), + (160708, 93, 710), + (160708, 95, 710), + (160708, 92, 710), + (160708, 91, 380), + (160708, 90, 380), + (160708, 319, 3), + (160708, 132, 18), + (160708, 149, 36), + (160711, 276, 30), + (160711, 278, 80), + (160711, 279, 80), + (160711, 280, 80), + (160711, 281, 80), + (160711, 282, 80), + (160711, 311, 80), + (160711, 316, 80), + (160711, 317, 80), + (160711, 379, 150), + (160713, 276, 50), + (160713, 278, 300), + (160713, 279, 300), + (160713, 280, 300), + (160713, 281, 300), + (160713, 282, 300), + (160713, 311, 300), + (160713, 316, 300), + (160713, 317, 300), + (160713, 379, 200), + (160728, 119, 1), + (160728, 118, 1), + (160728, 120, 1), + (160728, 90, 10), + (160728, 91, 10), + (160729, 119, 15), + (160729, 118, 15), + (160729, 120, 15), + (160729, 90, 960), + (160729, 91, 960), + (160730, 132, 1), + (160730, 149, 1), + (160730, 92, 10), + (160730, 94, 7), + (160731, 132, 30), + (160731, 149, 15), + (160731, 92, 960), + (160731, 94, 720), + (160732, 95, 10), + (160732, 97, 10), + (160732, 161, 1), + (160732, 136, 1), + (160733, 95, 940), + (160733, 97, 940), + (160733, 161, 10), + (160733, 136, 20), + (160734, 153, 1), + (160734, 154, 1), + (160734, 155, 1), + (160734, 156, 5), + (160734, 93, 9), + (160734, 96, 9), + (160735, 153, 15), + (160735, 154, 15), + (160735, 155, 15), + (160735, 156, 30), + (160735, 93, 840), + (160735, 96, 840), + (160736, 158, 1), + (160736, 157, 1), + (160736, 126, 1), + (160736, 125, 1), + (160736, 92, 8), + (160736, 97, 8), + (160737, 158, 20), + (160737, 157, 20), + (160737, 126, 20), + (160737, 125, 20), + (160737, 92, 810), + (160737, 97, 810), + (160738, 162, 1), + (160738, 92, 1), + (160738, 94, 1), + (160739, 162, 6), + (160739, 92, 50), + (160739, 94, 50), + (160776, 156, 5), + (160776, 96, 1), + (160776, 94, 1), + (160776, 93, 1), + (160776, 95, 1), + (160776, 97, 5), + (160776, 91, 1), + (160776, 92, 1), + (160776, 90, 1), + (160777, 156, 30), + (160777, 96, 325), + (160777, 94, 325), + (160777, 93, 325), + (160777, 95, 425), + (160777, 97, 500), + (160777, 91, 375), + (160777, 92, 375), + (160777, 90, 375), + (160788, 379, 6), + (160790, 379, 8), + (160792, 379, 11), + (160794, 379, 17), + (160796, 151, 260), + (160796, 113, 180), + (160821, 278, 16), + (160821, 279, 16), + (160821, 280, 16), + (160821, 281, 16), + (160821, 282, 16), + (160821, 311, 16), + (160821, 316, 16), + (160821, 317, 16), + (160821, 113, 1), + (160823, 278, 23), + (160823, 279, 23), + (160823, 280, 23), + (160823, 281, 23), + (160823, 282, 23), + (160823, 311, 23), + (160823, 316, 23), + (160823, 317, 23), + (160823, 113, 2), + (160825, 278, 27), + (160825, 279, 27), + (160825, 280, 27), + (160825, 281, 27), + (160825, 282, 27), + (160825, 311, 27), + (160825, 316, 27), + (160825, 317, 27), + (160825, 113, 3), + (160825, 151, 2), + (160827, 278, 30), + (160827, 279, 30), + (160827, 280, 30), + (160827, 281, 30), + (160827, 282, 30), + (160827, 311, 30), + (160827, 316, 30), + (160827, 317, 30), + (160827, 113, 5), + (160827, 151, 4), + (160829, 278, 38), + (160829, 279, 38), + (160829, 280, 38), + (160829, 281, 38), + (160829, 282, 38), + (160829, 311, 38), + (160829, 316, 38), + (160829, 317, 38), + (160829, 113, 7), + (160829, 151, 10), + (160829, 164, 8), + (160831, 122, 1), + (160831, 155, 3), + (160831, 96, 1), + (160831, 94, 1), + (160831, 93, 3), + (160831, 97, 10), + (160831, 95, 10), + (160831, 92, 3), + (160831, 90, 5), + (160831, 91, 5), + (160832, 122, 8), + (160832, 155, 25), + (160832, 96, 390), + (160832, 94, 390), + (160832, 93, 675), + (160832, 97, 1165), + (160832, 95, 1165), + (160832, 92, 675), + (160832, 90, 810), + (160832, 91, 810), + (160880, 129, 1), + (160880, 154, 1), + (160880, 96, 1), + (160880, 94, 1), + (160880, 93, 3), + (160880, 97, 10), + (160880, 95, 10), + (160880, 92, 3), + (160880, 90, 4), + (160880, 91, 4), + (160881, 129, 4), + (160881, 154, 10), + (160881, 96, 110), + (160881, 94, 110), + (160881, 93, 180), + (160881, 97, 290), + (160881, 95, 290), + (160881, 92, 180), + (160881, 90, 220), + (160881, 91, 220), + (160882, 131, 1), + (160882, 153, 1), + (160882, 96, 1), + (160882, 94, 1), + (160882, 93, 3), + (160882, 97, 10), + (160882, 95, 10), + (160882, 92, 3), + (160882, 90, 4), + (160882, 91, 4), + (160883, 131, 8), + (160883, 153, 20), + (160883, 96, 240), + (160883, 94, 240), + (160883, 93, 490), + (160883, 97, 675), + (160883, 95, 675), + (160883, 92, 490), + (160883, 90, 575), + (160883, 91, 575), + (160884, 130, 1), + (160884, 156, 3), + (160884, 96, 1), + (160884, 94, 1), + (160884, 93, 3), + (160884, 97, 10), + (160884, 95, 10), + (160884, 92, 3), + (160884, 90, 4), + (160884, 91, 4), + (160885, 130, 8), + (160885, 156, 30), + (160885, 96, 90), + (160885, 94, 90), + (160885, 93, 250), + (160885, 97, 420), + (160885, 95, 420), + (160885, 92, 250), + (160885, 90, 315), + (160885, 91, 315), + (160908, 119, 3), + (160908, 96, 5), + (160908, 94, 5), + (160908, 93, 5), + (160908, 97, 5), + (160908, 95, 5), + (160908, 92, 5), + (160908, 90, 5), + (160908, 91, 5), + (160909, 119, 21), + (160909, 96, 40), + (160909, 94, 100), + (160909, 93, 100), + (160909, 97, 40), + (160909, 95, 100), + (160909, 92, 100), + (160909, 90, 130), + (160909, 91, 130), + (160918, 118, 3), + (160918, 96, 5), + (160918, 94, 5), + (160918, 93, 5), + (160918, 97, 5), + (160918, 95, 5), + (160918, 92, 5), + (160918, 90, 5), + (160918, 91, 5), + (160919, 118, 21), + (160919, 96, 40), + (160919, 94, 100), + (160919, 93, 40), + (160919, 97, 40), + (160919, 95, 130), + (160919, 92, 100), + (160919, 90, 130), + (160919, 91, 130), + (160920, 221, 3), + (160920, 96, 5), + (160920, 94, 5), + (160920, 93, 5), + (160920, 97, 5), + (160920, 95, 5), + (160920, 92, 5), + (160920, 90, 5), + (160920, 91, 5), + (160921, 221, 36), + (160921, 96, 40), + (160921, 94, 110), + (160921, 93, 40), + (160921, 97, 40), + (160921, 95, 40), + (160921, 92, 130), + (160921, 90, 130), + (160921, 91, 110), + (160922, 149, 3), + (160922, 96, 5), + (160922, 94, 5), + (160922, 93, 5), + (160922, 97, 5), + (160922, 95, 5), + (160922, 92, 5), + (160922, 90, 5), + (160922, 91, 5), + (160923, 149, 21), + (160923, 96, 130), + (160923, 94, 100), + (160923, 93, 20), + (160923, 97, 100), + (160923, 95, 100), + (160923, 92, 130), + (160923, 90, 100), + (160923, 91, 130), + (160924, 136, 3), + (160924, 96, 5), + (160924, 94, 5), + (160924, 93, 5), + (160924, 97, 5), + (160924, 95, 5), + (160924, 92, 5), + (160924, 90, 5), + (160924, 91, 5), + (160925, 136, 21), + (160925, 96, 120), + (160925, 94, 40), + (160925, 93, 130), + (160925, 97, 100), + (160925, 95, 100), + (160925, 92, 130), + (160925, 90, 130), + (160925, 91, 100), + (160926, 126, 1), + (160926, 141, 1), + (160926, 160, 1), + (160926, 161, 1), + (160926, 162, 1), + (160926, 90, 5), + (160926, 91, 5), + (160926, 92, 5), + (160926, 93, 5), + (160926, 94, 5), + (160926, 95, 5), + (160926, 96, 5), + (160926, 97, 5), + (160927, 126, 8), + (160927, 141, 8), + (160927, 160, 8), + (160927, 161, 8), + (160927, 162, 8), + (160927, 90, 777), + (160927, 91, 777), + (160927, 92, 999), + (160927, 93, 999), + (160927, 94, 333), + (160927, 95, 777), + (160927, 96, 999), + (160927, 97, 777), + (160961, 225, 300), + (160961, 207, 300), + (160961, 205, 300), + (160961, 217, 300), + (160961, 219, 300), + (160961, 208, 300), + (160961, 216, 300), + (160961, 206, 300), + (160961, 476, 990), + (160961, 475, 990), + (160961, 482, 990), + (160961, 480, 990), + (160961, 478, 990), + (160961, 483, 990), + (160961, 479, 990), + (160961, 477, 990), + (160962, 225, 300), + (160962, 207, 300), + (160962, 205, 300), + (160962, 217, 300), + (160962, 219, 300), + (160962, 208, 300), + (160962, 206, 300), + (160962, 216, 300), + (160962, 479, 990), + (160962, 476, 990), + (160962, 475, 990), + (160962, 482, 990), + (160962, 480, 990), + (160962, 478, 990), + (160962, 483, 990), + (160962, 477, 990), + (161091, 226, 33), + (161091, 227, 33), + (161091, 228, 33), + (161091, 229, 33), + (161091, 230, 33), + (161091, 231, 33), + (161091, 233, 33), + (161091, 234, 33), + (161091, 1, 30), + (161091, 278, 5), + (161091, 279, 5), + (161091, 280, 5), + (161091, 281, 5), + (161091, 282, 5), + (161091, 311, 5), + (161091, 316, 5), + (161091, 317, 5), + (161093, 226, 45), + (161093, 227, 45), + (161093, 228, 45), + (161093, 229, 45), + (161093, 230, 45), + (161093, 231, 45), + (161093, 233, 45), + (161093, 234, 45), + (161093, 1, 40), + (161093, 278, 10), + (161093, 279, 10), + (161093, 280, 10), + (161093, 281, 10), + (161093, 282, 10), + (161093, 311, 10), + (161093, 316, 10), + (161093, 317, 10), + (161093, 205, 2), + (161093, 206, 2), + (161093, 207, 2), + (161093, 208, 2), + (161093, 216, 2), + (161093, 217, 2), + (161093, 219, 2), + (161093, 225, 2), + (161095, 226, 11), + (161095, 227, 11), + (161095, 228, 11), + (161095, 229, 11), + (161095, 230, 11), + (161095, 231, 11), + (161095, 233, 11), + (161095, 234, 11), + (161097, 226, 20), + (161097, 227, 20), + (161097, 228, 20), + (161097, 229, 20), + (161097, 230, 20), + (161097, 231, 20), + (161097, 233, 20), + (161097, 234, 20), + (161126, 136, 3), + (161127, 136, 3), + (161128, 136, 12), + (161129, 136, 12), + (161130, 151, 12), + (161130, 136, 24), + (161130, 113, 12), + (161146, 103, 60), + (161146, 147, 3), + (161148, 103, 85), + (161148, 147, 9), + (161150, 103, 107), + (161150, 147, 17), + (161150, 278, 2), + (161150, 279, 2), + (161150, 280, 2), + (161150, 281, 2), + (161150, 282, 2), + (161150, 311, 2), + (161150, 316, 2), + (161150, 317, 2), + (161152, 103, 120), + (161152, 147, 25), + (161152, 278, 6), + (161152, 279, 6), + (161152, 280, 6), + (161152, 281, 6), + (161152, 282, 6), + (161152, 311, 6), + (161152, 316, 6), + (161152, 317, 6), + (161152, 145, 20), + (161154, 112, 40), + (161154, 150, 3), + (161156, 112, 65), + (161156, 150, 9), + (161158, 112, 87), + (161158, 150, 17), + (161158, 278, 2), + (161158, 279, 2), + (161158, 280, 2), + (161158, 281, 2), + (161158, 282, 2), + (161158, 311, 2), + (161158, 316, 2), + (161158, 317, 2), + (161160, 112, 100), + (161160, 150, 25), + (161160, 278, 6), + (161160, 279, 6), + (161160, 280, 6), + (161160, 281, 6), + (161160, 282, 6), + (161160, 311, 6), + (161160, 316, 6), + (161160, 317, 6), + (161160, 136, 20), + (161162, 101, 45), + (161162, 134, 45), + (161164, 101, 80), + (161164, 134, 80), + (161166, 101, 105), + (161166, 134, 105), + (161166, 153, 10), + (161166, 154, 10), + (161166, 155, 10), + (161168, 101, 120), + (161168, 134, 120), + (161168, 153, 18), + (161168, 154, 18), + (161168, 155, 18), + (161168, 17, 4), + (161478, 93, 30), + (161478, 127, 2), + (161478, 132, 3), + (161479, 93, 30), + (161479, 127, 2), + (161479, 132, 3), + (161480, 93, 60), + (161480, 127, 4), + (161480, 132, 6), + (161481, 93, 60), + (161481, 127, 4), + (161481, 132, 6), + (161482, 93, 90), + (161482, 127, 6), + (161482, 132, 9), + (161483, 93, 90), + (161483, 127, 6), + (161483, 132, 9), + (161484, 93, 120), + (161484, 127, 8), + (161484, 132, 14), + (161485, 93, 120), + (161485, 127, 8), + (161485, 132, 14), + (161486, 93, 210), + (161486, 127, 12), + (161486, 132, 18), + (161487, 128, 2), + (161487, 132, 3), + (161487, 96, 30), + (161488, 128, 2), + (161488, 132, 3), + (161488, 96, 30), + (161489, 128, 4), + (161489, 132, 6), + (161489, 96, 60), + (161490, 128, 4), + (161490, 132, 6), + (161490, 96, 60), + (161491, 128, 6), + (161491, 132, 9), + (161491, 96, 90), + (161492, 128, 6), + (161492, 132, 9), + (161492, 96, 90), + (161493, 128, 8), + (161493, 132, 14), + (161493, 96, 120), + (161494, 128, 8), + (161494, 132, 14), + (161494, 96, 120), + (161495, 128, 12), + (161495, 132, 18), + (161495, 96, 210), + (161496, 130, 2), + (161496, 91, 30), + (161496, 132, 3), + (161498, 226, 35), + (161498, 227, 35), + (161498, 228, 35), + (161498, 229, 35), + (161498, 230, 35), + (161498, 231, 35), + (161498, 233, 35), + (161498, 234, 35), + (161500, 226, 56), + (161500, 227, 56), + (161500, 228, 56), + (161500, 229, 56), + (161500, 230, 56), + (161500, 231, 56), + (161500, 233, 56), + (161500, 234, 56), + (161502, 226, 17), + (161502, 227, 17), + (161502, 228, 17), + (161502, 229, 17), + (161502, 230, 17), + (161502, 231, 17), + (161502, 233, 17), + (161502, 234, 17), + (161504, 226, 3), + (161504, 227, 3), + (161504, 228, 3), + (161504, 229, 3), + (161504, 230, 3), + (161504, 231, 3), + (161504, 233, 3), + (161504, 234, 3), + (161506, 226, 61), + (161506, 227, 61), + (161506, 228, 61), + (161506, 229, 61), + (161506, 230, 61), + (161506, 231, 61), + (161506, 233, 61), + (161506, 234, 61), + (161508, 130, 2), + (161508, 91, 30), + (161508, 132, 3), + (161509, 130, 4), + (161509, 91, 60), + (161509, 132, 6), + (161510, 130, 4), + (161510, 91, 60), + (161510, 132, 6), + (161511, 130, 6), + (161511, 91, 90), + (161511, 132, 9), + (161512, 130, 6), + (161512, 91, 90), + (161512, 132, 9), + (161513, 130, 8), + (161513, 91, 120), + (161513, 132, 14), + (161514, 130, 8), + (161514, 91, 120), + (161514, 132, 14), + (161515, 130, 12), + (161515, 91, 210), + (161515, 132, 18), + (161516, 226, 9), + (161516, 227, 9), + (161516, 228, 9), + (161516, 229, 9), + (161516, 230, 9), + (161516, 231, 9), + (161516, 233, 9), + (161516, 234, 9), + (161518, 226, 65), + (161518, 227, 65), + (161518, 228, 65), + (161518, 229, 65), + (161518, 230, 65), + (161518, 231, 65), + (161518, 233, 65), + (161518, 234, 65), + (161520, 226, 27), + (161520, 227, 27), + (161520, 228, 27), + (161520, 229, 27), + (161520, 230, 27), + (161520, 231, 27), + (161520, 233, 27), + (161520, 234, 27), + (161522, 226, 12), + (161522, 227, 12), + (161522, 228, 12), + (161522, 229, 12), + (161522, 230, 12), + (161522, 231, 12), + (161522, 233, 12), + (161522, 234, 12), + (161524, 132, 3), + (161524, 94, 30), + (161524, 122, 2), + (161525, 132, 3), + (161525, 94, 30), + (161525, 122, 2), + (161526, 132, 6), + (161526, 94, 60), + (161526, 122, 4), + (161527, 132, 6), + (161527, 94, 60), + (161527, 122, 4), + (161528, 132, 9), + (161528, 94, 90), + (161528, 122, 6), + (161529, 132, 9), + (161529, 94, 90), + (161529, 122, 6), + (161530, 132, 14), + (161530, 94, 120), + (161530, 122, 8), + (161531, 132, 14), + (161531, 94, 120), + (161531, 122, 8), + (161532, 226, 4), + (161532, 227, 4), + (161532, 228, 4), + (161532, 229, 4), + (161532, 230, 4), + (161532, 231, 4), + (161532, 233, 4), + (161532, 234, 4), + (161534, 226, 39), + (161534, 227, 39), + (161534, 228, 39), + (161534, 229, 39), + (161534, 230, 39), + (161534, 231, 39), + (161534, 233, 39), + (161534, 234, 39), + (161536, 226, 74), + (161536, 227, 74), + (161536, 228, 74), + (161536, 229, 74), + (161536, 230, 74), + (161536, 231, 74), + (161536, 233, 74), + (161536, 234, 74), + (161538, 226, 7), + (161538, 227, 7), + (161538, 228, 7), + (161538, 229, 7), + (161538, 230, 7), + (161538, 231, 7), + (161538, 233, 7), + (161538, 234, 7), + (161540, 132, 18), + (161540, 94, 210), + (161540, 122, 12), + (161541, 92, 30), + (161541, 132, 3), + (161541, 129, 2), + (161542, 92, 30), + (161542, 132, 3), + (161542, 129, 2), + (161543, 92, 60), + (161543, 132, 6), + (161543, 129, 4), + (161544, 92, 60), + (161544, 132, 6), + (161544, 129, 4), + (161545, 92, 90), + (161545, 132, 9), + (161545, 129, 6), + (161546, 92, 90), + (161546, 132, 9), + (161546, 129, 6), + (161547, 92, 120), + (161547, 132, 14), + (161547, 129, 8), + (161548, 226, 84), + (161548, 227, 84), + (161548, 228, 84), + (161548, 229, 84), + (161548, 230, 84), + (161548, 231, 84), + (161548, 233, 84), + (161548, 234, 84), + (161550, 226, 47), + (161550, 227, 47), + (161550, 228, 47), + (161550, 229, 47), + (161550, 230, 47), + (161550, 231, 47), + (161550, 233, 47), + (161550, 234, 47), + (161552, 226, 42), + (161552, 227, 42), + (161552, 228, 42), + (161552, 229, 42), + (161552, 230, 42), + (161552, 231, 42), + (161552, 233, 42), + (161552, 234, 42), + (161554, 226, 78), + (161554, 227, 78), + (161554, 228, 78), + (161554, 229, 78), + (161554, 230, 78), + (161554, 231, 78), + (161554, 233, 78), + (161554, 234, 78), + (161556, 92, 120), + (161556, 132, 14), + (161556, 129, 8), + (161557, 92, 210), + (161557, 132, 18), + (161557, 129, 12), + (161558, 97, 30), + (161558, 131, 2), + (161558, 132, 3), + (161559, 97, 30), + (161559, 131, 2), + (161559, 132, 3), + (161560, 97, 60), + (161560, 131, 4), + (161560, 132, 6), + (161561, 97, 60), + (161561, 131, 4), + (161561, 132, 6), + (161562, 97, 90), + (161562, 131, 6), + (161562, 132, 9), + (161563, 97, 90), + (161563, 131, 6), + (161563, 132, 9), + (161564, 226, 23), + (161564, 227, 23), + (161564, 228, 23), + (161564, 229, 23), + (161564, 230, 23), + (161564, 231, 23), + (161564, 233, 23), + (161564, 234, 23), + (161566, 226, 52), + (161566, 227, 52), + (161566, 228, 52), + (161566, 229, 52), + (161566, 230, 52), + (161566, 231, 52), + (161566, 233, 52), + (161566, 234, 52), + (161568, 226, 69), + (161568, 227, 69), + (161568, 228, 69), + (161568, 229, 69), + (161568, 230, 69), + (161568, 231, 69), + (161568, 233, 69), + (161568, 234, 69), + (161570, 226, 88), + (161570, 227, 88), + (161570, 228, 88), + (161570, 229, 88), + (161570, 230, 88), + (161570, 231, 88), + (161570, 233, 88), + (161570, 234, 88), + (161572, 97, 120), + (161572, 131, 8), + (161572, 132, 14), + (161573, 97, 120), + (161573, 131, 8), + (161573, 132, 14), + (161574, 97, 210), + (161574, 131, 12), + (161574, 132, 18), + (161575, 128, 2), + (161575, 127, 1), + (161575, 149, 12), + (161576, 128, 2), + (161576, 127, 1), + (161576, 149, 12), + (161577, 128, 4), + (161577, 127, 3), + (161577, 149, 24), + (161578, 128, 4), + (161578, 127, 3), + (161578, 149, 24), + (161579, 128, 6), + (161579, 127, 5), + (161579, 149, 36), + (161580, 128, 6), + (161580, 127, 5), + (161580, 149, 36), + (161581, 128, 8), + (161581, 127, 7), + (161581, 149, 48), + (161582, 128, 8), + (161582, 127, 7), + (161582, 149, 48), + (161583, 128, 12), + (161583, 127, 10), + (161583, 149, 60), + (161584, 128, 1), + (161584, 127, 1), + (161584, 156, 10), + (161585, 128, 1), + (161585, 127, 1), + (161585, 156, 10), + (161586, 128, 3), + (161586, 127, 2), + (161586, 156, 20), + (161587, 128, 3), + (161587, 127, 2), + (161587, 156, 20), + (161588, 226, 100), + (161588, 227, 100), + (161588, 228, 100), + (161588, 229, 100), + (161588, 230, 100), + (161588, 231, 100), + (161588, 233, 100), + (161588, 234, 100), + (161590, 226, 97), + (161590, 227, 97), + (161590, 228, 97), + (161590, 229, 97), + (161590, 230, 97), + (161590, 231, 97), + (161590, 233, 97), + (161590, 234, 97), + (161592, 226, 31), + (161592, 227, 31), + (161592, 228, 31), + (161592, 229, 31), + (161592, 230, 31), + (161592, 231, 31), + (161592, 233, 31), + (161592, 234, 31), + (161594, 226, 20), + (161594, 227, 20), + (161594, 228, 20), + (161594, 229, 20), + (161594, 230, 20), + (161594, 231, 20), + (161594, 233, 20), + (161594, 234, 20), + (161596, 226, 93), + (161596, 227, 93), + (161596, 228, 93), + (161596, 229, 93), + (161596, 230, 93), + (161596, 231, 93), + (161596, 233, 93), + (161596, 234, 93), + (161604, 128, 5), + (161604, 127, 3), + (161604, 156, 30), + (161605, 128, 5), + (161605, 127, 3), + (161605, 156, 30), + (161606, 128, 7), + (161606, 127, 5), + (161606, 156, 40), + (161607, 128, 7), + (161607, 127, 5), + (161607, 156, 40), + (161608, 128, 10), + (161608, 127, 8), + (161608, 156, 60), + (161609, 155, 8), + (161609, 130, 2), + (161609, 149, 15), + (161610, 155, 8), + (161610, 130, 2), + (161610, 149, 15), + (161611, 155, 16), + (161611, 130, 4), + (161611, 149, 30), + (161612, 155, 16), + (161612, 130, 4), + (161612, 149, 30), + (161613, 155, 24), + (161613, 130, 7), + (161613, 149, 45), + (161614, 155, 24), + (161614, 130, 7), + (161614, 149, 45), + (161615, 155, 32), + (161615, 130, 11), + (161615, 149, 60), + (161616, 155, 32), + (161616, 130, 11), + (161616, 149, 60), + (161617, 155, 40), + (161617, 130, 15), + (161617, 149, 75), + (161618, 128, 2), + (161618, 131, 1), + (161618, 221, 8), + (161619, 128, 2), + (161619, 131, 1), + (161619, 221, 8), + (161620, 128, 4), + (161620, 131, 2), + (161620, 221, 16), + (161621, 128, 4), + (161621, 131, 2), + (161621, 221, 16), + (161622, 128, 6), + (161622, 131, 3), + (161622, 221, 32), + (161623, 128, 6), + (161623, 131, 3), + (161623, 221, 32), + (161624, 128, 8), + (161624, 131, 5), + (161624, 221, 64), + (161625, 128, 8), + (161625, 131, 5), + (161625, 221, 64), + (161626, 128, 12), + (161626, 131, 8), + (161626, 221, 140), + (161627, 129, 2), + (161627, 162, 4), + (161627, 122, 1), + (161628, 129, 2), + (161628, 162, 4), + (161628, 122, 1), + (161629, 129, 4), + (161629, 162, 8), + (161629, 122, 2), + (161630, 129, 4), + (161630, 162, 8), + (161630, 122, 2), + (161631, 129, 6), + (161631, 162, 20), + (161631, 122, 3), + (161632, 129, 6), + (161632, 162, 20), + (161632, 122, 3), + (161633, 129, 8), + (161633, 162, 24), + (161633, 122, 5), + (161634, 129, 8), + (161634, 162, 24), + (161634, 122, 5), + (161635, 129, 12), + (161635, 162, 32), + (161635, 122, 8), + (161636, 127, 2), + (161636, 125, 5), + (161636, 141, 10), + (161637, 127, 2), + (161637, 125, 5), + (161637, 141, 10), + (161638, 127, 4), + (161638, 125, 10), + (161638, 141, 20), + (161639, 127, 4), + (161639, 125, 10), + (161639, 141, 20), + (161640, 127, 6), + (161640, 125, 15), + (161640, 141, 50), + (161641, 127, 6), + (161641, 125, 15), + (161641, 141, 50), + (161642, 127, 8), + (161642, 125, 20), + (161642, 141, 75), + (161643, 127, 8), + (161643, 125, 20), + (161643, 141, 75), + (161644, 127, 12), + (161644, 125, 30), + (161644, 141, 125), + (161645, 221, 10), + (161645, 91, 20), + (161645, 90, 20), + (161646, 221, 10), + (161646, 91, 20), + (161646, 90, 20), + (161647, 221, 20), + (161647, 91, 45), + (161647, 90, 45), + (161648, 221, 20), + (161648, 91, 45), + (161648, 90, 45), + (161649, 221, 40), + (161649, 91, 70), + (161649, 90, 70), + (161650, 221, 40), + (161650, 91, 70), + (161650, 90, 70), + (161651, 221, 60), + (161651, 91, 100), + (161651, 90, 100), + (161652, 221, 60), + (161652, 91, 100), + (161652, 90, 100), + (161653, 221, 80), + (161653, 91, 130), + (161653, 90, 130), + (161654, 221, 80), + (161654, 91, 130), + (161654, 90, 130), + (161655, 221, 100), + (161655, 91, 165), + (161655, 90, 165), + (161656, 221, 100), + (161656, 91, 165), + (161656, 90, 165), + (161657, 221, 125), + (161657, 91, 200), + (161657, 90, 200), + (161658, 221, 125), + (161658, 91, 200), + (161658, 90, 200), + (161659, 221, 150), + (161659, 91, 235), + (161659, 90, 235), + (161660, 221, 150), + (161660, 91, 235), + (161660, 90, 235), + (161661, 221, 175), + (161661, 91, 275), + (161661, 90, 275), + (161662, 221, 175), + (161662, 91, 275), + (161662, 90, 275), + (161663, 221, 200), + (161663, 91, 320), + (161663, 90, 320), + (161699, 160, 2), + (161700, 92, 10), + (161701, 92, 10), + (161737, 92, 20), + (161738, 92, 20), + (161739, 92, 30), + (161740, 92, 30), + (161741, 92, 40), + (161742, 92, 40), + (161743, 92, 50), + (161744, 92, 50), + (161745, 92, 65), + (161746, 92, 65), + (161747, 92, 80), + (161748, 92, 80), + (161749, 92, 100), + (161750, 92, 100), + (161751, 92, 120), + (161752, 92, 120), + (161753, 92, 140), + (161769, 123, 1), + (161769, 124, 2), + (161770, 123, 12), + (161770, 124, 18), + (161771, 123, 1), + (161771, 124, 3), + (161771, 159, 1), + (161772, 123, 12), + (161772, 124, 36), + (161772, 159, 12), + (161844, 149, -1), + (161844, 93, 1), + (161844, 95, 5), + (161844, 92, 5), + (161844, 97, 5), + (161844, 91, 5), + (161844, 96, 1), + (161844, 90, 5), + (161844, 94, 1), + (161845, 149, -50), + (161845, 93, 550), + (161845, 95, 950), + (161845, 92, 1300), + (161845, 97, 875), + (161845, 91, 1300), + (161845, 96, 550), + (161845, 90, 1300), + (161845, 94, 550), + (161846, 149, -1), + (161846, 93, 1), + (161846, 95, 5), + (161846, 92, 5), + (161846, 97, 5), + (161846, 91, 5), + (161846, 96, 1), + (161846, 90, 5), + (161846, 94, 1), + (161847, 149, -50), + (161847, 93, 550), + (161847, 95, 1050), + (161847, 92, 1340), + (161847, 97, 875), + (161847, 91, 1350), + (161847, 96, 850), + (161847, 90, 1340), + (161847, 94, 550), + (161848, 149, -1), + (161848, 93, 5), + (161848, 95, 1), + (161848, 92, 5), + (161848, 97, 1), + (161848, 91, 5), + (161848, 96, 1), + (161848, 90, 5), + (161848, 94, 5), + (161849, 149, -50), + (161849, 93, 900), + (161849, 95, 350), + (161849, 92, 1150), + (161849, 97, 350), + (161849, 91, 1150), + (161849, 96, 350), + (161849, 90, 1150), + (161849, 94, 975), + (161850, 149, -1), + (161850, 93, 5), + (161850, 95, 1), + (161850, 92, 5), + (161850, 97, 1), + (161850, 91, 5), + (161850, 96, 1), + (161850, 90, 5), + (161850, 94, 5), + (161851, 149, -50), + (161851, 93, 850), + (161851, 95, 350), + (161851, 92, 1200), + (161851, 97, 350), + (161851, 91, 1200), + (161851, 96, 350), + (161851, 90, 1200), + (161851, 94, 875), + (161852, 149, -1), + (161852, 93, 1), + (161852, 95, 5), + (161852, 92, 5), + (161852, 97, 1), + (161852, 91, 5), + (161852, 96, 1), + (161852, 90, 5), + (161852, 94, 5), + (161853, 149, -50), + (161853, 93, 400), + (161853, 95, 875), + (161853, 92, 1200), + (161853, 97, 250), + (161853, 91, 1000), + (161853, 96, 400), + (161853, 90, 1200), + (161853, 94, 850), + (161854, 149, -1), + (161854, 93, 1), + (161854, 95, 5), + (161854, 92, 5), + (161854, 97, 1), + (161854, 91, 5), + (161854, 96, 1), + (161854, 90, 5), + (161854, 94, 5), + (161855, 149, -50), + (161855, 93, 450), + (161855, 95, 875), + (161855, 92, 1300), + (161855, 97, 250), + (161855, 91, 1200), + (161855, 96, 450), + (161855, 90, 1200), + (161855, 94, 1200), + (161856, 149, -1), + (161856, 93, 5), + (161856, 95, 1), + (161856, 92, 5), + (161856, 97, 1), + (161856, 91, 5), + (161856, 96, 5), + (161856, 90, 5), + (161856, 94, 1), + (161857, 149, -50), + (161857, 93, 875), + (161857, 95, 350), + (161857, 92, 1100), + (161857, 97, 350), + (161857, 91, 1100), + (161857, 96, 850), + (161857, 90, 1100), + (161857, 94, 350), + (161858, 149, -1), + (161858, 93, 5), + (161858, 95, 1), + (161858, 92, 5), + (161858, 97, 1), + (161858, 91, 5), + (161858, 96, 5), + (161858, 90, 5), + (161858, 94, 1), + (161859, 149, -50), + (161859, 93, 875), + (161859, 95, 350), + (161859, 92, 1100), + (161859, 97, 350), + (161859, 91, 1100), + (161859, 96, 850), + (161859, 90, 1100), + (161859, 94, 350), + (161866, 124, 1), + (161867, 124, 20), + (161966, 96, 75), + (161966, 93, 75), + (161966, 95, 281), + (161966, 94, 234), + (161966, 97, 281), + (161966, 91, 375), + (161966, 92, 328), + (161966, 90, 375), + (162009, 93, 150), + (162009, 95, 562), + (162009, 92, 656), + (162009, 97, 562), + (162009, 91, 750), + (162009, 96, 150), + (162009, 90, 750), + (162009, 94, 468), + (162010, 93, 153), + (162010, 95, 573), + (162010, 92, 669), + (162010, 97, 573), + (162010, 91, 765), + (162010, 96, 153), + (162010, 90, 765), + (162010, 94, 477), + (162011, 93, 157), + (162011, 95, 590), + (162011, 92, 689), + (162011, 97, 590), + (162011, 91, 787), + (162011, 96, 157), + (162011, 90, 787), + (162011, 94, 491), + (162012, 93, 162), + (162012, 95, 607), + (162012, 92, 708), + (162012, 97, 607), + (162012, 91, 810), + (162012, 96, 162), + (162012, 90, 810), + (162012, 94, 505), + (162013, 93, 165), + (162013, 95, 618), + (162013, 92, 722), + (162013, 97, 618), + (162013, 91, 825), + (162013, 96, 165), + (162013, 90, 825), + (162013, 94, 515), + (162014, 93, 168), + (162014, 95, 629), + (162014, 92, 735), + (162014, 97, 629), + (162014, 91, 840), + (162014, 96, 168), + (162014, 90, 840), + (162014, 94, 524), + (162015, 93, 172), + (162015, 95, 646), + (162015, 92, 754), + (162015, 97, 646), + (162015, 91, 862), + (162015, 96, 172), + (162015, 90, 862), + (162015, 94, 538), + (162016, 93, 177), + (162016, 95, 663), + (162016, 92, 774), + (162016, 97, 663), + (162016, 91, 885), + (162016, 96, 177), + (162016, 90, 885), + (162016, 94, 552), + (162017, 93, 180), + (162017, 95, 674), + (162017, 92, 787), + (162017, 97, 674), + (162017, 91, 900), + (162017, 96, 180), + (162017, 90, 900), + (162017, 94, 562), + (162018, 93, 183), + (162018, 95, 686), + (162018, 92, 800), + (162018, 97, 686), + (162018, 91, 915), + (162018, 96, 183), + (162018, 90, 915), + (162018, 94, 571), + (162019, 93, 188), + (162019, 95, 702), + (162019, 92, 820), + (162019, 97, 702), + (162019, 91, 938), + (162019, 96, 188), + (162019, 90, 938), + (162019, 94, 585), + (162020, 93, 192), + (162020, 95, 719), + (162020, 92, 840), + (162020, 97, 719), + (162020, 91, 960), + (162020, 96, 192), + (162020, 90, 960), + (162020, 94, 599), + (162021, 93, 195), + (162021, 95, 731), + (162021, 92, 853), + (162021, 97, 731), + (162021, 91, 975), + (162021, 96, 195), + (162021, 90, 975), + (162021, 94, 608), + (162022, 93, 198), + (162022, 95, 742), + (162022, 92, 866), + (162022, 97, 742), + (162022, 91, 990), + (162022, 96, 198), + (162022, 90, 990), + (162022, 94, 618), + (162023, 93, 203), + (162023, 95, 759), + (162023, 92, 886), + (162023, 97, 759), + (162023, 91, 1013), + (162023, 96, 203), + (162023, 90, 1013), + (162023, 94, 632), + (162024, 93, 207), + (162024, 95, 776), + (162024, 92, 905), + (162024, 97, 776), + (162024, 91, 1035), + (162024, 96, 207), + (162024, 90, 1035), + (162024, 94, 646), + (162025, 93, 210), + (162025, 95, 787), + (162025, 92, 918), + (162025, 97, 787), + (162025, 91, 1050), + (162025, 96, 210), + (162025, 90, 1050), + (162025, 94, 655), + (162026, 93, 213), + (162026, 95, 798), + (162026, 92, 932), + (162026, 97, 798), + (162026, 91, 1065), + (162026, 96, 213), + (162026, 90, 1065), + (162026, 94, 665), + (162027, 93, 218), + (162027, 95, 815), + (162027, 92, 951), + (162027, 97, 815), + (162027, 91, 1088), + (162027, 96, 218), + (162027, 90, 1088), + (162027, 94, 679), + (162028, 93, 222), + (162028, 95, 832), + (162028, 92, 971), + (162028, 97, 832), + (162028, 91, 1110), + (162028, 96, 222), + (162028, 90, 1110), + (162028, 94, 693), + (162029, 93, 225), + (162029, 95, 843), + (162029, 92, 984), + (162029, 97, 843), + (162029, 91, 1125), + (162029, 96, 225), + (162029, 90, 1125), + (162029, 94, 702), + (162118, 379, 50), + (162120, 379, 100), + (162122, 379, 150), + (162203, 221, 5), + (162203, 95, 3), + (162203, 93, 5), + (162203, 94, 1), + (162203, 96, 4), + (162203, 91, 5), + (162203, 90, 3), + (162203, 97, 3), + (162203, 92, 1), + (162204, 221, 100), + (162204, 95, 260), + (162204, 93, 285), + (162204, 94, 175), + (162204, 96, 270), + (162204, 91, 285), + (162204, 90, 260), + (162204, 97, 260), + (162204, 92, 175), + (162205, 221, 5), + (162205, 95, 4), + (162205, 93, 7), + (162205, 94, 2), + (162205, 96, 6), + (162205, 91, 7), + (162205, 90, 4), + (162205, 97, 4), + (162205, 92, 2), + (162206, 221, 200), + (162206, 95, 1010), + (162206, 93, 1120), + (162206, 94, 610), + (162206, 96, 1090), + (162206, 91, 1120), + (162206, 90, 1010), + (162206, 97, 1010), + (162206, 92, 610), + (162207, 221, 5), + (162207, 95, 3), + (162207, 93, 5), + (162207, 94, 1), + (162207, 96, 4), + (162207, 91, 5), + (162207, 90, 3), + (162207, 97, 3), + (162207, 92, 1), + (162208, 221, 60), + (162208, 95, 385), + (162208, 93, 430), + (162208, 94, 270), + (162208, 96, 405), + (162208, 91, 430), + (162208, 90, 385), + (162208, 97, 385), + (162208, 92, 270), + (162209, 221, 5), + (162209, 95, 2), + (162209, 93, 4), + (162209, 94, 1), + (162209, 96, 3), + (162209, 91, 4), + (162209, 90, 2), + (162209, 97, 2), + (162209, 92, 1), + (162210, 221, 40), + (162210, 95, 260), + (162210, 93, 280), + (162210, 94, 170), + (162210, 96, 270), + (162210, 91, 280), + (162210, 90, 260), + (162210, 97, 260), + (162210, 92, 170), + (162211, 221, 5), + (162211, 90, 3), + (162211, 91, 5), + (162211, 92, 1), + (162211, 93, 5), + (162211, 94, 1), + (162211, 95, 3), + (162211, 96, 4), + (162211, 97, 3), + (162212, 221, 170), + (162212, 90, 765), + (162212, 91, 870), + (162212, 92, 395), + (162212, 93, 870), + (162212, 94, 395), + (162212, 95, 765), + (162212, 96, 845), + (162212, 97, 765), + (162215, 221, 5), + (162215, 95, 3), + (162215, 93, 5), + (162215, 94, 1), + (162215, 96, 4), + (162215, 91, 5), + (162215, 90, 3), + (162215, 97, 3), + (162215, 92, 1), + (162216, 221, 130), + (162216, 95, 630), + (162216, 93, 730), + (162216, 94, 460), + (162216, 96, 680), + (162216, 91, 730), + (162216, 90, 630), + (162216, 97, 630), + (162216, 92, 460), + (162255, 277, 100), + (162257, 277, 200), + (162259, 277, 300), + (162261, 277, 400), + (162314, 278, 50), + (162314, 279, 50), + (162314, 280, 50), + (162314, 281, 50), + (162314, 282, 50), + (162314, 311, 50), + (162314, 316, 50), + (162314, 317, 50), + (162314, 276, 25), + (162314, 118, 100), + (162314, 119, 100), + (162314, 120, 100), + (162316, 278, 75), + (162316, 279, 75), + (162316, 280, 75), + (162316, 281, 75), + (162316, 282, 75), + (162316, 311, 75), + (162316, 316, 75), + (162316, 317, 75), + (162316, 276, 50), + (162316, 118, 150), + (162316, 119, 150), + (162316, 120, 150), + (162318, 282, 100), + (162318, 317, 100), + (162318, 281, 100), + (162318, 311, 100), + (162318, 316, 100), + (162318, 278, 100), + (162318, 280, 100), + (162318, 279, 100), + (162318, 276, 75), + (162318, 118, 200), + (162318, 119, 200), + (162318, 120, 200), + (162320, 278, 125), + (162320, 279, 125), + (162320, 280, 125), + (162320, 281, 125), + (162320, 282, 125), + (162320, 311, 125), + (162320, 316, 125), + (162320, 317, 125), + (162320, 276, 100), + (162320, 118, 250), + (162320, 119, 250), + (162320, 120, 250), + (162322, 278, 150), + (162322, 279, 150), + (162322, 280, 150), + (162322, 281, 150), + (162322, 282, 150), + (162322, 311, 150), + (162322, 316, 150), + (162322, 317, 150), + (162322, 276, 125), + (162322, 118, 300), + (162322, 119, 300), + (162322, 120, 300), + (162426, 149, 1), + (162426, 181, 1), + (162426, 221, 2), + (162426, 93, 10), + (162426, 95, 8), + (162426, 92, 4), + (162426, 97, 8), + (162426, 91, 10), + (162426, 96, 8), + (162426, 90, 8), + (162426, 94, 4), + (162427, 149, 1), + (162427, 181, 1), + (162427, 221, 2), + (162427, 90, 8), + (162427, 91, 10), + (162427, 92, 4), + (162427, 93, 10), + (162427, 94, 4), + (162427, 95, 8), + (162427, 96, 8), + (162427, 97, 8), + (162428, 149, 8), + (162428, 181, 8), + (162428, 221, 45), + (162428, 90, 250), + (162428, 91, 300), + (162428, 92, 125), + (162428, 93, 300), + (162428, 94, 125), + (162428, 95, 250), + (162428, 96, 250), + (162428, 97, 250), + (162429, 149, 1), + (162429, 181, 1), + (162429, 221, 2), + (162429, 90, 8), + (162429, 91, 10), + (162429, 92, 4), + (162429, 93, 10), + (162429, 94, 4), + (162429, 95, 8), + (162429, 96, 8), + (162429, 97, 8), + (162430, 149, 8), + (162430, 181, 8), + (162430, 221, 60), + (162430, 90, 250), + (162430, 91, 300), + (162430, 92, 125), + (162430, 93, 300), + (162430, 94, 125), + (162430, 95, 250), + (162430, 96, 250), + (162430, 97, 250), + (162431, 149, 1), + (162431, 181, 1), + (162431, 221, 2), + (162431, 90, 8), + (162431, 91, 10), + (162431, 92, 4), + (162431, 93, 10), + (162431, 94, 4), + (162431, 95, 8), + (162431, 96, 8), + (162431, 97, 8), + (162432, 149, 8), + (162432, 181, 8), + (162432, 221, 160), + (162432, 90, 1000), + (162432, 91, 1200), + (162432, 92, 500), + (162432, 93, 1200), + (162432, 94, 500), + (162432, 95, 1000), + (162432, 96, 1000), + (162432, 97, 1000), + (162433, 149, 1), + (162433, 181, 1), + (162433, 221, 2), + (162433, 90, 8), + (162433, 91, 10), + (162433, 92, 4), + (162433, 93, 10), + (162433, 94, 4), + (162433, 95, 8), + (162433, 96, 8), + (162433, 97, 8), + (162434, 149, 8), + (162434, 181, 8), + (162434, 221, 130), + (162434, 90, 625), + (162434, 91, 750), + (162434, 92, 310), + (162434, 93, 750), + (162434, 94, 310), + (162434, 95, 625), + (162434, 96, 625), + (162434, 97, 625), + (162435, 91, 10), + (162435, 90, 8), + (162435, 92, 4), + (162435, 95, 8), + (162435, 97, 8), + (162435, 93, 10), + (162435, 94, 4), + (162435, 96, 8), + (162435, 181, 1), + (162435, 221, 2), + (162435, 149, 1), + (162436, 91, 450), + (162436, 90, 375), + (162436, 92, 180), + (162436, 95, 375), + (162436, 97, 375), + (162436, 93, 450), + (162436, 94, 180), + (162436, 96, 375), + (162436, 181, 8), + (162436, 221, 55), + (162436, 149, 8), + (162437, 149, 8), + (162437, 181, 8), + (162437, 221, 140), + (162437, 93, 900), + (162437, 95, 750), + (162437, 92, 375), + (162437, 97, 750), + (162437, 91, 900), + (162437, 96, 750), + (162437, 90, 750), + (162437, 94, 375), + (162485, 114, 46), + (162485, 148, 30), + (162487, 114, 79), + (162487, 148, 50), + (162489, 114, 100), + (162489, 148, 64), + (162489, 134, 10), + (162491, 114, 121), + (162491, 148, 78), + (162491, 134, 15), + (162491, 278, 3), + (162491, 279, 3), + (162491, 280, 3), + (162491, 281, 3), + (162491, 282, 3), + (162491, 311, 3), + (162491, 316, 3), + (162491, 317, 3), + (162493, 114, 134), + (162493, 148, 85), + (162493, 167, 85), + (162493, 134, 22), + (162493, 278, 5), + (162493, 279, 5), + (162493, 280, 5), + (162493, 281, 5), + (162493, 282, 5), + (162493, 311, 5), + (162493, 316, 5), + (162493, 317, 5), + (162493, 119, 25), + (162493, 153, 5), + (162493, 154, 5), + (162493, 155, 5), + (162495, 114, 141), + (162495, 148, 90), + (162495, 167, 90), + (162495, 134, 38), + (162495, 278, 8), + (162495, 279, 8), + (162495, 280, 8), + (162495, 281, 8), + (162495, 282, 8), + (162495, 311, 8), + (162495, 316, 8), + (162495, 317, 8), + (162495, 119, 40), + (162495, 153, 10), + (162495, 154, 10), + (162495, 155, 10), + (162497, 114, 24), + (162497, 148, 15), + (162898, 136, 5), + (162899, 136, 5), + (162900, 136, 10), + (162901, 136, 10), + (162902, 119, 25), + (162902, 136, 25), + (162902, 20, 5), + (162931, 149, 10), + (162932, 149, 10), + (162933, 149, 20), + (163216, 221, 1), + (163216, 90, 1), + (163216, 91, 1), + (163216, 92, 1), + (163216, 93, 1), + (163216, 94, 1), + (163216, 95, 1), + (163216, 96, 1), + (163216, 97, 1), + (163217, 221, 400), + (163217, 90, 400), + (163217, 91, 400), + (163217, 92, 400), + (163217, 93, 400), + (163217, 94, 400), + (163217, 95, 400), + (163217, 96, 400), + (163217, 97, 400), + (163283, 17, 2), + (163283, 154, 6), + (163284, 17, 2), + (163284, 154, 6), + (163285, 17, 10), + (163285, 154, 30), + (163318, 119, 4), + (163318, 155, 5), + (163318, 1, 10), + (163319, 119, 4), + (163319, 155, 5), + (163319, 1, 10), + (163320, 119, 8), + (163320, 155, 10), + (163320, 1, 50), + (163321, 119, 8), + (163321, 155, 10), + (163321, 1, 50), + (163322, 119, 16), + (163322, 155, 20), + (163322, 1, 200), + (163323, 119, 16), + (163323, 155, 20), + (163323, 1, 200), + (163324, 119, 24), + (163324, 155, 35), + (163324, 1, 300), + (163334, 93, 900), + (163334, 91, 650), + (163334, 92, 650), + (163334, 90, 650), + (163334, 97, 650), + (163334, 21, 8), + (163334, 94, 650), + (163334, 96, 900), + (163334, 127, 4), + (163334, 128, 4), + (163334, 129, 4), + (163334, 130, 4), + (163334, 131, 4), + (163334, 122, 4), + (163334, 149, 15), + (163334, 95, 650), + (163341, 93, 8), + (163341, 91, 4), + (163341, 92, 4), + (163341, 90, 4), + (163341, 97, 4), + (163341, 21, 1), + (163341, 94, 4), + (163341, 96, 8), + (163341, 127, 1), + (163341, 128, 1), + (163341, 129, 1), + (163341, 130, 1), + (163341, 131, 1), + (163341, 122, 1), + (163341, 149, 2), + (163341, 95, 4), + (163342, 127, 1), + (163342, 91, 4), + (163342, 92, 4), + (163342, 90, 4), + (163342, 95, 4), + (163342, 97, 4), + (163342, 93, 10), + (163342, 96, 10), + (163342, 221, 2), + (163342, 128, 1), + (163342, 129, 1), + (163342, 130, 1), + (163342, 131, 1), + (163342, 122, 1), + (163342, 149, 2), + (163342, 94, 4), + (163343, 127, 5), + (163343, 91, 850), + (163343, 92, 850), + (163343, 90, 850), + (163343, 95, 850), + (163343, 97, 850), + (163343, 93, 1200), + (163343, 96, 1200), + (163343, 221, 200), + (163343, 128, 5), + (163343, 129, 5), + (163343, 130, 5), + (163343, 131, 5), + (163343, 122, 5), + (163343, 149, 15), + (163343, 94, 850), + (163344, 122, 1), + (163344, 127, 1), + (163344, 128, 1), + (163344, 129, 1), + (163344, 130, 1), + (163344, 131, 1), + (163344, 149, 2), + (163344, 93, 6), + (163344, 95, 4), + (163344, 92, 4), + (163344, 97, 4), + (163344, 91, 4), + (163344, 96, 6), + (163344, 90, 4), + (163344, 94, 4), + (163345, 122, 3), + (163345, 127, 3), + (163345, 128, 3), + (163345, 129, 3), + (163345, 130, 3), + (163345, 131, 3), + (163345, 149, 15), + (163345, 93, 450), + (163345, 95, 350), + (163345, 92, 350), + (163345, 97, 350), + (163345, 91, 350), + (163345, 96, 450), + (163345, 90, 350), + (163345, 94, 350), + (163346, 122, 1), + (163346, 127, 1), + (163346, 128, 1), + (163346, 129, 1), + (163346, 130, 1), + (163346, 131, 1), + (163346, 149, 2), + (163346, 93, 6), + (163346, 95, 4), + (163346, 92, 4), + (163346, 97, 4), + (163346, 91, 4), + (163346, 96, 6), + (163346, 90, 4), + (163346, 94, 4), + (163347, 122, 3), + (163347, 127, 3), + (163347, 128, 3), + (163347, 129, 3), + (163347, 130, 3), + (163347, 131, 3), + (163347, 149, 15), + (163347, 93, 300), + (163347, 95, 220), + (163347, 92, 220), + (163347, 97, 220), + (163347, 91, 220), + (163347, 96, 300), + (163347, 90, 220), + (163347, 94, 220), + (163348, 122, 1), + (163348, 127, 1), + (163348, 128, 1), + (163348, 129, 1), + (163348, 130, 1), + (163348, 131, 1), + (163348, 149, 2), + (163348, 93, 6), + (163348, 95, 4), + (163348, 92, 4), + (163348, 97, 4), + (163348, 91, 4), + (163348, 96, 6), + (163348, 90, 4), + (163348, 94, 4), + (163349, 122, 4), + (163349, 127, 4), + (163349, 128, 4), + (163349, 129, 4), + (163349, 130, 4), + (163349, 131, 4), + (163349, 149, 15), + (163349, 93, 300), + (163349, 95, 200), + (163349, 92, 200), + (163349, 97, 200), + (163349, 91, 200), + (163349, 96, 300), + (163349, 90, 200), + (163349, 94, 200), + (163350, 96, 6), + (163350, 91, 4), + (163350, 92, 4), + (163350, 90, 4), + (163350, 95, 4), + (163350, 97, 4), + (163350, 94, 4), + (163350, 149, 2), + (163350, 127, 1), + (163350, 128, 1), + (163350, 129, 1), + (163350, 130, 1), + (163350, 131, 1), + (163350, 122, 1), + (163350, 93, 6), + (163351, 96, 750), + (163351, 91, 550), + (163351, 92, 550), + (163351, 90, 550), + (163351, 95, 550), + (163351, 97, 550), + (163351, 94, 550), + (163351, 149, 15), + (163351, 127, 4), + (163351, 128, 4), + (163351, 129, 4), + (163351, 130, 4), + (163351, 131, 4), + (163351, 122, 4), + (163351, 93, 750), + (163383, 136, 2), + (163383, 20, 1), + (163384, 136, 16), + (163384, 20, 4), + (163386, 20, 1), + (163386, 136, 1), + (163386, 165, 1), + (163387, 20, 10), + (163387, 136, 36), + (163387, 165, 24), + (163422, 95, 1), + (163422, 97, 1), + (163422, 91, 1), + (163422, 90, 1), + (163422, 93, 1), + (163422, 96, 1), + (163422, 92, 1), + (163422, 94, 1), + (163422, 1, 10), + (163422, 221, 10), + (163423, 95, 234), + (163423, 97, 234), + (163423, 91, 375), + (163423, 90, 375), + (163423, 93, 75), + (163423, 96, 75), + (163423, 92, 328), + (163423, 94, 75), + (163423, 1, 100), + (163423, 221, 100), + (163424, 95, 5), + (163424, 97, 5), + (163424, 91, 5), + (163424, 90, 5), + (163424, 93, 1), + (163424, 96, 1), + (163424, 92, 5), + (163424, 94, 1), + (163424, 1, 35), + (163424, 221, 35), + (163425, 95, 625), + (163425, 97, 625), + (163425, 91, 1000), + (163425, 90, 1000), + (163425, 93, 200), + (163425, 96, 200), + (163425, 92, 875), + (163425, 94, 200), + (163425, 1, 350), + (163425, 221, 350), + (163426, 95, 1), + (163426, 97, 1), + (163426, 91, 1), + (163426, 90, 1), + (163426, 93, 1), + (163426, 96, 1), + (163426, 92, 1), + (163426, 94, 1), + (163426, 1, 12), + (163426, 221, 12), + (163427, 95, 156), + (163427, 97, 156), + (163427, 91, 250), + (163427, 90, 250), + (163427, 93, 50), + (163427, 96, 50), + (163427, 92, 218), + (163427, 94, 50), + (163427, 1, 120), + (163427, 221, 120), + (163428, 95, 5), + (163428, 97, 5), + (163428, 91, 5), + (163428, 90, 5), + (163428, 93, 1), + (163428, 96, 1), + (163428, 92, 5), + (163428, 94, 1), + (163428, 1, 35), + (163428, 221, 35), + (163429, 95, 625), + (163429, 97, 625), + (163429, 91, 1000), + (163429, 90, 1000), + (163429, 93, 200), + (163429, 96, 200), + (163429, 92, 875), + (163429, 94, 200), + (163429, 1, 350), + (163429, 221, 350), + (163430, 95, 1), + (163430, 97, 1), + (163430, 91, 1), + (163430, 90, 1), + (163430, 93, 1), + (163430, 96, 1), + (163430, 92, 1), + (163430, 94, 1), + (163430, 1, 12), + (163430, 221, 12), + (163431, 95, 156), + (163431, 97, 156), + (163431, 91, 250), + (163431, 90, 250), + (163431, 93, 50), + (163431, 96, 50), + (163431, 92, 218), + (163431, 94, 50), + (163431, 1, 120), + (163431, 221, 120), + (163432, 95, 3), + (163432, 97, 3), + (163432, 91, 3), + (163432, 90, 3), + (163432, 93, 1), + (163432, 96, 1), + (163432, 92, 3), + (163432, 94, 1), + (163432, 1, 30), + (163432, 221, 30), + (163433, 95, 468), + (163433, 97, 468), + (163433, 91, 750), + (163433, 90, 750), + (163433, 93, 150), + (163433, 96, 150), + (163433, 92, 656), + (163433, 94, 150), + (163433, 1, 300), + (163433, 221, 300), + (163497, 20, 1), + (163498, 20, 1), + (163574, 1, 20), + (163574, 221, 80), + (163574, 181, 8), + (163574, 282, 6), + (163574, 317, 6), + (163574, 281, 6), + (163574, 311, 6), + (163574, 316, 6), + (163574, 278, 6), + (163574, 280, 6), + (163574, 279, 6), + (163574, 168, 20), + (163574, 155, 20), + (163574, 154, 20), + (163574, 153, 20), + (163578, 155, 30), + (163578, 1, 450), + (163578, 112, 15), + (163581, 119, 30), + (163581, 1, 50), + (163581, 18, 3), + (163584, 1, 500), + (163584, 101, 15), + (163584, 16, 10), + (163587, 1, 50), + (163587, 101, 3), + (163587, 16, 3), + (163631, 379, 1), + (163631, 319, 1), + (163632, 156, 1), + (163632, 153, 1), + (163632, 155, 1), + (163632, 154, 1), + (163632, 20, 1), + (163632, 17, 1), + (163633, 156, 36), + (163633, 153, 24), + (163633, 155, 24), + (163633, 154, 24), + (163633, 20, 8), + (163633, 17, 8), + (163634, 149, 1), + (163634, 221, 1), + (163634, 21, 1), + (163634, 19, 1), + (163635, 149, 24), + (163635, 221, 132), + (163635, 21, 8), + (163635, 19, 8), + (163636, 118, 1), + (163636, 120, 1), + (163636, 1, 1), + (163636, 16, 1), + (163636, 18, 1), + (163637, 118, 20), + (163637, 120, 20), + (163637, 1, 175), + (163637, 16, 8), + (163637, 18, 8), + (163638, 1, 1), + (163638, 221, 1), + (163638, 20, 1), + (163638, 17, 1), + (163639, 1, 90), + (163639, 221, 90), + (163639, 20, 6), + (163639, 17, 6), + (163640, 1, 1), + (163640, 21, 1), + (163640, 18, 1), + (163641, 1, 180), + (163641, 21, 6), + (163641, 18, 6), + (163642, 221, 1), + (163642, 19, 1), + (163642, 16, 1), + (163643, 221, 180), + (163643, 19, 6), + (163643, 16, 6), + (163644, 16, 1), + (163644, 18, 1), + (163644, 17, 1), + (163644, 20, 1), + (163644, 19, 1), + (163644, 21, 1), + (163644, 102, 1), + (163644, 103, 1), + (163644, 107, 1), + (163644, 105, 1), + (163644, 106, 1), + (163644, 100, 1), + (163644, 104, 1), + (163644, 101, 1), + (163644, 145, 1), + (163644, 142, 1), + (163644, 144, 1), + (163644, 143, 1), + (163644, 146, 1), + (163644, 147, 1), + (163644, 116, 1), + (163644, 114, 1), + (163644, 133, 1), + (163644, 112, 1), + (163644, 111, 1), + (163644, 110, 1), + (163644, 109, 1), + (163644, 113, 1), + (163644, 115, 1), + (163644, 134, 1), + (163644, 121, 1), + (163644, 167, 1), + (163644, 148, 1), + (163644, 151, 1), + (163644, 150, 1), + (163644, 108, 1), + (163644, 128, 1), + (163644, 127, 1), + (163644, 131, 1), + (163644, 130, 1), + (163644, 122, 1), + (163644, 129, 1), + (163644, 126, 1), + (163644, 125, 1), + (163644, 158, 1), + (163644, 157, 1), + (163644, 141, 1), + (163644, 165, 1), + (163644, 160, 1), + (163644, 159, 1), + (163644, 163, 1), + (163644, 162, 1), + (163644, 161, 1), + (163644, 124, 1), + (163644, 123, 1), + (163644, 164, 1), + (163644, 136, 1), + (163645, 16, 2), + (163645, 18, 2), + (163645, 17, 2), + (163645, 20, 2), + (163645, 19, 2), + (163645, 21, 2), + (163645, 102, 2), + (163645, 103, 2), + (163645, 107, 2), + (163645, 105, 2), + (163645, 106, 2), + (163645, 100, 2), + (163645, 104, 2), + (163645, 101, 2), + (163645, 145, 2), + (163645, 142, 2), + (163645, 144, 2), + (163645, 143, 2), + (163645, 146, 2), + (163645, 147, 2), + (163645, 116, 2), + (163645, 114, 2), + (163645, 133, 2), + (163645, 112, 2), + (163645, 111, 2), + (163645, 110, 2), + (163645, 109, 2), + (163645, 113, 2), + (163645, 115, 2), + (163645, 134, 2), + (163645, 121, 2), + (163645, 167, 2), + (163645, 148, 2), + (163645, 151, 2), + (163645, 150, 2), + (163645, 108, 2), + (163645, 128, 2), + (163645, 127, 2), + (163645, 131, 2), + (163645, 130, 2), + (163645, 122, 2), + (163645, 129, 2), + (163645, 126, 2), + (163645, 125, 2), + (163645, 158, 2), + (163645, 157, 2), + (163645, 141, 2), + (163645, 165, 2), + (163645, 160, 2), + (163645, 159, 2), + (163645, 163, 2), + (163645, 162, 2), + (163645, 161, 2), + (163645, 124, 2), + (163645, 123, 2), + (163645, 164, 2), + (163645, 136, 2), + (163646, 163, 1), + (163646, 125, 1), + (163646, 126, 1), + (163646, 157, 1), + (163646, 158, 1), + (163646, 159, 1), + (163646, 1, 1), + (163646, 161, 1), + (163646, 21, 1), + (163646, 141, 1), + (163646, 16, 1), + (163646, 17, 1), + (163646, 18, 1), + (163646, 19, 1), + (163646, 20, 1), + (163646, 160, 1), + (163647, 163, 11), + (163647, 125, 13), + (163647, 126, 13), + (163647, 157, 13), + (163647, 158, 13), + (163647, 159, 11), + (163647, 1, 125), + (163647, 161, 11), + (163647, 21, 2), + (163647, 141, 11), + (163647, 16, 2), + (163647, 17, 2), + (163647, 18, 2), + (163647, 19, 2), + (163647, 20, 2), + (163647, 160, 11), + (163648, 115, 1), + (163648, 1, 1), + (163648, 221, 1), + (163648, 122, 1), + (163648, 131, 1), + (163648, 130, 1), + (163648, 129, 1), + (163648, 128, 1), + (163648, 127, 1), + (163649, 115, 6), + (163649, 1, 75), + (163649, 221, 30), + (163649, 122, 3), + (163649, 131, 3), + (163649, 130, 3), + (163649, 129, 3), + (163649, 128, 3), + (163649, 127, 3), + (163650, 1, 2), + (163650, 96, 1), + (163650, 94, 1), + (163650, 93, 1), + (163650, 97, 1), + (163650, 95, 1), + (163650, 92, 1), + (163650, 90, 1), + (163650, 91, 1), + (163650, 154, 1), + (163651, 1, 300), + (163651, 96, 75), + (163651, 94, 75), + (163651, 93, 75), + (163651, 97, 75), + (163651, 95, 75), + (163651, 92, 75), + (163651, 90, 75), + (163651, 91, 75), + (163651, 154, 25), + (163652, 119, 1), + (163652, 151, 1), + (163652, 113, 1), + (163652, 148, 1), + (163652, 114, 1), + (163652, 150, 1), + (163652, 112, 1), + (163652, 133, 1), + (163652, 110, 1), + (163652, 167, 1), + (163652, 116, 1), + (163652, 1, 1), + (163653, 119, 36), + (163653, 151, 3), + (163653, 113, 3), + (163653, 148, 3), + (163653, 114, 3), + (163653, 150, 3), + (163653, 112, 3), + (163653, 133, 6), + (163653, 110, 6), + (163653, 167, 6), + (163653, 116, 6), + (163653, 1, 100), + (163654, 154, 1), + (163654, 1, 1), + (163654, 92, 1), + (163654, 124, 1), + (163654, 136, 1), + (163654, 19, 1), + (163654, 160, 1), + (163655, 154, 18), + (163655, 1, 50), + (163655, 92, 150), + (163655, 124, 12), + (163655, 136, 12), + (163655, 19, 6), + (163655, 160, 18), + (163656, 149, 1), + (163656, 130, 1), + (163656, 221, 1), + (163657, 149, 40), + (163657, 130, 6), + (163657, 221, 250), + (163658, 155, 1), + (163658, 1, 1), + (163658, 124, 1), + (163658, 123, 1), + (163658, 149, 1), + (163658, 164, 1), + (163658, 136, 1), + (163658, 160, 1), + (163659, 155, 15), + (163659, 1, 90), + (163659, 124, 12), + (163659, 123, 12), + (163659, 149, 32), + (163659, 164, 12), + (163659, 136, 12), + (163659, 160, 16), + (163660, 21, 1), + (163660, 1, 1), + (163660, 221, 1), + (163660, 131, 1), + (163660, 130, 1), + (163661, 21, 5), + (163661, 1, 50), + (163661, 221, 175), + (163661, 131, 5), + (163661, 130, 5), + (163662, 1, 1), + (163662, 143, 1), + (163662, 156, 1), + (163662, 164, 1), + (163662, 153, 1), + (163662, 154, 1), + (163662, 155, 1), + (163663, 1, 200), + (163663, 143, 10), + (163663, 156, 25), + (163663, 164, 20), + (163663, 153, 20), + (163663, 154, 20), + (163663, 155, 25), + (163664, 1, 1), + (163664, 149, 1), + (163664, 119, 1), + (163664, 118, 1), + (163664, 120, 1), + (163664, 121, 1), + (163664, 111, 1), + (163664, 144, 1), + (163664, 142, 1), + (163664, 100, 1), + (163665, 1, 200), + (163665, 149, 8), + (163665, 119, 8), + (163665, 118, 8), + (163665, 120, 24), + (163665, 121, 5), + (163665, 111, 5), + (163665, 144, 5), + (163665, 142, 5), + (163665, 100, 5), + (163666, 148, 1), + (163666, 119, 1), + (163666, 154, 1), + (163666, 153, 1), + (163666, 155, 1), + (163666, 1, 1), + (163666, 114, 1), + (163667, 148, 5), + (163667, 119, 25), + (163667, 154, 20), + (163667, 153, 20), + (163667, 155, 20), + (163667, 1, 125), + (163667, 114, 5), + (163668, 135, 1), + (163668, 165, 1), + (163668, 161, 1), + (163668, 127, 1), + (163668, 122, 1), + (163668, 129, 1), + (163668, 139, 1), + (163668, 156, 1), + (163669, 135, 18), + (163669, 165, 18), + (163669, 161, 12), + (163669, 127, 6), + (163669, 122, 6), + (163669, 129, 6), + (163669, 139, 12), + (163669, 156, 36), + (163670, 131, 1), + (163670, 119, 1), + (163670, 221, 1), + (163670, 1, 1), + (163670, 130, 1), + (163670, 109, 1), + (163670, 112, 1), + (163671, 131, 5), + (163671, 119, 15), + (163671, 221, 75), + (163671, 1, 125), + (163671, 130, 5), + (163671, 109, 5), + (163671, 112, 5), + (163672, 161, 1), + (163672, 160, 1), + (163672, 19, 1), + (163672, 141, 1), + (163672, 158, 1), + (163672, 157, 1), + (163672, 126, 1), + (163672, 125, 1), + (163673, 161, 12), + (163673, 160, 12), + (163673, 19, 3), + (163673, 141, 36), + (163673, 158, 24), + (163673, 157, 24), + (163673, 126, 24), + (163673, 125, 24), + (163674, 1, 1), + (163674, 96, 1), + (163674, 94, 1), + (163674, 93, 1), + (163674, 97, 1), + (163674, 95, 1), + (163674, 92, 1), + (163674, 90, 1), + (163674, 91, 1), + (163674, 221, 1), + (163674, 155, 1), + (163674, 145, 1), + (163674, 146, 1), + (163674, 147, 1), + (163675, 1, 250), + (163675, 96, 20), + (163675, 94, 20), + (163675, 93, 20), + (163675, 97, 20), + (163675, 95, 20), + (163675, 92, 20), + (163675, 90, 20), + (163675, 91, 20), + (163675, 221, 50), + (163675, 155, 20), + (163675, 145, 10), + (163675, 146, 5), + (163675, 147, 5), + (163676, 1, 1), + (163676, 110, 1), + (163676, 104, 1), + (163676, 106, 1), + (163676, 107, 1), + (163676, 102, 1), + (163676, 105, 1), + (163676, 103, 1), + (163676, 142, 1), + (163676, 118, 1), + (163677, 1, 225), + (163677, 110, 4), + (163677, 104, 4), + (163677, 106, 4), + (163677, 107, 4), + (163677, 102, 4), + (163677, 105, 4), + (163677, 103, 4), + (163677, 142, 4), + (163677, 118, 32), + (163678, 159, 1), + (163678, 119, 1), + (163678, 149, 1), + (163678, 21, 1), + (163678, 19, 1), + (163678, 18, 1), + (163678, 112, 1), + (163678, 130, 1), + (163679, 159, 10), + (163679, 119, 10), + (163679, 149, 30), + (163679, 21, 4), + (163679, 19, 4), + (163679, 18, 4), + (163679, 112, 4), + (163679, 130, 4), + (163680, 128, 1), + (163680, 123, 1), + (163680, 1, 1), + (163680, 221, 1), + (163680, 124, 1), + (163681, 128, 7), + (163681, 123, 14), + (163681, 1, 35), + (163681, 221, 200), + (163681, 124, 14), + (163682, 1, 1), + (163682, 221, 1), + (163682, 160, 1), + (163682, 141, 1), + (163682, 112, 1), + (163683, 1, 125), + (163683, 221, 175), + (163683, 160, 12), + (163683, 141, 16), + (163683, 112, 6), + (163684, 1, 1), + (163684, 131, 1), + (163684, 130, 1), + (163684, 129, 1), + (163684, 162, 1), + (163685, 1, 75), + (163685, 131, 5), + (163685, 130, 5), + (163685, 129, 5), + (163685, 162, 35), + (163686, 17, 1), + (163686, 128, 1), + (163686, 118, 1), + (163686, 119, 1), + (163686, 123, 1), + (163686, 19, 1), + (163686, 221, 1), + (163686, 149, 1), + (163686, 120, 1), + (163686, 21, 1), + (163686, 156, 1), + (163686, 20, 1), + (163686, 18, 1), + (163686, 16, 1), + (163686, 124, 1), + (163687, 17, 3), + (163687, 128, 3), + (163687, 118, 12), + (163687, 119, 12), + (163687, 123, 12), + (163687, 19, 3), + (163687, 221, 100), + (163687, 149, 12), + (163687, 120, 12), + (163687, 21, 3), + (163687, 156, 18), + (163687, 20, 3), + (163687, 18, 3), + (163687, 16, 3), + (163687, 124, 12), + (163688, 145, 1), + (163688, 146, 1), + (163688, 147, 1), + (163688, 133, 1), + (163688, 104, 1), + (163688, 106, 1), + (163688, 102, 1), + (163688, 103, 1), + (163688, 150, 1), + (163688, 112, 1), + (163688, 1, 1), + (163688, 156, 1), + (163688, 134, 1), + (163688, 101, 1), + (163689, 145, 2), + (163689, 146, 2), + (163689, 147, 2), + (163689, 133, 2), + (163689, 104, 2), + (163689, 106, 2), + (163689, 102, 2), + (163689, 103, 4), + (163689, 150, 4), + (163689, 112, 4), + (163689, 1, 175), + (163689, 156, 12), + (163689, 134, 12), + (163689, 101, 12), + (163690, 164, 1), + (163690, 113, 1), + (163690, 1, 1), + (163690, 119, 1), + (163690, 151, 1), + (163691, 164, 12), + (163691, 113, 6), + (163691, 1, 125), + (163691, 119, 30), + (163691, 151, 6), + (163692, 154, 1), + (163692, 163, 1), + (163692, 1, 1), + (163692, 136, 1), + (163692, 164, 1), + (163693, 154, 20), + (163693, 163, 20), + (163693, 1, 150), + (163693, 136, 25), + (163693, 164, 25), + (163695, 160, 1), + (163695, 92, 1), + (163695, 94, 1), + (163695, 221, 1), + (163696, 160, 10), + (163696, 92, 100), + (163696, 94, 100), + (163696, 221, 100), + (163697, 156, 1), + (163697, 167, 1), + (163697, 148, 1), + (163697, 151, 1), + (163697, 150, 1), + (163697, 133, 1), + (163697, 113, 1), + (163697, 115, 1), + (163697, 114, 1), + (163697, 116, 1), + (163697, 112, 1), + (163699, 156, 24), + (163699, 167, 3), + (163699, 148, 3), + (163699, 151, 3), + (163699, 150, 3), + (163699, 133, 3), + (163699, 113, 3), + (163699, 115, 3), + (163699, 114, 3), + (163699, 116, 3), + (163699, 112, 3), + (163700, 155, 1), + (163700, 142, 1), + (163700, 147, 1), + (163700, 146, 1), + (163700, 104, 1), + (163700, 106, 1), + (163700, 105, 1), + (163700, 107, 1), + (163700, 103, 1), + (163700, 102, 1), + (163701, 155, 24), + (163701, 142, 3), + (163701, 147, 3), + (163701, 146, 3), + (163701, 104, 3), + (163701, 106, 3), + (163701, 105, 3), + (163701, 107, 3), + (163701, 103, 3), + (163701, 102, 3), + (163703, 19, 1), + (163703, 1, 1), + (163703, 21, 1), + (163703, 156, 1), + (163704, 19, 4), + (163704, 1, 104), + (163704, 21, 4), + (163704, 156, 104), + (163705, 120, 1), + (163705, 149, 1), + (163705, 118, 1), + (163705, 119, 1), + (163706, 120, 24), + (163706, 149, 24), + (163706, 118, 24), + (163706, 119, 24), + (163709, 156, 1), + (163709, 153, 1), + (163709, 155, 1), + (163709, 154, 1), + (163710, 156, 24), + (163710, 153, 24), + (163710, 155, 24), + (163710, 154, 24), + (163711, 153, 1), + (163711, 165, 1), + (163711, 135, 1), + (163711, 161, 1), + (163712, 153, 24), + (163712, 165, 18), + (163712, 135, 18), + (163712, 161, 12), + (163713, 122, 1), + (163713, 131, 1), + (163713, 130, 1), + (163713, 129, 1), + (163713, 128, 1), + (163713, 127, 1), + (163713, 92, 1), + (163713, 132, 1), + (163714, 122, 2), + (163714, 131, 2), + (163714, 130, 2), + (163714, 129, 2), + (163714, 128, 2), + (163714, 127, 2), + (163714, 92, 72), + (163714, 132, 72), + (163718, 17, 1), + (163718, 93, 3), + (163718, 137, 1), + (163718, 95, 1), + (163718, 154, 1), + (163718, 153, 1), + (163718, 92, 3), + (163718, 155, 1), + (163718, 97, 3), + (163718, 1, 1), + (163718, 130, 1), + (163718, 91, 3), + (163718, 96, 1), + (163718, 90, 3), + (163718, 94, 1), + (163718, 20, 1), + (163719, 17, 5), + (163719, 93, 656), + (163719, 137, 11), + (163719, 95, 150), + (163719, 154, 27), + (163719, 153, 15), + (163719, 92, 656), + (163719, 155, 19), + (163719, 97, 750), + (163719, 1, 97), + (163719, 130, 1), + (163719, 91, 750), + (163719, 96, 150), + (163719, 90, 750), + (163719, 94, 150), + (163719, 20, 2), + (163720, 93, 1), + (163720, 118, 1), + (163720, 95, 1), + (163720, 92, 3), + (163720, 97, 3), + (163720, 1, 1), + (163720, 91, 3), + (163720, 120, 1), + (163720, 96, 1), + (163720, 90, 3), + (163720, 94, 1), + (163720, 16, 1), + (163721, 93, 112), + (163721, 118, 20), + (163721, 95, 112), + (163721, 92, 656), + (163721, 97, 656), + (163721, 1, 200), + (163721, 91, 750), + (163721, 120, 20), + (163721, 96, 112), + (163721, 90, 750), + (163721, 94, 112), + (163721, 16, 6), + (163722, 93, 1), + (163722, 95, 3), + (163722, 92, 3), + (163722, 97, 1), + (163722, 123, 1), + (163722, 221, 1), + (163722, 91, 3), + (163722, 149, 1), + (163722, 136, 1), + (163722, 96, 1), + (163722, 90, 3), + (163722, 94, 1), + (163723, 93, 112), + (163723, 95, 656), + (163723, 92, 656), + (163723, 97, 112), + (163723, 123, 10), + (163723, 221, 200), + (163723, 91, 750), + (163723, 149, 30), + (163723, 136, 20), + (163723, 96, 112), + (163723, 90, 750), + (163723, 94, 112), + (163725, 102, 1), + (163725, 103, 1), + (163725, 93, 1), + (163725, 95, 3), + (163725, 92, 3), + (163725, 97, 1), + (163725, 1, 1), + (163725, 133, 1), + (163725, 134, 1), + (163725, 221, 1), + (163725, 91, 3), + (163725, 104, 1), + (163725, 101, 1), + (163725, 106, 1), + (163725, 112, 1), + (163725, 96, 1), + (163725, 90, 3), + (163725, 94, 3), + (163725, 114, 1), + (163726, 102, 4), + (163726, 103, 4), + (163726, 93, 150), + (163726, 95, 750), + (163726, 92, 656), + (163726, 97, 150), + (163726, 1, 80), + (163726, 133, 2), + (163726, 134, 16), + (163726, 221, 80), + (163726, 91, 750), + (163726, 104, 2), + (163726, 101, 16), + (163726, 106, 4), + (163726, 112, 4), + (163726, 96, 150), + (163726, 90, 750), + (163726, 94, 656), + (163726, 114, 2), + (163941, 17, 1), + (163941, 93, 1), + (163941, 95, 1), + (163941, 92, 1), + (163941, 97, 1), + (163941, 19, 1), + (163941, 91, 1), + (163941, 106, 1), + (163941, 96, 1), + (163941, 90, 1), + (163941, 21, 1), + (163941, 94, 1), + (163941, 20, 1), + (163941, 18, 1), + (163941, 16, 1), + (163942, 17, 4), + (163942, 93, 56), + (163942, 95, 328), + (163942, 92, 56), + (163942, 97, 56), + (163942, 19, 4), + (163942, 91, 375), + (163942, 106, 4), + (163942, 96, 56), + (163942, 90, 328), + (163942, 21, 4), + (163942, 94, 328), + (163942, 20, 4), + (163942, 18, 4), + (163942, 16, 4), + (163943, 17, 1), + (163943, 93, 1), + (163943, 95, 1), + (163943, 92, 1), + (163943, 97, 1), + (163943, 19, 1), + (163943, 91, 1), + (163943, 106, 1), + (163943, 96, 1), + (163943, 90, 1), + (163943, 21, 1), + (163943, 94, 1), + (163943, 20, 1), + (163943, 18, 1), + (163943, 16, 1), + (163944, 17, 4), + (163944, 93, 37), + (163944, 95, 218), + (163944, 92, 37), + (163944, 97, 37), + (163944, 19, 4), + (163944, 91, 250), + (163944, 106, 6), + (163944, 96, 37), + (163944, 90, 218), + (163944, 21, 4), + (163944, 94, 218), + (163944, 20, 4), + (163944, 18, 4), + (163944, 16, 4), + (163945, 17, 1), + (163945, 93, 1), + (163945, 118, 1), + (163945, 95, 5), + (163945, 92, 1), + (163945, 97, 1), + (163945, 19, 1), + (163945, 91, 5), + (163945, 106, 1), + (163945, 96, 1), + (163945, 90, 5), + (163945, 21, 1), + (163945, 94, 5), + (163945, 20, 1), + (163945, 18, 1), + (163945, 16, 1), + (163946, 17, 4), + (163946, 93, 150), + (163946, 118, 40), + (163946, 95, 875), + (163946, 92, 150), + (163946, 97, 150), + (163946, 19, 4), + (163946, 91, 1000), + (163946, 106, 6), + (163946, 96, 150), + (163946, 90, 875), + (163946, 21, 4), + (163946, 94, 875), + (163946, 20, 4), + (163946, 18, 4), + (163946, 16, 4), + (163947, 92, 1), + (163947, 95, 1), + (163947, 91, 1), + (163947, 90, 1), + (163947, 96, 1), + (163947, 94, 1), + (163947, 97, 1), + (163947, 106, 1), + (163947, 16, 1), + (163947, 18, 1), + (163947, 17, 1), + (163947, 20, 1), + (163947, 19, 1), + (163947, 21, 1), + (163947, 93, 1), + (163948, 92, 37), + (163948, 95, 218), + (163948, 91, 250), + (163948, 90, 218), + (163948, 96, 37), + (163948, 94, 218), + (163948, 97, 37), + (163948, 106, 6), + (163948, 16, 4), + (163948, 18, 4), + (163948, 17, 4), + (163948, 20, 4), + (163948, 19, 4), + (163948, 21, 4), + (163948, 93, 37), + (163949, 17, 1), + (163949, 93, 1), + (163949, 95, 3), + (163949, 92, 1), + (163949, 97, 1), + (163949, 19, 1), + (163949, 221, 1), + (163949, 91, 3), + (163949, 106, 1), + (163949, 96, 1), + (163949, 90, 3), + (163949, 21, 1), + (163949, 94, 3), + (163949, 20, 1), + (163949, 122, 1), + (163949, 18, 1), + (163949, 16, 1), + (163950, 17, 4), + (163950, 93, 112), + (163950, 95, 656), + (163950, 92, 112), + (163950, 97, 112), + (163950, 19, 4), + (163950, 221, 80), + (163950, 91, 750), + (163950, 106, 6), + (163950, 96, 112), + (163950, 90, 656), + (163950, 21, 4), + (163950, 94, 656), + (163950, 20, 4), + (163950, 122, 10), + (163950, 18, 4), + (163950, 16, 4), + (163951, 17, 1), + (163951, 93, 1), + (163951, 95, 3), + (163951, 92, 1), + (163951, 97, 1), + (163951, 19, 1), + (163951, 91, 3), + (163951, 106, 1), + (163951, 96, 1), + (163951, 90, 3), + (163951, 21, 1), + (163951, 94, 3), + (163951, 20, 1), + (163951, 18, 1), + (163951, 16, 1), + (163952, 17, 4), + (163952, 93, 93), + (163952, 95, 546), + (163952, 92, 93), + (163952, 97, 93), + (163952, 19, 4), + (163952, 91, 625), + (163952, 106, 6), + (163952, 96, 93), + (163952, 90, 546), + (163952, 21, 4), + (163952, 94, 546), + (163952, 20, 4), + (163952, 18, 4), + (163952, 16, 4), + (163993, 155, 3), + (163994, 155, 3), + (163995, 155, 6), + (163996, 155, 6), + (163997, 155, 15), + (163998, 155, 3), + (163999, 155, 3), + (164000, 155, 6), + (164001, 155, 6), + (164002, 155, 15), + (164003, 155, 3), + (164004, 155, 3), + (164005, 155, 6), + (164006, 155, 6), + (164007, 155, 15), + (164008, 155, 3), + (164009, 155, 3), + (164010, 155, 6), + (164011, 155, 6), + (164012, 155, 15), + (164013, 155, 3), + (164014, 155, 3), + (164015, 155, 6), + (164016, 155, 6), + (164017, 155, 15), + (164018, 155, 3), + (164019, 155, 3), + (164020, 155, 6), + (164021, 155, 6), + (164022, 155, 15), + (164023, 155, 3), + (164024, 155, 3), + (164025, 155, 6), + (164026, 155, 6), + (164027, 155, 15), + (164028, 152, 5), + (164029, 152, 5), + (164030, 152, 10), + (164030, 145, 10), + (164031, 152, 10), + (164031, 145, 10), + (164032, 152, 25), + (164032, 379, 1), + (164032, 145, 25), + (164033, 152, 5), + (164034, 152, 5), + (164035, 152, 10), + (164035, 143, 10), + (164036, 152, 10), + (164036, 143, 10), + (164037, 152, 25), + (164037, 143, 20), + (164037, 124, 10), + (164038, 152, 5), + (164039, 152, 5), + (164040, 152, 10), + (164040, 164, 10), + (164041, 152, 10), + (164041, 164, 10), + (164042, 152, 25), + (164042, 164, 20), + (164042, 136, 10), + (164043, 152, 5), + (164044, 152, 5), + (164045, 155, 15), + (164045, 152, 10), + (164046, 155, 15), + (164046, 152, 10), + (164047, 93, 300), + (164047, 155, 40), + (164047, 152, 25), + (164048, 118, 3), + (164048, 16, 1), + (164049, 118, 3), + (164049, 16, 1), + (164050, 118, 6), + (164050, 16, 2), + (164051, 118, 6), + (164051, 16, 2), + (164052, 118, 18), + (164052, 16, 5), + (164053, 17, 1), + (164053, 118, 3), + (164053, 21, 1), + (164054, 17, 1), + (164054, 118, 3), + (164054, 21, 1), + (164055, 17, 2), + (164055, 118, 6), + (164055, 21, 2), + (164056, 17, 2), + (164056, 118, 6), + (164056, 21, 2), + (164057, 17, 5), + (164057, 118, 18), + (164057, 21, 3), + (164058, 118, 3), + (164058, 20, 1), + (164058, 18, 1), + (164059, 118, 3), + (164059, 20, 1), + (164059, 18, 1), + (164060, 118, 6), + (164060, 20, 2), + (164060, 18, 2), + (164061, 118, 6), + (164061, 20, 2), + (164061, 18, 2), + (164062, 118, 18), + (164062, 20, 5), + (164062, 18, 3), + (164063, 118, 3), + (164063, 94, 20), + (164064, 118, 3), + (164064, 94, 20), + (164065, 118, 6), + (164065, 94, 50), + (164066, 118, 6), + (164066, 94, 50), + (164067, 118, 18), + (164067, 94, 160), + (164067, 319, 1), + (164070, 94, 50), + (164070, 18, 2), + (164071, 94, 50), + (164071, 18, 2), + (164072, 94, 100), + (164072, 18, 4), + (164073, 94, 100), + (164073, 18, 4), + (164074, 94, 150), + (164074, 18, 6), + (164075, 94, 150), + (164075, 18, 6), + (164076, 94, 250), + (164076, 18, 8), + (164079, 19, 1), + (164079, 94, 50), + (164079, 20, 1), + (164080, 19, 1), + (164080, 94, 50), + (164080, 20, 1), + (164081, 19, 2), + (164081, 94, 100), + (164081, 20, 2), + (164082, 19, 2), + (164082, 94, 100), + (164082, 20, 2), + (164083, 19, 3), + (164083, 94, 150), + (164083, 20, 3), + (164084, 19, 3), + (164084, 94, 150), + (164084, 20, 3), + (164085, 19, 4), + (164085, 94, 250), + (164085, 20, 4), + (164088, 94, 50), + (164088, 16, 2), + (164089, 94, 50), + (164089, 16, 2), + (164090, 94, 100), + (164090, 16, 4), + (164091, 94, 100), + (164091, 16, 4), + (164092, 94, 150), + (164092, 16, 6), + (164093, 94, 150), + (164093, 16, 6), + (164094, 94, 250), + (164094, 16, 8), + (164097, 17, 2), + (164097, 94, 50), + (164098, 17, 2), + (164098, 94, 50), + (164099, 17, 4), + (164099, 94, 100), + (164100, 17, 4), + (164100, 94, 100), + (164101, 17, 6), + (164101, 94, 150), + (164102, 17, 6), + (164102, 94, 150), + (164103, 17, 8), + (164103, 94, 250), + (164349, 93, 900), + (164349, 95, 900), + (164349, 92, 1200), + (164349, 91, 1200), + (164349, 90, 1200), + (164349, 1, 400), + (164349, 123, 8), + (164349, 97, 600), + (164349, 96, 900), + (164349, 94, 600), + (164349, 279, 10), + (164349, 278, 10), + (164349, 316, 10), + (164349, 311, 10), + (164349, 281, 10), + (164349, 282, 10), + (164349, 317, 10), + (164349, 280, 10), + (164392, 93, 9), + (164392, 95, 9), + (164392, 92, 12), + (164392, 91, 12), + (164392, 90, 12), + (164392, 1, 4), + (164392, 123, 1), + (164392, 97, 6), + (164392, 96, 9), + (164392, 94, 6), + (164392, 279, 1), + (164392, 278, 1), + (164392, 316, 1), + (164392, 311, 1), + (164392, 281, 1), + (164392, 282, 1), + (164392, 317, 1), + (164392, 280, 1), + (164393, 93, 3), + (164393, 95, 3), + (164393, 92, 4), + (164393, 91, 4), + (164393, 90, 4), + (164393, 123, 1), + (164393, 156, 4), + (164393, 97, 2), + (164393, 96, 3), + (164393, 94, 2), + (164393, 279, 1), + (164393, 278, 1), + (164393, 316, 1), + (164393, 311, 1), + (164393, 281, 1), + (164393, 282, 1), + (164393, 317, 1), + (164393, 280, 1), + (164394, 93, 340), + (164394, 95, 340), + (164394, 92, 450), + (164394, 91, 450), + (164394, 90, 450), + (164394, 123, 8), + (164394, 156, 40), + (164394, 97, 225), + (164394, 96, 340), + (164394, 94, 225), + (164394, 279, 10), + (164394, 278, 10), + (164394, 316, 10), + (164394, 311, 10), + (164394, 281, 10), + (164394, 282, 10), + (164394, 317, 10), + (164394, 280, 10), + (164395, 93, 1), + (164395, 95, 1), + (164395, 92, 3), + (164395, 91, 3), + (164395, 90, 3), + (164395, 119, 3), + (164395, 123, 1), + (164395, 97, 1), + (164395, 96, 1), + (164395, 94, 1), + (164395, 279, 1), + (164395, 278, 1), + (164395, 316, 1), + (164395, 311, 1), + (164395, 281, 1), + (164395, 282, 1), + (164395, 317, 1), + (164395, 280, 1), + (164396, 93, 190), + (164396, 95, 190), + (164396, 92, 300), + (164396, 91, 300), + (164396, 90, 300), + (164396, 119, 30), + (164396, 123, 8), + (164396, 97, 125), + (164396, 96, 190), + (164396, 94, 125), + (164396, 279, 10), + (164396, 278, 10), + (164396, 316, 10), + (164396, 311, 10), + (164396, 281, 10), + (164396, 282, 10), + (164396, 317, 10), + (164396, 280, 10), + (164397, 93, 1), + (164397, 95, 1), + (164397, 92, 3), + (164397, 91, 3), + (164397, 90, 3), + (164397, 123, 1), + (164397, 97, 1), + (164397, 96, 1), + (164397, 94, 1), + (164397, 156, 6), + (164397, 279, 1), + (164397, 278, 1), + (164397, 316, 1), + (164397, 311, 1), + (164397, 281, 1), + (164397, 282, 1), + (164397, 317, 1), + (164397, 280, 1), + (164398, 93, 190), + (164398, 95, 190), + (164398, 92, 300), + (164398, 91, 300), + (164398, 90, 300), + (164398, 123, 8), + (164398, 97, 125), + (164398, 96, 190), + (164398, 94, 125), + (164398, 156, 60), + (164398, 279, 10), + (164398, 278, 10), + (164398, 316, 10), + (164398, 311, 10), + (164398, 281, 10), + (164398, 282, 10), + (164398, 317, 10), + (164398, 280, 10), + (164399, 93, 4), + (164399, 95, 4), + (164399, 92, 7), + (164399, 91, 7), + (164399, 90, 7), + (164399, 123, 1), + (164399, 154, 4), + (164399, 97, 3), + (164399, 96, 4), + (164399, 94, 3), + (164399, 279, 1), + (164399, 278, 1), + (164399, 316, 1), + (164399, 311, 1), + (164399, 281, 1), + (164399, 282, 1), + (164399, 317, 1), + (164399, 280, 1), + (164400, 93, 440), + (164400, 95, 440), + (164400, 92, 750), + (164400, 91, 750), + (164400, 90, 750), + (164400, 123, 8), + (164400, 154, 40), + (164400, 97, 325), + (164400, 96, 440), + (164400, 94, 325), + (164400, 279, 10), + (164400, 278, 10), + (164400, 316, 10), + (164400, 311, 10), + (164400, 281, 10), + (164400, 282, 10), + (164400, 317, 10), + (164400, 280, 10), + (164401, 221, 1), + (164401, 149, 1), + (164402, 221, 240), + (164402, 149, 32), + (164412, 92, 1), + (164412, 133, 1), + (164412, 221, 1), + (164412, 104, 1), + (164413, 92, 120), + (164413, 133, 12), + (164413, 221, 120), + (164413, 104, 12), + (164414, 139, 1), + (164414, 221, 8), + (164414, 1, 4), + (164414, 157, 1), + (164415, 139, 15), + (164415, 221, 800), + (164415, 1, 400), + (164415, 157, 30), + (164416, 136, 1), + (164417, 136, 50), + (164427, 279, 1), + (164427, 96, 20), + (164427, 21, 1), + (164428, 279, 1), + (164428, 96, 20), + (164428, 21, 1), + (164429, 279, 5), + (164429, 96, 100), + (164429, 21, 3), + (164430, 279, 5), + (164430, 96, 100), + (164430, 21, 3), + (164431, 279, 8), + (164431, 96, 150), + (164431, 21, 4), + (164432, 167, 8), + (164432, 119, 16), + (164432, 1, 180), + (164432, 380, 4), + (164432, 96, 50), + (164432, 93, 50), + (164432, 97, 150), + (164432, 95, 150), + (164432, 91, 150), + (164432, 92, 150), + (164432, 90, 150), + (164432, 94, 50), + (164487, 123, 1), + (164487, 221, 10), + (164487, 93, 6), + (164487, 95, 6), + (164487, 92, 9), + (164487, 97, 4), + (164487, 91, 9), + (164487, 96, 6), + (164487, 90, 9), + (164487, 94, 4), + (164487, 279, 1), + (164487, 278, 1), + (164487, 316, 1), + (164487, 311, 1), + (164487, 281, 1), + (164487, 282, 1), + (164487, 317, 1), + (164487, 280, 1), + (164488, 123, 8), + (164488, 221, 240), + (164488, 93, 675), + (164488, 95, 675), + (164488, 92, 900), + (164488, 97, 450), + (164488, 91, 900), + (164488, 96, 675), + (164488, 90, 900), + (164488, 94, 450), + (164488, 279, 10), + (164488, 278, 10), + (164488, 316, 10), + (164488, 311, 10), + (164488, 281, 10), + (164488, 282, 10), + (164488, 317, 10), + (164488, 280, 10), + (164489, 141, 1), + (164489, 221, 1), + (164489, 1, 1), + (164490, 141, 7), + (164490, 221, 43), + (164490, 1, 20), + (164497, 141, 7), + (164497, 221, 44), + (164497, 1, 20), + (164497, 125, 4), + (164498, 141, 18), + (164498, 221, 109), + (164498, 1, 50), + (164498, 125, 9), + (164500, 141, 18), + (164500, 221, 110), + (164500, 1, 50), + (164500, 125, 9), + (164500, 126, 9), + (164501, 141, 25), + (164501, 221, 153), + (164501, 1, 70), + (164501, 125, 13), + (164501, 126, 13), + (164510, 141, 25), + (164510, 221, 154), + (164510, 1, 70), + (164510, 125, 13), + (164510, 126, 13), + (164510, 157, 13), + (164511, 141, 32), + (164511, 221, 197), + (164511, 1, 90), + (164511, 125, 16), + (164511, 126, 16), + (164511, 157, 16), + (164512, 141, 32), + (164512, 221, 198), + (164512, 1, 90), + (164512, 125, 16), + (164512, 126, 16), + (164512, 157, 16), + (164512, 160, 16), + (164513, 141, 36), + (164513, 221, 219), + (164513, 1, 100), + (164513, 125, 18), + (164513, 126, 18), + (164513, 157, 18), + (164513, 160, 18), + (164515, 141, 36), + (164515, 221, 220), + (164515, 1, 100), + (164515, 125, 24), + (164515, 126, 24), + (164515, 157, 24), + (164515, 160, 24), + (164515, 127, 4), + (164515, 130, 4), + (164515, 131, 4), + (164515, 181, 20), + (164515, 319, 2), + (164515, 91, 150), + (164515, 92, 150), + (164515, 93, 150), + (164515, 96, 150), + (164548, 125, 4), + (164564, 221, 40), + (164564, 90, 700), + (164564, 91, 700), + (164564, 92, 900), + (164564, 93, 500), + (164564, 94, 900), + (164564, 95, 900), + (164564, 96, 500), + (164564, 97, 900), + (164603, 181, 2), + (164603, 149, 1), + (164604, 181, 4), + (164604, 149, 1), + (164605, 181, 8), + (164605, 149, 1), + (164606, 181, 16), + (164606, 149, 2), + (164607, 181, 32), + (164607, 149, 4), + (164608, 181, 64), + (164608, 149, 6), + (164800, 119, 1), + (164800, 93, 3), + (164800, 95, 2), + (164800, 92, 3), + (164800, 97, 2), + (164800, 91, 2), + (164800, 96, 2), + (164800, 90, 3), + (164800, 94, 1), + (164801, 119, 12), + (164801, 93, 300), + (164801, 95, 250), + (164801, 92, 300), + (164801, 97, 250), + (164801, 91, 250), + (164801, 96, 250), + (164801, 90, 300), + (164801, 94, 100), + (164808, 135, 1), + (164808, 165, 1), + (164808, 93, 3), + (164808, 95, 2), + (164808, 92, 3), + (164808, 97, 2), + (164808, 91, 2), + (164808, 96, 2), + (164808, 90, 3), + (164808, 94, 1), + (164809, 135, 12), + (164809, 165, 12), + (164809, 93, 300), + (164809, 95, 250), + (164809, 92, 300), + (164809, 97, 250), + (164809, 91, 250), + (164809, 96, 250), + (164809, 90, 300), + (164809, 94, 100), + (164810, 156, 24), + (164810, 93, 450), + (164810, 95, 375), + (164810, 92, 450), + (164810, 97, 375), + (164810, 91, 375), + (164810, 96, 375), + (164810, 90, 450), + (164810, 94, 150), + (164811, 156, 2), + (164811, 93, 4), + (164811, 95, 3), + (164811, 92, 4), + (164811, 97, 3), + (164811, 91, 3), + (164811, 96, 3), + (164811, 90, 4), + (164811, 94, 1), + (164812, 153, 1), + (164812, 154, 1), + (164812, 93, 7), + (164812, 95, 6), + (164812, 92, 7), + (164812, 97, 6), + (164812, 91, 6), + (164812, 96, 6), + (164812, 90, 7), + (164812, 94, 2), + (164813, 153, 12), + (164813, 154, 12), + (164813, 93, 750), + (164813, 95, 625), + (164813, 92, 750), + (164813, 97, 625), + (164813, 91, 625), + (164813, 96, 625), + (164813, 90, 750), + (164813, 94, 250), + (164816, 1, 6), + (164816, 93, 12), + (164816, 95, 10), + (164816, 92, 12), + (164816, 97, 10), + (164816, 91, 10), + (164816, 96, 10), + (164816, 90, 12), + (164816, 94, 4), + (164817, 1, 120), + (164817, 93, 1200), + (164817, 95, 1000), + (164817, 92, 1200), + (164817, 97, 1000), + (164817, 91, 1000), + (164817, 96, 1000), + (164817, 90, 1200), + (164817, 94, 400), + (164819, 93, 9), + (164819, 95, 7), + (164819, 92, 9), + (164819, 97, 7), + (164819, 91, 7), + (164819, 96, 7), + (164819, 90, 9), + (164819, 94, 3), + (164819, 122, 1), + (164819, 161, 1), + (164819, 136, 1), + (164820, 93, 900), + (164820, 95, 750), + (164820, 92, 900), + (164820, 97, 750), + (164820, 91, 750), + (164820, 96, 750), + (164820, 90, 900), + (164820, 94, 300), + (164820, 122, 4), + (164820, 161, 8), + (164820, 136, 12), + (164931, 93, 1), + (164931, 95, 2), + (164931, 92, 3), + (164931, 97, 2), + (164931, 91, 3), + (164931, 96, 3), + (164931, 90, 2), + (164931, 94, 2), + (164931, 149, 2), + (164931, 119, 2), + (164931, 1, 1), + (164931, 221, 1), + (164931, 159, 1), + (164931, 168, 1), + (164932, 93, 75), + (164932, 95, 225), + (164932, 92, 300), + (164932, 97, 225), + (164932, 91, 300), + (164932, 96, 300), + (164932, 90, 225), + (164932, 94, 225), + (164932, 149, 20), + (164932, 119, 20), + (164932, 1, 30), + (164932, 221, 30), + (164932, 159, 10), + (164932, 168, 6), + (164933, 93, 1), + (164933, 95, 3), + (164933, 92, 4), + (164933, 97, 3), + (164933, 91, 4), + (164933, 96, 4), + (164933, 90, 3), + (164933, 94, 3), + (164933, 153, 2), + (164933, 156, 1), + (164933, 221, 1), + (164933, 1, 1), + (164934, 93, 112), + (164934, 95, 338), + (164934, 92, 450), + (164934, 97, 338), + (164934, 91, 450), + (164934, 96, 450), + (164934, 90, 338), + (164934, 94, 338), + (164934, 153, 30), + (164934, 156, 30), + (164934, 221, 45), + (164934, 1, 45), + (164935, 93, 1), + (164935, 95, 2), + (164935, 92, 3), + (164935, 97, 2), + (164935, 91, 3), + (164935, 96, 3), + (164935, 90, 2), + (164935, 94, 2), + (164935, 126, 1), + (164935, 163, 1), + (164935, 157, 1), + (164935, 1, 1), + (164935, 221, 1), + (164935, 168, 1), + (164936, 93, 75), + (164936, 95, 225), + (164936, 92, 300), + (164936, 97, 225), + (164936, 91, 300), + (164936, 96, 300), + (164936, 90, 225), + (164936, 94, 225), + (164936, 126, 10), + (164936, 163, 10), + (164936, 157, 10), + (164936, 1, 30), + (164936, 221, 30), + (164936, 168, 6), + (164937, 93, 2), + (164937, 95, 6), + (164937, 92, 9), + (164937, 97, 6), + (164937, 91, 9), + (164937, 96, 9), + (164937, 90, 6), + (164937, 94, 6), + (164937, 1, 1), + (164937, 221, 1), + (164937, 129, 1), + (164937, 168, 1), + (164938, 93, 225), + (164938, 95, 675), + (164938, 92, 900), + (164938, 97, 675), + (164938, 91, 900), + (164938, 96, 900), + (164938, 90, 675), + (164938, 94, 675), + (164938, 1, 90), + (164938, 221, 90), + (164938, 129, 5), + (164938, 168, 18), + (164939, 93, 1), + (164939, 95, 5), + (164939, 92, 7), + (164939, 97, 5), + (164939, 91, 7), + (164939, 96, 7), + (164939, 90, 5), + (164939, 94, 5), + (164939, 139, 2), + (164939, 166, 2), + (164939, 1, 1), + (164939, 221, 1), + (164939, 168, 1), + (164940, 93, 188), + (164940, 95, 565), + (164940, 92, 750), + (164940, 97, 565), + (164940, 91, 750), + (164940, 96, 750), + (164940, 90, 565), + (164940, 94, 565), + (164940, 139, 20), + (164940, 166, 20), + (164940, 1, 75), + (164940, 221, 75), + (164940, 168, 15), + (164941, 93, 3), + (164941, 95, 9), + (164941, 92, 12), + (164941, 97, 9), + (164941, 91, 12), + (164941, 96, 12), + (164941, 90, 9), + (164941, 94, 9), + (164941, 161, 1), + (164941, 160, 1), + (164941, 1, 1), + (164941, 221, 1), + (164941, 168, 1), + (164942, 93, 300), + (164942, 95, 900), + (164942, 92, 1200), + (164942, 97, 900), + (164942, 91, 1200), + (164942, 96, 1200), + (164942, 90, 900), + (164942, 94, 900), + (164942, 161, 10), + (164942, 160, 10), + (164942, 1, 120), + (164942, 221, 120), + (164942, 168, 24), + (164971, 152, 2), + (164971, 162, 2), + (164971, 90, 300), + (164971, 91, 300), + (164971, 92, 250), + (164971, 93, 250), + (164971, 94, 250), + (164971, 95, 250), + (164971, 96, 250), + (164971, 97, 300), + (164972, 152, 8), + (164972, 162, 8), + (164972, 90, 600), + (164972, 91, 600), + (164972, 92, 400), + (164972, 93, 400), + (164972, 94, 400), + (164972, 95, 400), + (164972, 96, 400), + (164972, 97, 600), + (164973, 132, 2), + (164973, 221, 2), + (164973, 90, 300), + (164973, 91, 250), + (164973, 92, 300), + (164973, 93, 250), + (164973, 94, 300), + (164973, 95, 250), + (164973, 96, 250), + (164973, 97, 250), + (164974, 132, 8), + (164974, 221, 8), + (164974, 90, 600), + (164974, 91, 400), + (164974, 92, 600), + (164974, 93, 400), + (164974, 94, 600), + (164974, 95, 400), + (164974, 96, 400), + (164974, 97, 400), + (164975, 164, 2), + (164975, 165, 2), + (164975, 90, 300), + (164975, 91, 250), + (164975, 92, 250), + (164975, 93, 300), + (164975, 94, 250), + (164975, 95, 250), + (164975, 96, 300), + (164975, 97, 250), + (164976, 164, 8), + (164976, 165, 8), + (164976, 90, 600), + (164976, 91, 400), + (164976, 92, 400), + (164976, 93, 600), + (164976, 94, 400), + (164976, 95, 400), + (164976, 96, 600), + (164976, 97, 400), + (164977, 156, 3), + (164977, 90, 300), + (164977, 91, 250), + (164977, 92, 250), + (164977, 93, 300), + (164977, 94, 250), + (164977, 95, 300), + (164977, 96, 250), + (164977, 97, 250), + (164978, 156, 12), + (164978, 90, 600), + (164978, 91, 400), + (164978, 92, 400), + (164978, 93, 600), + (164978, 94, 400), + (164978, 95, 600), + (164978, 96, 400), + (164978, 97, 400), + (164979, 117, 3), + (164979, 166, 3), + (164979, 90, 250), + (164979, 91, 250), + (164979, 92, 300), + (164979, 93, 250), + (164979, 94, 250), + (164979, 95, 300), + (164979, 96, 250), + (164979, 97, 300), + (164980, 117, 12), + (164980, 166, 12), + (164980, 90, 400), + (164980, 91, 400), + (164980, 92, 600), + (164980, 93, 400), + (164980, 94, 400), + (164980, 95, 600), + (164980, 96, 400), + (164980, 97, 600), + (164981, 123, 2), + (164981, 137, 3), + (164981, 90, 250), + (164981, 91, 300), + (164981, 92, 250), + (164981, 93, 250), + (164981, 94, 300), + (164981, 95, 250), + (164981, 96, 300), + (164981, 97, 250), + (164982, 123, 8), + (164982, 137, 12), + (164982, 90, 400), + (164982, 91, 600), + (164982, 92, 400), + (164982, 93, 400), + (164982, 94, 600), + (164982, 95, 400), + (164982, 96, 600), + (164982, 97, 400), + (164997, 1, 1), + (164997, 93, 9), + (164997, 95, 3), + (164997, 92, 12), + (164997, 97, 12), + (164997, 91, 12), + (164997, 96, 9), + (164997, 90, 9), + (164997, 94, 9), + (164998, 1, 100), + (164998, 93, 900), + (164998, 95, 300), + (164998, 92, 1200), + (164998, 97, 1200), + (164998, 91, 1200), + (164998, 96, 900), + (164998, 90, 900), + (164998, 94, 900), + (164999, 156, 1), + (164999, 93, 3), + (164999, 95, 1), + (164999, 92, 4), + (164999, 97, 4), + (164999, 91, 4), + (164999, 96, 3), + (164999, 90, 3), + (164999, 94, 3), + (165000, 156, 30), + (165000, 93, 338), + (165000, 95, 112), + (165000, 92, 450), + (165000, 97, 450), + (165000, 91, 450), + (165000, 96, 338), + (165000, 90, 338), + (165000, 94, 338), + (165001, 123, 1), + (165001, 93, 2), + (165001, 95, 1), + (165001, 92, 3), + (165001, 97, 3), + (165001, 91, 3), + (165001, 96, 2), + (165001, 90, 2), + (165001, 94, 2), + (165002, 123, 15), + (165002, 93, 225), + (165002, 95, 75), + (165002, 92, 300), + (165002, 97, 300), + (165002, 91, 300), + (165002, 96, 225), + (165002, 90, 225), + (165002, 94, 225), + (165003, 154, 1), + (165003, 155, 1), + (165003, 93, 5), + (165003, 95, 1), + (165003, 92, 7), + (165003, 97, 7), + (165003, 91, 7), + (165003, 96, 5), + (165003, 90, 5), + (165003, 94, 5), + (165004, 154, 15), + (165004, 155, 15), + (165004, 93, 565), + (165004, 95, 188), + (165004, 92, 750), + (165004, 97, 750), + (165004, 91, 750), + (165004, 96, 565), + (165004, 90, 565), + (165004, 94, 565), + (165005, 118, 1), + (165005, 119, 1), + (165005, 120, 1), + (165005, 93, 2), + (165005, 95, 1), + (165005, 92, 3), + (165005, 97, 3), + (165005, 91, 3), + (165005, 96, 2), + (165005, 90, 2), + (165005, 94, 2), + (165006, 118, 15), + (165006, 119, 15), + (165006, 120, 15), + (165006, 93, 225), + (165006, 95, 75), + (165006, 92, 300), + (165006, 97, 300), + (165006, 91, 300), + (165006, 96, 225), + (165006, 90, 225), + (165006, 94, 225), + (165007, 93, 6), + (165007, 92, 9), + (165007, 91, 9), + (165007, 90, 6), + (165007, 94, 6), + (165007, 136, 1), + (165007, 181, 1), + (165007, 221, 1), + (165007, 95, 2), + (165007, 97, 9), + (165007, 96, 6), + (165008, 93, 675), + (165008, 92, 900), + (165008, 91, 900), + (165008, 90, 675), + (165008, 94, 675), + (165008, 136, 10), + (165008, 181, 10), + (165008, 221, 40), + (165008, 95, 225), + (165008, 97, 900), + (165008, 96, 675), + (165055, 121, 2), + (165055, 1, 20), + (165055, 18, 2), + (165056, 121, 2), + (165056, 1, 20), + (165056, 18, 2), + (165057, 121, 6), + (165057, 1, 80), + (165057, 18, 5), + (165058, 121, 6), + (165058, 1, 80), + (165058, 18, 5), + (165059, 121, 12), + (165059, 1, 160), + (165059, 18, 8), + (165127, 118, 25), + (165127, 1, 200), + (165127, 96, 150), + (165130, 93, 155), + (165130, 118, 12), + (165130, 1, 235), + (165133, 155, 20), + (165133, 221, 75), + (165133, 149, 25), + (165134, 134, 2), + (165134, 101, 4), + (165134, 228, 1), + (165135, 134, 20), + (165135, 101, 50), + (165135, 228, 21), + (165136, 101, 2), + (165136, 134, 4), + (165136, 227, 1), + (165137, 101, 20), + (165137, 134, 50), + (165137, 227, 21), + (165140, 153, 15), + (165140, 92, 150), + (165140, 319, 2), + (165141, 93, 5), + (165141, 95, 5), + (165141, 164, 1), + (165141, 92, 5), + (165141, 97, 1), + (165141, 1, 1), + (165141, 133, 1), + (165141, 91, 5), + (165141, 96, 5), + (165141, 90, 5), + (165141, 94, 1), + (165141, 110, 1), + (165142, 93, 625), + (165142, 95, 625), + (165142, 164, 20), + (165142, 92, 875), + (165142, 97, 200), + (165142, 1, 200), + (165142, 133, 10), + (165142, 91, 1000), + (165142, 96, 625), + (165142, 90, 1000), + (165142, 94, 200), + (165142, 110, 10), + (165143, 93, 3), + (165143, 95, 3), + (165143, 379, 1), + (165143, 154, 1), + (165143, 153, 1), + (165143, 92, 3), + (165143, 155, 1), + (165143, 97, 1), + (165143, 91, 3), + (165143, 96, 3), + (165143, 90, 3), + (165143, 94, 1), + (165144, 93, 390), + (165144, 95, 390), + (165144, 379, 1), + (165144, 154, 30), + (165144, 153, 20), + (165144, 92, 546), + (165144, 155, 10), + (165144, 97, 125), + (165144, 91, 625), + (165144, 96, 390), + (165144, 90, 625), + (165144, 94, 125), + (165145, 148, 1), + (165145, 93, 1), + (165145, 95, 1), + (165145, 119, 1), + (165145, 92, 1), + (165145, 97, 1), + (165145, 91, 1), + (165145, 149, 1), + (165145, 96, 1), + (165145, 90, 1), + (165145, 94, 1), + (165146, 148, 5), + (165146, 93, 156), + (165146, 95, 156), + (165146, 119, 25), + (165146, 92, 218), + (165146, 97, 50), + (165146, 91, 250), + (165146, 149, 15), + (165146, 96, 156), + (165146, 90, 250), + (165146, 94, 50), + (165147, 93, 1), + (165147, 95, 1), + (165147, 92, 1), + (165147, 97, 1), + (165147, 123, 1), + (165147, 150, 1), + (165147, 91, 1), + (165147, 96, 1), + (165147, 90, 1), + (165147, 94, 1), + (165147, 156, 30), + (165147, 124, 1), + (165148, 93, 156), + (165148, 95, 156), + (165148, 92, 218), + (165148, 97, 50), + (165148, 123, 15), + (165148, 150, 10), + (165148, 91, 250), + (165148, 96, 156), + (165148, 90, 250), + (165148, 94, 50), + (165148, 156, 30), + (165148, 124, 10), + (165149, 93, 1), + (165149, 95, 1), + (165149, 166, 1), + (165149, 92, 1), + (165149, 97, 1), + (165149, 91, 1), + (165149, 96, 1), + (165149, 90, 1), + (165149, 94, 1), + (165149, 156, 1), + (165149, 18, 1), + (165150, 93, 234), + (165150, 95, 234), + (165150, 166, 20), + (165150, 92, 328), + (165150, 97, 75), + (165150, 91, 375), + (165150, 96, 234), + (165150, 90, 375), + (165150, 94, 75), + (165150, 156, 40), + (165150, 18, 10), + (165167, 119, 20), + (165167, 153, 20), + (165167, 134, 20), + (165168, 119, 20), + (165168, 153, 20), + (165168, 134, 20), + (165169, 96, 300), + (165169, 94, 300), + (165169, 93, 300), + (165169, 97, 300), + (165169, 95, 300), + (165169, 92, 600), + (165169, 90, 1200), + (165169, 91, 1000), + (165169, 221, 600), + (165170, 96, 75), + (165170, 94, 75), + (165170, 93, 75), + (165170, 97, 75), + (165170, 95, 75), + (165170, 92, 150), + (165170, 91, 250), + (165170, 90, 300), + (165170, 221, 150), + (165173, 96, 250), + (165173, 94, 250), + (165173, 93, 250), + (165173, 97, 250), + (165173, 95, 250), + (165173, 26, 375), + (165173, 91, 625), + (165173, 90, 750), + (165173, 221, 375), + (165174, 96, 115), + (165174, 94, 115), + (165174, 93, 115), + (165174, 97, 115), + (165174, 95, 115), + (165174, 92, 225), + (165174, 91, 375), + (165174, 90, 450), + (165174, 221, 225), + (165176, 20, 1), + (165176, 128, 1), + (165176, 136, 1), + (165176, 124, 1), + (165176, 123, 1), + (165176, 90, 1), + (165176, 91, 1), + (165177, 20, 12), + (165177, 128, 12), + (165177, 136, 24), + (165177, 124, 12), + (165177, 123, 24), + (165177, 90, 200), + (165177, 91, 200), + (165200, 93, 50), + (165200, 97, 200), + (165200, 16, 10), + (165201, 93, 950), + (165201, 95, 550), + (165201, 154, 15), + (165201, 153, 15), + (165201, 92, 950), + (165201, 155, 15), + (165201, 97, 550), + (165201, 1, 45), + (165201, 221, 45), + (165201, 91, 1050), + (165201, 96, 950), + (165201, 90, 1050), + (165201, 94, 950), + (165201, 156, 15), + (165202, 102, 8), + (165202, 103, 8), + (165202, 17, 8), + (165202, 100, 8), + (165202, 91, 400), + (165202, 106, 8), + (165202, 96, 400), + (165202, 90, 300), + (165202, 16, 8), + (165203, 128, 1), + (165203, 93, 1), + (165203, 95, 5), + (165203, 161, 1), + (165203, 119, 1), + (165203, 154, 1), + (165203, 153, 1), + (165203, 92, 5), + (165203, 155, 1), + (165203, 97, 5), + (165203, 1, 1), + (165203, 130, 1), + (165203, 131, 1), + (165203, 127, 1), + (165203, 221, 1), + (165203, 91, 5), + (165203, 160, 1), + (165203, 149, 1), + (165203, 96, 5), + (165203, 90, 5), + (165203, 129, 1), + (165203, 94, 5), + (165203, 122, 1), + (165204, 128, 8), + (165204, 93, 156), + (165204, 95, 546), + (165204, 161, 10), + (165204, 119, 20), + (165204, 154, 20), + (165204, 153, 20), + (165204, 92, 625), + (165204, 155, 20), + (165204, 97, 546), + (165204, 1, 100), + (165204, 130, 8), + (165204, 131, 8), + (165204, 127, 8), + (165204, 221, 200), + (165204, 91, 625), + (165204, 160, 10), + (165204, 149, 30), + (165204, 96, 625), + (165204, 90, 546), + (165204, 129, 8), + (165204, 94, 546), + (165204, 122, 8), + (165205, 1, 160), + (165205, 153, 20), + (165205, 154, 20), + (165205, 155, 40), + (165205, 93, 400), + (165205, 95, 400), + (165205, 92, 400), + (165205, 97, 400), + (165205, 91, 400), + (165205, 96, 400), + (165205, 90, 400), + (165205, 94, 400), + (165206, 17, 8), + (165206, 91, 700), + (165206, 90, 760), + (165206, 96, 760), + (165206, 94, 700), + (165206, 97, 600), + (165206, 95, 600), + (165206, 93, 700), + (165206, 119, 24), + (165206, 156, 24), + (165206, 154, 36), + (165206, 153, 12), + (165206, 155, 12), + (165206, 122, 8), + (165206, 129, 8), + (165206, 120, 24), + (165206, 92, 700), + (165207, 165, 5), + (165207, 118, 5), + (165207, 126, 5), + (165207, 147, 5), + (165207, 123, 5), + (165207, 1, 15), + (165207, 134, 5), + (165207, 221, 15), + (165207, 125, 5), + (165207, 101, 5), + (165207, 145, 5), + (165207, 120, 5), + (165207, 146, 5), + (165207, 124, 5), + (165207, 93, 50), + (165207, 95, 50), + (165207, 92, 150), + (165207, 97, 50), + (165207, 91, 50), + (165207, 96, 50), + (165207, 90, 50), + (165207, 94, 150), + (165208, 92, 1200), + (165208, 91, 1200), + (165208, 90, 1200), + (165208, 94, 1000), + (165208, 1, 100), + (165208, 104, 8), + (165208, 118, 30), + (165208, 133, 8), + (165208, 142, 8), + (165208, 221, 100), + (165208, 93, 1000), + (165208, 95, 800), + (165208, 154, 10), + (165208, 153, 10), + (165208, 155, 20), + (165208, 97, 800), + (165208, 96, 800), + (165208, 156, 10), + (165209, 95, 900), + (165209, 92, 1200), + (165209, 91, 1200), + (165209, 90, 1200), + (165209, 1, 140), + (165209, 104, 10), + (165209, 118, 35), + (165209, 133, 10), + (165209, 142, 10), + (165209, 221, 140), + (165209, 93, 1100), + (165209, 154, 15), + (165209, 153, 15), + (165209, 155, 25), + (165209, 97, 900), + (165209, 96, 900), + (165209, 94, 1100), + (165209, 156, 30), + (165213, 92, 1300), + (165213, 97, 1150), + (165213, 91, 1300), + (165213, 90, 1300), + (165213, 1, 180), + (165213, 104, 12), + (165213, 118, 40), + (165213, 133, 12), + (165213, 142, 12), + (165213, 221, 180), + (165213, 93, 1150), + (165213, 95, 1150), + (165213, 154, 25), + (165213, 153, 25), + (165213, 155, 40), + (165213, 96, 1150), + (165213, 94, 1150), + (165213, 156, 40), + (165214, 95, 800), + (165214, 91, 800), + (165214, 90, 950), + (165214, 97, 800), + (165214, 156, 40), + (165214, 93, 800), + (165214, 96, 800), + (165214, 94, 950), + (165214, 162, 20), + (165214, 154, 40), + (165214, 119, 40), + (165214, 92, 950), + (165215, 21, 2), + (165215, 19, 2), + (165215, 20, 2), + (165215, 17, 2), + (165215, 18, 2), + (165215, 16, 2), + (165215, 92, 300), + (165215, 156, 10), + (165215, 97, 300), + (165215, 93, 300), + (165215, 94, 300), + (165215, 96, 300), + (165215, 90, 300), + (165215, 91, 300), + (165215, 95, 300), + (165282, 165, 25), + (165282, 164, 25), + (165282, 136, 25), + (165282, 90, 150), + (165282, 122, 5), + (165283, 93, 38), + (165283, 95, 25), + (165283, 164, 5), + (165283, 97, 25), + (165284, 93, 150), + (165284, 95, 100), + (165284, 164, 20), + (165284, 97, 100), + (165287, 105, 9), + (165287, 103, 9), + (165287, 96, 300), + (165287, 93, 300), + (165287, 95, 300), + (165287, 94, 100), + (165287, 90, 300), + (165287, 92, 100), + (165287, 91, 300), + (165287, 97, 300), + (165290, 102, 9), + (165290, 107, 9), + (165290, 96, 300), + (165290, 93, 300), + (165290, 95, 300), + (165290, 94, 100), + (165290, 90, 300), + (165290, 92, 100), + (165290, 91, 300), + (165290, 97, 300), + (165291, 142, 9), + (165291, 146, 9), + (165291, 147, 9), + (165291, 92, 250), + (165291, 94, 250), + (165291, 96, 750), + (165291, 93, 750), + (165291, 95, 750), + (165291, 97, 750), + (165291, 91, 750), + (165291, 90, 750), + (165292, 94, 350), + (165292, 92, 350), + (165292, 221, 350), + (165303, 1, 180), + (165303, 101, 8), + (165303, 118, 16), + (165303, 119, 16), + (165303, 120, 16), + (165303, 131, 4), + (165303, 149, 16), + (165303, 16, 4), + (165303, 181, 10), + (165303, 93, 300), + (165303, 95, 300), + (165303, 92, 300), + (165303, 97, 300), + (165303, 91, 350), + (165303, 96, 300), + (165303, 90, 350), + (165303, 94, 300), + (165304, 1, 250), + (165304, 100, 8), + (165304, 129, 8), + (165304, 142, 8), + (165304, 143, 8), + (165304, 144, 8), + (165304, 181, 16), + (165304, 19, 8), + (165304, 318, -10), + (165304, 93, 1200), + (165304, 95, 1200), + (165304, 92, 1350), + (165304, 97, 1200), + (165304, 91, 1200), + (165304, 96, 1200), + (165304, 90, 1200), + (165304, 94, 1350), + (165305, 1, 210), + (165305, 115, 8), + (165305, 127, 8), + (165305, 139, 20), + (165305, 148, 8), + (165305, 150, 8), + (165305, 156, 60), + (165305, 167, 8), + (165305, 17, 8), + (165305, 181, 12), + (165305, 93, 550), + (165305, 95, 450), + (165305, 92, 450), + (165305, 97, 450), + (165305, 91, 450), + (165305, 96, 450), + (165305, 90, 450), + (165305, 94, 450), + (165306, 1, 180), + (165306, 111, 8), + (165306, 112, 8), + (165306, 113, 8), + (165306, 114, 8), + (165306, 130, 8), + (165306, 134, 16), + (165306, 145, 8), + (165306, 146, 8), + (165306, 147, 8), + (165306, 160, 12), + (165306, 181, 10), + (165306, 93, 300), + (165306, 95, 300), + (165306, 92, 300), + (165306, 97, 300), + (165306, 91, 300), + (165306, 96, 300), + (165306, 90, 300), + (165306, 94, 300), + (165307, 1, 220), + (165307, 116, 8), + (165307, 122, 8), + (165307, 123, 16), + (165307, 136, 16), + (165307, 151, 8), + (165307, 161, 8), + (165307, 181, 14), + (165307, 21, 8), + (165307, 221, 250), + (165307, 93, 900), + (165307, 95, 900), + (165307, 92, 900), + (165307, 97, 900), + (165307, 91, 900), + (165307, 96, 1050), + (165307, 90, 900), + (165307, 94, 900), + (165308, 1, 230), + (165308, 104, 8), + (165308, 121, 8), + (165308, 124, 8), + (165308, 125, 16), + (165308, 126, 16), + (165308, 128, 8), + (165308, 133, 8), + (165308, 153, 16), + (165308, 154, 16), + (165308, 155, 16), + (165308, 181, 12), + (165308, 20, 8), + (165308, 93, 750), + (165308, 95, 850), + (165308, 92, 750), + (165308, 97, 850), + (165308, 91, 750), + (165308, 96, 750), + (165308, 90, 750), + (165308, 94, 750), + (165361, 119, 17), + (165361, 151, 7), + (165361, 319, 1), + (165361, 93, 311), + (165361, 95, 289), + (165361, 92, 8), + (165361, 97, 301), + (165361, 91, 274), + (165361, 96, 321), + (165361, 90, 398), + (165361, 94, 37), + (165362, 110, 7), + (165362, 112, 11), + (165362, 181, 18), + (165362, 19, 3), + (165362, 93, 297), + (165362, 95, 309), + (165362, 92, 386), + (165362, 97, 98), + (165362, 91, 386), + (165362, 96, 440), + (165362, 90, 453), + (165362, 94, 422), + (165363, 110, 4), + (165363, 111, 3), + (165363, 135, 14), + (165363, 141, 31), + (165363, 159, 6), + (165363, 18, 8), + (165363, 318, -1), + (165363, 93, 729), + (165363, 95, 1), + (165363, 92, 704), + (165363, 97, 664), + (165363, 91, 795), + (165363, 96, 365), + (165363, 90, 773), + (165363, 94, 182), + (165364, 1, 63), + (165364, 149, 31), + (165364, 152, 9), + (165364, 154, 37), + (165364, 16, 6), + (165364, 18, 2), + (165364, 21, 7), + (165364, 93, 979), + (165364, 95, 1111), + (165364, 92, 1001), + (165364, 97, 999), + (165364, 91, 909), + (165364, 96, 16), + (165364, 90, 1221), + (165364, 94, 989), + (165365, 1, 103), + (165365, 16, 5), + (165365, 221, 81), + (165365, 90, 923), + (165365, 91, 912), + (165365, 92, 611), + (165365, 93, 876), + (165365, 94, 491), + (165365, 95, 988), + (165365, 96, 875), + (165365, 97, 809), + (165366, 105, 12), + (165366, 149, 20), + (165366, 162, 12), + (165366, 165, 24), + (165366, 93, 302), + (165366, 95, 305), + (165366, 92, 303), + (165366, 97, 304), + (165366, 91, 306), + (165366, 96, 300), + (165366, 90, 307), + (165366, 94, 301), + (165369, 126, 10), + (165369, 125, 10), + (165369, 158, 10), + (165370, 126, 10), + (165370, 125, 10), + (165370, 158, 10), + (165371, 126, 10), + (165371, 125, 15), + (165371, 158, 15), + (165372, 126, 10), + (165372, 125, 15), + (165372, 158, 15), + (165373, 126, 15), + (165373, 125, 20), + (165373, 158, 20), + (165374, 126, 15), + (165374, 125, 20), + (165374, 158, 20), + (165375, 126, 15), + (165375, 125, 20), + (165375, 158, 25), + (165395, 1, 200), + (165396, 1, 200), + (165397, 1, 200), + (165398, 1, 200), + (165399, 1, 200), + (165400, 1, 300), + (165401, 1, 300), + (165402, 1, 300), + (165403, 1, 300), + (165404, 1, 420), + (165405, 1, 420), + (165406, 1, 420), + (165407, 1, 550), + (165408, 1, 550), + (165409, 1, 720), + (165410, 1, 200), + (165411, 1, 200), + (165412, 1, 200), + (165413, 1, 200), + (165414, 1, 200), + (165415, 1, 300), + (165416, 1, 300), + (165417, 1, 300), + (165418, 1, 300), + (165419, 1, 420), + (165420, 1, 420), + (165421, 1, 420), + (165422, 1, 550), + (165423, 1, 550), + (165424, 1, 720), + (165427, 92, 1200), + (165427, 91, 1000), + (165427, 97, 1000), + (165427, 90, 1200), + (165427, 96, 800), + (165427, 95, 1000), + (165427, 94, 1200), + (165427, 1, 60), + (165427, 125, 20), + (165427, 158, 20), + (165427, 126, 20), + (165427, 160, 10), + (165427, 163, 10), + (165427, 161, 10), + (165427, 93, 800), + (165428, 97, 1100), + (165428, 91, 1100), + (165428, 92, 1200), + (165428, 90, 1200), + (165428, 318, -2), + (165428, 159, 20), + (165428, 123, 20), + (165428, 221, 160), + (165428, 128, 6), + (165428, 1, 160), + (165428, 96, 1000), + (165428, 94, 1100), + (165428, 93, 1000), + (165428, 95, 1100), + (165429, 97, 750), + (165429, 90, 900), + (165429, 92, 750), + (165429, 91, 750), + (165429, 109, 5), + (165429, 93, 650), + (165429, 94, 900), + (165429, 96, 650), + (165429, 127, 5), + (165429, 221, 60), + (165429, 157, 10), + (165429, 159, 10), + (165429, 141, 20), + (165429, 95, 750), + (165430, 92, 900), + (165430, 97, 800), + (165430, 91, 800), + (165430, 90, 900), + (165430, 124, 10), + (165430, 136, 10), + (165430, 149, 20), + (165430, 221, 100), + (165430, 93, 750), + (165430, 95, 800), + (165430, 96, 750), + (165430, 94, 800), + (165437, 316, 1), + (165437, 279, 1), + (165437, 311, 1), + (165437, 281, 1), + (165437, 282, 1), + (165437, 278, 1), + (165437, 280, 1), + (165437, 317, 1), + (165439, 276, 3), + (165441, 1, 7), + (165456, 319, 1), + (165456, 221, 75), + (165456, 1, 75), + (165456, 96, 300), + (165456, 93, 300), + (165456, 97, 300), + (165456, 95, 300), + (165456, 92, 150), + (165456, 90, 300), + (165456, 94, 150), + (165456, 91, 300), + (165457, 379, 1), + (165457, 221, 300), + (165457, 1, 300), + (165457, 96, 1200), + (165457, 93, 1200), + (165457, 97, 1200), + (165457, 95, 1200), + (165457, 94, 600), + (165457, 91, 1200), + (165457, 92, 600), + (165457, 90, 1200), + (165458, 1, 110), + (165458, 221, 110), + (165458, 93, 450), + (165458, 95, 450), + (165458, 92, 225), + (165458, 97, 450), + (165458, 91, 450), + (165458, 96, 450), + (165458, 90, 450), + (165458, 94, 225), + (165459, 141, 20), + (165459, 221, 75), + (165459, 1, 75), + (165459, 96, 300), + (165459, 93, 300), + (165459, 97, 300), + (165459, 95, 300), + (165459, 90, 300), + (165459, 92, 150), + (165459, 94, 150), + (165459, 91, 300), + (165460, 1, 125), + (165460, 181, 15), + (165460, 221, 125), + (165460, 93, 750), + (165460, 95, 750), + (165460, 92, 375), + (165460, 97, 750), + (165460, 91, 750), + (165460, 96, 750), + (165460, 90, 750), + (165460, 94, 375), + (165461, 221, 50), + (165461, 1, 50), + (165461, 96, 300), + (165461, 93, 300), + (165461, 97, 300), + (165461, 95, 300), + (165461, 92, 150), + (165461, 90, 300), + (165461, 94, 150), + (165461, 91, 300), + (165462, 221, 200), + (165462, 1, 200), + (165462, 96, 1200), + (165462, 93, 1200), + (165462, 97, 1200), + (165462, 95, 1200), + (165462, 94, 600), + (165462, 91, 1200), + (165462, 92, 600), + (165462, 90, 1200), + (165463, 221, 65), + (165463, 1, 65), + (165463, 96, 450), + (165463, 93, 450), + (165463, 97, 450), + (165463, 95, 450), + (165463, 92, 225), + (165463, 91, 450), + (165463, 94, 225), + (165463, 90, 450), + (165464, 221, 50), + (165464, 1, 50), + (165464, 96, 300), + (165464, 93, 300), + (165464, 97, 300), + (165464, 95, 300), + (165464, 90, 300), + (165464, 92, 150), + (165464, 94, 150), + (165464, 91, 300), + (165465, 1, 80), + (165465, 221, 80), + (165465, 96, 750), + (165465, 93, 750), + (165465, 97, 750), + (165465, 95, 750), + (165465, 94, 375), + (165465, 91, 750), + (165465, 92, 375), + (165465, 90, 750), + (165475, 221, 112), + (165475, 102, 14), + (165475, 19, 14), + (165475, 149, 42), + (165476, 221, 112), + (165476, 124, 14), + (165476, 123, 14), + (165476, 21, 14), + (165477, 134, 21), + (165477, 100, 14), + (165477, 155, 42), + (165477, 18, 14), + (165478, 1, 112), + (165478, 113, 14), + (165478, 151, 14), + (165478, 19, 14), + (165479, 149, 42), + (165479, 161, 21), + (165479, 165, 21), + (165479, 151, 14), + (165480, 136, 35), + (165480, 156, 49), + (165480, 162, 14), + (165480, 20, 14), + (165481, 221, 112), + (165481, 144, 14), + (165481, 165, 21), + (165481, 19, 14), + (165482, 156, 28), + (165482, 20, 14), + (165482, 154, 42), + (165482, 150, 14), + (165483, 18, 14), + (165483, 123, 14), + (165483, 153, 42), + (165483, 1, 112), + (165484, 1, 112), + (165484, 156, 35), + (165484, 20, 14), + (165484, 150, 14), + (165485, 221, 112), + (165485, 133, 14), + (165485, 18, 14), + (165485, 159, 21), + (165486, 102, 14), + (165486, 20, 14), + (165486, 156, 42), + (165486, 1, 112), + (168414, 136, 4), + (168414, 16, 2), + (168414, 18, 2), + (168415, 136, 8), + (168415, 16, 2), + (168415, 17, 4), + (168415, 18, 2), + (168416, 136, 12), + (168416, 16, 4), + (168416, 17, 4), + (168416, 18, 4), + (168416, 20, 4), + (168417, 136, 12), + (168417, 156, 20), + (168417, 16, 4), + (168417, 17, 4), + (168417, 18, 4), + (168417, 19, 4), + (168417, 20, 4), + (168417, 21, 4), + (168418, 1, 60), + (168418, 136, 12), + (168418, 156, 20), + (168418, 16, 4), + (168418, 17, 4), + (168418, 18, 4), + (168418, 19, 4), + (168418, 20, 4), + (168418, 21, 4), + (168418, 221, 60), + (168418, 90, 60), + (168418, 91, 60), + (168418, 92, 60), + (168418, 94, 60), + (168438, 168, 2), + (168438, 1, 70), + (168438, 221, 220), + (168439, 168, 2), + (168439, 1, 70), + (168439, 221, 220), + (168440, 168, 2), + (168440, 1, 70), + (168440, 221, 220), + (168441, 168, 2), + (168441, 1, 70), + (168441, 221, 220), + (168442, 168, 2), + (168442, 1, 70), + (168442, 221, 220), + (168443, 168, 4), + (168443, 1, 100), + (168443, 221, 330), + (168444, 168, 4), + (168444, 1, 100), + (168444, 221, 330), + (168445, 168, 4), + (168445, 1, 100), + (168445, 221, 330), + (168446, 168, 4), + (168446, 1, 100), + (168446, 221, 330), + (168447, 168, 6), + (168447, 1, 120), + (168447, 221, 520), + (168448, 168, 6), + (168448, 1, 120), + (168448, 221, 520), + (168449, 168, 6), + (168449, 1, 120), + (168449, 221, 520), + (168450, 168, 10), + (168450, 1, 140), + (168450, 221, 715), + (168451, 168, 10), + (168451, 1, 140), + (168451, 221, 715), + (168452, 168, 20), + (168452, 1, 190), + (168452, 221, 935), + (168453, 168, 2), + (168453, 1, 70), + (168453, 221, 220), + (168454, 168, 2), + (168454, 1, 70), + (168454, 221, 220), + (168455, 168, 2), + (168455, 1, 70), + (168455, 221, 220), + (168456, 168, 2), + (168456, 1, 70), + (168456, 221, 220), + (168457, 168, 2), + (168457, 1, 70), + (168457, 221, 220), + (168458, 168, 4), + (168458, 1, 100), + (168458, 221, 330), + (168459, 168, 4), + (168459, 1, 100), + (168459, 221, 330), + (168460, 168, 4), + (168460, 1, 100), + (168460, 221, 330), + (168461, 168, 4), + (168461, 1, 100), + (168461, 221, 330), + (168462, 168, 6), + (168462, 1, 120), + (168462, 221, 520), + (168463, 168, 6), + (168463, 1, 120), + (168463, 221, 520), + (168464, 168, 6), + (168464, 1, 120), + (168464, 221, 520), + (168465, 168, 10), + (168465, 1, 140), + (168465, 221, 715), + (168466, 168, 10), + (168466, 1, 140), + (168466, 221, 715), + (168467, 168, 20), + (168467, 1, 190), + (168467, 221, 935), + (168479, 1, 70), + (168479, 279, 21), + (168480, 1, 70), + (168480, 279, 21), + (168481, 1, 70), + (168481, 279, 21), + (168482, 1, 70), + (168482, 279, 21), + (168483, 1, 70), + (168483, 279, 21), + (168484, 1, 100), + (168484, 279, 38), + (168485, 1, 100), + (168485, 279, 38), + (168486, 1, 100), + (168486, 279, 38), + (168487, 1, 100), + (168487, 279, 38), + (168488, 1, 120), + (168488, 279, 53), + (168489, 1, 120), + (168489, 279, 53), + (168490, 1, 120), + (168490, 279, 53), + (168491, 1, 140), + (168491, 279, 82), + (168492, 1, 140), + (168492, 279, 82), + (168493, 476, 10), + (168493, 206, 1), + (168493, 1, 190), + (168493, 279, 115), + (168494, 1, 70), + (168494, 279, 21), + (168495, 1, 70), + (168495, 279, 21), + (168496, 1, 70), + (168496, 279, 21), + (168497, 1, 70), + (168497, 279, 21), + (168498, 1, 70), + (168498, 279, 21), + (168499, 1, 100), + (168499, 279, 38), + (168500, 1, 100), + (168500, 279, 38), + (168501, 1, 100), + (168501, 279, 38), + (168502, 1, 100), + (168502, 279, 38), + (168503, 1, 120), + (168503, 279, 53), + (168504, 1, 120), + (168504, 279, 53), + (168505, 1, 120), + (168505, 279, 53), + (168506, 1, 140), + (168506, 279, 82), + (168507, 1, 140), + (168507, 279, 82), + (168508, 476, 10), + (168508, 206, 1), + (168508, 1, 190), + (168508, 279, 115), + (168519, 1, 70), + (168519, 280, 21), + (168520, 1, 70), + (168520, 280, 21), + (168521, 1, 70), + (168521, 280, 21), + (168522, 1, 70), + (168522, 280, 21), + (168523, 1, 70), + (168523, 280, 21), + (168524, 1, 100), + (168524, 280, 38), + (168525, 1, 100), + (168525, 280, 38), + (168526, 1, 100), + (168526, 280, 38), + (168527, 1, 100), + (168527, 280, 38), + (168528, 1, 120), + (168528, 280, 53), + (168529, 1, 120), + (168529, 280, 53), + (168530, 1, 120), + (168530, 280, 53), + (168531, 1, 140), + (168531, 280, 82), + (168532, 1, 140), + (168532, 280, 82), + (168533, 477, 10), + (168533, 207, 1), + (168533, 1, 190), + (168533, 280, 115), + (168534, 1, 70), + (168534, 280, 21), + (168535, 1, 70), + (168535, 280, 21), + (168536, 1, 70), + (168536, 280, 21), + (168537, 1, 70), + (168537, 280, 21), + (168538, 1, 70), + (168538, 280, 21), + (168539, 1, 100), + (168539, 280, 38), + (168540, 1, 100), + (168540, 280, 38), + (168541, 1, 100), + (168541, 280, 38), + (168542, 1, 100), + (168542, 280, 38), + (168543, 1, 120), + (168543, 280, 53), + (168544, 1, 120), + (168544, 280, 53), + (168545, 1, 120), + (168545, 280, 53), + (168546, 1, 140), + (168546, 280, 82), + (168547, 1, 140), + (168547, 280, 82), + (168548, 477, 10), + (168548, 207, 1), + (168548, 1, 190), + (168548, 280, 115), + (168559, 1, 70), + (168559, 316, 21), + (168561, 1, 70), + (168561, 316, 21), + (168562, 1, 70), + (168562, 316, 21), + (168563, 1, 70), + (168563, 316, 21), + (168564, 1, 100), + (168564, 316, 38), + (168565, 1, 100), + (168565, 316, 38), + (168566, 1, 100), + (168566, 316, 38), + (168567, 1, 100), + (168567, 316, 38), + (168568, 1, 120), + (168568, 316, 53), + (168569, 1, 120), + (168569, 316, 53), + (168570, 1, 120), + (168570, 316, 53), + (168571, 1, 140), + (168571, 316, 82), + (168572, 1, 140), + (168572, 316, 82), + (168573, 482, 10), + (168573, 219, 1), + (168573, 1, 190), + (168573, 316, 115), + (168574, 1, 70), + (168574, 316, 21), + (168575, 1, 70), + (168575, 316, 21), + (168576, 1, 70), + (168576, 316, 21), + (168577, 1, 70), + (168577, 316, 21), + (168578, 1, 70), + (168578, 316, 21), + (168579, 1, 100), + (168579, 316, 38), + (168580, 1, 100), + (168580, 316, 38), + (168581, 1, 100), + (168581, 316, 38), + (168582, 1, 100), + (168582, 316, 38), + (168583, 1, 120), + (168583, 316, 53), + (168584, 1, 120), + (168584, 316, 53), + (168585, 1, 120), + (168585, 316, 53), + (168586, 1, 140), + (168586, 316, 82), + (168587, 1, 140), + (168587, 316, 82), + (168588, 482, 10), + (168588, 219, 1), + (168588, 1, 190), + (168588, 316, 115), + (168626, 1, 70), + (168626, 311, 21), + (168627, 1, 70), + (168627, 311, 21), + (168628, 1, 70), + (168628, 311, 21), + (168629, 1, 70), + (168629, 311, 21), + (168630, 1, 70), + (168630, 311, 21), + (168631, 1, 100), + (168631, 311, 38), + (168632, 1, 100), + (168632, 311, 38), + (168633, 1, 100), + (168633, 311, 38), + (168634, 1, 100), + (168634, 311, 38), + (168635, 1, 120), + (168635, 311, 53), + (168636, 1, 120), + (168636, 311, 53), + (168637, 1, 120), + (168637, 311, 53), + (168638, 1, 140), + (168638, 311, 82), + (168639, 1, 140), + (168639, 311, 82), + (168640, 480, 10), + (168640, 217, 1), + (168640, 1, 190), + (168640, 311, 115), + (168641, 1, 70), + (168641, 311, 21), + (168642, 1, 70), + (168642, 311, 21), + (168643, 1, 70), + (168643, 311, 21), + (168644, 1, 70), + (168644, 311, 21), + (168645, 1, 70), + (168645, 311, 21), + (168646, 1, 100), + (168646, 311, 38), + (168647, 1, 100), + (168647, 311, 38), + (168648, 1, 100), + (168648, 311, 38), + (168649, 1, 100), + (168649, 311, 38), + (168650, 1, 120), + (168650, 311, 53), + (168651, 1, 120), + (168651, 311, 53), + (168652, 1, 120), + (168652, 311, 53), + (168653, 1, 140), + (168653, 311, 82), + (168654, 1, 140), + (168654, 311, 82), + (168655, 480, 10), + (168655, 217, 1), + (168655, 1, 190), + (168655, 311, 115), + (168658, 181, 5), + (168658, 92, 30), + (168660, 1, 20000), + (168662, 276, 600), + (168662, 279, 300), + (168662, 280, 300), + (168662, 278, 300), + (168662, 316, 300), + (168662, 311, 300), + (168662, 317, 300), + (168662, 281, 300), + (168662, 282, 300), + (168662, 360, 25), + (168664, 279, 200), + (168664, 280, 200), + (168664, 278, 200), + (168664, 316, 200), + (168664, 311, 200), + (168664, 282, 200), + (168664, 317, 200), + (168664, 281, 200), + (168670, 17, 8), + (168670, 93, 760), + (168670, 95, 630), + (168670, 154, 40), + (168670, 153, 20), + (168670, 92, 630), + (168670, 155, 20), + (168670, 97, 760), + (168670, 1, 60), + (168670, 91, 630), + (168670, 96, 630), + (168670, 90, 630), + (168670, 94, 630), + (168670, 156, 20), + (168671, 93, 320), + (168671, 118, 16), + (168671, 95, 260), + (168671, 119, 16), + (168671, 92, 260), + (168671, 97, 320), + (168671, 221, 60), + (168671, 91, 260), + (168671, 149, 32), + (168671, 120, 16), + (168671, 96, 260), + (168671, 90, 260), + (168671, 94, 260), + (168671, 16, 4), + (168672, 128, 4), + (168672, 93, 1250), + (168672, 95, 1050), + (168672, 92, 1050), + (168672, 97, 1250), + (168672, 123, 20), + (168672, 1, 80), + (168672, 130, 4), + (168672, 131, 4), + (168672, 127, 4), + (168672, 221, 180), + (168672, 91, 1050), + (168672, 96, 1050), + (168672, 90, 1050), + (168672, 129, 4), + (168672, 94, 1050), + (168672, 122, 4), + (168672, 18, 8), + (168672, 124, 20), + (168675, 136, 12), + (168675, 20, 6), + (168675, 122, 4), + (168676, 91, 35), + (168676, 90, 35), + (168676, 16, 4), + (168676, 96, 25), + (168676, 94, 20), + (168676, 93, 40), + (168676, 97, 25), + (168676, 95, 25), + (168676, 92, 20), + (168677, 90, 80), + (168677, 91, 80), + (168677, 18, 5), + (168677, 96, 65), + (168677, 94, 35), + (168677, 93, 80), + (168677, 97, 65), + (168677, 95, 65), + (168677, 92, 35), + (168678, 19, 3), + (168678, 221, 9), + (168678, 93, 50), + (168678, 95, 80), + (168678, 92, 120), + (168678, 97, 80), + (168678, 91, 110), + (168678, 96, 50), + (168678, 90, 110), + (168678, 94, 120), + (168684, 219, 99), + (168684, 482, 500), + (168684, 206, 20), + (168684, 207, 20), + (168684, 205, 20), + (168684, 217, 20), + (168684, 208, 20), + (168684, 216, 20), + (168684, 225, 20), + (168684, 227, 180), + (168684, 228, 180), + (168684, 226, 180), + (168684, 231, 180), + (168684, 233, 180), + (168684, 230, 180), + (168684, 229, 180), + (168684, 234, 180), + (168686, 379, 100), + (168686, 277, 600), + (168690, 277, 2000), + (168692, 379, 10), + (168692, 279, 280), + (168692, 280, 280), + (168692, 278, 280), + (168692, 316, 280), + (168692, 311, 280), + (168692, 282, 280), + (168692, 281, 280), + (168692, 317, 280), + (168696, 206, 75), + (168696, 207, 75), + (168696, 205, 75), + (168696, 219, 75), + (168696, 217, 75), + (168696, 208, 75), + (168696, 225, 75), + (168696, 216, 75), + (168696, 476, 200), + (168696, 477, 200), + (168696, 475, 200), + (168696, 482, 200), + (168696, 480, 200), + (168696, 478, 200), + (168696, 483, 200), + (168696, 479, 200), + (168723, 1, 70), + (168723, 278, 21), + (168724, 1, 70), + (168724, 278, 21), + (168725, 1, 70), + (168725, 278, 21), + (168726, 1, 70), + (168726, 278, 21), + (168727, 1, 70), + (168727, 278, 21), + (168728, 1, 100), + (168728, 278, 38), + (168729, 1, 100), + (168729, 278, 38), + (168730, 1, 100), + (168730, 278, 38), + (168731, 1, 100), + (168731, 278, 38), + (168732, 1, 120), + (168732, 278, 53), + (168733, 1, 120), + (168733, 278, 53), + (168734, 1, 120), + (168734, 278, 53), + (168735, 1, 140), + (168735, 278, 82), + (168736, 1, 140), + (168736, 278, 82), + (168737, 475, 10), + (168737, 205, 1), + (168737, 1, 190), + (168737, 278, 115), + (168738, 1, 70), + (168738, 278, 21), + (168739, 1, 70), + (168739, 278, 21), + (168740, 1, 70), + (168740, 278, 21), + (168741, 1, 70), + (168741, 278, 21), + (168742, 1, 70), + (168742, 278, 21), + (168743, 1, 100), + (168743, 278, 38), + (168744, 1, 100), + (168744, 278, 38), + (168745, 1, 100), + (168745, 278, 38), + (168746, 1, 100), + (168746, 278, 38), + (168747, 1, 120), + (168747, 278, 53), + (168748, 1, 120), + (168748, 278, 53), + (168749, 1, 120), + (168749, 278, 53), + (168750, 1, 140), + (168750, 278, 82), + (168751, 1, 140), + (168751, 278, 82), + (168752, 475, 10), + (168752, 205, 1), + (168752, 1, 190), + (168752, 278, 115), + (168763, 1, 70), + (168763, 282, 21), + (168764, 1, 70), + (168764, 282, 21), + (168765, 1, 70), + (168765, 282, 21), + (168766, 1, 70), + (168766, 282, 21), + (168767, 1, 70), + (168767, 282, 21), + (168768, 1, 100), + (168768, 282, 38), + (168769, 1, 100), + (168769, 282, 38), + (168770, 1, 100), + (168770, 282, 38), + (168771, 1, 100), + (168771, 282, 38), + (168772, 1, 120), + (168772, 282, 53), + (168773, 1, 120), + (168773, 282, 53), + (168774, 1, 120), + (168774, 282, 53), + (168775, 1, 140), + (168775, 282, 82), + (168776, 1, 140), + (168776, 282, 82), + (168777, 479, 10), + (168777, 216, 1), + (168777, 1, 190), + (168777, 282, 115), + (168778, 1, 70), + (168778, 282, 21), + (168779, 1, 70), + (168779, 282, 21), + (168780, 1, 70), + (168780, 282, 21), + (168781, 1, 70), + (168781, 282, 21), + (168782, 1, 70), + (168782, 282, 21), + (168783, 1, 100), + (168783, 282, 38), + (168784, 1, 100), + (168784, 282, 38), + (168785, 1, 100), + (168785, 282, 38), + (168786, 1, 100), + (168786, 282, 38), + (168787, 1, 120), + (168787, 282, 53), + (168788, 1, 120), + (168788, 282, 53), + (168789, 1, 120), + (168789, 282, 53), + (168790, 1, 140), + (168790, 282, 82), + (168791, 1, 140), + (168791, 282, 82), + (168792, 479, 10), + (168792, 216, 1), + (168792, 1, 190), + (168792, 282, 115), + (168803, 1, 70), + (168803, 281, 21), + (168804, 1, 70), + (168804, 281, 21), + (168805, 1, 70), + (168805, 281, 21), + (168806, 1, 70), + (168806, 281, 21), + (168807, 1, 70), + (168807, 281, 21), + (168808, 1, 100), + (168808, 281, 38), + (168809, 1, 100), + (168809, 281, 38), + (168810, 1, 100), + (168810, 281, 38), + (168811, 1, 100), + (168811, 281, 38), + (168812, 1, 120), + (168812, 281, 53), + (168813, 1, 120), + (168813, 281, 53), + (168814, 1, 120), + (168814, 281, 53), + (168815, 1, 140), + (168815, 281, 82), + (168816, 1, 140), + (168816, 281, 82), + (168817, 478, 10), + (168817, 208, 1), + (168817, 1, 190), + (168817, 281, 115), + (168818, 1, 70), + (168818, 281, 21), + (168819, 1, 70), + (168819, 281, 21), + (168820, 1, 70), + (168820, 281, 21), + (168821, 1, 70), + (168821, 281, 21), + (168822, 1, 70), + (168822, 281, 21), + (168823, 1, 100), + (168823, 281, 38), + (168824, 1, 100), + (168824, 281, 38), + (168825, 1, 100), + (168825, 281, 38), + (168826, 1, 100), + (168826, 281, 38), + (168827, 1, 120), + (168827, 281, 53), + (168828, 1, 120), + (168828, 281, 53), + (168829, 1, 120), + (168829, 281, 53), + (168830, 1, 140), + (168830, 281, 82), + (168831, 1, 140), + (168831, 281, 82), + (168832, 478, 10), + (168832, 208, 1), + (168832, 1, 190), + (168832, 281, 115), + (168833, 181, 2), + (168833, 92, 1), + (168833, 19, 1), + (168833, 221, 1), + (168833, 94, 1), + (168834, 181, 4), + (168834, 92, 4), + (168834, 19, 1), + (168834, 221, 2), + (168834, 94, 2), + (168835, 181, 8), + (168835, 92, 8), + (168835, 19, 1), + (168835, 221, 4), + (168835, 94, 4), + (168836, 181, 16), + (168836, 92, 10), + (168836, 19, 1), + (168836, 221, 5), + (168836, 94, 5), + (168837, 181, 32), + (168837, 92, 24), + (168837, 19, 1), + (168837, 221, 12), + (168837, 94, 12), + (168838, 181, 64), + (168838, 92, 40), + (168838, 19, 2), + (168838, 221, 20), + (168838, 94, 20), + (168849, 1, 70), + (168849, 317, 21), + (168850, 1, 70), + (168850, 317, 21), + (168851, 1, 70), + (168851, 317, 21), + (168852, 1, 70), + (168852, 317, 21), + (168853, 1, 70), + (168853, 317, 21), + (168854, 1, 100), + (168854, 317, 38), + (168855, 1, 100), + (168855, 317, 38), + (168856, 1, 100), + (168856, 317, 38), + (168857, 1, 100), + (168857, 317, 38), + (168858, 1, 120), + (168858, 317, 53), + (168859, 1, 120), + (168859, 317, 53), + (168860, 1, 120), + (168860, 317, 53), + (168861, 1, 140), + (168861, 317, 82), + (168862, 1, 140), + (168862, 317, 82), + (168863, 483, 10), + (168863, 225, 1), + (168863, 1, 190), + (168863, 317, 115), + (168864, 1, 70), + (168864, 317, 21), + (168865, 1, 70), + (168865, 317, 21), + (168866, 1, 70), + (168866, 317, 21), + (168867, 1, 70), + (168867, 317, 21), + (168868, 1, 70), + (168868, 317, 21), + (168869, 1, 100), + (168869, 317, 38), + (168870, 1, 100), + (168870, 317, 38), + (168871, 1, 100), + (168871, 317, 38), + (168872, 1, 100), + (168872, 317, 38), + (168873, 1, 120), + (168873, 317, 53), + (168874, 1, 120), + (168874, 317, 53), + (168875, 1, 120), + (168875, 317, 53), + (168876, 1, 140), + (168876, 317, 82), + (168877, 1, 140), + (168877, 317, 82), + (168878, 483, 10), + (168878, 225, 1), + (168878, 1, 190), + (168878, 317, 115), + (168879, 95, 40), + (168879, 97, 40), + (168879, 94, 20), + (168879, 92, 20), + (168879, 96, 30), + (168879, 93, 30), + (168879, 90, 40), + (168879, 91, 40), + (168880, 20, 3), + (168880, 164, 9), + (168880, 136, 9), + (168880, 155, 12), + (168880, 153, 12), + (168880, 154, 30), + (168880, 95, 40), + (168880, 97, 40), + (168880, 94, 20), + (168880, 92, 20), + (168880, 96, 30), + (168880, 93, 30), + (168880, 90, 40), + (168880, 91, 40), + (168881, 90, 40), + (168881, 91, 40), + (168881, 92, 20), + (168881, 93, 30), + (168881, 94, 20), + (168881, 95, 40), + (168881, 96, 30), + (168881, 97, 40), + (168881, 152, 6), + (168881, 142, 3), + (168881, 1, 36), + (168881, 16, 6), + (168881, 110, 3), + (168882, 161, 6), + (168882, 160, 9), + (168882, 132, 6), + (168882, 19, 3), + (168882, 149, 18), + (168882, 221, 36), + (168882, 95, 40), + (168882, 97, 40), + (168882, 94, 20), + (168882, 92, 20), + (168882, 96, 30), + (168882, 93, 30), + (168882, 90, 40), + (168882, 91, 40), + (168890, 379, 35), + (168890, 279, 190), + (168890, 280, 190), + (168890, 278, 190), + (168890, 316, 190), + (168890, 311, 190), + (168890, 281, 190), + (168890, 317, 190), + (168890, 282, 190), + (168892, 145, 900), + (168892, 277, 2100), + (168892, 168, 900), + (168927, 96, 450), + (168927, 93, 450), + (168927, 95, 450), + (168927, 97, 450), + (168927, 94, 900), + (168927, 92, 900), + (168927, 90, 900), + (168927, 91, 900), + (168927, 1, 20), + (168927, 221, 40), + (168928, 1, 40), + (168928, 221, 80), + (168928, 96, 400), + (168928, 93, 400), + (168928, 95, 400), + (168928, 97, 400), + (168928, 94, 800), + (168928, 92, 800), + (168928, 90, 800), + (168928, 91, 800), + (168929, 1, 60), + (168929, 221, 120), + (168929, 96, 350), + (168929, 93, 350), + (168929, 95, 350), + (168929, 97, 350), + (168929, 94, 700), + (168929, 92, 700), + (168929, 90, 700), + (168929, 91, 700), + (168930, 1, 80), + (168930, 221, 160), + (168930, 96, 300), + (168930, 93, 300), + (168930, 95, 300), + (168930, 97, 300), + (168930, 94, 600), + (168930, 92, 600), + (168930, 90, 600), + (168930, 91, 600), + (168931, 131, 2), + (168931, 119, 25), + (168931, 153, 10), + (168931, 155, 10), + (168931, 154, 10), + (168931, 96, 100), + (168931, 95, 100), + (168931, 97, 100), + (168931, 93, 100), + (168931, 94, 100), + (168931, 92, 100), + (168931, 90, 100), + (168931, 91, 100), + (168932, 93, 350), + (168932, 95, 450), + (168932, 119, 40), + (168932, 92, 900), + (168932, 97, 450), + (168932, 19, 4), + (168932, 91, 300), + (168932, 136, 12), + (168932, 96, 350), + (168932, 90, 300), + (168932, 21, 4), + (168932, 94, 900), + (168932, 20, 4), + (168941, 93, 3), + (168941, 95, 3), + (168941, 161, 1), + (168941, 92, 3), + (168941, 97, 3), + (168941, 19, 1), + (168941, 1, 1), + (168941, 221, 1), + (168941, 91, 3), + (168941, 149, 1), + (168941, 96, 1), + (168941, 90, 3), + (168941, 94, 3), + (168942, 93, 656), + (168942, 95, 562), + (168942, 161, 3), + (168942, 92, 750), + (168942, 97, 562), + (168942, 19, 3), + (168942, 1, 21), + (168942, 221, 21), + (168942, 91, 750), + (168942, 149, 18), + (168942, 96, 187), + (168942, 90, 750), + (168942, 94, 750), + (168943, 120, 1), + (168943, 155, 1), + (168943, 164, 1), + (168943, 156, 1), + (168943, 96, 1), + (168943, 95, 1), + (168943, 97, 1), + (168943, 94, 1), + (168943, 93, 1), + (168943, 91, 1), + (168943, 92, 1), + (168943, 90, 1), + (168944, 120, 18), + (168944, 155, 12), + (168944, 164, 6), + (168944, 156, 42), + (168944, 96, 93), + (168944, 95, 281), + (168944, 97, 281), + (168944, 94, 375), + (168944, 93, 328), + (168944, 91, 375), + (168944, 92, 375), + (168944, 90, 375), + (168945, 123, 1), + (168945, 20, 1), + (168945, 135, 1), + (168945, 165, 1), + (168945, 96, 1), + (168945, 95, 1), + (168945, 97, 1), + (168945, 94, 1), + (168945, 93, 1), + (168945, 91, 1), + (168945, 92, 1), + (168945, 90, 1), + (168946, 123, 15), + (168946, 20, 3), + (168946, 135, 12), + (168946, 165, 12), + (168946, 96, 62), + (168946, 95, 187), + (168946, 97, 187), + (168946, 94, 250), + (168946, 93, 218), + (168946, 91, 250), + (168946, 92, 250), + (168946, 90, 250), + (168947, 93, 1), + (168947, 118, 1), + (168947, 95, 1), + (168947, 119, 1), + (168947, 92, 1), + (168947, 97, 1), + (168947, 91, 1), + (168947, 96, 1), + (168947, 90, 1), + (168947, 94, 1), + (168947, 16, 1), + (168948, 93, 218), + (168948, 118, 12), + (168948, 95, 187), + (168948, 119, 12), + (168948, 92, 250), + (168948, 97, 187), + (168948, 91, 250), + (168948, 96, 62), + (168948, 90, 250), + (168948, 94, 250), + (168948, 16, 2), + (168949, 146, 1), + (168949, 153, 1), + (168949, 154, 1), + (168949, 17, 1), + (168949, 96, 1), + (168949, 95, 3), + (168949, 97, 3), + (168949, 94, 3), + (168949, 90, 3), + (168949, 92, 3), + (168949, 91, 3), + (168949, 93, 3), + (168950, 146, 12), + (168950, 153, 15), + (168950, 154, 15), + (168950, 17, 3), + (168950, 96, 156), + (168950, 95, 468), + (168950, 97, 262), + (168950, 94, 625), + (168950, 90, 625), + (168950, 92, 625), + (168950, 91, 625), + (168950, 93, 546), + (168951, 116, 1), + (168951, 115, 1), + (168951, 1, 1), + (168951, 18, 1), + (168951, 96, 1), + (168951, 95, 5), + (168951, 97, 5), + (168951, 91, 5), + (168951, 92, 5), + (168951, 93, 5), + (168951, 94, 5), + (168951, 90, 5), + (168952, 116, 3), + (168952, 115, 3), + (168952, 1, 42), + (168952, 18, 3), + (168952, 96, 250), + (168952, 95, 750), + (168952, 97, 750), + (168952, 91, 1000), + (168952, 92, 1000), + (168952, 93, 875), + (168952, 94, 1000), + (168952, 90, 1000), + (168953, 93, 5), + (168953, 95, 5), + (168953, 92, 5), + (168953, 97, 5), + (168953, 221, 1), + (168953, 91, 5), + (168953, 112, 1), + (168953, 96, 1), + (168953, 90, 5), + (168953, 21, 1), + (168953, 94, 5), + (168953, 114, 1), + (168954, 93, 875), + (168954, 95, 750), + (168954, 92, 1000), + (168954, 97, 750), + (168954, 221, 42), + (168954, 91, 1000), + (168954, 112, 3), + (168954, 96, 250), + (168954, 90, 1000), + (168954, 21, 3), + (168954, 94, 1000), + (168954, 114, 3), + (199378, 96, 76), + (199378, 93, 76), + (199378, 95, 287), + (199378, 94, 239), + (199378, 97, 287), + (199378, 91, 382), + (199378, 92, 335), + (199378, 90, 382), + (199379, 96, 78), + (199379, 93, 78), + (199379, 95, 292), + (199379, 94, 243), + (199379, 97, 292), + (199379, 91, 390), + (199379, 92, 341), + (199379, 90, 390), + (199380, 92, 354), + (199380, 90, 405), + (199380, 96, 81), + (199380, 93, 81), + (199380, 95, 303), + (199380, 94, 253), + (199380, 97, 303), + (199380, 91, 405), + (199381, 96, 83), + (199381, 93, 83), + (199381, 95, 309), + (199381, 94, 257), + (199381, 97, 309), + (199381, 91, 413), + (199381, 92, 361), + (199381, 90, 413), + (199382, 96, 84), + (199382, 93, 84), + (199382, 95, 315), + (199382, 94, 262), + (199382, 97, 315), + (199382, 91, 420), + (199382, 92, 367), + (199382, 90, 420), + (199383, 96, 86), + (199383, 93, 86), + (199383, 95, 323), + (199383, 94, 269), + (199383, 97, 323), + (199383, 91, 431), + (199383, 92, 377), + (199383, 90, 431), + (199384, 96, 90), + (199384, 93, 90), + (199384, 95, 337), + (199384, 94, 281), + (199384, 97, 337), + (199384, 91, 450), + (199384, 92, 394), + (199384, 90, 450), + (199385, 96, 94), + (199385, 93, 94), + (199385, 95, 351), + (199385, 94, 292), + (199385, 97, 351), + (199385, 91, 469), + (199385, 92, 410), + (199385, 90, 469), + (199386, 96, 97), + (199386, 93, 97), + (199386, 95, 365), + (199386, 94, 304), + (199386, 97, 365), + (199386, 91, 487), + (199386, 92, 426), + (199386, 90, 487), + (199387, 96, 101), + (199387, 93, 101), + (199387, 95, 379), + (199387, 94, 316), + (199387, 97, 379), + (199387, 91, 506), + (199387, 92, 443), + (199387, 90, 506), + (199388, 96, 105), + (199388, 93, 105), + (199388, 95, 393), + (199388, 94, 328), + (199388, 97, 393), + (199388, 91, 525), + (199388, 92, 459), + (199388, 90, 525), + (199389, 96, 109), + (199389, 93, 109), + (199389, 95, 407), + (199389, 94, 339), + (199389, 97, 407), + (199389, 91, 544), + (199389, 92, 476), + (199389, 90, 544), + (199390, 96, 112), + (199390, 93, 112), + (199390, 95, 422), + (199390, 94, 351), + (199390, 97, 422), + (199390, 91, 562), + (199390, 92, 492), + (199390, 90, 562), + (199391, 96, 116), + (199391, 93, 116), + (199391, 95, 436), + (199391, 94, 363), + (199391, 97, 436), + (199391, 91, 581), + (199391, 92, 508), + (199391, 90, 581), + (199392, 96, 119), + (199392, 93, 119), + (199392, 95, 444), + (199392, 94, 370), + (199392, 97, 444), + (199392, 91, 593), + (199392, 92, 518), + (199392, 90, 593), + (199393, 96, 120), + (199393, 93, 120), + (199393, 95, 450), + (199393, 94, 374), + (199393, 97, 450), + (199393, 91, 600), + (199393, 92, 525), + (199393, 90, 600), + (199394, 96, 122), + (199394, 93, 122), + (199394, 95, 458), + (199394, 94, 381), + (199394, 97, 458), + (199394, 91, 611), + (199394, 92, 535), + (199394, 90, 611), + (199395, 96, 124), + (199395, 93, 124), + (199395, 95, 464), + (199395, 94, 386), + (199395, 97, 464), + (199395, 91, 619), + (199395, 92, 541), + (199395, 90, 619), + (199396, 96, 128), + (199396, 93, 128), + (199396, 95, 478), + (199396, 94, 398), + (199396, 97, 478), + (199396, 91, 638), + (199396, 92, 558), + (199396, 90, 638), + (199397, 96, 131), + (199397, 93, 131), + (199397, 95, 492), + (199397, 94, 410), + (199397, 97, 492), + (199397, 91, 656), + (199397, 92, 574), + (199397, 90, 656), + (199398, 93, 135), + (199398, 95, 506), + (199398, 92, 590), + (199398, 97, 506), + (199398, 91, 675), + (199398, 96, 135), + (199398, 90, 675), + (199398, 94, 421), + (199399, 96, 51), + (199399, 93, 51), + (199399, 95, 191), + (199399, 94, 159), + (199399, 91, 255), + (199399, 97, 191), + (199399, 92, 222), + (199399, 90, 255), + (199400, 96, 52), + (199400, 93, 52), + (199400, 95, 194), + (199400, 94, 162), + (199400, 91, 260), + (199400, 97, 194), + (199400, 92, 227), + (199400, 90, 260), + (199401, 96, 54), + (199401, 93, 54), + (199401, 95, 202), + (199401, 94, 168), + (199401, 91, 270), + (199401, 97, 202), + (199401, 92, 235), + (199401, 90, 270), + (199402, 96, 55), + (199402, 93, 55), + (199402, 95, 206), + (199402, 94, 172), + (199402, 91, 275), + (199402, 97, 206), + (199402, 92, 240), + (199402, 90, 275), + (199403, 96, 56), + (199403, 93, 56), + (199403, 95, 209), + (199403, 94, 175), + (199403, 91, 280), + (199403, 97, 209), + (199403, 92, 244), + (199403, 90, 280), + (199404, 96, 57), + (199404, 93, 57), + (199404, 95, 215), + (199404, 94, 179), + (199404, 91, 287), + (199404, 97, 215), + (199404, 92, 251), + (199404, 90, 287), + (199405, 96, 60), + (199405, 93, 60), + (199405, 95, 224), + (199405, 94, 187), + (199405, 91, 300), + (199405, 97, 224), + (199405, 92, 262), + (199405, 90, 300), + (199406, 96, 62), + (199406, 93, 62), + (199406, 95, 234), + (199406, 94, 195), + (199406, 91, 312), + (199406, 97, 234), + (199406, 92, 272), + (199406, 90, 312), + (199407, 96, 65), + (199407, 93, 65), + (199407, 95, 243), + (199407, 94, 203), + (199407, 91, 325), + (199407, 97, 243), + (199407, 92, 283), + (199407, 90, 325), + (199408, 96, 68), + (199408, 93, 68), + (199408, 95, 252), + (199408, 94, 211), + (199408, 91, 338), + (199408, 97, 252), + (199408, 92, 294), + (199408, 90, 338), + (199409, 96, 70), + (199409, 93, 70), + (199409, 95, 262), + (199409, 94, 218), + (199409, 91, 350), + (199409, 97, 262), + (199409, 92, 305), + (199409, 90, 350), + (199410, 96, 73), + (199410, 93, 73), + (199410, 95, 271), + (199410, 94, 226), + (199410, 91, 363), + (199410, 97, 271), + (199410, 92, 316), + (199410, 90, 363), + (199411, 96, 75), + (199411, 93, 75), + (199411, 95, 280), + (199411, 94, 234), + (199411, 91, 375), + (199411, 97, 280), + (199411, 92, 327), + (199411, 90, 375), + (199412, 96, 77), + (199412, 93, 77), + (199412, 95, 290), + (199412, 94, 242), + (199412, 91, 387), + (199412, 97, 290), + (199412, 92, 338), + (199412, 90, 387), + (199413, 96, 79), + (199413, 93, 79), + (199413, 95, 295), + (199413, 94, 246), + (199413, 91, 395), + (199413, 97, 295), + (199413, 92, 344), + (199413, 90, 395), + (199414, 96, 80), + (199414, 93, 80), + (199414, 95, 299), + (199414, 94, 250), + (199414, 91, 400), + (199414, 97, 299), + (199414, 92, 349), + (199414, 90, 400), + (199415, 96, 81), + (199415, 93, 81), + (199415, 95, 305), + (199415, 94, 254), + (199415, 91, 407), + (199415, 97, 305), + (199415, 92, 355), + (199415, 90, 407), + (199416, 96, 82), + (199416, 93, 82), + (199416, 95, 309), + (199416, 94, 257), + (199416, 91, 412), + (199416, 97, 309), + (199416, 92, 360), + (199416, 90, 412), + (199417, 96, 85), + (199417, 93, 85), + (199417, 95, 318), + (199417, 94, 265), + (199417, 91, 425), + (199417, 97, 318), + (199417, 92, 371), + (199417, 90, 425), + (199418, 96, 88), + (199418, 93, 88), + (199418, 95, 327), + (199418, 94, 273), + (199418, 91, 438), + (199418, 97, 327), + (199418, 92, 382), + (199418, 90, 438), + (199419, 93, 90), + (199419, 95, 337), + (199419, 92, 392), + (199419, 97, 337), + (199419, 91, 450), + (199419, 96, 90), + (199419, 90, 450), + (199419, 94, 281), + (199420, 93, 153), + (199420, 95, 573), + (199420, 92, 669), + (199420, 97, 573), + (199420, 91, 765), + (199420, 96, 153), + (199420, 90, 765), + (199420, 94, 477), + (199421, 93, 156), + (199421, 95, 584), + (199421, 92, 682), + (199421, 97, 584), + (199421, 91, 780), + (199421, 96, 156), + (199421, 90, 780), + (199421, 94, 487), + (199422, 93, 162), + (199422, 95, 607), + (199422, 92, 708), + (199422, 97, 607), + (199422, 91, 810), + (199422, 96, 162), + (199422, 90, 810), + (199422, 94, 505), + (199423, 93, 165), + (199423, 95, 618), + (199423, 92, 722), + (199423, 97, 618), + (199423, 91, 825), + (199423, 96, 165), + (199423, 90, 825), + (199423, 94, 515), + (199424, 93, 168), + (199424, 95, 629), + (199424, 92, 735), + (199424, 97, 629), + (199424, 91, 840), + (199424, 96, 168), + (199424, 90, 840), + (199424, 94, 524), + (199425, 93, 172), + (199425, 95, 646), + (199425, 92, 754), + (199425, 97, 646), + (199425, 91, 862), + (199425, 96, 172), + (199425, 90, 862), + (199425, 94, 538), + (199426, 93, 180), + (199426, 95, 674), + (199426, 92, 787), + (199426, 97, 674), + (199426, 91, 900), + (199426, 96, 180), + (199426, 90, 900), + (199426, 94, 562), + (199427, 93, 188), + (199427, 95, 702), + (199427, 92, 820), + (199427, 97, 702), + (199427, 91, 938), + (199427, 96, 188), + (199427, 90, 938), + (199427, 94, 585), + (199428, 93, 195), + (199428, 95, 731), + (199428, 92, 853), + (199428, 97, 731), + (199428, 91, 975), + (199428, 96, 195), + (199428, 90, 975), + (199428, 94, 608), + (199429, 93, 203), + (199429, 95, 759), + (199429, 92, 886), + (199429, 97, 759), + (199429, 91, 1013), + (199429, 96, 203), + (199429, 90, 1013), + (199429, 94, 632), + (199430, 93, 210), + (199430, 95, 787), + (199430, 92, 918), + (199430, 97, 787), + (199430, 91, 1050), + (199430, 96, 210), + (199430, 90, 1050), + (199430, 94, 655), + (199431, 93, 218), + (199431, 95, 815), + (199431, 92, 951), + (199431, 97, 815), + (199431, 91, 1088), + (199431, 96, 218), + (199431, 90, 1088), + (199431, 94, 679), + (199432, 93, 225), + (199432, 95, 843), + (199432, 92, 984), + (199432, 97, 843), + (199432, 91, 1125), + (199432, 96, 225), + (199432, 90, 1125), + (199432, 94, 702), + (199433, 93, 232), + (199433, 95, 871), + (199433, 92, 1017), + (199433, 97, 871), + (199433, 91, 1162), + (199433, 96, 232), + (199433, 90, 1162), + (199433, 94, 725), + (199434, 93, 237), + (199434, 95, 888), + (199434, 92, 1036), + (199434, 97, 888), + (199434, 91, 1185), + (199434, 96, 237), + (199434, 90, 1185), + (199434, 94, 739), + (199435, 93, 240), + (199435, 95, 899), + (199435, 92, 1050), + (199435, 97, 899), + (199435, 91, 1200), + (199435, 96, 240), + (199435, 90, 1200), + (199435, 94, 749), + (199436, 93, 244), + (199436, 95, 916), + (199436, 92, 1069), + (199436, 97, 916), + (199436, 91, 1222), + (199436, 96, 244), + (199436, 90, 1222), + (199436, 94, 763), + (199437, 93, 247), + (199437, 95, 927), + (199437, 92, 1082), + (199437, 97, 927), + (199437, 91, 1237), + (199437, 96, 247), + (199437, 90, 1237), + (199437, 94, 772), + (199438, 93, 255), + (199438, 95, 955), + (199438, 92, 1115), + (199438, 97, 955), + (199438, 91, 1275), + (199438, 96, 255), + (199438, 90, 1275), + (199438, 94, 796), + (199439, 93, 262), + (199439, 95, 984), + (199439, 92, 1148), + (199439, 97, 984), + (199439, 91, 1312), + (199439, 96, 262), + (199439, 90, 1312), + (199439, 94, 819), + (199440, 93, 270), + (199440, 95, 1012), + (199440, 92, 1181), + (199440, 97, 1012), + (199440, 91, 1350), + (199440, 96, 270), + (199440, 90, 1350), + (199440, 94, 842), + (199441, 96, 127), + (199441, 93, 127), + (199441, 95, 477), + (199441, 94, 398), + (199441, 91, 637), + (199441, 90, 637), + (199441, 97, 477), + (199441, 92, 557), + (199442, 96, 130), + (199442, 93, 130), + (199442, 95, 487), + (199442, 94, 406), + (199442, 91, 650), + (199442, 90, 650), + (199442, 97, 487), + (199442, 92, 568), + (199443, 96, 135), + (199443, 93, 135), + (199443, 95, 505), + (199443, 94, 421), + (199443, 91, 675), + (199443, 90, 675), + (199443, 97, 505), + (199443, 92, 590), + (199444, 96, 138), + (199444, 93, 138), + (199444, 95, 515), + (199444, 94, 429), + (199444, 91, 688), + (199444, 90, 688), + (199444, 97, 515), + (199444, 92, 601), + (199445, 96, 140), + (199445, 93, 140), + (199445, 95, 524), + (199445, 94, 437), + (199445, 91, 700), + (199445, 90, 700), + (199445, 97, 524), + (199445, 92, 612), + (199446, 96, 144), + (199446, 93, 144), + (199446, 95, 538), + (199446, 94, 448), + (199446, 91, 719), + (199446, 90, 719), + (199446, 97, 538), + (199446, 92, 628), + (199447, 96, 150), + (199447, 93, 150), + (199447, 95, 562), + (199447, 94, 468), + (199447, 91, 750), + (199447, 90, 750), + (199447, 97, 562), + (199447, 92, 655), + (199448, 96, 156), + (199448, 93, 156), + (199448, 95, 585), + (199448, 94, 488), + (199448, 91, 781), + (199448, 90, 781), + (199448, 97, 585), + (199448, 92, 682), + (199449, 96, 162), + (199449, 93, 162), + (199449, 95, 608), + (199449, 94, 507), + (199449, 91, 812), + (199449, 90, 812), + (199449, 97, 608), + (199449, 92, 710), + (199450, 96, 169), + (199450, 93, 169), + (199450, 95, 632), + (199450, 94, 527), + (199450, 91, 844), + (199450, 90, 844), + (199450, 97, 632), + (199450, 92, 737), + (199451, 96, 175), + (199451, 93, 175), + (199451, 95, 655), + (199451, 94, 546), + (199451, 91, 875), + (199451, 90, 875), + (199451, 97, 655), + (199451, 92, 764), + (199452, 96, 181), + (199452, 93, 181), + (199452, 95, 679), + (199452, 94, 566), + (199452, 91, 906), + (199452, 90, 906), + (199452, 97, 679), + (199452, 92, 792), + (199453, 96, 188), + (199453, 93, 188), + (199453, 95, 702), + (199453, 94, 585), + (199453, 91, 938), + (199453, 90, 938), + (199453, 97, 702), + (199453, 92, 819), + (199454, 96, 194), + (199454, 93, 194), + (199454, 95, 725), + (199454, 94, 604), + (199454, 91, 969), + (199454, 90, 969), + (199454, 97, 725), + (199454, 92, 846), + (199455, 96, 198), + (199455, 93, 198), + (199455, 95, 739), + (199455, 94, 616), + (199455, 91, 988), + (199455, 90, 988), + (199455, 97, 739), + (199455, 92, 863), + (199456, 96, 200), + (199456, 93, 200), + (199456, 95, 749), + (199456, 94, 624), + (199456, 91, 1000), + (199456, 90, 1000), + (199456, 97, 749), + (199456, 92, 874), + (199457, 96, 204), + (199457, 93, 204), + (199457, 95, 763), + (199457, 94, 636), + (199457, 91, 1019), + (199457, 90, 1019), + (199457, 97, 763), + (199457, 92, 890), + (199458, 96, 206), + (199458, 93, 206), + (199458, 95, 772), + (199458, 94, 643), + (199458, 91, 1031), + (199458, 90, 1031), + (199458, 97, 772), + (199458, 92, 901), + (199459, 96, 213), + (199459, 93, 213), + (199459, 95, 796), + (199459, 94, 663), + (199459, 91, 1063), + (199459, 90, 1063), + (199459, 97, 796), + (199459, 92, 928), + (199460, 96, 219), + (199460, 93, 219), + (199460, 95, 819), + (199460, 94, 682), + (199460, 91, 1094), + (199460, 90, 1094), + (199460, 97, 819), + (199460, 92, 956), + (199461, 93, 225), + (199461, 95, 842), + (199461, 92, 983), + (199461, 97, 842), + (199461, 91, 1125), + (199461, 96, 225), + (199461, 90, 1125), + (199461, 94, 702), + (199462, 95, 191), + (199462, 96, 51), + (199462, 93, 51), + (199462, 94, 159), + (199462, 90, 255), + (199462, 92, 222), + (199462, 91, 255), + (199462, 97, 191), + (199463, 95, 194), + (199463, 96, 52), + (199463, 93, 52), + (199463, 94, 162), + (199463, 90, 260), + (199463, 92, 227), + (199463, 91, 260), + (199463, 97, 194), + (199464, 95, 202), + (199464, 96, 54), + (199464, 93, 54), + (199464, 94, 168), + (199464, 90, 270), + (199464, 92, 235), + (199464, 91, 270), + (199464, 97, 202), + (199465, 95, 206), + (199465, 96, 55), + (199465, 93, 55), + (199465, 94, 172), + (199465, 90, 275), + (199465, 92, 240), + (199465, 91, 275), + (199465, 97, 206), + (199466, 95, 209), + (199466, 96, 56), + (199466, 93, 56), + (199466, 94, 175), + (199466, 90, 280), + (199466, 92, 244), + (199466, 91, 280), + (199466, 97, 209), + (199467, 95, 215), + (199467, 96, 57), + (199467, 93, 57), + (199467, 94, 179), + (199467, 90, 287), + (199467, 92, 251), + (199467, 91, 287), + (199467, 97, 215), + (199468, 95, 224), + (199468, 96, 60), + (199468, 93, 60), + (199468, 94, 187), + (199468, 90, 300), + (199468, 92, 262), + (199468, 91, 300), + (199468, 97, 224), + (199469, 95, 234), + (199469, 96, 62), + (199469, 93, 62), + (199469, 94, 195), + (199469, 90, 312), + (199469, 92, 272), + (199469, 91, 312), + (199469, 97, 234), + (199470, 95, 243), + (199470, 96, 65), + (199470, 93, 65), + (199470, 94, 203), + (199470, 90, 325), + (199470, 92, 283), + (199470, 91, 325), + (199470, 97, 243), + (199471, 95, 252), + (199471, 96, 68), + (199471, 93, 68), + (199471, 94, 211), + (199471, 90, 338), + (199471, 92, 294), + (199471, 91, 338), + (199471, 97, 252), + (199472, 95, 262), + (199472, 96, 70), + (199472, 93, 70), + (199472, 94, 218), + (199472, 90, 350), + (199472, 92, 305), + (199472, 91, 350), + (199472, 97, 262), + (199473, 95, 271), + (199473, 96, 73), + (199473, 93, 73), + (199473, 94, 226), + (199473, 90, 363), + (199473, 92, 316), + (199473, 91, 363), + (199473, 97, 271), + (199474, 95, 280), + (199474, 96, 75), + (199474, 93, 75), + (199474, 94, 234), + (199474, 90, 375), + (199474, 92, 327), + (199474, 91, 375), + (199474, 97, 280), + (199475, 95, 290), + (199475, 96, 77), + (199475, 93, 77), + (199475, 94, 242), + (199475, 90, 387), + (199475, 92, 338), + (199475, 91, 387), + (199475, 97, 290), + (199476, 95, 295), + (199476, 96, 79), + (199476, 93, 79), + (199476, 94, 246), + (199476, 90, 395), + (199476, 92, 344), + (199476, 91, 395), + (199476, 97, 295), + (199477, 95, 299), + (199477, 96, 80), + (199477, 93, 80), + (199477, 94, 250), + (199477, 90, 400), + (199477, 92, 349), + (199477, 91, 400), + (199477, 97, 299), + (199478, 95, 305), + (199478, 96, 81), + (199478, 93, 81), + (199478, 94, 254), + (199478, 90, 407), + (199478, 92, 355), + (199478, 91, 407), + (199478, 97, 305), + (199479, 95, 309), + (199479, 96, 82), + (199479, 93, 82), + (199479, 94, 257), + (199479, 90, 412), + (199479, 92, 360), + (199479, 91, 412), + (199479, 97, 309), + (199480, 95, 318), + (199480, 96, 85), + (199480, 93, 85), + (199480, 94, 265), + (199480, 90, 425), + (199480, 92, 371), + (199480, 91, 425), + (199480, 97, 318), + (199481, 95, 327), + (199481, 96, 88), + (199481, 93, 88), + (199481, 94, 273), + (199481, 90, 438), + (199481, 92, 382), + (199481, 91, 438), + (199481, 97, 327), + (199482, 93, 90), + (199482, 95, 337), + (199482, 92, 392), + (199482, 97, 337), + (199482, 91, 450), + (199482, 96, 90), + (199482, 90, 450), + (199482, 94, 281), + (199483, 96, 204), + (199483, 93, 204), + (199483, 95, 765), + (199483, 94, 637), + (199483, 92, 892), + (199483, 91, 1020), + (199483, 97, 765), + (199483, 90, 1020), + (199484, 96, 208), + (199484, 93, 208), + (199484, 95, 780), + (199484, 94, 650), + (199484, 92, 910), + (199484, 91, 1040), + (199484, 97, 780), + (199484, 90, 1040), + (199485, 96, 216), + (199485, 93, 216), + (199485, 95, 810), + (199485, 94, 675), + (199485, 92, 945), + (199485, 91, 1080), + (199485, 97, 810), + (199485, 90, 1080), + (199486, 96, 220), + (199486, 93, 220), + (199486, 95, 825), + (199486, 94, 688), + (199486, 92, 963), + (199486, 91, 1100), + (199486, 97, 825), + (199486, 90, 1100), + (199487, 96, 224), + (199487, 93, 224), + (199487, 95, 840), + (199487, 94, 700), + (199487, 92, 980), + (199487, 91, 1120), + (199487, 97, 840), + (199487, 90, 1120), + (199488, 96, 230), + (199488, 93, 230), + (199488, 95, 862), + (199488, 94, 719), + (199488, 92, 1006), + (199488, 91, 1150), + (199488, 97, 862), + (199488, 90, 1150), + (199489, 96, 240), + (199489, 93, 240), + (199489, 95, 900), + (199489, 94, 750), + (199489, 92, 1050), + (199489, 91, 1200), + (199489, 97, 900), + (199489, 90, 1200), + (199490, 96, 250), + (199490, 93, 250), + (199490, 95, 938), + (199490, 94, 781), + (199490, 92, 1094), + (199490, 91, 1250), + (199490, 97, 938), + (199490, 90, 1250), + (199491, 96, 260), + (199491, 93, 260), + (199491, 95, 975), + (199491, 94, 812), + (199491, 92, 1137), + (199491, 91, 1300), + (199491, 97, 975), + (199491, 90, 1300), + (199492, 96, 270), + (199492, 93, 270), + (199492, 95, 1013), + (199492, 94, 844), + (199492, 92, 1181), + (199492, 91, 1350), + (199492, 97, 1013), + (199492, 90, 1350), + (199493, 96, 280), + (199493, 93, 280), + (199493, 95, 1050), + (199493, 94, 875), + (199493, 92, 1225), + (199493, 91, 1400), + (199493, 97, 1050), + (199493, 90, 1400), + (199494, 96, 290), + (199494, 93, 290), + (199494, 95, 1088), + (199494, 94, 906), + (199494, 92, 1269), + (199494, 91, 1450), + (199494, 97, 1088), + (199494, 90, 1450), + (199495, 96, 300), + (199495, 93, 300), + (199495, 95, 1125), + (199495, 94, 938), + (199495, 92, 1312), + (199495, 91, 1500), + (199495, 97, 1125), + (199495, 90, 1500), + (199496, 96, 310), + (199496, 93, 310), + (199496, 95, 1162), + (199496, 94, 969), + (199496, 92, 1356), + (199496, 91, 1550), + (199496, 97, 1162), + (199496, 90, 1550), + (199497, 96, 316), + (199497, 93, 316), + (199497, 95, 1185), + (199497, 94, 988), + (199497, 92, 1383), + (199497, 91, 1580), + (199497, 97, 1185), + (199497, 90, 1580), + (199498, 96, 320), + (199498, 93, 320), + (199498, 95, 1200), + (199498, 94, 1000), + (199498, 92, 1400), + (199498, 91, 1600), + (199498, 97, 1200), + (199498, 90, 1600), + (199499, 96, 326), + (199499, 93, 326), + (199499, 95, 1222), + (199499, 94, 1019), + (199499, 92, 1426), + (199499, 91, 1630), + (199499, 97, 1222), + (199499, 90, 1630), + (199500, 96, 330), + (199500, 93, 330), + (199500, 95, 1237), + (199500, 94, 1031), + (199500, 92, 1444), + (199500, 91, 1650), + (199500, 97, 1237), + (199500, 90, 1650), + (199501, 96, 340), + (199501, 93, 340), + (199501, 95, 1275), + (199501, 94, 1063), + (199501, 92, 1488), + (199501, 91, 1700), + (199501, 97, 1275), + (199501, 90, 1700), + (199502, 96, 350), + (199502, 93, 350), + (199502, 95, 1312), + (199502, 94, 1094), + (199502, 92, 1531), + (199502, 91, 1750), + (199502, 97, 1312), + (199502, 90, 1750), + (199503, 93, 360), + (199503, 95, 1350), + (199503, 92, 1575), + (199503, 97, 1350), + (199503, 91, 1800), + (199503, 96, 360), + (199503, 90, 1800), + (199503, 94, 1125), + (199504, 96, 204), + (199504, 93, 204), + (199504, 95, 765), + (199504, 94, 637), + (199504, 97, 765), + (199504, 91, 1020), + (199504, 92, 892), + (199504, 90, 1020), + (199505, 96, 208), + (199505, 93, 208), + (199505, 95, 780), + (199505, 94, 650), + (199505, 97, 780), + (199505, 91, 1040), + (199505, 92, 910), + (199505, 90, 1040), + (199506, 96, 216), + (199506, 93, 216), + (199506, 95, 810), + (199506, 94, 675), + (199506, 97, 810), + (199506, 91, 1080), + (199506, 92, 945), + (199506, 90, 1080), + (199507, 96, 220), + (199507, 93, 220), + (199507, 95, 825), + (199507, 94, 688), + (199507, 97, 825), + (199507, 91, 1100), + (199507, 92, 963), + (199507, 90, 1100), + (199508, 96, 224), + (199508, 93, 224), + (199508, 95, 840), + (199508, 94, 700), + (199508, 97, 840), + (199508, 91, 1120), + (199508, 92, 980), + (199508, 90, 1120), + (199509, 96, 230), + (199509, 93, 230), + (199509, 95, 862), + (199509, 94, 719), + (199509, 97, 862), + (199509, 91, 1150), + (199509, 92, 1006), + (199509, 90, 1150), + (199510, 96, 240), + (199510, 93, 240), + (199510, 95, 900), + (199510, 94, 750), + (199510, 97, 900), + (199510, 91, 1200), + (199510, 92, 1050), + (199510, 90, 1200), + (199511, 96, 250), + (199511, 93, 250), + (199511, 95, 938), + (199511, 94, 781), + (199511, 97, 938), + (199511, 91, 1250), + (199511, 92, 1094), + (199511, 90, 1250), + (199512, 96, 260), + (199512, 93, 260), + (199512, 95, 975), + (199512, 94, 812), + (199512, 97, 975), + (199512, 91, 1300), + (199512, 92, 1137), + (199512, 90, 1300), + (199513, 96, 270), + (199513, 93, 270), + (199513, 95, 1013), + (199513, 94, 844), + (199513, 97, 1013), + (199513, 91, 1350), + (199513, 92, 1181), + (199513, 90, 1350), + (199514, 96, 280), + (199514, 93, 280), + (199514, 95, 1050), + (199514, 94, 875), + (199514, 97, 1050), + (199514, 91, 1400), + (199514, 92, 1225), + (199514, 90, 1400), + (199515, 96, 290), + (199515, 93, 290), + (199515, 95, 1088), + (199515, 94, 906), + (199515, 97, 1088), + (199515, 91, 1450), + (199515, 92, 1269), + (199515, 90, 1450), + (199516, 96, 300), + (199516, 93, 300), + (199516, 95, 1125), + (199516, 94, 938), + (199516, 97, 1125), + (199516, 91, 1500), + (199516, 92, 1312), + (199516, 90, 1500), + (199517, 96, 310), + (199517, 93, 310), + (199517, 95, 1162), + (199517, 94, 969), + (199517, 97, 1162), + (199517, 91, 1550), + (199517, 92, 1356), + (199517, 90, 1550), + (199518, 96, 316), + (199518, 93, 316), + (199518, 95, 1185), + (199518, 94, 988), + (199518, 97, 1185), + (199518, 91, 1580), + (199518, 92, 1383), + (199518, 90, 1580), + (199519, 96, 320), + (199519, 93, 320), + (199519, 95, 1200), + (199519, 94, 1000), + (199519, 97, 1200), + (199519, 91, 1600), + (199519, 92, 1400), + (199519, 90, 1600), + (199520, 96, 326), + (199520, 93, 326), + (199520, 95, 1222), + (199520, 94, 1019), + (199520, 97, 1222), + (199520, 91, 1630), + (199520, 92, 1426), + (199520, 90, 1630), + (199521, 96, 330), + (199521, 93, 330), + (199521, 95, 1237), + (199521, 94, 1031), + (199521, 97, 1237), + (199521, 91, 1650), + (199521, 92, 1444), + (199521, 90, 1650), + (199522, 96, 340), + (199522, 93, 340), + (199522, 95, 1275), + (199522, 94, 1063), + (199522, 97, 1275), + (199522, 91, 1700), + (199522, 92, 1488), + (199522, 90, 1700), + (199523, 96, 350), + (199523, 93, 350), + (199523, 95, 1312), + (199523, 94, 1094), + (199523, 97, 1312), + (199523, 91, 1750), + (199523, 92, 1531), + (199523, 90, 1750), + (199524, 93, 360), + (199524, 95, 1350), + (199524, 92, 1575), + (199524, 97, 1350), + (199524, 91, 1800), + (199524, 96, 360), + (199524, 90, 1800), + (199524, 94, 1125), + (199525, 96, 95), + (199525, 95, 287), + (199525, 94, 382), + (199525, 93, 335), + (199525, 91, 382), + (199525, 92, 382), + (199525, 90, 382), + (199525, 97, 287), + (199526, 96, 97), + (199526, 95, 292), + (199526, 94, 390), + (199526, 93, 341), + (199526, 91, 390), + (199526, 92, 390), + (199526, 90, 390), + (199526, 97, 292), + (199527, 96, 100), + (199527, 95, 303), + (199527, 94, 405), + (199527, 93, 354), + (199527, 91, 405), + (199527, 92, 405), + (199527, 90, 405), + (199527, 97, 303), + (199528, 96, 102), + (199528, 95, 309), + (199528, 94, 413), + (199528, 93, 361), + (199528, 91, 413), + (199528, 92, 413), + (199528, 90, 413), + (199528, 97, 309), + (199529, 96, 104), + (199529, 95, 315), + (199529, 94, 420), + (199529, 93, 367), + (199529, 91, 420), + (199529, 92, 420), + (199529, 90, 420), + (199529, 97, 315), + (199530, 96, 107), + (199530, 95, 323), + (199530, 94, 431), + (199530, 93, 377), + (199530, 91, 431), + (199530, 92, 431), + (199530, 90, 431), + (199530, 97, 323), + (199531, 96, 112), + (199531, 95, 337), + (199531, 94, 450), + (199531, 93, 394), + (199531, 91, 450), + (199531, 92, 450), + (199531, 90, 450), + (199531, 97, 337), + (199532, 96, 116), + (199532, 95, 351), + (199532, 94, 469), + (199532, 93, 410), + (199532, 91, 469), + (199532, 92, 469), + (199532, 90, 469), + (199532, 97, 351), + (199533, 96, 121), + (199533, 95, 365), + (199533, 94, 487), + (199533, 93, 426), + (199533, 91, 487), + (199533, 92, 487), + (199533, 90, 487), + (199533, 97, 365), + (199534, 96, 126), + (199534, 95, 379), + (199534, 94, 506), + (199534, 93, 443), + (199534, 91, 506), + (199534, 92, 506), + (199534, 90, 506), + (199534, 97, 379), + (199535, 96, 130), + (199535, 95, 393), + (199535, 94, 525), + (199535, 93, 459), + (199535, 91, 525), + (199535, 92, 525), + (199535, 90, 525), + (199535, 97, 393), + (199536, 96, 135), + (199536, 95, 407), + (199536, 94, 544), + (199536, 93, 476), + (199536, 91, 544), + (199536, 92, 544), + (199536, 90, 544), + (199536, 97, 407), + (199537, 96, 140), + (199537, 95, 422), + (199537, 94, 562), + (199537, 93, 492), + (199537, 91, 562), + (199537, 92, 562), + (199537, 90, 562), + (199537, 97, 422), + (199538, 96, 144), + (199538, 95, 436), + (199538, 94, 581), + (199538, 93, 508), + (199538, 91, 581), + (199538, 92, 581), + (199538, 90, 581), + (199538, 97, 436), + (199539, 96, 147), + (199539, 95, 444), + (199539, 94, 593), + (199539, 93, 518), + (199539, 91, 593), + (199539, 92, 593), + (199539, 90, 593), + (199539, 97, 444), + (199540, 96, 149), + (199540, 95, 450), + (199540, 94, 600), + (199540, 93, 525), + (199540, 91, 600), + (199540, 92, 600), + (199540, 90, 600), + (199540, 97, 450), + (199541, 96, 152), + (199541, 95, 458), + (199541, 94, 611), + (199541, 93, 535), + (199541, 91, 611), + (199541, 92, 611), + (199541, 90, 611), + (199541, 97, 458), + (199542, 96, 153), + (199542, 95, 464), + (199542, 94, 619), + (199542, 93, 541), + (199542, 91, 619), + (199542, 92, 619), + (199542, 90, 619), + (199542, 97, 464), + (199543, 96, 158), + (199543, 95, 478), + (199543, 94, 638), + (199543, 93, 558), + (199543, 91, 638), + (199543, 92, 638), + (199543, 90, 638), + (199543, 97, 478), + (199544, 96, 163), + (199544, 95, 492), + (199544, 94, 656), + (199544, 93, 574), + (199544, 91, 656), + (199544, 92, 656), + (199544, 90, 656), + (199544, 97, 492), + (199545, 96, 167), + (199545, 95, 506), + (199545, 94, 675), + (199545, 93, 590), + (199545, 91, 675), + (199545, 92, 675), + (199545, 90, 675), + (199545, 97, 506), + (199546, 96, 63), + (199546, 95, 191), + (199546, 94, 255), + (199546, 93, 222), + (199546, 91, 255), + (199546, 92, 255), + (199546, 90, 255), + (199546, 97, 191), + (199547, 96, 64), + (199547, 95, 194), + (199547, 94, 260), + (199547, 93, 227), + (199547, 91, 260), + (199547, 92, 260), + (199547, 90, 260), + (199547, 97, 194), + (199548, 96, 67), + (199548, 95, 202), + (199548, 94, 270), + (199548, 93, 235), + (199548, 91, 270), + (199548, 92, 270), + (199548, 90, 270), + (199548, 97, 202), + (199549, 96, 68), + (199549, 95, 206), + (199549, 94, 275), + (199549, 93, 240), + (199549, 91, 275), + (199549, 92, 275), + (199549, 90, 275), + (199549, 97, 206), + (199550, 96, 69), + (199550, 95, 209), + (199550, 94, 280), + (199550, 93, 244), + (199550, 91, 280), + (199550, 92, 280), + (199550, 90, 280), + (199550, 97, 209), + (199551, 96, 71), + (199551, 95, 215), + (199551, 94, 287), + (199551, 93, 251), + (199551, 91, 287), + (199551, 92, 287), + (199551, 90, 287), + (199551, 97, 215), + (199552, 96, 74), + (199552, 95, 224), + (199552, 94, 300), + (199552, 93, 262), + (199552, 91, 300), + (199552, 92, 300), + (199552, 90, 300), + (199552, 97, 224), + (199553, 96, 78), + (199553, 95, 234), + (199553, 94, 312), + (199553, 93, 272), + (199553, 91, 312), + (199553, 92, 312), + (199553, 90, 312), + (199553, 97, 234), + (199554, 96, 81), + (199554, 95, 243), + (199554, 94, 325), + (199554, 93, 283), + (199554, 91, 325), + (199554, 92, 325), + (199554, 90, 325), + (199554, 97, 243), + (199555, 96, 84), + (199555, 95, 252), + (199555, 94, 338), + (199555, 93, 294), + (199555, 91, 338), + (199555, 92, 338), + (199555, 90, 338), + (199555, 97, 252), + (199556, 96, 87), + (199556, 95, 262), + (199556, 94, 350), + (199556, 93, 305), + (199556, 91, 350), + (199556, 92, 350), + (199556, 90, 350), + (199556, 97, 262), + (199557, 96, 90), + (199557, 95, 271), + (199557, 94, 363), + (199557, 93, 316), + (199557, 91, 363), + (199557, 92, 363), + (199557, 90, 363), + (199557, 97, 271), + (199558, 96, 93), + (199558, 95, 280), + (199558, 94, 375), + (199558, 93, 327), + (199558, 91, 375), + (199558, 92, 375), + (199558, 90, 375), + (199558, 97, 280), + (199559, 96, 96), + (199559, 95, 290), + (199559, 94, 387), + (199559, 93, 338), + (199559, 91, 387), + (199559, 92, 387), + (199559, 90, 387), + (199559, 97, 290), + (199560, 96, 98), + (199560, 95, 295), + (199560, 94, 395), + (199560, 93, 344), + (199560, 91, 395), + (199560, 92, 395), + (199560, 90, 395), + (199560, 97, 295), + (199561, 96, 99), + (199561, 95, 299), + (199561, 94, 400), + (199561, 93, 349), + (199561, 91, 400), + (199561, 92, 400), + (199561, 90, 400), + (199561, 97, 299), + (199562, 96, 101), + (199562, 95, 305), + (199562, 94, 407), + (199562, 93, 355), + (199562, 91, 407), + (199562, 92, 407), + (199562, 90, 407), + (199562, 97, 305), + (199563, 96, 102), + (199563, 95, 309), + (199563, 94, 412), + (199563, 93, 360), + (199563, 91, 412), + (199563, 92, 412), + (199563, 90, 412), + (199563, 97, 309), + (199564, 96, 105), + (199564, 95, 318), + (199564, 94, 425), + (199564, 93, 371), + (199564, 91, 425), + (199564, 92, 425), + (199564, 90, 425), + (199564, 97, 318), + (199565, 96, 108), + (199565, 95, 327), + (199565, 94, 438), + (199565, 93, 382), + (199565, 91, 438), + (199565, 92, 438), + (199565, 90, 438), + (199565, 97, 327), + (199566, 96, 112), + (199566, 95, 337), + (199566, 94, 450), + (199566, 93, 392), + (199566, 91, 450), + (199566, 92, 450), + (199566, 90, 450), + (199566, 97, 337), + (199567, 93, 669), + (199567, 95, 573), + (199567, 92, 765), + (199567, 97, 573), + (199567, 91, 765), + (199567, 96, 191), + (199567, 90, 765), + (199567, 94, 765), + (199568, 93, 682), + (199568, 95, 584), + (199568, 92, 780), + (199568, 97, 584), + (199568, 91, 780), + (199568, 96, 194), + (199568, 90, 780), + (199568, 94, 780), + (199569, 93, 708), + (199569, 95, 607), + (199569, 92, 810), + (199569, 97, 607), + (199569, 91, 810), + (199569, 96, 202), + (199569, 90, 810), + (199569, 94, 810), + (199570, 93, 722), + (199570, 95, 618), + (199570, 92, 825), + (199570, 97, 618), + (199570, 91, 825), + (199570, 96, 206), + (199570, 90, 825), + (199570, 94, 825), + (199571, 93, 735), + (199571, 95, 629), + (199571, 92, 840), + (199571, 97, 629), + (199571, 91, 840), + (199571, 96, 209), + (199571, 90, 840), + (199571, 94, 840), + (199572, 93, 754), + (199572, 95, 646), + (199572, 92, 862), + (199572, 97, 646), + (199572, 91, 862), + (199572, 96, 215), + (199572, 90, 862), + (199572, 94, 862), + (199573, 93, 787), + (199573, 95, 674), + (199573, 92, 900), + (199573, 97, 674), + (199573, 91, 900), + (199573, 96, 224), + (199573, 90, 900), + (199573, 94, 900), + (199574, 93, 820), + (199574, 95, 702), + (199574, 92, 938), + (199574, 97, 702), + (199574, 91, 938), + (199574, 96, 234), + (199574, 90, 938), + (199574, 94, 938), + (199575, 93, 853), + (199575, 95, 731), + (199575, 92, 975), + (199575, 97, 731), + (199575, 91, 975), + (199575, 96, 243), + (199575, 90, 975), + (199575, 94, 975), + (199576, 93, 886), + (199576, 95, 759), + (199576, 92, 1013), + (199576, 97, 759), + (199576, 91, 1013), + (199576, 96, 252), + (199576, 90, 1013), + (199576, 94, 1013), + (199577, 93, 918), + (199577, 95, 787), + (199577, 92, 1050), + (199577, 97, 787), + (199577, 91, 1050), + (199577, 96, 262), + (199577, 90, 1050), + (199577, 94, 1050), + (199578, 93, 951), + (199578, 95, 815), + (199578, 92, 1088), + (199578, 97, 815), + (199578, 91, 1088), + (199578, 96, 271), + (199578, 90, 1088), + (199578, 94, 1088), + (199579, 93, 984), + (199579, 95, 843), + (199579, 92, 1125), + (199579, 97, 843), + (199579, 91, 1125), + (199579, 96, 280), + (199579, 90, 1125), + (199579, 94, 1125), + (199580, 93, 1017), + (199580, 95, 871), + (199580, 92, 1162), + (199580, 97, 871), + (199580, 91, 1162), + (199580, 96, 290), + (199580, 90, 1162), + (199580, 94, 1162), + (199581, 93, 1036), + (199581, 95, 888), + (199581, 92, 1185), + (199581, 97, 888), + (199581, 91, 1185), + (199581, 96, 295), + (199581, 90, 1185), + (199581, 94, 1185), + (199582, 93, 1050), + (199582, 95, 899), + (199582, 92, 1200), + (199582, 97, 899), + (199582, 91, 1200), + (199582, 96, 299), + (199582, 90, 1200), + (199582, 94, 1200), + (199583, 93, 1069), + (199583, 95, 916), + (199583, 92, 1222), + (199583, 97, 916), + (199583, 91, 1222), + (199583, 96, 305), + (199583, 90, 1222), + (199583, 94, 1222), + (199584, 93, 1082), + (199584, 95, 927), + (199584, 92, 1237), + (199584, 97, 927), + (199584, 91, 1237), + (199584, 96, 309), + (199584, 90, 1237), + (199584, 94, 1237), + (199585, 93, 1115), + (199585, 95, 955), + (199585, 92, 1275), + (199585, 97, 955), + (199585, 91, 1275), + (199585, 96, 318), + (199585, 90, 1275), + (199585, 94, 1275), + (199586, 93, 1148), + (199586, 95, 984), + (199586, 92, 1312), + (199586, 97, 984), + (199586, 91, 1312), + (199586, 96, 327), + (199586, 90, 1312), + (199586, 94, 1312), + (199587, 93, 1181), + (199587, 95, 1012), + (199587, 92, 1350), + (199587, 97, 1012), + (199587, 91, 1350), + (199587, 96, 337), + (199587, 90, 1350), + (199587, 94, 1350), + (199588, 96, 159), + (199588, 95, 477), + (199588, 97, 267), + (199588, 94, 637), + (199588, 90, 637), + (199588, 92, 637), + (199588, 91, 637), + (199588, 93, 557), + (199589, 96, 162), + (199589, 95, 487), + (199589, 97, 272), + (199589, 94, 650), + (199589, 90, 650), + (199589, 92, 650), + (199589, 91, 650), + (199589, 93, 568), + (199590, 96, 168), + (199590, 95, 505), + (199590, 97, 283), + (199590, 94, 675), + (199590, 90, 675), + (199590, 92, 675), + (199590, 91, 675), + (199590, 93, 590), + (199592, 91, 688), + (199592, 93, 601), + (199592, 96, 172), + (199592, 95, 515), + (199592, 97, 288), + (199592, 94, 688), + (199592, 90, 688), + (199592, 92, 688), + (199593, 96, 175), + (199593, 95, 524), + (199593, 97, 293), + (199593, 94, 700), + (199593, 90, 700), + (199593, 92, 700), + (199593, 91, 700), + (199593, 93, 612), + (199594, 96, 179), + (199594, 95, 538), + (199594, 97, 301), + (199594, 94, 719), + (199594, 90, 719), + (199594, 92, 719), + (199594, 91, 719), + (199594, 93, 628), + (199595, 96, 187), + (199595, 95, 562), + (199595, 97, 314), + (199595, 94, 750), + (199595, 90, 750), + (199595, 92, 750), + (199595, 91, 750), + (199595, 93, 655), + (199596, 96, 195), + (199596, 95, 585), + (199596, 97, 328), + (199596, 94, 781), + (199596, 90, 781), + (199596, 92, 781), + (199596, 91, 781), + (199596, 93, 682), + (199597, 96, 203), + (199597, 95, 608), + (199597, 97, 341), + (199597, 94, 812), + (199597, 90, 812), + (199597, 92, 812), + (199597, 91, 812), + (199597, 93, 710), + (199598, 96, 211), + (199598, 95, 632), + (199598, 97, 354), + (199598, 94, 844), + (199598, 90, 844), + (199598, 92, 844), + (199598, 91, 844), + (199598, 93, 737), + (199599, 96, 218), + (199599, 95, 655), + (199599, 97, 367), + (199599, 94, 875), + (199599, 90, 875), + (199599, 92, 875), + (199599, 91, 875), + (199599, 93, 764), + (199600, 96, 226), + (199600, 95, 679), + (199600, 97, 380), + (199600, 94, 906), + (199600, 90, 906), + (199600, 92, 906), + (199600, 91, 906), + (199600, 93, 792), + (199601, 96, 234), + (199601, 95, 702), + (199601, 97, 393), + (199601, 94, 938), + (199601, 90, 938), + (199601, 92, 938), + (199601, 91, 938), + (199601, 93, 819), + (199602, 96, 242), + (199602, 95, 725), + (199602, 97, 406), + (199602, 94, 969), + (199602, 90, 969), + (199602, 92, 969), + (199602, 91, 969), + (199602, 93, 846), + (199603, 96, 246), + (199603, 95, 739), + (199603, 97, 414), + (199603, 94, 988), + (199603, 90, 988), + (199603, 92, 988), + (199603, 91, 988), + (199603, 93, 863), + (199604, 96, 250), + (199604, 95, 749), + (199604, 97, 419), + (199604, 94, 1000), + (199604, 90, 1000), + (199604, 92, 1000), + (199604, 91, 1000), + (199604, 93, 874), + (199605, 96, 254), + (199605, 95, 763), + (199605, 97, 427), + (199605, 94, 1019), + (199605, 90, 1019), + (199605, 92, 1019), + (199605, 91, 1019), + (199605, 93, 890), + (199606, 96, 257), + (199606, 95, 772), + (199606, 97, 432), + (199606, 94, 1031), + (199606, 90, 1031), + (199606, 92, 1031), + (199606, 91, 1031), + (199606, 93, 901), + (199607, 96, 265), + (199607, 95, 796), + (199607, 97, 445), + (199607, 94, 1063), + (199607, 90, 1063), + (199607, 92, 1063), + (199607, 91, 1063), + (199607, 93, 928), + (199608, 96, 273), + (199608, 95, 819), + (199608, 97, 458), + (199608, 94, 1094), + (199608, 90, 1094), + (199608, 92, 1094), + (199608, 91, 1094), + (199608, 93, 956), + (199609, 96, 281), + (199609, 95, 842), + (199609, 97, 472), + (199609, 94, 1125), + (199609, 90, 1125), + (199609, 92, 1125), + (199609, 91, 1125), + (199609, 93, 983), + (199610, 96, 63), + (199610, 95, 191), + (199610, 94, 255), + (199610, 93, 222), + (199610, 91, 255), + (199610, 92, 255), + (199610, 90, 255), + (199610, 97, 191), + (199611, 96, 64), + (199611, 95, 194), + (199611, 94, 260), + (199611, 93, 227), + (199611, 91, 260), + (199611, 92, 260), + (199611, 90, 260), + (199611, 97, 194), + (199612, 96, 67), + (199612, 95, 202), + (199612, 94, 270), + (199612, 93, 235), + (199612, 91, 270), + (199612, 92, 270), + (199612, 90, 270), + (199612, 97, 202), + (199613, 96, 68), + (199613, 95, 206), + (199613, 94, 275), + (199613, 93, 240), + (199613, 91, 275), + (199613, 92, 275), + (199613, 90, 275), + (199613, 97, 206), + (199614, 96, 69), + (199614, 95, 209), + (199614, 94, 280), + (199614, 93, 244), + (199614, 91, 280), + (199614, 92, 280), + (199614, 90, 280), + (199614, 97, 209), + (199615, 96, 71), + (199615, 95, 215), + (199615, 94, 287), + (199615, 93, 251), + (199615, 91, 287), + (199615, 92, 287), + (199615, 90, 287), + (199615, 97, 215), + (199616, 96, 74), + (199616, 95, 224), + (199616, 94, 300), + (199616, 93, 262), + (199616, 91, 300), + (199616, 92, 300), + (199616, 90, 300), + (199616, 97, 224), + (199617, 96, 78), + (199617, 95, 234), + (199617, 94, 312), + (199617, 93, 272), + (199617, 91, 312), + (199617, 92, 312), + (199617, 90, 312), + (199617, 97, 234), + (199618, 96, 81), + (199618, 95, 243), + (199618, 94, 325), + (199618, 93, 283), + (199618, 91, 325), + (199618, 92, 325), + (199618, 90, 325), + (199618, 97, 243), + (199619, 96, 84), + (199619, 95, 252), + (199619, 94, 338), + (199619, 93, 294), + (199619, 91, 338), + (199619, 92, 338), + (199619, 90, 338), + (199619, 97, 252), + (199620, 96, 87), + (199620, 95, 262), + (199620, 94, 350), + (199620, 93, 305), + (199620, 91, 350), + (199620, 92, 350), + (199620, 90, 350), + (199620, 97, 262), + (199621, 96, 90), + (199621, 95, 271), + (199621, 94, 363), + (199621, 93, 316), + (199621, 91, 363), + (199621, 92, 363), + (199621, 90, 363), + (199621, 97, 271), + (199622, 96, 93), + (199622, 95, 280), + (199622, 94, 375), + (199622, 93, 327), + (199622, 91, 375), + (199622, 92, 375), + (199622, 90, 375), + (199622, 97, 280), + (199623, 96, 96), + (199623, 95, 290), + (199623, 94, 387), + (199623, 93, 338), + (199623, 91, 387), + (199623, 92, 387), + (199623, 90, 387), + (199623, 97, 290), + (199624, 96, 98), + (199624, 95, 295), + (199624, 94, 395), + (199624, 93, 344), + (199624, 91, 395), + (199624, 92, 395), + (199624, 90, 395), + (199624, 97, 295), + (199625, 96, 99), + (199625, 95, 299), + (199625, 94, 400), + (199625, 93, 349), + (199625, 91, 400), + (199625, 92, 400), + (199625, 90, 400), + (199625, 97, 299), + (199626, 96, 101), + (199626, 95, 305), + (199626, 94, 407), + (199626, 93, 355), + (199626, 91, 407), + (199626, 92, 407), + (199626, 90, 407), + (199626, 97, 305), + (199627, 96, 102), + (199627, 95, 309), + (199627, 94, 412), + (199627, 93, 360), + (199627, 91, 412), + (199627, 92, 412), + (199627, 90, 412), + (199627, 97, 309), + (199628, 96, 105), + (199628, 95, 318), + (199628, 94, 425), + (199628, 93, 371), + (199628, 91, 425), + (199628, 92, 425), + (199628, 90, 425), + (199628, 97, 318), + (199629, 96, 108), + (199629, 95, 327), + (199629, 94, 438), + (199629, 93, 382), + (199629, 91, 438), + (199629, 92, 438), + (199629, 90, 438), + (199629, 97, 327), + (199630, 96, 112), + (199630, 95, 337), + (199630, 94, 450), + (199630, 93, 392), + (199630, 91, 450), + (199630, 92, 450), + (199630, 90, 450), + (199630, 97, 337), + (199631, 96, 255), + (199631, 95, 765), + (199631, 91, 1020), + (199631, 92, 1020), + (199631, 93, 892), + (199631, 94, 1020), + (199631, 90, 1020), + (199631, 97, 765), + (199632, 96, 260), + (199632, 95, 780), + (199632, 91, 1040), + (199632, 92, 1040), + (199632, 93, 910), + (199632, 94, 1040), + (199632, 90, 1040), + (199632, 97, 780), + (199633, 96, 270), + (199633, 95, 810), + (199633, 91, 1080), + (199633, 92, 1080), + (199633, 93, 945), + (199633, 94, 1080), + (199633, 90, 1080), + (199633, 97, 810), + (199634, 96, 275), + (199634, 95, 825), + (199634, 91, 1100), + (199634, 92, 1100), + (199634, 93, 963), + (199634, 94, 1100), + (199634, 90, 1100), + (199634, 97, 825), + (199635, 96, 280), + (199635, 95, 840), + (199635, 91, 1120), + (199635, 92, 1120), + (199635, 93, 980), + (199635, 94, 1120), + (199635, 90, 1120), + (199635, 97, 840), + (199636, 96, 287), + (199636, 95, 862), + (199636, 91, 1150), + (199636, 92, 1150), + (199636, 93, 1006), + (199636, 94, 1150), + (199636, 90, 1150), + (199636, 97, 862), + (199637, 96, 300), + (199637, 95, 900), + (199637, 91, 1200), + (199637, 92, 1200), + (199637, 93, 1050), + (199637, 94, 1200), + (199637, 90, 1200), + (199637, 97, 900), + (199638, 96, 312), + (199638, 95, 938), + (199638, 91, 1250), + (199638, 92, 1250), + (199638, 93, 1094), + (199638, 94, 1250), + (199638, 90, 1250), + (199638, 97, 938), + (199639, 96, 325), + (199639, 95, 975), + (199639, 91, 1300), + (199639, 92, 1300), + (199639, 93, 1137), + (199639, 94, 1300), + (199639, 90, 1300), + (199639, 97, 975), + (199640, 96, 338), + (199640, 95, 1013), + (199640, 91, 1350), + (199640, 92, 1350), + (199640, 93, 1181), + (199640, 94, 1350), + (199640, 90, 1350), + (199640, 97, 1013), + (199641, 96, 350), + (199641, 95, 1050), + (199641, 91, 1400), + (199641, 92, 1400), + (199641, 93, 1225), + (199641, 94, 1400), + (199641, 90, 1400), + (199641, 97, 1050), + (199642, 96, 363), + (199642, 95, 1088), + (199642, 91, 1450), + (199642, 92, 1450), + (199642, 93, 1269), + (199642, 94, 1450), + (199642, 90, 1450), + (199642, 97, 1088), + (199643, 96, 375), + (199643, 95, 1125), + (199643, 91, 1500), + (199643, 92, 1500), + (199643, 93, 1312), + (199643, 94, 1500), + (199643, 90, 1500), + (199643, 97, 1125), + (199644, 96, 387), + (199644, 95, 1162), + (199644, 91, 1550), + (199644, 92, 1550), + (199644, 93, 1356), + (199644, 94, 1550), + (199644, 90, 1550), + (199644, 97, 1162), + (199645, 94, 1580), + (199645, 90, 1580), + (199645, 97, 1185), + (199645, 96, 395), + (199645, 95, 1185), + (199645, 91, 1580), + (199645, 92, 1580), + (199645, 93, 1383), + (199646, 96, 400), + (199646, 95, 1200), + (199646, 91, 1600), + (199646, 92, 1600), + (199646, 93, 1400), + (199646, 94, 1600), + (199646, 90, 1600), + (199646, 97, 1200), + (199647, 96, 407), + (199647, 95, 1222), + (199647, 91, 1630), + (199647, 92, 1630), + (199647, 93, 1426), + (199647, 94, 1630), + (199647, 90, 1630), + (199647, 97, 1222), + (199648, 96, 412), + (199648, 95, 1237), + (199648, 91, 1650), + (199648, 92, 1650), + (199648, 93, 1444), + (199648, 94, 1650), + (199648, 90, 1650), + (199648, 97, 1237), + (199649, 96, 425), + (199649, 95, 1275), + (199649, 91, 1700), + (199649, 92, 1700), + (199649, 93, 1488), + (199649, 94, 1700), + (199649, 90, 1700), + (199649, 97, 1275), + (199650, 96, 438), + (199650, 95, 1312), + (199650, 91, 1750), + (199650, 92, 1750), + (199650, 93, 1531), + (199650, 94, 1750), + (199650, 90, 1750), + (199650, 97, 1312), + (199651, 96, 450), + (199651, 95, 1350), + (199651, 91, 1800), + (199651, 92, 1800), + (199651, 93, 1575), + (199651, 94, 1800), + (199651, 90, 1800), + (199651, 97, 1350), + (199652, 96, 255), + (199652, 95, 765), + (199652, 92, 1020), + (199652, 93, 892), + (199652, 94, 1020), + (199652, 90, 1020), + (199652, 91, 1020), + (199652, 97, 765), + (199653, 96, 260), + (199653, 95, 780), + (199653, 92, 1040), + (199653, 93, 910), + (199653, 94, 1040), + (199653, 90, 1040), + (199653, 91, 1040), + (199653, 97, 780), + (199654, 96, 270), + (199654, 95, 810), + (199654, 92, 1080), + (199654, 93, 945), + (199654, 94, 1080), + (199654, 90, 1080), + (199654, 91, 1080), + (199654, 97, 810), + (199655, 96, 275), + (199655, 95, 825), + (199655, 92, 1100), + (199655, 93, 963), + (199655, 94, 1100), + (199655, 90, 1100), + (199655, 91, 1100), + (199655, 97, 825), + (199656, 96, 280), + (199656, 95, 840), + (199656, 92, 1120), + (199656, 93, 980), + (199656, 94, 1120), + (199656, 90, 1120), + (199656, 91, 1120), + (199656, 97, 840), + (199657, 96, 287), + (199657, 95, 862), + (199657, 92, 1150), + (199657, 93, 1006), + (199657, 94, 1150), + (199657, 90, 1150), + (199657, 91, 1150), + (199657, 97, 862), + (199658, 96, 300), + (199658, 95, 900), + (199658, 92, 1200), + (199658, 93, 1050), + (199658, 94, 1200), + (199658, 90, 1200), + (199658, 91, 1200), + (199658, 97, 900), + (199659, 96, 312), + (199659, 95, 938), + (199659, 92, 1250), + (199659, 93, 1094), + (199659, 94, 1250), + (199659, 90, 1250), + (199659, 91, 1250), + (199659, 97, 938), + (199660, 96, 325), + (199660, 95, 975), + (199660, 92, 1300), + (199660, 93, 1137), + (199660, 94, 1300), + (199660, 90, 1300), + (199660, 91, 1300), + (199660, 97, 975), + (199661, 96, 338), + (199661, 95, 1013), + (199661, 92, 1350), + (199661, 93, 1181), + (199661, 94, 1350), + (199661, 90, 1350), + (199661, 91, 1350), + (199661, 97, 1013), + (199662, 96, 350), + (199662, 95, 1050), + (199662, 92, 1400), + (199662, 93, 1225), + (199662, 94, 1400), + (199662, 90, 1400), + (199662, 91, 1400), + (199662, 97, 1050), + (199663, 96, 363), + (199663, 95, 1088), + (199663, 92, 1450), + (199663, 93, 1269), + (199663, 94, 1450), + (199663, 90, 1450), + (199663, 91, 1450), + (199663, 97, 1088), + (199664, 96, 375), + (199664, 95, 1125), + (199664, 92, 1500), + (199664, 93, 1312), + (199664, 94, 1500), + (199664, 90, 1500), + (199664, 91, 1500), + (199664, 97, 1125), + (199665, 96, 387), + (199665, 95, 1162), + (199665, 92, 1550), + (199665, 93, 1356), + (199665, 94, 1550), + (199665, 90, 1550), + (199665, 91, 1550), + (199665, 97, 1162), + (199666, 96, 395), + (199666, 95, 1185), + (199666, 92, 1580), + (199666, 93, 1383), + (199666, 94, 1580), + (199666, 90, 1580), + (199666, 91, 1580), + (199666, 97, 1185), + (199667, 96, 400), + (199667, 95, 1200), + (199667, 92, 1600), + (199667, 93, 1400), + (199667, 94, 1600), + (199667, 90, 1600), + (199667, 91, 1600), + (199667, 97, 1200), + (199668, 96, 407), + (199668, 95, 1222), + (199668, 92, 1630), + (199668, 93, 1426), + (199668, 94, 1630), + (199668, 90, 1630), + (199668, 91, 1630), + (199668, 97, 1222), + (199669, 96, 412), + (199669, 95, 1237), + (199669, 92, 1650), + (199669, 93, 1444), + (199669, 94, 1650), + (199669, 90, 1650), + (199669, 91, 1650), + (199669, 97, 1237), + (199670, 96, 425), + (199670, 95, 1275), + (199670, 92, 1700), + (199670, 93, 1488), + (199670, 94, 1700), + (199670, 90, 1700), + (199670, 91, 1700), + (199670, 97, 1275), + (199671, 96, 438), + (199671, 95, 1312), + (199671, 92, 1750), + (199671, 93, 1531), + (199671, 94, 1750), + (199671, 90, 1750), + (199671, 91, 1750), + (199671, 97, 1312), + (199672, 96, 450), + (199672, 95, 1350), + (199672, 92, 1800), + (199672, 93, 1575), + (199672, 94, 1800), + (199672, 90, 1800), + (199672, 91, 1800), + (199672, 97, 1350), + (199673, 96, 335), + (199673, 94, 95), + (199673, 95, 95), + (199673, 97, 335), + (199673, 90, 382), + (199673, 92, 382), + (199673, 91, 335), + (199673, 93, 382), + (199674, 96, 341), + (199674, 94, 97), + (199674, 95, 97), + (199674, 97, 341), + (199674, 90, 390), + (199674, 92, 390), + (199674, 91, 341), + (199674, 93, 390), + (199675, 96, 354), + (199675, 94, 100), + (199675, 95, 100), + (199675, 97, 354), + (199675, 90, 405), + (199675, 92, 405), + (199675, 91, 354), + (199675, 93, 405), + (199676, 96, 361), + (199676, 94, 102), + (199676, 95, 102), + (199676, 97, 361), + (199676, 90, 413), + (199676, 92, 413), + (199676, 91, 361), + (199676, 93, 413), + (199677, 96, 367), + (199677, 94, 104), + (199677, 95, 104), + (199677, 97, 367), + (199677, 90, 420), + (199677, 92, 420), + (199677, 91, 367), + (199677, 93, 420), + (199678, 96, 377), + (199678, 94, 107), + (199678, 95, 107), + (199678, 97, 377), + (199678, 90, 431), + (199678, 92, 431), + (199678, 91, 377), + (199678, 93, 431), + (199679, 96, 394), + (199679, 94, 112), + (199679, 95, 112), + (199679, 97, 394), + (199679, 90, 450), + (199679, 92, 450), + (199679, 91, 394), + (199679, 93, 450), + (199680, 96, 410), + (199680, 94, 116), + (199680, 95, 116), + (199680, 97, 410), + (199680, 90, 469), + (199680, 92, 469), + (199680, 91, 410), + (199680, 93, 469), + (199681, 96, 426), + (199681, 94, 121), + (199681, 95, 121), + (199681, 97, 426), + (199681, 90, 487), + (199681, 92, 487), + (199681, 91, 426), + (199681, 93, 487), + (199682, 96, 443), + (199682, 94, 126), + (199682, 95, 126), + (199682, 97, 443), + (199682, 90, 506), + (199682, 92, 506), + (199682, 91, 443), + (199682, 93, 506), + (199683, 96, 459), + (199683, 94, 130), + (199683, 95, 130), + (199683, 97, 459), + (199683, 90, 525), + (199683, 92, 525), + (199683, 91, 459), + (199683, 93, 525), + (199684, 96, 476), + (199684, 94, 135), + (199684, 95, 135), + (199684, 97, 476), + (199684, 90, 544), + (199684, 92, 544), + (199684, 91, 476), + (199684, 93, 544), + (199685, 96, 492), + (199685, 94, 140), + (199685, 95, 140), + (199685, 97, 492), + (199685, 90, 562), + (199685, 92, 562), + (199685, 91, 492), + (199685, 93, 562), + (199686, 96, 508), + (199686, 94, 144), + (199686, 95, 144), + (199686, 97, 508), + (199686, 90, 581), + (199686, 92, 581), + (199686, 91, 508), + (199686, 93, 581), + (199687, 96, 518), + (199687, 94, 147), + (199687, 95, 147), + (199687, 97, 518), + (199687, 90, 593), + (199687, 92, 593), + (199687, 91, 518), + (199687, 93, 593), + (199688, 96, 525), + (199688, 94, 149), + (199688, 95, 149), + (199688, 97, 525), + (199688, 90, 600), + (199688, 92, 600), + (199688, 91, 525), + (199688, 93, 600), + (199689, 96, 535), + (199689, 94, 152), + (199689, 95, 152), + (199689, 97, 535), + (199689, 90, 611), + (199689, 92, 611), + (199689, 91, 535), + (199689, 93, 611), + (199690, 96, 541), + (199690, 94, 153), + (199690, 95, 153), + (199690, 97, 541), + (199690, 90, 619), + (199690, 92, 619), + (199690, 91, 541), + (199690, 93, 619), + (199691, 96, 558), + (199691, 94, 158), + (199691, 95, 158), + (199691, 97, 558), + (199691, 90, 638), + (199691, 92, 638), + (199691, 91, 558), + (199691, 93, 638), + (199692, 96, 574), + (199692, 94, 163), + (199692, 95, 163), + (199692, 97, 574), + (199692, 90, 656), + (199692, 92, 656), + (199692, 91, 574), + (199692, 93, 656), + (199693, 96, 590), + (199693, 94, 167), + (199693, 95, 167), + (199693, 97, 590), + (199693, 90, 675), + (199693, 92, 675), + (199693, 91, 590), + (199693, 93, 675), + (199694, 96, 222), + (199694, 94, 63), + (199694, 95, 63), + (199694, 97, 222), + (199694, 93, 255), + (199694, 91, 222), + (199694, 92, 255), + (199694, 90, 255), + (199695, 96, 227), + (199695, 94, 64), + (199695, 95, 64), + (199695, 97, 227), + (199695, 93, 260), + (199695, 91, 227), + (199695, 92, 260), + (199695, 90, 260), + (199696, 96, 235), + (199696, 94, 67), + (199696, 95, 67), + (199696, 97, 235), + (199696, 93, 270), + (199696, 91, 235), + (199696, 92, 270), + (199696, 90, 270), + (199697, 96, 240), + (199697, 94, 68), + (199697, 95, 68), + (199697, 97, 240), + (199697, 93, 275), + (199697, 91, 240), + (199697, 92, 275), + (199697, 90, 275), + (199698, 96, 244), + (199698, 94, 69), + (199698, 95, 69), + (199698, 97, 244), + (199698, 93, 280), + (199698, 91, 244), + (199698, 92, 280), + (199698, 90, 280), + (199699, 96, 251), + (199699, 94, 71), + (199699, 95, 71), + (199699, 97, 251), + (199699, 93, 287), + (199699, 91, 251), + (199699, 92, 287), + (199699, 90, 287), + (199700, 96, 262), + (199700, 94, 74), + (199700, 95, 74), + (199700, 97, 262), + (199700, 93, 300), + (199700, 91, 262), + (199700, 92, 300), + (199700, 90, 300), + (199701, 96, 272), + (199701, 94, 78), + (199701, 95, 78), + (199701, 97, 272), + (199701, 93, 312), + (199701, 91, 272), + (199701, 92, 312), + (199701, 90, 312), + (199702, 93, 325), + (199702, 91, 283), + (199702, 92, 325), + (199702, 90, 325), + (199702, 96, 283), + (199702, 94, 81), + (199702, 95, 81), + (199702, 97, 283), + (199703, 96, 294), + (199703, 94, 84), + (199703, 95, 84), + (199703, 97, 294), + (199703, 93, 338), + (199703, 91, 294), + (199703, 92, 338), + (199703, 90, 338), + (199704, 96, 305), + (199704, 94, 87), + (199704, 95, 87), + (199704, 97, 305), + (199704, 93, 350), + (199704, 91, 305), + (199704, 92, 350), + (199704, 90, 350), + (199705, 96, 316), + (199705, 94, 90), + (199705, 95, 90), + (199705, 97, 316), + (199705, 93, 363), + (199705, 91, 316), + (199705, 92, 363), + (199705, 90, 363), + (199706, 96, 327), + (199706, 94, 93), + (199706, 95, 93), + (199706, 97, 327), + (199706, 93, 375), + (199706, 91, 327), + (199706, 92, 375), + (199706, 90, 375), + (199707, 96, 338), + (199707, 94, 96), + (199707, 95, 96), + (199707, 97, 338), + (199707, 93, 387), + (199707, 91, 338), + (199707, 92, 387), + (199707, 90, 387), + (199708, 96, 344), + (199708, 94, 98), + (199708, 95, 98), + (199708, 97, 344), + (199708, 93, 395), + (199708, 91, 344), + (199708, 92, 395), + (199708, 90, 395), + (199709, 96, 349), + (199709, 94, 99), + (199709, 95, 99), + (199709, 97, 349), + (199709, 93, 400), + (199709, 91, 349), + (199709, 92, 400), + (199709, 90, 400), + (199710, 96, 355), + (199710, 94, 101), + (199710, 95, 101), + (199710, 97, 355), + (199710, 93, 407), + (199710, 91, 355), + (199710, 92, 407), + (199710, 90, 407), + (199711, 96, 360), + (199711, 94, 102), + (199711, 95, 102), + (199711, 97, 360), + (199711, 93, 412), + (199711, 91, 360), + (199711, 92, 412), + (199711, 90, 412), + (199712, 96, 371), + (199712, 94, 105), + (199712, 95, 105), + (199712, 97, 371), + (199712, 93, 425), + (199712, 91, 371), + (199712, 92, 425), + (199712, 90, 425), + (199713, 96, 382), + (199713, 94, 108), + (199713, 95, 108), + (199713, 97, 382), + (199713, 93, 438), + (199713, 91, 382), + (199713, 92, 438), + (199713, 90, 438), + (199714, 96, 392), + (199714, 94, 112), + (199714, 95, 112), + (199714, 97, 392), + (199714, 93, 450), + (199714, 91, 392), + (199714, 92, 450), + (199714, 90, 450), + (199715, 93, 765), + (199715, 95, 191), + (199715, 92, 765), + (199715, 97, 669), + (199715, 91, 669), + (199715, 96, 669), + (199715, 90, 765), + (199715, 94, 191), + (199716, 93, 780), + (199716, 95, 194), + (199716, 92, 780), + (199716, 97, 682), + (199716, 91, 682), + (199716, 96, 682), + (199716, 90, 780), + (199716, 94, 194), + (199717, 93, 810), + (199717, 95, 202), + (199717, 92, 810), + (199717, 97, 708), + (199717, 91, 708), + (199717, 96, 708), + (199717, 90, 810), + (199717, 94, 202), + (199718, 93, 825), + (199718, 95, 206), + (199718, 92, 825), + (199718, 97, 722), + (199718, 91, 722), + (199718, 96, 722), + (199718, 90, 825), + (199718, 94, 206), + (199719, 93, 840), + (199719, 95, 209), + (199719, 92, 840), + (199719, 97, 735), + (199719, 91, 735), + (199719, 96, 735), + (199719, 90, 840), + (199719, 94, 209), + (199720, 93, 862), + (199720, 95, 215), + (199720, 92, 862), + (199720, 97, 754), + (199720, 91, 754), + (199720, 96, 754), + (199720, 90, 862), + (199720, 94, 215), + (199721, 93, 900), + (199721, 95, 224), + (199721, 92, 900), + (199721, 97, 787), + (199721, 91, 787), + (199721, 96, 787), + (199721, 90, 900), + (199721, 94, 224), + (199722, 93, 938), + (199722, 95, 234), + (199722, 92, 938), + (199722, 97, 820), + (199722, 91, 820), + (199722, 96, 820), + (199722, 90, 938), + (199722, 94, 234), + (199723, 93, 975), + (199723, 95, 243), + (199723, 92, 975), + (199723, 97, 853), + (199723, 91, 853), + (199723, 96, 853), + (199723, 90, 975), + (199723, 94, 243), + (199724, 93, 1013), + (199724, 95, 252), + (199724, 92, 1013), + (199724, 97, 886), + (199724, 91, 886), + (199724, 96, 886), + (199724, 90, 1013), + (199724, 94, 252), + (199725, 93, 1050), + (199725, 95, 262), + (199725, 92, 1050), + (199725, 97, 918), + (199725, 91, 918), + (199725, 96, 918), + (199725, 90, 1050), + (199725, 94, 262), + (199726, 93, 1088), + (199726, 95, 271), + (199726, 92, 1088), + (199726, 97, 951), + (199726, 91, 951), + (199726, 96, 951), + (199726, 90, 1088), + (199726, 94, 271), + (199727, 93, 1125), + (199727, 95, 280), + (199727, 92, 1125), + (199727, 97, 984), + (199727, 91, 984), + (199727, 96, 984), + (199727, 90, 1125), + (199727, 94, 280), + (199728, 93, 1162), + (199728, 95, 290), + (199728, 92, 1162), + (199728, 97, 1017), + (199728, 91, 1017), + (199728, 96, 1017), + (199728, 90, 1162), + (199728, 94, 290), + (199729, 93, 1185), + (199729, 95, 295), + (199729, 92, 1185), + (199729, 97, 1036), + (199729, 91, 1036), + (199729, 96, 1036), + (199729, 90, 1185), + (199729, 94, 295), + (199730, 93, 1200), + (199730, 95, 299), + (199730, 92, 1200), + (199730, 97, 1050), + (199730, 91, 1050), + (199730, 96, 1050), + (199730, 90, 1200), + (199730, 94, 299), + (199731, 93, 1222), + (199731, 95, 305), + (199731, 92, 1222), + (199731, 97, 1069), + (199731, 91, 1069), + (199731, 96, 1069), + (199731, 90, 1222), + (199731, 94, 305), + (199732, 93, 1237), + (199732, 95, 309), + (199732, 92, 1237), + (199732, 97, 1082), + (199732, 91, 1082), + (199732, 96, 1082), + (199732, 90, 1237), + (199732, 94, 309), + (199733, 93, 1275), + (199733, 95, 318), + (199733, 92, 1275), + (199733, 97, 1115), + (199733, 91, 1115), + (199733, 96, 1115), + (199733, 90, 1275), + (199733, 94, 318), + (199734, 93, 1312), + (199734, 95, 327), + (199734, 92, 1312), + (199734, 97, 1148), + (199734, 91, 1148), + (199734, 96, 1148), + (199734, 90, 1312), + (199734, 94, 327), + (199735, 93, 1350), + (199735, 95, 337), + (199735, 92, 1350), + (199735, 97, 1181), + (199735, 91, 1181), + (199735, 96, 1181), + (199735, 90, 1350), + (199735, 94, 337), + (199736, 96, 557), + (199736, 94, 159), + (199736, 95, 159), + (199736, 97, 557), + (199736, 91, 557), + (199736, 93, 637), + (199736, 90, 637), + (199736, 92, 637), + (199737, 96, 568), + (199737, 94, 162), + (199737, 95, 162), + (199737, 97, 568), + (199737, 91, 568), + (199737, 93, 650), + (199737, 90, 650), + (199737, 92, 650), + (199738, 96, 590), + (199738, 94, 168), + (199738, 95, 168), + (199738, 97, 590), + (199738, 91, 590), + (199738, 93, 675), + (199738, 90, 675), + (199738, 92, 675), + (199739, 96, 601), + (199739, 94, 172), + (199739, 95, 172), + (199739, 97, 601), + (199739, 91, 601), + (199739, 93, 688), + (199739, 90, 688), + (199739, 92, 688), + (199740, 96, 612), + (199740, 94, 175), + (199740, 95, 175), + (199740, 97, 612), + (199740, 91, 612), + (199740, 93, 700), + (199740, 90, 700), + (199740, 92, 700), + (199741, 96, 628), + (199741, 94, 179), + (199741, 95, 179), + (199741, 97, 628), + (199741, 91, 628), + (199741, 93, 719), + (199741, 90, 719), + (199741, 92, 719), + (199742, 96, 655), + (199742, 94, 187), + (199742, 95, 187), + (199742, 97, 655), + (199742, 91, 655), + (199742, 93, 750), + (199742, 90, 750), + (199742, 92, 750), + (199743, 96, 682), + (199743, 94, 195), + (199743, 95, 195), + (199743, 97, 682), + (199743, 91, 682), + (199743, 93, 781), + (199743, 90, 781), + (199743, 92, 781), + (199744, 96, 710), + (199744, 94, 203), + (199744, 95, 203), + (199744, 97, 710), + (199744, 91, 710), + (199744, 93, 812), + (199744, 90, 812), + (199744, 92, 812), + (199745, 96, 737), + (199745, 94, 211), + (199745, 95, 211), + (199745, 97, 737), + (199745, 91, 737), + (199745, 93, 844), + (199745, 90, 844), + (199745, 92, 844), + (199746, 96, 764), + (199746, 94, 218), + (199746, 95, 218), + (199746, 97, 764), + (199746, 91, 764), + (199746, 93, 875), + (199746, 90, 875), + (199746, 92, 875), + (199747, 96, 792), + (199747, 94, 226), + (199747, 95, 226), + (199747, 97, 792), + (199747, 91, 792), + (199747, 93, 906), + (199747, 90, 906), + (199747, 92, 906), + (199748, 96, 819), + (199748, 94, 234), + (199748, 95, 234), + (199748, 97, 819), + (199748, 91, 819), + (199748, 93, 938), + (199748, 90, 938), + (199748, 92, 938), + (199749, 96, 846), + (199749, 94, 242), + (199749, 95, 242), + (199749, 97, 846), + (199749, 91, 846), + (199749, 93, 969), + (199749, 90, 969), + (199749, 92, 969), + (199750, 96, 863), + (199750, 94, 246), + (199750, 95, 246), + (199750, 97, 863), + (199750, 91, 863), + (199750, 93, 988), + (199750, 90, 988), + (199750, 92, 988), + (199751, 96, 874), + (199751, 94, 250), + (199751, 95, 250), + (199751, 97, 874), + (199751, 91, 874), + (199751, 93, 1000), + (199751, 90, 1000), + (199751, 92, 1000), + (199752, 96, 890), + (199752, 94, 254), + (199752, 95, 254), + (199752, 97, 890), + (199752, 91, 890), + (199752, 93, 1019), + (199752, 90, 1019), + (199752, 92, 1019), + (199753, 96, 901), + (199753, 94, 257), + (199753, 95, 257), + (199753, 97, 901), + (199753, 91, 901), + (199753, 93, 1031), + (199753, 90, 1031), + (199753, 92, 1031), + (199754, 96, 928), + (199754, 94, 265), + (199754, 95, 265), + (199754, 97, 928), + (199754, 91, 928), + (199754, 93, 1063), + (199754, 90, 1063), + (199754, 92, 1063), + (199755, 96, 956), + (199755, 94, 273), + (199755, 95, 273), + (199755, 97, 956), + (199755, 91, 956), + (199755, 93, 1094), + (199755, 90, 1094), + (199755, 92, 1094), + (199756, 96, 983), + (199756, 94, 281), + (199756, 95, 281), + (199756, 97, 983), + (199756, 91, 983), + (199756, 93, 1125), + (199756, 90, 1125), + (199756, 92, 1125), + (199757, 96, 222), + (199757, 94, 63), + (199757, 95, 63), + (199757, 97, 222), + (199757, 90, 255), + (199757, 92, 255), + (199757, 91, 222), + (199757, 93, 255), + (199758, 96, 227), + (199758, 94, 64), + (199758, 95, 64), + (199758, 97, 227), + (199758, 90, 260), + (199758, 92, 260), + (199758, 91, 227), + (199758, 93, 260), + (199759, 96, 235), + (199759, 94, 67), + (199759, 95, 67), + (199759, 97, 235), + (199759, 90, 270), + (199759, 92, 270), + (199759, 91, 235), + (199759, 93, 270), + (199760, 96, 240), + (199760, 94, 68), + (199760, 95, 68), + (199760, 97, 240), + (199760, 90, 275), + (199760, 92, 275), + (199760, 91, 240), + (199760, 93, 275), + (199761, 96, 244), + (199761, 94, 69), + (199761, 95, 69), + (199761, 97, 244), + (199761, 90, 280), + (199761, 92, 280), + (199761, 91, 244), + (199761, 93, 280), + (199762, 96, 251), + (199762, 94, 71), + (199762, 95, 71), + (199762, 97, 251), + (199762, 90, 287), + (199762, 92, 287), + (199762, 91, 251), + (199762, 93, 287), + (199763, 96, 262), + (199763, 94, 74), + (199763, 95, 74), + (199763, 97, 262), + (199763, 90, 300), + (199763, 92, 300), + (199763, 91, 262), + (199763, 93, 300), + (199764, 96, 272), + (199764, 94, 78), + (199764, 95, 78), + (199764, 97, 272), + (199764, 90, 312), + (199764, 92, 312), + (199764, 91, 272), + (199764, 93, 312), + (199765, 96, 283), + (199765, 94, 81), + (199765, 95, 81), + (199765, 97, 283), + (199765, 90, 325), + (199765, 92, 325), + (199765, 91, 283), + (199765, 93, 325), + (199766, 96, 294), + (199766, 94, 84), + (199766, 95, 84), + (199766, 97, 294), + (199766, 90, 338), + (199766, 92, 338), + (199766, 91, 294), + (199766, 93, 338), + (199767, 96, 305), + (199767, 94, 87), + (199767, 95, 87), + (199767, 97, 305), + (199767, 90, 350), + (199767, 92, 350), + (199767, 91, 305), + (199767, 93, 350), + (199768, 96, 316), + (199768, 94, 90), + (199768, 95, 90), + (199768, 97, 316), + (199768, 90, 363), + (199768, 92, 363), + (199768, 91, 316), + (199768, 93, 363), + (199769, 96, 327), + (199769, 94, 93), + (199769, 95, 93), + (199769, 97, 327), + (199769, 90, 375), + (199769, 92, 375), + (199769, 91, 327), + (199769, 93, 375), + (199770, 96, 338), + (199770, 94, 96), + (199770, 95, 96), + (199770, 97, 338), + (199770, 90, 387), + (199770, 92, 387), + (199770, 91, 338), + (199770, 93, 387), + (199771, 96, 344), + (199771, 94, 98), + (199771, 95, 98), + (199771, 97, 344), + (199771, 90, 395), + (199771, 92, 395), + (199771, 91, 344), + (199771, 93, 395), + (199772, 96, 349), + (199772, 94, 99), + (199772, 95, 99), + (199772, 97, 349), + (199772, 90, 400), + (199772, 92, 400), + (199772, 91, 349), + (199772, 93, 400), + (199773, 96, 355), + (199773, 94, 101), + (199773, 95, 101), + (199773, 97, 355), + (199773, 90, 407), + (199773, 92, 407), + (199773, 91, 355), + (199773, 93, 407), + (199774, 96, 360), + (199774, 94, 102), + (199774, 95, 102), + (199774, 97, 360), + (199774, 90, 412), + (199774, 92, 412), + (199774, 91, 360), + (199774, 93, 412), + (199775, 96, 371), + (199775, 94, 105), + (199775, 95, 105), + (199775, 97, 371), + (199775, 90, 425), + (199775, 92, 425), + (199775, 91, 371), + (199775, 93, 425), + (199776, 96, 382), + (199776, 94, 108), + (199776, 95, 108), + (199776, 97, 382), + (199776, 90, 438), + (199776, 92, 438), + (199776, 91, 382), + (199776, 93, 438), + (199777, 96, 392), + (199777, 94, 112), + (199777, 95, 112), + (199777, 97, 392), + (199777, 90, 450), + (199777, 92, 450), + (199777, 91, 392), + (199777, 93, 450), + (199778, 96, 892), + (199778, 94, 255), + (199778, 95, 255), + (199778, 97, 892), + (199778, 91, 892), + (199778, 90, 1020), + (199778, 92, 1020), + (199778, 93, 1020), + (199779, 96, 910), + (199779, 94, 260), + (199779, 95, 260), + (199779, 97, 910), + (199779, 91, 910), + (199779, 90, 1040), + (199779, 92, 1040), + (199779, 93, 1040), + (199780, 96, 945), + (199780, 94, 270), + (199780, 95, 270), + (199780, 97, 945), + (199780, 91, 945), + (199780, 90, 1080), + (199780, 92, 1080), + (199780, 93, 1080), + (199781, 96, 963), + (199781, 94, 275), + (199781, 95, 275), + (199781, 97, 963), + (199781, 91, 963), + (199781, 90, 1100), + (199781, 92, 1100), + (199781, 93, 1100), + (199782, 96, 980), + (199782, 94, 280), + (199782, 95, 280), + (199782, 97, 980), + (199782, 91, 980), + (199782, 90, 1120), + (199782, 92, 1120), + (199782, 93, 1120), + (199783, 96, 1006), + (199783, 94, 287), + (199783, 95, 287), + (199783, 97, 1006), + (199783, 91, 1006), + (199783, 90, 1150), + (199783, 92, 1150), + (199783, 93, 1150), + (199784, 96, 1050), + (199784, 94, 300), + (199784, 95, 300), + (199784, 97, 1050), + (199784, 91, 1050), + (199784, 90, 1200), + (199784, 92, 1200), + (199784, 93, 1200), + (199785, 96, 1094), + (199785, 94, 312), + (199785, 95, 312), + (199785, 97, 1094), + (199785, 91, 1094), + (199785, 90, 1250), + (199785, 92, 1250), + (199785, 93, 1250), + (199786, 95, 325), + (199786, 97, 1137), + (199786, 91, 1137), + (199786, 90, 1300), + (199786, 92, 1300), + (199786, 93, 1300), + (199786, 96, 1137), + (199786, 94, 325), + (199787, 96, 1181), + (199787, 94, 338), + (199787, 95, 338), + (199787, 97, 1181), + (199787, 91, 1181), + (199787, 90, 1350), + (199787, 92, 1350), + (199787, 93, 1350), + (199788, 96, 1225), + (199788, 94, 350), + (199788, 95, 350), + (199788, 97, 1225), + (199788, 91, 1225), + (199788, 90, 1400), + (199788, 92, 1400), + (199788, 93, 1400), + (199789, 96, 1269), + (199789, 94, 363), + (199789, 95, 363), + (199789, 97, 1269), + (199789, 91, 1269), + (199789, 90, 1450), + (199789, 92, 1450), + (199789, 93, 1450), + (199790, 96, 1312), + (199790, 94, 375), + (199790, 95, 375), + (199790, 97, 1312), + (199790, 91, 1312), + (199790, 90, 1500), + (199790, 92, 1500), + (199790, 93, 1500), + (199791, 96, 1356), + (199791, 94, 387), + (199791, 95, 387), + (199791, 97, 1356), + (199791, 91, 1356), + (199791, 90, 1550), + (199791, 92, 1550), + (199791, 93, 1550), + (199792, 96, 1383), + (199792, 94, 395), + (199792, 95, 395), + (199792, 97, 1383), + (199792, 91, 1383), + (199792, 90, 1580), + (199792, 92, 1580), + (199792, 93, 1580), + (199793, 96, 1400), + (199793, 94, 400), + (199793, 95, 400), + (199793, 97, 1400), + (199793, 91, 1400), + (199793, 90, 1600), + (199793, 92, 1600), + (199793, 93, 1600), + (199794, 96, 1426), + (199794, 94, 407), + (199794, 95, 407), + (199794, 97, 1426), + (199794, 91, 1426), + (199794, 90, 1630), + (199794, 92, 1630), + (199794, 93, 1630), + (199795, 96, 1444), + (199795, 94, 412), + (199795, 95, 412), + (199795, 97, 1444), + (199795, 91, 1444), + (199795, 90, 1650), + (199795, 92, 1650), + (199795, 93, 1650), + (199796, 96, 1488), + (199796, 94, 425), + (199796, 95, 425), + (199796, 97, 1488), + (199796, 91, 1488), + (199796, 90, 1700), + (199796, 92, 1700), + (199796, 93, 1700), + (199797, 96, 1531), + (199797, 94, 438), + (199797, 95, 438), + (199797, 97, 1531), + (199797, 91, 1531), + (199797, 90, 1750), + (199797, 92, 1750), + (199797, 93, 1750), + (199798, 96, 1575), + (199798, 94, 450), + (199798, 95, 450), + (199798, 97, 1575), + (199798, 91, 1575), + (199798, 90, 1800), + (199798, 92, 1800), + (199798, 93, 1800), + (199799, 94, 335), + (199799, 93, 335), + (199799, 91, 382), + (199799, 92, 382), + (199799, 90, 382), + (199799, 96, 287), + (199799, 97, 95), + (199799, 95, 95), + (199800, 94, 341), + (199800, 93, 341), + (199800, 91, 390), + (199800, 92, 390), + (199800, 90, 390), + (199800, 96, 292), + (199800, 97, 97), + (199800, 95, 97), + (199801, 94, 354), + (199801, 93, 354), + (199801, 91, 405), + (199801, 92, 405), + (199801, 90, 405), + (199801, 96, 303), + (199801, 97, 100), + (199801, 95, 100), + (199802, 94, 361), + (199802, 93, 361), + (199802, 91, 413), + (199802, 92, 413), + (199802, 90, 413), + (199802, 96, 309), + (199802, 97, 102), + (199802, 95, 102), + (199803, 94, 367), + (199803, 93, 367), + (199803, 91, 420), + (199803, 92, 420), + (199803, 90, 420), + (199803, 96, 315), + (199803, 97, 104), + (199803, 95, 104), + (199804, 94, 377), + (199804, 93, 377), + (199804, 91, 431), + (199804, 92, 431), + (199804, 90, 431), + (199804, 96, 323), + (199804, 97, 107), + (199804, 95, 107), + (199805, 94, 394), + (199805, 93, 394), + (199805, 91, 450), + (199805, 92, 450), + (199805, 90, 450), + (199805, 96, 337), + (199805, 97, 112), + (199805, 95, 112), + (199806, 94, 410), + (199806, 93, 410), + (199806, 91, 469), + (199806, 92, 469), + (199806, 90, 469), + (199806, 96, 351), + (199806, 97, 116), + (199806, 95, 116), + (199807, 94, 426), + (199807, 93, 426), + (199807, 91, 487), + (199807, 92, 487), + (199807, 90, 487), + (199807, 96, 365), + (199807, 97, 121), + (199807, 95, 121), + (199808, 94, 443), + (199808, 93, 443), + (199808, 91, 506), + (199808, 92, 506), + (199808, 90, 506), + (199808, 96, 379), + (199808, 97, 126), + (199808, 95, 126), + (199809, 94, 459), + (199809, 93, 459), + (199809, 91, 525), + (199809, 92, 525), + (199809, 90, 525), + (199809, 96, 393), + (199809, 97, 130), + (199809, 95, 130), + (199810, 94, 476), + (199810, 93, 476), + (199810, 91, 544), + (199810, 92, 544), + (199810, 90, 544), + (199810, 96, 407), + (199810, 97, 135), + (199810, 95, 135), + (199811, 94, 492), + (199811, 93, 492), + (199811, 91, 562), + (199811, 92, 562), + (199811, 90, 562), + (199811, 96, 422), + (199811, 97, 140), + (199811, 95, 140), + (199812, 94, 508), + (199812, 93, 508), + (199812, 91, 581), + (199812, 92, 581), + (199812, 90, 581), + (199812, 96, 436), + (199812, 97, 144), + (199812, 95, 144), + (199813, 94, 518), + (199813, 93, 518), + (199813, 91, 593), + (199813, 92, 593), + (199813, 90, 593), + (199813, 96, 444), + (199813, 97, 147), + (199813, 95, 147), + (199814, 94, 525), + (199814, 93, 525), + (199814, 91, 600), + (199814, 92, 600), + (199814, 90, 600), + (199814, 96, 450), + (199814, 97, 149), + (199814, 95, 149), + (199815, 94, 535), + (199815, 93, 535), + (199815, 91, 611), + (199815, 92, 611), + (199815, 90, 611), + (199815, 96, 458), + (199815, 97, 152), + (199815, 95, 152), + (199816, 94, 541), + (199816, 93, 541), + (199816, 91, 619), + (199816, 92, 619), + (199816, 90, 619), + (199816, 96, 464), + (199816, 97, 153), + (199816, 95, 153), + (199817, 94, 558), + (199817, 93, 558), + (199817, 91, 638), + (199817, 92, 638), + (199817, 90, 638), + (199817, 96, 478), + (199817, 97, 158), + (199817, 95, 158), + (199818, 94, 574), + (199818, 93, 574), + (199818, 91, 656), + (199818, 92, 656), + (199818, 90, 656), + (199818, 96, 492), + (199818, 97, 163), + (199818, 95, 163), + (199819, 94, 590), + (199819, 93, 590), + (199819, 91, 675), + (199819, 92, 675), + (199819, 90, 675), + (199819, 96, 506), + (199819, 97, 167), + (199819, 95, 167), + (199820, 94, 222), + (199820, 93, 222), + (199820, 92, 255), + (199820, 90, 255), + (199820, 91, 255), + (199820, 96, 191), + (199820, 97, 63), + (199820, 95, 63), + (199821, 94, 227), + (199821, 93, 227), + (199821, 92, 260), + (199821, 90, 260), + (199821, 91, 260), + (199821, 96, 194), + (199821, 97, 64), + (199821, 95, 64), + (199822, 94, 235), + (199822, 93, 235), + (199822, 92, 270), + (199822, 90, 270), + (199822, 91, 270), + (199822, 96, 202), + (199822, 97, 67), + (199822, 95, 67), + (199823, 94, 240), + (199823, 93, 240), + (199823, 92, 275), + (199823, 90, 275), + (199823, 91, 275), + (199823, 96, 206), + (199823, 97, 68), + (199823, 95, 68), + (199824, 94, 244), + (199824, 93, 244), + (199824, 92, 280), + (199824, 90, 280), + (199824, 91, 280), + (199824, 96, 209), + (199824, 97, 69), + (199824, 95, 69), + (199825, 94, 251), + (199825, 93, 251), + (199825, 92, 287), + (199825, 90, 287), + (199825, 91, 287), + (199825, 96, 215), + (199825, 97, 71), + (199825, 95, 71), + (199826, 94, 262), + (199826, 93, 262), + (199826, 92, 300), + (199826, 90, 300), + (199826, 91, 300), + (199826, 96, 224), + (199826, 97, 74), + (199826, 95, 74), + (199827, 94, 272), + (199827, 93, 272), + (199827, 92, 312), + (199827, 90, 312), + (199827, 91, 312), + (199827, 96, 234), + (199827, 97, 78), + (199827, 95, 78), + (199828, 94, 283), + (199828, 93, 283), + (199828, 92, 325), + (199828, 90, 325), + (199828, 91, 325), + (199828, 96, 243), + (199828, 97, 81), + (199828, 95, 81), + (199829, 94, 294), + (199829, 93, 294), + (199829, 92, 338), + (199829, 90, 338), + (199829, 91, 338), + (199829, 96, 252), + (199829, 97, 84), + (199829, 95, 84), + (199830, 94, 305), + (199830, 93, 305), + (199830, 92, 350), + (199830, 90, 350), + (199830, 91, 350), + (199830, 96, 262), + (199830, 97, 87), + (199830, 95, 87), + (199831, 94, 316), + (199831, 93, 316), + (199831, 92, 363), + (199831, 90, 363), + (199831, 91, 363), + (199831, 96, 271), + (199831, 97, 90), + (199831, 95, 90), + (199832, 94, 327), + (199832, 93, 327), + (199832, 92, 375), + (199832, 90, 375), + (199832, 91, 375), + (199832, 96, 280), + (199832, 97, 93), + (199832, 95, 93), + (199833, 94, 338), + (199833, 93, 338), + (199833, 92, 387), + (199833, 90, 387), + (199833, 91, 387), + (199833, 96, 290), + (199833, 97, 96), + (199833, 95, 96), + (199834, 94, 344), + (199834, 93, 344), + (199834, 92, 395), + (199834, 90, 395), + (199834, 91, 395), + (199834, 96, 295), + (199834, 97, 98), + (199834, 95, 98), + (199835, 94, 349), + (199835, 93, 349), + (199835, 92, 400), + (199835, 90, 400), + (199835, 91, 400), + (199835, 96, 299), + (199835, 97, 99), + (199835, 95, 99), + (199836, 94, 355), + (199836, 93, 355), + (199836, 92, 407), + (199836, 90, 407), + (199836, 91, 407), + (199836, 96, 305), + (199836, 97, 101), + (199836, 95, 101), + (199837, 94, 360), + (199837, 93, 360), + (199837, 92, 412), + (199837, 90, 412), + (199837, 91, 412), + (199837, 96, 309), + (199837, 97, 102), + (199837, 95, 102), + (199838, 94, 371), + (199838, 93, 371), + (199838, 92, 425), + (199838, 90, 425), + (199838, 91, 425), + (199838, 96, 318), + (199838, 97, 105), + (199838, 95, 105), + (199839, 94, 382), + (199839, 93, 382), + (199839, 92, 438), + (199839, 90, 438), + (199839, 91, 438), + (199839, 96, 327), + (199839, 97, 108), + (199839, 95, 108), + (199840, 94, 392), + (199840, 93, 392), + (199840, 92, 450), + (199840, 90, 450), + (199840, 91, 450), + (199840, 96, 337), + (199840, 97, 112), + (199840, 95, 112), + (199841, 93, 669), + (199841, 92, 765), + (199841, 91, 765), + (199841, 90, 765), + (199841, 94, 669), + (199841, 95, 191), + (199841, 97, 191), + (199841, 96, 573), + (199842, 93, 682), + (199842, 92, 780), + (199842, 91, 780), + (199842, 90, 780), + (199842, 94, 682), + (199842, 95, 194), + (199842, 97, 194), + (199842, 96, 584), + (199843, 93, 708), + (199843, 92, 810), + (199843, 91, 810), + (199843, 90, 810), + (199843, 94, 708), + (199843, 95, 202), + (199843, 97, 202), + (199843, 96, 607), + (199844, 93, 722), + (199844, 92, 825), + (199844, 91, 825), + (199844, 90, 825), + (199844, 94, 722), + (199844, 95, 206), + (199844, 97, 206), + (199844, 96, 618), + (199845, 93, 735), + (199845, 92, 840), + (199845, 91, 840), + (199845, 90, 840), + (199845, 94, 735), + (199845, 95, 209), + (199845, 97, 209), + (199845, 96, 629), + (199846, 93, 754), + (199846, 92, 862), + (199846, 91, 862), + (199846, 90, 862), + (199846, 94, 754), + (199846, 95, 215), + (199846, 97, 215), + (199846, 96, 646), + (199847, 93, 787), + (199847, 92, 900), + (199847, 91, 900), + (199847, 90, 900), + (199847, 94, 787), + (199847, 95, 224), + (199847, 97, 224), + (199847, 96, 674), + (199848, 93, 820), + (199848, 92, 938), + (199848, 91, 938), + (199848, 90, 938), + (199848, 94, 820), + (199848, 95, 234), + (199848, 97, 234), + (199848, 96, 702), + (199849, 93, 853), + (199849, 92, 975), + (199849, 91, 975), + (199849, 90, 975), + (199849, 94, 853), + (199849, 95, 243), + (199849, 97, 243), + (199849, 96, 731), + (199850, 93, 886), + (199850, 92, 1013), + (199850, 91, 1013), + (199850, 90, 1013), + (199850, 94, 886), + (199850, 95, 252), + (199850, 97, 252), + (199850, 96, 759), + (199851, 93, 918), + (199851, 92, 1050), + (199851, 91, 1050), + (199851, 90, 1050), + (199851, 94, 918), + (199851, 95, 262), + (199851, 97, 262), + (199851, 96, 787), + (199852, 93, 951), + (199852, 92, 1088), + (199852, 91, 1088), + (199852, 90, 1088), + (199852, 94, 951), + (199852, 95, 271), + (199852, 97, 271), + (199852, 96, 815), + (199853, 93, 984), + (199853, 92, 1125), + (199853, 91, 1125), + (199853, 90, 1125), + (199853, 94, 984), + (199853, 95, 280), + (199853, 97, 280), + (199853, 96, 843), + (199854, 93, 1017), + (199854, 92, 1162), + (199854, 91, 1162), + (199854, 90, 1162), + (199854, 94, 1017), + (199854, 95, 290), + (199854, 97, 290), + (199854, 96, 871), + (199855, 93, 1036), + (199855, 92, 1185), + (199855, 91, 1185), + (199855, 90, 1185), + (199855, 94, 1036), + (199855, 95, 295), + (199855, 97, 295), + (199855, 96, 888), + (199856, 93, 1050), + (199856, 92, 1200), + (199856, 91, 1200), + (199856, 90, 1200), + (199856, 94, 1050), + (199856, 95, 299), + (199856, 97, 299), + (199856, 96, 899), + (199857, 93, 1069), + (199857, 92, 1222), + (199857, 91, 1222), + (199857, 90, 1222), + (199857, 94, 1069), + (199857, 95, 305), + (199857, 97, 305), + (199857, 96, 916), + (199858, 93, 1082), + (199858, 92, 1237), + (199858, 91, 1237), + (199858, 90, 1237), + (199858, 94, 1082), + (199858, 95, 309), + (199858, 97, 309), + (199858, 96, 927), + (199859, 93, 1115), + (199859, 92, 1275), + (199859, 91, 1275), + (199859, 90, 1275), + (199859, 94, 1115), + (199859, 95, 318), + (199859, 97, 318), + (199859, 96, 955), + (199860, 93, 1148), + (199860, 92, 1312), + (199860, 91, 1312), + (199860, 90, 1312), + (199860, 94, 1148), + (199860, 95, 327), + (199860, 97, 327), + (199860, 96, 984), + (199861, 93, 1181), + (199861, 92, 1350), + (199861, 91, 1350), + (199861, 90, 1350), + (199861, 94, 1181), + (199861, 95, 337), + (199861, 97, 337), + (199861, 96, 1012), + (199862, 94, 557), + (199862, 93, 557), + (199862, 90, 637), + (199862, 91, 637), + (199862, 92, 637), + (199862, 96, 477), + (199862, 97, 159), + (199862, 95, 159), + (199863, 94, 568), + (199863, 93, 568), + (199863, 90, 650), + (199863, 91, 650), + (199863, 92, 650), + (199863, 96, 487), + (199863, 97, 162), + (199863, 95, 162), + (199864, 94, 590), + (199864, 93, 590), + (199864, 90, 675), + (199864, 91, 675), + (199864, 92, 675), + (199864, 96, 505), + (199864, 97, 168), + (199864, 95, 168), + (199865, 94, 601), + (199865, 93, 601), + (199865, 90, 688), + (199865, 91, 688), + (199865, 92, 688), + (199865, 96, 515), + (199865, 97, 172), + (199865, 95, 172), + (199866, 94, 612), + (199866, 93, 612), + (199866, 90, 700), + (199866, 91, 700), + (199866, 92, 700), + (199866, 96, 524), + (199866, 97, 175), + (199866, 95, 175), + (199867, 94, 628), + (199867, 93, 628), + (199867, 90, 719), + (199867, 91, 719), + (199867, 92, 719), + (199867, 96, 538), + (199867, 97, 179), + (199867, 95, 179), + (199868, 94, 655), + (199868, 93, 655), + (199868, 90, 750), + (199868, 91, 750), + (199868, 92, 750), + (199868, 96, 562), + (199868, 97, 187), + (199868, 95, 187), + (199869, 94, 682), + (199869, 93, 682), + (199869, 90, 781), + (199869, 91, 781), + (199869, 92, 781), + (199869, 96, 585), + (199869, 97, 195), + (199869, 95, 195), + (199870, 94, 710), + (199870, 93, 710), + (199870, 90, 812), + (199870, 91, 812), + (199870, 92, 812), + (199870, 96, 608), + (199870, 97, 203), + (199870, 95, 203), + (199871, 94, 737), + (199871, 93, 737), + (199871, 90, 844), + (199871, 91, 844), + (199871, 92, 844), + (199871, 96, 632), + (199871, 97, 211), + (199871, 95, 211), + (199872, 94, 764), + (199872, 93, 764), + (199872, 90, 875), + (199872, 91, 875), + (199872, 92, 875), + (199872, 96, 655), + (199872, 97, 218), + (199872, 95, 218), + (199873, 94, 792), + (199873, 93, 792), + (199873, 90, 906), + (199873, 91, 906), + (199873, 92, 906), + (199873, 96, 679), + (199873, 97, 226), + (199873, 95, 226), + (199874, 94, 819), + (199874, 93, 819), + (199874, 90, 938), + (199874, 91, 938), + (199874, 92, 938), + (199874, 96, 702), + (199874, 97, 234), + (199874, 95, 234), + (199875, 94, 846), + (199875, 93, 846), + (199875, 90, 969), + (199875, 91, 969), + (199875, 92, 969), + (199875, 96, 725), + (199875, 97, 242), + (199875, 95, 242), + (199876, 94, 863), + (199876, 93, 863), + (199876, 90, 988), + (199876, 91, 988), + (199876, 92, 988), + (199876, 96, 739), + (199876, 97, 246), + (199876, 95, 246), + (199877, 94, 874), + (199877, 93, 874), + (199877, 90, 1000), + (199877, 91, 1000), + (199877, 92, 1000), + (199877, 96, 749), + (199877, 97, 250), + (199877, 95, 250), + (199878, 94, 890), + (199878, 93, 890), + (199878, 90, 1019), + (199878, 91, 1019), + (199878, 92, 1019), + (199878, 96, 763), + (199878, 97, 254), + (199878, 95, 254), + (199879, 94, 901), + (199879, 93, 901), + (199879, 90, 1031), + (199879, 91, 1031), + (199879, 92, 1031), + (199879, 96, 772), + (199879, 97, 257), + (199879, 95, 257), + (199880, 94, 928), + (199880, 93, 928), + (199880, 90, 1063), + (199880, 91, 1063), + (199880, 92, 1063), + (199880, 96, 796), + (199880, 97, 265), + (199880, 95, 265), + (199881, 94, 956), + (199881, 93, 956), + (199881, 90, 1094), + (199881, 91, 1094), + (199881, 92, 1094), + (199881, 96, 819), + (199881, 97, 273), + (199881, 95, 273), + (199882, 94, 983), + (199882, 93, 983), + (199882, 90, 1125), + (199882, 91, 1125), + (199882, 92, 1125), + (199882, 96, 842), + (199882, 97, 281), + (199882, 95, 281), + (199883, 94, 222), + (199883, 93, 222), + (199883, 91, 255), + (199883, 92, 255), + (199883, 90, 255), + (199883, 96, 191), + (199883, 97, 63), + (199883, 95, 63), + (199884, 94, 227), + (199884, 93, 227), + (199884, 91, 260), + (199884, 92, 260), + (199884, 90, 260), + (199884, 96, 194), + (199884, 97, 64), + (199884, 95, 64), + (199885, 94, 235), + (199885, 93, 235), + (199885, 91, 270), + (199885, 92, 270), + (199885, 90, 270), + (199885, 96, 202), + (199885, 97, 67), + (199885, 95, 67), + (199886, 94, 240), + (199886, 93, 240), + (199886, 91, 275), + (199886, 92, 275), + (199886, 90, 275), + (199886, 96, 206), + (199886, 97, 68), + (199886, 95, 68), + (199887, 94, 244), + (199887, 93, 244), + (199887, 91, 280), + (199887, 92, 280), + (199887, 90, 280), + (199887, 96, 209), + (199887, 97, 69), + (199887, 95, 69), + (199888, 94, 251), + (199888, 93, 251), + (199888, 91, 287), + (199888, 92, 287), + (199888, 90, 287), + (199888, 96, 215), + (199888, 97, 71), + (199888, 95, 71), + (199889, 94, 262), + (199889, 93, 262), + (199889, 91, 300), + (199889, 92, 300), + (199889, 90, 300), + (199889, 96, 224), + (199889, 97, 74), + (199889, 95, 74), + (199890, 94, 272), + (199890, 93, 272), + (199890, 91, 312), + (199890, 92, 312), + (199890, 90, 312), + (199890, 96, 234), + (199890, 97, 78), + (199890, 95, 78), + (199891, 94, 283), + (199891, 93, 283), + (199891, 91, 325), + (199891, 92, 325), + (199891, 90, 325), + (199891, 96, 243), + (199891, 97, 81), + (199891, 95, 81), + (199892, 94, 294), + (199892, 93, 294), + (199892, 91, 338), + (199892, 92, 338), + (199892, 90, 338), + (199892, 96, 252), + (199892, 97, 84), + (199892, 95, 84), + (199893, 94, 305), + (199893, 93, 305), + (199893, 91, 350), + (199893, 92, 350), + (199893, 90, 350), + (199893, 96, 262), + (199893, 97, 87), + (199893, 95, 87), + (199894, 94, 316), + (199894, 93, 316), + (199894, 91, 363), + (199894, 92, 363), + (199894, 90, 363), + (199894, 96, 271), + (199894, 97, 90), + (199894, 95, 90), + (199895, 94, 327), + (199895, 93, 327), + (199895, 91, 375), + (199895, 92, 375), + (199895, 90, 375), + (199895, 96, 280), + (199895, 97, 93), + (199895, 95, 93), + (199896, 94, 338), + (199896, 93, 338), + (199896, 91, 387), + (199896, 92, 387), + (199896, 90, 387), + (199896, 96, 290), + (199896, 97, 96), + (199896, 95, 96), + (199897, 94, 344), + (199897, 93, 344), + (199897, 91, 395), + (199897, 92, 395), + (199897, 90, 395), + (199897, 96, 295), + (199897, 97, 98), + (199897, 95, 98), + (199898, 94, 349), + (199898, 93, 349), + (199898, 91, 400), + (199898, 92, 400), + (199898, 90, 400), + (199898, 96, 299), + (199898, 97, 99), + (199898, 95, 99), + (199899, 94, 355), + (199899, 93, 355), + (199899, 91, 407), + (199899, 92, 407), + (199899, 90, 407), + (199899, 96, 305), + (199899, 97, 101), + (199899, 95, 101), + (199900, 94, 360), + (199900, 93, 360), + (199900, 91, 412), + (199900, 92, 412), + (199900, 90, 412), + (199900, 96, 309), + (199900, 97, 102), + (199900, 95, 102), + (199901, 94, 371), + (199901, 93, 371), + (199901, 91, 425), + (199901, 92, 425), + (199901, 90, 425), + (199901, 96, 318), + (199901, 97, 105), + (199901, 95, 105), + (199902, 94, 382), + (199902, 93, 382), + (199902, 91, 438), + (199902, 92, 438), + (199902, 90, 438), + (199902, 96, 327), + (199902, 97, 108), + (199902, 95, 108), + (199903, 94, 392), + (199903, 93, 392), + (199903, 91, 450), + (199903, 92, 450), + (199903, 90, 450), + (199903, 96, 337), + (199903, 97, 112), + (199903, 95, 112), + (199904, 94, 892), + (199904, 93, 892), + (199904, 91, 1020), + (199904, 92, 1020), + (199904, 90, 1020), + (199904, 96, 765), + (199904, 97, 255), + (199904, 95, 255), + (199905, 94, 910), + (199905, 93, 910), + (199905, 91, 1040), + (199905, 92, 1040), + (199905, 90, 1040), + (199905, 96, 780), + (199905, 97, 260), + (199905, 95, 260), + (199906, 94, 945), + (199906, 93, 945), + (199906, 91, 1080), + (199906, 92, 1080), + (199906, 90, 1080), + (199906, 96, 810), + (199906, 97, 270), + (199906, 95, 270), + (199907, 94, 963), + (199907, 93, 963), + (199907, 91, 1100), + (199907, 92, 1100), + (199907, 90, 1100), + (199907, 96, 825), + (199907, 97, 275), + (199907, 95, 275), + (199908, 94, 980), + (199908, 93, 980), + (199908, 91, 1120), + (199908, 92, 1120), + (199908, 90, 1120), + (199908, 96, 840), + (199908, 97, 280), + (199908, 95, 280), + (199909, 94, 1006), + (199909, 93, 1006), + (199909, 91, 1150), + (199909, 92, 1150), + (199909, 90, 1150), + (199909, 96, 862), + (199909, 97, 287), + (199909, 95, 287), + (199910, 94, 1050), + (199910, 93, 1050), + (199910, 91, 1200), + (199910, 92, 1200), + (199910, 90, 1200), + (199910, 96, 900), + (199910, 97, 300), + (199910, 95, 300), + (199911, 94, 1094), + (199911, 93, 1094), + (199911, 91, 1250), + (199911, 92, 1250), + (199911, 90, 1250), + (199911, 96, 938), + (199911, 97, 312), + (199911, 95, 312), + (199912, 94, 1137), + (199912, 93, 1137), + (199912, 91, 1300), + (199912, 92, 1300), + (199912, 90, 1300), + (199912, 96, 975), + (199912, 97, 325), + (199912, 95, 325), + (199913, 94, 1181), + (199913, 93, 1181), + (199913, 91, 1350), + (199913, 92, 1350), + (199913, 90, 1350), + (199913, 96, 1013), + (199913, 97, 338), + (199913, 95, 338), + (199914, 94, 1225), + (199914, 93, 1225), + (199914, 91, 1400), + (199914, 92, 1400), + (199914, 90, 1400), + (199914, 96, 1050), + (199914, 97, 350), + (199914, 95, 350), + (199915, 94, 1269), + (199915, 93, 1269), + (199915, 91, 1450), + (199915, 92, 1450), + (199915, 90, 1450), + (199915, 96, 1088), + (199915, 97, 363), + (199915, 95, 363), + (199916, 94, 1312), + (199916, 93, 1312), + (199916, 91, 1500), + (199916, 92, 1500), + (199916, 90, 1500), + (199916, 96, 1125), + (199916, 97, 375), + (199916, 95, 375), + (199917, 94, 1356), + (199917, 93, 1356), + (199917, 91, 1550), + (199917, 92, 1550), + (199917, 90, 1550), + (199917, 96, 1162), + (199917, 97, 387), + (199917, 95, 387), + (199918, 94, 1383), + (199918, 93, 1383), + (199918, 91, 1580), + (199918, 92, 1580), + (199918, 90, 1580), + (199918, 96, 1185), + (199918, 97, 395), + (199918, 95, 395), + (199919, 94, 1400), + (199919, 93, 1400), + (199919, 91, 1600), + (199919, 92, 1600), + (199919, 90, 1600), + (199919, 96, 1200), + (199919, 97, 400), + (199919, 95, 400), + (199920, 94, 1426), + (199920, 93, 1426), + (199920, 91, 1630), + (199920, 92, 1630), + (199920, 90, 1630), + (199920, 96, 1222), + (199920, 97, 407), + (199920, 95, 407), + (199921, 94, 1444), + (199921, 93, 1444), + (199921, 91, 1650), + (199921, 92, 1650), + (199921, 90, 1650), + (199921, 96, 1237), + (199921, 97, 412), + (199921, 95, 412), + (199922, 94, 1488), + (199922, 93, 1488), + (199922, 91, 1700), + (199922, 92, 1700), + (199922, 90, 1700), + (199922, 96, 1275), + (199922, 97, 425), + (199922, 95, 425), + (199923, 94, 1531), + (199923, 93, 1531), + (199923, 91, 1750), + (199923, 92, 1750), + (199923, 90, 1750), + (199923, 96, 1312), + (199923, 97, 438), + (199923, 95, 438), + (199924, 94, 1575), + (199924, 93, 1575), + (199924, 91, 1800), + (199924, 92, 1800), + (199924, 90, 1800), + (199924, 96, 1350), + (199924, 97, 450), + (199924, 95, 450), + (199925, 94, 335), + (199925, 97, 335), + (199925, 95, 335), + (199925, 92, 382), + (199925, 91, 382), + (199925, 90, 382), + (199925, 96, 335), + (199925, 93, 95), + (199926, 94, 341), + (199926, 97, 341), + (199926, 95, 341), + (199926, 92, 390), + (199926, 91, 390), + (199926, 90, 390), + (199926, 96, 341), + (199926, 93, 97), + (199927, 94, 354), + (199927, 97, 354), + (199927, 95, 354), + (199927, 92, 405), + (199927, 91, 405), + (199927, 90, 405), + (199927, 96, 354), + (199927, 93, 100), + (199928, 94, 361), + (199928, 97, 361), + (199928, 95, 361), + (199928, 92, 413), + (199928, 91, 413), + (199928, 90, 413), + (199928, 96, 361), + (199928, 93, 102), + (199929, 94, 367), + (199929, 97, 367), + (199929, 95, 367), + (199929, 92, 420), + (199929, 91, 420), + (199929, 90, 420), + (199929, 96, 367), + (199929, 93, 104), + (199930, 94, 377), + (199930, 97, 377), + (199930, 95, 377), + (199930, 92, 431), + (199930, 91, 431), + (199930, 90, 431), + (199930, 96, 377), + (199930, 93, 107), + (199931, 94, 394), + (199931, 97, 394), + (199931, 95, 394), + (199931, 92, 450), + (199931, 91, 450), + (199931, 90, 450), + (199931, 96, 394), + (199931, 93, 112), + (199932, 94, 410), + (199932, 97, 410), + (199932, 95, 410), + (199932, 92, 469), + (199932, 91, 469), + (199932, 90, 469), + (199932, 96, 410), + (199932, 93, 116), + (199933, 94, 426), + (199933, 97, 426), + (199933, 95, 426), + (199933, 92, 487), + (199933, 91, 487), + (199933, 90, 487), + (199933, 96, 426), + (199933, 93, 121), + (199934, 94, 443), + (199934, 97, 443), + (199934, 95, 443), + (199934, 92, 506), + (199934, 91, 506), + (199934, 90, 506), + (199934, 96, 443), + (199934, 93, 126), + (199935, 94, 459), + (199935, 97, 459), + (199935, 95, 459), + (199935, 92, 525), + (199935, 91, 525), + (199935, 90, 525), + (199935, 96, 459), + (199935, 93, 130), + (199936, 94, 476), + (199936, 97, 476), + (199936, 95, 476), + (199936, 92, 544), + (199936, 91, 544), + (199936, 90, 544), + (199936, 96, 476), + (199936, 93, 135), + (199937, 94, 492), + (199937, 97, 492), + (199937, 95, 492), + (199937, 92, 562), + (199937, 91, 562), + (199937, 90, 562), + (199937, 96, 492), + (199937, 93, 140), + (199938, 94, 508), + (199938, 97, 508), + (199938, 95, 508), + (199938, 92, 581), + (199938, 91, 581), + (199938, 90, 581), + (199938, 96, 508), + (199938, 93, 144), + (199939, 94, 518), + (199939, 97, 518), + (199939, 95, 518), + (199939, 92, 593), + (199939, 91, 593), + (199939, 90, 593), + (199939, 96, 518), + (199939, 93, 147), + (199940, 94, 525), + (199940, 97, 525), + (199940, 95, 525), + (199940, 92, 600), + (199940, 91, 600), + (199940, 90, 600), + (199940, 96, 525), + (199940, 93, 149), + (199941, 94, 535), + (199941, 97, 535), + (199941, 95, 535), + (199941, 92, 611), + (199941, 91, 611), + (199941, 90, 611), + (199941, 96, 535), + (199941, 93, 152), + (199942, 94, 541), + (199942, 97, 541), + (199942, 95, 541), + (199942, 92, 619), + (199942, 91, 619), + (199942, 90, 619), + (199942, 96, 541), + (199942, 93, 153), + (199943, 94, 558), + (199943, 97, 558), + (199943, 95, 558), + (199943, 92, 638), + (199943, 91, 638), + (199943, 90, 638), + (199943, 96, 558), + (199943, 93, 158), + (199944, 94, 574), + (199944, 97, 574), + (199944, 95, 574), + (199944, 92, 656), + (199944, 91, 656), + (199944, 90, 656), + (199944, 96, 574), + (199944, 93, 163), + (199945, 94, 590), + (199945, 97, 590), + (199945, 95, 590), + (199945, 92, 675), + (199945, 91, 675), + (199945, 90, 675), + (199945, 96, 590), + (199945, 93, 167), + (199946, 94, 222), + (199946, 97, 222), + (199946, 95, 222), + (199946, 90, 255), + (199946, 92, 255), + (199946, 91, 255), + (199946, 96, 222), + (199946, 93, 63), + (199947, 94, 227), + (199947, 97, 227), + (199947, 95, 227), + (199947, 90, 260), + (199947, 92, 260), + (199947, 91, 260), + (199947, 96, 227), + (199947, 93, 64), + (199948, 94, 235), + (199948, 97, 235), + (199948, 95, 235), + (199948, 90, 270), + (199948, 92, 270), + (199948, 91, 270), + (199948, 96, 235), + (199948, 93, 67), + (199949, 94, 240), + (199949, 97, 240), + (199949, 95, 240), + (199949, 90, 275), + (199949, 92, 275), + (199949, 91, 275), + (199949, 96, 240), + (199949, 93, 68), + (199950, 94, 244), + (199950, 97, 244), + (199950, 95, 244), + (199950, 90, 280), + (199950, 92, 280), + (199950, 91, 280), + (199950, 96, 244), + (199950, 93, 69), + (199951, 94, 251), + (199951, 97, 251), + (199951, 95, 251), + (199951, 90, 287), + (199951, 92, 287), + (199951, 91, 287), + (199951, 96, 251), + (199951, 93, 71), + (199952, 94, 262), + (199952, 97, 262), + (199952, 95, 262), + (199952, 90, 300), + (199952, 92, 300), + (199952, 91, 300), + (199952, 96, 262), + (199952, 93, 74), + (199953, 94, 272), + (199953, 97, 272), + (199953, 95, 272), + (199953, 90, 312), + (199953, 92, 312), + (199953, 91, 312), + (199953, 96, 272), + (199953, 93, 78), + (199954, 94, 283), + (199954, 97, 283), + (199954, 95, 283), + (199954, 90, 325), + (199954, 92, 325), + (199954, 91, 325), + (199954, 96, 283), + (199954, 93, 81), + (199955, 94, 294), + (199955, 97, 294), + (199955, 95, 294), + (199955, 90, 338), + (199955, 92, 338), + (199955, 91, 338), + (199955, 96, 294), + (199955, 93, 84), + (199956, 94, 305), + (199956, 97, 305), + (199956, 95, 305), + (199956, 90, 350), + (199956, 92, 350), + (199956, 91, 350), + (199956, 96, 305), + (199956, 93, 87), + (199957, 94, 316), + (199957, 97, 316), + (199957, 95, 316), + (199957, 90, 363), + (199957, 92, 363), + (199957, 91, 363), + (199957, 96, 316), + (199957, 93, 90), + (199958, 94, 327), + (199958, 97, 327), + (199958, 95, 327), + (199958, 90, 375), + (199958, 92, 375), + (199958, 91, 375), + (199958, 96, 327), + (199958, 93, 93), + (199959, 94, 338), + (199959, 97, 338), + (199959, 95, 338), + (199959, 90, 387), + (199959, 92, 387), + (199959, 91, 387), + (199959, 96, 338), + (199959, 93, 96), + (199960, 94, 344), + (199960, 97, 344), + (199960, 95, 344), + (199960, 90, 395), + (199960, 92, 395), + (199960, 91, 395), + (199960, 96, 344), + (199960, 93, 98), + (199961, 94, 349), + (199961, 97, 349), + (199961, 95, 349), + (199961, 90, 400), + (199961, 92, 400), + (199961, 91, 400), + (199961, 96, 349), + (199961, 93, 99), + (199962, 94, 355), + (199962, 97, 355), + (199962, 95, 355), + (199962, 90, 407), + (199962, 92, 407), + (199962, 91, 407), + (199962, 96, 355), + (199962, 93, 101), + (199963, 94, 360), + (199963, 97, 360), + (199963, 95, 360), + (199963, 90, 412), + (199963, 92, 412), + (199963, 91, 412), + (199963, 96, 360), + (199963, 93, 102), + (199964, 94, 371), + (199964, 97, 371), + (199964, 95, 371), + (199964, 90, 425), + (199964, 92, 425), + (199964, 91, 425), + (199964, 96, 371), + (199964, 93, 105), + (199965, 94, 382), + (199965, 97, 382), + (199965, 95, 382), + (199965, 90, 438), + (199965, 92, 438), + (199965, 91, 438), + (199965, 96, 382), + (199965, 93, 108), + (199966, 94, 392), + (199966, 97, 392), + (199966, 95, 392), + (199966, 90, 450), + (199966, 92, 450), + (199966, 91, 450), + (199966, 96, 392), + (199966, 93, 112), + (199967, 95, 669), + (199967, 92, 765), + (199967, 97, 669), + (199967, 91, 765), + (199967, 90, 765), + (199967, 94, 669), + (199967, 93, 191), + (199967, 96, 669), + (199968, 95, 682), + (199968, 92, 780), + (199968, 97, 682), + (199968, 91, 780), + (199968, 90, 780), + (199968, 94, 682), + (199968, 93, 194), + (199968, 96, 682), + (199969, 95, 708), + (199969, 92, 810), + (199969, 97, 708), + (199969, 91, 810), + (199969, 90, 810), + (199969, 94, 708), + (199969, 93, 202), + (199969, 96, 708), + (199970, 95, 722), + (199970, 92, 825), + (199970, 97, 722), + (199970, 91, 825), + (199970, 90, 825), + (199970, 94, 722), + (199970, 93, 206), + (199970, 96, 722), + (199971, 95, 735), + (199971, 92, 840), + (199971, 97, 735), + (199971, 91, 840), + (199971, 90, 840), + (199971, 94, 735), + (199971, 93, 209), + (199971, 96, 735), + (199972, 95, 754), + (199972, 92, 862), + (199972, 97, 754), + (199972, 91, 862), + (199972, 90, 862), + (199972, 94, 754), + (199972, 93, 215), + (199972, 96, 754), + (199973, 95, 787), + (199973, 92, 900), + (199973, 97, 787), + (199973, 91, 900), + (199973, 90, 900), + (199973, 94, 787), + (199973, 93, 224), + (199973, 96, 787), + (199974, 95, 820), + (199974, 92, 938), + (199974, 97, 820), + (199974, 91, 938), + (199974, 90, 938), + (199974, 94, 820), + (199974, 93, 234), + (199974, 96, 820), + (199975, 95, 853), + (199975, 92, 975), + (199975, 97, 853), + (199975, 91, 975), + (199975, 90, 975), + (199975, 94, 853), + (199975, 93, 243), + (199975, 96, 853), + (199976, 95, 886), + (199976, 92, 1013), + (199976, 97, 886), + (199976, 91, 1013), + (199976, 90, 1013), + (199976, 94, 886), + (199976, 93, 252), + (199976, 96, 886), + (199977, 95, 918), + (199977, 92, 1050), + (199977, 97, 918), + (199977, 91, 1050), + (199977, 90, 1050), + (199977, 94, 918), + (199977, 93, 262), + (199977, 96, 918), + (199978, 95, 951), + (199978, 92, 1088), + (199978, 97, 951), + (199978, 91, 1088), + (199978, 90, 1088), + (199978, 94, 951), + (199978, 93, 271), + (199978, 96, 951), + (199979, 95, 984), + (199979, 92, 1125), + (199979, 97, 984), + (199979, 91, 1125), + (199979, 90, 1125), + (199979, 94, 984), + (199979, 93, 280), + (199979, 96, 984), + (199980, 95, 1017), + (199980, 92, 1162), + (199980, 97, 1017), + (199980, 91, 1162), + (199980, 90, 1162), + (199980, 94, 1017), + (199980, 93, 290), + (199980, 96, 1017), + (199981, 95, 1036), + (199981, 92, 1185), + (199981, 97, 1036), + (199981, 91, 1185), + (199981, 90, 1185), + (199981, 94, 1036), + (199981, 93, 295), + (199981, 96, 1036), + (199982, 95, 1050), + (199982, 92, 1200), + (199982, 97, 1050), + (199982, 91, 1200), + (199982, 90, 1200), + (199982, 94, 1050), + (199982, 93, 299), + (199982, 96, 1050), + (199983, 95, 1069), + (199983, 92, 1222), + (199983, 97, 1069), + (199983, 91, 1222), + (199983, 90, 1222), + (199983, 94, 1069), + (199983, 93, 305), + (199983, 96, 1069), + (199984, 95, 1082), + (199984, 92, 1237), + (199984, 97, 1082), + (199984, 91, 1237), + (199984, 90, 1237), + (199984, 94, 1082), + (199984, 93, 309), + (199984, 96, 1082), + (199985, 95, 1115), + (199985, 92, 1275), + (199985, 97, 1115), + (199985, 91, 1275), + (199985, 90, 1275), + (199985, 94, 1115), + (199985, 93, 318), + (199985, 96, 1115), + (199986, 95, 1148), + (199986, 92, 1312), + (199986, 97, 1148), + (199986, 91, 1312), + (199986, 90, 1312), + (199986, 94, 1148), + (199986, 93, 327), + (199986, 96, 1148), + (199987, 95, 1181), + (199987, 92, 1350), + (199987, 97, 1181), + (199987, 91, 1350), + (199987, 90, 1350), + (199987, 94, 1181), + (199987, 93, 337), + (199987, 96, 1181), + (199988, 95, 557), + (199988, 90, 637), + (199988, 92, 637), + (199988, 91, 637), + (199988, 94, 557), + (199988, 97, 557), + (199988, 96, 557), + (199988, 93, 159), + (199989, 94, 568), + (199989, 97, 568), + (199989, 95, 568), + (199989, 90, 650), + (199989, 92, 650), + (199989, 91, 650), + (199989, 96, 568), + (199989, 93, 162), + (199990, 94, 590), + (199990, 97, 590), + (199990, 95, 590), + (199990, 90, 675), + (199990, 92, 675), + (199990, 91, 675), + (199990, 96, 590), + (199990, 93, 168), + (199991, 94, 601), + (199991, 97, 601), + (199991, 95, 601), + (199991, 90, 688), + (199991, 92, 688), + (199991, 91, 688), + (199991, 96, 601), + (199991, 93, 172), + (199992, 94, 612), + (199992, 97, 612), + (199992, 95, 612), + (199992, 90, 700), + (199992, 92, 700), + (199992, 91, 700), + (199992, 96, 612), + (199992, 93, 175), + (199993, 94, 628), + (199993, 97, 628), + (199993, 95, 628), + (199993, 90, 719), + (199993, 92, 719), + (199993, 91, 719), + (199993, 96, 628), + (199993, 93, 179), + (199994, 94, 655), + (199994, 97, 655), + (199994, 95, 655), + (199994, 90, 750), + (199994, 92, 750), + (199994, 91, 750), + (199994, 96, 655), + (199994, 93, 187), + (199995, 94, 682), + (199995, 97, 682), + (199995, 95, 682), + (199995, 90, 781), + (199995, 92, 781), + (199995, 91, 781), + (199995, 96, 682), + (199995, 93, 195), + (199996, 94, 710), + (199996, 97, 710), + (199996, 95, 710), + (199996, 90, 812), + (199996, 92, 812), + (199996, 91, 812), + (199996, 96, 710), + (199996, 93, 203), + (199997, 94, 737), + (199997, 97, 737), + (199997, 95, 737), + (199997, 90, 844), + (199997, 92, 844), + (199997, 91, 844), + (199997, 96, 737), + (199997, 93, 211), + (199998, 94, 764), + (199998, 97, 764), + (199998, 95, 764), + (199998, 90, 875), + (199998, 92, 875), + (199998, 91, 875), + (199998, 96, 764), + (199998, 93, 218), + (199999, 94, 792), + (199999, 97, 792), + (199999, 95, 792), + (199999, 90, 906), + (199999, 92, 906), + (199999, 91, 906), + (199999, 96, 792), + (199999, 93, 226), + (200000, 94, 819), + (200000, 97, 819), + (200000, 95, 819), + (200000, 90, 938), + (200000, 92, 938), + (200000, 91, 938), + (200000, 96, 819), + (200000, 93, 234), + (200001, 94, 846), + (200001, 97, 846), + (200001, 95, 846), + (200001, 90, 969), + (200001, 92, 969), + (200001, 91, 969), + (200001, 96, 846), + (200001, 93, 242), + (200002, 94, 863), + (200002, 97, 863), + (200002, 95, 863), + (200002, 90, 988), + (200002, 92, 988), + (200002, 91, 988), + (200002, 96, 863), + (200002, 93, 246), + (200003, 94, 874), + (200003, 97, 874), + (200003, 95, 874), + (200003, 90, 1000), + (200003, 92, 1000), + (200003, 91, 1000), + (200003, 96, 874), + (200003, 93, 250), + (200004, 94, 890), + (200004, 97, 890), + (200004, 95, 890), + (200004, 90, 1019), + (200004, 92, 1019), + (200004, 91, 1019), + (200004, 96, 890), + (200004, 93, 254), + (200005, 94, 901), + (200005, 97, 901), + (200005, 95, 901), + (200005, 90, 1031), + (200005, 92, 1031), + (200005, 91, 1031), + (200005, 96, 901), + (200005, 93, 257), + (200006, 94, 928), + (200006, 97, 928), + (200006, 95, 928), + (200006, 90, 1063), + (200006, 92, 1063), + (200006, 91, 1063), + (200006, 96, 928), + (200006, 93, 265), + (200007, 94, 956), + (200007, 97, 956), + (200007, 95, 956), + (200007, 90, 1094), + (200007, 92, 1094), + (200007, 91, 1094), + (200007, 96, 956), + (200007, 93, 273), + (200008, 94, 983), + (200008, 97, 983), + (200008, 95, 983), + (200008, 90, 1125), + (200008, 92, 1125), + (200008, 91, 1125), + (200008, 96, 983), + (200008, 93, 281), + (200009, 94, 222), + (200009, 90, 255), + (200009, 92, 255), + (200009, 91, 255), + (200009, 95, 222), + (200009, 97, 222), + (200009, 96, 222), + (200009, 93, 63), + (200010, 94, 227), + (200010, 90, 260), + (200010, 92, 260), + (200010, 91, 260), + (200010, 95, 227), + (200010, 97, 227), + (200010, 96, 227), + (200010, 93, 64), + (200011, 94, 235), + (200011, 90, 270), + (200011, 92, 270), + (200011, 91, 270), + (200011, 95, 235), + (200011, 97, 235), + (200011, 96, 235), + (200011, 93, 67), + (200012, 94, 240), + (200012, 90, 275), + (200012, 92, 275), + (200012, 91, 275), + (200012, 95, 240), + (200012, 97, 240), + (200012, 96, 240), + (200012, 93, 68), + (200013, 94, 244), + (200013, 90, 280), + (200013, 92, 280), + (200013, 91, 280), + (200013, 95, 244), + (200013, 97, 244), + (200013, 96, 244), + (200013, 93, 69), + (200014, 94, 251), + (200014, 90, 287), + (200014, 92, 287), + (200014, 91, 287), + (200014, 95, 251), + (200014, 97, 251), + (200014, 96, 251), + (200014, 93, 71), + (200015, 94, 262), + (200015, 90, 300), + (200015, 92, 300), + (200015, 91, 300), + (200015, 95, 262), + (200015, 97, 262), + (200015, 96, 262), + (200015, 93, 74), + (200016, 94, 272), + (200016, 90, 312), + (200016, 92, 312), + (200016, 91, 312), + (200016, 95, 272), + (200016, 97, 272), + (200016, 96, 272), + (200016, 93, 78), + (200017, 94, 283), + (200017, 90, 325), + (200017, 92, 325), + (200017, 91, 325), + (200017, 95, 283), + (200017, 97, 283), + (200017, 96, 283), + (200017, 93, 81), + (200018, 94, 294), + (200018, 90, 338), + (200018, 92, 338), + (200018, 91, 338), + (200018, 95, 294), + (200018, 97, 294), + (200018, 96, 294), + (200018, 93, 84), + (200019, 94, 305), + (200019, 90, 350), + (200019, 92, 350), + (200019, 91, 350), + (200019, 95, 305), + (200019, 97, 305), + (200019, 96, 305), + (200019, 93, 87), + (200020, 94, 316), + (200020, 90, 363), + (200020, 92, 363), + (200020, 91, 363), + (200020, 95, 316), + (200020, 97, 316), + (200020, 96, 316), + (200020, 93, 90), + (200021, 94, 327), + (200021, 90, 375), + (200021, 92, 375), + (200021, 91, 375), + (200021, 95, 327), + (200021, 97, 327), + (200021, 96, 327), + (200021, 93, 93), + (200022, 94, 338), + (200022, 90, 387), + (200022, 92, 387), + (200022, 91, 387), + (200022, 95, 338), + (200022, 97, 338), + (200022, 96, 338), + (200022, 93, 96), + (200023, 94, 344), + (200023, 90, 395), + (200023, 92, 395), + (200023, 91, 395), + (200023, 95, 344), + (200023, 97, 344), + (200023, 96, 344), + (200023, 93, 98), + (200024, 94, 349), + (200024, 90, 400), + (200024, 92, 400), + (200024, 91, 400), + (200024, 95, 349), + (200024, 97, 349), + (200024, 96, 349), + (200024, 93, 99), + (200025, 94, 355), + (200025, 90, 407), + (200025, 92, 407), + (200025, 91, 407), + (200025, 95, 355), + (200025, 97, 355), + (200025, 96, 355), + (200025, 93, 101), + (200026, 94, 360), + (200026, 90, 412), + (200026, 92, 412), + (200026, 91, 412), + (200026, 95, 360), + (200026, 97, 360), + (200026, 96, 360), + (200026, 93, 102), + (200027, 94, 371), + (200027, 90, 425), + (200027, 92, 425), + (200027, 91, 425), + (200027, 95, 371), + (200027, 97, 371), + (200027, 96, 371), + (200027, 93, 105), + (200028, 94, 382), + (200028, 90, 438), + (200028, 92, 438), + (200028, 91, 438), + (200028, 95, 382), + (200028, 97, 382), + (200028, 96, 382), + (200028, 93, 108), + (200029, 94, 392), + (200029, 90, 450), + (200029, 92, 450), + (200029, 91, 450), + (200029, 95, 392), + (200029, 97, 392), + (200029, 96, 392), + (200029, 93, 112), + (200030, 94, 892), + (200030, 97, 892), + (200030, 95, 892), + (200030, 91, 1020), + (200030, 92, 1020), + (200030, 90, 1020), + (200030, 96, 892), + (200030, 93, 255), + (200031, 94, 910), + (200031, 97, 910), + (200031, 95, 910), + (200031, 91, 1040), + (200031, 92, 1040), + (200031, 90, 1040), + (200031, 96, 910), + (200031, 93, 260), + (200032, 94, 945), + (200032, 97, 945), + (200032, 95, 945), + (200032, 91, 1080), + (200032, 92, 1080), + (200032, 90, 1080), + (200032, 96, 945), + (200032, 93, 270), + (200033, 94, 963), + (200033, 97, 963), + (200033, 95, 963), + (200033, 91, 1100), + (200033, 92, 1100), + (200033, 90, 1100), + (200033, 96, 963), + (200033, 93, 275), + (200034, 94, 980), + (200034, 97, 980), + (200034, 95, 980), + (200034, 91, 1120), + (200034, 92, 1120), + (200034, 90, 1120), + (200034, 96, 980), + (200034, 93, 280), + (200035, 94, 1006), + (200035, 97, 1006), + (200035, 95, 1006), + (200035, 91, 1150), + (200035, 92, 1150), + (200035, 90, 1150), + (200035, 96, 1006), + (200035, 93, 287), + (200036, 94, 1050), + (200036, 97, 1050), + (200036, 95, 1050), + (200036, 91, 1200), + (200036, 92, 1200), + (200036, 90, 1200), + (200036, 96, 1050), + (200036, 93, 300), + (200037, 94, 1094), + (200037, 97, 1094), + (200037, 95, 1094), + (200037, 91, 1250), + (200037, 92, 1250), + (200037, 90, 1250), + (200037, 96, 1094), + (200037, 93, 312), + (200038, 94, 1137), + (200038, 97, 1137), + (200038, 95, 1137), + (200038, 91, 1300), + (200038, 92, 1300), + (200038, 90, 1300), + (200038, 96, 1137), + (200038, 93, 325), + (200039, 94, 1181), + (200039, 97, 1181), + (200039, 95, 1181), + (200039, 91, 1350), + (200039, 92, 1350), + (200039, 90, 1350), + (200039, 96, 1181), + (200039, 93, 338), + (200040, 94, 1225), + (200040, 97, 1225), + (200040, 95, 1225), + (200040, 91, 1400), + (200040, 92, 1400), + (200040, 90, 1400), + (200040, 96, 1225), + (200040, 93, 350), + (200041, 94, 1269), + (200041, 97, 1269), + (200041, 95, 1269), + (200041, 91, 1450), + (200041, 92, 1450), + (200041, 90, 1450), + (200041, 96, 1269), + (200041, 93, 363), + (200042, 94, 1312), + (200042, 97, 1312), + (200042, 95, 1312), + (200042, 91, 1500), + (200042, 92, 1500), + (200042, 90, 1500), + (200042, 96, 1312), + (200042, 93, 375), + (200043, 94, 1356), + (200043, 97, 1356), + (200043, 95, 1356), + (200043, 91, 1550), + (200043, 92, 1550), + (200043, 90, 1550), + (200043, 96, 1356), + (200043, 93, 387), + (200044, 94, 1383), + (200044, 97, 1383), + (200044, 95, 1383), + (200044, 91, 1580), + (200044, 92, 1580), + (200044, 90, 1580), + (200044, 96, 1383), + (200044, 93, 395), + (200045, 94, 1400), + (200045, 97, 1400), + (200045, 95, 1400), + (200045, 91, 1600), + (200045, 92, 1600), + (200045, 90, 1600), + (200045, 96, 1400), + (200045, 93, 400), + (200046, 94, 1426), + (200046, 97, 1426), + (200046, 95, 1426), + (200046, 91, 1630), + (200046, 92, 1630), + (200046, 90, 1630), + (200046, 96, 1426), + (200046, 93, 407), + (200047, 94, 1444), + (200047, 97, 1444), + (200047, 95, 1444), + (200047, 91, 1650), + (200047, 92, 1650), + (200047, 90, 1650), + (200047, 96, 1444), + (200047, 93, 412), + (200048, 94, 1488), + (200048, 97, 1488), + (200048, 95, 1488), + (200048, 91, 1700), + (200048, 92, 1700), + (200048, 90, 1700), + (200048, 96, 1488), + (200048, 93, 425), + (200049, 94, 1531), + (200049, 97, 1531), + (200049, 95, 1531), + (200049, 91, 1750), + (200049, 92, 1750), + (200049, 90, 1750), + (200049, 96, 1531), + (200049, 93, 438), + (200050, 94, 1575), + (200050, 97, 1575), + (200050, 95, 1575), + (200050, 91, 1800), + (200050, 92, 1800), + (200050, 90, 1800), + (200050, 96, 1575), + (200050, 93, 450), + (200051, 93, 153), + (200051, 95, 637), + (200051, 92, 1020), + (200051, 97, 637), + (200051, 91, 1020), + (200051, 96, 765), + (200051, 90, 1020), + (200051, 94, 153), + (200052, 93, 156), + (200052, 95, 650), + (200052, 92, 1040), + (200052, 97, 650), + (200052, 91, 1040), + (200052, 96, 780), + (200052, 90, 1040), + (200052, 94, 156), + (200053, 93, 162), + (200053, 95, 675), + (200053, 92, 1080), + (200053, 97, 675), + (200053, 91, 1080), + (200053, 96, 810), + (200053, 90, 1080), + (200053, 94, 162), + (200054, 93, 165), + (200054, 95, 688), + (200054, 92, 1100), + (200054, 97, 688), + (200054, 91, 1100), + (200054, 96, 825), + (200054, 90, 1100), + (200054, 94, 165), + (200055, 93, 168), + (200055, 95, 700), + (200055, 92, 1120), + (200055, 97, 700), + (200055, 91, 1120), + (200055, 96, 840), + (200055, 90, 1120), + (200055, 94, 168), + (200056, 93, 172), + (200056, 95, 719), + (200056, 92, 1150), + (200056, 97, 719), + (200056, 91, 1150), + (200056, 96, 862), + (200056, 90, 1150), + (200056, 94, 172), + (200057, 93, 180), + (200057, 95, 750), + (200057, 92, 1200), + (200057, 97, 750), + (200057, 91, 1200), + (200057, 96, 900), + (200057, 90, 1200), + (200057, 94, 180), + (200058, 93, 188), + (200058, 95, 781), + (200058, 92, 1250), + (200058, 97, 781), + (200058, 91, 1250), + (200058, 96, 938), + (200058, 90, 1250), + (200058, 94, 188), + (200059, 93, 195), + (200059, 95, 812), + (200059, 92, 1300), + (200059, 97, 812), + (200059, 91, 1300), + (200059, 96, 975), + (200059, 90, 1300), + (200059, 94, 195), + (200060, 93, 203), + (200060, 95, 844), + (200060, 92, 1350), + (200060, 97, 844), + (200060, 91, 1350), + (200060, 96, 1013), + (200060, 90, 1350), + (200060, 94, 203), + (200061, 93, 210), + (200061, 95, 875), + (200061, 92, 1400), + (200061, 97, 875), + (200061, 91, 1400), + (200061, 96, 1050), + (200061, 90, 1400), + (200061, 94, 210), + (200062, 93, 218), + (200062, 95, 906), + (200062, 92, 1450), + (200062, 97, 906), + (200062, 91, 1450), + (200062, 96, 1088), + (200062, 90, 1450), + (200062, 94, 218), + (200063, 93, 225), + (200063, 95, 938), + (200063, 92, 1500), + (200063, 97, 938), + (200063, 91, 1500), + (200063, 96, 1125), + (200063, 90, 1500), + (200063, 94, 225), + (200064, 93, 232), + (200064, 95, 969), + (200064, 92, 1550), + (200064, 97, 969), + (200064, 91, 1550), + (200064, 96, 1162), + (200064, 90, 1550), + (200064, 94, 232), + (200065, 93, 237), + (200065, 95, 988), + (200065, 92, 1580), + (200065, 97, 988), + (200065, 91, 1580), + (200065, 96, 1185), + (200065, 90, 1580), + (200065, 94, 237), + (200066, 93, 240), + (200066, 95, 1000), + (200066, 92, 1600), + (200066, 97, 1000), + (200066, 91, 1600), + (200066, 96, 1200), + (200066, 90, 1600), + (200066, 94, 240), + (200067, 93, 244), + (200067, 95, 1019), + (200067, 92, 1630), + (200067, 97, 1019), + (200067, 91, 1630), + (200067, 96, 1222), + (200067, 90, 1630), + (200067, 94, 244), + (200068, 93, 247), + (200068, 95, 1031), + (200068, 92, 1650), + (200068, 97, 1031), + (200068, 91, 1650), + (200068, 96, 1237), + (200068, 90, 1650), + (200068, 94, 247), + (200069, 93, 255), + (200069, 95, 1063), + (200069, 92, 1700), + (200069, 97, 1063), + (200069, 91, 1700), + (200069, 96, 1275), + (200069, 90, 1700), + (200069, 94, 255), + (200070, 93, 262), + (200070, 95, 1094), + (200070, 92, 1750), + (200070, 97, 1094), + (200070, 91, 1750), + (200070, 96, 1312), + (200070, 90, 1750), + (200070, 94, 262), + (200071, 93, 270), + (200071, 95, 1125), + (200071, 92, 1800), + (200071, 97, 1125), + (200071, 91, 1800), + (200071, 96, 1350), + (200071, 90, 1800), + (200071, 94, 270), + (200072, 94, 57), + (200072, 93, 57), + (200072, 91, 382), + (200072, 92, 382), + (200072, 90, 382), + (200072, 96, 287), + (200072, 97, 239), + (200072, 95, 239), + (200073, 94, 58), + (200073, 93, 58), + (200073, 91, 390), + (200073, 92, 390), + (200073, 90, 390), + (200073, 96, 292), + (200073, 97, 243), + (200073, 95, 243), + (200074, 94, 60), + (200074, 93, 60), + (200074, 91, 405), + (200074, 92, 405), + (200074, 90, 405), + (200074, 96, 303), + (200074, 97, 253), + (200074, 95, 253), + (200075, 94, 62), + (200075, 93, 62), + (200075, 91, 413), + (200075, 92, 413), + (200075, 90, 413), + (200075, 96, 309), + (200075, 97, 257), + (200075, 95, 257), + (200076, 94, 63), + (200076, 93, 63), + (200076, 91, 420), + (200076, 92, 420), + (200076, 90, 420), + (200076, 96, 315), + (200076, 97, 262), + (200076, 95, 262), + (200077, 94, 64), + (200077, 93, 64), + (200077, 91, 431), + (200077, 92, 431), + (200077, 90, 431), + (200077, 96, 323), + (200077, 97, 269), + (200077, 95, 269), + (200078, 94, 67), + (200078, 93, 67), + (200078, 91, 450), + (200078, 92, 450), + (200078, 90, 450), + (200078, 96, 337), + (200078, 97, 281), + (200078, 95, 281), + (200079, 94, 70), + (200079, 93, 70), + (200079, 91, 469), + (200079, 92, 469), + (200079, 90, 469), + (200079, 96, 351), + (200079, 97, 292), + (200079, 95, 292), + (200080, 94, 73), + (200080, 93, 73), + (200080, 91, 487), + (200080, 92, 487), + (200080, 90, 487), + (200080, 96, 365), + (200080, 97, 304), + (200080, 95, 304), + (200081, 94, 76), + (200081, 93, 76), + (200081, 91, 506), + (200081, 92, 506), + (200081, 90, 506), + (200081, 96, 379), + (200081, 97, 316), + (200081, 95, 316), + (200082, 94, 78), + (200082, 93, 78), + (200082, 91, 525), + (200082, 92, 525), + (200082, 90, 525), + (200082, 96, 393), + (200082, 97, 328), + (200082, 95, 328), + (200083, 94, 81), + (200083, 93, 81), + (200083, 91, 544), + (200083, 92, 544), + (200083, 90, 544), + (200083, 96, 407), + (200083, 97, 339), + (200083, 95, 339), + (200084, 94, 84), + (200084, 93, 84), + (200084, 91, 562), + (200084, 92, 562), + (200084, 90, 562), + (200084, 96, 422), + (200084, 97, 351), + (200084, 95, 351), + (200085, 94, 87), + (200085, 93, 87), + (200085, 91, 581), + (200085, 92, 581), + (200085, 90, 581), + (200085, 96, 436), + (200085, 97, 363), + (200085, 95, 363), + (200086, 94, 88), + (200086, 93, 88), + (200086, 91, 593), + (200086, 92, 593), + (200086, 90, 593), + (200086, 96, 444), + (200086, 97, 370), + (200086, 95, 370), + (200087, 94, 90), + (200087, 93, 90), + (200087, 91, 600), + (200087, 92, 600), + (200087, 90, 600), + (200087, 96, 450), + (200087, 97, 374), + (200087, 95, 374), + (200088, 94, 91), + (200088, 93, 91), + (200088, 91, 611), + (200088, 92, 611), + (200088, 90, 611), + (200088, 96, 458), + (200088, 97, 381), + (200088, 95, 381), + (200089, 94, 92), + (200089, 93, 92), + (200089, 91, 619), + (200089, 92, 619), + (200089, 90, 619), + (200089, 96, 464), + (200089, 97, 386), + (200089, 95, 386), + (200090, 94, 95), + (200090, 93, 95), + (200090, 91, 638), + (200090, 92, 638), + (200090, 90, 638), + (200090, 96, 478), + (200090, 97, 398), + (200090, 95, 398), + (200091, 94, 98), + (200091, 93, 98), + (200091, 91, 656), + (200091, 92, 656), + (200091, 90, 656), + (200091, 96, 492), + (200091, 97, 410), + (200091, 95, 410), + (200092, 94, 101), + (200092, 93, 101), + (200092, 91, 675), + (200092, 92, 675), + (200092, 90, 675), + (200092, 96, 506), + (200092, 97, 421), + (200092, 95, 421), + (200093, 94, 38), + (200093, 93, 38), + (200093, 91, 255), + (200093, 92, 255), + (200093, 90, 255), + (200093, 96, 191), + (200093, 97, 159), + (200093, 95, 159), + (200094, 94, 38), + (200094, 93, 38), + (200094, 91, 260), + (200094, 92, 260), + (200094, 90, 260), + (200094, 96, 194), + (200094, 97, 162), + (200094, 95, 162), + (200095, 94, 40), + (200095, 93, 40), + (200095, 91, 270), + (200095, 92, 270), + (200095, 90, 270), + (200095, 96, 202), + (200095, 97, 168), + (200095, 95, 168), + (200096, 94, 41), + (200096, 93, 41), + (200096, 91, 275), + (200096, 92, 275), + (200096, 90, 275), + (200096, 96, 206), + (200096, 97, 172), + (200096, 95, 172), + (200097, 94, 41), + (200097, 93, 41), + (200097, 91, 280), + (200097, 92, 280), + (200097, 90, 280), + (200097, 96, 209), + (200097, 97, 175), + (200097, 95, 175), + (200098, 94, 43), + (200098, 93, 43), + (200098, 91, 287), + (200098, 92, 287), + (200098, 90, 287), + (200098, 96, 215), + (200098, 97, 179), + (200098, 95, 179), + (200099, 94, 44), + (200099, 93, 44), + (200099, 91, 300), + (200099, 92, 300), + (200099, 90, 300), + (200099, 96, 224), + (200099, 97, 187), + (200099, 95, 187), + (200100, 94, 46), + (200100, 93, 46), + (200100, 91, 312), + (200100, 92, 312), + (200100, 90, 312), + (200100, 96, 234), + (200100, 97, 195), + (200100, 95, 195), + (200101, 94, 48), + (200101, 93, 48), + (200101, 91, 325), + (200101, 92, 325), + (200101, 90, 325), + (200101, 96, 243), + (200101, 97, 203), + (200101, 95, 203), + (200102, 94, 50), + (200102, 93, 50), + (200102, 91, 338), + (200102, 92, 338), + (200102, 90, 338), + (200102, 96, 252), + (200102, 97, 211), + (200102, 95, 211), + (200103, 94, 52), + (200103, 93, 52), + (200103, 91, 350), + (200103, 92, 350), + (200103, 90, 350), + (200103, 96, 262), + (200103, 97, 218), + (200103, 95, 218), + (200104, 94, 54), + (200104, 93, 54), + (200104, 91, 363), + (200104, 92, 363), + (200104, 90, 363), + (200104, 96, 271), + (200104, 97, 226), + (200104, 95, 226), + (200105, 94, 56), + (200105, 93, 56), + (200105, 91, 375), + (200105, 92, 375), + (200105, 90, 375), + (200105, 96, 280), + (200105, 97, 234), + (200105, 95, 234), + (200106, 94, 57), + (200106, 93, 57), + (200106, 91, 387), + (200106, 92, 387), + (200106, 90, 387), + (200106, 96, 290), + (200106, 97, 242), + (200106, 95, 242), + (200107, 94, 58), + (200107, 93, 58), + (200107, 91, 395), + (200107, 92, 395), + (200107, 90, 395), + (200107, 96, 295), + (200107, 97, 246), + (200107, 95, 246), + (200108, 94, 59), + (200108, 93, 59), + (200108, 91, 400), + (200108, 92, 400), + (200108, 90, 400), + (200108, 96, 299), + (200108, 97, 250), + (200108, 95, 250), + (200109, 94, 60), + (200109, 93, 60), + (200109, 91, 407), + (200109, 92, 407), + (200109, 90, 407), + (200109, 96, 305), + (200109, 97, 254), + (200109, 95, 254), + (200110, 94, 61), + (200110, 93, 61), + (200110, 91, 412), + (200110, 92, 412), + (200110, 90, 412), + (200110, 96, 309), + (200110, 97, 257), + (200110, 95, 257), + (200111, 94, 63), + (200111, 93, 63), + (200111, 91, 425), + (200111, 92, 425), + (200111, 90, 425), + (200111, 96, 318), + (200111, 97, 265), + (200111, 95, 265), + (200112, 94, 65), + (200112, 93, 65), + (200112, 91, 438), + (200112, 92, 438), + (200112, 90, 438), + (200112, 96, 327), + (200112, 97, 273), + (200112, 95, 273), + (200113, 94, 67), + (200113, 93, 67), + (200113, 91, 450), + (200113, 92, 450), + (200113, 90, 450), + (200113, 96, 337), + (200113, 97, 281), + (200113, 95, 281), + (200114, 93, 114), + (200114, 95, 477), + (200114, 92, 765), + (200114, 97, 477), + (200114, 91, 765), + (200114, 96, 573), + (200114, 90, 765), + (200114, 94, 114), + (200115, 93, 116), + (200115, 95, 487), + (200115, 92, 780), + (200115, 97, 487), + (200115, 91, 780), + (200115, 96, 584), + (200115, 90, 780), + (200115, 94, 116), + (200116, 93, 121), + (200116, 95, 505), + (200116, 92, 810), + (200116, 97, 505), + (200116, 91, 810), + (200116, 96, 607), + (200116, 90, 810), + (200116, 94, 121), + (200117, 93, 123), + (200117, 95, 515), + (200117, 92, 825), + (200117, 97, 515), + (200117, 91, 825), + (200117, 96, 618), + (200117, 90, 825), + (200117, 94, 123), + (200118, 93, 125), + (200118, 95, 524), + (200118, 92, 840), + (200118, 97, 524), + (200118, 91, 840), + (200118, 96, 629), + (200118, 90, 840), + (200118, 94, 125), + (200119, 93, 129), + (200119, 95, 538), + (200119, 92, 862), + (200119, 97, 538), + (200119, 91, 862), + (200119, 96, 646), + (200119, 90, 862), + (200119, 94, 129), + (200120, 93, 134), + (200120, 95, 562), + (200120, 92, 900), + (200120, 97, 562), + (200120, 91, 900), + (200120, 96, 674), + (200120, 90, 900), + (200120, 94, 134), + (200121, 93, 140), + (200121, 95, 585), + (200121, 92, 938), + (200121, 97, 585), + (200121, 91, 938), + (200121, 96, 702), + (200121, 90, 938), + (200121, 94, 140), + (200122, 93, 146), + (200122, 95, 608), + (200122, 92, 975), + (200122, 97, 608), + (200122, 91, 975), + (200122, 96, 731), + (200122, 90, 975), + (200122, 94, 146), + (200123, 93, 151), + (200123, 95, 632), + (200123, 92, 1013), + (200123, 97, 632), + (200123, 91, 1013), + (200123, 96, 759), + (200123, 90, 1013), + (200123, 94, 151), + (200124, 93, 157), + (200124, 95, 655), + (200124, 92, 1050), + (200124, 97, 655), + (200124, 91, 1050), + (200124, 96, 787), + (200124, 90, 1050), + (200124, 94, 157), + (200125, 93, 162), + (200125, 95, 679), + (200125, 92, 1088), + (200125, 97, 679), + (200125, 91, 1088), + (200125, 96, 815), + (200125, 90, 1088), + (200125, 94, 162), + (200126, 93, 168), + (200126, 95, 702), + (200126, 92, 1125), + (200126, 97, 702), + (200126, 91, 1125), + (200126, 96, 843), + (200126, 90, 1125), + (200126, 94, 168), + (200127, 93, 174), + (200127, 95, 725), + (200127, 92, 1162), + (200127, 97, 725), + (200127, 91, 1162), + (200127, 96, 871), + (200127, 90, 1162), + (200127, 94, 174), + (200128, 93, 177), + (200128, 95, 739), + (200128, 92, 1185), + (200128, 97, 739), + (200128, 91, 1185), + (200128, 96, 888), + (200128, 90, 1185), + (200128, 94, 177), + (200129, 93, 179), + (200129, 95, 749), + (200129, 92, 1200), + (200129, 97, 749), + (200129, 91, 1200), + (200129, 96, 899), + (200129, 90, 1200), + (200129, 94, 179), + (200130, 93, 183), + (200130, 95, 763), + (200130, 92, 1222), + (200130, 97, 763), + (200130, 91, 1222), + (200130, 96, 916), + (200130, 90, 1222), + (200130, 94, 183), + (200131, 93, 185), + (200131, 95, 772), + (200131, 92, 1237), + (200131, 97, 772), + (200131, 91, 1237), + (200131, 96, 927), + (200131, 90, 1237), + (200131, 94, 185), + (200132, 93, 190), + (200132, 95, 796), + (200132, 92, 1275), + (200132, 97, 796), + (200132, 91, 1275), + (200132, 96, 955), + (200132, 90, 1275), + (200132, 94, 190), + (200133, 93, 196), + (200133, 95, 819), + (200133, 92, 1312), + (200133, 97, 819), + (200133, 91, 1312), + (200133, 96, 984), + (200133, 90, 1312), + (200133, 94, 196), + (200134, 93, 202), + (200134, 95, 842), + (200134, 92, 1350), + (200134, 97, 842), + (200134, 91, 1350), + (200134, 96, 1012), + (200134, 90, 1350), + (200134, 94, 202), + (200135, 93, 95), + (200135, 95, 398), + (200135, 92, 637), + (200135, 97, 398), + (200135, 91, 637), + (200135, 96, 477), + (200135, 90, 637), + (200135, 94, 95), + (200136, 93, 97), + (200136, 95, 406), + (200136, 92, 650), + (200136, 97, 406), + (200136, 91, 650), + (200136, 96, 487), + (200136, 90, 650), + (200136, 94, 97), + (200137, 93, 100), + (200137, 95, 421), + (200137, 92, 675), + (200137, 97, 421), + (200137, 91, 675), + (200137, 96, 505), + (200137, 90, 675), + (200137, 94, 100), + (200138, 93, 102), + (200138, 95, 429), + (200138, 92, 688), + (200138, 97, 429), + (200138, 91, 688), + (200138, 96, 515), + (200138, 90, 688), + (200138, 94, 102), + (200139, 93, 104), + (200139, 95, 437), + (200139, 92, 700), + (200139, 97, 437), + (200139, 91, 700), + (200139, 96, 524), + (200139, 90, 700), + (200139, 94, 104), + (200140, 93, 107), + (200140, 95, 448), + (200140, 92, 719), + (200140, 97, 448), + (200140, 91, 719), + (200140, 96, 538), + (200140, 90, 719), + (200140, 94, 107), + (200141, 93, 112), + (200141, 95, 468), + (200141, 92, 750), + (200141, 97, 468), + (200141, 91, 750), + (200141, 96, 562), + (200141, 90, 750), + (200141, 94, 112), + (200142, 93, 116), + (200142, 95, 488), + (200142, 92, 781), + (200142, 97, 488), + (200142, 91, 781), + (200142, 96, 585), + (200142, 90, 781), + (200142, 94, 116), + (200143, 93, 121), + (200143, 95, 507), + (200143, 92, 812), + (200143, 97, 507), + (200143, 91, 812), + (200143, 96, 608), + (200143, 90, 812), + (200143, 94, 121), + (200144, 93, 126), + (200144, 95, 527), + (200144, 92, 844), + (200144, 97, 527), + (200144, 91, 844), + (200144, 96, 632), + (200144, 90, 844), + (200144, 94, 126), + (200145, 93, 130), + (200145, 95, 546), + (200145, 92, 875), + (200145, 97, 546), + (200145, 91, 875), + (200145, 96, 655), + (200145, 90, 875), + (200145, 94, 130), + (200146, 93, 135), + (200146, 95, 566), + (200146, 92, 906), + (200146, 97, 566), + (200146, 91, 906), + (200146, 96, 679), + (200146, 90, 906), + (200146, 94, 135), + (200147, 93, 140), + (200147, 95, 585), + (200147, 92, 938), + (200147, 97, 585), + (200147, 91, 938), + (200147, 96, 702), + (200147, 90, 938), + (200147, 94, 140), + (200148, 93, 144), + (200148, 95, 604), + (200148, 92, 969), + (200148, 97, 604), + (200148, 91, 969), + (200148, 96, 725), + (200148, 90, 969), + (200148, 94, 144), + (200149, 93, 147), + (200149, 95, 616), + (200149, 92, 988), + (200149, 97, 616), + (200149, 91, 988), + (200149, 96, 739), + (200149, 90, 988), + (200149, 94, 147), + (200150, 93, 149), + (200150, 95, 624), + (200150, 92, 1000), + (200150, 97, 624), + (200150, 91, 1000), + (200150, 96, 749), + (200150, 90, 1000), + (200150, 94, 149), + (200151, 93, 152), + (200151, 95, 636), + (200151, 92, 1019), + (200151, 97, 636), + (200151, 91, 1019), + (200151, 96, 763), + (200151, 90, 1019), + (200151, 94, 152), + (200152, 93, 153), + (200152, 95, 643), + (200152, 92, 1031), + (200152, 97, 643), + (200152, 91, 1031), + (200152, 96, 772), + (200152, 90, 1031), + (200152, 94, 153), + (200153, 93, 158), + (200153, 95, 663), + (200153, 92, 1063), + (200153, 97, 663), + (200153, 91, 1063), + (200153, 96, 796), + (200153, 90, 1063), + (200153, 94, 158), + (200154, 93, 163), + (200154, 95, 682), + (200154, 92, 1094), + (200154, 97, 682), + (200154, 91, 1094), + (200154, 96, 819), + (200154, 90, 1094), + (200154, 94, 163), + (200155, 93, 167), + (200155, 95, 702), + (200155, 92, 1125), + (200155, 97, 702), + (200155, 91, 1125), + (200155, 96, 842), + (200155, 90, 1125), + (200155, 94, 167), + (200156, 94, 38), + (200156, 93, 38), + (200156, 91, 255), + (200156, 92, 255), + (200156, 90, 255), + (200156, 96, 191), + (200156, 97, 159), + (200156, 95, 159), + (200157, 94, 38), + (200157, 93, 38), + (200157, 91, 260), + (200157, 92, 260), + (200157, 90, 260), + (200157, 96, 194), + (200157, 97, 162), + (200157, 95, 162), + (200158, 94, 40), + (200158, 93, 40), + (200158, 91, 270), + (200158, 92, 270), + (200158, 90, 270), + (200158, 96, 202), + (200158, 97, 168), + (200158, 95, 168), + (200159, 94, 41), + (200159, 93, 41), + (200159, 91, 275), + (200159, 92, 275), + (200159, 90, 275), + (200159, 96, 206), + (200159, 97, 172), + (200159, 95, 172), + (200160, 94, 41), + (200160, 93, 41), + (200160, 91, 280), + (200160, 92, 280), + (200160, 90, 280), + (200160, 96, 209), + (200160, 97, 175), + (200160, 95, 175), + (200161, 94, 43), + (200161, 93, 43), + (200161, 91, 287), + (200161, 92, 287), + (200161, 90, 287), + (200161, 96, 215), + (200161, 97, 179), + (200161, 95, 179), + (200162, 94, 44), + (200162, 93, 44), + (200162, 91, 300), + (200162, 92, 300), + (200162, 90, 300), + (200162, 96, 224), + (200162, 97, 187), + (200162, 95, 187), + (200163, 94, 46), + (200163, 93, 46), + (200163, 91, 312), + (200163, 92, 312), + (200163, 90, 312), + (200163, 96, 234), + (200163, 97, 195), + (200163, 95, 195), + (200164, 94, 48), + (200164, 93, 48), + (200164, 91, 325), + (200164, 92, 325), + (200164, 90, 325), + (200164, 96, 243), + (200164, 97, 203), + (200164, 95, 203), + (200165, 94, 50), + (200165, 93, 50), + (200165, 91, 338), + (200165, 92, 338), + (200165, 90, 338), + (200165, 96, 252), + (200165, 97, 211), + (200165, 95, 211), + (200166, 94, 52), + (200166, 93, 52), + (200166, 91, 350), + (200166, 92, 350), + (200166, 90, 350), + (200166, 96, 262), + (200166, 97, 218), + (200166, 95, 218), + (200167, 94, 54), + (200167, 93, 54), + (200167, 91, 363), + (200167, 92, 363), + (200167, 90, 363), + (200167, 96, 271), + (200167, 97, 226), + (200167, 95, 226), + (200168, 94, 56), + (200168, 93, 56), + (200168, 91, 375), + (200168, 92, 375), + (200168, 90, 375), + (200168, 96, 280), + (200168, 97, 234), + (200168, 95, 234), + (200169, 94, 57), + (200169, 93, 57), + (200169, 91, 387), + (200169, 92, 387), + (200169, 90, 387), + (200169, 96, 290), + (200169, 97, 242), + (200169, 95, 242), + (200170, 94, 58), + (200170, 93, 58), + (200170, 91, 395), + (200170, 92, 395), + (200170, 90, 395), + (200170, 96, 295), + (200170, 97, 246), + (200170, 95, 246), + (200171, 94, 59), + (200171, 93, 59), + (200171, 91, 400), + (200171, 92, 400), + (200171, 90, 400), + (200171, 96, 299), + (200171, 97, 250), + (200171, 95, 250), + (200172, 94, 60), + (200172, 93, 60), + (200172, 91, 407), + (200172, 92, 407), + (200172, 90, 407), + (200172, 96, 305), + (200172, 97, 254), + (200172, 95, 254), + (200173, 94, 61), + (200173, 93, 61), + (200173, 91, 412), + (200173, 92, 412), + (200173, 90, 412), + (200173, 96, 309), + (200173, 97, 257), + (200173, 95, 257), + (200174, 94, 63), + (200174, 93, 63), + (200174, 91, 425), + (200174, 92, 425), + (200174, 90, 425), + (200174, 96, 318), + (200174, 97, 265), + (200174, 95, 265), + (200175, 94, 65), + (200175, 93, 65), + (200175, 91, 438), + (200175, 92, 438), + (200175, 90, 438), + (200175, 96, 327), + (200175, 97, 273), + (200175, 95, 273), + (200176, 94, 67), + (200176, 93, 67), + (200176, 91, 450), + (200176, 92, 450), + (200176, 90, 450), + (200176, 96, 337), + (200176, 97, 281), + (200176, 95, 281), + (200177, 91, 1020), + (200177, 92, 1020), + (200177, 93, 153), + (200177, 94, 153), + (200177, 90, 1020), + (200177, 96, 765), + (200177, 97, 637), + (200177, 95, 637), + (200178, 91, 1040), + (200178, 92, 1040), + (200178, 93, 156), + (200178, 94, 156), + (200178, 90, 1040), + (200178, 96, 780), + (200178, 97, 650), + (200178, 95, 650), + (200179, 91, 1080), + (200179, 92, 1080), + (200179, 93, 162), + (200179, 94, 162), + (200179, 90, 1080), + (200179, 96, 810), + (200179, 97, 675), + (200179, 95, 675), + (200180, 91, 1100), + (200180, 92, 1100), + (200180, 93, 165), + (200180, 94, 165), + (200180, 90, 1100), + (200180, 96, 825), + (200180, 97, 688), + (200180, 95, 688), + (200181, 91, 1120), + (200181, 92, 1120), + (200181, 93, 168), + (200181, 94, 168), + (200181, 90, 1120), + (200181, 96, 840), + (200181, 97, 700), + (200181, 95, 700), + (200182, 91, 1150), + (200182, 92, 1150), + (200182, 93, 172), + (200182, 94, 172), + (200182, 90, 1150), + (200182, 96, 862), + (200182, 97, 719), + (200182, 95, 719), + (200183, 91, 1200), + (200183, 92, 1200), + (200183, 93, 180), + (200183, 94, 180), + (200183, 90, 1200), + (200183, 96, 900), + (200183, 97, 750), + (200183, 95, 750), + (200184, 91, 1250), + (200184, 92, 1250), + (200184, 93, 188), + (200184, 94, 188), + (200184, 90, 1250), + (200184, 96, 938), + (200184, 97, 781), + (200184, 95, 781), + (200185, 91, 1300), + (200185, 92, 1300), + (200185, 93, 195), + (200185, 94, 195), + (200185, 90, 1300), + (200185, 96, 975), + (200185, 97, 812), + (200185, 95, 812), + (200186, 91, 1350), + (200186, 92, 1350), + (200186, 93, 203), + (200186, 94, 203), + (200186, 90, 1350), + (200186, 96, 1013), + (200186, 97, 844), + (200186, 95, 844), + (200187, 91, 1400), + (200187, 92, 1400), + (200187, 93, 210), + (200187, 94, 210), + (200187, 90, 1400), + (200187, 96, 1050), + (200187, 97, 875), + (200187, 95, 875), + (200188, 91, 1450), + (200188, 92, 1450), + (200188, 93, 218), + (200188, 94, 218), + (200188, 90, 1450), + (200188, 96, 1088), + (200188, 97, 906), + (200188, 95, 906), + (200189, 91, 1500), + (200189, 92, 1500), + (200189, 93, 225), + (200189, 94, 225), + (200189, 90, 1500), + (200189, 96, 1125), + (200189, 97, 938), + (200189, 95, 938), + (200190, 91, 1550), + (200190, 92, 1550), + (200190, 93, 232), + (200190, 94, 232), + (200190, 90, 1550), + (200190, 96, 1162), + (200190, 97, 969), + (200190, 95, 969), + (200191, 91, 1580), + (200191, 92, 1580), + (200191, 93, 237), + (200191, 94, 237), + (200191, 90, 1580), + (200191, 96, 1185), + (200191, 97, 988), + (200191, 95, 988), + (200192, 91, 1600), + (200192, 92, 1600), + (200192, 93, 240), + (200192, 94, 240), + (200192, 90, 1600), + (200192, 96, 1200), + (200192, 97, 1000), + (200192, 95, 1000), + (200193, 91, 1630), + (200193, 92, 1630), + (200193, 93, 244), + (200193, 94, 244), + (200193, 90, 1630), + (200193, 96, 1222), + (200193, 97, 1019), + (200193, 95, 1019), + (200194, 91, 1650), + (200194, 92, 1650), + (200194, 93, 247), + (200194, 94, 247), + (200194, 90, 1650), + (200194, 96, 1237), + (200194, 97, 1031), + (200194, 95, 1031), + (200195, 91, 1700), + (200195, 92, 1700), + (200195, 93, 255), + (200195, 94, 255), + (200195, 90, 1700), + (200195, 96, 1275), + (200195, 97, 1063), + (200195, 95, 1063), + (200196, 91, 1750), + (200196, 92, 1750), + (200196, 93, 262), + (200196, 94, 262), + (200196, 90, 1750), + (200196, 96, 1312), + (200196, 97, 1094), + (200196, 95, 1094), + (200197, 91, 1800), + (200197, 92, 1800), + (200197, 93, 270), + (200197, 94, 270), + (200197, 90, 1800), + (200197, 96, 1350), + (200197, 97, 1125), + (200197, 95, 1125), + (200198, 96, 76), + (200198, 93, 76), + (200198, 97, 76), + (200198, 94, 335), + (200198, 95, 382), + (200198, 91, 382), + (200198, 92, 335), + (200198, 90, 382), + (200199, 96, 78), + (200199, 93, 78), + (200199, 97, 78), + (200199, 94, 341), + (200199, 95, 390), + (200199, 91, 390), + (200199, 92, 341), + (200199, 90, 390), + (200200, 96, 81), + (200200, 93, 81), + (200200, 97, 81), + (200200, 94, 354), + (200200, 95, 405), + (200200, 91, 405), + (200200, 92, 354), + (200200, 90, 405), + (200201, 96, 83), + (200201, 93, 83), + (200201, 97, 83), + (200201, 94, 361), + (200201, 95, 413), + (200201, 91, 413), + (200201, 92, 361), + (200201, 90, 413), + (200202, 96, 84), + (200202, 93, 84), + (200202, 97, 84), + (200202, 94, 367), + (200202, 95, 420), + (200202, 91, 420), + (200202, 92, 367), + (200202, 90, 420), + (200203, 96, 86), + (200203, 93, 86), + (200203, 97, 86), + (200203, 94, 377), + (200203, 95, 431), + (200203, 91, 431), + (200203, 92, 377), + (200203, 90, 431), + (200204, 96, 90), + (200204, 93, 90), + (200204, 97, 90), + (200204, 94, 394), + (200204, 95, 450), + (200204, 91, 450), + (200204, 92, 394), + (200204, 90, 450), + (200205, 96, 94), + (200205, 93, 94), + (200205, 97, 94), + (200205, 94, 410), + (200205, 95, 469), + (200205, 91, 469), + (200205, 92, 410), + (200205, 90, 469), + (200206, 96, 97), + (200206, 93, 97), + (200206, 97, 97), + (200206, 94, 426), + (200206, 95, 487), + (200206, 91, 487), + (200206, 92, 426), + (200206, 90, 487), + (200207, 96, 101), + (200207, 93, 101), + (200207, 97, 101), + (200207, 94, 443), + (200207, 95, 506), + (200207, 91, 506), + (200207, 92, 443), + (200207, 90, 506), + (200208, 96, 105), + (200208, 93, 105), + (200208, 97, 105), + (200208, 94, 459), + (200208, 95, 525), + (200208, 91, 525), + (200208, 92, 459), + (200208, 90, 525), + (200209, 96, 109), + (200209, 93, 109), + (200209, 97, 109), + (200209, 94, 476), + (200209, 95, 544), + (200209, 91, 544), + (200209, 92, 476), + (200209, 90, 544), + (200210, 96, 112), + (200210, 93, 112), + (200210, 97, 112), + (200210, 94, 492), + (200210, 95, 562), + (200210, 91, 562), + (200210, 92, 492), + (200210, 90, 562), + (200211, 96, 116), + (200211, 93, 116), + (200211, 97, 116), + (200211, 94, 508), + (200211, 95, 581), + (200211, 91, 581), + (200211, 92, 508), + (200211, 90, 581), + (200212, 96, 119), + (200212, 93, 119), + (200212, 97, 119), + (200212, 94, 518), + (200212, 95, 593), + (200212, 91, 593), + (200212, 92, 518), + (200212, 90, 593), + (200213, 96, 120), + (200213, 93, 120), + (200213, 97, 120), + (200213, 94, 525), + (200213, 95, 600), + (200213, 91, 600), + (200213, 92, 525), + (200213, 90, 600), + (200214, 96, 122), + (200214, 93, 122), + (200214, 97, 122), + (200214, 94, 535), + (200214, 95, 611), + (200214, 91, 611), + (200214, 92, 535), + (200214, 90, 611), + (200215, 96, 124), + (200215, 93, 124), + (200215, 97, 124), + (200215, 94, 541), + (200215, 95, 619), + (200215, 91, 619), + (200215, 92, 541), + (200215, 90, 619), + (200216, 96, 128), + (200216, 93, 128), + (200216, 97, 128), + (200216, 94, 558), + (200216, 95, 638), + (200216, 91, 638), + (200216, 92, 558), + (200216, 90, 638), + (200217, 96, 131), + (200217, 93, 131), + (200217, 97, 131), + (200217, 94, 574), + (200217, 95, 656), + (200217, 91, 656), + (200217, 92, 574), + (200217, 90, 656), + (200218, 96, 135), + (200218, 93, 135), + (200218, 97, 135), + (200218, 94, 590), + (200218, 95, 675), + (200218, 91, 675), + (200218, 92, 590), + (200218, 90, 675), + (200219, 96, 51), + (200219, 93, 51), + (200219, 97, 51), + (200219, 94, 222), + (200219, 92, 222), + (200219, 91, 255), + (200219, 95, 255), + (200219, 90, 255), + (200220, 96, 52), + (200220, 93, 52), + (200220, 97, 52), + (200220, 94, 227), + (200220, 92, 227), + (200220, 91, 260), + (200220, 95, 260), + (200220, 90, 260), + (200221, 96, 54), + (200221, 93, 54), + (200221, 97, 54), + (200221, 94, 235), + (200221, 92, 235), + (200221, 91, 270), + (200221, 95, 270), + (200221, 90, 270), + (200222, 96, 55), + (200222, 93, 55), + (200222, 97, 55), + (200222, 94, 240), + (200222, 92, 240), + (200222, 91, 275), + (200222, 95, 275), + (200222, 90, 275), + (200223, 96, 56), + (200223, 93, 56), + (200223, 97, 56), + (200223, 94, 244), + (200223, 92, 244), + (200223, 91, 280), + (200223, 95, 280), + (200223, 90, 280), + (200224, 96, 57), + (200224, 93, 57), + (200224, 97, 57), + (200224, 94, 251), + (200224, 92, 251), + (200224, 91, 287), + (200224, 95, 287), + (200224, 90, 287), + (200225, 96, 60), + (200225, 93, 60), + (200225, 97, 60), + (200225, 94, 262), + (200225, 92, 262), + (200225, 91, 300), + (200225, 95, 300), + (200225, 90, 300), + (200226, 96, 62), + (200226, 93, 62), + (200226, 97, 62), + (200226, 94, 272), + (200226, 92, 272), + (200226, 91, 312), + (200226, 95, 312), + (200226, 90, 312), + (200227, 96, 65), + (200227, 93, 65), + (200227, 97, 65), + (200227, 94, 283), + (200227, 92, 283), + (200227, 91, 325), + (200227, 95, 325), + (200227, 90, 325), + (200228, 96, 68), + (200228, 93, 68), + (200228, 97, 68), + (200228, 94, 294), + (200228, 92, 294), + (200228, 91, 338), + (200228, 95, 338), + (200228, 90, 338), + (200229, 96, 70), + (200229, 93, 70), + (200229, 97, 70), + (200229, 94, 305), + (200229, 92, 305), + (200229, 91, 350), + (200229, 95, 350), + (200229, 90, 350), + (200230, 96, 73), + (200230, 93, 73), + (200230, 97, 73), + (200230, 94, 316), + (200230, 92, 316), + (200230, 91, 363), + (200230, 95, 363), + (200230, 90, 363), + (200231, 96, 75), + (200231, 93, 75), + (200231, 97, 75), + (200231, 94, 327), + (200231, 92, 327), + (200231, 91, 375), + (200231, 95, 375), + (200231, 90, 375), + (200232, 96, 77), + (200232, 93, 77), + (200232, 97, 77), + (200232, 94, 338), + (200232, 92, 338), + (200232, 91, 387), + (200232, 95, 387), + (200232, 90, 387), + (200233, 96, 79), + (200233, 93, 79), + (200233, 97, 79), + (200233, 94, 344), + (200233, 92, 344), + (200233, 91, 395), + (200233, 95, 395), + (200233, 90, 395), + (200234, 96, 80), + (200234, 93, 80), + (200234, 97, 80), + (200234, 94, 349), + (200234, 92, 349), + (200234, 91, 400), + (200234, 95, 400), + (200234, 90, 400), + (200235, 96, 81), + (200235, 93, 81), + (200235, 97, 81), + (200235, 94, 355), + (200235, 92, 355), + (200235, 91, 407), + (200235, 95, 407), + (200235, 90, 407), + (200236, 96, 82), + (200236, 93, 82), + (200236, 97, 82), + (200236, 94, 360), + (200236, 92, 360), + (200236, 91, 412), + (200236, 95, 412), + (200236, 90, 412), + (200237, 96, 85), + (200237, 93, 85), + (200237, 97, 85), + (200237, 94, 371), + (200237, 92, 371), + (200237, 91, 425), + (200237, 95, 425), + (200237, 90, 425), + (200238, 96, 88), + (200238, 93, 88), + (200238, 97, 88), + (200238, 94, 382), + (200238, 92, 382), + (200238, 91, 438), + (200238, 95, 438), + (200238, 90, 438), + (200239, 96, 90), + (200239, 93, 90), + (200239, 97, 90), + (200239, 94, 392), + (200239, 92, 392), + (200239, 91, 450), + (200239, 95, 450), + (200239, 90, 450), + (200240, 93, 153), + (200240, 95, 765), + (200240, 92, 669), + (200240, 97, 153), + (200240, 91, 765), + (200240, 96, 153), + (200240, 90, 765), + (200240, 94, 669), + (200241, 93, 156), + (200241, 95, 780), + (200241, 92, 682), + (200241, 97, 156), + (200241, 91, 780), + (200241, 96, 156), + (200241, 90, 780), + (200241, 94, 682), + (200242, 93, 162), + (200242, 95, 810), + (200242, 92, 708), + (200242, 97, 162), + (200242, 91, 810), + (200242, 96, 162), + (200242, 90, 810), + (200242, 94, 708), + (200243, 93, 165), + (200243, 95, 825), + (200243, 92, 722), + (200243, 97, 165), + (200243, 91, 825), + (200243, 96, 165), + (200243, 90, 825), + (200243, 94, 722), + (200244, 93, 168), + (200244, 95, 840), + (200244, 92, 735), + (200244, 97, 168), + (200244, 91, 840), + (200244, 96, 168), + (200244, 90, 840), + (200244, 94, 735), + (200245, 93, 172), + (200245, 95, 862), + (200245, 92, 754), + (200245, 97, 172), + (200245, 91, 862), + (200245, 96, 172), + (200245, 90, 862), + (200245, 94, 754), + (200246, 93, 180), + (200246, 95, 900), + (200246, 92, 787), + (200246, 97, 180), + (200246, 91, 900), + (200246, 96, 180), + (200246, 90, 900), + (200246, 94, 787), + (200247, 93, 188), + (200247, 95, 938), + (200247, 92, 820), + (200247, 97, 188), + (200247, 91, 938), + (200247, 96, 188), + (200247, 90, 938), + (200247, 94, 820), + (200248, 93, 195), + (200248, 95, 975), + (200248, 92, 853), + (200248, 97, 195), + (200248, 91, 975), + (200248, 96, 195), + (200248, 90, 975), + (200248, 94, 853), + (200249, 93, 203), + (200249, 95, 1013), + (200249, 92, 886), + (200249, 97, 203), + (200249, 91, 1013), + (200249, 96, 203), + (200249, 90, 1013), + (200249, 94, 886), + (200250, 93, 210), + (200250, 95, 1050), + (200250, 92, 918), + (200250, 97, 210), + (200250, 91, 1050), + (200250, 96, 210), + (200250, 90, 1050), + (200250, 94, 918), + (200251, 93, 218), + (200251, 95, 1088), + (200251, 92, 951), + (200251, 97, 218), + (200251, 91, 1088), + (200251, 96, 218), + (200251, 90, 1088), + (200251, 94, 951), + (200252, 93, 225), + (200252, 95, 1125), + (200252, 92, 984), + (200252, 97, 225), + (200252, 91, 1125), + (200252, 96, 225), + (200252, 90, 1125), + (200252, 94, 984), + (200253, 93, 232), + (200253, 95, 1162), + (200253, 92, 1017), + (200253, 97, 232), + (200253, 91, 1162), + (200253, 96, 232), + (200253, 90, 1162), + (200253, 94, 1017), + (200254, 93, 237), + (200254, 95, 1185), + (200254, 92, 1036), + (200254, 97, 237), + (200254, 91, 1185), + (200254, 96, 237), + (200254, 90, 1185), + (200254, 94, 1036), + (200255, 93, 240), + (200255, 95, 1200), + (200255, 92, 1050), + (200255, 97, 240), + (200255, 91, 1200), + (200255, 96, 240), + (200255, 90, 1200), + (200255, 94, 1050), + (200256, 93, 244), + (200256, 95, 1222), + (200256, 92, 1069), + (200256, 97, 244), + (200256, 91, 1222), + (200256, 96, 244), + (200256, 90, 1222), + (200256, 94, 1069), + (200257, 93, 247), + (200257, 95, 1237), + (200257, 92, 1082), + (200257, 97, 247), + (200257, 91, 1237), + (200257, 96, 247), + (200257, 90, 1237), + (200257, 94, 1082), + (200258, 93, 255), + (200258, 95, 1275), + (200258, 92, 1115), + (200258, 97, 255), + (200258, 91, 1275), + (200258, 96, 255), + (200258, 90, 1275), + (200258, 94, 1115), + (200259, 93, 262), + (200259, 95, 1312), + (200259, 92, 1148), + (200259, 97, 262), + (200259, 91, 1312), + (200259, 96, 262), + (200259, 90, 1312), + (200259, 94, 1148), + (200260, 93, 270), + (200260, 95, 1350), + (200260, 92, 1181), + (200260, 97, 270), + (200260, 91, 1350), + (200260, 96, 270), + (200260, 90, 1350), + (200260, 94, 1181), + (200261, 96, 127), + (200261, 93, 127), + (200261, 97, 127), + (200261, 94, 557), + (200261, 90, 637), + (200261, 95, 637), + (200261, 91, 637), + (200261, 92, 557), + (200262, 96, 130), + (200262, 93, 130), + (200262, 97, 130), + (200262, 94, 568), + (200262, 90, 650), + (200262, 95, 650), + (200262, 91, 650), + (200262, 92, 568), + (200263, 96, 135), + (200263, 93, 135), + (200263, 97, 135), + (200263, 94, 590), + (200263, 90, 675), + (200263, 95, 675), + (200263, 91, 675), + (200263, 92, 590), + (200264, 96, 138), + (200264, 93, 138), + (200264, 97, 138), + (200264, 94, 601), + (200264, 90, 688), + (200264, 95, 688), + (200264, 91, 688), + (200264, 92, 601), + (200265, 96, 140), + (200265, 93, 140), + (200265, 97, 140), + (200265, 94, 612), + (200265, 90, 700), + (200265, 95, 700), + (200265, 91, 700), + (200265, 92, 612), + (200266, 94, 628), + (200266, 90, 719), + (200266, 95, 719), + (200266, 91, 719), + (200266, 92, 628), + (200266, 96, 144), + (200266, 93, 144), + (200266, 97, 144), + (200267, 96, 150), + (200267, 93, 150), + (200267, 97, 150), + (200267, 94, 655), + (200267, 90, 750), + (200267, 95, 750), + (200267, 91, 750), + (200267, 92, 655), + (200268, 96, 156), + (200268, 93, 156), + (200268, 97, 156), + (200268, 94, 682), + (200268, 90, 781), + (200268, 95, 781), + (200268, 91, 781), + (200268, 92, 682), + (200269, 96, 162), + (200269, 93, 162), + (200269, 97, 162), + (200269, 94, 710), + (200269, 90, 812), + (200269, 95, 812), + (200269, 91, 812), + (200269, 92, 710), + (200270, 96, 169), + (200270, 93, 169), + (200270, 97, 169), + (200270, 94, 737), + (200270, 90, 844), + (200270, 95, 844), + (200270, 91, 844), + (200270, 92, 737), + (200271, 96, 175), + (200271, 93, 175), + (200271, 97, 175), + (200271, 94, 764), + (200271, 90, 875), + (200271, 95, 875), + (200271, 91, 875), + (200271, 92, 764), + (200272, 96, 181), + (200272, 93, 181), + (200272, 97, 181), + (200272, 94, 792), + (200272, 90, 906), + (200272, 95, 906), + (200272, 91, 906), + (200272, 92, 792), + (200273, 96, 188), + (200273, 93, 188), + (200273, 97, 188), + (200273, 94, 819), + (200273, 90, 938), + (200273, 95, 938), + (200273, 91, 938), + (200273, 92, 819), + (200274, 96, 194), + (200274, 93, 194), + (200274, 97, 194), + (200274, 94, 846), + (200274, 90, 969), + (200274, 95, 969), + (200274, 91, 969), + (200274, 92, 846), + (200275, 96, 198), + (200275, 93, 198), + (200275, 97, 198), + (200275, 94, 863), + (200275, 90, 988), + (200275, 95, 988), + (200275, 91, 988), + (200275, 92, 863), + (200276, 96, 200), + (200276, 93, 200), + (200276, 97, 200), + (200276, 94, 874), + (200276, 90, 1000), + (200276, 95, 1000), + (200276, 91, 1000), + (200276, 92, 874), + (200277, 96, 204), + (200277, 93, 204), + (200277, 97, 204), + (200277, 94, 890), + (200277, 90, 1019), + (200277, 95, 1019), + (200277, 91, 1019), + (200277, 92, 890), + (200278, 96, 206), + (200278, 93, 206), + (200278, 97, 206), + (200278, 94, 901), + (200278, 90, 1031), + (200278, 95, 1031), + (200278, 91, 1031), + (200278, 92, 901), + (200279, 96, 213), + (200279, 93, 213), + (200279, 97, 213), + (200279, 94, 928), + (200279, 90, 1063), + (200279, 95, 1063), + (200279, 91, 1063), + (200279, 92, 928), + (200280, 96, 219), + (200280, 93, 219), + (200280, 97, 219), + (200280, 94, 956), + (200280, 90, 1094), + (200280, 95, 1094), + (200280, 91, 1094), + (200280, 92, 956), + (200281, 96, 225), + (200281, 93, 225), + (200281, 97, 225), + (200281, 94, 983), + (200281, 90, 1125), + (200281, 95, 1125), + (200281, 91, 1125), + (200281, 92, 983), + (200282, 96, 51), + (200282, 93, 51), + (200282, 97, 51), + (200282, 92, 222), + (200282, 90, 255), + (200282, 91, 255), + (200282, 95, 255), + (200282, 94, 222), + (200283, 96, 52), + (200283, 93, 52), + (200283, 97, 52), + (200283, 92, 227), + (200283, 90, 260), + (200283, 91, 260), + (200283, 95, 260), + (200283, 94, 227), + (200284, 96, 54), + (200284, 93, 54), + (200284, 97, 54), + (200284, 92, 235), + (200284, 90, 270), + (200284, 91, 270), + (200284, 95, 270), + (200284, 94, 235), + (200285, 96, 55), + (200285, 93, 55), + (200285, 97, 55), + (200285, 92, 240), + (200285, 90, 275), + (200285, 91, 275), + (200285, 95, 275), + (200285, 94, 240), + (200286, 96, 56), + (200286, 93, 56), + (200286, 97, 56), + (200286, 92, 244), + (200286, 90, 280), + (200286, 91, 280), + (200286, 95, 280), + (200286, 94, 244), + (200287, 96, 57), + (200287, 93, 57), + (200287, 97, 57), + (200287, 92, 251), + (200287, 90, 287), + (200287, 91, 287), + (200287, 95, 287), + (200287, 94, 251), + (200288, 96, 60), + (200288, 93, 60), + (200288, 97, 60), + (200288, 92, 262), + (200288, 90, 300), + (200288, 91, 300), + (200288, 95, 300), + (200288, 94, 262), + (200289, 96, 62), + (200289, 93, 62), + (200289, 97, 62), + (200289, 92, 272), + (200289, 90, 312), + (200289, 91, 312), + (200289, 95, 312), + (200289, 94, 272), + (200290, 96, 65), + (200290, 93, 65), + (200290, 97, 65), + (200290, 92, 283), + (200290, 90, 325), + (200290, 91, 325), + (200290, 95, 325), + (200290, 94, 283), + (200291, 96, 68), + (200291, 93, 68), + (200291, 97, 68), + (200291, 92, 294), + (200291, 90, 338), + (200291, 91, 338), + (200291, 95, 338), + (200291, 94, 294), + (200292, 96, 70), + (200292, 93, 70), + (200292, 97, 70), + (200292, 92, 305), + (200292, 90, 350), + (200292, 91, 350), + (200292, 95, 350), + (200292, 94, 305), + (200293, 96, 73), + (200293, 93, 73), + (200293, 97, 73), + (200293, 92, 316), + (200293, 90, 363), + (200293, 91, 363), + (200293, 95, 363), + (200293, 94, 316), + (200294, 96, 75), + (200294, 93, 75), + (200294, 97, 75), + (200294, 92, 327), + (200294, 90, 375), + (200294, 91, 375), + (200294, 95, 375), + (200294, 94, 327), + (200295, 96, 77), + (200295, 93, 77), + (200295, 97, 77), + (200295, 92, 338), + (200295, 90, 387), + (200295, 91, 387), + (200295, 95, 387), + (200295, 94, 338), + (200296, 96, 79), + (200296, 93, 79), + (200296, 97, 79), + (200296, 92, 344), + (200296, 90, 395), + (200296, 91, 395), + (200296, 95, 395), + (200296, 94, 344), + (200297, 96, 80), + (200297, 93, 80), + (200297, 97, 80), + (200297, 92, 349), + (200297, 90, 400), + (200297, 91, 400), + (200297, 95, 400), + (200297, 94, 349), + (200298, 96, 81), + (200298, 93, 81), + (200298, 97, 81), + (200298, 92, 355), + (200298, 90, 407), + (200298, 91, 407), + (200298, 95, 407), + (200298, 94, 355), + (200299, 96, 82), + (200299, 93, 82), + (200299, 97, 82), + (200299, 92, 360), + (200299, 90, 412), + (200299, 91, 412), + (200299, 95, 412), + (200299, 94, 360), + (200300, 96, 85), + (200300, 93, 85), + (200300, 97, 85), + (200300, 92, 371), + (200300, 90, 425), + (200300, 91, 425), + (200300, 95, 425), + (200300, 94, 371), + (200301, 96, 88), + (200301, 93, 88), + (200301, 97, 88), + (200301, 92, 382), + (200301, 90, 438), + (200301, 91, 438), + (200301, 95, 438), + (200301, 94, 382), + (200302, 96, 90), + (200302, 93, 90), + (200302, 97, 90), + (200302, 92, 392), + (200302, 90, 450), + (200302, 91, 450), + (200302, 95, 450), + (200302, 94, 392), + (200303, 96, 204), + (200303, 93, 204), + (200303, 97, 204), + (200303, 95, 1020), + (200303, 91, 1020), + (200303, 92, 892), + (200303, 90, 1020), + (200303, 94, 892), + (200304, 96, 208), + (200304, 93, 208), + (200304, 97, 208), + (200304, 95, 1040), + (200304, 91, 1040), + (200304, 92, 910), + (200304, 90, 1040), + (200304, 94, 910), + (200305, 96, 216), + (200305, 93, 216), + (200305, 97, 216), + (200305, 95, 1080), + (200305, 91, 1080), + (200305, 92, 945), + (200305, 90, 1080), + (200305, 94, 945), + (200306, 96, 220), + (200306, 93, 220), + (200306, 97, 220), + (200306, 95, 1100), + (200306, 91, 1100), + (200306, 92, 963), + (200306, 90, 1100), + (200306, 94, 963), + (200307, 96, 224), + (200307, 93, 224), + (200307, 97, 224), + (200307, 95, 1120), + (200307, 91, 1120), + (200307, 92, 980), + (200307, 90, 1120), + (200307, 94, 980), + (200308, 96, 230), + (200308, 93, 230), + (200308, 97, 230), + (200308, 95, 1150), + (200308, 91, 1150), + (200308, 92, 1006), + (200308, 90, 1150), + (200308, 94, 1006), + (200309, 96, 240), + (200309, 93, 240), + (200309, 97, 240), + (200309, 95, 1200), + (200309, 91, 1200), + (200309, 92, 1050), + (200309, 90, 1200), + (200309, 94, 1050), + (200310, 96, 250), + (200310, 93, 250), + (200310, 97, 250), + (200310, 95, 1250), + (200310, 91, 1250), + (200310, 92, 1094), + (200310, 90, 1250), + (200310, 94, 1094), + (200311, 96, 260), + (200311, 93, 260), + (200311, 97, 260), + (200311, 95, 1300), + (200311, 91, 1300), + (200311, 92, 1137), + (200311, 90, 1300), + (200311, 94, 1137), + (200312, 96, 270), + (200312, 93, 270), + (200312, 97, 270), + (200312, 95, 1350), + (200312, 91, 1350), + (200312, 92, 1181), + (200312, 90, 1350), + (200312, 94, 1181), + (200313, 96, 280), + (200313, 93, 280), + (200313, 97, 280), + (200313, 95, 1400), + (200313, 91, 1400), + (200313, 92, 1225), + (200313, 90, 1400), + (200313, 94, 1225), + (200314, 96, 290), + (200314, 93, 290), + (200314, 97, 290), + (200314, 95, 1450), + (200314, 91, 1450), + (200314, 92, 1269), + (200314, 90, 1450), + (200314, 94, 1269), + (200315, 96, 300), + (200315, 93, 300), + (200315, 97, 300), + (200315, 95, 1500), + (200315, 91, 1500), + (200315, 92, 1312), + (200315, 90, 1500), + (200315, 94, 1312), + (200316, 96, 310), + (200316, 93, 310), + (200316, 97, 310), + (200316, 95, 1550), + (200316, 91, 1550), + (200316, 92, 1356), + (200316, 90, 1550), + (200316, 94, 1356), + (200317, 96, 316), + (200317, 93, 316), + (200317, 97, 316), + (200317, 95, 1580), + (200317, 91, 1580), + (200317, 92, 1383), + (200317, 90, 1580), + (200317, 94, 1383), + (200318, 96, 320), + (200318, 93, 320), + (200318, 97, 320), + (200318, 95, 1600), + (200318, 91, 1600), + (200318, 92, 1400), + (200318, 90, 1600), + (200318, 94, 1400), + (200319, 96, 326), + (200319, 93, 326), + (200319, 97, 326), + (200319, 95, 1630), + (200319, 91, 1630), + (200319, 92, 1426), + (200319, 90, 1630), + (200319, 94, 1426), + (200320, 96, 330), + (200320, 93, 330), + (200320, 97, 330), + (200320, 95, 1650), + (200320, 91, 1650), + (200320, 92, 1444), + (200320, 90, 1650), + (200320, 94, 1444), + (200321, 96, 340), + (200321, 93, 340), + (200321, 97, 340), + (200321, 95, 1700), + (200321, 91, 1700), + (200321, 92, 1488), + (200321, 90, 1700), + (200321, 94, 1488), + (200322, 96, 350), + (200322, 93, 350), + (200322, 97, 350), + (200322, 95, 1750), + (200322, 91, 1750), + (200322, 92, 1531), + (200322, 90, 1750), + (200322, 94, 1531), + (200323, 96, 360), + (200323, 93, 360), + (200323, 97, 360), + (200323, 95, 1800), + (200323, 91, 1800), + (200323, 92, 1575), + (200323, 90, 1800), + (200323, 94, 1575), + (200433, 1, 2), + (200436, 124, 1), + (200437, 221, 2), + (200461, 93, 750), + (200461, 95, 1000), + (200461, 164, 15), + (200461, 153, 30), + (200461, 92, 1100), + (200461, 97, 750), + (200461, 1, 90), + (200461, 221, 90), + (200461, 91, 1200), + (200461, 136, 15), + (200461, 96, 1000), + (200461, 90, 1200), + (200461, 94, 1100), + (200463, 96, 700), + (200463, 91, 750), + (200463, 90, 750), + (200463, 92, 750), + (200463, 94, 600), + (200463, 97, 800), + (200463, 95, 600), + (200463, 149, 16), + (200463, 130, 4), + (200463, 127, 4), + (200463, 131, 4), + (200463, 128, 4), + (200463, 221, 20), + (200463, 1, 72), + (200463, 93, 700), + (200464, 96, 700), + (200464, 91, 750), + (200464, 90, 750), + (200464, 92, 750), + (200464, 94, 700), + (200464, 97, 600), + (200464, 95, 800), + (200464, 149, 18), + (200464, 130, 6), + (200464, 127, 6), + (200464, 131, 6), + (200464, 128, 6), + (200464, 221, 32), + (200464, 1, 12), + (200464, 93, 600), + (200465, 93, 400), + (200465, 95, 400), + (200465, 154, 20), + (200465, 139, 10), + (200465, 92, 400), + (200465, 97, 400), + (200465, 134, 10), + (200465, 91, 450), + (200465, 101, 10), + (200465, 96, 450), + (200465, 90, 400), + (200465, 94, 400), + (200465, 156, 40), + (200466, 94, 100), + (200466, 92, 100), + (200466, 96, 300), + (200466, 95, 200), + (200466, 97, 200), + (200466, 93, 200), + (200466, 90, 300), + (200466, 91, 300), + (200466, 118, 30), + (200466, 105, 10), + (200466, 103, 10), + (200467, 94, 200), + (200467, 92, 200), + (200467, 96, 300), + (200467, 95, 200), + (200467, 97, 100), + (200467, 93, 100), + (200467, 90, 300), + (200467, 91, 300), + (200467, 118, 30), + (200467, 107, 10), + (200467, 102, 10), + (200468, 94, 100), + (200468, 92, 100), + (200468, 96, 100), + (200468, 95, 100), + (200468, 97, 100), + (200468, 93, 300), + (200468, 90, 300), + (200468, 91, 300), + (200468, 118, 30), + (200468, 106, 10), + (200469, 94, 300), + (200469, 92, 300), + (200469, 96, 100), + (200469, 95, 100), + (200469, 97, 100), + (200469, 93, 100), + (200469, 90, 300), + (200469, 91, 300), + (200469, 118, 30), + (200469, 104, 10), + (200469, 133, 10), + (200655, 92, 10), + (200681, 96, 10), + (200681, 93, 10), + (200818, 1, 95), + (200956, 162, 6), + (200957, 162, 6), + (200958, 162, 18), + (200959, 162, 18), + (200960, 162, 32), + (201041, 92, 2), + (201041, 91, 3), + (201041, 90, 3), + (201041, 94, 2), + (201041, 118, 2), + (201041, 93, 2), + (201041, 95, 2), + (201041, 97, 2), + (201041, 96, 2), + (201042, 92, 200), + (201042, 91, 300), + (201042, 90, 300), + (201042, 94, 200), + (201042, 118, 25), + (201042, 93, 200), + (201042, 95, 250), + (201042, 97, 250), + (201042, 96, 250), + (201043, 92, 3), + (201043, 91, 4), + (201043, 90, 4), + (201043, 94, 3), + (201043, 155, 3), + (201043, 156, 3), + (201043, 93, 3), + (201043, 95, 3), + (201043, 97, 3), + (201043, 96, 3), + (201044, 92, 300), + (201044, 91, 450), + (201044, 90, 450), + (201044, 94, 300), + (201044, 155, 30), + (201044, 156, 30), + (201044, 93, 300), + (201044, 95, 375), + (201044, 97, 375), + (201044, 96, 375), + (201045, 92, 2), + (201045, 91, 3), + (201045, 90, 3), + (201045, 94, 2), + (201045, 101, 2), + (201045, 93, 2), + (201045, 95, 2), + (201045, 97, 2), + (201045, 96, 2), + (201046, 92, 200), + (201046, 91, 300), + (201046, 90, 300), + (201046, 94, 200), + (201046, 101, 25), + (201046, 93, 200), + (201046, 95, 250), + (201046, 97, 250), + (201046, 96, 250), + (201047, 92, 6), + (201047, 91, 9), + (201047, 90, 9), + (201047, 94, 6), + (201047, 136, 1), + (201047, 221, 1), + (201047, 93, 6), + (201047, 95, 7), + (201047, 97, 7), + (201047, 96, 7), + (201048, 92, 600), + (201048, 91, 900), + (201048, 90, 900), + (201048, 94, 600), + (201048, 136, 25), + (201048, 221, 100), + (201048, 93, 600), + (201048, 95, 750), + (201048, 97, 750), + (201048, 96, 750), + (201049, 92, 5), + (201049, 91, 7), + (201049, 90, 7), + (201049, 94, 5), + (201049, 147, 1), + (201049, 93, 5), + (201049, 95, 6), + (201049, 97, 6), + (201049, 96, 6), + (201050, 92, 500), + (201050, 91, 750), + (201050, 90, 750), + (201050, 94, 500), + (201050, 147, 10), + (201050, 93, 500), + (201050, 95, 625), + (201050, 97, 625), + (201050, 96, 625), + (201051, 92, 8), + (201051, 91, 12), + (201051, 90, 12), + (201051, 94, 8), + (201051, 1, 2), + (201051, 93, 8), + (201051, 95, 10), + (201051, 97, 10), + (201051, 96, 10), + (201052, 92, 800), + (201052, 91, 1200), + (201052, 90, 1200), + (201052, 94, 800), + (201052, 1, 200), + (201052, 93, 800), + (201052, 95, 1000), + (201052, 97, 1000), + (201052, 96, 1000), + (201068, 92, 2), + (201068, 97, 2), + (201068, 91, 3), + (201068, 90, 3), + (201068, 119, 2), + (201068, 93, 2), + (201068, 95, 2), + (201068, 96, 2), + (201068, 94, 2), + (201069, 92, 250), + (201069, 97, 200), + (201069, 91, 300), + (201069, 90, 300), + (201069, 119, 25), + (201069, 93, 250), + (201069, 95, 200), + (201069, 96, 200), + (201069, 94, 250), + (201070, 92, 3), + (201070, 97, 3), + (201070, 91, 4), + (201070, 90, 4), + (201070, 154, 3), + (201070, 156, 3), + (201070, 93, 3), + (201070, 95, 3), + (201070, 96, 3), + (201070, 94, 3), + (201071, 92, 375), + (201071, 97, 300), + (201071, 91, 450), + (201071, 90, 450), + (201071, 154, 30), + (201071, 156, 30), + (201071, 93, 375), + (201071, 95, 300), + (201071, 96, 300), + (201071, 94, 375), + (201072, 92, 2), + (201072, 97, 2), + (201072, 91, 3), + (201072, 90, 3), + (201072, 134, 2), + (201072, 93, 2), + (201072, 95, 2), + (201072, 96, 2), + (201072, 94, 2), + (201073, 92, 250), + (201073, 97, 200), + (201073, 91, 300), + (201073, 90, 300), + (201073, 134, 25), + (201073, 93, 250), + (201073, 95, 200), + (201073, 96, 200), + (201073, 94, 250), + (201074, 92, 7), + (201074, 97, 6), + (201074, 91, 9), + (201074, 90, 9), + (201074, 136, 1), + (201074, 221, 1), + (201074, 93, 7), + (201074, 95, 6), + (201074, 96, 6), + (201074, 94, 7), + (201075, 92, 750), + (201075, 97, 600), + (201075, 91, 900), + (201075, 90, 900), + (201075, 136, 25), + (201075, 221, 100), + (201075, 93, 750), + (201075, 95, 600), + (201075, 96, 600), + (201075, 94, 750), + (201076, 92, 6), + (201076, 97, 5), + (201076, 91, 7), + (201076, 90, 7), + (201076, 150, 1), + (201076, 93, 6), + (201076, 95, 5), + (201076, 96, 5), + (201076, 94, 6), + (201077, 92, 625), + (201077, 97, 500), + (201077, 91, 750), + (201077, 90, 750), + (201077, 150, 10), + (201077, 93, 635), + (201077, 95, 500), + (201077, 96, 500), + (201077, 94, 625), + (201078, 92, 10), + (201078, 97, 8), + (201078, 91, 12), + (201078, 90, 12), + (201078, 1, 2), + (201078, 93, 10), + (201078, 95, 8), + (201078, 96, 8), + (201078, 94, 10), + (201079, 92, 1000), + (201079, 97, 800), + (201079, 91, 1200), + (201079, 90, 1200), + (201079, 1, 200), + (201079, 93, 1000), + (201079, 95, 800), + (201079, 96, 800), + (201079, 94, 1000), + (201084, 95, 2), + (201084, 92, 2), + (201084, 97, 2), + (201084, 91, 2), + (201084, 90, 2), + (201084, 94, 2), + (201084, 93, 1), + (201084, 96, 2), + (201085, 95, 275), + (201085, 92, 275), + (201085, 97, 275), + (201085, 91, 275), + (201085, 90, 275), + (201085, 94, 275), + (201085, 93, 100), + (201085, 96, 275), + (201086, 95, 365), + (201086, 92, 365), + (201086, 97, 365), + (201086, 91, 365), + (201086, 90, 365), + (201086, 94, 365), + (201086, 93, 130), + (201086, 96, 365), + (201087, 95, 11), + (201087, 92, 11), + (201087, 97, 11), + (201087, 91, 11), + (201087, 90, 11), + (201087, 94, 11), + (201087, 1, 2), + (201087, 93, 4), + (201087, 96, 11), + (201088, 95, 1100), + (201088, 92, 1100), + (201088, 97, 1100), + (201088, 91, 1100), + (201088, 90, 1100), + (201088, 94, 1100), + (201088, 1, 200), + (201088, 93, 400), + (201088, 96, 1100), + (201089, 95, 1465), + (201089, 92, 1465), + (201089, 97, 1465), + (201089, 91, 1465), + (201089, 90, 1465), + (201089, 94, 1465), + (201089, 1, 300), + (201089, 93, 530), + (201089, 96, 1465), + (201090, 95, 4), + (201090, 92, 4), + (201090, 97, 4), + (201090, 91, 4), + (201090, 90, 4), + (201090, 94, 4), + (201090, 93, 1), + (201090, 96, 4), + (201091, 95, 410), + (201091, 92, 410), + (201091, 97, 410), + (201091, 91, 410), + (201091, 90, 410), + (201091, 94, 410), + (201091, 93, 150), + (201091, 96, 410), + (201092, 95, 545), + (201092, 92, 545), + (201092, 97, 545), + (201092, 91, 545), + (201092, 90, 545), + (201092, 94, 545), + (201092, 93, 200), + (201092, 96, 545), + (201093, 95, 2), + (201093, 92, 2), + (201093, 97, 2), + (201093, 91, 2), + (201093, 90, 2), + (201093, 94, 2), + (201093, 93, 1), + (201093, 96, 2), + (201094, 95, 275), + (201094, 92, 275), + (201094, 97, 275), + (201094, 91, 275), + (201094, 90, 275), + (201094, 94, 275), + (201094, 93, 100), + (201094, 96, 275), + (201095, 95, 365), + (201095, 92, 365), + (201095, 97, 365), + (201095, 91, 365), + (201095, 90, 365), + (201095, 94, 365), + (201095, 93, 130), + (201095, 96, 365), + (201096, 95, 8), + (201096, 92, 8), + (201096, 97, 8), + (201096, 91, 8), + (201096, 90, 8), + (201096, 94, 8), + (201096, 93, 2), + (201096, 96, 8), + (201097, 95, 825), + (201097, 92, 825), + (201097, 97, 825), + (201097, 91, 825), + (201097, 90, 825), + (201097, 94, 825), + (201097, 93, 250), + (201097, 96, 825), + (201098, 95, 1100), + (201098, 92, 1100), + (201098, 97, 1100), + (201098, 91, 1100), + (201098, 90, 1100), + (201098, 94, 1100), + (201098, 93, 275), + (201098, 96, 1100), + (201100, 95, 6), + (201100, 92, 6), + (201100, 97, 6), + (201100, 91, 6), + (201100, 90, 6), + (201100, 94, 6), + (201100, 93, 2), + (201100, 96, 6), + (201102, 95, 685), + (201102, 92, 685), + (201102, 97, 685), + (201102, 91, 685), + (201102, 90, 685), + (201102, 94, 685), + (201102, 93, 205), + (201102, 96, 685), + (201103, 95, 915), + (201103, 92, 915), + (201103, 97, 915), + (201103, 91, 915), + (201103, 90, 915), + (201103, 94, 915), + (201103, 93, 230), + (201103, 96, 915), + (201111, 94, 2), + (201111, 93, 2), + (201111, 91, 3), + (201111, 92, 3), + (201111, 90, 3), + (201111, 96, 1), + (201111, 97, 2), + (201111, 95, 2), + (201112, 94, 250), + (201112, 93, 250), + (201112, 91, 300), + (201112, 92, 300), + (201112, 90, 300), + (201112, 96, 100), + (201112, 97, 250), + (201112, 95, 250), + (201114, 94, 3), + (201114, 93, 3), + (201114, 91, 4), + (201114, 92, 4), + (201114, 90, 4), + (201114, 96, 1), + (201114, 97, 3), + (201114, 95, 3), + (201115, 94, 375), + (201115, 93, 375), + (201115, 91, 450), + (201115, 92, 450), + (201115, 90, 450), + (201115, 96, 150), + (201115, 97, 375), + (201115, 95, 375), + (201117, 94, 2), + (201117, 93, 2), + (201117, 92, 3), + (201117, 90, 3), + (201117, 91, 3), + (201117, 96, 1), + (201117, 97, 2), + (201117, 95, 2), + (201118, 94, 250), + (201118, 93, 250), + (201118, 92, 300), + (201118, 90, 300), + (201118, 91, 300), + (201118, 96, 100), + (201118, 97, 250), + (201118, 95, 250), + (201121, 94, 7), + (201121, 93, 7), + (201121, 92, 9), + (201121, 90, 9), + (201121, 91, 9), + (201121, 96, 3), + (201121, 97, 7), + (201121, 95, 7), + (201122, 94, 750), + (201122, 93, 750), + (201122, 92, 900), + (201122, 90, 900), + (201122, 91, 900), + (201122, 96, 300), + (201122, 97, 750), + (201122, 95, 750), + (201124, 94, 6), + (201124, 93, 6), + (201124, 90, 7), + (201124, 91, 7), + (201124, 92, 7), + (201124, 96, 2), + (201124, 97, 6), + (201124, 95, 6), + (201125, 94, 625), + (201125, 93, 625), + (201125, 90, 750), + (201125, 91, 750), + (201125, 92, 750), + (201125, 96, 250), + (201125, 97, 625), + (201125, 95, 625), + (201127, 94, 10), + (201127, 93, 10), + (201127, 91, 12), + (201127, 92, 12), + (201127, 90, 12), + (201127, 1, 1), + (201127, 96, 4), + (201127, 97, 10), + (201127, 95, 10), + (201128, 94, 1000), + (201128, 93, 1000), + (201128, 91, 1200), + (201128, 92, 1200), + (201128, 90, 1200), + (201128, 1, 200), + (201128, 96, 400), + (201128, 97, 1000), + (201128, 95, 1000), + (201135, 118, 2), + (201135, 119, 2), + (201135, 93, 2), + (201135, 95, 3), + (201135, 92, 2), + (201135, 97, 3), + (201135, 91, 2), + (201135, 96, 2), + (201135, 90, 2), + (201135, 94, 2), + (201136, 118, 20), + (201136, 119, 20), + (201136, 93, 200), + (201136, 95, 300), + (201136, 92, 250), + (201136, 97, 300), + (201136, 91, 250), + (201136, 96, 200), + (201136, 90, 250), + (201136, 94, 250), + (201137, 1, 1), + (201137, 93, 8), + (201137, 95, 12), + (201137, 92, 10), + (201137, 97, 12), + (201137, 91, 10), + (201137, 96, 8), + (201137, 90, 10), + (201137, 94, 10), + (201138, 1, 180), + (201138, 93, 800), + (201138, 95, 1200), + (201138, 92, 1000), + (201138, 97, 1200), + (201138, 91, 1000), + (201138, 96, 800), + (201138, 90, 1000), + (201138, 94, 1000), + (201139, 154, 2), + (201139, 155, 2), + (201139, 93, 3), + (201139, 95, 4), + (201139, 92, 3), + (201139, 97, 4), + (201139, 91, 3), + (201139, 96, 3), + (201139, 90, 3), + (201139, 94, 3), + (201140, 154, 20), + (201140, 155, 20), + (201140, 93, 300), + (201140, 95, 450), + (201140, 92, 375), + (201140, 97, 450), + (201140, 91, 375), + (201140, 96, 300), + (201140, 90, 375), + (201140, 94, 375), + (201141, 101, 2), + (201141, 134, 2), + (201141, 93, 2), + (201141, 95, 3), + (201141, 92, 2), + (201141, 97, 3), + (201141, 91, 2), + (201141, 96, 2), + (201141, 90, 2), + (201141, 94, 2), + (201142, 101, 20), + (201142, 134, 20), + (201142, 93, 200), + (201142, 95, 300), + (201142, 92, 250), + (201142, 97, 300), + (201142, 91, 250), + (201142, 96, 200), + (201142, 90, 250), + (201142, 94, 250), + (201143, 221, 1), + (201143, 93, 6), + (201143, 95, 9), + (201143, 92, 7), + (201143, 97, 9), + (201143, 91, 7), + (201143, 96, 6), + (201143, 90, 7), + (201143, 94, 7), + (201144, 221, 180), + (201144, 93, 600), + (201144, 95, 900), + (201144, 92, 750), + (201144, 97, 900), + (201144, 91, 750), + (201144, 96, 600), + (201144, 90, 750), + (201144, 94, 750), + (201145, 103, 1), + (201145, 112, 1), + (201145, 147, 1), + (201145, 150, 1), + (201145, 93, 5), + (201145, 95, 7), + (201145, 92, 6), + (201145, 97, 7), + (201145, 91, 6), + (201145, 96, 5), + (201145, 90, 6), + (201145, 94, 6), + (201146, 103, 5), + (201146, 112, 5), + (201146, 147, 5), + (201146, 150, 5), + (201146, 93, 500), + (201146, 95, 750), + (201146, 92, 625), + (201146, 97, 750), + (201146, 91, 625), + (201146, 96, 500), + (201146, 90, 625), + (201146, 94, 625), + (201156, 152, 1), + (201156, 93, 2), + (201156, 95, 2), + (201156, 92, 2), + (201156, 97, 2), + (201156, 91, 2), + (201156, 96, 2), + (201156, 90, 2), + (201156, 94, 2), + (201157, 152, 10), + (201157, 93, 250), + (201157, 95, 200), + (201157, 92, 250), + (201157, 97, 250), + (201157, 91, 250), + (201157, 96, 200), + (201157, 90, 250), + (201157, 94, 200), + (201158, 1, 1), + (201158, 221, 1), + (201158, 93, 10), + (201158, 95, 8), + (201158, 92, 10), + (201158, 97, 10), + (201158, 91, 10), + (201158, 96, 8), + (201158, 90, 10), + (201158, 94, 8), + (201159, 1, 100), + (201159, 221, 100), + (201159, 93, 1000), + (201159, 95, 800), + (201159, 92, 1000), + (201159, 97, 1000), + (201159, 91, 1000), + (201159, 96, 800), + (201159, 90, 1000), + (201159, 94, 800), + (201160, 153, 1), + (201160, 154, 1), + (201160, 155, 1), + (201160, 156, 1), + (201160, 93, 3), + (201160, 95, 3), + (201160, 92, 3), + (201160, 97, 3), + (201160, 91, 3), + (201160, 96, 3), + (201160, 90, 3), + (201160, 94, 3), + (201161, 153, 15), + (201161, 154, 15), + (201161, 155, 15), + (201161, 156, 15), + (201161, 93, 375), + (201161, 95, 300), + (201161, 92, 375), + (201161, 97, 375), + (201161, 91, 375), + (201161, 96, 300), + (201161, 90, 375), + (201161, 94, 300), + (201162, 118, 1), + (201162, 93, 2), + (201162, 95, 2), + (201162, 92, 2), + (201162, 97, 2), + (201162, 91, 2), + (201162, 96, 2), + (201162, 90, 2), + (201162, 94, 2), + (201163, 118, 40), + (201163, 93, 250), + (201163, 95, 200), + (201163, 92, 250), + (201163, 97, 250), + (201163, 91, 250), + (201163, 96, 200), + (201163, 90, 250), + (201163, 94, 200), + (201164, 127, 1), + (201164, 93, 7), + (201164, 95, 6), + (201164, 92, 7), + (201164, 97, 7), + (201164, 91, 7), + (201164, 96, 6), + (201164, 90, 7), + (201164, 94, 6), + (201165, 127, 5), + (201165, 93, 750), + (201165, 95, 600), + (201165, 92, 750), + (201165, 97, 750), + (201165, 91, 750), + (201165, 96, 600), + (201165, 90, 750), + (201165, 94, 600), + (201166, 132, 1), + (201166, 93, 7), + (201166, 95, 5), + (201166, 92, 7), + (201166, 97, 7), + (201166, 91, 7), + (201166, 96, 5), + (201166, 90, 7), + (201166, 94, 5), + (201167, 132, 20), + (201167, 93, 750), + (201167, 95, 500), + (201167, 92, 750), + (201167, 97, 750), + (201167, 91, 750), + (201167, 96, 500), + (201167, 90, 750), + (201167, 94, 500), + (201186, 92, 2), + (201186, 97, 3), + (201186, 91, 3), + (201186, 90, 3), + (201186, 118, 1), + (201186, 119, 1), + (201186, 93, 2), + (201186, 95, 2), + (201186, 96, 2), + (201186, 94, 3), + (201187, 92, 250), + (201187, 97, 300), + (201187, 91, 300), + (201187, 90, 300), + (201187, 118, 20), + (201187, 119, 20), + (201187, 93, 250), + (201187, 95, 250), + (201187, 96, 250), + (201187, 94, 300), + (201189, 1, 1), + (201189, 93, 12), + (201189, 95, 8), + (201189, 92, 8), + (201189, 97, 12), + (201189, 91, 12), + (201189, 96, 8), + (201189, 90, 12), + (201189, 94, 8), + (201190, 1, 200), + (201190, 93, 1200), + (201190, 95, 800), + (201190, 92, 800), + (201190, 97, 1200), + (201190, 91, 1200), + (201190, 96, 800), + (201190, 90, 1200), + (201190, 94, 800), + (201192, 92, 3), + (201192, 97, 4), + (201192, 91, 4), + (201192, 90, 4), + (201192, 153, 1), + (201192, 156, 1), + (201192, 93, 4), + (201192, 95, 3), + (201192, 96, 3), + (201192, 94, 3), + (201193, 92, 375), + (201193, 97, 450), + (201193, 91, 450), + (201193, 90, 450), + (201193, 153, 25), + (201193, 156, 25), + (201193, 93, 450), + (201193, 95, 375), + (201193, 96, 375), + (201193, 94, 375), + (201195, 92, 2), + (201195, 97, 3), + (201195, 91, 3), + (201195, 90, 3), + (201195, 104, 1), + (201195, 133, 1), + (201195, 93, 3), + (201195, 95, 2), + (201195, 96, 2), + (201195, 94, 2), + (201196, 92, 250), + (201196, 97, 300), + (201196, 91, 300), + (201196, 90, 300), + (201196, 104, 10), + (201196, 133, 10), + (201196, 93, 300), + (201196, 95, 250), + (201196, 96, 250), + (201196, 94, 250), + (201198, 92, 6), + (201198, 97, 9), + (201198, 91, 9), + (201198, 90, 9), + (201198, 162, 1), + (201198, 221, 1), + (201198, 93, 9), + (201198, 95, 6), + (201198, 96, 6), + (201198, 94, 6), + (201199, 92, 600), + (201199, 97, 900), + (201199, 91, 900), + (201199, 90, 900), + (201199, 162, 15), + (201199, 221, 100), + (201199, 93, 900), + (201199, 95, 600), + (201199, 96, 600), + (201199, 94, 600), + (201201, 92, 5), + (201201, 97, 7), + (201201, 91, 7), + (201201, 90, 7), + (201201, 154, 1), + (201201, 155, 1), + (201201, 17, 1), + (201201, 93, 7), + (201201, 95, 5), + (201201, 96, 5), + (201201, 94, 5), + (201202, 92, 500), + (201202, 97, 750), + (201202, 91, 750), + (201202, 90, 750), + (201202, 154, 15), + (201202, 155, 15), + (201202, 17, 10), + (201202, 93, 750), + (201202, 95, 500), + (201202, 96, 500), + (201202, 94, 500), + (201212, 92, 2), + (201212, 96, 2), + (201212, 94, 2), + (201212, 93, 2), + (201212, 97, 2), + (201212, 90, 2), + (201212, 95, 2), + (201212, 91, 2), + (201213, 92, 250), + (201213, 96, 250), + (201213, 94, 250), + (201213, 93, 250), + (201213, 97, 250), + (201213, 90, 250), + (201213, 95, 250), + (201213, 91, 250), + (201214, 92, 375), + (201214, 96, 375), + (201214, 94, 375), + (201214, 93, 375), + (201214, 97, 375), + (201214, 90, 375), + (201214, 95, 375), + (201214, 91, 375), + (201215, 93, 10), + (201215, 95, 10), + (201215, 92, 10), + (201215, 97, 10), + (201215, 91, 10), + (201215, 96, 10), + (201215, 90, 10), + (201215, 94, 10), + (201215, 164, 1), + (201216, 93, 1000), + (201216, 95, 1000), + (201216, 92, 1000), + (201216, 97, 1000), + (201216, 91, 1000), + (201216, 96, 1000), + (201216, 90, 1000), + (201216, 94, 1000), + (201216, 164, 30), + (201217, 93, 1500), + (201217, 96, 1500), + (201217, 94, 1500), + (201217, 97, 1500), + (201217, 95, 1500), + (201217, 91, 1500), + (201217, 90, 1500), + (201217, 92, 1500), + (201218, 156, 1), + (201218, 96, 2), + (201218, 94, 2), + (201218, 93, 2), + (201218, 95, 2), + (201218, 91, 2), + (201218, 97, 2), + (201218, 90, 2), + (201218, 92, 2), + (201219, 156, 40), + (201219, 96, 200), + (201219, 94, 200), + (201219, 93, 200), + (201219, 95, 200), + (201219, 91, 200), + (201219, 97, 200), + (201219, 90, 200), + (201219, 92, 200), + (201220, 156, 60), + (201220, 96, 300), + (201220, 94, 300), + (201220, 93, 300), + (201220, 95, 300), + (201220, 91, 300), + (201220, 97, 300), + (201220, 90, 300), + (201220, 92, 300), + (201221, 152, 1), + (201221, 96, 2), + (201221, 94, 2), + (201221, 93, 2), + (201221, 90, 2), + (201221, 92, 2), + (201221, 97, 2), + (201221, 95, 2), + (201221, 91, 2), + (201222, 152, 15), + (201222, 96, 200), + (201222, 94, 200), + (201222, 93, 200), + (201222, 90, 200), + (201222, 92, 200), + (201222, 97, 200), + (201222, 95, 200), + (201222, 91, 200), + (201223, 152, 25), + (201223, 96, 300), + (201223, 94, 300), + (201223, 93, 300), + (201223, 90, 300), + (201223, 92, 300), + (201223, 97, 300), + (201223, 95, 300), + (201223, 91, 300), + (201224, 132, 1), + (201224, 93, 7), + (201224, 95, 7), + (201224, 92, 7), + (201224, 97, 7), + (201224, 91, 7), + (201224, 96, 7), + (201224, 90, 7), + (201224, 94, 7), + (201225, 132, 15), + (201225, 93, 725), + (201225, 95, 725), + (201225, 92, 725), + (201225, 97, 725), + (201225, 91, 725), + (201225, 96, 725), + (201225, 90, 725), + (201225, 94, 725), + (201226, 132, 25), + (201226, 93, 1035), + (201226, 95, 1035), + (201226, 92, 1035), + (201226, 97, 1035), + (201226, 91, 1035), + (201226, 96, 1035), + (201226, 90, 1035), + (201226, 94, 1035), + (201227, 181, 1), + (201227, 96, 6), + (201227, 94, 6), + (201227, 93, 6), + (201227, 92, 6), + (201227, 91, 6), + (201227, 97, 6), + (201227, 95, 6), + (201227, 90, 6), + (201228, 181, 20), + (201228, 96, 600), + (201228, 94, 600), + (201228, 93, 600), + (201228, 92, 600), + (201228, 91, 600), + (201228, 97, 600), + (201228, 95, 600), + (201228, 90, 600), + (201229, 181, 30), + (201229, 96, 900), + (201229, 94, 900), + (201229, 93, 900), + (201229, 92, 900), + (201229, 91, 900), + (201229, 97, 900), + (201229, 95, 900), + (201229, 90, 900), + (201234, 128, 1), + (201234, 149, 1), + (201234, 221, 1), + (201234, 90, 11), + (201234, 91, 10), + (201234, 92, 11), + (201234, 93, 9), + (201234, 94, 8), + (201234, 95, 9), + (201234, 96, 9), + (201234, 97, 9), + (201235, 128, 4), + (201235, 149, 32), + (201235, 221, 200), + (201235, 90, 1100), + (201235, 91, 1000), + (201235, 92, 1100), + (201235, 93, 900), + (201235, 94, 800), + (201235, 95, 700), + (201235, 96, 700), + (201235, 97, 700), + (201237, 149, 1), + (201237, 221, 1), + (201237, 90, 11), + (201237, 91, 10), + (201237, 92, 11), + (201237, 93, 9), + (201237, 94, 8), + (201237, 95, 9), + (201237, 96, 9), + (201237, 97, 9), + (201238, 149, 32), + (201238, 221, 200), + (201238, 90, 1100), + (201238, 91, 1000), + (201238, 92, 1100), + (201238, 93, 950), + (201238, 94, 800), + (201238, 95, 950), + (201238, 96, 950), + (201238, 97, 950), + (201239, 149, 48), + (201239, 221, 300), + (201239, 90, 1650), + (201239, 91, 1500), + (201239, 92, 1650), + (201239, 93, 1425), + (201239, 94, 1200), + (201239, 95, 1425), + (201239, 96, 1425), + (201239, 97, 1425), + (201252, 162, 5), + (201253, 162, 5), + (201254, 162, 18), + (201255, 162, 18), + (201256, 162, 30), + (201259, 134, 6), + (201260, 134, 6), + (201261, 134, 12), + (201264, 136, 3), + (201265, 136, 3), + (201266, 136, 6), + (201267, 136, 6), + (201268, 136, 12), + (201271, 136, 3), + (201272, 136, 3), + (201273, 136, 6), + (201274, 136, 6), + (201275, 136, 12), + (201522, 160, 75), + (201938, 93, -5000), + (201939, 97, 120), + (201939, 94, 120), + (201940, 97, 120), + (201940, 94, 120), + (202264, 96, 150), + (202264, 93, 150), + (202264, 1, 320), + (202265, 1, 30), + (202265, 96, 100), + (202278, 97, 100), + (202278, 94, 100), + (202279, 97, 100), + (202279, 94, 100), + (202297, 160, 20), + (202297, 161, 20), + (202298, 160, 20), + (202298, 161, 20), + (202299, 160, 20), + (202299, 161, 20), + (202300, 160, 20), + (202300, 161, 20), + (202301, 160, 20), + (202301, 161, 20), + (202302, 160, 20), + (202302, 161, 20), + (202347, 111, 20), + (202347, 121, 20), + (202348, 111, 20), + (202348, 121, 20), + (202349, 111, 20), + (202349, 121, 20), + (202350, 101, 20), + (202350, 134, 20), + (202351, 101, 20), + (202351, 134, 20), + (202352, 101, 20), + (202352, 134, 20), + (202353, 101, 20), + (202353, 134, 20), + (202354, 101, 20), + (202354, 134, 20), + (202355, 101, 20), + (202355, 134, 20), + (202356, 127, 4), + (202356, 128, 4), + (202356, 129, 4), + (202356, 131, 4), + (202356, 130, 4), + (202357, 127, 4), + (202357, 128, 4), + (202357, 129, 4), + (202357, 131, 4), + (202357, 130, 4), + (202358, 127, 4), + (202358, 128, 4), + (202358, 129, 4), + (202358, 131, 4), + (202358, 130, 4), + (202359, 127, 4), + (202359, 128, 4), + (202359, 129, 4), + (202359, 131, 4), + (202359, 130, 4), + (202360, 127, 4), + (202360, 128, 4), + (202360, 129, 4), + (202360, 131, 4), + (202360, 130, 4), + (202361, 127, 4), + (202361, 128, 4), + (202361, 129, 4), + (202361, 131, 4), + (202361, 130, 4), + (202362, 127, 4), + (202362, 128, 4), + (202362, 129, 4), + (202362, 131, 4), + (202362, 130, 4), + (202363, 127, 6), + (202363, 128, 6), + (202363, 129, 6), + (202363, 131, 6), + (202363, 130, 6), + (202364, 127, 6), + (202364, 128, 6), + (202364, 129, 6), + (202364, 131, 6), + (202364, 130, 6), + (202365, 127, 6), + (202365, 128, 6), + (202365, 129, 6), + (202365, 131, 6), + (202365, 130, 6), + (202366, 127, 6), + (202366, 128, 6), + (202366, 129, 6), + (202366, 131, 6), + (202366, 130, 6), + (202367, 127, 6), + (202367, 128, 6), + (202367, 129, 6), + (202367, 131, 6), + (202367, 130, 6), + (202368, 127, 6), + (202368, 128, 6), + (202368, 129, 6), + (202368, 131, 6), + (202368, 130, 6), + (202369, 124, 10), + (202369, 21, 5), + (202369, 18, 5), + (202370, 124, 10), + (202370, 21, 5), + (202370, 18, 5), + (202371, 124, 10), + (202371, 21, 5), + (202371, 18, 5), + (202372, 124, 10), + (202372, 21, 5), + (202372, 18, 5), + (202373, 124, 10), + (202373, 21, 5), + (202373, 18, 5), + (202374, 133, 10), + (202374, 119, 10), + (202375, 133, 10), + (202375, 119, 10), + (202376, 133, 10), + (202376, 119, 10), + (202377, 133, 10), + (202377, 119, 10), + (202378, 133, 10), + (202378, 119, 10), + (202381, 107, 10), + (202381, 118, 10), + (202382, 107, 10), + (202382, 118, 10), + (202383, 107, 10), + (202383, 118, 10), + (202384, 102, 10), + (202384, 118, 10), + (202385, 102, 10), + (202385, 118, 10), + (202386, 102, 10), + (202386, 118, 10), + (202387, 103, 10), + (202387, 118, 10), + (202388, 103, 10), + (202388, 118, 10), + (202389, 103, 10), + (202389, 118, 10), + (202390, 16, 4), + (202390, 18, 4), + (202391, 16, 4), + (202391, 18, 4), + (202392, 16, 4), + (202392, 18, 4), + (202393, 16, 4), + (202393, 18, 4), + (202394, 144, 10), + (202394, 142, 10), + (202395, 144, 10), + (202395, 142, 10), + (202396, 144, 10), + (202396, 142, 10), + (202397, 106, 20), + (202397, 118, 15), + (202398, 106, 20), + (202398, 118, 15), + (202399, 106, 20), + (202399, 118, 15), + (202400, 106, 20), + (202400, 118, 15), + (202401, 104, 10), + (202401, 118, 15), + (202402, 104, 10), + (202402, 118, 15), + (202403, 104, 10), + (202403, 118, 15), + (202404, 104, 10), + (202404, 118, 15), + (202405, 104, 10), + (202405, 118, 15), + (202406, 104, 10), + (202406, 118, 15), + (202407, 104, 10), + (202407, 118, 15), + (202408, 104, 10), + (202408, 118, 15), + (202409, 115, 10), + (202409, 119, 15), + (202410, 115, 10), + (202410, 119, 15), + (202411, 115, 10), + (202411, 119, 15), + (202412, 20, 4), + (202412, 17, 4), + (202412, 124, 8), + (202413, 20, 4), + (202413, 17, 4), + (202413, 124, 8), + (202414, 20, 4), + (202414, 17, 4), + (202414, 124, 8), + (202415, 20, 4), + (202415, 17, 4), + (202415, 124, 8), + (202416, 20, 4), + (202416, 17, 4), + (202416, 124, 8), + (202417, 112, 7), + (202417, 119, 10), + (202418, 112, 7), + (202418, 119, 10), + (202419, 112, 7), + (202419, 119, 10), + (202420, 112, 7), + (202420, 119, 10), + (202421, 112, 7), + (202421, 119, 10), + (202422, 112, 7), + (202422, 119, 10), + (202423, 112, 7), + (202423, 119, 10), + (202424, 116, 8), + (202424, 119, 12), + (202425, 116, 8), + (202425, 119, 12), + (202427, 116, 8), + (202427, 119, 12), + (202428, 100, 8), + (202428, 120, 12), + (202429, 100, 8), + (202429, 120, 12), + (202430, 114, 8), + (202430, 119, 12), + (202431, 114, 8), + (202431, 119, 12), + (202432, 19, 5), + (202432, 21, 5), + (202433, 19, 5), + (202433, 21, 5), + (202434, 19, 5), + (202434, 21, 5), + (202435, 19, 5), + (202435, 21, 5), + (202436, 19, 5), + (202436, 21, 5), + (202437, 19, 5), + (202437, 21, 5), + (202442, 153, 45), + (202442, 154, 45), + (202442, 155, 45), + (202442, 156, 575), + (202442, 277, 150), + (202443, 153, 60), + (202443, 154, 60), + (202443, 155, 60), + (202443, 156, 750), + (202443, 277, 200), + (202453, 156, 500), + (202454, 156, 1200), + (202717, 181, 1), + (202718, 181, 50), + (202719, 1, 20), + (202720, 1, 20), + (202722, 120, 30), + (202722, 91, 1), + (202722, 90, 1), + (202722, 92, 1), + (202722, 97, 1), + (202722, 93, 1), + (202722, 96, 1), + (202722, 95, 1), + (202722, 94, 1), + (202723, 120, 30), + (202723, 91, 375), + (202723, 90, 375), + (202723, 92, 375), + (202723, 97, 375), + (202723, 93, 93), + (202723, 96, 93), + (202723, 95, 375), + (202723, 94, 93), + (202724, 103, 14), + (202726, 168, 1), + (202726, 181, 2), + (202727, 168, 4), + (202727, 181, 4), + (202728, 168, 7), + (202728, 181, 8), + (202729, 168, 9), + (202729, 181, 16), + (202730, 168, 21), + (202730, 181, 32), + (202731, 168, 35), + (202731, 181, 64), + (202733, 45, 1), + (202733, 276, 5), + (202733, 181, 10), + (202734, 45, 2), + (202734, 276, 5), + (202734, 181, 10), + (202735, 45, 3), + (202735, 276, 5), + (202735, 181, 10), + (202736, 45, 4), + (202736, 276, 5), + (202736, 181, 10), + (202737, 45, 5), + (202737, 276, 5), + (202737, 181, 10), + (202738, 45, 6), + (202738, 276, 5), + (202738, 181, 10), + (202740, 103, 42), + (202741, 134, 10), + (202741, 101, 10), + (202742, 134, 10), + (202742, 101, 10), + (202743, 21, -2), + (202744, 21, -2), + (202756, 126, 5), + (202756, 157, 5), + (202756, 125, 5), + (202756, 158, 3), + (202775, 103, 65), + (202788, 92, 50), + (202788, 94, 150), + (202789, 92, 50), + (202789, 94, 150), + (202792, 103, 89), + (202794, 103, 100), + (202794, 278, 3), + (202794, 279, 3), + (202794, 280, 3), + (202794, 281, 3), + (202794, 282, 3), + (202794, 311, 3), + (202794, 316, 3), + (202794, 317, 3), + (202794, 142, 10), + (202817, 103, 111), + (202817, 118, 8), + (202817, 101, 2), + (202817, 278, 5), + (202817, 279, 5), + (202817, 280, 5), + (202817, 281, 5), + (202817, 282, 5), + (202817, 311, 5), + (202817, 316, 5), + (202817, 317, 5), + (202817, 142, 25), + (202819, 103, 120), + (202819, 147, 3), + (202819, 118, 15), + (202819, 101, 3), + (202819, 278, 7), + (202819, 279, 7), + (202819, 280, 7), + (202819, 281, 7), + (202819, 282, 7), + (202819, 311, 7), + (202819, 316, 7), + (202819, 317, 7), + (202819, 142, 50), + (202827, 105, 14), + (202829, 105, 42), + (202831, 105, 65), + (202833, 105, 89), + (202835, 105, 100), + (202835, 279, 3), + (202835, 278, 3), + (202835, 280, 3), + (202835, 281, 3), + (202835, 282, 3), + (202835, 316, 3), + (202835, 311, 3), + (202835, 317, 3), + (202835, 142, 10), + (202837, 105, 111), + (202837, 279, 7), + (202837, 278, 7), + (202837, 280, 7), + (202837, 281, 7), + (202837, 282, 7), + (202837, 316, 7), + (202837, 311, 7), + (202837, 317, 7), + (202837, 1, 5), + (202837, 142, 25), + (202839, 105, 120), + (202839, 279, 13), + (202839, 278, 13), + (202839, 280, 13), + (202839, 281, 13), + (202839, 282, 13), + (202839, 316, 13), + (202839, 311, 13), + (202839, 317, 13), + (202839, 1, 15), + (202839, 118, 15), + (202839, 142, 50), + (202841, 102, 65), + (202843, 102, 100), + (202843, 279, 3), + (202843, 278, 3), + (202843, 311, 3), + (202843, 316, 3), + (202843, 282, 3), + (202843, 281, 3), + (202843, 317, 3), + (202843, 280, 3), + (202843, 142, 10), + (202845, 102, 111), + (202845, 279, 5), + (202845, 278, 5), + (202845, 311, 5), + (202845, 316, 5), + (202845, 282, 5), + (202845, 281, 5), + (202845, 317, 5), + (202845, 280, 5), + (202845, 118, 8), + (202845, 101, 2), + (202845, 142, 25), + (202847, 102, 120), + (202847, 279, 7), + (202847, 278, 7), + (202847, 311, 7), + (202847, 316, 7), + (202847, 282, 7), + (202847, 281, 7), + (202847, 317, 7), + (202847, 280, 7), + (202847, 118, 15), + (202847, 101, 3), + (202847, 147, 3), + (202847, 142, 50), + (202849, 107, 14), + (202851, 107, 65), + (202853, 107, 100), + (202853, 279, 3), + (202853, 278, 3), + (202853, 280, 3), + (202853, 281, 3), + (202853, 282, 3), + (202853, 316, 3), + (202853, 311, 3), + (202853, 317, 3), + (202853, 142, 10), + (202855, 107, 111), + (202855, 279, 7), + (202855, 278, 7), + (202855, 280, 7), + (202855, 281, 7), + (202855, 282, 7), + (202855, 316, 7), + (202855, 311, 7), + (202855, 317, 7), + (202855, 1, 5), + (202855, 142, 25), + (202857, 107, 120), + (202857, 279, 13), + (202857, 278, 13), + (202857, 280, 13), + (202857, 281, 13), + (202857, 282, 13), + (202857, 316, 13), + (202857, 311, 13), + (202857, 317, 13), + (202857, 1, 15), + (202857, 118, 15), + (202857, 142, 50), + (202859, 106, 120), + (202859, 279, 7), + (202859, 278, 7), + (202859, 311, 7), + (202859, 316, 7), + (202859, 282, 7), + (202859, 281, 7), + (202859, 317, 7), + (202859, 280, 7), + (202859, 118, 15), + (202859, 101, 3), + (202859, 147, 3), + (202861, 106, 112), + (202861, 279, 5), + (202861, 278, 5), + (202861, 311, 5), + (202861, 316, 5), + (202861, 282, 5), + (202861, 281, 5), + (202861, 317, 5), + (202861, 280, 5), + (202861, 118, 9), + (202861, 101, 2), + (202863, 106, 98), + (202863, 279, 2), + (202863, 278, 2), + (202863, 311, 2), + (202863, 316, 2), + (202863, 282, 2), + (202863, 281, 2), + (202863, 317, 2), + (202863, 280, 2), + (202865, 106, 90), + (202867, 106, 62), + (202869, 106, 45), + (202871, 106, 17), + (203120, 116, 90), + (203120, 278, 5), + (203120, 279, 5), + (203120, 280, 5), + (203120, 281, 5), + (203120, 282, 5), + (203120, 311, 5), + (203120, 317, 5), + (203120, 316, 5), + (203120, 148, 10), + (203122, 116, 30), + (203124, 115, 30), + (203126, 115, 50), + (203128, 115, 90), + (203128, 150, 2), + (203130, 148, 62), + (203130, 278, 5), + (203130, 279, 5), + (203130, 280, 5), + (203130, 281, 5), + (203130, 282, 5), + (203130, 311, 5), + (203130, 317, 5), + (203130, 316, 5), + (203132, 148, 48), + (203132, 278, 2), + (203132, 279, 2), + (203132, 280, 2), + (203132, 281, 2), + (203132, 282, 2), + (203132, 311, 2), + (203132, 317, 2), + (203132, 316, 2), + (203134, 148, 33), + (203136, 133, 44), + (203138, 167, 120), + (203138, 278, 10), + (203138, 279, 10), + (203138, 280, 10), + (203138, 281, 10), + (203138, 282, 10), + (203138, 311, 10), + (203138, 317, 10), + (203138, 316, 10), + (203138, 119, 15), + (203138, 153, 10), + (203138, 154, 10), + (203140, 167, 92), + (203140, 278, 6), + (203140, 279, 6), + (203140, 280, 6), + (203140, 281, 6), + (203140, 282, 6), + (203140, 311, 6), + (203140, 317, 6), + (203140, 316, 6), + (203140, 119, 8), + (203142, 167, 85), + (203142, 278, 3), + (203142, 279, 3), + (203142, 280, 3), + (203142, 281, 3), + (203142, 282, 3), + (203142, 311, 3), + (203142, 317, 3), + (203142, 316, 3), + (203144, 167, 71), + (203146, 167, 57), + (203148, 167, 43), + (203150, 167, 29), + (203206, 104, 120), + (203206, 279, 5), + (203206, 278, 5), + (203206, 311, 5), + (203206, 316, 5), + (203206, 282, 5), + (203206, 281, 5), + (203206, 317, 5), + (203206, 280, 5), + (203208, 104, 107), + (203208, 279, 2), + (203208, 278, 2), + (203208, 311, 2), + (203208, 316, 2), + (203208, 282, 2), + (203208, 281, 2), + (203208, 317, 2), + (203208, 280, 2), + (203210, 104, 96), + (203212, 104, 68), + (203214, 104, 29), + (203292, 156, 450), + (203292, 277, 50), + (203293, 156, 1000), + (203293, 277, 200), + (203294, 156, 450), + (203294, 277, 50), + (203295, 156, 1000), + (203295, 277, 200), + (203445, 1, 240), + (203445, 114, 8), + (203445, 116, 8), + (203445, 136, 16), + (203445, 151, 8), + (203445, 161, 8), + (203445, 181, 20), + (203445, 21, 8), + (203445, 93, 900), + (203445, 95, 675), + (203445, 92, 900), + (203445, 97, 900), + (203445, 91, 900), + (203445, 96, 900), + (203445, 90, 900), + (203445, 94, 900), + (203446, 1, 240), + (203446, 115, 10), + (203446, 148, 10), + (203446, 150, 9), + (203446, 156, 60), + (203446, 17, 9), + (203446, 181, 14), + (203446, 93, 350), + (203446, 95, 340), + (203446, 92, 450), + (203446, 97, 450), + (203446, 91, 450), + (203446, 96, 450), + (203446, 90, 450), + (203446, 94, 450), + (203447, 142, 8), + (203447, 144, 8), + (203447, 181, 16), + (203447, 19, 8), + (203447, 93, 1150), + (203447, 95, 900), + (203447, 92, 1200), + (203447, 97, 1200), + (203447, 91, 1200), + (203447, 96, 1200), + (203447, 90, 1200), + (203447, 94, 1200), + (203448, 111, 8), + (203448, 113, 8), + (203448, 145, 8), + (203448, 146, 10), + (203448, 147, 10), + (203448, 167, 12), + (203448, 181, 8), + (203448, 93, 250), + (203448, 95, 225), + (203448, 92, 300), + (203448, 97, 300), + (203448, 91, 300), + (203448, 96, 300), + (203448, 90, 300), + (203448, 94, 300), + (203449, 1, 240), + (203449, 104, 8), + (203449, 124, 8), + (203449, 126, 8), + (203449, 128, 10), + (203449, 155, 16), + (203449, 181, 10), + (203449, 20, 10), + (203449, 93, 800), + (203449, 95, 600), + (203449, 92, 800), + (203449, 97, 800), + (203449, 91, 800), + (203449, 96, 800), + (203449, 90, 800), + (203449, 94, 800), + (203450, 105, 7), + (203450, 107, 7), + (203450, 116, 7), + (203450, 118, 7), + (203450, 119, 7), + (203450, 133, 7), + (203450, 94, 300), + (203450, 93, 300), + (203450, 95, 300), + (203450, 92, 300), + (203450, 97, 225), + (203450, 91, 300), + (203450, 96, 300), + (203450, 90, 300), + (203451, 142, 8), + (203451, 144, 8), + (203451, 181, 16), + (203451, 19, 8), + (203451, 93, 1150), + (203451, 95, 1200), + (203451, 92, 1200), + (203451, 97, 900), + (203451, 91, 1200), + (203451, 96, 1200), + (203451, 90, 1200), + (203451, 94, 1200), + (203452, 1, 240), + (203452, 115, 10), + (203452, 148, 10), + (203452, 150, 9), + (203452, 156, 60), + (203452, 17, 9), + (203452, 181, 14), + (203452, 93, 350), + (203452, 95, 450), + (203452, 92, 450), + (203452, 97, 340), + (203452, 91, 450), + (203452, 96, 450), + (203452, 90, 450), + (203452, 94, 450), + (203453, 1, 240), + (203453, 114, 8), + (203453, 116, 8), + (203453, 136, 16), + (203453, 151, 8), + (203453, 161, 8), + (203453, 181, 20), + (203453, 21, 8), + (203453, 93, 900), + (203453, 95, 900), + (203453, 92, 900), + (203453, 97, 675), + (203453, 91, 900), + (203453, 96, 900), + (203453, 90, 900), + (203453, 94, 900), + (203454, 1, 240), + (203454, 104, 8), + (203454, 124, 8), + (203454, 126, 8), + (203454, 128, 10), + (203454, 155, 16), + (203454, 181, 10), + (203454, 20, 10), + (203454, 93, 800), + (203454, 95, 800), + (203454, 92, 800), + (203454, 97, 600), + (203454, 91, 800), + (203454, 96, 800), + (203454, 90, 800), + (203454, 94, 800), + (203455, 111, 8), + (203455, 113, 8), + (203455, 145, 8), + (203455, 146, 10), + (203455, 147, 10), + (203455, 167, 12), + (203455, 181, 8), + (203455, 93, 250), + (203455, 95, 300), + (203455, 92, 300), + (203455, 97, 225), + (203455, 91, 300), + (203455, 96, 300), + (203455, 90, 300), + (203455, 94, 300), + (203530, 105, 7), + (203530, 107, 7), + (203530, 116, 7), + (203530, 118, 7), + (203530, 119, 7), + (203530, 133, 7), + (203530, 93, 250), + (203530, 95, 225), + (203530, 92, 300), + (203530, 97, 300), + (203530, 91, 300), + (203530, 96, 300), + (203530, 90, 300), + (203530, 94, 300), + (203549, 156, 1200), + (203550, 156, 500), + (203553, 156, 500), + (203554, 156, 1200), + (203555, 154, 64), + (203555, 156, 600), + (203556, 154, 80), + (203556, 156, 1400), + (203557, 156, 500), + (203558, 156, 1200), + (203574, 93, 300), + (203574, 119, 30), + (203574, 154, 20), + (203829, 281, 18), + (203829, 317, 18), + (203829, 380, 1), + (203829, 90, 50), + (203829, 91, 50), + (203829, 93, 200), + (203829, 96, 200), + (203830, 281, 36), + (203830, 317, 36), + (203830, 380, 10), + (203830, 90, 100), + (203830, 91, 100), + (203830, 93, 400), + (203830, 96, 400), + (203832, 1, 120), + (203832, 90, 80), + (203832, 91, 80), + (203832, 92, 80), + (203832, 93, 80), + (203832, 94, 80), + (203832, 95, 80), + (203832, 96, 80), + (203832, 97, 80), + (203834, 276, 6), + (203834, 277, 6), + (203834, 278, 10), + (203834, 280, 10), + (203834, 282, 10), + (203834, 311, 10), + (203834, 316, 10), + (203834, 90, 150), + (203834, 91, 150), + (203834, 92, 150), + (203834, 93, 75), + (203834, 95, 75), + (203834, 97, 75), + (203841, 276, 20), + (203841, 277, 20), + (203841, 278, 40), + (203841, 280, 40), + (203841, 282, 40), + (203841, 311, 40), + (203841, 316, 40), + (203841, 90, 500), + (203841, 91, 500), + (203841, 92, 500), + (203841, 93, 250), + (203841, 95, 250), + (203841, 97, 250), + (203848, 96, 50), + (204157, 1, 300), + (204157, 90, 200), + (204157, 91, 200), + (204157, 92, 200), + (204157, 93, 200), + (204157, 94, 200), + (204157, 95, 200), + (204157, 96, 200), + (204157, 97, 200), + (204206, 154, 64), + (204207, 154, 80), + (204336, 168, 25), + (204338, 168, 50), + (204340, 168, 10), + (204342, 168, 100), + (204363, 276, 15), + (204365, 276, 30), + (204367, 276, 45), + (204369, 276, 60), + (204371, 276, 100), + (204396, 127, 4), + (204396, 149, 3), + (204397, 164, -35), + (204397, 277, 35), + (204569, 168, 30), + (204571, 181, 2), + (204571, 1, 10), + (204571, 279, 2), + (204571, 280, 2), + (204571, 278, 2), + (204571, 92, 10), + (204571, 90, 10), + (204571, 91, 10), + (204571, 97, 10), + (204571, 95, 10), + (204571, 96, 10), + (204571, 93, 10), + (204571, 94, 10), + (204572, 181, 3), + (204572, 1, 15), + (204572, 279, 4), + (204572, 280, 4), + (204572, 278, 4), + (204572, 92, 17), + (204572, 90, 17), + (204572, 91, 17), + (204572, 97, 17), + (204572, 95, 17), + (204572, 96, 17), + (204572, 93, 17), + (204572, 94, 17), + (204573, 181, 4), + (204573, 1, 20), + (204573, 279, 6), + (204573, 280, 6), + (204573, 278, 6), + (204573, 92, 25), + (204573, 90, 25), + (204573, 91, 25), + (204573, 97, 25), + (204573, 95, 25), + (204573, 96, 25), + (204573, 93, 25), + (204573, 94, 25), + (204574, 181, 5), + (204574, 1, 25), + (204574, 279, 6), + (204574, 280, 6), + (204574, 278, 6), + (204574, 92, 32), + (204574, 90, 32), + (204574, 91, 32), + (204574, 97, 32), + (204574, 95, 32), + (204574, 96, 32), + (204574, 93, 32), + (204574, 94, 32), + (204574, 128, 1), + (204574, 127, 1), + (204575, 181, 5), + (204575, 1, 25), + (204575, 279, 6), + (204575, 280, 6), + (204575, 278, 6), + (204575, 92, 32), + (204575, 90, 32), + (204575, 91, 32), + (204575, 97, 32), + (204575, 95, 32), + (204575, 96, 32), + (204575, 93, 32), + (204575, 94, 32), + (204575, 130, 1), + (204575, 131, 1), + (204576, 181, 5), + (204576, 1, 25), + (204576, 279, 6), + (204576, 280, 6), + (204576, 278, 6), + (204576, 92, 32), + (204576, 90, 32), + (204576, 91, 32), + (204576, 97, 32), + (204576, 95, 32), + (204576, 96, 32), + (204576, 93, 32), + (204576, 94, 32), + (204576, 129, 1), + (204576, 122, 1), + (204577, 181, 6), + (204577, 1, 35), + (204577, 279, 10), + (204577, 280, 10), + (204577, 278, 10), + (204577, 92, 40), + (204577, 90, 40), + (204577, 91, 40), + (204577, 97, 40), + (204577, 95, 40), + (204577, 96, 40), + (204577, 93, 40), + (204577, 94, 40), + (204577, 128, 2), + (204577, 127, 2), + (204578, 181, 6), + (204578, 1, 35), + (204578, 279, 10), + (204578, 280, 10), + (204578, 278, 10), + (204578, 92, 40), + (204578, 90, 40), + (204578, 91, 40), + (204578, 97, 40), + (204578, 95, 40), + (204578, 96, 40), + (204578, 93, 40), + (204578, 94, 40), + (204578, 130, 2), + (204578, 131, 2), + (204579, 181, 6), + (204579, 1, 35), + (204579, 279, 10), + (204579, 280, 10), + (204579, 278, 10), + (204579, 92, 40), + (204579, 90, 40), + (204579, 91, 40), + (204579, 97, 40), + (204579, 95, 40), + (204579, 96, 40), + (204579, 93, 40), + (204579, 94, 40), + (204579, 129, 2), + (204579, 122, 2), + (204593, 227, 4), + (204593, 226, 4), + (204593, 228, 4), + (204593, 233, 4), + (204593, 231, 4), + (204593, 229, 4), + (204593, 234, 4), + (204593, 230, 4), + (204593, 97, 100), + (204595, 96, 100), + (204595, 168, 5), + (204595, 1, 20), + (204596, 1, 45), + (204596, 91, 30), + (204596, 90, 30), + (204596, 92, 30), + (204596, 97, 30), + (204596, 95, 30), + (204596, 96, 30), + (204596, 93, 30), + (204596, 94, 30), + (204598, 91, 35), + (204598, 92, 35), + (204598, 90, 35), + (204598, 97, 35), + (204598, 95, 35), + (204598, 93, 35), + (204598, 96, 35), + (204598, 94, 35), + (204598, 164, 12), + (204598, 168, 12), + (204601, 45, 5), + (204601, 181, 15), + (204601, 221, 70), + (204602, 181, 26), + (204602, 221, 40), + (204603, 181, 33), + (204653, 1, -5), + (204653, 18, -3), + (204653, 16, 3), + (204653, 279, 15), + (204653, 280, 15), + (204653, 278, 15), + (204653, 316, 15), + (204653, 311, 15), + (204653, 281, 15), + (204653, 317, 15), + (204653, 282, 15), + (204698, 1, 100), + (204698, 156, -20), + (204698, 17, -3), + (204698, 91, 80), + (204698, 92, 80), + (204698, 90, 80), + (204698, 97, 80), + (204698, 95, 80), + (204698, 93, 80), + (204698, 96, 80), + (204698, 94, 80), + (204699, 93, 375), + (204699, 95, 329), + (204699, 92, 375), + (204699, 97, 329), + (204699, 91, 375), + (204699, 96, 329), + (204699, 90, 375), + (204699, 94, 329), + (204699, 164, 10), + (204699, 113, 1), + (204700, 93, 94), + (204700, 95, 82), + (204700, 92, 94), + (204700, 97, 82), + (204700, 91, 94), + (204700, 96, 82), + (204700, 90, 94), + (204700, 94, 82), + (204700, 164, 10), + (204701, 93, 94), + (204701, 95, 82), + (204701, 92, 94), + (204701, 97, 82), + (204701, 91, 94), + (204701, 96, 82), + (204701, 90, 94), + (204701, 94, 82), + (204701, 164, 10), + (204701, 151, 1), + (204702, 93, 234), + (204702, 95, 205), + (204702, 92, 234), + (204702, 97, 205), + (204702, 91, 234), + (204702, 96, 205), + (204702, 90, 234), + (204702, 94, 205), + (204702, 164, 10), + (204702, 113, 1), + (204703, 93, 140), + (204703, 95, 123), + (204703, 92, 140), + (204703, 97, 123), + (204703, 91, 140), + (204703, 96, 123), + (204703, 90, 140), + (204703, 94, 123), + (204703, 164, 10), + (204703, 151, 1), + (204704, 93, 281), + (204704, 95, 246), + (204704, 92, 281), + (204704, 97, 246), + (204704, 91, 281), + (204704, 96, 246), + (204704, 90, 281), + (204704, 94, 246), + (204704, 164, 10), + (204704, 113, 1), + (204704, 151, 1), + (204706, 128, 10), + (204706, 127, 10), + (204706, 221, 300), + (204706, 318, -1), + (204746, 1, 15), + (204748, 93, 520), + (204748, 95, 520), + (204748, 92, 520), + (204748, 97, 520), + (204748, 91, 520), + (204748, 96, 520), + (204748, 90, 520), + (204748, 94, 520), + (204748, 1, 20), + (204751, 1, 15), + (204752, 1, 15), + (204755, 1, 20), + (204755, 92, 80), + (204756, 151, 5), + (204756, 136, 10), + (204756, 113, 1), + (204757, 95, 31), + (204757, 96, 65), + (204757, 94, 65), + (204757, 93, 65), + (204757, 97, 31), + (204757, 90, 65), + (204757, 92, 65), + (204757, 91, 65), + (204757, 100, 4), + (204757, 153, 3), + (204757, 154, 3), + (204757, 155, 3), + (204757, 279, 5), + (204757, 280, 5), + (204757, 278, 5), + (204757, 316, 5), + (204757, 311, 5), + (204757, 281, 5), + (204757, 317, 5), + (204757, 282, 5), + (204757, 1, 10), + (204758, 95, 71), + (204758, 96, 71), + (204758, 94, 71), + (204758, 93, 71), + (204758, 97, 71), + (204758, 90, 98), + (204758, 92, 71), + (204758, 91, 98), + (204758, 16, 5), + (204758, 1, 20), + (204758, 279, 9), + (204758, 280, 9), + (204758, 278, 9), + (204758, 316, 9), + (204758, 311, 9), + (204758, 281, 9), + (204758, 317, 9), + (204758, 282, 9), + (204758, 142, 2), + (204759, 91, 430), + (204759, 92, 430), + (204759, 90, 430), + (204759, 97, 430), + (204759, 95, 430), + (204759, 93, 430), + (204759, 96, 430), + (204759, 94, 430), + (204759, 318, -1), + (204759, 1, 34), + (204760, 91, 315), + (204760, 92, 315), + (204760, 90, 315), + (204760, 97, 315), + (204760, 95, 315), + (204760, 93, 315), + (204760, 96, 315), + (204760, 94, 315), + (204760, 1, 20), + (204761, 91, 80), + (204761, 92, 80), + (204761, 90, 80), + (204761, 97, 80), + (204761, 95, 80), + (204761, 93, 80), + (204761, 96, 80), + (204761, 94, 80), + (204762, 91, 240), + (204762, 92, 240), + (204762, 90, 240), + (204762, 97, 240), + (204762, 95, 240), + (204762, 96, 240), + (204762, 93, 240), + (204762, 94, 240), + (204762, 1, 11), + (204763, 91, 160), + (204763, 92, 160), + (204763, 90, 160), + (204763, 97, 160), + (204763, 95, 160), + (204763, 96, 160), + (204763, 93, 160), + (204763, 94, 160), + (204763, 1, 6), + (204791, 311, 1), + (204791, 316, 1), + (204791, 93, 30), + (204791, 95, 5), + (204791, 92, 30), + (204791, 97, 5), + (204791, 91, 30), + (204791, 96, 30), + (204791, 90, 30), + (204791, 94, 30), + (204792, 311, 2), + (204792, 316, 2), + (204792, 93, 60), + (204792, 95, 10), + (204792, 92, 60), + (204792, 97, 10), + (204792, 91, 60), + (204792, 96, 60), + (204792, 90, 60), + (204792, 94, 60), + (204793, 311, 3), + (204793, 316, 3), + (204793, 93, 90), + (204793, 95, 15), + (204793, 92, 90), + (204793, 97, 15), + (204793, 91, 90), + (204793, 96, 90), + (204793, 90, 90), + (204793, 94, 90), + (204794, 311, 4), + (204794, 316, 4), + (204794, 93, 120), + (204794, 95, 20), + (204794, 92, 120), + (204794, 97, 20), + (204794, 91, 120), + (204794, 96, 120), + (204794, 90, 120), + (204794, 94, 120), + (204795, 311, 5), + (204795, 316, 5), + (204795, 93, 150), + (204795, 95, 25), + (204795, 92, 150), + (204795, 97, 25), + (204795, 91, 150), + (204795, 96, 150), + (204795, 90, 150), + (204795, 94, 150), + (204796, 311, 6), + (204796, 316, 6), + (204796, 93, 180), + (204796, 95, 30), + (204796, 92, 180), + (204796, 97, 30), + (204796, 91, 180), + (204796, 96, 180), + (204796, 90, 180), + (204796, 94, 180), + (204797, 311, 7), + (204797, 316, 7), + (204797, 93, 210), + (204797, 95, 35), + (204797, 92, 210), + (204797, 97, 35), + (204797, 91, 210), + (204797, 96, 210), + (204797, 90, 210), + (204797, 94, 210), + (204798, 311, 8), + (204798, 316, 8), + (204798, 93, 240), + (204798, 95, 40), + (204798, 92, 240), + (204798, 97, 40), + (204798, 91, 240), + (204798, 96, 240), + (204798, 90, 240), + (204798, 94, 240), + (204799, 311, 9), + (204799, 316, 9), + (204799, 93, 270), + (204799, 95, 45), + (204799, 92, 270), + (204799, 97, 45), + (204799, 91, 270), + (204799, 96, 270), + (204799, 90, 270), + (204799, 94, 270), + (204800, 311, 10), + (204800, 316, 10), + (204800, 93, 300), + (204800, 95, 50), + (204800, 92, 300), + (204800, 97, 50), + (204800, 91, 300), + (204800, 96, 300), + (204800, 90, 300), + (204800, 94, 300), + (204801, 311, 11), + (204801, 316, 11), + (204801, 93, 330), + (204801, 95, 55), + (204801, 92, 330), + (204801, 97, 55), + (204801, 91, 330), + (204801, 96, 330), + (204801, 90, 330), + (204801, 94, 330), + (204802, 311, 12), + (204802, 316, 12), + (204802, 93, 360), + (204802, 95, 60), + (204802, 92, 360), + (204802, 97, 60), + (204802, 91, 360), + (204802, 96, 360), + (204802, 90, 360), + (204802, 94, 360), + (204803, 311, 1), + (204803, 316, 1), + (204803, 93, 30), + (204803, 95, 5), + (204803, 92, 30), + (204803, 97, 5), + (204803, 91, 30), + (204803, 96, 30), + (204803, 90, 30), + (204803, 94, 30), + (204804, 311, 2), + (204804, 316, 2), + (204804, 93, 60), + (204804, 95, 10), + (204804, 92, 60), + (204804, 97, 10), + (204804, 91, 60), + (204804, 96, 60), + (204804, 90, 60), + (204804, 94, 60), + (204805, 311, 3), + (204805, 316, 3), + (204805, 93, 90), + (204805, 95, 15), + (204805, 92, 90), + (204805, 97, 15), + (204805, 91, 90), + (204805, 96, 90), + (204805, 90, 90), + (204805, 94, 90), + (204806, 311, 4), + (204806, 316, 4), + (204806, 93, 120), + (204806, 95, 20), + (204806, 92, 120), + (204806, 97, 20), + (204806, 91, 120), + (204806, 96, 120), + (204806, 90, 120), + (204806, 94, 120), + (204807, 311, 5), + (204807, 316, 5), + (204807, 93, 150), + (204807, 95, 25), + (204807, 92, 150), + (204807, 97, 25), + (204807, 91, 150), + (204807, 96, 150), + (204807, 90, 150), + (204807, 94, 150), + (204808, 311, 6), + (204808, 316, 6), + (204808, 93, 180), + (204808, 95, 30), + (204808, 92, 180), + (204808, 97, 30), + (204808, 91, 180), + (204808, 96, 180), + (204808, 90, 180), + (204808, 94, 180), + (204809, 311, 7), + (204809, 316, 7), + (204809, 93, 210), + (204809, 95, 35), + (204809, 92, 210), + (204809, 97, 35), + (204809, 91, 210), + (204809, 96, 210), + (204809, 90, 210), + (204809, 94, 210), + (204810, 311, 8), + (204810, 316, 8), + (204810, 93, 240), + (204810, 95, 40), + (204810, 92, 240), + (204810, 97, 40), + (204810, 91, 240), + (204810, 96, 240), + (204810, 90, 240), + (204810, 94, 240), + (204811, 311, 9), + (204811, 316, 9), + (204811, 93, 270), + (204811, 95, 45), + (204811, 92, 270), + (204811, 97, 45), + (204811, 91, 270), + (204811, 96, 270), + (204811, 90, 270), + (204811, 94, 270), + (204812, 311, 10), + (204812, 316, 10), + (204812, 93, 300), + (204812, 95, 50), + (204812, 92, 300), + (204812, 97, 50), + (204812, 91, 300), + (204812, 96, 300), + (204812, 90, 300), + (204812, 94, 300), + (204813, 311, 11), + (204813, 316, 11), + (204813, 93, 330), + (204813, 95, 55), + (204813, 92, 330), + (204813, 97, 55), + (204813, 91, 330), + (204813, 96, 330), + (204813, 90, 330), + (204813, 94, 330), + (204814, 311, 12), + (204814, 316, 12), + (204814, 93, 360), + (204814, 95, 60), + (204814, 92, 360), + (204814, 97, 60), + (204814, 91, 360), + (204814, 96, 360), + (204814, 90, 360), + (204814, 94, 360), + (204815, 311, 1), + (204815, 316, 1), + (204815, 93, 30), + (204815, 95, 5), + (204815, 92, 30), + (204815, 97, 5), + (204815, 91, 30), + (204815, 96, 30), + (204815, 90, 30), + (204815, 94, 30), + (204816, 311, 2), + (204816, 316, 2), + (204816, 93, 60), + (204816, 95, 10), + (204816, 92, 60), + (204816, 97, 10), + (204816, 91, 60), + (204816, 96, 60), + (204816, 90, 60), + (204816, 94, 60), + (204817, 311, 3), + (204817, 316, 3), + (204817, 93, 90), + (204817, 95, 15), + (204817, 92, 90), + (204817, 97, 15), + (204817, 91, 90), + (204817, 96, 90), + (204817, 90, 90), + (204817, 94, 90), + (204818, 311, 4), + (204818, 316, 4), + (204818, 93, 120), + (204818, 95, 20), + (204818, 92, 120), + (204818, 97, 20), + (204818, 91, 120), + (204818, 96, 120), + (204818, 90, 120), + (204818, 94, 120), + (204819, 311, 5), + (204819, 316, 5), + (204819, 93, 150), + (204819, 95, 25), + (204819, 92, 150), + (204819, 97, 25), + (204819, 91, 150), + (204819, 96, 150), + (204819, 90, 150), + (204819, 94, 150), + (204820, 311, 6), + (204820, 316, 6), + (204820, 93, 180), + (204820, 95, 30), + (204820, 92, 180), + (204820, 97, 30), + (204820, 91, 180), + (204820, 96, 180), + (204820, 90, 180), + (204820, 94, 180), + (204821, 311, 7), + (204821, 316, 7), + (204821, 93, 210), + (204821, 95, 35), + (204821, 92, 210), + (204821, 97, 35), + (204821, 91, 210), + (204821, 96, 210), + (204821, 90, 210), + (204821, 94, 210), + (204822, 311, 8), + (204822, 316, 8), + (204822, 93, 240), + (204822, 95, 40), + (204822, 92, 240), + (204822, 97, 40), + (204822, 91, 240), + (204822, 96, 240), + (204822, 90, 240), + (204822, 94, 240), + (204823, 311, 9), + (204823, 316, 9), + (204823, 93, 270), + (204823, 95, 45), + (204823, 92, 270), + (204823, 97, 45), + (204823, 91, 270), + (204823, 96, 270), + (204823, 90, 270), + (204823, 94, 270), + (204824, 311, 10), + (204824, 316, 10), + (204824, 93, 300), + (204824, 95, 50), + (204824, 92, 300), + (204824, 97, 50), + (204824, 91, 300), + (204824, 96, 300), + (204824, 90, 300), + (204824, 94, 300), + (204825, 311, 11), + (204825, 316, 11), + (204825, 93, 330), + (204825, 95, 55), + (204825, 92, 330), + (204825, 97, 55), + (204825, 91, 330), + (204825, 96, 330), + (204825, 90, 330), + (204825, 94, 330), + (204826, 311, 12), + (204826, 316, 12), + (204826, 93, 360), + (204826, 95, 60), + (204826, 92, 360), + (204826, 97, 60), + (204826, 91, 360), + (204826, 96, 360), + (204826, 90, 360), + (204826, 94, 360), + (204853, 93, 100), + (204853, 95, 40), + (204853, 92, 120), + (204853, 97, 40), + (204853, 91, 120), + (204853, 96, 100), + (204853, 90, 120), + (204853, 94, 120), + (204854, 93, 300), + (204854, 95, 120), + (204854, 92, 360), + (204854, 97, 120), + (204854, 91, 360), + (204854, 96, 300), + (204854, 90, 360), + (204854, 94, 360), + (204882, 317, 1), + (204882, 96, 1), + (204883, 317, 30), + (204883, 96, 150), + (204962, 154, 5), + (204962, 153, 5), + (204962, 94, 10), + (204963, 154, 5), + (204963, 153, 5), + (204963, 94, 10), + (204964, 154, 10), + (204964, 153, 10), + (204964, 94, 35), + (204965, 154, 10), + (204965, 153, 10), + (204965, 94, 35), + (204966, 154, 20), + (204966, 153, 20), + (204966, 94, 70), + (204967, 154, 20), + (204967, 153, 20), + (204967, 94, 70), + (204968, 154, 30), + (204968, 153, 30), + (204968, 94, 105), + (204969, 154, 30), + (204969, 153, 30), + (204969, 94, 105), + (204970, 154, 35), + (204970, 153, 35), + (204970, 94, 140), + (204971, 154, 35), + (204971, 153, 35), + (204971, 94, 140), + (204972, 154, 40), + (204972, 153, 40), + (204972, 94, 175), + (204986, 278, 20), + (204986, 93, 500), + (204986, 95, 400), + (204986, 92, 600), + (204986, 97, 400), + (204986, 91, 600), + (204986, 96, 400), + (204986, 90, 600), + (204986, 94, 500), + (204986, 156, -40), + (204987, 278, 40), + (204987, 93, 900), + (204987, 95, 700), + (204987, 92, 1100), + (204987, 97, 700), + (204987, 91, 1200), + (204987, 96, 700), + (204987, 90, 1200), + (204987, 94, 900), + (204987, 156, -80), + (204989, 278, 20), + (204989, 93, 500), + (204989, 95, 400), + (204989, 92, 600), + (204989, 97, 400), + (204989, 91, 600), + (204989, 96, 400), + (204989, 90, 600), + (204989, 94, 500), + (204989, 156, -80), + (204990, 278, 40), + (204990, 93, 900), + (204990, 95, 700), + (204990, 92, 1100), + (204990, 97, 700), + (204990, 91, 1200), + (204990, 96, 700), + (204990, 90, 1200), + (204990, 94, 900), + (204990, 156, -160), + (204991, 278, 50), + (204991, 93, 1250), + (204991, 95, 1000), + (204991, 92, 1600), + (204991, 97, 1000), + (204991, 91, 1600), + (204991, 96, 1000), + (204991, 90, 1600), + (204991, 94, 1250), + (204991, 156, -200), + (204993, 111, 1), + (204994, 111, 40), + (204995, 122, 8), + (204995, 127, 8), + (204995, 128, 8), + (204995, 129, 8), + (204995, 130, 8), + (204995, 131, 8), + (204995, 149, 20), + (204995, 221, 150), + (204995, 92, 500), + (204995, 93, 400), + (204995, 94, 500), + (204995, 96, 400), + (204996, 122, 8), + (204996, 127, 8), + (204996, 128, 8), + (204996, 129, 8), + (204996, 130, 8), + (204996, 131, 8), + (204996, 149, 30), + (204996, 221, 225), + (204996, 92, 750), + (204996, 93, 600), + (204996, 94, 750), + (204996, 96, 600), + (204997, 122, 8), + (204997, 127, 8), + (204997, 128, 8), + (204997, 129, 8), + (204997, 130, 8), + (204997, 131, 8), + (204997, 221, 150), + (204997, 92, 500), + (204997, 93, 400), + (204997, 94, 500), + (204997, 96, 400), + (204998, 122, 8), + (204998, 127, 8), + (204998, 128, 8), + (204998, 129, 8), + (204998, 130, 8), + (204998, 131, 8), + (204998, 221, 225), + (204998, 92, 750), + (204998, 93, 600), + (204998, 94, 750), + (204998, 96, 600), + (204999, 122, 8), + (204999, 127, 8), + (204999, 128, 8), + (204999, 129, 8), + (204999, 130, 8), + (204999, 131, 8), + (204999, 221, 100), + (204999, 92, 500), + (204999, 93, 400), + (204999, 94, 500), + (204999, 96, 400), + (205000, 122, 8), + (205000, 127, 8), + (205000, 128, 8), + (205000, 129, 8), + (205000, 130, 8), + (205000, 131, 8), + (205000, 221, 150), + (205000, 92, 750), + (205000, 93, 600), + (205000, 94, 750), + (205000, 96, 600), + (205136, 391, 100), + (205178, 156, 500), + (205178, 205, 1000), + (205178, 206, 1000), + (205178, 207, 1000), + (205178, 208, 1000), + (205178, 216, 1000), + (205178, 217, 1000), + (205178, 218, 1000), + (205178, 219, 1000), + (205178, 225, 1000), + (205178, 93, 5000), + (205178, 95, 5000), + (205178, 92, 5000), + (205178, 97, 5000), + (205178, 91, 5000), + (205178, 168, 5000), + (205178, 96, 5000), + (205178, 90, 5000), + (205178, 94, 5000), + (205178, 1, 100000), + (205178, 27, 100000), + (205178, 343, 100000), + (205178, 364, 100000), + (205184, 276, 129), + (205186, 276, 175), + (205188, 276, 213), + (205190, 276, 269), + (205192, 276, 88), + (205194, 276, 304), + (205196, 276, 52), + (205198, 276, 24), + (205230, 276, 32), + (205230, 277, 6), + (205232, 276, 79), + (205232, 277, 14), + (205234, 276, 120), + (205234, 277, 21), + (205236, 276, 165), + (205236, 277, 28), + (205238, 276, 205), + (205238, 277, 36), + (205240, 276, 250), + (205240, 277, 43), + (205242, 276, 291), + (205242, 277, 50), + (205244, 276, 338), + (205244, 277, 58), + (205246, 276, 374), + (205246, 277, 68), + (205248, 276, 417), + (205248, 277, 79), + (205250, 276, 446), + (205250, 277, 88), + (205288, 276, 51), + (205288, 201, 10), + (205290, 276, 88), + (205290, 201, 12), + (205292, 276, 121), + (205292, 201, 14), + (205294, 276, 156), + (205294, 201, 16), + (205296, 276, 187), + (205296, 201, 19), + (205298, 276, 223), + (205298, 201, 22), + (205300, 276, 260), + (205300, 201, 25), + (205302, 276, 298), + (205302, 201, 27), + (205304, 276, 354), + (205304, 201, 30), + (205591, 1, 350), + (205591, 360, 30), + (205591, 276, 80), + (205591, 279, 30), + (205591, 280, 30), + (205591, 278, 30), + (205591, 316, 30), + (205591, 311, 30), + (205591, 317, 30), + (205591, 281, 30), + (205591, 282, 30), + (205595, 318, 12), + (205597, 156, -200), + (205601, 129, -35), + (205601, 122, -35), + (205601, 130, -35), + (205601, 131, -35), + (205601, 127, -35), + (205601, 128, -35), + (205603, 279, -24), + (205603, 280, -24), + (205603, 278, -24), + (205603, 316, -24), + (205603, 311, -24), + (205603, 317, -24), + (205603, 281, -24), + (205603, 282, -24), + (205605, 118, -200), + (205605, 120, -200), + (205605, 149, -200), + (205605, 119, -200), + (205605, 156, -220), + (205620, 118, -400), + (205620, 119, -400), + (205620, 120, -400), + (205620, 149, -26), + (205620, 151, 304), + (205620, 379, 8), + (205620, 380, 42), + (205736, 122, 5), + (205736, 146, 10), + (205736, 319, 1), + (205738, 161, 5), + (205738, 92, 240), + (205738, 91, 80), + (205738, 90, 80), + (205738, 95, 80), + (205738, 97, 80), + (205738, 93, 80), + (205738, 94, 80), + (205738, 96, 80), + (205739, 156, 20), + (205739, 90, 240), + (205739, 91, 80), + (205739, 92, 80), + (205739, 95, 80), + (205739, 97, 80), + (205739, 93, 80), + (205739, 94, 80), + (205739, 96, 80), + (205740, 144, 5), + (205740, 91, 240), + (205740, 90, 80), + (205740, 92, 80), + (205740, 95, 80), + (205740, 97, 80), + (205740, 93, 80), + (205740, 94, 80), + (205740, 96, 80), + (205742, 161, 5), + (205742, 158, 4), + (205742, 157, 4), + (205742, 126, 4), + (205742, 125, 4), + (205742, 90, 80), + (205742, 91, 80), + (205742, 95, 80), + (205742, 97, 80), + (205742, 93, 80), + (205742, 94, 80), + (205742, 96, 80), + (205742, 92, 240), + (205743, 161, 5), + (205743, 158, 10), + (205743, 157, 10), + (205743, 126, 10), + (205743, 125, 10), + (205743, 90, 200), + (205743, 91, 200), + (205743, 95, 200), + (205743, 97, 200), + (205743, 93, 200), + (205743, 94, 200), + (205743, 96, 200), + (205743, 92, 360), + (205950, 93, 731), + (205950, 95, 640), + (205950, 92, 731), + (205950, 97, 640), + (205950, 91, 640), + (205950, 96, 640), + (205950, 90, 731), + (205950, 94, 640), + (205950, 164, 20), + (205950, 113, 8), + (205950, 151, 4), + (205950, 1, 150), + (205950, 181, 4), + (205950, 279, 8), + (205950, 280, 8), + (205950, 278, 8), + (205950, 316, 8), + (205950, 311, 8), + (205950, 317, 8), + (205950, 281, 8), + (205950, 282, 8), + (205951, 93, 975), + (205951, 95, 853), + (205951, 92, 975), + (205951, 97, 953), + (205951, 91, 953), + (205951, 96, 853), + (205951, 90, 975), + (205951, 94, 853), + (205951, 164, 20), + (205951, 113, 6), + (205951, 151, 4), + (205951, 1, 150), + (205951, 181, 4), + (205951, 279, 8), + (205951, 278, 8), + (205951, 280, 8), + (205951, 311, 8), + (205951, 316, 8), + (205951, 317, 8), + (205951, 281, 8), + (205951, 282, 8), + (205952, 93, 609), + (205952, 95, 532), + (205952, 92, 609), + (205952, 97, 532), + (205952, 91, 532), + (205952, 96, 532), + (205952, 90, 609), + (205952, 94, 532), + (205952, 164, 20), + (205952, 113, 6), + (205952, 151, 3), + (205952, 1, 90), + (205952, 181, 4), + (205952, 279, 8), + (205952, 278, 8), + (205952, 280, 8), + (205952, 311, 8), + (205952, 316, 8), + (205952, 281, 8), + (205952, 317, 8), + (205952, 282, 8), + (205953, 93, 244), + (205953, 95, 213), + (205953, 92, 244), + (205953, 97, 213), + (205953, 91, 213), + (205953, 96, 213), + (205953, 90, 244), + (205953, 94, 213), + (205953, 164, 20), + (205953, 113, 6), + (205953, 151, 8), + (205953, 1, 90), + (205953, 181, 4), + (205953, 279, 8), + (205953, 278, 8), + (205953, 280, 8), + (205953, 316, 8), + (205953, 311, 8), + (205953, 317, 8), + (205953, 281, 8), + (205953, 282, 8), + (205954, 93, 244), + (205954, 95, 213), + (205954, 92, 244), + (205954, 97, 213), + (205954, 91, 213), + (205954, 96, 213), + (205954, 90, 244), + (205954, 94, 213), + (205954, 164, 20), + (205954, 113, 2), + (205954, 151, 1), + (205954, 1, 80), + (205954, 181, 4), + (205954, 279, 8), + (205954, 278, 8), + (205954, 280, 8), + (205954, 316, 8), + (205954, 311, 8), + (205954, 317, 8), + (205954, 281, 8), + (205954, 282, 8), + (205955, 93, 366), + (205955, 95, 320), + (205955, 92, 366), + (205955, 97, 320), + (205955, 91, 320), + (205955, 96, 320), + (205955, 90, 366), + (205955, 94, 320), + (205955, 164, 20), + (205955, 113, 4), + (205955, 151, 2), + (205955, 1, 90), + (205955, 181, 4), + (205955, 279, 8), + (205955, 278, 8), + (205955, 280, 8), + (205955, 311, 8), + (205955, 316, 8), + (205955, 281, 8), + (205955, 317, 8), + (205955, 282, 8), + (205956, 93, 160), + (205956, 95, 228), + (205956, 92, 228), + (205956, 97, 250), + (205956, 91, 250), + (205956, 96, 228), + (205956, 90, 250), + (205956, 94, 250), + (205956, 103, 2), + (205956, 112, 2), + (205956, 1, 80), + (205956, 343, 1), + (205956, 276, 1), + (205956, 129, 1), + (205956, 122, 1), + (205956, 128, 1), + (205956, 127, 1), + (205956, 130, 1), + (205956, 131, 1), + (205956, 181, 2), + (205957, 93, 540), + (205957, 95, 885), + (205957, 92, 885), + (205957, 97, 1000), + (205957, 91, 1000), + (205957, 96, 885), + (205957, 90, 1000), + (205957, 94, 1000), + (205957, 103, 6), + (205957, 112, 6), + (205957, 1, 170), + (205957, 343, 1), + (205957, 276, 1), + (205957, 128, 1), + (205957, 127, 1), + (205957, 122, 1), + (205957, 129, 1), + (205957, 130, 1), + (205957, 131, 1), + (205957, 181, 2), + (205958, 93, 340), + (205958, 95, 556), + (205958, 92, 556), + (205958, 97, 625), + (205958, 91, 625), + (205958, 96, 556), + (205958, 90, 625), + (205958, 94, 625), + (205958, 103, 6), + (205958, 112, 6), + (205958, 343, 1), + (205958, 276, 1), + (205958, 1, 90), + (205958, 128, 1), + (205958, 127, 1), + (205958, 122, 1), + (205958, 129, 1), + (205958, 130, 1), + (205958, 131, 1), + (205958, 181, 2), + (205959, 93, 160), + (205959, 95, 228), + (205959, 92, 228), + (205959, 97, 250), + (205959, 91, 250), + (205959, 96, 228), + (205959, 90, 250), + (205959, 94, 250), + (205959, 103, 4), + (205959, 112, 4), + (205959, 343, 1), + (205959, 276, 1), + (205959, 1, 90), + (205959, 128, 1), + (205959, 127, 1), + (205959, 122, 1), + (205959, 129, 1), + (205959, 130, 1), + (205959, 131, 1), + (205959, 181, 2), + (205960, 93, 220), + (205960, 95, 338), + (205960, 92, 338), + (205960, 97, 375), + (205960, 91, 375), + (205960, 96, 338), + (205960, 90, 375), + (205960, 94, 375), + (205960, 103, 4), + (205960, 112, 4), + (205960, 1, 90), + (205960, 343, 1), + (205960, 276, 1), + (205960, 128, 1), + (205960, 127, 1), + (205960, 122, 1), + (205960, 129, 1), + (205960, 130, 1), + (205960, 131, 1), + (205960, 181, 2), + (205961, 93, 400), + (205961, 95, 656), + (205961, 92, 656), + (205961, 97, 750), + (205961, 91, 750), + (205961, 96, 656), + (205961, 90, 750), + (205961, 94, 750), + (205961, 112, 6), + (205961, 103, 6), + (205961, 343, 1), + (205961, 276, 1), + (205961, 1, 170), + (205961, 128, 1), + (205961, 127, 1), + (205961, 122, 1), + (205961, 129, 1), + (205961, 130, 1), + (205961, 131, 1), + (205961, 181, 2), + (205962, 93, 200), + (205962, 95, 258), + (205962, 92, 258), + (205962, 97, 280), + (205962, 91, 280), + (205962, 96, 258), + (205962, 90, 280), + (205962, 94, 280), + (205962, 103, 4), + (205962, 112, 4), + (205962, 1, 110), + (205962, 343, 3), + (205962, 276, 3), + (205962, 129, 2), + (205962, 122, 2), + (205962, 128, 2), + (205962, 127, 2), + (205962, 130, 2), + (205962, 131, 2), + (205962, 279, 4), + (205962, 280, 4), + (205962, 278, 4), + (205962, 316, 4), + (205962, 311, 4), + (205962, 317, 4), + (205962, 281, 4), + (205962, 282, 4), + (205962, 181, 4), + (205963, 93, 570), + (205963, 95, 915), + (205963, 92, 915), + (205963, 97, 1030), + (205963, 91, 1030), + (205963, 96, 915), + (205963, 90, 1030), + (205963, 94, 1030), + (205963, 103, 9), + (205963, 112, 9), + (205963, 1, 220), + (205963, 343, 3), + (205963, 276, 3), + (205963, 128, 2), + (205963, 127, 2), + (205963, 122, 2), + (205963, 129, 2), + (205963, 130, 2), + (205963, 131, 2), + (205963, 279, 4), + (205963, 280, 4), + (205963, 278, 4), + (205963, 316, 4), + (205963, 311, 4), + (205963, 281, 4), + (205963, 317, 4), + (205963, 282, 4), + (205963, 181, 4), + (205964, 93, 370), + (205964, 95, 586), + (205964, 92, 586), + (205964, 97, 655), + (205964, 91, 655), + (205964, 96, 586), + (205964, 90, 655), + (205964, 94, 655), + (205964, 103, 9), + (205964, 112, 9), + (205964, 343, 3), + (205964, 276, 3), + (205964, 1, 120), + (205964, 128, 2), + (205964, 127, 2), + (205964, 122, 2), + (205964, 129, 2), + (205964, 130, 2), + (205964, 131, 2), + (205964, 279, 4), + (205964, 278, 4), + (205964, 280, 4), + (205964, 316, 4), + (205964, 311, 4), + (205964, 281, 4), + (205964, 317, 4), + (205964, 282, 4), + (205964, 181, 4), + (205965, 93, 200), + (205965, 95, 258), + (205965, 92, 258), + (205965, 97, 280), + (205965, 91, 280), + (205965, 96, 258), + (205965, 90, 280), + (205965, 94, 280), + (205965, 103, 6), + (205965, 112, 6), + (205965, 343, 3), + (205965, 276, 3), + (205965, 1, 120), + (205965, 128, 2), + (205965, 127, 2), + (205965, 122, 2), + (205965, 129, 2), + (205965, 130, 2), + (205965, 131, 2), + (205965, 279, 4), + (205965, 280, 4), + (205965, 278, 4), + (205965, 316, 4), + (205965, 311, 4), + (205965, 281, 4), + (205965, 317, 4), + (205965, 282, 4), + (205965, 181, 4), + (205966, 93, 250), + (205966, 95, 368), + (205966, 92, 368), + (205966, 97, 415), + (205966, 91, 415), + (205966, 96, 368), + (205966, 90, 415), + (205966, 94, 415), + (205966, 103, 6), + (205966, 112, 6), + (205966, 1, 120), + (205966, 343, 3), + (205966, 276, 3), + (205966, 128, 2), + (205966, 127, 2), + (205966, 122, 2), + (205966, 129, 2), + (205966, 130, 2), + (205966, 131, 2), + (205966, 279, 4), + (205966, 278, 4), + (205966, 280, 4), + (205966, 316, 4), + (205966, 311, 4), + (205966, 317, 4), + (205966, 281, 4), + (205966, 282, 4), + (205966, 181, 4), + (205967, 93, 430), + (205967, 95, 686), + (205967, 92, 686), + (205967, 97, 780), + (205967, 91, 780), + (205967, 96, 686), + (205967, 90, 780), + (205967, 94, 780), + (205967, 112, 9), + (205967, 103, 9), + (205967, 343, 3), + (205967, 276, 3), + (205967, 1, 220), + (205967, 128, 2), + (205967, 127, 2), + (205967, 122, 2), + (205967, 129, 2), + (205967, 130, 2), + (205967, 131, 2), + (205967, 279, 4), + (205967, 280, 4), + (205967, 278, 4), + (205967, 316, 4), + (205967, 311, 4), + (205967, 281, 4), + (205967, 317, 4), + (205967, 282, 4), + (205967, 181, 4), + (206006, 1, 50), + (206006, 343, 1), + (206007, 1, 85), + (206007, 343, 2), + (206007, 277, 1), + (206008, 1, 140), + (206008, 343, 3), + (206008, 277, 2), + (206009, 221, 70), + (206009, 364, 1), + (206010, 221, 105), + (206010, 364, 2), + (206010, 277, 1), + (206011, 221, 180), + (206011, 364, 3), + (206011, 277, 2), + (206013, 1, -15), + (206013, 18, -5), + (206013, 16, 8), + (206013, 279, 32), + (206013, 280, 32), + (206013, 278, 32), + (206013, 316, 32), + (206013, 311, 32), + (206013, 281, 32), + (206013, 317, 32), + (206013, 282, 32), + (206015, 1, 150), + (206015, 156, -40), + (206015, 17, -7), + (206015, 91, 120), + (206015, 92, 120), + (206015, 90, 120), + (206015, 97, 120), + (206015, 95, 120), + (206015, 93, 120), + (206015, 96, 120), + (206015, 94, 120), + (206016, 128, 15), + (206016, 127, 15), + (206016, 221, 600), + (206016, 318, -1), + (206016, 364, 8), + (206018, 181, 70), + (206018, 221, 50), + (206022, 91, 200), + (206022, 92, 200), + (206022, 159, 20), + (206052, 1, 205), + (206053, 128, 4), + (206053, 122, 4), + (206053, 130, 4), + (206054, 127, 4), + (206054, 129, 4), + (206054, 131, 4), + (206057, 1, 50), + (206058, 1, 75), + (206058, 92, 140), + (206059, 1, 25), + (206060, 1, 25), + (206061, 1, 30), + (206061, 118, -1110), + (206061, 149, -150), + (206062, 1, 40), + (206063, 319, 3), + (206063, 1, 50), + (206064, 1, 71), + (206080, 17, 2), + (206081, 17, 2), + (206082, 18, 5), + (206083, 18, 5), + (206084, 17, 7), + (206136, 92, 6200), + (206136, 90, 5700), + (206136, 97, 6800), + (206136, 91, 6200), + (206136, 93, 5700), + (206136, 94, 6200), + (206136, 96, 5700), + (206136, 95, 4900), + (206136, 276, 55), + (206136, 181, 30), + (206136, 1, 670), + (206136, 168, 55), + (206136, 319, 2), + (206136, 279, 15), + (206136, 280, 15), + (206136, 278, 15), + (206136, 316, 15), + (206136, 311, 15), + (206136, 281, 15), + (206136, 317, 15), + (206136, 282, 15), + (206136, 475, 18), + (206136, 477, 18), + (206136, 476, 18), + (206136, 482, 36), + (206136, 480, 18), + (206136, 478, 18), + (206136, 483, 18), + (206136, 479, 18), + (206137, 92, 6200), + (206137, 90, 5700), + (206137, 97, 6800), + (206137, 91, 6200), + (206137, 93, 5700), + (206137, 94, 6200), + (206137, 96, 5700), + (206137, 95, 4900), + (206137, 276, 55), + (206137, 181, 30), + (206137, 1, 790), + (206137, 168, 55), + (206137, 319, 2), + (206137, 279, 20), + (206137, 280, 20), + (206137, 278, 20), + (206137, 316, 20), + (206137, 311, 20), + (206137, 281, 20), + (206137, 317, 20), + (206137, 282, 20), + (206137, 475, 18), + (206137, 477, 18), + (206137, 476, 18), + (206137, 482, 36), + (206137, 480, 18), + (206137, 478, 18), + (206137, 483, 18), + (206137, 479, 18), + (206138, 92, 6200), + (206138, 90, 5700), + (206138, 97, 6800), + (206138, 91, 6200), + (206138, 93, 5700), + (206138, 94, 6200), + (206138, 96, 5700), + (206138, 95, 4900), + (206138, 276, 100), + (206138, 181, 30), + (206138, 1, 670), + (206138, 168, 55), + (206138, 319, 2), + (206138, 279, 27), + (206138, 280, 27), + (206138, 278, 27), + (206138, 316, 27), + (206138, 311, 27), + (206138, 281, 27), + (206138, 317, 27), + (206138, 282, 27), + (206138, 475, 18), + (206138, 477, 18), + (206138, 476, 18), + (206138, 482, 36), + (206138, 480, 18), + (206138, 478, 18), + (206138, 483, 18), + (206138, 479, 18), + (206139, 92, 6200), + (206139, 90, 5700), + (206139, 97, 6800), + (206139, 91, 6200), + (206139, 93, 5700), + (206139, 94, 6200), + (206139, 96, 5700), + (206139, 95, 4900), + (206139, 276, 55), + (206139, 181, 30), + (206139, 1, 790), + (206139, 168, 55), + (206139, 319, 2), + (206139, 279, 20), + (206139, 280, 20), + (206139, 278, 20), + (206139, 316, 20), + (206139, 311, 20), + (206139, 281, 20), + (206139, 317, 20), + (206139, 282, 20), + (206139, 475, 58), + (206139, 477, 58), + (206139, 476, 58), + (206139, 482, 76), + (206139, 480, 58), + (206139, 478, 58), + (206139, 483, 58), + (206139, 479, 58), + (206139, 277, 15), + (206139, 206, 2), + (206139, 207, 2), + (206139, 205, 2), + (206139, 219, 4), + (206139, 208, 2), + (206139, 208, 2), + (206139, 225, 2), + (206139, 216, 2), + (206140, 92, 6200), + (206140, 90, 5700), + (206140, 97, 6800), + (206140, 91, 6200), + (206140, 93, 5700), + (206140, 94, 6200), + (206140, 96, 5700), + (206140, 95, 4900), + (206140, 276, 100), + (206140, 181, 30), + (206140, 1, 670), + (206140, 168, 55), + (206140, 319, 2), + (206140, 279, 27), + (206140, 280, 27), + (206140, 278, 27), + (206140, 316, 27), + (206140, 311, 27), + (206140, 281, 27), + (206140, 317, 27), + (206140, 282, 27), + (206140, 475, 58), + (206140, 477, 58), + (206140, 476, 58), + (206140, 482, 76), + (206140, 480, 58), + (206140, 478, 58), + (206140, 483, 58), + (206140, 479, 58), + (206140, 277, 15), + (206140, 206, 2), + (206140, 205, 2), + (206140, 207, 2), + (206140, 219, 4), + (206140, 217, 2), + (206140, 208, 2), + (206140, 225, 2), + (206140, 216, 2), + (206141, 92, 6350), + (206141, 90, 5850), + (206141, 97, 6950), + (206141, 91, 6350), + (206141, 93, 5850), + (206141, 94, 6350), + (206141, 96, 5850), + (206141, 95, 5050), + (206141, 276, 55), + (206141, 181, 75), + (206141, 1, 790), + (206141, 168, 105), + (206141, 319, 2), + (206141, 279, 20), + (206141, 280, 20), + (206141, 278, 20), + (206141, 316, 20), + (206141, 311, 20), + (206141, 281, 20), + (206141, 317, 20), + (206141, 282, 20), + (206141, 475, 18), + (206141, 477, 18), + (206141, 476, 18), + (206141, 482, 36), + (206141, 480, 18), + (206141, 478, 18), + (206141, 483, 18), + (206141, 479, 18), + (206142, 92, 6350), + (206142, 90, 5850), + (206142, 97, 6950), + (206142, 91, 6350), + (206142, 93, 5850), + (206142, 94, 6350), + (206142, 96, 5850), + (206142, 95, 5050), + (206142, 276, 100), + (206142, 181, 75), + (206142, 1, 670), + (206142, 168, 105), + (206142, 319, 2), + (206142, 279, 27), + (206142, 280, 27), + (206142, 278, 27), + (206142, 316, 27), + (206142, 311, 27), + (206142, 281, 27), + (206142, 317, 27), + (206142, 282, 27), + (206142, 475, 18), + (206142, 477, 18), + (206142, 476, 18), + (206142, 482, 36), + (206142, 480, 18), + (206142, 478, 18), + (206142, 483, 18), + (206142, 479, 18), + (206143, 92, 6200), + (206143, 90, 5700), + (206143, 97, 6800), + (206143, 91, 6200), + (206143, 93, 5700), + (206143, 94, 6200), + (206143, 96, 5700), + (206143, 95, 4900), + (206143, 276, 55), + (206143, 181, 30), + (206143, 1, 790), + (206143, 168, 55), + (206143, 319, 2), + (206143, 279, 20), + (206143, 280, 20), + (206143, 278, 20), + (206143, 316, 20), + (206143, 311, 20), + (206143, 281, 20), + (206143, 317, 20), + (206143, 282, 20), + (206143, 475, 58), + (206143, 477, 58), + (206143, 476, 58), + (206143, 482, 76), + (206143, 480, 58), + (206143, 478, 58), + (206143, 483, 58), + (206143, 479, 58), + (206143, 277, 15), + (206143, 206, 2), + (206143, 207, 2), + (206143, 205, 2), + (206143, 219, 4), + (206143, 208, 2), + (206143, 208, 2), + (206143, 225, 2), + (206143, 216, 2), + (206143, 113, 10), + (206143, 116, 10), + (206143, 115, 10), + (206143, 112, 10), + (206143, 110, 10), + (206143, 167, 10), + (206143, 148, 10), + (206143, 150, 10), + (206143, 109, 10), + (206143, 133, 10), + (206144, 92, 6200), + (206144, 90, 5700), + (206144, 97, 6800), + (206144, 91, 6200), + (206144, 93, 5700), + (206144, 94, 6200), + (206144, 96, 5700), + (206144, 95, 4900), + (206144, 276, 100), + (206144, 181, 30), + (206144, 1, 670), + (206144, 168, 55), + (206144, 319, 2), + (206144, 279, 27), + (206144, 280, 27), + (206144, 278, 27), + (206144, 316, 27), + (206144, 311, 27), + (206144, 281, 27), + (206144, 317, 27), + (206144, 282, 27), + (206144, 475, 58), + (206144, 477, 58), + (206144, 476, 58), + (206144, 482, 76), + (206144, 480, 58), + (206144, 478, 58), + (206144, 483, 58), + (206144, 479, 58), + (206144, 277, 15), + (206144, 206, 2), + (206144, 205, 2), + (206144, 207, 2), + (206144, 219, 4), + (206144, 217, 2), + (206144, 208, 2), + (206144, 225, 2), + (206144, 216, 2), + (206144, 110, 10), + (206144, 113, 10), + (206144, 116, 10), + (206144, 115, 10), + (206144, 112, 10), + (206144, 109, 10), + (206144, 148, 10), + (206144, 167, 10), + (206144, 150, 10), + (206144, 133, 10), + (206145, 92, 6200), + (206145, 90, 5700), + (206145, 97, 6800), + (206145, 91, 6200), + (206145, 93, 5700), + (206145, 94, 6200), + (206145, 96, 5700), + (206145, 95, 4900), + (206145, 276, 55), + (206145, 181, 30), + (206145, 1, 1090), + (206145, 168, 55), + (206145, 319, 2), + (206145, 279, 20), + (206145, 280, 20), + (206145, 278, 20), + (206145, 316, 20), + (206145, 311, 20), + (206145, 281, 20), + (206145, 317, 20), + (206145, 282, 20), + (206145, 475, 58), + (206145, 477, 58), + (206145, 476, 58), + (206145, 482, 76), + (206145, 480, 58), + (206145, 478, 58), + (206145, 483, 58), + (206145, 479, 58), + (206145, 277, 15), + (206145, 206, 2), + (206145, 207, 2), + (206145, 205, 2), + (206145, 219, 4), + (206145, 208, 2), + (206145, 208, 2), + (206145, 225, 2), + (206145, 216, 2), + (206145, 221, 150), + (206146, 92, 6200), + (206146, 90, 5700), + (206146, 97, 6800), + (206146, 91, 6200), + (206146, 93, 5700), + (206146, 94, 6200), + (206146, 96, 5700), + (206146, 95, 4900), + (206146, 276, 100), + (206146, 181, 30), + (206146, 1, 1070), + (206146, 168, 55), + (206146, 319, 2), + (206146, 279, 27), + (206146, 280, 27), + (206146, 278, 27), + (206146, 316, 27), + (206146, 311, 27), + (206146, 281, 27), + (206146, 317, 27), + (206146, 282, 27), + (206146, 475, 58), + (206146, 477, 58), + (206146, 476, 58), + (206146, 482, 76), + (206146, 480, 58), + (206146, 478, 58), + (206146, 483, 58), + (206146, 479, 58), + (206146, 277, 15), + (206146, 206, 2), + (206146, 205, 2), + (206146, 207, 2), + (206146, 219, 4), + (206146, 217, 2), + (206146, 208, 2), + (206146, 225, 2), + (206146, 216, 2), + (206146, 221, 150), + (206147, 92, 6350), + (206147, 90, 5850), + (206147, 97, 6950), + (206147, 91, 6350), + (206147, 93, 5850), + (206147, 94, 6350), + (206147, 96, 5850), + (206147, 95, 5050), + (206147, 276, 55), + (206147, 181, 75), + (206147, 1, 790), + (206147, 168, 105), + (206147, 319, 2), + (206147, 279, 20), + (206147, 280, 20), + (206147, 278, 20), + (206147, 316, 20), + (206147, 311, 20), + (206147, 281, 20), + (206147, 317, 20), + (206147, 282, 20), + (206147, 475, 18), + (206147, 477, 18), + (206147, 476, 18), + (206147, 482, 36), + (206147, 480, 18), + (206147, 478, 18), + (206147, 483, 18), + (206147, 479, 18), + (206147, 110, 10), + (206147, 113, 10), + (206147, 116, 10), + (206147, 115, 10), + (206147, 112, 10), + (206147, 109, 10), + (206147, 148, 10), + (206147, 167, 10), + (206147, 150, 10), + (206147, 133, 10), + (206148, 92, 6350), + (206148, 90, 5850), + (206148, 97, 6950), + (206148, 91, 6350), + (206148, 93, 5850), + (206148, 94, 6350), + (206148, 96, 5850), + (206148, 95, 5050), + (206148, 276, 100), + (206148, 181, 75), + (206148, 1, 670), + (206148, 168, 105), + (206148, 319, 2), + (206148, 279, 27), + (206148, 280, 27), + (206148, 278, 27), + (206148, 316, 27), + (206148, 311, 27), + (206148, 281, 27), + (206148, 317, 27), + (206148, 282, 27), + (206148, 475, 18), + (206148, 477, 18), + (206148, 476, 18), + (206148, 482, 36), + (206148, 480, 18), + (206148, 478, 18), + (206148, 483, 18), + (206148, 479, 18), + (206148, 110, 10), + (206148, 113, 10), + (206148, 116, 10), + (206148, 115, 10), + (206148, 112, 10), + (206148, 109, 10), + (206148, 133, 10), + (206148, 148, 10), + (206148, 167, 10), + (206148, 150, 10), + (206149, 92, 6350), + (206149, 90, 5850), + (206149, 97, 6950), + (206149, 91, 6350), + (206149, 93, 5850), + (206149, 94, 6350), + (206149, 96, 5850), + (206149, 95, 5050), + (206149, 276, 55), + (206149, 181, 75), + (206149, 1, 1090), + (206149, 168, 105), + (206149, 319, 2), + (206149, 279, 20), + (206149, 280, 20), + (206149, 278, 20), + (206149, 316, 20), + (206149, 311, 20), + (206149, 281, 20), + (206149, 317, 20), + (206149, 282, 20), + (206149, 475, 18), + (206149, 477, 18), + (206149, 476, 18), + (206149, 482, 36), + (206149, 480, 18), + (206149, 478, 18), + (206149, 483, 18), + (206149, 479, 18), + (206149, 221, 150), + (206150, 92, 6350), + (206150, 90, 5850), + (206150, 97, 6950), + (206150, 91, 6350), + (206150, 93, 5850), + (206150, 94, 6350), + (206150, 96, 5850), + (206150, 95, 5050), + (206150, 276, 100), + (206150, 181, 75), + (206150, 1, 970), + (206150, 168, 105), + (206150, 319, 2), + (206150, 279, 27), + (206150, 280, 27), + (206150, 278, 27), + (206150, 316, 27), + (206150, 311, 27), + (206150, 281, 27), + (206150, 317, 27), + (206150, 282, 27), + (206150, 475, 18), + (206150, 477, 18), + (206150, 476, 18), + (206150, 482, 36), + (206150, 480, 18), + (206150, 478, 18), + (206150, 483, 18), + (206150, 479, 18), + (206150, 221, 150), + (206157, 90, 999), + (206157, 91, 999), + (206157, 92, 999), + (206157, 93, 999), + (206157, 94, 999), + (206157, 95, 800), + (206157, 96, 999), + (206157, 97, 800), + (206158, 90, 999), + (206158, 91, 999), + (206158, 92, 999), + (206158, 93, 999), + (206158, 94, 999), + (206158, 95, 800), + (206158, 96, 999), + (206158, 97, 800), + (206159, 90, 999), + (206159, 91, 999), + (206159, 92, 999), + (206159, 93, 999), + (206159, 94, 999), + (206159, 95, 800), + (206159, 96, 999), + (206159, 97, 800), + (206160, 90, 999), + (206160, 91, 999), + (206160, 92, 999), + (206160, 93, 999), + (206160, 94, 999), + (206160, 95, 800), + (206160, 96, 999), + (206160, 97, 800), + (206192, 1, 88), + (206192, 91, 495), + (206192, 92, 495), + (206192, 90, 495), + (206192, 97, 495), + (206192, 95, 495), + (206192, 93, 495), + (206192, 96, 495), + (206192, 94, 495), + (206193, 1, 50), + (206193, 91, 480), + (206193, 92, 480), + (206193, 90, 480), + (206193, 97, 480), + (206193, 95, 480), + (206193, 93, 480), + (206193, 96, 480), + (206193, 94, 480), + (206194, 1, 58), + (206194, 91, 495), + (206194, 92, 485), + (206194, 90, 485), + (206194, 97, 485), + (206194, 95, 485), + (206194, 93, 485), + (206194, 96, 485), + (206194, 94, 485), + (206195, 1, 67), + (206195, 91, 490), + (206195, 92, 490), + (206195, 90, 490), + (206195, 97, 490), + (206195, 95, 490), + (206195, 93, 490), + (206195, 96, 490), + (206195, 94, 490), + (206196, 1, 85), + (206196, 343, 1), + (206196, 364, 1), + (206196, 181, 2), + (206196, 103, 1), + (206196, 112, 1), + (206197, 1, 200), + (206197, 343, 4), + (206197, 364, 4), + (206197, 181, 5), + (206197, 103, 2), + (206197, 112, 2), + (206197, 276, 5), + (206197, 277, 5), + (206197, 128, 1), + (206197, 127, 1), + (206197, 129, 1), + (206197, 122, 1), + (206197, 131, 1), + (206197, 130, 1), + (206201, 1, 64), + (206201, 91, 52), + (206201, 90, 52), + (206201, 92, 52), + (206201, 97, 52), + (206201, 95, 52), + (206201, 96, 52), + (206201, 93, 52), + (206201, 94, 52), + (206202, 96, 200), + (206202, 168, 21), + (206202, 1, 38), + (206203, 227, 7), + (206203, 226, 7), + (206203, 228, 7), + (206203, 233, 7), + (206203, 231, 7), + (206203, 229, 7), + (206203, 234, 7), + (206203, 230, 7), + (206203, 97, 220), + (206204, 91, 61), + (206204, 92, 61), + (206204, 90, 61), + (206204, 97, 61), + (206204, 95, 61), + (206204, 93, 61), + (206204, 96, 61), + (206204, 94, 61), + (206204, 164, 24), + (206204, 168, 24), + (206224, 181, 6), + (206224, 1, 38), + (206224, 279, 10), + (206224, 280, 10), + (206224, 278, 10), + (206224, 92, 50), + (206224, 90, 50), + (206224, 91, 50), + (206224, 97, 50), + (206224, 95, 50), + (206224, 96, 50), + (206224, 93, 50), + (206224, 94, 50), + (206224, 128, 3), + (206224, 127, 3), + (206225, 181, 6), + (206225, 1, 38), + (206225, 279, 10), + (206225, 280, 10), + (206225, 278, 10), + (206225, 92, 50), + (206225, 90, 50), + (206225, 91, 50), + (206225, 97, 50), + (206225, 95, 50), + (206225, 96, 50), + (206225, 93, 50), + (206225, 94, 50), + (206225, 130, 3), + (206225, 131, 3), + (206226, 181, 6), + (206226, 1, 38), + (206226, 279, 10), + (206226, 280, 10), + (206226, 278, 10), + (206226, 92, 50), + (206226, 90, 50), + (206226, 91, 50), + (206226, 97, 50), + (206226, 95, 50), + (206226, 96, 50), + (206226, 93, 50), + (206226, 94, 50), + (206226, 129, 3), + (206226, 122, 3), + (206232, 181, 7), + (206232, 1, 40), + (206232, 279, 10), + (206232, 280, 10), + (206232, 278, 10), + (206232, 92, 60), + (206232, 90, 60), + (206232, 91, 60), + (206232, 97, 60), + (206232, 95, 60), + (206232, 96, 60), + (206232, 93, 60), + (206232, 94, 60), + (206232, 129, 4), + (206232, 122, 4), + (206235, 181, 7), + (206235, 1, 40), + (206235, 279, 10), + (206235, 280, 10), + (206235, 278, 10), + (206235, 92, 60), + (206235, 90, 60), + (206235, 91, 60), + (206235, 97, 60), + (206235, 95, 60), + (206235, 96, 60), + (206235, 93, 60), + (206235, 94, 60), + (206235, 128, 4), + (206235, 127, 4), + (206236, 181, 7), + (206236, 1, 40), + (206236, 279, 10), + (206236, 280, 10), + (206236, 278, 10), + (206236, 92, 60), + (206236, 90, 60), + (206236, 91, 60), + (206236, 97, 60), + (206236, 95, 60), + (206236, 96, 60), + (206236, 93, 60), + (206236, 94, 60), + (206236, 130, 4), + (206236, 131, 4), + (206237, 181, 7), + (206237, 1, 40), + (206237, 279, 11), + (206237, 280, 11), + (206237, 278, 11), + (206237, 92, 60), + (206237, 90, 60), + (206237, 91, 60), + (206237, 97, 60), + (206237, 95, 60), + (206237, 96, 60), + (206237, 93, 60), + (206237, 94, 60), + (206237, 130, 5), + (206237, 131, 5), + (206238, 181, 7), + (206238, 1, 40), + (206238, 279, 11), + (206238, 280, 11), + (206238, 278, 11), + (206238, 92, 60), + (206238, 90, 60), + (206238, 91, 60), + (206238, 97, 60), + (206238, 95, 60), + (206238, 96, 60), + (206238, 93, 60), + (206238, 94, 60), + (206238, 128, 5), + (206238, 127, 5), + (206239, 181, 7), + (206239, 1, 40), + (206239, 279, 11), + (206239, 280, 11), + (206239, 278, 11), + (206239, 92, 60), + (206239, 90, 60), + (206239, 91, 60), + (206239, 97, 60), + (206239, 95, 60), + (206239, 96, 60), + (206239, 93, 60), + (206239, 94, 60), + (206239, 129, 5), + (206239, 122, 5), + (206248, 142, 3), + (206248, 147, 3), + (206248, 1, 74), + (206248, 156, 15), + (206248, 91, 98), + (206248, 119, -150), + (206248, 118, -150), + (206248, 279, 23), + (206248, 280, 23), + (206248, 278, 23), + (206248, 316, 23), + (206248, 311, 23), + (206248, 317, 23), + (206248, 281, 23), + (206248, 282, 23), + (206293, 164, 2), + (206308, 128, -45), + (206308, 127, -45), + (206308, 122, -45), + (206308, 129, -45), + (206308, 130, -45), + (206308, 131, -45), + (206310, 128, -65), + (206310, 127, -65), + (206310, 122, -65), + (206310, 129, -65), + (206310, 130, -65), + (206310, 131, -65), + (206314, 118, -300), + (206314, 120, -300), + (206314, 149, -300), + (206314, 119, -300), + (206314, 279, -30), + (206314, 280, -30), + (206314, 278, -30), + (206314, 316, -30), + (206314, 311, -30), + (206314, 281, -30), + (206314, 317, -30), + (206314, 282, -30), + (206314, 92, -1500), + (206314, 91, -1500), + (206314, 90, -1500), + (206314, 97, -1500), + (206314, 95, -1500), + (206314, 96, -1500), + (206314, 93, -1500), + (206314, 94, -1500), + (206316, 118, -500), + (206316, 120, -500), + (206316, 149, -500), + (206316, 119, -500), + (206316, 279, -55), + (206316, 280, -55), + (206316, 278, -55), + (206316, 316, -55), + (206316, 311, -55), + (206316, 281, -55), + (206316, 317, -55), + (206316, 282, -55), + (206316, 92, -3000), + (206316, 91, -3000), + (206316, 90, -3000), + (206316, 97, -3000), + (206316, 95, -3000), + (206316, 96, -3000), + (206316, 93, -3000), + (206316, 94, -3000), + (206318, 129, -110), + (206318, 122, -110), + (206318, 130, -110), + (206318, 131, -110), + (206318, 127, -110), + (206318, 128, -110), + (206320, 276, -180), + (206320, 277, -100), + (206334, 276, 10), + (206334, 279, 30), + (206334, 280, 30), + (206334, 278, 30), + (206334, 316, 30), + (206334, 311, 30), + (206334, 317, 30), + (206334, 281, 30), + (206334, 282, 30), + (206336, 276, 30), + (206336, 279, 53), + (206336, 280, 53), + (206336, 278, 53), + (206336, 316, 53), + (206336, 311, 53), + (206336, 317, 53), + (206336, 281, 53), + (206336, 282, 53), + (206338, 276, 50), + (206338, 279, 71), + (206338, 280, 71), + (206338, 278, 71), + (206338, 316, 71), + (206338, 311, 71), + (206338, 317, 71), + (206338, 281, 71), + (206338, 282, 71), + (206340, 276, 55), + (206340, 279, 83), + (206340, 280, 83), + (206340, 278, 83), + (206340, 316, 83), + (206340, 311, 83), + (206340, 317, 83), + (206340, 281, 83), + (206340, 282, 83), + (206340, 227, 43), + (206340, 228, 43), + (206340, 226, 43), + (206340, 233, 43), + (206340, 231, 43), + (206340, 229, 43), + (206340, 234, 43), + (206340, 230, 43), + (206342, 276, 55), + (206342, 279, 56), + (206342, 280, 56), + (206342, 278, 56), + (206342, 316, 56), + (206342, 311, 56), + (206342, 317, 56), + (206342, 281, 56), + (206342, 282, 56), + (206455, 93, 765), + (206455, 95, 720), + (206455, 92, 810), + (206455, 97, 720), + (206455, 91, 810), + (206455, 96, 765), + (206455, 90, 765), + (206455, 94, 765), + (206455, 1, 90), + (206455, 279, 1), + (206455, 102, 1), + (206455, 107, 1), + (206456, 93, 850), + (206456, 95, 800), + (206456, 92, 900), + (206456, 97, 800), + (206456, 91, 900), + (206456, 96, 850), + (206456, 90, 850), + (206456, 94, 850), + (206456, 1, 200), + (206456, 279, 20), + (206456, 102, 10), + (206456, 107, 10), + (206459, 93, 630), + (206459, 95, 560), + (206459, 92, 560), + (206459, 97, 560), + (206459, 91, 630), + (206459, 96, 630), + (206459, 90, 630), + (206459, 94, 560), + (206459, 119, 28), + (206459, 118, 28), + (206459, 1, 70), + (206459, 221, 70), + (206460, 93, 810), + (206460, 95, 720), + (206460, 92, 720), + (206460, 97, 720), + (206460, 91, 810), + (206460, 96, 810), + (206460, 90, 810), + (206460, 94, 720), + (206460, 119, 36), + (206460, 118, 36), + (206460, 1, 90), + (206460, 221, 90), + (206551, 90, 65), + (206551, 91, 65), + (206551, 92, 65), + (206551, 95, 80), + (206551, 97, 80), + (206551, 93, 100), + (206551, 94, 100), + (206551, 96, 100), + (206551, 123, 3), + (206551, 124, 3), + (206551, 221, 30), + (206551, 159, 3), + (206552, 90, 325), + (206552, 91, 325), + (206552, 92, 325), + (206552, 95, 350), + (206552, 97, 350), + (206552, 93, 375), + (206552, 94, 375), + (206552, 96, 375), + (206552, 123, 6), + (206552, 124, 6), + (206552, 221, 150), + (206552, 159, 6), + (206553, 90, 65), + (206553, 91, 65), + (206553, 92, 65), + (206553, 95, 80), + (206553, 97, 80), + (206553, 93, 100), + (206553, 94, 100), + (206553, 96, 100), + (206616, 149, 50), + (206616, 221, 300), + (206617, 149, 45), + (206617, 221, 270), + (206618, 149, 40), + (206618, 221, 240), + (206619, 149, 35), + (206619, 221, 210), + (206620, 149, 30), + (206620, 221, 180), + (206621, 149, 25), + (206621, 221, 150), + (206622, 149, 20), + (206622, 221, 120), + (206623, 149, 15), + (206623, 221, 90), + (206624, 149, 10), + (206624, 221, 60), + (206625, 149, 50), + (206625, 221, 200), + (206626, 149, 45), + (206626, 221, 180), + (206627, 149, 35), + (206627, 221, 140), + (206628, 149, 30), + (206628, 221, 120), + (206629, 149, 25), + (206629, 221, 100), + (206630, 149, 20), + (206630, 221, 80), + (206631, 149, 40), + (206631, 221, 160), + (206632, 149, 15), + (206632, 221, 60), + (206633, 149, 10), + (206633, 221, 40), + (206634, 149, 5), + (206634, 221, 20), + (206635, 149, 5), + (206635, 221, 30), + (206636, 149, 50), + (206636, 221, 400), + (206637, 149, 45), + (206637, 221, 360), + (206638, 149, 40), + (206638, 221, 320), + (206639, 149, 35), + (206639, 221, 280), + (206640, 149, 30), + (206640, 221, 240), + (206641, 149, 25), + (206641, 221, 200), + (206642, 149, 20), + (206642, 221, 160), + (206643, 149, 15), + (206643, 221, 120), + (206644, 149, 10), + (206644, 221, 80), + (206645, 149, 5), + (206645, 221, 40), + (206646, 149, 50), + (206646, 221, 100), + (206647, 149, 45), + (206647, 221, 90), + (206648, 149, 40), + (206648, 221, 80), + (206649, 149, 35), + (206649, 221, 70), + (206650, 149, 30), + (206650, 221, 60), + (206651, 149, 25), + (206651, 221, 50), + (206652, 149, 20), + (206652, 221, 40), + (206653, 149, 15), + (206653, 221, 30), + (206654, 149, 10), + (206654, 221, 20), + (206655, 149, 5), + (206655, 221, 10), + (206656, 156, 1), + (206656, 155, 1), + (206657, 156, 50), + (206657, 155, 25), + (206658, 156, 150), + (206658, 155, 75), + (206662, 93, 950), + (206662, 95, 1050), + (206662, 92, 1050), + (206662, 97, 1050), + (206662, 91, 1250), + (206662, 96, 250), + (206662, 90, 1250), + (206662, 94, 950), + (206662, 156, 50), + (206662, 168, 50), + (206662, 101, 25), + (206668, 161, 2), + (206668, 221, 15), + (206669, 161, 2), + (206669, 221, 15), + (206670, 161, 4), + (206670, 221, 75), + (206671, 161, 4), + (206671, 221, 75), + (206672, 161, 8), + (206672, 221, 150), + (206678, 90, 12), + (206678, 91, 10), + (206678, 92, 10), + (206678, 93, 10), + (206678, 94, 10), + (206678, 95, 5), + (206678, 96, 12), + (206678, 97, 5), + (206678, 1, 1), + (206679, 90, 1200), + (206679, 91, 1000), + (206679, 92, 1000), + (206679, 93, 1000), + (206679, 94, 1000), + (206679, 95, 500), + (206679, 96, 1200), + (206679, 97, 500), + (206679, 1, 200), + (206680, 90, 3), + (206680, 91, 2), + (206680, 92, 2), + (206680, 93, 2), + (206680, 94, 2), + (206680, 95, 1), + (206680, 96, 3), + (206680, 97, 1), + (206680, 1, 1), + (206681, 90, 300), + (206681, 91, 250), + (206681, 92, 250), + (206681, 93, 250), + (206681, 94, 250), + (206681, 95, 125), + (206681, 96, 300), + (206681, 97, 125), + (206681, 1, 50), + (206682, 90, 3), + (206682, 91, 2), + (206682, 92, 2), + (206682, 93, 2), + (206682, 94, 2), + (206682, 95, 1), + (206682, 96, 3), + (206682, 97, 1), + (206682, 1, 1), + (206683, 90, 300), + (206683, 91, 250), + (206683, 92, 250), + (206683, 93, 250), + (206683, 94, 250), + (206683, 95, 125), + (206683, 96, 300), + (206683, 97, 125), + (206683, 1, 50), + (206684, 90, 7), + (206684, 91, 6), + (206684, 92, 6), + (206684, 93, 6), + (206684, 94, 6), + (206684, 95, 3), + (206684, 96, 7), + (206684, 97, 3), + (206684, 1, 1), + (206685, 90, 750), + (206685, 91, 625), + (206685, 92, 625), + (206685, 93, 625), + (206685, 94, 625), + (206685, 95, 310), + (206685, 96, 750), + (206685, 97, 310), + (206685, 1, 125), + (206686, 90, 4), + (206686, 91, 3), + (206686, 92, 3), + (206686, 93, 3), + (206686, 94, 3), + (206686, 95, 1), + (206686, 96, 4), + (206686, 97, 1), + (206686, 1, 1), + (206687, 90, 450), + (206687, 91, 375), + (206687, 92, 375), + (206687, 93, 375), + (206687, 94, 375), + (206687, 95, 180), + (206687, 96, 450), + (206687, 97, 180), + (206687, 1, 75), + (206688, 90, 7), + (206688, 91, 5), + (206688, 92, 5), + (206688, 93, 5), + (206688, 94, 5), + (206688, 95, 2), + (206688, 96, 7), + (206688, 97, 2), + (206688, 1, 1), + (206689, 90, 75), + (206689, 91, 50), + (206689, 92, 50), + (206689, 93, 50), + (206689, 94, 50), + (206689, 95, 25), + (206689, 96, 75), + (206689, 97, 25), + (206689, 1, 25), + (206704, 16, 800), + (206704, 17, 800), + (206704, 18, 800), + (206704, 19, 800), + (206704, 20, 800), + (206704, 21, 800), + (206704, 1, 2000000), + (206704, 152, 800), + (206704, 132, 800), + (206704, 221, 2000000), + (206704, 100, 2000), + (206704, 142, 2000), + (206704, 143, 2000), + (206704, 144, 2000), + (206704, 137, 2000), + (206704, 102, 2000), + (206704, 103, 2000), + (206704, 106, 2000), + (206704, 107, 2000), + (206704, 105, 2000), + (206704, 104, 2000), + (206704, 145, 2000), + (206704, 146, 2000), + (206704, 101, 2000), + (206704, 147, 2000), + (206704, 108, 2000), + (206704, 109, 2000), + (206704, 110, 2000), + (206704, 111, 2000), + (206704, 112, 2000), + (206704, 116, 2000), + (206704, 114, 2000), + (206704, 115, 2000), + (206704, 113, 2000), + (206704, 133, 2000), + (206704, 150, 2000), + (206704, 151, 2000), + (206704, 148, 2000), + (206704, 167, 2000), + (206704, 121, 2000), + (206704, 134, 2000), + (206704, 118, 2000), + (206704, 119, 2000), + (206704, 120, 2000), + (206704, 149, 2000), + (206704, 154, 2000), + (206704, 155, 2000), + (206704, 153, 2000), + (206704, 168, 2000), + (206704, 156, 1000), + (206704, 90, 20000), + (206704, 92, 20000), + (206704, 91, 20000), + (206704, 95, 20000), + (206704, 97, 20000), + (206704, 93, 20000), + (206704, 94, 20000), + (206704, 96, 20000), + (206704, 125, 2000), + (206704, 126, 2000), + (206704, 157, 2000), + (206704, 158, 2000), + (206704, 159, 2000), + (206704, 160, 2000), + (206704, 161, 2000), + (206704, 162, 2000), + (206704, 163, 2000), + (206704, 141, 2000), + (206704, 127, 2000), + (206704, 128, 2000), + (206704, 129, 2000), + (206704, 130, 2000), + (206704, 131, 2000), + (206704, 122, 2000), + (206704, 123, 2000), + (206704, 124, 2000), + (206704, 164, 2000), + (206704, 165, 2000), + (206704, 135, 2000), + (206704, 136, 2000), + (206704, 139, 2000), + (206704, 166, 2000), + (206704, 117, 2000), + (206704, 181, 2000), + (206705, 155, 4), + (206706, 155, 4), + (206707, 154, 20), + (206707, 153, 15), + (206707, 155, 20), + (206711, 137, 5), + (206712, 137, 5), + (206713, 137, 10), + (206714, 137, 10), + (206715, 137, 15), + (206716, 137, 15), + (206717, 137, 20), + (206718, 137, 20), + (206719, 137, 30), + (206720, 137, 30), + (206721, 137, 40), + (206722, 137, 40), + (206723, 137, 50), + (206723, 162, 25), + (206724, 19, 7), + (206724, 20, -7), + (206724, 92, 550), + (206724, 90, 650), + (206724, 91, 550), + (206724, 97, 650), + (206724, 95, 650), + (206724, 93, 800), + (206724, 94, 650), + (206724, 96, 550), + (206725, 17, 7), + (206725, 16, -7), + (206725, 92, 550), + (206725, 90, 650), + (206725, 91, 550), + (206725, 97, 650), + (206725, 95, 650), + (206725, 93, 800), + (206725, 94, 650), + (206725, 96, 550), + (206726, 16, 7), + (206726, 18, -7), + (206726, 92, 550), + (206726, 90, 650), + (206726, 91, 550), + (206726, 97, 650), + (206726, 95, 650), + (206726, 93, 800), + (206726, 94, 650), + (206726, 96, 550), + (206727, 18, 7), + (206727, 21, -7), + (206727, 92, 550), + (206727, 90, 650), + (206727, 91, 550), + (206727, 97, 650), + (206727, 95, 650), + (206727, 93, 800), + (206727, 94, 650), + (206727, 96, 550), + (206728, 20, 7), + (206728, 17, -7), + (206728, 92, 550), + (206728, 90, 650), + (206728, 91, 550), + (206728, 97, 650), + (206728, 95, 650), + (206728, 93, 800), + (206728, 94, 650), + (206728, 96, 550), + (206729, 21, 7), + (206729, 19, -7), + (206729, 92, 550), + (206729, 90, 650), + (206729, 91, 550), + (206729, 97, 650), + (206729, 95, 650), + (206729, 93, 800), + (206729, 94, 650), + (206729, 96, 550), + (206730, 91, 250), + (206730, 90, 250), + (206730, 92, 200), + (206730, 97, 300), + (206730, 95, 300), + (206730, 93, 250), + (206730, 96, 250), + (206730, 94, 200), + (206730, 136, 11), + (206731, 91, 750), + (206731, 90, 750), + (206731, 92, 600), + (206731, 97, 900), + (206731, 95, 900), + (206731, 93, 750), + (206731, 96, 750), + (206731, 94, 600), + (206731, 136, 33), + (206740, 161, 5), + (206740, 92, 240), + (206740, 91, 80), + (206740, 90, 80), + (206740, 95, 80), + (206740, 97, 80), + (206740, 93, 80), + (206740, 94, 80), + (206740, 96, 80), + (206740, 181, 5), + (206740, 149, 5), + (206741, 161, 5), + (206741, 92, 720), + (206741, 91, 300), + (206741, 90, 300), + (206741, 95, 300), + (206741, 97, 300), + (206741, 93, 300), + (206741, 94, 300), + (206741, 96, 300), + (206741, 181, 20), + (206741, 149, 20), + (206743, 139, 20), + (206876, 93, 45), + (206876, 95, 20), + (206876, 92, 35), + (206876, 97, 20), + (206876, 91, 45), + (206876, 96, 35), + (206876, 90, 45), + (206876, 94, 35), + (206876, 168, 2), + (206877, 93, 90), + (206877, 95, 35), + (206877, 92, 75), + (206877, 97, 35), + (206877, 91, 90), + (206877, 96, 75), + (206877, 90, 90), + (206877, 94, 75), + (206877, 168, 4), + (206878, 93, 135), + (206878, 95, 55), + (206878, 92, 110), + (206878, 97, 55), + (206878, 91, 135), + (206878, 96, 110), + (206878, 90, 135), + (206878, 94, 110), + (206878, 168, 6), + (206879, 93, 180), + (206879, 95, 75), + (206879, 92, 150), + (206879, 97, 75), + (206879, 91, 180), + (206879, 96, 150), + (206879, 90, 180), + (206879, 94, 150), + (206879, 168, 8), + (206880, 93, 225), + (206880, 95, 90), + (206880, 92, 185), + (206880, 97, 90), + (206880, 91, 225), + (206880, 96, 185), + (206880, 90, 225), + (206880, 94, 185), + (206880, 168, 10), + (206881, 93, 270), + (206881, 95, 110), + (206881, 92, 225), + (206881, 97, 110), + (206881, 91, 270), + (206881, 96, 225), + (206881, 90, 270), + (206881, 94, 225), + (206881, 168, 12), + (206882, 93, 315), + (206882, 95, 130), + (206882, 92, 260), + (206882, 97, 130), + (206882, 91, 315), + (206882, 96, 260), + (206882, 90, 315), + (206882, 94, 260), + (206882, 168, 14), + (206883, 93, 360), + (206883, 95, 150), + (206883, 92, 300), + (206883, 97, 150), + (206883, 91, 360), + (206883, 96, 300), + (206883, 90, 360), + (206883, 94, 300), + (206883, 168, 16), + (206884, 93, 405), + (206884, 95, 165), + (206884, 92, 340), + (206884, 97, 165), + (206884, 91, 405), + (206884, 96, 340), + (206884, 90, 405), + (206884, 94, 340), + (206884, 168, 18), + (206885, 93, 450), + (206885, 95, 185), + (206885, 92, 375), + (206885, 97, 185), + (206885, 91, 450), + (206885, 96, 375), + (206885, 90, 450), + (206885, 94, 375), + (206885, 168, 20), + (206896, 93, 450), + (206896, 95, 280), + (206896, 92, 280), + (206896, 97, 280), + (206896, 91, 450), + (206896, 96, 375), + (206896, 90, 410), + (206896, 94, 280), + (206896, 168, 20), + (206896, 221, 70), + (206896, 181, 4), + (206896, 149, 4), + (206897, 93, 900), + (206897, 95, 560), + (206897, 92, 560), + (206897, 97, 560), + (206897, 91, 900), + (206897, 96, 750), + (206897, 90, 820), + (206897, 94, 560), + (206897, 168, 20), + (206897, 221, 140), + (206897, 181, 8), + (206897, 149, 8), + (206970, 93, 900), + (206970, 95, 700), + (206970, 92, 900), + (206970, 97, 900), + (206970, 91, 900), + (206970, 96, 900), + (206970, 90, 900), + (206970, 94, 900), + (206970, 1, 200), + (206970, 221, 80), + (206970, 181, 20), + (206970, 21, 8), + (206970, 123, 10), + (206970, 124, 10), + (206971, 93, 365), + (206971, 95, 365), + (206971, 92, 450), + (206971, 97, 450), + (206971, 91, 450), + (206971, 96, 450), + (206971, 90, 450), + (206971, 94, 450), + (206971, 1, 200), + (206971, 181, 14), + (206971, 17, 9), + (206971, 156, 60), + (206971, 123, 10), + (206971, 124, 10), + (206972, 93, 1150), + (206972, 95, 925), + (206972, 92, 1200), + (206972, 97, 1200), + (206972, 91, 1200), + (206972, 96, 1200), + (206972, 90, 1200), + (206972, 94, 1200), + (206972, 221, 280), + (206972, 181, 16), + (206972, 19, 8), + (206972, 123, 20), + (206972, 124, 20), + (206973, 93, 250), + (206973, 95, 250), + (206973, 92, 300), + (206973, 97, 300), + (206973, 91, 300), + (206973, 96, 300), + (206973, 90, 300), + (206973, 94, 300), + (206973, 221, 80), + (206973, 181, 8), + (206973, 159, 20), + (206973, 123, 10), + (206973, 124, 10), + (206974, 93, 800), + (206974, 95, 625), + (206974, 92, 800), + (206974, 97, 800), + (206974, 91, 800), + (206974, 96, 800), + (206974, 90, 800), + (206974, 94, 800), + (206974, 1, 200), + (206974, 181, 10), + (206974, 20, 10), + (206974, 128, 10), + (206974, 123, 14), + (206974, 124, 14), + (206975, 93, 250), + (206975, 95, 250), + (206975, 92, 300), + (206975, 97, 300), + (206975, 91, 300), + (206975, 96, 300), + (206975, 90, 300), + (206975, 94, 300), + (206975, 221, 80), + (206975, 149, 20), + (206975, 123, 14), + (206975, 124, 14), + (206976, 93, 1200), + (206976, 95, 900), + (206976, 92, 1200), + (206976, 97, 1200), + (206976, 91, 1200), + (206976, 96, 1200), + (206976, 90, 1200), + (206976, 94, 1200), + (206976, 221, 250), + (206976, 1, 250), + (206976, 118, 25), + (206976, 119, 25), + (206976, 149, 25), + (206976, 162, 25), + (206976, 156, 25), + (206976, 168, 25), + (206977, 90, 400), + (206977, 91, 400), + (206977, 92, 400), + (206977, 93, 400), + (206977, 94, 250), + (206977, 95, 350), + (206977, 96, 450), + (206977, 97, 350), + (206977, 317, 5), + (206977, 281, 5), + (206977, 280, 5), + (206977, 278, 5), + (206977, 165, 5), + (206977, 163, 10), + (206977, 156, 10), + (206977, 136, 10), + (206977, 379, 2), + (206978, 90, 800), + (206978, 91, 800), + (206978, 92, 800), + (206978, 93, 800), + (206978, 94, 500), + (206978, 95, 700), + (206978, 96, 900), + (206978, 97, 700), + (206978, 317, 10), + (206978, 281, 10), + (206978, 280, 10), + (206978, 278, 10), + (206978, 165, 10), + (206978, 163, 20), + (206978, 156, 20), + (206978, 136, 20), + (206978, 379, 2), + (207001, 90, 900), + (207001, 91, 750), + (207001, 92, 750), + (207001, 93, 400), + (207001, 94, 400), + (207001, 95, 700), + (207001, 96, 700), + (207001, 97, 700), + (207001, 119, 40), + (207001, 154, 40), + (207001, 136, 20), + (207001, 151, 4), + (207001, 150, 4), + (207002, 90, 450), + (207002, 91, 375), + (207002, 92, 375), + (207002, 93, 200), + (207002, 94, 200), + (207002, 95, 350), + (207002, 96, 350), + (207002, 97, 350), + (207002, 119, 20), + (207002, 154, 20), + (207002, 136, 10), + (207002, 151, 2), + (207002, 150, 2), + (207065, 90, 700), + (207065, 91, 700), + (207065, 92, 500), + (207065, 93, 700), + (207065, 94, 500), + (207065, 95, 750), + (207065, 96, 700), + (207065, 97, 750), + (207065, 119, 24), + (207065, 118, 24), + (207065, 137, 36), + (207065, 136, 36), + (207066, 90, 350), + (207066, 91, 350), + (207066, 92, 250), + (207066, 93, 350), + (207066, 94, 250), + (207066, 95, 375), + (207066, 96, 350), + (207066, 97, 375), + (207066, 119, 12), + (207066, 118, 12), + (207066, 137, 18), + (207066, 136, 18), + (207088, 221, 1), + (207088, 162, 1), + (207089, 221, 200), + (207089, 162, 20), + (207090, 221, 1), + (207090, 149, 1), + (207091, 221, 200), + (207091, 149, 40), + (207092, 221, 1), + (207092, 160, 1), + (207093, 221, 200), + (207093, 160, 20), + (207116, 116, 36), + (207116, 93, 300), + (207116, 167, 36), + (207116, 96, 300), + (207116, 94, 300), + (207242, 90, 1100), + (207242, 91, 1100), + (207242, 92, 1100), + (207242, 94, 1100), + (207242, 95, 1100), + (207242, 96, 1100), + (207242, 93, 1100), + (207242, 97, 900), + (207242, 139, 12), + (207242, 157, 12), + (207250, 92, 100), + (207250, 90, 100), + (207251, 92, 100), + (207251, 90, 100), + (207252, 92, 300), + (207252, 90, 300), + (207253, 181, 72), + (207253, 133, 5), + (207253, 104, 5), + (207260, 181, 20), + (207260, 139, 3), + (207262, 139, 15), + (207262, 168, 15), + (207262, 141, 15), + (207265, 139, 15), + (207265, 162, 5), + (207289, 91, 4), + (207289, 90, 4), + (207289, 92, 4), + (207289, 94, 4), + (207289, 93, 4), + (207289, 96, 4), + (207289, 97, 3), + (207289, 95, 3), + (207289, 156, 3), + (207289, 139, 3), + (207289, 153, 3), + (207289, 16, 1), + (207290, 91, 450), + (207290, 90, 450), + (207290, 92, 450), + (207290, 94, 450), + (207290, 93, 450), + (207290, 96, 450), + (207290, 97, 375), + (207290, 95, 375), + (207290, 156, 30), + (207290, 139, 30), + (207290, 153, 30), + (207290, 16, 10), + (207291, 91, 560), + (207291, 90, 560), + (207291, 92, 560), + (207291, 94, 560), + (207291, 93, 560), + (207291, 96, 560), + (207291, 97, 485), + (207291, 95, 485), + (207291, 156, 37), + (207291, 139, 37), + (207291, 153, 37), + (207291, 16, 13), + (207319, 97, 75), + (207319, 95, 75), + (207319, 93, 75), + (207319, 96, 75), + (207319, 139, 10), + (207319, 157, 10), + (207320, 97, 330), + (207320, 95, 330), + (207320, 93, 330), + (207320, 96, 330), + (207320, 139, 30), + (207320, 157, 30), + (207835, 93, 777), + (207835, 95, 777), + (207835, 90, 777), + (207835, 91, 777), + (207835, 96, 777), + (207835, 92, 888), + (207835, 94, 888), + (207835, 97, 444), + (207835, 221, 99), + (207835, 1, 99), + (207835, 130, 3), + (207835, 129, 3), + (207835, 128, 3), + (207836, 93, 222), + (207836, 95, 222), + (207836, 92, 333), + (207836, 97, 111), + (207836, 91, 222), + (207836, 96, 222), + (207836, 90, 222), + (207836, 94, 333), + (207836, 221, 55), + (207836, 149, 22), + (207836, 161, 11), + (207836, 168, 11), + (207837, 93, 333), + (207837, 95, 333), + (207837, 90, 333), + (207837, 94, 444), + (207837, 91, 333), + (207837, 96, 333), + (207837, 92, 444), + (207837, 97, 222), + (207837, 156, 44), + (207837, 153, 44), + (207837, 168, 22), + (207838, 96, 999), + (207838, 93, 999), + (207838, 91, 999), + (207838, 95, 999), + (207838, 90, 999), + (207838, 92, 1111), + (207838, 94, 1111), + (207838, 97, 666), + (207838, 221, 222), + (207838, 133, 11), + (207838, 104, 11), + (207838, 160, 11), + (207838, 149, 22), + (207838, 168, 33), + (207861, 92, 100), + (207861, 91, 100), + (207861, 90, 100), + (207862, 92, 100), + (207862, 91, 100), + (207862, 90, 100), + (207863, 92, 300), + (207863, 91, 300), + (207863, 90, 300), + (207966, 92, 75), + (207966, 221, 75), + (207966, 149, 25), + (207967, 92, 75), + (207967, 221, 75), + (207967, 149, 25), + (207968, 92, 150), + (207968, 221, 200), + (207968, 149, 50), + (207973, 118, 8), + (207973, 155, 8), + (207975, 118, 8), + (207975, 155, 8), + (207976, 152, 8), + (207976, 118, 16), + (207976, 155, 16), + (207984, 1, 60), + (207985, 1, 60), + (207988, 1, 70), + (207988, 18, 5), + (207988, 16, 5), + (207992, 118, 9), + (207992, 21, 3), + (207992, 18, 3), + (207993, 118, 9), + (207993, 21, 3), + (207993, 18, 3), + (207994, 118, 18), + (207994, 21, 6), + (207994, 18, 6), + (207995, 161, 3), + (207995, 154, 9), + (207996, 161, 3), + (207996, 154, 9), + (207997, 161, 6), + (207997, 154, 18), + (207997, 1, 54), + (207998, 141, 5), + (207999, 165, 20), + (207999, 163, 20), + (207999, 141, 20), + (208000, 141, 5), + (208001, 166, 3), + (208001, 1, 75), + (208002, 166, 3), + (208002, 1, 75), + (208003, 166, 12), + (208003, 1, 150), + (208004, 93, 150), + (208004, 97, 150), + (208004, 221, 30), + (208005, 93, 150), + (208005, 97, 150), + (208005, 221, 30), + (208006, 93, 300), + (208006, 97, 300), + (208006, 221, 60), + (208010, 161, 5), + (208010, 221, 20), + (208011, 161, 5), + (208011, 221, 20), + (208012, 161, 10), + (208012, 221, 60), + (208012, 149, 15), + (208013, 92, 25), + (208013, 162, 5), + (208014, 92, 25), + (208014, 162, 5), + (208015, 154, 15), + (208015, 92, 150), + (208015, 162, 10), + (208016, 95, 50), + (208016, 1, 50), + (208017, 95, 50), + (208017, 1, 50), + (208018, 142, 20), + (208018, 95, 300), + (208018, 1, 150), + (208019, 123, 4), + (208019, 221, 24), + (208020, 123, 4), + (208020, 221, 24), + (208021, 123, 8), + (208021, 221, 72), + (208021, 124, 8), + (208022, 221, 35), + (208023, 221, 35), + (208024, 221, 125), + (208024, 149, 20), + (208024, 282, 3), + (208025, 154, 10), + (208025, 1, 30), + (208026, 154, 10), + (208026, 1, 30), + (208027, 164, 15), + (208027, 154, 40), + (208027, 1, 150), + (208028, 280, 5), + (208028, 1, 75), + (208028, 160, 10), + (208029, 280, 5), + (208029, 1, 75), + (208029, 160, 10), + (208030, 280, 15), + (208030, 1, 225), + (208030, 160, 20), + (208031, 1, 20), + (208032, 1, 20), + (208033, 153, 20), + (208033, 1, 60), + (208034, 154, 10), + (208035, 154, 10), + (208036, 154, 20), + (208036, 153, 20), + (208036, 155, 20), + (208037, 125, 10), + (208038, 125, 10), + (208039, 93, 60), + (208039, 97, 60), + (208039, 125, 30), + (208040, 156, 8), + (208041, 156, 8), + (208042, 165, 12), + (208042, 154, 8), + (208042, 156, 16), + (208043, 154, 12), + (208044, 154, 12), + (208045, 164, 12), + (208045, 154, 18), + (208045, 136, 12), + (208046, 136, 5), + (208047, 136, 5), + (208048, 137, 20), + (208048, 123, 10), + (208048, 136, 10), + (208049, 166, 4), + (208049, 153, 8), + (208053, 166, 4), + (208053, 153, 8), + (208055, 166, 12), + (208055, 153, 24), + (208055, 221, 36), + (208056, 221, 50), + (208056, 149, 6), + (208056, 162, 4), + (208057, 221, 50), + (208057, 149, 6), + (208057, 162, 4), + (208058, 221, 100), + (208058, 149, 12), + (208058, 162, 8), + (208059, 118, 10), + (208060, 118, 10), + (208061, 118, 20), + (208061, 1, 40), + (208061, 91, 60), + (208062, 221, 50), + (208062, 149, 8), + (208062, 96, 25), + (208063, 221, 50), + (208063, 149, 8), + (208063, 96, 25), + (208064, 221, 100), + (208064, 149, 16), + (208064, 96, 50), + (208065, 221, 50), + (208065, 149, 5), + (208067, 221, 50), + (208067, 149, 5), + (208068, 221, 100), + (208068, 160, 10), + (208068, 149, 15), + (208069, 277, 10), + (208069, 94, 40), + (208070, 277, 10), + (208070, 94, 40), + (208071, 277, 20), + (208071, 149, 20), + (208071, 94, 80), + (208072, 145, 4), + (208073, 145, 4), + (208074, 118, 12), + (208074, 155, 12), + (208074, 145, 8), + (208075, 1, 50), + (208076, 1, 50), + (208077, 1, 75), + (208077, 221, 75), + (208078, 1, 75), + (208078, 221, 75), + (208079, 1, 75), + (208079, 221, 75), + (208082, 155, 20), + (208083, 95, 50), + (208084, 95, 50), + (208085, 95, 100), + (208085, 136, 5), + (208086, 95, 100), + (208086, 136, 5), + (208087, 95, 150), + (208087, 136, 10), + (208088, 95, 150), + (208088, 136, 10), + (208089, 95, 300), + (208089, 164, 10), + (208089, 136, 20), + (208092, 162, 3), + (208093, 162, 3), + (208094, 123, 3), + (208094, 162, 6), + (208095, 123, 3), + (208095, 162, 6), + (208096, 123, 6), + (208096, 1, 30), + (208096, 162, 9), + (208097, 123, 6), + (208097, 1, 30), + (208097, 162, 9), + (208098, 123, 12), + (208098, 1, 90), + (208098, 162, 15), + (208099, 119, 5), + (208100, 119, 5), + (208101, 119, 10), + (208101, 149, 5), + (208102, 119, 10), + (208102, 149, 5), + (208103, 119, 20), + (208103, 149, 10), + (208200, 93, 150), + (208200, 95, 150), + (208200, 92, 150), + (208200, 97, 150), + (208200, 91, 100), + (208200, 96, 150), + (208200, 90, 100), + (208200, 94, 150), + (208200, 149, 10), + (208200, 127, 2), + (208201, 93, 300), + (208201, 95, 300), + (208201, 92, 300), + (208201, 97, 300), + (208201, 91, 200), + (208201, 96, 300), + (208201, 90, 200), + (208201, 94, 300), + (208201, 149, 20), + (208201, 127, 4), + (208202, 93, 225), + (208202, 95, 225), + (208202, 92, 225), + (208202, 97, 225), + (208202, 91, 150), + (208202, 96, 225), + (208202, 90, 150), + (208202, 94, 225), + (208202, 156, 25), + (208202, 130, 3), + (208203, 93, 450), + (208203, 95, 450), + (208203, 92, 450), + (208203, 97, 450), + (208203, 91, 300), + (208203, 96, 450), + (208203, 90, 300), + (208203, 94, 450), + (208203, 156, 50), + (208203, 130, 6), + (208207, 93, 375), + (208207, 95, 375), + (208207, 92, 375), + (208207, 97, 375), + (208207, 91, 250), + (208207, 96, 375), + (208207, 90, 250), + (208207, 94, 375), + (208207, 154, 20), + (208207, 128, 3), + (208208, 93, 750), + (208208, 95, 750), + (208208, 92, 750), + (208208, 97, 750), + (208208, 91, 500), + (208208, 96, 750), + (208208, 90, 500), + (208208, 94, 750), + (208208, 154, 40), + (208208, 128, 6), + (208216, 91, 300), + (208216, 90, 300), + (208216, 96, 450), + (208216, 93, 450), + (208216, 97, 450), + (208216, 95, 450), + (208216, 92, 450), + (208216, 94, 450), + (208216, 221, 150), + (208216, 122, 4), + (208217, 91, 600), + (208217, 90, 600), + (208217, 96, 900), + (208217, 93, 900), + (208217, 97, 900), + (208217, 95, 900), + (208217, 92, 900), + (208217, 94, 900), + (208217, 221, 300), + (208217, 122, 8), + (208222, 93, 525), + (208222, 95, 525), + (208222, 92, 525), + (208222, 97, 525), + (208222, 91, 350), + (208222, 96, 525), + (208222, 90, 350), + (208222, 94, 525), + (208222, 131, 3), + (208222, 1, 150), + (208223, 93, 1050), + (208223, 95, 1050), + (208223, 92, 1050), + (208223, 97, 1050), + (208223, 91, 700), + (208223, 96, 1050), + (208223, 90, 700), + (208223, 94, 1050), + (208223, 131, 6), + (208223, 1, 300), + (208224, 93, 150), + (208224, 95, 150), + (208224, 92, 150), + (208224, 97, 150), + (208224, 91, 100), + (208224, 96, 150), + (208224, 90, 100), + (208224, 94, 150), + (208224, 160, 10), + (208224, 111, 10), + (208225, 93, 300), + (208225, 95, 300), + (208225, 92, 300), + (208225, 97, 300), + (208225, 91, 200), + (208225, 96, 300), + (208225, 90, 200), + (208225, 94, 300), + (208225, 160, 20), + (208225, 111, 20), + (208253, 149, 1), + (208253, 181, 1), + (208253, 221, 2), + (208253, 90, 8), + (208253, 91, 10), + (208253, 92, 4), + (208253, 93, 10), + (208253, 94, 4), + (208253, 95, 8), + (208253, 96, 8), + (208253, 97, 8), + (208253, 168, 1), + (208254, 149, 8), + (208254, 181, 8), + (208254, 221, 60), + (208254, 90, 250), + (208254, 91, 300), + (208254, 92, 125), + (208254, 93, 300), + (208254, 94, 125), + (208254, 95, 250), + (208254, 96, 250), + (208254, 97, 250), + (208254, 168, 10), + (208255, 149, 1), + (208255, 181, 1), + (208255, 221, 2), + (208255, 90, 8), + (208255, 91, 10), + (208255, 92, 4), + (208255, 93, 10), + (208255, 94, 4), + (208255, 95, 8), + (208255, 96, 8), + (208255, 97, 8), + (208255, 168, 1), + (208256, 149, 8), + (208256, 181, 8), + (208256, 221, 160), + (208256, 90, 1000), + (208256, 91, 1200), + (208256, 92, 500), + (208256, 93, 1200), + (208256, 94, 500), + (208256, 95, 1000), + (208256, 96, 1000), + (208256, 97, 1000), + (208256, 168, 40), + (208257, 91, 10), + (208257, 90, 8), + (208257, 92, 4), + (208257, 95, 8), + (208257, 97, 8), + (208257, 93, 10), + (208257, 94, 4), + (208257, 96, 8), + (208257, 181, 1), + (208257, 221, 2), + (208257, 149, 1), + (208257, 168, 1), + (208258, 91, 450), + (208258, 90, 375), + (208258, 92, 180), + (208258, 95, 375), + (208258, 97, 375), + (208258, 93, 450), + (208258, 94, 180), + (208258, 96, 375), + (208258, 181, 8), + (208258, 221, 55), + (208258, 149, 8), + (208258, 168, 15), + (208259, 149, 1), + (208259, 181, 1), + (208259, 221, 2), + (208259, 90, 8), + (208259, 91, 10), + (208259, 92, 4), + (208259, 93, 10), + (208259, 94, 4), + (208259, 95, 8), + (208259, 96, 8), + (208259, 97, 8), + (208259, 168, 1), + (208260, 149, 8), + (208260, 181, 8), + (208260, 221, 45), + (208260, 90, 250), + (208260, 91, 300), + (208260, 92, 125), + (208260, 93, 300), + (208260, 94, 125), + (208260, 95, 250), + (208260, 96, 250), + (208260, 97, 250), + (208260, 168, 10), + (208261, 149, 1), + (208261, 181, 1), + (208261, 221, 2), + (208261, 93, 10), + (208261, 95, 8), + (208261, 92, 4), + (208261, 97, 8), + (208261, 91, 10), + (208261, 96, 8), + (208261, 90, 8), + (208261, 94, 4), + (208261, 168, 1), + (208262, 149, 8), + (208262, 181, 8), + (208262, 221, 140), + (208262, 93, 900), + (208262, 95, 750), + (208262, 92, 375), + (208262, 97, 750), + (208262, 91, 900), + (208262, 96, 750), + (208262, 90, 750), + (208262, 94, 375), + (208262, 168, 30), + (208263, 149, 1), + (208263, 181, 1), + (208263, 221, 2), + (208263, 90, 8), + (208263, 91, 10), + (208263, 92, 4), + (208263, 93, 10), + (208263, 94, 4), + (208263, 95, 8), + (208263, 96, 8), + (208263, 97, 8), + (208263, 168, 1), + (208264, 149, 8), + (208264, 181, 8), + (208264, 221, 130), + (208264, 90, 625), + (208264, 91, 750), + (208264, 92, 310), + (208264, 93, 750), + (208264, 94, 310), + (208264, 95, 625), + (208264, 96, 625), + (208264, 97, 625), + (208264, 168, 25), + (208284, 149, 1), + (208284, 181, 1), + (208284, 221, 2), + (208284, 90, 8), + (208284, 91, 10), + (208284, 92, 4), + (208284, 93, 10), + (208284, 94, 4), + (208284, 95, 8), + (208284, 96, 8), + (208284, 97, 8), + (208284, 1, 1), + (208285, 149, 8), + (208285, 181, 8), + (208285, 221, 60), + (208285, 90, 250), + (208285, 91, 300), + (208285, 92, 125), + (208285, 93, 300), + (208285, 94, 125), + (208285, 95, 250), + (208285, 96, 250), + (208285, 97, 250), + (208285, 1, 50), + (208286, 149, 1), + (208286, 181, 1), + (208286, 221, 2), + (208286, 90, 8), + (208286, 91, 10), + (208286, 92, 4), + (208286, 93, 10), + (208286, 94, 4), + (208286, 95, 8), + (208286, 96, 8), + (208286, 97, 8), + (208286, 1, 1), + (208287, 149, 8), + (208287, 181, 8), + (208287, 221, 160), + (208287, 90, 1000), + (208287, 91, 1200), + (208287, 92, 500), + (208287, 93, 1200), + (208287, 94, 500), + (208287, 95, 1000), + (208287, 96, 1000), + (208287, 97, 1000), + (208287, 1, 200), + (208288, 91, 10), + (208288, 90, 8), + (208288, 92, 4), + (208288, 95, 8), + (208288, 97, 8), + (208288, 93, 10), + (208288, 94, 4), + (208288, 96, 8), + (208288, 181, 1), + (208288, 221, 2), + (208288, 149, 1), + (208288, 1, 1), + (208289, 91, 450), + (208289, 90, 375), + (208289, 92, 180), + (208289, 95, 375), + (208289, 97, 375), + (208289, 93, 450), + (208289, 94, 180), + (208289, 96, 375), + (208289, 181, 8), + (208289, 221, 55), + (208289, 149, 8), + (208289, 1, 75), + (208290, 149, 1), + (208290, 181, 1), + (208290, 221, 2), + (208290, 90, 8), + (208290, 91, 10), + (208290, 92, 4), + (208290, 93, 10), + (208290, 94, 4), + (208290, 95, 8), + (208290, 96, 8), + (208290, 97, 8), + (208290, 1, 1), + (208291, 149, 8), + (208291, 181, 8), + (208291, 221, 45), + (208291, 90, 250), + (208291, 91, 300), + (208291, 92, 125), + (208291, 93, 300), + (208291, 94, 125), + (208291, 95, 250), + (208291, 96, 250), + (208291, 97, 250), + (208291, 1, 50), + (208292, 149, 1), + (208292, 181, 1), + (208292, 221, 2), + (208292, 93, 10), + (208292, 95, 8), + (208292, 92, 4), + (208292, 97, 8), + (208292, 91, 10), + (208292, 96, 8), + (208292, 90, 8), + (208292, 94, 4), + (208292, 1, 1), + (208293, 149, 8), + (208293, 181, 8), + (208293, 221, 140), + (208293, 93, 900), + (208293, 95, 750), + (208293, 92, 375), + (208293, 97, 750), + (208293, 91, 900), + (208293, 96, 750), + (208293, 90, 750), + (208293, 94, 375), + (208293, 1, 150), + (208294, 149, 1), + (208294, 181, 1), + (208294, 221, 2), + (208294, 90, 8), + (208294, 91, 10), + (208294, 92, 4), + (208294, 93, 10), + (208294, 94, 4), + (208294, 95, 8), + (208294, 96, 8), + (208294, 97, 8), + (208294, 1, 1), + (208295, 149, 8), + (208295, 181, 8), + (208295, 221, 130), + (208295, 90, 625), + (208295, 91, 750), + (208295, 92, 310), + (208295, 93, 750), + (208295, 94, 310), + (208295, 95, 625), + (208295, 96, 625), + (208295, 97, 625), + (208295, 1, 125), + (208516, 141, 15), + (208527, 154, 10), + (208602, 96, 600), + (208602, 93, 900), + (208602, 97, 700), + (208602, 95, 700), + (208602, 94, 900), + (208602, 91, 900), + (208602, 92, 1100), + (208602, 90, 900), + (208602, 109, 15), + (208602, 115, 15), + (208602, 125, 25), + (208602, 126, 15), + (208602, 157, 15), + (208602, 158, 25), + (208602, 159, 10), + (208602, 160, 10), + (208602, 161, 10), + (208602, 162, 10), + (208602, 163, 10), + (208602, 165, 10), + (209039, 93, 675), + (209039, 95, 900), + (209039, 92, 900), + (209039, 97, 900), + (209039, 91, 675), + (209039, 96, 450), + (209039, 90, 675), + (209039, 94, 900), + (209039, 127, 4), + (209039, 130, 4), + (209039, 131, 4), + (209039, 123, 12), + (209039, 109, 10), + (209039, 153, 10), + (209039, 115, 10), + (209237, 90, 150), + (209237, 91, 150), + (209237, 92, 150), + (209237, 93, 150), + (209237, 94, 150), + (209237, 95, 150), + (209237, 96, 150), + (209237, 97, 150), + (209237, 1, 250), + (209237, 221, 200), + (209237, 123, 20), + (209273, 131, 2), + (209285, 118, 10), + (210298, 104, 8), + (210298, 105, 12), + (210300, 104, 20), + (210300, 105, 29), + (210302, 104, 40), + (210302, 105, 54), + (210304, 105, 85), + (210304, 104, 65), + (210306, 105, 110), + (210306, 104, 80), + (210308, 104, 95), + (210308, 105, 127), + (210310, 105, 140), + (210310, 1, 15), + (210310, 118, 10), + (210310, 104, 105), + (210312, 145, 38), + (210312, 143, 38), + (210312, 101, 15), + (210314, 145, 65), + (210314, 143, 65), + (210314, 101, 30), + (210316, 145, 105), + (210316, 143, 105), + (210316, 101, 45), + (210318, 145, 125), + (210318, 143, 125), + (210318, 101, 60), + (210320, 145, 140), + (210320, 143, 140), + (210320, 101, 80), + (210320, 277, 12), + (210322, 147, 30), + (210324, 147, 70), + (210326, 147, 90), + (210328, 147, 110), + (210330, 147, 135), + (210332, 147, 150), + (210733, 144, 19), + (210733, 100, 16), + (210735, 144, 40), + (210735, 100, 34), + (210737, 144, 75), + (210737, 100, 64), + (210739, 144, 94), + (210739, 100, 80), + (210741, 144, 110), + (210741, 100, 94), + (210743, 144, 127), + (210743, 100, 108), + (210745, 144, 140), + (210745, 100, 120), + (210747, 155, 30), + (210747, 153, 15), + (210747, 154, 15), + (210747, 17, 25), + (210747, 164, 20), + (210749, 155, 50), + (210749, 153, 25), + (210749, 154, 25), + (210749, 164, 45), + (210749, 17, 45), + (210751, 155, 75), + (210751, 153, 35), + (210751, 154, 35), + (210751, 164, 60), + (210751, 17, 65), + (210753, 155, 70), + (210753, 153, 40), + (210753, 154, 40), + (210753, 17, 80), + (210753, 164, 80), + (210788, 146, 30), + (210790, 146, 70), + (210792, 146, 90), + (210794, 146, 110), + (210796, 146, 135), + (210798, 146, 150), + (210805, 101, 20), + (210805, 145, 12), + (210807, 101, 45), + (210807, 145, 27), + (210809, 101, 80), + (210809, 145, 48), + (210811, 101, 112), + (210811, 145, 68), + (210813, 101, 130), + (210813, 145, 80), + (211143, 106, 140), + (211143, 101, 10), + (211143, 108, 80), + (211143, 279, 15), + (211143, 278, 15), + (211143, 280, 15), + (211143, 316, 15), + (211143, 311, 15), + (211143, 281, 15), + (211143, 317, 15), + (211143, 282, 15), + (211145, 106, 127), + (211145, 101, 4), + (211145, 279, 7), + (211145, 278, 7), + (211145, 280, 7), + (211145, 316, 7), + (211145, 311, 7), + (211145, 281, 7), + (211145, 317, 7), + (211145, 282, 7), + (211147, 106, 110), + (211147, 279, 3), + (211147, 278, 3), + (211147, 280, 3), + (211147, 316, 3), + (211147, 311, 3), + (211147, 281, 3), + (211147, 317, 3), + (211147, 282, 3), + (211149, 106, 85), + (211151, 106, 54), + (211153, 106, 29), + (211155, 106, 12), + (211159, 16, 12), + (211159, 18, 12), + (211159, 17, 6), + (211161, 16, 23), + (211161, 18, 23), + (211161, 17, 12), + (211163, 16, 40), + (211163, 18, 40), + (211163, 17, 20), + (211165, 155, 50), + (211165, 154, 25), + (211165, 153, 25), + (211167, 155, 80), + (211167, 154, 40), + (211167, 153, 40), + (211169, 155, 110), + (211169, 154, 55), + (211169, 153, 55), + (211171, 155, 140), + (211171, 154, 70), + (211171, 153, 70), + (211193, 162, 30), + (211193, 16, 10), + (211196, 164, 25), + (211196, 156, 25), + (211199, 155, 20), + (211202, 95, 200), + (211205, 221, 100), + (211205, 21, 20), + (211208, 221, 150), + (211211, 154, 40), + (211211, 153, 20), + (211211, 155, 20), + (211214, 19, 5), + (211214, 21, 5), + (211214, 20, 5), + (211215, 154, 10), + (211215, 153, 5), + (211215, 96, 50), + (211216, 154, 10), + (211216, 153, 5), + (211216, 96, 50), + (211217, 154, 30), + (211217, 153, 15), + (211217, 96, 300), + (211220, 93, 300), + (211220, 1, 150), + (211220, 221, 50), + (211223, 221, 200), + (211223, 149, 20), + (211226, 154, 40), + (211226, 156, 40), + (211229, 112, 20), + (211229, 94, 200), + (211232, 153, 30), + (211232, 130, 3), + (211232, 131, 3), + (211235, 162, 12), + (211235, 20, 6), + (211235, 16, 6), + (211238, 95, 400), + (211238, 97, 400), + (211238, 1, 100), + (211241, 118, 20), + (211241, 95, 200), + (211244, 168, 50), + (211247, 123, 12), + (211247, 124, 4), + (211250, 122, 5), + (211253, 379, 1), + (211253, 319, 1), + (211256, 137, 30), + (211259, 97, 250), + (211259, 156, 25), + (211262, 19, 10), + (211262, 158, 20), + (211265, 1, 40), + (211265, 16, 10), + (211268, 127, 5), + (211268, 221, 100), + (211268, 141, 5), + (211271, 119, 50), + (211271, 154, 50), + (211271, 153, 25), + (211274, 126, 30), + (211274, 125, 30), + (211274, 158, 30), + (211277, 155, 25), + (211277, 1, 75), + (211277, 120, 25), + (211282, 153, 25), + (211282, 1, 200), + (211282, 168, 50), + (212207, 1, 200), + (212207, 221, 100), + (212212, 1, 200), + (212212, 221, 100), + (212217, 1, 200), + (212217, 221, 100), + (212222, 1, 200), + (212222, 221, 100), + (212227, 1, 200), + (212227, 221, 100), + (212232, 1, 200), + (212232, 221, 100), + (212237, 1, 200), + (212237, 221, 100), + (212242, 1, 200), + (212242, 221, 100), + (212247, 1, 200), + (212247, 221, 100), + (212252, 1, 200), + (212252, 221, 100), + (212257, 1, 200), + (212257, 221, 100), + (212262, 1, 200), + (212262, 221, 100), + (212267, 1, 200), + (212267, 221, 100), + (212272, 1, 200), + (212272, 221, 100), + (212277, 1, 200), + (212277, 221, 100), + (212282, 1, 200), + (212282, 221, 100), + (212287, 1, 200), + (212287, 221, 100), + (212292, 1, 200), + (212292, 221, 100), + (212297, 1, 200), + (212297, 221, 100), + (212302, 1, 200), + (212302, 221, 100), + (212307, 1, 200), + (212307, 221, 100), + (212312, 1, 200), + (212312, 221, 100), + (212317, 1, 200), + (212317, 221, 100), + (212322, 1, 200), + (212322, 221, 100), + (212327, 1, 200), + (212327, 221, 100), + (212332, 1, 200), + (212332, 221, 100), + (212337, 1, 200), + (212337, 221, 100), + (212342, 1, 200), + (212342, 221, 100), + (212347, 1, 200), + (212347, 221, 100), + (212352, 1, 200), + (212352, 221, 100), + (212357, 1, 200), + (212357, 221, 100), + (212362, 1, 200), + (212362, 221, 100), + (212367, 1, 200), + (212367, 221, 100), + (212372, 1, 200), + (212372, 221, 100), + (212377, 1, 200), + (212377, 221, 100), + (212382, 1, 200), + (212382, 221, 100), + (212387, 1, 200), + (212387, 221, 100), + (212392, 1, 200), + (212392, 221, 100), + (212398, 1, 200), + (212398, 221, 100), + (212403, 1, 200), + (212403, 221, 100), + (212408, 1, 200), + (212408, 221, 100), + (212413, 1, 200), + (212413, 221, 100), + (212418, 1, 200), + (212418, 221, 100), + (212423, 1, 200), + (212423, 221, 100), + (212428, 1, 200), + (212428, 221, 100), + (212433, 1, 200), + (212433, 221, 100), + (212438, 1, 200), + (212438, 221, 100), + (212443, 1, 200), + (212443, 221, 100), + (212448, 1, 200), + (212448, 221, 100), + (212453, 1, 200), + (212453, 221, 100), + (212458, 1, 200), + (212458, 221, 100), + (212463, 1, 200), + (212463, 221, 100), + (212468, 1, 200), + (212468, 221, 100), + (212473, 1, 200), + (212473, 221, 100), + (212478, 1, 200), + (212478, 221, 100), + (212483, 1, 200), + (212483, 221, 100), + (212488, 1, 200), + (212488, 221, 100), + (212493, 1, 200), + (212493, 221, 100), + (212498, 1, 200), + (212498, 221, 100), + (212503, 1, 200), + (212503, 221, 100), + (212508, 1, 200), + (212508, 221, 100), + (212513, 1, 200), + (212513, 221, 100), + (212518, 1, 200), + (212518, 221, 100), + (212523, 1, 200), + (212523, 221, 100), + (212528, 1, 200), + (212528, 221, 100), + (212533, 1, 200), + (212533, 221, 100), + (212538, 1, 200), + (212538, 221, 100), + (212543, 1, 200), + (212543, 221, 100), + (212548, 1, 200), + (212548, 221, 100), + (212553, 1, 200), + (212553, 221, 100), + (212558, 1, 200), + (212558, 221, 100), + (212563, 1, 200), + (212563, 221, 100), + (212568, 1, 200), + (212568, 221, 100), + (212573, 1, 200), + (212573, 221, 100), + (212579, 1, 200), + (212579, 221, 100), + (212584, 1, 200), + (212584, 221, 100), + (212589, 1, 200), + (212589, 221, 100), + (212594, 1, 200), + (212594, 221, 100), + (212599, 1, 200), + (212599, 221, 100), + (212604, 1, 200), + (212604, 221, 100), + (212609, 1, 200), + (212609, 221, 100), + (212614, 1, 200), + (212614, 221, 100), + (212619, 1, 200), + (212619, 221, 100), + (212624, 1, 200), + (212624, 221, 100), + (212629, 1, 200), + (212629, 221, 100), + (212634, 1, 200), + (212634, 221, 100), + (212639, 1, 200), + (212639, 221, 100), + (212644, 1, 200), + (212644, 221, 100), + (212649, 1, 200), + (212649, 221, 100), + (212654, 1, 200), + (212654, 221, 100), + (212659, 1, 200), + (212659, 221, 100), + (212664, 1, 200), + (212664, 221, 100), + (212669, 1, 200), + (212669, 221, 100), + (212674, 1, 200), + (212674, 221, 100), + (212679, 1, 200), + (212679, 221, 100), + (212684, 1, 200), + (212684, 221, 100), + (212689, 1, 200), + (212689, 221, 100), + (212694, 1, 200), + (212694, 221, 100), + (212699, 1, 200), + (212699, 221, 100), + (212704, 1, 200), + (212704, 221, 100), + (212709, 1, 200), + (212709, 221, 100), + (212714, 1, 200), + (212714, 221, 100), + (212719, 1, 200), + (212719, 221, 100), + (212724, 1, 200), + (212724, 221, 100), + (212729, 1, 200), + (212729, 221, 100), + (212734, 1, 200), + (212734, 221, 100), + (212739, 1, 200), + (212739, 221, 100), + (212745, 1, 200), + (212745, 221, 100), + (212750, 1, 200), + (212750, 221, 100), + (212755, 1, 200), + (212755, 221, 100), + (212760, 1, 200), + (212760, 221, 100), + (212765, 1, 200), + (212765, 221, 100), + (212770, 1, 200), + (212770, 221, 100), + (212775, 1, 200), + (212775, 221, 100), + (212780, 1, 200), + (212780, 221, 100), + (212785, 221, 100), + (212790, 1, 200), + (212790, 221, 100), + (212795, 1, 200), + (212795, 221, 100), + (212800, 1, 200), + (212800, 221, 100), + (212805, 1, 200), + (212805, 221, 100), + (212812, 1, 200), + (212812, 221, 100), + (212817, 1, 200), + (212817, 221, 100), + (212822, 1, 200), + (212822, 221, 100), + (212827, 1, 200), + (212827, 221, 100), + (212834, 1, 200), + (212834, 221, 100), + (212839, 1, 200), + (212839, 221, 100), + (212845, 1, 200), + (212845, 221, 100), + (212851, 1, 200), + (212851, 221, 100), + (212856, 1, 200), + (212856, 221, 100), + (212861, 1, 200), + (212861, 221, 100), + (212866, 1, 200), + (212866, 221, 100), + (212871, 1, 200), + (212871, 221, 100), + (212876, 1, 200), + (212876, 221, 100), + (212881, 1, 200), + (212881, 221, 100), + (212886, 1, 200), + (212886, 221, 100), + (212891, 1, 200), + (212891, 221, 100), + (212995, 316, 20), + (212995, 1, 250), + (212995, 168, 20), + (213441, 91, 190), + (213441, 90, 190), + (213441, 92, 190), + (213441, 97, 190), + (213441, 95, 190), + (213441, 94, 190), + (213441, 93, 190), + (213441, 96, 190), + (213441, 147, 10), + (213442, 91, 250), + (213442, 90, 250), + (213442, 92, 250), + (213442, 97, 205), + (213442, 95, 205), + (213442, 94, 250), + (213442, 93, 205), + (213442, 96, 205), + (213442, 147, 20), + (213443, 91, 225), + (213443, 90, 225), + (213443, 92, 225), + (213443, 97, 225), + (213443, 95, 225), + (213443, 94, 225), + (213443, 93, 225), + (213443, 96, 225), + (213443, 119, 10), + (213443, 118, 10), + (213444, 91, 335), + (213444, 90, 335), + (213444, 92, 335), + (213444, 97, 305), + (213444, 95, 305), + (213444, 94, 335), + (213444, 93, 305), + (213444, 96, 305), + (213444, 119, 20), + (213444, 118, 20), + (213445, 91, 900), + (213445, 90, 900), + (213445, 92, 900), + (213445, 97, 900), + (213445, 95, 900), + (213445, 94, 900), + (213445, 93, 900), + (213445, 96, 900), + (213445, 1, 100), + (213446, 91, 1200), + (213446, 90, 1200), + (213446, 92, 1200), + (213446, 97, 1000), + (213446, 95, 1000), + (213446, 94, 1200), + (213446, 93, 1000), + (213446, 96, 1000), + (213446, 1, 300), + (213447, 91, 300), + (213447, 90, 300), + (213447, 92, 300), + (213447, 97, 300), + (213447, 95, 300), + (213447, 94, 300), + (213447, 93, 300), + (213447, 96, 300), + (213447, 156, 15), + (213448, 91, 350), + (213448, 90, 350), + (213448, 92, 350), + (213448, 97, 350), + (213448, 95, 350), + (213448, 94, 350), + (213448, 93, 350), + (213448, 96, 350), + (213448, 156, 30), + (213449, 91, 450), + (213449, 90, 450), + (213449, 92, 450), + (213449, 97, 450), + (213449, 95, 450), + (213449, 94, 450), + (213449, 93, 450), + (213449, 96, 450), + (213449, 146, 10), + (213450, 91, 600), + (213450, 90, 600), + (213450, 92, 600), + (213450, 97, 600), + (213450, 95, 600), + (213450, 94, 600), + (213450, 93, 600), + (213450, 96, 600), + (213450, 146, 20), + (214156, 1, 75), + (214157, 1, 75), + (214158, 155, 15), + (214158, 1, 150), + (214159, 155, 15), + (214159, 1, 150), + (214160, 164, 40), + (214160, 155, 35), + (214160, 1, 300), + (214161, 1, 65), + (214162, 1, 65), + (214163, 155, 12), + (214163, 1, 130), + (214164, 155, 12), + (214164, 1, 130), + (214165, 164, 35), + (214165, 155, 28), + (214165, 1, 260), + (214166, 1, 65), + (214167, 1, 65), + (214168, 97, 350), + (214168, 1, 130), + (214169, 97, 350), + (214169, 1, 130), + (214170, 118, 60), + (214170, 97, 700), + (214170, 1, 260), + (214171, 1, 75), + (214172, 1, 75), + (214173, 95, 400), + (214173, 1, 150), + (214174, 95, 400), + (214174, 1, 150), + (214175, 118, 75), + (214175, 95, 800), + (214175, 1, 300), + (214176, 1, 75), + (214177, 1, 75), + (214178, 155, 15), + (214178, 1, 150), + (214179, 155, 15), + (214179, 1, 150), + (214180, 155, 30), + (214180, 1, 300), + (214180, 101, 75), + (214182, 1, 65), + (214183, 1, 65), + (214184, 155, 10), + (214184, 1, 130), + (214185, 155, 10), + (214185, 1, 130), + (214186, 155, 25), + (214186, 1, 260), + (214186, 101, 65), + (214187, 1, 75), + (214188, 1, 75), + (214189, 154, 15), + (214189, 1, 150), + (214190, 154, 15), + (214190, 1, 150), + (214191, 154, 30), + (214191, 1, 300), + (214191, 134, 75), + (214192, 1, 65), + (214193, 1, 65), + (214194, 154, 10), + (214194, 1, 130), + (214195, 154, 10), + (214195, 1, 130), + (214196, 154, 25), + (214196, 1, 260), + (214196, 134, 65), + (214197, 1, 75), + (214198, 1, 75), + (214199, 154, 25), + (214199, 1, 150), + (214200, 154, 25), + (214200, 1, 150), + (214201, 165, 90), + (214201, 154, 75), + (214201, 1, 300), + (214203, 1, 65), + (214204, 1, 65), + (214205, 154, 15), + (214205, 1, 130), + (214206, 154, 15), + (214206, 1, 130), + (214207, 165, 80), + (214207, 154, 65), + (214207, 1, 260), + (214208, 1, 75), + (214209, 1, 75), + (214210, 148, 30), + (214210, 1, 150), + (214211, 148, 30), + (214211, 1, 150), + (214212, 148, 90), + (214212, 1, 300), + (214212, 122, 30), + (214217, 1, 75), + (214218, 1, 75), + (214219, 148, 30), + (214219, 1, 150), + (214220, 148, 30), + (214220, 1, 150), + (214221, 148, 90), + (214221, 1, 300), + (214221, 122, 30), + (214245, 1, 75), + (214246, 1, 75), + (214247, 1, 150), + (214247, 120, 15), + (214248, 1, 150), + (214248, 120, 15), + (214249, 155, 40), + (214249, 1, 300), + (214249, 120, 40), + (214255, 1, 75), + (214256, 1, 150), + (214256, 120, 15), + (214257, 1, 150), + (214257, 120, 15), + (214258, 155, 40), + (214258, 1, 300), + (214258, 120, 40), + (214259, 1, 75), + (214260, 1, 75), + (214261, 1, 75), + (214262, 1, 150), + (214262, 125, 20), + (214263, 1, 150), + (214263, 125, 20), + (214264, 1, 300), + (214264, 125, 50), + (214264, 158, 50), + (214265, 1, 65), + (214266, 1, 65), + (214267, 1, 130), + (214267, 125, 20), + (214268, 1, 130), + (214268, 125, 20), + (214269, 1, 260), + (214269, 125, 50), + (214269, 158, 50), + (214270, 1, 75), + (214271, 1, 75), + (214272, 126, 35), + (214272, 1, 150), + (214273, 126, 35), + (214273, 1, 150), + (214274, 126, 95), + (214274, 157, 95), + (214274, 1, 300), + (214277, 1, 75), + (214278, 1, 75), + (214279, 126, 35), + (214279, 1, 150), + (214280, 126, 35), + (214280, 1, 150), + (214281, 126, 95), + (214281, 157, 95), + (214281, 1, 300), + (214282, 1, 75), + (214283, 1, 75), + (214284, 164, 25), + (214284, 1, 150), + (214285, 164, 25), + (214285, 1, 150), + (214286, 164, 100), + (214286, 119, 75), + (214286, 1, 300), + (214287, 1, 75), + (214288, 1, 75), + (214289, 164, 25), + (214289, 1, 150), + (214290, 164, 25), + (214290, 1, 150), + (214291, 164, 100), + (214291, 119, 75), + (214291, 1, 300), + (214292, 1, 75), + (214293, 1, 75), + (214294, 1, 150), + (214294, 221, 100), + (214295, 1, 150), + (214295, 221, 100), + (214296, 1, 300), + (214296, 221, 200), + (214296, 129, 25), + (214297, 1, 65), + (214298, 1, 65), + (214299, 1, 130), + (214299, 221, 90), + (214300, 1, 130), + (214300, 221, 90), + (214301, 1, 260), + (214301, 221, 180), + (214301, 129, 22), + (214303, 1, 75), + (214304, 1, 75), + (214305, 1, 150), + (214305, 221, 150), + (214306, 1, 150), + (214306, 221, 150), + (214307, 1, 300), + (214307, 221, 300), + (214307, 124, 25), + (214308, 1, 65), + (214309, 1, 65), + (214310, 1, 130), + (214310, 221, 130), + (214311, 1, 130), + (214311, 221, 130), + (214312, 1, 260), + (214312, 221, 260), + (214312, 124, 22), + (214313, 1, 75), + (214314, 1, 75), + (214315, 1, 150), + (214315, 221, 175), + (214316, 1, 150), + (214316, 221, 175), + (214317, 1, 300), + (214317, 130, 25), + (214317, 221, 350), + (214318, 1, 65), + (214319, 1, 65), + (214320, 1, 130), + (214320, 221, 155), + (214321, 1, 130), + (214321, 221, 155), + (214322, 1, 260), + (214322, 130, 22), + (214322, 221, 310), + (214323, 1, 75), + (214324, 1, 75), + (214325, 118, 20), + (214325, 1, 150), + (214326, 118, 20), + (214326, 1, 150), + (214327, 118, 50), + (214327, 379, 1), + (214327, 1, 300), + (214328, 1, 75), + (214329, 1, 75), + (214330, 118, 20), + (214330, 1, 150), + (214331, 118, 20), + (214331, 1, 150), + (214332, 118, 50), + (214332, 379, 1), + (214332, 1, 300), + (214333, 1, 65), + (214334, 1, 65), + (214335, 1, 130), + (214335, 168, 22), + (214336, 1, 130), + (214336, 168, 22), + (214337, 19, 22), + (214337, 1, 260), + (214337, 168, 80), + (214338, 1, 75), + (214339, 1, 75), + (214340, 1, 150), + (214340, 168, 25), + (214341, 1, 150), + (214341, 168, 25), + (214342, 19, 25), + (214342, 1, 300), + (214342, 168, 90), + (214343, 1, 65), + (214344, 1, 65), + (214345, 128, 10), + (214345, 1, 130), + (214346, 128, 10), + (214346, 1, 130), + (214347, 128, 35), + (214347, 1, 260), + (214347, 96, 750), + (214348, 1, 75), + (214349, 1, 75), + (214350, 128, 15), + (214350, 1, 150), + (214351, 128, 15), + (214351, 1, 150), + (214722, 91, 550), + (214722, 90, 550), + (214722, 92, 550), + (214722, 97, 550), + (214722, 95, 550), + (214722, 94, 550), + (214722, 93, 550), + (214722, 96, 550), + (214722, 168, 24), + (214723, 91, 100), + (214723, 90, 100), + (214723, 92, 100), + (214723, 97, 100), + (214723, 95, 100), + (214723, 94, 100), + (214723, 93, 100), + (214723, 96, 100), + (214723, 168, 4), + (214724, 91, 450), + (214724, 90, 450), + (214724, 92, 450), + (214724, 97, 450), + (214724, 95, 450), + (214724, 94, 450), + (214724, 93, 450), + (214724, 96, 450), + (214724, 168, 16), + (214725, 91, 100), + (214725, 90, 100), + (214725, 92, 100), + (214725, 97, 100), + (214725, 95, 100), + (214725, 94, 100), + (214725, 93, 100), + (214725, 96, 100), + (214725, 168, 8), + (214726, 91, 110), + (214726, 90, 110), + (214726, 92, 110), + (214726, 97, 110), + (214726, 95, 110), + (214726, 94, 110), + (214726, 93, 110), + (214726, 96, 110), + (214726, 168, 8), + (214727, 91, 550), + (214727, 90, 550), + (214727, 92, 550), + (214727, 97, 550), + (214727, 95, 550), + (214727, 94, 550), + (214727, 93, 550), + (214727, 96, 550), + (214727, 168, 24), + (214728, 91, 300), + (214728, 90, 300), + (214728, 92, 300), + (214728, 97, 300), + (214728, 95, 300), + (214728, 94, 300), + (214728, 93, 300), + (214728, 96, 300), + (214728, 168, 16), + (214729, 91, 150), + (214729, 90, 150), + (214729, 92, 150), + (214729, 97, 150), + (214729, 95, 150), + (214729, 94, 150), + (214729, 93, 150), + (214729, 96, 150), + (214729, 168, 12), + (214755, 91, 600), + (214755, 90, 600), + (214755, 92, 600), + (214755, 97, 600), + (214755, 95, 600), + (214755, 94, 600), + (214755, 93, 600), + (214755, 96, 600), + (214755, 1, 150), + (214755, 150, 5), + (214756, 91, 735), + (214756, 90, 750), + (214756, 92, 750), + (214756, 97, 735), + (214756, 95, 735), + (214756, 94, 750), + (214756, 93, 750), + (214756, 96, 750), + (214756, 1, 225), + (214756, 150, 15), + (214757, 91, 225), + (214757, 90, 300), + (214757, 92, 300), + (214757, 97, 225), + (214757, 95, 225), + (214757, 94, 300), + (214757, 93, 300), + (214757, 96, 300), + (214757, 156, 16), + (214757, 153, 16), + (214758, 91, 225), + (214758, 90, 375), + (214758, 92, 375), + (214758, 97, 225), + (214758, 95, 225), + (214758, 94, 375), + (214758, 93, 375), + (214758, 96, 375), + (214758, 156, 24), + (214758, 153, 24), + (214759, 91, 1000), + (214759, 90, 1000), + (214759, 92, 1000), + (214759, 97, 1000), + (214759, 95, 1000), + (214759, 94, 1000), + (214759, 93, 1000), + (214759, 96, 1000), + (214759, 221, 350), + (214759, 136, 10), + (214760, 91, 1000), + (214760, 90, 1250), + (214760, 92, 1250), + (214760, 97, 1000), + (214760, 95, 1000), + (214760, 94, 1250), + (214760, 93, 1250), + (214760, 96, 1250), + (214760, 221, 500), + (214760, 136, 20), + (214761, 91, 150), + (214761, 90, 200), + (214761, 92, 200), + (214761, 97, 150), + (214761, 95, 150), + (214761, 94, 200), + (214761, 93, 200), + (214761, 96, 200), + (214761, 149, 12), + (214761, 123, 10), + (214762, 91, 150), + (214762, 90, 250), + (214762, 92, 250), + (214762, 97, 150), + (214762, 95, 150), + (214762, 94, 250), + (214762, 93, 250), + (214762, 96, 250), + (214762, 149, 18), + (214762, 123, 20), + (214763, 91, 205), + (214763, 90, 360), + (214763, 92, 360), + (214763, 97, 205), + (214763, 95, 205), + (214763, 94, 360), + (214763, 93, 360), + (214763, 96, 360), + (214763, 112, 15), + (214763, 115, 10), + (214763, 133, 10), + (214764, 91, 205), + (214764, 90, 455), + (214764, 92, 455), + (214764, 97, 205), + (214764, 95, 205), + (214764, 94, 455), + (214764, 93, 455), + (214764, 96, 455), + (214764, 112, 20), + (214764, 115, 15), + (214764, 133, 15), + (214765, 91, 750), + (214765, 90, 900), + (214765, 92, 900), + (214765, 97, 750), + (214765, 95, 750), + (214765, 94, 900), + (214765, 93, 900), + (214765, 96, 900), + (214765, 19, 5), + (214766, 91, 750), + (214766, 90, 1125), + (214766, 92, 1125), + (214766, 97, 750), + (214766, 95, 750), + (214766, 94, 1125), + (214766, 93, 1125), + (214766, 96, 1125), + (214766, 19, 10), + (214767, 91, 125), + (214767, 90, 125), + (214767, 92, 125), + (214767, 97, 125), + (214767, 95, 125), + (214767, 94, 125), + (214767, 93, 125), + (214767, 96, 125), + (214767, 181, 5), + (214768, 91, 175), + (214768, 90, 175), + (214768, 92, 175), + (214768, 97, 175), + (214768, 95, 175), + (214768, 94, 175), + (214768, 93, 175), + (214768, 96, 175), + (214768, 181, 10), + (214794, 91, 300), + (214794, 90, 300), + (214794, 92, 730), + (214794, 97, 375), + (214794, 95, 375), + (214794, 94, 730), + (214794, 93, 375), + (214794, 96, 375), + (214794, 156, 24), + (214794, 153, 18), + (214794, 149, 30), + (214794, 122, 1), + (214794, 1, 100), + (214795, 91, 375), + (214795, 90, 375), + (214795, 92, 875), + (214795, 97, 450), + (214795, 95, 450), + (214795, 94, 875), + (214795, 93, 450), + (214795, 96, 450), + (214795, 156, 32), + (214795, 153, 36), + (214795, 149, 60), + (214795, 122, 25), + (214795, 1, 250), + (214796, 91, 1000), + (214796, 90, 1000), + (214796, 92, 1500), + (214796, 97, 1250), + (214796, 95, 1250), + (214796, 94, 1500), + (214796, 93, 1250), + (214796, 96, 1250), + (214796, 221, 500), + (214796, 136, 30), + (214796, 18, 6), + (214796, 318, -1), + (214796, 181, 16), + (214797, 91, 1250), + (214797, 90, 1250), + (214797, 92, 1800), + (214797, 97, 1500), + (214797, 95, 1500), + (214797, 94, 1800), + (214797, 93, 1500), + (214797, 96, 1500), + (214797, 221, 1000), + (214797, 136, 40), + (214797, 18, 12), + (214797, 318, -5), + (214797, 181, 32), + (214798, 91, 200), + (214798, 90, 200), + (214798, 92, 410), + (214798, 97, 250), + (214798, 95, 250), + (214798, 94, 410), + (214798, 93, 250), + (214798, 96, 250), + (214798, 112, 12), + (214798, 123, 12), + (214798, 154, 9), + (214798, 129, 1), + (214798, 1, 100), + (214799, 91, 250), + (214799, 90, 250), + (214799, 92, 500), + (214799, 97, 300), + (214799, 95, 300), + (214799, 94, 500), + (214799, 93, 300), + (214799, 96, 300), + (214799, 112, 16), + (214799, 123, 16), + (214799, 154, 18), + (214799, 129, 15), + (214799, 1, 250), + (214800, 91, 200), + (214800, 90, 200), + (214800, 92, 565), + (214800, 97, 250), + (214800, 95, 250), + (214800, 94, 565), + (214800, 93, 250), + (214800, 96, 250), + (214800, 133, 21), + (214800, 155, 21), + (214800, 20, 10), + (214800, 128, 1), + (214800, 1, 100), + (214801, 91, 250), + (214801, 90, 250), + (214801, 92, 675), + (214801, 97, 300), + (214801, 95, 300), + (214801, 94, 675), + (214801, 93, 300), + (214801, 96, 300), + (214801, 133, 28), + (214801, 155, 28), + (214801, 20, 20), + (214801, 128, 25), + (214801, 1, 250), + (214802, 91, 900), + (214802, 90, 900), + (214802, 92, 1125), + (214802, 97, 1125), + (214802, 95, 1125), + (214802, 94, 1125), + (214802, 93, 1125), + (214802, 96, 1125), + (214802, 19, 10), + (214802, 160, 20), + (214802, 130, 1), + (214802, 1, 100), + (214803, 91, 1125), + (214803, 90, 1125), + (214803, 92, 1350), + (214803, 97, 1350), + (214803, 95, 1350), + (214803, 94, 1350), + (214803, 93, 1350), + (214803, 96, 1350), + (214803, 19, 20), + (214803, 160, 60), + (214803, 130, 30), + (214803, 1, 200), + (214804, 91, 125), + (214804, 90, 125), + (214804, 92, 225), + (214804, 97, 175), + (214804, 95, 175), + (214804, 94, 225), + (214804, 93, 175), + (214804, 96, 175), + (214804, 181, 14), + (214804, 16, 3), + (214804, 131, 1), + (214804, 1, 2), + (214805, 91, 175), + (214805, 90, 175), + (214805, 92, 325), + (214805, 97, 225), + (214805, 95, 225), + (214805, 94, 325), + (214805, 93, 225), + (214805, 96, 225), + (214805, 181, 21), + (214805, 16, 6), + (214805, 131, 15), + (214805, 1, 200), + (214806, 91, 1200), + (214806, 90, 1200), + (214806, 92, 2085), + (214806, 97, 1585), + (214806, 95, 1585), + (214806, 94, 2085), + (214806, 93, 1585), + (214806, 96, 1585), + (214806, 21, 10), + (214806, 127, 1), + (214806, 1, 4), + (214807, 91, 1500), + (214807, 90, 1500), + (214807, 92, 2500), + (214807, 97, 1900), + (214807, 95, 1900), + (214807, 94, 2500), + (214807, 93, 1900), + (214807, 96, 1900), + (214807, 21, 20), + (214807, 127, 30), + (214807, 1, 400), + (214808, 91, 940), + (214808, 90, 940), + (214808, 92, 940), + (214808, 97, 735), + (214808, 95, 940), + (214808, 94, 940), + (214808, 93, 940), + (214808, 96, 735), + (214808, 100, 45), + (214808, 153, 45), + (214808, 17, 4), + (214808, 131, 1), + (214808, 181, 8), + (214809, 91, 1125), + (214809, 90, 1125), + (214809, 92, 1125), + (214809, 97, 885), + (214809, 95, 1125), + (214809, 94, 1125), + (214809, 93, 1125), + (214809, 96, 885), + (214809, 100, 60), + (214809, 153, 60), + (214809, 17, 16), + (214809, 131, 10), + (214809, 181, 16), + (214810, 91, 730), + (214810, 90, 730), + (214810, 92, 730), + (214810, 97, 375), + (214810, 95, 730), + (214810, 94, 730), + (214810, 93, 730), + (214810, 96, 375), + (214810, 156, 40), + (214810, 123, 30), + (214810, 143, 25), + (214810, 127, 1), + (214810, 1, 100), + (214811, 91, 875), + (214811, 90, 875), + (214811, 92, 875), + (214811, 97, 450), + (214811, 95, 875), + (214811, 94, 875), + (214811, 93, 875), + (214811, 96, 450), + (214811, 156, 50), + (214811, 123, 40), + (214811, 143, 50), + (214811, 127, 10), + (214811, 1, 250), + (214812, 91, 1500), + (214812, 90, 1500), + (214812, 92, 1500), + (214812, 97, 1000), + (214812, 95, 1500), + (214812, 94, 1500), + (214812, 93, 1500), + (214812, 96, 1000), + (214812, 1, 375), + (214812, 155, 50), + (214812, 18, 5), + (214812, 130, 1), + (214812, 181, 12), + (214813, 91, 1800), + (214813, 90, 1800), + (214813, 92, 1800), + (214813, 97, 1200), + (214813, 95, 1800), + (214813, 94, 1800), + (214813, 93, 1800), + (214813, 96, 1200), + (214813, 1, 750), + (214813, 155, 70), + (214813, 18, 15), + (214813, 130, 10), + (214813, 181, 24), + (214814, 91, 330), + (214814, 90, 330), + (214814, 92, 330), + (214814, 97, 305), + (214814, 95, 330), + (214814, 94, 330), + (214814, 93, 330), + (214814, 96, 305), + (214814, 102, 12), + (214814, 103, 12), + (214814, 154, 15), + (214814, 122, 1), + (214814, 1, 100), + (214815, 91, 400), + (214815, 90, 400), + (214815, 92, 400), + (214815, 97, 365), + (214815, 95, 400), + (214815, 94, 400), + (214815, 93, 400), + (214815, 96, 365), + (214815, 102, 16), + (214815, 103, 16), + (214815, 154, 30), + (214815, 122, 8), + (214815, 1, 250), + (214816, 91, 565), + (214816, 90, 565), + (214816, 92, 565), + (214816, 97, 205), + (214816, 95, 565), + (214816, 94, 565), + (214816, 93, 565), + (214816, 96, 205), + (214816, 145, 40), + (214816, 164, 20), + (214816, 20, 5), + (214816, 111, 10), + (214816, 1, 100), + (214817, 91, 675), + (214817, 90, 675), + (214817, 92, 675), + (214817, 97, 250), + (214817, 95, 675), + (214817, 94, 675), + (214817, 93, 675), + (214817, 96, 250), + (214817, 145, 50), + (214817, 164, 30), + (214817, 20, 15), + (214817, 111, 70), + (214817, 1, 250), + (214818, 91, 1085), + (214818, 90, 1085), + (214818, 92, 1085), + (214818, 97, 750), + (214818, 95, 1085), + (214818, 94, 1085), + (214818, 93, 1085), + (214818, 96, 750), + (214818, 121, 45), + (214818, 19, 5), + (214818, 128, 1), + (214818, 1, 100), + (214819, 91, 1300), + (214819, 90, 1300), + (214819, 92, 1300), + (214819, 97, 900), + (214819, 95, 1300), + (214819, 94, 1300), + (214819, 93, 1300), + (214819, 96, 900), + (214819, 121, 60), + (214819, 19, 10), + (214819, 128, 20), + (214819, 1, 200), + (214820, 91, 125), + (214820, 90, 125), + (214820, 92, 125), + (214820, 97, 125), + (214820, 95, 125), + (214820, 94, 125), + (214820, 93, 125), + (214820, 96, 125), + (214820, 144, 5), + (214820, 1, 4), + (214820, 16, 4), + (214820, 129, 1), + (214821, 91, 150), + (214821, 90, 150), + (214821, 92, 150), + (214821, 97, 150), + (214821, 95, 150), + (214821, 94, 150), + (214821, 93, 150), + (214821, 96, 150), + (214821, 144, 25), + (214821, 1, 400), + (214821, 16, 8), + (214821, 129, 8), + (214822, 91, 1750), + (214822, 90, 1750), + (214822, 92, 1750), + (214822, 97, 1000), + (214822, 95, 1750), + (214822, 94, 1750), + (214822, 93, 1750), + (214822, 96, 1000), + (214822, 221, 150), + (214822, 21, 5), + (214822, 142, 25), + (214823, 91, 2100), + (214823, 90, 2100), + (214823, 92, 2100), + (214823, 97, 1200), + (214823, 95, 2100), + (214823, 94, 2100), + (214823, 93, 2100), + (214823, 96, 1200), + (214823, 221, 250), + (214823, 21, 15), + (214823, 142, 50), + (214824, 91, 1105), + (214824, 90, 1105), + (214824, 92, 1105), + (214824, 97, 735), + (214824, 95, 1105), + (214824, 94, 735), + (214824, 93, 1105), + (214824, 96, 1105), + (214824, 113, 30), + (214824, 114, 36), + (214824, 17, 8), + (214824, 131, 1), + (214825, 91, 1325), + (214825, 90, 1325), + (214825, 92, 1325), + (214825, 97, 885), + (214825, 95, 1325), + (214825, 94, 885), + (214825, 93, 1325), + (214825, 96, 1325), + (214825, 113, 40), + (214825, 114, 48), + (214825, 17, 16), + (214825, 131, 10), + (214826, 91, 565), + (214826, 90, 565), + (214826, 92, 565), + (214826, 97, 375), + (214826, 95, 565), + (214826, 94, 375), + (214826, 93, 565), + (214826, 96, 565), + (214826, 156, 30), + (214826, 123, 24), + (214826, 133, 24), + (214826, 127, 1), + (214826, 1, 100), + (214827, 91, 675), + (214827, 90, 675), + (214827, 92, 675), + (214827, 97, 450), + (214827, 95, 675), + (214827, 94, 450), + (214827, 93, 675), + (214827, 96, 675), + (214827, 156, 40), + (214827, 123, 36), + (214827, 133, 48), + (214827, 127, 10), + (214827, 1, 250), + (214828, 91, 1500), + (214828, 90, 1500), + (214828, 92, 1500), + (214828, 97, 1000), + (214828, 95, 1500), + (214828, 94, 1000), + (214828, 93, 1500), + (214828, 96, 1500), + (214828, 1, 600), + (214828, 109, 30), + (214828, 18, 10), + (214828, 129, 1), + (214829, 91, 1800), + (214829, 90, 1800), + (214829, 92, 1800), + (214829, 97, 1200), + (214829, 95, 1800), + (214829, 94, 1200), + (214829, 93, 1800), + (214829, 96, 1800), + (214829, 1, 900), + (214829, 109, 40), + (214829, 18, 20), + (214829, 129, 10), + (214830, 91, 460), + (214830, 90, 460), + (214830, 92, 460), + (214830, 97, 305), + (214830, 95, 460), + (214830, 94, 305), + (214830, 93, 460), + (214830, 96, 460), + (214830, 119, 25), + (214830, 151, 15), + (214830, 112, 14), + (214830, 134, 1), + (214830, 1, 100), + (214831, 91, 550), + (214831, 90, 550), + (214831, 92, 550), + (214831, 97, 365), + (214831, 95, 550), + (214831, 94, 365), + (214831, 93, 550), + (214831, 96, 550), + (214831, 119, 30), + (214831, 151, 20), + (214831, 112, 21), + (214831, 134, 20), + (214831, 1, 250), + (214832, 91, 310), + (214832, 90, 310), + (214832, 92, 310), + (214832, 97, 205), + (214832, 95, 310), + (214832, 94, 205), + (214832, 93, 310), + (214832, 96, 310), + (214832, 167, 45), + (214832, 115, 32), + (214832, 20, 5), + (214832, 130, 1), + (214832, 1, 100), + (214833, 91, 375), + (214833, 90, 375), + (214833, 92, 375), + (214833, 97, 250), + (214833, 95, 375), + (214833, 94, 250), + (214833, 93, 375), + (214833, 96, 375), + (214833, 167, 60), + (214833, 115, 48), + (214833, 20, 10), + (214833, 130, 16), + (214833, 1, 250), + (214834, 91, 1125), + (214834, 90, 1125), + (214834, 92, 1125), + (214834, 97, 750), + (214834, 95, 1125), + (214834, 94, 750), + (214834, 93, 1125), + (214834, 96, 1125), + (214834, 162, 30), + (214834, 19, 5), + (214834, 128, 1), + (214834, 1, 100), + (214835, 91, 1350), + (214835, 90, 1350), + (214835, 92, 1350), + (214835, 97, 900), + (214835, 95, 1350), + (214835, 94, 900), + (214835, 93, 1350), + (214835, 96, 1350), + (214835, 162, 40), + (214835, 19, 10), + (214835, 128, 16), + (214835, 1, 250), + (214836, 91, 440), + (214836, 90, 440), + (214836, 92, 440), + (214836, 97, 295), + (214836, 95, 400), + (214836, 94, 295), + (214836, 93, 440), + (214836, 96, 440), + (214836, 116, 16), + (214836, 16, 5), + (214836, 122, 1), + (214836, 1, 3), + (214837, 91, 525), + (214837, 90, 525), + (214837, 92, 525), + (214837, 97, 350), + (214837, 95, 525), + (214837, 94, 350), + (214837, 93, 525), + (214837, 96, 525), + (214837, 116, 24), + (214837, 16, 10), + (214837, 122, 5), + (214837, 1, 300), + (214838, 91, 1500), + (214838, 90, 1500), + (214838, 92, 1500), + (214838, 97, 1000), + (214838, 95, 1500), + (214838, 94, 1000), + (214838, 93, 1500), + (214838, 96, 1500), + (214838, 221, 100), + (214838, 21, 5), + (214838, 148, 1), + (214838, 1, 2), + (214839, 91, 1800), + (214839, 90, 1800), + (214839, 92, 1800), + (214839, 97, 1200), + (214839, 95, 1800), + (214839, 94, 1200), + (214839, 93, 1800), + (214839, 96, 1800), + (214839, 221, 200), + (214839, 21, 10), + (214839, 148, 48), + (214839, 1, 200), + (214841, 91, 225), + (214841, 90, 375), + (214841, 92, 375), + (214841, 97, 375), + (214841, 95, 225), + (214841, 94, 375), + (214841, 93, 375), + (214841, 96, 375), + (214841, 156, 24), + (214841, 153, 24), + (214841, 155, 12), + (214841, 130, 1), + (214841, 1, 100), + (214842, 91, 300), + (214842, 90, 450), + (214842, 92, 450), + (214842, 97, 450), + (214842, 95, 300), + (214842, 94, 450), + (214842, 93, 450), + (214842, 96, 450), + (214842, 156, 32), + (214842, 153, 32), + (214842, 155, 24), + (214842, 130, 24), + (214842, 1, 250), + (214843, 91, 1000), + (214843, 90, 1250), + (214843, 92, 1250), + (214843, 97, 1250), + (214843, 95, 1000), + (214843, 94, 1250), + (214843, 93, 1250), + (214843, 96, 1250), + (214843, 221, 500), + (214843, 136, 20), + (214843, 18, 6), + (214843, 122, 1), + (214843, 181, 12), + (214844, 91, 1200), + (214844, 90, 1500), + (214844, 92, 1500), + (214844, 97, 1500), + (214844, 95, 1200), + (214844, 94, 1500), + (214844, 93, 1500), + (214844, 96, 1500), + (214844, 221, 750), + (214844, 136, 30), + (214844, 18, 12), + (214844, 122, 16), + (214844, 181, 24), + (214845, 91, 150), + (214845, 90, 250), + (214845, 92, 250), + (214845, 97, 250), + (214845, 95, 150), + (214845, 94, 250), + (214845, 93, 250), + (214845, 96, 250), + (214845, 149, 18), + (214845, 123, 20), + (214845, 154, 12), + (214845, 131, 1), + (214845, 1, 100), + (214846, 91, 200), + (214846, 90, 300), + (214846, 92, 300), + (214846, 97, 300), + (214846, 95, 200), + (214846, 94, 300), + (214846, 93, 300), + (214846, 96, 300), + (214846, 149, 24), + (214846, 123, 30), + (214846, 154, 16), + (214846, 131, 12), + (214846, 1, 250), + (214847, 91, 205), + (214847, 90, 455), + (214847, 92, 455), + (214847, 97, 455), + (214847, 95, 205), + (214847, 94, 455), + (214847, 93, 455), + (214847, 96, 455), + (214847, 112, 20), + (214847, 115, 15), + (214847, 133, 15), + (214847, 20, 10), + (214847, 129, 1), + (214847, 1, 100), + (214848, 91, 250), + (214848, 90, 575), + (214848, 92, 575), + (214848, 97, 575), + (214848, 95, 250), + (214848, 94, 575), + (214848, 93, 575), + (214848, 96, 575), + (214848, 112, 25), + (214848, 115, 20), + (214848, 133, 20), + (214848, 20, 20), + (214848, 129, 16), + (214848, 1, 250), + (214849, 91, 750), + (214849, 90, 1125), + (214849, 92, 1125), + (214849, 97, 1125), + (214849, 95, 750), + (214849, 94, 1125), + (214849, 93, 1125), + (214849, 96, 1125), + (214849, 19, 10), + (214849, 159, 25), + (214849, 127, 1), + (214849, 1, 100), + (214850, 91, 900), + (214850, 90, 1350), + (214850, 92, 1350), + (214850, 97, 1350), + (214850, 95, 900), + (214850, 94, 1350), + (214850, 93, 1350), + (214850, 96, 1350), + (214850, 19, 20), + (214850, 159, 50), + (214850, 127, 24), + (214850, 1, 200), + (214851, 91, 175), + (214851, 90, 175), + (214851, 92, 175), + (214851, 97, 175), + (214851, 95, 175), + (214851, 94, 175), + (214851, 93, 175), + (214851, 96, 175), + (214851, 181, 10), + (214851, 16, 3), + (214851, 128, 1), + (214851, 1, 4), + (214852, 91, 175), + (214852, 90, 225), + (214852, 92, 225), + (214852, 97, 225), + (214852, 95, 175), + (214852, 94, 225), + (214852, 93, 225), + (214852, 96, 225), + (214852, 181, 15), + (214852, 16, 6), + (214852, 128, 15), + (214852, 1, 400), + (214853, 91, 1000), + (214853, 90, 1585), + (214853, 92, 1585), + (214853, 97, 1585), + (214853, 95, 1000), + (214853, 94, 1585), + (214853, 93, 1585), + (214853, 96, 1585), + (214853, 21, 10), + (214853, 124, 10), + (214854, 91, 1200), + (214854, 90, 1900), + (214854, 92, 1900), + (214854, 97, 1900), + (214854, 95, 1200), + (214854, 94, 1900), + (214854, 93, 1900), + (214854, 96, 1900), + (214854, 21, 20), + (214854, 124, 40), + (214857, 91, 735), + (214857, 90, 750), + (214857, 92, 750), + (214857, 97, 750), + (214857, 95, 735), + (214857, 94, 750), + (214857, 93, 750), + (214857, 96, 750), + (214857, 1, 225), + (214857, 150, 15), + (214857, 17, 6), + (214857, 161, 1), + (214857, 181, 8), + (214858, 91, 885), + (214858, 90, 900), + (214858, 92, 900), + (214858, 97, 900), + (214858, 95, 885), + (214858, 94, 900), + (214858, 93, 900), + (214858, 96, 900), + (214858, 1, 300), + (214858, 150, 25), + (214858, 17, 12), + (214858, 161, 20), + (214858, 181, 16), + (214888, 91, 600), + (214888, 90, 600), + (214888, 92, 1020), + (214888, 97, 750), + (214888, 95, 750), + (214888, 94, 1020), + (214888, 93, 750), + (214888, 96, 750), + (214888, 1, 150), + (214888, 119, 24), + (214888, 17, 5), + (214888, 161, 1), + (214888, 181, 12), + (214889, 91, 750), + (214889, 90, 750), + (214889, 92, 1225), + (214889, 97, 900), + (214889, 95, 900), + (214889, 94, 1225), + (214889, 93, 900), + (214889, 96, 900), + (214889, 1, 200), + (214889, 119, 32), + (214889, 17, 10), + (214889, 161, 40), + (214889, 181, 24), + (215222, 181, 64), + (215222, 221, 10), + (215222, 130, 2), + (215223, 181, 80), + (215223, 221, 80), + (215223, 130, 4), + (215224, 181, 64), + (215224, 131, 2), + (215224, 130, 2), + (215225, 181, 80), + (215225, 131, 4), + (215225, 130, 4), + (215226, 181, 64), + (215226, 221, 9), + (215226, 129, 1), + (215227, 181, 72), + (215227, 221, 72), + (215227, 129, 4), + (215228, 181, 64), + (215228, 157, 3), + (215228, 131, 1), + (215229, 181, 72), + (215229, 157, 10), + (215229, 131, 4), + (215230, 181, 64), + (215230, 128, 2), + (215231, 181, 72), + (215231, 128, 8), + (215232, 181, 64), + (215232, 125, 3), + (215232, 131, 1), + (215233, 181, 72), + (215233, 125, 10), + (215233, 131, 4), + (215234, 112, 4), + (215234, 19, 4), + (215234, 21, 4), + (215235, 111, 3), + (215235, 102, 3), + (215235, 19, 4), + (215235, 21, 4), + (215236, 112, 7), + (215236, 19, 3), + (215236, 20, 3), + (215237, 115, 7), + (215237, 19, 3), + (215237, 17, 3), + (215238, 112, 7), + (215238, 19, 3), + (215238, 18, 3), + (215239, 112, 9), + (215239, 19, 4), + (215240, 221, 60), + (215241, 168, 12), + (215241, 92, 40), + (215241, 94, 40), + (215242, 318, -2), + (215243, 149, 12), + (215244, 160, 12), + (215245, 168, 4), + (215245, 149, 4), + (215245, 160, 4), + (215245, 221, 4), + (215246, 161, 4), + (215247, 125, 4), + (215248, 162, 4), + (215249, 159, 4), + (215250, 160, 4), + (215251, 126, 4), + (215252, 154, 20), + (215252, 160, 10), + (215253, 155, 15), + (215253, 168, 15), + (215254, 91, 150), + (215254, 93, 150), + (215255, 92, 150), + (215255, 94, 150), + (215256, 19, 10), + (215256, 21, 15), + (215256, 91, 150), + (215256, 90, 200), + (215256, 92, 150), + (215256, 97, 150), + (215256, 95, 150), + (215256, 93, 150), + (215256, 94, 150), + (215256, 96, 150), + (215256, 221, 150), + (215257, 19, 15), + (215257, 21, 10), + (215257, 91, 200), + (215257, 90, 150), + (215257, 92, 150), + (215257, 97, 150), + (215257, 95, 150), + (215257, 93, 150), + (215257, 94, 150), + (215257, 96, 150), + (215257, 221, 150), + (215265, 147, 20), + (215265, 146, 20), + (215265, 142, 20), + (215265, 144, 20), + (215265, 101, 20), + (215265, 100, 20), + (215374, 532, 25), + (215392, 532, 26), + (215393, 532, 16), + (215394, 532, 36), + (215395, 532, 12), + (215396, 532, 29), + (215397, 532, 19), + (215398, 532, 35), + (215399, 532, 27), + (215400, 532, 7), + (215401, 532, 8), + (215402, 532, 20), + (215403, 532, 1), + (215404, 532, 3), + (215405, 532, 34), + (215406, 532, 17), + (215407, 532, 18), + (215408, 532, 9), + (215409, 532, 10), + (215410, 532, 30), + (215411, 532, 21), + (215412, 532, 2), + (215413, 532, 11), + (215415, 91, 350), + (215415, 90, 400), + (215415, 92, 350), + (215415, 97, 400), + (215415, 95, 400), + (215415, 94, 425), + (215415, 93, 350), + (215415, 96, 350), + (215415, 221, 100), + (215415, 160, 5), + (215415, 149, 10), + (215415, 19, 5), + (215416, 91, 1400), + (215416, 90, 1600), + (215416, 92, 1400), + (215416, 97, 1600), + (215416, 95, 1600), + (215416, 94, 1700), + (215416, 93, 1400), + (215416, 96, 1400), + (215416, 221, 300), + (215416, 160, 20), + (215416, 149, 30), + (215416, 19, 5), + (215440, 91, 400), + (215440, 90, 425), + (215440, 92, 400), + (215440, 97, 400), + (215440, 95, 400), + (215440, 94, 350), + (215440, 93, 300), + (215440, 96, 300), + (215440, 1, 50), + (215440, 154, 10), + (215440, 119, 10), + (215441, 91, 1600), + (215441, 90, 1700), + (215441, 92, 1600), + (215441, 97, 1600), + (215441, 95, 1600), + (215441, 94, 1400), + (215441, 93, 1200), + (215441, 96, 1200), + (215441, 1, 150), + (215441, 154, 30), + (215441, 119, 30), + (215460, 91, 450), + (215460, 90, 400), + (215460, 92, 400), + (215460, 97, 400), + (215460, 95, 400), + (215460, 94, 300), + (215460, 93, 300), + (215460, 96, 300), + (215460, 1, 75), + (215460, 155, 10), + (215460, 118, 10), + (215461, 91, 1800), + (215461, 90, 1600), + (215461, 92, 1600), + (215461, 97, 1600), + (215461, 95, 1600), + (215461, 94, 1200), + (215461, 93, 1200), + (215461, 96, 1200), + (215461, 1, 225), + (215461, 155, 30), + (215461, 118, 30), + (215462, 91, 375), + (215462, 90, 375), + (215462, 92, 375), + (215462, 97, 375), + (215462, 95, 375), + (215462, 94, 375), + (215462, 93, 375), + (215462, 96, 375), + (215462, 221, 50), + (215462, 153, 5), + (215462, 149, 10), + (215462, 123, 10), + (215463, 91, 1500), + (215463, 90, 1500), + (215463, 92, 1500), + (215463, 97, 1500), + (215463, 95, 1500), + (215463, 94, 1500), + (215463, 93, 1500), + (215463, 96, 1500), + (215463, 221, 150), + (215463, 153, 20), + (215463, 149, 30), + (215463, 123, 30), + (215464, 91, 300), + (215464, 90, 300), + (215464, 92, 400), + (215464, 97, 400), + (215464, 95, 400), + (215464, 94, 400), + (215464, 93, 400), + (215464, 96, 400), + (215464, 125, 10), + (215464, 126, 10), + (215464, 160, 10), + (215464, 157, 10), + (215464, 159, 10), + (215464, 162, 10), + (215464, 163, 10), + (215464, 141, 10), + (215464, 131, 5), + (215465, 91, 1200), + (215465, 90, 1200), + (215465, 92, 1600), + (215465, 97, 1600), + (215465, 95, 1600), + (215465, 94, 1600), + (215465, 93, 1600), + (215465, 96, 1600), + (215465, 125, 25), + (215465, 126, 25), + (215465, 160, 25), + (215465, 157, 25), + (215465, 159, 25), + (215465, 162, 25), + (215465, 163, 25), + (215465, 141, 25), + (215465, 131, 10), + (215466, 91, 600), + (215466, 90, 600), + (215466, 92, 600), + (215466, 97, 600), + (215466, 95, 600), + (215466, 94, 600), + (215466, 93, 600), + (215466, 96, 600), + (215466, 123, 5), + (215466, 221, 50), + (215467, 91, 1100), + (215467, 90, 1100), + (215467, 92, 1100), + (215467, 97, 1100), + (215467, 95, 1100), + (215467, 94, 1100), + (215467, 93, 1100), + (215467, 96, 1100), + (215467, 123, 10), + (215467, 221, 200), + (215468, 91, 40), + (215468, 90, 40), + (215468, 92, 40), + (215468, 97, 40), + (215468, 95, 40), + (215468, 94, 40), + (215468, 93, 40), + (215468, 96, 40), + (215468, 221, 20), + (215468, 123, 5), + (215469, 91, 300), + (215469, 90, 300), + (215469, 92, 300), + (215469, 97, 300), + (215469, 95, 300), + (215469, 94, 300), + (215469, 93, 300), + (215469, 96, 300), + (215469, 221, 80), + (215469, 123, 10), + (215470, 91, 35), + (215470, 90, 35), + (215470, 92, 35), + (215470, 97, 35), + (215470, 95, 35), + (215470, 94, 35), + (215470, 93, 35), + (215470, 96, 35), + (215470, 221, 20), + (215470, 123, 5), + (215471, 91, 275), + (215471, 90, 275), + (215471, 92, 275), + (215471, 97, 275), + (215471, 95, 275), + (215471, 94, 275), + (215471, 93, 275), + (215471, 96, 275), + (215471, 221, 80), + (215471, 123, 10), + (215472, 91, 175), + (215472, 90, 175), + (215472, 92, 175), + (215472, 97, 175), + (215472, 95, 175), + (215472, 94, 175), + (215472, 93, 175), + (215472, 96, 175), + (215472, 221, 60), + (215472, 123, 5), + (215473, 91, 1400), + (215473, 90, 1400), + (215473, 92, 1400), + (215473, 97, 1400), + (215473, 95, 1400), + (215473, 94, 1400), + (215473, 93, 1400), + (215473, 96, 1400), + (215473, 221, 250), + (215473, 123, 10), + (215474, 91, 50), + (215474, 90, 50), + (215474, 92, 50), + (215474, 97, 50), + (215474, 95, 50), + (215474, 94, 50), + (215474, 93, 50), + (215474, 96, 50), + (215474, 221, 30), + (215474, 123, 5), + (215475, 91, 400), + (215475, 90, 400), + (215475, 92, 400), + (215475, 97, 400), + (215475, 95, 400), + (215475, 94, 400), + (215475, 93, 400), + (215475, 96, 400), + (215475, 221, 120), + (215475, 123, 10), + (215476, 91, 100), + (215476, 90, 100), + (215476, 92, 100), + (215476, 97, 100), + (215476, 95, 100), + (215476, 94, 100), + (215476, 93, 100), + (215476, 96, 100), + (215476, 221, 30), + (215476, 123, 5), + (215477, 91, 750), + (215477, 90, 750), + (215477, 92, 750), + (215477, 97, 750), + (215477, 95, 750), + (215477, 94, 750), + (215477, 93, 750), + (215477, 96, 750), + (215477, 221, 150), + (215477, 123, 10), + (215531, 91, 550), + (215531, 90, 625), + (215531, 92, 550), + (215531, 97, 625), + (215531, 95, 625), + (215531, 94, 650), + (215531, 93, 550), + (215531, 96, 550), + (215531, 130, 1), + (215531, 149, 5), + (215531, 221, 25), + (215533, 91, 1000), + (215533, 90, 1200), + (215533, 92, 1000), + (215533, 97, 1200), + (215533, 95, 1200), + (215533, 94, 1250), + (215533, 93, 1000), + (215533, 96, 1000), + (215533, 130, 3), + (215533, 149, 20), + (215533, 221, 100), + (215535, 91, 30), + (215535, 90, 45), + (215535, 92, 30), + (215535, 97, 45), + (215535, 95, 45), + (215535, 94, 50), + (215535, 93, 30), + (215535, 96, 30), + (215535, 221, 10), + (215535, 149, 2), + (215535, 130, 1), + (215536, 91, 250), + (215536, 90, 325), + (215536, 92, 250), + (215536, 97, 325), + (215536, 95, 325), + (215536, 94, 350), + (215536, 93, 250), + (215536, 96, 250), + (215536, 221, 40), + (215536, 149, 8), + (215536, 130, 3), + (215537, 91, 30), + (215537, 90, 40), + (215537, 92, 30), + (215537, 97, 40), + (215537, 95, 40), + (215537, 94, 45), + (215537, 93, 30), + (215537, 96, 30), + (215537, 221, 10), + (215537, 149, 2), + (215537, 130, 1), + (215538, 91, 250), + (215538, 90, 300), + (215538, 92, 250), + (215538, 97, 300), + (215538, 95, 300), + (215538, 94, 325), + (215538, 93, 250), + (215538, 96, 250), + (215538, 221, 40), + (215538, 149, 8), + (215538, 130, 3), + (215539, 91, 150), + (215539, 90, 200), + (215539, 92, 150), + (215539, 97, 200), + (215539, 95, 200), + (215539, 94, 225), + (215539, 93, 150), + (215539, 96, 150), + (215539, 221, 30), + (215539, 149, 4), + (215539, 130, 2), + (215540, 91, 1300), + (215540, 90, 1500), + (215540, 92, 1300), + (215540, 97, 1500), + (215540, 95, 1500), + (215540, 94, 1550), + (215540, 93, 1300), + (215540, 96, 1300), + (215540, 221, 125), + (215540, 149, 24), + (215540, 130, 6), + (215541, 91, 45), + (215541, 90, 55), + (215541, 92, 45), + (215541, 97, 55), + (215541, 95, 55), + (215541, 94, 65), + (215541, 93, 45), + (215541, 96, 45), + (215541, 221, 15), + (215541, 149, 3), + (215541, 130, 1), + (215542, 91, 375), + (215542, 90, 425), + (215542, 92, 375), + (215542, 97, 425), + (215542, 95, 425), + (215542, 94, 450), + (215542, 93, 375), + (215542, 96, 375), + (215542, 221, 60), + (215542, 149, 12), + (215542, 130, 3), + (215543, 91, 75), + (215543, 90, 125), + (215543, 92, 75), + (215543, 97, 125), + (215543, 95, 125), + (215543, 94, 150), + (215543, 93, 75), + (215543, 96, 75), + (215543, 221, 15), + (215543, 149, 3), + (215543, 130, 1), + (215544, 91, 650), + (215544, 90, 825), + (215544, 92, 650), + (215544, 97, 825), + (215544, 95, 825), + (215544, 94, 900), + (215544, 93, 650), + (215544, 96, 650), + (215544, 221, 75), + (215544, 149, 15), + (215544, 130, 3), + (215546, 91, 475), + (215546, 90, 475), + (215546, 92, 600), + (215546, 97, 600), + (215546, 95, 600), + (215546, 94, 600), + (215546, 93, 600), + (215546, 96, 600), + (215546, 168, 10), + (215546, 127, 3), + (215546, 161, 15), + (215547, 91, 900), + (215547, 90, 900), + (215547, 92, 1100), + (215547, 97, 1100), + (215547, 95, 1100), + (215547, 94, 1100), + (215547, 93, 1100), + (215547, 96, 1100), + (215547, 168, 20), + (215547, 127, 6), + (215547, 161, 25), + (215548, 91, 25), + (215548, 90, 25), + (215548, 92, 35), + (215548, 97, 35), + (215548, 95, 35), + (215548, 94, 35), + (215548, 93, 35), + (215548, 96, 35), + (215548, 157, 10), + (215548, 168, 6), + (215548, 129, 2), + (215549, 91, 175), + (215549, 90, 175), + (215549, 92, 275), + (215549, 97, 275), + (215549, 95, 275), + (215549, 94, 275), + (215549, 93, 275), + (215549, 96, 275), + (215549, 157, 25), + (215549, 168, 12), + (215549, 129, 6), + (215550, 91, 25), + (215550, 90, 25), + (215550, 92, 35), + (215550, 97, 35), + (215550, 95, 35), + (215550, 94, 35), + (215550, 93, 35), + (215550, 96, 35), + (215550, 163, 10), + (215550, 168, 6), + (215550, 131, 1), + (215551, 91, 175), + (215551, 90, 175), + (215551, 92, 275), + (215551, 97, 275), + (215551, 95, 275), + (215551, 94, 275), + (215551, 93, 275), + (215551, 96, 275), + (215551, 163, 25), + (215551, 168, 12), + (215551, 131, 3), + (215552, 91, 125), + (215552, 90, 125), + (215552, 92, 175), + (215552, 97, 175), + (215552, 95, 175), + (215552, 94, 175), + (215552, 93, 175), + (215552, 96, 175), + (215552, 160, 10), + (215552, 168, 12), + (215552, 130, 2), + (215553, 91, 1200), + (215553, 90, 1200), + (215553, 92, 1400), + (215553, 97, 1400), + (215553, 95, 1400), + (215553, 94, 1400), + (215553, 93, 1400), + (215553, 96, 1400), + (215553, 160, 25), + (215553, 168, 24), + (215553, 130, 6), + (215554, 91, 35), + (215554, 90, 35), + (215554, 92, 50), + (215554, 97, 50), + (215554, 95, 50), + (215554, 94, 50), + (215554, 93, 50), + (215554, 96, 50), + (215554, 125, 10), + (215554, 168, 6), + (215554, 122, 2), + (215555, 91, 300), + (215555, 90, 300), + (215555, 92, 400), + (215555, 97, 400), + (215555, 95, 400), + (215555, 94, 400), + (215555, 93, 400), + (215555, 96, 400), + (215555, 125, 25), + (215555, 168, 12), + (215555, 122, 6), + (215556, 91, 75), + (215556, 90, 125), + (215556, 92, 75), + (215556, 97, 125), + (215556, 95, 125), + (215556, 94, 150), + (215556, 93, 75), + (215556, 96, 75), + (215556, 126, 10), + (215556, 168, 10), + (215556, 141, 10), + (215557, 91, 650), + (215557, 90, 825), + (215557, 92, 650), + (215557, 97, 825), + (215557, 95, 825), + (215557, 94, 900), + (215557, 93, 650), + (215557, 96, 650), + (215557, 126, 25), + (215557, 168, 20), + (215557, 141, 25), + (215600, 91, 125), + (215600, 90, 150), + (215600, 92, 125), + (215600, 97, 125), + (215600, 95, 125), + (215600, 94, 75), + (215600, 93, 65), + (215600, 96, 65), + (215600, 119, 5), + (215600, 154, 5), + (215600, 1, 20), + (215601, 91, 850), + (215601, 90, 950), + (215601, 92, 850), + (215601, 97, 850), + (215601, 95, 850), + (215601, 94, 650), + (215601, 93, 600), + (215601, 96, 600), + (215601, 119, 10), + (215601, 154, 10), + (215601, 1, 75), + (215602, 91, 55), + (215602, 90, 60), + (215602, 92, 55), + (215602, 97, 55), + (215602, 95, 55), + (215602, 94, 40), + (215602, 93, 35), + (215602, 96, 35), + (215602, 119, 5), + (215602, 154, 5), + (215602, 1, 15), + (215603, 91, 450), + (215603, 90, 500), + (215603, 92, 450), + (215603, 97, 450), + (215603, 95, 450), + (215603, 94, 350), + (215603, 93, 300), + (215603, 96, 300), + (215603, 119, 10), + (215603, 154, 10), + (215603, 1, 50), + (215604, 91, 200), + (215604, 90, 250), + (215604, 92, 200), + (215604, 97, 200), + (215604, 95, 200), + (215604, 94, 150), + (215604, 93, 125), + (215604, 96, 125), + (215604, 119, 10), + (215604, 154, 10), + (215604, 1, 25), + (215605, 91, 1500), + (215605, 90, 1650), + (215605, 92, 1500), + (215605, 97, 1500), + (215605, 95, 1500), + (215605, 94, 1250), + (215605, 93, 1100), + (215605, 96, 1100), + (215605, 119, 20), + (215605, 154, 20), + (215605, 1, 100), + (215606, 91, 40), + (215606, 90, 45), + (215606, 92, 40), + (215606, 97, 40), + (215606, 95, 40), + (215606, 94, 35), + (215606, 93, 30), + (215606, 96, 30), + (215606, 119, 5), + (215606, 154, 5), + (215606, 1, 15), + (215607, 91, 300), + (215607, 90, 325), + (215607, 92, 300), + (215607, 97, 300), + (215607, 95, 300), + (215607, 94, 250), + (215607, 93, 225), + (215607, 96, 225), + (215607, 119, 10), + (215607, 154, 10), + (215607, 1, 50), + (215608, 91, 45), + (215608, 90, 50), + (215608, 92, 45), + (215608, 97, 45), + (215608, 95, 45), + (215608, 94, 35), + (215608, 93, 25), + (215608, 96, 25), + (215608, 119, 5), + (215608, 154, 5), + (215608, 1, 15), + (215609, 91, 325), + (215609, 90, 350), + (215609, 92, 325), + (215609, 97, 325), + (215609, 95, 325), + (215609, 94, 250), + (215609, 93, 200), + (215609, 96, 200), + (215609, 119, 10), + (215609, 154, 10), + (215609, 1, 50), + (215610, 91, 650), + (215610, 90, 675), + (215610, 92, 650), + (215610, 97, 650), + (215610, 95, 650), + (215610, 94, 550), + (215610, 93, 500), + (215610, 96, 500), + (215610, 119, 10), + (215610, 1, 30), + (215610, 154, 10), + (215611, 91, 1200), + (215611, 90, 1250), + (215611, 92, 1200), + (215611, 97, 1200), + (215611, 95, 1200), + (215611, 94, 1000), + (215611, 93, 900), + (215611, 96, 900), + (215611, 119, 15), + (215611, 1, 75), + (215611, 154, 15), + (215613, 91, 700), + (215613, 90, 650), + (215613, 92, 650), + (215613, 97, 650), + (215613, 95, 650), + (215613, 94, 500), + (215613, 93, 500), + (215613, 96, 500), + (215613, 118, 10), + (215613, 1, 30), + (215613, 155, 10), + (215614, 91, 1300), + (215614, 90, 1200), + (215614, 92, 1200), + (215614, 97, 1200), + (215614, 95, 1200), + (215614, 94, 900), + (215614, 93, 900), + (215614, 96, 900), + (215614, 118, 15), + (215614, 1, 75), + (215614, 155, 15), + (215615, 91, 55), + (215615, 90, 45), + (215615, 92, 45), + (215615, 97, 45), + (215615, 95, 45), + (215615, 94, 25), + (215615, 93, 25), + (215615, 96, 25), + (215615, 118, 5), + (215615, 155, 5), + (215615, 1, 15), + (215616, 91, 375), + (215616, 90, 325), + (215616, 92, 325), + (215616, 97, 325), + (215616, 95, 325), + (215616, 94, 200), + (215616, 93, 200), + (215616, 96, 200), + (215616, 118, 10), + (215616, 155, 10), + (215616, 1, 50), + (215617, 91, 55), + (215617, 90, 40), + (215617, 92, 40), + (215617, 97, 40), + (215617, 95, 40), + (215617, 94, 30), + (215617, 93, 30), + (215617, 96, 30), + (215617, 118, 5), + (215617, 155, 5), + (215617, 1, 15), + (215618, 91, 400), + (215618, 90, 325), + (215618, 92, 300), + (215618, 97, 300), + (215618, 95, 300), + (215618, 94, 225), + (215618, 93, 225), + (215618, 96, 225), + (215618, 118, 10), + (215618, 155, 10), + (215618, 1, 50), + (215619, 91, 275), + (215619, 90, 200), + (215619, 92, 200), + (215619, 97, 200), + (215619, 95, 200), + (215619, 94, 125), + (215619, 93, 125), + (215619, 96, 125), + (215619, 118, 10), + (215619, 155, 10), + (215619, 1, 25), + (215620, 91, 1700), + (215620, 90, 1500), + (215620, 92, 1500), + (215620, 97, 1500), + (215620, 95, 1500), + (215620, 94, 1200), + (215620, 93, 1100), + (215620, 96, 1100), + (215620, 118, 20), + (215620, 155, 20), + (215620, 1, 100), + (215621, 91, 65), + (215621, 90, 55), + (215621, 92, 55), + (215621, 97, 55), + (215621, 95, 55), + (215621, 94, 35), + (215621, 93, 35), + (215621, 96, 35), + (215621, 118, 5), + (215621, 155, 5), + (215621, 1, 15), + (215622, 91, 550), + (215622, 90, 450), + (215622, 92, 450), + (215622, 97, 450), + (215622, 95, 450), + (215622, 94, 300), + (215622, 93, 300), + (215622, 96, 300), + (215622, 118, 10), + (215622, 155, 10), + (215622, 1, 50), + (215623, 91, 175), + (215623, 90, 125), + (215623, 92, 125), + (215623, 97, 125), + (215623, 95, 125), + (215623, 94, 65), + (215623, 93, 65), + (215623, 96, 65), + (215623, 118, 5), + (215623, 155, 5), + (215623, 1, 20), + (215624, 91, 1000), + (215624, 90, 850), + (215624, 92, 850), + (215624, 97, 850), + (215624, 95, 850), + (215624, 94, 600), + (215624, 93, 600), + (215624, 96, 600), + (215624, 118, 10), + (215624, 155, 10), + (215624, 1, 75), + (216002, 156, -1500), + (216266, 90, 300), + (216266, 91, 300), + (216266, 92, 900), + (216266, 95, 600), + (216266, 97, 600), + (216266, 93, 600), + (216266, 94, 900), + (216266, 96, 600), + (216266, 221, 100), + (216266, 149, 20), + (216266, 181, 20), + (216266, 168, 20), + (216266, 21, 10), + (216266, 282, 10), + (216266, 280, 10), + (216267, 118, -100), + (216267, 119, -100), + (216267, 120, -100), + (216267, 149, -50), + (216267, 379, 1), + (216267, 142, 1), + (216267, 144, 1), + (216267, 100, 1), + (216267, 155, 1), + (216267, 154, 1), + (216267, 153, 1), + (216268, 118, -50), + (216268, 119, -50), + (216268, 120, -50), + (216268, 149, -25), + (216268, 379, 5), + (216268, 142, 5), + (216268, 144, 5), + (216268, 100, 5), + (216268, 155, 5), + (216268, 154, 5), + (216268, 153, 5), + (216270, 91, 100), + (216270, 90, 100), + (216270, 279, 10), + (216270, 278, 10), + (216270, 104, 10), + (216270, 133, 10), + (216271, 221, 100), + (216271, 168, 10), + (216271, 130, 1), + (216272, 131, 3), + (216272, 165, 6), + (216272, 158, 9), + (216276, 91, 900), + (216276, 90, 900), + (216276, 92, 850), + (216276, 95, 850), + (216276, 97, 850), + (216276, 93, 300), + (216276, 94, 300), + (216276, 96, 300), + (216276, 147, 10), + (216276, 103, 10), + (216277, 91, 1000), + (216277, 90, 1000), + (216277, 92, 1000), + (216277, 95, 1000), + (216277, 97, 1000), + (216277, 93, 800), + (216277, 94, 800), + (216277, 96, 800), + (216277, 155, 25), + (216277, 154, 25), + (216277, 153, 25), + (216277, 156, 25), + (216277, 119, 25), + (216277, 118, 25), + (216277, 120, 25), + (216278, 91, 250), + (216278, 90, 250), + (216278, 92, 250), + (216278, 95, 250), + (216278, 97, 250), + (216278, 93, 200), + (216278, 94, 200), + (216278, 96, 200), + (216278, 155, 15), + (216278, 154, 15), + (216278, 153, 15), + (216278, 156, 15), + (216278, 119, 15), + (216278, 118, 15), + (216278, 120, 15), + (216279, 91, 250), + (216279, 90, 250), + (216279, 92, 250), + (216279, 95, 250), + (216279, 97, 250), + (216279, 93, 200), + (216279, 94, 200), + (216279, 96, 200), + (216279, 155, 10), + (216279, 154, 10), + (216279, 153, 10), + (216279, 156, 10), + (216279, 119, 10), + (216279, 118, 10), + (216279, 120, 10), + (216280, 91, 625), + (216280, 90, 625), + (216280, 92, 625), + (216280, 95, 625), + (216280, 97, 625), + (216280, 93, 500), + (216280, 94, 500), + (216280, 96, 500), + (216280, 155, 20), + (216280, 154, 20), + (216280, 153, 20), + (216280, 156, 20), + (216280, 119, 20), + (216280, 118, 20), + (216280, 120, 20), + (216281, 91, 375), + (216281, 90, 375), + (216281, 92, 375), + (216281, 95, 375), + (216281, 97, 375), + (216281, 93, 300), + (216281, 94, 300), + (216281, 96, 300), + (216281, 155, 15), + (216281, 154, 15), + (216281, 153, 15), + (216281, 156, 15), + (216281, 119, 15), + (216281, 118, 15), + (216281, 120, 15), + (216282, 91, 750), + (216282, 90, 900), + (216282, 92, 900), + (216282, 95, 900), + (216282, 97, 900), + (216282, 93, 1200), + (216282, 94, 1200), + (216282, 96, 1200), + (216282, 154, 25), + (216282, 119, 25), + (216282, 278, 10), + (216282, 280, 10), + (216282, 136, 10), + (216282, 164, 10), + (216282, 113, 5), + (216282, 151, 5), + (216283, 96, 150), + (216283, 93, 150), + (216283, 1, -150), + (216283, 221, 300), + (216283, 159, 10), + (216283, 163, 10), + (216284, 1, 1900), + (216284, 156, 210), + (216284, 160, 210), + (216284, 161, 210), + (216284, 164, 140), + (216284, 221, 950), + (216284, 276, 40), + (216284, 277, 65), + (216284, 279, 25), + (216284, 280, 25), + (216284, 281, 25), + (216284, 282, 25), + (216284, 311, 25), + (216284, 316, 25), + (216284, 317, 25), + (216284, 319, 7), + (216285, 1, 1900), + (216285, 156, 210), + (216285, 160, 210), + (216285, 161, 210), + (216285, 164, 140), + (216285, 221, 950), + (216285, 276, 40), + (216285, 277, 65), + (216285, 279, 25), + (216285, 280, 25), + (216285, 281, 25), + (216285, 282, 25), + (216285, 311, 25), + (216285, 316, 25), + (216285, 317, 25), + (216285, 319, 7), + (216302, 1, 950), + (216302, 156, 210), + (216302, 160, 210), + (216302, 161, 210), + (216302, 164, 140), + (216302, 221, 1900), + (216302, 276, 50), + (216302, 277, 55), + (216302, 280, 25), + (216302, 281, 25), + (216302, 282, 25), + (216302, 311, 25), + (216302, 316, 25), + (216302, 317, 25), + (216302, 319, 7), + (216303, 1, 950), + (216303, 156, 210), + (216303, 160, 210), + (216303, 161, 210), + (216303, 164, 140), + (216303, 221, 1900), + (216303, 276, 50), + (216303, 277, 55), + (216303, 280, 25), + (216303, 281, 25), + (216303, 282, 25), + (216303, 311, 25), + (216303, 316, 25), + (216303, 317, 25), + (216303, 319, 7), + (216323, 1, 1400), + (216323, 156, 210), + (216323, 160, 210), + (216323, 161, 210), + (216323, 164, 140), + (216323, 221, 1600), + (216323, 276, 45), + (216323, 277, 60), + (216323, 279, 20), + (216323, 278, 20), + (216323, 280, 20), + (216323, 281, 20), + (216323, 282, 20), + (216323, 311, 20), + (216323, 316, 20), + (216323, 317, 20), + (216323, 319, 8), + (216325, 1, 1400), + (216325, 156, 210), + (216325, 160, 210), + (216325, 161, 210), + (216325, 164, 140), + (216325, 221, 1600), + (216325, 276, 45), + (216325, 277, 60), + (216325, 279, 20), + (216325, 278, 20), + (216325, 280, 20), + (216325, 281, 20), + (216325, 282, 20), + (216325, 311, 20), + (216325, 316, 20), + (216325, 317, 20), + (216325, 319, 8), + (216340, 91, 800), + (216340, 90, 950), + (216340, 92, 950), + (216340, 95, 800), + (216340, 97, 800), + (216340, 93, 800), + (216340, 94, 950), + (216340, 96, 800), + (216340, 149, 20), + (216340, 119, 40), + (216340, 156, 40), + (216340, 221, 40), + (216340, 1, 40), + (216340, 162, 20), + (216340, 168, 10), + (216340, 155, 10), + (216340, 154, 40), + (216340, 153, 20), + (216363, 1, 1450), + (216363, 156, 260), + (216363, 160, 210), + (216363, 161, 210), + (216363, 164, 140), + (216363, 221, 1450), + (216363, 276, 45), + (216363, 277, 60), + (216363, 279, 20), + (216363, 278, 20), + (216363, 280, 25), + (216363, 281, 25), + (216363, 282, 25), + (216363, 311, 25), + (216363, 316, 25), + (216363, 317, 25), + (216363, 319, 7), + (216364, 1, 1450), + (216364, 156, 260), + (216364, 160, 210), + (216364, 161, 210), + (216364, 164, 140), + (216364, 221, 1450), + (216364, 276, 45), + (216364, 277, 60), + (216364, 279, 20), + (216364, 278, 20), + (216364, 280, 25), + (216364, 281, 25), + (216364, 282, 25), + (216364, 311, 25), + (216364, 316, 25), + (216364, 317, 25), + (216364, 319, 7), + (216366, 1, 1600), + (216366, 156, 210), + (216366, 160, 210), + (216366, 161, 210), + (216366, 164, 140), + (216366, 221, 1300), + (216366, 276, 55), + (216366, 277, 50), + (216366, 278, 30), + (216366, 280, 30), + (216366, 281, 25), + (216366, 282, 25), + (216366, 311, 25), + (216366, 316, 25), + (216366, 317, 25), + (216366, 319, 7), + (216367, 1, 1600), + (216367, 156, 210), + (216367, 160, 210), + (216367, 161, 210), + (216367, 164, 140), + (216367, 221, 1300), + (216367, 276, 55), + (216367, 277, 50), + (216367, 278, 30), + (216367, 280, 30), + (216367, 281, 25), + (216367, 282, 25), + (216367, 311, 25), + (216367, 316, 25), + (216367, 317, 25), + (216367, 319, 7), + (216368, 1, 1450), + (216368, 156, 210), + (216368, 160, 235), + (216368, 161, 235), + (216368, 164, 140), + (216368, 221, 1450), + (216368, 276, 35), + (216368, 277, 70), + (216368, 279, 20), + (216368, 278, 20), + (216368, 280, 20), + (216368, 281, 20), + (216368, 282, 20), + (216368, 311, 20), + (216368, 316, 20), + (216368, 317, 20), + (216368, 319, 7), + (216369, 1, 1450), + (216369, 156, 210), + (216369, 160, 235), + (216369, 161, 235), + (216369, 164, 140), + (216369, 221, 1450), + (216369, 276, 35), + (216369, 277, 70), + (216369, 279, 20), + (216369, 278, 20), + (216369, 280, 20), + (216369, 281, 20), + (216369, 282, 20), + (216369, 311, 20), + (216369, 316, 20), + (216369, 317, 20), + (216369, 319, 7), + (216370, 1, 1600), + (216370, 156, 210), + (216370, 160, 210), + (216370, 161, 210), + (216370, 164, 140), + (216370, 221, 1200), + (216370, 276, 70), + (216370, 277, 40), + (216370, 279, 30), + (216370, 278, 20), + (216370, 280, 20), + (216370, 281, 20), + (216370, 282, 20), + (216370, 311, 20), + (216370, 316, 20), + (216370, 317, 20), + (216370, 319, 7), + (216371, 1, 1600), + (216371, 156, 210), + (216371, 160, 210), + (216371, 161, 210), + (216371, 164, 140), + (216371, 221, 1200), + (216371, 276, 70), + (216371, 277, 40), + (216371, 279, 30), + (216371, 278, 20), + (216371, 280, 20), + (216371, 281, 20), + (216371, 282, 20), + (216371, 311, 20), + (216371, 316, 20), + (216371, 317, 20), + (216371, 319, 7), + (216372, 91, 300), + (216372, 90, 300), + (216372, 92, 200), + (216372, 95, 200), + (216372, 97, 200), + (216372, 93, 300), + (216372, 94, 200), + (216372, 96, 300), + (216372, 102, 10), + (216372, 103, 10), + (216372, 106, 10), + (216372, 107, 10), + (216372, 105, 10), + (216372, 145, 10), + (216372, 146, 10), + (216372, 101, 10), + (216372, 147, 10), + (216372, 108, 10), + (216372, 110, 10), + (216372, 109, 10), + (216372, 111, 10), + (216372, 112, 10), + (216372, 116, 10), + (216372, 114, 10), + (216372, 115, 10), + (216372, 113, 10), + (216372, 150, 10), + (216372, 148, 10), + (216372, 167, 10), + (216372, 121, 10), + (216372, 134, 10), + (216373, 91, 200), + (216373, 90, 200), + (216373, 92, 100), + (216373, 95, 100), + (216373, 97, 100), + (216373, 93, 200), + (216373, 94, 100), + (216373, 96, 200), + (216373, 102, 2), + (216373, 103, 2), + (216373, 106, 2), + (216373, 107, 2), + (216373, 105, 2), + (216373, 145, 2), + (216373, 146, 2), + (216373, 101, 2), + (216373, 147, 2), + (216373, 108, 2), + (216373, 110, 2), + (216373, 109, 2), + (216373, 111, 2), + (216373, 112, 2), + (216373, 116, 2), + (216373, 114, 2), + (216373, 115, 2), + (216373, 113, 2), + (216373, 150, 2), + (216373, 148, 2), + (216373, 167, 2), + (216373, 121, 2), + (216373, 134, 2), + (216380, 165, 16), + (216380, 135, 16), + (216380, 181, 16), + (216380, 160, 16), + (216380, 156, 16), + (216430, 91, 400), + (216430, 90, 400), + (216430, 92, 800), + (216430, 95, 800), + (216430, 97, 800), + (216430, 93, 800), + (216430, 94, 800), + (216430, 96, 800), + (216430, 19, 20), + (216430, 21, 20), + (216430, 20, 20), + (216430, 276, 20), + (216430, 277, 20), + (216448, 90, 450), + (216448, 91, 450), + (216448, 92, 450), + (216448, 95, 450), + (216448, 97, 450), + (216448, 93, 450), + (216448, 94, 450), + (216448, 96, 450), + (216448, 221, 550), + (216449, 90, 300), + (216449, 91, 300), + (216449, 92, 300), + (216449, 95, 300), + (216449, 97, 300), + (216449, 93, 300), + (216449, 94, 300), + (216449, 96, 300), + (216449, 221, 700), + (216450, 90, 600), + (216450, 91, 600), + (216450, 92, 600), + (216450, 95, 600), + (216450, 97, 600), + (216450, 93, 600), + (216450, 94, 600), + (216450, 96, 600), + (216450, 221, 400), + (216659, 91, 2085), + (216659, 90, 2085), + (216659, 92, 2085), + (216659, 97, 1000), + (216659, 95, 2085), + (216659, 94, 2085), + (216659, 93, 1000), + (216659, 96, 2085), + (216659, 221, 75), + (216659, 21, 5), + (216659, 142, 1), + (216659, 1, 1), + (216660, 91, 2500), + (216660, 90, 2500), + (216660, 92, 2500), + (216660, 97, 1200), + (216660, 95, 2500), + (216660, 94, 2500), + (216660, 93, 1200), + (216660, 96, 2500), + (216660, 221, 225), + (216660, 21, 10), + (216660, 142, 30), + (216660, 1, 150), + (216661, 91, 225), + (216661, 90, 225), + (216661, 92, 225), + (216661, 97, 225), + (216661, 95, 225), + (216661, 94, 225), + (216661, 93, 225), + (216661, 96, 225), + (216661, 104, 16), + (216661, 16, 5), + (216661, 122, 1), + (216661, 1, 3), + (216662, 91, 325), + (216662, 90, 325), + (216662, 92, 325), + (216662, 97, 225), + (216662, 95, 325), + (216662, 94, 325), + (216662, 93, 225), + (216662, 96, 325), + (216662, 104, 24), + (216662, 16, 10), + (216662, 122, 5), + (216662, 1, 325), + (216663, 91, 1125), + (216663, 90, 1125), + (216663, 92, 1125), + (216663, 97, 750), + (216663, 95, 1125), + (216663, 94, 1125), + (216663, 93, 750), + (216663, 96, 1125), + (216663, 162, 30), + (216663, 19, 1), + (216663, 128, 1), + (216663, 1, 100), + (216664, 91, 1350), + (216664, 90, 1350), + (216664, 92, 1350), + (216664, 97, 900), + (216664, 95, 1350), + (216664, 94, 1350), + (216664, 93, 900), + (216664, 96, 1350), + (216664, 162, 40), + (216664, 19, 10), + (216664, 128, 15), + (216664, 1, 200), + (216665, 91, 310), + (216665, 90, 310), + (216665, 92, 310), + (216665, 97, 205), + (216665, 95, 310), + (216665, 94, 310), + (216665, 93, 205), + (216665, 96, 310), + (216665, 147, 45), + (216665, 146, 32), + (216665, 20, 5), + (216665, 129, 1), + (216665, 1, 100), + (216666, 91, 375), + (216666, 90, 375), + (216666, 92, 375), + (216666, 97, 250), + (216666, 95, 375), + (216666, 94, 375), + (216666, 93, 250), + (216666, 96, 375), + (216666, 147, 60), + (216666, 146, 48), + (216666, 20, 10), + (216666, 129, 10), + (216666, 1, 250), + (216667, 91, 410), + (216667, 90, 410), + (216667, 92, 410), + (216667, 97, 305), + (216667, 95, 410), + (216667, 94, 410), + (216667, 93, 305), + (216667, 96, 410), + (216667, 118, 25), + (216667, 103, 16), + (216667, 154, 1), + (216667, 1, 100), + (216668, 91, 500), + (216668, 90, 500), + (216668, 92, 500), + (216668, 97, 365), + (216668, 95, 500), + (216668, 94, 500), + (216668, 93, 365), + (216668, 96, 500), + (216668, 118, 30), + (216668, 103, 25), + (216668, 154, 15), + (216668, 1, 250), + (216669, 91, 1500), + (216669, 90, 1500), + (216669, 92, 1500), + (216669, 97, 1000), + (216669, 95, 1500), + (216669, 94, 1500), + (216669, 93, 1000), + (216669, 96, 1500), + (216669, 1, 500), + (216669, 105, 45), + (216669, 18, 10), + (216669, 130, 1), + (216670, 91, 1800), + (216670, 90, 1800), + (216670, 92, 1800), + (216670, 97, 1200), + (216670, 95, 1800), + (216670, 94, 1800), + (216670, 93, 1200), + (216670, 96, 1800), + (216670, 1, 700), + (216670, 105, 60), + (216670, 18, 20), + (216670, 130, 15), + (216671, 91, 565), + (216671, 90, 565), + (216671, 92, 565), + (216671, 97, 375), + (216671, 95, 565), + (216671, 94, 565), + (216671, 93, 375), + (216671, 96, 565), + (216671, 156, 30), + (216671, 123, 24), + (216671, 143, 15), + (216671, 127, 1), + (216671, 1, 100), + (216672, 91, 675), + (216672, 90, 675), + (216672, 92, 675), + (216672, 97, 450), + (216672, 95, 675), + (216672, 94, 675), + (216672, 93, 450), + (216672, 96, 675), + (216672, 156, 40), + (216672, 123, 36), + (216672, 143, 30), + (216672, 127, 15), + (216672, 1, 250), + (216673, 91, 940), + (216673, 90, 940), + (216673, 92, 940), + (216673, 97, 735), + (216673, 95, 940), + (216673, 94, 940), + (216673, 93, 735), + (216673, 96, 940), + (216673, 155, 40), + (216673, 145, 20), + (216673, 17, 8), + (216673, 131, 1), + (216674, 91, 1125), + (216674, 90, 1125), + (216674, 92, 1125), + (216674, 97, 885), + (216674, 95, 1125), + (216674, 94, 1125), + (216674, 93, 885), + (216674, 96, 1125), + (216674, 155, 60), + (216674, 145, 30), + (216674, 17, 16), + (216674, 131, 10), + (216675, 91, 1500), + (216675, 90, 1500), + (216675, 92, 900), + (216675, 97, 1200), + (216675, 95, 1500), + (216675, 94, 1500), + (216675, 93, 1500), + (216675, 96, 1500), + (216675, 21, 10), + (216675, 221, 225), + (216675, 146, 25), + (216676, 91, 1800), + (216676, 90, 1800), + (216676, 92, 900), + (216676, 97, 1500), + (216676, 95, 1800), + (216676, 94, 1800), + (216676, 93, 1800), + (216676, 96, 1800), + (216676, 21, 20), + (216676, 221, 550), + (216676, 146, 50), + (216677, 91, 175), + (216677, 90, 175), + (216677, 92, 125), + (216677, 97, 125), + (216677, 95, 175), + (216677, 94, 175), + (216677, 93, 175), + (216677, 96, 175), + (216677, 145, 10), + (216677, 1, 4), + (216677, 16, 5), + (216677, 128, 1), + (216678, 91, 225), + (216678, 90, 225), + (216678, 92, 125), + (216678, 97, 175), + (216678, 95, 225), + (216678, 94, 225), + (216678, 93, 225), + (216678, 96, 225), + (216678, 145, 20), + (216678, 1, 400), + (216678, 16, 10), + (216678, 128, 12), + (216679, 91, 1125), + (216679, 90, 1125), + (216679, 92, 900), + (216679, 97, 900), + (216679, 95, 1125), + (216679, 94, 1125), + (216679, 93, 1125), + (216679, 96, 1125), + (216679, 19, 10), + (216679, 164, 30), + (216679, 131, 1), + (216679, 1, 100), + (216680, 91, 1350), + (216680, 90, 1350), + (216680, 92, 900), + (216680, 97, 1125), + (216680, 95, 1350), + (216680, 94, 1350), + (216680, 93, 1350), + (216680, 96, 1350), + (216680, 19, 20), + (216680, 164, 60), + (216680, 131, 24), + (216680, 1, 200), + (216681, 91, 310), + (216681, 90, 310), + (216681, 92, 190), + (216681, 97, 250), + (216681, 95, 310), + (216681, 94, 310), + (216681, 93, 310), + (216681, 96, 310), + (216681, 106, 40), + (216681, 144, 30), + (216681, 20, 15), + (216681, 129, 1), + (216681, 1, 100), + (216682, 91, 375), + (216682, 90, 375), + (216682, 92, 250), + (216682, 97, 310), + (216682, 95, 375), + (216682, 94, 375), + (216682, 93, 375), + (216682, 96, 375), + (216682, 106, 60), + (216682, 144, 40), + (216682, 20, 30), + (216682, 129, 24), + (216682, 1, 250), + (216683, 91, 375), + (216683, 90, 375), + (216683, 92, 225), + (216683, 97, 300), + (216683, 95, 375), + (216683, 94, 375), + (216683, 93, 375), + (216683, 96, 375), + (216683, 118, 12), + (216683, 123, 12), + (216683, 101, 10), + (216683, 127, 1), + (216683, 1, 100), + (216684, 91, 450), + (216684, 90, 450), + (216684, 92, 300), + (216684, 97, 375), + (216684, 95, 450), + (216684, 94, 450), + (216684, 93, 450), + (216684, 96, 450), + (216684, 118, 24), + (216684, 123, 24), + (216684, 101, 20), + (216684, 127, 12), + (216684, 1, 250), + (216685, 91, 1500), + (216685, 90, 1500), + (216685, 92, 900), + (216685, 97, 1200), + (216685, 95, 1500), + (216685, 94, 1500), + (216685, 93, 1500), + (216685, 96, 1500), + (216685, 124, 24), + (216685, 163, 24), + (216685, 18, 10), + (216685, 130, 1), + (216685, 181, 12), + (216686, 91, 1800), + (216686, 90, 1800), + (216686, 92, 1200), + (216686, 97, 1500), + (216686, 95, 1800), + (216686, 94, 1800), + (216686, 93, 1800), + (216686, 96, 1800), + (216686, 124, 36), + (216686, 163, 48), + (216686, 18, 20), + (216686, 130, 24), + (216686, 181, 24), + (216687, 91, 565), + (216687, 90, 565), + (216687, 92, 345), + (216687, 97, 455), + (216687, 95, 565), + (216687, 94, 565), + (216687, 93, 565), + (216687, 96, 565), + (216687, 156, 30), + (216687, 153, 20), + (216687, 154, 20), + (216687, 122, 1), + (216687, 1, 100), + (216688, 91, 675), + (216688, 90, 675), + (216688, 92, 455), + (216688, 97, 565), + (216688, 95, 675), + (216688, 94, 675), + (216688, 93, 675), + (216688, 96, 675), + (216688, 156, 50), + (216688, 153, 40), + (216688, 154, 40), + (216688, 122, 24), + (216688, 1, 250), + (216689, 91, 940), + (216689, 90, 940), + (216689, 92, 570), + (216689, 97, 755), + (216689, 95, 940), + (216689, 94, 940), + (216689, 93, 940), + (216689, 96, 940), + (216689, 1, 225), + (216689, 155, 20), + (216689, 17, 15), + (216689, 181, 8), + (216690, 91, 1125), + (216690, 90, 1125), + (216690, 92, 755), + (216690, 97, 940), + (216690, 95, 1125), + (216690, 94, 1125), + (216690, 93, 1125), + (216690, 96, 1125), + (216690, 1, 550), + (216690, 155, 40), + (216690, 17, 30), + (216690, 181, 16), + (216916, 91, 1500), + (216916, 90, 1500), + (216916, 92, 1500), + (216916, 97, 1000), + (216916, 95, 1500), + (216916, 94, 1000), + (216916, 93, 1500), + (216916, 96, 1500), + (216916, 221, 100), + (216916, 21, 5), + (216916, 148, 1), + (216916, 1, 2), + (216917, 91, 1800), + (216917, 90, 1800), + (216917, 92, 1800), + (216917, 97, 1200), + (216917, 95, 1800), + (216917, 94, 1200), + (216917, 93, 1800), + (216917, 96, 1800), + (216917, 221, 200), + (216917, 21, 10), + (216917, 148, 48), + (216917, 1, 200), + (216918, 91, 440), + (216918, 90, 440), + (216918, 92, 440), + (216918, 97, 295), + (216918, 95, 400), + (216918, 94, 295), + (216918, 93, 440), + (216918, 96, 440), + (216918, 116, 16), + (216918, 16, 5), + (216918, 122, 1), + (216918, 1, 3), + (216919, 91, 525), + (216919, 90, 525), + (216919, 92, 525), + (216919, 97, 350), + (216919, 95, 525), + (216919, 94, 350), + (216919, 93, 525), + (216919, 96, 525), + (216919, 116, 24), + (216919, 16, 10), + (216919, 122, 5), + (216919, 1, 300), + (216920, 91, 1125), + (216920, 90, 1125), + (216920, 92, 1125), + (216920, 97, 750), + (216920, 95, 1125), + (216920, 94, 750), + (216920, 93, 1125), + (216920, 96, 1125), + (216920, 162, 30), + (216920, 19, 5), + (216920, 128, 1), + (216920, 1, 100), + (216921, 91, 1350), + (216921, 90, 1350), + (216921, 92, 1350), + (216921, 97, 900), + (216921, 95, 1350), + (216921, 94, 900), + (216921, 93, 1350), + (216921, 96, 1350), + (216921, 162, 40), + (216921, 19, 10), + (216921, 128, 16), + (216921, 1, 250), + (216922, 91, 310), + (216922, 90, 310), + (216922, 92, 310), + (216922, 97, 205), + (216922, 95, 310), + (216922, 94, 205), + (216922, 93, 310), + (216922, 96, 310), + (216922, 167, 45), + (216922, 115, 32), + (216922, 20, 5), + (216922, 130, 1), + (216922, 1, 100), + (216923, 91, 375), + (216923, 90, 375), + (216923, 92, 375), + (216923, 97, 250), + (216923, 95, 375), + (216923, 94, 250), + (216923, 93, 375), + (216923, 96, 375), + (216923, 167, 60), + (216923, 115, 48), + (216923, 20, 10), + (216923, 130, 16), + (216923, 1, 250), + (216924, 91, 460), + (216924, 90, 460), + (216924, 92, 460), + (216924, 97, 305), + (216924, 95, 460), + (216924, 94, 305), + (216924, 93, 460), + (216924, 96, 460), + (216924, 119, 25), + (216924, 151, 15), + (216924, 112, 14), + (216924, 134, 1), + (216924, 1, 100), + (216925, 91, 550), + (216925, 90, 550), + (216925, 92, 550), + (216925, 97, 365), + (216925, 95, 550), + (216925, 94, 365), + (216925, 93, 550), + (216925, 96, 550), + (216925, 119, 30), + (216925, 151, 20), + (216925, 112, 21), + (216925, 134, 20), + (216925, 1, 250), + (216926, 91, 1500), + (216926, 90, 1500), + (216926, 92, 1500), + (216926, 97, 1000), + (216926, 95, 1500), + (216926, 94, 1000), + (216926, 93, 1500), + (216926, 96, 1500), + (216926, 1, 600), + (216926, 109, 30), + (216926, 18, 10), + (216926, 129, 1), + (216927, 91, 1800), + (216927, 90, 1800), + (216927, 92, 1800), + (216927, 97, 1200), + (216927, 95, 1800), + (216927, 94, 1200), + (216927, 93, 1800), + (216927, 96, 1800), + (216927, 1, 900), + (216927, 109, 40), + (216927, 18, 20), + (216927, 129, 10), + (216928, 91, 565), + (216928, 90, 565), + (216928, 92, 565), + (216928, 97, 375), + (216928, 95, 565), + (216928, 94, 375), + (216928, 93, 565), + (216928, 96, 565), + (216928, 156, 30), + (216928, 123, 24), + (216928, 133, 24), + (216928, 127, 1), + (216928, 1, 100), + (216929, 91, 675), + (216929, 90, 675), + (216929, 92, 675), + (216929, 97, 450), + (216929, 95, 675), + (216929, 94, 450), + (216929, 93, 675), + (216929, 96, 675), + (216929, 156, 40), + (216929, 123, 36), + (216929, 133, 48), + (216929, 127, 10), + (216929, 1, 250), + (216930, 91, 1105), + (216930, 90, 1105), + (216930, 92, 1105), + (216930, 97, 735), + (216930, 95, 1105), + (216930, 94, 735), + (216930, 93, 1105), + (216930, 96, 1105), + (216930, 113, 30), + (216930, 114, 36), + (216930, 17, 8), + (216930, 131, 1), + (216931, 91, 1325), + (216931, 90, 1325), + (216931, 92, 1325), + (216931, 97, 885), + (216931, 95, 1325), + (216931, 94, 885), + (216931, 93, 1325), + (216931, 96, 1325), + (216931, 113, 40), + (216931, 114, 48), + (216931, 17, 16), + (216931, 131, 10), + (216992, 91, 885), + (216992, 90, 885), + (216992, 92, 885), + (216992, 97, 735), + (216992, 95, 735), + (216992, 94, 735), + (216992, 93, 885), + (216992, 96, 885), + (216992, 113, 20), + (216992, 114, 24), + (216993, 91, 1105), + (216993, 90, 1105), + (216993, 92, 1105), + (216993, 97, 735), + (216993, 95, 735), + (216993, 94, 735), + (216993, 93, 1105), + (216993, 96, 1105), + (216993, 113, 30), + (216993, 114, 36), + (216994, 91, 455), + (216994, 90, 455), + (216994, 92, 455), + (216994, 97, 375), + (216994, 95, 375), + (216994, 94, 375), + (216994, 93, 455), + (216994, 96, 455), + (216994, 156, 20), + (216994, 123, 12), + (216995, 91, 565), + (216995, 90, 565), + (216995, 92, 565), + (216995, 97, 375), + (216995, 95, 375), + (216995, 94, 375), + (216995, 93, 565), + (216995, 96, 565), + (216995, 156, 30), + (216995, 123, 24), + (216996, 91, 1200), + (216996, 90, 1200), + (216996, 92, 1200), + (216996, 97, 1000), + (216996, 95, 1000), + (216996, 94, 1000), + (216996, 93, 1200), + (216996, 96, 1200), + (216996, 1, 300), + (216996, 109, 20), + (216997, 91, 1500), + (216997, 90, 1500), + (216997, 92, 1500), + (216997, 97, 1000), + (216997, 95, 1000), + (216997, 94, 1000), + (216997, 93, 1500), + (216997, 96, 1500), + (216997, 1, 600), + (216997, 109, 30), + (216998, 91, 370), + (216998, 90, 370), + (216998, 92, 370), + (216998, 97, 305), + (216998, 95, 305), + (216998, 94, 305), + (216998, 93, 370), + (216998, 96, 370), + (216998, 119, 20), + (216998, 151, 10), + (216999, 91, 460), + (216999, 90, 460), + (216999, 92, 460), + (216999, 97, 305), + (216999, 95, 305), + (216999, 94, 305), + (216999, 93, 460), + (216999, 96, 460), + (216999, 119, 25), + (216999, 151, 15), + (217000, 91, 250), + (217000, 90, 250), + (217000, 92, 250), + (217000, 97, 205), + (217000, 95, 205), + (217000, 94, 205), + (217000, 93, 250), + (217000, 96, 250), + (217000, 167, 30), + (217000, 115, 16), + (217001, 91, 310), + (217001, 90, 310), + (217001, 92, 310), + (217001, 97, 205), + (217001, 95, 205), + (217001, 94, 205), + (217001, 93, 310), + (217001, 96, 310), + (217001, 167, 45), + (217001, 115, 32), + (217002, 91, 900), + (217002, 90, 900), + (217002, 92, 900), + (217002, 97, 900), + (217002, 95, 900), + (217002, 94, 900), + (217002, 93, 900), + (217002, 96, 900), + (217002, 162, 20), + (217003, 91, 1125), + (217003, 90, 1125), + (217003, 92, 1125), + (217003, 97, 900), + (217003, 95, 900), + (217003, 94, 900), + (217003, 93, 1125), + (217003, 96, 1125), + (217003, 162, 30), + (217004, 91, 1200), + (217004, 90, 1200), + (217004, 92, 1200), + (217004, 97, 1000), + (217004, 95, 1000), + (217004, 94, 1000), + (217004, 93, 1200), + (217004, 96, 1200), + (217004, 221, 50), + (217005, 91, 1500), + (217005, 90, 1500), + (217005, 92, 1500), + (217005, 97, 1000), + (217005, 95, 1000), + (217005, 94, 1000), + (217005, 93, 1500), + (217005, 96, 1500), + (217005, 221, 100), + (217029, 91, 190), + (217029, 90, 190), + (217029, 92, 190), + (217029, 97, 190), + (217029, 95, 190), + (217029, 94, 150), + (217029, 93, 190), + (217029, 96, 190), + (217029, 167, 15), + (217030, 91, 250), + (217030, 90, 250), + (217030, 92, 250), + (217030, 97, 205), + (217030, 95, 205), + (217030, 94, 205), + (217030, 93, 250), + (217030, 96, 250), + (217030, 167, 30), + (217031, 91, 280), + (217031, 90, 280), + (217031, 92, 280), + (217031, 97, 280), + (217031, 95, 280), + (217031, 94, 250), + (217031, 93, 280), + (217031, 96, 280), + (217031, 119, 15), + (217032, 91, 370), + (217032, 90, 370), + (217032, 92, 370), + (217032, 97, 305), + (217032, 95, 305), + (217032, 94, 305), + (217032, 93, 370), + (217032, 96, 370), + (217032, 119, 20), + (217033, 91, 900), + (217033, 90, 900), + (217033, 92, 900), + (217033, 97, 900), + (217033, 95, 900), + (217033, 94, 850), + (217033, 93, 900), + (217033, 96, 900), + (217033, 1, 150), + (217034, 91, 1200), + (217034, 90, 1200), + (217034, 92, 1200), + (217034, 97, 1000), + (217034, 95, 1000), + (217034, 94, 1000), + (217034, 93, 1200), + (217034, 96, 1200), + (217034, 1, 300), + (217035, 91, 345), + (217035, 90, 345), + (217035, 92, 345), + (217035, 97, 345), + (217035, 95, 345), + (217035, 94, 295), + (217035, 93, 345), + (217035, 96, 345), + (217035, 156, 10), + (217036, 91, 455), + (217036, 90, 455), + (217036, 92, 455), + (217036, 97, 375), + (217036, 95, 375), + (217036, 94, 375), + (217036, 93, 455), + (217036, 96, 455), + (217036, 156, 20), + (217037, 91, 665), + (217037, 90, 665), + (217037, 92, 665), + (217037, 97, 665), + (217037, 95, 665), + (217037, 94, 615), + (217037, 93, 665), + (217037, 96, 665), + (217037, 113, 10), + (217038, 91, 885), + (217038, 90, 885), + (217038, 92, 885), + (217038, 97, 735), + (217038, 95, 735), + (217038, 94, 735), + (217038, 93, 885), + (217038, 96, 885), + (217038, 113, 20), + (217635, 91, 1750), + (217635, 90, 1750), + (217635, 92, 1750), + (217635, 97, 1750), + (217635, 95, 1000), + (217635, 94, 1750), + (217635, 93, 1750), + (217635, 96, 1000), + (217635, 221, 150), + (217635, 21, 5), + (217635, 142, 25), + (217636, 91, 2100), + (217636, 90, 2100), + (217636, 92, 2100), + (217636, 97, 2100), + (217636, 95, 1200), + (217636, 94, 2100), + (217636, 93, 2100), + (217636, 96, 1200), + (217636, 221, 250), + (217636, 21, 15), + (217636, 142, 50), + (217637, 91, 125), + (217637, 90, 125), + (217637, 92, 125), + (217637, 97, 125), + (217637, 95, 125), + (217637, 94, 125), + (217637, 93, 125), + (217637, 96, 125), + (217637, 144, 5), + (217637, 1, 4), + (217637, 16, 4), + (217637, 129, 1), + (217638, 91, 150), + (217638, 90, 150), + (217638, 92, 150), + (217638, 97, 150), + (217638, 95, 150), + (217638, 94, 150), + (217638, 93, 150), + (217638, 96, 150), + (217638, 144, 25), + (217638, 1, 400), + (217638, 16, 8), + (217638, 129, 8), + (217639, 91, 1085), + (217639, 90, 1085), + (217639, 92, 1085), + (217639, 97, 1085), + (217639, 95, 750), + (217639, 94, 1085), + (217639, 93, 1085), + (217639, 96, 750), + (217639, 121, 45), + (217639, 19, 5), + (217639, 128, 1), + (217639, 1, 100), + (217640, 91, 1300), + (217640, 90, 1300), + (217640, 92, 1300), + (217640, 97, 1300), + (217640, 95, 900), + (217640, 94, 1300), + (217640, 93, 1300), + (217640, 96, 900), + (217640, 121, 60), + (217640, 19, 10), + (217640, 128, 20), + (217640, 1, 200), + (217641, 91, 565), + (217641, 90, 565), + (217641, 92, 565), + (217641, 97, 565), + (217641, 95, 205), + (217641, 94, 565), + (217641, 93, 565), + (217641, 96, 205), + (217641, 145, 40), + (217641, 164, 20), + (217641, 20, 5), + (217641, 111, 10), + (217641, 1, 100), + (217642, 91, 675), + (217642, 90, 675), + (217642, 92, 675), + (217642, 97, 675), + (217642, 95, 250), + (217642, 94, 675), + (217642, 93, 675), + (217642, 96, 250), + (217642, 145, 50), + (217642, 164, 30), + (217642, 20, 15), + (217642, 111, 70), + (217642, 1, 250), + (217643, 91, 330), + (217643, 90, 330), + (217643, 92, 330), + (217643, 97, 330), + (217643, 95, 305), + (217643, 94, 330), + (217643, 93, 330), + (217643, 96, 305), + (217643, 102, 12), + (217643, 103, 12), + (217643, 154, 15), + (217643, 122, 1), + (217643, 1, 100), + (217644, 91, 400), + (217644, 90, 400), + (217644, 92, 400), + (217644, 97, 400), + (217644, 95, 365), + (217644, 94, 400), + (217644, 93, 400), + (217644, 96, 365), + (217644, 102, 16), + (217644, 103, 16), + (217644, 154, 30), + (217644, 122, 8), + (217644, 1, 250), + (217645, 91, 1500), + (217645, 90, 1500), + (217645, 92, 1500), + (217645, 97, 1500), + (217645, 95, 1000), + (217645, 94, 1500), + (217645, 93, 1500), + (217645, 96, 1000), + (217645, 1, 375), + (217645, 155, 50), + (217645, 18, 5), + (217645, 130, 1), + (217645, 181, 12), + (217646, 91, 1800), + (217646, 90, 1800), + (217646, 92, 1800), + (217646, 97, 1800), + (217646, 95, 1200), + (217646, 94, 1800), + (217646, 93, 1800), + (217646, 96, 1200), + (217646, 1, 750), + (217646, 155, 70), + (217646, 18, 15), + (217646, 130, 10), + (217646, 181, 24), + (217647, 91, 730), + (217647, 90, 730), + (217647, 92, 730), + (217647, 97, 730), + (217647, 95, 375), + (217647, 94, 730), + (217647, 93, 730), + (217647, 96, 375), + (217647, 156, 40), + (217647, 123, 30), + (217647, 143, 25), + (217647, 127, 1), + (217647, 1, 100), + (217648, 91, 875), + (217648, 90, 875), + (217648, 92, 875), + (217648, 97, 875), + (217648, 95, 450), + (217648, 94, 875), + (217648, 93, 875), + (217648, 96, 450), + (217648, 156, 50), + (217648, 123, 40), + (217648, 143, 50), + (217648, 127, 10), + (217648, 1, 250), + (217649, 91, 940), + (217649, 90, 940), + (217649, 92, 940), + (217649, 97, 940), + (217649, 95, 735), + (217649, 94, 940), + (217649, 93, 940), + (217649, 96, 735), + (217649, 100, 45), + (217649, 153, 45), + (217649, 17, 4), + (217649, 131, 1), + (217649, 181, 8), + (217650, 91, 1125), + (217650, 90, 1125), + (217650, 92, 1125), + (217650, 97, 1125), + (217650, 95, 885), + (217650, 94, 1125), + (217650, 93, 1125), + (217650, 96, 885), + (217650, 100, 60), + (217650, 153, 60), + (217650, 17, 16), + (217650, 131, 10), + (217650, 181, 16), + (217653, 91, 755), + (217653, 90, 755), + (217653, 92, 755), + (217653, 97, 735), + (217653, 95, 735), + (217653, 94, 755), + (217653, 93, 755), + (217653, 96, 735), + (217653, 100, 30), + (217653, 153, 30), + (217654, 91, 940), + (217654, 90, 940), + (217654, 92, 940), + (217654, 97, 735), + (217654, 95, 735), + (217654, 94, 940), + (217654, 93, 940), + (217654, 96, 735), + (217654, 100, 45), + (217654, 153, 45), + (217655, 91, 585), + (217655, 90, 585), + (217655, 92, 585), + (217655, 97, 375), + (217655, 95, 375), + (217655, 94, 585), + (217655, 93, 585), + (217655, 96, 375), + (217655, 156, 30), + (217655, 123, 20), + (217656, 91, 730), + (217656, 90, 730), + (217656, 92, 730), + (217656, 97, 375), + (217656, 95, 375), + (217656, 94, 730), + (217656, 93, 730), + (217656, 96, 375), + (217656, 156, 40), + (217656, 123, 30), + (217657, 91, 1200), + (217657, 90, 1200), + (217657, 92, 1200), + (217657, 97, 1000), + (217657, 95, 1000), + (217657, 94, 1200), + (217657, 93, 1200), + (217657, 96, 1000), + (217657, 1, 200), + (217657, 155, 30), + (217658, 91, 1500), + (217658, 90, 1500), + (217658, 92, 1500), + (217658, 97, 1000), + (217658, 95, 1000), + (217658, 94, 1500), + (217658, 93, 1500), + (217658, 96, 1000), + (217658, 1, 375), + (217658, 155, 50), + (217659, 91, 265), + (217659, 90, 265), + (217659, 92, 265), + (217659, 97, 265), + (217659, 95, 265), + (217659, 94, 265), + (217659, 93, 265), + (217659, 96, 265), + (217659, 102, 8), + (217659, 103, 8), + (217660, 91, 330), + (217660, 90, 330), + (217660, 92, 330), + (217660, 97, 305), + (217660, 95, 305), + (217660, 94, 330), + (217660, 93, 330), + (217660, 96, 305), + (217660, 102, 12), + (217660, 103, 12), + (217661, 91, 355), + (217661, 90, 355), + (217661, 92, 355), + (217661, 97, 205), + (217661, 95, 205), + (217661, 94, 355), + (217661, 93, 355), + (217661, 96, 205), + (217661, 145, 30), + (217661, 164, 10), + (217662, 91, 565), + (217662, 90, 565), + (217662, 92, 565), + (217662, 97, 205), + (217662, 95, 205), + (217662, 94, 565), + (217662, 93, 565), + (217662, 96, 205), + (217662, 145, 40), + (217662, 164, 20), + (217663, 91, 960), + (217663, 90, 960), + (217663, 92, 960), + (217663, 97, 750), + (217663, 95, 750), + (217663, 94, 960), + (217663, 93, 960), + (217663, 96, 750), + (217663, 121, 30), + (217664, 91, 1085), + (217664, 90, 1085), + (217664, 92, 1085), + (217664, 97, 750), + (217664, 95, 750), + (217664, 94, 1085), + (217664, 93, 1085), + (217664, 96, 750), + (217664, 121, 45), + (217665, 91, 1400), + (217665, 90, 1400), + (217665, 92, 1400), + (217665, 97, 1000), + (217665, 95, 1000), + (217665, 94, 1400), + (217665, 93, 1400), + (217665, 96, 1000), + (217665, 221, 50), + (217666, 91, 1750), + (217666, 90, 1750), + (217666, 92, 1750), + (217666, 97, 1000), + (217666, 95, 1000), + (217666, 94, 1750), + (217666, 93, 1750), + (217666, 96, 1000), + (217666, 221, 150), + (217667, 379, -100), + (217671, 201, 10), + (217671, 360, -80), + (217682, 91, 245), + (217682, 90, 245), + (217682, 92, 245), + (217682, 97, 205), + (217682, 95, 205), + (217682, 94, 245), + (217682, 93, 245), + (217682, 96, 205), + (217682, 145, 20), + (217683, 91, 355), + (217683, 90, 355), + (217683, 92, 355), + (217683, 97, 205), + (217683, 95, 205), + (217683, 94, 355), + (217683, 93, 355), + (217683, 96, 205), + (217683, 145, 30), + (217684, 91, 200), + (217684, 90, 200), + (217684, 92, 200), + (217684, 97, 200), + (217684, 95, 200), + (217684, 94, 200), + (217684, 93, 200), + (217684, 96, 200), + (217684, 102, 4), + (217685, 91, 265), + (217685, 90, 265), + (217685, 92, 265), + (217685, 97, 265), + (217685, 95, 265), + (217685, 94, 265), + (217685, 93, 265), + (217685, 96, 265), + (217685, 102, 8), + (217686, 91, 900), + (217686, 90, 900), + (217686, 92, 900), + (217686, 97, 900), + (217686, 95, 900), + (217686, 94, 900), + (217686, 93, 900), + (217686, 96, 850), + (217686, 1, 100), + (217687, 91, 1200), + (217687, 90, 1200), + (217687, 92, 1200), + (217687, 97, 1000), + (217687, 95, 1000), + (217687, 94, 1200), + (217687, 93, 1200), + (217687, 96, 1000), + (217687, 1, 200), + (217688, 91, 440), + (217688, 90, 440), + (217688, 92, 440), + (217688, 97, 375), + (217688, 95, 375), + (217688, 94, 440), + (217688, 93, 440), + (217688, 96, 375), + (217688, 156, 20), + (217689, 91, 585), + (217689, 90, 585), + (217689, 92, 585), + (217689, 97, 375), + (217689, 95, 375), + (217689, 94, 585), + (217689, 93, 585), + (217689, 96, 375), + (217689, 156, 30), + (217690, 91, 570), + (217690, 90, 570), + (217690, 92, 570), + (217690, 97, 570), + (217690, 95, 570), + (217690, 94, 570), + (217690, 93, 570), + (217690, 96, 520), + (217690, 100, 15), + (217691, 91, 755), + (217691, 90, 755), + (217691, 92, 755), + (217691, 97, 735), + (217691, 95, 735), + (217691, 94, 755), + (217691, 93, 755), + (217691, 96, 735), + (217691, 100, 30), + (217698, 91, 205), + (217698, 90, 255), + (217698, 92, 255), + (217698, 97, 205), + (217698, 95, 205), + (217698, 94, 255), + (217698, 93, 255), + (217698, 96, 255), + (217698, 112, 5), + (217699, 91, 205), + (217699, 90, 360), + (217699, 92, 360), + (217699, 97, 205), + (217699, 95, 205), + (217699, 94, 360), + (217699, 93, 360), + (217699, 96, 360), + (217699, 112, 15), + (217700, 91, 150), + (217700, 90, 150), + (217700, 92, 150), + (217700, 97, 150), + (217700, 95, 150), + (217700, 94, 150), + (217700, 93, 150), + (217700, 96, 150), + (217700, 149, 4), + (217701, 91, 150), + (217701, 90, 200), + (217701, 92, 200), + (217701, 97, 150), + (217701, 95, 150), + (217701, 94, 200), + (217701, 93, 200), + (217701, 96, 200), + (217701, 149, 12), + (217702, 91, 750), + (217702, 90, 750), + (217702, 92, 750), + (217702, 97, 750), + (217702, 95, 750), + (217702, 94, 750), + (217702, 93, 750), + (217702, 96, 750), + (217702, 221, 150), + (217703, 91, 1000), + (217703, 90, 1000), + (217703, 92, 1000), + (217703, 97, 1000), + (217703, 95, 1000), + (217703, 94, 1000), + (217703, 93, 1000), + (217703, 96, 1000), + (217703, 221, 350), + (217704, 91, 225), + (217704, 90, 225), + (217704, 92, 225), + (217704, 97, 225), + (217704, 95, 225), + (217704, 94, 225), + (217704, 93, 225), + (217704, 96, 225), + (217704, 156, 8), + (217705, 91, 225), + (217705, 90, 375), + (217705, 92, 375), + (217705, 97, 225), + (217705, 95, 225), + (217705, 94, 375), + (217705, 93, 375), + (217705, 96, 375), + (217705, 156, 16), + (217706, 91, 450), + (217706, 90, 450), + (217706, 92, 450), + (217706, 97, 450), + (217706, 95, 450), + (217706, 94, 450), + (217706, 93, 450), + (217706, 96, 450), + (217706, 1, 75), + (217707, 91, 600), + (217707, 90, 600), + (217707, 92, 600), + (217707, 97, 600), + (217707, 95, 600), + (217707, 94, 600), + (217707, 93, 600), + (217707, 96, 600), + (217707, 1, 150), + (217710, 91, 1000), + (217710, 90, 1585), + (217710, 92, 1585), + (217710, 97, 1585), + (217710, 95, 1000), + (217710, 94, 1585), + (217710, 93, 1585), + (217710, 96, 1585), + (217710, 21, 10), + (217710, 124, 10), + (217711, 91, 1200), + (217711, 90, 1900), + (217711, 92, 1900), + (217711, 97, 1900), + (217711, 95, 1200), + (217711, 94, 1900), + (217711, 93, 1900), + (217711, 96, 1900), + (217711, 21, 20), + (217711, 124, 40), + (217712, 91, 175), + (217712, 90, 175), + (217712, 92, 175), + (217712, 97, 175), + (217712, 95, 175), + (217712, 94, 175), + (217712, 93, 175), + (217712, 96, 175), + (217712, 181, 10), + (217712, 16, 3), + (217712, 128, 1), + (217712, 1, 4), + (217713, 91, 175), + (217713, 90, 225), + (217713, 92, 225), + (217713, 97, 225), + (217713, 95, 175), + (217713, 94, 225), + (217713, 93, 225), + (217713, 96, 225), + (217713, 181, 15), + (217713, 16, 6), + (217713, 128, 15), + (217713, 1, 400), + (217714, 91, 750), + (217714, 90, 1125), + (217714, 92, 1125), + (217714, 97, 1125), + (217714, 95, 750), + (217714, 94, 1125), + (217714, 93, 1125), + (217714, 96, 1125), + (217714, 19, 10), + (217714, 159, 25), + (217714, 127, 1), + (217714, 1, 100), + (217715, 91, 900), + (217715, 90, 1350), + (217715, 92, 1350), + (217715, 97, 1350), + (217715, 95, 900), + (217715, 94, 1350), + (217715, 93, 1350), + (217715, 96, 1350), + (217715, 19, 20), + (217715, 159, 50), + (217715, 127, 24), + (217715, 1, 200), + (217716, 91, 205), + (217716, 90, 455), + (217716, 92, 455), + (217716, 97, 455), + (217716, 95, 205), + (217716, 94, 455), + (217716, 93, 455), + (217716, 96, 455), + (217716, 112, 20), + (217716, 115, 15), + (217716, 133, 15), + (217716, 20, 10), + (217716, 129, 1), + (217716, 1, 100), + (217717, 91, 250), + (217717, 90, 575), + (217717, 92, 575), + (217717, 97, 575), + (217717, 95, 250), + (217717, 94, 575), + (217717, 93, 575), + (217717, 96, 575), + (217717, 112, 25), + (217717, 115, 20), + (217717, 133, 20), + (217717, 20, 20), + (217717, 129, 16), + (217717, 1, 250), + (217718, 91, 150), + (217718, 90, 250), + (217718, 92, 250), + (217718, 97, 250), + (217718, 95, 150), + (217718, 94, 250), + (217718, 93, 250), + (217718, 96, 250), + (217718, 149, 18), + (217718, 123, 20), + (217718, 154, 12), + (217718, 131, 1), + (217718, 1, 100), + (217719, 91, 200), + (217719, 90, 300), + (217719, 92, 300), + (217719, 97, 300), + (217719, 95, 200), + (217719, 94, 300), + (217719, 93, 300), + (217719, 96, 300), + (217719, 149, 24), + (217719, 123, 30), + (217719, 154, 16), + (217719, 131, 12), + (217719, 1, 250), + (217720, 91, 1000), + (217720, 90, 1250), + (217720, 92, 1250), + (217720, 97, 1250), + (217720, 95, 1000), + (217720, 94, 1250), + (217720, 93, 1250), + (217720, 96, 1250), + (217720, 221, 500), + (217720, 136, 20), + (217720, 18, 6), + (217720, 122, 1), + (217720, 181, 12), + (217721, 91, 1200), + (217721, 90, 1500), + (217721, 92, 1500), + (217721, 97, 1500), + (217721, 95, 1200), + (217721, 94, 1500), + (217721, 93, 1500), + (217721, 96, 1500), + (217721, 221, 750), + (217721, 136, 30), + (217721, 18, 12), + (217721, 122, 16), + (217721, 181, 24), + (217722, 91, 225), + (217722, 90, 375), + (217722, 92, 375), + (217722, 97, 375), + (217722, 95, 225), + (217722, 94, 375), + (217722, 93, 375), + (217722, 96, 375), + (217722, 156, 24), + (217722, 153, 24), + (217722, 155, 12), + (217722, 130, 1), + (217722, 1, 100), + (217723, 91, 300), + (217723, 90, 450), + (217723, 92, 450), + (217723, 97, 450), + (217723, 95, 300), + (217723, 94, 450), + (217723, 93, 450), + (217723, 96, 450), + (217723, 156, 32), + (217723, 153, 32), + (217723, 155, 24), + (217723, 130, 24), + (217723, 1, 250), + (217724, 91, 735), + (217724, 90, 750), + (217724, 92, 750), + (217724, 97, 750), + (217724, 95, 735), + (217724, 94, 750), + (217724, 93, 750), + (217724, 96, 750), + (217724, 1, 225), + (217724, 150, 15), + (217724, 17, 6), + (217724, 161, 1), + (217724, 181, 8), + (217725, 91, 885), + (217725, 90, 900), + (217725, 92, 900), + (217725, 97, 900), + (217725, 95, 885), + (217725, 94, 900), + (217725, 93, 900), + (217725, 96, 900), + (217725, 1, 300), + (217725, 150, 25), + (217725, 17, 12), + (217725, 161, 20), + (217725, 181, 16), + (218002, 91, 2085), + (218002, 90, 2085), + (218002, 92, 2085), + (218002, 97, 1000), + (218002, 95, 2085), + (218002, 94, 2085), + (218002, 93, 1000), + (218002, 96, 2085), + (218002, 221, 75), + (218002, 21, 5), + (218002, 142, 1), + (218003, 91, 2500), + (218003, 90, 2500), + (218003, 92, 2500), + (218003, 97, 1200), + (218003, 95, 2500), + (218003, 94, 2500), + (218003, 93, 1200), + (218003, 96, 2500), + (218003, 221, 225), + (218003, 21, 10), + (218003, 142, 30), + (218004, 91, 225), + (218004, 90, 225), + (218004, 92, 225), + (218004, 97, 225), + (218004, 95, 225), + (218004, 94, 225), + (218004, 93, 225), + (218004, 96, 225), + (218004, 104, 16), + (218004, 16, 5), + (218004, 122, 1), + (218004, 1, 4), + (218005, 91, 325), + (218005, 90, 325), + (218005, 92, 325), + (218005, 97, 225), + (218005, 95, 325), + (218005, 94, 325), + (218005, 93, 225), + (218005, 96, 325), + (218005, 104, 24), + (218005, 16, 10), + (218005, 122, 5), + (218005, 1, 400), + (218006, 91, 1125), + (218006, 90, 1125), + (218006, 92, 1125), + (218006, 97, 750), + (218006, 95, 1125), + (218006, 94, 1125), + (218006, 93, 750), + (218006, 96, 1125), + (218006, 162, 30), + (218006, 19, 1), + (218006, 128, 1), + (218006, 1, 100), + (218007, 91, 1350), + (218007, 90, 1350), + (218007, 92, 1350), + (218007, 97, 900), + (218007, 95, 1350), + (218007, 94, 1350), + (218007, 93, 900), + (218007, 96, 1350), + (218007, 162, 40), + (218007, 19, 10), + (218007, 128, 15), + (218007, 1, 200), + (218008, 91, 310), + (218008, 90, 310), + (218008, 92, 310), + (218008, 97, 205), + (218008, 95, 310), + (218008, 94, 310), + (218008, 93, 205), + (218008, 96, 310), + (218008, 147, 45), + (218008, 146, 32), + (218008, 20, 5), + (218008, 129, 1), + (218008, 1, 100), + (218009, 91, 375), + (218009, 90, 375), + (218009, 92, 375), + (218009, 97, 250), + (218009, 95, 375), + (218009, 94, 375), + (218009, 93, 250), + (218009, 96, 375), + (218009, 147, 60), + (218009, 146, 48), + (218009, 20, 10), + (218009, 129, 10), + (218009, 1, 250), + (218010, 91, 410), + (218010, 90, 410), + (218010, 92, 410), + (218010, 97, 305), + (218010, 95, 410), + (218010, 94, 410), + (218010, 93, 305), + (218010, 96, 410), + (218010, 118, 25), + (218010, 103, 16), + (218010, 154, 1), + (218010, 1, 100), + (218011, 91, 500), + (218011, 90, 500), + (218011, 92, 500), + (218011, 97, 365), + (218011, 95, 500), + (218011, 94, 500), + (218011, 93, 365), + (218011, 96, 500), + (218011, 118, 30), + (218011, 103, 25), + (218011, 154, 15), + (218011, 1, 250), + (218012, 91, 1500), + (218012, 90, 1500), + (218012, 92, 1500), + (218012, 97, 1000), + (218012, 95, 1500), + (218012, 94, 1500), + (218012, 93, 1000), + (218012, 96, 1500), + (218012, 1, 500), + (218012, 105, 45), + (218012, 18, 10), + (218012, 130, 1), + (218013, 91, 1800), + (218013, 90, 1800), + (218013, 92, 1800), + (218013, 97, 1200), + (218013, 95, 1800), + (218013, 94, 1800), + (218013, 93, 1200), + (218013, 96, 1800), + (218013, 1, 700), + (218013, 105, 60), + (218013, 18, 20), + (218013, 130, 15), + (218014, 91, 565), + (218014, 90, 565), + (218014, 92, 565), + (218014, 97, 375), + (218014, 95, 565), + (218014, 94, 565), + (218014, 93, 375), + (218014, 96, 565), + (218014, 156, 30), + (218014, 123, 24), + (218014, 143, 15), + (218014, 127, 1), + (218014, 1, 100), + (218015, 91, 675), + (218015, 90, 675), + (218015, 92, 675), + (218015, 97, 450), + (218015, 95, 675), + (218015, 94, 675), + (218015, 93, 450), + (218015, 96, 675), + (218015, 156, 40), + (218015, 123, 36), + (218015, 143, 30), + (218015, 127, 15), + (218015, 1, 250), + (218016, 91, 940), + (218016, 90, 940), + (218016, 92, 940), + (218016, 97, 735), + (218016, 95, 940), + (218016, 94, 940), + (218016, 93, 735), + (218016, 96, 940), + (218016, 155, 40), + (218016, 145, 20), + (218016, 17, 8), + (218016, 131, 1), + (218017, 91, 1125), + (218017, 90, 1125), + (218017, 92, 1125), + (218017, 97, 885), + (218017, 95, 1125), + (218017, 94, 1125), + (218017, 93, 885), + (218017, 96, 1125), + (218017, 155, 60), + (218017, 145, 30), + (218017, 17, 16), + (218017, 131, 10), + (218036, 91, 125), + (218036, 90, 125), + (218036, 92, 125), + (218036, 97, 125), + (218036, 95, 125), + (218036, 94, 125), + (218036, 93, 125), + (218036, 96, 125), + (218036, 104, 8), + (218037, 91, 225), + (218037, 90, 225), + (218037, 92, 225), + (218037, 97, 225), + (218037, 95, 225), + (218037, 94, 225), + (218037, 93, 225), + (218037, 96, 225), + (218037, 104, 16), + (218038, 91, 900), + (218038, 90, 900), + (218038, 92, 900), + (218038, 97, 750), + (218038, 95, 750), + (218038, 94, 900), + (218038, 93, 750), + (218038, 96, 900), + (218038, 162, 20), + (218039, 91, 1125), + (218039, 90, 1125), + (218039, 92, 1125), + (218039, 97, 750), + (218039, 95, 750), + (218039, 94, 1125), + (218039, 93, 750), + (218039, 96, 1125), + (218039, 162, 30), + (218040, 91, 250), + (218040, 90, 250), + (218040, 92, 250), + (218040, 97, 205), + (218040, 95, 205), + (218040, 94, 250), + (218040, 93, 205), + (218040, 96, 250), + (218040, 147, 30), + (218040, 146, 16), + (218041, 91, 310), + (218041, 90, 310), + (218041, 92, 310), + (218041, 97, 205), + (218041, 95, 205), + (218041, 94, 310), + (218041, 93, 205), + (218041, 96, 310), + (218041, 147, 45), + (218041, 146, 32), + (218042, 91, 330), + (218042, 90, 330), + (218042, 92, 330), + (218042, 97, 305), + (218042, 95, 305), + (218042, 94, 330), + (218042, 93, 305), + (218042, 96, 330), + (218042, 118, 20), + (218042, 103, 8), + (218043, 91, 410), + (218043, 90, 410), + (218043, 92, 410), + (218043, 97, 305), + (218043, 95, 305), + (218043, 94, 410), + (218043, 93, 305), + (218043, 96, 410), + (218043, 118, 25), + (218043, 103, 16), + (218044, 91, 1200), + (218044, 90, 1200), + (218044, 92, 1200), + (218044, 97, 1000), + (218044, 95, 1000), + (218044, 94, 1200), + (218044, 93, 1000), + (218044, 96, 1200), + (218044, 1, 300), + (218044, 105, 30), + (218045, 91, 1500), + (218045, 90, 1500), + (218045, 92, 1500), + (218045, 97, 1000), + (218045, 95, 1000), + (218045, 94, 1500), + (218045, 93, 1000), + (218045, 96, 1500), + (218045, 1, 500), + (218045, 105, 45), + (218046, 91, 455), + (218046, 90, 455), + (218046, 92, 455), + (218046, 97, 375), + (218046, 95, 375), + (218046, 94, 455), + (218046, 93, 375), + (218046, 96, 455), + (218046, 156, 20), + (218046, 123, 12), + (218047, 91, 565), + (218047, 90, 565), + (218047, 92, 565), + (218047, 97, 375), + (218047, 95, 375), + (218047, 94, 565), + (218047, 93, 375), + (218047, 96, 565), + (218047, 156, 30), + (218047, 123, 24), + (218048, 91, 755), + (218048, 90, 755), + (218048, 92, 755), + (218048, 97, 735), + (218048, 95, 735), + (218048, 94, 755), + (218048, 93, 735), + (218048, 96, 755), + (218048, 155, 20), + (218048, 145, 10), + (218049, 91, 940), + (218049, 90, 940), + (218049, 92, 940), + (218049, 97, 735), + (218049, 95, 735), + (218049, 94, 940), + (218049, 93, 735), + (218049, 96, 940), + (218049, 155, 40), + (218049, 145, 20), + (218050, 91, 570), + (218050, 90, 570), + (218050, 92, 570), + (218050, 97, 570), + (218050, 95, 570), + (218050, 94, 570), + (218050, 93, 570), + (218050, 96, 570), + (218050, 155, 10), + (218051, 91, 755), + (218051, 90, 755), + (218051, 92, 755), + (218051, 97, 735), + (218051, 95, 735), + (218051, 94, 755), + (218051, 93, 735), + (218051, 96, 755), + (218051, 155, 20), + (218052, 91, 345), + (218052, 90, 345), + (218052, 92, 345), + (218052, 97, 345), + (218052, 95, 345), + (218052, 94, 345), + (218052, 93, 345), + (218052, 96, 345), + (218052, 156, 10), + (218053, 91, 455), + (218053, 90, 455), + (218053, 92, 455), + (218053, 97, 375), + (218053, 95, 375), + (218053, 94, 455), + (218053, 93, 375), + (218053, 96, 455), + (218053, 156, 20), + (218054, 91, 900), + (218054, 90, 900), + (218054, 92, 900), + (218054, 97, 900), + (218054, 95, 900), + (218054, 94, 900), + (218054, 93, 900), + (218054, 96, 900), + (218054, 1, 100), + (218055, 91, 1200), + (218055, 90, 1200), + (218055, 92, 1200), + (218055, 97, 1000), + (218055, 95, 1000), + (218055, 94, 1200), + (218055, 93, 1000), + (218055, 96, 1200), + (218055, 1, 300), + (218056, 91, 250), + (218056, 90, 250), + (218056, 92, 250), + (218056, 97, 250), + (218056, 95, 250), + (218056, 94, 250), + (218056, 93, 250), + (218056, 96, 250), + (218056, 118, 15), + (218057, 91, 330), + (218057, 90, 330), + (218057, 92, 330), + (218057, 97, 305), + (218057, 95, 305), + (218057, 94, 330), + (218057, 93, 305), + (218057, 96, 330), + (218057, 118, 20), + (218058, 91, 190), + (218058, 90, 190), + (218058, 92, 190), + (218058, 97, 190), + (218058, 95, 190), + (218058, 94, 190), + (218058, 93, 190), + (218058, 96, 190), + (218058, 147, 15), + (218059, 91, 250), + (218059, 90, 250), + (218059, 92, 250), + (218059, 97, 205), + (218059, 95, 205), + (218059, 94, 250), + (218059, 93, 205), + (218059, 96, 250), + (218059, 147, 30), + (218172, 91, 1250), + (218172, 90, 1250), + (218172, 92, 1250), + (218172, 97, 1250), + (218172, 95, 1000), + (218172, 94, 1250), + (218172, 93, 1250), + (218172, 96, 1000), + (218172, 21, 10), + (218172, 125, 10), + (218172, 1, 6), + (218173, 91, 1500), + (218173, 90, 1500), + (218173, 92, 1500), + (218173, 97, 1500), + (218173, 95, 1200), + (218173, 94, 1500), + (218173, 93, 1200), + (218173, 96, 1500), + (218173, 21, 20), + (218173, 125, 60), + (218173, 1, 600), + (218174, 91, 175), + (218174, 90, 175), + (218174, 92, 175), + (218174, 97, 175), + (218174, 95, 175), + (218174, 94, 175), + (218174, 93, 175), + (218174, 96, 175), + (218174, 181, 10), + (218174, 1, 1), + (218174, 16, 3), + (218174, 128, 1), + (218175, 91, 225), + (218175, 90, 225), + (218175, 92, 225), + (218175, 97, 225), + (218175, 95, 175), + (218175, 94, 225), + (218175, 93, 225), + (218175, 96, 175), + (218175, 181, 20), + (218175, 1, 100), + (218175, 16, 6), + (218175, 128, 12), + (218176, 91, 1125), + (218176, 90, 1125), + (218176, 92, 1125), + (218176, 97, 1125), + (218176, 95, 750), + (218176, 94, 1125), + (218176, 93, 1125), + (218176, 96, 750), + (218176, 19, 10), + (218176, 160, 20), + (218176, 131, 1), + (218176, 141, 25), + (218176, 1, 100), + (218177, 91, 1350), + (218177, 90, 1350), + (218177, 92, 1350), + (218177, 97, 1350), + (218177, 95, 900), + (218177, 94, 1350), + (218177, 93, 1350), + (218177, 96, 900), + (218177, 19, 20), + (218177, 160, 45), + (218177, 131, 25), + (218177, 141, 50), + (218177, 1, 200), + (218178, 91, 395), + (218178, 90, 395), + (218178, 92, 395), + (218178, 97, 395), + (218178, 95, 205), + (218178, 94, 395), + (218178, 93, 395), + (218178, 96, 205), + (218178, 112, 27), + (218178, 115, 15), + (218178, 163, 30), + (218178, 20, 10), + (218178, 129, 1), + (218178, 1, 100), + (218179, 91, 475), + (218179, 90, 475), + (218179, 92, 475), + (218179, 97, 475), + (218179, 95, 250), + (218179, 94, 475), + (218179, 93, 475), + (218179, 96, 250), + (218179, 112, 36), + (218179, 115, 20), + (218179, 163, 55), + (218179, 20, 20), + (218179, 129, 20), + (218179, 1, 250), + (218180, 91, 375), + (218180, 90, 375), + (218180, 92, 375), + (218180, 97, 375), + (218180, 95, 150), + (218180, 94, 375), + (218180, 93, 375), + (218180, 96, 150), + (218180, 165, 15), + (218180, 119, 16), + (218180, 159, 10), + (218180, 127, 1), + (218180, 1, 100), + (218181, 91, 450), + (218181, 90, 450), + (218181, 92, 450), + (218181, 97, 450), + (218181, 95, 200), + (218181, 94, 450), + (218181, 93, 450), + (218181, 96, 200), + (218181, 165, 20), + (218181, 119, 24), + (218181, 159, 20), + (218181, 127, 12), + (218181, 1, 250), + (218182, 91, 1250), + (218182, 90, 1250), + (218182, 92, 1250), + (218182, 97, 1250), + (218182, 95, 1000), + (218182, 94, 1250), + (218182, 93, 1250), + (218182, 96, 1000), + (218182, 221, 400), + (218182, 158, 40), + (218182, 18, 5), + (218182, 130, 1), + (218182, 109, 18), + (218182, 181, 12), + (218183, 91, 1500), + (218183, 90, 1500), + (218183, 92, 1500), + (218183, 97, 1500), + (218183, 95, 1200), + (218183, 94, 1500), + (218183, 93, 1500), + (218183, 96, 1200), + (218183, 221, 600), + (218183, 158, 60), + (218183, 18, 10), + (218183, 130, 25), + (218183, 109, 36), + (218183, 181, 24), + (218184, 91, 500), + (218184, 90, 500), + (218184, 92, 500), + (218184, 97, 500), + (218184, 95, 225), + (218184, 94, 500), + (218184, 93, 500), + (218184, 96, 225), + (218184, 156, 24), + (218184, 126, 30), + (218184, 157, 30), + (218184, 122, 1), + (218184, 1, 100), + (218185, 91, 600), + (218185, 90, 600), + (218185, 92, 600), + (218185, 97, 600), + (218185, 95, 300), + (218185, 94, 600), + (218185, 93, 600), + (218185, 96, 300), + (218185, 156, 32), + (218185, 126, 55), + (218185, 157, 55), + (218185, 122, 20), + (218185, 1, 250), + (218186, 91, 750), + (218186, 90, 750), + (218186, 92, 750), + (218186, 97, 750), + (218186, 95, 735), + (218186, 94, 750), + (218186, 93, 750), + (218186, 96, 750), + (218186, 1, 225), + (218186, 150, 15), + (218186, 17, 6), + (218186, 161, 1), + (218186, 181, 8), + (218187, 91, 900), + (218187, 90, 900), + (218187, 92, 900), + (218187, 97, 900), + (218187, 95, 885), + (218187, 94, 900), + (218187, 93, 900), + (218187, 96, 885), + (218187, 1, 300), + (218187, 150, 25), + (218187, 17, 12), + (218187, 161, 30), + (218187, 181, 16), + (218206, 91, 750), + (218206, 90, 750), + (218206, 92, 750), + (218206, 97, 735), + (218206, 95, 750), + (218206, 94, 750), + (218206, 93, 750), + (218206, 96, 735), + (218206, 1, 225), + (218206, 150, 15), + (218206, 17, 6), + (218206, 161, 1), + (218206, 181, 8), + (218207, 91, 900), + (218207, 90, 900), + (218207, 92, 900), + (218207, 97, 885), + (218207, 95, 900), + (218207, 94, 900), + (218207, 93, 900), + (218207, 96, 885), + (218207, 1, 300), + (218207, 150, 25), + (218207, 17, 12), + (218207, 161, 30), + (218207, 181, 16), + (218208, 91, 500), + (218208, 90, 500), + (218208, 92, 500), + (218208, 97, 225), + (218208, 95, 500), + (218208, 94, 500), + (218208, 93, 500), + (218208, 96, 225), + (218208, 156, 24), + (218208, 126, 30), + (218208, 157, 30), + (218208, 122, 1), + (218208, 1, 100), + (218209, 91, 600), + (218209, 90, 600), + (218209, 92, 600), + (218209, 97, 300), + (218209, 95, 600), + (218209, 94, 600), + (218209, 93, 600), + (218209, 96, 300), + (218209, 156, 32), + (218209, 126, 55), + (218209, 157, 55), + (218209, 122, 20), + (218209, 1, 250), + (218210, 91, 1250), + (218210, 90, 1250), + (218210, 92, 1250), + (218210, 97, 1000), + (218210, 95, 1250), + (218210, 94, 1250), + (218210, 93, 1250), + (218210, 96, 1000), + (218210, 221, 400), + (218210, 158, 40), + (218210, 18, 5), + (218210, 130, 1), + (218210, 109, 18), + (218210, 181, 12), + (218211, 91, 1500), + (218211, 90, 1500), + (218211, 92, 1500), + (218211, 97, 1200), + (218211, 95, 1500), + (218211, 94, 1500), + (218211, 93, 1500), + (218211, 96, 1200), + (218211, 221, 600), + (218211, 158, 60), + (218211, 18, 10), + (218211, 130, 25), + (218211, 109, 36), + (218211, 181, 24), + (218212, 91, 375), + (218212, 90, 375), + (218212, 92, 375), + (218212, 97, 150), + (218212, 95, 375), + (218212, 94, 375), + (218212, 93, 375), + (218212, 96, 150), + (218212, 165, 15), + (218212, 119, 16), + (218212, 159, 10), + (218212, 127, 1), + (218212, 1, 100), + (218213, 91, 450), + (218213, 90, 450), + (218213, 92, 450), + (218213, 97, 200), + (218213, 95, 450), + (218213, 94, 450), + (218213, 93, 450), + (218213, 96, 200), + (218213, 165, 20), + (218213, 119, 24), + (218213, 159, 20), + (218213, 127, 12), + (218213, 1, 250), + (218214, 91, 395), + (218214, 90, 395), + (218214, 92, 395), + (218214, 97, 205), + (218214, 95, 395), + (218214, 94, 395), + (218214, 93, 395), + (218214, 96, 205), + (218214, 112, 27), + (218214, 115, 15), + (218214, 163, 30), + (218214, 20, 10), + (218214, 129, 1), + (218214, 1, 100), + (218215, 91, 475), + (218215, 90, 475), + (218215, 92, 475), + (218215, 97, 250), + (218215, 95, 475), + (218215, 94, 475), + (218215, 93, 475), + (218215, 96, 250), + (218215, 112, 36), + (218215, 115, 20), + (218215, 163, 55), + (218215, 20, 20), + (218215, 129, 20), + (218215, 1, 250), + (218216, 91, 1125), + (218216, 90, 1125), + (218216, 92, 1125), + (218216, 97, 750), + (218216, 95, 1125), + (218216, 94, 1125), + (218216, 93, 1125), + (218216, 96, 750), + (218216, 19, 10), + (218216, 160, 20), + (218216, 131, 1), + (218216, 141, 25), + (218216, 1, 100), + (218217, 91, 1350), + (218217, 90, 1350), + (218217, 92, 1350), + (218217, 97, 900), + (218217, 95, 1350), + (218217, 94, 1350), + (218217, 93, 1350), + (218217, 96, 900), + (218217, 19, 20), + (218217, 160, 45), + (218217, 131, 25), + (218217, 141, 50), + (218217, 1, 200), + (218218, 91, 175), + (218218, 90, 175), + (218218, 92, 175), + (218218, 97, 175), + (218218, 95, 175), + (218218, 94, 175), + (218218, 93, 175), + (218218, 96, 175), + (218218, 181, 10), + (218218, 1, 1), + (218218, 16, 3), + (218218, 128, 1), + (218219, 91, 225), + (218219, 90, 225), + (218219, 92, 225), + (218219, 97, 175), + (218219, 95, 225), + (218219, 94, 225), + (218219, 93, 225), + (218219, 96, 175), + (218219, 181, 20), + (218219, 1, 100), + (218219, 16, 6), + (218219, 128, 12), + (218220, 91, 1250), + (218220, 90, 1250), + (218220, 92, 1250), + (218220, 97, 1000), + (218220, 95, 1250), + (218220, 94, 1250), + (218220, 93, 1250), + (218220, 96, 1000), + (218220, 21, 10), + (218220, 125, 10), + (218220, 1, 6), + (218221, 91, 1500), + (218221, 90, 1500), + (218221, 92, 1500), + (218221, 97, 1200), + (218221, 95, 1500), + (218221, 94, 1500), + (218221, 93, 1200), + (218221, 96, 1500), + (218221, 21, 20), + (218221, 125, 60), + (218221, 1, 600), + (218236, 91, 125), + (218236, 90, 125), + (218236, 92, 125), + (218236, 97, 125), + (218236, 95, 125), + (218236, 94, 125), + (218236, 93, 125), + (218236, 96, 125), + (218236, 181, 5), + (218237, 91, 175), + (218237, 90, 175), + (218237, 92, 175), + (218237, 97, 175), + (218237, 95, 175), + (218237, 94, 175), + (218237, 93, 175), + (218237, 96, 175), + (218237, 181, 10), + (218238, 91, 900), + (218238, 90, 900), + (218238, 92, 900), + (218238, 97, 750), + (218238, 95, 750), + (218238, 94, 900), + (218238, 93, 900), + (218238, 96, 750), + (218238, 19, 5), + (218238, 160, 10), + (218239, 91, 1125), + (218239, 90, 1125), + (218239, 92, 1125), + (218239, 97, 750), + (218239, 95, 750), + (218239, 94, 1125), + (218239, 93, 1125), + (218239, 96, 750), + (218239, 19, 10), + (218239, 160, 20), + (218240, 91, 315), + (218240, 90, 315), + (218240, 92, 315), + (218240, 97, 205), + (218240, 95, 205), + (218240, 94, 315), + (218240, 93, 315), + (218240, 96, 205), + (218240, 112, 18), + (218240, 115, 10), + (218240, 163, 10), + (218241, 91, 395), + (218241, 90, 395), + (218241, 92, 395), + (218241, 97, 205), + (218241, 95, 205), + (218241, 94, 395), + (218241, 93, 395), + (218241, 96, 205), + (218241, 112, 27), + (218241, 115, 15), + (218241, 163, 30), + (218242, 91, 300), + (218242, 90, 300), + (218242, 92, 300), + (218242, 97, 150), + (218242, 95, 150), + (218242, 94, 300), + (218242, 93, 300), + (218242, 96, 150), + (218242, 165, 10), + (218242, 119, 8), + (218243, 91, 375), + (218243, 90, 375), + (218243, 92, 375), + (218243, 97, 150), + (218243, 95, 150), + (218243, 94, 375), + (218243, 93, 375), + (218243, 96, 150), + (218243, 165, 15), + (218243, 119, 16), + (218244, 91, 1000), + (218244, 90, 1000), + (218244, 92, 1000), + (218244, 97, 1000), + (218244, 95, 1000), + (218244, 94, 1000), + (218244, 93, 1000), + (218244, 96, 1000), + (218244, 221, 250), + (218244, 158, 20), + (218245, 91, 1250), + (218245, 90, 1250), + (218245, 92, 1250), + (218245, 97, 1200), + (218245, 95, 1200), + (218245, 94, 1250), + (218245, 93, 1250), + (218245, 96, 1200), + (218245, 221, 400), + (218245, 158, 40), + (218246, 91, 400), + (218246, 90, 400), + (218246, 92, 400), + (218246, 97, 225), + (218246, 95, 225), + (218246, 94, 400), + (218246, 93, 400), + (218246, 96, 225), + (218246, 156, 16), + (218246, 126, 10), + (218247, 91, 500), + (218247, 90, 500), + (218247, 92, 500), + (218247, 97, 225), + (218247, 95, 225), + (218247, 94, 500), + (218247, 93, 500), + (218247, 96, 225), + (218247, 156, 24), + (218247, 126, 30), + (218248, 91, 600), + (218248, 90, 600), + (218248, 92, 600), + (218248, 97, 600), + (218248, 95, 600), + (218248, 94, 600), + (218248, 93, 600), + (218248, 96, 600), + (218248, 1, 150), + (218248, 150, 5), + (218249, 91, 750), + (218249, 90, 750), + (218249, 92, 750), + (218249, 97, 735), + (218249, 95, 735), + (218249, 94, 750), + (218249, 93, 750), + (218249, 96, 735), + (218249, 1, 225), + (218249, 150, 15), + (218250, 91, 235), + (218250, 90, 235), + (218250, 92, 235), + (218250, 97, 205), + (218250, 95, 205), + (218250, 94, 235), + (218250, 93, 235), + (218250, 96, 205), + (218250, 112, 9), + (218251, 91, 315), + (218251, 90, 315), + (218251, 92, 315), + (218251, 97, 205), + (218251, 95, 205), + (218251, 94, 315), + (218251, 93, 315), + (218251, 96, 205), + (218251, 112, 18), + (218252, 91, 225), + (218252, 90, 225), + (218252, 92, 225), + (218252, 97, 150), + (218252, 95, 150), + (218252, 94, 225), + (218252, 93, 225), + (218252, 96, 150), + (218252, 165, 5), + (218253, 91, 300), + (218253, 90, 300), + (218253, 92, 300), + (218253, 97, 150), + (218253, 95, 150), + (218253, 94, 300), + (218253, 93, 300), + (218253, 96, 150), + (218253, 165, 10), + (218254, 91, 750), + (218254, 90, 750), + (218254, 92, 750), + (218254, 97, 750), + (218254, 95, 750), + (218254, 94, 750), + (218254, 93, 750), + (218254, 96, 750), + (218254, 221, 150), + (218255, 91, 1000), + (218255, 90, 1000), + (218255, 92, 1000), + (218255, 97, 1000), + (218255, 95, 1000), + (218255, 94, 1000), + (218255, 93, 1000), + (218255, 96, 1000), + (218255, 221, 250), + (218256, 91, 300), + (218256, 90, 300), + (218256, 92, 300), + (218256, 97, 225), + (218256, 95, 225), + (218256, 94, 300), + (218256, 93, 300), + (218256, 96, 225), + (218256, 156, 8), + (218257, 91, 400), + (218257, 90, 400), + (218257, 92, 400), + (218257, 97, 225), + (218257, 95, 225), + (218257, 94, 400), + (218257, 93, 400), + (218257, 96, 225), + (218257, 156, 16), + (218258, 91, 450), + (218258, 90, 450), + (218258, 92, 450), + (218258, 97, 450), + (218258, 95, 450), + (218258, 94, 450), + (218258, 93, 450), + (218258, 96, 450), + (218258, 1, 75), + (218259, 91, 600), + (218259, 90, 600), + (218259, 92, 600), + (218259, 97, 600), + (218259, 95, 600), + (218259, 94, 600), + (218259, 93, 600), + (218259, 96, 600), + (218259, 1, 150), + (218260, 91, 900), + (218260, 90, 900), + (218260, 92, 900), + (218260, 97, 900), + (218260, 95, 900), + (218260, 94, 900), + (218260, 93, 900), + (218260, 96, 900), + (218260, 21, 5), + (218260, 1, 5), + (218260, 122, 1), + (218261, 91, 1800), + (218261, 90, 1800), + (218261, 92, 1200), + (218261, 97, 1200), + (218261, 95, 1800), + (218261, 94, 1800), + (218261, 93, 1800), + (218261, 96, 1800), + (218261, 21, 10), + (218261, 1, 500), + (218261, 122, 15), + (218262, 91, 150), + (218262, 90, 150), + (218262, 92, 125), + (218262, 97, 125), + (218262, 95, 150), + (218262, 94, 150), + (218262, 93, 150), + (218262, 96, 150), + (218262, 153, 20), + (218262, 134, 5), + (218262, 1, 1), + (218262, 16, 3), + (218262, 131, 1), + (218263, 91, 200), + (218263, 90, 200), + (218263, 92, 150), + (218263, 97, 150), + (218263, 95, 200), + (218263, 94, 200), + (218263, 93, 200), + (218263, 96, 200), + (218263, 153, 30), + (218263, 134, 15), + (218263, 1, 150), + (218263, 16, 6), + (218263, 131, 8), + (218264, 91, 1000), + (218264, 90, 1000), + (218264, 92, 750), + (218264, 97, 750), + (218264, 95, 1000), + (218264, 94, 1000), + (218264, 93, 1000), + (218264, 96, 1000), + (218264, 136, 30), + (218264, 19, 6), + (218264, 181, 10), + (218264, 1, 100), + (218265, 91, 1200), + (218265, 90, 1200), + (218265, 92, 900), + (218265, 97, 900), + (218265, 95, 1200), + (218265, 94, 1200), + (218265, 93, 1200), + (218265, 96, 1200), + (218265, 136, 50), + (218265, 19, 12), + (218265, 181, 70), + (218265, 1, 200), + (218266, 91, 395), + (218266, 90, 395), + (218266, 92, 205), + (218266, 97, 205), + (218266, 95, 395), + (218266, 94, 395), + (218266, 93, 395), + (218266, 96, 395), + (218266, 165, 45), + (218266, 155, 30), + (218266, 20, 10), + (218266, 130, 1), + (218266, 1, 100), + (218267, 91, 475), + (218267, 90, 475), + (218267, 92, 250), + (218267, 97, 250), + (218267, 95, 475), + (218267, 94, 475), + (218267, 93, 475), + (218267, 96, 475), + (218267, 165, 60), + (218267, 155, 40), + (218267, 20, 20), + (218267, 130, 8), + (218267, 1, 250), + (218268, 91, 250), + (218268, 90, 250), + (218268, 92, 250), + (218268, 97, 250), + (218268, 95, 250), + (218268, 94, 250), + (218268, 93, 250), + (218268, 96, 250), + (218268, 119, 20), + (218268, 114, 15), + (218268, 135, 15), + (218268, 128, 1), + (218268, 1, 100), + (218269, 91, 300), + (218269, 90, 300), + (218269, 92, 300), + (218269, 97, 300), + (218269, 95, 300), + (218269, 94, 300), + (218269, 93, 300), + (218269, 96, 300), + (218269, 119, 25), + (218269, 114, 25), + (218269, 135, 30), + (218269, 128, 8), + (218269, 1, 250), + (218270, 91, 1310), + (218270, 90, 1310), + (218270, 92, 1000), + (218270, 97, 1000), + (218270, 95, 1310), + (218270, 94, 1310), + (218270, 93, 1310), + (218270, 96, 1310), + (218270, 1, 225), + (218270, 148, 25), + (218270, 18, 5), + (218270, 127, 1), + (218270, 181, 16), + (218271, 91, 1700), + (218271, 90, 1700), + (218271, 92, 1200), + (218271, 97, 1200), + (218271, 95, 1700), + (218271, 94, 1700), + (218271, 93, 1700), + (218271, 96, 1700), + (218271, 1, 375), + (218271, 148, 35), + (218271, 18, 10), + (218271, 127, 16), + (218271, 181, 32), + (218272, 91, 815), + (218272, 90, 815), + (218272, 92, 375), + (218272, 97, 375), + (218272, 95, 815), + (218272, 94, 815), + (218272, 93, 815), + (218272, 96, 815), + (218272, 156, 50), + (218272, 164, 40), + (218272, 159, 10), + (218272, 129, 1), + (218272, 1, 100), + (218273, 91, 975), + (218273, 90, 975), + (218273, 92, 450), + (218273, 97, 450), + (218273, 95, 975), + (218273, 94, 975), + (218273, 93, 975), + (218273, 96, 975), + (218273, 156, 70), + (218273, 164, 50), + (218273, 159, 40), + (218273, 129, 15), + (218273, 1, 250), + (218274, 91, 1020), + (218274, 90, 1020), + (218274, 92, 735), + (218274, 97, 735), + (218274, 95, 1020), + (218274, 94, 1020), + (218274, 93, 1020), + (218274, 96, 1020), + (218274, 154, 40), + (218274, 123, 25), + (218274, 17, 10), + (218274, 161, 10), + (218274, 181, 12), + (218275, 91, 1225), + (218275, 90, 1225), + (218275, 92, 885), + (218275, 97, 885), + (218275, 95, 1225), + (218275, 94, 1225), + (218275, 93, 1225), + (218275, 96, 1225), + (218275, 154, 50), + (218275, 123, 35), + (218275, 17, 20), + (218275, 161, 40), + (218275, 181, 24), + (218279, 91, 1020), + (218279, 90, 1020), + (218279, 92, 735), + (218279, 97, 1020), + (218279, 95, 735), + (218279, 94, 1020), + (218279, 93, 1020), + (218279, 96, 1020), + (218279, 154, 40), + (218279, 123, 25), + (218279, 17, 10), + (218279, 161, 10), + (218279, 181, 12), + (218280, 91, 1225), + (218280, 90, 1225), + (218280, 92, 885), + (218280, 97, 1225), + (218280, 95, 885), + (218280, 94, 1225), + (218280, 93, 1225), + (218280, 96, 1225), + (218280, 154, 50), + (218280, 123, 35), + (218280, 17, 20), + (218280, 161, 40), + (218280, 181, 24), + (218281, 91, 815), + (218281, 90, 815), + (218281, 92, 375), + (218281, 97, 815), + (218281, 95, 375), + (218281, 94, 815), + (218281, 93, 815), + (218281, 96, 815), + (218281, 156, 50), + (218281, 164, 40), + (218281, 159, 10), + (218281, 129, 1), + (218281, 1, 100), + (218282, 91, 975), + (218282, 90, 975), + (218282, 92, 450), + (218282, 97, 975), + (218282, 95, 450), + (218282, 94, 975), + (218282, 93, 975), + (218282, 96, 975), + (218282, 156, 70), + (218282, 164, 50), + (218282, 159, 40), + (218282, 129, 15), + (218282, 1, 250), + (218283, 91, 1310), + (218283, 90, 1310), + (218283, 92, 1000), + (218283, 97, 1310), + (218283, 95, 1000), + (218283, 94, 1310), + (218283, 93, 1310), + (218283, 96, 1310), + (218283, 1, 225), + (218283, 148, 25), + (218283, 18, 5), + (218283, 127, 1), + (218283, 181, 16), + (218284, 91, 1700), + (218284, 90, 1700), + (218284, 92, 1200), + (218284, 97, 1700), + (218284, 95, 1200), + (218284, 94, 1700), + (218284, 93, 1700), + (218284, 96, 1700), + (218284, 1, 375), + (218284, 148, 35), + (218284, 18, 10), + (218284, 127, 16), + (218284, 181, 32), + (218285, 91, 250), + (218285, 90, 250), + (218285, 92, 250), + (218285, 97, 250), + (218285, 95, 250), + (218285, 94, 250), + (218285, 93, 250), + (218285, 96, 250), + (218285, 119, 20), + (218285, 114, 15), + (218285, 135, 15), + (218285, 128, 1), + (218285, 1, 100), + (218286, 91, 300), + (218286, 90, 300), + (218286, 92, 300), + (218286, 97, 300), + (218286, 95, 300), + (218286, 94, 300), + (218286, 93, 300), + (218286, 96, 300), + (218286, 119, 25), + (218286, 114, 25), + (218286, 135, 30), + (218286, 128, 8), + (218286, 1, 250), + (218287, 91, 395), + (218287, 90, 395), + (218287, 92, 205), + (218287, 97, 395), + (218287, 95, 205), + (218287, 94, 395), + (218287, 93, 395), + (218287, 96, 395), + (218287, 165, 45), + (218287, 155, 30), + (218287, 20, 10), + (218287, 130, 1), + (218287, 1, 100), + (218288, 91, 475), + (218288, 90, 475), + (218288, 92, 250), + (218288, 97, 475), + (218288, 95, 250), + (218288, 94, 475), + (218288, 93, 475), + (218288, 96, 475), + (218288, 165, 60), + (218288, 155, 40), + (218288, 20, 20), + (218288, 130, 8), + (218288, 1, 250), + (218289, 91, 1000), + (218289, 90, 1000), + (218289, 92, 750), + (218289, 97, 1000), + (218289, 95, 750), + (218289, 94, 1000), + (218289, 93, 1000), + (218289, 96, 1000), + (218289, 136, 30), + (218289, 19, 6), + (218289, 181, 10), + (218289, 1, 100), + (218290, 91, 1200), + (218290, 90, 1200), + (218290, 92, 900), + (218290, 97, 1200), + (218290, 95, 900), + (218290, 94, 1200), + (218290, 93, 1200), + (218290, 96, 1200), + (218290, 136, 50), + (218290, 19, 12), + (218290, 181, 70), + (218290, 1, 200), + (218291, 91, 150), + (218291, 90, 150), + (218291, 92, 125), + (218291, 97, 150), + (218291, 95, 125), + (218291, 94, 150), + (218291, 93, 150), + (218291, 96, 150), + (218291, 153, 20), + (218291, 134, 5), + (218291, 1, 1), + (218291, 16, 3), + (218291, 131, 1), + (218292, 91, 200), + (218292, 90, 200), + (218292, 92, 150), + (218292, 97, 200), + (218292, 95, 150), + (218292, 94, 200), + (218292, 93, 200), + (218292, 96, 200), + (218292, 153, 30), + (218292, 134, 15), + (218292, 1, 150), + (218292, 16, 6), + (218292, 131, 8), + (218293, 91, 900), + (218293, 90, 900), + (218293, 92, 900), + (218293, 97, 900), + (218293, 95, 900), + (218293, 94, 900), + (218293, 93, 900), + (218293, 96, 900), + (218293, 21, 5), + (218293, 1, 5), + (218293, 122, 1), + (218294, 91, 1800), + (218294, 90, 1800), + (218294, 92, 1200), + (218294, 97, 1800), + (218294, 95, 1200), + (218294, 94, 1800), + (218294, 93, 1800), + (218294, 96, 1800), + (218294, 21, 10), + (218294, 1, 500), + (218294, 122, 15), + (218427, 91, 100), + (218427, 90, 100), + (218427, 92, 100), + (218427, 97, 100), + (218427, 95, 100), + (218427, 94, 100), + (218427, 93, 100), + (218427, 96, 100), + (218427, 153, 10), + (218428, 91, 150), + (218428, 90, 150), + (218428, 92, 125), + (218428, 97, 125), + (218428, 95, 125), + (218428, 94, 150), + (218428, 93, 150), + (218428, 96, 150), + (218428, 153, 20), + (218429, 91, 800), + (218429, 90, 800), + (218429, 92, 750), + (218429, 97, 750), + (218429, 95, 750), + (218429, 94, 800), + (218429, 93, 800), + (218429, 96, 800), + (218429, 136, 10), + (218430, 91, 1000), + (218430, 90, 1000), + (218430, 92, 750), + (218430, 97, 750), + (218430, 95, 750), + (218430, 94, 1000), + (218430, 93, 1000), + (218430, 96, 1000), + (218430, 136, 30), + (218431, 91, 315), + (218431, 90, 315), + (218431, 92, 205), + (218431, 97, 205), + (218431, 95, 205), + (218431, 94, 315), + (218431, 93, 315), + (218431, 96, 315), + (218431, 165, 30), + (218431, 155, 20), + (218432, 91, 395), + (218432, 90, 395), + (218432, 92, 205), + (218432, 97, 205), + (218432, 95, 205), + (218432, 94, 395), + (218432, 93, 395), + (218432, 96, 395), + (218432, 165, 45), + (218432, 155, 30), + (218433, 91, 200), + (218433, 90, 200), + (218433, 92, 200), + (218433, 97, 200), + (218433, 95, 200), + (218433, 94, 200), + (218433, 93, 200), + (218433, 96, 200), + (218433, 119, 15), + (218433, 114, 5), + (218434, 91, 250), + (218434, 90, 250), + (218434, 92, 250), + (218434, 97, 250), + (218434, 95, 250), + (218434, 94, 250), + (218434, 93, 250), + (218434, 96, 250), + (218434, 119, 20), + (218434, 114, 15), + (218435, 91, 1030), + (218435, 90, 1030), + (218435, 92, 1000), + (218435, 97, 1000), + (218435, 95, 1000), + (218435, 94, 1030), + (218435, 93, 1030), + (218435, 96, 1030), + (218435, 1, 150), + (218435, 148, 15), + (218436, 91, 1310), + (218436, 90, 1310), + (218436, 92, 1000), + (218436, 97, 1000), + (218436, 95, 1000), + (218436, 94, 1310), + (218436, 93, 1310), + (218436, 96, 1310), + (218436, 1, 225), + (218436, 148, 25), + (218437, 91, 655), + (218437, 90, 655), + (218437, 92, 375), + (218437, 97, 375), + (218437, 95, 375), + (218437, 94, 655), + (218437, 93, 655), + (218437, 96, 655), + (218437, 156, 30), + (218437, 164, 30), + (218438, 91, 815), + (218438, 90, 815), + (218438, 92, 375), + (218438, 97, 375), + (218438, 95, 375), + (218438, 94, 815), + (218438, 93, 815), + (218438, 96, 815), + (218438, 156, 50), + (218438, 164, 40), + (218439, 91, 815), + (218439, 90, 815), + (218439, 92, 735), + (218439, 97, 735), + (218439, 95, 735), + (218439, 94, 815), + (218439, 93, 815), + (218439, 96, 815), + (218439, 123, 15), + (218439, 154, 30), + (218440, 91, 1020), + (218440, 90, 1020), + (218440, 92, 735), + (218440, 97, 735), + (218440, 95, 735), + (218440, 94, 1020), + (218440, 93, 1020), + (218440, 96, 1020), + (218440, 123, 25), + (218440, 154, 40), + (218453, 91, 605), + (218453, 90, 605), + (218453, 92, 605), + (218453, 97, 605), + (218453, 95, 605), + (218453, 94, 605), + (218453, 93, 605), + (218453, 96, 605), + (218453, 154, 20), + (218454, 91, 815), + (218454, 90, 815), + (218454, 92, 735), + (218454, 97, 735), + (218454, 95, 735), + (218454, 94, 815), + (218454, 93, 815), + (218454, 96, 815), + (218454, 154, 30), + (218455, 91, 495), + (218455, 90, 495), + (218455, 92, 375), + (218455, 97, 375), + (218455, 95, 375), + (218455, 94, 495), + (218455, 93, 495), + (218455, 96, 495), + (218455, 156, 10), + (218456, 91, 655), + (218456, 90, 655), + (218456, 92, 375), + (218456, 97, 375), + (218456, 95, 375), + (218456, 94, 655), + (218456, 93, 655), + (218456, 96, 655), + (218456, 156, 30), + (218457, 91, 850), + (218457, 90, 850), + (218457, 92, 850), + (218457, 97, 850), + (218457, 95, 850), + (218457, 94, 850), + (218457, 93, 850), + (218457, 96, 850), + (218457, 1, 75), + (218458, 91, 1030), + (218458, 90, 1030), + (218458, 92, 1000), + (218458, 97, 1000), + (218458, 95, 1000), + (218458, 94, 1030), + (218458, 93, 1030), + (218458, 96, 1030), + (218458, 1, 150), + (218459, 91, 150), + (218459, 90, 150), + (218459, 92, 150), + (218459, 97, 150), + (218459, 95, 150), + (218459, 94, 150), + (218459, 93, 150), + (218459, 96, 150), + (218459, 119, 10), + (218460, 91, 200), + (218460, 90, 200), + (218460, 92, 200), + (218460, 97, 200), + (218460, 95, 200), + (218460, 94, 200), + (218460, 93, 200), + (218460, 96, 200), + (218460, 119, 15), + (218461, 91, 235), + (218461, 90, 235), + (218461, 92, 205), + (218461, 97, 205), + (218461, 95, 205), + (218461, 94, 235), + (218461, 93, 235), + (218461, 96, 235), + (218461, 165, 15), + (218462, 91, 395), + (218462, 90, 395), + (218462, 92, 205), + (218462, 97, 205), + (218462, 95, 205), + (218462, 94, 395), + (218462, 93, 395), + (218462, 96, 395), + (218462, 165, 30), + (218489, 91, 1020), + (218489, 90, 735), + (218489, 92, 1020), + (218489, 97, 735), + (218489, 95, 1020), + (218489, 94, 1020), + (218489, 93, 1020), + (218489, 96, 1020), + (218489, 154, 40), + (218489, 150, 15), + (218489, 17, 10), + (218489, 123, 1), + (218489, 181, 12), + (218490, 91, 1225), + (218490, 90, 885), + (218490, 92, 1225), + (218490, 97, 885), + (218490, 95, 1225), + (218490, 94, 1225), + (218490, 93, 1225), + (218490, 96, 1225), + (218490, 154, 50), + (218490, 150, 25), + (218490, 17, 20), + (218490, 123, 30), + (218490, 181, 24), + (218514, 91, 645), + (218514, 90, 375), + (218514, 92, 645), + (218514, 97, 375), + (218514, 95, 645), + (218514, 94, 645), + (218514, 93, 645), + (218514, 96, 645), + (218514, 156, 30), + (218514, 164, 40), + (218514, 111, 10), + (218514, 127, 1), + (218514, 1, 100), + (218515, 91, 775), + (218515, 90, 450), + (218515, 92, 775), + (218515, 97, 450), + (218515, 95, 775), + (218515, 94, 775), + (218515, 93, 775), + (218515, 96, 775), + (218515, 156, 40), + (218515, 164, 60), + (218515, 111, 20), + (218515, 127, 15), + (218515, 1, 250), + (218516, 91, 1310), + (218516, 90, 1000), + (218516, 92, 1310), + (218516, 97, 1000), + (218516, 95, 1310), + (218516, 94, 1310), + (218516, 93, 1310), + (218516, 96, 1310), + (218516, 1, 300), + (218516, 151, 30), + (218516, 18, 6), + (218516, 130, 1), + (218516, 181, 16), + (218517, 91, 1700), + (218517, 90, 1200), + (218517, 92, 1700), + (218517, 97, 1200), + (218517, 95, 1700), + (218517, 94, 1700), + (218517, 93, 1700), + (218517, 96, 1700), + (218517, 1, 450), + (218517, 151, 60), + (218517, 18, 12), + (218517, 130, 15), + (218517, 181, 32), + (218518, 91, 250), + (218518, 90, 250), + (218518, 92, 250), + (218518, 97, 250), + (218518, 95, 250), + (218518, 94, 250), + (218518, 93, 250), + (218518, 96, 250), + (218518, 119, 30), + (218518, 113, 15), + (218518, 135, 15), + (218518, 131, 1), + (218518, 1, 100), + (218519, 91, 300), + (218519, 90, 300), + (218519, 92, 300), + (218519, 97, 300), + (218519, 95, 300), + (218519, 94, 300), + (218519, 93, 300), + (218519, 96, 300), + (218519, 119, 40), + (218519, 113, 30), + (218519, 135, 25), + (218519, 131, 8), + (218519, 1, 250), + (218520, 91, 205), + (218520, 90, 205), + (218520, 92, 205), + (218520, 97, 205), + (218520, 95, 205), + (218520, 94, 205), + (218520, 93, 205), + (218520, 96, 205), + (218520, 165, 30), + (218520, 155, 30), + (218520, 20, 10), + (218520, 163, 5), + (218520, 1, 100), + (218521, 91, 250), + (218521, 90, 250), + (218521, 92, 250), + (218521, 97, 250), + (218521, 95, 250), + (218521, 94, 250), + (218521, 93, 250), + (218521, 96, 250), + (218521, 165, 40), + (218521, 155, 40), + (218521, 20, 20), + (218521, 163, 50), + (218521, 1, 250), + (218522, 91, 1125), + (218522, 90, 750), + (218522, 92, 1125), + (218522, 97, 750), + (218522, 95, 1125), + (218522, 94, 1125), + (218522, 93, 1125), + (218522, 96, 1125), + (218522, 136, 45), + (218522, 19, 5), + (218522, 128, 1), + (218522, 1, 100), + (218523, 91, 1350), + (218523, 90, 900), + (218523, 92, 1350), + (218523, 97, 900), + (218523, 95, 1350), + (218523, 94, 1350), + (218523, 93, 1350), + (218523, 96, 1350), + (218523, 136, 60), + (218523, 19, 10), + (218523, 128, 15), + (218523, 1, 200), + (218525, 91, 150), + (218525, 90, 125), + (218525, 92, 150), + (218525, 97, 125), + (218525, 95, 150), + (218525, 94, 150), + (218525, 93, 150), + (218525, 96, 150), + (218525, 153, 20), + (218525, 1, 3), + (218525, 16, 3), + (218525, 122, 1), + (218526, 91, 200), + (218526, 90, 150), + (218526, 92, 200), + (218526, 97, 150), + (218526, 95, 200), + (218526, 94, 200), + (218526, 93, 200), + (218526, 96, 200), + (218526, 153, 25), + (218526, 1, 300), + (218526, 16, 6), + (218526, 122, 10), + (218529, 91, 1750), + (218529, 90, 900), + (218529, 92, 1750), + (218529, 97, 900), + (218529, 95, 1750), + (218529, 94, 1750), + (218529, 93, 1750), + (218529, 96, 1750), + (218529, 21, 5), + (218529, 1, 2), + (218529, 129, 1), + (218530, 91, 2100), + (218530, 90, 1200), + (218530, 92, 2100), + (218530, 97, 1200), + (218530, 95, 2100), + (218530, 94, 2100), + (218530, 93, 2100), + (218530, 96, 2100), + (218530, 21, 10), + (218530, 1, 200), + (218530, 129, 20), + (218535, 91, 1750), + (218535, 90, 900), + (218535, 92, 1750), + (218535, 97, 1750), + (218535, 95, 900), + (218535, 94, 1750), + (218535, 93, 1750), + (218535, 96, 1750), + (218535, 21, 5), + (218535, 1, 2), + (218535, 129, 1), + (218536, 91, 2100), + (218536, 90, 1200), + (218536, 92, 2100), + (218536, 97, 2100), + (218536, 95, 1200), + (218536, 94, 2100), + (218536, 93, 2100), + (218536, 96, 2100), + (218536, 21, 10), + (218536, 1, 200), + (218536, 129, 20), + (218537, 91, 150), + (218537, 90, 125), + (218537, 92, 150), + (218537, 97, 150), + (218537, 95, 125), + (218537, 94, 150), + (218537, 93, 150), + (218537, 96, 150), + (218537, 153, 20), + (218537, 1, 3), + (218537, 16, 3), + (218537, 122, 1), + (218538, 91, 200), + (218538, 90, 150), + (218538, 92, 200), + (218538, 97, 200), + (218538, 95, 150), + (218538, 94, 200), + (218538, 93, 200), + (218538, 96, 200), + (218538, 153, 25), + (218538, 1, 300), + (218538, 16, 6), + (218538, 122, 10), + (218539, 91, 1125), + (218539, 90, 750), + (218539, 92, 1125), + (218539, 97, 1125), + (218539, 95, 750), + (218539, 94, 1125), + (218539, 93, 1125), + (218539, 96, 1125), + (218539, 136, 45), + (218539, 19, 5), + (218539, 128, 1), + (218539, 1, 100), + (218540, 91, 1350), + (218540, 90, 900), + (218540, 92, 1350), + (218540, 97, 1350), + (218540, 95, 900), + (218540, 94, 1350), + (218540, 93, 1350), + (218540, 96, 1350), + (218540, 136, 60), + (218540, 19, 10), + (218540, 128, 15), + (218540, 1, 200), + (218541, 91, 205), + (218541, 90, 205), + (218541, 92, 205), + (218541, 97, 205), + (218541, 95, 205), + (218541, 94, 205), + (218541, 93, 205), + (218541, 96, 205), + (218541, 165, 30), + (218541, 155, 30), + (218541, 20, 10), + (218541, 163, 5), + (218541, 1, 100), + (218542, 91, 250), + (218542, 90, 250), + (218542, 92, 250), + (218542, 97, 250), + (218542, 95, 250), + (218542, 94, 250), + (218542, 93, 250), + (218542, 96, 250), + (218542, 165, 40), + (218542, 155, 40), + (218542, 20, 20), + (218542, 163, 50), + (218542, 1, 250), + (218543, 91, 250), + (218543, 90, 250), + (218543, 92, 250), + (218543, 97, 250), + (218543, 95, 250), + (218543, 94, 250), + (218543, 93, 250), + (218543, 96, 250), + (218543, 119, 30), + (218543, 113, 15), + (218543, 135, 15), + (218543, 131, 1), + (218543, 1, 100), + (218544, 91, 300), + (218544, 90, 300), + (218544, 92, 300), + (218544, 97, 300), + (218544, 95, 300), + (218544, 94, 300), + (218544, 93, 300), + (218544, 96, 300), + (218544, 119, 40), + (218544, 113, 30), + (218544, 135, 25), + (218544, 131, 8), + (218544, 1, 250), + (218545, 91, 1310), + (218545, 90, 1000), + (218545, 92, 1310), + (218545, 97, 1310), + (218545, 95, 1000), + (218545, 94, 1310), + (218545, 93, 1310), + (218545, 96, 1310), + (218545, 1, 300), + (218545, 151, 30), + (218545, 18, 6), + (218545, 130, 1), + (218545, 181, 16), + (218546, 91, 1700), + (218546, 90, 1200), + (218546, 92, 1700), + (218546, 97, 1700), + (218546, 95, 1200), + (218546, 94, 1700), + (218546, 93, 1700), + (218546, 96, 1700), + (218546, 1, 450), + (218546, 151, 60), + (218546, 18, 12), + (218546, 130, 15), + (218546, 181, 32), + (218547, 91, 645), + (218547, 90, 375), + (218547, 92, 645), + (218547, 97, 645), + (218547, 95, 375), + (218547, 94, 645), + (218547, 93, 645), + (218547, 96, 645), + (218547, 156, 30), + (218547, 164, 40), + (218547, 111, 10), + (218547, 127, 1), + (218547, 1, 100), + (218548, 91, 775), + (218548, 90, 450), + (218548, 92, 775), + (218548, 97, 775), + (218548, 95, 450), + (218548, 94, 775), + (218548, 93, 775), + (218548, 96, 775), + (218548, 156, 40), + (218548, 164, 60), + (218548, 111, 20), + (218548, 127, 15), + (218548, 1, 250), + (218549, 91, 1020), + (218549, 90, 735), + (218549, 92, 1020), + (218549, 97, 1020), + (218549, 95, 735), + (218549, 94, 1020), + (218549, 93, 1020), + (218549, 96, 1020), + (218549, 154, 40), + (218549, 150, 15), + (218549, 17, 10), + (218549, 123, 1), + (218549, 181, 12), + (218550, 91, 1225), + (218550, 90, 885), + (218550, 92, 1225), + (218550, 97, 1225), + (218550, 95, 885), + (218550, 94, 1225), + (218550, 93, 1225), + (218550, 96, 1225), + (218550, 154, 50), + (218550, 150, 25), + (218550, 17, 20), + (218550, 123, 30), + (218550, 181, 24), + (218551, 91, 815), + (218551, 90, 735), + (218551, 92, 815), + (218551, 97, 735), + (218551, 95, 735), + (218551, 94, 815), + (218551, 93, 815), + (218551, 96, 815), + (218551, 154, 30), + (218551, 150, 5), + (218552, 91, 1020), + (218552, 90, 735), + (218552, 92, 1020), + (218552, 97, 735), + (218552, 95, 735), + (218552, 94, 1020), + (218552, 93, 1020), + (218552, 96, 1020), + (218552, 154, 40), + (218552, 150, 15), + (218553, 91, 505), + (218553, 90, 375), + (218553, 92, 505), + (218553, 97, 375), + (218553, 95, 375), + (218553, 94, 505), + (218553, 93, 505), + (218553, 96, 505), + (218553, 156, 20), + (218553, 164, 20), + (218554, 91, 645), + (218554, 90, 375), + (218554, 92, 645), + (218554, 97, 375), + (218554, 95, 375), + (218554, 94, 645), + (218554, 93, 645), + (218554, 96, 645), + (218554, 156, 30), + (218554, 164, 40), + (218555, 91, 1030), + (218555, 90, 1000), + (218555, 92, 1030), + (218555, 97, 1000), + (218555, 95, 1000), + (218555, 94, 1030), + (218555, 93, 1030), + (218555, 96, 1030), + (218555, 1, 150), + (218555, 151, 15), + (218556, 91, 1310), + (218556, 90, 1000), + (218556, 92, 1310), + (218556, 97, 1000), + (218556, 95, 1000), + (218556, 94, 1310), + (218556, 93, 1310), + (218556, 96, 1310), + (218556, 1, 300), + (218556, 151, 30), + (218557, 91, 200), + (218557, 90, 200), + (218557, 92, 200), + (218557, 97, 200), + (218557, 95, 200), + (218557, 94, 200), + (218557, 93, 200), + (218557, 96, 200), + (218557, 119, 20), + (218557, 113, 5), + (218558, 91, 250), + (218558, 90, 250), + (218558, 92, 250), + (218558, 97, 250), + (218558, 95, 250), + (218558, 94, 250), + (218558, 93, 250), + (218558, 96, 250), + (218558, 119, 30), + (218558, 113, 15), + (218559, 91, 165), + (218559, 90, 165), + (218559, 92, 165), + (218559, 97, 165), + (218559, 95, 165), + (218559, 94, 165), + (218559, 93, 165), + (218559, 96, 165), + (218559, 165, 20), + (218559, 155, 20), + (218560, 91, 205), + (218560, 90, 205), + (218560, 92, 205), + (218560, 97, 205), + (218560, 95, 205), + (218560, 94, 205), + (218560, 93, 205), + (218560, 96, 205), + (218560, 165, 30), + (218560, 155, 30), + (218562, 91, 900), + (218562, 90, 750), + (218562, 92, 900), + (218562, 97, 750), + (218562, 95, 750), + (218562, 94, 900), + (218562, 93, 900), + (218562, 96, 900), + (218562, 136, 30), + (218563, 91, 1125), + (218563, 90, 750), + (218563, 92, 1125), + (218563, 97, 750), + (218563, 95, 750), + (218563, 94, 1125), + (218563, 93, 1125), + (218563, 96, 1125), + (218563, 136, 45), + (218564, 91, 100), + (218564, 90, 100), + (218564, 92, 100), + (218564, 97, 100), + (218564, 95, 100), + (218564, 94, 100), + (218564, 93, 100), + (218564, 96, 100), + (218564, 153, 15), + (218565, 91, 150), + (218565, 90, 125), + (218565, 92, 150), + (218565, 97, 125), + (218565, 95, 125), + (218565, 94, 150), + (218565, 93, 150), + (218565, 96, 150), + (218565, 153, 20), + (218566, 91, 125), + (218566, 90, 125), + (218566, 92, 125), + (218566, 97, 125), + (218566, 95, 125), + (218566, 94, 125), + (218566, 93, 125), + (218566, 96, 125), + (218566, 165, 5), + (218567, 91, 165), + (218567, 90, 165), + (218567, 92, 165), + (218567, 97, 165), + (218567, 95, 165), + (218567, 94, 165), + (218567, 93, 165), + (218567, 96, 165), + (218567, 165, 20), + (218568, 91, 150), + (218568, 90, 150), + (218568, 92, 150), + (218568, 97, 150), + (218568, 95, 150), + (218568, 94, 150), + (218568, 93, 150), + (218568, 96, 150), + (218568, 119, 10), + (218569, 91, 200), + (218569, 90, 200), + (218569, 92, 200), + (218569, 97, 200), + (218569, 95, 200), + (218569, 94, 200), + (218569, 93, 200), + (218569, 96, 200), + (218569, 119, 20), + (218570, 91, 850), + (218570, 90, 850), + (218570, 92, 850), + (218570, 97, 850), + (218570, 95, 850), + (218570, 94, 850), + (218570, 93, 850), + (218570, 96, 850), + (218570, 1, 75), + (218571, 91, 1030), + (218571, 90, 1000), + (218571, 92, 1030), + (218571, 97, 1000), + (218571, 95, 1000), + (218571, 94, 1030), + (218571, 93, 1030), + (218571, 96, 1030), + (218571, 1, 150), + (218572, 91, 375), + (218572, 90, 375), + (218572, 92, 375), + (218572, 97, 375), + (218572, 95, 375), + (218572, 94, 375), + (218572, 93, 375), + (218572, 96, 375), + (218572, 156, 10), + (218573, 91, 505), + (218573, 90, 375), + (218573, 92, 505), + (218573, 97, 375), + (218573, 95, 375), + (218573, 94, 505), + (218573, 93, 505), + (218573, 96, 505), + (218573, 156, 20), + (218574, 91, 610), + (218574, 90, 610), + (218574, 92, 610), + (218574, 97, 610), + (218574, 95, 610), + (218574, 94, 610), + (218574, 93, 610), + (218574, 96, 610), + (218574, 154, 20), + (218575, 91, 815), + (218575, 90, 735), + (218575, 92, 815), + (218575, 97, 735), + (218575, 95, 735), + (218575, 94, 815), + (218575, 93, 815), + (218575, 96, 815), + (218575, 154, 30), + (218577, 91, 1500), + (218577, 90, 1500), + (218577, 92, 1500), + (218577, 97, 1500), + (218577, 95, 1500), + (218577, 94, 1500), + (218577, 93, 1000), + (218577, 96, 1000), + (218577, 221, 150), + (218577, 21, 6), + (218577, 149, 1), + (218577, 1, 1), + (218578, 91, 1800), + (218578, 90, 1800), + (218578, 92, 1800), + (218578, 97, 1800), + (218578, 95, 1800), + (218578, 94, 1800), + (218578, 93, 1200), + (218578, 96, 1200), + (218578, 221, 300), + (218578, 21, 12), + (218578, 149, 30), + (218578, 1, 150), + (218579, 91, 225), + (218579, 90, 225), + (218579, 92, 225), + (218579, 97, 225), + (218579, 95, 225), + (218579, 94, 225), + (218579, 93, 165), + (218579, 96, 165), + (218579, 16, 4), + (218579, 122, 1), + (218579, 1, 3), + (218580, 91, 325), + (218580, 90, 325), + (218580, 92, 325), + (218580, 97, 325), + (218580, 95, 325), + (218580, 94, 325), + (218580, 93, 225), + (218580, 96, 225), + (218580, 16, 8), + (218580, 122, 10), + (218580, 1, 325), + (218581, 91, 1125), + (218581, 90, 1125), + (218581, 92, 1125), + (218581, 97, 1125), + (218581, 95, 1125), + (218581, 94, 1125), + (218581, 93, 750), + (218581, 96, 750), + (218581, 136, 40), + (218581, 19, 6), + (218581, 128, 1), + (218581, 1, 100), + (218582, 91, 1350), + (218582, 90, 1350), + (218582, 92, 1350), + (218582, 97, 1350), + (218582, 95, 1350), + (218582, 94, 1350), + (218582, 93, 900), + (218582, 96, 900), + (218582, 136, 60), + (218582, 19, 12), + (218582, 128, 20), + (218582, 1, 200), + (218583, 91, 310), + (218583, 90, 310), + (218583, 92, 310), + (218583, 97, 310), + (218583, 95, 310), + (218583, 94, 310), + (218583, 93, 205), + (218583, 96, 205), + (218583, 147, 30), + (218583, 124, 15), + (218583, 20, 8), + (218583, 129, 1), + (218583, 1, 100), + (218584, 91, 375), + (218584, 90, 375), + (218584, 92, 375), + (218584, 97, 375), + (218584, 95, 375), + (218584, 94, 375), + (218584, 93, 250), + (218584, 96, 250), + (218584, 147, 40), + (218584, 124, 30), + (218584, 20, 16), + (218584, 129, 15), + (218584, 1, 250), + (218585, 91, 445), + (218585, 90, 445), + (218585, 92, 445), + (218585, 97, 445), + (218585, 95, 445), + (218585, 94, 445), + (218585, 93, 305), + (218585, 96, 305), + (218585, 119, 30), + (218585, 118, 30), + (218585, 134, 15), + (218585, 101, 15), + (218585, 103, 11), + (218585, 112, 11), + (218585, 1, 100), + (218586, 91, 550), + (218586, 90, 550), + (218586, 92, 550), + (218586, 97, 550), + (218586, 95, 550), + (218586, 94, 550), + (218586, 93, 365), + (218586, 96, 365), + (218586, 119, 40), + (218586, 118, 40), + (218586, 134, 35), + (218586, 101, 35), + (218586, 103, 22), + (218586, 112, 22), + (218586, 1, 250), + (218587, 91, 1500), + (218587, 90, 1500), + (218587, 92, 1500), + (218587, 97, 1500), + (218587, 95, 1500), + (218587, 94, 1500), + (218587, 93, 1000), + (218587, 96, 1000), + (218587, 1, 500), + (218587, 111, 8), + (218587, 18, 8), + (218587, 130, 1), + (218588, 91, 1800), + (218588, 90, 1800), + (218588, 92, 1800), + (218588, 97, 1800), + (218588, 95, 1800), + (218588, 94, 1800), + (218588, 93, 1200), + (218588, 96, 1200), + (218588, 1, 800), + (218588, 111, 24), + (218588, 18, 16), + (218588, 130, 20), + (218589, 91, 400), + (218589, 90, 400), + (218589, 92, 400), + (218589, 97, 400), + (218589, 95, 400), + (218589, 94, 400), + (218589, 93, 400), + (218589, 96, 400), + (218589, 156, 45), + (218589, 123, 30), + (218589, 127, 1), + (218589, 1, 100), + (218590, 91, 450), + (218590, 90, 450), + (218590, 92, 450), + (218590, 97, 450), + (218590, 95, 450), + (218590, 94, 450), + (218590, 93, 450), + (218590, 96, 450), + (218590, 156, 60), + (218590, 123, 50), + (218590, 127, 20), + (218590, 1, 250), + (218591, 91, 750), + (218591, 90, 750), + (218591, 92, 750), + (218591, 97, 750), + (218591, 95, 750), + (218591, 94, 750), + (218591, 93, 735), + (218591, 96, 735), + (218591, 146, 30), + (218591, 150, 30), + (218591, 17, 8), + (218591, 131, 1), + (218592, 91, 900), + (218592, 90, 900), + (218592, 92, 900), + (218592, 97, 900), + (218592, 95, 900), + (218592, 94, 900), + (218592, 93, 885), + (218592, 96, 885), + (218592, 146, 40), + (218592, 150, 45), + (218592, 17, 16), + (218592, 131, 15), + (218606, 91, 1500), + (218606, 90, 1500), + (218606, 92, 1500), + (218606, 97, 1500), + (218606, 95, 1500), + (218606, 94, 1500), + (218606, 93, 1000), + (218606, 96, 1000), + (218606, 221, 150), + (218606, 21, 6), + (218606, 149, 1), + (218606, 1, 1), + (218607, 91, 1800), + (218607, 90, 1800), + (218607, 92, 1800), + (218607, 97, 1800), + (218607, 95, 1800), + (218607, 94, 1800), + (218607, 93, 1200), + (218607, 96, 1200), + (218607, 221, 300), + (218607, 21, 12), + (218607, 149, 30), + (218607, 1, 150), + (218608, 91, 225), + (218608, 90, 225), + (218608, 92, 225), + (218608, 97, 225), + (218608, 95, 225), + (218608, 94, 225), + (218608, 93, 165), + (218608, 96, 165), + (218608, 16, 4), + (218608, 122, 1), + (218608, 1, 3), + (218609, 91, 325), + (218609, 90, 325), + (218609, 92, 325), + (218609, 97, 325), + (218609, 95, 325), + (218609, 94, 325), + (218609, 93, 225), + (218609, 96, 225), + (218609, 16, 8), + (218609, 122, 10), + (218609, 1, 325), + (218610, 91, 1125), + (218610, 90, 1125), + (218610, 92, 1125), + (218610, 97, 1125), + (218610, 95, 1125), + (218610, 94, 1125), + (218610, 93, 750), + (218610, 96, 750), + (218610, 136, 40), + (218610, 19, 6), + (218610, 128, 1), + (218610, 1, 100), + (218611, 91, 1350), + (218611, 90, 1350), + (218611, 92, 1350), + (218611, 97, 1350), + (218611, 95, 1350), + (218611, 94, 1350), + (218611, 93, 900), + (218611, 96, 900), + (218611, 136, 60), + (218611, 19, 12), + (218611, 128, 20), + (218611, 1, 200), + (218612, 91, 310), + (218612, 90, 310), + (218612, 92, 310), + (218612, 97, 310), + (218612, 95, 310), + (218612, 94, 310), + (218612, 93, 205), + (218612, 96, 205), + (218612, 147, 30), + (218612, 124, 15), + (218612, 20, 8), + (218612, 129, 1), + (218612, 1, 100), + (218613, 91, 375), + (218613, 90, 375), + (218613, 92, 375), + (218613, 97, 375), + (218613, 95, 375), + (218613, 94, 375), + (218613, 93, 250), + (218613, 96, 250), + (218613, 147, 40), + (218613, 124, 30), + (218613, 20, 16), + (218613, 129, 15), + (218613, 1, 250), + (218624, 91, 445), + (218624, 90, 445), + (218624, 92, 445), + (218624, 97, 445), + (218624, 95, 445), + (218624, 94, 445), + (218624, 93, 305), + (218624, 96, 305), + (218624, 119, 30), + (218624, 118, 30), + (218624, 134, 15), + (218624, 101, 15), + (218624, 103, 11), + (218624, 112, 11), + (218624, 1, 100), + (218625, 91, 550), + (218625, 90, 550), + (218625, 92, 550), + (218625, 97, 550), + (218625, 95, 550), + (218625, 94, 550), + (218625, 93, 365), + (218625, 96, 365), + (218625, 119, 40), + (218625, 118, 40), + (218625, 134, 35), + (218625, 101, 35), + (218625, 103, 22), + (218625, 112, 22), + (218625, 1, 250), + (218626, 91, 1500), + (218626, 90, 1500), + (218626, 92, 1500), + (218626, 97, 1500), + (218626, 95, 1500), + (218626, 94, 1500), + (218626, 93, 1000), + (218626, 96, 1000), + (218626, 1, 500), + (218626, 111, 8), + (218626, 18, 8), + (218626, 130, 1), + (218627, 91, 1800), + (218627, 90, 1800), + (218627, 92, 1800), + (218627, 97, 1800), + (218627, 95, 1800), + (218627, 94, 1800), + (218627, 93, 1200), + (218627, 96, 1200), + (218627, 1, 800), + (218627, 111, 24), + (218627, 18, 16), + (218627, 130, 20), + (218633, 91, 400), + (218633, 90, 400), + (218633, 92, 400), + (218633, 97, 400), + (218633, 95, 400), + (218633, 94, 400), + (218633, 93, 400), + (218633, 96, 400), + (218633, 156, 45), + (218633, 123, 30), + (218633, 127, 1), + (218633, 1, 100), + (218634, 91, 450), + (218634, 90, 450), + (218634, 92, 450), + (218634, 97, 450), + (218634, 95, 450), + (218634, 94, 450), + (218634, 93, 450), + (218634, 96, 450), + (218634, 156, 60), + (218634, 123, 50), + (218634, 127, 20), + (218634, 1, 250), + (218635, 91, 750), + (218635, 90, 750), + (218635, 92, 750), + (218635, 97, 750), + (218635, 95, 750), + (218635, 94, 750), + (218635, 93, 735), + (218635, 96, 735), + (218635, 146, 30), + (218635, 150, 30), + (218635, 17, 8), + (218635, 131, 1), + (218636, 91, 900), + (218636, 90, 900), + (218636, 92, 900), + (218636, 97, 900), + (218636, 95, 900), + (218636, 94, 900), + (218636, 93, 885), + (218636, 96, 885), + (218636, 146, 40), + (218636, 150, 45), + (218636, 17, 16), + (218636, 131, 15), + (218689, 91, 600), + (218689, 90, 600), + (218689, 92, 600), + (218689, 97, 600), + (218689, 95, 600), + (218689, 94, 600), + (218689, 93, 600), + (218689, 96, 600), + (218689, 146, 20), + (218689, 150, 15), + (218690, 91, 750), + (218690, 90, 750), + (218690, 92, 750), + (218690, 97, 735), + (218690, 95, 735), + (218690, 94, 750), + (218690, 93, 735), + (218690, 96, 735), + (218690, 146, 30), + (218690, 150, 30), + (218691, 91, 350), + (218691, 90, 350), + (218691, 92, 350), + (218691, 97, 350), + (218691, 95, 350), + (218691, 94, 350), + (218691, 93, 350), + (218691, 96, 350), + (218691, 156, 30), + (218691, 123, 10), + (218692, 91, 400), + (218692, 90, 400), + (218692, 92, 400), + (218692, 97, 400), + (218692, 95, 400), + (218692, 94, 400), + (218692, 93, 400), + (218692, 96, 400), + (218692, 156, 45), + (218692, 123, 30), + (218693, 91, 1200), + (218693, 90, 1200), + (218693, 92, 1200), + (218693, 97, 1000), + (218693, 95, 1000), + (218693, 94, 1200), + (218693, 93, 1000), + (218693, 96, 1000), + (218693, 1, 300), + (218693, 18, 4), + (218694, 91, 1500), + (218694, 90, 1500), + (218694, 92, 1500), + (218694, 97, 1200), + (218694, 95, 1200), + (218694, 94, 1500), + (218694, 93, 1000), + (218694, 96, 1000), + (218694, 1, 500), + (218694, 18, 8), + (218696, 91, 335), + (218696, 90, 335), + (218696, 92, 335), + (218696, 97, 305), + (218696, 95, 305), + (218696, 94, 335), + (218696, 93, 305), + (218696, 96, 305), + (218696, 119, 20), + (218696, 118, 20), + (218696, 134, 5), + (218696, 101, 5), + (218697, 91, 445), + (218697, 90, 445), + (218697, 92, 445), + (218697, 97, 365), + (218697, 95, 365), + (218697, 94, 445), + (218697, 93, 305), + (218697, 96, 305), + (218697, 119, 30), + (218697, 118, 30), + (218697, 134, 15), + (218697, 101, 15), + (218698, 91, 250), + (218698, 90, 250), + (218698, 92, 250), + (218698, 97, 205), + (218698, 95, 205), + (218698, 94, 250), + (218698, 93, 205), + (218698, 96, 205), + (218698, 147, 20), + (218698, 124, 5), + (218699, 91, 310), + (218699, 90, 310), + (218699, 92, 310), + (218699, 97, 250), + (218699, 95, 250), + (218699, 94, 310), + (218699, 93, 205), + (218699, 96, 205), + (218699, 147, 30), + (218699, 124, 15), + (218717, 91, 900), + (218717, 90, 900), + (218717, 92, 900), + (218717, 97, 750), + (218717, 95, 750), + (218717, 94, 900), + (218717, 93, 750), + (218717, 96, 750), + (218717, 136, 30), + (218718, 91, 1125), + (218718, 90, 1125), + (218718, 92, 1125), + (218718, 97, 900), + (218718, 95, 900), + (218718, 94, 1125), + (218718, 93, 750), + (218718, 96, 750), + (218718, 136, 40), + (218726, 91, 900), + (218726, 90, 900), + (218726, 92, 900), + (218726, 97, 900), + (218726, 95, 900), + (218726, 94, 900), + (218726, 93, 900), + (218726, 96, 900), + (218726, 221, 75), + (218727, 91, 1500), + (218727, 90, 1500), + (218727, 92, 1500), + (218727, 97, 1200), + (218727, 95, 1200), + (218727, 94, 1500), + (218727, 93, 1000), + (218727, 96, 1000), + (218727, 221, 150), + (218820, 91, 735), + (218820, 90, 750), + (218820, 92, 1105), + (218820, 97, 735), + (218820, 95, 750), + (218820, 94, 1105), + (218820, 93, 735), + (218820, 96, 750), + (218820, 1, 200), + (218820, 141, 45), + (218820, 17, 5), + (218820, 161, 1), + (218820, 181, 8), + (218821, 91, 885), + (218821, 90, 900), + (218821, 92, 1325), + (218821, 97, 885), + (218821, 95, 900), + (218821, 94, 1325), + (218821, 93, 885), + (218821, 96, 900), + (218821, 1, 400), + (218821, 141, 60), + (218821, 17, 10), + (218821, 161, 50), + (218821, 181, 16), + (218858, 91, 225), + (218858, 90, 375), + (218858, 92, 730), + (218858, 97, 225), + (218858, 95, 375), + (218858, 94, 730), + (218858, 93, 225), + (218858, 96, 375), + (218858, 156, 30), + (218858, 126, 30), + (218858, 157, 30), + (218858, 122, 1), + (218858, 1, 100), + (218859, 91, 300), + (218859, 90, 450), + (218859, 92, 875), + (218859, 97, 300), + (218859, 95, 450), + (218859, 94, 875), + (218859, 93, 300), + (218859, 96, 450), + (218859, 156, 40), + (218859, 126, 60), + (218859, 157, 60), + (218859, 122, 24), + (218859, 1, 250), + (218860, 91, 1000), + (218860, 90, 1250), + (218860, 92, 1500), + (218860, 97, 1000), + (218860, 95, 1250), + (218860, 94, 1500), + (218860, 93, 1000), + (218860, 96, 1250), + (218860, 115, 30), + (218860, 158, 40), + (218860, 18, 6), + (218860, 130, 1), + (218860, 162, 10), + (218860, 181, 12), + (218861, 91, 1200), + (218861, 90, 1500), + (218861, 92, 1800), + (218861, 97, 1200), + (218861, 95, 1500), + (218861, 94, 1800), + (218861, 93, 1200), + (218861, 96, 1500), + (218861, 115, 50), + (218861, 158, 50), + (218861, 18, 12), + (218861, 130, 24), + (218861, 162, 20), + (218861, 181, 24), + (218862, 91, 150), + (218862, 90, 375), + (218862, 92, 460), + (218862, 97, 150), + (218862, 95, 375), + (218862, 94, 460), + (218862, 93, 150), + (218862, 96, 375), + (218862, 123, 12), + (218862, 149, 16), + (218862, 159, 10), + (218862, 127, 1), + (218862, 1, 100), + (218863, 91, 200), + (218863, 90, 500), + (218863, 92, 550), + (218863, 97, 200), + (218863, 95, 500), + (218863, 94, 550), + (218863, 93, 200), + (218863, 96, 500), + (218863, 123, 16), + (218863, 149, 24), + (218863, 159, 20), + (218863, 127, 12), + (218863, 1, 250), + (218864, 91, 205), + (218864, 90, 250), + (218864, 92, 565), + (218864, 97, 205), + (218864, 95, 250), + (218864, 94, 565), + (218864, 93, 205), + (218864, 96, 250), + (218864, 125, 40), + (218864, 163, 30), + (218864, 20, 10), + (218864, 1, 100), + (218864, 129, 1), + (218865, 91, 250), + (218865, 90, 300), + (218865, 92, 675), + (218865, 97, 250), + (218865, 95, 300), + (218865, 94, 675), + (218865, 93, 250), + (218865, 96, 300), + (218865, 125, 50), + (218865, 163, 50), + (218865, 20, 20), + (218865, 1, 250), + (218865, 129, 24), + (218866, 91, 750), + (218866, 90, 1125), + (218866, 92, 1125), + (218866, 97, 750), + (218866, 95, 1125), + (218866, 94, 1125), + (218866, 93, 750), + (218866, 96, 1125), + (218866, 19, 15), + (218866, 160, 20), + (218866, 131, 1), + (218866, 150, 10), + (218866, 1, 100), + (218867, 91, 900), + (218867, 90, 1350), + (218867, 92, 1350), + (218867, 97, 900), + (218867, 95, 1350), + (218867, 94, 1350), + (218867, 93, 900), + (218867, 96, 1350), + (218867, 19, 20), + (218867, 160, 40), + (218867, 131, 24), + (218867, 150, 20), + (218867, 1, 200), + (218868, 91, 125), + (218868, 90, 175), + (218868, 92, 440), + (218868, 97, 125), + (218868, 95, 175), + (218868, 94, 440), + (218868, 93, 125), + (218868, 96, 175), + (218868, 181, 10), + (218868, 1, 3), + (218868, 16, 3), + (218868, 128, 1), + (218869, 91, 175), + (218869, 90, 225), + (218869, 92, 525), + (218869, 97, 175), + (218869, 95, 225), + (218869, 94, 525), + (218869, 93, 175), + (218869, 96, 225), + (218869, 181, 20), + (218869, 1, 325), + (218869, 16, 6), + (218869, 128, 12), + (218870, 91, 1000), + (218870, 90, 1585), + (218870, 92, 2085), + (218870, 97, 1000), + (218870, 95, 1585), + (218870, 94, 2085), + (218870, 93, 1000), + (218870, 96, 1585), + (218870, 21, 10), + (218870, 221, 250), + (218870, 1, 1), + (218871, 91, 1200), + (218871, 90, 1900), + (218871, 92, 2500), + (218871, 97, 1200), + (218871, 95, 1900), + (218871, 94, 2500), + (218871, 93, 1200), + (218871, 96, 1900), + (218871, 21, 20), + (218871, 221, 500), + (218871, 1, 150), + (218881, 91, 1000), + (218881, 90, 1585), + (218881, 92, 2085), + (218881, 97, 1585), + (218881, 95, 1000), + (218881, 94, 2085), + (218881, 93, 1000), + (218881, 96, 1585), + (218881, 21, 10), + (218881, 221, 250), + (218881, 1, 1), + (218882, 91, 1200), + (218882, 90, 1900), + (218882, 92, 2500), + (218882, 97, 1900), + (218882, 95, 1200), + (218882, 94, 2500), + (218882, 93, 1200), + (218882, 96, 1900), + (218882, 21, 20), + (218882, 221, 500), + (218882, 1, 150), + (218883, 91, 125), + (218883, 90, 175), + (218883, 92, 440), + (218883, 97, 175), + (218883, 95, 125), + (218883, 94, 440), + (218883, 93, 125), + (218883, 96, 175), + (218883, 181, 10), + (218883, 1, 3), + (218883, 16, 3), + (218883, 128, 1), + (218884, 91, 175), + (218884, 90, 225), + (218884, 92, 525), + (218884, 97, 225), + (218884, 95, 175), + (218884, 94, 525), + (218884, 93, 175), + (218884, 96, 225), + (218884, 181, 20), + (218884, 1, 325), + (218884, 16, 6), + (218884, 128, 12), + (218885, 91, 750), + (218885, 90, 1125), + (218885, 92, 1125), + (218885, 97, 1125), + (218885, 95, 750), + (218885, 94, 1125), + (218885, 93, 750), + (218885, 96, 1125), + (218885, 19, 15), + (218885, 160, 20), + (218885, 131, 1), + (218885, 150, 10), + (218885, 1, 100), + (218886, 91, 900), + (218886, 90, 1350), + (218886, 92, 1350), + (218886, 97, 1350), + (218886, 95, 900), + (218886, 94, 1350), + (218886, 93, 900), + (218886, 96, 1350), + (218886, 19, 20), + (218886, 160, 40), + (218886, 131, 24), + (218886, 150, 20), + (218886, 1, 200), + (218899, 91, 205), + (218899, 90, 250), + (218899, 92, 565), + (218899, 97, 250), + (218899, 95, 205), + (218899, 94, 565), + (218899, 93, 205), + (218899, 96, 250), + (218899, 125, 40), + (218899, 163, 30), + (218899, 20, 10), + (218899, 1, 100), + (218899, 129, 1), + (218900, 91, 250), + (218900, 90, 300), + (218900, 92, 675), + (218900, 97, 300), + (218900, 95, 250), + (218900, 94, 675), + (218900, 93, 250), + (218900, 96, 300), + (218900, 125, 50), + (218900, 163, 50), + (218900, 20, 20), + (218900, 1, 250), + (218900, 129, 24), + (218901, 91, 150), + (218901, 90, 375), + (218901, 92, 460), + (218901, 97, 375), + (218901, 95, 150), + (218901, 94, 460), + (218901, 93, 150), + (218901, 96, 375), + (218901, 123, 12), + (218901, 149, 16), + (218901, 159, 10), + (218901, 127, 1), + (218901, 1, 100), + (218902, 91, 200), + (218902, 90, 500), + (218902, 92, 550), + (218902, 97, 500), + (218902, 95, 200), + (218902, 94, 550), + (218902, 93, 200), + (218902, 96, 500), + (218902, 123, 16), + (218902, 149, 24), + (218902, 159, 20), + (218902, 127, 12), + (218902, 1, 250), + (218903, 91, 1000), + (218903, 90, 1250), + (218903, 92, 1500), + (218903, 97, 1250), + (218903, 95, 1000), + (218903, 94, 1500), + (218903, 93, 1000), + (218903, 96, 1250), + (218903, 115, 30), + (218903, 158, 40), + (218903, 18, 6), + (218903, 130, 1), + (218903, 162, 10), + (218903, 181, 12), + (218904, 91, 1200), + (218904, 90, 1500), + (218904, 92, 1800), + (218904, 97, 1500), + (218904, 95, 1200), + (218904, 94, 1800), + (218904, 93, 1200), + (218904, 96, 1500), + (218904, 115, 50), + (218904, 158, 50), + (218904, 18, 12), + (218904, 130, 24), + (218904, 162, 20), + (218904, 181, 24), + (218905, 91, 225), + (218905, 90, 375), + (218905, 92, 730), + (218905, 97, 375), + (218905, 95, 225), + (218905, 94, 730), + (218905, 93, 225), + (218905, 96, 375), + (218905, 156, 30), + (218905, 126, 30), + (218905, 157, 30), + (218905, 122, 1), + (218905, 1, 100), + (218906, 91, 300), + (218906, 90, 450), + (218906, 92, 875), + (218906, 97, 450), + (218906, 95, 300), + (218906, 94, 875), + (218906, 93, 300), + (218906, 96, 450), + (218906, 156, 40), + (218906, 126, 60), + (218906, 157, 60), + (218906, 122, 24), + (218906, 1, 250), + (218907, 91, 735), + (218907, 90, 750), + (218907, 92, 1105), + (218907, 97, 750), + (218907, 95, 735), + (218907, 94, 1105), + (218907, 93, 735), + (218907, 96, 750), + (218907, 1, 200), + (218907, 141, 45), + (218907, 17, 5), + (218907, 161, 1), + (218907, 181, 8), + (218908, 91, 885), + (218908, 90, 900), + (218908, 92, 1325), + (218908, 97, 900), + (218908, 95, 885), + (218908, 94, 1325), + (218908, 93, 885), + (218908, 96, 900), + (218908, 1, 400), + (218908, 141, 60), + (218908, 17, 10), + (218908, 161, 50), + (218908, 181, 16), + (218909, 91, 600), + (218909, 90, 600), + (218909, 92, 885), + (218909, 97, 600), + (218909, 95, 600), + (218909, 94, 885), + (218909, 93, 600), + (218909, 96, 600), + (218909, 1, 100), + (218909, 141, 30), + (218910, 91, 735), + (218910, 90, 750), + (218910, 92, 1105), + (218910, 97, 735), + (218910, 95, 735), + (218910, 94, 1105), + (218910, 93, 735), + (218910, 96, 750), + (218910, 1, 200), + (218910, 141, 45), + (218911, 91, 225), + (218911, 90, 300), + (218911, 92, 585), + (218911, 97, 225), + (218911, 95, 225), + (218911, 94, 585), + (218911, 93, 225), + (218911, 96, 300), + (218911, 156, 20), + (218911, 126, 10), + (218912, 91, 225), + (218912, 90, 375), + (218912, 92, 730), + (218912, 97, 225), + (218912, 95, 225), + (218912, 94, 730), + (218912, 93, 225), + (218912, 96, 375), + (218912, 156, 30), + (218912, 126, 30), + (218913, 91, 1000), + (218913, 90, 1000), + (218913, 92, 1250), + (218913, 97, 1000), + (218913, 95, 1000), + (218913, 94, 1250), + (218913, 93, 1000), + (218913, 96, 1000), + (218913, 115, 20), + (218913, 158, 20), + (218914, 91, 1000), + (218914, 90, 1250), + (218914, 92, 1500), + (218914, 97, 1000), + (218914, 95, 1000), + (218914, 94, 1500), + (218914, 93, 1000), + (218914, 96, 1250), + (218914, 115, 30), + (218914, 158, 40), + (218915, 91, 150), + (218915, 90, 300), + (218915, 92, 370), + (218915, 97, 150), + (218915, 95, 150), + (218915, 94, 370), + (218915, 93, 150), + (218915, 96, 300), + (218915, 123, 8), + (218915, 149, 8), + (218916, 91, 150), + (218916, 90, 375), + (218916, 92, 460), + (218916, 97, 150), + (218916, 95, 150), + (218916, 94, 460), + (218916, 93, 150), + (218916, 96, 375), + (218916, 123, 12), + (218916, 149, 16), + (218917, 91, 200), + (218917, 90, 200), + (218917, 92, 355), + (218917, 97, 200), + (218917, 95, 200), + (218917, 94, 355), + (218917, 93, 200), + (218917, 96, 200), + (218917, 125, 30), + (218917, 163, 20), + (218918, 91, 205), + (218918, 90, 250), + (218918, 92, 565), + (218918, 97, 205), + (218918, 95, 205), + (218918, 94, 565), + (218918, 93, 205), + (218918, 96, 250), + (218918, 125, 40), + (218918, 163, 30), + (218919, 91, 750), + (218919, 90, 900), + (218919, 92, 900), + (218919, 97, 750), + (218919, 95, 750), + (218919, 94, 900), + (218919, 93, 750), + (218919, 96, 900), + (218919, 19, 10), + (218920, 91, 750), + (218920, 90, 1125), + (218920, 92, 1125), + (218920, 97, 750), + (218920, 95, 750), + (218920, 94, 1125), + (218920, 93, 750), + (218920, 96, 1125), + (218920, 19, 15), + (218921, 91, 125), + (218921, 90, 125), + (218921, 92, 320), + (218921, 97, 125), + (218921, 95, 125), + (218921, 94, 320), + (218921, 93, 125), + (218921, 96, 125), + (218921, 181, 5), + (218922, 91, 125), + (218922, 90, 175), + (218922, 92, 440), + (218922, 97, 125), + (218922, 95, 125), + (218922, 94, 440), + (218922, 93, 125), + (218922, 96, 175), + (218922, 181, 10), + (218923, 91, 450), + (218923, 90, 450), + (218923, 92, 665), + (218923, 97, 450), + (218923, 95, 450), + (218923, 94, 665), + (218923, 93, 450), + (218923, 96, 450), + (218923, 1, 50), + (218924, 91, 600), + (218924, 90, 600), + (218924, 92, 885), + (218924, 97, 600), + (218924, 95, 600), + (218924, 94, 885), + (218924, 93, 600), + (218924, 96, 600), + (218924, 1, 100), + (218925, 91, 150), + (218925, 90, 225), + (218925, 92, 280), + (218925, 97, 150), + (218925, 95, 150), + (218925, 94, 280), + (218925, 93, 150), + (218925, 96, 225), + (218925, 123, 4), + (218926, 91, 150), + (218926, 90, 300), + (218926, 92, 370), + (218926, 97, 150), + (218926, 95, 150), + (218926, 94, 370), + (218926, 93, 150), + (218926, 96, 300), + (218926, 123, 8), + (218929, 91, 750), + (218929, 90, 750), + (218929, 92, 1000), + (218929, 97, 750), + (218929, 95, 750), + (218929, 94, 1000), + (218929, 93, 750), + (218929, 96, 750), + (218929, 115, 10), + (218930, 91, 1000), + (218930, 90, 1000), + (218930, 92, 1250), + (218930, 97, 1000), + (218930, 95, 1000), + (218930, 94, 1250), + (218930, 93, 1000), + (218930, 96, 1000), + (218930, 115, 20), + (218931, 91, 225), + (218931, 90, 225), + (218931, 92, 440), + (218931, 97, 225), + (218931, 95, 225), + (218931, 94, 440), + (218931, 93, 225), + (218931, 96, 225), + (218931, 156, 10), + (218932, 91, 225), + (218932, 90, 300), + (218932, 92, 585), + (218932, 97, 225), + (218932, 95, 225), + (218932, 94, 585), + (218932, 93, 225), + (218932, 96, 300), + (218932, 156, 20), + (218933, 91, 200), + (218933, 90, 200), + (218933, 92, 245), + (218933, 97, 200), + (218933, 95, 200), + (218933, 94, 245), + (218933, 93, 200), + (218933, 96, 200), + (218933, 125, 20), + (218934, 91, 200), + (218934, 90, 200), + (218934, 92, 355), + (218934, 97, 200), + (218934, 95, 200), + (218934, 94, 355), + (218934, 93, 200), + (218934, 96, 200), + (218934, 125, 30), + (218945, 91, 735), + (218945, 90, 750), + (218945, 92, 750), + (218945, 97, 735), + (218945, 95, 750), + (218945, 94, 750), + (218945, 93, 750), + (218945, 96, 750), + (218945, 1, 225), + (218945, 150, 15), + (218945, 17, 6), + (218945, 161, 1), + (218945, 181, 12), + (218945, 128, 1), + (218946, 91, 885), + (218946, 90, 900), + (218946, 92, 900), + (218946, 97, 885), + (218946, 95, 900), + (218946, 94, 900), + (218946, 93, 900), + (218946, 96, 900), + (218946, 1, 300), + (218946, 150, 25), + (218946, 17, 12), + (218946, 161, 30), + (218946, 181, 24), + (218946, 128, 25), + (218947, 91, 225), + (218947, 90, 375), + (218947, 92, 375), + (218947, 97, 225), + (218947, 95, 375), + (218947, 94, 375), + (218947, 93, 375), + (218947, 96, 375), + (218947, 156, 24), + (218947, 153, 24), + (218947, 319, 1), + (218947, 122, 1), + (218947, 1, 100), + (218948, 91, 300), + (218948, 90, 450), + (218948, 92, 450), + (218948, 97, 300), + (218948, 95, 450), + (218948, 94, 450), + (218948, 93, 450), + (218948, 96, 450), + (218948, 156, 32), + (218948, 153, 32), + (218948, 319, 3), + (218948, 122, 30), + (218948, 1, 250), + (218949, 91, 1000), + (218949, 90, 1250), + (218949, 92, 1250), + (218949, 97, 1000), + (218949, 95, 1250), + (218949, 94, 1250), + (218949, 93, 1250), + (218949, 96, 1250), + (218949, 221, 550), + (218949, 136, 20), + (218949, 133, 5), + (218949, 18, 5), + (218949, 127, 1), + (218949, 181, 16), + (218950, 91, 1200), + (218950, 90, 1500), + (218950, 92, 1500), + (218950, 97, 1200), + (218950, 95, 1500), + (218950, 94, 1500), + (218950, 93, 1500), + (218950, 96, 1500), + (218950, 221, 800), + (218950, 136, 30), + (218950, 133, 15), + (218950, 18, 10), + (218950, 127, 15), + (218950, 181, 32), + (218959, 91, 150), + (218959, 90, 250), + (218959, 92, 250), + (218959, 97, 150), + (218959, 95, 250), + (218959, 94, 250), + (218959, 93, 250), + (218959, 96, 250), + (218959, 149, 18), + (218959, 123, 12), + (218959, 154, 12), + (218959, 131, 1), + (218959, 1, 100), + (218960, 91, 200), + (218960, 90, 300), + (218960, 92, 300), + (218960, 97, 200), + (218960, 95, 300), + (218960, 94, 300), + (218960, 93, 300), + (218960, 96, 300), + (218960, 149, 24), + (218960, 123, 16), + (218960, 154, 16), + (218960, 131, 12), + (218960, 1, 250), + (218963, 91, 205), + (218963, 90, 205), + (218963, 92, 205), + (218963, 97, 205), + (218963, 95, 205), + (218963, 94, 205), + (218963, 93, 205), + (218963, 96, 205), + (218963, 112, 24), + (218963, 115, 15), + (218963, 155, 20), + (218963, 130, 1), + (218963, 20, 10), + (218963, 1, 100), + (218964, 91, 250), + (218964, 90, 250), + (218964, 92, 250), + (218964, 97, 250), + (218964, 95, 250), + (218964, 94, 250), + (218964, 93, 250), + (218964, 96, 250), + (218964, 112, 32), + (218964, 115, 20), + (218964, 155, 30), + (218964, 130, 25), + (218964, 20, 20), + (218964, 1, 250), + (218965, 91, 750), + (218965, 90, 1000), + (218965, 92, 1000), + (218965, 97, 750), + (218965, 95, 1000), + (218965, 94, 1000), + (218965, 93, 1000), + (218965, 96, 1000), + (218965, 19, 10), + (218965, 160, 20), + (218965, 141, 15), + (218965, 129, 1), + (218965, 1, 100), + (218966, 91, 900), + (218966, 90, 1200), + (218966, 92, 1200), + (218966, 97, 900), + (218966, 95, 1200), + (218966, 94, 1200), + (218966, 93, 1200), + (218966, 96, 1200), + (218966, 19, 20), + (218966, 160, 40), + (218966, 141, 30), + (218966, 129, 30), + (218966, 1, 200), + (218967, 91, 175), + (218967, 90, 230), + (218967, 92, 230), + (218967, 97, 125), + (218967, 95, 230), + (218967, 94, 230), + (218967, 93, 230), + (218967, 96, 230), + (218967, 181, 10), + (218967, 1, 3), + (218967, 16, 3), + (218967, 149, 5), + (218968, 91, 225), + (218968, 90, 275), + (218968, 92, 225), + (218968, 97, 225), + (218968, 95, 275), + (218968, 94, 275), + (218968, 93, 275), + (218968, 96, 275), + (218968, 181, 15), + (218968, 1, 300), + (218968, 16, 6), + (218968, 149, 25), + (218969, 91, 1000), + (218969, 90, 1585), + (218969, 92, 1585), + (218969, 97, 1000), + (218969, 95, 1585), + (218969, 94, 1585), + (218969, 93, 1585), + (218969, 96, 1585), + (218969, 21, 10), + (218969, 1, 2), + (218969, 162, 10), + (218970, 91, 1200), + (218970, 90, 1900), + (218970, 92, 1900), + (218970, 97, 1200), + (218970, 95, 1900), + (218970, 94, 1900), + (218970, 93, 1900), + (218970, 96, 1900), + (218970, 21, 20), + (218970, 1, 200), + (218970, 162, 60), + (219021, 118, -550), + (219021, 119, -550), + (219021, 120, -550), + (219021, 149, -550), + (219023, 91, 735), + (219023, 90, 750), + (219023, 92, 750), + (219023, 97, 750), + (219023, 95, 735), + (219023, 94, 750), + (219023, 93, 750), + (219023, 96, 750), + (219023, 1, 225), + (219023, 150, 15), + (219023, 17, 6), + (219023, 161, 1), + (219023, 181, 12), + (219023, 128, 1), + (219024, 91, 885), + (219024, 90, 900), + (219024, 92, 900), + (219024, 97, 900), + (219024, 95, 885), + (219024, 94, 900), + (219024, 93, 900), + (219024, 96, 900), + (219024, 1, 300), + (219024, 150, 25), + (219024, 17, 12), + (219024, 161, 30), + (219024, 181, 24), + (219024, 128, 25), + (219025, 91, 225), + (219025, 90, 375), + (219025, 92, 375), + (219025, 97, 375), + (219025, 95, 225), + (219025, 94, 375), + (219025, 93, 375), + (219025, 96, 375), + (219025, 156, 24), + (219025, 153, 24), + (219025, 319, 1), + (219025, 122, 1), + (219025, 1, 100), + (219026, 91, 300), + (219026, 90, 450), + (219026, 92, 450), + (219026, 97, 450), + (219026, 95, 300), + (219026, 94, 450), + (219026, 93, 450), + (219026, 96, 450), + (219026, 156, 32), + (219026, 153, 32), + (219026, 319, 3), + (219026, 122, 30), + (219026, 1, 250), + (219029, 91, 1000), + (219029, 90, 1250), + (219029, 92, 1250), + (219029, 97, 1250), + (219029, 95, 1000), + (219029, 94, 1250), + (219029, 93, 1250), + (219029, 96, 1250), + (219029, 221, 550), + (219029, 136, 20), + (219029, 133, 5), + (219029, 18, 5), + (219029, 127, 1), + (219029, 181, 16), + (219030, 91, 1200), + (219030, 90, 1500), + (219030, 92, 1500), + (219030, 97, 1500), + (219030, 95, 1200), + (219030, 94, 1500), + (219030, 93, 1500), + (219030, 96, 1500), + (219030, 221, 800), + (219030, 136, 30), + (219030, 133, 15), + (219030, 18, 10), + (219030, 127, 15), + (219030, 181, 32), + (219033, 91, 150), + (219033, 90, 250), + (219033, 92, 250), + (219033, 97, 250), + (219033, 95, 150), + (219033, 94, 250), + (219033, 93, 250), + (219033, 96, 250), + (219033, 149, 18), + (219033, 123, 12), + (219033, 154, 12), + (219033, 131, 1), + (219033, 1, 100), + (219034, 91, 200), + (219034, 90, 300), + (219034, 92, 300), + (219034, 97, 300), + (219034, 95, 200), + (219034, 94, 300), + (219034, 93, 300), + (219034, 96, 300), + (219034, 149, 24), + (219034, 123, 16), + (219034, 154, 16), + (219034, 131, 12), + (219034, 1, 250), + (219037, 91, 205), + (219037, 90, 205), + (219037, 92, 205), + (219037, 97, 205), + (219037, 95, 205), + (219037, 94, 205), + (219037, 93, 205), + (219037, 96, 205), + (219037, 112, 24), + (219037, 115, 15), + (219037, 155, 20), + (219037, 130, 1), + (219037, 20, 10), + (219037, 1, 100), + (219038, 91, 250), + (219038, 90, 250), + (219038, 92, 250), + (219038, 97, 250), + (219038, 95, 250), + (219038, 94, 250), + (219038, 93, 250), + (219038, 96, 250), + (219038, 112, 32), + (219038, 115, 20), + (219038, 155, 30), + (219038, 130, 25), + (219038, 20, 20), + (219038, 1, 250), + (219041, 91, 750), + (219041, 90, 1000), + (219041, 92, 1000), + (219041, 97, 1000), + (219041, 95, 750), + (219041, 94, 1000), + (219041, 93, 1000), + (219041, 96, 1000), + (219041, 19, 10), + (219041, 160, 20), + (219041, 141, 15), + (219041, 129, 1), + (219041, 1, 100), + (219042, 91, 900), + (219042, 90, 1200), + (219042, 92, 1200), + (219042, 97, 1200), + (219042, 95, 900), + (219042, 94, 1200), + (219042, 93, 1200), + (219042, 96, 1200), + (219042, 19, 20), + (219042, 160, 40), + (219042, 141, 30), + (219042, 129, 30), + (219042, 1, 200), + (219045, 91, 175), + (219045, 90, 230), + (219045, 92, 230), + (219045, 97, 230), + (219045, 95, 125), + (219045, 94, 230), + (219045, 93, 230), + (219045, 96, 230), + (219045, 181, 10), + (219045, 1, 3), + (219045, 16, 3), + (219045, 149, 5), + (219046, 91, 225), + (219046, 90, 275), + (219046, 92, 225), + (219046, 97, 275), + (219046, 95, 225), + (219046, 94, 275), + (219046, 93, 275), + (219046, 96, 275), + (219046, 181, 15), + (219046, 1, 300), + (219046, 16, 6), + (219046, 149, 25), + (219049, 91, 1000), + (219049, 90, 1585), + (219049, 92, 1585), + (219049, 97, 1585), + (219049, 95, 1000), + (219049, 94, 1585), + (219049, 93, 1585), + (219049, 96, 1585), + (219049, 21, 10), + (219049, 1, 2), + (219049, 162, 10), + (219050, 91, 1200), + (219050, 90, 1900), + (219050, 92, 1900), + (219050, 97, 1900), + (219050, 95, 1200), + (219050, 94, 1900), + (219050, 93, 1900), + (219050, 96, 1900), + (219050, 21, 20), + (219050, 1, 200), + (219050, 162, 60), + (219055, 91, 125), + (219055, 90, 185), + (219055, 92, 185), + (219055, 97, 125), + (219055, 95, 125), + (219055, 94, 185), + (219055, 93, 185), + (219055, 96, 185), + (219055, 181, 5), + (219056, 91, 175), + (219056, 90, 230), + (219056, 92, 230), + (219056, 97, 125), + (219056, 95, 125), + (219056, 94, 230), + (219056, 93, 230), + (219056, 96, 230), + (219056, 181, 10), + (219057, 91, 750), + (219057, 90, 800), + (219057, 92, 800), + (219057, 97, 750), + (219057, 95, 750), + (219057, 94, 800), + (219057, 93, 800), + (219057, 96, 800), + (219057, 19, 5), + (219058, 91, 750), + (219058, 90, 1000), + (219058, 92, 1000), + (219058, 97, 750), + (219058, 95, 750), + (219058, 94, 1000), + (219058, 93, 1000), + (219058, 96, 1000), + (219058, 19, 10), + (219059, 91, 165), + (219059, 90, 165), + (219059, 92, 165), + (219059, 97, 165), + (219059, 95, 165), + (219059, 94, 165), + (219059, 93, 165), + (219059, 96, 165), + (219059, 112, 16), + (219059, 115, 10), + (219059, 155, 10), + (219060, 91, 205), + (219060, 90, 205), + (219060, 92, 205), + (219060, 97, 205), + (219060, 95, 205), + (219060, 94, 205), + (219060, 93, 205), + (219060, 96, 205), + (219060, 112, 24), + (219060, 115, 15), + (219060, 155, 20), + (219061, 91, 150), + (219061, 90, 200), + (219061, 92, 200), + (219061, 97, 150), + (219061, 95, 150), + (219061, 94, 200), + (219061, 93, 200), + (219061, 96, 200), + (219061, 149, 12), + (219061, 123, 8), + (219062, 91, 150), + (219062, 90, 250), + (219062, 92, 250), + (219062, 97, 150), + (219062, 95, 150), + (219062, 94, 250), + (219062, 93, 250), + (219062, 96, 250), + (219062, 149, 18), + (219062, 123, 12), + (219065, 91, 1000), + (219065, 90, 1000), + (219065, 92, 1000), + (219065, 97, 1000), + (219065, 95, 1000), + (219065, 94, 1000), + (219065, 93, 1000), + (219065, 96, 1000), + (219065, 221, 350), + (219065, 136, 10), + (219066, 91, 1000), + (219066, 90, 1250), + (219066, 92, 1250), + (219066, 97, 1000), + (219066, 95, 1000), + (219066, 94, 1250), + (219066, 93, 1250), + (219066, 96, 1250), + (219066, 221, 550), + (219066, 136, 20), + (219067, 91, 225), + (219067, 90, 300), + (219067, 92, 300), + (219067, 97, 225), + (219067, 95, 225), + (219067, 94, 300), + (219067, 93, 300), + (219067, 96, 300), + (219067, 156, 16), + (219067, 153, 16), + (219068, 91, 225), + (219068, 90, 375), + (219068, 92, 375), + (219068, 97, 225), + (219068, 95, 225), + (219068, 94, 375), + (219068, 93, 375), + (219068, 96, 375), + (219068, 156, 24), + (219068, 153, 24), + (219069, 91, 600), + (219069, 90, 600), + (219069, 92, 600), + (219069, 97, 600), + (219069, 95, 600), + (219069, 94, 600), + (219069, 93, 600), + (219069, 96, 600), + (219069, 1, 150), + (219069, 150, 5), + (219070, 91, 735), + (219070, 90, 750), + (219070, 92, 750), + (219070, 97, 735), + (219070, 95, 735), + (219070, 94, 750), + (219070, 93, 750), + (219070, 96, 750), + (219070, 1, 225), + (219070, 150, 15), + (219086, 91, 125), + (219086, 90, 125), + (219086, 92, 125), + (219086, 97, 125), + (219086, 95, 125), + (219086, 94, 125), + (219086, 93, 125), + (219086, 96, 125), + (219086, 112, 8), + (219087, 91, 165), + (219087, 90, 165), + (219087, 92, 165), + (219087, 97, 165), + (219087, 95, 165), + (219087, 94, 165), + (219087, 93, 165), + (219087, 96, 165), + (219087, 112, 16), + (219088, 91, 150), + (219088, 90, 150), + (219088, 92, 150), + (219088, 97, 150), + (219088, 95, 150), + (219088, 94, 150), + (219088, 93, 150), + (219088, 96, 150), + (219088, 149, 4), + (219089, 91, 150), + (219089, 90, 200), + (219089, 92, 200), + (219089, 97, 150), + (219089, 95, 150), + (219089, 94, 200), + (219089, 93, 200), + (219089, 96, 200), + (219089, 149, 12), + (219092, 91, 750), + (219092, 90, 750), + (219092, 92, 750), + (219092, 97, 750), + (219092, 95, 750), + (219092, 94, 750), + (219092, 93, 750), + (219092, 96, 750), + (219092, 221, 150), + (219093, 91, 1000), + (219093, 90, 1000), + (219093, 92, 1000), + (219093, 97, 1000), + (219093, 95, 1000), + (219093, 94, 1000), + (219093, 93, 1000), + (219093, 96, 1000), + (219093, 221, 350), + (219096, 91, 450), + (219096, 90, 450), + (219096, 92, 450), + (219096, 97, 450), + (219096, 95, 450), + (219096, 94, 450), + (219096, 93, 450), + (219096, 96, 450), + (219096, 1, 50), + (219097, 91, 600), + (219097, 90, 600), + (219097, 92, 600), + (219097, 97, 600), + (219097, 95, 600), + (219097, 94, 600), + (219097, 93, 600), + (219097, 96, 600), + (219097, 1, 150), + (219100, 91, 225), + (219100, 90, 225), + (219100, 92, 225), + (219100, 97, 225), + (219100, 95, 225), + (219100, 94, 225), + (219100, 93, 225), + (219100, 96, 225), + (219100, 156, 8), + (219101, 91, 225), + (219101, 90, 300), + (219101, 92, 300), + (219101, 97, 225), + (219101, 95, 225), + (219101, 94, 300), + (219101, 93, 300), + (219101, 96, 300), + (219101, 156, 16), + (220237, 91, 940), + (220237, 90, 940), + (220237, 92, 940), + (220237, 97, 755), + (220237, 95, 940), + (220237, 94, 570), + (220237, 93, 940), + (220237, 96, 940), + (220237, 146, 40), + (220237, 145, 20), + (220237, 17, 8), + (220237, 131, 1), + (220238, 91, 1125), + (220238, 90, 1125), + (220238, 92, 1125), + (220238, 97, 940), + (220238, 95, 1125), + (220238, 94, 755), + (220238, 93, 1125), + (220238, 96, 1125), + (220238, 146, 50), + (220238, 145, 30), + (220238, 17, 16), + (220238, 131, 10), + (220239, 91, 565), + (220239, 90, 565), + (220239, 92, 565), + (220239, 97, 455), + (220239, 95, 565), + (220239, 94, 345), + (220239, 93, 565), + (220239, 96, 565), + (220239, 156, 30), + (220239, 123, 24), + (220239, 106, 24), + (220239, 127, 1), + (220239, 1, 100), + (220240, 91, 675), + (220240, 90, 675), + (220240, 92, 675), + (220240, 97, 565), + (220240, 95, 675), + (220240, 94, 455), + (220240, 93, 675), + (220240, 96, 675), + (220240, 156, 40), + (220240, 123, 36), + (220240, 106, 48), + (220240, 127, 15), + (220240, 1, 250), + (220243, 91, 1500), + (220243, 90, 1500), + (220243, 92, 1500), + (220243, 97, 1200), + (220243, 95, 1500), + (220243, 94, 1000), + (220243, 93, 1500), + (220243, 96, 1500), + (220243, 1, 650), + (220243, 107, 32), + (220243, 18, 12), + (220243, 130, 1), + (220244, 91, 1800), + (220244, 90, 1800), + (220244, 92, 1800), + (220244, 97, 1500), + (220244, 95, 1800), + (220244, 94, 1200), + (220244, 93, 1800), + (220244, 96, 1800), + (220244, 1, 1000), + (220244, 107, 48), + (220244, 18, 24), + (220244, 130, 15), + (220247, 91, 410), + (220247, 90, 410), + (220247, 92, 410), + (220247, 97, 305), + (220247, 95, 410), + (220247, 94, 305), + (220247, 93, 410), + (220247, 96, 410), + (220247, 118, 25), + (220247, 103, 16), + (220247, 104, 12), + (220247, 101, 1), + (220247, 1, 100), + (220248, 91, 500), + (220248, 90, 500), + (220248, 92, 500), + (220248, 97, 365), + (220248, 95, 500), + (220248, 94, 365), + (220248, 93, 500), + (220248, 96, 500), + (220248, 118, 30), + (220248, 103, 24), + (220248, 104, 18), + (220248, 101, 20), + (220248, 1, 250), + (220251, 91, 310), + (220251, 90, 310), + (220251, 92, 310), + (220251, 97, 250), + (220251, 95, 310), + (220251, 94, 205), + (220251, 93, 310), + (220251, 96, 310), + (220251, 147, 45), + (220251, 105, 32), + (220251, 20, 5), + (220251, 129, 1), + (220251, 1, 100), + (220252, 91, 375), + (220252, 90, 375), + (220252, 92, 375), + (220252, 97, 310), + (220252, 95, 375), + (220252, 94, 250), + (220252, 93, 375), + (220252, 96, 375), + (220252, 147, 60), + (220252, 105, 48), + (220252, 20, 10), + (220252, 129, 10), + (220252, 1, 250), + (220255, 91, 1125), + (220255, 90, 1125), + (220255, 92, 1125), + (220255, 97, 900), + (220255, 95, 1125), + (220255, 94, 750), + (220255, 93, 1125), + (220255, 96, 1125), + (220255, 162, 30), + (220255, 19, 5), + (220255, 128, 1), + (220255, 1, 100), + (220256, 91, 1350), + (220256, 90, 1350), + (220256, 92, 1350), + (220256, 97, 1125), + (220256, 95, 1350), + (220256, 94, 900), + (220256, 93, 1350), + (220256, 96, 1350), + (220256, 162, 40), + (220256, 19, 10), + (220256, 128, 15), + (220256, 1, 250), + (220259, 91, 225), + (220259, 90, 225), + (220259, 92, 225), + (220259, 97, 225), + (220259, 95, 225), + (220259, 94, 225), + (220259, 93, 225), + (220259, 96, 225), + (220259, 102, 16), + (220259, 16, 5), + (220259, 122, 1), + (220259, 1, 4), + (220260, 91, 325), + (220260, 90, 325), + (220260, 92, 325), + (220260, 97, 325), + (220260, 95, 325), + (220260, 94, 325), + (220260, 93, 325), + (220260, 96, 325), + (220260, 102, 24), + (220260, 16, 12), + (220260, 122, 5), + (220260, 1, 400), + (220263, 91, 2085), + (220263, 90, 2085), + (220263, 92, 2085), + (220263, 97, 1500), + (220263, 95, 2085), + (220263, 94, 1000), + (220263, 93, 2085), + (220263, 96, 2085), + (220263, 221, 75), + (220263, 21, 5), + (220263, 142, 1), + (220264, 91, 2500), + (220264, 90, 2500), + (220264, 92, 2500), + (220264, 97, 1800), + (220264, 95, 2500), + (220264, 94, 1200), + (220264, 93, 2500), + (220264, 96, 2500), + (220264, 221, 150), + (220264, 21, 10), + (220264, 142, 30), + (220269, 91, 2085), + (220269, 90, 2085), + (220269, 92, 2085), + (220269, 97, 2085), + (220269, 95, 1500), + (220269, 94, 1000), + (220269, 93, 2085), + (220269, 96, 2085), + (220269, 221, 75), + (220269, 21, 5), + (220269, 142, 1), + (220270, 91, 2500), + (220270, 90, 2500), + (220270, 92, 2500), + (220270, 97, 2500), + (220270, 95, 1800), + (220270, 94, 1200), + (220270, 93, 2500), + (220270, 96, 2500), + (220270, 221, 150), + (220270, 21, 10), + (220270, 142, 30), + (220271, 91, 225), + (220271, 90, 225), + (220271, 92, 225), + (220271, 97, 225), + (220271, 95, 225), + (220271, 94, 225), + (220271, 93, 225), + (220271, 96, 225), + (220271, 102, 16), + (220271, 16, 5), + (220271, 122, 1), + (220271, 1, 4), + (220272, 91, 325), + (220272, 90, 325), + (220272, 92, 325), + (220272, 97, 325), + (220272, 95, 325), + (220272, 94, 325), + (220272, 93, 325), + (220272, 96, 325), + (220272, 102, 24), + (220272, 16, 12), + (220272, 122, 5), + (220272, 1, 400), + (220275, 91, 1125), + (220275, 90, 1125), + (220275, 92, 1125), + (220275, 97, 1125), + (220275, 95, 900), + (220275, 94, 750), + (220275, 93, 1125), + (220275, 96, 1125), + (220275, 162, 30), + (220275, 19, 5), + (220275, 128, 1), + (220275, 1, 100), + (220276, 91, 1350), + (220276, 90, 1350), + (220276, 92, 1350), + (220276, 97, 1350), + (220276, 95, 1125), + (220276, 94, 900), + (220276, 93, 1350), + (220276, 96, 1350), + (220276, 162, 40), + (220276, 19, 10), + (220276, 128, 15), + (220276, 1, 250), + (220277, 91, 310), + (220277, 90, 310), + (220277, 92, 310), + (220277, 97, 310), + (220277, 95, 250), + (220277, 94, 205), + (220277, 93, 310), + (220277, 96, 310), + (220277, 147, 45), + (220277, 105, 32), + (220277, 20, 5), + (220277, 129, 1), + (220277, 1, 100), + (220278, 91, 375), + (220278, 90, 375), + (220278, 92, 375), + (220278, 97, 375), + (220278, 95, 310), + (220278, 94, 250), + (220278, 93, 375), + (220278, 96, 375), + (220278, 147, 60), + (220278, 105, 48), + (220278, 20, 10), + (220278, 129, 10), + (220278, 1, 250), + (220279, 91, 410), + (220279, 90, 410), + (220279, 92, 410), + (220279, 97, 410), + (220279, 95, 305), + (220279, 94, 305), + (220279, 93, 410), + (220279, 96, 410), + (220279, 118, 25), + (220279, 103, 16), + (220279, 104, 12), + (220279, 101, 1), + (220279, 1, 100), + (220280, 91, 500), + (220280, 90, 500), + (220280, 92, 500), + (220280, 97, 500), + (220280, 95, 365), + (220280, 94, 365), + (220280, 93, 500), + (220280, 96, 500), + (220280, 118, 30), + (220280, 103, 24), + (220280, 104, 18), + (220280, 101, 20), + (220280, 1, 250), + (220281, 91, 1500), + (220281, 90, 1500), + (220281, 92, 1500), + (220281, 97, 1500), + (220281, 95, 1200), + (220281, 94, 1000), + (220281, 93, 1500), + (220281, 96, 1500), + (220281, 1, 650), + (220281, 107, 32), + (220281, 18, 12), + (220281, 130, 1), + (220282, 91, 1800), + (220282, 90, 1800), + (220282, 92, 1800), + (220282, 97, 1800), + (220282, 95, 1500), + (220282, 94, 1200), + (220282, 93, 1800), + (220282, 96, 1800), + (220282, 1, 1000), + (220282, 107, 48), + (220282, 18, 24), + (220282, 130, 15), + (220283, 91, 565), + (220283, 90, 565), + (220283, 92, 565), + (220283, 97, 565), + (220283, 95, 455), + (220283, 94, 345), + (220283, 93, 565), + (220283, 96, 565), + (220283, 156, 30), + (220283, 123, 24), + (220283, 106, 24), + (220283, 127, 1), + (220283, 1, 100), + (220284, 91, 675), + (220284, 90, 675), + (220284, 92, 675), + (220284, 97, 675), + (220284, 95, 565), + (220284, 94, 455), + (220284, 93, 675), + (220284, 96, 675), + (220284, 156, 40), + (220284, 123, 36), + (220284, 106, 48), + (220284, 127, 15), + (220284, 1, 250), + (220287, 91, 940), + (220287, 90, 940), + (220287, 92, 940), + (220287, 97, 940), + (220287, 95, 755), + (220287, 94, 570), + (220287, 93, 940), + (220287, 96, 940), + (220287, 146, 40), + (220287, 145, 20), + (220287, 17, 8), + (220287, 131, 1), + (220288, 91, 1125), + (220288, 90, 1125), + (220288, 92, 1125), + (220288, 97, 1125), + (220288, 95, 940), + (220288, 94, 755), + (220288, 93, 1125), + (220288, 96, 1125), + (220288, 146, 50), + (220288, 145, 30), + (220288, 17, 16), + (220288, 131, 10), + (220295, 91, 2085), + (220295, 90, 2085), + (220295, 92, 2085), + (220295, 97, 2085), + (220295, 95, 1500), + (220295, 94, 1000), + (220295, 93, 2085), + (220295, 96, 2085), + (220295, 221, 75), + (220295, 21, 5), + (220295, 142, 1), + (220296, 91, 2500), + (220296, 90, 2500), + (220296, 92, 2500), + (220296, 97, 2500), + (220296, 95, 1800), + (220296, 94, 1200), + (220296, 93, 2500), + (220296, 96, 2500), + (220296, 221, 150), + (220296, 21, 10), + (220296, 142, 30), + (220299, 319, 500), + (220303, 91, 755), + (220303, 90, 755), + (220303, 92, 755), + (220303, 97, 570), + (220303, 95, 570), + (220303, 94, 570), + (220303, 93, 755), + (220303, 96, 755), + (220303, 146, 30), + (220303, 145, 10), + (220304, 91, 940), + (220304, 90, 940), + (220304, 92, 940), + (220304, 97, 755), + (220304, 95, 755), + (220304, 94, 570), + (220304, 93, 940), + (220304, 96, 940), + (220304, 146, 40), + (220304, 145, 20), + (220305, 91, 455), + (220305, 90, 455), + (220305, 92, 455), + (220305, 97, 345), + (220305, 95, 345), + (220305, 94, 345), + (220305, 93, 455), + (220305, 96, 455), + (220305, 156, 20), + (220305, 123, 12), + (220306, 91, 565), + (220306, 90, 565), + (220306, 92, 565), + (220306, 97, 455), + (220306, 95, 455), + (220306, 94, 345), + (220306, 93, 565), + (220306, 96, 565), + (220306, 156, 30), + (220306, 123, 24), + (220307, 91, 1200), + (220307, 90, 1200), + (220307, 92, 1200), + (220307, 97, 1000), + (220307, 95, 1000), + (220307, 94, 1000), + (220307, 93, 1200), + (220307, 96, 1200), + (220307, 1, 350), + (220307, 107, 16), + (220308, 91, 1500), + (220308, 90, 1500), + (220308, 92, 1500), + (220308, 97, 1200), + (220308, 95, 1200), + (220308, 94, 1000), + (220308, 93, 1500), + (220308, 96, 1500), + (220308, 1, 650), + (220308, 107, 32), + (220310, 91, 330), + (220310, 90, 330), + (220310, 92, 330), + (220310, 97, 305), + (220310, 95, 305), + (220310, 94, 305), + (220310, 93, 330), + (220310, 96, 330), + (220310, 118, 20), + (220310, 103, 8), + (220311, 91, 410), + (220311, 90, 410), + (220311, 92, 410), + (220311, 97, 305), + (220311, 95, 305), + (220311, 94, 305), + (220311, 93, 410), + (220311, 96, 410), + (220311, 118, 25), + (220311, 103, 16), + (220313, 91, 250), + (220313, 90, 250), + (220313, 92, 250), + (220313, 97, 205), + (220313, 95, 205), + (220313, 94, 205), + (220313, 93, 250), + (220313, 96, 250), + (220313, 147, 30), + (220313, 105, 16), + (220314, 91, 310), + (220314, 90, 310), + (220314, 92, 310), + (220314, 97, 250), + (220314, 95, 250), + (220314, 94, 205), + (220314, 93, 310), + (220314, 96, 310), + (220314, 147, 45), + (220314, 105, 32), + (220315, 91, 900), + (220315, 90, 900), + (220315, 92, 900), + (220315, 97, 750), + (220315, 95, 750), + (220315, 94, 750), + (220315, 93, 900), + (220315, 96, 900), + (220315, 162, 20), + (220316, 91, 1125), + (220316, 90, 1125), + (220316, 92, 1125), + (220316, 97, 900), + (220316, 95, 900), + (220316, 94, 750), + (220316, 93, 1125), + (220316, 96, 1125), + (220316, 162, 30), + (220317, 91, 125), + (220317, 90, 125), + (220317, 92, 125), + (220317, 97, 125), + (220317, 95, 125), + (220317, 94, 125), + (220317, 93, 125), + (220317, 96, 125), + (220317, 102, 8), + (220318, 91, 225), + (220318, 90, 225), + (220318, 92, 225), + (220318, 97, 225), + (220318, 95, 225), + (220318, 94, 225), + (220318, 93, 225), + (220318, 96, 225), + (220318, 102, 16), + (220332, 131, 25), + (220332, 127, 25), + (220332, 128, 25), + (220332, 130, 25), + (220332, 122, 25), + (220332, 129, 25), + (220334, 131, 50), + (220334, 127, 50), + (220334, 128, 50), + (220334, 130, 50), + (220334, 122, 50), + (220334, 129, 50), + (220336, 131, 90), + (220336, 127, 90), + (220336, 128, 90), + (220336, 130, 90), + (220336, 122, 90), + (220336, 129, 90), + (220338, 131, 140), + (220338, 127, 140), + (220338, 128, 140), + (220338, 130, 140), + (220338, 122, 140), + (220338, 129, 140), + (220340, 131, 140), + (220340, 127, 140), + (220340, 128, 140), + (220340, 130, 140), + (220340, 122, 140), + (220340, 129, 140), + (220342, 131, 140), + (220342, 127, 140), + (220342, 128, 140), + (220342, 130, 140), + (220342, 122, 140), + (220342, 129, 140), + (220344, 131, 140), + (220344, 127, 140), + (220344, 128, 140), + (220344, 130, 140), + (220344, 122, 140), + (220344, 129, 140), + (220346, 19, 23), + (220346, 21, 23), + (220348, 19, 48), + (220348, 21, 48), + (220348, 130, 4), + (220350, 19, 83), + (220350, 21, 83), + (220350, 130, 15), + (220440, 118, -1128), + (220440, 119, -1128), + (220440, 120, -1128), + (220440, 149, -1128), + (220445, 118, -701), + (220445, 119, -701), + (220445, 120, -701), + (220445, 149, -701), + (220455, 118, -81), + (220455, 119, -81), + (220455, 120, -81), + (220465, 118, -61), + (220465, 119, -61), + (220465, 120, -61), + (220465, 149, -61), + (220471, 113, 22), + (220471, 102, 22), + (220471, 107, 22), + (220471, 103, 22), + (220471, 105, 22), + (220471, 104, 22), + (220471, 106, 22), + (220471, 100, 22), + (220471, 109, 22), + (220471, 133, 22), + (220471, 110, 22), + (220471, 112, 22), + (220471, 130, 22), + (220471, 114, 22), + (220471, 115, 22), + (220471, 116, 22), + (220471, 108, 22), + (220471, 128, 22), + (220471, 122, 22), + (220471, 129, 22), + (220471, 127, 22), + (220471, 131, 22), + (220471, 111, 22), + (220473, 113, 3), + (220473, 102, 3), + (220473, 107, 3), + (220473, 103, 3), + (220473, 105, 3), + (220473, 104, 3), + (220473, 106, 3), + (220473, 100, 3), + (220473, 109, 3), + (220473, 133, 3), + (220473, 110, 3), + (220473, 112, 3), + (220473, 130, 3), + (220473, 114, 3), + (220473, 115, 3), + (220473, 116, 3), + (220473, 108, 3), + (220473, 128, 3), + (220473, 122, 3), + (220473, 129, 3), + (220473, 127, 3), + (220473, 131, 3), + (220473, 111, 3), + (220474, 118, -404), + (220474, 119, -404), + (220474, 120, -404), + (220474, 149, -404), + (220476, 118, -222), + (220476, 119, -222), + (220476, 120, -222), + (220497, 51, 184), + (220497, 120, 920), + (220497, 118, 920), + (220497, 119, 920), + (220497, 149, 920), + (220497, 201, 80), + (220499, 113, 65), + (220499, 102, 65), + (220499, 107, 65), + (220499, 103, 65), + (220499, 105, 65), + (220499, 104, 65), + (220499, 106, 65), + (220499, 100, 65), + (220499, 109, 65), + (220499, 133, 65), + (220499, 110, 65), + (220499, 112, 65), + (220499, 130, 65), + (220499, 114, 65), + (220499, 115, 65), + (220499, 116, 65), + (220499, 108, 65), + (220499, 128, 65), + (220499, 122, 65), + (220499, 129, 65), + (220499, 127, 65), + (220499, 131, 65), + (220499, 111, 65), + (220503, 159, 80), + (220504, 113, 99), + (220504, 102, 99), + (220504, 107, 99), + (220504, 103, 99), + (220504, 105, 99), + (220504, 104, 99), + (220504, 106, 99), + (220504, 100, 99), + (220504, 109, 99), + (220504, 133, 99), + (220504, 110, 99), + (220504, 112, 99), + (220504, 130, 99), + (220504, 114, 99), + (220504, 115, 99), + (220504, 116, 99), + (220504, 108, 99), + (220504, 128, 99), + (220504, 122, 99), + (220504, 129, 99), + (220504, 127, 99), + (220504, 131, 99), + (220504, 111, 99), + (220521, 51, 73), + (220521, 119, 360), + (220521, 149, 360), + (220521, 120, 360), + (220521, 118, 360), + (220521, 201, 30), + (220527, 113, 106), + (220527, 102, 106), + (220527, 107, 106), + (220527, 103, 106), + (220527, 105, 106), + (220527, 104, 106), + (220527, 106, 106), + (220527, 100, 106), + (220527, 109, 106), + (220527, 133, 106), + (220527, 110, 106), + (220527, 112, 106), + (220527, 130, 106), + (220527, 114, 106), + (220527, 115, 106), + (220527, 116, 106), + (220527, 108, 106), + (220527, 128, 106), + (220527, 122, 106), + (220527, 129, 106), + (220527, 127, 106), + (220527, 131, 106), + (220527, 111, 106), + (220528, 118, -115), + (220528, 119, -115), + (220528, 120, -115), + (220528, 149, -115), + (220529, 118, -927), + (220529, 119, -927), + (220529, 120, -927), + (220529, 149, -927), + (220539, 221, 1000), + (220541, 153, 61), + (220541, 154, 61), + (220541, 155, 61), + (220541, 156, 450), + (220571, 113, 9), + (220571, 102, 9), + (220571, 107, 9), + (220571, 103, 9), + (220571, 105, 9), + (220571, 104, 9), + (220571, 106, 9), + (220571, 100, 9), + (220571, 109, 9), + (220571, 133, 9), + (220571, 110, 9), + (220571, 112, 9), + (220571, 130, 9), + (220571, 114, 9), + (220571, 115, 9), + (220571, 116, 9), + (220571, 108, 9), + (220571, 128, 9), + (220571, 122, 9), + (220571, 129, 9), + (220571, 127, 9), + (220571, 131, 9), + (220571, 111, 9), + (220576, 156, -360), + (220581, 162, 50), + (220587, 277, 75), + (220587, 391, 3), + (220587, 382, -3), + (220594, 164, 86), + (220599, 112, 20), + (220604, 278, 20), + (220604, 279, 20), + (220604, 280, 20), + (220604, 281, 20), + (220604, 282, 20), + (220604, 311, 20), + (220604, 316, 20), + (220604, 317, 20), + (220617, 364, 40), + (220622, 382, 100), + (220623, 118, -1312), + (220623, 119, -1312), + (220623, 120, -1312), + (220623, 149, -1312), + (220625, 364, 60), + (220629, 113, 13), + (220629, 102, 13), + (220629, 107, 13), + (220629, 103, 13), + (220629, 105, 13), + (220629, 104, 13), + (220629, 106, 13), + (220629, 100, 13), + (220629, 109, 13), + (220629, 133, 13), + (220629, 110, 13), + (220629, 112, 13), + (220629, 130, 13), + (220629, 114, 13), + (220629, 115, 13), + (220629, 116, 13), + (220629, 108, 13), + (220629, 128, 13), + (220629, 122, 13), + (220629, 129, 13), + (220629, 127, 13), + (220629, 131, 13), + (220629, 111, 13), + (220630, 51, 101), + (220630, 119, 510), + (220630, 149, 510), + (220630, 120, 510), + (220630, 118, 510), + (220630, 201, 50), + (220638, 226, 19), + (220638, 227, 19), + (220638, 228, 19), + (220638, 229, 19), + (220638, 230, 19), + (220638, 231, 19), + (220638, 233, 19), + (220638, 234, 19), + (220638, 91, 180), + (220653, 90, 706), + (220653, 91, 706), + (220653, 92, 706), + (220653, 93, 706), + (220653, 94, 706), + (220653, 95, 706), + (220653, 96, 706), + (220653, 97, 706), + (220657, 51, 139), + (220657, 119, 700), + (220657, 149, 700), + (220657, 120, 700), + (220657, 118, 700), + (220657, 201, 65), + (220663, 90, -733), + (220663, 91, -733), + (220663, 92, -733), + (220663, 93, -733), + (220663, 94, -733), + (220663, 95, -733), + (220663, 96, -733), + (220663, 97, -733), + (220693, 90, -513), + (220693, 91, -513), + (220693, 92, -513), + (220693, 93, -513), + (220693, 94, -513), + (220693, 95, -513), + (220693, 96, -513), + (220693, 97, -513), + (220697, 113, 121), + (220697, 102, 121), + (220697, 107, 121), + (220697, 103, 121), + (220697, 105, 121), + (220697, 104, 121), + (220697, 106, 121), + (220697, 100, 121), + (220697, 109, 121), + (220697, 133, 121), + (220697, 110, 121), + (220697, 112, 121), + (220697, 130, 121), + (220697, 114, 121), + (220697, 115, 121), + (220697, 116, 121), + (220697, 108, 121), + (220697, 128, 121), + (220697, 122, 121), + (220697, 129, 121), + (220697, 127, 121), + (220697, 131, 121), + (220697, 111, 121), + (220702, 221, 500), + (220710, 343, 65), + (220730, 343, 48), + (220733, 149, 350), + (220733, 168, 75), + (220733, 221, 300), + (220743, 168, 200), + (220770, 90, 652), + (220770, 91, 652), + (220770, 92, 652), + (220770, 93, 652), + (220770, 94, 652), + (220770, 95, 652), + (220770, 96, 652), + (220770, 97, 652), + (220773, 122, -1000), + (220773, 131, -1000), + (220773, 130, -1000), + (220773, 129, -1000), + (220773, 128, -1000), + (220773, 127, -1000), + (220777, 90, 720), + (220777, 91, 720), + (220777, 92, 720), + (220777, 93, 720), + (220777, 94, 720), + (220777, 95, 720), + (220777, 96, 720), + (220777, 97, 720), + (220779, 90, 13), + (220779, 91, 13), + (220779, 92, 13), + (220779, 93, 13), + (220779, 94, 13), + (220779, 95, 13), + (220779, 96, 13), + (220779, 97, 13), + (220782, 153, 80), + (220782, 154, 80), + (220782, 155, 80), + (220783, 109, 120), + (220783, 110, 50), + (220783, 112, 120), + (220790, 90, 85), + (220790, 91, 85), + (220790, 92, 85), + (220790, 93, 85), + (220790, 94, 85), + (220790, 95, 85), + (220790, 96, 85), + (220790, 97, 85), + (220795, 90, -337), + (220795, 91, -337), + (220795, 92, -337), + (220795, 93, -337), + (220795, 94, -337), + (220795, 95, -337), + (220795, 96, -337), + (220795, 97, -337), + (220797, 165, 130), + (220797, 135, 130), + (220801, 153, 70), + (220801, 154, 70), + (220801, 155, 70), + (220801, 156, 620), + (220803, 165, 32), + (220805, 119, 15), + (220810, 163, 62), + (220810, 159, 62), + (220816, 119, 52), + (220817, 119, 114), + (220821, 100, 400), + (220821, 101, 50), + (220821, 142, 50), + (220821, 147, 50), + (220821, 90, 150), + (220821, 91, 150), + (220821, 92, 150), + (220827, 135, 79), + (220829, 90, 690), + (220829, 91, 690), + (220829, 92, 690), + (220829, 93, 690), + (220829, 94, 690), + (220829, 95, 690), + (220829, 96, 690), + (220829, 97, 690), + (220837, 90, 613), + (220837, 91, 613), + (220837, 92, 613), + (220837, 93, 613), + (220837, 94, 613), + (220837, 95, 613), + (220837, 96, 613), + (220837, 97, 613), + (220839, 90, -1098), + (220839, 91, -1098), + (220839, 92, -1098), + (220839, 93, -1098), + (220839, 94, -1098), + (220839, 95, -1098), + (220839, 96, -1098), + (220839, 97, -1098), + (220852, 146, 70), + (220853, 136, 240), + (220858, 165, 23), + (220858, 135, 23), + (220864, 164, 40), + (220867, 90, 168), + (220867, 91, 168), + (220867, 92, 168), + (220867, 93, 168), + (220867, 94, 168), + (220867, 95, 168), + (220867, 96, 168), + (220867, 97, 168), + (220871, 226, 65), + (220871, 227, 65), + (220871, 228, 65), + (220871, 229, 65), + (220871, 230, 65), + (220871, 231, 65), + (220871, 233, 65), + (220871, 234, 65), + (220871, 92, 1200), + (220875, 153, -85), + (220875, 154, -85), + (220875, 155, -85), + (220875, 180, 15), + (220878, 156, -100), + (220880, 165, 79), + (220880, 135, 79), + (220895, 90, 822), + (220895, 91, 822), + (220895, 92, 822), + (220895, 93, 822), + (220895, 94, 822), + (220895, 95, 822), + (220895, 96, 822), + (220895, 97, 822), + (220897, 90, 418), + (220897, 91, 418), + (220897, 92, 418), + (220897, 93, 418), + (220897, 94, 418), + (220897, 95, 418), + (220897, 96, 418), + (220897, 97, 418), + (220903, 90, 617), + (220903, 91, 617), + (220903, 92, 617), + (220903, 93, 617), + (220903, 94, 617), + (220903, 95, 617), + (220903, 96, 617), + (220903, 97, 617), + (220905, 153, 7), + (220905, 154, 7), + (220905, 155, 7), + (220905, 156, 190), + (220930, 90, 66), + (220930, 91, 66), + (220930, 92, 66), + (220930, 93, 66), + (220930, 94, 66), + (220930, 95, 66), + (220930, 96, 66), + (220930, 97, 66), + (220933, 90, -449), + (220933, 91, -449), + (220933, 92, -449), + (220933, 93, -449), + (220933, 94, -449), + (220933, 95, -449), + (220933, 96, -449), + (220933, 97, -449), + (220937, 205, 16), + (220937, 206, 16), + (220937, 207, 16), + (220937, 208, 16), + (220937, 216, 16), + (220937, 217, 16), + (220937, 219, 16), + (220937, 225, 16), + (220937, 475, 10), + (220937, 476, 10), + (220937, 477, 10), + (220937, 478, 10), + (220937, 479, 10), + (220937, 480, 10), + (220937, 482, 10), + (220937, 483, 10), + (220946, 90, 322), + (220946, 91, 322), + (220946, 92, 322), + (220946, 93, 322), + (220946, 94, 322), + (220946, 95, 322), + (220946, 96, 322), + (220946, 97, 322), + (220962, 153, 25), + (220962, 154, 25), + (220962, 155, 25), + (220962, 156, 310), + (220972, 226, 15), + (220972, 227, 15), + (220972, 228, 15), + (220972, 229, 15), + (220972, 230, 15), + (220972, 231, 15), + (220972, 233, 15), + (220972, 234, 15), + (220972, 92, 140), + (220982, 90, 1012), + (220982, 91, 1012), + (220982, 92, 1012), + (220982, 93, 1012), + (220982, 94, 1012), + (220982, 95, 1012), + (220982, 96, 1012), + (220982, 97, 1012), + (220984, 90, 522), + (220984, 91, 522), + (220984, 92, 522), + (220984, 93, 522), + (220984, 94, 522), + (220984, 95, 522), + (220984, 96, 522), + (220984, 97, 522), + (220986, 226, 28), + (220986, 227, 28), + (220986, 228, 28), + (220986, 229, 28), + (220986, 230, 28), + (220986, 231, 28), + (220986, 233, 28), + (220986, 234, 28), + (220986, 94, 230), + (220991, 205, 25), + (220991, 206, 25), + (220991, 207, 25), + (220991, 208, 25), + (220991, 216, 25), + (220991, 217, 25), + (220991, 219, 25), + (220991, 225, 25), + (220991, 475, 30), + (220991, 476, 30), + (220991, 477, 30), + (220991, 478, 30), + (220991, 479, 30), + (220991, 480, 30), + (220991, 482, 30), + (220991, 483, 30), + (221007, 90, 672), + (221007, 91, 672), + (221007, 92, 672), + (221007, 93, 672), + (221007, 94, 672), + (221007, 95, 672), + (221007, 96, 672), + (221007, 97, 672), + (221012, 153, 79), + (221012, 154, 79), + (221012, 155, 79), + (221012, 156, 720), + (221028, 90, 545), + (221028, 91, 545), + (221028, 92, 545), + (221028, 93, 545), + (221028, 94, 545), + (221028, 95, 545), + (221028, 96, 545), + (221028, 97, 545), + (221045, 118, -244), + (221045, 119, -244), + (221045, 120, -244), + (221052, 226, 1), + (221052, 227, 1), + (221052, 228, 1), + (221052, 229, 1), + (221052, 230, 1), + (221052, 231, 1), + (221052, 233, 1), + (221052, 234, 1), + (221052, 91, 40), + (221058, 90, 517), + (221058, 91, 517), + (221058, 92, 517), + (221058, 93, 517), + (221058, 94, 517), + (221058, 95, 517), + (221058, 96, 517), + (221058, 97, 517), + (221059, 90, -290), + (221059, 91, -290), + (221059, 92, -290), + (221059, 93, -290), + (221059, 94, -290), + (221059, 95, -290), + (221059, 96, -290), + (221059, 97, -290), + (221068, 205, 19), + (221068, 206, 19), + (221068, 207, 19), + (221068, 208, 19), + (221068, 216, 19), + (221068, 217, 19), + (221068, 219, 19), + (221068, 225, 19), + (221068, 475, 15), + (221068, 476, 15), + (221068, 477, 15), + (221068, 478, 15), + (221068, 479, 15), + (221068, 480, 15), + (221068, 482, 15), + (221068, 483, 15), + (221073, 221, 50), + (221082, 156, -880), + (221094, 90, 928), + (221094, 91, 928), + (221094, 92, 928), + (221094, 93, 928), + (221094, 94, 928), + (221094, 95, 928), + (221094, 96, 928), + (221094, 97, 928), + (221098, 156, -1000), + (221101, 90, 189), + (221101, 91, 189), + (221101, 92, 189), + (221101, 93, 189), + (221101, 94, 189), + (221101, 95, 189), + (221101, 96, 189), + (221101, 97, 189), + (221118, 113, 46), + (221118, 102, 46), + (221118, 107, 46), + (221118, 103, 46), + (221118, 105, 46), + (221118, 104, 46), + (221118, 106, 46), + (221118, 100, 46), + (221118, 109, 46), + (221118, 133, 46), + (221118, 110, 46), + (221118, 112, 46), + (221118, 130, 46), + (221118, 114, 46), + (221118, 115, 46), + (221118, 116, 46), + (221118, 108, 46), + (221118, 128, 46), + (221118, 122, 46), + (221118, 129, 46), + (221118, 127, 46), + (221118, 131, 46), + (221118, 111, 46), + (221124, 90, 33), + (221124, 91, 33), + (221124, 92, 33), + (221124, 93, 33), + (221124, 94, 33), + (221124, 95, 33), + (221124, 96, 33), + (221124, 97, 33), + (221128, 90, -824), + (221128, 91, -824), + (221128, 92, -824), + (221128, 93, -824), + (221128, 94, -824), + (221128, 95, -824), + (221128, 96, -824), + (221128, 97, -824), + (221129, 278, 15), + (221129, 279, 15), + (221129, 280, 15), + (221129, 281, 15), + (221129, 282, 15), + (221129, 311, 15), + (221129, 316, 15), + (221129, 317, 15), + (221132, 118, -181), + (221132, 119, -181), + (221132, 120, -181), + (221133, 118, -643), + (221133, 119, -643), + (221133, 120, -643), + (221133, 149, -643), + (221146, 156, -220), + (221152, 205, 10), + (221152, 206, 10), + (221152, 207, 10), + (221152, 208, 10), + (221152, 216, 10), + (221152, 217, 10), + (221152, 219, 10), + (221152, 225, 10), + (221152, 475, 3), + (221152, 476, 3), + (221152, 477, 3), + (221152, 478, 3), + (221152, 479, 3), + (221152, 480, 3), + (221152, 482, 3), + (221152, 483, 3), + (221173, 156, -1080), + (221183, 278, 40), + (221183, 279, 40), + (221183, 280, 40), + (221183, 281, 40), + (221183, 282, 40), + (221183, 311, 40), + (221183, 316, 40), + (221183, 317, 40), + (221185, 113, 112), + (221185, 102, 112), + (221185, 107, 112), + (221185, 103, 112), + (221185, 105, 112), + (221185, 104, 112), + (221185, 106, 112), + (221185, 100, 112), + (221185, 109, 112), + (221185, 133, 112), + (221185, 110, 112), + (221185, 112, 112), + (221185, 130, 112), + (221185, 114, 112), + (221185, 115, 112), + (221185, 116, 112), + (221185, 108, 112), + (221185, 128, 112), + (221185, 122, 112), + (221185, 129, 112), + (221185, 127, 112), + (221185, 131, 112), + (221185, 111, 112), + (221204, 118, -50), + (221204, 119, -50), + (221204, 120, -50), + (221204, 149, -50), + (221212, 90, 252), + (221212, 91, 252), + (221212, 92, 252), + (221212, 93, 252), + (221212, 94, 252), + (221212, 95, 252), + (221212, 96, 252), + (221212, 97, 252), + (221217, 119, 45), + (221218, 118, -85), + (221218, 119, -85), + (221218, 120, -85), + (221218, 149, -85), + (221220, 90, 566), + (221220, 91, 566), + (221220, 92, 566), + (221220, 93, 566), + (221220, 94, 566), + (221220, 95, 566), + (221220, 96, 566), + (221220, 97, 566), + (221222, 153, 60), + (221222, 154, 60), + (221222, 155, 60), + (221223, 160, 92), + (221225, 128, 50), + (221231, 128, -125), + (221235, 130, -125), + (221236, 127, -125), + (221237, 129, -125), + (221238, 122, -125), + (221240, 131, -125), + (221249, 156, -720), + (221255, 128, 140), + (221265, 130, 140), + (221266, 127, 140), + (221267, 129, 140), + (221268, 122, 140), + (221269, 131, 140), + (221272, 205, 29), + (221272, 206, 29), + (221272, 207, 29), + (221272, 208, 29), + (221272, 216, 29), + (221272, 217, 29), + (221272, 219, 29), + (221272, 225, 29), + (221272, 475, 40), + (221272, 476, 40), + (221272, 477, 40), + (221272, 478, 40), + (221272, 479, 40), + (221272, 480, 40), + (221272, 482, 40), + (221272, 483, 40), + (221277, 90, -913), + (221277, 91, -913), + (221277, 92, -913), + (221277, 93, -913), + (221277, 94, -913), + (221277, 95, -913), + (221277, 96, -913), + (221277, 97, -913), + (221278, 129, 50), + (221280, 160, 20), + (221291, 130, 50), + (221293, 127, 50), + (221296, 156, -1400), + (221300, 122, 50), + (221302, 131, 50), + (221306, 128, -75), + (221307, 130, -75), + (221308, 127, -75), + (221309, 129, -75), + (221310, 122, -75), + (221311, 131, -75), + (221367, 126, 80), + (221451, 91, 750), + (221451, 90, 600), + (221451, 92, 750), + (221451, 97, 600), + (221451, 95, 750), + (221451, 94, 750), + (221451, 93, 750), + (221451, 96, 750), + (221451, 1, 150), + (221451, 118, 30), + (221451, 17, 6), + (221451, 161, 1), + (221451, 181, 12), + (221453, 91, 900), + (221453, 90, 750), + (221453, 92, 900), + (221453, 97, 750), + (221453, 95, 900), + (221453, 94, 900), + (221453, 93, 900), + (221453, 96, 900), + (221453, 1, 350), + (221453, 118, 45), + (221453, 17, 12), + (221453, 161, 30), + (221453, 181, 24), + (221456, 91, 375), + (221456, 90, 225), + (221456, 92, 375), + (221456, 97, 225), + (221456, 95, 375), + (221456, 94, 375), + (221456, 93, 375), + (221456, 96, 375), + (221456, 156, 24), + (221456, 153, 24), + (221456, 149, 10), + (221456, 122, 1), + (221456, 1, 100), + (221457, 91, 450), + (221457, 90, 300), + (221457, 92, 450), + (221457, 97, 300), + (221457, 95, 450), + (221457, 94, 450), + (221457, 93, 450), + (221457, 96, 450), + (221457, 156, 32), + (221457, 153, 32), + (221457, 149, 50), + (221457, 122, 30), + (221457, 1, 250), + (221462, 91, 1500), + (221462, 90, 1200), + (221462, 92, 1500), + (221462, 97, 1200), + (221462, 95, 1500), + (221462, 94, 1500), + (221462, 93, 1500), + (221462, 96, 1500), + (221462, 136, 20), + (221462, 181, 16), + (221462, 18, 5), + (221462, 111, 20), + (221462, 318, -1), + (221462, 221, 450), + (221463, 91, 1800), + (221463, 90, 1500), + (221463, 92, 1800), + (221463, 97, 1500), + (221463, 95, 1800), + (221463, 94, 1800), + (221463, 93, 1800), + (221463, 96, 1800), + (221463, 136, 30), + (221463, 181, 32), + (221463, 18, 10), + (221463, 111, 30), + (221463, 318, -5), + (221463, 221, 750), + (221467, 91, 250), + (221467, 90, 150), + (221467, 92, 250), + (221467, 97, 150), + (221467, 95, 250), + (221467, 94, 250), + (221467, 93, 250), + (221467, 96, 250), + (221467, 102, 12), + (221467, 123, 12), + (221467, 154, 12), + (221467, 127, 1), + (221467, 1, 100), + (221469, 91, 300), + (221469, 90, 200), + (221469, 92, 300), + (221469, 97, 200), + (221469, 95, 300), + (221469, 94, 300), + (221469, 93, 300), + (221469, 96, 300), + (221469, 102, 16), + (221469, 123, 16), + (221469, 154, 16), + (221469, 127, 15), + (221469, 1, 250), + (221471, 91, 205), + (221471, 90, 205), + (221471, 92, 205), + (221471, 97, 205), + (221471, 95, 205), + (221471, 94, 205), + (221471, 93, 205), + (221471, 96, 205), + (221471, 107, 24), + (221471, 155, 20), + (221471, 20, 10), + (221471, 1, 100), + (221471, 130, 1), + (221472, 91, 250), + (221472, 90, 250), + (221472, 92, 250), + (221472, 97, 250), + (221472, 95, 250), + (221472, 94, 250), + (221472, 93, 250), + (221472, 96, 250), + (221472, 107, 32), + (221472, 155, 30), + (221472, 20, 20), + (221472, 1, 250), + (221472, 130, 30), + (221477, 91, 1000), + (221477, 90, 800), + (221477, 92, 1000), + (221477, 97, 800), + (221477, 95, 1000), + (221477, 94, 1000), + (221477, 93, 1000), + (221477, 96, 1000), + (221477, 19, 10), + (221477, 160, 20), + (221477, 128, 1), + (221477, 1, 100), + (221478, 91, 1200), + (221478, 90, 800), + (221478, 92, 1200), + (221478, 97, 800), + (221478, 95, 1200), + (221478, 94, 1200), + (221478, 93, 1200), + (221478, 96, 1200), + (221478, 19, 20), + (221478, 160, 60), + (221478, 128, 25), + (221478, 1, 200), + (221483, 91, 230), + (221483, 90, 175), + (221483, 92, 230), + (221483, 97, 175), + (221483, 95, 230), + (221483, 94, 230), + (221483, 93, 230), + (221483, 96, 230), + (221483, 181, 10), + (221483, 16, 3), + (221483, 131, 1), + (221483, 1, 3), + (221484, 91, 275), + (221484, 90, 175), + (221484, 92, 275), + (221484, 97, 175), + (221484, 95, 275), + (221484, 94, 275), + (221484, 93, 275), + (221484, 96, 275), + (221484, 181, 15), + (221484, 16, 6), + (221484, 131, 15), + (221484, 1, 300), + (221486, 91, 1585), + (221486, 90, 1000), + (221486, 92, 1585), + (221486, 97, 1000), + (221486, 95, 1585), + (221486, 94, 1585), + (221486, 93, 1585), + (221486, 96, 1585), + (221486, 21, 10), + (221486, 129, 1), + (221486, 1, 2), + (221487, 91, 1900), + (221487, 90, 1200), + (221487, 92, 1900), + (221487, 97, 1200), + (221487, 95, 1900), + (221487, 94, 1900), + (221487, 93, 1900), + (221487, 96, 1900), + (221487, 21, 20), + (221487, 129, 30), + (221487, 1, 200), + (221554, 226, 4), + (221554, 227, 4), + (221554, 228, 4), + (221554, 229, 4), + (221554, 230, 4), + (221554, 231, 4), + (221554, 233, 4), + (221554, 234, 4), + (221554, 92, 100), + (221555, 118, -1831), + (221555, 119, -1831), + (221555, 120, -1831), + (221555, 149, -1831), + (221559, 90, 590), + (221559, 91, 590), + (221559, 92, 590), + (221559, 93, 590), + (221559, 94, 590), + (221559, 95, 590), + (221559, 96, 590), + (221559, 97, 590), + (221561, 90, 231), + (221561, 91, 231), + (221561, 92, 231), + (221561, 93, 231), + (221561, 94, 231), + (221561, 95, 231), + (221561, 96, 231), + (221561, 97, 231), + (221575, 90, 440), + (221575, 91, 440), + (221575, 92, 440), + (221575, 93, 440), + (221575, 94, 440), + (221575, 95, 440), + (221575, 96, 440), + (221575, 97, 440), + (221577, 156, -750), + (221580, 118, -261), + (221580, 119, -261), + (221580, 120, -261), + (221584, 156, -480), + (221606, 118, -134), + (221606, 119, -134), + (221606, 120, -134), + (221628, 118, -143), + (221628, 119, -143), + (221628, 120, -143), + (221628, 149, -143), + (221629, 113, 37), + (221629, 102, 37), + (221629, 107, 37), + (221629, 103, 37), + (221629, 105, 37), + (221629, 104, 37), + (221629, 106, 37), + (221629, 100, 37), + (221629, 109, 37), + (221629, 133, 37), + (221629, 110, 37), + (221629, 112, 37), + (221629, 130, 37), + (221629, 114, 37), + (221629, 115, 37), + (221629, 116, 37), + (221629, 108, 37), + (221629, 128, 37), + (221629, 122, 37), + (221629, 129, 37), + (221629, 127, 37), + (221629, 131, 37), + (221629, 111, 37), + (221630, 118, -550), + (221630, 119, -550), + (221630, 120, -550), + (221630, 149, -550), + (221636, 113, 27), + (221636, 102, 27), + (221636, 107, 27), + (221636, 103, 27), + (221636, 105, 27), + (221636, 104, 27), + (221636, 106, 27), + (221636, 100, 27), + (221636, 109, 27), + (221636, 133, 27), + (221636, 110, 27), + (221636, 112, 27), + (221636, 130, 27), + (221636, 114, 27), + (221636, 115, 27), + (221636, 116, 27), + (221636, 108, 27), + (221636, 128, 27), + (221636, 122, 27), + (221636, 129, 27), + (221636, 127, 27), + (221636, 131, 27), + (221636, 111, 27), + (221653, 90, -1000), + (221653, 91, -1000), + (221653, 92, -1000), + (221653, 93, -1000), + (221653, 94, -1000), + (221653, 95, -1000), + (221653, 96, -1000), + (221653, 97, -1000), + (221655, 226, 39), + (221655, 227, 39), + (221655, 228, 39), + (221655, 229, 39), + (221655, 230, 39), + (221655, 231, 39), + (221655, 233, 39), + (221655, 234, 39), + (221655, 92, 400), + (221687, 156, -600), + (221693, 156, -920), + (221717, 118, -61), + (221717, 119, -61), + (221717, 120, -61), + (221732, 113, 74), + (221732, 102, 74), + (221732, 107, 74), + (221732, 103, 74), + (221732, 105, 74), + (221732, 104, 74), + (221732, 106, 74), + (221732, 100, 74), + (221732, 109, 74), + (221732, 133, 74), + (221732, 110, 74), + (221732, 112, 74), + (221732, 130, 74), + (221732, 114, 74), + (221732, 115, 74), + (221732, 116, 74), + (221732, 108, 74), + (221732, 128, 74), + (221732, 122, 74), + (221732, 129, 74), + (221732, 127, 74), + (221732, 131, 74), + (221732, 111, 74), + (221741, 118, -32), + (221741, 119, -32), + (221741, 120, -32), + (221756, 226, 11), + (221756, 227, 11), + (221756, 228, 11), + (221756, 229, 11), + (221756, 230, 11), + (221756, 231, 11), + (221756, 233, 11), + (221756, 234, 11), + (221756, 91, 120), + (221757, 90, -652), + (221757, 91, -652), + (221757, 92, -652), + (221757, 93, -652), + (221757, 94, -652), + (221757, 95, -652), + (221757, 96, -652), + (221757, 97, -652), + (221759, 278, 30), + (221759, 279, 30), + (221759, 280, 30), + (221759, 281, 30), + (221759, 282, 30), + (221759, 311, 30), + (221759, 316, 30), + (221759, 317, 30), + (221778, 118, -1580), + (221778, 119, -1580), + (221778, 120, -1580), + (221778, 149, -1580), + (221790, 118, -101), + (221790, 119, -101), + (221790, 120, -101), + (221794, 90, -1200), + (221794, 91, -1200), + (221794, 92, -1200), + (221794, 93, -1200), + (221794, 94, -1200), + (221794, 95, -1200), + (221794, 96, -1200), + (221794, 97, -1200), + (221806, 226, 7), + (221806, 227, 7), + (221806, 228, 7), + (221806, 229, 7), + (221806, 230, 7), + (221806, 231, 7), + (221806, 233, 7), + (221806, 234, 7), + (221806, 94, 110), + (221809, 118, -156), + (221809, 119, -156), + (221809, 120, -156), + (221818, 90, -393), + (221818, 91, -393), + (221818, 92, -393), + (221818, 93, -393), + (221818, 94, -393), + (221818, 95, -393), + (221818, 96, -393), + (221818, 97, -393), + (221850, 118, -199), + (221850, 119, -199), + (221850, 120, -199), + (221862, 90, 472), + (221862, 91, 472), + (221862, 92, 472), + (221862, 93, 472), + (221862, 94, 472), + (221862, 95, 472), + (221862, 96, 472), + (221862, 97, 472), + (221877, 90, 122), + (221877, 91, 122), + (221877, 92, 122), + (221877, 93, 122), + (221877, 94, 122), + (221877, 95, 122), + (221877, 96, 122), + (221877, 97, 122), + (221905, 126, 40), + (221906, 125, 40), + (221907, 157, 40), + (221908, 158, 40), + (221910, 161, 160), + (221917, 161, 55), + (221920, 113, 131), + (221920, 102, 131), + (221920, 107, 131), + (221920, 103, 131), + (221920, 105, 131), + (221920, 104, 131), + (221920, 106, 131), + (221920, 100, 131), + (221920, 109, 131), + (221920, 133, 131), + (221920, 110, 131), + (221920, 112, 131), + (221920, 130, 131), + (221920, 114, 131), + (221920, 115, 131), + (221920, 116, 131), + (221920, 108, 131), + (221920, 128, 131), + (221920, 122, 131), + (221920, 129, 131), + (221920, 127, 131), + (221920, 131, 131), + (221920, 111, 131), + (221930, 125, 80), + (221931, 157, 80), + (221932, 158, 80), + (221939, 221, 100), + (221940, 126, 125), + (221942, 125, 125), + (221943, 159, 125), + (221944, 157, 125), + (221945, 158, 125), + (221948, 226, 53), + (221948, 227, 53), + (221948, 228, 53), + (221948, 229, 53), + (221948, 230, 53), + (221948, 231, 53), + (221948, 233, 53), + (221948, 234, 53), + (221948, 91, 800), + (221950, 153, 110), + (221950, 154, 110), + (221950, 155, 110), + (221956, 159, 40), + (221959, 156, -150), + (221965, 161, 260), + (221971, 205, 13), + (221971, 206, 13), + (221971, 207, 13), + (221971, 208, 13), + (221971, 216, 13), + (221971, 217, 13), + (221971, 219, 13), + (221971, 225, 13), + (221971, 475, 7), + (221971, 476, 7), + (221971, 477, 7), + (221971, 478, 7), + (221971, 479, 7), + (221971, 480, 7), + (221971, 482, 7), + (221971, 483, 7), + (221984, 118, -173), + (221984, 119, -173), + (221984, 120, -173), + (221984, 149, -173), + (221989, 156, -60), + (221990, 118, -73), + (221990, 119, -73), + (221990, 120, -73), + (221990, 149, -73), + (221996, 156, 600), + (222007, 90, 273), + (222007, 91, 273), + (222007, 92, 273), + (222007, 93, 273), + (222007, 94, 273), + (222007, 95, 273), + (222007, 96, 273), + (222007, 97, 273), + (222012, 90, 206), + (222012, 91, 206), + (222012, 92, 206), + (222012, 93, 206), + (222012, 94, 206), + (222012, 95, 206), + (222012, 96, 206), + (222012, 97, 206), + (222034, 118, -802), + (222034, 119, -802), + (222034, 120, -802), + (222034, 149, -802), + (222047, 90, 389), + (222047, 91, 389), + (222047, 92, 389), + (222047, 93, 389), + (222047, 94, 389), + (222047, 95, 389), + (222047, 96, 389), + (222047, 97, 389), + (222063, 226, 39), + (222063, 227, 39), + (222063, 228, 39), + (222063, 229, 39), + (222063, 230, 39), + (222063, 231, 39), + (222063, 233, 39), + (222063, 234, 39), + (222063, 91, 240), + (222072, 118, -19), + (222072, 119, -19), + (222072, 120, -19), + (222121, 156, -180), + (222123, 153, 16), + (222123, 154, 16), + (222123, 155, 16), + (222123, 156, 260), + (222127, 90, 426), + (222127, 91, 426), + (222127, 92, 426), + (222127, 93, 426), + (222127, 94, 426), + (222127, 95, 426), + (222127, 96, 426), + (222127, 97, 426), + (222128, 90, 343), + (222128, 91, 343), + (222128, 92, 343), + (222128, 93, 343), + (222128, 94, 343), + (222128, 95, 343), + (222128, 96, 343), + (222128, 97, 343), + (222134, 118, -291), + (222134, 119, -291), + (222134, 120, -291), + (222134, 149, -291), + (222153, 90, 105), + (222153, 91, 105), + (222153, 92, 105), + (222153, 93, 105), + (222153, 94, 105), + (222153, 95, 105), + (222153, 96, 105), + (222153, 97, 105), + (222155, 90, 23), + (222155, 91, 23), + (222155, 92, 23), + (222155, 93, 23), + (222155, 94, 23), + (222155, 95, 23), + (222155, 96, 23), + (222155, 97, 23), + (222157, 90, -582), + (222157, 91, -582), + (222157, 92, -582), + (222157, 93, -582), + (222157, 94, -582), + (222157, 95, -582), + (222157, 96, -582), + (222157, 97, -582), + (222169, 90, 301), + (222169, 91, 301), + (222169, 92, 301), + (222169, 93, 301), + (222169, 94, 301), + (222169, 95, 301), + (222169, 96, 301), + (222169, 97, 301), + (222171, 90, 342), + (222171, 91, 342), + (222171, 92, 342), + (222171, 93, 342), + (222171, 94, 342), + (222171, 95, 342), + (222171, 96, 342), + (222171, 97, 342), + (222177, 113, 56), + (222177, 102, 56), + (222177, 107, 56), + (222177, 103, 56), + (222177, 105, 56), + (222177, 104, 56), + (222177, 106, 56), + (222177, 100, 56), + (222177, 109, 56), + (222177, 133, 56), + (222177, 110, 56), + (222177, 112, 56), + (222177, 130, 56), + (222177, 114, 56), + (222177, 115, 56), + (222177, 116, 56), + (222177, 108, 56), + (222177, 128, 56), + (222177, 122, 56), + (222177, 129, 56), + (222177, 127, 56), + (222177, 131, 56), + (222177, 111, 56), + (222184, 226, 24), + (222184, 227, 24), + (222184, 228, 24), + (222184, 229, 24), + (222184, 230, 24), + (222184, 231, 24), + (222184, 233, 24), + (222184, 234, 24), + (222184, 92, 220), + (222186, 226, 43), + (222186, 227, 43), + (222186, 228, 43), + (222186, 229, 43), + (222186, 230, 43), + (222186, 231, 43), + (222186, 233, 43), + (222186, 234, 43), + (222186, 94, 600), + (222196, 90, 364), + (222196, 91, 364), + (222196, 92, 364), + (222196, 93, 364), + (222196, 94, 364), + (222196, 95, 364), + (222196, 96, 364), + (222196, 97, 364), + (222201, 221, 250), + (222203, 113, 85), + (222203, 102, 85), + (222203, 107, 85), + (222203, 103, 85), + (222203, 105, 85), + (222203, 104, 85), + (222203, 106, 85), + (222203, 100, 85), + (222203, 109, 85), + (222203, 133, 85), + (222203, 110, 85), + (222203, 112, 85), + (222203, 130, 85), + (222203, 114, 85), + (222203, 115, 85), + (222203, 116, 85), + (222203, 108, 85), + (222203, 128, 85), + (222203, 122, 85), + (222203, 129, 85), + (222203, 127, 85), + (222203, 131, 85), + (222203, 111, 85), + (222224, 90, -244), + (222224, 91, -244), + (222224, 92, -244), + (222224, 93, -244), + (222224, 94, -244), + (222224, 95, -244), + (222224, 96, -244), + (222224, 97, -244), + (222229, 156, -320), + (222233, 118, -416), + (222233, 119, -416), + (222233, 120, -416), + (222233, 149, -416), + (222237, 153, 2), + (222237, 154, 2), + (222237, 155, 2), + (222237, 156, 140), + (222238, 90, 46), + (222238, 91, 46), + (222238, 92, 46), + (222238, 93, 46), + (222238, 94, 46), + (222238, 95, 46), + (222238, 96, 46), + (222238, 97, 46), + (222242, 153, 37), + (222242, 154, 37), + (222242, 155, 37), + (222242, 156, 390), + (222248, 90, -202), + (222248, 91, -202), + (222248, 92, -202), + (222248, 93, -202), + (222248, 94, -202), + (222248, 95, -202), + (222248, 96, -202), + (222248, 97, -202), + (222255, 90, 147), + (222255, 91, 147), + (222255, 92, 147), + (222255, 93, 147), + (222255, 94, 147), + (222255, 95, 147), + (222255, 96, 147), + (222255, 97, 147), + (222257, 156, -1250), + (222316, 96, 200), + (222316, 95, 200), + (222316, 97, 200), + (222316, 93, 200), + (222316, 94, 200), + (222316, 90, 200), + (222316, 92, 200), + (222316, 91, 200), + (222316, 1, 281), + (222316, 168, 122), + (222317, 96, 61), + (222317, 95, 61), + (222317, 97, 61), + (222317, 93, 61), + (222317, 94, 61), + (222317, 90, 61), + (222317, 92, 61), + (222317, 91, 61), + (222317, 1, 92), + (222317, 168, 51), + (222318, 96, 167), + (222318, 95, 167), + (222318, 97, 167), + (222318, 93, 167), + (222318, 94, 167), + (222318, 90, 167), + (222318, 92, 167), + (222318, 91, 167), + (222318, 1, 246), + (222318, 168, 111), + (222319, 96, 116), + (222319, 95, 116), + (222319, 97, 116), + (222319, 93, 116), + (222319, 94, 116), + (222319, 90, 116), + (222319, 92, 116), + (222319, 91, 116), + (222319, 1, 177), + (222319, 168, 85), + (222320, 96, 47), + (222320, 95, 47), + (222320, 97, 47), + (222320, 93, 47), + (222320, 94, 47), + (222320, 90, 47), + (222320, 92, 47), + (222320, 91, 47), + (222320, 1, 75), + (222320, 168, 44), + (222321, 96, 96), + (222321, 95, 96), + (222321, 97, 96), + (222321, 93, 96), + (222321, 94, 96), + (222321, 90, 96), + (222321, 92, 96), + (222321, 91, 96), + (222321, 1, 150), + (222321, 168, 74), + (222322, 96, 31), + (222322, 95, 31), + (222322, 97, 31), + (222322, 93, 31), + (222322, 94, 31), + (222322, 90, 31), + (222322, 92, 31), + (222322, 91, 31), + (222322, 1, 50), + (222322, 168, 32), + (222323, 96, 230), + (222323, 95, 230), + (222323, 97, 230), + (222323, 93, 230), + (222323, 94, 230), + (222323, 90, 230), + (222323, 92, 230), + (222323, 91, 230), + (222323, 1, 307), + (222323, 168, 129), + (222324, 96, 79), + (222324, 95, 79), + (222324, 97, 79), + (222324, 93, 79), + (222324, 94, 79), + (222324, 90, 79), + (222324, 92, 79), + (222324, 91, 79), + (222324, 1, 120), + (222324, 168, 62), + (222325, 96, 138), + (222325, 95, 138), + (222325, 97, 138), + (222325, 93, 138), + (222325, 94, 138), + (222325, 90, 138), + (222325, 92, 138), + (222325, 91, 138), + (222325, 1, 207), + (222325, 168, 96), + (222326, 96, 17), + (222326, 95, 17), + (222326, 97, 17), + (222326, 93, 17), + (222326, 94, 17), + (222326, 90, 17), + (222326, 92, 17), + (222326, 91, 17), + (222326, 1, 27), + (222326, 168, 18), + (222327, 128, 25), + (222328, 130, 25), + (222329, 131, 25), + (222330, 127, 25), + (222331, 129, 25), + (222332, 122, 25), + (222333, 128, 90), + (222334, 130, 90), + (222335, 131, 90), + (222336, 127, 90), + (222337, 129, 90), + (222338, 122, 90), + (222426, 118, -2100), + (222426, 119, -2100), + (222426, 120, -2100), + (222426, 149, -2100), + (222427, 201, 31), + (222428, 201, 57), + (222429, 201, 80), + (222515, 168, 10), + (222517, 276, 15), + (222521, 276, 51), + (222521, 201, 10), + (222522, 276, 88), + (222522, 201, 12), + (222523, 276, 121), + (222523, 201, 14), + (222524, 276, 156), + (222524, 201, 16), + (222525, 276, 129), + (222526, 276, 175), + (222527, 276, 88), + (222528, 276, 52), + (222529, 276, 24), + (222530, 276, 32), + (222530, 277, 6), + (222531, 276, 79), + (222531, 277, 14), + (222532, 276, 120), + (222532, 277, 21), + (222533, 276, 165), + (222533, 277, 28), + (222534, 276, 205), + (222534, 277, 36), + (222535, 276, 250), + (222535, 277, 43), + (222536, 276, 187), + (222536, 201, 19), + (222581, 144, 19), + (222581, 100, 16), + (222582, 144, 40), + (222582, 100, 34), + (222583, 144, 75), + (222583, 100, 64), + (222584, 144, 94), + (222584, 100, 80), + (222585, 155, 30), + (222585, 153, 15), + (222585, 154, 15), + (222585, 17, 25), + (222585, 164, 20), + (222586, 155, 50), + (222586, 153, 25), + (222586, 154, 25), + (222586, 164, 45), + (222586, 17, 45), + (222587, 146, 30), + (222588, 146, 70), + (222589, 146, 90), + (222590, 101, 20), + (222590, 145, 12), + (222591, 101, 45), + (222591, 145, 27), + (222592, 101, 80), + (222592, 145, 48), + (222593, 106, 110), + (222593, 279, 3), + (222593, 278, 3), + (222593, 280, 3), + (222593, 316, 3), + (222593, 311, 3), + (222593, 281, 3), + (222593, 317, 3), + (222593, 282, 3), + (222594, 106, 85), + (222595, 106, 54), + (222596, 106, 29), + (222603, 91, 750), + (222603, 90, 600), + (222603, 92, 750), + (222603, 97, 750), + (222603, 95, 600), + (222603, 94, 750), + (222603, 93, 750), + (222603, 96, 750), + (222603, 1, 150), + (222603, 118, 30), + (222603, 17, 6), + (222603, 161, 1), + (222603, 181, 12), + (222604, 91, 900), + (222604, 90, 750), + (222604, 92, 900), + (222604, 97, 900), + (222604, 95, 750), + (222604, 94, 900), + (222604, 93, 900), + (222604, 96, 900), + (222604, 1, 350), + (222604, 118, 45), + (222604, 17, 12), + (222604, 161, 30), + (222604, 181, 24), + (222605, 91, 375), + (222605, 90, 225), + (222605, 92, 375), + (222605, 97, 375), + (222605, 95, 225), + (222605, 94, 375), + (222605, 93, 375), + (222605, 96, 375), + (222605, 156, 24), + (222605, 153, 24), + (222605, 149, 10), + (222605, 122, 1), + (222605, 1, 100), + (222606, 91, 450), + (222606, 90, 300), + (222606, 92, 450), + (222606, 97, 450), + (222606, 95, 300), + (222606, 94, 450), + (222606, 93, 450), + (222606, 96, 450), + (222606, 156, 32), + (222606, 153, 32), + (222606, 149, 50), + (222606, 122, 30), + (222606, 1, 250), + (222609, 91, 1500), + (222609, 90, 1200), + (222609, 92, 1500), + (222609, 97, 1500), + (222609, 95, 1200), + (222609, 94, 1500), + (222609, 93, 1500), + (222609, 96, 1500), + (222609, 221, 450), + (222609, 136, 20), + (222609, 18, 5), + (222609, 318, -1), + (222609, 111, 20), + (222609, 181, 16), + (222610, 91, 1800), + (222610, 90, 1500), + (222610, 92, 1800), + (222610, 97, 1800), + (222610, 95, 1500), + (222610, 94, 1800), + (222610, 93, 1800), + (222610, 96, 1800), + (222610, 221, 750), + (222610, 136, 30), + (222610, 18, 10), + (222610, 318, -5), + (222610, 111, 30), + (222610, 181, 32), + (222611, 91, 250), + (222611, 90, 150), + (222611, 92, 250), + (222611, 97, 250), + (222611, 95, 150), + (222611, 94, 250), + (222611, 93, 250), + (222611, 96, 250), + (222611, 102, 12), + (222611, 123, 12), + (222611, 154, 12), + (222611, 127, 1), + (222611, 1, 100), + (222612, 91, 300), + (222612, 90, 200), + (222612, 92, 300), + (222612, 97, 300), + (222612, 95, 200), + (222612, 94, 300), + (222612, 93, 300), + (222612, 96, 300), + (222612, 102, 16), + (222612, 123, 16), + (222612, 154, 16), + (222612, 127, 15), + (222612, 1, 250), + (222613, 91, 205), + (222613, 90, 205), + (222613, 92, 205), + (222613, 97, 205), + (222613, 95, 205), + (222613, 94, 205), + (222613, 93, 205), + (222613, 96, 205), + (222613, 107, 24), + (222613, 155, 20), + (222613, 20, 10), + (222613, 1, 100), + (222613, 130, 1), + (222614, 91, 250), + (222614, 90, 250), + (222614, 92, 250), + (222614, 97, 250), + (222614, 95, 250), + (222614, 94, 250), + (222614, 93, 250), + (222614, 96, 250), + (222614, 107, 32), + (222614, 155, 30), + (222614, 20, 20), + (222614, 1, 250), + (222614, 130, 30), + (222617, 91, 1000), + (222617, 90, 800), + (222617, 92, 1000), + (222617, 97, 1000), + (222617, 95, 800), + (222617, 94, 1000), + (222617, 93, 1000), + (222617, 96, 1000), + (222617, 19, 10), + (222617, 160, 20), + (222617, 128, 1), + (222617, 1, 100), + (222618, 91, 1200), + (222618, 90, 800), + (222618, 92, 1200), + (222618, 97, 1200), + (222618, 95, 800), + (222618, 94, 1200), + (222618, 93, 1200), + (222618, 96, 1200), + (222618, 19, 20), + (222618, 160, 60), + (222618, 128, 25), + (222618, 1, 200), + (222621, 91, 230), + (222621, 90, 175), + (222621, 92, 230), + (222621, 97, 230), + (222621, 95, 175), + (222621, 94, 230), + (222621, 93, 230), + (222621, 96, 230), + (222621, 181, 10), + (222621, 16, 3), + (222621, 131, 1), + (222621, 1, 3), + (222622, 91, 275), + (222622, 90, 175), + (222622, 92, 275), + (222622, 97, 275), + (222622, 95, 175), + (222622, 94, 275), + (222622, 93, 275), + (222622, 96, 275), + (222622, 181, 15), + (222622, 16, 6), + (222622, 131, 15), + (222622, 1, 300), + (222625, 91, 1585), + (222625, 90, 1000), + (222625, 92, 1585), + (222625, 97, 1585), + (222625, 95, 1000), + (222625, 94, 1585), + (222625, 93, 1585), + (222625, 96, 1585), + (222625, 21, 10), + (222625, 129, 1), + (222625, 1, 2), + (222626, 91, 1900), + (222626, 90, 1200), + (222626, 92, 1900), + (222626, 97, 1900), + (222626, 95, 1200), + (222626, 94, 1900), + (222626, 93, 1900), + (222626, 96, 1900), + (222626, 21, 20), + (222626, 129, 30), + (222626, 1, 200), + (222629, 91, 185), + (222629, 90, 175), + (222629, 92, 185), + (222629, 97, 175), + (222629, 95, 175), + (222629, 94, 185), + (222629, 93, 185), + (222629, 96, 185), + (222629, 181, 5), + (222630, 91, 230), + (222630, 90, 175), + (222630, 92, 230), + (222630, 97, 175), + (222630, 95, 175), + (222630, 94, 230), + (222630, 93, 230), + (222630, 96, 230), + (222630, 181, 10), + (222631, 91, 800), + (222631, 90, 800), + (222631, 92, 800), + (222631, 97, 800), + (222631, 95, 800), + (222631, 94, 800), + (222631, 93, 800), + (222631, 96, 800), + (222631, 19, 5), + (222632, 91, 1000), + (222632, 90, 800), + (222632, 92, 1000), + (222632, 97, 800), + (222632, 95, 800), + (222632, 94, 1000), + (222632, 93, 1000), + (222632, 96, 1000), + (222632, 19, 10), + (222633, 91, 165), + (222633, 90, 165), + (222633, 92, 165), + (222633, 97, 165), + (222633, 95, 165), + (222633, 94, 165), + (222633, 93, 165), + (222633, 96, 165), + (222633, 107, 16), + (222633, 155, 10), + (222634, 91, 205), + (222634, 90, 205), + (222634, 92, 205), + (222634, 97, 205), + (222634, 95, 205), + (222634, 94, 205), + (222634, 93, 205), + (222634, 96, 205), + (222634, 107, 24), + (222634, 155, 20), + (222637, 91, 200), + (222637, 90, 150), + (222637, 92, 200), + (222637, 97, 150), + (222637, 95, 150), + (222637, 94, 200), + (222637, 93, 200), + (222637, 96, 200), + (222637, 102, 8), + (222637, 123, 8), + (222638, 91, 250), + (222638, 90, 150), + (222638, 92, 250), + (222638, 97, 150), + (222638, 95, 150), + (222638, 94, 250), + (222638, 93, 250), + (222638, 96, 250), + (222638, 102, 12), + (222638, 123, 12), + (222641, 91, 1200), + (222641, 90, 1000), + (222641, 92, 1200), + (222641, 97, 1000), + (222641, 95, 1000), + (222641, 94, 1200), + (222641, 93, 1200), + (222641, 96, 1200), + (222641, 221, 300), + (222641, 136, 10), + (222641, 111, 10), + (222642, 91, 1500), + (222642, 90, 1200), + (222642, 92, 1500), + (222642, 97, 1200), + (222642, 95, 1200), + (222642, 94, 1500), + (222642, 93, 1500), + (222642, 96, 1500), + (222642, 221, 450), + (222642, 136, 20), + (222642, 111, 20), + (222645, 91, 300), + (222645, 90, 225), + (222645, 92, 300), + (222645, 97, 225), + (222645, 95, 225), + (222645, 94, 300), + (222645, 93, 300), + (222645, 96, 300), + (222645, 156, 16), + (222645, 153, 16), + (222646, 91, 375), + (222646, 90, 225), + (222646, 92, 375), + (222646, 97, 225), + (222646, 95, 225), + (222646, 94, 375), + (222646, 93, 375), + (222646, 96, 375), + (222646, 156, 24), + (222646, 153, 24), + (222649, 91, 600), + (222649, 90, 600), + (222649, 92, 600), + (222649, 97, 600), + (222649, 95, 600), + (222649, 94, 600), + (222649, 93, 600), + (222649, 96, 600), + (222649, 1, 100), + (222649, 118, 15), + (222650, 91, 750), + (222650, 90, 600), + (222650, 92, 750), + (222650, 97, 600), + (222650, 95, 600), + (222650, 94, 750), + (222650, 93, 750), + (222650, 96, 750), + (222650, 1, 150), + (222650, 118, 30), + (222651, 91, 125), + (222651, 90, 125), + (222651, 92, 125), + (222651, 97, 125), + (222651, 95, 125), + (222651, 94, 125), + (222651, 93, 125), + (222651, 96, 125), + (222651, 107, 8), + (222652, 91, 165), + (222652, 90, 165), + (222652, 92, 165), + (222652, 97, 165), + (222652, 95, 165), + (222652, 94, 165), + (222652, 93, 165), + (222652, 96, 165), + (222652, 107, 16), + (222653, 91, 150), + (222653, 90, 150), + (222653, 92, 150), + (222653, 97, 150), + (222653, 95, 150), + (222653, 94, 150), + (222653, 93, 150), + (222653, 96, 150), + (222653, 102, 4), + (222654, 91, 200), + (222654, 90, 150), + (222654, 92, 200), + (222654, 97, 150), + (222654, 95, 150), + (222654, 94, 200), + (222654, 93, 200), + (222654, 96, 200), + (222654, 102, 8), + (222655, 91, 900), + (222655, 90, 900), + (222655, 92, 900), + (222655, 97, 900), + (222655, 95, 900), + (222655, 94, 900), + (222655, 93, 900), + (222655, 96, 900), + (222655, 221, 150), + (222656, 91, 1200), + (222656, 90, 1000), + (222656, 92, 1200), + (222656, 97, 1000), + (222656, 95, 1000), + (222656, 94, 1200), + (222656, 93, 1200), + (222656, 96, 1200), + (222656, 221, 300), + (222657, 91, 225), + (222657, 90, 225), + (222657, 92, 225), + (222657, 97, 225), + (222657, 95, 225), + (222657, 94, 225), + (222657, 93, 225), + (222657, 96, 225), + (222657, 156, 8), + (222658, 91, 300), + (222658, 90, 225), + (222658, 92, 300), + (222658, 97, 225), + (222658, 95, 225), + (222658, 94, 300), + (222658, 93, 300), + (222658, 96, 300), + (222658, 156, 16), + (222659, 91, 450), + (222659, 90, 450), + (222659, 92, 450), + (222659, 97, 450), + (222659, 95, 450), + (222659, 94, 450), + (222659, 93, 450), + (222659, 96, 450), + (222659, 1, 50), + (222660, 91, 600), + (222660, 90, 600), + (222660, 92, 600), + (222660, 97, 600), + (222660, 95, 600), + (222660, 94, 600), + (222660, 93, 600), + (222660, 96, 600), + (222660, 1, 100), + (222661, 91, 940), + (222661, 90, 940), + (222661, 92, 570), + (222661, 97, 940), + (222661, 95, 755), + (222661, 94, 940), + (222661, 93, 940), + (222661, 96, 940), + (222661, 1, 225), + (222661, 155, 20), + (222661, 17, 15), + (222661, 181, 8), + (222662, 91, 1125), + (222662, 90, 1125), + (222662, 92, 755), + (222662, 97, 1125), + (222662, 95, 940), + (222662, 94, 1125), + (222662, 93, 1125), + (222662, 96, 1125), + (222662, 1, 550), + (222662, 155, 40), + (222662, 17, 30), + (222662, 181, 16), + (222663, 91, 565), + (222663, 90, 565), + (222663, 92, 345), + (222663, 97, 565), + (222663, 95, 455), + (222663, 94, 565), + (222663, 93, 565), + (222663, 96, 565), + (222663, 156, 30), + (222663, 153, 20), + (222663, 154, 20), + (222663, 122, 1), + (222663, 1, 100), + (222664, 91, 675), + (222664, 90, 675), + (222664, 92, 455), + (222664, 97, 675), + (222664, 95, 565), + (222664, 94, 675), + (222664, 93, 675), + (222664, 96, 675), + (222664, 156, 50), + (222664, 153, 40), + (222664, 154, 40), + (222664, 122, 24), + (222664, 1, 250), + (222667, 91, 1500), + (222667, 90, 1500), + (222667, 92, 900), + (222667, 97, 1500), + (222667, 95, 1200), + (222667, 94, 1500), + (222667, 93, 1500), + (222667, 96, 1500), + (222667, 124, 24), + (222667, 163, 24), + (222667, 18, 10), + (222667, 130, 1), + (222667, 181, 12), + (222668, 91, 1800), + (222668, 90, 1800), + (222668, 92, 1200), + (222668, 97, 1800), + (222668, 95, 1500), + (222668, 94, 1800), + (222668, 93, 1800), + (222668, 96, 1800), + (222668, 124, 36), + (222668, 163, 48), + (222668, 18, 20), + (222668, 130, 24), + (222668, 181, 24), + (222669, 91, 375), + (222669, 90, 375), + (222669, 92, 225), + (222669, 97, 375), + (222669, 95, 300), + (222669, 94, 375), + (222669, 93, 375), + (222669, 96, 375), + (222669, 118, 12), + (222669, 123, 12), + (222669, 101, 10), + (222669, 127, 1), + (222669, 1, 100), + (222670, 91, 450), + (222670, 90, 450), + (222670, 92, 300), + (222670, 97, 450), + (222670, 95, 375), + (222670, 94, 450), + (222670, 93, 450), + (222670, 96, 450), + (222670, 118, 24), + (222670, 123, 24), + (222670, 101, 20), + (222670, 127, 12), + (222670, 1, 250), + (222673, 91, 310), + (222673, 90, 310), + (222673, 92, 190), + (222673, 97, 310), + (222673, 95, 250), + (222673, 94, 310), + (222673, 93, 310), + (222673, 96, 310), + (222673, 106, 40), + (222673, 144, 30), + (222673, 20, 15), + (222673, 129, 1), + (222673, 1, 100), + (222674, 91, 375), + (222674, 90, 375), + (222674, 92, 250), + (222674, 97, 375), + (222674, 95, 310), + (222674, 94, 375), + (222674, 93, 375), + (222674, 96, 375), + (222674, 106, 60), + (222674, 144, 40), + (222674, 20, 30), + (222674, 129, 24), + (222674, 1, 250), + (222677, 91, 1125), + (222677, 90, 1125), + (222677, 92, 900), + (222677, 97, 1125), + (222677, 95, 900), + (222677, 94, 1125), + (222677, 93, 1125), + (222677, 96, 1125), + (222677, 19, 10), + (222677, 164, 30), + (222677, 131, 1), + (222677, 1, 100), + (222678, 91, 1350), + (222678, 90, 1350), + (222678, 92, 900), + (222678, 97, 1350), + (222678, 95, 1125), + (222678, 94, 1350), + (222678, 93, 1350), + (222678, 96, 1350), + (222678, 19, 20), + (222678, 164, 60), + (222678, 131, 24), + (222678, 1, 200), + (222681, 91, 175), + (222681, 90, 175), + (222681, 92, 125), + (222681, 97, 175), + (222681, 95, 125), + (222681, 94, 175), + (222681, 93, 175), + (222681, 96, 175), + (222681, 145, 10), + (222681, 1, 4), + (222681, 16, 5), + (222681, 128, 1), + (222682, 91, 225), + (222682, 90, 225), + (222682, 92, 125), + (222682, 97, 225), + (222682, 95, 175), + (222682, 94, 225), + (222682, 93, 225), + (222682, 96, 225), + (222682, 145, 20), + (222682, 1, 400), + (222682, 16, 10), + (222682, 128, 12), + (222683, 91, 1500), + (222683, 90, 1500), + (222683, 92, 900), + (222683, 97, 1500), + (222683, 95, 1200), + (222683, 94, 1500), + (222683, 93, 1500), + (222683, 96, 1500), + (222683, 21, 10), + (222683, 221, 225), + (222683, 146, 25), + (222684, 91, 1800), + (222684, 90, 1800), + (222684, 92, 900), + (222684, 97, 1800), + (222684, 95, 1500), + (222684, 94, 1800), + (222684, 93, 1800), + (222684, 96, 1800), + (222684, 21, 20), + (222684, 221, 550), + (222684, 146, 50), + (222694, 316, 5), + (222707, 311, 11), + (222746, 91, 1200), + (222746, 90, 1200), + (222746, 92, 2085), + (222746, 97, 1585), + (222746, 95, 1585), + (222746, 94, 2085), + (222746, 93, 1585), + (222746, 96, 1585), + (222746, 21, 10), + (222746, 127, 1), + (222746, 1, 1), + (222747, 91, 1500), + (222747, 90, 1500), + (222747, 92, 2500), + (222747, 97, 1900), + (222747, 95, 1900), + (222747, 94, 2500), + (222747, 93, 1900), + (222747, 96, 1900), + (222747, 21, 20), + (222747, 127, 30), + (222747, 1, 150), + (222748, 91, 125), + (222748, 90, 125), + (222748, 92, 225), + (222748, 97, 175), + (222748, 95, 175), + (222748, 94, 225), + (222748, 93, 175), + (222748, 96, 175), + (222748, 181, 14), + (222748, 16, 3), + (222748, 131, 1), + (222748, 1, 2), + (222749, 91, 175), + (222749, 90, 175), + (222749, 92, 325), + (222749, 97, 225), + (222749, 95, 225), + (222749, 94, 325), + (222749, 93, 225), + (222749, 96, 225), + (222749, 181, 21), + (222749, 16, 6), + (222749, 131, 15), + (222749, 1, 200), + (222750, 91, 900), + (222750, 90, 900), + (222750, 92, 1125), + (222750, 97, 1125), + (222750, 95, 1125), + (222750, 94, 1125), + (222750, 93, 1125), + (222750, 96, 1125), + (222750, 19, 10), + (222750, 160, 20), + (222750, 130, 1), + (222750, 1, 100), + (222751, 91, 1125), + (222751, 90, 1125), + (222751, 92, 1350), + (222751, 97, 1350), + (222751, 95, 1350), + (222751, 94, 1350), + (222751, 93, 1350), + (222751, 96, 1350), + (222751, 19, 20), + (222751, 160, 60), + (222751, 130, 30), + (222751, 1, 200), + (222754, 91, 200), + (222754, 90, 200), + (222754, 92, 565), + (222754, 97, 250), + (222754, 95, 250), + (222754, 94, 565), + (222754, 93, 250), + (222754, 96, 250), + (222754, 133, 21), + (222754, 155, 21), + (222754, 20, 10), + (222754, 128, 1), + (222754, 1, 100), + (222755, 91, 250), + (222755, 90, 250), + (222755, 92, 675), + (222755, 97, 300), + (222755, 95, 300), + (222755, 94, 675), + (222755, 93, 300), + (222755, 96, 300), + (222755, 133, 28), + (222755, 155, 28), + (222755, 20, 20), + (222755, 128, 25), + (222755, 1, 250), + (222758, 91, 200), + (222758, 90, 200), + (222758, 92, 410), + (222758, 97, 250), + (222758, 95, 250), + (222758, 94, 410), + (222758, 93, 250), + (222758, 96, 250), + (222758, 112, 12), + (222758, 123, 12), + (222758, 154, 9), + (222758, 129, 1), + (222758, 1, 100), + (222759, 91, 250), + (222759, 90, 250), + (222759, 92, 500), + (222759, 97, 300), + (222759, 95, 300), + (222759, 94, 500), + (222759, 93, 300), + (222759, 96, 300), + (222759, 112, 16), + (222759, 123, 16), + (222759, 154, 18), + (222759, 129, 15), + (222759, 1, 250), + (222762, 91, 1000), + (222762, 90, 1000), + (222762, 92, 1500), + (222762, 97, 1250), + (222762, 95, 1250), + (222762, 94, 1500), + (222762, 93, 1250), + (222762, 96, 1250), + (222762, 221, 500), + (222762, 136, 30), + (222762, 18, 6), + (222762, 318, -1), + (222762, 181, 16), + (222763, 91, 1250), + (222763, 90, 1250), + (222763, 92, 1800), + (222763, 97, 1500), + (222763, 95, 1500), + (222763, 94, 1800), + (222763, 93, 1500), + (222763, 96, 1500), + (222763, 221, 1000), + (222763, 136, 40), + (222763, 18, 12), + (222763, 318, -5), + (222763, 181, 32), + (222766, 91, 300), + (222766, 90, 300), + (222766, 92, 730), + (222766, 97, 375), + (222766, 95, 375), + (222766, 94, 730), + (222766, 93, 375), + (222766, 96, 375), + (222766, 156, 24), + (222766, 153, 18), + (222766, 149, 30), + (222766, 122, 1), + (222766, 1, 100), + (222767, 91, 375), + (222767, 90, 375), + (222767, 92, 875), + (222767, 97, 450), + (222767, 95, 450), + (222767, 94, 875), + (222767, 93, 450), + (222767, 96, 450), + (222767, 156, 32), + (222767, 153, 36), + (222767, 149, 60), + (222767, 122, 25), + (222767, 1, 250), + (222770, 91, 600), + (222770, 90, 600), + (222770, 92, 1020), + (222770, 97, 750), + (222770, 95, 750), + (222770, 94, 1020), + (222770, 93, 750), + (222770, 96, 750), + (222770, 1, 150), + (222770, 119, 24), + (222770, 17, 5), + (222770, 161, 1), + (222770, 181, 12), + (222771, 91, 750), + (222771, 90, 750), + (222771, 92, 1225), + (222771, 97, 900), + (222771, 95, 900), + (222771, 94, 1225), + (222771, 93, 900), + (222771, 96, 900), + (222771, 1, 200), + (222771, 119, 32), + (222771, 17, 10), + (222771, 161, 40), + (222771, 181, 24), + (222774, 91, 125), + (222774, 90, 125), + (222774, 92, 175), + (222774, 97, 125), + (222774, 95, 125), + (222774, 94, 175), + (222774, 93, 125), + (222774, 96, 125), + (222774, 181, 7), + (222775, 91, 125), + (222775, 90, 125), + (222775, 92, 225), + (222775, 97, 175), + (222775, 95, 175), + (222775, 94, 225), + (222775, 93, 175), + (222775, 96, 175), + (222775, 181, 14), + (222783, 91, 750), + (222783, 90, 750), + (222783, 92, 900), + (222783, 97, 900), + (222783, 95, 900), + (222783, 94, 900), + (222783, 93, 900), + (222783, 96, 900), + (222783, 19, 5), + (222784, 91, 900), + (222784, 90, 900), + (222784, 92, 1125), + (222784, 97, 1125), + (222784, 95, 1125), + (222784, 94, 1125), + (222784, 93, 1125), + (222784, 96, 1125), + (222784, 19, 10), + (222785, 91, 150), + (222785, 90, 150), + (222785, 92, 355), + (222785, 97, 200), + (222785, 95, 200), + (222785, 94, 355), + (222785, 93, 200), + (222785, 96, 200), + (222785, 133, 14), + (222785, 155, 14), + (222786, 91, 200), + (222786, 90, 200), + (222786, 92, 565), + (222786, 97, 250), + (222786, 95, 250), + (222786, 94, 565), + (222786, 93, 250), + (222786, 96, 250), + (222786, 133, 21), + (222786, 155, 21), + (222789, 91, 150), + (222789, 90, 150), + (222789, 92, 330), + (222789, 97, 200), + (222789, 95, 200), + (222789, 94, 330), + (222789, 93, 200), + (222789, 96, 200), + (222789, 112, 8), + (222789, 123, 8), + (222790, 91, 200), + (222790, 90, 200), + (222790, 92, 410), + (222790, 97, 250), + (222790, 95, 250), + (222790, 94, 410), + (222790, 93, 250), + (222790, 96, 250), + (222790, 112, 12), + (222790, 123, 12), + (222793, 91, 900), + (222793, 90, 900), + (222793, 92, 1250), + (222793, 97, 900), + (222793, 95, 900), + (222793, 94, 1250), + (222793, 93, 900), + (222793, 96, 900), + (222793, 221, 300), + (222793, 136, 20), + (222794, 91, 1000), + (222794, 90, 1000), + (222794, 92, 1500), + (222794, 97, 1250), + (222794, 95, 1250), + (222794, 94, 1500), + (222794, 93, 1250), + (222794, 96, 1250), + (222794, 221, 500), + (222794, 136, 30), + (222797, 91, 225), + (222797, 90, 225), + (222797, 92, 585), + (222797, 97, 300), + (222797, 95, 300), + (222797, 94, 585), + (222797, 93, 300), + (222797, 96, 300), + (222797, 156, 16), + (222797, 153, 9), + (222798, 91, 300), + (222798, 90, 300), + (222798, 92, 730), + (222798, 97, 375), + (222798, 95, 375), + (222798, 94, 730), + (222798, 93, 375), + (222798, 96, 375), + (222798, 156, 24), + (222798, 153, 18), + (222801, 91, 450), + (222801, 90, 450), + (222801, 92, 815), + (222801, 97, 600), + (222801, 95, 600), + (222801, 94, 815), + (222801, 93, 600), + (222801, 96, 600), + (222801, 1, 100), + (222801, 119, 16), + (222802, 91, 600), + (222802, 90, 600), + (222802, 92, 1225), + (222802, 97, 750), + (222802, 95, 750), + (222802, 94, 1225), + (222802, 93, 750), + (222802, 96, 750), + (222802, 1, 150), + (222802, 119, 24), + (222865, 91, 450), + (222865, 90, 450), + (222865, 92, 605), + (222865, 97, 450), + (222865, 95, 450), + (222865, 94, 605), + (222865, 93, 450), + (222865, 96, 450), + (222865, 1, 50), + (222866, 91, 450), + (222866, 90, 450), + (222866, 92, 815), + (222866, 97, 600), + (222866, 95, 600), + (222866, 94, 815), + (222866, 93, 600), + (222866, 96, 600), + (222866, 1, 100), + (222867, 91, 225), + (222867, 90, 225), + (222867, 92, 440), + (222867, 97, 300), + (222867, 95, 300), + (222867, 94, 440), + (222867, 93, 300), + (222867, 96, 300), + (222867, 156, 8), + (222868, 91, 225), + (222868, 90, 225), + (222868, 92, 585), + (222868, 97, 300), + (222868, 95, 300), + (222868, 94, 585), + (222868, 93, 300), + (222868, 96, 300), + (222868, 156, 16), + (222871, 91, 750), + (222871, 90, 750), + (222871, 92, 1000), + (222871, 97, 750), + (222871, 95, 750), + (222871, 94, 1000), + (222871, 93, 750), + (222871, 96, 750), + (222871, 221, 100), + (222872, 91, 900), + (222872, 90, 900), + (222872, 92, 1250), + (222872, 97, 900), + (222872, 95, 900), + (222872, 94, 1250), + (222872, 93, 900), + (222872, 96, 900), + (222872, 221, 300), + (222875, 91, 150), + (222875, 90, 150), + (222875, 92, 250), + (222875, 97, 150), + (222875, 95, 150), + (222875, 94, 250), + (222875, 93, 150), + (222875, 96, 150), + (222875, 112, 4), + (222876, 91, 150), + (222876, 90, 150), + (222876, 92, 330), + (222876, 97, 200), + (222876, 95, 200), + (222876, 94, 330), + (222876, 93, 200), + (222876, 96, 200), + (222876, 112, 8), + (222879, 91, 150), + (222879, 90, 150), + (222879, 92, 245), + (222879, 97, 150), + (222879, 95, 150), + (222879, 94, 245), + (222879, 93, 150), + (222879, 96, 150), + (222879, 133, 7), + (222880, 91, 150), + (222880, 90, 150), + (222880, 92, 355), + (222880, 97, 200), + (222880, 95, 200), + (222880, 94, 355), + (222880, 93, 200), + (222880, 96, 200), + (222880, 133, 14), + (222897, 91, 755), + (222897, 90, 755), + (222897, 92, 570), + (222897, 97, 570), + (222897, 95, 570), + (222897, 94, 755), + (222897, 93, 755), + (222897, 96, 755), + (222897, 1, 100), + (222897, 155, 10), + (222898, 91, 940), + (222898, 90, 940), + (222898, 92, 570), + (222898, 97, 755), + (222898, 95, 755), + (222898, 94, 940), + (222898, 93, 940), + (222898, 96, 940), + (222898, 1, 225), + (222898, 155, 20), + (222899, 91, 455), + (222899, 90, 455), + (222899, 92, 345), + (222899, 97, 345), + (222899, 95, 345), + (222899, 94, 455), + (222899, 93, 455), + (222899, 96, 455), + (222899, 156, 20), + (222899, 153, 10), + (222900, 91, 565), + (222900, 90, 565), + (222900, 92, 345), + (222900, 97, 455), + (222900, 95, 455), + (222900, 94, 565), + (222900, 93, 565), + (222900, 96, 565), + (222900, 156, 30), + (222900, 153, 20), + (222901, 91, 1200), + (222901, 90, 1200), + (222901, 92, 900), + (222901, 97, 900), + (222901, 95, 900), + (222901, 94, 1200), + (222901, 93, 1200), + (222901, 96, 1200), + (222901, 124, 12), + (222901, 163, 12), + (222902, 91, 1500), + (222902, 90, 1500), + (222902, 92, 900), + (222902, 97, 1200), + (222902, 95, 1200), + (222902, 94, 1500), + (222902, 93, 1500), + (222902, 96, 1500), + (222902, 124, 24), + (222902, 163, 24), + (222903, 91, 300), + (222903, 90, 300), + (222903, 92, 225), + (222903, 97, 225), + (222903, 95, 225), + (222903, 94, 300), + (222903, 93, 300), + (222903, 96, 300), + (222903, 118, 6), + (222903, 123, 6), + (222904, 91, 375), + (222904, 90, 375), + (222904, 92, 225), + (222904, 97, 300), + (222904, 95, 300), + (222904, 94, 375), + (222904, 93, 375), + (222904, 96, 375), + (222904, 118, 12), + (222904, 123, 12), + (222907, 91, 250), + (222907, 90, 250), + (222907, 92, 190), + (222907, 97, 190), + (222907, 95, 190), + (222907, 94, 250), + (222907, 93, 250), + (222907, 96, 250), + (222907, 106, 20), + (222907, 144, 20), + (222908, 91, 310), + (222908, 90, 310), + (222908, 92, 190), + (222908, 97, 250), + (222908, 95, 250), + (222908, 94, 310), + (222908, 93, 310), + (222908, 96, 310), + (222908, 106, 40), + (222908, 144, 30), + (222911, 91, 900), + (222911, 90, 900), + (222911, 92, 900), + (222911, 97, 900), + (222911, 95, 900), + (222911, 94, 900), + (222911, 93, 900), + (222911, 96, 900), + (222911, 19, 5), + (222912, 91, 1125), + (222912, 90, 1125), + (222912, 92, 900), + (222912, 97, 900), + (222912, 95, 900), + (222912, 94, 1125), + (222912, 93, 1125), + (222912, 96, 1125), + (222912, 19, 10), + (222913, 91, 125), + (222913, 90, 125), + (222913, 92, 125), + (222913, 97, 125), + (222913, 95, 125), + (222913, 94, 125), + (222913, 93, 125), + (222913, 96, 125), + (222913, 145, 5), + (222914, 91, 175), + (222914, 90, 175), + (222914, 92, 125), + (222914, 97, 125), + (222914, 95, 125), + (222914, 94, 175), + (222914, 93, 175), + (222914, 96, 175), + (222914, 145, 10), + (222916, 281, 17), + (222918, 317, 24), + (222920, 282, 33), + (222921, 91, 570), + (222921, 90, 570), + (222921, 92, 570), + (222921, 97, 570), + (222921, 95, 570), + (222921, 94, 570), + (222921, 93, 570), + (222921, 96, 570), + (222921, 1, 50), + (222922, 91, 755), + (222922, 90, 755), + (222922, 92, 570), + (222922, 97, 570), + (222922, 95, 570), + (222922, 94, 755), + (222922, 93, 755), + (222922, 96, 755), + (222922, 1, 100), + (222923, 91, 345), + (222923, 90, 345), + (222923, 92, 345), + (222923, 97, 345), + (222923, 95, 345), + (222923, 94, 345), + (222923, 93, 345), + (222923, 96, 345), + (222923, 156, 10), + (222924, 91, 455), + (222924, 90, 455), + (222924, 92, 345), + (222924, 97, 345), + (222924, 95, 345), + (222924, 94, 455), + (222924, 93, 455), + (222924, 96, 455), + (222924, 156, 20), + (222925, 91, 900), + (222925, 90, 900), + (222925, 92, 900), + (222925, 97, 900), + (222925, 95, 900), + (222925, 94, 900), + (222925, 93, 900), + (222925, 96, 900), + (222925, 124, 6), + (222926, 91, 1200), + (222926, 90, 1200), + (222926, 92, 900), + (222926, 97, 900), + (222926, 95, 900), + (222926, 94, 1200), + (222926, 93, 1200), + (222926, 96, 1200), + (222926, 124, 12), + (222927, 91, 225), + (222927, 90, 225), + (222927, 92, 225), + (222927, 97, 225), + (222927, 95, 225), + (222927, 94, 225), + (222927, 93, 225), + (222927, 96, 225), + (222927, 123, 3), + (222928, 91, 300), + (222928, 90, 300), + (222928, 92, 225), + (222928, 97, 225), + (222928, 95, 225), + (222928, 94, 300), + (222928, 93, 300), + (222928, 96, 300), + (222928, 123, 6), + (222929, 91, 190), + (222929, 90, 190), + (222929, 92, 190), + (222929, 97, 190), + (222929, 95, 190), + (222929, 94, 190), + (222929, 93, 190), + (222929, 96, 190), + (222929, 106, 10), + (222930, 91, 250), + (222930, 90, 250), + (222930, 92, 190), + (222930, 97, 190), + (222930, 95, 190), + (222930, 94, 250), + (222930, 93, 250), + (222930, 96, 250), + (222930, 106, 20), + (222931, 91, 570), + (222931, 90, 570), + (222931, 92, 570), + (222931, 97, 570), + (222931, 95, 570), + (222931, 94, 570), + (222931, 93, 570), + (222931, 96, 570), + (222931, 146, 15), + (222932, 91, 755), + (222932, 90, 755), + (222932, 92, 755), + (222932, 97, 570), + (222932, 95, 570), + (222932, 94, 570), + (222932, 93, 755), + (222932, 96, 755), + (222932, 146, 30), + (222933, 91, 345), + (222933, 90, 345), + (222933, 92, 345), + (222933, 97, 345), + (222933, 95, 345), + (222933, 94, 345), + (222933, 93, 345), + (222933, 96, 345), + (222933, 156, 5), + (222934, 91, 455), + (222934, 90, 455), + (222934, 92, 455), + (222934, 97, 345), + (222934, 95, 345), + (222934, 94, 345), + (222934, 93, 455), + (222934, 96, 455), + (222934, 156, 20), + (222935, 91, 900), + (222935, 90, 900), + (222935, 92, 900), + (222935, 97, 900), + (222935, 95, 900), + (222935, 94, 900), + (222935, 93, 900), + (222935, 96, 900), + (222935, 1, 150), + (222936, 91, 1200), + (222936, 90, 1200), + (222936, 92, 1200), + (222936, 97, 1000), + (222936, 95, 1000), + (222936, 94, 1000), + (222936, 93, 1200), + (222936, 96, 1200), + (222936, 1, 350), + (222939, 91, 250), + (222939, 90, 250), + (222939, 92, 250), + (222939, 97, 250), + (222939, 95, 250), + (222939, 94, 250), + (222939, 93, 250), + (222939, 96, 250), + (222939, 118, 15), + (222940, 91, 330), + (222940, 90, 330), + (222940, 92, 330), + (222940, 97, 305), + (222940, 95, 305), + (222940, 94, 305), + (222940, 93, 330), + (222940, 96, 330), + (222940, 118, 20), + (222941, 91, 190), + (222941, 90, 190), + (222941, 92, 190), + (222941, 97, 190), + (222941, 95, 190), + (222941, 94, 190), + (222941, 93, 190), + (222941, 96, 190), + (222941, 147, 15), + (222942, 91, 250), + (222942, 90, 250), + (222942, 92, 250), + (222942, 97, 205), + (222942, 95, 205), + (222942, 94, 205), + (222942, 93, 250), + (222942, 96, 250), + (222942, 147, 30), + (223083, 91, 9), + (223083, 90, 9), + (223083, 92, 7), + (223083, 97, 7), + (223083, 95, 7), + (223083, 94, 4), + (223083, 93, 4), + (223083, 96, 4), + (223083, 121, 1), + (223083, 277, 1), + (223083, 276, 1), + (223084, 91, 900), + (223084, 90, 900), + (223084, 92, 750), + (223084, 97, 750), + (223084, 95, 750), + (223084, 94, 450), + (223084, 93, 450), + (223084, 96, 450), + (223084, 121, 30), + (223084, 277, 20), + (223084, 276, 20), + (223085, 91, 3), + (223085, 90, 3), + (223085, 92, 2), + (223085, 97, 2), + (223085, 95, 2), + (223085, 94, 1), + (223085, 93, 1), + (223085, 96, 1), + (223085, 147, 1), + (223085, 105, 1), + (223085, 106, 1), + (223085, 144, 1), + (223085, 146, 1), + (223085, 155, 2), + (223085, 111, 1), + (223085, 107, 1), + (223086, 91, 300), + (223086, 90, 300), + (223086, 92, 250), + (223086, 97, 250), + (223086, 95, 250), + (223086, 94, 150), + (223086, 93, 150), + (223086, 96, 150), + (223086, 147, 30), + (223086, 105, 24), + (223086, 106, 30), + (223086, 144, 20), + (223086, 146, 24), + (223086, 155, 20), + (223086, 111, 35), + (223086, 107, 16), + (223087, 91, 3), + (223087, 90, 3), + (223087, 92, 2), + (223087, 97, 2), + (223087, 95, 2), + (223087, 94, 1), + (223087, 93, 1), + (223087, 96, 1), + (223087, 118, 2), + (223087, 103, 1), + (223087, 101, 1), + (223087, 102, 1), + (223087, 104, 1), + (223088, 91, 300), + (223088, 90, 300), + (223088, 92, 250), + (223088, 97, 250), + (223088, 95, 250), + (223088, 94, 150), + (223088, 93, 150), + (223088, 96, 150), + (223088, 118, 20), + (223088, 103, 12), + (223088, 101, 18), + (223088, 102, 8), + (223088, 104, 9), + (223089, 91, 12), + (223089, 90, 12), + (223089, 92, 10), + (223089, 97, 10), + (223089, 95, 10), + (223089, 94, 6), + (223089, 93, 6), + (223089, 96, 6), + (223089, 1, 25), + (223089, 111, 1), + (223089, 107, 1), + (223089, 155, 3), + (223089, 105, 1), + (223090, 91, 1200), + (223090, 90, 1200), + (223090, 92, 1000), + (223090, 97, 1000), + (223090, 95, 1000), + (223090, 94, 600), + (223090, 93, 600), + (223090, 96, 600), + (223090, 1, 500), + (223090, 111, 25), + (223090, 107, 24), + (223090, 155, 35), + (223090, 105, 30), + (223091, 91, 7), + (223091, 90, 7), + (223091, 92, 6), + (223091, 97, 6), + (223091, 95, 6), + (223091, 94, 3), + (223091, 93, 3), + (223091, 96, 3), + (223091, 155, 2), + (223091, 1, 10), + (223091, 100, 1), + (223091, 146, 1), + (223091, 118, 2), + (223092, 91, 750), + (223092, 90, 750), + (223092, 92, 625), + (223092, 97, 625), + (223092, 95, 625), + (223092, 94, 375), + (223092, 93, 375), + (223092, 96, 375), + (223092, 155, 20), + (223092, 1, 225), + (223092, 100, 20), + (223092, 146, 25), + (223092, 118, 22), + (223093, 91, 4), + (223093, 90, 4), + (223093, 92, 3), + (223093, 97, 3), + (223093, 95, 3), + (223093, 94, 2), + (223093, 93, 2), + (223093, 96, 2), + (223093, 156, 3), + (223093, 106, 1), + (223093, 143, 2), + (223093, 111, 1), + (223093, 155, 1), + (223094, 91, 450), + (223094, 90, 450), + (223094, 92, 375), + (223094, 97, 375), + (223094, 95, 375), + (223094, 94, 225), + (223094, 93, 225), + (223094, 96, 225), + (223094, 156, 30), + (223094, 106, 24), + (223094, 143, 25), + (223094, 111, 10), + (223094, 155, 12), + (223095, 91, 7), + (223095, 90, 9), + (223095, 92, 9), + (223095, 97, 7), + (223095, 95, 7), + (223095, 94, 4), + (223095, 93, 4), + (223095, 96, 4), + (223095, 150, 1), + (223095, 164, 1), + (223095, 379, 0), + (223096, 91, 750), + (223096, 90, 900), + (223096, 92, 900), + (223096, 97, 750), + (223096, 95, 750), + (223096, 94, 450), + (223096, 93, 450), + (223096, 96, 450), + (223096, 150, 10), + (223096, 164, 30), + (223096, 379, 1), + (223097, 91, 2), + (223097, 90, 3), + (223097, 92, 3), + (223097, 97, 2), + (223097, 95, 2), + (223097, 94, 1), + (223097, 93, 1), + (223097, 96, 1), + (223097, 167, 1), + (223097, 115, 1), + (223097, 164, 1), + (223097, 112, 1), + (223097, 133, 1), + (223098, 91, 250), + (223098, 90, 300), + (223098, 92, 300), + (223098, 97, 250), + (223098, 95, 250), + (223098, 94, 150), + (223098, 93, 150), + (223098, 96, 150), + (223098, 167, 30), + (223098, 115, 24), + (223098, 164, 15), + (223098, 112, 18), + (223098, 133, 14), + (223099, 91, 2), + (223099, 90, 3), + (223099, 92, 3), + (223099, 97, 2), + (223099, 95, 2), + (223099, 94, 1), + (223099, 93, 1), + (223099, 96, 1), + (223099, 119, 2), + (223099, 151, 1), + (223099, 112, 1), + (223099, 134, 1), + (223099, 114, 1), + (223099, 154, 1), + (223099, 113, 1), + (223100, 91, 250), + (223100, 90, 300), + (223100, 92, 300), + (223100, 97, 250), + (223100, 95, 250), + (223100, 94, 150), + (223100, 93, 150), + (223100, 96, 150), + (223100, 119, 20), + (223100, 151, 10), + (223100, 112, 11), + (223100, 134, 18), + (223100, 114, 12), + (223100, 154, 15), + (223100, 113, 15), + (223101, 91, 10), + (223101, 90, 12), + (223101, 92, 12), + (223101, 97, 10), + (223101, 95, 10), + (223101, 94, 6), + (223101, 93, 6), + (223101, 96, 6), + (223101, 1, 20), + (223101, 151, 1), + (223101, 148, 1), + (223101, 109, 1), + (223101, 115, 1), + (223101, 133, 1), + (223102, 91, 1000), + (223102, 90, 1200), + (223102, 92, 1200), + (223102, 97, 1000), + (223102, 95, 1000), + (223102, 94, 600), + (223102, 93, 600), + (223102, 96, 600), + (223102, 1, 450), + (223102, 151, 30), + (223102, 148, 18), + (223102, 109, 20), + (223102, 115, 25), + (223102, 133, 8), + (223103, 91, 6), + (223103, 90, 7), + (223103, 92, 7), + (223103, 97, 6), + (223103, 95, 6), + (223103, 94, 3), + (223103, 93, 3), + (223103, 96, 3), + (223103, 1, 5), + (223103, 113, 1), + (223103, 114, 1), + (223103, 154, 2), + (223103, 150, 1), + (223104, 91, 625), + (223104, 90, 750), + (223104, 92, 750), + (223104, 97, 625), + (223104, 95, 625), + (223104, 94, 375), + (223104, 93, 375), + (223104, 96, 375), + (223104, 1, 200), + (223104, 113, 20), + (223104, 114, 24), + (223104, 154, 25), + (223104, 150, 22), + (223105, 91, 3), + (223105, 90, 4), + (223105, 92, 4), + (223105, 97, 3), + (223105, 95, 3), + (223105, 94, 2), + (223105, 93, 2), + (223105, 96, 2), + (223105, 156, 3), + (223105, 164, 1), + (223105, 133, 1), + (223105, 154, 1), + (223106, 91, 375), + (223106, 90, 450), + (223106, 92, 450), + (223106, 97, 375), + (223106, 95, 375), + (223106, 94, 225), + (223106, 93, 225), + (223106, 96, 225), + (223106, 156, 35), + (223106, 164, 30), + (223106, 133, 24), + (223106, 154, 20), + (223108, 689, 20), + (223108, 1, 8000), + (223108, 16, 33), + (223108, 18, 33), + (223110, 689, 20), + (223110, 1, 10500), + (223110, 16, 36), + (223110, 18, 36), + (223112, 689, 20), + (223112, 1, 12000), + (223112, 16, 39), + (223112, 18, 39), + (223114, 689, 20), + (223114, 1, 15000), + (223114, 16, 42), + (223114, 18, 42), + (223126, 153, 150), + (223126, 154, 150), + (223126, 155, 150), + (223128, 153, 36), + (223128, 154, 36), + (223128, 155, 36), + (223130, 153, 119), + (223130, 154, 119), + (223130, 155, 119), + (223132, 155, 128), + (223132, 153, 128), + (223132, 154, 128), + (223169, 91, 2), + (223169, 90, 2), + (223169, 92, 4), + (223169, 97, 2), + (223169, 95, 2), + (223169, 94, 4), + (223169, 93, 4), + (223169, 96, 4), + (223169, 122, 1), + (223169, 149, 3), + (223169, 127, 1), + (223169, 129, 1), + (223169, 130, 1), + (223170, 91, 225), + (223170, 90, 225), + (223170, 92, 450), + (223170, 97, 225), + (223170, 95, 225), + (223170, 94, 450), + (223170, 93, 450), + (223170, 96, 450), + (223170, 122, 15), + (223170, 149, 30), + (223170, 127, 12), + (223170, 129, 8), + (223170, 130, 12), + (223171, 91, 3), + (223171, 90, 3), + (223171, 92, 7), + (223171, 97, 3), + (223171, 95, 3), + (223171, 94, 7), + (223171, 93, 7), + (223171, 96, 7), + (223171, 131, 1), + (223171, 168, 1), + (223171, 318, -1), + (223172, 91, 375), + (223172, 90, 375), + (223172, 92, 750), + (223172, 97, 375), + (223172, 95, 375), + (223172, 94, 750), + (223172, 93, 750), + (223172, 96, 750), + (223172, 131, 8), + (223172, 168, 60), + (223172, 318, -2), + (223173, 91, 6), + (223173, 90, 6), + (223173, 92, 12), + (223173, 97, 6), + (223173, 95, 6), + (223173, 94, 12), + (223173, 93, 12), + (223173, 96, 12), + (223173, 221, 25), + (223173, 318, -1), + (223173, 127, 1), + (223173, 130, 1), + (223173, 129, 1), + (223173, 122, 1), + (223174, 91, 600), + (223174, 90, 600), + (223174, 92, 1200), + (223174, 97, 600), + (223174, 95, 600), + (223174, 94, 1200), + (223174, 93, 1200), + (223174, 96, 1200), + (223174, 221, 500), + (223174, 318, -2), + (223174, 127, 8), + (223174, 130, 12), + (223174, 129, 5), + (223174, 122, 8), + (223175, 91, 1), + (223175, 90, 1), + (223175, 92, 3), + (223175, 97, 1), + (223175, 95, 1), + (223175, 94, 3), + (223175, 93, 3), + (223175, 96, 3), + (223175, 122, 1), + (223175, 127, 1), + (223175, 128, 1), + (223175, 131, 1), + (223175, 149, 1), + (223175, 129, 1), + (223176, 91, 150), + (223176, 90, 150), + (223176, 92, 300), + (223176, 97, 150), + (223176, 95, 150), + (223176, 94, 300), + (223176, 93, 300), + (223176, 96, 300), + (223176, 122, 4), + (223176, 127, 8), + (223176, 128, 4), + (223176, 131, 6), + (223176, 149, 12), + (223176, 129, 8), + (223177, 91, 1), + (223177, 90, 1), + (223177, 92, 3), + (223177, 97, 1), + (223177, 95, 1), + (223177, 94, 3), + (223177, 93, 3), + (223177, 96, 3), + (223177, 129, 1), + (223177, 130, 1), + (223177, 128, 1), + (223178, 91, 150), + (223178, 90, 150), + (223178, 92, 300), + (223178, 97, 150), + (223178, 95, 150), + (223178, 94, 300), + (223178, 93, 300), + (223178, 96, 300), + (223178, 129, 12), + (223178, 130, 15), + (223178, 128, 12), + (223179, 91, 4), + (223179, 90, 4), + (223179, 92, 9), + (223179, 97, 4), + (223179, 95, 4), + (223179, 94, 9), + (223179, 93, 9), + (223179, 96, 9), + (223179, 131, 1), + (223179, 128, 1), + (223179, 129, 1), + (223179, 127, 1), + (223179, 130, 1), + (223180, 91, 450), + (223180, 90, 450), + (223180, 92, 900), + (223180, 97, 450), + (223180, 95, 450), + (223180, 94, 900), + (223180, 93, 900), + (223180, 96, 900), + (223180, 131, 12), + (223180, 128, 12), + (223180, 129, 15), + (223180, 127, 15), + (223180, 130, 15), + (223182, 475, 300), + (223182, 219, 78), + (223182, 217, 78), + (223182, 216, 78), + (223182, 208, 78), + (223182, 207, 78), + (223182, 206, 78), + (223182, 205, 78), + (223182, 483, 300), + (223182, 476, 300), + (223182, 477, 300), + (223182, 478, 300), + (223182, 479, 300), + (223182, 480, 300), + (223182, 482, 300), + (223182, 225, 78), + (223182, 535, 3), + (223182, 689, 10), + (223184, 475, 350), + (223184, 219, 79), + (223184, 217, 79), + (223184, 216, 79), + (223184, 208, 79), + (223184, 207, 79), + (223184, 206, 79), + (223184, 205, 79), + (223184, 483, 350), + (223184, 476, 350), + (223184, 477, 350), + (223184, 478, 350), + (223184, 479, 350), + (223184, 480, 350), + (223184, 482, 350), + (223184, 225, 79), + (223184, 535, 5), + (223184, 689, 10), + (223186, 475, 400), + (223186, 219, 80), + (223186, 217, 80), + (223186, 216, 80), + (223186, 208, 80), + (223186, 207, 80), + (223186, 206, 80), + (223186, 205, 80), + (223186, 483, 400), + (223186, 476, 400), + (223186, 477, 400), + (223186, 478, 400), + (223186, 479, 400), + (223186, 480, 400), + (223186, 482, 400), + (223186, 225, 80), + (223186, 535, 7), + (223186, 689, 10), + (223224, 110, 45), + (223226, 110, 85), + (223228, 110, 120), + (223230, 475, 250), + (223230, 219, 77), + (223230, 217, 77), + (223230, 216, 77), + (223230, 208, 77), + (223230, 207, 77), + (223230, 206, 77), + (223230, 205, 77), + (223230, 483, 250), + (223230, 476, 250), + (223230, 477, 250), + (223230, 478, 250), + (223230, 479, 250), + (223230, 480, 250), + (223230, 482, 250), + (223230, 225, 77), + (223230, 535, 2), + (223230, 689, 10), + (223349, 112, 20), + (223349, 116, 20), + (223349, 114, 20), + (223349, 115, 20), + (223349, 113, 20), + (223349, 111, 20), + (223349, 133, 20), + (223349, 109, 20), + (223349, 110, 20), + (223351, 102, 20), + (223351, 107, 20), + (223351, 103, 20), + (223351, 105, 20), + (223351, 106, 20), + (223351, 104, 20), + (223353, 102, 20), + (223353, 107, 20), + (223353, 103, 20), + (223353, 105, 20), + (223353, 106, 20), + (223353, 104, 20), + (223355, 102, 20), + (223355, 107, 20), + (223355, 103, 20), + (223355, 105, 20), + (223355, 106, 20), + (223355, 104, 20), + (223357, 112, 20), + (223357, 116, 20), + (223357, 114, 20), + (223357, 115, 20), + (223357, 113, 20), + (223357, 111, 20), + (223357, 133, 20), + (223357, 109, 20), + (223357, 110, 20), + (223359, 112, 20), + (223359, 116, 20), + (223359, 114, 20), + (223359, 115, 20), + (223359, 113, 20), + (223359, 111, 20), + (223359, 133, 20), + (223359, 109, 20), + (223359, 110, 20), + (223361, 102, 20), + (223361, 107, 20), + (223361, 103, 20), + (223361, 105, 20), + (223361, 106, 20), + (223361, 104, 20), + (223363, 112, 20), + (223363, 116, 20), + (223363, 114, 20), + (223363, 115, 20), + (223363, 113, 20), + (223363, 111, 20), + (223363, 133, 20), + (223363, 109, 20), + (223363, 110, 20), + (223365, 151, 20), + (223365, 167, 20), + (223365, 148, 20), + (223365, 150, 20), + (223365, 121, 20), + (223365, 134, 20), + (223367, 151, 20), + (223367, 167, 20), + (223367, 148, 20), + (223367, 150, 20), + (223367, 121, 20), + (223367, 134, 20), + (223369, 151, 20), + (223369, 167, 20), + (223369, 148, 20), + (223369, 150, 20), + (223369, 121, 20), + (223369, 134, 20), + (223371, 151, 20), + (223371, 167, 20), + (223371, 148, 20), + (223371, 150, 20), + (223371, 121, 20), + (223371, 134, 20), + (223373, 16, 12), + (223373, 18, 12), + (223373, 17, 12), + (223373, 19, 12), + (223373, 21, 12), + (223373, 20, 12), + (223375, 16, 12), + (223375, 18, 12), + (223375, 17, 12), + (223375, 19, 12), + (223375, 21, 12), + (223375, 20, 12), + (223377, 16, 12), + (223377, 18, 12), + (223377, 17, 12), + (223377, 19, 12), + (223377, 21, 12), + (223377, 20, 12), + (223379, 16, 12), + (223379, 18, 12), + (223379, 17, 12), + (223379, 19, 12), + (223379, 21, 12), + (223379, 20, 12), + (223381, 127, 20), + (223381, 128, 20), + (223381, 129, 20), + (223381, 122, 20), + (223381, 131, 20), + (223381, 130, 20), + (223383, 127, 20), + (223383, 128, 20), + (223383, 129, 20), + (223383, 122, 20), + (223383, 131, 20), + (223383, 130, 20), + (223385, 127, 20), + (223385, 128, 20), + (223385, 129, 20), + (223385, 122, 20), + (223385, 131, 20), + (223385, 130, 20), + (223387, 127, 20), + (223387, 128, 20), + (223387, 129, 20), + (223387, 122, 20), + (223387, 131, 20), + (223387, 130, 20), + (223389, 147, 20), + (223389, 146, 20), + (223389, 142, 20), + (223389, 144, 20), + (223389, 101, 20), + (223389, 100, 20), + (223391, 147, 20), + (223391, 146, 20), + (223391, 142, 20), + (223391, 144, 20), + (223391, 101, 20), + (223391, 100, 20), + (223393, 147, 20), + (223393, 146, 20), + (223393, 142, 20), + (223393, 144, 20), + (223393, 101, 20), + (223393, 100, 20), + (223394, 91, 3), + (223394, 90, 3), + (223394, 92, 3), + (223394, 97, 3), + (223394, 95, 3), + (223394, 94, 3), + (223394, 93, 3), + (223394, 96, 3), + (223394, 156, 3), + (223394, 123, 1), + (223394, 319, 0), + (223394, 153, 1), + (223395, 91, 375), + (223395, 90, 375), + (223395, 92, 375), + (223395, 97, 375), + (223395, 95, 375), + (223395, 94, 375), + (223395, 93, 375), + (223395, 96, 375), + (223395, 156, 35), + (223395, 123, 25), + (223395, 319, 1), + (223395, 153, 20), + (223396, 91, 6), + (223396, 90, 6), + (223396, 92, 6), + (223396, 97, 6), + (223396, 95, 6), + (223396, 94, 6), + (223396, 93, 6), + (223396, 96, 6), + (223396, 123, 1), + (223396, 153, 3), + (223396, 311, 1), + (223396, 316, 1), + (223397, 91, 625), + (223397, 90, 625), + (223397, 92, 625), + (223397, 97, 625), + (223397, 95, 625), + (223397, 94, 625), + (223397, 93, 625), + (223397, 96, 625), + (223397, 123, 16), + (223397, 153, 30), + (223397, 311, 12), + (223397, 316, 12), + (223400, 91, 10), + (223400, 90, 10), + (223400, 92, 10), + (223400, 97, 10), + (223400, 95, 10), + (223400, 94, 10), + (223400, 93, 10), + (223400, 96, 10), + (223400, 124, 1), + (223400, 136, 1), + (223400, 139, 3), + (223400, 279, 1), + (223401, 91, 1000), + (223401, 90, 1000), + (223401, 92, 1000), + (223401, 97, 1000), + (223401, 95, 1000), + (223401, 94, 1000), + (223401, 93, 1000), + (223401, 96, 1000), + (223401, 124, 18), + (223401, 136, 20), + (223401, 139, 30), + (223401, 279, 12), + (223403, 91, 2), + (223403, 90, 2), + (223403, 92, 2), + (223403, 97, 2), + (223403, 95, 2), + (223403, 94, 2), + (223403, 93, 2), + (223403, 96, 2), + (223403, 123, 1), + (223403, 139, 1), + (223403, 278, 1), + (223403, 280, 1), + (223404, 91, 250), + (223404, 90, 250), + (223404, 92, 250), + (223404, 97, 250), + (223404, 95, 250), + (223404, 94, 250), + (223404, 93, 250), + (223404, 96, 250), + (223404, 123, 15), + (223404, 139, 15), + (223404, 278, 9), + (223404, 280, 9), + (223405, 91, 2), + (223405, 90, 2), + (223405, 92, 2), + (223405, 97, 2), + (223405, 95, 2), + (223405, 94, 2), + (223405, 93, 2), + (223405, 96, 2), + (223405, 124, 1), + (223405, 139, 1), + (223405, 317, 1), + (223406, 91, 250), + (223406, 90, 250), + (223406, 92, 250), + (223406, 97, 250), + (223406, 95, 250), + (223406, 94, 250), + (223406, 93, 250), + (223406, 96, 250), + (223406, 124, 15), + (223406, 139, 30), + (223406, 317, 18), + (223407, 91, 7), + (223407, 90, 7), + (223407, 92, 7), + (223407, 97, 7), + (223407, 95, 7), + (223407, 94, 7), + (223407, 93, 7), + (223407, 96, 7), + (223407, 136, 1), + (223407, 181, 1), + (223407, 282, 1), + (223407, 281, 1), + (223408, 91, 750), + (223408, 90, 750), + (223408, 92, 750), + (223408, 97, 750), + (223408, 95, 750), + (223408, 94, 750), + (223408, 93, 750), + (223408, 96, 750), + (223408, 136, 30), + (223408, 181, 35), + (223408, 282, 12), + (223408, 281, 12), + (223409, 91, 7), + (223409, 90, 7), + (223409, 92, 9), + (223409, 97, 4), + (223409, 95, 4), + (223409, 94, 9), + (223409, 93, 4), + (223409, 96, 4), + (223409, 160, 1), + (223409, 141, 1), + (223409, 159, 1), + (223409, 162, 1), + (223410, 91, 750), + (223410, 90, 750), + (223410, 92, 900), + (223410, 97, 450), + (223410, 95, 450), + (223410, 94, 900), + (223410, 93, 450), + (223410, 96, 450), + (223410, 160, 30), + (223410, 141, 25), + (223410, 159, 25), + (223410, 162, 20), + (223411, 91, 2), + (223411, 90, 2), + (223411, 92, 3), + (223411, 97, 1), + (223411, 95, 1), + (223411, 94, 3), + (223411, 93, 1), + (223411, 96, 1), + (223411, 165, 1), + (223411, 163, 1), + (223411, 125, 1), + (223411, 382, -1), + (223412, 91, 250), + (223412, 90, 250), + (223412, 92, 300), + (223412, 97, 150), + (223412, 95, 150), + (223412, 94, 300), + (223412, 93, 150), + (223412, 96, 150), + (223412, 165, 30), + (223412, 163, 28), + (223412, 125, 25), + (223412, 382, -4), + (223413, 91, 2), + (223413, 90, 2), + (223413, 92, 3), + (223413, 97, 1), + (223413, 95, 1), + (223413, 94, 3), + (223413, 93, 1), + (223413, 96, 1), + (223413, 135, 1), + (223413, 165, 1), + (223413, 159, 1), + (223413, 382, -1), + (223414, 91, 250), + (223414, 90, 250), + (223414, 92, 300), + (223414, 97, 150), + (223414, 95, 150), + (223414, 94, 300), + (223414, 93, 150), + (223414, 96, 150), + (223414, 135, 15), + (223414, 165, 10), + (223414, 159, 10), + (223414, 382, -4), + (223415, 91, 10), + (223415, 90, 10), + (223415, 92, 12), + (223415, 97, 6), + (223415, 95, 6), + (223415, 94, 12), + (223415, 93, 6), + (223415, 96, 6), + (223415, 158, 1), + (223415, 163, 1), + (223415, 162, 1), + (223415, 382, -1), + (223416, 91, 1000), + (223416, 90, 1000), + (223416, 92, 1200), + (223416, 97, 600), + (223416, 95, 600), + (223416, 94, 1200), + (223416, 93, 600), + (223416, 96, 600), + (223416, 158, 30), + (223416, 163, 24), + (223416, 162, 10), + (223416, 382, -4), + (223417, 91, 6), + (223417, 90, 6), + (223417, 92, 7), + (223417, 97, 3), + (223417, 95, 3), + (223417, 94, 7), + (223417, 93, 3), + (223417, 96, 3), + (223417, 141, 1), + (223417, 161, 1), + (223417, 382, -1), + (223418, 91, 625), + (223418, 90, 625), + (223418, 92, 750), + (223418, 97, 375), + (223418, 95, 375), + (223418, 94, 750), + (223418, 93, 375), + (223418, 96, 375), + (223418, 141, 30), + (223418, 161, 25), + (223418, 382, -4), + (223419, 91, 3), + (223419, 90, 3), + (223419, 92, 4), + (223419, 97, 2), + (223419, 95, 2), + (223419, 94, 4), + (223419, 93, 2), + (223419, 96, 2), + (223419, 126, 1), + (223419, 157, 1), + (223419, 159, 1), + (223419, 382, -1), + (223420, 91, 375), + (223420, 90, 375), + (223420, 92, 450), + (223420, 97, 225), + (223420, 95, 225), + (223420, 94, 450), + (223420, 93, 225), + (223420, 96, 225), + (223420, 126, 30), + (223420, 157, 30), + (223420, 159, 20), + (223420, 382, -4), + (223433, 131, 150), + (223433, 127, 150), + (223433, 128, 150), + (223433, 130, 150), + (223433, 122, 150), + (223433, 129, 150), + (223433, 27, 1500), + (223433, 156, 800), + (223433, 319, 10), + (223433, 132, 1000), + (223433, 91, 500), + (223433, 90, 500), + (223433, 92, 500), + (223433, 93, 500), + (223433, 94, 500), + (223433, 95, 500), + (223433, 97, 500), + (223433, 96, 500), + (223466, 156, 250), + (223466, 160, 250), + (223466, 161, 250), + (223466, 125, 50), + (223466, 126, 50), + (223466, 157, 50), + (223466, 158, 50), + (223466, 159, 50), + (223466, 162, 50), + (223466, 163, 50), + (223467, 153, 30), + (223467, 19, 15), + (223467, 1, 150), + (223468, 153, 30), + (223468, 19, 15), + (223468, 1, 150), + (223469, 153, 40), + (223469, 19, 20), + (223469, 1, 300), + (223655, 91, 4), + (223655, 90, 4), + (223655, 92, 4), + (223655, 97, 4), + (223655, 95, 4), + (223655, 94, 4), + (223655, 93, 4), + (223655, 96, 4), + (223656, 91, 450), + (223656, 90, 450), + (223656, 92, 450), + (223656, 97, 450), + (223656, 95, 450), + (223656, 94, 450), + (223656, 93, 450), + (223656, 96, 450), + (223657, 91, 7), + (223657, 90, 7), + (223657, 92, 7), + (223657, 97, 7), + (223657, 95, 7), + (223657, 94, 7), + (223657, 93, 7), + (223657, 96, 7), + (223658, 91, 750), + (223658, 90, 750), + (223658, 92, 750), + (223658, 97, 750), + (223658, 95, 750), + (223658, 94, 750), + (223658, 93, 750), + (223658, 96, 750), + (223659, 91, 12), + (223659, 90, 12), + (223659, 92, 12), + (223659, 97, 12), + (223659, 95, 12), + (223659, 94, 12), + (223659, 93, 12), + (223659, 96, 12), + (223660, 91, 1200), + (223660, 90, 1200), + (223660, 92, 1200), + (223660, 97, 1200), + (223660, 95, 1200), + (223660, 94, 1200), + (223660, 93, 1200), + (223660, 96, 1200), + (223661, 91, 3), + (223661, 90, 3), + (223661, 92, 3), + (223661, 97, 3), + (223661, 95, 3), + (223661, 94, 3), + (223661, 93, 3), + (223661, 96, 3), + (223662, 91, 300), + (223662, 90, 300), + (223662, 92, 300), + (223662, 97, 300), + (223662, 95, 300), + (223662, 94, 300), + (223662, 93, 300), + (223662, 96, 300), + (223663, 91, 3), + (223663, 90, 3), + (223663, 92, 3), + (223663, 97, 3), + (223663, 95, 3), + (223663, 94, 3), + (223663, 93, 3), + (223663, 96, 3), + (223664, 91, 300), + (223664, 90, 300), + (223664, 92, 300), + (223664, 97, 300), + (223664, 95, 300), + (223664, 94, 300), + (223664, 93, 300), + (223664, 96, 300), + (223665, 91, 9), + (223665, 90, 9), + (223665, 92, 9), + (223665, 97, 9), + (223665, 95, 9), + (223665, 94, 9), + (223665, 93, 9), + (223665, 96, 9), + (223666, 91, 900), + (223666, 90, 900), + (223666, 92, 900), + (223666, 97, 900), + (223666, 95, 900), + (223666, 94, 900), + (223666, 93, 900), + (223666, 96, 900), + (223677, 16, 4), + (223677, 276, 4), + (223677, 91, 40), + (223677, 90, 40), + (223678, 18, 4), + (223678, 277, 4), + (223678, 93, 40), + (223678, 96, 40), + (223679, 17, 4), + (223679, 154, 8), + (223679, 155, 8), + (223679, 153, 8), + (223681, 19, 4), + (223681, 92, 40), + (223681, 94, 40), + (223683, 20, 4), + (223683, 97, 40), + (223683, 95, 40), + (223684, 21, 4), + (223684, 144, 4), + (223684, 168, 8), + (223691, 16, 4), + (223691, 276, 4), + (223691, 91, 40), + (223691, 90, 40), + (223692, 18, 4), + (223692, 277, 4), + (223692, 93, 40), + (223692, 96, 40), + (223693, 17, 4), + (223693, 154, 8), + (223693, 155, 8), + (223693, 153, 8), + (223697, 19, 4), + (223697, 92, 40), + (223697, 94, 40), + (223698, 20, 4), + (223698, 97, 40), + (223698, 95, 40), + (223699, 21, 4), + (223699, 144, 4), + (223699, 168, 8), + (223704, 91, 100), + (223704, 90, 100), + (223704, 92, 50), + (223704, 97, 50), + (223704, 95, 150), + (223704, 94, 100), + (223704, 93, 100), + (223704, 96, 100), + (223704, 155, 4), + (223704, 164, 4), + (223704, 153, 4), + (223704, 156, 4), + (223704, 154, 4), + (223705, 91, 400), + (223705, 90, 400), + (223705, 92, 200), + (223705, 97, 200), + (223705, 95, 600), + (223705, 94, 400), + (223705, 93, 400), + (223705, 96, 400), + (223705, 155, 16), + (223705, 164, 16), + (223705, 153, 16), + (223705, 156, 16), + (223705, 154, 16), + (223706, 91, 60), + (223706, 90, 60), + (223706, 92, 30), + (223706, 97, 30), + (223706, 95, 90), + (223706, 94, 60), + (223706, 93, 60), + (223706, 96, 60), + (223706, 156, 30), + (223707, 91, 240), + (223707, 90, 240), + (223707, 92, 120), + (223707, 97, 120), + (223707, 95, 360), + (223707, 94, 240), + (223707, 93, 240), + (223707, 96, 240), + (223707, 156, 120), + (223708, 91, 5), + (223708, 90, 5), + (223708, 92, 5), + (223708, 97, 5), + (223708, 95, 5), + (223708, 94, 5), + (223708, 93, 50), + (223708, 96, 5), + (223708, 163, 2), + (223709, 91, 20), + (223709, 90, 20), + (223709, 92, 20), + (223709, 97, 20), + (223709, 95, 20), + (223709, 94, 20), + (223709, 93, 200), + (223709, 96, 20), + (223709, 163, 8), + (223714, 91, 100), + (223714, 90, 100), + (223714, 92, 50), + (223714, 97, 150), + (223714, 95, 50), + (223714, 94, 100), + (223714, 93, 100), + (223714, 96, 100), + (223714, 155, 4), + (223714, 164, 4), + (223714, 153, 4), + (223714, 156, 4), + (223714, 154, 4), + (223715, 91, 400), + (223715, 90, 400), + (223715, 92, 200), + (223715, 97, 600), + (223715, 95, 200), + (223715, 94, 400), + (223715, 93, 400), + (223715, 96, 400), + (223715, 155, 16), + (223715, 164, 16), + (223715, 153, 16), + (223715, 156, 16), + (223715, 154, 16), + (223716, 91, 60), + (223716, 90, 60), + (223716, 92, 30), + (223716, 97, 90), + (223716, 95, 30), + (223716, 94, 60), + (223716, 93, 60), + (223716, 96, 60), + (223716, 156, 30), + (223717, 91, 240), + (223717, 90, 240), + (223717, 92, 120), + (223717, 97, 360), + (223717, 95, 120), + (223717, 94, 240), + (223717, 93, 240), + (223717, 96, 240), + (223717, 156, 120), + (223718, 91, 5), + (223718, 90, 5), + (223718, 92, 5), + (223718, 97, 5), + (223718, 95, 5), + (223718, 94, 5), + (223718, 93, 5), + (223718, 96, 50), + (223718, 159, 2), + (223719, 91, 20), + (223719, 90, 20), + (223719, 92, 20), + (223719, 97, 20), + (223719, 95, 20), + (223719, 94, 20), + (223719, 93, 20), + (223719, 96, 200), + (223719, 159, 8), + (223720, 21, 3), + (223720, 129, 3), + (223720, 162, 9), + (223720, 91, 150), + (223720, 90, 150), + (223720, 92, 150), + (223720, 94, 150), + (223721, 122, 3), + (223721, 20, 3), + (223721, 136, 3), + (223721, 147, 3), + (223721, 150, 3), + (223722, 16, 5), + (223722, 17, 5), + (223722, 146, 5), + (223722, 142, 5), + (223722, 118, 10), + (223722, 155, 10), + (223722, 91, 175), + (223722, 90, 175), + (223722, 92, 125), + (223722, 97, 125), + (223722, 95, 125), + (223722, 93, 125), + (223722, 94, 125), + (223722, 96, 125), + (223723, 21, 3), + (223723, 129, 3), + (223723, 162, 9), + (223723, 91, 150), + (223723, 90, 150), + (223723, 92, 150), + (223723, 94, 150), + (223724, 122, 3), + (223724, 20, 3), + (223724, 136, 3), + (223724, 147, 3), + (223724, 150, 3), + (223725, 16, 5), + (223725, 17, 5), + (223725, 146, 5), + (223725, 142, 5), + (223725, 118, 10), + (223725, 155, 10), + (223725, 91, 175), + (223725, 90, 175), + (223725, 92, 125), + (223725, 97, 125), + (223725, 95, 125), + (223725, 93, 125), + (223725, 94, 125), + (223725, 96, 125), + (223762, 277, 5), + (223765, 90, 20), + (223766, 90, 20), + (223766, 91, 20), + (223766, 156, 20), + (223769, 168, 10), + (223771, 1, 5), + (223771, 16, 2), + (223953, 91, 225), + (223953, 90, 125), + (223953, 92, 125), + (223953, 97, 125), + (223953, 95, 125), + (223953, 94, 125), + (223953, 93, 125), + (223953, 96, 125), + (223953, 1, 50), + (223953, 221, 25), + (223954, 91, 300), + (223954, 90, 200), + (223954, 92, 200), + (223954, 97, 200), + (223954, 95, 200), + (223954, 94, 200), + (223954, 93, 200), + (223954, 96, 200), + (223954, 1, 75), + (223954, 221, 50), + (223955, 91, 375), + (223955, 90, 275), + (223955, 92, 275), + (223955, 97, 275), + (223955, 95, 275), + (223955, 94, 275), + (223955, 93, 275), + (223955, 96, 275), + (223955, 1, 75), + (223955, 221, 35), + (223956, 91, 550), + (223956, 90, 350), + (223956, 92, 350), + (223956, 97, 350), + (223956, 95, 350), + (223956, 94, 350), + (223956, 93, 350), + (223956, 96, 350), + (223956, 1, 110), + (223956, 221, 75), + (223971, 91, 500), + (223971, 90, 400), + (223971, 92, 400), + (223971, 97, 400), + (223971, 95, 400), + (223971, 94, 400), + (223971, 93, 400), + (223971, 96, 400), + (223971, 1, 100), + (223971, 221, 50), + (223972, 91, 900), + (223972, 90, 475), + (223972, 92, 475), + (223972, 97, 475), + (223972, 95, 475), + (223972, 94, 475), + (223972, 93, 475), + (223972, 96, 475), + (223972, 1, 150), + (223972, 221, 100), + (223974, 91, 150), + (223974, 90, 50), + (223974, 92, 50), + (223974, 97, 50), + (223974, 95, 50), + (223974, 94, 50), + (223974, 93, 50), + (223974, 96, 50), + (223974, 1, 25), + (223974, 221, 15), + (223975, 91, 225), + (223975, 90, 125), + (223975, 92, 125), + (223975, 97, 125), + (223975, 95, 125), + (223975, 94, 125), + (223975, 93, 125), + (223975, 96, 125), + (223975, 1, 40), + (223975, 221, 25), + (223979, 91, 150), + (223979, 90, 50), + (223979, 92, 50), + (223979, 97, 50), + (223979, 95, 50), + (223979, 94, 50), + (223979, 93, 50), + (223979, 96, 50), + (223979, 1, 25), + (223979, 221, 10), + (223980, 91, 225), + (223980, 90, 125), + (223980, 92, 125), + (223980, 97, 125), + (223980, 95, 125), + (223980, 94, 125), + (223980, 93, 125), + (223980, 96, 125), + (223980, 1, 35), + (223980, 221, 25), + (223983, 91, 225), + (223983, 90, 125), + (223983, 92, 125), + (223983, 97, 125), + (223983, 95, 125), + (223983, 94, 125), + (223983, 93, 125), + (223983, 96, 125), + (223983, 1, 50), + (223983, 221, 25), + (223984, 91, 300), + (223984, 90, 200), + (223984, 92, 200), + (223984, 97, 200), + (223984, 95, 200), + (223984, 94, 200), + (223984, 93, 200), + (223984, 96, 200), + (223984, 1, 75), + (223984, 221, 50), + (223985, 91, 375), + (223985, 90, 275), + (223985, 92, 275), + (223985, 97, 275), + (223985, 95, 275), + (223985, 94, 275), + (223985, 93, 275), + (223985, 96, 275), + (223985, 1, 75), + (223985, 221, 35), + (223986, 91, 550), + (223986, 90, 350), + (223986, 92, 350), + (223986, 97, 350), + (223986, 95, 350), + (223986, 94, 350), + (223986, 93, 350), + (223986, 96, 350), + (223986, 1, 110), + (223986, 221, 75), + (223987, 91, 500), + (223987, 90, 400), + (223987, 92, 400), + (223987, 97, 400), + (223987, 95, 400), + (223987, 94, 400), + (223987, 93, 400), + (223987, 96, 400), + (223987, 1, 100), + (223987, 221, 50), + (223988, 91, 900), + (223988, 90, 475), + (223988, 92, 475), + (223988, 97, 475), + (223988, 95, 475), + (223988, 94, 475), + (223988, 93, 475), + (223988, 96, 475), + (223988, 1, 150), + (223988, 221, 100), + (223989, 91, 150), + (223989, 90, 50), + (223989, 92, 50), + (223989, 97, 50), + (223989, 95, 50), + (223989, 94, 50), + (223989, 93, 50), + (223989, 96, 50), + (223989, 1, 25), + (223989, 221, 15), + (223990, 91, 225), + (223990, 90, 125), + (223990, 92, 125), + (223990, 97, 125), + (223990, 95, 125), + (223990, 94, 125), + (223990, 93, 125), + (223990, 96, 125), + (223990, 1, 40), + (223990, 221, 25), + (223991, 91, 150), + (223991, 90, 50), + (223991, 92, 50), + (223991, 97, 50), + (223991, 95, 50), + (223991, 94, 50), + (223991, 93, 50), + (223991, 96, 50), + (223991, 1, 25), + (223991, 221, 10), + (223992, 91, 225), + (223992, 90, 125), + (223992, 92, 125), + (223992, 97, 125), + (223992, 95, 125), + (223992, 94, 125), + (223992, 93, 125), + (223992, 96, 125), + (223992, 1, 35), + (223992, 221, 25), + (223995, 93, 500), + (223995, 95, 50), + (223995, 92, 500), + (223995, 97, 500), + (223995, 91, 500), + (223995, 96, 500), + (223995, 90, 500), + (223995, 94, 500), + (223995, 154, 30), + (223995, 119, 30), + (223995, 168, 30), + (223995, 1, 30), + (223995, 221, 30), + (223995, 156, 30), + (223996, 93, 500), + (223996, 95, 500), + (223996, 92, 500), + (223996, 97, 50), + (223996, 91, 500), + (223996, 96, 500), + (223996, 90, 500), + (223996, 94, 500), + (223996, 154, 30), + (223996, 119, 30), + (223996, 168, 30), + (223996, 1, 30), + (223996, 221, 30), + (223996, 156, 30), + (223998, 19, 1), + (223998, 21, 1), + (223998, 132, 1), + (223998, 160, 1), + (223998, 149, 1), + (223998, 168, 1), + (223998, 127, 1), + (223998, 129, 1), + (223998, 130, 1), + (223998, 122, 1), + (223998, 282, 1), + (223998, 319, 1), + (223998, 221, 1), + (223998, 364, 1), + (223998, 90, 10), + (223998, 92, 10), + (223998, 91, 10), + (223998, 95, 10), + (223998, 97, 10), + (223998, 93, 10), + (223998, 94, 10), + (223998, 96, 10), + (223998, 155, 1), + (223998, 153, 1), + (223998, 164, 1), + (224019, 124, 5), + (224019, 20, 5), + (224019, 159, 5), + (224035, 155, 15), + (224035, 154, 15), + (224035, 153, 15), + (224035, 156, 15), + (224035, 164, 15), + (224037, 91, 75), + (224037, 90, 75), + (224037, 92, 75), + (224037, 97, 75), + (224037, 95, 125), + (224037, 93, 75), + (224037, 94, 75), + (224037, 96, 75), + (224037, 168, 25), + (224053, 124, 5), + (224053, 20, 5), + (224053, 159, 5), + (224054, 155, 15), + (224054, 154, 15), + (224054, 153, 15), + (224054, 156, 15), + (224054, 164, 15), + (224055, 91, 75), + (224055, 90, 75), + (224055, 92, 75), + (224055, 97, 125), + (224055, 95, 75), + (224055, 93, 75), + (224055, 94, 75), + (224055, 96, 75), + (224055, 168, 25), + (224080, 91, 200), + (224080, 90, 200), + (224080, 95, 200), + (224080, 96, 200), + (224080, 97, 1000), + (224080, 94, 1000), + (224080, 93, 1000), + (224080, 92, 1000), + (224080, 154, 50), + (224080, 119, -50), + (224080, 221, 200), + (224080, 168, 50), + (224081, 91, 1000), + (224081, 90, 1000), + (224081, 95, 1000), + (224081, 96, 1000), + (224081, 97, 200), + (224081, 94, 200), + (224081, 93, 200), + (224081, 92, 200), + (224081, 154, -50), + (224081, 119, 50), + (224081, 1, 200), + (224081, 168, 50), + (224083, 91, 200), + (224083, 90, 200), + (224083, 95, 200), + (224083, 96, 200), + (224083, 97, 1000), + (224083, 94, 1000), + (224083, 93, 1000), + (224083, 92, 1000), + (224083, 154, 50), + (224083, 119, -50), + (224083, 221, 200), + (224083, 168, 50), + (224084, 91, 1000), + (224084, 90, 1000), + (224084, 95, 1000), + (224084, 96, 1000), + (224084, 97, 200), + (224084, 94, 200), + (224084, 93, 200), + (224084, 92, 200), + (224084, 154, -50), + (224084, 119, 50), + (224084, 1, 200), + (224084, 168, 50), + (224086, 91, 50), + (224086, 90, 50), + (224086, 95, 150), + (224086, 96, 50), + (224086, 97, 50), + (224086, 94, 50), + (224086, 93, 50), + (224086, 92, 50), + (224086, 112, 15), + (224086, 150, 10), + (224086, 134, 10), + (224088, 276, 20), + (224088, 277, 15), + (224089, 276, 15), + (224089, 277, 20), + (224090, 113, 8), + (224090, 380, 16), + (224090, 119, 16), + (224090, 168, 8), + (224091, 113, 8), + (224091, 380, 16), + (224091, 119, 16), + (224091, 168, 8), + (224092, 17, 4), + (224092, 20, 4), + (224092, 155, 12), + (224092, 154, 12), + (224092, 153, 6), + (224092, 164, 6), + (224092, 277, 6), + (224093, 17, 4), + (224093, 20, 4), + (224093, 155, 12), + (224093, 154, 12), + (224093, 153, 6), + (224093, 164, 6), + (224093, 276, 6), + (224098, 91, 1000), + (224098, 90, 1000), + (224098, 92, 850), + (224098, 97, 425), + (224098, 95, 850), + (224098, 93, 850), + (224098, 96, 850), + (224098, 94, 850), + (224098, 168, 25), + (224098, 1, 250), + (224098, 118, 50), + (224098, 119, 50), + (224110, 91, 1000), + (224110, 90, 1000), + (224110, 92, 850), + (224110, 97, 850), + (224110, 95, 425), + (224110, 93, 850), + (224110, 96, 850), + (224110, 94, 850), + (224110, 168, 25), + (224110, 1, 250), + (224110, 118, 50), + (224110, 119, 50), + (224116, 156, -120), + (224118, 156, -230), + (224132, 118, -800), + (224132, 119, -800), + (224132, 120, -800), + (224132, 149, -800), + (224134, 118, -1000), + (224134, 119, -1000), + (224134, 120, -1000), + (224134, 149, -1000), + (224136, 118, -1200), + (224136, 119, -1200), + (224136, 120, -1200), + (224136, 149, -1200), + (224138, 118, -1400), + (224138, 119, -1400), + (224138, 120, -1400), + (224138, 149, -1400), + (224140, 118, -2200), + (224140, 119, -2200), + (224140, 120, -2200), + (224140, 149, -2200), + (224142, 118, -2200), + (224142, 119, -2200), + (224142, 120, -2200), + (224142, 149, -2200), + (224144, 118, -2200), + (224144, 119, -2200), + (224144, 120, -2200), + (224144, 149, -2200), + (224146, 118, -1600), + (224146, 119, -1600), + (224146, 120, -1600), + (224146, 149, -1600), + (224148, 118, -2200), + (224148, 119, -2200), + (224148, 120, -2200), + (224148, 149, -2200), + (224150, 118, -2200), + (224150, 119, -2200), + (224150, 120, -2200), + (224150, 149, -2200), + (224184, 93, 900), + (224184, 95, 1200), + (224184, 92, 900), + (224184, 97, 900), + (224184, 91, 900), + (224184, 96, 600), + (224184, 90, 900), + (224184, 94, 900), + (224184, 102, 12), + (224184, 107, 12), + (224184, 1, 60), + (224184, 221, 60), + (224185, 93, 900), + (224185, 95, 900), + (224185, 92, 900), + (224185, 97, 1200), + (224185, 91, 900), + (224185, 96, 600), + (224185, 90, 900), + (224185, 94, 900), + (224185, 102, 12), + (224185, 107, 12), + (224185, 1, 60), + (224185, 221, 60), + (224390, 277, 25), + (224390, 168, 25), + (224390, 181, 5), + (224390, 1, 20), + (224390, 91, 130), + (224390, 92, 130), + (224390, 90, 130), + (224390, 97, 130), + (224390, 95, 130), + (224390, 93, 130), + (224390, 96, 130), + (224390, 94, 130), + (224390, 279, 5), + (224390, 280, 5), + (224390, 278, 5), + (224390, 316, 5), + (224390, 311, 5), + (224390, 281, 5), + (224390, 317, 5), + (224390, 282, 5), + (224392, 277, 90), + (224392, 168, 45), + (224392, 181, 12), + (224392, 1, 40), + (224392, 91, 240), + (224392, 92, 240), + (224392, 90, 240), + (224392, 97, 240), + (224392, 95, 240), + (224392, 93, 240), + (224392, 96, 240), + (224392, 94, 240), + (224392, 279, 9), + (224392, 280, 9), + (224392, 278, 9), + (224392, 316, 9), + (224392, 311, 9), + (224392, 281, 9), + (224392, 317, 9), + (224392, 282, 9), + (224393, 277, 145), + (224393, 168, 60), + (224393, 181, 17), + (224393, 1, 75), + (224393, 91, 400), + (224393, 92, 400), + (224393, 90, 400), + (224393, 97, 400), + (224393, 95, 400), + (224393, 93, 400), + (224393, 96, 400), + (224393, 94, 400), + (224393, 279, 12), + (224393, 280, 12), + (224393, 278, 12), + (224393, 316, 12), + (224393, 311, 12), + (224393, 281, 12), + (224393, 317, 12), + (224393, 282, 12), + (224394, 277, 190), + (224394, 168, 85), + (224394, 181, 22), + (224394, 1, 100), + (224394, 91, 540), + (224394, 92, 540), + (224394, 90, 540), + (224394, 97, 540), + (224394, 95, 540), + (224394, 93, 540), + (224394, 96, 540), + (224394, 94, 540), + (224394, 279, 15), + (224394, 280, 15), + (224394, 278, 15), + (224394, 316, 15), + (224394, 311, 15), + (224394, 281, 15), + (224394, 317, 15), + (224394, 282, 15), + (224395, 277, 230), + (224395, 168, 110), + (224395, 181, 35), + (224395, 1, 140), + (224395, 91, 680), + (224395, 92, 680), + (224395, 90, 680), + (224395, 97, 680), + (224395, 95, 680), + (224395, 93, 680), + (224395, 96, 680), + (224395, 94, 680), + (224395, 279, 18), + (224395, 280, 18), + (224395, 278, 18), + (224395, 316, 18), + (224395, 311, 18), + (224395, 281, 18), + (224395, 317, 18), + (224395, 282, 18), + (224396, 277, 320), + (224396, 168, 135), + (224396, 181, 45), + (224396, 1, 170), + (224396, 91, 815), + (224396, 92, 815), + (224396, 90, 815), + (224396, 97, 815), + (224396, 95, 815), + (224396, 93, 815), + (224396, 96, 815), + (224396, 94, 815), + (224396, 279, 23), + (224396, 280, 23), + (224396, 278, 23), + (224396, 316, 23), + (224396, 311, 23), + (224396, 281, 23), + (224396, 317, 23), + (224396, 282, 23), + (224397, 277, 390), + (224397, 168, 145), + (224397, 181, 55), + (224397, 1, 200), + (224397, 91, 960), + (224397, 92, 960), + (224397, 90, 960), + (224397, 97, 960), + (224397, 95, 960), + (224397, 93, 960), + (224397, 96, 960), + (224397, 94, 960), + (224397, 279, 30), + (224397, 280, 30), + (224397, 278, 30), + (224397, 316, 30), + (224397, 311, 30), + (224397, 281, 30), + (224397, 317, 30), + (224397, 282, 30), + (224398, 277, 455), + (224398, 168, 160), + (224398, 181, 65), + (224398, 1, 235), + (224398, 91, 1100), + (224398, 92, 1100), + (224398, 90, 1100), + (224398, 97, 1100), + (224398, 95, 1100), + (224398, 93, 1100), + (224398, 96, 1100), + (224398, 94, 1100), + (224398, 279, 40), + (224398, 280, 40), + (224398, 278, 40), + (224398, 316, 40), + (224398, 311, 40), + (224398, 281, 40), + (224398, 317, 40), + (224398, 282, 40), + (224399, 277, 620), + (224399, 168, 185), + (224399, 181, 75), + (224399, 1, 300), + (224399, 91, 1230), + (224399, 92, 1230), + (224399, 90, 1230), + (224399, 97, 1230), + (224399, 95, 1230), + (224399, 93, 1230), + (224399, 96, 1230), + (224399, 94, 1230), + (224399, 279, 45), + (224399, 280, 45), + (224399, 278, 45), + (224399, 316, 45), + (224399, 311, 45), + (224399, 281, 45), + (224399, 317, 45), + (224399, 282, 45), + (224400, 277, 800), + (224400, 168, 215), + (224400, 181, 85), + (224400, 1, 380), + (224400, 91, 1400), + (224400, 92, 1400), + (224400, 90, 1400), + (224400, 97, 1400), + (224400, 95, 1400), + (224400, 93, 1400), + (224400, 96, 1400), + (224400, 94, 1400), + (224400, 279, 50), + (224400, 280, 50), + (224400, 278, 50), + (224400, 316, 50), + (224400, 311, 50), + (224400, 281, 50), + (224400, 317, 50), + (224400, 282, 50), + (224431, 93, 10), + (224431, 95, 300), + (224431, 92, 300), + (224431, 97, 300), + (224431, 91, 300), + (224431, 96, 300), + (224431, 90, 300), + (224431, 94, 300), + (224431, 150, 4), + (224431, 115, 8), + (224431, 165, 8), + (224431, 168, 12), + (224431, 119, 12), + (224432, 93, 10), + (224432, 95, 300), + (224432, 92, 300), + (224432, 97, 300), + (224432, 91, 300), + (224432, 96, 300), + (224432, 90, 300), + (224432, 94, 300), + (224432, 150, 4), + (224432, 115, 8), + (224432, 165, 8), + (224432, 168, 12), + (224432, 119, 12), + (224437, 93, 325), + (224437, 95, 300), + (224437, 92, 300), + (224437, 97, 300), + (224437, 91, 325), + (224437, 96, 500), + (224437, 90, 325), + (224437, 94, 50), + (224437, 1, 60), + (224437, 168, 10), + (224437, 160, 10), + (224437, 154, 10), + (224437, 159, 10), + (224437, 141, 20), + (224515, 93, 975), + (224515, 95, 900), + (224515, 92, 900), + (224515, 97, 900), + (224515, 91, 975), + (224515, 96, 1500), + (224515, 90, 975), + (224515, 94, 50), + (224515, 1, 180), + (224515, 168, 20), + (224515, 160, 20), + (224515, 154, 20), + (224515, 162, 20), + (224521, 93, 350), + (224521, 95, 350), + (224521, 92, 250), + (224521, 97, 350), + (224521, 91, 350), + (224521, 96, 350), + (224521, 90, 375), + (224521, 94, 175), + (224521, 116, 20), + (224521, 119, 20), + (224521, 1, 250), + (224522, 93, 350), + (224522, 95, 350), + (224522, 92, 250), + (224522, 97, 350), + (224522, 91, 350), + (224522, 96, 350), + (224522, 90, 375), + (224522, 94, 175), + (224522, 116, 20), + (224522, 119, 20), + (224522, 1, 250), + (225379, 93, 99), + (225379, 95, 99), + (225379, 92, 99), + (225379, 97, 99), + (225379, 91, 99), + (225379, 96, 99), + (225379, 90, 99), + (225379, 94, 99), + (225379, 102, 3), + (225379, 103, 3), + (225379, 106, 3), + (225379, 107, 3), + (225379, 105, 3), + (225379, 104, 3), + (225379, 145, 3), + (225379, 146, 3), + (225379, 101, 3), + (225379, 147, 3), + (225379, 110, 3), + (225379, 100, 3), + (225379, 142, 3), + (225379, 144, 3), + (225379, 143, 3), + (225380, 93, 99), + (225380, 95, 99), + (225380, 92, 99), + (225380, 97, 99), + (225380, 91, 99), + (225380, 96, 99), + (225380, 90, 99), + (225380, 94, 99), + (225380, 111, 3), + (225380, 112, 3), + (225380, 116, 3), + (225380, 114, 3), + (225380, 115, 3), + (225380, 113, 3), + (225380, 133, 3), + (225380, 150, 3), + (225380, 151, 3), + (225380, 148, 3), + (225380, 167, 3), + (225380, 121, 3), + (225380, 134, 3), + (225380, 108, 3), + (225380, 109, 3), + (225381, 93, 99), + (225381, 95, 99), + (225381, 92, 99), + (225381, 97, 99), + (225381, 91, 99), + (225381, 96, 99), + (225381, 90, 99), + (225381, 94, 99), + (225381, 102, 3), + (225381, 103, 3), + (225381, 106, 3), + (225381, 107, 3), + (225381, 105, 3), + (225381, 104, 3), + (225381, 145, 3), + (225381, 146, 3), + (225381, 101, 3), + (225381, 147, 3), + (225381, 110, 3), + (225381, 100, 3), + (225381, 142, 3), + (225381, 144, 3), + (225381, 143, 3), + (225382, 93, 99), + (225382, 95, 99), + (225382, 92, 99), + (225382, 97, 99), + (225382, 91, 99), + (225382, 96, 99), + (225382, 90, 99), + (225382, 94, 99), + (225382, 111, 3), + (225382, 112, 3), + (225382, 116, 3), + (225382, 114, 3), + (225382, 115, 3), + (225382, 113, 3), + (225382, 133, 3), + (225382, 150, 3), + (225382, 151, 3), + (225382, 148, 3), + (225382, 167, 3), + (225382, 121, 3), + (225382, 134, 3), + (225382, 108, 3), + (225382, 109, 3), + (225385, 93, 450), + (225385, 95, 450), + (225385, 92, 450), + (225385, 97, 450), + (225385, 91, 450), + (225385, 96, 450), + (225385, 90, 550), + (225385, 94, 350), + (225385, 109, 20), + (225385, 112, 15), + (225385, 127, 10), + (225385, 1, 350), + (225388, 93, 750), + (225388, 95, 750), + (225388, 92, 750), + (225388, 97, 750), + (225388, 91, 750), + (225388, 96, 750), + (225388, 90, 850), + (225388, 94, 650), + (225388, 156, 30), + (225388, 114, 20), + (225388, 148, 10), + (225388, 1, 200), + (225388, 168, 20), + (225389, 93, 300), + (225389, 95, 300), + (225389, 92, 300), + (225389, 97, 300), + (225389, 91, 300), + (225389, 96, 300), + (225389, 90, 400), + (225389, 94, 200), + (225389, 113, 12), + (225389, 151, 12), + (225389, 1, 120), + (225389, 168, 18), + (225389, 119, 24), + (225390, 93, 350), + (225390, 95, 450), + (225390, 92, 450), + (225390, 97, 450), + (225390, 91, 450), + (225390, 96, 450), + (225390, 90, 550), + (225390, 94, 450), + (225390, 109, 20), + (225390, 112, 15), + (225390, 127, 10), + (225390, 1, 350), + (225391, 93, 650), + (225391, 95, 750), + (225391, 92, 750), + (225391, 97, 750), + (225391, 91, 750), + (225391, 96, 750), + (225391, 90, 850), + (225391, 94, 750), + (225391, 156, 30), + (225391, 114, 20), + (225391, 148, 10), + (225391, 1, 200), + (225391, 168, 20), + (225392, 93, 200), + (225392, 95, 300), + (225392, 92, 300), + (225392, 97, 300), + (225392, 91, 300), + (225392, 96, 300), + (225392, 90, 400), + (225392, 94, 300), + (225392, 113, 12), + (225392, 151, 12), + (225392, 1, 120), + (225392, 168, 18), + (225392, 119, 24), + (225415, 93, 100), + (225415, 95, 100), + (225415, 92, 100), + (225415, 97, 100), + (225415, 91, 100), + (225415, 96, 100), + (225415, 90, 100), + (225415, 94, 100), + (225415, 1, 200), + (225415, 221, 200), + (225415, 168, 25), + (225415, 124, 5), + (225457, 90, 900), + (225457, 91, 900), + (225457, 92, 900), + (225457, 95, 750), + (225457, 97, 900), + (225457, 93, 900), + (225457, 94, 900), + (225457, 96, 900), + (225457, 130, 10), + (225457, 127, 10), + (225457, 131, 10), + (225457, 132, 20), + (225458, 93, 100), + (225458, 95, 100), + (225458, 92, 100), + (225458, 97, 100), + (225458, 91, 100), + (225458, 96, 100), + (225458, 90, 100), + (225458, 94, 100), + (225458, 1, 200), + (225458, 221, 200), + (225458, 168, 25), + (225458, 124, 5), + (225459, 90, 900), + (225459, 91, 900), + (225459, 92, 900), + (225459, 95, 900), + (225459, 97, 750), + (225459, 93, 900), + (225459, 94, 900), + (225459, 96, 900), + (225459, 130, 10), + (225459, 127, 10), + (225459, 131, 10), + (225459, 132, 20), + (225507, 277, 5), + (225507, 1, 450), + (225508, 277, 5), + (225508, 1, 450), + (225509, 277, 10), + (225509, 1, 500), + (225511, 277, 5), + (225511, 1, 450), + (225512, 277, 5), + (225512, 1, 450), + (225513, 277, 10), + (225513, 1, 500), + (225514, 96, 1000), + (225514, 90, 1000), + (225514, 91, 1000), + (225514, 92, 1000), + (225514, 94, 1000), + (225514, 93, 1000), + (225514, 97, 500), + (225514, 95, 1000), + (225514, 168, 20), + (225514, 155, 20), + (225514, 118, 20), + (225514, 123, 20), + (225515, 96, 1300), + (225515, 90, 1300), + (225515, 91, 1300), + (225515, 92, 1300), + (225515, 94, 1300), + (225515, 93, 1300), + (225515, 97, 650), + (225515, 95, 1300), + (225515, 168, 30), + (225515, 155, 30), + (225515, 118, 30), + (225515, 123, 30), + (225516, 96, 350), + (225516, 95, 350), + (225516, 97, 175), + (225516, 93, 350), + (225516, 94, 350), + (225516, 92, 350), + (225516, 91, 350), + (225516, 90, 350), + (225516, 168, 10), + (225516, 155, 10), + (225516, 118, 10), + (225516, 123, 10), + (225517, 96, 350), + (225517, 95, 350), + (225517, 97, 175), + (225517, 93, 350), + (225517, 94, 350), + (225517, 92, 350), + (225517, 91, 350), + (225517, 90, 350), + (225517, 168, 5), + (225517, 155, 5), + (225517, 118, 5), + (225517, 123, 5), + (225518, 96, 550), + (225518, 95, 550), + (225518, 97, 225), + (225518, 93, 550), + (225518, 94, 550), + (225518, 92, 550), + (225518, 91, 550), + (225518, 90, 550), + (225518, 168, 15), + (225518, 155, 15), + (225518, 118, 15), + (225518, 123, 15), + (225519, 96, 200), + (225519, 95, 200), + (225519, 97, 100), + (225519, 93, 200), + (225519, 94, 200), + (225519, 92, 200), + (225519, 91, 200), + (225519, 90, 200), + (225519, 168, 5), + (225519, 155, 5), + (225519, 118, 5), + (225519, 123, 5), + (225541, 96, 1000), + (225541, 90, 1000), + (225541, 91, 1000), + (225541, 92, 1000), + (225541, 94, 1000), + (225541, 93, 1000), + (225541, 97, 1000), + (225541, 95, 500), + (225541, 168, 20), + (225541, 155, 20), + (225541, 118, 20), + (225541, 123, 20), + (225542, 96, 1300), + (225542, 90, 1300), + (225542, 91, 1300), + (225542, 92, 1300), + (225542, 94, 1300), + (225542, 93, 1300), + (225542, 97, 1300), + (225542, 95, 650), + (225542, 168, 30), + (225542, 155, 30), + (225542, 118, 30), + (225542, 123, 30), + (225543, 96, 350), + (225543, 95, 175), + (225543, 97, 350), + (225543, 93, 350), + (225543, 94, 350), + (225543, 92, 350), + (225543, 91, 350), + (225543, 90, 350), + (225543, 168, 10), + (225543, 155, 10), + (225543, 118, 10), + (225543, 123, 10), + (225544, 96, 350), + (225544, 95, 175), + (225544, 97, 350), + (225544, 93, 350), + (225544, 94, 350), + (225544, 92, 350), + (225544, 91, 350), + (225544, 90, 350), + (225544, 168, 5), + (225544, 155, 5), + (225544, 118, 5), + (225544, 123, 5), + (225545, 96, 550), + (225545, 95, 225), + (225545, 97, 550), + (225545, 93, 550), + (225545, 94, 550), + (225545, 92, 550), + (225545, 91, 550), + (225545, 90, 550), + (225545, 168, 15), + (225545, 155, 15), + (225545, 118, 15), + (225545, 123, 15), + (225546, 96, 200), + (225546, 95, 100), + (225546, 97, 200), + (225546, 93, 200), + (225546, 94, 200), + (225546, 92, 200), + (225546, 91, 200), + (225546, 90, 200), + (225546, 168, 5), + (225546, 155, 5), + (225546, 118, 5), + (225546, 123, 5), + (225579, 124, 1), + (225579, 159, 1), + (225579, 123, 1), + (225580, 124, 15), + (225580, 159, 15), + (225580, 123, 15), + (225587, 319, 1), + (225587, 1, 10), + (225587, 277, -1), + (225588, 319, 10), + (225588, 1, 100), + (225588, 277, -10), + (225591, 279, 1), + (225591, 278, 1), + (225591, 280, 1), + (225591, 316, 1), + (225591, 91, 10), + (225591, 90, 10), + (225591, 92, 10), + (225591, 97, 10), + (225592, 279, 20), + (225592, 278, 20), + (225592, 280, 20), + (225592, 316, 20), + (225592, 91, 100), + (225592, 90, 100), + (225592, 92, 100), + (225592, 97, 100), + (225595, 221, 3), + (225595, 156, 3), + (225596, 221, 300), + (225596, 156, 30), + (225627, 139, 6), + (225627, 156, 6), + (225627, 91, 5), + (225627, 90, 5), + (225627, 92, 5), + (225627, 97, 5), + (225627, 95, 1), + (225627, 93, 5), + (225627, 94, 1), + (225627, 96, 5), + (225628, 139, 60), + (225628, 156, 60), + (225628, 91, 500), + (225628, 90, 500), + (225628, 92, 500), + (225628, 97, 500), + (225628, 95, 100), + (225628, 93, 500), + (225628, 94, 100), + (225628, 96, 500), + (225635, 124, 1), + (225635, 159, 1), + (225635, 123, 1), + (225636, 124, 15), + (225636, 159, 15), + (225636, 123, 15), + (225637, 319, 1), + (225637, 1, 10), + (225637, 277, -1), + (225638, 319, 10), + (225638, 1, 100), + (225638, 277, -10), + (225639, 279, 1), + (225639, 278, 1), + (225639, 280, 1), + (225639, 311, 1), + (225639, 91, 10), + (225639, 90, 10), + (225639, 92, 10), + (225639, 95, 10), + (225640, 279, 20), + (225640, 278, 20), + (225640, 280, 20), + (225640, 311, 20), + (225640, 91, 100), + (225640, 90, 100), + (225640, 92, 100), + (225640, 95, 100), + (225647, 221, 3), + (225647, 156, 3), + (225648, 221, 300), + (225648, 156, 30), + (225649, 139, 6), + (225649, 156, 6), + (225649, 91, 5), + (225649, 90, 5), + (225649, 92, 5), + (225649, 97, 1), + (225649, 95, 5), + (225649, 93, 5), + (225649, 94, 1), + (225649, 96, 5), + (225650, 139, 60), + (225650, 156, 60), + (225650, 91, 500), + (225650, 90, 500), + (225650, 92, 500), + (225650, 97, 100), + (225650, 95, 500), + (225650, 93, 500), + (225650, 94, 100), + (225650, 96, 500), + (225657, 125, 1), + (225658, 125, 30), + (225659, 126, 1), + (225660, 126, 30), + (225661, 157, 1), + (225662, 157, 30), + (225663, 158, 1), + (225664, 158, 30), + (225665, 159, 1), + (225666, 159, 30), + (225667, 160, 1), + (225668, 160, 30), + (225669, 162, 1), + (225670, 162, 30), + (225671, 163, 1), + (225672, 163, 30), + (225673, 125, 1), + (225674, 125, 30), + (225675, 126, 1), + (225676, 126, 30), + (225677, 157, 1), + (225678, 157, 30), + (225679, 158, 1), + (225680, 158, 30), + (225681, 159, 1), + (225682, 159, 30), + (225683, 160, 1), + (225684, 160, 30), + (225685, 162, 1), + (225686, 162, 30), + (225687, 163, 1), + (225688, 163, 30), + (225689, 127, 1), + (225689, 132, 1), + (225689, 149, 1), + (225689, 161, 1), + (225689, 168, 1), + (225689, 221, 10), + (225689, 91, 10), + (225689, 90, 10), + (225689, 97, 10), + (225689, 95, 10), + (225689, 92, 5), + (225689, 94, 5), + (225689, 93, 5), + (225689, 96, 5), + (225690, 127, 10), + (225690, 132, 10), + (225690, 149, 10), + (225690, 161, 10), + (225690, 168, 10), + (225690, 221, 100), + (225690, 91, 1000), + (225690, 90, 1000), + (225690, 97, 1000), + (225690, 95, 1000), + (225690, 92, 500), + (225690, 94, 500), + (225690, 93, 500), + (225690, 96, 500), + (225691, 128, 1), + (225691, 132, 1), + (225691, 149, 1), + (225691, 161, 1), + (225691, 168, 1), + (225691, 221, 10), + (225691, 91, 10), + (225691, 90, 10), + (225691, 97, 10), + (225691, 95, 10), + (225691, 92, 5), + (225691, 94, 5), + (225691, 93, 5), + (225691, 96, 5), + (225692, 128, 10), + (225692, 132, 10), + (225692, 149, 10), + (225692, 161, 10), + (225692, 168, 10), + (225692, 221, 100), + (225692, 91, 1000), + (225692, 90, 1000), + (225692, 97, 1000), + (225692, 95, 1000), + (225692, 92, 500), + (225692, 94, 500), + (225692, 93, 500), + (225692, 96, 500), + (225693, 129, 1), + (225693, 132, 1), + (225693, 149, 1), + (225693, 161, 1), + (225693, 168, 1), + (225693, 221, 10), + (225693, 91, 10), + (225693, 90, 10), + (225693, 97, 10), + (225693, 95, 10), + (225693, 92, 5), + (225693, 94, 5), + (225693, 93, 5), + (225693, 96, 5), + (225694, 129, 10), + (225694, 132, 10), + (225694, 149, 10), + (225694, 161, 10), + (225694, 168, 10), + (225694, 221, 100), + (225694, 91, 1000), + (225694, 90, 1000), + (225694, 97, 1000), + (225694, 95, 1000), + (225694, 92, 500), + (225694, 94, 500), + (225694, 93, 500), + (225694, 96, 500), + (225695, 130, 1), + (225695, 132, 1), + (225695, 149, 1), + (225695, 161, 1), + (225695, 168, 1), + (225695, 221, 10), + (225695, 91, 10), + (225695, 90, 10), + (225695, 97, 10), + (225695, 95, 10), + (225695, 92, 5), + (225695, 94, 5), + (225695, 93, 5), + (225695, 96, 5), + (225696, 130, 10), + (225696, 132, 10), + (225696, 149, 10), + (225696, 161, 10), + (225696, 168, 10), + (225696, 221, 100), + (225696, 91, 1000), + (225696, 90, 1000), + (225696, 97, 1000), + (225696, 95, 1000), + (225696, 92, 500), + (225696, 94, 500), + (225696, 93, 500), + (225696, 96, 500), + (225697, 131, 1), + (225697, 132, 1), + (225697, 149, 1), + (225697, 161, 1), + (225697, 168, 1), + (225697, 221, 10), + (225697, 91, 10), + (225697, 90, 10), + (225697, 97, 10), + (225697, 95, 10), + (225697, 92, 5), + (225697, 94, 5), + (225697, 93, 5), + (225697, 96, 5), + (225698, 131, 10), + (225698, 132, 10), + (225698, 149, 10), + (225698, 161, 10), + (225698, 168, 10), + (225698, 221, 100), + (225698, 91, 1000), + (225698, 90, 1000), + (225698, 97, 1000), + (225698, 95, 1000), + (225698, 92, 500), + (225698, 94, 500), + (225698, 93, 500), + (225698, 96, 500), + (225699, 122, 1), + (225699, 132, 1), + (225699, 149, 1), + (225699, 161, 1), + (225699, 168, 1), + (225699, 221, 10), + (225699, 91, 10), + (225699, 90, 10), + (225699, 97, 10), + (225699, 95, 10), + (225699, 92, 5), + (225699, 94, 5), + (225699, 93, 5), + (225699, 96, 5), + (225700, 122, 10), + (225700, 132, 10), + (225700, 149, 10), + (225700, 161, 10), + (225700, 168, 10), + (225700, 221, 100), + (225700, 91, 1000), + (225700, 90, 1000), + (225700, 97, 1000), + (225700, 95, 1000), + (225700, 92, 500), + (225700, 94, 500), + (225700, 93, 500), + (225700, 96, 500), + (225701, 127, 1), + (225701, 132, 1), + (225701, 149, 1), + (225701, 161, 1), + (225701, 168, 1), + (225701, 221, 10), + (225701, 91, 10), + (225701, 90, 10), + (225701, 97, 10), + (225701, 95, 10), + (225701, 92, 5), + (225701, 94, 5), + (225701, 93, 5), + (225701, 96, 5), + (225702, 127, 10), + (225702, 132, 10), + (225702, 149, 10), + (225702, 161, 10), + (225702, 168, 10), + (225702, 221, 100), + (225702, 91, 1000), + (225702, 90, 1000), + (225702, 97, 1000), + (225702, 95, 1000), + (225702, 92, 500), + (225702, 94, 500), + (225702, 93, 500), + (225702, 96, 500), + (225703, 128, 1), + (225703, 132, 1), + (225703, 149, 1), + (225703, 161, 1), + (225703, 168, 1), + (225703, 221, 10), + (225703, 91, 10), + (225703, 90, 10), + (225703, 97, 10), + (225703, 95, 10), + (225703, 92, 5), + (225703, 94, 5), + (225703, 93, 5), + (225703, 96, 5), + (225704, 128, 10), + (225704, 132, 10), + (225704, 149, 10), + (225704, 161, 10), + (225704, 168, 10), + (225704, 221, 100), + (225704, 91, 1000), + (225704, 90, 1000), + (225704, 97, 1000), + (225704, 95, 1000), + (225704, 92, 500), + (225704, 94, 500), + (225704, 93, 500), + (225704, 96, 500), + (225705, 129, 1), + (225705, 132, 1), + (225705, 149, 1), + (225705, 161, 1), + (225705, 168, 1), + (225705, 221, 10), + (225705, 91, 10), + (225705, 90, 10), + (225705, 97, 10), + (225705, 95, 10), + (225705, 92, 5), + (225705, 94, 5), + (225705, 93, 5), + (225705, 96, 5), + (225706, 129, 10), + (225706, 132, 10), + (225706, 149, 10), + (225706, 161, 10), + (225706, 168, 10), + (225706, 221, 100), + (225706, 91, 1000), + (225706, 90, 1000), + (225706, 97, 1000), + (225706, 95, 1000), + (225706, 92, 500), + (225706, 94, 500), + (225706, 93, 500), + (225706, 96, 500), + (225707, 130, 1), + (225707, 132, 1), + (225707, 149, 1), + (225707, 161, 1), + (225707, 168, 1), + (225707, 221, 10), + (225707, 91, 10), + (225707, 90, 10), + (225707, 97, 10), + (225707, 95, 10), + (225707, 92, 5), + (225707, 94, 5), + (225707, 93, 5), + (225707, 96, 5), + (225708, 130, 10), + (225708, 132, 10), + (225708, 149, 10), + (225708, 161, 10), + (225708, 168, 10), + (225708, 221, 100), + (225708, 91, 1000), + (225708, 90, 1000), + (225708, 97, 1000), + (225708, 95, 1000), + (225708, 92, 500), + (225708, 94, 500), + (225708, 93, 500), + (225708, 96, 500), + (225709, 131, 1), + (225709, 132, 1), + (225709, 149, 1), + (225709, 161, 1), + (225709, 168, 1), + (225709, 221, 10), + (225709, 91, 10), + (225709, 90, 10), + (225709, 97, 10), + (225709, 95, 10), + (225709, 92, 5), + (225709, 94, 5), + (225709, 93, 5), + (225709, 96, 5), + (225710, 131, 10), + (225710, 132, 10), + (225710, 149, 10), + (225710, 161, 10), + (225710, 168, 10), + (225710, 221, 100), + (225710, 91, 1000), + (225710, 90, 1000), + (225710, 97, 1000), + (225710, 95, 1000), + (225710, 92, 500), + (225710, 94, 500), + (225710, 93, 500), + (225710, 96, 500), + (225711, 122, 1), + (225711, 132, 1), + (225711, 149, 1), + (225711, 161, 1), + (225711, 168, 1), + (225711, 221, 10), + (225711, 91, 10), + (225711, 90, 10), + (225711, 97, 10), + (225711, 95, 10), + (225711, 92, 5), + (225711, 94, 5), + (225711, 93, 5), + (225711, 96, 5), + (225712, 122, 10), + (225712, 132, 10), + (225712, 149, 10), + (225712, 161, 10), + (225712, 168, 10), + (225712, 221, 100), + (225712, 91, 1000), + (225712, 90, 1000), + (225712, 97, 1000), + (225712, 95, 1000), + (225712, 92, 500), + (225712, 94, 500), + (225712, 93, 500), + (225712, 96, 500), + (225737, 103, 1), + (225737, 102, 1), + (225737, 104, 1), + (225737, 91, 10), + (225738, 103, 5), + (225738, 102, 5), + (225738, 104, 5), + (225738, 91, 100), + (225739, 105, 1), + (225739, 107, 1), + (225739, 110, 1), + (225739, 91, 10), + (225740, 105, 5), + (225740, 107, 5), + (225740, 110, 5), + (225740, 91, 100), + (225741, 106, 1), + (225741, 146, 1), + (225741, 147, 1), + (225741, 91, 10), + (225742, 106, 5), + (225742, 146, 5), + (225742, 147, 5), + (225742, 91, 100), + (225743, 100, 1), + (225743, 142, 1), + (225743, 144, 1), + (225743, 91, 10), + (225744, 100, 5), + (225744, 142, 5), + (225744, 144, 5), + (225744, 91, 100), + (225745, 145, 1), + (225745, 143, 1), + (225745, 101, 1), + (225745, 91, 10), + (225746, 145, 5), + (225746, 143, 5), + (225746, 101, 5), + (225746, 91, 100), + (225747, 103, 1), + (225747, 102, 1), + (225747, 104, 1), + (225747, 91, 10), + (225748, 103, 5), + (225748, 102, 5), + (225748, 104, 5), + (225748, 91, 100), + (225749, 105, 1), + (225749, 107, 1), + (225749, 110, 1), + (225749, 91, 10), + (225750, 105, 5), + (225750, 107, 5), + (225750, 110, 5), + (225750, 91, 100), + (225751, 106, 1), + (225751, 146, 1), + (225751, 147, 1), + (225751, 91, 10), + (225752, 106, 5), + (225752, 146, 5), + (225752, 147, 5), + (225752, 91, 100), + (225753, 16, 1), + (225753, 17, 1), + (225753, 18, 1), + (225753, 20, 1), + (225753, 108, 1), + (225753, 109, 1), + (225753, 111, 1), + (225753, 112, 1), + (225753, 116, 1), + (225753, 114, 1), + (225753, 115, 1), + (225753, 113, 1), + (225753, 133, 1), + (225753, 150, 1), + (225753, 151, 1), + (225753, 148, 1), + (225753, 167, 1), + (225753, 121, 1), + (225753, 134, 1), + (225753, 119, 1), + (225753, 154, 1), + (225753, 164, 1), + (225753, 136, 1), + (225753, 319, 1), + (225753, 90, 10), + (225753, 92, 10), + (225753, 91, 10), + (225753, 95, 10), + (225753, 97, 10), + (225753, 93, 10), + (225753, 94, 10), + (225753, 96, 10), + (225754, 100, 1), + (225754, 142, 1), + (225754, 144, 1), + (225754, 91, 10), + (225755, 100, 5), + (225755, 142, 5), + (225755, 144, 5), + (225755, 91, 100), + (225756, 145, 1), + (225756, 143, 1), + (225756, 101, 1), + (225756, 91, 10), + (225757, 145, 5), + (225757, 143, 5), + (225757, 101, 5), + (225757, 91, 100), + (225758, 19, 1), + (225758, 109, 1), + (225758, 125, 1), + (225758, 126, 1), + (225758, 157, 1), + (225758, 158, 1), + (225758, 159, 1), + (225758, 162, 1), + (225758, 163, 1), + (225758, 141, 1), + (225758, 153, 1), + (225758, 129, 1), + (225758, 130, 1), + (225758, 131, 1), + (225758, 165, 1), + (225758, 135, 1), + (225758, 90, 10), + (225758, 281, 1), + (225758, 317, 1), + (225758, 343, 1), + (225758, 280, 1), + (225758, 181, 1), + (225758, 227, 1), + (225758, 226, 1), + (225758, 228, 1), + (225758, 233, 1), + (225758, 231, 1), + (225758, 229, 1), + (225758, 230, 1), + (225758, 234, 1), + (225758, 92, 10), + (225758, 91, 10), + (225758, 95, 10), + (225758, 97, 10), + (225758, 93, 10), + (225758, 94, 10), + (225758, 96, 10), + (225758, 319, 1), + (225759, 17, 1), + (225759, 20, 1), + (225759, 132, 1), + (225759, 161, 1), + (225759, 141, 1), + (225759, 149, 1), + (225759, 156, 1), + (225759, 127, 1), + (225759, 128, 1), + (225759, 123, 1), + (225759, 124, 1), + (225759, 139, 1), + (225759, 90, 10), + (225759, 281, 1), + (225759, 317, 1), + (225759, 343, 1), + (225759, 155, 1), + (225759, 153, 1), + (225759, 164, 1), + (225759, 92, 10), + (225759, 91, 10), + (225759, 95, 10), + (225759, 97, 10), + (225759, 93, 10), + (225759, 94, 10), + (225759, 96, 10), + (225759, 319, 1), + (225760, 16, 1), + (225760, 17, 1), + (225760, 18, 1), + (225760, 152, 1), + (225760, 100, 1), + (225760, 142, 1), + (225760, 144, 1), + (225760, 143, 1), + (225760, 137, 1), + (225760, 102, 1), + (225760, 103, 1), + (225760, 106, 1), + (225760, 107, 1), + (225760, 105, 1), + (225760, 104, 1), + (225760, 145, 1), + (225760, 146, 1), + (225760, 101, 1), + (225760, 147, 1), + (225760, 108, 1), + (225760, 110, 1), + (225760, 118, 1), + (225760, 120, 1), + (225760, 90, 10), + (225760, 92, 10), + (225760, 91, 10), + (225760, 95, 10), + (225760, 97, 10), + (225760, 93, 10), + (225760, 94, 10), + (225760, 96, 10), + (225760, 155, 1), + (225760, 153, 1), + (225760, 164, 1), + (225760, 319, 1), + (225762, 116, 1), + (225762, 114, 1), + (225762, 113, 1), + (225762, 90, 10), + (225763, 116, 5), + (225763, 114, 5), + (225763, 113, 5), + (225763, 90, 100), + (225764, 109, 1), + (225764, 133, 1), + (225764, 115, 1), + (225764, 90, 10), + (225765, 109, 5), + (225765, 133, 5), + (225765, 115, 5), + (225765, 90, 100), + (225766, 112, 1), + (225766, 150, 1), + (225766, 134, 1), + (225766, 90, 10), + (225767, 112, 5), + (225767, 150, 5), + (225767, 134, 5), + (225767, 90, 100), + (225768, 167, 1), + (225768, 151, 1), + (225768, 148, 1), + (225768, 90, 10), + (225769, 167, 5), + (225769, 151, 5), + (225769, 148, 5), + (225769, 90, 100), + (225770, 111, 1), + (225770, 121, 1), + (225770, 108, 1), + (225770, 90, 10), + (225771, 111, 5), + (225771, 121, 5), + (225771, 108, 5), + (225771, 90, 100), + (225773, 111, 1), + (225773, 121, 1), + (225773, 108, 1), + (225773, 90, 10), + (225774, 111, 5), + (225774, 121, 5), + (225774, 108, 5), + (225774, 90, 100), + (225775, 116, 1), + (225775, 114, 1), + (225775, 113, 1), + (225775, 90, 10), + (225776, 116, 5), + (225776, 114, 5), + (225776, 113, 5), + (225776, 90, 100), + (225777, 109, 1), + (225777, 133, 1), + (225777, 115, 1), + (225777, 90, 10), + (225778, 109, 5), + (225778, 133, 5), + (225778, 115, 5), + (225778, 90, 100), + (225779, 112, 1), + (225779, 150, 1), + (225779, 134, 1), + (225779, 90, 10), + (225780, 112, 5), + (225780, 150, 5), + (225780, 134, 5), + (225780, 90, 100), + (225781, 167, 1), + (225781, 151, 1), + (225781, 148, 1), + (225781, 90, 10), + (225782, 167, 5), + (225782, 151, 5), + (225782, 148, 5), + (225782, 90, 100), + (226001, 95, -1), + (226002, 95, -300), + (226005, 16, 2), + (226005, 17, 2), + (226005, 18, 2), + (226005, 20, 2), + (226005, 108, 2), + (226005, 109, 2), + (226005, 111, 2), + (226005, 112, 2), + (226005, 116, 2), + (226005, 114, 2), + (226005, 115, 2), + (226005, 113, 2), + (226005, 133, 2), + (226005, 150, 2), + (226005, 151, 2), + (226005, 148, 2), + (226005, 167, 2), + (226005, 121, 2), + (226005, 134, 2), + (226005, 119, 2), + (226005, 154, 2), + (226005, 164, 2), + (226005, 136, 2), + (226005, 319, 2), + (226005, 90, 30), + (226005, 92, 30), + (226005, 91, 30), + (226005, 95, 30), + (226005, 97, 30), + (226005, 93, 30), + (226005, 94, 30), + (226005, 96, 30), + (226023, 19, 2), + (226023, 109, 2), + (226023, 125, 2), + (226023, 126, 2), + (226023, 157, 2), + (226023, 158, 2), + (226023, 159, 2), + (226023, 162, 2), + (226023, 163, 2), + (226023, 141, 2), + (226023, 153, 2), + (226023, 129, 2), + (226023, 130, 2), + (226023, 131, 2), + (226023, 165, 2), + (226023, 135, 2), + (226023, 90, 30), + (226023, 281, 2), + (226023, 317, 2), + (226023, 343, 2), + (226023, 280, 2), + (226023, 181, 2), + (226023, 227, 2), + (226023, 226, 2), + (226023, 228, 2), + (226023, 233, 2), + (226023, 231, 2), + (226023, 229, 2), + (226023, 230, 2), + (226023, 234, 2), + (226023, 92, 30), + (226023, 91, 30), + (226023, 95, 30), + (226023, 97, 30), + (226023, 93, 30), + (226023, 94, 30), + (226023, 96, 30), + (226023, 319, 2), + (226065, 16, 3), + (226065, 17, 3), + (226065, 18, 3), + (226065, 20, 3), + (226065, 108, 3), + (226065, 109, 3), + (226065, 111, 3), + (226065, 112, 3), + (226065, 116, 3), + (226065, 114, 3), + (226065, 115, 3), + (226065, 113, 3), + (226065, 133, 3), + (226065, 150, 3), + (226065, 151, 3), + (226065, 148, 3), + (226065, 167, 3), + (226065, 121, 3), + (226065, 134, 3), + (226065, 119, 3), + (226065, 154, 3), + (226065, 164, 3), + (226065, 136, 3), + (226065, 319, 3), + (226065, 90, 60), + (226065, 92, 60), + (226065, 91, 60), + (226065, 95, 60), + (226065, 97, 60), + (226065, 93, 60), + (226065, 94, 60), + (226065, 96, 60), + (226066, 19, 3), + (226066, 109, 3), + (226066, 125, 3), + (226066, 126, 3), + (226066, 157, 3), + (226066, 158, 3), + (226066, 159, 3), + (226066, 162, 3), + (226066, 163, 3), + (226066, 141, 3), + (226066, 153, 3), + (226066, 130, 3), + (226066, 131, 3), + (226066, 165, 3), + (226066, 135, 3), + (226066, 281, 3), + (226066, 317, 3), + (226066, 343, 3), + (226066, 280, 3), + (226066, 181, 3), + (226066, 227, 3), + (226066, 226, 3), + (226066, 228, 3), + (226066, 233, 3), + (226066, 231, 3), + (226066, 229, 3), + (226066, 230, 3), + (226066, 234, 3), + (226066, 90, 60), + (226066, 92, 60), + (226066, 91, 60), + (226066, 95, 60), + (226066, 97, 60), + (226066, 93, 60), + (226066, 94, 60), + (226066, 96, 60), + (226066, 129, 3), + (226066, 319, 3), + (226067, 19, 3), + (226067, 21, 3), + (226067, 132, 3), + (226067, 160, 3), + (226067, 149, 3), + (226067, 168, 3), + (226067, 127, 3), + (226067, 129, 3), + (226067, 130, 3), + (226067, 122, 3), + (226067, 282, 3), + (226067, 319, 3), + (226067, 221, 3), + (226067, 364, 3), + (226067, 90, 60), + (226067, 92, 60), + (226067, 91, 60), + (226067, 95, 60), + (226067, 97, 60), + (226067, 93, 60), + (226067, 94, 60), + (226067, 96, 60), + (226067, 155, 3), + (226067, 153, 3), + (226067, 164, 3), + (226068, 16, 3), + (226068, 17, 3), + (226068, 18, 3), + (226068, 152, 3), + (226068, 100, 3), + (226068, 142, 3), + (226068, 144, 3), + (226068, 143, 3), + (226068, 137, 3), + (226068, 102, 3), + (226068, 103, 3), + (226068, 106, 3), + (226068, 107, 3), + (226068, 105, 3), + (226068, 104, 3), + (226068, 145, 3), + (226068, 146, 3), + (226068, 101, 3), + (226068, 147, 3), + (226068, 108, 3), + (226068, 110, 3), + (226068, 118, 3), + (226068, 120, 3), + (226068, 90, 60), + (226068, 92, 60), + (226068, 91, 60), + (226068, 95, 60), + (226068, 97, 60), + (226068, 93, 60), + (226068, 94, 60), + (226068, 96, 60), + (226068, 155, 3), + (226068, 153, 3), + (226068, 164, 3), + (226068, 319, 3), + (226069, 17, 3), + (226069, 20, 3), + (226069, 132, 3), + (226069, 161, 3), + (226069, 141, 3), + (226069, 149, 3), + (226069, 156, 3), + (226069, 127, 3), + (226069, 128, 3), + (226069, 123, 3), + (226069, 124, 3), + (226069, 139, 3), + (226069, 90, 60), + (226069, 281, 3), + (226069, 317, 3), + (226069, 343, 3), + (226069, 155, 3), + (226069, 153, 3), + (226069, 164, 3), + (226069, 92, 60), + (226069, 91, 60), + (226069, 95, 60), + (226069, 97, 60), + (226069, 93, 60), + (226069, 94, 60), + (226069, 96, 60), + (226069, 319, 3), + (226073, 226, 100), + (226073, 227, 100), + (226073, 228, 100), + (226073, 229, 100), + (226073, 230, 100), + (226073, 231, 100), + (226073, 232, 100), + (226073, 233, 100), + (226073, 234, 100), + (226125, 17, 2), + (226125, 20, 2), + (226125, 132, 2), + (226125, 161, 2), + (226125, 141, 2), + (226125, 149, 2), + (226125, 156, 2), + (226125, 127, 2), + (226125, 128, 2), + (226125, 123, 2), + (226125, 124, 2), + (226125, 139, 2), + (226125, 90, 30), + (226125, 281, 2), + (226125, 317, 2), + (226125, 343, 2), + (226125, 155, 2), + (226125, 153, 2), + (226125, 164, 2), + (226125, 92, 30), + (226125, 91, 30), + (226125, 95, 30), + (226125, 97, 30), + (226125, 93, 30), + (226125, 94, 30), + (226125, 96, 30), + (226125, 319, 2), + (226126, 16, 2), + (226126, 17, 2), + (226126, 18, 2), + (226126, 152, 2), + (226126, 100, 2), + (226126, 142, 2), + (226126, 144, 2), + (226126, 143, 2), + (226126, 137, 2), + (226126, 102, 2), + (226126, 103, 2), + (226126, 106, 2), + (226126, 107, 2), + (226126, 105, 2), + (226126, 104, 2), + (226126, 145, 2), + (226126, 146, 2), + (226126, 101, 2), + (226126, 147, 2), + (226126, 108, 2), + (226126, 110, 2), + (226126, 118, 2), + (226126, 120, 2), + (226126, 90, 30), + (226126, 92, 30), + (226126, 91, 30), + (226126, 95, 30), + (226126, 97, 30), + (226126, 93, 30), + (226126, 94, 30), + (226126, 96, 30), + (226126, 155, 2), + (226126, 153, 2), + (226126, 164, 2), + (226126, 319, 2), + (226127, 19, 2), + (226127, 21, 2), + (226127, 132, 2), + (226127, 160, 2), + (226127, 149, 2), + (226127, 168, 2), + (226127, 127, 2), + (226127, 129, 2), + (226127, 130, 2), + (226127, 122, 2), + (226127, 282, 2), + (226127, 319, 2), + (226127, 221, 2), + (226127, 364, 2), + (226127, 90, 30), + (226127, 92, 30), + (226127, 91, 30), + (226127, 95, 30), + (226127, 97, 30), + (226127, 93, 30), + (226127, 94, 30), + (226127, 96, 30), + (226127, 155, 2), + (226127, 153, 2), + (226127, 164, 2), + (226188, 16, 5), + (226188, 17, 5), + (226188, 18, 5), + (226188, 20, 5), + (226188, 108, 5), + (226188, 109, 5), + (226188, 111, 5), + (226188, 112, 5), + (226188, 116, 5), + (226188, 114, 5), + (226188, 115, 5), + (226188, 113, 5), + (226188, 133, 5), + (226188, 150, 5), + (226188, 151, 5), + (226188, 148, 5), + (226188, 167, 5), + (226188, 121, 5), + (226188, 134, 5), + (226188, 119, 5), + (226188, 154, 5), + (226188, 164, 5), + (226188, 136, 5), + (226188, 319, 4), + (226188, 90, 100), + (226188, 92, 100), + (226188, 91, 100), + (226188, 95, 100), + (226188, 97, 100), + (226188, 93, 100), + (226188, 94, 100), + (226188, 96, 100), + (226189, 19, 5), + (226189, 109, 5), + (226189, 125, 5), + (226189, 126, 5), + (226189, 157, 5), + (226189, 158, 5), + (226189, 159, 5), + (226189, 162, 5), + (226189, 163, 5), + (226189, 141, 5), + (226189, 153, 5), + (226189, 130, 5), + (226189, 131, 5), + (226189, 165, 5), + (226189, 135, 5), + (226189, 281, 5), + (226189, 317, 5), + (226189, 343, 5), + (226189, 280, 5), + (226189, 181, 5), + (226189, 227, 5), + (226189, 226, 5), + (226189, 228, 5), + (226189, 233, 5), + (226189, 231, 5), + (226189, 229, 5), + (226189, 230, 5), + (226189, 234, 5), + (226189, 90, 100), + (226189, 92, 100), + (226189, 91, 100), + (226189, 95, 100), + (226189, 97, 100), + (226189, 93, 100), + (226189, 94, 100), + (226189, 96, 100), + (226189, 129, 5), + (226189, 319, 4), + (226190, 19, 5), + (226190, 21, 5), + (226190, 132, 5), + (226190, 160, 5), + (226190, 149, 5), + (226190, 168, 5), + (226190, 127, 5), + (226190, 129, 5), + (226190, 130, 5), + (226190, 122, 5), + (226190, 282, 5), + (226190, 319, 4), + (226190, 221, 5), + (226190, 364, 5), + (226190, 90, 100), + (226190, 92, 100), + (226190, 91, 100), + (226190, 95, 100), + (226190, 97, 100), + (226190, 93, 100), + (226190, 94, 100), + (226190, 96, 100), + (226190, 155, 5), + (226190, 153, 5), + (226190, 164, 5), + (226191, 16, 5), + (226191, 17, 5), + (226191, 18, 5), + (226191, 152, 5), + (226191, 100, 5), + (226191, 142, 5), + (226191, 144, 5), + (226191, 143, 5), + (226191, 137, 5), + (226191, 102, 5), + (226191, 103, 5), + (226191, 106, 5), + (226191, 107, 5), + (226191, 105, 5), + (226191, 104, 5), + (226191, 145, 5), + (226191, 146, 5), + (226191, 101, 5), + (226191, 147, 5), + (226191, 108, 5), + (226191, 110, 5), + (226191, 118, 5), + (226191, 120, 5), + (226191, 90, 100), + (226191, 92, 100), + (226191, 91, 100), + (226191, 95, 100), + (226191, 97, 100), + (226191, 93, 100), + (226191, 94, 100), + (226191, 96, 100), + (226191, 155, 5), + (226191, 153, 5), + (226191, 164, 5), + (226191, 319, 4), + (226192, 17, 5), + (226192, 20, 5), + (226192, 132, 5), + (226192, 161, 5), + (226192, 141, 5), + (226192, 149, 5), + (226192, 156, 5), + (226192, 127, 5), + (226192, 128, 5), + (226192, 123, 5), + (226192, 124, 5), + (226192, 139, 5), + (226192, 90, 100), + (226192, 281, 5), + (226192, 317, 5), + (226192, 343, 5), + (226192, 155, 5), + (226192, 153, 5), + (226192, 164, 5), + (226192, 92, 100), + (226192, 91, 100), + (226192, 95, 100), + (226192, 97, 100), + (226192, 93, 100), + (226192, 94, 100), + (226192, 96, 100), + (226192, 319, 4), + (226287, 16, 7), + (226287, 17, 7), + (226287, 18, 7), + (226287, 20, 7), + (226287, 108, 7), + (226287, 109, 7), + (226287, 111, 7), + (226287, 112, 7), + (226287, 116, 7), + (226287, 114, 7), + (226287, 115, 7), + (226287, 113, 7), + (226287, 133, 7), + (226287, 150, 7), + (226287, 151, 7), + (226287, 148, 7), + (226287, 167, 7), + (226287, 121, 7), + (226287, 134, 7), + (226287, 119, 7), + (226287, 154, 7), + (226287, 164, 7), + (226287, 136, 7), + (226287, 319, 5), + (226287, 90, 150), + (226287, 92, 150), + (226287, 91, 150), + (226287, 95, 150), + (226287, 97, 150), + (226287, 93, 150), + (226287, 94, 150), + (226287, 96, 150), + (226288, 17, 8), + (226288, 20, 8), + (226288, 132, 8), + (226288, 161, 10), + (226288, 141, 10), + (226288, 149, 10), + (226288, 156, 10), + (226288, 127, 10), + (226288, 128, 10), + (226288, 123, 10), + (226288, 124, 10), + (226288, 139, 10), + (226288, 90, 210), + (226288, 281, 10), + (226288, 317, 10), + (226288, 343, 10), + (226288, 155, 10), + (226288, 153, 10), + (226288, 164, 10), + (226288, 92, 210), + (226288, 91, 210), + (226288, 95, 210), + (226288, 97, 210), + (226288, 93, 210), + (226288, 94, 210), + (226288, 96, 210), + (226288, 319, 7), + (226290, 19, 8), + (226290, 109, 10), + (226290, 125, 10), + (226290, 126, 10), + (226290, 157, 10), + (226290, 158, 10), + (226290, 159, 10), + (226290, 162, 10), + (226290, 163, 10), + (226290, 141, 10), + (226290, 153, 10), + (226290, 130, 10), + (226290, 131, 10), + (226290, 165, 10), + (226290, 135, 10), + (226290, 281, 10), + (226290, 317, 10), + (226290, 343, 10), + (226290, 280, 10), + (226290, 181, 10), + (226290, 227, 10), + (226290, 226, 10), + (226290, 228, 10), + (226290, 233, 10), + (226290, 231, 10), + (226290, 229, 10), + (226290, 230, 10), + (226290, 234, 10), + (226290, 90, 210), + (226290, 92, 210), + (226290, 91, 210), + (226290, 95, 210), + (226290, 97, 210), + (226290, 93, 210), + (226290, 94, 210), + (226290, 96, 210), + (226290, 129, 10), + (226290, 319, 7), + (226291, 19, 8), + (226291, 21, 8), + (226291, 132, 8), + (226291, 160, 10), + (226291, 149, 10), + (226291, 168, 10), + (226291, 127, 10), + (226291, 129, 10), + (226291, 130, 10), + (226291, 122, 10), + (226291, 282, 10), + (226291, 319, 7), + (226291, 221, 10), + (226291, 364, 10), + (226291, 90, 60), + (226291, 92, 210), + (226291, 91, 210), + (226291, 95, 210), + (226291, 97, 210), + (226291, 93, 210), + (226291, 94, 210), + (226291, 96, 210), + (226291, 155, 10), + (226291, 153, 10), + (226291, 164, 10), + (226293, 19, 7), + (226293, 109, 7), + (226293, 125, 7), + (226293, 126, 7), + (226293, 157, 7), + (226293, 158, 7), + (226293, 159, 7), + (226293, 162, 7), + (226293, 163, 7), + (226293, 141, 7), + (226293, 153, 7), + (226293, 130, 7), + (226293, 131, 7), + (226293, 165, 7), + (226293, 135, 7), + (226293, 281, 7), + (226293, 317, 7), + (226293, 343, 7), + (226293, 280, 7), + (226293, 181, 7), + (226293, 227, 7), + (226293, 226, 7), + (226293, 228, 7), + (226293, 233, 7), + (226293, 231, 7), + (226293, 229, 7), + (226293, 230, 3), + (226293, 234, 7), + (226293, 90, 150), + (226293, 92, 150), + (226293, 91, 150), + (226293, 95, 150), + (226293, 97, 150), + (226293, 93, 150), + (226293, 94, 150), + (226293, 96, 150), + (226293, 129, 7), + (226293, 319, 5), + (226294, 19, 7), + (226294, 21, 7), + (226294, 132, 7), + (226294, 160, 7), + (226294, 149, 7), + (226294, 168, 7), + (226294, 127, 7), + (226294, 129, 7), + (226294, 130, 7), + (226294, 122, 7), + (226294, 282, 7), + (226294, 319, 5), + (226294, 221, 7), + (226294, 364, 7), + (226294, 90, 150), + (226294, 92, 150), + (226294, 91, 150), + (226294, 95, 150), + (226294, 97, 150), + (226294, 93, 150), + (226294, 94, 150), + (226294, 96, 150), + (226294, 155, 7), + (226294, 153, 7), + (226294, 164, 7), + (226295, 16, 7), + (226295, 17, 7), + (226295, 18, 7), + (226295, 152, 7), + (226295, 100, 7), + (226295, 142, 7), + (226295, 144, 7), + (226295, 143, 7), + (226295, 137, 7), + (226295, 102, 7), + (226295, 103, 7), + (226295, 106, 7), + (226295, 107, 7), + (226295, 105, 7), + (226295, 104, 7), + (226295, 145, 7), + (226295, 146, 7), + (226295, 101, 7), + (226295, 147, 7), + (226295, 108, 7), + (226295, 110, 7), + (226295, 118, 7), + (226295, 120, 7), + (226295, 90, 150), + (226295, 92, 150), + (226295, 91, 150), + (226295, 95, 150), + (226295, 97, 150), + (226295, 93, 150), + (226295, 94, 150), + (226295, 96, 150), + (226295, 155, 7), + (226295, 153, 7), + (226295, 164, 7), + (226295, 319, 5), + (226306, 17, 7), + (226306, 20, 7), + (226306, 132, 7), + (226306, 161, 7), + (226306, 141, 7), + (226306, 149, 7), + (226306, 156, 7), + (226306, 127, 7), + (226306, 128, 7), + (226306, 123, 7), + (226306, 124, 7), + (226306, 139, 7), + (226306, 90, 150), + (226306, 281, 7), + (226306, 317, 7), + (226306, 343, 7), + (226306, 155, 7), + (226306, 153, 7), + (226306, 164, 7), + (226306, 92, 60), + (226306, 91, 60), + (226306, 95, 150), + (226306, 97, 150), + (226306, 93, 150), + (226306, 94, 150), + (226306, 96, 150), + (226306, 319, 5), + (226307, 16, 8), + (226307, 17, 8), + (226307, 18, 8), + (226307, 152, 8), + (226307, 100, 10), + (226307, 142, 10), + (226307, 144, 10), + (226307, 143, 10), + (226307, 137, 10), + (226307, 102, 10), + (226307, 103, 10), + (226307, 106, 10), + (226307, 107, 10), + (226307, 105, 10), + (226307, 104, 10), + (226307, 145, 10), + (226307, 146, 10), + (226307, 101, 10), + (226307, 147, 10), + (226307, 108, 10), + (226307, 110, 10), + (226307, 118, 10), + (226307, 120, 10), + (226307, 90, 210), + (226307, 92, 210), + (226307, 91, 210), + (226307, 95, 210), + (226307, 97, 210), + (226307, 93, 210), + (226307, 94, 210), + (226307, 96, 210), + (226307, 155, 10), + (226307, 153, 10), + (226307, 164, 10), + (226307, 319, 7), + (226308, 16, 8), + (226308, 17, 8), + (226308, 18, 8), + (226308, 20, 8), + (226308, 108, 10), + (226308, 109, 10), + (226308, 111, 10), + (226308, 112, 10), + (226308, 116, 10), + (226308, 114, 10), + (226308, 115, 10), + (226308, 113, 10), + (226308, 133, 10), + (226308, 150, 10), + (226308, 151, 10), + (226308, 148, 10), + (226308, 167, 10), + (226308, 121, 10), + (226308, 134, 10), + (226308, 119, 10), + (226308, 154, 10), + (226308, 164, 10), + (226308, 136, 10), + (226308, 319, 7), + (226308, 90, 210), + (226308, 92, 210), + (226308, 91, 210), + (226308, 95, 210), + (226308, 97, 210), + (226308, 93, 210), + (226308, 94, 210), + (226308, 96, 210), + (226329, 276, 2), + (226329, 155, 10), + (226329, 168, 10), + (226330, 276, 2), + (226330, 155, 10), + (226330, 168, 10), + (226331, 276, 6), + (226331, 155, 30), + (226331, 168, 30), + (226395, 279, 25), + (226395, 278, 25), + (226395, 280, 25), + (226395, 281, 25), + (226395, 282, 25), + (226395, 311, 25), + (226395, 315, 25), + (226395, 316, 25), + (226395, 317, 25), + (226397, 279, 50), + (226397, 278, 50), + (226397, 280, 50), + (226397, 281, 50), + (226397, 282, 50), + (226397, 311, 50), + (226397, 315, 50), + (226397, 316, 50), + (226397, 317, 50), + (226400, 279, 77), + (226400, 278, 77), + (226400, 280, 77), + (226400, 281, 77), + (226400, 282, 77), + (226400, 311, 77), + (226400, 315, 77), + (226400, 316, 77), + (226400, 317, 77), + (226405, 279, 95), + (226405, 278, 95), + (226405, 280, 95), + (226405, 281, 95), + (226405, 282, 95), + (226405, 311, 95), + (226405, 315, 95), + (226405, 316, 95), + (226405, 317, 95), + (226407, 279, 115), + (226407, 278, 115), + (226407, 280, 115), + (226407, 281, 115), + (226407, 282, 115), + (226407, 311, 115), + (226407, 315, 115), + (226407, 316, 115), + (226407, 317, 115), + (226409, 279, 130), + (226409, 278, 130), + (226409, 280, 130), + (226409, 281, 130), + (226409, 282, 130), + (226409, 311, 130), + (226409, 315, 130), + (226409, 316, 130), + (226409, 317, 130), + (226412, 279, 12), + (226412, 278, 12), + (226412, 280, 12), + (226412, 281, 12), + (226412, 282, 12), + (226412, 311, 12), + (226412, 315, 12), + (226412, 316, 12), + (226412, 317, 12), + (226414, 279, 42), + (226414, 278, 42), + (226414, 280, 42), + (226414, 281, 42), + (226414, 282, 42), + (226414, 311, 42), + (226414, 315, 42), + (226414, 316, 42), + (226414, 317, 42), + (226416, 279, 70), + (226416, 278, 70), + (226416, 280, 70), + (226416, 281, 70), + (226416, 282, 70), + (226416, 311, 70), + (226416, 315, 70), + (226416, 316, 70), + (226416, 317, 70), + (226418, 279, 85), + (226418, 278, 85), + (226418, 280, 85), + (226418, 281, 85), + (226418, 282, 85), + (226418, 311, 85), + (226418, 315, 85), + (226418, 316, 85), + (226418, 317, 85), + (226420, 279, 100), + (226420, 278, 100), + (226420, 280, 100), + (226420, 281, 100), + (226420, 282, 100), + (226420, 311, 100), + (226420, 315, 100), + (226420, 316, 100), + (226420, 317, 100), + (226422, 279, 110), + (226422, 278, 110), + (226422, 280, 110), + (226422, 281, 110), + (226422, 282, 110), + (226422, 311, 110), + (226422, 315, 110), + (226422, 316, 110), + (226422, 317, 110), + (226424, 279, 120), + (226424, 278, 120), + (226424, 280, 120), + (226424, 281, 120), + (226424, 282, 120), + (226424, 311, 120), + (226424, 315, 120), + (226424, 316, 120), + (226424, 317, 120), + (226426, 279, 125), + (226426, 278, 125), + (226426, 280, 125), + (226426, 281, 125), + (226426, 282, 125), + (226426, 311, 125), + (226426, 315, 125), + (226426, 316, 125), + (226426, 317, 125), + (226428, 279, 35), + (226428, 278, 35), + (226428, 280, 35), + (226428, 281, 35), + (226428, 282, 35), + (226428, 311, 35), + (226428, 315, 35), + (226428, 316, 35), + (226428, 317, 35), + (226430, 279, 60), + (226430, 278, 60), + (226430, 280, 60), + (226430, 281, 60), + (226430, 282, 60), + (226430, 311, 60), + (226430, 315, 60), + (226430, 316, 60), + (226430, 317, 60), + (226432, 279, 90), + (226432, 278, 90), + (226432, 280, 90), + (226432, 281, 90), + (226432, 282, 90), + (226432, 311, 90), + (226432, 315, 90), + (226432, 316, 90), + (226432, 317, 90), + (226434, 279, 105), + (226434, 278, 105), + (226434, 280, 105), + (226434, 281, 105), + (226434, 282, 105), + (226434, 311, 105), + (226434, 315, 105), + (226434, 316, 105), + (226434, 317, 105), + (226436, 279, 115), + (226436, 278, 115), + (226436, 280, 115), + (226436, 281, 115), + (226436, 282, 115), + (226436, 311, 115), + (226436, 315, 115), + (226436, 316, 115), + (226436, 317, 115), + (226438, 279, 135), + (226438, 278, 135), + (226438, 280, 135), + (226438, 281, 135), + (226438, 282, 135), + (226438, 311, 135), + (226438, 315, 135), + (226438, 316, 135), + (226438, 317, 135), + (226449, 90, 1), + (226449, 92, 1), + (226449, 95, 1), + (226449, 97, 1), + (226449, 93, 1), + (226449, 94, 1), + (226449, 96, 5), + (226449, 1, 1), + (226449, 221, 1), + (226449, 155, 1), + (226449, 100, 1), + (226449, 317, 1), + (226450, 90, 300), + (226450, 92, 300), + (226450, 95, 300), + (226450, 97, 300), + (226450, 93, 300), + (226450, 94, 300), + (226450, 96, 1500), + (226450, 1, 300), + (226450, 221, 300), + (226450, 155, 30), + (226450, 100, 30), + (226450, 317, 30), + (226453, 91, 3), + (226453, 90, 4), + (226453, 92, 3), + (226453, 97, 3), + (226453, 95, 3), + (226453, 94, 3), + (226453, 93, 3), + (226453, 96, 3), + (226453, 116, 1), + (226453, 114, 1), + (226453, 133, 1), + (226453, 167, 1), + (226453, 148, 1), + (226453, 154, 1), + (226453, 119, 1), + (226453, 168, 1), + (226454, 91, 900), + (226454, 90, 1200), + (226454, 92, 900), + (226454, 97, 900), + (226454, 95, 900), + (226454, 94, 900), + (226454, 93, 900), + (226454, 96, 900), + (226454, 116, 10), + (226454, 114, 10), + (226454, 133, 10), + (226454, 167, 10), + (226454, 148, 10), + (226454, 154, 10), + (226454, 119, 10), + (226454, 168, 10), + (226455, 91, 2), + (226455, 90, 2), + (226455, 92, 2), + (226455, 97, 2), + (226455, 95, 2), + (226455, 94, 2), + (226455, 93, 2), + (226455, 96, 2), + (226455, 116, 1), + (226455, 114, 1), + (226455, 133, 1), + (226455, 167, 1), + (226455, 148, 1), + (226455, 154, 1), + (226455, 119, 1), + (226455, 168, 1), + (226456, 91, 600), + (226456, 90, 600), + (226456, 92, 600), + (226456, 97, 600), + (226456, 95, 600), + (226456, 94, 600), + (226456, 93, 600), + (226456, 96, 600), + (226456, 116, 10), + (226456, 114, 10), + (226456, 133, 10), + (226456, 167, 10), + (226456, 148, 10), + (226456, 154, 10), + (226456, 119, 10), + (226456, 168, 10), + (226457, 91, 5), + (226457, 90, 6), + (226457, 92, 5), + (226457, 97, 5), + (226457, 95, 5), + (226457, 94, 5), + (226457, 93, 5), + (226457, 96, 5), + (226457, 116, 1), + (226457, 114, 1), + (226457, 133, 1), + (226457, 167, 1), + (226457, 148, 1), + (226457, 154, 1), + (226457, 119, 1), + (226457, 168, 1), + (226458, 91, 1500), + (226458, 90, 1800), + (226458, 92, 1500), + (226458, 97, 1500), + (226458, 95, 1500), + (226458, 94, 1500), + (226458, 93, 1500), + (226458, 96, 1500), + (226458, 116, 10), + (226458, 114, 10), + (226458, 133, 10), + (226458, 167, 10), + (226458, 148, 10), + (226458, 154, 10), + (226458, 119, 10), + (226458, 168, 10), + (226459, 91, 1), + (226459, 90, 2), + (226459, 92, 1), + (226459, 97, 1), + (226459, 95, 1), + (226459, 94, 1), + (226459, 93, 1), + (226459, 96, 1), + (226459, 116, 1), + (226459, 114, 1), + (226459, 133, 1), + (226459, 167, 1), + (226459, 148, 1), + (226459, 154, 1), + (226459, 119, 1), + (226459, 168, 1), + (226460, 91, 300), + (226460, 90, 600), + (226460, 92, 300), + (226460, 97, 300), + (226460, 95, 300), + (226460, 94, 300), + (226460, 93, 300), + (226460, 96, 300), + (226460, 116, 10), + (226460, 114, 10), + (226460, 133, 10), + (226460, 167, 10), + (226460, 148, 10), + (226460, 154, 10), + (226460, 119, 10), + (226460, 168, 10), + (226461, 91, 1), + (226461, 90, 1), + (226461, 92, 1), + (226461, 97, 1), + (226461, 95, 1), + (226461, 94, 1), + (226461, 93, 1), + (226461, 96, 1), + (226461, 116, 1), + (226461, 114, 1), + (226461, 133, 1), + (226461, 167, 1), + (226461, 148, 1), + (226461, 154, 1), + (226461, 119, 1), + (226461, 168, 1), + (226462, 91, 300), + (226462, 90, 300), + (226462, 92, 300), + (226462, 97, 300), + (226462, 95, 300), + (226462, 94, 300), + (226462, 93, 300), + (226462, 96, 300), + (226462, 116, 10), + (226462, 114, 10), + (226462, 133, 10), + (226462, 167, 10), + (226462, 148, 10), + (226462, 154, 10), + (226462, 119, 10), + (226462, 168, 10), + (226463, 91, 5), + (226463, 90, 6), + (226463, 92, 5), + (226463, 97, 5), + (226463, 95, 5), + (226463, 94, 5), + (226463, 93, 5), + (226463, 96, 5), + (226463, 116, 1), + (226463, 114, 1), + (226463, 133, 1), + (226463, 167, 1), + (226463, 148, 1), + (226463, 154, 1), + (226463, 119, 1), + (226463, 168, 1), + (226464, 91, 1500), + (226464, 90, 1800), + (226464, 92, 1500), + (226464, 97, 1500), + (226464, 95, 1500), + (226464, 94, 1500), + (226464, 93, 1500), + (226464, 96, 1500), + (226464, 116, 10), + (226464, 114, 10), + (226464, 133, 10), + (226464, 167, 10), + (226464, 148, 10), + (226464, 154, 10), + (226464, 119, 10), + (226464, 168, 10), + (226474, 276, 1), + (226474, 155, 1), + (226474, 1, 10), + (226475, 276, 1), + (226475, 155, 1), + (226475, 1, 10), + (226476, 276, 2), + (226476, 155, 5), + (226476, 1, 50), + (226477, 276, 2), + (226477, 155, 5), + (226477, 1, 50), + (226478, 276, 3), + (226478, 155, 10), + (226478, 1, 100), + (226479, 276, 3), + (226479, 155, 10), + (226479, 1, 100), + (226480, 276, 4), + (226480, 155, 15), + (226480, 1, 150), + (226481, 276, 4), + (226481, 155, 15), + (226481, 1, 150), + (226482, 276, 5), + (226482, 155, 20), + (226482, 1, 200), + (226483, 276, 5), + (226483, 155, 20), + (226483, 1, 200), + (226484, 276, 6), + (226484, 155, 25), + (226484, 1, 250), + (226485, 276, 6), + (226485, 155, 25), + (226485, 1, 250), + (226486, 276, 7), + (226486, 155, 30), + (226486, 1, 300), + (226590, 91, 3), + (226590, 90, 2), + (226590, 92, 1), + (226590, 97, 2), + (226590, 95, 2), + (226590, 94, 2), + (226590, 93, 2), + (226590, 96, 2), + (226590, 106, 1), + (226590, 104, 1), + (226590, 146, 1), + (226590, 147, 1), + (226590, 153, 1), + (226590, 168, 1), + (226590, 164, 1), + (226590, 128, 1), + (226591, 91, 725), + (226591, 90, 600), + (226591, 92, 300), + (226591, 97, 600), + (226591, 95, 600), + (226591, 94, 450), + (226591, 93, 600), + (226591, 96, 600), + (226591, 106, 10), + (226591, 104, 10), + (226591, 146, 10), + (226591, 147, 10), + (226591, 153, 10), + (226591, 168, 10), + (226591, 164, 10), + (226591, 128, 5), + (226670, 91, 4), + (226670, 90, 3), + (226670, 92, 2), + (226670, 97, 3), + (226670, 95, 3), + (226670, 94, 3), + (226670, 93, 3), + (226670, 96, 3), + (226670, 106, 1), + (226670, 104, 1), + (226670, 146, 1), + (226670, 147, 1), + (226670, 153, 1), + (226670, 168, 1), + (226670, 164, 1), + (226670, 128, 1), + (226671, 91, 1175), + (226671, 90, 900), + (226671, 92, 450), + (226671, 97, 900), + (226671, 95, 900), + (226671, 94, 750), + (226671, 93, 900), + (226671, 96, 900), + (226671, 106, 10), + (226671, 104, 10), + (226671, 146, 10), + (226671, 147, 10), + (226671, 153, 10), + (226671, 168, 10), + (226671, 164, 10), + (226671, 128, 5), + (226672, 91, 6), + (226672, 90, 5), + (226672, 92, 3), + (226672, 97, 5), + (226672, 95, 5), + (226672, 94, 4), + (226672, 93, 5), + (226672, 96, 5), + (226672, 106, 1), + (226672, 104, 1), + (226672, 146, 1), + (226672, 147, 1), + (226672, 153, 1), + (226672, 168, 1), + (226672, 164, 1), + (226672, 128, 1), + (226673, 91, 1850), + (226673, 90, 1500), + (226673, 92, 750), + (226673, 97, 1500), + (226673, 95, 1500), + (226673, 94, 1200), + (226673, 93, 1500), + (226673, 96, 1500), + (226673, 106, 10), + (226673, 104, 10), + (226673, 146, 10), + (226673, 147, 10), + (226673, 153, 10), + (226673, 168, 10), + (226673, 164, 10), + (226673, 128, 5), + (226674, 91, 3), + (226674, 90, 1), + (226674, 92, 1), + (226674, 97, 1), + (226674, 95, 1), + (226674, 94, 1), + (226674, 93, 1), + (226674, 96, 1), + (226674, 106, 1), + (226674, 104, 1), + (226674, 146, 1), + (226674, 147, 1), + (226674, 153, 1), + (226674, 168, 1), + (226674, 164, 1), + (226674, 128, 1), + (226675, 91, 500), + (226675, 90, 300), + (226675, 92, 150), + (226675, 97, 300), + (226675, 95, 300), + (226675, 94, 300), + (226675, 93, 300), + (226675, 96, 300), + (226675, 106, 10), + (226675, 104, 10), + (226675, 146, 10), + (226675, 147, 10), + (226675, 153, 10), + (226675, 168, 10), + (226675, 164, 10), + (226675, 128, 5), + (226676, 91, 3), + (226676, 90, 1), + (226676, 92, 1), + (226676, 97, 1), + (226676, 95, 1), + (226676, 94, 1), + (226676, 93, 1), + (226676, 96, 1), + (226676, 106, 1), + (226676, 104, 1), + (226676, 146, 1), + (226676, 147, 1), + (226676, 153, 1), + (226676, 168, 1), + (226676, 164, 1), + (226676, 128, 1), + (226677, 91, 500), + (226677, 90, 300), + (226677, 92, 150), + (226677, 97, 300), + (226677, 95, 300), + (226677, 94, 300), + (226677, 93, 300), + (226677, 96, 300), + (226677, 106, 10), + (226677, 104, 10), + (226677, 146, 10), + (226677, 147, 10), + (226677, 153, 10), + (226677, 168, 10), + (226677, 164, 10), + (226677, 128, 5), + (226689, 91, 3), + (226689, 90, 2), + (226689, 92, 1), + (226689, 97, 2), + (226689, 95, 2), + (226689, 94, 2), + (226689, 93, 2), + (226689, 96, 2), + (226689, 106, 1), + (226689, 104, 1), + (226689, 146, 1), + (226689, 147, 1), + (226689, 153, 1), + (226689, 168, 1), + (226689, 164, 1), + (226689, 128, 1), + (226689, 1, 1), + (226690, 91, 675), + (226690, 90, 600), + (226690, 92, 300), + (226690, 97, 600), + (226690, 95, 600), + (226690, 94, 450), + (226690, 93, 600), + (226690, 96, 600), + (226690, 106, 10), + (226690, 104, 10), + (226690, 146, 10), + (226690, 147, 10), + (226690, 153, 10), + (226690, 168, 10), + (226690, 164, 10), + (226690, 128, 5), + (226690, 1, 50), + (226691, 91, 4), + (226691, 90, 3), + (226691, 92, 2), + (226691, 97, 3), + (226691, 95, 3), + (226691, 94, 3), + (226691, 93, 3), + (226691, 96, 3), + (226691, 106, 1), + (226691, 104, 1), + (226691, 146, 1), + (226691, 147, 1), + (226691, 153, 1), + (226691, 168, 1), + (226691, 164, 1), + (226691, 128, 1), + (226691, 1, 1), + (226692, 91, 1125), + (226692, 90, 900), + (226692, 92, 450), + (226692, 97, 900), + (226692, 95, 900), + (226692, 94, 750), + (226692, 93, 900), + (226692, 96, 900), + (226692, 106, 10), + (226692, 104, 10), + (226692, 146, 10), + (226692, 147, 10), + (226692, 153, 10), + (226692, 168, 10), + (226692, 164, 10), + (226692, 128, 5), + (226692, 1, 50), + (226693, 91, 6), + (226693, 90, 5), + (226693, 92, 3), + (226693, 97, 5), + (226693, 95, 5), + (226693, 94, 4), + (226693, 93, 5), + (226693, 96, 5), + (226693, 106, 1), + (226693, 104, 1), + (226693, 146, 1), + (226693, 147, 1), + (226693, 153, 1), + (226693, 168, 1), + (226693, 164, 1), + (226693, 128, 1), + (226693, 1, 1), + (226694, 91, 1800), + (226694, 90, 1500), + (226694, 92, 750), + (226694, 97, 1500), + (226694, 95, 1500), + (226694, 94, 1200), + (226694, 93, 1500), + (226694, 96, 1500), + (226694, 106, 10), + (226694, 104, 10), + (226694, 146, 10), + (226694, 147, 10), + (226694, 153, 10), + (226694, 168, 10), + (226694, 164, 10), + (226694, 128, 5), + (226694, 1, 50), + (226695, 91, 3), + (226695, 90, 1), + (226695, 92, 1), + (226695, 97, 1), + (226695, 95, 1), + (226695, 94, 1), + (226695, 93, 1), + (226695, 96, 1), + (226695, 106, 1), + (226695, 104, 1), + (226695, 146, 1), + (226695, 147, 1), + (226695, 153, 1), + (226695, 168, 1), + (226695, 164, 1), + (226695, 128, 1), + (226695, 1, 1), + (226696, 91, 450), + (226696, 90, 300), + (226696, 92, 150), + (226696, 97, 300), + (226696, 95, 300), + (226696, 94, 300), + (226696, 93, 300), + (226696, 96, 300), + (226696, 106, 10), + (226696, 104, 10), + (226696, 146, 10), + (226696, 147, 10), + (226696, 153, 10), + (226696, 168, 10), + (226696, 164, 10), + (226696, 128, 5), + (226696, 1, 50), + (226697, 91, 3), + (226697, 90, 1), + (226697, 92, 1), + (226697, 97, 1), + (226697, 95, 1), + (226697, 94, 1), + (226697, 93, 1), + (226697, 96, 1), + (226697, 106, 1), + (226697, 104, 1), + (226697, 146, 1), + (226697, 147, 1), + (226697, 153, 1), + (226697, 168, 1), + (226697, 164, 1), + (226697, 128, 1), + (226697, 1, 1), + (226698, 91, 450), + (226698, 90, 300), + (226698, 92, 150), + (226698, 97, 300), + (226698, 95, 300), + (226698, 94, 300), + (226698, 93, 300), + (226698, 96, 300), + (226698, 106, 10), + (226698, 104, 10), + (226698, 146, 10), + (226698, 147, 10), + (226698, 153, 10), + (226698, 168, 10), + (226698, 164, 10), + (226698, 128, 5), + (226698, 1, 50), + (226701, 91, 1), + (226701, 90, 1), + (226701, 92, 1), + (226701, 97, 1), + (226701, 95, 1), + (226701, 94, 1), + (226701, 93, 1), + (226701, 96, 1), + (226701, 106, 1), + (226701, 104, 1), + (226701, 146, 1), + (226701, 147, 1), + (226701, 153, 1), + (226701, 168, 1), + (226701, 164, 1), + (226701, 128, 1), + (226702, 91, 300), + (226702, 90, 300), + (226702, 92, 300), + (226702, 97, 300), + (226702, 95, 300), + (226702, 94, 300), + (226702, 93, 300), + (226702, 96, 300), + (226702, 106, 8), + (226702, 104, 8), + (226702, 146, 8), + (226702, 147, 8), + (226702, 153, 8), + (226702, 168, 8), + (226702, 164, 8), + (226702, 128, 4), + (226703, 91, 1), + (226703, 90, 1), + (226703, 92, 1), + (226703, 97, 1), + (226703, 95, 1), + (226703, 94, 1), + (226703, 93, 1), + (226703, 96, 1), + (226703, 106, 1), + (226703, 104, 1), + (226703, 146, 1), + (226703, 147, 1), + (226703, 153, 1), + (226703, 168, 1), + (226703, 164, 1), + (226703, 128, 1), + (226704, 91, 300), + (226704, 90, 300), + (226704, 92, 300), + (226704, 97, 300), + (226704, 95, 300), + (226704, 94, 300), + (226704, 93, 300), + (226704, 96, 300), + (226704, 106, 8), + (226704, 104, 8), + (226704, 146, 8), + (226704, 147, 8), + (226704, 153, 8), + (226704, 168, 8), + (226704, 164, 8), + (226704, 128, 4), + (226705, 91, 5), + (226705, 90, 5), + (226705, 92, 5), + (226705, 97, 5), + (226705, 95, 5), + (226705, 94, 5), + (226705, 93, 5), + (226705, 96, 5), + (226705, 106, 1), + (226705, 104, 1), + (226705, 146, 1), + (226705, 147, 1), + (226705, 153, 1), + (226705, 168, 1), + (226705, 164, 1), + (226705, 128, 1), + (226706, 91, 1500), + (226706, 90, 1500), + (226706, 92, 1500), + (226706, 97, 1500), + (226706, 95, 1500), + (226706, 94, 1500), + (226706, 93, 1500), + (226706, 96, 1500), + (226706, 106, 8), + (226706, 104, 8), + (226706, 146, 8), + (226706, 147, 8), + (226706, 153, 8), + (226706, 168, 8), + (226706, 164, 8), + (226706, 128, 4), + (226707, 91, 3), + (226707, 90, 3), + (226707, 92, 3), + (226707, 97, 3), + (226707, 95, 3), + (226707, 94, 3), + (226707, 93, 3), + (226707, 96, 3), + (226707, 106, 1), + (226707, 104, 1), + (226707, 146, 1), + (226707, 147, 1), + (226707, 153, 1), + (226707, 168, 1), + (226707, 164, 1), + (226707, 128, 1), + (226708, 91, 900), + (226708, 90, 900), + (226708, 92, 900), + (226708, 97, 900), + (226708, 95, 900), + (226708, 94, 900), + (226708, 93, 900), + (226708, 96, 900), + (226708, 106, 8), + (226708, 104, 8), + (226708, 146, 8), + (226708, 147, 8), + (226708, 153, 8), + (226708, 168, 8), + (226708, 164, 8), + (226708, 128, 4), + (226709, 91, 2), + (226709, 90, 2), + (226709, 92, 2), + (226709, 97, 2), + (226709, 95, 2), + (226709, 94, 2), + (226709, 93, 2), + (226709, 96, 2), + (226709, 106, 1), + (226709, 104, 1), + (226709, 146, 1), + (226709, 147, 1), + (226709, 153, 1), + (226709, 168, 1), + (226709, 164, 1), + (226709, 128, 1), + (226710, 91, 600), + (226710, 90, 600), + (226710, 92, 600), + (226710, 97, 600), + (226710, 95, 600), + (226710, 94, 600), + (226710, 93, 600), + (226710, 96, 600), + (226710, 106, 8), + (226710, 104, 8), + (226710, 146, 8), + (226710, 147, 8), + (226710, 153, 8), + (226710, 168, 8), + (226710, 164, 8), + (226710, 128, 4), + (226712, 90, -1000), + (226712, 92, -1000), + (226712, 91, -1000), + (226712, 95, -1000), + (226712, 97, -1000), + (226712, 96, -1000), + (226712, 93, -1000), + (226712, 94, -1000), + (226712, 90, -2000), + (226712, 92, -2000), + (226712, 91, -2000), + (226712, 95, -2000), + (226712, 97, -2000), + (226712, 96, -2000), + (226712, 93, -2000), + (226712, 94, -2000), + (226712, 90, -3000), + (226712, 92, -3000), + (226712, 91, -3000), + (226712, 95, -3000), + (226712, 97, -3000), + (226712, 96, -3000), + (226712, 93, -3000), + (226712, 94, -3000), + (226712, 90, -4000), + (226712, 92, -4000), + (226712, 91, -4000), + (226712, 95, -4000), + (226712, 97, -4000), + (226712, 96, -4000), + (226712, 93, -4000), + (226712, 94, -4000), + (226712, 90, -444), + (226712, 92, -444), + (226712, 91, -444), + (226712, 95, -444), + (226712, 97, -444), + (226712, 96, -444), + (226712, 93, -444), + (226712, 94, -444), + (226717, 90, -1000), + (226717, 92, -1000), + (226717, 91, -1000), + (226717, 95, -1000), + (226717, 97, -1000), + (226717, 96, -1000), + (226717, 93, -1000), + (226717, 94, -1000), + (226717, 90, -2500), + (226717, 92, -2500), + (226717, 91, -2500), + (226717, 95, -2500), + (226717, 97, -2500), + (226717, 96, -2500), + (226717, 93, -2500), + (226717, 94, -2500), + (226717, 90, -4000), + (226717, 92, -4000), + (226717, 91, -4000), + (226717, 95, -4000), + (226717, 97, -4000), + (226717, 96, -4000), + (226717, 93, -4000), + (226717, 94, -4000), + (226717, 90, -6500), + (226717, 92, -6500), + (226717, 91, -6500), + (226717, 95, -6500), + (226717, 97, -6500), + (226717, 96, -6500), + (226717, 93, -6500), + (226717, 94, -6500), + (226717, 90, -722), + (226717, 92, -722), + (226717, 91, -722), + (226717, 95, -722), + (226717, 97, -722), + (226717, 96, -722), + (226717, 93, -722), + (226717, 94, -722), + (226719, 90, -1000), + (226719, 92, -1000), + (226719, 91, -1000), + (226719, 95, -1000), + (226719, 97, -1000), + (226719, 96, -1000), + (226719, 93, -1000), + (226719, 94, -1000), + (226719, 90, -3000), + (226719, 92, -3000), + (226719, 91, -3000), + (226719, 95, -3000), + (226719, 97, -3000), + (226719, 96, -3000), + (226719, 93, -3000), + (226719, 94, -3000), + (226719, 90, -6000), + (226719, 92, -6000), + (226719, 91, -6000), + (226719, 95, -6000), + (226719, 97, -6000), + (226719, 96, -6000), + (226719, 93, -6000), + (226719, 94, -6000), + (226719, 90, -9000), + (226719, 92, -9000), + (226719, 91, -9000), + (226719, 95, -9000), + (226719, 97, -9000), + (226719, 96, -9000), + (226719, 93, -9000), + (226719, 94, -9000), + (226719, 90, -1000), + (226719, 92, -1000), + (226719, 91, -1000), + (226719, 95, -1000), + (226719, 97, -1000), + (226719, 96, -1000), + (226719, 93, -1000), + (226719, 94, -1000), + (226721, 90, -3000), + (226721, 92, -3000), + (226721, 91, -3000), + (226721, 95, -3000), + (226721, 97, -3000), + (226721, 96, -3000), + (226721, 93, -3000), + (226721, 94, -3000), + (226721, 90, -6000), + (226721, 92, -6000), + (226721, 91, -6000), + (226721, 95, -6000), + (226721, 97, -6000), + (226721, 96, -6000), + (226721, 93, -6000), + (226721, 94, -6000), + (226721, 90, -9000), + (226721, 92, -9000), + (226721, 91, -9000), + (226721, 95, -9000), + (226721, 97, -9000), + (226721, 96, -9000), + (226721, 93, -9000), + (226721, 94, -9000), + (226721, 90, -13000), + (226721, 92, -13000), + (226721, 91, -13000), + (226721, 95, -13000), + (226721, 97, -13000), + (226721, 96, -13000), + (226721, 93, -13000), + (226721, 94, -13000), + (226721, 90, -1444), + (226721, 92, -1444), + (226721, 91, -1444), + (226721, 95, -1444), + (226721, 97, -1444), + (226721, 96, -1444), + (226721, 93, -1444), + (226721, 94, -1444), + (226723, 90, -3000), + (226723, 92, -3000), + (226723, 91, -3000), + (226723, 95, -3000), + (226723, 97, -3000), + (226723, 96, -3000), + (226723, 93, -3000), + (226723, 94, -3000), + (226723, 90, -8000), + (226723, 92, -8000), + (226723, 91, -8000), + (226723, 95, -8000), + (226723, 97, -8000), + (226723, 96, -8000), + (226723, 93, -8000), + (226723, 94, -8000), + (226723, 90, -12000), + (226723, 92, -12000), + (226723, 91, -12000), + (226723, 95, -12000), + (226723, 97, -12000), + (226723, 96, -12000), + (226723, 93, -12000), + (226723, 90, -18000), + (226723, 94, -12000), + (226723, 92, -18000), + (226723, 91, -18000), + (226723, 95, -18000), + (226723, 97, -18000), + (226723, 96, -18000), + (226723, 93, -18000), + (226723, 94, -18000), + (226723, 90, -2000), + (226723, 92, -2000), + (226723, 91, -2000), + (226723, 95, -2000), + (226723, 97, -2000), + (226723, 96, -2000), + (226723, 93, -2000), + (226723, 94, -2000), + (226725, 90, -5000), + (226725, 92, -5000), + (226725, 91, -5000), + (226725, 95, -5000), + (226725, 97, -5000), + (226725, 96, -5000), + (226725, 93, -5000), + (226725, 94, -5000), + (226725, 90, -10000), + (226725, 92, -10000), + (226725, 91, -10000), + (226725, 95, -10000), + (226725, 97, -10000), + (226725, 96, -10000), + (226725, 93, -10000), + (226725, 94, -10000), + (226725, 90, -20000), + (226725, 92, -20000), + (226725, 91, -20000), + (226725, 95, -20000), + (226725, 97, -20000), + (226725, 96, -20000), + (226725, 93, -20000), + (226725, 94, -20000), + (226725, 90, -25000), + (226725, 92, -25000), + (226725, 91, -25000), + (226725, 95, -25000), + (226725, 97, -25000), + (226725, 96, -25000), + (226725, 93, -25000), + (226725, 94, -25000), + (226725, 90, -2778), + (226725, 92, -2778), + (226725, 91, -2778), + (226725, 95, -2778), + (226725, 97, -2778), + (226725, 96, -2778), + (226725, 93, -2778), + (226725, 94, -2778), + (226727, 168, -80), + (226729, 168, -120), + (226731, 168, -900), + (226735, 168, -150), + (226737, 168, -1700), + (226739, 168, -175), + (226741, 168, -2900), + (226743, 168, -200), + (226745, 168, -4500), + (226747, 168, -250), + (226749, 168, -6400), + (226751, 168, -500), + (226824, 124, 2), + (226824, 123, 2), + (226825, 91, 2), + (226825, 90, 2), + (226825, 92, 2), + (226825, 97, 2), + (226825, 95, 2), + (226825, 94, 2), + (226825, 93, 2), + (226825, 96, 2), + (226825, 118, 1), + (226825, 103, 1), + (226825, 102, 1), + (226825, 105, 1), + (226825, 107, 1), + (226825, 147, 1), + (226825, 101, 1), + (226825, 168, 1), + (226826, 91, 600), + (226826, 90, 600), + (226826, 92, 600), + (226826, 97, 600), + (226826, 95, 600), + (226826, 94, 600), + (226826, 93, 600), + (226826, 96, 600), + (226826, 118, 10), + (226826, 103, 10), + (226826, 102, 10), + (226826, 105, 10), + (226826, 107, 10), + (226826, 147, 10), + (226826, 101, 10), + (226826, 168, 10), + (226827, 91, 4), + (226827, 90, 3), + (226827, 92, 3), + (226827, 97, 3), + (226827, 95, 3), + (226827, 94, 3), + (226827, 93, 3), + (226827, 96, 3), + (226827, 118, 1), + (226827, 103, 1), + (226827, 102, 1), + (226827, 105, 1), + (226827, 107, 1), + (226827, 147, 1), + (226827, 101, 1), + (226827, 168, 1), + (226828, 91, 1200), + (226828, 90, 900), + (226828, 92, 900), + (226828, 97, 900), + (226828, 95, 900), + (226828, 94, 900), + (226828, 93, 900), + (226828, 96, 900), + (226828, 118, 10), + (226828, 103, 10), + (226828, 102, 10), + (226828, 105, 10), + (226828, 107, 10), + (226828, 147, 10), + (226828, 101, 10), + (226828, 168, 10), + (226829, 91, 6), + (226829, 90, 5), + (226829, 92, 5), + (226829, 97, 5), + (226829, 95, 5), + (226829, 94, 5), + (226829, 93, 5), + (226829, 96, 5), + (226829, 118, 1), + (226829, 103, 1), + (226829, 102, 1), + (226829, 105, 1), + (226829, 107, 1), + (226829, 147, 1), + (226829, 101, 1), + (226829, 168, 1), + (226830, 91, 1800), + (226830, 90, 1500), + (226830, 92, 1500), + (226830, 97, 1500), + (226830, 95, 1500), + (226830, 94, 1500), + (226830, 93, 1500), + (226830, 96, 1500), + (226830, 118, 10), + (226830, 103, 10), + (226830, 102, 10), + (226830, 105, 10), + (226830, 107, 10), + (226830, 147, 10), + (226830, 101, 10), + (226830, 168, 10), + (226831, 91, 2), + (226831, 90, 1), + (226831, 92, 1), + (226831, 97, 1), + (226831, 95, 1), + (226831, 94, 1), + (226831, 93, 1), + (226831, 96, 1), + (226831, 118, 1), + (226831, 103, 1), + (226831, 102, 1), + (226831, 105, 1), + (226831, 107, 1), + (226831, 147, 1), + (226831, 101, 1), + (226831, 168, 1), + (226832, 91, 600), + (226832, 90, 300), + (226832, 92, 300), + (226832, 97, 300), + (226832, 95, 300), + (226832, 94, 300), + (226832, 93, 300), + (226832, 96, 300), + (226832, 118, 10), + (226832, 103, 10), + (226832, 102, 10), + (226832, 105, 10), + (226832, 107, 10), + (226832, 147, 10), + (226832, 101, 10), + (226832, 168, 10), + (226833, 91, 1), + (226833, 90, 1), + (226833, 92, 1), + (226833, 97, 1), + (226833, 95, 1), + (226833, 94, 1), + (226833, 93, 1), + (226833, 96, 1), + (226833, 118, 1), + (226833, 103, 1), + (226833, 102, 1), + (226833, 105, 1), + (226833, 107, 1), + (226833, 147, 1), + (226833, 101, 1), + (226833, 168, 1), + (226834, 91, 300), + (226834, 90, 300), + (226834, 92, 300), + (226834, 97, 300), + (226834, 95, 300), + (226834, 94, 300), + (226834, 93, 300), + (226834, 96, 300), + (226834, 118, 10), + (226834, 103, 10), + (226834, 102, 10), + (226834, 105, 10), + (226834, 107, 10), + (226834, 147, 10), + (226834, 101, 10), + (226834, 168, 10), + (226835, 91, 6), + (226835, 90, 5), + (226835, 92, 5), + (226835, 97, 5), + (226835, 95, 5), + (226835, 94, 5), + (226835, 93, 5), + (226835, 96, 5), + (226835, 118, 1), + (226835, 103, 1), + (226835, 102, 1), + (226835, 105, 1), + (226835, 107, 1), + (226835, 147, 1), + (226835, 101, 1), + (226835, 168, 1), + (226836, 91, 1800), + (226836, 90, 1500), + (226836, 92, 1500), + (226836, 97, 1500), + (226836, 95, 1500), + (226836, 94, 1500), + (226836, 93, 1500), + (226836, 96, 1500), + (226836, 118, 10), + (226836, 103, 10), + (226836, 102, 10), + (226836, 105, 10), + (226836, 107, 10), + (226836, 147, 10), + (226836, 101, 10), + (226836, 168, 10), + (226838, 91, 4), + (226838, 90, 5), + (226838, 92, 4), + (226838, 97, 5), + (226838, 95, 5), + (226838, 93, 4), + (226838, 94, 3), + (226838, 96, 4), + (226838, 168, 1), + (226838, 154, 1), + (226838, 1, 1), + (226838, 114, 1), + (226838, 113, 1), + (226838, 112, 1), + (226839, 91, 1200), + (226839, 90, 1500), + (226839, 92, 1200), + (226839, 97, 1500), + (226839, 95, 1500), + (226839, 93, 1200), + (226839, 94, 900), + (226839, 96, 1200), + (226839, 168, 30), + (226839, 154, 30), + (226839, 1, 150), + (226839, 114, 9), + (226839, 113, 9), + (226839, 112, 9), + (226862, 91, 1), + (226862, 90, 1), + (226862, 92, 1), + (226862, 97, 1), + (226862, 95, 1), + (226862, 94, 1), + (226862, 93, 1), + (226862, 96, 1), + (226862, 1, 1), + (226863, 91, 300), + (226863, 90, 300), + (226863, 92, 300), + (226863, 97, 300), + (226863, 95, 300), + (226863, 94, 300), + (226863, 93, 300), + (226863, 96, 300), + (226863, 1, 300), + (226864, 91, 1), + (226864, 90, 1), + (226864, 92, 1), + (226864, 97, 1), + (226864, 95, 1), + (226864, 94, 1), + (226864, 93, 1), + (226864, 96, 1), + (226864, 1, 1), + (226865, 91, 300), + (226865, 90, 300), + (226865, 92, 300), + (226865, 97, 300), + (226865, 95, 300), + (226865, 94, 300), + (226865, 93, 300), + (226865, 96, 300), + (226865, 1, 300), + (226866, 91, 4), + (226866, 90, 4), + (226866, 92, 4), + (226866, 97, 4), + (226866, 95, 4), + (226866, 94, 4), + (226866, 93, 4), + (226866, 96, 4), + (226866, 1, 3), + (226867, 91, 1200), + (226867, 90, 1200), + (226867, 92, 1200), + (226867, 97, 1200), + (226867, 95, 1200), + (226867, 94, 1200), + (226867, 93, 1200), + (226867, 96, 1200), + (226867, 1, 900), + (226868, 91, 2), + (226868, 90, 2), + (226868, 92, 2), + (226868, 97, 2), + (226868, 95, 2), + (226868, 94, 2), + (226868, 93, 2), + (226868, 96, 2), + (226868, 1, 2), + (226869, 91, 750), + (226869, 90, 750), + (226869, 92, 750), + (226869, 97, 750), + (226869, 95, 750), + (226869, 94, 750), + (226869, 93, 750), + (226869, 96, 750), + (226869, 1, 600), + (226870, 91, 1), + (226870, 90, 1), + (226870, 92, 1), + (226870, 97, 1), + (226870, 95, 1), + (226870, 94, 1), + (226870, 93, 1), + (226870, 96, 1), + (226870, 1, 1), + (226871, 91, 450), + (226871, 90, 450), + (226871, 92, 450), + (226871, 97, 450), + (226871, 95, 450), + (226871, 94, 450), + (226871, 93, 450), + (226871, 96, 450), + (226871, 1, 300), + (226955, 91, 1), + (226955, 90, 1), + (226955, 92, 1), + (226955, 97, 1), + (226955, 95, 1), + (226955, 94, 1), + (226955, 93, 1), + (226955, 96, 2), + (226955, 154, 1), + (226955, 161, 1), + (226955, 131, 1), + (226956, 91, 450), + (226956, 90, 450), + (226956, 92, 450), + (226956, 97, 450), + (226956, 95, 450), + (226956, 94, 450), + (226956, 93, 450), + (226956, 96, 675), + (226956, 154, 25), + (226956, 161, 10), + (226956, 131, 10), + (226957, 91, 2), + (226957, 90, 2), + (226957, 92, 2), + (226957, 97, 2), + (226957, 95, 2), + (226957, 94, 2), + (226957, 93, 2), + (226957, 96, 3), + (226957, 154, 1), + (226957, 161, 1), + (226957, 131, 1), + (226958, 91, 750), + (226958, 90, 750), + (226958, 92, 750), + (226958, 97, 750), + (226958, 95, 750), + (226958, 94, 750), + (226958, 93, 750), + (226958, 96, 1125), + (226958, 154, 25), + (226958, 161, 10), + (226958, 131, 10), + (226959, 91, 4), + (226959, 90, 4), + (226959, 92, 4), + (226959, 97, 4), + (226959, 95, 4), + (226959, 94, 4), + (226959, 93, 4), + (226959, 96, 6), + (226959, 154, 1), + (226959, 161, 1), + (226959, 131, 1), + (226960, 91, 1200), + (226960, 90, 1200), + (226960, 92, 1200), + (226960, 97, 1200), + (226960, 95, 1200), + (226960, 94, 1200), + (226960, 93, 1200), + (226960, 96, 1800), + (226960, 154, 25), + (226960, 161, 10), + (226960, 131, 10), + (226961, 91, 1), + (226961, 90, 1), + (226961, 92, 1), + (226961, 97, 1), + (226961, 95, 1), + (226961, 94, 1), + (226961, 93, 1), + (226961, 96, 1), + (226961, 154, 1), + (226961, 161, 1), + (226961, 131, 1), + (226962, 91, 300), + (226962, 90, 300), + (226962, 92, 300), + (226962, 97, 300), + (226962, 95, 300), + (226962, 94, 300), + (226962, 93, 300), + (226962, 96, 450), + (226962, 154, 25), + (226962, 161, 10), + (226962, 131, 10), + (226963, 91, 1), + (226963, 90, 1), + (226963, 92, 1), + (226963, 97, 1), + (226963, 95, 1), + (226963, 94, 1), + (226963, 93, 1), + (226963, 96, 1), + (226963, 154, 1), + (226963, 161, 1), + (226963, 131, 1), + (226964, 91, 300), + (226964, 90, 300), + (226964, 92, 300), + (226964, 97, 300), + (226964, 95, 300), + (226964, 94, 300), + (226964, 93, 300), + (226964, 96, 375), + (226964, 154, 25), + (226964, 161, 10), + (226964, 131, 10), + (226965, 91, 2), + (226965, 90, 1), + (226965, 92, 1), + (226965, 97, 1), + (226965, 95, 1), + (226965, 94, 1), + (226965, 93, 1), + (226965, 96, 1), + (226965, 120, 1), + (226965, 155, 1), + (226965, 276, 1), + (226966, 91, 675), + (226966, 90, 450), + (226966, 92, 450), + (226966, 97, 450), + (226966, 95, 450), + (226966, 94, 450), + (226966, 93, 450), + (226966, 96, 450), + (226966, 120, 25), + (226966, 155, 20), + (226966, 276, 5), + (226967, 91, 3), + (226967, 90, 2), + (226967, 92, 2), + (226967, 97, 2), + (226967, 95, 2), + (226967, 94, 2), + (226967, 93, 2), + (226967, 96, 2), + (226967, 120, 1), + (226967, 155, 1), + (226967, 276, 1), + (226968, 91, 1125), + (226968, 90, 750), + (226968, 92, 750), + (226968, 97, 750), + (226968, 95, 750), + (226968, 94, 750), + (226968, 93, 750), + (226968, 96, 750), + (226968, 120, 25), + (226968, 155, 20), + (226968, 276, 5), + (226969, 91, 6), + (226969, 90, 4), + (226969, 92, 4), + (226969, 97, 4), + (226969, 95, 4), + (226969, 94, 4), + (226969, 93, 4), + (226969, 96, 4), + (226969, 120, 1), + (226969, 155, 1), + (226969, 276, 1), + (226970, 91, 1800), + (226970, 90, 1200), + (226970, 92, 1200), + (226970, 97, 1200), + (226970, 95, 1200), + (226970, 94, 1200), + (226970, 93, 1200), + (226970, 96, 1200), + (226970, 120, 25), + (226970, 155, 20), + (226970, 276, 5), + (226971, 91, 1), + (226971, 90, 1), + (226971, 92, 1), + (226971, 97, 1), + (226971, 95, 1), + (226971, 94, 1), + (226971, 93, 1), + (226971, 96, 1), + (226971, 120, 1), + (226971, 155, 1), + (226971, 276, 1), + (226972, 91, 450), + (226972, 90, 300), + (226972, 92, 300), + (226972, 97, 300), + (226972, 95, 300), + (226972, 94, 300), + (226972, 93, 300), + (226972, 96, 300), + (226972, 120, 25), + (226972, 155, 20), + (226972, 276, 5), + (226973, 91, 1), + (226973, 90, 1), + (226973, 92, 1), + (226973, 97, 1), + (226973, 95, 1), + (226973, 94, 1), + (226973, 93, 1), + (226973, 96, 1), + (226973, 120, 1), + (226973, 155, 1), + (226973, 276, 1), + (226974, 91, 375), + (226974, 90, 300), + (226974, 92, 300), + (226974, 97, 300), + (226974, 95, 300), + (226974, 94, 300), + (226974, 93, 300), + (226974, 96, 300), + (226974, 120, 25), + (226974, 155, 20), + (226974, 276, 5), + (226975, 91, 1), + (226975, 90, 1), + (226975, 92, 1), + (226975, 97, 1), + (226975, 95, 1), + (226975, 94, 1), + (226975, 93, 1), + (226975, 96, 1), + (226975, 1, 1), + (226975, 119, 1), + (226975, 131, 1), + (226976, 91, 300), + (226976, 90, 375), + (226976, 92, 300), + (226976, 97, 300), + (226976, 95, 300), + (226976, 94, 300), + (226976, 93, 300), + (226976, 96, 300), + (226976, 1, 300), + (226976, 119, 20), + (226976, 131, 10), + (226977, 91, 1), + (226977, 90, 1), + (226977, 92, 1), + (226977, 97, 1), + (226977, 95, 1), + (226977, 94, 1), + (226977, 93, 1), + (226977, 96, 1), + (226977, 1, 1), + (226977, 119, 1), + (226977, 131, 1), + (226978, 91, 300), + (226978, 90, 450), + (226978, 92, 300), + (226978, 97, 300), + (226978, 95, 300), + (226978, 94, 300), + (226978, 93, 300), + (226978, 96, 300), + (226978, 1, 300), + (226978, 119, 20), + (226978, 131, 10), + (226979, 91, 4), + (226979, 90, 6), + (226979, 92, 4), + (226979, 97, 4), + (226979, 95, 4), + (226979, 94, 4), + (226979, 93, 4), + (226979, 96, 4), + (226979, 1, 1), + (226979, 119, 1), + (226979, 131, 1), + (226980, 91, 1200), + (226980, 90, 1800), + (226980, 92, 1200), + (226980, 97, 1200), + (226980, 95, 1200), + (226980, 94, 1200), + (226980, 93, 1200), + (226980, 96, 1200), + (226980, 1, 300), + (226980, 119, 20), + (226980, 131, 10), + (226981, 91, 2), + (226981, 90, 3), + (226981, 92, 2), + (226981, 97, 2), + (226981, 95, 2), + (226981, 94, 2), + (226981, 93, 2), + (226981, 96, 2), + (226981, 1, 1), + (226981, 119, 1), + (226981, 131, 1), + (226982, 91, 750), + (226982, 90, 1125), + (226982, 92, 750), + (226982, 97, 750), + (226982, 95, 750), + (226982, 94, 750), + (226982, 93, 750), + (226982, 96, 750), + (226982, 1, 300), + (226982, 119, 20), + (226982, 131, 10), + (226983, 91, 1), + (226983, 90, 2), + (226983, 92, 1), + (226983, 97, 1), + (226983, 95, 1), + (226983, 94, 1), + (226983, 93, 1), + (226983, 96, 1), + (226983, 1, 1), + (226983, 119, 1), + (226983, 131, 1), + (226984, 91, 450), + (226984, 90, 675), + (226984, 92, 450), + (226984, 97, 450), + (226984, 95, 450), + (226984, 94, 450), + (226984, 93, 450), + (226984, 96, 450), + (226984, 1, 300), + (226984, 119, 20), + (226984, 131, 10), + (226985, 124, 10), + (226985, 123, 10), + (226986, 124, 8), + (226986, 123, 8), + (226987, 124, 4), + (226987, 123, 4), + (226988, 124, 14), + (226988, 123, 14), + (226989, 124, 8), + (226989, 123, 8), + (226990, 124, 14), + (226990, 123, 14), + (226991, 124, 6), + (226991, 123, 6), + (226992, 124, 6), + (226992, 123, 6), + (226993, 124, 4), + (226993, 123, 4), + (226994, 124, 2), + (226994, 123, 2), + (226995, 124, 10), + (226995, 123, 10), + (226996, 91, 1), + (226996, 90, 1), + (226996, 92, 1), + (226996, 97, 1), + (226996, 95, 1), + (226996, 94, 1), + (226996, 93, 1), + (226996, 96, 1), + (226996, 221, 1), + (226996, 112, 1), + (226996, 103, 1), + (226997, 91, 375), + (226997, 90, 375), + (226997, 92, 300), + (226997, 97, 300), + (226997, 95, 300), + (226997, 94, 300), + (226997, 93, 300), + (226997, 96, 300), + (226997, 221, 300), + (226997, 112, 10), + (226997, 103, 10), + (226998, 91, 1), + (226998, 90, 1), + (226998, 92, 1), + (226998, 97, 1), + (226998, 95, 1), + (226998, 94, 1), + (226998, 93, 1), + (226998, 96, 1), + (226998, 221, 1), + (226998, 112, 1), + (226998, 103, 1), + (226999, 91, 450), + (226999, 90, 450), + (226999, 92, 300), + (226999, 97, 300), + (226999, 95, 300), + (226999, 94, 300), + (226999, 93, 300), + (226999, 96, 300), + (226999, 221, 300), + (226999, 112, 10), + (226999, 103, 10), + (227000, 91, 6), + (227000, 90, 6), + (227000, 92, 4), + (227000, 97, 4), + (227000, 95, 4), + (227000, 94, 4), + (227000, 93, 4), + (227000, 96, 4), + (227000, 221, 1), + (227000, 112, 1), + (227000, 103, 1), + (227001, 91, 1800), + (227001, 90, 1800), + (227001, 92, 1200), + (227001, 97, 1200), + (227001, 95, 1200), + (227001, 94, 1200), + (227001, 93, 1200), + (227001, 96, 1200), + (227001, 221, 300), + (227001, 112, 10), + (227001, 103, 10), + (227002, 91, 3), + (227002, 90, 3), + (227002, 92, 2), + (227002, 97, 2), + (227002, 95, 2), + (227002, 94, 2), + (227002, 93, 2), + (227002, 96, 2), + (227002, 221, 1), + (227002, 112, 1), + (227002, 103, 1), + (227003, 91, 1125), + (227003, 90, 1125), + (227003, 92, 750), + (227003, 97, 750), + (227003, 95, 750), + (227003, 94, 750), + (227003, 93, 750), + (227003, 96, 750), + (227003, 221, 300), + (227003, 112, 10), + (227003, 103, 10), + (227004, 91, 2), + (227004, 90, 2), + (227004, 92, 1), + (227004, 97, 1), + (227004, 95, 1), + (227004, 94, 1), + (227004, 93, 1), + (227004, 96, 1), + (227004, 221, 1), + (227004, 112, 1), + (227004, 103, 1), + (227005, 91, 675), + (227005, 90, 675), + (227005, 92, 450), + (227005, 97, 450), + (227005, 95, 450), + (227005, 94, 450), + (227005, 93, 450), + (227005, 96, 450), + (227005, 221, 300), + (227005, 112, 10), + (227005, 103, 10), + (227006, 91, 1), + (227006, 90, 1), + (227006, 92, 1), + (227006, 97, 1), + (227006, 95, 1), + (227006, 94, 1), + (227006, 93, 1), + (227006, 96, 1), + (227006, 118, 1), + (227006, 131, 1), + (227006, 277, 1), + (227007, 91, 375), + (227007, 90, 300), + (227007, 92, 300), + (227007, 97, 300), + (227007, 95, 300), + (227007, 94, 300), + (227007, 93, 300), + (227007, 96, 300), + (227007, 118, 25), + (227007, 131, 10), + (227007, 277, 5), + (227008, 91, 1), + (227008, 90, 1), + (227008, 92, 1), + (227008, 97, 1), + (227008, 95, 1), + (227008, 94, 1), + (227008, 93, 1), + (227008, 96, 1), + (227008, 118, 1), + (227008, 131, 1), + (227008, 277, 1), + (227009, 91, 450), + (227009, 90, 300), + (227009, 92, 300), + (227009, 97, 300), + (227009, 95, 300), + (227009, 94, 300), + (227009, 93, 300), + (227009, 96, 300), + (227009, 118, 25), + (227009, 131, 10), + (227009, 277, 5), + (227010, 91, 6), + (227010, 90, 4), + (227010, 92, 4), + (227010, 97, 4), + (227010, 95, 4), + (227010, 94, 4), + (227010, 93, 4), + (227010, 96, 4), + (227010, 118, 1), + (227010, 131, 1), + (227010, 277, 1), + (227011, 91, 1800), + (227011, 90, 1200), + (227011, 92, 1200), + (227011, 97, 1200), + (227011, 95, 1200), + (227011, 94, 1200), + (227011, 93, 1200), + (227011, 96, 1200), + (227011, 118, 25), + (227011, 131, 10), + (227011, 277, 5), + (227012, 91, 3), + (227012, 90, 2), + (227012, 92, 2), + (227012, 97, 2), + (227012, 95, 2), + (227012, 94, 2), + (227012, 93, 2), + (227012, 96, 2), + (227012, 118, 1), + (227012, 131, 1), + (227012, 277, 1), + (227013, 91, 1125), + (227013, 90, 750), + (227013, 92, 750), + (227013, 97, 750), + (227013, 95, 750), + (227013, 94, 750), + (227013, 93, 750), + (227013, 96, 750), + (227013, 118, 25), + (227013, 131, 10), + (227013, 277, 5), + (227014, 91, 2), + (227014, 90, 1), + (227014, 92, 1), + (227014, 97, 1), + (227014, 95, 1), + (227014, 94, 1), + (227014, 93, 1), + (227014, 96, 1), + (227014, 118, 1), + (227014, 131, 1), + (227014, 277, 1), + (227015, 91, 675), + (227015, 90, 450), + (227015, 92, 450), + (227015, 97, 450), + (227015, 95, 450), + (227015, 94, 450), + (227015, 93, 450), + (227015, 96, 450), + (227015, 118, 25), + (227015, 131, 10), + (227015, 277, 5), + (227016, 91, 2), + (227016, 90, 1), + (227016, 92, 1), + (227016, 97, 1), + (227016, 95, 1), + (227016, 94, 1), + (227016, 93, 1), + (227016, 96, 1), + (227016, 1, 1), + (227016, 153, 1), + (227016, 161, 1), + (227017, 91, 675), + (227017, 90, 450), + (227017, 92, 450), + (227017, 97, 450), + (227017, 95, 450), + (227017, 94, 450), + (227017, 93, 450), + (227017, 96, 450), + (227017, 1, 300), + (227017, 153, 15), + (227017, 161, 10), + (227018, 91, 3), + (227018, 90, 2), + (227018, 92, 2), + (227018, 97, 2), + (227018, 95, 2), + (227018, 94, 2), + (227018, 93, 2), + (227018, 96, 2), + (227018, 1, 1), + (227018, 153, 1), + (227018, 161, 1), + (227019, 91, 1125), + (227019, 90, 750), + (227019, 92, 750), + (227019, 97, 750), + (227019, 95, 750), + (227019, 94, 750), + (227019, 93, 750), + (227019, 96, 750), + (227019, 1, 300), + (227019, 153, 15), + (227019, 161, 10), + (227020, 91, 6), + (227020, 90, 4), + (227020, 92, 4), + (227020, 97, 4), + (227020, 95, 4), + (227020, 94, 4), + (227020, 93, 4), + (227020, 96, 4), + (227020, 1, 1), + (227020, 153, 1), + (227020, 161, 1), + (227021, 91, 1800), + (227021, 90, 1200), + (227021, 92, 1200), + (227021, 97, 1200), + (227021, 95, 1200), + (227021, 94, 1200), + (227021, 93, 1200), + (227021, 96, 1200), + (227021, 1, 300), + (227021, 153, 15), + (227021, 161, 10), + (227022, 91, 1), + (227022, 90, 1), + (227022, 92, 1), + (227022, 97, 1), + (227022, 95, 1), + (227022, 94, 1), + (227022, 93, 1), + (227022, 96, 1), + (227022, 1, 1), + (227022, 153, 1), + (227022, 161, 1), + (227023, 91, 450), + (227023, 90, 300), + (227023, 92, 300), + (227023, 97, 300), + (227023, 95, 300), + (227023, 94, 300), + (227023, 93, 300), + (227023, 96, 300), + (227023, 1, 300), + (227023, 153, 15), + (227023, 161, 10), + (227024, 91, 1), + (227024, 90, 1), + (227024, 92, 1), + (227024, 97, 1), + (227024, 95, 1), + (227024, 94, 1), + (227024, 93, 1), + (227024, 96, 1), + (227024, 1, 1), + (227024, 153, 1), + (227024, 161, 1), + (227025, 91, 375), + (227025, 90, 300), + (227025, 92, 300), + (227025, 97, 300), + (227025, 95, 300), + (227025, 94, 300), + (227025, 93, 300), + (227025, 96, 300), + (227025, 1, 300), + (227025, 153, 15), + (227025, 161, 10), + (227026, 91, 1), + (227026, 90, 1), + (227026, 92, 1), + (227026, 97, 1), + (227026, 95, 1), + (227026, 94, 2), + (227026, 93, 1), + (227026, 96, 1), + (227026, 119, 1), + (227026, 149, 1), + (227026, 154, 1), + (227027, 91, 450), + (227027, 90, 450), + (227027, 92, 450), + (227027, 97, 450), + (227027, 95, 450), + (227027, 94, 675), + (227027, 93, 450), + (227027, 96, 450), + (227027, 119, 25), + (227027, 149, 25), + (227027, 154, 10), + (227028, 91, 2), + (227028, 90, 2), + (227028, 92, 2), + (227028, 97, 2), + (227028, 95, 2), + (227028, 94, 3), + (227028, 93, 2), + (227028, 96, 2), + (227028, 119, 1), + (227028, 149, 1), + (227028, 154, 1), + (227029, 91, 750), + (227029, 90, 750), + (227029, 92, 750), + (227029, 97, 750), + (227029, 95, 750), + (227029, 94, 1125), + (227029, 93, 750), + (227029, 96, 750), + (227029, 119, 25), + (227029, 149, 25), + (227029, 154, 10), + (227030, 91, 4), + (227030, 90, 4), + (227030, 92, 4), + (227030, 97, 4), + (227030, 95, 4), + (227030, 94, 6), + (227030, 93, 4), + (227030, 96, 4), + (227030, 119, 1), + (227030, 149, 1), + (227030, 154, 1), + (227031, 91, 1200), + (227031, 90, 1200), + (227031, 92, 1200), + (227031, 97, 1200), + (227031, 95, 1200), + (227031, 94, 1800), + (227031, 93, 1200), + (227031, 96, 1200), + (227031, 119, 25), + (227031, 149, 25), + (227031, 154, 10), + (227032, 91, 1), + (227032, 90, 1), + (227032, 92, 1), + (227032, 97, 1), + (227032, 95, 1), + (227032, 94, 1), + (227032, 93, 1), + (227032, 96, 1), + (227032, 119, 1), + (227032, 149, 1), + (227032, 154, 1), + (227033, 91, 300), + (227033, 90, 300), + (227033, 92, 300), + (227033, 97, 300), + (227033, 95, 300), + (227033, 94, 450), + (227033, 93, 300), + (227033, 96, 300), + (227033, 119, 25), + (227033, 149, 25), + (227033, 154, 10), + (227034, 91, 1), + (227034, 90, 1), + (227034, 92, 1), + (227034, 97, 1), + (227034, 95, 1), + (227034, 94, 1), + (227034, 93, 1), + (227034, 96, 1), + (227034, 119, 1), + (227034, 149, 1), + (227034, 154, 1), + (227035, 91, 300), + (227035, 90, 300), + (227035, 92, 300), + (227035, 97, 300), + (227035, 95, 300), + (227035, 94, 375), + (227035, 93, 300), + (227035, 96, 300), + (227035, 119, 25), + (227035, 149, 25), + (227035, 154, 10), + (227087, 18, 2), + (227087, 16, 2), + (227091, 17, 2), + (227091, 16, 2), + (227096, 17, 2), + (227096, 20, 2), + (227105, 19, 5), + (227105, 18, 3), + (227108, 17, 5), + (227108, 19, 3), + (227110, 278, -72), + (227110, 280, -72), + (227110, 279, -72), + (227110, 311, -72), + (227110, 316, -72), + (227110, 317, -72), + (227110, 281, -72), + (227110, 282, -72), + (227112, 278, -75), + (227112, 280, -75), + (227112, 279, -75), + (227112, 311, -75), + (227112, 316, -75), + (227112, 317, -75), + (227112, 281, -75), + (227112, 282, -75), + (227114, 278, -106), + (227114, 280, -106), + (227114, 279, -106), + (227114, 311, -106), + (227114, 316, -106), + (227114, 317, -106), + (227114, 281, -106), + (227114, 282, -106), + (227116, 278, -97), + (227116, 280, -97), + (227116, 279, -97), + (227116, 311, -97), + (227116, 316, -97), + (227116, 317, -97), + (227116, 281, -97), + (227116, 282, -97), + (227118, 278, -141), + (227118, 280, -141), + (227118, 279, -141), + (227118, 311, -141), + (227118, 316, -141), + (227118, 317, -141), + (227118, 281, -141), + (227118, 282, -141), + (227122, 278, -136), + (227122, 280, -136), + (227122, 279, -136), + (227122, 311, -136), + (227122, 316, -136), + (227122, 317, -136), + (227122, 281, -136), + (227122, 282, -136), + (227124, 278, -181), + (227124, 280, -181), + (227124, 279, -181), + (227124, 311, -181), + (227124, 316, -181), + (227124, 317, -181), + (227124, 281, -181), + (227124, 282, -181), + (227130, 17, 3), + (227130, 20, 5), + (227131, 278, -160), + (227131, 280, -160), + (227131, 279, -160), + (227131, 311, -160), + (227131, 316, -160), + (227131, 317, -160), + (227131, 281, -160), + (227131, 282, -160), + (227133, 278, -247), + (227133, 280, -247), + (227133, 279, -247), + (227133, 311, -247), + (227133, 316, -247), + (227133, 317, -247), + (227133, 281, -247), + (227133, 282, -247), + (227136, 278, -203), + (227136, 280, -203), + (227136, 279, -203), + (227136, 311, -203), + (227136, 316, -203), + (227136, 317, -203), + (227136, 281, -203), + (227136, 282, -203), + (227139, 278, -329), + (227139, 280, -329), + (227139, 279, -329), + (227139, 311, -329), + (227139, 316, -329), + (227139, 317, -329), + (227139, 281, -329), + (227139, 282, -329), + (227141, 19, 2), + (227141, 21, 2), + (227142, 278, -250), + (227142, 280, -250), + (227142, 279, -250), + (227142, 311, -250), + (227142, 316, -250), + (227142, 317, -250), + (227142, 281, -250), + (227142, 282, -250), + (227144, 278, -411), + (227144, 280, -411), + (227144, 279, -411), + (227144, 311, -411), + (227144, 316, -411), + (227144, 317, -411), + (227144, 281, -411), + (227144, 282, -411), + (227146, 278, -294), + (227146, 280, -294), + (227146, 279, -294), + (227146, 311, -294), + (227146, 316, -294), + (227146, 317, -294), + (227146, 281, -294), + (227146, 282, -294), + (227148, 278, -589), + (227148, 280, -589), + (227148, 279, -589), + (227148, 311, -589), + (227148, 316, -589), + (227148, 317, -589), + (227148, 281, -589), + (227148, 282, -589), + (227150, 278, -51), + (227150, 280, -51), + (227150, 279, -51), + (227150, 311, -51), + (227150, 316, -51), + (227150, 317, -51), + (227150, 281, -51), + (227150, 282, -51), + (227456, 154, 3), + (227456, 153, 3), + (227456, 155, 3), + (227457, 154, 3), + (227457, 153, 3), + (227457, 155, 3), + (227458, 154, 6), + (227458, 153, 6), + (227458, 155, 6), + (227459, 154, 6), + (227459, 153, 6), + (227459, 155, 6), + (227460, 154, 9), + (227460, 153, 9), + (227460, 155, 9), + (227461, 154, 9), + (227461, 153, 9), + (227461, 155, 9), + (227462, 154, 12), + (227462, 153, 12), + (227462, 155, 12), + (227463, 154, 12), + (227463, 153, 12), + (227463, 155, 12), + (227464, 154, 15), + (227464, 153, 15), + (227464, 155, 15), + (227633, 93, 50), + (227633, 95, 50), + (227633, 92, 50), + (227633, 97, 50), + (227633, 91, 250), + (227633, 96, 50), + (227633, 90, 50), + (227633, 94, 50), + (227643, 221, 10), + (227643, 92, 10), + (227643, 94, 10), + (227654, 126, 80), + (227656, 157, 80), + (227658, 125, 80), + (227660, 159, 80), + (227662, 158, 80), + (227664, 126, 125), + (227666, 157, 125), + (227668, 125, 125), + (227670, 159, 125), + (227673, 158, 125), + (227675, 90, 1500), + (227675, 91, 1500), + (227675, 92, 1500), + (227675, 93, 1500), + (227675, 94, 1500), + (227675, 95, 1500), + (227675, 97, 1500), + (227675, 96, 1500), + (227677, 90, 2500), + (227677, 91, 2500), + (227677, 92, 2500), + (227677, 93, 2500), + (227677, 94, 2500), + (227677, 95, 2500), + (227677, 97, 2500), + (227677, 96, 2500), + (227679, 90, 3500), + (227679, 91, 3500), + (227679, 92, 3500), + (227679, 93, 3500), + (227679, 94, 3500), + (227679, 95, 3500), + (227679, 97, 3500), + (227679, 96, 3500), + (227681, 90, 5000), + (227681, 91, 5000), + (227681, 92, 5000), + (227681, 93, 5000), + (227681, 94, 5000), + (227681, 95, 5000), + (227681, 97, 5000), + (227681, 96, 5000), + (227769, 156, 361), + (227769, 168, 361), + (227769, 277, 361), + (227769, 391, 10), + (227769, 156, 150), + (227769, 168, 150), + (227769, 277, 150), + (227769, 391, 5), + (227771, 156, 1017), + (227771, 168, 1017), + (227771, 277, 1017), + (227771, 391, 30), + (227771, 156, 500), + (227771, 168, 500), + (227771, 277, 500), + (227771, 391, 15), + (227773, 156, 1229), + (227773, 168, 1229), + (227773, 277, 1229), + (227773, 391, 40), + (227773, 156, 650), + (227773, 168, 650), + (227773, 277, 650), + (227773, 391, 20), + (227775, 156, 1403), + (227775, 168, 1403), + (227775, 277, 1403), + (227775, 391, 50), + (227775, 156, 700), + (227775, 168, 700), + (227775, 277, 700), + (227775, 391, 25), + (227777, 156, 1681), + (227777, 168, 1681), + (227777, 277, 1681), + (227777, 391, 60), + (227777, 156, 800), + (227777, 168, 800), + (227777, 277, 800), + (227777, 391, 30), + (227779, 156, 839), + (227779, 168, 839), + (227779, 277, 839), + (227779, 391, 20), + (227779, 156, 400), + (227779, 168, 400), + (227779, 277, 400), + (227779, 391, 10), + (227906, 91, 775), + (227906, 90, 775), + (227906, 92, 775), + (227906, 97, 775), + (227906, 95, 775), + (227906, 94, 775), + (227906, 93, 775), + (227906, 96, 775), + (227906, 168, 24), + (227907, 91, 150), + (227907, 90, 150), + (227907, 92, 150), + (227907, 97, 150), + (227907, 95, 150), + (227907, 94, 150), + (227907, 93, 150), + (227907, 96, 150), + (227907, 168, 4), + (227908, 91, 675), + (227908, 90, 675), + (227908, 92, 675), + (227908, 97, 675), + (227908, 95, 675), + (227908, 94, 675), + (227908, 93, 675), + (227908, 96, 675), + (227908, 168, 16), + (227909, 91, 1100), + (227909, 90, 1100), + (227909, 92, 1100), + (227909, 97, 1100), + (227909, 95, 1100), + (227909, 94, 1100), + (227909, 93, 1100), + (227909, 96, 1100), + (227909, 168, 24), + (227910, 91, 200), + (227910, 90, 200), + (227910, 92, 200), + (227910, 97, 200), + (227910, 95, 200), + (227910, 94, 200), + (227910, 93, 200), + (227910, 96, 200), + (227910, 168, 4), + (228369, 152, 5), + (228371, 152, 10), + (228371, 143, 10), + (228372, 152, 10), + (228372, 143, 10), + (228373, 152, 25), + (228373, 143, 20), + (228373, 124, 10), + (229057, 124, 10), + (229057, 123, 10), + (229057, 181, 50), + (229057, 118, 40), + (229057, 119, 40), + (229057, 120, 40), + (229057, 149, 40), + (229058, 124, 8), + (229058, 123, 8), + (229058, 181, 35), + (229058, 118, 30), + (229058, 119, 30), + (229058, 120, 30), + (229058, 149, 30), + (229059, 124, 4), + (229059, 123, 4), + (229059, 181, 10), + (229059, 118, 15), + (229059, 119, 15), + (229059, 120, 15), + (229059, 149, 15), + (229060, 124, 14), + (229060, 123, 14), + (229060, 181, 64), + (229060, 118, 50), + (229060, 119, 50), + (229060, 120, 50), + (229060, 149, 50), + (229061, 124, 8), + (229061, 123, 8), + (229061, 181, 35), + (229061, 118, 30), + (229061, 119, 30), + (229061, 120, 30), + (229061, 149, 30), + (229062, 124, 4), + (229062, 123, 4), + (229062, 181, 10), + (229062, 118, 15), + (229062, 119, 15), + (229062, 120, 15), + (229062, 149, 15), + (229063, 124, 14), + (229063, 123, 14), + (229063, 181, 64), + (229063, 118, 50), + (229063, 119, 50), + (229063, 120, 50), + (229063, 149, 50), + (229064, 124, 10), + (229064, 123, 10), + (229064, 181, 50), + (229064, 118, 40), + (229064, 119, 40), + (229064, 120, 40), + (229064, 149, 40), + (229973, 1, 100), + (229990, 1, 100), + (230011, 168, 1), + (230011, 1, 20), + (230011, 221, 120), + (230026, 168, 1), + (230026, 1, 20), + (230026, 221, 120), + (230057, 1, 20), + (230057, 279, 11), + (230072, 1, 20), + (230072, 279, 11), + (230099, 1, 20), + (230099, 280, 11), + (230114, 1, 20), + (230114, 280, 11), + (230142, 1, 20), + (230142, 316, 11), + (230157, 1, 20), + (230157, 316, 11), + (230182, 1, 20), + (230182, 311, 11), + (230197, 1, 20), + (230197, 311, 11), + (230222, 1, 20), + (230222, 278, 11), + (230237, 1, 20), + (230237, 278, 11), + (230262, 1, 20), + (230262, 282, 11), + (230277, 1, 20), + (230277, 282, 11), + (230302, 1, 20), + (230302, 281, 11), + (230317, 1, 20), + (230317, 281, 11), + (230342, 1, 20), + (230342, 317, 11), + (230357, 1, 20), + (230357, 317, 11), + (230373, 276, 30), + (230373, 201, 10), + (230373, 1, 200), + (230373, 277, 48), + (230373, 279, 12), + (230373, 278, 12), + (230373, 280, 12), + (230373, 281, 12), + (230373, 282, 12), + (230373, 279, 12), + (230375, 276, 60), + (230375, 201, 12), + (230375, 1, 600), + (230375, 277, 90), + (230375, 279, 24), + (230375, 278, 24), + (230375, 280, 24), + (230375, 281, 24), + (230375, 282, 24), + (230375, 279, 24), + (230377, 276, 121), + (230377, 201, 14), + (230377, 1, 1200), + (230377, 277, 135), + (230377, 279, 30), + (230377, 278, 30), + (230377, 280, 30), + (230377, 281, 30), + (230377, 282, 30), + (230377, 279, 30), + (230379, 276, 156), + (230379, 201, 16), + (230379, 1, 1350), + (230379, 277, 144), + (230379, 279, 40), + (230379, 278, 40), + (230379, 280, 40), + (230379, 281, 40), + (230379, 282, 40), + (230379, 279, 40), + (230381, 276, 187), + (230381, 201, 19), + (230381, 1, 2500), + (230381, 277, 180), + (230381, 279, 60), + (230381, 278, 60), + (230381, 280, 60), + (230381, 281, 60), + (230381, 282, 60), + (230381, 279, 60), + (230383, 276, 223), + (230383, 201, 22), + (230383, 1, 3200), + (230383, 277, 220), + (230383, 279, 80), + (230383, 278, 80), + (230383, 280, 80), + (230383, 281, 80), + (230383, 282, 80), + (230383, 279, 80), + (230385, 276, 260), + (230385, 201, 25), + (230385, 1, 3800), + (230385, 277, 250), + (230385, 279, 90), + (230385, 278, 90), + (230385, 280, 90), + (230385, 281, 90), + (230385, 282, 90), + (230385, 279, 90), + (230387, 276, 298), + (230387, 201, 27), + (230387, 1, 5000), + (230387, 277, 300), + (230387, 279, 100), + (230387, 278, 100), + (230387, 280, 100), + (230387, 281, 100), + (230387, 282, 100), + (230387, 279, 100), + (230389, 276, 354), + (230389, 201, 30), + (230389, 1, 6200), + (230389, 277, 378), + (230389, 279, 110), + (230389, 278, 110), + (230389, 280, 110), + (230389, 281, 110), + (230389, 282, 110), + (230389, 279, 110), + (230446, 118, -420), + (230446, 120, -420), + (230446, 119, -420), + (230446, 149, -420), + (230448, 118, -560), + (230448, 120, -560), + (230448, 119, -560), + (230448, 149, -560), + (230460, 276, -130), + (230460, 156, -400), + (230462, 276, -330), + (230462, 156, -900), + (230464, 276, -490), + (230464, 156, -1400), + (230483, 155, 10), + (230483, 136, 10), + (230484, 155, 10), + (230484, 136, 10), + (230485, 155, 20), + (230485, 136, 20), + (230486, 155, 20), + (230486, 136, 20), + (230487, 155, 30), + (230487, 136, 30), + (230900, 532, 22), + (230901, 532, 23), + (230902, 532, 24), + (230903, 532, 4), + (230904, 532, 5), + (230905, 532, 6), + (230906, 532, 31), + (230907, 532, 32), + (230908, 532, 33), + (230909, 532, 13), + (230910, 532, 14), + (230911, 532, 15), + (231097, 155, 10), + (231098, 155, 10), + (231099, 155, 20), + (231100, 155, 20), + (231101, 155, 30), + (231102, 155, 30), + (231103, 154, 20), + (231103, 153, 20), + (231103, 155, 40), + (231118, 1, 50), + (231119, 1, 50), + (231120, 1, 75), + (231120, 156, 25), + (231121, 1, 75), + (231121, 156, 25), + (231122, 1, 100), + (231122, 96, 200), + (231122, 156, 50), + (231125, 1, 10), + (231126, 1, 10), + (231127, 1, 15), + (231128, 1, 15), + (231129, 1, 20), + (231130, 1, 20), + (231131, 1, 40), + (231132, 1, 40), + (231133, 1, 60), + (231134, 1, 60), + (231135, 1, 80), + (231136, 1, 80), + (231137, 1, 100), + (231138, 1, 100), + (231139, 277, 5), + (231139, 1, 200), + (231139, 91, 200), + (231206, 221, 10), + (231207, 221, 10), + (231208, 221, 15), + (231209, 221, 15), + (231210, 221, 20), + (231211, 221, 20), + (231212, 221, 40), + (231213, 221, 40), + (231214, 221, 60), + (231215, 221, 60), + (231216, 221, 80), + (231217, 221, 80), + (231218, 221, 100), + (231219, 221, 100), + (231220, 92, 320), + (231220, 221, 160), + (231220, 94, 320), + (231228, 206, 200), + (231228, 207, 200), + (231228, 205, 200), + (231228, 219, 200), + (231228, 208, 200), + (231228, 225, 200), + (231228, 216, 200), + (231229, 206, 200), + (231229, 207, 200), + (231229, 205, 200), + (231229, 217, 200), + (231229, 208, 200), + (231229, 225, 200), + (231229, 216, 200), + (231234, 156, 100), + (231234, 168, 500), + (231234, 168, 200), + (231235, 93, 115), + (231235, 95, 115), + (231235, 92, 225), + (231235, 97, 850), + (231235, 91, 375), + (231235, 96, 115), + (231235, 90, 115), + (231235, 94, 115), + (231264, 16, 40), + (231265, 16, 40), + (231266, 152, 10), + (231266, 16, 15), + (231267, 152, 10), + (231267, 16, 15), + (231268, 152, 20), + (231268, 94, 150), + (231268, 16, 20), + (231343, 156, 500), + (231343, 91, 5000), + (231343, 90, 5000), + (231343, 92, 5000), + (231343, 95, 5000), + (231343, 97, 5000), + (231343, 93, 5000), + (231343, 94, 5000), + (231343, 168, 5000), + (231343, 96, 5000), + (231343, 225, 1000), + (231343, 218, 1000), + (231343, 216, 1000), + (231343, 208, 1000), + (231343, 205, 1000), + (231343, 217, 1000), + (231343, 219, 1000), + (231343, 206, 1000), + (231343, 207, 1000), + (231343, 1, 100000), + (231343, 27, 100000), + (231343, 343, 100000), + (231343, 364, 100000), + (231353, 156, 500), + (231353, 91, 5000), + (231353, 90, 5000), + (231353, 92, 5000), + (231353, 95, 5000), + (231353, 97, 5000), + (231353, 93, 5000), + (231353, 94, 5000), + (231353, 168, 5000), + (231353, 96, 5000), + (231353, 225, 1000), + (231353, 218, 1000), + (231353, 216, 1000), + (231353, 208, 1000), + (231353, 217, 1000), + (231353, 219, 1000), + (231353, 206, 1000), + (231353, 205, 1000), + (231353, 207, 1000), + (231353, 1, 100000), + (231353, 27, 100000), + (231353, 343, 100000), + (231353, 364, 100000), + (233102, 96, 5), + (233191, 134, 30), + (233192, 134, 30), + (233193, 152, 30), + (233193, 134, 60), + (233193, 132, 30), + (233222, 134, 25), + (233223, 134, 25), + (233224, 152, 50), + (233224, 134, 50), + (233224, 132, 50), + (233227, 134, 25), + (233228, 134, 25), + (233229, 152, 50), + (233229, 134, 50), + (233229, 132, 50), + (233236, 1, 20), + (233237, 1, 20), + (233238, 1, 80), + (233239, 1, 80), + (233240, 1, 160), + (233241, 1, 160), + (233242, 1, 200), + (233242, 221, 200), + (233242, 181, 20), + (233244, 154, 20), + (233245, 154, 20), + (233246, 161, 20), + (233246, 154, 40), + (233247, 161, 20), + (233247, 154, 40), + (233248, 161, 40), + (233248, 154, 60), + (233248, 181, 20), + (233255, 127, 25), + (233255, 128, 25), + (233255, 129, 25), + (233255, 130, 25), + (233255, 131, 25), + (233255, 122, 25), + (233255, 148, -2000), + (233255, 150, -2000), + (233255, 151, -2000), + (233255, 167, -2000), + (233255, 111, -2000), + (233255, 114, -2000), + (233255, 115, -2000), + (233255, 133, -2000), + (233255, 109, -2000), + (233255, 110, -2000), + (233255, 116, -2000), + (233255, 113, -2000), + (233255, 112, -2000), + (233256, 127, 25), + (233256, 128, 25), + (233256, 129, 25), + (233256, 130, 25), + (233256, 131, 25), + (233256, 122, 25), + (233256, 148, -2000), + (233256, 150, -2000), + (233256, 151, -2000), + (233256, 167, -2000), + (233256, 111, -2000), + (233256, 114, -2000), + (233256, 115, -2000), + (233256, 133, -2000), + (233256, 109, -2000), + (233256, 110, -2000), + (233256, 116, -2000), + (233256, 113, -2000), + (233256, 112, -2000), + (233257, 127, 25), + (233257, 128, 25), + (233257, 129, 25), + (233257, 130, 25), + (233257, 131, 25), + (233257, 122, 25), + (233257, 148, -2000), + (233257, 150, -2000), + (233257, 151, -2000), + (233257, 167, -2000), + (233257, 111, -2000), + (233257, 114, -2000), + (233257, 115, -2000), + (233257, 133, -2000), + (233257, 109, -2000), + (233257, 110, -2000), + (233257, 116, -2000), + (233257, 113, -2000), + (233257, 112, -2000), + (233258, 127, 25), + (233258, 128, 25), + (233258, 129, 25), + (233258, 130, 25), + (233258, 131, 25), + (233258, 122, 25), + (233258, 148, -2000), + (233258, 150, -2000), + (233258, 151, -2000), + (233258, 167, -2000), + (233258, 111, -2000), + (233258, 114, -2000), + (233258, 115, -2000), + (233258, 133, -2000), + (233258, 109, -2000), + (233258, 110, -2000), + (233258, 116, -2000), + (233258, 113, -2000), + (233258, 112, -2000), + (233259, 127, 25), + (233259, 128, 25), + (233259, 129, 25), + (233259, 130, 25), + (233259, 131, 25), + (233259, 122, 25), + (233259, 148, -2000), + (233259, 150, -2000), + (233259, 151, -2000), + (233259, 167, -2000), + (233259, 111, -2000), + (233259, 114, -2000), + (233259, 115, -2000), + (233259, 133, -2000), + (233259, 109, -2000), + (233259, 110, -2000), + (233259, 116, -2000), + (233259, 113, -2000), + (233259, 112, -2000), + (233260, 127, 25), + (233260, 128, 25), + (233260, 129, 25), + (233260, 130, 25), + (233260, 131, 25), + (233260, 122, 25), + (233260, 148, -2000), + (233260, 150, -2000), + (233260, 151, -2000), + (233260, 167, -2000), + (233260, 111, -2000), + (233260, 114, -2000), + (233260, 115, -2000), + (233260, 133, -2000), + (233260, 109, -2000), + (233260, 110, -2000), + (233260, 116, -2000), + (233260, 113, -2000), + (233260, 112, -2000), + (233261, 127, 25), + (233261, 128, 25), + (233261, 129, 25), + (233261, 130, 25), + (233261, 131, 25), + (233261, 122, 25), + (233261, 148, -2000), + (233261, 150, -2000), + (233261, 151, -2000), + (233261, 167, -2000), + (233261, 111, -2000), + (233261, 114, -2000), + (233261, 115, -2000), + (233261, 133, -2000), + (233261, 109, -2000), + (233261, 110, -2000), + (233261, 116, -2000), + (233261, 113, -2000), + (233261, 112, -2000), + (233262, 127, 25), + (233262, 128, 25), + (233262, 129, 25), + (233262, 130, 25), + (233262, 131, 25), + (233262, 122, 25), + (233262, 148, -2000), + (233262, 150, -2000), + (233262, 151, -2000), + (233262, 167, -2000), + (233262, 111, -2000), + (233262, 114, -2000), + (233262, 115, -2000), + (233262, 133, -2000), + (233262, 109, -2000), + (233262, 110, -2000), + (233262, 116, -2000), + (233262, 113, -2000), + (233262, 112, -2000), + (233263, 127, 25), + (233263, 128, 25), + (233263, 129, 25), + (233263, 130, 25), + (233263, 131, 25), + (233263, 122, 25), + (233263, 148, -2000), + (233263, 150, -2000), + (233263, 151, -2000), + (233263, 167, -2000), + (233263, 111, -2000), + (233263, 114, -2000), + (233263, 115, -2000), + (233263, 133, -2000), + (233263, 109, -2000), + (233263, 110, -2000), + (233263, 116, -2000), + (233263, 113, -2000), + (233263, 112, -2000), + (233264, 127, 25), + (233264, 128, 25), + (233264, 129, 25), + (233264, 130, 25), + (233264, 131, 25), + (233264, 122, 25), + (233264, 148, -2000), + (233264, 150, -2000), + (233264, 151, -2000), + (233264, 167, -2000), + (233264, 111, -2000), + (233264, 114, -2000), + (233264, 115, -2000), + (233264, 133, -2000), + (233264, 109, -2000), + (233264, 110, -2000), + (233264, 116, -2000), + (233264, 113, -2000), + (233264, 112, -2000), + (233265, 127, 50), + (233265, 128, 50), + (233265, 129, 50), + (233265, 130, 50), + (233265, 131, 50), + (233265, 122, 50), + (233265, 148, -2000), + (233265, 150, -2000), + (233265, 151, -2000), + (233265, 167, -2000), + (233265, 111, -2000), + (233265, 114, -2000), + (233265, 115, -2000), + (233265, 133, -2000), + (233265, 109, -2000), + (233265, 110, -2000), + (233265, 116, -2000), + (233265, 113, -2000), + (233265, 112, -2000), + (233266, 127, 50), + (233266, 128, 50), + (233266, 129, 50), + (233266, 130, 50), + (233266, 131, 50), + (233266, 122, 50), + (233266, 148, -2000), + (233266, 150, -2000), + (233266, 151, -2000), + (233266, 167, -2000), + (233266, 111, -2000), + (233266, 114, -2000), + (233266, 115, -2000), + (233266, 133, -2000), + (233266, 109, -2000), + (233266, 110, -2000), + (233266, 116, -2000), + (233266, 113, -2000), + (233266, 112, -2000), + (233267, 127, 25), + (233267, 128, 25), + (233267, 129, 25), + (233267, 130, 25), + (233267, 131, 25), + (233267, 122, 25), + (233267, 148, -2000), + (233267, 150, -2000), + (233267, 151, -2000), + (233267, 167, -2000), + (233267, 111, -2000), + (233267, 114, -2000), + (233267, 115, -2000), + (233267, 133, -2000), + (233267, 109, -2000), + (233267, 110, -2000), + (233267, 116, -2000), + (233267, 113, -2000), + (233267, 112, -2000), + (233268, 127, 25), + (233268, 128, 25), + (233268, 129, 25), + (233268, 130, 25), + (233268, 131, 25), + (233268, 122, 25), + (233268, 148, -2000), + (233268, 150, -2000), + (233268, 151, -2000), + (233268, 167, -2000), + (233268, 111, -2000), + (233268, 114, -2000), + (233268, 115, -2000), + (233268, 133, -2000), + (233268, 109, -2000), + (233268, 110, -2000), + (233268, 116, -2000), + (233268, 113, -2000), + (233268, 112, -2000), + (233269, 127, 25), + (233269, 128, 25), + (233269, 129, 25), + (233269, 130, 25), + (233269, 131, 25), + (233269, 122, 25), + (233269, 148, -2000), + (233269, 150, -2000), + (233269, 151, -2000), + (233269, 167, -2000), + (233269, 111, -2000), + (233269, 114, -2000), + (233269, 115, -2000), + (233269, 133, -2000), + (233269, 109, -2000), + (233269, 110, -2000), + (233269, 116, -2000), + (233269, 113, -2000), + (233269, 112, -2000), + (233270, 127, 25), + (233270, 128, 25), + (233270, 129, 25), + (233270, 130, 25), + (233270, 131, 25), + (233270, 122, 25), + (233270, 148, -2000), + (233270, 150, -2000), + (233270, 151, -2000), + (233270, 167, -2000), + (233270, 111, -2000), + (233270, 114, -2000), + (233270, 115, -2000), + (233270, 133, -2000), + (233270, 109, -2000), + (233270, 110, -2000), + (233270, 116, -2000), + (233270, 113, -2000), + (233270, 112, -2000), + (233273, 153, 5), + (233274, 153, 5), + (233275, 153, 10), + (233276, 153, 10), + (233277, 153, 15), + (233278, 153, 15), + (233279, 153, 20), + (233280, 153, 20), + (233281, 153, 30), + (233282, 153, 30), + (233283, 154, 40), + (233283, 153, 40), + (233284, 154, 40), + (233284, 153, 40), + (233285, 154, 50), + (233285, 153, 50), + (233285, 155, 50), + (233288, 153, 5), + (233289, 153, 5), + (233290, 153, 10), + (233291, 153, 10), + (233292, 153, 15), + (233293, 153, 15), + (233294, 153, 20), + (233295, 153, 20), + (233296, 153, 30), + (233297, 153, 30), + (233298, 154, 40), + (233298, 153, 40), + (233299, 154, 40), + (233299, 153, 40), + (233300, 154, 50), + (233300, 153, 50), + (233300, 155, 50), + (233303, 153, 5), + (233304, 153, 5), + (233305, 153, 10), + (233306, 153, 10), + (233307, 153, 15), + (233308, 153, 15), + (233309, 153, 20), + (233310, 153, 20), + (233311, 153, 30), + (233312, 153, 30), + (233313, 154, 40), + (233313, 153, 40), + (233314, 154, 40), + (233314, 153, 40), + (233315, 154, 50), + (233315, 153, 50), + (233315, 155, 50), + (233318, 161, 40), + (233321, 166, 60), + (233321, 19, 20), + (233321, 18, 20), + (233324, 154, 30), + (233324, 20, 15), + (233331, 162, 10), + (233332, 162, 10), + (233333, 162, 30), + (233334, 162, 30), + (233335, 152, 30), + (233335, 162, 50), + (233336, 152, 30), + (233336, 162, 50), + (233337, 152, 50), + (233337, 155, 30), + (233337, 162, 70), + (233344, 153, 30), + (233345, 153, 30), + (233346, 276, 30), + (233346, 153, 60), + (233351, 93, 300), + (233351, 97, 300), + (233351, 90, 300), + (233359, 95, 300), + (233359, 96, 300), + (233359, 90, 300), + (233405, 160, 10), + (233405, 161, 10), + (233405, 126, 10), + (233405, 165, 10), + (233405, 135, 10), + (233405, 104, 10), + (233405, 133, 10), + (233406, 124, 6), + (233406, 123, 6), + (233406, 181, 20), + (233406, 118, 20), + (233406, 119, 20), + (233406, 120, 20), + (233406, 149, 20), + (233407, 124, 6), + (233407, 123, 6), + (233407, 181, 20), + (233407, 118, 20), + (233407, 119, 20), + (233407, 120, 20), + (233407, 149, 20), + (233418, 93, 200), + (233418, 95, 400), + (233418, 92, 400), + (233418, 97, 400), + (233418, 91, 500), + (233418, 96, 400), + (233418, 90, 400), + (233418, 94, 400), + (233418, 118, 40), + (233418, 155, 40), + (233418, 1, 100), + (233420, 1, 25), + (233421, 1, 25), + (233422, 1, 50), + (233423, 1, 50), + (233424, 1, 75), + (233424, 91, 50), + (233425, 1, 75), + (233425, 91, 50), + (233426, 1, 100), + (233426, 91, 150), + (233426, 94, 75), + (233427, 90, 700), + (233427, 94, 300), + (233427, 96, 675), + (233427, 93, 675), + (233427, 97, 675), + (233427, 95, 675), + (233427, 91, 700), + (233427, 92, 675), + (233427, 1, 200), + (233427, 164, 20), + (233427, 136, 20), + (233427, 123, 20), + (233428, 127, 50), + (233428, 128, 50), + (233428, 129, 50), + (233428, 130, 50), + (233428, 131, 50), + (233428, 122, 50), + (233428, 148, -2000), + (233428, 150, -2000), + (233428, 151, -2000), + (233428, 167, -2000), + (233428, 111, -2000), + (233428, 114, -2000), + (233428, 115, -2000), + (233428, 133, -2000), + (233428, 109, -2000), + (233428, 110, -2000), + (233428, 116, -2000), + (233428, 113, -2000), + (233428, 112, -2000), + (233429, 127, 50), + (233429, 128, 50), + (233429, 129, 50), + (233429, 130, 50), + (233429, 131, 50), + (233429, 122, 50), + (233429, 148, -2000), + (233429, 150, -2000), + (233429, 151, -2000), + (233429, 167, -2000), + (233429, 111, -2000), + (233429, 114, -2000), + (233429, 115, -2000), + (233429, 133, -2000), + (233429, 109, -2000), + (233429, 110, -2000), + (233429, 116, -2000), + (233429, 113, -2000), + (233429, 112, -2000), + (233430, 127, 50), + (233430, 128, 50), + (233430, 129, 50), + (233430, 130, 50), + (233430, 131, 50), + (233430, 122, 50), + (233430, 148, -2000), + (233430, 150, -2000), + (233430, 151, -2000), + (233430, 167, -2000), + (233430, 111, -2000), + (233430, 114, -2000), + (233430, 115, -2000), + (233430, 133, -2000), + (233430, 109, -2000), + (233430, 110, -2000), + (233430, 116, -2000), + (233430, 113, -2000), + (233430, 112, -2000), + (233431, 127, 50), + (233431, 128, 50), + (233431, 129, 50), + (233431, 130, 50), + (233431, 131, 50), + (233431, 122, 50), + (233431, 148, -2000), + (233431, 150, -2000), + (233431, 151, -2000), + (233431, 167, -2000), + (233431, 111, -2000), + (233431, 114, -2000), + (233431, 115, -2000), + (233431, 133, -2000), + (233431, 109, -2000), + (233431, 110, -2000), + (233431, 116, -2000), + (233431, 113, -2000), + (233431, 112, -2000), + (233432, 127, 50), + (233432, 128, 50), + (233432, 129, 50), + (233432, 130, 50), + (233432, 131, 50), + (233432, 122, 50), + (233432, 148, -2000), + (233432, 150, -2000), + (233432, 151, -2000), + (233432, 167, -2000), + (233432, 111, -2000), + (233432, 114, -2000), + (233432, 115, -2000), + (233432, 133, -2000), + (233432, 109, -2000), + (233432, 110, -2000), + (233432, 116, -2000), + (233432, 113, -2000), + (233432, 112, -2000), + (233433, 127, 50), + (233433, 128, 50), + (233433, 129, 50), + (233433, 130, 50), + (233433, 131, 50), + (233433, 122, 50), + (233433, 148, -2000), + (233433, 150, -2000), + (233433, 151, -2000), + (233433, 167, -2000), + (233433, 111, -2000), + (233433, 114, -2000), + (233433, 115, -2000), + (233433, 133, -2000), + (233433, 109, -2000), + (233433, 110, -2000), + (233433, 116, -2000), + (233433, 113, -2000), + (233433, 112, -2000), + (233434, 127, 50), + (233434, 128, 50), + (233434, 129, 50), + (233434, 130, 50), + (233434, 131, 50), + (233434, 122, 50), + (233434, 148, -2000), + (233434, 150, -2000), + (233434, 151, -2000), + (233434, 167, -2000), + (233434, 111, -2000), + (233434, 114, -2000), + (233434, 115, -2000), + (233434, 133, -2000), + (233434, 109, -2000), + (233434, 110, -2000), + (233434, 116, -2000), + (233434, 113, -2000), + (233434, 112, -2000), + (233435, 127, 50), + (233435, 128, 50), + (233435, 129, 50), + (233435, 130, 50), + (233435, 131, 50), + (233435, 122, 50), + (233435, 148, -2000), + (233435, 150, -2000), + (233435, 151, -2000), + (233435, 167, -2000), + (233435, 111, -2000), + (233435, 114, -2000), + (233435, 115, -2000), + (233435, 133, -2000), + (233435, 109, -2000), + (233435, 110, -2000), + (233435, 116, -2000), + (233435, 113, -2000), + (233435, 112, -2000), + (233436, 127, 50), + (233436, 128, 50), + (233436, 129, 50), + (233436, 130, 50), + (233436, 131, 50), + (233436, 122, 50), + (233436, 148, -2000), + (233436, 150, -2000), + (233436, 151, -2000), + (233436, 167, -2000), + (233436, 111, -2000), + (233436, 114, -2000), + (233436, 115, -2000), + (233436, 133, -2000), + (233436, 109, -2000), + (233436, 110, -2000), + (233436, 116, -2000), + (233436, 113, -2000), + (233436, 112, -2000), + (233437, 127, 50), + (233437, 128, 50), + (233437, 129, 50), + (233437, 130, 50), + (233437, 131, 50), + (233437, 122, 50), + (233437, 148, -2000), + (233437, 150, -2000), + (233437, 151, -2000), + (233437, 167, -2000), + (233437, 111, -2000), + (233437, 114, -2000), + (233437, 115, -2000), + (233437, 133, -2000), + (233437, 109, -2000), + (233437, 110, -2000), + (233437, 116, -2000), + (233437, 113, -2000), + (233437, 112, -2000), + (233438, 127, 50), + (233438, 128, 50), + (233438, 129, 50), + (233438, 130, 50), + (233438, 131, 50), + (233438, 122, 50), + (233438, 148, -2000), + (233438, 150, -2000), + (233438, 151, -2000), + (233438, 167, -2000), + (233438, 111, -2000), + (233438, 114, -2000), + (233438, 115, -2000), + (233438, 133, -2000), + (233438, 109, -2000), + (233438, 110, -2000), + (233438, 116, -2000), + (233438, 113, -2000), + (233438, 112, -2000), + (233439, 127, 50), + (233439, 128, 50), + (233439, 129, 50), + (233439, 130, 50), + (233439, 131, 50), + (233439, 122, 50), + (233439, 148, -2000), + (233439, 150, -2000), + (233439, 151, -2000), + (233439, 167, -2000), + (233439, 111, -2000), + (233439, 114, -2000), + (233439, 115, -2000), + (233439, 133, -2000), + (233439, 109, -2000), + (233439, 110, -2000), + (233439, 116, -2000), + (233439, 113, -2000), + (233439, 112, -2000), + (233440, 127, 75), + (233440, 128, 75), + (233440, 129, 75), + (233440, 130, 75), + (233440, 131, 75), + (233440, 122, 75), + (233440, 148, -2000), + (233440, 150, -2000), + (233440, 151, -2000), + (233440, 167, -2000), + (233440, 111, -2000), + (233440, 114, -2000), + (233440, 115, -2000), + (233440, 133, -2000), + (233440, 109, -2000), + (233440, 110, -2000), + (233440, 116, -2000), + (233440, 113, -2000), + (233440, 112, -2000), + (233441, 127, 75), + (233441, 128, 75), + (233441, 129, 75), + (233441, 130, 75), + (233441, 131, 75), + (233441, 122, 75), + (233441, 148, -2000), + (233441, 150, -2000), + (233441, 151, -2000), + (233441, 167, -2000), + (233441, 111, -2000), + (233441, 114, -2000), + (233441, 115, -2000), + (233441, 133, -2000), + (233441, 109, -2000), + (233441, 110, -2000), + (233441, 116, -2000), + (233441, 113, -2000), + (233441, 112, -2000), + (233442, 127, 75), + (233442, 128, 75), + (233442, 129, 75), + (233442, 130, 75), + (233442, 131, 75), + (233442, 122, 75), + (233442, 148, -2000), + (233442, 150, -2000), + (233442, 151, -2000), + (233442, 167, -2000), + (233442, 111, -2000), + (233442, 114, -2000), + (233442, 115, -2000), + (233442, 133, -2000), + (233442, 109, -2000), + (233442, 110, -2000), + (233442, 116, -2000), + (233442, 113, -2000), + (233442, 112, -2000), + (233443, 127, 75), + (233443, 128, 75), + (233443, 129, 75), + (233443, 130, 75), + (233443, 131, 75), + (233443, 122, 75), + (233443, 148, -2000), + (233443, 150, -2000), + (233443, 151, -2000), + (233443, 167, -2000), + (233443, 111, -2000), + (233443, 114, -2000), + (233443, 115, -2000), + (233443, 133, -2000), + (233443, 109, -2000), + (233443, 110, -2000), + (233443, 116, -2000), + (233443, 113, -2000), + (233443, 112, -2000), + (233444, 127, 75), + (233444, 128, 75), + (233444, 129, 75), + (233444, 130, 75), + (233444, 131, 75), + (233444, 122, 75), + (233444, 148, -2000), + (233444, 150, -2000), + (233444, 151, -2000), + (233444, 167, -2000), + (233444, 111, -2000), + (233444, 114, -2000), + (233444, 115, -2000), + (233444, 133, -2000), + (233444, 109, -2000), + (233444, 110, -2000), + (233444, 116, -2000), + (233444, 113, -2000), + (233444, 112, -2000), + (233445, 127, 75), + (233445, 128, 75), + (233445, 129, 75), + (233445, 130, 75), + (233445, 131, 75), + (233445, 122, 75), + (233445, 148, -2000), + (233445, 150, -2000), + (233445, 151, -2000), + (233445, 167, -2000), + (233445, 111, -2000), + (233445, 114, -2000), + (233445, 115, -2000), + (233445, 133, -2000), + (233445, 109, -2000), + (233445, 110, -2000), + (233445, 116, -2000), + (233445, 113, -2000), + (233445, 112, -2000), + (233446, 127, 75), + (233446, 128, 75), + (233446, 129, 75), + (233446, 130, 75), + (233446, 131, 75), + (233446, 122, 75), + (233446, 148, -2000), + (233446, 150, -2000), + (233446, 151, -2000), + (233446, 167, -2000), + (233446, 111, -2000), + (233446, 114, -2000), + (233446, 115, -2000), + (233446, 133, -2000), + (233446, 109, -2000), + (233446, 110, -2000), + (233446, 116, -2000), + (233446, 113, -2000), + (233446, 112, -2000), + (233447, 127, 75), + (233447, 128, 75), + (233447, 129, 75), + (233447, 130, 75), + (233447, 131, 75), + (233447, 122, 75), + (233447, 148, -2000), + (233447, 150, -2000), + (233447, 151, -2000), + (233447, 167, -2000), + (233447, 111, -2000), + (233447, 114, -2000), + (233447, 115, -2000), + (233447, 133, -2000), + (233447, 109, -2000), + (233447, 110, -2000), + (233447, 116, -2000), + (233447, 113, -2000), + (233447, 112, -2000), + (233448, 127, 75), + (233448, 128, 75), + (233448, 129, 75), + (233448, 130, 75), + (233448, 131, 75), + (233448, 122, 75), + (233448, 148, -2000), + (233448, 150, -2000), + (233448, 151, -2000), + (233448, 167, -2000), + (233448, 111, -2000), + (233448, 114, -2000), + (233448, 115, -2000), + (233448, 133, -2000), + (233448, 109, -2000), + (233448, 110, -2000), + (233448, 116, -2000), + (233448, 113, -2000), + (233448, 112, -2000), + (233449, 127, 75), + (233449, 128, 75), + (233449, 129, 75), + (233449, 130, 75), + (233449, 131, 75), + (233449, 122, 75), + (233449, 148, -2000), + (233449, 150, -2000), + (233449, 151, -2000), + (233449, 167, -2000), + (233449, 111, -2000), + (233449, 114, -2000), + (233449, 115, -2000), + (233449, 133, -2000), + (233449, 109, -2000), + (233449, 110, -2000), + (233449, 116, -2000), + (233449, 113, -2000), + (233449, 112, -2000), + (233450, 127, 75), + (233450, 128, 75), + (233450, 129, 75), + (233450, 130, 75), + (233450, 131, 75), + (233450, 122, 75), + (233450, 151, -2000), + (233450, 167, -2000), + (233450, 148, -2000), + (233450, 150, -2000), + (233450, 114, -2000), + (233450, 115, -2000), + (233450, 111, -2000), + (233450, 133, -2000), + (233450, 109, -2000), + (233450, 110, -2000), + (233450, 116, -2000), + (233450, 113, -2000), + (233450, 112, -2000), + (233451, 127, 75), + (233451, 128, 75), + (233451, 129, 75), + (233451, 130, 75), + (233451, 131, 75), + (233451, 122, 75), + (233451, 151, -2000), + (233451, 167, -2000), + (233451, 148, -2000), + (233451, 150, -2000), + (233451, 114, -2000), + (233451, 115, -2000), + (233451, 111, -2000), + (233451, 133, -2000), + (233451, 109, -2000), + (233451, 110, -2000), + (233451, 116, -2000), + (233451, 113, -2000), + (233451, 112, -2000), + (233452, 127, 75), + (233452, 128, 75), + (233452, 129, 75), + (233452, 130, 75), + (233452, 131, 75), + (233452, 122, 75), + (233452, 151, -2000), + (233452, 167, -2000), + (233452, 148, -2000), + (233452, 150, -2000), + (233452, 114, -2000), + (233452, 115, -2000), + (233452, 111, -2000), + (233452, 133, -2000), + (233452, 109, -2000), + (233452, 110, -2000), + (233452, 116, -2000), + (233452, 113, -2000), + (233452, 112, -2000), + (233453, 127, 75), + (233453, 128, 75), + (233453, 129, 75), + (233453, 130, 75), + (233453, 131, 75), + (233453, 122, 75), + (233453, 151, -2000), + (233453, 167, -2000), + (233453, 148, -2000), + (233453, 150, -2000), + (233453, 114, -2000), + (233453, 115, -2000), + (233453, 111, -2000), + (233453, 133, -2000), + (233453, 109, -2000), + (233453, 110, -2000), + (233453, 116, -2000), + (233453, 113, -2000), + (233453, 112, -2000), + (233454, 127, 100), + (233454, 128, 100), + (233454, 129, 100), + (233454, 130, 100), + (233454, 131, 100), + (233454, 122, 100), + (233454, 536, 3), + (233454, 151, -2000), + (233454, 167, -2000), + (233454, 148, -2000), + (233454, 150, -2000), + (233454, 114, -2000), + (233454, 115, -2000), + (233454, 111, -2000), + (233454, 133, -2000), + (233454, 109, -2000), + (233454, 110, -2000), + (233454, 116, -2000), + (233454, 113, -2000), + (233454, 112, -2000), + (233455, 127, 100), + (233455, 128, 100), + (233455, 129, 100), + (233455, 130, 100), + (233455, 131, 100), + (233455, 122, 100), + (233455, 536, 3), + (233455, 151, -2000), + (233455, 167, -2000), + (233455, 148, -2000), + (233455, 150, -2000), + (233455, 114, -2000), + (233455, 115, -2000), + (233455, 111, -2000), + (233455, 133, -2000), + (233455, 109, -2000), + (233455, 110, -2000), + (233455, 116, -2000), + (233455, 113, -2000), + (233455, 112, -2000), + (233456, 127, 100), + (233456, 128, 100), + (233456, 129, 100), + (233456, 130, 100), + (233456, 131, 100), + (233456, 122, 100), + (233456, 536, 3), + (233456, 151, -2000), + (233456, 167, -2000), + (233456, 148, -2000), + (233456, 150, -2000), + (233456, 114, -2000), + (233456, 115, -2000), + (233456, 111, -2000), + (233456, 133, -2000), + (233456, 109, -2000), + (233456, 110, -2000), + (233456, 116, -2000), + (233456, 113, -2000), + (233456, 112, -2000), + (233457, 127, 100), + (233457, 128, 100), + (233457, 129, 100), + (233457, 130, 100), + (233457, 131, 100), + (233457, 122, 100), + (233457, 536, 3), + (233457, 151, -2000), + (233457, 167, -2000), + (233457, 148, -2000), + (233457, 150, -2000), + (233457, 114, -2000), + (233457, 115, -2000), + (233457, 111, -2000), + (233457, 133, -2000), + (233457, 109, -2000), + (233457, 110, -2000), + (233457, 116, -2000), + (233457, 113, -2000), + (233457, 112, -2000), + (233458, 127, 100), + (233458, 128, 100), + (233458, 129, 100), + (233458, 130, 100), + (233458, 131, 100), + (233458, 122, 100), + (233458, 536, 3), + (233458, 151, -2000), + (233458, 167, -2000), + (233458, 148, -2000), + (233458, 150, -2000), + (233458, 114, -2000), + (233458, 115, -2000), + (233458, 111, -2000), + (233458, 133, -2000), + (233458, 109, -2000), + (233458, 110, -2000), + (233458, 116, -2000), + (233458, 113, -2000), + (233458, 112, -2000), + (233459, 127, 100), + (233459, 128, 100), + (233459, 129, 100), + (233459, 130, 100), + (233459, 131, 100), + (233459, 122, 100), + (233459, 536, 3), + (233459, 151, -2000), + (233459, 167, -2000), + (233459, 148, -2000), + (233459, 150, -2000), + (233459, 114, -2000), + (233459, 115, -2000), + (233459, 111, -2000), + (233459, 133, -2000), + (233459, 109, -2000), + (233459, 110, -2000), + (233459, 116, -2000), + (233459, 113, -2000), + (233459, 112, -2000), + (233460, 127, 100), + (233460, 128, 100), + (233460, 129, 100), + (233460, 130, 100), + (233460, 131, 100), + (233460, 122, 100), + (233460, 536, 3), + (233460, 151, -2000), + (233460, 167, -2000), + (233460, 148, -2000), + (233460, 150, -2000), + (233460, 114, -2000), + (233460, 115, -2000), + (233460, 111, -2000), + (233460, 133, -2000), + (233460, 109, -2000), + (233460, 110, -2000), + (233460, 116, -2000), + (233460, 113, -2000), + (233460, 112, -2000), + (233461, 127, 100), + (233461, 128, 100), + (233461, 129, 100), + (233461, 130, 100), + (233461, 131, 100), + (233461, 122, 100), + (233461, 536, 3), + (233461, 151, -2000), + (233461, 167, -2000), + (233461, 148, -2000), + (233461, 150, -2000), + (233461, 114, -2000), + (233461, 115, -2000), + (233461, 111, -2000), + (233461, 133, -2000), + (233461, 109, -2000), + (233461, 110, -2000), + (233461, 116, -2000), + (233461, 113, -2000), + (233461, 112, -2000), + (233462, 127, 100), + (233462, 128, 100), + (233462, 129, 100), + (233462, 130, 100), + (233462, 131, 100), + (233462, 122, 100), + (233462, 536, 3), + (233462, 151, -2000), + (233462, 167, -2000), + (233462, 148, -2000), + (233462, 150, -2000), + (233462, 114, -2000), + (233462, 115, -2000), + (233462, 111, -2000), + (233462, 133, -2000), + (233462, 109, -2000), + (233462, 110, -2000), + (233462, 116, -2000), + (233462, 113, -2000), + (233462, 112, -2000), + (233463, 127, 100), + (233463, 128, 100), + (233463, 129, 100), + (233463, 130, 100), + (233463, 131, 100), + (233463, 122, 100), + (233463, 536, 3), + (233463, 151, -2000), + (233463, 167, -2000), + (233463, 148, -2000), + (233463, 150, -2000), + (233463, 114, -2000), + (233463, 115, -2000), + (233463, 111, -2000), + (233463, 133, -2000), + (233463, 109, -2000), + (233463, 110, -2000), + (233463, 116, -2000), + (233463, 113, -2000), + (233463, 112, -2000), + (233464, 127, 100), + (233464, 128, 100), + (233464, 129, 100), + (233464, 130, 100), + (233464, 131, 100), + (233464, 122, 100), + (233464, 536, 3), + (233464, 151, -2000), + (233464, 167, -2000), + (233464, 148, -2000), + (233464, 150, -2000), + (233464, 114, -2000), + (233464, 115, -2000), + (233464, 111, -2000), + (233464, 133, -2000), + (233464, 109, -2000), + (233464, 110, -2000), + (233464, 116, -2000), + (233464, 113, -2000), + (233464, 112, -2000), + (233465, 127, 100), + (233465, 128, 100), + (233465, 129, 100), + (233465, 130, 100), + (233465, 131, 100), + (233465, 122, 100), + (233465, 536, 3), + (233465, 151, -2000), + (233465, 167, -2000), + (233465, 148, -2000), + (233465, 150, -2000), + (233465, 114, -2000), + (233465, 115, -2000), + (233465, 111, -2000), + (233465, 133, -2000), + (233465, 109, -2000), + (233465, 110, -2000), + (233465, 116, -2000), + (233465, 113, -2000), + (233465, 112, -2000), + (233466, 127, 100), + (233466, 128, 100), + (233466, 129, 100), + (233466, 130, 100), + (233466, 131, 100), + (233466, 122, 100), + (233466, 536, 3), + (233466, 151, -2000), + (233466, 167, -2000), + (233466, 148, -2000), + (233466, 150, -2000), + (233466, 114, -2000), + (233466, 115, -2000), + (233466, 111, -2000), + (233466, 133, -2000), + (233466, 109, -2000), + (233466, 110, -2000), + (233466, 116, -2000), + (233466, 113, -2000), + (233466, 112, -2000), + (233467, 127, 100), + (233467, 128, 100), + (233467, 129, 100), + (233467, 130, 100), + (233467, 131, 100), + (233467, 122, 100), + (233467, 536, 3), + (233467, 151, -2000), + (233467, 167, -2000), + (233467, 148, -2000), + (233467, 150, -2000), + (233467, 114, -2000), + (233467, 115, -2000), + (233467, 111, -2000), + (233467, 133, -2000), + (233467, 109, -2000), + (233467, 110, -2000), + (233467, 116, -2000), + (233467, 113, -2000), + (233467, 112, -2000), + (233468, 93, 80), + (233468, 95, 80), + (233468, 92, 80), + (233468, 97, 80), + (233468, 91, 80), + (233468, 96, 80), + (233468, 90, 80), + (233468, 94, 80), + (233468, 130, 8), + (233468, 160, 8), + (233468, 168, 8), + (233468, 161, 8), + (233469, 93, 200), + (233469, 95, 200), + (233469, 92, 200), + (233469, 97, 200), + (233469, 91, 200), + (233469, 96, 200), + (233469, 90, 200), + (233469, 94, 200), + (233469, 106, 7), + (233469, 20, 7), + (233469, 123, 7), + (233469, 1, 75), + (233470, 93, 450), + (233470, 95, 750), + (233470, 92, 450), + (233470, 97, 450), + (233470, 91, 450), + (233470, 96, 450), + (233470, 90, 450), + (233470, 94, 450), + (233470, 168, 10), + (233470, 152, 10), + (233792, 17, 1), + (233792, 19, 1), + (233792, 221, 4), + (233793, 17, 1), + (233793, 19, 1), + (233793, 221, 4), + (233794, 17, 2), + (233794, 19, 2), + (233794, 221, 12), + (233795, 17, 2), + (233795, 19, 2), + (233795, 221, 12), + (233796, 1, 80), + (233796, 20, 6), + (233796, 16, 6), + (233797, 1, 80), + (233797, 20, 6), + (233797, 16, 6), + (233798, 153, 30), + (233798, 155, 20), + (233798, 18, 10), + (233799, 97, 20), + (233799, 19, 2), + (233799, 156, 5), + (233800, 97, 20), + (233800, 19, 2), + (233800, 156, 5), + (233801, 97, 100), + (233801, 19, 4), + (233801, 156, 20), + (233802, 97, 100), + (233802, 19, 4), + (233802, 156, 20), + (233803, 97, 300), + (233803, 19, 6), + (233803, 156, 40), + (233804, 277, 5), + (233804, 317, 2), + (233804, 278, 2), + (233804, 279, 2), + (233804, 280, 2), + (233804, 282, 2), + (233804, 281, 2), + (233804, 311, 2), + (233804, 316, 2), + (234050, 91, 2), + (234050, 90, 2), + (234050, 92, 2), + (234050, 97, 1), + (234050, 95, 1), + (234050, 94, 2), + (234050, 93, 2), + (234050, 96, 2), + (234050, 316, 1), + (234050, 311, 1), + (234050, 278, 1), + (234050, 279, 1), + (234050, 282, 1), + (234050, 280, 1), + (234050, 281, 1), + (234050, 317, 1), + (234051, 91, 30), + (234051, 90, 30), + (234051, 92, 30), + (234051, 97, 15), + (234051, 95, 15), + (234051, 94, 30), + (234051, 93, 30), + (234051, 96, 30), + (234051, 316, 3), + (234051, 311, 3), + (234051, 278, 3), + (234051, 279, 3), + (234051, 282, 3), + (234051, 280, 3), + (234051, 281, 3), + (234051, 317, 3), + (234057, 91, 3), + (234057, 90, 3), + (234057, 92, 3), + (234057, 97, 1), + (234057, 95, 1), + (234057, 94, 3), + (234057, 93, 3), + (234057, 96, 3), + (234057, 316, 1), + (234057, 311, 1), + (234057, 278, 1), + (234057, 279, 1), + (234057, 282, 1), + (234057, 280, 1), + (234057, 281, 1), + (234057, 317, 1), + (234058, 91, 45), + (234058, 90, 45), + (234058, 92, 45), + (234058, 97, 15), + (234058, 95, 15), + (234058, 94, 45), + (234058, 93, 45), + (234058, 96, 45), + (234058, 316, 3), + (234058, 311, 3), + (234058, 278, 3), + (234058, 279, 3), + (234058, 282, 3), + (234058, 280, 3), + (234058, 281, 3), + (234058, 317, 3), + (234059, 91, 5), + (234059, 90, 5), + (234059, 92, 5), + (234059, 97, 1), + (234059, 95, 1), + (234059, 94, 5), + (234059, 93, 5), + (234059, 96, 5), + (234059, 316, 1), + (234059, 311, 1), + (234059, 278, 1), + (234059, 279, 1), + (234059, 282, 1), + (234059, 280, 1), + (234059, 281, 1), + (234059, 317, 1), + (234060, 91, 75), + (234060, 90, 75), + (234060, 92, 75), + (234060, 97, 15), + (234060, 95, 15), + (234060, 94, 75), + (234060, 93, 75), + (234060, 96, 75), + (234060, 316, 3), + (234060, 311, 3), + (234060, 278, 3), + (234060, 279, 3), + (234060, 282, 3), + (234060, 280, 3), + (234060, 281, 3), + (234060, 317, 3), + (234061, 91, 1), + (234061, 90, 1), + (234061, 92, 1), + (234061, 97, 1), + (234061, 95, 1), + (234061, 94, 1), + (234061, 93, 1), + (234061, 96, 1), + (234061, 316, 1), + (234061, 311, 1), + (234061, 278, 1), + (234061, 279, 1), + (234061, 282, 1), + (234061, 280, 1), + (234061, 281, 1), + (234061, 317, 1), + (234062, 91, 15), + (234062, 90, 15), + (234062, 92, 15), + (234062, 97, 15), + (234062, 95, 15), + (234062, 94, 15), + (234062, 93, 15), + (234062, 96, 15), + (234062, 316, 3), + (234062, 311, 3), + (234062, 278, 3), + (234062, 279, 3), + (234062, 282, 3), + (234062, 280, 3), + (234062, 281, 3), + (234062, 317, 3), + (234063, 91, 1), + (234063, 90, 1), + (234063, 92, 1), + (234063, 97, 1), + (234063, 95, 1), + (234063, 94, 1), + (234063, 93, 1), + (234063, 96, 1), + (234063, 316, 1), + (234063, 311, 1), + (234063, 278, 1), + (234063, 279, 1), + (234063, 282, 1), + (234063, 280, 1), + (234063, 281, 1), + (234063, 317, 1), + (234064, 91, 15), + (234064, 90, 15), + (234064, 92, 15), + (234064, 97, 15), + (234064, 95, 15), + (234064, 94, 15), + (234064, 93, 15), + (234064, 96, 15), + (234064, 316, 3), + (234064, 311, 3), + (234064, 278, 3), + (234064, 279, 3), + (234064, 282, 3), + (234064, 280, 3), + (234064, 281, 3), + (234064, 317, 3), + (234065, 91, 4), + (234065, 90, 4), + (234065, 92, 4), + (234065, 97, 1), + (234065, 95, 1), + (234065, 94, 4), + (234065, 93, 4), + (234065, 96, 4), + (234065, 316, 1), + (234065, 311, 1), + (234065, 278, 1), + (234065, 279, 1), + (234065, 282, 1), + (234065, 280, 1), + (234065, 281, 1), + (234065, 317, 1), + (234066, 91, 60), + (234066, 90, 60), + (234066, 92, 60), + (234066, 97, 15), + (234066, 95, 15), + (234066, 94, 60), + (234066, 93, 60), + (234066, 96, 60), + (234066, 316, 3), + (234066, 311, 3), + (234066, 278, 3), + (234066, 279, 3), + (234066, 282, 3), + (234066, 280, 3), + (234066, 281, 3), + (234066, 317, 3), + (234610, 128, 40), + (234610, 1, 300), + (234610, 96, 800), + (234650, 1, 65), + (234651, 1, 65), + (234652, 97, 350), + (234652, 1, 130), + (234653, 97, 350), + (234653, 1, 130), + (234654, 118, 60), + (234654, 97, 700), + (234654, 1, 260), + (234657, 16, 5), + (234658, 16, 5), + (234659, 17, 5), + (234659, 16, 5), + (234660, 17, 5), + (234660, 16, 5), + (234661, 17, 15), + (234661, 136, 25), + (234661, 16, 15), + (235300, 91, 12), + (235300, 90, 12), + (235300, 92, 12), + (235300, 97, 12), + (235300, 95, 12), + (235300, 94, 12), + (235300, 93, 10), + (235300, 96, 10), + (235300, 120, 5), + (235300, 155, 5), + (235300, 111, 4), + (235300, 277, 4), + (235301, 91, 1200), + (235301, 90, 1200), + (235301, 92, 1200), + (235301, 97, 1200), + (235301, 95, 1200), + (235301, 94, 1200), + (235301, 93, 1000), + (235301, 96, 1000), + (235301, 120, 50), + (235301, 155, 50), + (235301, 111, 10), + (235301, 277, 10), + (235302, 91, 3), + (235302, 90, 3), + (235302, 92, 3), + (235302, 97, 3), + (235302, 95, 3), + (235302, 94, 3), + (235302, 93, 2), + (235302, 96, 2), + (235302, 120, 2), + (235302, 155, 2), + (235302, 111, 1), + (235302, 277, 1), + (235303, 91, 300), + (235303, 90, 300), + (235303, 92, 300), + (235303, 97, 300), + (235303, 95, 300), + (235303, 94, 300), + (235303, 93, 250), + (235303, 96, 250), + (235303, 120, 20), + (235303, 155, 20), + (235303, 111, 4), + (235303, 277, 4), + (235304, 91, 7), + (235304, 90, 7), + (235304, 92, 7), + (235304, 97, 7), + (235304, 95, 7), + (235304, 94, 7), + (235304, 93, 6), + (235304, 96, 6), + (235304, 120, 3), + (235304, 155, 3), + (235304, 111, 3), + (235304, 277, 3), + (235305, 91, 750), + (235305, 90, 750), + (235305, 92, 750), + (235305, 97, 750), + (235305, 95, 750), + (235305, 94, 750), + (235305, 93, 625), + (235305, 96, 625), + (235305, 120, 35), + (235305, 155, 35), + (235305, 111, 7), + (235305, 277, 7), + (235306, 91, 4), + (235306, 90, 4), + (235306, 92, 4), + (235306, 97, 4), + (235306, 95, 4), + (235306, 94, 4), + (235306, 93, 3), + (235306, 96, 3), + (235306, 120, 2), + (235306, 155, 2), + (235306, 111, 2), + (235306, 277, 2), + (235307, 91, 450), + (235307, 90, 450), + (235307, 92, 450), + (235307, 97, 450), + (235307, 95, 450), + (235307, 94, 450), + (235307, 93, 375), + (235307, 96, 375), + (235307, 120, 25), + (235307, 155, 25), + (235307, 111, 5), + (235307, 277, 5), + (235356, 91, 12), + (235356, 90, 12), + (235356, 92, 12), + (235356, 97, 12), + (235356, 95, 12), + (235356, 94, 12), + (235356, 93, 10), + (235356, 96, 10), + (235356, 119, 5), + (235356, 154, 5), + (235356, 114, 4), + (235356, 181, 8), + (235357, 91, 1200), + (235357, 90, 1200), + (235357, 92, 1200), + (235357, 97, 1200), + (235357, 95, 1200), + (235357, 94, 1200), + (235357, 93, 1000), + (235357, 96, 1000), + (235357, 119, 50), + (235357, 154, 50), + (235357, 114, 10), + (235357, 181, 20), + (235358, 91, 3), + (235358, 90, 3), + (235358, 92, 3), + (235358, 97, 3), + (235358, 95, 3), + (235358, 94, 3), + (235358, 93, 2), + (235358, 96, 2), + (235358, 119, 2), + (235358, 154, 2), + (235358, 114, 1), + (235358, 181, 2), + (235359, 91, 300), + (235359, 90, 300), + (235359, 92, 300), + (235359, 97, 300), + (235359, 95, 300), + (235359, 94, 300), + (235359, 93, 250), + (235359, 96, 250), + (235359, 119, 20), + (235359, 154, 20), + (235359, 114, 4), + (235359, 181, 8), + (235360, 91, 7), + (235360, 90, 7), + (235360, 92, 7), + (235360, 97, 7), + (235360, 95, 7), + (235360, 94, 7), + (235360, 93, 6), + (235360, 96, 6), + (235360, 119, 3), + (235360, 154, 3), + (235360, 114, 3), + (235360, 181, 6), + (235361, 91, 750), + (235361, 90, 750), + (235361, 92, 750), + (235361, 97, 750), + (235361, 95, 750), + (235361, 94, 750), + (235361, 93, 625), + (235361, 96, 625), + (235361, 119, 35), + (235361, 154, 35), + (235361, 114, 7), + (235361, 181, 14), + (235362, 91, 4), + (235362, 90, 4), + (235362, 92, 4), + (235362, 97, 4), + (235362, 95, 4), + (235362, 94, 4), + (235362, 93, 3), + (235362, 96, 3), + (235362, 119, 2), + (235362, 154, 2), + (235362, 114, 2), + (235362, 181, 4), + (235363, 91, 450), + (235363, 90, 450), + (235363, 92, 450), + (235363, 97, 450), + (235363, 95, 450), + (235363, 94, 450), + (235363, 93, 375), + (235363, 96, 375), + (235363, 119, 25), + (235363, 154, 25), + (235363, 114, 5), + (235363, 181, 10), + (235364, 91, 12), + (235364, 90, 12), + (235364, 92, 12), + (235364, 97, 12), + (235364, 95, 12), + (235364, 94, 12), + (235364, 93, 10), + (235364, 96, 10), + (235364, 118, 5), + (235364, 153, 5), + (235364, 103, 4), + (235364, 152, 8), + (235365, 91, 1200), + (235365, 90, 1200), + (235365, 92, 1200), + (235365, 97, 1200), + (235365, 95, 1200), + (235365, 94, 1200), + (235365, 93, 1000), + (235365, 96, 1000), + (235365, 118, 50), + (235365, 153, 50), + (235365, 103, 10), + (235365, 152, 20), + (235366, 91, 3), + (235366, 90, 3), + (235366, 92, 3), + (235366, 97, 3), + (235366, 95, 3), + (235366, 94, 3), + (235366, 93, 2), + (235366, 96, 2), + (235366, 118, 2), + (235366, 153, 2), + (235366, 103, 1), + (235366, 152, 2), + (235367, 91, 300), + (235367, 90, 300), + (235367, 92, 300), + (235367, 97, 300), + (235367, 95, 300), + (235367, 94, 300), + (235367, 93, 250), + (235367, 96, 250), + (235367, 118, 20), + (235367, 153, 20), + (235367, 103, 4), + (235367, 152, 8), + (235368, 91, 7), + (235368, 90, 7), + (235368, 92, 7), + (235368, 97, 7), + (235368, 95, 7), + (235368, 94, 7), + (235368, 93, 6), + (235368, 96, 6), + (235368, 118, 3), + (235368, 153, 3), + (235368, 103, 3), + (235368, 152, 6), + (235369, 91, 750), + (235369, 90, 750), + (235369, 92, 750), + (235369, 97, 750), + (235369, 95, 750), + (235369, 94, 750), + (235369, 93, 625), + (235369, 96, 625), + (235369, 118, 35), + (235369, 153, 35), + (235369, 103, 7), + (235369, 152, 14), + (235370, 91, 4), + (235370, 90, 4), + (235370, 92, 4), + (235370, 97, 4), + (235370, 95, 4), + (235370, 94, 4), + (235370, 93, 3), + (235370, 96, 3), + (235370, 118, 2), + (235370, 153, 2), + (235370, 103, 2), + (235370, 152, 4), + (235371, 91, 450), + (235371, 90, 450), + (235371, 92, 450), + (235371, 97, 450), + (235371, 95, 450), + (235371, 94, 450), + (235371, 93, 375), + (235371, 96, 375), + (235371, 118, 25), + (235371, 153, 25), + (235371, 103, 5), + (235371, 152, 10), + (235377, 91, 12), + (235377, 90, 12), + (235377, 92, 12), + (235377, 97, 12), + (235377, 95, 12), + (235377, 94, 12), + (235377, 93, 10), + (235377, 96, 10), + (235377, 154, 5), + (235377, 155, 5), + (235377, 153, 5), + (235377, 156, 5), + (235377, 168, 5), + (235378, 91, 1200), + (235378, 90, 1200), + (235378, 92, 1200), + (235378, 97, 1200), + (235378, 95, 1200), + (235378, 94, 1200), + (235378, 93, 1000), + (235378, 96, 1000), + (235378, 154, 50), + (235378, 155, 50), + (235378, 153, 50), + (235378, 156, 50), + (235378, 168, 50), + (235379, 91, 3), + (235379, 90, 3), + (235379, 92, 3), + (235379, 97, 3), + (235379, 95, 3), + (235379, 94, 3), + (235379, 93, 2), + (235379, 96, 2), + (235379, 154, 2), + (235379, 155, 2), + (235379, 153, 2), + (235379, 156, 2), + (235379, 168, 2), + (235380, 91, 300), + (235380, 90, 300), + (235380, 92, 300), + (235380, 97, 300), + (235380, 95, 300), + (235380, 94, 300), + (235380, 93, 250), + (235380, 96, 250), + (235380, 154, 20), + (235380, 155, 20), + (235380, 153, 20), + (235380, 156, 20), + (235380, 168, 20), + (235381, 91, 7), + (235381, 90, 7), + (235381, 92, 7), + (235381, 97, 7), + (235381, 95, 7), + (235381, 94, 7), + (235381, 93, 6), + (235381, 96, 6), + (235381, 154, 3), + (235381, 155, 3), + (235381, 153, 3), + (235381, 156, 3), + (235381, 168, 3), + (235382, 91, 750), + (235382, 90, 750), + (235382, 92, 750), + (235382, 97, 750), + (235382, 95, 750), + (235382, 94, 750), + (235382, 93, 625), + (235382, 96, 625), + (235382, 154, 35), + (235382, 155, 35), + (235382, 153, 35), + (235382, 156, 35), + (235382, 168, 35), + (235383, 91, 4), + (235383, 90, 4), + (235383, 92, 4), + (235383, 97, 4), + (235383, 95, 4), + (235383, 94, 4), + (235383, 93, 3), + (235383, 96, 3), + (235383, 154, 2), + (235383, 155, 2), + (235383, 153, 2), + (235383, 156, 2), + (235383, 168, 2), + (235384, 91, 450), + (235384, 90, 450), + (235384, 92, 450), + (235384, 97, 450), + (235384, 95, 450), + (235384, 94, 450), + (235384, 93, 375), + (235384, 96, 375), + (235384, 154, 25), + (235384, 155, 25), + (235384, 153, 25), + (235384, 156, 25), + (235384, 168, 25), + (235388, 91, 1), + (235388, 90, 1), + (235388, 92, 1), + (235388, 97, 1), + (235388, 95, 1), + (235388, 94, 1), + (235388, 93, 1), + (235388, 96, 1), + (235388, 1, 1), + (235388, 221, 1), + (235388, 119, -1), + (235389, 91, 100), + (235389, 90, 100), + (235389, 92, 100), + (235389, 97, 100), + (235389, 95, 100), + (235389, 94, 100), + (235389, 93, 100), + (235389, 96, 100), + (235389, 1, 500), + (235389, 221, 500), + (235389, 119, -10), + (235390, 91, 1), + (235390, 90, 1), + (235390, 92, 1), + (235390, 97, 1), + (235390, 95, 1), + (235390, 94, 1), + (235390, 93, 1), + (235390, 96, 1), + (235390, 1, 1), + (235390, 221, 1), + (235390, 119, -1), + (235391, 91, 100), + (235391, 90, 100), + (235391, 92, 100), + (235391, 97, 100), + (235391, 95, 100), + (235391, 94, 100), + (235391, 93, 100), + (235391, 96, 100), + (235391, 1, 600), + (235391, 221, 400), + (235391, 119, -30), + (235392, 91, 1), + (235392, 90, 1), + (235392, 92, 1), + (235392, 97, 1), + (235392, 95, 1), + (235392, 94, 1), + (235392, 93, 1), + (235392, 96, 1), + (235392, 1, 1), + (235392, 221, 1), + (235392, 119, -1), + (235393, 91, 100), + (235393, 90, 100), + (235393, 92, 100), + (235393, 97, 100), + (235393, 95, 100), + (235393, 94, 100), + (235393, 93, 100), + (235393, 96, 100), + (235393, 1, 550), + (235393, 221, 450), + (235393, 119, -20), + (235394, 91, 1), + (235394, 90, 1), + (235394, 92, 1), + (235394, 97, 1), + (235394, 95, 1), + (235394, 94, 1), + (235394, 93, 1), + (235394, 96, 1), + (235394, 1, 1), + (235394, 221, 1), + (235394, 119, -1), + (235395, 91, 100), + (235395, 90, 100), + (235395, 92, 100), + (235395, 97, 100), + (235395, 95, 100), + (235395, 94, 100), + (235395, 93, 100), + (235395, 96, 100), + (235395, 1, 700), + (235395, 221, 300), + (235395, 119, -50), + (235396, 91, 1), + (235396, 90, 1), + (235396, 92, 1), + (235396, 97, 1), + (235396, 95, 1), + (235396, 94, 1), + (235396, 93, 1), + (235396, 96, 1), + (235396, 1, 1), + (235396, 221, 1), + (235396, 119, -1), + (235397, 91, 100), + (235397, 90, 100), + (235397, 92, 100), + (235397, 97, 100), + (235397, 95, 100), + (235397, 94, 100), + (235397, 93, 100), + (235397, 96, 100), + (235397, 1, 650), + (235397, 221, 350), + (235397, 119, -40), + (235398, 91, 1), + (235398, 90, 1), + (235398, 92, 1), + (235398, 97, 1), + (235398, 95, 1), + (235398, 94, 1), + (235398, 93, 1), + (235398, 96, 1), + (235398, 1, 1), + (235398, 221, 1), + (235398, 119, -1), + (235399, 91, 100), + (235399, 90, 100), + (235399, 92, 100), + (235399, 97, 100), + (235399, 95, 100), + (235399, 94, 100), + (235399, 93, 100), + (235399, 96, 100), + (235399, 1, 750), + (235399, 221, 250), + (235399, 119, -60), + (236507, 118, -400), + (236507, 120, -400), + (236507, 119, -400), + (236507, 149, -400), + (236509, 118, -841), + (236509, 120, -841), + (236509, 119, -841), + (236509, 149, -841), + (236515, 118, -1126), + (236515, 120, -1126), + (236515, 119, -1126), + (236515, 149, -1126), + (238908, 127, 5), + (238908, 128, 5), + (238908, 129, 5), + (238908, 130, 5), + (238908, 131, 5), + (238908, 122, 5), + (238908, 168, 5), + (238909, 127, 25), + (238909, 128, 25), + (238909, 129, 25), + (238909, 130, 25), + (238909, 131, 25), + (238909, 122, 25), + (238909, 168, 25), + (238910, 19, 5), + (238910, 21, 5), + (238911, 19, 25), + (238911, 21, 25), + (238912, 17, 10), + (238912, 20, 5), + (238913, 17, 30), + (238913, 20, 15), + (238914, 20, 20), + (238914, 17, 10), + (238915, 20, 30), + (238915, 17, 20), + (238916, 127, 10), + (238916, 279, 10), + (238916, 280, 10), + (238916, 282, 10), + (238917, 127, 30), + (238917, 279, 30), + (238917, 280, 30), + (238917, 282, 30), + (238918, 130, 1), + (238918, 90, 100), + (238918, 91, 100), + (238919, 130, 30), + (238919, 90, 300), + (238919, 91, 300), + (238920, 181, 80), + (238920, 124, 1), + (238921, 181, 100), + (238921, 124, 2), + (238922, 128, 50), + (238922, 130, 50), + (238922, 127, 50), + (238923, 128, 50), + (238923, 130, 50), + (238923, 127, 50), + (238924, 128, 60), + (238924, 130, 60), + (238924, 127, 60), + (238925, 128, 60), + (238925, 130, 60), + (238925, 127, 60), + (238926, 128, 70), + (238926, 130, 70), + (238926, 127, 70), + (238927, 128, 70), + (238927, 130, 70), + (238927, 127, 70), + (238928, 128, 80), + (238928, 130, 80), + (238928, 127, 80), + (238929, 128, 80), + (238929, 130, 80), + (238929, 127, 80), + (238930, 128, 90), + (238930, 130, 90), + (238930, 127, 90), + (238931, 128, 90), + (238931, 130, 90), + (238931, 127, 90), + (238932, 128, 100), + (238932, 130, 100), + (238932, 127, 100), + (238933, 131, 50), + (238933, 129, 50), + (238933, 122, 50), + (238934, 131, 50), + (238934, 129, 50), + (238934, 122, 50), + (238935, 131, 60), + (238935, 129, 60), + (238935, 122, 60), + (238936, 131, 60), + (238936, 129, 60), + (238936, 122, 60), + (238937, 131, 70), + (238937, 129, 70), + (238937, 122, 70), + (238939, 131, 70), + (238939, 129, 70), + (238939, 122, 70), + (238940, 131, 80), + (238940, 129, 80), + (238940, 122, 80), + (238941, 131, 80), + (238941, 129, 80), + (238941, 122, 80), + (238942, 131, 90), + (238942, 129, 90), + (238942, 122, 90), + (238943, 131, 90), + (238943, 129, 90), + (238943, 122, 90), + (238944, 131, 100), + (238944, 129, 100), + (238944, 122, 100), + (238958, 16, 5), + (238959, 16, 5), + (238960, 17, 5), + (238960, 16, 5), + (238961, 17, 5), + (238961, 16, 5), + (238962, 17, 15), + (238962, 136, 25), + (238962, 16, 15), + (239358, 153, 78), + (239358, 154, 78), + (239358, 155, 78), + (243739, 126, 6), + (243739, 157, 6), + (243739, 160, 6), + (243740, 126, 6), + (243740, 157, 6), + (243740, 160, 6), + (243741, 126, 10), + (243741, 157, 10), + (243741, 160, 10), + (243742, 126, 10), + (243742, 157, 10), + (243742, 160, 10), + (243743, 126, 14), + (243743, 157, 14), + (243743, 160, 14), + (243744, 126, 14), + (243744, 157, 14), + (243744, 160, 14), + (243745, 126, 18), + (243745, 157, 18), + (243745, 160, 18), + (243746, 126, 18), + (243746, 157, 18), + (243746, 160, 18), + (243747, 126, 22), + (243747, 157, 22), + (243747, 160, 22), + (243748, 126, 12), + (243748, 157, 12), + (243748, 125, 12), + (243749, 126, 12), + (243749, 157, 12), + (243749, 125, 12), + (243750, 126, 14), + (243750, 157, 14), + (243750, 125, 14), + (243751, 126, 14), + (243751, 157, 14), + (243751, 125, 14), + (243752, 126, 16), + (243752, 157, 16), + (243752, 125, 16), + (243753, 126, 16), + (243753, 157, 16), + (243753, 125, 16), + (243754, 126, 18), + (243754, 157, 18), + (243754, 125, 18), + (243755, 126, 18), + (243755, 157, 18), + (243755, 125, 18), + (243756, 126, 20), + (243756, 157, 20), + (243756, 125, 20), + (243757, 126, 20), + (243757, 157, 20), + (243757, 125, 20), + (243758, 126, 22), + (243758, 157, 22), + (243758, 125, 22), + (243759, 126, 22), + (243759, 157, 22), + (243759, 125, 22), + (243760, 126, 24), + (243760, 157, 24), + (243760, 125, 24), + (243761, 126, 24), + (243761, 157, 24), + (243761, 125, 24), + (243762, 126, 26), + (243762, 157, 26), + (243762, 125, 26), + (243763, 126, 26), + (243763, 157, 26), + (243763, 125, 26), + (243764, 126, 28), + (243764, 157, 28), + (243764, 125, 28), + (243765, 126, 28), + (243765, 157, 28), + (243765, 125, 28), + (243766, 126, 32), + (243766, 157, 32), + (243766, 125, 32), + (243767, 158, 30), + (243768, 158, 30), + (243769, 158, 35), + (243770, 158, 35), + (243771, 158, 40), + (243772, 158, 40), + (243773, 158, 45), + (243774, 158, 45), + (243775, 158, 50), + (243777, 311, 20), + (243777, 316, 20), + (243778, 311, 20), + (243778, 316, 20), + (243779, 311, 25), + (243779, 316, 25), + (243780, 311, 25), + (243780, 316, 25), + (243781, 311, 30), + (243781, 316, 30), + (243782, 311, 30), + (243782, 316, 30), + (243783, 311, 35), + (243783, 316, 35), + (243784, 311, 35), + (243784, 316, 35), + (243785, 311, 40), + (243785, 316, 40), + (243785, 134, 20), + (243786, 311, 40), + (243786, 316, 40), + (243786, 134, 20), + (243787, 311, 50), + (243787, 316, 50), + (243787, 134, 25), + (243788, 154, 35), + (243789, 154, 35), + (243790, 154, 40), + (243791, 154, 40), + (243792, 154, 45), + (243792, 181, 25), + (243793, 154, 45), + (243793, 181, 25), + (243794, 154, 50), + (243794, 181, 30), + (243795, 154, 50), + (243795, 181, 30), + (243796, 277, 10), + (243796, 154, 55), + (243796, 181, 35), + (243797, 277, 10), + (243797, 154, 55), + (243797, 181, 35), + (243798, 277, 20), + (243798, 154, 60), + (243798, 181, 40), + (243799, 278, 20), + (243800, 278, 20), + (243801, 278, 25), + (243802, 278, 25), + (243803, 278, 30), + (243804, 278, 30), + (243805, 152, 10), + (243805, 278, 35), + (243806, 152, 10), + (243806, 278, 35), + (243807, 152, 20), + (243807, 278, 40), + (243846, 156, 10), + (243847, 136, 20), + (243847, 20, 20), + (243847, 122, 20), + (243848, 136, 25), + (243848, 20, 25), + (243848, 122, 25), + (244223, 90, 200), + (244223, 92, 200), + (244223, 91, 200), + (244223, 97, 200), + (244223, 95, 200), + (244223, 93, 200), + (244223, 94, 200), + (244223, 96, 200), + (244223, 19, 25), + (244223, 21, 25), + (244223, 157, 50), + (244235, 97, 15), + (244235, 1, 2), + (244236, 97, 15), + (244236, 1, 2), + (244237, 97, 17), + (244237, 1, 3), + (244238, 97, 17), + (244238, 1, 3), + (244239, 97, 18), + (244239, 1, 4), + (244240, 97, 18), + (244240, 1, 5), + (244241, 97, 130), + (244241, 1, 20), + (244242, 97, 140), + (244242, 1, 22), + (244243, 97, 150), + (244243, 1, 24), + (244244, 97, 160), + (244244, 1, 26), + (244245, 97, 170), + (244245, 1, 28), + (244246, 97, 180), + (244246, 1, 30), + (244249, 122, 1), + (244249, 129, 1), + (244249, 1, 3), + (244250, 122, 1), + (244250, 129, 1), + (244250, 1, 3), + (244251, 122, 1), + (244251, 129, 1), + (244251, 1, 4), + (244252, 122, 1), + (244252, 129, 1), + (244252, 1, 5), + (244253, 122, 1), + (244253, 129, 1), + (244253, 1, 6), + (244254, 122, 1), + (244254, 129, 1), + (244254, 1, 7), + (244255, 122, 4), + (244255, 129, 4), + (244255, 1, 22), + (244256, 122, 4), + (244256, 129, 4), + (244256, 1, 24), + (244257, 122, 5), + (244257, 129, 5), + (244257, 1, 26), + (244258, 122, 5), + (244258, 129, 5), + (244258, 1, 28), + (244259, 122, 6), + (244259, 129, 6), + (244259, 1, 30), + (244260, 122, 6), + (244260, 129, 6), + (244260, 1, 32), + (244263, 127, 1), + (244263, 128, 1), + (244263, 181, 1), + (244264, 127, 1), + (244264, 128, 1), + (244264, 181, 1), + (244265, 127, 1), + (244265, 128, 1), + (244265, 181, 1), + (244266, 127, 1), + (244266, 128, 1), + (244266, 181, 1), + (244267, 127, 1), + (244267, 128, 1), + (244267, 181, 1), + (244268, 127, 1), + (244268, 128, 1), + (244268, 181, 1), + (244269, 127, 4), + (244269, 128, 4), + (244269, 181, 4), + (244270, 127, 4), + (244270, 128, 4), + (244270, 181, 5), + (244271, 127, 5), + (244271, 128, 5), + (244271, 181, 6), + (244272, 127, 5), + (244272, 128, 5), + (244272, 181, 7), + (244273, 127, 6), + (244273, 128, 6), + (244273, 181, 8), + (244274, 127, 6), + (244274, 128, 6), + (244274, 181, 9), + (244277, 130, 1), + (244277, 131, 1), + (244277, 221, 4), + (244278, 130, 1), + (244278, 131, 1), + (244278, 221, 5), + (244279, 130, 1), + (244279, 131, 1), + (244279, 221, 6), + (244280, 130, 1), + (244280, 131, 1), + (244280, 221, 7), + (244281, 130, 1), + (244281, 131, 1), + (244281, 221, 8), + (244282, 130, 1), + (244282, 131, 1), + (244282, 221, 9), + (244283, 130, 4), + (244283, 131, 4), + (244283, 221, 26), + (244284, 130, 4), + (244284, 131, 4), + (244284, 221, 28), + (244285, 130, 5), + (244285, 131, 5), + (244285, 221, 30), + (244286, 130, 5), + (244286, 131, 5), + (244286, 221, 32), + (244287, 130, 6), + (244287, 131, 6), + (244287, 221, 34), + (244288, 130, 6), + (244288, 131, 6), + (244288, 221, 36), + (244291, 131, 1), + (244291, 129, 1), + (244292, 131, 1), + (244292, 129, 1), + (244293, 131, 1), + (244293, 129, 1), + (244294, 131, 1), + (244294, 129, 1), + (244295, 131, 1), + (244295, 129, 1), + (244296, 131, 1), + (244296, 129, 1), + (244297, 131, 4), + (244297, 129, 4), + (244298, 131, 4), + (244298, 129, 4), + (244299, 131, 5), + (244299, 129, 5), + (244300, 131, 5), + (244300, 129, 5), + (244301, 131, 6), + (244301, 129, 6), + (244302, 131, 6), + (244302, 129, 6), + (244305, 1, 3), + (244305, 343, 1), + (244306, 1, 3), + (244306, 343, 1), + (244307, 1, 4), + (244307, 343, 1), + (244308, 1, 4), + (244308, 343, 1), + (244309, 1, 5), + (244309, 343, 1), + (244310, 1, 6), + (244310, 343, 1), + (244311, 1, 22), + (244311, 343, 2), + (244312, 1, 23), + (244312, 343, 2), + (244313, 1, 24), + (244313, 343, 3), + (244314, 1, 25), + (244314, 343, 3), + (244315, 1, 26), + (244315, 343, 4), + (244316, 1, 28), + (244316, 343, 4), + (244319, 364, 1), + (244319, 221, 5), + (244320, 364, 1), + (244320, 221, 6), + (244321, 364, 1), + (244321, 221, 7), + (244322, 364, 1), + (244322, 221, 8), + (244323, 364, 1), + (244323, 221, 9), + (244324, 364, 1), + (244324, 221, 10), + (244325, 364, 3), + (244325, 221, 30), + (244326, 364, 4), + (244326, 221, 32), + (244327, 364, 5), + (244327, 221, 34), + (244328, 364, 6), + (244328, 221, 36), + (244329, 364, 7), + (244329, 221, 38), + (244330, 364, 8), + (244330, 221, 40), + (244333, 277, 1), + (244334, 277, 1), + (244335, 277, 1), + (244336, 277, 1), + (244337, 277, 1), + (244338, 277, 1), + (244339, 277, 17), + (244340, 277, 18), + (244341, 277, 19), + (244342, 277, 20), + (244343, 277, 21), + (244344, 277, 22), + (244357, 90, 400), + (244357, 92, 400), + (244357, 91, 400), + (244357, 97, 400), + (244357, 95, 400), + (244357, 93, 400), + (244357, 94, 400), + (244357, 96, 400), + (244357, 221, 400), + (244357, 160, 40), + (244357, 318, -4), + (244358, 181, 120), + (244358, 19, 12), + (244358, 115, 12), + (244364, 95, 15), + (244364, 96, 15), + (244365, 95, 15), + (244365, 96, 15), + (244366, 95, 17), + (244366, 96, 17), + (244367, 95, 17), + (244367, 96, 17), + (244368, 95, 18), + (244368, 96, 18), + (244369, 95, 18), + (244369, 96, 18), + (244370, 95, 130), + (244370, 96, 130), + (244371, 95, 140), + (244371, 96, 140), + (244372, 95, 150), + (244372, 96, 150), + (244373, 95, 160), + (244373, 96, 160), + (244374, 95, 170), + (244374, 96, 170), + (244375, 95, 180), + (244375, 96, 170), + (244376, 149, 20), + (244376, 168, 20), + (244376, 379, 2), + (244379, 279, 1), + (244379, 278, 1), + (244379, 280, 1), + (244380, 279, 1), + (244380, 278, 1), + (244380, 280, 1), + (244381, 279, 1), + (244381, 278, 1), + (244381, 280, 1), + (244382, 279, 1), + (244382, 278, 1), + (244382, 280, 1), + (244383, 279, 1), + (244383, 278, 1), + (244383, 280, 1), + (244384, 279, 1), + (244384, 278, 1), + (244384, 280, 1), + (244385, 279, 5), + (244385, 278, 5), + (244385, 280, 5), + (244386, 279, 5), + (244386, 278, 5), + (244386, 280, 5), + (244387, 279, 6), + (244387, 278, 6), + (244387, 280, 6), + (244388, 279, 6), + (244388, 278, 6), + (244388, 280, 6), + (244389, 279, 7), + (244389, 278, 7), + (244389, 280, 7), + (244390, 279, 7), + (244390, 278, 7), + (244390, 280, 7), + (244393, 276, 1), + (244394, 276, 1), + (244395, 276, 1), + (244396, 276, 1), + (244397, 276, 1), + (244398, 276, 1), + (244399, 276, 17), + (244400, 276, 18), + (244401, 276, 19), + (244402, 276, 20), + (244403, 276, 21), + (244404, 276, 22), + (244405, 103, 20), + (244405, 146, 10), + (244405, 276, 10), + (244408, 128, 1), + (244408, 122, 1), + (244409, 128, 1), + (244409, 122, 1), + (244410, 128, 1), + (244410, 122, 1), + (244411, 128, 1), + (244411, 122, 1), + (244412, 128, 1), + (244412, 122, 1), + (244413, 128, 1), + (244413, 122, 1), + (244414, 128, 4), + (244414, 122, 4), + (244415, 128, 4), + (244415, 122, 4), + (244416, 128, 5), + (244416, 122, 5), + (244417, 128, 5), + (244417, 122, 5), + (244418, 128, 6), + (244418, 122, 6), + (244419, 128, 6), + (244419, 122, 6), + (244429, 92, 15), + (244429, 90, 15), + (244430, 92, 15), + (244430, 90, 15), + (244431, 92, 17), + (244431, 90, 17), + (244432, 92, 17), + (244432, 90, 17), + (244433, 92, 18), + (244433, 90, 18), + (244434, 92, 18), + (244434, 90, 18), + (244435, 92, 130), + (244435, 90, 130), + (244436, 92, 140), + (244436, 90, 140), + (244437, 92, 150), + (244437, 90, 150), + (244438, 92, 160), + (244438, 90, 160), + (244439, 92, 170), + (244439, 90, 170), + (244440, 92, 180), + (244440, 90, 180), + (244443, 127, 1), + (244443, 149, 2), + (244444, 127, 1), + (244444, 149, 2), + (244445, 127, 1), + (244445, 149, 3), + (244446, 127, 1), + (244446, 149, 3), + (244447, 127, 1), + (244447, 149, 4), + (244448, 127, 1), + (244448, 149, 4), + (244449, 127, 4), + (244449, 149, 10), + (244450, 127, 4), + (244450, 149, 11), + (244451, 127, 5), + (244451, 149, 12), + (244452, 127, 5), + (244452, 149, 13), + (244453, 127, 6), + (244453, 149, 14), + (244454, 127, 6), + (244454, 149, 15), + (244457, 118, 2), + (244457, 120, 2), + (244457, 119, 2), + (244458, 118, 2), + (244458, 120, 2), + (244458, 119, 2), + (244459, 118, 3), + (244459, 120, 3), + (244459, 119, 3), + (244460, 118, 4), + (244460, 120, 4), + (244460, 119, 4), + (244461, 118, 5), + (244461, 120, 5), + (244461, 119, 5), + (244462, 118, 6), + (244462, 120, 6), + (244462, 119, 6), + (244463, 118, 14), + (244463, 120, 14), + (244463, 119, 14), + (244464, 118, 15), + (244464, 120, 15), + (244464, 119, 15), + (244465, 118, 19), + (244465, 120, 19), + (244465, 119, 19), + (244466, 118, 20), + (244466, 120, 20), + (244466, 119, 20), + (244467, 118, 22), + (244467, 120, 22), + (244467, 119, 22), + (244468, 118, 23), + (244468, 120, 23), + (244468, 119, 23), + (244469, 112, 20), + (244469, 150, 10), + (244469, 276, 10), + (244472, 16, 1), + (244472, 17, 1), + (244473, 16, 1), + (244473, 17, 1), + (244474, 16, 1), + (244474, 17, 1), + (244475, 16, 1), + (244475, 17, 1), + (244476, 16, 1), + (244476, 17, 1), + (244477, 16, 1), + (244477, 17, 1), + (244478, 16, 2), + (244478, 17, 2), + (244479, 16, 3), + (244479, 17, 3), + (244480, 16, 4), + (244480, 17, 4), + (244481, 16, 5), + (244481, 17, 5), + (244482, 16, 6), + (244482, 17, 6), + (244483, 16, 7), + (244483, 17, 7), + (244486, 18, 1), + (244486, 19, 1), + (244487, 18, 1), + (244487, 19, 1), + (244488, 18, 1), + (244488, 19, 1), + (244489, 18, 1), + (244489, 19, 1), + (244490, 18, 1), + (244490, 19, 1), + (244491, 18, 1), + (244491, 19, 1), + (244492, 18, 2), + (244492, 19, 2), + (244493, 18, 3), + (244493, 19, 3), + (244494, 18, 4), + (244494, 19, 4), + (244495, 18, 5), + (244495, 19, 5), + (244496, 18, 6), + (244496, 19, 6), + (244497, 18, 7), + (244497, 19, 7), + (244500, 20, 1), + (244500, 19, 1), + (244501, 20, 1), + (244501, 19, 1), + (244502, 20, 1), + (244502, 19, 1), + (244503, 20, 1), + (244503, 19, 1), + (244504, 20, 1), + (244504, 19, 1), + (244505, 20, 1), + (244505, 19, 1), + (244506, 20, 2), + (244506, 19, 2), + (244507, 20, 3), + (244507, 19, 3), + (244508, 20, 4), + (244508, 19, 4), + (244509, 20, 5), + (244509, 19, 5), + (244510, 20, 6), + (244510, 19, 6), + (244511, 20, 7), + (244511, 19, 7), + (244514, 93, 15), + (244514, 311, 1), + (244515, 93, 15), + (244515, 311, 1), + (244516, 93, 17), + (244516, 311, 1), + (244517, 93, 17), + (244517, 311, 1), + (244518, 93, 18), + (244518, 311, 1), + (244519, 93, 19), + (244519, 311, 1), + (244520, 93, 130), + (244520, 311, 8), + (244521, 93, 140), + (244521, 311, 9), + (244522, 93, 150), + (244522, 311, 10), + (244523, 93, 160), + (244523, 311, 11), + (244524, 93, 170), + (244524, 311, 12), + (244525, 93, 180), + (244525, 311, 13), + (244528, 364, 1), + (244528, 343, 1), + (244528, 1, 3), + (244529, 364, 1), + (244529, 343, 1), + (244529, 1, 3), + (244530, 364, 1), + (244530, 343, 1), + (244530, 1, 4), + (244531, 364, 1), + (244531, 343, 1), + (244531, 1, 4), + (244532, 364, 1), + (244532, 343, 1), + (244532, 1, 5), + (244533, 364, 1), + (244533, 343, 1), + (244533, 1, 6), + (244534, 364, 4), + (244534, 343, 4), + (244534, 1, 14), + (244535, 364, 5), + (244535, 343, 5), + (244535, 1, 16), + (244536, 364, 6), + (244536, 343, 6), + (244536, 1, 18), + (244537, 364, 7), + (244537, 343, 7), + (244537, 1, 20), + (244538, 364, 8), + (244538, 343, 8), + (244538, 1, 22), + (244539, 364, 10), + (244539, 343, 10), + (244539, 1, 25), + (244540, 90, 1111), + (244540, 92, 1111), + (244540, 91, 1111), + (244540, 97, 1111), + (244540, 95, 1111), + (244540, 93, 1111), + (244540, 94, 1111), + (244540, 96, 1111), + (244540, 136, 33), + (244540, 149, 22), + (244540, 118, 22), + (244540, 119, 22), + (244540, 316, 22), + (244540, 311, 22), + (244540, 122, 11), + (244541, 90, 400), + (244541, 92, 400), + (244541, 91, 400), + (244541, 97, 400), + (244541, 95, 400), + (244541, 93, 400), + (244541, 94, 400), + (244541, 96, 400), + (244541, 134, 40), + (244542, 90, 400), + (244542, 92, 400), + (244542, 91, 400), + (244542, 97, 400), + (244542, 95, 400), + (244542, 93, 400), + (244542, 94, 400), + (244542, 96, 400), + (244542, 101, 40), + (244543, 90, 500), + (244543, 92, 500), + (244543, 91, 500), + (244543, 97, 500), + (244543, 95, 500), + (244543, 93, 500), + (244543, 94, 500), + (244543, 96, 500), + (244543, 125, 25), + (244543, 126, 25), + (244543, 157, 25), + (244543, 158, 25), + (244543, 159, 25), + (244543, 160, 25), + (244543, 161, 25), + (244543, 162, 25), + (244543, 163, 25), + (244558, 181, 120), + (244558, 131, 12), + (244558, 126, 12), + (244558, 21, 12), + (244559, 90, 350), + (244559, 92, 350), + (244559, 91, 350), + (244559, 97, 350), + (244559, 95, 350), + (244559, 93, 350), + (244559, 94, 350), + (244559, 96, 350), + (244559, 109, 35), + (244559, 168, 35), + (244560, 92, 500), + (244560, 94, 500), + (244560, 280, 25), + (244560, 282, 25), + (244561, 181, 120), + (244561, 221, 120), + (244561, 128, 12), + (244561, 168, 12), + (244562, 90, 250), + (244562, 92, 250), + (244562, 91, 250), + (244562, 97, 250), + (244562, 95, 250), + (244562, 93, 250), + (244562, 94, 250), + (244562, 96, 250), + (244562, 124, 25), + (244562, 123, 25), + (244562, 132, 25), + (244563, 93, 100), + (244563, 159, 40), + (244563, 21, 10), + (244564, 96, 400), + (244564, 317, 40), + (244564, 225, 10), + (244565, 113, 12), + (244565, 114, 12), + (244565, 151, 6), + (244565, 148, 6), + (244565, 380, 6), + (244566, 90, 1000), + (244566, 92, 1000), + (244566, 91, 1000), + (244566, 97, 1000), + (244566, 95, 1000), + (244566, 93, 1000), + (244566, 94, 1000), + (244566, 96, 1000), + (244566, 165, 50), + (244566, 135, 50), + (244566, 156, 50), + (244566, 20, 10), + (244567, 154, 25), + (244567, 155, 25), + (244567, 153, 25), + (244567, 156, 25), + (244567, 164, 25), + (244572, 90, 200), + (244572, 92, 200), + (244572, 91, 200), + (244572, 97, 200), + (244572, 95, 200), + (244572, 93, 200), + (244572, 94, 200), + (244572, 96, 200), + (244572, 20, 20), + (244572, 17, 20), + (244572, 161, 20), + (244572, 136, 20), + (244572, 119, 20), + (244573, 90, 300), + (244573, 92, 300), + (244573, 91, 300), + (244573, 97, 300), + (244573, 95, 300), + (244573, 93, 300), + (244573, 94, 300), + (244573, 96, 300), + (244573, 167, 30), + (244573, 148, 30), + (244573, 150, 30), + (244574, 90, 600), + (244574, 92, 600), + (244574, 91, 600), + (244574, 97, 600), + (244574, 95, 600), + (244574, 93, 600), + (244574, 94, 600), + (244574, 96, 600), + (244574, 1, 600), + (244575, 181, 125), + (244575, 112, 5), + (244575, 116, 5), + (244575, 114, 5), + (244575, 115, 5), + (244575, 113, 5), + (244575, 133, 5), + (244578, 91, 600), + (244578, 90, 600), + (244578, 92, 600), + (244578, 97, 600), + (244578, 95, 600), + (244578, 94, 600), + (244578, 93, 600), + (244578, 96, 600), + (244578, 1, 600), + (244579, 181, 120), + (244579, 129, 15), + (244579, 168, 15), + (244581, 90, 1000), + (244581, 92, 1000), + (244581, 91, 1000), + (244581, 97, 1000), + (244581, 95, 1000), + (244581, 93, 1000), + (244581, 94, 1000), + (244581, 96, 1000), + (244581, 1, 100), + (244581, 221, 100), + (244581, 21, 10), + (244581, 149, 10), + (244581, 162, 10), + (244581, 112, 10), + (244581, 168, 10), + (244581, 155, 10), + (244581, 154, 10), + (244581, 153, 10), + (244581, 156, 10), + (244581, 161, 10), + (244635, 91, 300), + (244635, 90, 300), + (244635, 92, 300), + (244635, 97, 300), + (244635, 95, 300), + (244635, 94, 300), + (244635, 93, 300), + (244635, 96, 300), + (244635, 221, 300), + (244635, 162, 30), + (244637, 112, 20), + (244637, 20, 20), + (244637, 380, 2), + (244637, 379, 1), + (244637, 319, 1), + (244638, 90, 500), + (244638, 92, 500), + (244638, 91, 500), + (244638, 97, 500), + (244638, 95, 500), + (244638, 93, 500), + (244638, 94, 500), + (244638, 96, 500), + (244638, 1, 500), + (244639, 90, 1400), + (244639, 92, 1400), + (244639, 91, 1400), + (244639, 97, 1400), + (244639, 95, 1400), + (244639, 93, 1400), + (244639, 94, 1400), + (244639, 96, 1400), + (244639, 1, 400), + (244639, 123, 20), + (244639, 124, 20), + (244639, 181, 20), + (244640, 20, 12), + (244640, 17, 12), + (244640, 155, 24), + (244640, 154, 24), + (244640, 153, 24), + (244640, 152, 24), + (244641, 1, 220), + (244641, 90, 1100), + (244641, 92, 1100), + (244641, 91, 1100), + (244641, 97, 1100), + (244641, 95, 1100), + (244641, 93, 1100), + (244641, 94, 1100), + (244641, 96, 1100), + (244641, 120, 22), + (244641, 155, 22), + (244641, 100, 22), + (244641, 18, 11), + (244641, 146, 11), + (244641, 157, 11), + (244641, 379, 1), + (244643, 181, 120), + (244643, 221, 120), + (244643, 130, 12), + (244643, 318, -2), + (244644, 19, 10), + (244644, 21, 10), + (244644, 160, 10), + (244644, 181, 10), + (244644, 168, 10), + (244644, 112, 10), + (244644, 133, 10), + (244644, 104, 10), + (244644, 161, 10), + (244644, 280, 10), + (244645, 221, 2000), + (244645, 1, 2000), + (244645, 21, 20), + (244647, 91, 400), + (244647, 90, 400), + (244647, 92, 200), + (244647, 97, 400), + (244647, 95, 400), + (244647, 93, 400), + (244647, 94, 200), + (244647, 96, 400), + (244647, 160, 40), + (244647, 161, 40), + (244648, 16, 10), + (244648, 152, 10), + (244648, 162, 10), + (244648, 118, 10), + (244648, 123, 10), + (244648, 45, 6), + (244650, 90, 650), + (244650, 92, 650), + (244650, 91, 650), + (244650, 97, 650), + (244650, 95, 650), + (244650, 93, 650), + (244650, 94, 325), + (244650, 96, 650), + (244650, 102, 20), + (244650, 107, 20), + (244650, 104, 20), + (244650, 118, 20), + (244650, 123, 20), + (244650, 156, 20), + (244654, 91, 1600), + (244654, 90, 1600), + (244654, 92, 1600), + (244654, 97, 1600), + (244654, 95, 1600), + (244654, 93, 1600), + (244654, 94, 1600), + (244654, 96, 1600), + (244654, 1, 400), + (244654, 128, 12), + (244654, 122, 12), + (244654, 181, 12), + (244654, 168, 12), + (244655, 1, 200), + (244655, 118, 20), + (244655, 155, 20), + (244658, 181, 125), + (244658, 143, 50), + (244659, 277, 20), + (244660, 152, 25), + (244660, 145, 25), + (244660, 91, 250), + (244660, 90, 250), + (244660, 92, 250), + (244661, 90, 200), + (244661, 92, 200), + (244661, 91, 200), + (244661, 97, 200), + (244661, 95, 200), + (244661, 93, 200), + (244661, 94, 200), + (244661, 96, 200), + (244661, 152, 10), + (244661, 105, 10), + (244661, 145, 10), + (244661, 143, 10), + (244661, 147, 10), + (244661, 155, 10), + (244661, 118, 10), + (244661, 144, 10), + (244661, 128, 10), + (244661, 123, 10), + (244662, 90, 300), + (244662, 92, 300), + (244662, 91, 300), + (244662, 97, 300), + (244662, 95, 300), + (244662, 93, 300), + (244662, 94, 300), + (244662, 96, 300), + (244662, 111, 25), + (244662, 121, 25), + (244662, 120, 25), + (244662, 152, 25), + (244663, 181, 120), + (244663, 127, 6), + (244663, 128, 6), + (244663, 129, 6), + (244663, 130, 6), + (244663, 131, 6), + (244663, 122, 6), + (244664, 91, 100), + (244664, 90, 100), + (244664, 92, 100), + (244664, 97, 100), + (244664, 95, 100), + (244664, 93, 100), + (244664, 94, 100), + (244664, 96, 100), + (244664, 1, 100), + (244664, 221, 100), + (244664, 139, 100), + (244665, 181, 120), + (244665, 127, 6), + (244665, 128, 6), + (244665, 129, 6), + (244665, 130, 6), + (244665, 131, 6), + (244665, 122, 6), + (244690, 116, 30), + (244690, 167, 30), + (244690, 123, 30), + (244690, 16, 30), + (244691, 100, 30), + (244691, 142, 30), + (244691, 155, 60), + (244691, 17, 30), + (244692, 125, 60), + (244692, 158, 60), + (244692, 141, 60), + (244692, 131, 30), + (244692, 109, 30), + (244693, 114, 30), + (244693, 148, 30), + (244693, 154, 60), + (244693, 165, 60), + (244694, 113, 30), + (244694, 151, 30), + (244694, 164, 30), + (244694, 163, 60), + (244695, 103, 30), + (244695, 112, 30), + (244695, 136, 30), + (244695, 101, 60), + (244695, 134, 60), + (244696, 115, 30), + (244696, 129, 30), + (244696, 126, 60), + (244696, 157, 60), + (244696, 382, -10), + (244697, 122, 30), + (244697, 162, 90), + (244697, 132, 60), + (244697, 153, 30), + (244698, 102, 30), + (244698, 107, 30), + (244698, 276, 30), + (244698, 1, 180), + (244699, 128, 30), + (244699, 124, 30), + (244699, 18, 30), + (244699, 159, 60), + (244700, 130, 30), + (244700, 21, 30), + (244700, 318, -10), + (244700, 221, 180), + (244701, 127, 30), + (244701, 19, 30), + (244701, 160, 60), + (244701, 168, 60), + (244702, 105, 30), + (244702, 145, 30), + (244702, 143, 30), + (244702, 277, 30), + (244703, 106, 30), + (244703, 146, 30), + (244703, 144, 30), + (244703, 20, 30), + (244704, 90, 400), + (244704, 92, 400), + (244704, 91, 400), + (244704, 97, 400), + (244704, 95, 400), + (244704, 93, 400), + (244704, 94, 400), + (244704, 96, 400), + (244704, 125, 30), + (244704, 126, 30), + (244704, 157, 30), + (244704, 158, 30), + (244704, 159, 30), + (244704, 160, 30), + (244704, 161, 30), + (244704, 162, 30), + (244704, 163, 30), + (244704, 141, 30), + (244704, 181, 12), + (244704, 1, 120), + (244704, 221, 120), + (244705, 90, 450), + (244705, 92, 450), + (244705, 91, 450), + (244705, 97, 450), + (244705, 95, 450), + (244705, 93, 450), + (244705, 94, 450), + (244705, 96, 450), + (244705, 102, 30), + (244705, 103, 30), + (244705, 106, 30), + (244705, 107, 30), + (244705, 105, 30), + (244705, 104, 30), + (244705, 145, 30), + (244705, 146, 30), + (244705, 101, 30), + (244705, 147, 30), + (244705, 108, 30), + (244705, 110, 30), + (244705, 181, 14), + (244705, 1, 140), + (244705, 221, 140), + (244712, 90, 450), + (244712, 92, 450), + (244712, 91, 450), + (244712, 97, 450), + (244712, 95, 450), + (244712, 93, 450), + (244712, 94, 450), + (244712, 96, 450), + (244712, 112, 30), + (244712, 116, 30), + (244712, 114, 30), + (244712, 115, 30), + (244712, 113, 30), + (244712, 133, 30), + (244712, 150, 30), + (244712, 151, 30), + (244712, 148, 30), + (244712, 167, 30), + (244712, 134, 30), + (244712, 109, 30), + (244712, 181, 14), + (244712, 1, 140), + (244712, 221, 140), + (244713, 90, 350), + (244713, 92, 350), + (244713, 91, 350), + (244713, 97, 350), + (244713, 95, 350), + (244713, 93, 350), + (244713, 94, 350), + (244713, 96, 350), + (244713, 164, 30), + (244713, 165, 30), + (244713, 135, 30), + (244713, 136, 30), + (244713, 181, 10), + (244713, 1, 100), + (244713, 221, 100), + (244714, 90, 675), + (244714, 92, 675), + (244714, 91, 675), + (244714, 97, 675), + (244714, 95, 675), + (244714, 93, 675), + (244714, 94, 675), + (244714, 96, 675), + (244714, 139, 30), + (244714, 156, 30), + (244714, 181, 16), + (244714, 1, 160), + (244714, 221, 160), + (244715, 90, 1100), + (244715, 92, 1100), + (244715, 91, 1100), + (244715, 97, 1100), + (244715, 95, 1100), + (244715, 93, 1100), + (244715, 94, 1100), + (244715, 96, 1100), + (244715, 118, 30), + (244715, 119, 30), + (244715, 120, 30), + (244715, 149, 30), + (244715, 154, 30), + (244715, 155, 30), + (244715, 153, 30), + (244715, 168, 30), + (244715, 156, 30), + (244715, 181, 18), + (244715, 1, 180), + (244715, 221, 180), + (244716, 90, 1000), + (244716, 92, 1000), + (244716, 91, 1000), + (244716, 97, 1000), + (244716, 95, 1000), + (244716, 93, 1000), + (244716, 94, 1000), + (244716, 96, 1000), + (244716, 127, 30), + (244716, 128, 30), + (244716, 129, 30), + (244716, 130, 30), + (244716, 131, 30), + (244716, 122, 30), + (244716, 123, 30), + (244716, 124, 30), + (244716, 181, 20), + (244716, 1, 200), + (244716, 221, 200), + (244717, 90, 1800), + (244717, 92, 1800), + (244717, 91, 1800), + (244717, 97, 1800), + (244717, 95, 1800), + (244717, 93, 1800), + (244717, 94, 1800), + (244717, 96, 1800), + (244717, 100, 30), + (244717, 142, 30), + (244717, 144, 30), + (244717, 143, 30), + (244717, 137, 30), + (244717, 111, 30), + (244717, 121, 30), + (244717, 181, 24), + (244717, 1, 240), + (244717, 221, 240), + (244718, 90, 1600), + (244718, 92, 1600), + (244718, 91, 1600), + (244718, 97, 1600), + (244718, 95, 1600), + (244718, 93, 1600), + (244718, 94, 1600), + (244718, 96, 1600), + (244718, 16, 30), + (244718, 17, 30), + (244718, 18, 30), + (244718, 19, 30), + (244718, 20, 30), + (244718, 21, 30), + (244718, 152, 30), + (244718, 132, 30), + (244718, 181, 22), + (244718, 1, 220), + (244718, 221, 220), + (244719, 221, 200), + (244719, 1, 200), + (244719, 156, 200), + (244719, 160, 200), + (244719, 161, 200), + (244719, 277, 25), + (244719, 124, 25), + (244719, 19, 5), + (244742, 277, 25), + (244742, 1, 600), + (244742, 181, 30), + (244743, 277, 25), + (244743, 1, 600), + (244743, 181, 30), + (244750, 156, 120), + (244750, 90, 300), + (244750, 92, 300), + (244750, 91, 300), + (244750, 97, 300), + (244750, 95, 300), + (244750, 93, 300), + (244750, 94, 300), + (244750, 96, 300), + (244750, 1, 1800), + (244750, 221, 1800), + (244750, 181, 30), + (244750, 124, 30), + (244761, 128, 30), + (244761, 1, 350), + (244761, 221, 350), + (244762, 128, 30), + (244762, 1, 350), + (244762, 221, 350), + (244778, 155, 90), + (244778, 1, 350), + (244778, 129, 30), + (244779, 155, 90), + (244779, 1, 350), + (244779, 129, 30), + (244782, 128, 30), + (244782, 277, 30), + (244782, 1, 500), + (244783, 128, 30), + (244783, 277, 30), + (244783, 1, 500), + (244784, 277, 30), + (244784, 1, 750), + (244784, 181, 30), + (244785, 277, 30), + (244785, 1, 750), + (244785, 181, 30), + (244801, 276, 25), + (244801, 1, 750), + (244801, 181, 35), + (244802, 276, 25), + (244802, 1, 750), + (244802, 181, 35), + (244820, 276, 30), + (244820, 164, 120), + (244820, 154, 60), + (244821, 276, 30), + (244821, 164, 120), + (244821, 154, 60), + (244842, 154, 90), + (244842, 1, 350), + (244842, 127, 30), + (244843, 154, 90), + (244843, 1, 350), + (244843, 127, 30), + (244859, 153, 100), + (244859, 1, 500), + (244859, 181, 50), + (244862, 153, 100), + (244862, 1, 500), + (244862, 181, 50), + (244909, 1, 400), + (244909, 131, 30), + (244909, 221, 400), + (244910, 1, 400), + (244910, 131, 30), + (244910, 221, 400), + (244911, 1, 400), + (244911, 130, 30), + (244911, 221, 400), + (244912, 1, 400), + (244912, 130, 30), + (244912, 221, 400), + (244913, 128, 50), + (244913, 127, 50), + (244913, 122, 50), + (244914, 128, 50), + (244914, 127, 50), + (244914, 122, 50), + (244988, 16, 50), + (244988, 18, 50), + (244988, 45, 6), + (244989, 19, 50), + (244989, 21, 50), + (244989, 45, 6), + (244990, 20, 50), + (244990, 17, 50), + (244990, 45, 6), + (244992, 161, 6), + (244992, 20, 3), + (244993, 124, 6), + (244993, 20, 3), + (245025, 45, 3), + (245025, 125, 20), + (245025, 126, 20), + (245025, 157, 20), + (245025, 158, 20), + (245025, 159, 10), + (245025, 160, 10), + (245025, 162, 10), + (245025, 163, 10), + (245025, 141, 5), + (245092, 91, 10), + (245118, 90, 80), + (245118, 91, 90), + (245118, 92, 80), + (245118, 93, 90), + (245118, 94, 90), + (245118, 95, 20), + (245118, 96, 90), + (245118, 97, 20), + (245118, 118, 7), + (245118, 119, 7), + (245118, 120, 7), + (245119, 90, 80), + (245119, 91, 90), + (245119, 92, 80), + (245119, 93, 90), + (245119, 94, 90), + (245119, 95, 20), + (245119, 96, 90), + (245119, 97, 20), + (245119, 118, 10), + (245119, 119, 10), + (245119, 120, 10), + (245120, 90, 195), + (245120, 91, 220), + (245120, 92, 195), + (245120, 93, 220), + (245120, 94, 220), + (245120, 95, 45), + (245120, 96, 220), + (245120, 97, 45), + (245120, 118, 17), + (245120, 119, 17), + (245120, 120, 17), + (245122, 90, 115), + (245122, 91, 130), + (245122, 92, 115), + (245122, 93, 130), + (245122, 94, 130), + (245122, 95, 35), + (245122, 96, 130), + (245122, 97, 35), + (245122, 118, 15), + (245122, 119, 15), + (245122, 120, 15), + (245123, 90, 315), + (245123, 91, 360), + (245123, 92, 315), + (245123, 93, 360), + (245123, 94, 360), + (245123, 95, 90), + (245123, 96, 360), + (245123, 97, 90), + (245123, 118, 15), + (245123, 119, 15), + (245123, 120, 15), + (245124, 90, 230), + (245124, 91, 265), + (245124, 92, 230), + (245124, 93, 265), + (245124, 94, 265), + (245124, 95, 65), + (245124, 96, 265), + (245124, 97, 65), + (245124, 118, 12), + (245124, 119, 12), + (245124, 120, 12), + (245125, 90, 35), + (245125, 91, 40), + (245125, 92, 35), + (245125, 93, 40), + (245125, 94, 40), + (245125, 95, 10), + (245125, 96, 40), + (245125, 97, 10), + (245125, 118, 7), + (245125, 119, 7), + (245125, 120, 7), + (245135, 91, 465), + (245135, 90, 465), + (245135, 92, 465), + (245135, 93, 600), + (245135, 94, 600), + (245135, 95, 595), + (245135, 96, 600), + (245135, 97, 465), + (245139, 17, 1), + (245139, 123, 1), + (245139, 162, 1), + (245139, 152, 10), + (245170, 91, 400), + (245170, 90, 465), + (245170, 92, 500), + (245170, 93, 595), + (245170, 94, 595), + (245170, 95, 595), + (245170, 96, 500), + (245170, 97, 465), + (245175, 91, 90), + (245175, 90, 80), + (245175, 92, 80), + (245175, 97, 20), + (245175, 95, 20), + (245175, 94, 90), + (245175, 93, 90), + (245175, 96, 90), + (245175, 118, 10), + (245175, 119, 10), + (245175, 120, 10), + (245175, 152, 1), + (245175, 153, 3), + (245175, 154, 3), + (245175, 155, 3), + (245176, 91, 180), + (245176, 90, 155), + (245176, 92, 155), + (245176, 97, 45), + (245176, 95, 45), + (245176, 94, 180), + (245176, 93, 180), + (245176, 96, 180), + (245176, 118, 15), + (245176, 119, 15), + (245176, 120, 15), + (245176, 152, 2), + (245176, 153, 5), + (245176, 154, 5), + (245176, 155, 5), + (245177, 91, 360), + (245177, 90, 315), + (245177, 92, 315), + (245177, 97, 90), + (245177, 95, 90), + (245177, 94, 360), + (245177, 93, 360), + (245177, 96, 360), + (245177, 118, 15), + (245177, 119, 15), + (245177, 120, 15), + (245177, 152, 2), + (245177, 153, 5), + (245177, 154, 5), + (245177, 155, 5), + (245178, 91, 720), + (245178, 90, 630), + (245178, 92, 630), + (245178, 97, 180), + (245178, 95, 180), + (245178, 94, 720), + (245178, 93, 720), + (245178, 96, 720), + (245178, 118, 20), + (245178, 119, 20), + (245178, 120, 20), + (245178, 152, 6), + (245178, 153, 10), + (245178, 154, 10), + (245178, 155, 10), + (245179, 91, 90), + (245179, 90, 80), + (245179, 92, 80), + (245179, 97, 20), + (245179, 95, 20), + (245179, 94, 90), + (245179, 93, 90), + (245179, 96, 90), + (245179, 118, 7), + (245179, 119, 7), + (245179, 120, 7), + (245179, 152, 1), + (245179, 153, 2), + (245179, 154, 2), + (245179, 155, 2), + (245180, 91, 180), + (245180, 90, 155), + (245180, 92, 155), + (245180, 97, 45), + (245180, 95, 45), + (245180, 94, 180), + (245180, 93, 180), + (245180, 96, 180), + (245180, 118, 10), + (245180, 119, 10), + (245180, 120, 10), + (245180, 152, 2), + (245180, 153, 3), + (245180, 154, 3), + (245180, 155, 3), + (245181, 91, 220), + (245181, 90, 195), + (245181, 92, 195), + (245181, 97, 45), + (245181, 95, 45), + (245181, 94, 220), + (245181, 93, 220), + (245181, 96, 220), + (245181, 118, 17), + (245181, 119, 17), + (245181, 120, 17), + (245181, 152, 1), + (245181, 153, 4), + (245181, 154, 4), + (245181, 155, 4), + (245182, 91, 445), + (245182, 90, 390), + (245182, 92, 390), + (245182, 97, 110), + (245182, 95, 110), + (245182, 94, 445), + (245182, 93, 445), + (245182, 96, 445), + (245182, 118, 30), + (245182, 119, 30), + (245182, 120, 30), + (245182, 152, 2), + (245182, 153, 8), + (245182, 154, 8), + (245182, 155, 8), + (245183, 91, 130), + (245183, 90, 115), + (245183, 92, 115), + (245183, 97, 35), + (245183, 95, 35), + (245183, 94, 130), + (245183, 93, 130), + (245183, 96, 130), + (245183, 118, 15), + (245183, 119, 15), + (245183, 120, 15), + (245183, 152, 1), + (245183, 153, 3), + (245183, 154, 3), + (245183, 155, 3), + (245184, 91, 265), + (245184, 90, 230), + (245184, 92, 230), + (245184, 97, 65), + (245184, 95, 65), + (245184, 94, 265), + (245184, 93, 265), + (245184, 96, 265), + (245184, 118, 25), + (245184, 119, 25), + (245184, 120, 25), + (245184, 152, 2), + (245184, 153, 5), + (245184, 154, 5), + (245184, 155, 5), + (245185, 91, 40), + (245185, 90, 35), + (245185, 92, 35), + (245185, 97, 10), + (245185, 95, 10), + (245185, 94, 40), + (245185, 93, 40), + (245185, 96, 40), + (245185, 118, 7), + (245185, 119, 7), + (245185, 120, 7), + (245185, 152, 1), + (245185, 153, 1), + (245185, 154, 1), + (245185, 155, 1), + (245186, 91, 85), + (245186, 90, 75), + (245186, 92, 75), + (245186, 97, 20), + (245186, 95, 20), + (245186, 94, 85), + (245186, 93, 85), + (245186, 96, 85), + (245186, 118, 10), + (245186, 119, 10), + (245186, 120, 10), + (245186, 152, 1), + (245186, 153, 2), + (245186, 154, 2), + (245186, 155, 2), + (245187, 91, 265), + (245187, 90, 230), + (245187, 92, 230), + (245187, 97, 65), + (245187, 95, 65), + (245187, 94, 265), + (245187, 93, 265), + (245187, 96, 265), + (245187, 118, 12), + (245187, 119, 12), + (245187, 120, 12), + (245187, 152, 1), + (245187, 153, 3), + (245187, 154, 3), + (245187, 155, 3), + (245188, 91, 540), + (245188, 90, 470), + (245188, 92, 470), + (245188, 97, 135), + (245188, 95, 135), + (245188, 94, 540), + (245188, 93, 540), + (245188, 96, 540), + (245188, 118, 15), + (245188, 119, 15), + (245188, 120, 15), + (245188, 152, 2), + (245188, 153, 5), + (245188, 154, 5), + (245188, 155, 5), + (245217, 19, 12), + (245217, 221, 75), + (245218, 19, 12), + (245218, 221, 75), + (245219, 19, 15), + (245219, 221, 100), + (245220, 19, 15), + (245220, 221, 100), + (245221, 19, 22), + (245221, 221, 130), + (245221, 319, 1), + (245222, 19, 22), + (245222, 221, 130), + (245222, 319, 1), + (245223, 19, 25), + (245223, 221, 150), + (245223, 319, 3), + (245276, 316, 23), + (245276, 97, 250), + (245278, 97, 250), + (245302, 96, 450), + (245302, 95, 450), + (245302, 221, 225), + (245302, 311, 25), + (245302, 317, 25), + (245302, 168, 25), + (245303, 90, 200), + (245303, 91, 600), + (245303, 1, 200), + (245303, 145, 20), + (245303, 317, 20), + (245303, 123, 20), + (245303, 135, 20), + (245319, 1, 300), + (245319, 132, -100), + (245320, 152, -100), + (245320, 221, 300), + (245321, 20, -5), + (245321, 19, -5), + (245321, 136, -25), + (245321, 16, 5), + (245321, 276, 5), + (245321, 118, 25), + (245324, 102, 2), + (245324, 103, 2), + (245324, 106, 2), + (245324, 107, 2), + (245324, 105, 2), + (245324, 104, 2), + (245324, 145, 2), + (245324, 146, 2), + (245324, 101, 2), + (245324, 147, 2), + (245324, 108, 2), + (245324, 109, 2), + (245324, 110, 2), + (245324, 111, 2), + (245324, 112, 2), + (245324, 116, 2), + (245324, 114, 2), + (245324, 115, 2), + (245324, 113, 2), + (245324, 133, 2), + (245324, 150, 2), + (245324, 151, 2), + (245324, 148, 2), + (245324, 167, 2), + (245324, 121, 2), + (245324, 134, 2), + (245339, 93, 225), + (245339, 95, 450), + (245339, 92, 450), + (245339, 97, 450), + (245339, 91, 450), + (245339, 96, 225), + (245339, 90, 450), + (245339, 94, 450), + (245339, 136, 20), + (245339, 119, 20), + (245339, 154, 20), + (245339, 153, 20), + (245339, 128, 10), + (245339, 1, 100), + (245355, 91, 200), + (245355, 90, 200), + (245355, 97, 200), + (245355, 95, 200), + (245355, 93, 200), + (245355, 96, 200), + (245355, 92, 300), + (245355, 94, 300), + (245355, 165, 30), + (245355, 125, 30), + (245355, 181, 10), + (245357, 91, 900), + (245357, 90, 900), + (245357, 97, 900), + (245357, 95, 900), + (245357, 93, 900), + (245357, 96, 900), + (245357, 92, 900), + (245357, 94, 300), + (245357, 1, 150), + (245357, 221, 150), + (245357, 181, 15), + (245357, 162, 15), + (245372, 91, 500), + (245372, 90, 500), + (245372, 97, 250), + (245372, 95, 250), + (245372, 93, 500), + (245372, 96, 500), + (245372, 92, 500), + (245372, 94, 500), + (245372, 1, 100), + (245372, 221, 100), + (245372, 144, 25), + (245372, 145, 25), + (245372, 164, 25), + (245409, 91, 600), + (245409, 90, 600), + (245409, 97, 600), + (245409, 95, 600), + (245409, 93, 600), + (245409, 96, 600), + (245409, 92, 600), + (245409, 94, 600), + (245409, 1, 100), + (245409, 122, 20), + (245409, 129, 20), + (245409, 130, 20), + (245409, 131, 20), + (245409, 127, 20), + (245409, 128, 20), + (245409, 20, 5), + (245409, 168, 20), + (245424, 91, 200), + (245424, 90, 200), + (245424, 97, 200), + (245424, 95, 200), + (245424, 93, 200), + (245424, 96, 200), + (245424, 92, 200), + (245424, 94, 200), + (245424, 1, 400), + (245424, 181, 10), + (245424, 161, 10), + (245424, 168, 10), + (245424, 150, 10), + (245425, 1, 200), + (245425, 105, 10), + (245426, 1, 200), + (245426, 105, 10), + (245427, 1, 200), + (245427, 105, 10), + (245427, 45, 5), + (245428, 100, 10), + (245428, 136, 15), + (245428, 120, 30), + (245429, 45, 5), + (245429, 18, 5), + (245429, 1, 50), + (245429, 128, 5), + (245430, 91, 400), + (245430, 90, 400), + (245430, 92, 400), + (245430, 94, 400), + (245430, 97, 400), + (245430, 95, 400), + (245430, 93, 400), + (245430, 96, 400), + (245430, 136, 40), + (245430, 153, 40), + (245430, 1, 80), + (245430, 221, 80), + (245433, 91, 250), + (245433, 90, 250), + (245433, 97, 250), + (245433, 95, 250), + (245433, 93, 250), + (245433, 96, 250), + (245433, 92, 250), + (245433, 94, 250), + (245433, 103, 2), + (245433, 147, 2), + (245433, 146, 2), + (245433, 276, 2), + (245433, 101, 2), + (245433, 142, 2), + (245433, 118, 2), + (245433, 16, 2), + (245433, 17, 2), + (245433, 110, 2), + (245433, 152, 25), + (245450, 156, 50), + (245450, 139, 50), + (245450, 91, 500), + (245450, 90, 500), + (245450, 92, 500), + (245450, 94, 500), + (245450, 97, 500), + (245450, 95, 500), + (245450, 93, 500), + (245450, 96, 500), + (245450, 1, 250), + (245450, 123, 50), + (245481, 1, 50), + (245481, 168, 5), + (245481, 153, 5), + (245481, 154, 5), + (245482, 280, 20), + (245482, 282, 20), + (245482, 317, 20), + (245482, 281, 20), + (245482, 152, 20), + (245482, 132, 20), + (245482, 168, 20), + (245484, 91, 200), + (245484, 90, 200), + (245484, 97, 200), + (245484, 95, 200), + (245484, 92, 200), + (245484, 152, -50), + (245484, 221, 200), + (245484, 162, 20), + (245484, 156, 20), + (245484, 155, 20), + (245484, 168, 20), + (245484, 104, 20), + (245505, 91, 20), + (245505, 90, 20), + (245505, 92, 20), + (245505, 97, 20), + (245505, 95, 20), + (245505, 93, 20), + (245505, 94, 20), + (245505, 96, 20), + (245505, 112, 2), + (245505, 150, 2), + (245505, 115, 2), + (245505, 161, 1), + (245506, 91, 20), + (245506, 90, 20), + (245506, 92, 20), + (245506, 97, 20), + (245506, 95, 20), + (245506, 93, 20), + (245506, 94, 20), + (245506, 96, 20), + (245506, 112, 2), + (245506, 150, 2), + (245506, 115, 2), + (245506, 161, 1), + (245508, 91, 20), + (245508, 90, 20), + (245508, 92, 20), + (245508, 97, 20), + (245508, 95, 20), + (245508, 93, 20), + (245508, 94, 20), + (245508, 96, 20), + (245508, 112, 2), + (245508, 150, 2), + (245508, 115, 2), + (245508, 161, 1), + (245509, 91, 20), + (245509, 90, 20), + (245509, 92, 20), + (245509, 97, 20), + (245509, 95, 20), + (245509, 93, 20), + (245509, 94, 20), + (245509, 96, 20), + (245509, 112, 2), + (245509, 150, 2), + (245509, 115, 2), + (245509, 161, 1), + (245510, 91, 30), + (245510, 90, 30), + (245510, 92, 30), + (245510, 97, 30), + (245510, 95, 30), + (245510, 93, 30), + (245510, 94, 30), + (245510, 96, 30), + (245510, 112, 2), + (245510, 150, 2), + (245510, 115, 2), + (245510, 161, 1), + (245510, 319, 1), + (245511, 91, 30), + (245511, 90, 30), + (245511, 92, 30), + (245511, 97, 30), + (245511, 95, 30), + (245511, 93, 30), + (245511, 94, 30), + (245511, 96, 30), + (245511, 112, 2), + (245511, 150, 2), + (245511, 115, 2), + (245511, 161, 1), + (245511, 319, 1), + (245513, 91, 15), + (245513, 90, 15), + (245513, 92, 15), + (245513, 97, 15), + (245513, 95, 15), + (245513, 93, 15), + (245513, 94, 15), + (245513, 96, 15), + (245513, 112, 2), + (245513, 150, 2), + (245513, 115, 2), + (245513, 161, 1), + (245514, 91, 15), + (245514, 90, 15), + (245514, 92, 15), + (245514, 97, 15), + (245514, 95, 15), + (245514, 93, 15), + (245514, 94, 15), + (245514, 96, 15), + (245514, 127, 1), + (245514, 128, 1), + (245514, 129, 1), + (245514, 130, 1), + (245514, 131, 1), + (245514, 122, 1), + (245514, 132, 2), + (245515, 91, 10), + (245515, 90, 10), + (245515, 92, 10), + (245515, 97, 10), + (245515, 95, 10), + (245515, 93, 10), + (245515, 94, 10), + (245515, 96, 10), + (245515, 127, 1), + (245515, 128, 1), + (245515, 129, 1), + (245515, 130, 1), + (245515, 131, 1), + (245515, 122, 1), + (245515, 132, 2), + (245516, 91, 20), + (245516, 90, 20), + (245516, 92, 20), + (245516, 97, 20), + (245516, 95, 20), + (245516, 93, 20), + (245516, 94, 20), + (245516, 96, 20), + (245516, 127, 1), + (245516, 128, 1), + (245516, 129, 1), + (245516, 130, 1), + (245516, 131, 1), + (245516, 122, 1), + (245516, 132, 2), + (245516, 318, -2), + (245517, 91, 10), + (245517, 90, 10), + (245517, 92, 10), + (245517, 97, 10), + (245517, 95, 10), + (245517, 93, 10), + (245517, 94, 10), + (245517, 96, 10), + (245517, 127, 1), + (245517, 128, 1), + (245517, 129, 1), + (245517, 130, 1), + (245517, 131, 1), + (245517, 122, 1), + (245517, 132, 2), + (245518, 91, 10), + (245518, 90, 10), + (245518, 92, 10), + (245518, 97, 10), + (245518, 95, 10), + (245518, 93, 10), + (245518, 94, 10), + (245518, 96, 10), + (245518, 127, 1), + (245518, 128, 1), + (245518, 129, 1), + (245518, 130, 1), + (245518, 131, 1), + (245518, 122, 1), + (245518, 132, 2), + (245519, 91, 15), + (245519, 90, 15), + (245519, 92, 15), + (245519, 97, 15), + (245519, 95, 15), + (245519, 93, 15), + (245519, 94, 15), + (245519, 96, 15), + (245519, 155, 4), + (245519, 154, 4), + (245519, 153, 4), + (245519, 118, 4), + (245519, 119, 4), + (245519, 120, 4), + (245519, 156, 4), + (245520, 91, 10), + (245520, 90, 10), + (245520, 92, 10), + (245520, 97, 10), + (245520, 95, 10), + (245520, 93, 10), + (245520, 94, 10), + (245520, 96, 10), + (245520, 155, 4), + (245520, 154, 4), + (245520, 153, 4), + (245520, 118, 4), + (245520, 119, 4), + (245520, 120, 4), + (245520, 156, 4), + (245521, 91, 10), + (245521, 90, 10), + (245521, 92, 10), + (245521, 97, 10), + (245521, 95, 10), + (245521, 93, 10), + (245521, 94, 10), + (245521, 96, 10), + (245521, 155, 4), + (245521, 154, 4), + (245521, 153, 4), + (245521, 118, 4), + (245521, 119, 4), + (245521, 120, 4), + (245521, 156, 4), + (245522, 91, 10), + (245522, 90, 10), + (245522, 92, 10), + (245522, 97, 10), + (245522, 95, 10), + (245522, 93, 10), + (245522, 94, 10), + (245522, 96, 10), + (245522, 155, 4), + (245522, 154, 4), + (245522, 153, 4), + (245522, 118, 4), + (245522, 119, 4), + (245522, 120, 4), + (245522, 156, 4), + (245523, 91, 20), + (245523, 90, 20), + (245523, 92, 20), + (245523, 97, 20), + (245523, 95, 20), + (245523, 93, 20), + (245523, 94, 20), + (245523, 96, 20), + (245523, 155, 4), + (245523, 154, 4), + (245523, 153, 4), + (245523, 118, 4), + (245523, 119, 4), + (245523, 120, 4), + (245523, 156, 4), + (245523, 379, 1), + (245524, 91, 20), + (245524, 90, 20), + (245524, 92, 20), + (245524, 97, 20), + (245524, 95, 20), + (245524, 93, 20), + (245524, 94, 20), + (245524, 96, 20), + (245524, 276, 1), + (245524, 277, 1), + (245524, 142, 1), + (245524, 152, 2), + (245525, 91, 20), + (245525, 90, 20), + (245525, 92, 20), + (245525, 97, 20), + (245525, 95, 20), + (245525, 93, 20), + (245525, 94, 20), + (245525, 96, 20), + (245525, 276, 1), + (245525, 277, 1), + (245525, 142, 1), + (245525, 152, 2), + (245526, 91, 20), + (245526, 90, 20), + (245526, 92, 20), + (245526, 97, 20), + (245526, 95, 20), + (245526, 93, 20), + (245526, 94, 20), + (245526, 96, 20), + (245526, 276, 1), + (245526, 277, 1), + (245526, 142, 1), + (245526, 152, 2), + (245528, 91, 15), + (245528, 90, 15), + (245528, 92, 15), + (245528, 97, 15), + (245528, 95, 15), + (245528, 93, 15), + (245528, 94, 15), + (245528, 96, 15), + (245528, 276, 1), + (245528, 277, 1), + (245528, 142, 1), + (245528, 152, 2), + (245529, 91, 30), + (245529, 90, 30), + (245529, 92, 30), + (245529, 97, 30), + (245529, 95, 30), + (245529, 93, 30), + (245529, 94, 30), + (245529, 96, 30), + (245529, 276, 1), + (245529, 277, 1), + (245529, 142, 1), + (245529, 152, 2), + (245571, 91, 600), + (245571, 90, 600), + (245571, 92, 400), + (245571, 94, 400), + (245571, 97, 600), + (245571, 95, 600), + (245571, 93, 600), + (245571, 96, 600), + (245571, 1, 200), + (245571, 168, 20), + (245572, 1, 150), + (245573, 1, 150), + (245574, 1, 250), + (245575, 1, 75), + (245575, 221, 75), + (245576, 1, 75), + (245576, 221, 75), + (245577, 1, 125), + (245577, 221, 125), + (245578, 19, 20), + (245578, 221, 75), + (245579, 19, 20), + (245579, 221, 75), + (245580, 19, 25), + (245580, 221, 125), + (245582, 276, 8), + (245582, 343, 2), + (245582, 101, 16), + (245583, 276, 8), + (245583, 343, 2), + (245583, 101, 16), + (245584, 276, 10), + (245584, 343, 4), + (245584, 101, 20), + (245585, 90, 60), + (245585, 91, 60), + (245585, 92, 60), + (245585, 93, 60), + (245585, 94, 60), + (245585, 95, 60), + (245585, 96, 60), + (245585, 97, 60), + (245585, 100, 1), + (245585, 101, 1), + (245585, 102, 1), + (245585, 103, 1), + (245585, 104, 1), + (245585, 105, 1), + (245585, 106, 1), + (245585, 107, 1), + (245585, 108, 1), + (245585, 109, 1), + (245585, 110, 1), + (245585, 111, 1), + (245585, 112, 1), + (245585, 113, 1), + (245585, 114, 1), + (245585, 115, 1), + (245585, 116, 1), + (245585, 121, 1), + (245585, 133, 1), + (245585, 134, 1), + (245585, 142, 1), + (245585, 143, 1), + (245585, 144, 1), + (245585, 145, 1), + (245585, 146, 1), + (245585, 147, 1), + (245585, 148, 1), + (245585, 150, 1), + (245585, 151, 1), + (245585, 167, 1), + (245593, 91, 500), + (245593, 90, 500), + (245593, 92, 500), + (245593, 97, 500), + (245593, 95, 500), + (245593, 94, 500), + (245593, 93, 500), + (245593, 96, 500), + (245593, 1, 160), + (245593, 114, 12), + (245593, 148, 12), + (245593, 161, 6), + (245595, 221, 400), + (245595, 18, 20), + (245595, 181, 20), + (245597, 141, 15), + (245597, 382, -1), + (245605, 123, 10), + (245605, 1, 50), + (245605, 91, 200), + (245606, 123, 10), + (245606, 1, 50), + (245606, 91, 200), + (245607, 123, 15), + (245607, 1, 75), + (245607, 91, 300), + (245629, 168, 5), + (245630, 168, 5), + (245631, 168, 10), + (245632, 168, 10), + (245633, 168, 15), + (245634, 168, 15), + (245635, 168, 20), + (245636, 168, 20), + (245637, 168, 30), + (245638, 168, 30), + (245639, 168, 40), + (245640, 168, 40), + (245641, 168, 50), + (245656, 91, 350), + (245656, 90, 350), + (245656, 92, 175), + (245656, 97, 175), + (245656, 95, 175), + (245656, 94, 175), + (245656, 93, 175), + (245656, 96, 100), + (245656, 221, 175), + (245657, 91, 400), + (245657, 90, 400), + (245657, 92, 400), + (245657, 97, 400), + (245657, 95, 400), + (245657, 94, 400), + (245657, 93, 400), + (245657, 96, 400), + (245657, 1, 200), + (245657, 136, 20), + (245657, 164, 20), + (245657, 156, 20), + (245657, 155, 20), + (245657, 154, 20), + (245657, 153, 20), + (245657, 118, 20), + (245657, 119, 20), + (245657, 120, 20), + (245659, 116, 20), + (245659, 133, 20), + (245660, 105, 20), + (245660, 107, 20), + (245661, 91, 110), + (245661, 94, 120), + (245661, 92, 120), + (245661, 90, 110), + (245661, 95, 80), + (245661, 97, 80), + (245661, 93, 50), + (245661, 96, 50), + (245661, 19, 3), + (245661, 221, 9), + (245661, 18, 3), + (245661, 1, 9), + (245664, 91, 200), + (245664, 90, 200), + (245664, 92, 200), + (245664, 97, 200), + (245664, 95, 200), + (245664, 93, 200), + (245664, 94, 200), + (245664, 96, 200), + (245664, 221, 25), + (245664, 1, 25), + (245664, 125, 25), + (245664, 126, 25), + (245664, 157, 25), + (245664, 158, 25), + (245664, 163, 25), + (245664, 141, 25), + (245665, 137, 20), + (245665, 136, 20), + (245665, 156, 20), + (245665, 153, 20), + (245669, 92, 999), + (245669, 91, 999), + (245669, 90, 999), + (245669, 1, 333), + (245671, 91, 450), + (245671, 90, 450), + (245671, 92, 450), + (245671, 94, 450), + (245671, 97, 450), + (245671, 95, 450), + (245671, 93, 450), + (245671, 96, 450), + (245671, 1, 150), + (245671, 221, 150), + (245671, 181, 15), + (245671, 136, 15), + (245671, 137, 15), + (245672, 125, 20), + (245672, 126, 20), + (245672, 157, 20), + (245672, 158, 20), + (245672, 165, 20), + (245672, 135, 20), + (245672, 161, 10), + (245672, 136, 10), + (245672, 131, 10), + (245674, 137, 12), + (245674, 319, 6), + (245674, 382, -3), + (245675, 154, 64), + (245675, 155, 64), + (245675, 153, 64), + (245675, 156, 64), + (245675, 91, 640), + (245675, 90, 640), + (245675, 92, 640), + (245675, 97, 640), + (245675, 95, 640), + (245675, 93, 640), + (245675, 94, 640), + (245675, 96, 640), + (245675, 1, 64), + (245675, 221, 64), + (245676, 91, 640), + (245676, 90, 640), + (245676, 92, 640), + (245676, 97, 640), + (245676, 95, 640), + (245676, 93, 640), + (245676, 94, 640), + (245676, 96, 640), + (245676, 1, 64), + (245676, 221, 64), + (245677, 93, 500), + (245677, 95, 500), + (245677, 92, 250), + (245677, 97, 500), + (245677, 91, 500), + (245677, 96, 500), + (245677, 90, 500), + (245677, 94, 250), + (245677, 118, 50), + (245677, 119, 50), + (245677, 120, 50), + (245677, 149, 25), + (245677, 156, 25), + (245677, 382, -5), + (245677, 17, 5), + (245678, 379, 1), + (245678, 319, 1), + (245679, 379, 1), + (245679, 319, 1), + (245680, 379, 1), + (245680, 319, 2), + (245682, 91, 100), + (245682, 90, 100), + (245682, 97, 100), + (245682, 95, 100), + (245682, 93, 100), + (245682, 96, 100), + (245682, 92, 500), + (245682, 94, 500), + (245682, 221, 500), + (245694, 91, 1250), + (245694, 90, 1250), + (245694, 92, 1250), + (245694, 97, 1250), + (245694, 95, 1250), + (245694, 93, 1250), + (245694, 94, 1250), + (245694, 96, 1250), + (245694, 1, 400), + (245694, 221, 600), + (245694, 156, 60), + (245694, 168, 60), + (245694, 149, 60), + (245694, 136, 18), + (245694, 122, 18), + (245694, 129, 18), + (245694, 162, 18), + (245718, 21, 6), + (245718, 19, 6), + (245718, 129, 6), + (245718, 130, 6), + (245718, 124, 6), + (245718, 144, 6), + (245718, 162, 12), + (245718, 157, 12), + (245718, 160, 12), + (245718, 149, 12), + (245718, 168, 12), + (245718, 133, 12), + (245718, 90, 400), + (245718, 91, 400), + (245719, 21, 6), + (245719, 19, 6), + (245719, 129, 6), + (245719, 130, 6), + (245719, 124, 6), + (245719, 144, 6), + (245719, 162, 12), + (245719, 157, 12), + (245719, 160, 12), + (245719, 149, 12), + (245719, 168, 12), + (245719, 133, 12), + (245719, 20, 6), + (245719, 17, 6), + (245719, 122, 6), + (245719, 131, 6), + (245719, 151, 6), + (245719, 134, 6), + (245719, 136, 12), + (245719, 164, 12), + (245719, 119, 12), + (245719, 154, 12), + (245719, 112, 12), + (245719, 90, 400), + (245719, 91, 400), + (245719, 97, 400), + (245719, 95, 400), + (245720, 20, 6), + (245720, 17, 6), + (245720, 122, 6), + (245720, 131, 6), + (245720, 151, 6), + (245720, 134, 6), + (245720, 136, 12), + (245720, 164, 12), + (245720, 119, 12), + (245720, 154, 12), + (245720, 112, 12), + (245720, 97, 400), + (245720, 95, 400), + (245721, 21, 6), + (245721, 19, 6), + (245721, 129, 6), + (245721, 130, 6), + (245721, 124, 6), + (245721, 144, 6), + (245721, 162, 12), + (245721, 157, 12), + (245721, 160, 12), + (245721, 149, 12), + (245721, 168, 12), + (245721, 133, 12), + (245721, 20, 6), + (245721, 17, 6), + (245721, 122, 6), + (245721, 131, 6), + (245721, 151, 6), + (245721, 134, 6), + (245721, 136, 12), + (245721, 164, 12), + (245721, 119, 12), + (245721, 154, 12), + (245721, 112, 12), + (245721, 16, 6), + (245721, 18, 6), + (245721, 128, 6), + (245721, 127, 6), + (245721, 115, 6), + (245721, 116, 6), + (245721, 167, 12), + (245721, 142, 12), + (245721, 107, 12), + (245721, 105, 12), + (245721, 104, 12), + (245721, 181, 12), + (245721, 90, 400), + (245721, 91, 400), + (245721, 97, 400), + (245721, 95, 400), + (245721, 92, 400), + (245721, 94, 400), + (245722, 16, 6), + (245722, 18, 6), + (245722, 128, 6), + (245722, 127, 6), + (245722, 115, 6), + (245722, 116, 6), + (245722, 167, 12), + (245722, 142, 12), + (245722, 107, 12), + (245722, 105, 12), + (245722, 104, 12), + (245722, 181, 12), + (245722, 92, 400), + (245722, 94, 400), + (245723, 21, 6), + (245723, 19, 6), + (245723, 129, 6), + (245723, 130, 6), + (245723, 124, 6), + (245723, 144, 6), + (245723, 162, 12), + (245723, 157, 12), + (245723, 160, 12), + (245723, 149, 12), + (245723, 168, 12), + (245723, 133, 12), + (245723, 20, 6), + (245723, 17, 6), + (245723, 122, 6), + (245723, 131, 6), + (245723, 151, 6), + (245723, 134, 6), + (245723, 136, 12), + (245723, 164, 12), + (245723, 119, 12), + (245723, 154, 12), + (245723, 112, 12), + (245723, 16, 6), + (245723, 18, 6), + (245723, 128, 6), + (245723, 127, 6), + (245723, 115, 6), + (245723, 116, 6), + (245723, 167, 12), + (245723, 142, 12), + (245723, 107, 12), + (245723, 105, 12), + (245723, 104, 12), + (245723, 181, 12), + (245723, 152, 30), + (245723, 132, 30), + (245723, 113, 6), + (245723, 103, 6), + (245723, 102, 6), + (245723, 101, 6), + (245723, 148, 12), + (245723, 145, 12), + (245723, 143, 12), + (245723, 153, 12), + (245723, 155, 12), + (245723, 123, 12), + (245723, 1, 60), + (245723, 221, 60), + (245723, 106, 6), + (245723, 146, 6), + (245723, 147, 6), + (245723, 147, 6), + (245723, 114, 6), + (245723, 159, 6), + (245723, 163, 12), + (245723, 126, 12), + (245723, 125, 12), + (245723, 158, 12), + (245723, 120, 12), + (245723, 118, 12), + (245723, 276, 24), + (245723, 277, 24), + (245723, 90, 400), + (245723, 91, 400), + (245723, 97, 400), + (245723, 95, 400), + (245723, 92, 400), + (245723, 94, 400), + (245723, 93, 400), + (245723, 96, 400), + (245723, 111, 12), + (245723, 121, 12), + (245723, 109, 12), + (245723, 108, 12), + (245723, 110, 12), + (245723, 100, 12), + (245728, 152, 30), + (245728, 132, 30), + (245728, 113, 6), + (245728, 103, 6), + (245728, 102, 6), + (245728, 101, 6), + (245728, 148, 12), + (245728, 145, 12), + (245728, 143, 12), + (245728, 153, 12), + (245728, 155, 12), + (245728, 123, 12), + (245728, 93, 400), + (245728, 96, 400), + (245729, 1, 60), + (245729, 221, 60), + (245729, 106, 6), + (245729, 146, 6), + (245729, 147, 6), + (245729, 147, 6), + (245729, 114, 6), + (245729, 159, 6), + (245729, 163, 12), + (245729, 126, 12), + (245729, 125, 12), + (245729, 158, 12), + (245729, 120, 12), + (245729, 118, 12), + (245729, 276, 24), + (245729, 277, 24), + (245730, 152, 30), + (245730, 132, 30), + (245730, 113, 6), + (245730, 103, 6), + (245730, 102, 6), + (245730, 101, 6), + (245730, 148, 12), + (245730, 145, 12), + (245730, 143, 12), + (245730, 153, 12), + (245730, 155, 12), + (245730, 123, 12), + (245730, 1, 60), + (245730, 221, 60), + (245730, 106, 6), + (245730, 146, 6), + (245730, 147, 6), + (245730, 147, 6), + (245730, 114, 6), + (245730, 159, 6), + (245730, 163, 12), + (245730, 126, 12), + (245730, 125, 12), + (245730, 158, 12), + (245730, 120, 12), + (245730, 118, 12), + (245730, 276, 24), + (245730, 277, 24), + (245730, 93, 400), + (245730, 96, 400), + (245736, 277, 20), + (245736, 1, 200), + (245736, 129, 60), + (245737, 277, 20), + (245737, 1, 200), + (245737, 129, 60), + (245738, 277, 25), + (245738, 1, 250), + (245738, 129, 75), + (245740, 164, 25), + (245740, 136, 25), + (245766, 106, 22), + (245766, 122, 22), + (245767, 106, 22), + (245767, 122, 22), + (245768, 106, 26), + (245768, 122, 26), + (245770, 1, 300), + (245770, 93, 100), + (245770, 281, 10), + (245770, 391, 1), + (245771, 1, 150), + (245771, 93, 150), + (245771, 281, 15), + (245771, 391, 1), + (245773, 1, 200), + (245773, 91, 300), + (245773, 90, 375), + (245773, 92, 375), + (245773, 97, 375), + (245773, 95, 375), + (245773, 93, 450), + (245773, 94, 375), + (245773, 96, 375), + (245773, 281, 15), + (245773, 391, 1), + (245774, 1, 1200), + (245774, 93, 300), + (245774, 281, 15), + (245774, 391, 1), + (245780, 1, 60), + (245780, 221, 60), + (245780, 93, 60), + (245780, 281, 15), + (245780, 380, 5), + (245780, 391, 1), + (245783, 311, 25), + (245783, 95, 250), + (245783, 97, -400), + (245784, 93, 400), + (245785, 93, 400), + (245786, 93, 500), + (245786, 153, 50), + (245797, 156, 80), + (245798, 156, 80), + (245799, 156, 100), + (245824, 231, 10), + (245824, 233, 10), + (245824, 97, 250), + (245824, 95, 250), + (245824, 316, 25), + (245854, 96, 1300), + (245854, 95, 1300), + (245854, 97, 1300), + (245854, 93, 1300), + (245854, 94, 1300), + (245854, 92, 1300), + (245854, 91, 1300), + (245854, 90, 1300), + (245854, 1, 300), + (245854, 18, 25), + (245854, 277, 15), + (245855, 96, 400), + (245855, 95, 400), + (245855, 97, 400), + (245855, 93, 400), + (245855, 94, 400), + (245855, 92, 400), + (245855, 91, 400), + (245855, 90, 400), + (245855, 221, 200), + (245855, 17, 15), + (245855, 318, -3), + (245856, 96, 200), + (245856, 90, 200), + (245856, 91, 200), + (245856, 92, 200), + (245856, 94, 200), + (245856, 93, 200), + (245856, 97, 200), + (245856, 95, 200), + (245856, 1, 200), + (245856, 221, 200), + (245856, 382, -5), + (245857, 96, 400), + (245857, 90, 400), + (245857, 91, 400), + (245857, 92, 400), + (245857, 94, 400), + (245857, 93, 400), + (245857, 97, 400), + (245857, 95, 400), + (245857, 1, 200), + (245857, 221, 100), + (245857, 156, 75), + (245858, 96, 300), + (245858, 95, 300), + (245858, 97, 300), + (245858, 93, 300), + (245858, 94, 300), + (245858, 92, 300), + (245858, 91, 300), + (245858, 90, 300), + (245858, 1, 150), + (245858, 119, 25), + (245858, 16, 15), + (245859, 96, 1300), + (245859, 90, 1300), + (245859, 91, 1300), + (245859, 92, 1300), + (245859, 94, 1300), + (245859, 93, 1300), + (245859, 97, 1300), + (245859, 95, 1300), + (245859, 136, 25), + (245859, 20, 20), + (245859, 181, 10), + (245860, 96, 1300), + (245860, 95, 1300), + (245860, 97, 1300), + (245860, 93, 1300), + (245860, 94, 1300), + (245860, 92, 1300), + (245860, 91, 1300), + (245860, 90, 1300), + (245860, 1, 300), + (245860, 221, 100), + (245860, 156, 75), + (245863, 17, 7), + (245863, 151, 7), + (245863, 113, 7), + (245863, 136, 7), + (245863, 122, 7), + (245865, 96, 50), + (245865, 90, 50), + (245865, 91, 50), + (245865, 92, 50), + (245865, 94, 50), + (245865, 93, 50), + (245865, 97, 50), + (245865, 95, 50), + (245865, 154, 50), + (245865, 119, 50), + (245865, 1, 50), + (245865, 221, 50), + (245865, 168, 50), + (245865, 156, 25), + (245865, 276, 5), + (245865, 277, 5), + (245865, 380, 5), + (245866, 90, 575), + (245866, 91, 575), + (245866, 92, 625), + (245866, 97, 495), + (245866, 95, 495), + (245866, 94, 595), + (245866, 93, 405), + (245866, 96, 395), + (245866, 1, 195), + (245866, 131, 10), + (245866, 221, 25), + (245880, 90, 450), + (245880, 91, 450), + (245880, 92, 450), + (245880, 97, 300), + (245880, 95, 395), + (245880, 94, 445), + (245880, 93, 295), + (245880, 96, 395), + (245880, 1, 195), + (245880, 127, 12), + (245880, 221, 25), + (245881, 137, 40), + (245881, 136, 40), + (245881, 156, 40), + (245882, 137, 40), + (245882, 136, 40), + (245882, 156, 40), + (245883, 137, 60), + (245883, 136, 60), + (245883, 156, 60), + (245884, 90, 350), + (245884, 91, 350), + (245884, 92, 350), + (245884, 97, 295), + (245884, 95, 295), + (245884, 94, 345), + (245884, 93, 195), + (245884, 96, 295), + (245884, 1, 195), + (245884, 122, 10), + (245884, 221, 25), + (245884, 20, 18), + (245886, 96, 1300), + (245886, 95, 1300), + (245886, 97, 1300), + (245886, 93, 1300), + (245886, 94, 1300), + (245886, 92, 1300), + (245886, 91, 1300), + (245886, 90, 1300), + (245886, 1, 200), + (245886, 221, 200), + (245886, 119, 50), + (245886, 154, 50), + (245886, 168, 50), + (245886, 164, 50), + (245886, 156, 50), + (245887, 93, 1100), + (245887, 95, 1100), + (245887, 92, 1100), + (245887, 97, 1100), + (245887, 91, 1100), + (245887, 96, 1100), + (245887, 90, 1100), + (245887, 94, 1100), + (245887, 1, 100), + (245887, 221, 100), + (245887, 20, 10), + (245887, 168, 10), + (245887, 381, 10), + (245887, 277, 10), + (245889, 90, 1150), + (245889, 91, 1150), + (245889, 93, 995), + (245889, 96, 1095), + (245889, 92, 1150), + (245889, 94, 1090), + (245889, 97, 995), + (245889, 1, 195), + (245889, 95, 965), + (245889, 130, 12), + (245889, 123, 30), + (245889, 221, 40), + (245890, 96, 600), + (245890, 90, 600), + (245890, 91, 600), + (245890, 92, 600), + (245890, 94, 600), + (245890, 93, 600), + (245890, 97, 600), + (245890, 95, 600), + (245890, 155, 60), + (245890, 154, 60), + (245890, 153, 60), + (245890, 156, 60), + (245891, 90, 1600), + (245891, 91, 1600), + (245891, 92, 1600), + (245891, 97, 1300), + (245891, 95, 1445), + (245891, 94, 1495), + (245891, 93, 1295), + (245891, 96, 1595), + (245891, 1, 725), + (245891, 19, 18), + (245891, 221, 50), + (245892, 160, 20), + (245892, 125, 20), + (245892, 280, 20), + (245893, 90, 2450), + (245893, 91, 2450), + (245893, 92, 2400), + (245893, 97, 1500), + (245893, 95, 1995), + (245893, 94, 1800), + (245893, 93, 1595), + (245893, 96, 1795), + (245893, 21, 18), + (245893, 19, 18), + (245893, 221, 50), + (245893, 129, 10), + (245894, 90, 300), + (245894, 91, 300), + (245894, 92, 300), + (245894, 97, 300), + (245894, 95, 300), + (245894, 94, 475), + (245894, 93, 295), + (245894, 96, 295), + (245894, 1, 295), + (245894, 221, 25), + (245894, 128, 12), + (245905, 20, 15), + (245905, 17, 15), + (245929, 93, 125), + (245929, 95, 125), + (245929, 92, 125), + (245929, 97, 125), + (245929, 91, 125), + (245929, 96, 125), + (245929, 90, 125), + (245929, 94, 75), + (245929, 155, 1), + (245929, 154, 1), + (245929, 153, 1), + (245929, 118, 1), + (245929, 120, 1), + (245929, 119, 1), + (245929, 136, 1), + (245929, 164, 1), + (245930, 93, 1000), + (245930, 95, 1000), + (245930, 92, 1000), + (245930, 97, 1000), + (245930, 91, 1000), + (245930, 96, 1000), + (245930, 90, 1000), + (245930, 94, 600), + (245930, 155, 20), + (245930, 154, 15), + (245930, 153, 10), + (245930, 118, 20), + (245930, 120, 15), + (245930, 119, 10), + (245930, 136, 15), + (245930, 164, 5), + (245931, 93, 35), + (245931, 95, 35), + (245931, 92, 35), + (245931, 97, 35), + (245931, 91, 35), + (245931, 96, 35), + (245931, 90, 35), + (245931, 94, 20), + (245931, 155, 1), + (245931, 154, 1), + (245931, 153, 1), + (245931, 118, 1), + (245931, 120, 1), + (245931, 119, 1), + (245931, 136, 1), + (245931, 164, 1), + (245932, 93, 250), + (245932, 95, 250), + (245932, 92, 250), + (245932, 97, 250), + (245932, 91, 250), + (245932, 96, 250), + (245932, 90, 250), + (245932, 94, 150), + (245932, 155, 20), + (245932, 154, 15), + (245932, 153, 10), + (245932, 118, 20), + (245932, 120, 15), + (245932, 119, 10), + (245932, 136, 15), + (245932, 164, 5), + (245933, 96, 95), + (245933, 94, 60), + (245933, 95, 95), + (245933, 97, 95), + (245933, 91, 95), + (245933, 92, 95), + (245933, 93, 95), + (245933, 90, 95), + (245933, 155, 1), + (245933, 154, 1), + (245933, 153, 1), + (245933, 118, 1), + (245933, 120, 1), + (245933, 119, 1), + (245933, 136, 1), + (245933, 164, 1), + (245934, 96, 750), + (245934, 94, 450), + (245934, 95, 750), + (245934, 97, 750), + (245934, 91, 750), + (245934, 92, 750), + (245934, 93, 750), + (245934, 90, 750), + (245934, 155, 20), + (245934, 154, 15), + (245934, 153, 10), + (245934, 118, 20), + (245934, 120, 15), + (245934, 119, 10), + (245934, 136, 15), + (245934, 164, 5), + (245935, 91, 50), + (245935, 90, 50), + (245935, 97, 50), + (245935, 95, 50), + (245935, 92, 50), + (245935, 93, 50), + (245935, 96, 50), + (245935, 94, 30), + (245935, 155, 1), + (245935, 154, 1), + (245935, 153, 1), + (245935, 118, 1), + (245935, 120, 1), + (245935, 119, 1), + (245935, 136, 1), + (245935, 164, 1), + (245936, 91, 375), + (245936, 90, 375), + (245936, 97, 375), + (245936, 95, 375), + (245936, 92, 375), + (245936, 93, 375), + (245936, 96, 375), + (245936, 94, 225), + (245936, 155, 20), + (245936, 154, 15), + (245936, 153, 10), + (245936, 118, 20), + (245936, 120, 15), + (245936, 119, 10), + (245936, 136, 15), + (245936, 164, 5), + (245937, 93, 80), + (245937, 95, 80), + (245937, 92, 80), + (245937, 97, 80), + (245937, 91, 80), + (245937, 96, 80), + (245937, 90, 80), + (245937, 94, 50), + (245937, 155, 1), + (245937, 154, 1), + (245937, 153, 1), + (245937, 118, 1), + (245937, 120, 1), + (245937, 119, 1), + (245937, 136, 1), + (245937, 164, 1), + (245938, 93, 625), + (245938, 95, 625), + (245938, 92, 625), + (245938, 97, 625), + (245938, 91, 625), + (245938, 96, 625), + (245938, 90, 625), + (245938, 94, 375), + (245938, 155, 20), + (245938, 154, 15), + (245938, 153, 10), + (245938, 118, 20), + (245938, 120, 15), + (245938, 119, 10), + (245938, 136, 15), + (245938, 164, 5), + (245939, 93, 35), + (245939, 95, 35), + (245939, 92, 35), + (245939, 97, 35), + (245939, 91, 35), + (245939, 96, 35), + (245939, 90, 35), + (245939, 94, 20), + (245939, 155, 1), + (245939, 154, 1), + (245939, 153, 1), + (245939, 118, 1), + (245939, 120, 1), + (245939, 119, 1), + (245939, 136, 1), + (245939, 164, 1), + (245940, 93, 250), + (245940, 95, 250), + (245940, 92, 250), + (245940, 97, 250), + (245940, 91, 250), + (245940, 96, 250), + (245940, 90, 250), + (245940, 94, 150), + (245940, 155, 20), + (245940, 154, 15), + (245940, 153, 10), + (245940, 118, 20), + (245940, 120, 15), + (245940, 119, 10), + (245940, 136, 15), + (245940, 164, 5), + (245964, 93, 20), + (245964, 95, 50), + (245964, 92, 50), + (245964, 97, 50), + (245964, 91, 50), + (245964, 96, 20), + (245964, 90, 50), + (245964, 94, 50), + (245964, 155, 1), + (245964, 154, 1), + (245964, 153, 1), + (245964, 118, 1), + (245964, 120, 1), + (245964, 119, 1), + (245964, 136, 1), + (245964, 164, 1), + (245965, 93, 600), + (245965, 95, 1000), + (245965, 92, 1000), + (245965, 97, 1000), + (245965, 91, 1000), + (245965, 96, 600), + (245965, 90, 1000), + (245965, 94, 1000), + (245965, 155, 15), + (245965, 154, 15), + (245965, 153, 15), + (245965, 118, 15), + (245965, 120, 15), + (245965, 119, 15), + (245965, 136, 10), + (245965, 164, 10), + (245966, 91, 35), + (245966, 90, 35), + (245966, 97, 35), + (245966, 95, 35), + (245966, 92, 35), + (245966, 93, 20), + (245966, 96, 20), + (245966, 94, 35), + (245966, 155, 1), + (245966, 154, 1), + (245966, 153, 1), + (245966, 118, 1), + (245966, 120, 1), + (245966, 119, 1), + (245966, 136, 1), + (245966, 164, 1), + (245967, 91, 375), + (245967, 90, 375), + (245967, 97, 375), + (245967, 95, 375), + (245967, 92, 375), + (245967, 93, 225), + (245967, 96, 225), + (245967, 94, 375), + (245967, 155, 15), + (245967, 154, 15), + (245967, 153, 15), + (245967, 118, 15), + (245967, 120, 15), + (245967, 119, 15), + (245967, 136, 10), + (245967, 164, 10), + (245968, 93, 15), + (245968, 95, 25), + (245968, 92, 25), + (245968, 97, 25), + (245968, 91, 25), + (245968, 96, 15), + (245968, 90, 25), + (245968, 94, 25), + (245968, 155, 1), + (245968, 154, 1), + (245968, 153, 1), + (245968, 118, 1), + (245968, 120, 1), + (245968, 119, 1), + (245968, 136, 1), + (245968, 164, 1), + (245969, 93, 150), + (245969, 95, 250), + (245969, 92, 250), + (245969, 97, 250), + (245969, 91, 250), + (245969, 96, 150), + (245969, 90, 250), + (245969, 94, 250), + (245969, 155, 15), + (245969, 154, 15), + (245969, 153, 15), + (245969, 118, 15), + (245969, 120, 15), + (245969, 119, 15), + (245969, 136, 10), + (245969, 164, 10), + (245970, 93, 20), + (245970, 95, 30), + (245970, 92, 30), + (245970, 97, 30), + (245970, 91, 30), + (245970, 96, 20), + (245970, 90, 30), + (245970, 94, 30), + (245970, 155, 1), + (245970, 154, 1), + (245970, 153, 1), + (245970, 118, 1), + (245970, 120, 1), + (245970, 119, 1), + (245970, 136, 1), + (245970, 164, 1), + (245971, 93, 375), + (245971, 95, 625), + (245971, 92, 625), + (245971, 97, 625), + (245971, 91, 625), + (245971, 96, 375), + (245971, 90, 625), + (245971, 94, 625), + (245971, 155, 15), + (245971, 154, 15), + (245971, 153, 15), + (245971, 118, 15), + (245971, 120, 15), + (245971, 119, 15), + (245971, 136, 10), + (245971, 164, 10), + (245972, 93, 15), + (245972, 95, 25), + (245972, 92, 25), + (245972, 97, 25), + (245972, 91, 25), + (245972, 96, 15), + (245972, 90, 25), + (245972, 94, 25), + (245972, 155, 1), + (245972, 154, 1), + (245972, 153, 1), + (245972, 118, 1), + (245972, 120, 1), + (245972, 119, 1), + (245972, 136, 1), + (245972, 164, 1), + (245973, 93, 150), + (245973, 95, 250), + (245973, 92, 250), + (245973, 97, 250), + (245973, 91, 250), + (245973, 96, 150), + (245973, 90, 250), + (245973, 94, 250), + (245973, 155, 15), + (245973, 154, 15), + (245973, 153, 15), + (245973, 118, 15), + (245973, 120, 15), + (245973, 119, 15), + (245973, 136, 10), + (245973, 164, 10), + (245974, 93, 20), + (245974, 95, 35), + (245974, 92, 35), + (245974, 97, 35), + (245974, 91, 35), + (245974, 96, 20), + (245974, 90, 35), + (245974, 94, 35), + (245974, 155, 1), + (245974, 154, 1), + (245974, 153, 1), + (245974, 118, 1), + (245974, 120, 1), + (245974, 119, 1), + (245974, 136, 1), + (245974, 164, 1), + (245975, 93, 450), + (245975, 95, 750), + (245975, 92, 750), + (245975, 97, 750), + (245975, 91, 750), + (245975, 96, 450), + (245975, 90, 750), + (245975, 94, 750), + (245975, 155, 15), + (245975, 154, 15), + (245975, 153, 15), + (245975, 118, 15), + (245975, 120, 15), + (245975, 119, 15), + (245975, 136, 10), + (245975, 164, 10), + (245997, 318, -1), + (245997, 382, -1), + (245997, 18, 9), + (245998, 318, -1), + (245998, 382, -1), + (245998, 18, 9), + (245999, 318, -1), + (245999, 382, -2), + (245999, 18, 18), + (246000, 318, -1), + (246000, 382, -2), + (246000, 18, 18), + (246001, 318, -2), + (246001, 382, -3), + (246001, 18, 27), + (246002, 318, -2), + (246002, 382, -3), + (246002, 18, 27), + (246003, 318, -2), + (246003, 382, -4), + (246003, 18, 36), + (246004, 318, -2), + (246004, 382, -4), + (246004, 18, 36), + (246005, 318, -3), + (246005, 382, -5), + (246005, 18, 45), + (246006, 318, -3), + (246006, 382, -5), + (246006, 18, 45), + (246007, 318, -3), + (246007, 382, -6), + (246007, 18, 54), + (246008, 318, -3), + (246008, 382, -6), + (246008, 18, 54), + (246009, 318, -4), + (246009, 382, -7), + (246009, 18, 63), + (246010, 318, -4), + (246010, 382, -7), + (246010, 18, 63), + (246011, 318, -4), + (246011, 382, -8), + (246011, 18, 72), + (246012, 318, -4), + (246012, 382, -8), + (246012, 18, 72), + (246013, 318, -5), + (246013, 382, -9), + (246013, 18, 81), + (246014, 318, -5), + (246014, 382, -9), + (246014, 18, 81), + (246015, 318, -5), + (246015, 382, -10), + (246015, 18, 90), + (246016, 91, 400), + (246017, 91, 400), + (246018, 91, 600), + (246021, 1, 500), + (246021, 91, 1000), + (246021, 90, 1000), + (246022, 1, 500), + (246022, 91, 1000), + (246022, 90, 1000), + (246023, 1, 1000), + (246023, 91, 2000), + (246023, 90, 2000), + (246044, 154, 15), + (246044, 153, 15), + (246044, 155, 15), + (246045, 154, 15), + (246045, 153, 15), + (246045, 155, 15), + (246046, 154, 20), + (246046, 153, 20), + (246046, 155, 20), + (246047, 154, 20), + (246047, 153, 20), + (246047, 155, 20), + (246048, 154, 25), + (246048, 153, 25), + (246048, 155, 25), + (246049, 154, 25), + (246049, 153, 25), + (246049, 155, 25), + (246050, 154, 30), + (246050, 153, 30), + (246050, 155, 30), + (246051, 154, 30), + (246051, 153, 30), + (246051, 155, 30), + (246052, 154, 60), + (246052, 153, 60), + (246052, 155, 60), + (246053, 163, 50), + (246053, 159, 50), + (246053, 382, -1), + (246054, 163, 50), + (246054, 159, 50), + (246054, 382, -1), + (246055, 163, 60), + (246055, 159, 60), + (246055, 382, -3), + (246056, 163, 60), + (246056, 159, 60), + (246056, 382, -3), + (246057, 163, 70), + (246057, 159, 70), + (246057, 382, -5), + (246058, 163, 70), + (246058, 159, 70), + (246058, 382, -5), + (246059, 163, 80), + (246059, 159, 80), + (246059, 382, -7), + (246060, 163, 80), + (246060, 159, 80), + (246060, 382, -7), + (246061, 163, 100), + (246061, 159, 100), + (246061, 382, -9), + (246062, 113, 12), + (246062, 276, 12), + (246062, 164, 12), + (246063, 96, 1250), + (246063, 90, 1250), + (246063, 91, 1250), + (246063, 92, 1000), + (246063, 94, 1000), + (246063, 93, 1250), + (246063, 97, 1500), + (246063, 95, 1500), + (246063, 129, 25), + (246063, 123, 25), + (246063, 124, 25), + (246063, 152, 50), + (246063, 132, 50), + (246080, 96, 100), + (246080, 90, 100), + (246080, 91, 100), + (246080, 92, 100), + (246080, 94, 100), + (246080, 93, 100), + (246080, 97, 100), + (246080, 95, 100), + (246080, 166, 50), + (246080, 123, 50), + (246083, 111, 75), + (246083, 121, 75), + (246083, 120, 75), + (246083, 154, 75), + (246083, 168, 75), + (246084, 116, 12), + (246084, 167, 12), + (246084, 112, 12), + (246084, 150, 12), + (246084, 152, 12), + (246084, 276, 12), + (246085, 91, 1000), + (246085, 90, 1000), + (246085, 92, 1000), + (246085, 97, 1000), + (246085, 95, 1000), + (246085, 94, 1000), + (246085, 93, 1000), + (246085, 96, 1000), + (246085, 155, 75), + (246085, 154, 75), + (246085, 153, 75), + (246085, 156, 75), + (246087, 106, 12), + (246087, 146, 12), + (246087, 123, 12), + (246087, 124, 12), + (246087, 155, 12), + (246087, 154, 12), + (246087, 153, 12), + (246087, 152, 12), + (246087, 132, 12), + (246087, 276, 12), + (246087, 277, 12), + (246087, 118, 12), + (246087, 120, 12), + (246087, 162, 12), + (246087, 136, 12), + (246087, 101, 12), + (246087, 145, 12), + (246087, 168, 12), + (246087, 156, 12), + (246087, 181, 12), + (246088, 19, 10), + (246088, 130, 10), + (246088, 149, 10), + (246089, 152, 24), + (246089, 118, 12), + (246089, 279, 12), + (246089, 280, 12), + (246089, 316, 12), + (246089, 311, 12), + (246089, 102, 8), + (246089, 103, 8), + (246089, 276, 6), + (246089, 277, 6), + (246090, 379, 1), + (246090, 123, 25), + (246090, 156, 50), + (246090, 152, 100), + (246091, 91, 375), + (246091, 90, 375), + (246091, 92, 375), + (246091, 97, 375), + (246091, 95, 375), + (246091, 93, 375), + (246091, 94, 375), + (246091, 96, 375), + (246091, 115, 25), + (246091, 152, 75), + (246092, 96, 200), + (246092, 90, 200), + (246092, 91, 200), + (246092, 92, 200), + (246092, 94, 200), + (246092, 93, 200), + (246092, 97, 200), + (246092, 95, 200), + (246092, 318, -2), + (246092, 132, 50), + (246092, 154, 50), + (246092, 168, 25), + (246094, 96, 400), + (246094, 90, 400), + (246094, 91, 400), + (246094, 92, 400), + (246094, 94, 400), + (246094, 93, 400), + (246094, 97, 400), + (246094, 95, 400), + (246094, 114, 20), + (246094, 124, 20), + (246094, 154, 20), + (246094, 155, 20), + (246094, 166, 20), + (246094, 311, 10), + (246094, 316, 10), + (246094, 380, 5), + (246095, 93, 150), + (246095, 281, 15), + (246095, 163, 15), + (246095, 229, 5), + (246097, 136, 20), + (246097, 156, 20), + (246098, 136, 20), + (246098, 156, 20), + (246099, 136, 30), + (246099, 156, 30), + (246100, 136, 30), + (246100, 156, 30), + (246101, 136, 40), + (246101, 156, 40), + (246102, 136, 40), + (246102, 156, 40), + (246103, 136, 50), + (246103, 156, 50), + (246104, 136, 50), + (246104, 156, 50), + (246105, 136, 80), + (246105, 156, 80), + (246109, 96, 440), + (246109, 95, 440), + (246109, 97, 440), + (246109, 93, 440), + (246109, 94, 440), + (246109, 92, 440), + (246109, 91, 440), + (246109, 90, 440), + (246109, 18, 22), + (246109, 132, 22), + (246109, 159, 22), + (246109, 128, 11), + (246109, 124, 11), + (246109, 276, 11), + (246110, 96, 500), + (246110, 90, 500), + (246110, 91, 500), + (246110, 92, 500), + (246110, 94, 500), + (246110, 93, 500), + (246110, 97, 500), + (246110, 95, 500), + (246110, 277, 75), + (246110, 152, 75), + (246110, 156, 75), + (246110, 164, 75), + (246110, 109, 75), + (246123, 21, 4), + (246123, 20, 4), + (246123, 162, 8), + (246125, 155, 30), + (246125, 153, 30), + (246125, 154, 30), + (246125, 156, 30), + (246125, 138, 30), + (246125, 168, 30), + (246125, 118, 30), + (246125, 119, 30), + (246125, 120, 30), + (246125, 149, 30), + (246125, 181, 30), + (246125, 152, 30), + (246125, 132, 30), + (246206, 125, 40), + (246206, 158, 40), + (246206, 163, 25), + (246206, 126, 10), + (246206, 157, 10), + (246206, 159, 10), + (246206, 160, 10), + (246206, 161, 5), + (246206, 92, 50), + (246206, 94, 50), + (246206, 93, 50), + (246207, 125, 10), + (246207, 158, 10), + (246207, 163, 25), + (246207, 126, 40), + (246207, 157, 40), + (246207, 159, 10), + (246207, 160, 10), + (246207, 161, 5), + (246207, 95, 50), + (246207, 96, 50), + (246207, 97, 50), + (246208, 125, 50), + (246208, 158, 50), + (246208, 163, 25), + (246208, 126, 50), + (246208, 157, 50), + (246208, 159, 20), + (246208, 160, 20), + (246208, 161, 10), + (246208, 92, 50), + (246208, 94, 50), + (246208, 93, 50), + (246208, 95, 50), + (246208, 96, 50), + (246208, 97, 50), + (246210, 125, 50), + (246210, 158, 50), + (246210, 163, 25), + (246210, 126, 50), + (246210, 157, 50), + (246210, 159, 20), + (246210, 160, 20), + (246210, 161, 10), + (246210, 92, 50), + (246210, 94, 50), + (246210, 93, 50), + (246210, 95, 50), + (246210, 96, 50), + (246210, 97, 50), + (246212, 125, 50), + (246212, 158, 50), + (246212, 163, 25), + (246212, 126, 50), + (246212, 157, 50), + (246212, 159, 20), + (246212, 160, 20), + (246212, 161, 10), + (246212, 92, 50), + (246212, 94, 50), + (246212, 93, 50), + (246212, 95, 50), + (246212, 96, 50), + (246212, 97, 50), + (246216, 90, 560), + (246216, 91, 560), + (246216, 92, 560), + (246216, 93, 560), + (246216, 94, 560), + (246216, 95, 560), + (246216, 96, 560), + (246216, 97, 560), + (246216, 120, 32), + (246216, 156, 32), + (246216, 100, 16), + (246216, 142, 16), + (246216, 276, 8), + (246216, 279, 8), + (246217, 93, 200), + (246217, 95, 200), + (246217, 92, 200), + (246217, 97, 200), + (246217, 91, 200), + (246217, 96, 200), + (246217, 90, 200), + (246217, 94, 200), + (246217, 318, -5), + (246217, 536, 1), + (246217, 127, 5), + (246217, 128, 5), + (246217, 129, 5), + (246217, 130, 5), + (246217, 131, 5), + (246217, 122, 5), + (246217, 181, 10), + (246217, 149, 20), + (246217, 168, 20), + (246217, 132, 50), + (246218, 181, 20), + (246218, 128, 3), + (246218, 123, 3), + (246218, 127, 3), + (246218, 159, 3), + (246219, 276, 40), + (246219, 118, 40), + (246219, 277, -40), + (246219, 316, 20), + (246219, 311, 20), + (246220, 532, 28), + (246221, 532, 28), + (246222, 20, 10), + (246222, 21, 10), + (246222, 277, 10), + (246222, 380, 10), + (246222, 168, 15), + (246222, 123, 15), + (246222, 159, 15), + (246222, 127, 15), + (246222, 155, 30), + (246222, 154, 30), + (246222, 153, 30), + (246222, 118, 30), + (246222, 119, 30), + (246222, 120, 30), + (246222, 152, 45), + (246222, 132, 45), + (246223, 100, 10), + (246223, 142, 10), + (246223, 144, 10), + (246223, 145, 10), + (246223, 143, 10), + (246223, 156, 10), + (246223, 281, 10), + (246223, 93, 300), + (246226, 129, 5), + (246226, 122, 5), + (246226, 20, 5), + (246226, 19, 5), + (246226, 141, 5), + (246226, 136, 20), + (246226, 181, 10), + (246226, 149, 10), + (246226, 119, 15), + (246226, 118, 15), + (246226, 120, 15), + (246226, 162, 15), + (246226, 168, 15), + (246244, 19, 32), + (246244, 364, 4), + (246244, 318, -4), + (246256, 19, 32), + (246256, 364, 4), + (246256, 318, -4), + (246274, 318, -2), + (246274, 535, 2), + (246274, 21, 10), + (246274, 18, 10), + (246274, 123, 20), + (246274, 124, 20), + (246274, 132, 50), + (246274, 152, 50), + (246274, 91, 500), + (246274, 90, 500), + (246276, 125, 20), + (246276, 126, 20), + (246276, 157, 20), + (246276, 158, 20), + (246276, 181, 15), + (246276, 165, 15), + (246276, 159, 10), + (246276, 163, 10), + (246276, 162, 5), + (246276, 160, 5), + (246277, 155, 12), + (246277, 154, 12), + (246277, 153, 12), + (246277, 118, 12), + (246277, 119, 12), + (246277, 120, 12), + (246277, 181, 12), + (246278, 343, 1), + (246278, 127, 4), + (246278, 123, 4), + (246278, 124, 4), + (246278, 181, 12), + (246279, 379, 1), + (246279, 391, 1), + (246279, 380, 5), + (246280, 129, 4), + (246280, 122, 4), + (246280, 21, 4), + (246280, 20, 4), + (246281, 160, 50), + (246287, 91, 500), + (246287, 90, 500), + (246287, 92, 500), + (246287, 97, 250), + (246287, 95, 250), + (246287, 94, 500), + (246287, 93, 500), + (246287, 96, 500), + (246287, 1, 100), + (246287, 113, 10), + (246287, 164, 10), + (246287, 151, 10), + (246287, 278, 10), + (246288, 91, 800), + (246288, 90, 800), + (246288, 92, 800), + (246288, 97, 500), + (246288, 95, 500), + (246288, 94, 800), + (246288, 93, 800), + (246288, 96, 800), + (246288, 1, 200), + (246288, 113, 20), + (246288, 164, 20), + (246288, 151, 20), + (246288, 278, 20), + (246289, 101, 10), + (246291, 16, 20), + (246291, 100, 30), + (246291, 155, 30), + (246291, 154, 30), + (246291, 153, 30), + (246309, 91, 700), + (246309, 90, 650), + (246309, 92, 550), + (246309, 93, 400), + (246309, 97, 500), + (246309, 94, 400), + (246309, 95, 500), + (246309, 96, 300), + (246309, 318, -5), + (246309, 127, 10), + (246309, 159, 25), + (246309, 132, 50), + (246310, 319, 1), + (246310, 19, 1), + (246310, 21, 1), + (246310, 127, 1), + (246310, 128, 1), + (246310, 129, 1), + (246310, 130, 1), + (246310, 131, 1), + (246310, 122, 1), + (246310, 123, 1), + (246310, 124, 1), + (246310, 161, 1), + (246310, 181, 1), + (246310, 136, 1), + (246311, 319, 3), + (246311, 19, 3), + (246311, 21, 3), + (246311, 127, 3), + (246311, 128, 3), + (246311, 129, 3), + (246311, 130, 3), + (246311, 131, 3), + (246311, 122, 3), + (246311, 123, 3), + (246311, 124, 3), + (246311, 161, 3), + (246311, 181, 3), + (246311, 136, 3), + (246312, 91, 750), + (246312, 90, 750), + (246312, 92, 250), + (246312, 95, 500), + (246312, 97, 500), + (246312, 93, 500), + (246312, 94, 250), + (246312, 96, 500), + (246312, 132, 25), + (246312, 152, 25), + (246312, 154, 10), + (246312, 155, 10), + (246312, 119, 10), + (246312, 118, 10), + (246312, 149, 5), + (246312, 168, 5), + (246312, 379, 1), + (246313, 91, 500), + (246313, 90, 500), + (246313, 92, 250), + (246313, 95, 500), + (246313, 97, 500), + (246313, 93, 500), + (246313, 94, 250), + (246313, 96, 500), + (246313, 132, 25), + (246313, 152, 25), + (246313, 154, 10), + (246313, 155, 10), + (246313, 119, 10), + (246313, 118, 10), + (246313, 149, 5), + (246313, 168, 5), + (246313, 379, 1), + (246314, 91, 600), + (246314, 90, 600), + (246314, 92, 300), + (246314, 95, 600), + (246314, 97, 600), + (246314, 93, 600), + (246314, 94, 300), + (246314, 96, 600), + (246314, 132, 25), + (246314, 152, 25), + (246314, 154, 10), + (246314, 155, 10), + (246314, 119, 10), + (246314, 118, 10), + (246314, 149, 5), + (246314, 168, 5), + (246314, 319, 1), + (246316, 91, 200), + (246316, 90, 200), + (246316, 92, 100), + (246316, 95, 200), + (246316, 97, 200), + (246316, 93, 200), + (246316, 94, 100), + (246316, 96, 200), + (246316, 132, 25), + (246316, 152, 25), + (246316, 154, 10), + (246316, 155, 10), + (246316, 119, 10), + (246316, 118, 10), + (246316, 149, 5), + (246316, 168, 5), + (246316, 382, -1), + (246317, 91, 200), + (246317, 90, 200), + (246317, 92, 100), + (246317, 95, 200), + (246317, 97, 200), + (246317, 93, 200), + (246317, 94, 100), + (246317, 96, 200), + (246317, 132, 25), + (246317, 152, 25), + (246317, 154, 10), + (246317, 155, 10), + (246317, 119, 10), + (246317, 118, 10), + (246317, 149, 5), + (246317, 168, 5), + (246317, 318, -1), + (246318, 91, 400), + (246318, 90, 400), + (246318, 92, 200), + (246318, 95, 400), + (246318, 97, 400), + (246318, 93, 400), + (246318, 94, 200), + (246318, 96, 400), + (246318, 132, 25), + (246318, 152, 25), + (246318, 154, 10), + (246318, 155, 10), + (246318, 119, 10), + (246318, 118, 10), + (246318, 149, 5), + (246318, 168, 5), + (246319, 91, 300), + (246319, 90, 300), + (246319, 92, 150), + (246319, 95, 300), + (246319, 97, 300), + (246319, 93, 300), + (246319, 94, 150), + (246319, 96, 300), + (246319, 132, 25), + (246319, 152, 25), + (246319, 154, 10), + (246319, 155, 10), + (246319, 119, 10), + (246319, 118, 10), + (246319, 149, 5), + (246319, 168, 5), + (246319, 593, 1), + (246323, 154, 10), + (246324, 154, 10), + (246325, 154, 15), + (246326, 154, 15), + (246327, 154, 20), + (246328, 154, 20), + (246329, 154, 25), + (246330, 154, 25), + (246331, 154, 30), + (246332, 154, 30), + (246333, 154, 40), + (246334, 152, 10), + (246335, 152, 10), + (246336, 152, 15), + (246337, 152, 15), + (246338, 152, 20), + (246339, 152, 20), + (246340, 152, 25), + (246341, 152, 25), + (246342, 152, 30), + (246343, 152, 30), + (246344, 152, 40), + (246345, 152, 10), + (246346, 152, 10), + (246347, 152, 15), + (246348, 152, 15), + (246349, 152, 20), + (246350, 152, 20), + (246351, 152, 25), + (246352, 152, 25), + (246353, 152, 30), + (246354, 152, 30), + (246355, 152, 40), + (246382, 130, -30), + (246382, 131, -30), + (246384, 128, -30), + (246384, 127, -30), + (246386, 129, -30), + (246386, 122, -30), + (246408, 319, 1), + (246409, 319, 1), + (246410, 319, 2), + (246411, 319, 2), + (246412, 319, 3), + (246413, 319, 3), + (246414, 319, 4), + (246415, 319, 1), + (246416, 319, 1), + (246417, 319, 2), + (246418, 319, 2), + (246419, 319, 3), + (246420, 319, 3), + (246421, 319, 4), + (246422, 319, 1), + (246423, 319, 1), + (246424, 319, 2), + (246425, 319, 2), + (246426, 319, 3), + (246427, 319, 3), + (246428, 319, 4), + (246559, 91, 4), + (246559, 90, 4), + (246559, 92, 3), + (246559, 97, 4), + (246559, 95, 9), + (246559, 94, 3), + (246559, 93, 4), + (246559, 96, 4), + (246559, 127, 1), + (246559, 128, 1), + (246559, 129, 1), + (246559, 130, 1), + (246559, 131, 1), + (246559, 122, 1), + (246559, 125, 10), + (246559, 126, 10), + (246559, 157, 10), + (246559, 158, 10), + (246559, 159, 10), + (246559, 160, 10), + (246559, 162, 10), + (246559, 163, 10), + (246559, 181, 1), + (246560, 91, 900), + (246560, 90, 900), + (246560, 92, 800), + (246560, 97, 900), + (246560, 95, 1000), + (246560, 94, 800), + (246560, 93, 900), + (246560, 96, 900), + (246560, 127, 30), + (246560, 128, 30), + (246560, 129, 30), + (246560, 130, 30), + (246560, 131, 30), + (246560, 122, 30), + (246560, 125, 30), + (246560, 126, 30), + (246560, 157, 30), + (246560, 158, 30), + (246560, 159, 30), + (246560, 160, 30), + (246560, 162, 30), + (246560, 163, 30), + (246560, 181, 15), + (246561, 91, 3), + (246561, 90, 3), + (246561, 92, 2), + (246561, 97, 3), + (246561, 95, 8), + (246561, 94, 2), + (246561, 93, 3), + (246561, 96, 3), + (246561, 127, 1), + (246561, 128, 1), + (246561, 129, 1), + (246561, 130, 1), + (246561, 131, 1), + (246561, 122, 1), + (246561, 125, 10), + (246561, 126, 10), + (246561, 157, 10), + (246561, 158, 10), + (246561, 159, 10), + (246561, 160, 10), + (246561, 162, 10), + (246561, 163, 10), + (246561, 181, 1), + (246562, 91, 675), + (246562, 90, 675), + (246562, 92, 625), + (246562, 97, 675), + (246562, 95, 750), + (246562, 94, 625), + (246562, 93, 675), + (246562, 96, 675), + (246562, 127, 30), + (246562, 128, 30), + (246562, 129, 30), + (246562, 130, 30), + (246562, 131, 30), + (246562, 122, 30), + (246562, 125, 30), + (246562, 126, 30), + (246562, 157, 30), + (246562, 158, 30), + (246562, 159, 30), + (246562, 160, 30), + (246562, 162, 30), + (246562, 163, 30), + (246562, 181, 15), + (246563, 91, 1), + (246563, 90, 1), + (246563, 92, 0), + (246563, 97, 1), + (246563, 95, 6), + (246563, 94, 0), + (246563, 93, 1), + (246563, 96, 1), + (246563, 127, 1), + (246563, 128, 1), + (246563, 129, 1), + (246563, 130, 1), + (246563, 131, 1), + (246563, 122, 1), + (246563, 125, 10), + (246563, 126, 10), + (246563, 157, 10), + (246563, 158, 10), + (246563, 159, 10), + (246563, 160, 10), + (246563, 162, 10), + (246563, 163, 10), + (246563, 181, 1), + (246564, 91, 230), + (246564, 90, 230), + (246564, 92, 210), + (246564, 97, 230), + (246564, 95, 250), + (246564, 94, 210), + (246564, 93, 230), + (246564, 96, 230), + (246564, 127, 30), + (246564, 128, 30), + (246564, 129, 30), + (246564, 130, 30), + (246564, 131, 30), + (246564, 122, 30), + (246564, 125, 30), + (246564, 126, 30), + (246564, 157, 30), + (246564, 158, 30), + (246564, 159, 30), + (246564, 160, 30), + (246564, 162, 30), + (246564, 163, 30), + (246564, 181, 15), + (246565, 91, 1), + (246565, 90, 1), + (246565, 92, 0), + (246565, 97, 1), + (246565, 95, 6), + (246565, 94, 0), + (246565, 93, 1), + (246565, 96, 1), + (246565, 127, 1), + (246565, 128, 1), + (246565, 129, 1), + (246565, 130, 1), + (246565, 131, 1), + (246565, 122, 1), + (246565, 125, 10), + (246565, 126, 10), + (246565, 157, 10), + (246565, 158, 10), + (246565, 159, 10), + (246565, 160, 10), + (246565, 162, 10), + (246565, 163, 10), + (246565, 181, 1), + (246566, 91, 230), + (246566, 90, 230), + (246566, 92, 210), + (246566, 97, 230), + (246566, 95, 250), + (246566, 94, 210), + (246566, 93, 230), + (246566, 96, 230), + (246566, 127, 30), + (246566, 128, 30), + (246566, 129, 30), + (246566, 130, 30), + (246566, 131, 30), + (246566, 122, 30), + (246566, 125, 30), + (246566, 126, 30), + (246566, 157, 30), + (246566, 158, 30), + (246566, 159, 30), + (246566, 160, 30), + (246566, 162, 30), + (246566, 163, 30), + (246566, 181, 15), + (246567, 91, 2), + (246567, 90, 2), + (246567, 92, 1), + (246567, 97, 2), + (246567, 95, 7), + (246567, 94, 1), + (246567, 93, 2), + (246567, 96, 2), + (246567, 127, 1), + (246567, 128, 1), + (246567, 129, 1), + (246567, 130, 1), + (246567, 131, 1), + (246567, 122, 1), + (246567, 125, 10), + (246567, 126, 10), + (246567, 157, 10), + (246567, 158, 10), + (246567, 159, 10), + (246567, 160, 10), + (246567, 162, 10), + (246567, 163, 10), + (246567, 181, 1), + (246568, 91, 575), + (246568, 90, 575), + (246568, 92, 525), + (246568, 97, 575), + (246568, 95, 625), + (246568, 94, 525), + (246568, 93, 575), + (246568, 96, 575), + (246568, 127, 30), + (246568, 128, 30), + (246568, 129, 30), + (246568, 130, 30), + (246568, 131, 30), + (246568, 122, 30), + (246568, 125, 30), + (246568, 126, 30), + (246568, 157, 30), + (246568, 158, 30), + (246568, 159, 30), + (246568, 160, 30), + (246568, 162, 30), + (246568, 163, 30), + (246568, 181, 15), + (246569, 91, 2), + (246569, 90, 2), + (246569, 92, 1), + (246569, 97, 2), + (246569, 95, 7), + (246569, 94, 1), + (246569, 93, 2), + (246569, 96, 2), + (246569, 127, 1), + (246569, 128, 1), + (246569, 129, 1), + (246569, 130, 1), + (246569, 131, 1), + (246569, 122, 1), + (246569, 125, 10), + (246569, 126, 10), + (246569, 157, 10), + (246569, 158, 10), + (246569, 159, 10), + (246569, 160, 10), + (246569, 162, 10), + (246569, 163, 10), + (246569, 181, 1), + (246570, 91, 340), + (246570, 90, 340), + (246570, 92, 305), + (246570, 97, 340), + (246570, 95, 375), + (246570, 94, 305), + (246570, 93, 340), + (246570, 96, 340), + (246570, 127, 30), + (246570, 128, 30), + (246570, 129, 30), + (246570, 130, 30), + (246570, 131, 30), + (246570, 122, 30), + (246570, 125, 30), + (246570, 126, 30), + (246570, 157, 30), + (246570, 158, 30), + (246570, 159, 30), + (246570, 160, 30), + (246570, 162, 30), + (246570, 163, 30), + (246570, 181, 15), + (246571, 91, 7), + (246571, 90, 2), + (246571, 92, 2), + (246571, 97, 2), + (246571, 95, 2), + (246571, 94, 7), + (246571, 93, 1), + (246571, 96, 1), + (246571, 1, 5), + (246571, 152, 1), + (246572, 91, 375), + (246572, 90, 340), + (246572, 92, 340), + (246572, 97, 340), + (246572, 95, 340), + (246572, 94, 375), + (246572, 93, 305), + (246572, 96, 305), + (246572, 1, 200), + (246572, 152, 50), + (246573, 91, 7), + (246573, 90, 2), + (246573, 92, 2), + (246573, 97, 2), + (246573, 95, 2), + (246573, 94, 7), + (246573, 93, 1), + (246573, 96, 1), + (246573, 1, 5), + (246573, 152, 1), + (246574, 91, 625), + (246574, 90, 575), + (246574, 92, 575), + (246574, 97, 575), + (246574, 95, 575), + (246574, 94, 625), + (246574, 93, 525), + (246574, 96, 525), + (246574, 1, 200), + (246574, 152, 50), + (246575, 91, 6), + (246575, 90, 1), + (246575, 92, 1), + (246575, 97, 1), + (246575, 95, 1), + (246575, 94, 6), + (246575, 93, 0), + (246575, 96, 0), + (246575, 1, 5), + (246575, 152, 1), + (246576, 91, 250), + (246576, 90, 230), + (246576, 92, 230), + (246576, 97, 230), + (246576, 95, 230), + (246576, 94, 250), + (246576, 93, 210), + (246576, 96, 210), + (246576, 1, 200), + (246576, 152, 50), + (246577, 91, 6), + (246577, 90, 1), + (246577, 92, 1), + (246577, 97, 1), + (246577, 95, 1), + (246577, 94, 6), + (246577, 93, 0), + (246577, 96, 0), + (246577, 1, 5), + (246577, 152, 1), + (246578, 91, 250), + (246578, 90, 230), + (246578, 92, 230), + (246578, 97, 230), + (246578, 95, 230), + (246578, 94, 250), + (246578, 93, 210), + (246578, 96, 210), + (246578, 1, 200), + (246578, 152, 50), + (246579, 91, 9), + (246579, 90, 4), + (246579, 92, 4), + (246579, 97, 4), + (246579, 95, 4), + (246579, 94, 9), + (246579, 93, 3), + (246579, 96, 3), + (246579, 1, 5), + (246579, 152, 1), + (246580, 91, 1000), + (246580, 90, 900), + (246580, 92, 900), + (246580, 97, 900), + (246580, 95, 900), + (246580, 94, 1000), + (246580, 93, 800), + (246580, 96, 800), + (246580, 1, 200), + (246580, 152, 50), + (246581, 91, 8), + (246581, 90, 3), + (246581, 92, 3), + (246581, 97, 3), + (246581, 95, 3), + (246581, 94, 8), + (246581, 93, 2), + (246581, 96, 2), + (246581, 1, 5), + (246581, 152, 1), + (246582, 91, 750), + (246582, 90, 675), + (246582, 92, 675), + (246582, 97, 675), + (246582, 95, 675), + (246582, 94, 750), + (246582, 93, 600), + (246582, 96, 600), + (246582, 1, 200), + (246582, 152, 50), + (246583, 91, 2), + (246583, 90, 2), + (246583, 92, 2), + (246583, 97, 1), + (246583, 95, 2), + (246583, 94, 1), + (246583, 93, 7), + (246583, 96, 2), + (246583, 118, 1), + (246583, 119, 1), + (246583, 120, 1), + (246583, 155, 1), + (246583, 154, 1), + (246583, 153, 1), + (246583, 164, 1), + (246583, 136, 1), + (246583, 165, 1), + (246583, 135, 1), + (246584, 91, 340), + (246584, 90, 340), + (246584, 92, 340), + (246584, 97, 305), + (246584, 95, 340), + (246584, 94, 305), + (246584, 93, 375), + (246584, 96, 340), + (246584, 118, 40), + (246584, 119, 40), + (246584, 120, 40), + (246584, 155, 30), + (246584, 154, 30), + (246584, 153, 30), + (246584, 164, 30), + (246584, 136, 30), + (246584, 165, 30), + (246584, 135, 30), + (246585, 91, 2), + (246585, 90, 2), + (246585, 92, 2), + (246585, 97, 1), + (246585, 95, 2), + (246585, 94, 1), + (246585, 93, 7), + (246585, 96, 2), + (246585, 118, 1), + (246585, 119, 1), + (246585, 120, 1), + (246585, 155, 1), + (246585, 154, 1), + (246585, 153, 1), + (246585, 164, 1), + (246585, 136, 1), + (246585, 165, 1), + (246585, 135, 1), + (246586, 91, 575), + (246586, 90, 575), + (246586, 92, 575), + (246586, 97, 525), + (246586, 95, 575), + (246586, 94, 525), + (246586, 93, 625), + (246586, 96, 575), + (246586, 118, 40), + (246586, 119, 40), + (246586, 120, 40), + (246586, 155, 30), + (246586, 154, 30), + (246586, 153, 30), + (246586, 164, 30), + (246586, 136, 30), + (246586, 165, 30), + (246586, 135, 30), + (246587, 91, 1), + (246587, 90, 1), + (246587, 92, 1), + (246587, 97, 0), + (246587, 95, 1), + (246587, 94, 0), + (246587, 93, 6), + (246587, 96, 1), + (246587, 118, 1), + (246587, 119, 1), + (246587, 120, 1), + (246587, 155, 1), + (246587, 154, 1), + (246587, 153, 1), + (246587, 164, 1), + (246587, 136, 1), + (246587, 165, 1), + (246587, 135, 1), + (246588, 91, 230), + (246588, 90, 230), + (246588, 92, 230), + (246588, 97, 210), + (246588, 95, 230), + (246588, 94, 210), + (246588, 93, 250), + (246588, 96, 230), + (246588, 118, 40), + (246588, 119, 40), + (246588, 120, 40), + (246588, 155, 30), + (246588, 154, 30), + (246588, 153, 30), + (246588, 164, 30), + (246588, 136, 30), + (246588, 165, 30), + (246588, 135, 30), + (246589, 91, 1), + (246589, 90, 1), + (246589, 92, 1), + (246589, 97, 0), + (246589, 95, 1), + (246589, 94, 0), + (246589, 93, 6), + (246589, 96, 1), + (246589, 118, 1), + (246589, 119, 1), + (246589, 120, 1), + (246589, 155, 1), + (246589, 154, 1), + (246589, 153, 1), + (246589, 164, 1), + (246589, 136, 1), + (246589, 165, 1), + (246589, 135, 1), + (246590, 91, 230), + (246590, 90, 230), + (246590, 92, 230), + (246590, 97, 210), + (246590, 95, 230), + (246590, 94, 210), + (246590, 93, 250), + (246590, 96, 230), + (246590, 118, 40), + (246590, 119, 40), + (246590, 120, 40), + (246590, 155, 30), + (246590, 154, 30), + (246590, 153, 30), + (246590, 164, 30), + (246590, 136, 30), + (246590, 165, 30), + (246590, 135, 30), + (246591, 91, 4), + (246591, 90, 4), + (246591, 92, 4), + (246591, 97, 3), + (246591, 95, 4), + (246591, 94, 3), + (246591, 93, 9), + (246591, 96, 4), + (246591, 118, 1), + (246591, 119, 1), + (246591, 120, 1), + (246591, 155, 1), + (246591, 154, 1), + (246591, 153, 1), + (246591, 164, 1), + (246591, 136, 1), + (246591, 165, 1), + (246591, 135, 1), + (246592, 91, 900), + (246592, 90, 900), + (246592, 92, 900), + (246592, 97, 800), + (246592, 95, 900), + (246592, 94, 800), + (246592, 93, 1000), + (246592, 96, 900), + (246592, 118, 40), + (246592, 119, 40), + (246592, 120, 40), + (246592, 155, 30), + (246592, 154, 30), + (246592, 153, 30), + (246592, 164, 30), + (246592, 136, 30), + (246592, 165, 30), + (246592, 135, 30), + (246593, 91, 3), + (246593, 90, 3), + (246593, 92, 3), + (246593, 97, 2), + (246593, 95, 3), + (246593, 94, 2), + (246593, 93, 8), + (246593, 96, 3), + (246593, 118, 1), + (246593, 119, 1), + (246593, 120, 1), + (246593, 155, 1), + (246593, 154, 1), + (246593, 153, 1), + (246593, 164, 1), + (246593, 136, 1), + (246593, 165, 1), + (246593, 135, 1), + (246594, 91, 675), + (246594, 90, 675), + (246594, 92, 675), + (246594, 97, 625), + (246594, 95, 675), + (246594, 94, 625), + (246594, 93, 750), + (246594, 96, 675), + (246594, 118, 40), + (246594, 119, 40), + (246594, 120, 40), + (246594, 155, 30), + (246594, 154, 30), + (246594, 153, 30), + (246594, 164, 30), + (246594, 136, 30), + (246594, 165, 30), + (246594, 135, 30), + (246595, 91, 2), + (246595, 90, 2), + (246595, 92, 1), + (246595, 97, 7), + (246595, 95, 2), + (246595, 94, 2), + (246595, 93, 2), + (246595, 96, 1), + (246595, 221, 5), + (246595, 132, 1), + (246595, 318, 0), + (246596, 91, 340), + (246596, 90, 340), + (246596, 92, 305), + (246596, 97, 375), + (246596, 95, 340), + (246596, 94, 340), + (246596, 93, 340), + (246596, 96, 305), + (246596, 221, 200), + (246596, 132, 50), + (246596, 318, -3), + (246597, 91, 3), + (246597, 90, 3), + (246597, 92, 2), + (246597, 97, 8), + (246597, 95, 3), + (246597, 94, 3), + (246597, 93, 3), + (246597, 96, 2), + (246597, 221, 5), + (246597, 132, 1), + (246597, 318, 0), + (246598, 91, 675), + (246598, 90, 675), + (246598, 92, 600), + (246598, 97, 750), + (246598, 95, 675), + (246598, 94, 675), + (246598, 93, 675), + (246598, 96, 600), + (246598, 221, 200), + (246598, 132, 50), + (246598, 318, -3), + (246599, 91, 4), + (246599, 90, 4), + (246599, 92, 3), + (246599, 97, 9), + (246599, 95, 4), + (246599, 94, 4), + (246599, 93, 4), + (246599, 96, 3), + (246599, 221, 5), + (246599, 132, 1), + (246599, 318, 0), + (246600, 91, 900), + (246600, 90, 900), + (246600, 92, 800), + (246600, 97, 1000), + (246600, 95, 900), + (246600, 94, 900), + (246600, 93, 900), + (246600, 96, 800), + (246600, 221, 200), + (246600, 132, 50), + (246600, 318, -3), + (246601, 91, 1), + (246601, 90, 1), + (246601, 92, 0), + (246601, 97, 6), + (246601, 95, 1), + (246601, 94, 1), + (246601, 93, 1), + (246601, 96, 0), + (246601, 221, 5), + (246601, 132, 1), + (246601, 318, 0), + (246602, 91, 230), + (246602, 90, 230), + (246602, 92, 210), + (246602, 97, 250), + (246602, 95, 230), + (246602, 94, 230), + (246602, 93, 230), + (246602, 96, 210), + (246602, 221, 200), + (246602, 132, 50), + (246602, 318, -3), + (246603, 91, 1), + (246603, 90, 1), + (246603, 92, 0), + (246603, 97, 6), + (246603, 95, 1), + (246603, 94, 1), + (246603, 93, 1), + (246603, 96, 0), + (246603, 221, 5), + (246603, 132, 1), + (246603, 318, 0), + (246604, 91, 230), + (246604, 90, 230), + (246604, 92, 210), + (246604, 97, 250), + (246604, 95, 230), + (246604, 94, 230), + (246604, 93, 230), + (246604, 96, 210), + (246604, 221, 200), + (246604, 132, 50), + (246604, 318, -3), + (246605, 91, 2), + (246605, 90, 2), + (246605, 92, 2), + (246605, 97, 7), + (246605, 95, 2), + (246605, 94, 2), + (246605, 93, 2), + (246605, 96, 1), + (246605, 221, 5), + (246605, 132, 1), + (246605, 318, 0), + (246606, 91, 575), + (246606, 90, 575), + (246606, 92, 525), + (246606, 97, 625), + (246606, 95, 575), + (246606, 94, 575), + (246606, 93, 575), + (246606, 96, 525), + (246606, 221, 200), + (246606, 132, 50), + (246606, 318, -3), + (246607, 91, 2), + (246607, 90, 7), + (246607, 92, 2), + (246607, 97, 2), + (246607, 95, 1), + (246607, 94, 2), + (246607, 93, 1), + (246607, 96, 2), + (246607, 102, 1), + (246607, 103, 1), + (246607, 106, 1), + (246607, 107, 1), + (246607, 105, 1), + (246607, 104, 1), + (246607, 100, 1), + (246607, 142, 1), + (246607, 144, 1), + (246607, 143, 1), + (246607, 145, 1), + (246607, 146, 1), + (246607, 147, 1), + (246607, 101, 1), + (246607, 277, 1), + (246607, 279, 0), + (246607, 278, 0), + (246607, 280, 0), + (246607, 311, 0), + (246607, 316, 0), + (246607, 281, 0), + (246607, 282, 0), + (246607, 317, 0), + (246608, 91, 340), + (246608, 90, 375), + (246608, 92, 340), + (246608, 97, 340), + (246608, 95, 305), + (246608, 94, 340), + (246608, 93, 305), + (246608, 96, 340), + (246608, 102, 30), + (246608, 103, 30), + (246608, 106, 30), + (246608, 107, 30), + (246608, 105, 30), + (246608, 104, 30), + (246608, 100, 30), + (246608, 142, 30), + (246608, 144, 30), + (246608, 143, 30), + (246608, 145, 30), + (246608, 146, 30), + (246608, 147, 30), + (246608, 101, 30), + (246608, 277, 15), + (246608, 279, 10), + (246608, 278, 10), + (246608, 280, 10), + (246608, 311, 10), + (246608, 316, 10), + (246608, 281, 10), + (246608, 282, 10), + (246608, 317, 10), + (246609, 91, 2), + (246609, 90, 7), + (246609, 92, 2), + (246609, 97, 2), + (246609, 95, 1), + (246609, 94, 2), + (246609, 93, 1), + (246609, 96, 2), + (246609, 102, 1), + (246609, 103, 1), + (246609, 106, 1), + (246609, 107, 1), + (246609, 105, 1), + (246609, 104, 1), + (246609, 100, 1), + (246609, 142, 1), + (246609, 144, 1), + (246609, 143, 1), + (246609, 145, 1), + (246609, 146, 1), + (246609, 147, 1), + (246609, 101, 1), + (246609, 277, 1), + (246609, 279, 0), + (246609, 278, 0), + (246609, 280, 0), + (246609, 311, 0), + (246609, 316, 0), + (246609, 281, 0), + (246609, 282, 0), + (246609, 317, 0), + (246610, 91, 575), + (246610, 90, 625), + (246610, 92, 575), + (246610, 97, 575), + (246610, 95, 525), + (246610, 94, 575), + (246610, 93, 525), + (246610, 96, 575), + (246610, 102, 30), + (246610, 103, 30), + (246610, 106, 30), + (246610, 107, 30), + (246610, 105, 30), + (246610, 104, 30), + (246610, 100, 30), + (246610, 142, 30), + (246610, 144, 30), + (246610, 143, 30), + (246610, 145, 30), + (246610, 146, 30), + (246610, 147, 30), + (246610, 101, 30), + (246610, 277, 15), + (246610, 279, 10), + (246610, 278, 10), + (246610, 280, 10), + (246610, 311, 10), + (246610, 316, 10), + (246610, 281, 10), + (246610, 282, 10), + (246610, 317, 10), + (246611, 91, 1), + (246611, 90, 6), + (246611, 92, 1), + (246611, 97, 1), + (246611, 95, 0), + (246611, 94, 1), + (246611, 93, 0), + (246611, 96, 1), + (246611, 102, 1), + (246611, 103, 1), + (246611, 106, 1), + (246611, 107, 1), + (246611, 105, 1), + (246611, 104, 1), + (246611, 100, 1), + (246611, 142, 1), + (246611, 144, 1), + (246611, 143, 1), + (246611, 145, 1), + (246611, 146, 1), + (246611, 147, 1), + (246611, 101, 1), + (246611, 277, 1), + (246611, 279, 0), + (246611, 278, 0), + (246611, 280, 0), + (246611, 311, 0), + (246611, 316, 0), + (246611, 281, 0), + (246611, 282, 0), + (246611, 317, 0), + (246612, 91, 230), + (246612, 90, 250), + (246612, 92, 230), + (246612, 97, 230), + (246612, 95, 210), + (246612, 94, 230), + (246612, 93, 210), + (246612, 96, 230), + (246612, 102, 30), + (246612, 103, 30), + (246612, 106, 30), + (246612, 107, 30), + (246612, 105, 30), + (246612, 104, 30), + (246612, 100, 30), + (246612, 142, 30), + (246612, 144, 30), + (246612, 143, 30), + (246612, 145, 30), + (246612, 146, 30), + (246612, 147, 30), + (246612, 101, 30), + (246612, 277, 15), + (246612, 279, 10), + (246612, 278, 10), + (246612, 280, 10), + (246612, 311, 10), + (246612, 316, 10), + (246612, 281, 10), + (246612, 282, 10), + (246612, 317, 10), + (246613, 91, 1), + (246613, 90, 6), + (246613, 92, 1), + (246613, 97, 1), + (246613, 95, 0), + (246613, 94, 1), + (246613, 93, 0), + (246613, 96, 1), + (246613, 102, 1), + (246613, 103, 1), + (246613, 106, 1), + (246613, 107, 1), + (246613, 105, 1), + (246613, 104, 1), + (246613, 100, 1), + (246613, 142, 1), + (246613, 144, 1), + (246613, 143, 1), + (246613, 145, 1), + (246613, 146, 1), + (246613, 147, 1), + (246613, 101, 1), + (246613, 277, 1), + (246613, 279, 0), + (246613, 278, 0), + (246613, 280, 0), + (246613, 311, 0), + (246613, 316, 0), + (246613, 281, 0), + (246613, 282, 0), + (246613, 317, 0), + (246614, 91, 230), + (246614, 90, 250), + (246614, 92, 230), + (246614, 97, 230), + (246614, 95, 210), + (246614, 94, 230), + (246614, 93, 210), + (246614, 96, 230), + (246614, 102, 30), + (246614, 103, 30), + (246614, 106, 30), + (246614, 107, 30), + (246614, 105, 30), + (246614, 104, 30), + (246614, 100, 30), + (246614, 142, 30), + (246614, 144, 30), + (246614, 143, 30), + (246614, 145, 30), + (246614, 146, 30), + (246614, 147, 30), + (246614, 101, 30), + (246614, 277, 15), + (246614, 279, 10), + (246614, 278, 10), + (246614, 280, 10), + (246614, 311, 10), + (246614, 316, 10), + (246614, 281, 10), + (246614, 282, 10), + (246614, 317, 10), + (246615, 91, 4), + (246615, 90, 9), + (246615, 92, 4), + (246615, 97, 4), + (246615, 95, 3), + (246615, 94, 4), + (246615, 93, 3), + (246615, 96, 4), + (246615, 102, 1), + (246615, 103, 1), + (246615, 106, 1), + (246615, 107, 1), + (246615, 105, 1), + (246615, 104, 1), + (246615, 100, 1), + (246615, 142, 1), + (246615, 144, 1), + (246615, 143, 1), + (246615, 145, 1), + (246615, 146, 1), + (246615, 147, 1), + (246615, 101, 1), + (246615, 277, 1), + (246615, 279, 0), + (246615, 278, 0), + (246615, 280, 0), + (246615, 311, 0), + (246615, 316, 0), + (246615, 281, 0), + (246615, 282, 0), + (246615, 317, 0), + (246616, 91, 900), + (246616, 90, 1000), + (246616, 92, 900), + (246616, 97, 900), + (246616, 95, 800), + (246616, 94, 900), + (246616, 93, 800), + (246616, 96, 900), + (246616, 102, 30), + (246616, 103, 30), + (246616, 106, 30), + (246616, 107, 30), + (246616, 105, 30), + (246616, 104, 30), + (246616, 100, 30), + (246616, 142, 30), + (246616, 144, 30), + (246616, 143, 30), + (246616, 145, 30), + (246616, 146, 30), + (246616, 147, 30), + (246616, 101, 30), + (246616, 277, 15), + (246616, 279, 10), + (246616, 278, 10), + (246616, 280, 10), + (246616, 311, 10), + (246616, 316, 10), + (246616, 281, 10), + (246616, 282, 10), + (246616, 317, 10), + (246617, 91, 3), + (246617, 90, 8), + (246617, 92, 3), + (246617, 97, 3), + (246617, 95, 2), + (246617, 94, 3), + (246617, 93, 2), + (246617, 96, 3), + (246617, 102, 1), + (246617, 103, 1), + (246617, 106, 1), + (246617, 107, 1), + (246617, 105, 1), + (246617, 104, 1), + (246617, 100, 1), + (246617, 142, 1), + (246617, 144, 1), + (246617, 143, 1), + (246617, 145, 1), + (246617, 146, 1), + (246617, 147, 1), + (246617, 101, 1), + (246617, 277, 1), + (246617, 279, 0), + (246617, 278, 0), + (246617, 280, 0), + (246617, 311, 0), + (246617, 316, 0), + (246617, 281, 0), + (246617, 282, 0), + (246617, 317, 0), + (246618, 91, 675), + (246618, 90, 750), + (246618, 92, 675), + (246618, 97, 625), + (246618, 95, 625), + (246618, 94, 675), + (246618, 93, 625), + (246618, 96, 675), + (246618, 102, 30), + (246618, 103, 30), + (246618, 106, 30), + (246618, 107, 30), + (246618, 105, 30), + (246618, 104, 30), + (246618, 100, 30), + (246618, 142, 30), + (246618, 144, 30), + (246618, 143, 30), + (246618, 145, 30), + (246618, 146, 30), + (246618, 147, 30), + (246618, 101, 30), + (246618, 277, 15), + (246618, 279, 10), + (246618, 278, 10), + (246618, 280, 10), + (246618, 311, 10), + (246618, 316, 10), + (246618, 281, 10), + (246618, 282, 10), + (246618, 317, 10), + (246619, 91, 3), + (246619, 90, 3), + (246619, 92, 8), + (246619, 97, 2), + (246619, 95, 2), + (246619, 94, 3), + (246619, 93, 3), + (246619, 96, 8), + (246619, 276, 1), + (246619, 111, 1), + (246619, 112, 1), + (246619, 116, 1), + (246619, 114, 1), + (246619, 115, 1), + (246619, 113, 1), + (246619, 133, 1), + (246619, 108, 1), + (246619, 109, 1), + (246619, 110, 1), + (246619, 150, 1), + (246619, 151, 1), + (246619, 148, 1), + (246619, 167, 1), + (246619, 121, 1), + (246619, 134, 1), + (246620, 91, 675), + (246620, 90, 675), + (246620, 92, 750), + (246620, 97, 625), + (246620, 95, 625), + (246620, 94, 675), + (246620, 93, 675), + (246620, 96, 750), + (246620, 276, 15), + (246620, 111, 30), + (246620, 112, 30), + (246620, 116, 30), + (246620, 114, 30), + (246620, 115, 30), + (246620, 113, 30), + (246620, 133, 30), + (246620, 108, 30), + (246620, 109, 30), + (246620, 110, 30), + (246620, 150, 30), + (246620, 151, 30), + (246620, 148, 30), + (246620, 167, 30), + (246620, 121, 30), + (246620, 134, 30), + (246621, 91, 4), + (246621, 90, 4), + (246621, 92, 9), + (246621, 97, 3), + (246621, 95, 3), + (246621, 94, 4), + (246621, 93, 4), + (246621, 96, 9), + (246621, 276, 1), + (246621, 111, 1), + (246621, 112, 1), + (246621, 116, 1), + (246621, 114, 1), + (246621, 115, 1), + (246621, 113, 1), + (246621, 133, 1), + (246621, 108, 1), + (246621, 109, 1), + (246621, 110, 1), + (246621, 150, 1), + (246621, 151, 1), + (246621, 148, 1), + (246621, 167, 1), + (246621, 121, 1), + (246621, 134, 1), + (246622, 91, 900), + (246622, 90, 900), + (246622, 92, 1000), + (246622, 97, 800), + (246622, 95, 800), + (246622, 94, 900), + (246622, 93, 900), + (246622, 96, 1000), + (246622, 276, 15), + (246622, 111, 30), + (246622, 112, 30), + (246622, 116, 30), + (246622, 114, 30), + (246622, 115, 30), + (246622, 113, 30), + (246622, 133, 30), + (246622, 108, 30), + (246622, 109, 30), + (246622, 110, 30), + (246622, 150, 30), + (246622, 151, 30), + (246622, 148, 30), + (246622, 167, 30), + (246622, 121, 30), + (246622, 134, 30), + (246623, 91, 1), + (246623, 90, 1), + (246623, 92, 6), + (246623, 97, 0), + (246623, 95, 0), + (246623, 94, 1), + (246623, 93, 1), + (246623, 96, 6), + (246623, 276, 1), + (246623, 111, 1), + (246623, 112, 1), + (246623, 116, 1), + (246623, 114, 1), + (246623, 115, 1), + (246623, 113, 1), + (246623, 133, 1), + (246623, 108, 1), + (246623, 109, 1), + (246623, 110, 1), + (246623, 150, 1), + (246623, 151, 1), + (246623, 148, 1), + (246623, 167, 1), + (246623, 121, 1), + (246623, 134, 1), + (246624, 91, 230), + (246624, 90, 230), + (246624, 92, 250), + (246624, 97, 210), + (246624, 95, 210), + (246624, 94, 230), + (246624, 93, 230), + (246624, 96, 250), + (246624, 276, 15), + (246624, 111, 30), + (246624, 112, 30), + (246624, 116, 30), + (246624, 114, 30), + (246624, 115, 30), + (246624, 113, 30), + (246624, 133, 30), + (246624, 108, 30), + (246624, 109, 30), + (246624, 110, 30), + (246624, 150, 30), + (246624, 151, 30), + (246624, 148, 30), + (246624, 167, 30), + (246624, 121, 30), + (246624, 134, 30), + (246625, 91, 1), + (246625, 90, 1), + (246625, 92, 6), + (246625, 97, 0), + (246625, 95, 0), + (246625, 94, 1), + (246625, 93, 1), + (246625, 96, 6), + (246625, 276, 1), + (246625, 111, 1), + (246625, 112, 1), + (246625, 116, 1), + (246625, 114, 1), + (246625, 115, 1), + (246625, 113, 1), + (246625, 133, 1), + (246625, 108, 1), + (246625, 109, 1), + (246625, 110, 1), + (246625, 150, 1), + (246625, 151, 1), + (246625, 148, 1), + (246625, 167, 1), + (246625, 121, 1), + (246625, 134, 1), + (246626, 91, 230), + (246626, 90, 230), + (246626, 92, 250), + (246626, 97, 210), + (246626, 95, 210), + (246626, 94, 230), + (246626, 93, 230), + (246626, 96, 250), + (246626, 276, 15), + (246626, 111, 30), + (246626, 112, 30), + (246626, 116, 30), + (246626, 114, 30), + (246626, 115, 30), + (246626, 113, 30), + (246626, 133, 30), + (246626, 108, 30), + (246626, 109, 30), + (246626, 110, 30), + (246626, 150, 30), + (246626, 151, 30), + (246626, 148, 30), + (246626, 167, 30), + (246626, 121, 30), + (246626, 134, 30), + (246627, 91, 2), + (246627, 90, 2), + (246627, 92, 7), + (246627, 97, 1), + (246627, 95, 1), + (246627, 94, 2), + (246627, 93, 2), + (246627, 96, 7), + (246627, 276, 1), + (246627, 111, 1), + (246627, 112, 1), + (246627, 116, 1), + (246627, 114, 1), + (246627, 115, 1), + (246627, 113, 1), + (246627, 133, 1), + (246627, 108, 1), + (246627, 109, 1), + (246627, 110, 1), + (246627, 150, 1), + (246627, 151, 1), + (246627, 148, 1), + (246627, 167, 1), + (246627, 121, 1), + (246627, 134, 1), + (246628, 91, 340), + (246628, 90, 340), + (246628, 92, 375), + (246628, 97, 305), + (246628, 95, 305), + (246628, 94, 340), + (246628, 93, 340), + (246628, 96, 375), + (246628, 276, 15), + (246628, 111, 30), + (246628, 112, 30), + (246628, 116, 30), + (246628, 114, 30), + (246628, 115, 30), + (246628, 113, 30), + (246628, 133, 30), + (246628, 108, 30), + (246628, 109, 30), + (246628, 110, 30), + (246628, 150, 30), + (246628, 151, 30), + (246628, 148, 30), + (246628, 167, 30), + (246628, 121, 30), + (246628, 134, 30), + (246629, 91, 2), + (246629, 90, 2), + (246629, 92, 7), + (246629, 97, 1), + (246629, 95, 1), + (246629, 94, 2), + (246629, 93, 2), + (246629, 96, 7), + (246629, 276, 1), + (246629, 111, 1), + (246629, 112, 1), + (246629, 116, 1), + (246629, 114, 1), + (246629, 115, 1), + (246629, 113, 1), + (246629, 133, 1), + (246629, 108, 1), + (246629, 109, 1), + (246629, 110, 1), + (246629, 150, 1), + (246629, 151, 1), + (246629, 148, 1), + (246629, 167, 1), + (246629, 121, 1), + (246629, 134, 1), + (246630, 91, 575), + (246630, 90, 575), + (246630, 92, 625), + (246630, 97, 525), + (246630, 95, 525), + (246630, 94, 575), + (246630, 93, 575), + (246630, 96, 625), + (246630, 276, 15), + (246630, 111, 30), + (246630, 112, 30), + (246630, 116, 30), + (246630, 114, 30), + (246630, 115, 30), + (246630, 113, 30), + (246630, 133, 30), + (246630, 108, 30), + (246630, 109, 30), + (246630, 110, 30), + (246630, 150, 30), + (246630, 151, 30), + (246630, 148, 30), + (246630, 167, 30), + (246630, 121, 30), + (246630, 134, 30), + (246631, 91, 11), + (246631, 90, 6), + (246631, 92, 5), + (246631, 97, 11), + (246631, 95, 6), + (246631, 94, 11), + (246631, 93, 5), + (246631, 96, 4), + (246631, 1, 5), + (246631, 152, 1), + (246631, 221, 5), + (246631, 132, 1), + (246631, 318, 0), + (246632, 91, 1425), + (246632, 90, 1350), + (246632, 92, 1275), + (246632, 97, 1425), + (246632, 95, 1350), + (246632, 94, 1425), + (246632, 93, 1275), + (246632, 96, 1200), + (246632, 1, 200), + (246632, 152, 50), + (246632, 221, 200), + (246632, 132, 50), + (246632, 318, -3), + (246635, 91, 11), + (246635, 90, 11), + (246635, 92, 6), + (246635, 97, 6), + (246635, 95, 5), + (246635, 94, 11), + (246635, 93, 4), + (246635, 96, 5), + (246635, 102, 1), + (246635, 103, 1), + (246635, 106, 1), + (246635, 107, 1), + (246635, 105, 1), + (246635, 104, 1), + (246635, 100, 1), + (246635, 142, 1), + (246635, 144, 1), + (246635, 143, 1), + (246635, 145, 1), + (246635, 146, 1), + (246635, 101, 1), + (246635, 147, 1), + (246635, 277, 1), + (246635, 279, 0), + (246635, 278, 0), + (246635, 280, 0), + (246635, 311, 0), + (246635, 316, 0), + (246635, 281, 0), + (246635, 282, 0), + (246635, 317, 0), + (246635, 1, 5), + (246635, 152, 1), + (246636, 91, 1425), + (246636, 90, 1425), + (246636, 92, 1350), + (246636, 97, 1350), + (246636, 95, 1275), + (246636, 94, 1425), + (246636, 93, 1200), + (246636, 96, 1275), + (246636, 102, 30), + (246636, 103, 30), + (246636, 106, 30), + (246636, 107, 30), + (246636, 105, 30), + (246636, 104, 30), + (246636, 100, 30), + (246636, 142, 30), + (246636, 144, 30), + (246636, 143, 30), + (246636, 145, 30), + (246636, 146, 30), + (246636, 101, 30), + (246636, 147, 30), + (246636, 277, 15), + (246636, 279, 10), + (246636, 278, 10), + (246636, 280, 10), + (246636, 311, 10), + (246636, 316, 10), + (246636, 281, 10), + (246636, 282, 10), + (246636, 317, 10), + (246636, 1, 200), + (246636, 152, 50), + (246637, 91, 13), + (246637, 90, 13), + (246637, 92, 8), + (246637, 97, 8), + (246637, 95, 7), + (246637, 94, 13), + (246637, 93, 6), + (246637, 96, 7), + (246637, 102, 1), + (246637, 103, 1), + (246637, 106, 1), + (246637, 107, 1), + (246637, 105, 1), + (246637, 104, 1), + (246637, 100, 1), + (246637, 142, 1), + (246637, 144, 1), + (246637, 143, 1), + (246637, 145, 1), + (246637, 146, 1), + (246637, 147, 1), + (246637, 101, 1), + (246637, 277, 1), + (246637, 279, 0), + (246637, 278, 0), + (246637, 280, 0), + (246637, 311, 0), + (246637, 316, 0), + (246637, 281, 0), + (246637, 282, 0), + (246637, 317, 0), + (246637, 1, 5), + (246637, 152, 1), + (246638, 91, 1900), + (246638, 90, 1900), + (246638, 92, 1800), + (246638, 97, 1800), + (246638, 95, 1700), + (246638, 94, 1900), + (246638, 93, 1600), + (246638, 96, 1700), + (246638, 102, 30), + (246638, 103, 30), + (246638, 106, 30), + (246638, 107, 30), + (246638, 105, 30), + (246638, 104, 30), + (246638, 100, 30), + (246638, 142, 30), + (246638, 144, 30), + (246638, 143, 30), + (246638, 145, 30), + (246638, 146, 30), + (246638, 147, 30), + (246638, 101, 30), + (246638, 277, 15), + (246638, 279, 10), + (246638, 278, 10), + (246638, 280, 10), + (246638, 311, 10), + (246638, 316, 10), + (246638, 281, 10), + (246638, 282, 10), + (246638, 317, 10), + (246638, 1, 200), + (246638, 152, 50), + (246639, 91, 7), + (246639, 90, 7), + (246639, 92, 2), + (246639, 97, 2), + (246639, 95, 1), + (246639, 94, 7), + (246639, 93, 0), + (246639, 96, 1), + (246639, 102, 1), + (246639, 103, 1), + (246639, 106, 1), + (246639, 107, 1), + (246639, 105, 1), + (246639, 104, 1), + (246639, 100, 1), + (246639, 142, 1), + (246639, 144, 1), + (246639, 143, 1), + (246639, 145, 1), + (246639, 146, 1), + (246639, 147, 1), + (246639, 101, 1), + (246639, 277, 1), + (246639, 279, 0), + (246639, 278, 0), + (246639, 280, 0), + (246639, 311, 0), + (246639, 316, 0), + (246639, 281, 0), + (246639, 282, 0), + (246639, 317, 0), + (246639, 1, 5), + (246639, 152, 1), + (246640, 91, 480), + (246640, 90, 480), + (246640, 92, 460), + (246640, 97, 460), + (246640, 95, 440), + (246640, 94, 480), + (246640, 93, 420), + (246640, 96, 440), + (246640, 102, 30), + (246640, 103, 30), + (246640, 106, 30), + (246640, 107, 30), + (246640, 105, 30), + (246640, 104, 30), + (246640, 100, 30), + (246640, 142, 30), + (246640, 144, 30), + (246640, 143, 30), + (246640, 145, 30), + (246640, 146, 30), + (246640, 147, 30), + (246640, 101, 30), + (246640, 277, 15), + (246640, 279, 10), + (246640, 278, 10), + (246640, 280, 10), + (246640, 311, 10), + (246640, 316, 10), + (246640, 281, 10), + (246640, 282, 10), + (246640, 317, 10), + (246640, 1, 200), + (246640, 152, 50), + (246641, 91, 7), + (246641, 90, 7), + (246641, 92, 2), + (246641, 97, 2), + (246641, 95, 1), + (246641, 94, 7), + (246641, 93, 0), + (246641, 96, 1), + (246641, 102, 1), + (246641, 103, 1), + (246641, 106, 1), + (246641, 107, 1), + (246641, 105, 1), + (246641, 104, 1), + (246641, 100, 1), + (246641, 142, 1), + (246641, 144, 1), + (246641, 143, 1), + (246641, 145, 1), + (246641, 146, 1), + (246641, 147, 1), + (246641, 101, 1), + (246641, 277, 1), + (246641, 279, 0), + (246641, 278, 0), + (246641, 280, 0), + (246641, 311, 0), + (246641, 316, 0), + (246641, 281, 0), + (246641, 282, 0), + (246641, 317, 0), + (246641, 1, 5), + (246641, 152, 1), + (246642, 91, 480), + (246642, 90, 480), + (246642, 92, 460), + (246642, 97, 460), + (246642, 95, 440), + (246642, 94, 480), + (246642, 93, 420), + (246642, 96, 440), + (246642, 102, 30), + (246642, 103, 30), + (246642, 106, 30), + (246642, 107, 30), + (246642, 105, 30), + (246642, 104, 30), + (246642, 100, 30), + (246642, 142, 30), + (246642, 144, 30), + (246642, 143, 30), + (246642, 145, 30), + (246642, 146, 30), + (246642, 147, 30), + (246642, 101, 30), + (246642, 277, 15), + (246642, 279, 10), + (246642, 278, 10), + (246642, 280, 10), + (246642, 311, 10), + (246642, 316, 10), + (246642, 281, 10), + (246642, 282, 10), + (246642, 317, 10), + (246642, 1, 200), + (246642, 152, 50), + (246643, 91, 9), + (246643, 90, 9), + (246643, 92, 4), + (246643, 97, 4), + (246643, 95, 3), + (246643, 94, 9), + (246643, 93, 2), + (246643, 96, 3), + (246643, 102, 1), + (246643, 103, 1), + (246643, 106, 1), + (246643, 107, 1), + (246643, 105, 1), + (246643, 104, 1), + (246643, 100, 1), + (246643, 142, 1), + (246643, 144, 1), + (246643, 143, 1), + (246643, 145, 1), + (246643, 146, 1), + (246643, 147, 1), + (246643, 101, 1), + (246643, 277, 1), + (246643, 279, 0), + (246643, 278, 0), + (246643, 280, 0), + (246643, 311, 0), + (246643, 316, 0), + (246643, 281, 0), + (246643, 282, 0), + (246643, 317, 0), + (246643, 1, 5), + (246643, 152, 1), + (246644, 91, 1200), + (246644, 90, 1200), + (246644, 92, 1150), + (246644, 97, 1150), + (246644, 95, 1100), + (246644, 94, 1200), + (246644, 93, 1050), + (246644, 96, 1100), + (246644, 102, 30), + (246644, 103, 30), + (246644, 106, 30), + (246644, 107, 30), + (246644, 105, 30), + (246644, 104, 30), + (246644, 100, 30), + (246644, 142, 30), + (246644, 144, 30), + (246644, 143, 30), + (246644, 145, 30), + (246644, 146, 30), + (246644, 147, 30), + (246644, 101, 30), + (246644, 277, 15), + (246644, 279, 10), + (246644, 278, 10), + (246644, 280, 10), + (246644, 311, 10), + (246644, 316, 10), + (246644, 281, 10), + (246644, 282, 10), + (246644, 317, 10), + (246644, 1, 200), + (246644, 152, 50), + (246645, 91, 9), + (246645, 90, 9), + (246645, 92, 4), + (246645, 97, 4), + (246645, 95, 3), + (246645, 94, 9), + (246645, 93, 2), + (246645, 96, 3), + (246645, 102, 1), + (246645, 103, 1), + (246645, 106, 1), + (246645, 107, 1), + (246645, 105, 1), + (246645, 104, 1), + (246645, 100, 1), + (246645, 142, 1), + (246645, 144, 1), + (246645, 143, 1), + (246645, 145, 1), + (246645, 146, 1), + (246645, 147, 1), + (246645, 101, 1), + (246645, 277, 1), + (246645, 279, 0), + (246645, 278, 0), + (246645, 280, 0), + (246645, 311, 0), + (246645, 316, 0), + (246645, 281, 0), + (246645, 282, 0), + (246645, 317, 0), + (246645, 1, 5), + (246645, 152, 1), + (246646, 91, 715), + (246646, 90, 715), + (246646, 92, 680), + (246646, 97, 680), + (246646, 95, 645), + (246646, 94, 715), + (246646, 93, 610), + (246646, 96, 645), + (246646, 102, 30), + (246646, 103, 30), + (246646, 106, 30), + (246646, 107, 30), + (246646, 105, 30), + (246646, 104, 30), + (246646, 100, 30), + (246646, 142, 30), + (246646, 144, 30), + (246646, 143, 30), + (246646, 145, 30), + (246646, 146, 30), + (246646, 147, 30), + (246646, 101, 30), + (246646, 277, 15), + (246646, 279, 10), + (246646, 278, 10), + (246646, 280, 10), + (246646, 311, 10), + (246646, 316, 10), + (246646, 281, 10), + (246646, 282, 10), + (246646, 317, 10), + (246646, 1, 200), + (246646, 152, 50), + (246647, 91, 13), + (246647, 90, 8), + (246647, 92, 7), + (246647, 97, 13), + (246647, 95, 8), + (246647, 94, 13), + (246647, 93, 7), + (246647, 96, 6), + (246647, 1, 5), + (246647, 152, 1), + (246647, 221, 5), + (246647, 132, 1), + (246647, 318, 0), + (246648, 91, 1900), + (246648, 90, 1800), + (246648, 92, 1700), + (246648, 97, 1900), + (246648, 95, 1800), + (246648, 94, 1900), + (246648, 93, 1700), + (246648, 96, 1600), + (246648, 1, 200), + (246648, 152, 50), + (246648, 221, 200), + (246648, 132, 50), + (246648, 318, -3), + (246649, 91, 7), + (246649, 90, 2), + (246649, 92, 1), + (246649, 97, 7), + (246649, 95, 2), + (246649, 94, 7), + (246649, 93, 1), + (246649, 96, 0), + (246649, 1, 5), + (246649, 152, 1), + (246649, 221, 5), + (246649, 132, 1), + (246649, 318, 0), + (246650, 91, 480), + (246650, 90, 460), + (246650, 92, 440), + (246650, 97, 480), + (246650, 95, 460), + (246650, 94, 480), + (246650, 93, 440), + (246650, 96, 420), + (246650, 1, 200), + (246650, 152, 50), + (246650, 221, 200), + (246650, 132, 50), + (246650, 318, -3), + (246651, 91, 7), + (246651, 90, 2), + (246651, 92, 1), + (246651, 97, 7), + (246651, 95, 2), + (246651, 94, 7), + (246651, 93, 1), + (246651, 96, 0), + (246651, 1, 5), + (246651, 152, 1), + (246651, 221, 5), + (246651, 132, 1), + (246651, 318, 0), + (246652, 91, 480), + (246652, 90, 460), + (246652, 92, 440), + (246652, 97, 480), + (246652, 95, 460), + (246652, 94, 480), + (246652, 93, 440), + (246652, 96, 420), + (246652, 1, 200), + (246652, 152, 50), + (246652, 221, 200), + (246652, 132, 50), + (246652, 318, -3), + (246653, 91, 9), + (246653, 90, 4), + (246653, 92, 3), + (246653, 97, 9), + (246653, 95, 4), + (246653, 94, 9), + (246653, 93, 3), + (246653, 96, 2), + (246653, 1, 5), + (246653, 152, 1), + (246653, 221, 5), + (246653, 132, 1), + (246653, 318, 0), + (246654, 91, 1200), + (246654, 90, 1150), + (246654, 92, 1100), + (246654, 97, 1200), + (246654, 95, 1150), + (246654, 94, 1200), + (246654, 93, 1100), + (246654, 96, 1050), + (246654, 1, 200), + (246654, 152, 50), + (246654, 221, 200), + (246654, 132, 50), + (246654, 318, -3), + (246655, 91, 9), + (246655, 90, 4), + (246655, 92, 3), + (246655, 97, 9), + (246655, 95, 4), + (246655, 94, 9), + (246655, 93, 3), + (246655, 96, 2), + (246655, 1, 5), + (246655, 152, 1), + (246655, 221, 5), + (246655, 132, 1), + (246655, 318, 0), + (246656, 91, 715), + (246656, 90, 680), + (246656, 92, 645), + (246656, 97, 715), + (246656, 95, 680), + (246656, 94, 715), + (246656, 93, 645), + (246656, 96, 610), + (246656, 1, 200), + (246656, 152, 50), + (246656, 221, 200), + (246656, 132, 50), + (246656, 318, -3), + (246657, 91, 6), + (246657, 90, 11), + (246657, 92, 11), + (246657, 97, 5), + (246657, 95, 4), + (246657, 94, 6), + (246657, 93, 5), + (246657, 96, 11), + (246657, 102, 1), + (246657, 103, 1), + (246657, 106, 1), + (246657, 107, 1), + (246657, 105, 1), + (246657, 104, 1), + (246657, 100, 1), + (246657, 142, 1), + (246657, 144, 1), + (246657, 143, 1), + (246657, 145, 1), + (246657, 146, 1), + (246657, 147, 1), + (246657, 101, 1), + (246657, 277, 1), + (246657, 279, 0), + (246657, 278, 0), + (246657, 280, 0), + (246657, 311, 0), + (246657, 316, 0), + (246657, 281, 0), + (246657, 282, 0), + (246657, 317, 0), + (246657, 111, 1), + (246657, 112, 1), + (246657, 116, 1), + (246657, 114, 1), + (246657, 115, 1), + (246657, 113, 1), + (246657, 133, 1), + (246657, 108, 1), + (246657, 109, 1), + (246657, 110, 1), + (246657, 150, 1), + (246657, 151, 1), + (246657, 148, 1), + (246657, 167, 1), + (246657, 121, 1), + (246657, 134, 1), + (246657, 276, 1), + (246658, 91, 1350), + (246658, 90, 1425), + (246658, 92, 1425), + (246658, 97, 1275), + (246658, 95, 1200), + (246658, 94, 1350), + (246658, 93, 1275), + (246658, 96, 1425), + (246658, 102, 30), + (246658, 103, 30), + (246658, 106, 30), + (246658, 107, 30), + (246658, 105, 30), + (246658, 104, 30), + (246658, 100, 30), + (246658, 142, 30), + (246658, 144, 30), + (246658, 143, 30), + (246658, 145, 30), + (246658, 146, 30), + (246658, 147, 30), + (246658, 101, 30), + (246658, 277, 15), + (246658, 279, 10), + (246658, 278, 10), + (246658, 280, 10), + (246658, 311, 10), + (246658, 316, 10), + (246658, 281, 10), + (246658, 282, 10), + (246658, 317, 10), + (246658, 111, 30), + (246658, 112, 30), + (246658, 116, 30), + (246658, 114, 30), + (246658, 115, 30), + (246658, 113, 30), + (246658, 133, 30), + (246658, 108, 30), + (246658, 109, 30), + (246658, 110, 30), + (246658, 150, 30), + (246658, 151, 30), + (246658, 148, 30), + (246658, 167, 30), + (246658, 121, 30), + (246658, 134, 30), + (246658, 276, 15), + (246659, 91, 8), + (246659, 90, 13), + (246659, 92, 13), + (246659, 97, 7), + (246659, 95, 6), + (246659, 94, 8), + (246659, 93, 7), + (246659, 96, 13), + (246659, 102, 1), + (246659, 103, 1), + (246659, 106, 1), + (246659, 107, 1), + (246659, 105, 1), + (246659, 104, 1), + (246659, 100, 1), + (246659, 142, 1), + (246659, 144, 1), + (246659, 143, 1), + (246659, 145, 1), + (246659, 146, 1), + (246659, 147, 1), + (246659, 101, 1), + (246659, 277, 1), + (246659, 279, 0), + (246659, 278, 0), + (246659, 280, 0), + (246659, 311, 0), + (246659, 316, 0), + (246659, 281, 0), + (246659, 282, 0), + (246659, 317, 0), + (246659, 111, 1), + (246659, 112, 1), + (246659, 116, 1), + (246659, 114, 1), + (246659, 115, 1), + (246659, 113, 1), + (246659, 133, 1), + (246659, 108, 1), + (246659, 109, 1), + (246659, 110, 1), + (246659, 150, 1), + (246659, 151, 1), + (246659, 148, 1), + (246659, 167, 1), + (246659, 121, 1), + (246659, 134, 1), + (246659, 276, 1), + (246660, 91, 1800), + (246660, 90, 1900), + (246660, 92, 1900), + (246660, 97, 1700), + (246660, 95, 1600), + (246660, 94, 1800), + (246660, 93, 1700), + (246660, 96, 1900), + (246660, 102, 30), + (246660, 103, 30), + (246660, 106, 30), + (246660, 107, 30), + (246660, 105, 30), + (246660, 104, 30), + (246660, 100, 30), + (246660, 142, 30), + (246660, 144, 30), + (246660, 143, 30), + (246660, 145, 30), + (246660, 146, 30), + (246660, 147, 30), + (246660, 101, 30), + (246660, 277, 15), + (246660, 279, 10), + (246660, 278, 10), + (246660, 280, 10), + (246660, 311, 10), + (246660, 316, 10), + (246660, 281, 10), + (246660, 282, 10), + (246660, 317, 10), + (246660, 111, 30), + (246660, 112, 30), + (246660, 116, 30), + (246660, 114, 30), + (246660, 115, 30), + (246660, 113, 30), + (246660, 133, 30), + (246660, 108, 30), + (246660, 109, 30), + (246660, 110, 30), + (246660, 150, 30), + (246660, 151, 30), + (246660, 148, 30), + (246660, 167, 30), + (246660, 121, 30), + (246660, 134, 30), + (246660, 276, 15), + (246661, 91, 2), + (246661, 90, 7), + (246661, 92, 7), + (246661, 97, 1), + (246661, 95, 0), + (246661, 94, 2), + (246661, 93, 1), + (246661, 96, 7), + (246661, 102, 1), + (246661, 103, 1), + (246661, 106, 1), + (246661, 107, 1), + (246661, 105, 1), + (246661, 104, 1), + (246661, 100, 1), + (246661, 142, 1), + (246661, 144, 1), + (246661, 143, 1), + (246661, 145, 1), + (246661, 146, 1), + (246661, 147, 1), + (246661, 101, 1), + (246661, 277, 1), + (246661, 279, 0), + (246661, 278, 0), + (246661, 280, 0), + (246661, 311, 0), + (246661, 316, 0), + (246661, 281, 0), + (246661, 282, 0), + (246661, 317, 0), + (246661, 111, 1), + (246661, 112, 1), + (246661, 116, 1), + (246661, 114, 1), + (246661, 115, 1), + (246661, 113, 1), + (246661, 133, 1), + (246661, 108, 1), + (246661, 109, 1), + (246661, 110, 1), + (246661, 150, 1), + (246661, 151, 1), + (246661, 148, 1), + (246661, 167, 1), + (246661, 121, 1), + (246661, 134, 1), + (246661, 276, 1), + (246662, 91, 460), + (246662, 90, 480), + (246662, 92, 480), + (246662, 97, 440), + (246662, 95, 420), + (246662, 94, 460), + (246662, 93, 440), + (246662, 96, 480), + (246662, 102, 30), + (246662, 103, 30), + (246662, 106, 30), + (246662, 107, 30), + (246662, 105, 30), + (246662, 104, 30), + (246662, 100, 30), + (246662, 142, 30), + (246662, 144, 30), + (246662, 143, 30), + (246662, 145, 30), + (246662, 146, 30), + (246662, 147, 30), + (246662, 101, 30), + (246662, 277, 15), + (246662, 279, 10), + (246662, 278, 10), + (246662, 280, 10), + (246662, 311, 10), + (246662, 316, 10), + (246662, 281, 10), + (246662, 282, 10), + (246662, 317, 10), + (246662, 111, 30), + (246662, 112, 30), + (246662, 116, 30), + (246662, 114, 30), + (246662, 115, 30), + (246662, 113, 30), + (246662, 133, 30), + (246662, 108, 30), + (246662, 109, 30), + (246662, 110, 30), + (246662, 150, 30), + (246662, 151, 30), + (246662, 148, 30), + (246662, 167, 30), + (246662, 121, 30), + (246662, 134, 30), + (246662, 276, 15), + (246663, 91, 2), + (246663, 90, 7), + (246663, 92, 7), + (246663, 97, 1), + (246663, 95, 0), + (246663, 94, 2), + (246663, 93, 1), + (246663, 96, 7), + (246663, 102, 1), + (246663, 103, 1), + (246663, 106, 1), + (246663, 107, 1), + (246663, 105, 1), + (246663, 104, 1), + (246663, 100, 1), + (246663, 142, 1), + (246663, 144, 1), + (246663, 143, 1), + (246663, 145, 1), + (246663, 146, 1), + (246663, 147, 1), + (246663, 101, 1), + (246663, 277, 1), + (246663, 279, 0), + (246663, 278, 0), + (246663, 280, 0), + (246663, 311, 0), + (246663, 316, 0), + (246663, 281, 0), + (246663, 282, 0), + (246663, 317, 0), + (246663, 111, 1), + (246663, 112, 1), + (246663, 116, 1), + (246663, 114, 1), + (246663, 115, 1), + (246663, 113, 1), + (246663, 133, 1), + (246663, 108, 1), + (246663, 109, 1), + (246663, 110, 1), + (246663, 150, 1), + (246663, 151, 1), + (246663, 148, 1), + (246663, 167, 1), + (246663, 121, 1), + (246663, 134, 1), + (246663, 276, 1), + (246664, 91, 460), + (246664, 90, 480), + (246664, 92, 480), + (246664, 97, 440), + (246664, 95, 420), + (246664, 94, 460), + (246664, 93, 440), + (246664, 96, 480), + (246664, 102, 30), + (246664, 103, 30), + (246664, 106, 30), + (246664, 107, 30), + (246664, 105, 30), + (246664, 104, 30), + (246664, 100, 30), + (246664, 142, 30), + (246664, 144, 30), + (246664, 143, 30), + (246664, 145, 30), + (246664, 146, 30), + (246664, 147, 30), + (246664, 101, 30), + (246664, 277, 15), + (246664, 279, 10), + (246664, 278, 10), + (246664, 280, 10), + (246664, 311, 10), + (246664, 316, 10), + (246664, 281, 10), + (246664, 282, 10), + (246664, 317, 10), + (246664, 111, 30), + (246664, 112, 30), + (246664, 116, 30), + (246664, 114, 30), + (246664, 115, 30), + (246664, 113, 30), + (246664, 133, 30), + (246664, 108, 30), + (246664, 109, 30), + (246664, 110, 30), + (246664, 150, 30), + (246664, 151, 30), + (246664, 148, 30), + (246664, 167, 30), + (246664, 121, 30), + (246664, 134, 30), + (246664, 276, 15), + (246665, 91, 4), + (246665, 90, 9), + (246665, 92, 9), + (246665, 97, 3), + (246665, 95, 2), + (246665, 94, 4), + (246665, 93, 3), + (246665, 96, 9), + (246665, 102, 1), + (246665, 103, 1), + (246665, 106, 1), + (246665, 107, 1), + (246665, 105, 1), + (246665, 104, 1), + (246665, 100, 1), + (246665, 142, 1), + (246665, 144, 1), + (246665, 143, 1), + (246665, 145, 1), + (246665, 146, 1), + (246665, 147, 1), + (246665, 101, 1), + (246665, 277, 1), + (246665, 279, 0), + (246665, 278, 0), + (246665, 280, 0), + (246665, 311, 0), + (246665, 316, 0), + (246665, 281, 0), + (246665, 282, 0), + (246665, 317, 0), + (246665, 111, 1), + (246665, 112, 1), + (246665, 116, 1), + (246665, 114, 1), + (246665, 115, 1), + (246665, 113, 1), + (246665, 133, 1), + (246665, 108, 1), + (246665, 109, 1), + (246665, 110, 1), + (246665, 150, 1), + (246665, 151, 1), + (246665, 148, 1), + (246665, 167, 1), + (246665, 121, 1), + (246665, 134, 1), + (246665, 276, 1), + (246666, 91, 1150), + (246666, 90, 1200), + (246666, 92, 1200), + (246666, 97, 1100), + (246666, 95, 1050), + (246666, 94, 1150), + (246666, 93, 1100), + (246666, 96, 1200), + (246666, 102, 30), + (246666, 103, 30), + (246666, 106, 30), + (246666, 107, 30), + (246666, 105, 30), + (246666, 104, 30), + (246666, 100, 30), + (246666, 142, 30), + (246666, 144, 30), + (246666, 143, 30), + (246666, 145, 30), + (246666, 146, 30), + (246666, 147, 30), + (246666, 101, 30), + (246666, 277, 15), + (246666, 279, 10), + (246666, 278, 10), + (246666, 280, 10), + (246666, 311, 10), + (246666, 316, 10), + (246666, 281, 10), + (246666, 282, 10), + (246666, 317, 10), + (246666, 111, 30), + (246666, 112, 30), + (246666, 116, 30), + (246666, 114, 30), + (246666, 115, 30), + (246666, 113, 30), + (246666, 133, 30), + (246666, 108, 30), + (246666, 109, 30), + (246666, 110, 30), + (246666, 150, 30), + (246666, 151, 30), + (246666, 148, 30), + (246666, 167, 30), + (246666, 121, 30), + (246666, 134, 30), + (246666, 276, 15), + (246667, 91, 4), + (246667, 90, 9), + (246667, 92, 9), + (246667, 97, 3), + (246667, 95, 2), + (246667, 94, 4), + (246667, 93, 3), + (246667, 96, 9), + (246667, 102, 1), + (246667, 103, 1), + (246667, 106, 1), + (246667, 107, 1), + (246667, 105, 1), + (246667, 104, 1), + (246667, 100, 1), + (246667, 142, 1), + (246667, 144, 1), + (246667, 143, 1), + (246667, 145, 1), + (246667, 146, 1), + (246667, 147, 1), + (246667, 101, 1), + (246667, 277, 1), + (246667, 279, 0), + (246667, 278, 0), + (246667, 280, 0), + (246667, 311, 0), + (246667, 316, 0), + (246667, 281, 0), + (246667, 282, 0), + (246667, 317, 0), + (246667, 111, 1), + (246667, 112, 1), + (246667, 116, 1), + (246667, 114, 1), + (246667, 115, 1), + (246667, 113, 1), + (246667, 133, 1), + (246667, 108, 1), + (246667, 109, 1), + (246667, 110, 1), + (246667, 150, 1), + (246667, 151, 1), + (246667, 148, 1), + (246667, 167, 1), + (246667, 121, 1), + (246667, 134, 1), + (246667, 276, 1), + (246668, 91, 680), + (246668, 90, 715), + (246668, 92, 715), + (246668, 97, 645), + (246668, 95, 610), + (246668, 94, 680), + (246668, 93, 645), + (246668, 96, 715), + (246668, 102, 30), + (246668, 103, 30), + (246668, 106, 30), + (246668, 107, 30), + (246668, 105, 30), + (246668, 104, 30), + (246668, 100, 30), + (246668, 142, 30), + (246668, 144, 30), + (246668, 143, 30), + (246668, 145, 30), + (246668, 146, 30), + (246668, 147, 30), + (246668, 101, 30), + (246668, 277, 15), + (246668, 279, 10), + (246668, 278, 10), + (246668, 280, 10), + (246668, 311, 10), + (246668, 316, 10), + (246668, 281, 10), + (246668, 282, 10), + (246668, 317, 10), + (246668, 111, 30), + (246668, 112, 30), + (246668, 116, 30), + (246668, 114, 30), + (246668, 115, 30), + (246668, 113, 30), + (246668, 133, 30), + (246668, 108, 30), + (246668, 109, 30), + (246668, 110, 30), + (246668, 150, 30), + (246668, 151, 30), + (246668, 148, 30), + (246668, 167, 30), + (246668, 121, 30), + (246668, 134, 30), + (246668, 276, 15), + (246669, 91, 6), + (246669, 90, 6), + (246669, 92, 4), + (246669, 97, 11), + (246669, 95, 11), + (246669, 94, 5), + (246669, 93, 6), + (246669, 96, 5), + (246669, 127, 1), + (246669, 128, 1), + (246669, 129, 1), + (246669, 130, 1), + (246669, 131, 1), + (246669, 122, 1), + (246669, 125, 10), + (246669, 126, 10), + (246669, 157, 10), + (246669, 158, 10), + (246669, 159, 10), + (246669, 160, 10), + (246669, 162, 10), + (246669, 163, 10), + (246669, 181, 1), + (246669, 221, 5), + (246669, 132, 1), + (246669, 318, 0), + (246670, 91, 1350), + (246670, 90, 1350), + (246670, 92, 1275), + (246670, 97, 1275), + (246670, 95, 1425), + (246670, 94, 1200), + (246670, 93, 1425), + (246670, 96, 1350), + (246670, 127, 30), + (246670, 128, 30), + (246670, 129, 30), + (246670, 130, 30), + (246670, 131, 30), + (246670, 122, 30), + (246670, 125, 30), + (246670, 126, 30), + (246670, 157, 30), + (246670, 158, 30), + (246670, 159, 30), + (246670, 160, 30), + (246670, 162, 30), + (246670, 163, 30), + (246670, 181, 15), + (246670, 221, 200), + (246670, 132, 50), + (246670, 318, -3), + (246671, 91, 8), + (246671, 90, 8), + (246671, 92, 6), + (246671, 97, 13), + (246671, 95, 13), + (246671, 94, 7), + (246671, 93, 8), + (246671, 96, 7), + (246671, 127, 1), + (246671, 128, 1), + (246671, 129, 1), + (246671, 130, 1), + (246671, 131, 1), + (246671, 122, 1), + (246671, 125, 10), + (246671, 126, 10), + (246671, 157, 10), + (246671, 158, 10), + (246671, 159, 10), + (246671, 160, 10), + (246671, 162, 10), + (246671, 163, 10), + (246671, 181, 1), + (246671, 221, 5), + (246671, 132, 1), + (246671, 318, 0), + (246672, 91, 1800), + (246672, 90, 1800), + (246672, 92, 1600), + (246672, 97, 1900), + (246672, 95, 1900), + (246672, 94, 1700), + (246672, 93, 1800), + (246672, 96, 1700), + (246672, 127, 30), + (246672, 128, 30), + (246672, 129, 30), + (246672, 130, 30), + (246672, 131, 30), + (246672, 122, 30), + (246672, 125, 30), + (246672, 126, 30), + (246672, 157, 30), + (246672, 158, 30), + (246672, 159, 30), + (246672, 160, 30), + (246672, 162, 30), + (246672, 163, 30), + (246672, 181, 15), + (246672, 221, 200), + (246672, 132, 50), + (246672, 318, -3), + (246673, 91, 2), + (246673, 90, 2), + (246673, 92, 0), + (246673, 97, 7), + (246673, 95, 7), + (246673, 94, 1), + (246673, 93, 2), + (246673, 96, 1), + (246673, 127, 1), + (246673, 128, 1), + (246673, 129, 1), + (246673, 130, 1), + (246673, 131, 1), + (246673, 122, 1), + (246673, 125, 10), + (246673, 126, 10), + (246673, 157, 10), + (246673, 158, 10), + (246673, 159, 10), + (246673, 160, 10), + (246673, 162, 10), + (246673, 163, 10), + (246673, 181, 1), + (246673, 221, 5), + (246673, 132, 1), + (246673, 318, 0), + (246674, 91, 460), + (246674, 90, 460), + (246674, 92, 420), + (246674, 97, 480), + (246674, 95, 480), + (246674, 94, 440), + (246674, 93, 460), + (246674, 96, 440), + (246674, 127, 30), + (246674, 128, 30), + (246674, 129, 30), + (246674, 130, 30), + (246674, 131, 30), + (246674, 122, 30), + (246674, 125, 30), + (246674, 126, 30), + (246674, 157, 30), + (246674, 158, 30), + (246674, 159, 30), + (246674, 160, 30), + (246674, 162, 30), + (246674, 163, 30), + (246674, 181, 15), + (246674, 221, 200), + (246674, 132, 50), + (246674, 318, -3), + (246675, 91, 2), + (246675, 90, 2), + (246675, 92, 0), + (246675, 97, 7), + (246675, 95, 7), + (246675, 94, 1), + (246675, 93, 2), + (246675, 96, 1), + (246675, 127, 1), + (246675, 128, 1), + (246675, 129, 1), + (246675, 130, 1), + (246675, 131, 1), + (246675, 122, 1), + (246675, 125, 10), + (246675, 126, 10), + (246675, 157, 10), + (246675, 158, 10), + (246675, 159, 10), + (246675, 160, 10), + (246675, 162, 10), + (246675, 163, 10), + (246675, 181, 1), + (246675, 221, 5), + (246675, 132, 1), + (246675, 318, 0), + (246676, 91, 460), + (246676, 90, 460), + (246676, 92, 420), + (246676, 97, 480), + (246676, 95, 480), + (246676, 94, 440), + (246676, 93, 460), + (246676, 96, 440), + (246676, 127, 30), + (246676, 128, 30), + (246676, 129, 30), + (246676, 130, 30), + (246676, 131, 30), + (246676, 122, 30), + (246676, 125, 30), + (246676, 126, 30), + (246676, 157, 30), + (246676, 158, 30), + (246676, 159, 30), + (246676, 160, 30), + (246676, 162, 30), + (246676, 163, 30), + (246676, 181, 15), + (246676, 221, 200), + (246676, 132, 50), + (246676, 318, -3), + (246677, 91, 4), + (246677, 90, 4), + (246677, 92, 2), + (246677, 97, 9), + (246677, 95, 9), + (246677, 94, 3), + (246677, 93, 4), + (246677, 96, 3), + (246677, 127, 1), + (246677, 128, 1), + (246677, 129, 1), + (246677, 130, 1), + (246677, 131, 1), + (246677, 122, 1), + (246677, 125, 10), + (246677, 126, 10), + (246677, 157, 10), + (246677, 158, 10), + (246677, 159, 10), + (246677, 160, 10), + (246677, 162, 10), + (246677, 163, 10), + (246677, 181, 1), + (246677, 221, 5), + (246677, 132, 1), + (246677, 318, 0), + (246678, 91, 1150), + (246678, 90, 1150), + (246678, 92, 1050), + (246678, 97, 1200), + (246678, 95, 1200), + (246678, 94, 1100), + (246678, 93, 1150), + (246678, 96, 1100), + (246678, 127, 30), + (246678, 128, 30), + (246678, 129, 30), + (246678, 130, 30), + (246678, 131, 30), + (246678, 122, 30), + (246678, 125, 30), + (246678, 126, 30), + (246678, 157, 30), + (246678, 158, 30), + (246678, 159, 30), + (246678, 160, 30), + (246678, 162, 30), + (246678, 163, 30), + (246678, 181, 15), + (246678, 221, 200), + (246678, 132, 50), + (246678, 318, -3), + (246679, 91, 4), + (246679, 90, 4), + (246679, 92, 2), + (246679, 97, 9), + (246679, 95, 9), + (246679, 94, 3), + (246679, 93, 4), + (246679, 96, 3), + (246679, 127, 1), + (246679, 128, 1), + (246679, 129, 1), + (246679, 130, 1), + (246679, 131, 1), + (246679, 122, 1), + (246679, 125, 10), + (246679, 126, 10), + (246679, 157, 10), + (246679, 158, 10), + (246679, 159, 10), + (246679, 160, 10), + (246679, 162, 10), + (246679, 163, 10), + (246679, 181, 1), + (246679, 221, 5), + (246679, 132, 1), + (246679, 318, 0), + (246680, 91, 680), + (246680, 90, 680), + (246680, 92, 610), + (246680, 97, 715), + (246680, 95, 715), + (246680, 94, 645), + (246680, 93, 680), + (246680, 96, 645), + (246680, 127, 30), + (246680, 128, 30), + (246680, 129, 30), + (246680, 130, 30), + (246680, 131, 30), + (246680, 122, 30), + (246680, 125, 30), + (246680, 126, 30), + (246680, 157, 30), + (246680, 158, 30), + (246680, 159, 30), + (246680, 160, 30), + (246680, 162, 30), + (246680, 163, 30), + (246680, 181, 15), + (246680, 221, 200), + (246680, 132, 50), + (246680, 318, -3), + (246681, 91, 6), + (246681, 90, 6), + (246681, 92, 5), + (246681, 97, 5), + (246681, 95, 11), + (246681, 94, 4), + (246681, 93, 11), + (246681, 96, 6), + (246681, 127, 1), + (246681, 128, 1), + (246681, 129, 1), + (246681, 130, 1), + (246681, 131, 1), + (246681, 122, 1), + (246681, 125, 10), + (246681, 126, 10), + (246681, 157, 10), + (246681, 158, 10), + (246681, 159, 10), + (246681, 160, 10), + (246681, 162, 10), + (246681, 163, 10), + (246681, 181, 1), + (246681, 155, 1), + (246681, 154, 1), + (246681, 153, 1), + (246681, 118, 1), + (246681, 119, 1), + (246681, 120, 1), + (246681, 136, 1), + (246681, 164, 1), + (246681, 165, 1), + (246681, 135, 1), + (246682, 91, 1350), + (246682, 90, 1350), + (246682, 92, 1275), + (246682, 97, 1275), + (246682, 95, 1425), + (246682, 94, 1200), + (246682, 93, 1425), + (246682, 96, 1350), + (246682, 127, 30), + (246682, 128, 30), + (246682, 129, 30), + (246682, 130, 30), + (246682, 131, 30), + (246682, 122, 30), + (246682, 125, 30), + (246682, 126, 30), + (246682, 157, 30), + (246682, 158, 30), + (246682, 159, 30), + (246682, 160, 30), + (246682, 162, 30), + (246682, 163, 30), + (246682, 181, 15), + (246682, 155, 30), + (246682, 154, 30), + (246682, 153, 30), + (246682, 118, 40), + (246682, 119, 40), + (246682, 120, 40), + (246682, 136, 30), + (246682, 164, 30), + (246682, 165, 30), + (246682, 135, 30), + (246683, 91, 8), + (246683, 90, 8), + (246683, 92, 7), + (246683, 97, 7), + (246683, 95, 13), + (246683, 94, 6), + (246683, 93, 13), + (246683, 96, 8), + (246683, 127, 1), + (246683, 128, 1), + (246683, 129, 1), + (246683, 130, 1), + (246683, 131, 1), + (246683, 122, 1), + (246683, 125, 10), + (246683, 126, 10), + (246683, 157, 10), + (246683, 158, 10), + (246683, 159, 10), + (246683, 160, 10), + (246683, 162, 10), + (246683, 163, 10), + (246683, 181, 1), + (246683, 155, 1), + (246683, 154, 1), + (246683, 153, 1), + (246683, 118, 1), + (246683, 119, 1), + (246683, 120, 1), + (246683, 136, 1), + (246683, 164, 1), + (246683, 165, 1), + (246683, 135, 1), + (246684, 91, 1800), + (246684, 90, 1800), + (246684, 92, 1700), + (246684, 97, 1700), + (246684, 95, 1900), + (246684, 94, 1600), + (246684, 93, 1900), + (246684, 96, 1800), + (246684, 127, 30), + (246684, 128, 30), + (246684, 129, 30), + (246684, 130, 30), + (246684, 131, 30), + (246684, 122, 30), + (246684, 125, 30), + (246684, 126, 30), + (246684, 157, 30), + (246684, 158, 30), + (246684, 159, 30), + (246684, 160, 30), + (246684, 162, 30), + (246684, 163, 30), + (246684, 181, 15), + (246684, 155, 30), + (246684, 154, 30), + (246684, 153, 30), + (246684, 118, 40), + (246684, 119, 40), + (246684, 120, 40), + (246684, 136, 30), + (246684, 164, 30), + (246684, 165, 30), + (246684, 135, 30), + (246685, 91, 2), + (246685, 90, 2), + (246685, 92, 1), + (246685, 97, 1), + (246685, 95, 7), + (246685, 94, 0), + (246685, 93, 7), + (246685, 96, 2), + (246685, 127, 1), + (246685, 128, 1), + (246685, 129, 1), + (246685, 130, 1), + (246685, 131, 1), + (246685, 122, 1), + (246685, 125, 10), + (246685, 126, 10), + (246685, 157, 10), + (246685, 158, 10), + (246685, 159, 10), + (246685, 160, 10), + (246685, 162, 10), + (246685, 163, 10), + (246685, 181, 1), + (246685, 155, 1), + (246685, 154, 1), + (246685, 153, 1), + (246685, 118, 1), + (246685, 119, 1), + (246685, 120, 1), + (246685, 136, 1), + (246685, 164, 1), + (246685, 165, 1), + (246685, 135, 1), + (246686, 91, 460), + (246686, 90, 460), + (246686, 92, 440), + (246686, 97, 440), + (246686, 95, 480), + (246686, 94, 420), + (246686, 93, 480), + (246686, 96, 460), + (246686, 127, 30), + (246686, 128, 30), + (246686, 129, 30), + (246686, 130, 30), + (246686, 131, 30), + (246686, 122, 30), + (246686, 125, 30), + (246686, 126, 30), + (246686, 157, 30), + (246686, 158, 30), + (246686, 159, 30), + (246686, 160, 30), + (246686, 162, 30), + (246686, 163, 30), + (246686, 181, 15), + (246686, 155, 30), + (246686, 154, 30), + (246686, 153, 30), + (246686, 118, 40), + (246686, 119, 40), + (246686, 120, 40), + (246686, 136, 30), + (246686, 164, 30), + (246686, 165, 30), + (246686, 135, 30), + (246687, 91, 2), + (246687, 90, 2), + (246687, 92, 1), + (246687, 97, 1), + (246687, 95, 7), + (246687, 94, 0), + (246687, 93, 7), + (246687, 96, 2), + (246687, 127, 1), + (246687, 128, 1), + (246687, 129, 1), + (246687, 130, 1), + (246687, 131, 1), + (246687, 122, 1), + (246687, 125, 10), + (246687, 126, 10), + (246687, 157, 10), + (246687, 158, 10), + (246687, 159, 10), + (246687, 160, 10), + (246687, 162, 10), + (246687, 163, 10), + (246687, 181, 1), + (246687, 155, 1), + (246687, 154, 1), + (246687, 153, 1), + (246687, 118, 1), + (246687, 119, 1), + (246687, 120, 1), + (246687, 136, 1), + (246687, 164, 1), + (246687, 165, 1), + (246687, 135, 1), + (246688, 91, 460), + (246688, 90, 460), + (246688, 92, 440), + (246688, 97, 440), + (246688, 95, 480), + (246688, 94, 420), + (246688, 93, 480), + (246688, 96, 460), + (246688, 127, 30), + (246688, 128, 30), + (246688, 129, 30), + (246688, 130, 30), + (246688, 131, 30), + (246688, 122, 30), + (246688, 125, 30), + (246688, 126, 30), + (246688, 157, 30), + (246688, 158, 30), + (246688, 159, 30), + (246688, 160, 30), + (246688, 162, 30), + (246688, 163, 30), + (246688, 181, 15), + (246688, 155, 30), + (246688, 154, 30), + (246688, 153, 30), + (246688, 118, 40), + (246688, 119, 40), + (246688, 120, 40), + (246688, 136, 30), + (246688, 164, 30), + (246688, 165, 30), + (246688, 135, 30), + (246689, 91, 4), + (246689, 90, 4), + (246689, 92, 3), + (246689, 97, 3), + (246689, 95, 9), + (246689, 94, 2), + (246689, 93, 9), + (246689, 96, 4), + (246689, 127, 1), + (246689, 128, 1), + (246689, 129, 1), + (246689, 130, 1), + (246689, 131, 1), + (246689, 122, 1), + (246689, 125, 10), + (246689, 126, 10), + (246689, 157, 10), + (246689, 158, 10), + (246689, 159, 10), + (246689, 160, 10), + (246689, 162, 10), + (246689, 163, 10), + (246689, 181, 1), + (246689, 155, 1), + (246689, 154, 1), + (246689, 153, 1), + (246689, 118, 1), + (246689, 119, 1), + (246689, 120, 1), + (246689, 136, 1), + (246689, 164, 1), + (246689, 165, 1), + (246689, 135, 1), + (246690, 91, 1150), + (246690, 90, 1150), + (246690, 92, 1100), + (246690, 97, 1100), + (246690, 95, 1200), + (246690, 94, 1050), + (246690, 93, 1200), + (246690, 96, 1150), + (246690, 127, 30), + (246690, 128, 30), + (246690, 129, 30), + (246690, 130, 30), + (246690, 131, 30), + (246690, 122, 30), + (246690, 125, 30), + (246690, 126, 30), + (246690, 157, 30), + (246690, 158, 30), + (246690, 159, 30), + (246690, 160, 30), + (246690, 162, 30), + (246690, 163, 30), + (246690, 181, 15), + (246690, 155, 30), + (246690, 154, 30), + (246690, 153, 30), + (246690, 118, 40), + (246690, 119, 40), + (246690, 120, 40), + (246690, 136, 30), + (246690, 164, 30), + (246690, 165, 30), + (246690, 135, 30), + (246691, 91, 4), + (246691, 90, 4), + (246691, 92, 3), + (246691, 97, 3), + (246691, 95, 9), + (246691, 94, 2), + (246691, 93, 9), + (246691, 96, 4), + (246691, 127, 1), + (246691, 128, 1), + (246691, 129, 1), + (246691, 130, 1), + (246691, 131, 1), + (246691, 122, 1), + (246691, 125, 10), + (246691, 126, 10), + (246691, 157, 10), + (246691, 158, 10), + (246691, 159, 10), + (246691, 160, 10), + (246691, 162, 10), + (246691, 163, 10), + (246691, 181, 1), + (246691, 155, 1), + (246691, 154, 1), + (246691, 153, 1), + (246691, 118, 1), + (246691, 119, 1), + (246691, 120, 1), + (246691, 136, 1), + (246691, 164, 1), + (246691, 165, 1), + (246691, 135, 1), + (246692, 91, 680), + (246692, 90, 680), + (246692, 92, 645), + (246692, 97, 645), + (246692, 95, 715), + (246692, 94, 610), + (246692, 93, 715), + (246692, 96, 680), + (246692, 127, 30), + (246692, 128, 30), + (246692, 129, 30), + (246692, 130, 30), + (246692, 131, 30), + (246692, 122, 30), + (246692, 125, 30), + (246692, 126, 30), + (246692, 157, 30), + (246692, 158, 30), + (246692, 159, 30), + (246692, 160, 30), + (246692, 162, 30), + (246692, 163, 30), + (246692, 181, 15), + (246692, 155, 30), + (246692, 154, 30), + (246692, 153, 30), + (246692, 118, 40), + (246692, 119, 40), + (246692, 120, 40), + (246692, 136, 30), + (246692, 164, 30), + (246692, 165, 30), + (246692, 135, 30), + (246693, 91, 6), + (246693, 90, 6), + (246693, 92, 11), + (246693, 97, 4), + (246693, 95, 5), + (246693, 94, 5), + (246693, 93, 11), + (246693, 96, 11), + (246693, 111, 1), + (246693, 112, 1), + (246693, 116, 1), + (246693, 114, 1), + (246693, 115, 1), + (246693, 113, 1), + (246693, 133, 1), + (246693, 108, 1), + (246693, 109, 1), + (246693, 110, 1), + (246693, 150, 1), + (246693, 151, 1), + (246693, 148, 1), + (246693, 167, 1), + (246693, 121, 1), + (246693, 134, 1), + (246693, 276, 1), + (246693, 155, 1), + (246693, 154, 1), + (246693, 153, 1), + (246693, 118, 1), + (246693, 119, 1), + (246693, 120, 1), + (246693, 136, 1), + (246693, 164, 1), + (246693, 165, 1), + (246693, 135, 1), + (246694, 91, 1350), + (246694, 90, 1350), + (246694, 92, 1425), + (246694, 97, 1200), + (246694, 95, 1275), + (246694, 94, 1275), + (246694, 93, 1425), + (246694, 96, 1425), + (246694, 111, 30), + (246694, 112, 30), + (246694, 116, 30), + (246694, 114, 30), + (246694, 115, 30), + (246694, 113, 30), + (246694, 133, 30), + (246694, 108, 30), + (246694, 109, 30), + (246694, 110, 30), + (246694, 150, 30), + (246694, 151, 30), + (246694, 148, 30), + (246694, 167, 30), + (246694, 121, 30), + (246694, 134, 30), + (246694, 276, 15), + (246694, 155, 30), + (246694, 154, 30), + (246694, 153, 30), + (246694, 118, 40), + (246694, 119, 40), + (246694, 120, 40), + (246694, 136, 30), + (246694, 164, 30), + (246694, 165, 30), + (246694, 135, 30), + (246695, 91, 8), + (246695, 90, 8), + (246695, 92, 13), + (246695, 97, 6), + (246695, 95, 7), + (246695, 94, 7), + (246695, 93, 13), + (246695, 96, 13), + (246695, 111, 1), + (246695, 112, 1), + (246695, 116, 1), + (246695, 114, 1), + (246695, 115, 1), + (246695, 113, 1), + (246695, 133, 1), + (246695, 108, 1), + (246695, 109, 1), + (246695, 110, 1), + (246695, 150, 1), + (246695, 151, 1), + (246695, 148, 1), + (246695, 167, 1), + (246695, 121, 1), + (246695, 134, 1), + (246695, 276, 1), + (246695, 155, 1), + (246695, 154, 1), + (246695, 153, 1), + (246695, 118, 1), + (246695, 119, 1), + (246695, 120, 1), + (246695, 136, 1), + (246695, 164, 1), + (246695, 165, 1), + (246695, 135, 1), + (246696, 91, 1800), + (246696, 90, 1800), + (246696, 92, 1900), + (246696, 97, 1600), + (246696, 95, 1700), + (246696, 94, 1700), + (246696, 93, 1900), + (246696, 96, 1900), + (246696, 111, 30), + (246696, 112, 30), + (246696, 116, 30), + (246696, 114, 30), + (246696, 115, 30), + (246696, 113, 30), + (246696, 133, 30), + (246696, 108, 30), + (246696, 109, 30), + (246696, 110, 30), + (246696, 150, 30), + (246696, 151, 30), + (246696, 148, 30), + (246696, 167, 30), + (246696, 121, 30), + (246696, 134, 30), + (246696, 276, 15), + (246696, 155, 30), + (246696, 154, 30), + (246696, 153, 30), + (246696, 118, 40), + (246696, 119, 40), + (246696, 120, 40), + (246696, 136, 30), + (246696, 164, 30), + (246696, 165, 30), + (246696, 135, 30), + (246697, 91, 2), + (246697, 90, 2), + (246697, 92, 7), + (246697, 97, 0), + (246697, 95, 1), + (246697, 94, 1), + (246697, 93, 7), + (246697, 96, 7), + (246697, 111, 1), + (246697, 112, 1), + (246697, 116, 1), + (246697, 114, 1), + (246697, 115, 1), + (246697, 113, 1), + (246697, 133, 1), + (246697, 108, 1), + (246697, 109, 1), + (246697, 110, 1), + (246697, 150, 1), + (246697, 151, 1), + (246697, 148, 1), + (246697, 167, 1), + (246697, 121, 1), + (246697, 134, 1), + (246697, 276, 1), + (246697, 155, 1), + (246697, 154, 1), + (246697, 153, 1), + (246697, 118, 1), + (246697, 119, 1), + (246697, 120, 1), + (246697, 136, 1), + (246697, 164, 1), + (246697, 165, 1), + (246697, 135, 1), + (246698, 91, 460), + (246698, 90, 460), + (246698, 92, 480), + (246698, 97, 420), + (246698, 95, 440), + (246698, 94, 440), + (246698, 93, 480), + (246698, 96, 480), + (246698, 111, 30), + (246698, 112, 30), + (246698, 116, 30), + (246698, 114, 30), + (246698, 115, 30), + (246698, 113, 30), + (246698, 133, 30), + (246698, 108, 30), + (246698, 109, 30), + (246698, 110, 30), + (246698, 150, 30), + (246698, 151, 30), + (246698, 148, 30), + (246698, 167, 30), + (246698, 121, 30), + (246698, 134, 30), + (246698, 276, 15), + (246698, 155, 30), + (246698, 154, 30), + (246698, 153, 30), + (246698, 118, 40), + (246698, 119, 40), + (246698, 120, 40), + (246698, 136, 30), + (246698, 164, 30), + (246698, 165, 30), + (246698, 135, 30), + (246699, 91, 2), + (246699, 90, 2), + (246699, 92, 7), + (246699, 97, 0), + (246699, 95, 1), + (246699, 94, 1), + (246699, 93, 7), + (246699, 96, 7), + (246699, 111, 1), + (246699, 112, 1), + (246699, 116, 1), + (246699, 114, 1), + (246699, 115, 1), + (246699, 113, 1), + (246699, 133, 1), + (246699, 108, 1), + (246699, 109, 1), + (246699, 110, 1), + (246699, 150, 1), + (246699, 151, 1), + (246699, 148, 1), + (246699, 167, 1), + (246699, 121, 1), + (246699, 134, 1), + (246699, 276, 1), + (246699, 155, 1), + (246699, 154, 1), + (246699, 153, 1), + (246699, 118, 1), + (246699, 119, 1), + (246699, 120, 1), + (246699, 136, 1), + (246699, 164, 1), + (246699, 165, 1), + (246699, 135, 1), + (246700, 91, 460), + (246700, 90, 460), + (246700, 92, 480), + (246700, 97, 420), + (246700, 95, 440), + (246700, 94, 440), + (246700, 93, 480), + (246700, 96, 480), + (246700, 111, 30), + (246700, 112, 30), + (246700, 116, 30), + (246700, 114, 30), + (246700, 115, 30), + (246700, 113, 30), + (246700, 133, 30), + (246700, 108, 30), + (246700, 109, 30), + (246700, 110, 30), + (246700, 150, 30), + (246700, 151, 30), + (246700, 148, 30), + (246700, 167, 30), + (246700, 121, 30), + (246700, 134, 30), + (246700, 276, 15), + (246700, 155, 30), + (246700, 154, 30), + (246700, 153, 30), + (246700, 118, 40), + (246700, 119, 40), + (246700, 120, 40), + (246700, 136, 30), + (246700, 164, 30), + (246700, 165, 30), + (246700, 135, 30), + (246701, 91, 4), + (246701, 90, 4), + (246701, 92, 9), + (246701, 97, 2), + (246701, 95, 3), + (246701, 94, 3), + (246701, 93, 9), + (246701, 96, 9), + (246701, 111, 1), + (246701, 112, 1), + (246701, 116, 1), + (246701, 114, 1), + (246701, 115, 1), + (246701, 113, 1), + (246701, 133, 1), + (246701, 108, 1), + (246701, 109, 1), + (246701, 110, 1), + (246701, 150, 1), + (246701, 151, 1), + (246701, 148, 1), + (246701, 167, 1), + (246701, 121, 1), + (246701, 134, 1), + (246701, 276, 1), + (246701, 155, 1), + (246701, 154, 1), + (246701, 153, 1), + (246701, 118, 1), + (246701, 119, 1), + (246701, 120, 1), + (246701, 136, 1), + (246701, 164, 1), + (246701, 165, 1), + (246701, 135, 1), + (246702, 91, 1150), + (246702, 90, 1150), + (246702, 92, 1200), + (246702, 97, 1050), + (246702, 95, 1100), + (246702, 94, 1100), + (246702, 93, 1200), + (246702, 96, 1200), + (246702, 111, 30), + (246702, 112, 30), + (246702, 116, 30), + (246702, 114, 30), + (246702, 115, 30), + (246702, 113, 30), + (246702, 133, 30), + (246702, 108, 30), + (246702, 109, 30), + (246702, 110, 30), + (246702, 150, 30), + (246702, 151, 30), + (246702, 148, 30), + (246702, 167, 30), + (246702, 121, 30), + (246702, 134, 30), + (246702, 276, 15), + (246702, 155, 30), + (246702, 154, 30), + (246702, 153, 30), + (246702, 118, 40), + (246702, 119, 40), + (246702, 120, 40), + (246702, 136, 30), + (246702, 164, 30), + (246702, 165, 30), + (246702, 135, 30), + (246703, 91, 4), + (246703, 90, 4), + (246703, 92, 9), + (246703, 97, 2), + (246703, 95, 3), + (246703, 94, 3), + (246703, 93, 9), + (246703, 96, 9), + (246703, 111, 1), + (246703, 112, 1), + (246703, 116, 1), + (246703, 114, 1), + (246703, 115, 1), + (246703, 113, 1), + (246703, 133, 1), + (246703, 108, 1), + (246703, 109, 1), + (246703, 110, 1), + (246703, 150, 1), + (246703, 151, 1), + (246703, 148, 1), + (246703, 167, 1), + (246703, 121, 1), + (246703, 134, 1), + (246703, 276, 1), + (246703, 155, 1), + (246703, 154, 1), + (246703, 153, 1), + (246703, 118, 1), + (246703, 119, 1), + (246703, 120, 1), + (246703, 136, 1), + (246703, 164, 1), + (246703, 165, 1), + (246703, 135, 1), + (246704, 91, 680), + (246704, 90, 680), + (246704, 92, 715), + (246704, 97, 610), + (246704, 95, 645), + (246704, 94, 645), + (246704, 93, 715), + (246704, 96, 715), + (246704, 111, 30), + (246704, 112, 30), + (246704, 116, 30), + (246704, 114, 30), + (246704, 115, 30), + (246704, 113, 30), + (246704, 133, 30), + (246704, 108, 30), + (246704, 109, 30), + (246704, 110, 30), + (246704, 150, 30), + (246704, 151, 30), + (246704, 148, 30), + (246704, 167, 30), + (246704, 121, 30), + (246704, 134, 30), + (246704, 276, 15), + (246704, 155, 30), + (246704, 154, 30), + (246704, 153, 30), + (246704, 118, 40), + (246704, 119, 40), + (246704, 120, 40), + (246704, 136, 30), + (246704, 164, 30), + (246704, 165, 30), + (246704, 135, 30), + (246705, 132, 20), + (246706, 132, 20), + (246707, 132, 30), + (246707, 318, -1), + (246708, 132, 30), + (246708, 318, -1), + (246709, 132, 40), + (246709, 318, -2), + (246710, 132, 20), + (246711, 132, 20), + (246712, 132, 30), + (246712, 318, -1), + (246713, 132, 30), + (246713, 318, -1), + (246714, 132, 40), + (246714, 318, -2), + (246715, 132, 20), + (246716, 132, 20), + (246717, 132, 30), + (246717, 318, -1), + (246718, 132, 30), + (246718, 318, -1), + (246719, 132, 40), + (246719, 318, -2), + (246720, 132, 20), + (246721, 132, 20), + (246722, 132, 30), + (246722, 318, -1), + (246723, 132, 30), + (246723, 318, -1), + (246724, 132, 40), + (246724, 318, -2), + (246833, 156, 25), + (246833, 111, 25), + (246833, 16, 5), + (246833, 143, 5), + (246834, 20, 5), + (246834, 136, 5), + (246834, 118, 5), + (246834, 119, 5), + (246834, 120, 5), + (246834, 137, 5), + (246834, 122, 5), + (246873, 19, 50), + (246873, 130, 75), + (246873, 125, 120), + (246887, 91, 1400), + (246887, 90, 1200), + (246887, 92, 1200), + (246887, 94, 1200), + (246887, 97, 800), + (246887, 95, 800), + (246887, 93, 1200), + (246887, 96, 1200), + (246887, 152, 80), + (246887, 118, 40), + (246887, 120, 40), + (246887, 155, 40), + (246887, 153, 40), + (246887, 156, 40), + (246889, 91, 1200), + (246889, 90, 1400), + (246889, 92, 1200), + (246889, 94, 1200), + (246889, 97, 800), + (246889, 95, 800), + (246889, 93, 1200), + (246889, 96, 1200), + (246889, 152, 80), + (246889, 119, 40), + (246889, 154, 40), + (246889, 156, 60), + (246889, 379, 1), + (246890, 91, 1200), + (246890, 90, 1200), + (246890, 92, 1000), + (246890, 94, 800), + (246890, 97, 1200), + (246890, 95, 1200), + (246890, 93, 1200), + (246890, 96, 1200), + (246890, 132, 80), + (246890, 149, 40), + (246890, 168, 40), + (246890, 156, 40), + (246890, 318, -2), + (246890, 536, 1), + (246891, 91, 1200), + (246891, 90, 1200), + (246891, 92, 1000), + (246891, 94, 1000), + (246891, 97, 1000), + (246891, 95, 1000), + (246891, 93, 1300), + (246891, 96, 1300), + (246891, 132, 40), + (246891, 152, 40), + (246891, 149, 20), + (246891, 119, 20), + (246891, 123, 20), + (246891, 124, 20), + (246891, 156, 40), + (246891, 535, 1), + (246891, 319, 1), + (246892, 91, 1200), + (246892, 90, 1200), + (246892, 92, 1400), + (246892, 94, 1200), + (246892, 97, 1200), + (246892, 95, 1200), + (246892, 93, 800), + (246892, 96, 800), + (246892, 132, 40), + (246892, 152, 40), + (246892, 119, 20), + (246892, 118, 20), + (246892, 120, 20), + (246892, 154, 20), + (246892, 155, 20), + (246892, 153, 20), + (246892, 156, 40), + (246892, 141, 120), + (246892, 391, 2), + (246892, 382, -4), + (247015, 91, 465), + (247015, 90, 465), + (247015, 92, 465), + (247015, 97, 465), + (247015, 95, 465), + (247015, 94, 600), + (247015, 93, 600), + (247015, 96, 600), + (247015, 152, 10), + (247015, 118, 10), + (247015, 119, 10), + (247015, 120, 10), + (247015, 149, 10), + (247015, 154, 10), + (247015, 155, 10), + (247015, 153, 10), + (247015, 132, 10), + (247015, 382, -1), + (247015, 127, 1), + (247015, 128, 1), + (247015, 129, 1), + (247015, 130, 1), + (247015, 131, 1), + (247015, 122, 1), + (247015, 17, 1), + (247015, 123, 1), + (247015, 162, 1), + (247016, 91, 700), + (247016, 90, 700), + (247016, 92, 700), + (247016, 97, 700), + (247016, 95, 700), + (247016, 94, 900), + (247016, 93, 900), + (247016, 96, 900), + (247016, 152, 30), + (247016, 118, 30), + (247016, 119, 30), + (247016, 120, 30), + (247016, 149, 30), + (247016, 154, 30), + (247016, 155, 30), + (247016, 153, 30), + (247016, 132, 30), + (247016, 382, -5), + (247016, 127, 5), + (247016, 128, 5), + (247016, 129, 5), + (247016, 130, 5), + (247016, 131, 5), + (247016, 122, 5), + (247016, 17, 5), + (247016, 123, 5), + (247016, 162, 5), + (247057, 17, 5), + (247057, 153, 1), + (247057, 20, 5), + (247058, 17, 5), + (247058, 153, 1), + (247058, 20, 5), + (247059, 17, 10), + (247059, 153, 5), + (247059, 20, 10), + (247060, 17, 10), + (247060, 153, 5), + (247060, 20, 10), + (247061, 17, 20), + (247061, 153, 10), + (247061, 20, 20), + (247062, 17, 20), + (247062, 153, 10), + (247062, 20, 20), + (247063, 17, 25), + (247063, 153, 15), + (247063, 20, 25), + (247064, 17, 25), + (247064, 153, 15), + (247064, 20, 25), + (247065, 17, 30), + (247065, 153, 20), + (247065, 20, 30), + (247066, 17, 30), + (247066, 153, 20), + (247066, 20, 30), + (247067, 17, 40), + (247067, 153, 25), + (247067, 20, 40), + (247068, 17, 40), + (247068, 153, 25), + (247068, 20, 40), + (247069, 17, 50), + (247069, 153, 30), + (247069, 20, 50), + (247070, 18, 10), + (247070, 16, 10), + (247071, 18, 10), + (247071, 16, 10), + (247072, 18, 20), + (247072, 16, 20), + (247073, 18, 20), + (247073, 16, 20), + (247074, 18, 30), + (247074, 16, 30), + (247075, 18, 30), + (247075, 16, 30), + (247076, 18, 40), + (247076, 16, 40), + (247077, 18, 40), + (247077, 16, 40), + (247078, 18, 50), + (247078, 16, 50), + (247079, 18, 50), + (247079, 16, 50), + (247080, 18, 60), + (247080, 16, 60), + (247081, 91, 700), + (247081, 90, 700), + (247081, 92, 700), + (247081, 97, 700), + (247081, 95, 700), + (247081, 94, 900), + (247081, 93, 900), + (247081, 96, 900), + (247081, 152, 30), + (247081, 118, 30), + (247081, 119, 30), + (247081, 120, 30), + (247081, 149, 30), + (247081, 154, 30), + (247081, 155, 30), + (247081, 153, 30), + (247081, 132, 30), + (247081, 382, -5), + (247081, 127, 5), + (247081, 128, 5), + (247081, 129, 5), + (247081, 130, 5), + (247081, 131, 5), + (247081, 122, 5), + (247081, 17, 5), + (247081, 123, 5), + (247081, 162, 5), + (247803, 93, 100), + (247803, 95, 300), + (247803, 92, 300), + (247803, 97, 300), + (247803, 91, 350), + (247803, 96, 350), + (247803, 90, 300), + (247803, 94, 100), + (247803, 123, 10), + (247803, 124, 5), + (247803, 19, 5), + (248068, 154, 5), + (248081, 154, 15), + (248084, 154, 5), + (248085, 154, 10), + (248086, 154, 5), + (248090, 153, 5), + (248091, 153, 15), + (248092, 153, 10), + (248093, 153, 5), + (248197, 165, 5), + (248210, 154, 5), + (248213, 153, 15), + (248215, 153, 15), + (248216, 153, 15), + (248269, 91, 4), + (248269, 90, 4), + (248269, 92, 4), + (248269, 97, 4), + (248269, 95, 4), + (248269, 94, 2), + (248269, 93, 2), + (248269, 96, 2), + (248269, 1, 1), + (248269, 221, 1), + (248269, 181, 1), + (248269, 123, 1), + (248270, 91, 40), + (248270, 90, 40), + (248270, 92, 40), + (248270, 97, 40), + (248270, 95, 40), + (248270, 94, 20), + (248270, 93, 20), + (248270, 96, 20), + (248270, 1, 5), + (248270, 221, 5), + (248270, 181, 2), + (248270, 123, 5), + (248271, 91, 6), + (248271, 90, 6), + (248271, 92, 6), + (248271, 97, 6), + (248271, 95, 6), + (248271, 94, 4), + (248271, 93, 4), + (248271, 96, 4), + (248271, 1, 1), + (248271, 221, 1), + (248271, 181, 1), + (248271, 123, 1), + (248272, 91, 60), + (248272, 90, 60), + (248272, 92, 60), + (248272, 97, 60), + (248272, 95, 60), + (248272, 94, 40), + (248272, 93, 40), + (248272, 96, 40), + (248272, 1, 10), + (248272, 221, 10), + (248272, 181, 2), + (248272, 123, 5), + (248273, 91, 10), + (248273, 90, 10), + (248273, 92, 10), + (248273, 97, 10), + (248273, 95, 10), + (248273, 94, 6), + (248273, 93, 6), + (248273, 96, 6), + (248273, 1, 1), + (248273, 221, 1), + (248273, 181, 1), + (248273, 123, 1), + (248274, 91, 100), + (248274, 90, 100), + (248274, 92, 100), + (248274, 97, 100), + (248274, 95, 100), + (248274, 94, 60), + (248274, 93, 60), + (248274, 96, 60), + (248274, 1, 10), + (248274, 221, 10), + (248274, 181, 2), + (248274, 123, 5), + (248275, 91, 2), + (248275, 90, 2), + (248275, 92, 2), + (248275, 97, 2), + (248275, 95, 2), + (248275, 94, 1), + (248275, 93, 1), + (248275, 96, 1), + (248275, 1, 1), + (248275, 221, 1), + (248275, 181, 1), + (248275, 123, 1), + (248276, 91, 25), + (248276, 90, 25), + (248276, 92, 25), + (248276, 97, 25), + (248276, 95, 25), + (248276, 94, 15), + (248276, 93, 15), + (248276, 96, 15), + (248276, 1, 5), + (248276, 221, 5), + (248276, 181, 2), + (248276, 123, 5), + (248277, 91, 2), + (248277, 90, 2), + (248277, 92, 2), + (248277, 97, 2), + (248277, 95, 2), + (248277, 94, 1), + (248277, 93, 1), + (248277, 96, 1), + (248277, 1, 1), + (248277, 221, 1), + (248277, 181, 1), + (248277, 123, 1), + (248278, 91, 25), + (248278, 90, 25), + (248278, 92, 25), + (248278, 97, 25), + (248278, 95, 25), + (248278, 94, 15), + (248278, 93, 15), + (248278, 96, 15), + (248278, 1, 5), + (248278, 221, 5), + (248278, 181, 2), + (248278, 123, 5), + (248279, 91, 4), + (248279, 90, 4), + (248279, 92, 4), + (248279, 97, 4), + (248279, 95, 4), + (248279, 94, 4), + (248279, 93, 2), + (248279, 96, 2), + (248279, 1, 1), + (248279, 221, 1), + (248279, 181, 1), + (248279, 123, 1), + (248280, 91, 40), + (248280, 90, 40), + (248280, 92, 40), + (248280, 97, 40), + (248280, 95, 40), + (248280, 94, 40), + (248280, 93, 20), + (248280, 96, 20), + (248280, 1, 5), + (248280, 221, 5), + (248280, 181, 2), + (248280, 123, 5), + (248281, 91, 6), + (248281, 90, 6), + (248281, 92, 6), + (248281, 97, 6), + (248281, 95, 6), + (248281, 94, 6), + (248281, 93, 4), + (248281, 96, 4), + (248281, 1, 1), + (248281, 221, 1), + (248281, 181, 1), + (248281, 123, 1), + (248282, 91, 60), + (248282, 90, 60), + (248282, 92, 60), + (248282, 97, 60), + (248282, 95, 60), + (248282, 94, 60), + (248282, 93, 40), + (248282, 96, 40), + (248282, 1, 10), + (248282, 221, 10), + (248282, 181, 2), + (248282, 123, 5), + (248283, 91, 10), + (248283, 90, 10), + (248283, 92, 10), + (248283, 97, 10), + (248283, 95, 10), + (248283, 94, 10), + (248283, 93, 6), + (248283, 96, 6), + (248283, 1, 1), + (248283, 221, 1), + (248283, 181, 1), + (248283, 123, 1), + (248284, 91, 100), + (248284, 90, 100), + (248284, 92, 100), + (248284, 97, 100), + (248284, 95, 100), + (248284, 94, 100), + (248284, 93, 60), + (248284, 96, 60), + (248284, 1, 10), + (248284, 221, 10), + (248284, 181, 2), + (248284, 123, 5), + (248285, 91, 2), + (248285, 90, 2), + (248285, 92, 2), + (248285, 97, 2), + (248285, 95, 2), + (248285, 94, 2), + (248285, 93, 1), + (248285, 96, 1), + (248285, 1, 1), + (248285, 221, 1), + (248285, 181, 1), + (248285, 123, 1), + (248286, 91, 25), + (248286, 90, 25), + (248286, 92, 25), + (248286, 97, 25), + (248286, 95, 25), + (248286, 94, 25), + (248286, 93, 15), + (248286, 96, 15), + (248286, 1, 5), + (248286, 221, 5), + (248286, 181, 2), + (248286, 123, 5), + (248287, 91, 2), + (248287, 90, 2), + (248287, 92, 2), + (248287, 97, 2), + (248287, 95, 2), + (248287, 94, 2), + (248287, 93, 1), + (248287, 96, 1), + (248287, 1, 1), + (248287, 221, 1), + (248287, 181, 1), + (248287, 123, 1), + (248288, 91, 25), + (248288, 90, 25), + (248288, 92, 25), + (248288, 97, 25), + (248288, 95, 25), + (248288, 94, 25), + (248288, 93, 15), + (248288, 96, 15), + (248288, 1, 5), + (248288, 221, 5), + (248288, 181, 2), + (248288, 123, 5), + (248296, 91, 4), + (248296, 90, 4), + (248296, 92, 4), + (248296, 97, 4), + (248296, 95, 4), + (248296, 94, 2), + (248296, 93, 2), + (248296, 96, 4), + (248296, 1, 1), + (248296, 221, 1), + (248296, 181, 1), + (248296, 123, 1), + (248297, 91, 40), + (248297, 90, 40), + (248297, 92, 40), + (248297, 97, 40), + (248297, 95, 40), + (248297, 94, 20), + (248297, 93, 20), + (248297, 96, 40), + (248297, 1, 5), + (248297, 221, 5), + (248297, 181, 2), + (248297, 123, 5), + (248298, 91, 6), + (248298, 90, 6), + (248298, 92, 6), + (248298, 97, 6), + (248298, 95, 6), + (248298, 94, 4), + (248298, 93, 4), + (248298, 96, 6), + (248298, 1, 1), + (248298, 221, 1), + (248298, 181, 1), + (248298, 123, 1), + (248299, 91, 60), + (248299, 90, 60), + (248299, 92, 60), + (248299, 97, 60), + (248299, 95, 60), + (248299, 94, 40), + (248299, 93, 40), + (248299, 96, 60), + (248299, 1, 10), + (248299, 221, 10), + (248299, 181, 2), + (248299, 123, 5), + (248300, 91, 10), + (248300, 90, 10), + (248300, 92, 10), + (248300, 97, 10), + (248300, 95, 10), + (248300, 94, 6), + (248300, 93, 6), + (248300, 96, 10), + (248300, 1, 1), + (248300, 221, 1), + (248300, 181, 1), + (248300, 123, 1), + (248301, 91, 100), + (248301, 90, 100), + (248301, 92, 100), + (248301, 97, 100), + (248301, 95, 100), + (248301, 94, 60), + (248301, 93, 60), + (248301, 96, 100), + (248301, 1, 10), + (248301, 221, 10), + (248301, 181, 2), + (248301, 123, 5), + (248302, 91, 2), + (248302, 90, 2), + (248302, 92, 2), + (248302, 97, 2), + (248302, 95, 2), + (248302, 94, 1), + (248302, 93, 1), + (248302, 96, 2), + (248302, 1, 1), + (248302, 221, 1), + (248302, 181, 1), + (248302, 123, 1), + (248303, 91, 25), + (248303, 90, 25), + (248303, 92, 25), + (248303, 97, 25), + (248303, 95, 25), + (248303, 94, 15), + (248303, 93, 15), + (248303, 96, 25), + (248303, 1, 5), + (248303, 221, 5), + (248303, 181, 2), + (248303, 123, 5), + (248304, 91, 2), + (248304, 90, 2), + (248304, 92, 2), + (248304, 97, 2), + (248304, 95, 2), + (248304, 94, 1), + (248304, 93, 1), + (248304, 96, 2), + (248304, 1, 1), + (248304, 221, 1), + (248304, 181, 1), + (248304, 123, 1), + (248305, 91, 25), + (248305, 90, 25), + (248305, 92, 25), + (248305, 97, 25), + (248305, 95, 25), + (248305, 94, 15), + (248305, 93, 15), + (248305, 96, 25), + (248305, 1, 5), + (248305, 221, 5), + (248305, 181, 2), + (248305, 123, 5), + (248341, 1, 20), + (248342, 92, 75), + (248342, 91, 75), + (248342, 90, 75), + (248342, 1, 20), + (248343, 1, 25), + (248344, 1, 20), + (248345, 1, 20), + (248346, 1, 20), + (248347, 1, 20), + (248348, 1, 20), + (248349, 1, 20), + (248350, 1, 20), + (248351, 1, 20), + (248352, 1, 20), + (248353, 1, 20), + (248354, 1, 20), + (248355, 1, 20), + (248359, 96, 20), + (248359, 94, 20), + (248359, 93, 20), + (248359, 97, 20), + (248359, 95, 20), + (248359, 92, 20), + (248359, 90, 20), + (248359, 91, 20), + (248359, 276, 5), + (248360, 96, 20), + (248360, 94, 20), + (248360, 93, 20), + (248360, 97, 20), + (248360, 95, 20), + (248360, 92, 20), + (248360, 90, 20), + (248360, 91, 20), + (248360, 276, 5), + (248361, 118, 10), + (248361, 119, 10), + (248361, 120, 10), + (248361, 149, 5), + (248361, 136, 5), + (248361, 162, 5), + (248362, 118, 10), + (248362, 119, 10), + (248362, 120, 10), + (248362, 149, 5), + (248373, 93, 120), + (248373, 95, 40), + (248373, 92, 40), + (248373, 97, 40), + (248373, 91, 40), + (248373, 96, 120), + (248373, 90, 40), + (248373, 94, 40), + (248373, 221, 40), + (248373, 156, 20), + (248373, 123, 10), + (248373, 1, 40), + (248374, 119, 10), + (248374, 118, 10), + (248374, 120, 10), + (248374, 149, 10), + (248374, 281, 3), + (248374, 311, 3), + (248374, 280, 3), + (248374, 316, 3), + (248374, 279, 3), + (248374, 317, 3), + (248374, 278, 3), + (248374, 282, 3), + (248375, 317, 3), + (248376, 20, 3), + (248376, 168, 3), + (248376, 93, 30), + (248376, 96, 30), + (248377, 126, 15), + (248377, 125, 15), + (248377, 158, 15), + (248377, 157, 15), + (248377, 160, 15), + (248377, 165, 15), + (248378, 91, 1100), + (248378, 90, 1100), + (248378, 92, 1100), + (248378, 97, 1100), + (248378, 95, 1100), + (248378, 94, 1100), + (248378, 93, 1100), + (248378, 96, 1100), + (248378, 168, 24), + (248378, 1, 100), + (248379, 91, 1100), + (248379, 90, 1100), + (248379, 92, 1100), + (248379, 97, 1100), + (248379, 95, 1100), + (248379, 94, 1100), + (248379, 93, 1100), + (248379, 96, 1100), + (248379, 168, 24), + (248379, 1, 100), + (248380, 91, 1100), + (248380, 90, 1100), + (248380, 92, 1100), + (248380, 97, 1100), + (248380, 95, 1100), + (248380, 94, 1100), + (248380, 93, 1100), + (248380, 96, 1100), + (248380, 168, 24), + (248380, 1, 100), + (248381, 91, 1100), + (248381, 90, 1100), + (248381, 92, 1100), + (248381, 97, 1100), + (248381, 95, 1100), + (248381, 94, 1100), + (248381, 93, 1100), + (248381, 96, 1100), + (248381, 168, 24), + (248381, 1, 100), + (248382, 91, 1100), + (248382, 90, 1100), + (248382, 92, 1100), + (248382, 97, 1100), + (248382, 95, 1100), + (248382, 94, 1100), + (248382, 93, 1100), + (248382, 96, 1100), + (248382, 168, 24), + (248382, 1, 100), + (248383, 91, 1100), + (248383, 90, 1100), + (248383, 92, 1100), + (248383, 97, 1100), + (248383, 95, 1100), + (248383, 94, 1100), + (248383, 93, 1100), + (248383, 96, 1100), + (248383, 168, 24), + (248383, 1, 100), + (248384, 91, 1100), + (248384, 90, 1100), + (248384, 92, 1100), + (248384, 97, 1100), + (248384, 95, 1100), + (248384, 94, 1100), + (248384, 93, 1100), + (248384, 96, 1100), + (248384, 168, 24), + (248384, 1, 100), + (248385, 91, 1100), + (248385, 90, 1100), + (248385, 92, 1100), + (248385, 97, 1100), + (248385, 95, 1100), + (248385, 94, 1100), + (248385, 93, 1100), + (248385, 96, 1100), + (248385, 168, 24), + (248385, 1, 100), + (248406, 315, 1), + (248407, 132, 5), + (248408, 319, 1), + (248409, 152, 5), + (248410, 1, 25), + (248411, 155, 5), + (248412, 155, 15), + (248413, 155, 5), + (248414, 155, 5), + (248415, 155, 10), + (248416, 277, 5), + (248417, 277, 15), + (248418, 159, 5), + (248419, 159, 15), + (248420, 159, 5), + (248421, 277, 1), + (248421, 155, 2), + (248421, 1, 6), + (248422, 277, 1), + (248422, 155, 2), + (248422, 1, 6), + (248423, 277, 3), + (248423, 155, 4), + (248423, 1, 10), + (248424, 277, 3), + (248424, 155, 4), + (248424, 1, 10), + (248425, 277, 5), + (248425, 155, 6), + (248425, 1, 15), + (248426, 277, 5), + (248426, 155, 6), + (248426, 1, 15), + (248427, 277, 8), + (248427, 155, 9), + (248427, 1, 20), + (248518, 159, 10), + (248519, 118, 25), + (248540, 279, 3), + (248541, 149, 20), + (248563, 130, 1), + (248582, 20, 6), + (248583, 20, 6), + (248584, 20, 14), + (248585, 20, 14), + (248586, 277, 5), + (248586, 20, 16), + (248587, 277, 5), + (248587, 20, 16), + (248588, 164, 30), + (248588, 277, 15), + (248588, 20, 22), + (248597, 233, 2), + (248598, 233, 2), + (248599, 233, 5), + (248600, 233, 5), + (248601, 233, 7), + (248602, 233, 7), + (248603, 233, 10), + (248604, 233, 10), + (248605, 233, 20), + (248606, 233, 20), + (248607, 233, 25), + (248745, 127, 2), + (248745, 128, 2), + (248746, 129, 2), + (248747, 131, 2), + (248748, 122, 2), + (248749, 165, 20), + (248752, 136, 20), + (248753, 157, 10), + (248754, 125, 15), + (248755, 126, 15), + (248756, 158, 15), + (248757, 91, 10), + (248757, 90, 10), + (248757, 92, 8), + (248757, 97, 6), + (248757, 95, 6), + (248757, 94, 5), + (248757, 93, 8), + (248757, 96, 8), + (248757, 129, 1), + (248757, 122, 1), + (248757, 132, 1), + (248757, 1, 1), + (248758, 91, 1000), + (248758, 90, 1000), + (248758, 92, 1000), + (248758, 97, 600), + (248758, 95, 600), + (248758, 94, 500), + (248758, 93, 800), + (248758, 96, 800), + (248758, 129, 20), + (248758, 122, 20), + (248758, 132, 75), + (248758, 1, 150), + (248759, 119, 5), + (248760, 119, 15), + (248761, 119, 10), + (248762, 119, 5), + (248763, 91, 10), + (248763, 90, 10), + (248763, 92, 10), + (248763, 97, 2), + (248763, 95, 10), + (248763, 94, 8), + (248763, 93, 8), + (248763, 96, 5), + (248763, 127, 1), + (248763, 128, 1), + (248763, 132, 1), + (248763, 1, 1), + (248764, 91, 1000), + (248764, 90, 1000), + (248764, 92, 1000), + (248764, 97, 200), + (248764, 95, 1000), + (248764, 94, 800), + (248764, 93, 800), + (248764, 96, 500), + (248764, 127, 20), + (248764, 128, 20), + (248764, 132, 75), + (248764, 1, 150), + (248783, 100, 2), + (248784, 100, 4), + (248785, 100, 4), + (248788, 123, 10), + (248789, 319, 1), + (248790, 156, 2), + (248791, 156, 4), + (248792, 156, 4), + (248793, 156, 4), + (248794, 379, 1), + (248795, 137, 10), + (248796, 137, 20), + (248797, 116, 1), + (248800, 116, 2), + (248801, 116, 2), + (248813, 91, 10), + (248813, 90, 10), + (248813, 92, 8), + (248813, 97, 10), + (248813, 95, 2), + (248813, 94, 5), + (248813, 93, 8), + (248813, 96, 10), + (248813, 130, 1), + (248813, 131, 1), + (248813, 132, 1), + (248813, 1, 1), + (248814, 91, 1000), + (248814, 90, 1000), + (248814, 92, 800), + (248814, 97, 1000), + (248814, 95, 200), + (248814, 94, 500), + (248814, 93, 800), + (248814, 96, 1000), + (248814, 130, 20), + (248814, 131, 20), + (248814, 132, 75), + (248814, 1, 150), + (248815, 91, 10), + (248815, 90, 10), + (248815, 92, 10), + (248815, 97, 10), + (248815, 95, 10), + (248815, 94, 10), + (248815, 93, 10), + (248815, 96, 10), + (248827, 116, 2), + (248828, 317, 1), + (248829, 317, 2), + (248830, 317, 2), + (248831, 317, 2), + (248832, 317, 2), + (248833, 161, 5), + (248834, 152, 2), + (248835, 152, 2), + (248836, 152, 2), + (248837, 152, 2), + (248838, 156, 20), + (248839, 152, 2), + (248840, 152, 2), + (248841, 152, 2), + (248842, 152, 2), + (248845, 127, 1), + (248846, 154, 5), + (248847, 154, 15), + (248848, 153, 10), + (248849, 154, 5), + (248850, 277, 2), + (248851, 277, 4), + (248852, 277, 4), + (248853, 277, 4), + (248854, 277, 4), + (248855, 276, 2), + (248856, 276, 4), + (248857, 276, 4), + (248858, 276, 4), + (248859, 276, 4), + (248869, 19, 5), + (248869, 113, 5), + (248889, 127, 2), + (248890, 127, 1), + (248891, 152, 2), + (248892, 21, 5), + (248893, 101, 15), + (248895, 148, 10), + (248897, 148, 10), + (248897, 167, 10), + (248899, 20, 3), + (248900, 311, 4), + (248901, 19, 3), + (248902, 311, 4), + (248903, 17, 3), + (248904, 16, 3), + (248905, 153, 2), + (248906, 153, 4), + (248907, 153, 4), + (248908, 153, 4), + (248909, 156, 100), + (248910, 112, 15), + (248911, 160, 15), + (248912, 319, 1), + (248913, 93, 200), + (248913, 95, 200), + (248913, 90, 200), + (248913, 94, 200), + (248913, 91, 200), + (248913, 96, 300), + (248913, 92, 200), + (248913, 97, 200), + (248913, 156, 30), + (248913, 153, 25), + (248913, 155, 12), + (248913, 154, 12), + (248914, 144, 10), + (248915, 128, 5), + (248916, 143, 10), + (248916, 144, 8), + (248916, 145, 10), + (248916, 153, 12), + (248916, 154, 12), + (248916, 155, 12), + (248916, 90, 40), + (248916, 91, 40), + (248916, 92, 40), + (248916, 93, 50), + (248916, 94, 50), + (248916, 95, 50), + (248916, 96, 40), + (248916, 97, 50), + (248917, 1, 75), + (248917, 123, 15), + (248917, 124, 15), + (248917, 22, 5), + (248918, 1, 150), + (248918, 123, 30), + (248918, 124, 30), + (248918, 22, 20), + (248919, 163, 2), + (248920, 90, 75), + (248920, 91, 50), + (248920, 92, 50), + (248920, 93, 50), + (248920, 94, 50), + (248920, 95, 25), + (248920, 96, 75), + (248920, 97, 25), + (248920, 1, 50), + (248921, 163, 4), + (248922, 163, 4), + (248923, 163, 4), + (248924, 148, 5), + (248925, 148, 5), + (248926, 148, 10), + (248927, 91, 5), + (248927, 90, 6), + (248927, 92, 2), + (248927, 97, 5), + (248927, 94, 6), + (248927, 93, 5), + (248927, 96, 5), + (248927, 1, 1), + (248927, 112, 1), + (248927, 277, 1), + (248928, 91, 250), + (248928, 90, 300), + (248928, 92, 100), + (248928, 97, 225), + (248928, 95, 225), + (248928, 94, 300), + (248928, 93, 225), + (248928, 96, 225), + (248928, 1, 50), + (248928, 112, 20), + (248928, 277, 5), + (248935, 163, 4), + (248952, 131, 1), + (248953, 131, 3), + (248954, 130, 1), + (248955, 130, 3), + (248956, 129, 3), + (248957, 158, 2), + (248958, 158, 4), + (248961, 158, 4), + (248963, 158, 4), + (248964, 158, 4), + (248977, 16, 1), + (248978, 16, 1), + (248979, 16, 1), + (248980, 16, 1), + (248981, 16, 1), + (248982, 145, 2), + (248983, 145, 4), + (248984, 145, 4), + (248985, 145, 4), + (248986, 145, 4), + (248987, 122, 1), + (248988, 122, 2), + (248989, 122, 2), + (248990, 122, 2), + (248991, 143, 15), + (248992, 135, 5), + (248993, 124, 15), + (248994, 139, 5), + (248995, 168, 15), + (248996, 155, 10), + (248997, 1, 20), + (248998, 137, 2), + (248999, 137, 4), + (249000, 104, 4), + (249001, 104, 2), + (249002, 277, 8), + (249002, 155, 9), + (249002, 1, 20), + (249003, 277, 11), + (249003, 155, 12), + (249003, 1, 25), + (249004, 277, 11), + (249004, 155, 12), + (249004, 1, 25), + (249005, 277, 15), + (249005, 155, 15), + (249005, 1, 30), + (249006, 277, 15), + (249006, 155, 15), + (249006, 1, 30), + (249007, 277, 20), + (249007, 155, 20), + (249007, 1, 40), + (249009, 277, 20), + (249009, 155, 20), + (249009, 1, 40), + (249012, 277, 25), + (249012, 155, 25), + (249012, 1, 50), + (249013, 277, 25), + (249013, 155, 25), + (249013, 1, 50), + (249014, 277, 30), + (249014, 155, 30), + (249014, 1, 60), + (249015, 277, 30), + (249015, 155, 30), + (249015, 1, 60), + (249016, 277, 40), + (249016, 155, 40), + (249016, 1, 100), + (249017, 1, 1), + (249018, 1, 1), + (249019, 1, 3), + (249020, 1, 3), + (249021, 1, 5), + (249022, 1, 5), + (249023, 1, 7), + (249024, 1, 7), + (249025, 1, 9), + (249026, 1, 9), + (249027, 1, 20), + (249028, 1, 20), + (249029, 1, 22), + (249030, 1, 22), + (249031, 1, 24), + (249032, 1, 24), + (249033, 1, 26), + (249034, 1, 26), + (249035, 1, 30), + (249036, 156, 5), + (249037, 156, 5), + (249038, 156, 5), + (249039, 156, 5), + (249040, 156, 5), + (249041, 156, 5), + (249042, 156, 5), + (249043, 156, 5), + (249044, 156, 5), + (249045, 133, 1), + (249046, 156, 5), + (249047, 1, 20), + (249047, 156, 15), + (249048, 1, 20), + (249048, 156, 15), + (249049, 1, 30), + (249049, 156, 15), + (249050, 1, 30), + (249050, 156, 15), + (249051, 1, 40), + (249051, 156, 15), + (249052, 1, 40), + (249052, 156, 15), + (249053, 1, 50), + (249053, 156, 15), + (249054, 1, 50), + (249054, 156, 15), + (249055, 1, 75), + (249055, 156, 30), + (249056, 133, 2), + (249057, 133, 2), + (249058, 133, 3), + (249059, 133, 4), + (249064, 133, 1), + (249073, 1, 15), + (249074, 1, 15), + (249075, 1, 45), + (249076, 1, 45), + (249077, 1, 75), + (249078, 1, 75), + (249079, 1, 100), + (249080, 133, 1), + (249081, 133, 1), + (249082, 107, 5), + (249083, 154, 5), + (249084, 104, 2), + (249085, 115, 4), + (249086, 161, 2), + (249088, 122, 2), + (249089, 143, 2), + (249090, 143, 2), + (249095, 143, 2), + (249101, 143, 2), + (249102, 143, 2), + (249103, 143, 2), + (249686, 1, 25), + (249687, 1, 25), + (249688, 114, 5), + (249695, 280, 1), + (249696, 280, 2), + (249697, 280, 2), + (249698, 165, 4), + (249700, 103, 4), + (249701, 161, 5), + (249702, 379, 1), + (249707, 17, 1), + (249708, 18, 1), + (249715, 129, 2), + (249716, 128, 2), + (249717, 149, 2), + (249815, 19, 5), + (249815, 113, 5), + (249816, 19, 10), + (249816, 113, 10), + (249817, 19, 10), + (249817, 113, 10), + (249818, 19, 10), + (249818, 113, 10), + (249819, 19, 10), + (249819, 113, 10), + (249820, 154, 15), + (249820, 19, 15), + (249820, 113, 15), + (249821, 154, 15), + (249821, 19, 15), + (249821, 113, 15), + (249822, 154, 15), + (249822, 19, 15), + (249822, 113, 15), + (249823, 154, 15), + (249823, 19, 15), + (249823, 113, 15), + (249825, 154, 15), + (249825, 19, 15), + (249825, 113, 15), + (249826, 154, 15), + (249826, 19, 15), + (249826, 113, 15), + (249827, 154, 20), + (249827, 19, 20), + (249827, 113, 20), + (249828, 154, 20), + (249828, 19, 20), + (249828, 113, 20), + (249829, 154, 30), + (249829, 19, 25), + (249829, 113, 25), + (249844, 113, 5), + (249845, 113, 5), + (249846, 113, 5), + (249848, 113, 5), + (249849, 113, 10), + (249850, 113, 10), + (249851, 17, 15), + (249851, 113, 10), + (249852, 17, 15), + (249852, 113, 10), + (249853, 17, 30), + (249853, 113, 20), + (249859, 113, 5), + (249860, 113, 5), + (249861, 113, 10), + (249862, 113, 10), + (249863, 113, 15), + (249864, 113, 15), + (249865, 17, 15), + (249865, 113, 20), + (249866, 17, 15), + (249866, 113, 20), + (249867, 17, 30), + (249867, 113, 35), + (250144, 276, 1), + (250145, 276, 1), + (250146, 276, 2), + (250147, 276, 2), + (250148, 276, 3), + (250149, 276, 3), + (250150, 276, 4), + (250151, 276, 4), + (250152, 276, 5), + (250153, 276, 5), + (250154, 276, 6), + (250155, 276, 6), + (250156, 276, 7), + (250157, 276, 7), + (250158, 276, 8), + (250159, 276, 8), + (250161, 276, 9), + (250162, 276, 9), + (250163, 276, 10), + (250163, 1, 50), + (250459, 91, 10), + (250459, 90, 10), + (250459, 92, 8), + (250459, 97, 2), + (250459, 95, 10), + (250459, 94, 10), + (250459, 93, 8), + (250459, 96, 5), + (250460, 91, 1000), + (250460, 90, 1000), + (250460, 92, 800), + (250460, 97, 200), + (250460, 95, 1000), + (250460, 94, 1000), + (250460, 93, 800), + (250460, 96, 500), + (251222, 149, 11), + (251222, 168, 5), + (251223, 149, 660), + (251223, 168, 65), + (251231, 91, 5), + (251231, 90, 5), + (251231, 92, 5), + (251231, 97, 5), + (251231, 95, 4), + (251231, 94, 3), + (251231, 93, 5), + (251231, 96, 5), + (251231, 142, 5), + (251231, 152, 1), + (251232, 91, 350), + (251232, 90, 350), + (251232, 92, 350), + (251232, 97, 350), + (251232, 95, 250), + (251232, 94, 175), + (251232, 93, 350), + (251232, 96, 350), + (251232, 142, 15), + (251232, 152, 20), + (251238, 118, -50), + (251238, 119, -50), + (251238, 120, -50), + (251238, 149, -45), + (251238, 379, 1), + (251238, 380, 1), + (251239, 118, -40), + (251239, 119, -40), + (251239, 120, -40), + (251239, 149, -40), + (251239, 379, 1), + (251239, 380, 10), + (251240, 118, -390), + (251240, 119, -390), + (251240, 120, -390), + (251240, 149, -5), + (251240, 379, 10), + (251240, 380, 15), + (251241, 118, -500), + (251241, 119, -500), + (251241, 120, -500), + (251241, 149, 25), + (251241, 379, 15), + (251241, 380, 20), + (251242, 181, 3), + (251243, 181, 64), + (251254, 181, 125), + (251262, 1, 1), + (251262, 127, 1), + (251262, 128, 1), + (251262, 130, 1), + (251262, 319, 1), + (251262, 19, 1), + (251263, 1, 40), + (251263, 127, 5), + (251263, 128, 5), + (251263, 130, 4), + (251263, 319, 2), + (251263, 19, 3), + (251264, 1, 10), + (251264, 129, 1), + (251264, 131, 1), + (251264, 130, 1), + (251264, 319, 1), + (251264, 19, 1), + (251265, 1, 40), + (251265, 129, 5), + (251265, 131, 5), + (251265, 130, 4), + (251265, 319, 2), + (251265, 19, 3), + (251298, 279, 1), + (251298, 16, 1), + (251298, 1, 1), + (251299, 279, 14), + (251299, 16, 5), + (251299, 1, 60), + (251755, 279, 27), + (251755, 16, 9), + (251755, 1, 130), + (251756, 279, 40), + (251756, 16, 14), + (251756, 1, 200), + (251757, 1, 70), + (251757, 129, 10), + (251757, 131, 10), + (251757, 130, 7), + (251757, 319, 3), + (251757, 19, 5), + (251758, 1, 100), + (251758, 129, 15), + (251758, 131, 15), + (251758, 130, 10), + (251758, 319, 4), + (251758, 19, 8), + (251759, 1, 70), + (251759, 127, 10), + (251759, 128, 10), + (251759, 130, 7), + (251759, 319, 3), + (251759, 19, 5), + (251760, 1, 100), + (251760, 127, 15), + (251760, 128, 15), + (251760, 130, 10), + (251760, 319, 4), + (251760, 19, 8), + (251761, 278, 1), + (251761, 20, 1), + (251761, 1, 1), + (251762, 278, 14), + (251762, 20, 5), + (251762, 1, 60), + (251763, 278, 27), + (251763, 20, 9), + (251763, 1, 130), + (251764, 278, 40), + (251764, 20, 14), + (251764, 1, 200), + (251767, 277, 1), + (251767, 19, 1), + (251767, 1, 5), + (251768, 277, 2), + (251768, 19, 5), + (251768, 1, 120), + (251769, 277, 3), + (251769, 19, 9), + (251769, 1, 260), + (251770, 277, 5), + (251770, 19, 14), + (251770, 1, 400), + (251800, 16, 4), + (251800, 1, 10), + (251800, 18, 4), + (251801, 16, 12), + (251801, 1, 200), + (251801, 18, 12), + (251807, 1, 20), + (251807, 18, 2), + (251808, 1, 250), + (251808, 18, 10), + (251994, 91, 1100), + (251994, 90, 1100), + (251994, 92, 1100), + (251994, 97, 725), + (251994, 95, 1100), + (251994, 94, 725), + (251994, 93, 1100), + (251994, 96, 725), + (251994, 1, 450), + (251994, 277, 5), + (251994, 124, 2), + (251994, 123, 4), + (251994, 318, -2), + (251994, 16, 2), + (251994, 18, 2), + (251994, 17, 2), + (251994, 21, 2), + (251994, 20, 2), + (251994, 19, 2), + (251995, 91, 680), + (251995, 90, 680), + (251995, 92, 680), + (251995, 97, 445), + (251995, 95, 680), + (251995, 94, 445), + (251995, 93, 680), + (251995, 96, 445), + (251995, 1, 270), + (251995, 277, 3), + (251995, 124, 1), + (251995, 123, 2), + (251995, 318, -2), + (251995, 16, 2), + (251995, 18, 2), + (251995, 17, 2), + (251995, 21, 2), + (251995, 20, 2), + (251995, 19, 2), + (251996, 91, 410), + (251996, 90, 410), + (251996, 92, 410), + (251996, 97, 265), + (251996, 95, 410), + (251996, 94, 265), + (251996, 93, 410), + (251996, 96, 265), + (251996, 1, 180), + (251996, 277, 2), + (251996, 124, 1), + (251996, 123, 2), + (251996, 318, -1), + (251996, 16, 1), + (251996, 18, 1), + (251996, 17, 1), + (251996, 21, 1), + (251996, 20, 1), + (251996, 19, 1), + (251997, 91, 300), + (251997, 90, 300), + (251997, 92, 300), + (251997, 97, 195), + (251997, 95, 300), + (251997, 94, 195), + (251997, 93, 300), + (251997, 96, 195), + (251997, 1, 120), + (251997, 277, 1), + (251997, 124, 1), + (251997, 123, 2), + (251997, 318, -1), + (251997, 16, 1), + (251997, 18, 1), + (251997, 17, 1), + (251997, 21, 1), + (251997, 20, 1), + (251997, 19, 1), + (251998, 91, 220), + (251998, 90, 220), + (251998, 92, 220), + (251998, 97, 145), + (251998, 95, 220), + (251998, 94, 145), + (251998, 93, 220), + (251998, 96, 145), + (251998, 1, 90), + (251998, 277, 1), + (251998, 124, 1), + (251998, 123, 2), + (251998, 318, -1), + (251998, 16, 1), + (251998, 18, 1), + (251998, 17, 1), + (251998, 21, 1), + (251998, 20, 1), + (251998, 19, 1), + (251999, 91, 790), + (251999, 90, 790), + (251999, 92, 790), + (251999, 97, 525), + (251999, 95, 790), + (251999, 94, 525), + (251999, 93, 790), + (251999, 96, 525), + (251999, 1, 300), + (251999, 277, 4), + (251999, 124, 2), + (251999, 123, 4), + (251999, 318, -2), + (251999, 16, 2), + (251999, 18, 2), + (251999, 17, 2), + (251999, 21, 2), + (251999, 20, 2), + (251999, 19, 2), + (252000, 91, 770), + (252000, 90, 770), + (252000, 92, 770), + (252000, 97, 510), + (252000, 95, 770), + (252000, 94, 510), + (252000, 93, 770), + (252000, 96, 510), + (252000, 1, 360), + (252000, 277, 6), + (252000, 124, 2), + (252000, 123, 3), + (252000, 318, -3), + (252000, 16, 3), + (252000, 18, 3), + (252000, 17, 3), + (252000, 21, 3), + (252000, 20, 3), + (252000, 19, 3), + (252001, 91, 1240), + (252001, 90, 1240), + (252001, 92, 1240), + (252001, 97, 820), + (252001, 95, 1240), + (252001, 94, 820), + (252001, 93, 1240), + (252001, 96, 820), + (252001, 1, 600), + (252001, 277, 10), + (252001, 124, 4), + (252001, 123, 8), + (252001, 318, -3), + (252001, 16, 3), + (252001, 18, 3), + (252001, 17, 3), + (252001, 21, 3), + (252001, 20, 3), + (252001, 19, 3), + (252002, 91, 470), + (252002, 90, 470), + (252002, 92, 470), + (252002, 97, 310), + (252002, 95, 470), + (252002, 94, 310), + (252002, 93, 470), + (252002, 96, 310), + (252002, 1, 240), + (252002, 277, 4), + (252002, 124, 2), + (252002, 123, 4), + (252002, 318, -2), + (252002, 16, 2), + (252002, 18, 2), + (252002, 17, 2), + (252002, 21, 2), + (252002, 20, 2), + (252002, 19, 2), + (252003, 91, 335), + (252003, 90, 335), + (252003, 92, 335), + (252003, 97, 215), + (252003, 95, 335), + (252003, 94, 215), + (252003, 93, 335), + (252003, 96, 215), + (252003, 1, 160), + (252003, 277, 2), + (252003, 124, 2), + (252003, 123, 4), + (252003, 318, -2), + (252003, 16, 2), + (252003, 18, 2), + (252003, 17, 2), + (252003, 21, 2), + (252003, 20, 2), + (252003, 19, 2), + (252004, 91, 250), + (252004, 90, 250), + (252004, 92, 250), + (252004, 97, 170), + (252004, 95, 250), + (252004, 94, 170), + (252004, 93, 250), + (252004, 96, 170), + (252004, 1, 120), + (252004, 277, 2), + (252004, 124, 2), + (252004, 123, 4), + (252004, 318, -2), + (252004, 16, 2), + (252004, 18, 2), + (252004, 17, 2), + (252004, 21, 2), + (252004, 20, 2), + (252004, 19, 2), + (252005, 91, 900), + (252005, 90, 900), + (252005, 92, 900), + (252005, 97, 590), + (252005, 95, 900), + (252005, 94, 590), + (252005, 93, 900), + (252005, 96, 590), + (252005, 1, 400), + (252005, 277, 8), + (252005, 124, 4), + (252005, 123, 8), + (252005, 318, -2), + (252005, 16, 3), + (252005, 18, 3), + (252005, 17, 3), + (252005, 21, 3), + (252005, 20, 3), + (252005, 19, 3), + (252011, 91, 680), + (252011, 90, 680), + (252011, 92, 680), + (252011, 97, 680), + (252011, 95, 445), + (252011, 94, 445), + (252011, 93, 680), + (252011, 96, 445), + (252011, 1, 270), + (252011, 276, 6), + (252011, 16, 2), + (252011, 18, 2), + (252011, 17, 2), + (252011, 21, 2), + (252011, 20, 2), + (252011, 19, 2), + (252011, 128, 2), + (252011, 127, 2), + (252011, 130, 2), + (252011, 131, 2), + (252011, 129, 2), + (252011, 122, 2), + (252012, 91, 1100), + (252012, 90, 1100), + (252012, 92, 1100), + (252012, 97, 1100), + (252012, 95, 725), + (252012, 94, 725), + (252012, 93, 1100), + (252012, 96, 725), + (252012, 1, 450), + (252012, 276, 8), + (252012, 16, 2), + (252012, 18, 2), + (252012, 17, 2), + (252012, 21, 2), + (252012, 20, 2), + (252012, 19, 2), + (252012, 128, 2), + (252012, 127, 2), + (252012, 130, 2), + (252012, 131, 2), + (252012, 129, 2), + (252012, 122, 2), + (252013, 91, 410), + (252013, 90, 410), + (252013, 92, 410), + (252013, 97, 410), + (252013, 95, 265), + (252013, 94, 265), + (252013, 93, 410), + (252013, 96, 265), + (252013, 1, 180), + (252013, 276, 4), + (252013, 16, 1), + (252013, 18, 1), + (252013, 17, 1), + (252013, 21, 1), + (252013, 20, 1), + (252013, 19, 1), + (252013, 128, 1), + (252013, 127, 1), + (252013, 130, 1), + (252013, 131, 1), + (252013, 129, 1), + (252013, 122, 1), + (252014, 91, 300), + (252014, 90, 300), + (252014, 92, 300), + (252014, 97, 300), + (252014, 95, 195), + (252014, 94, 195), + (252014, 93, 300), + (252014, 96, 195), + (252014, 1, 120), + (252014, 276, 2), + (252014, 16, 1), + (252014, 18, 1), + (252014, 17, 1), + (252014, 21, 1), + (252014, 20, 1), + (252014, 19, 1), + (252014, 128, 1), + (252014, 127, 1), + (252014, 130, 1), + (252014, 131, 1), + (252014, 129, 1), + (252014, 122, 1), + (252015, 91, 220), + (252015, 90, 220), + (252015, 92, 220), + (252015, 97, 220), + (252015, 95, 145), + (252015, 94, 145), + (252015, 93, 220), + (252015, 96, 145), + (252015, 1, 90), + (252015, 276, 2), + (252015, 16, 1), + (252015, 18, 1), + (252015, 17, 1), + (252015, 21, 1), + (252015, 20, 1), + (252015, 19, 1), + (252015, 128, 1), + (252015, 127, 1), + (252015, 130, 1), + (252015, 131, 1), + (252015, 129, 1), + (252015, 122, 1), + (252016, 91, 790), + (252016, 90, 790), + (252016, 92, 790), + (252016, 97, 790), + (252016, 95, 525), + (252016, 94, 525), + (252016, 93, 790), + (252016, 96, 525), + (252016, 1, 300), + (252016, 276, 5), + (252016, 16, 2), + (252016, 18, 2), + (252016, 17, 2), + (252016, 21, 2), + (252016, 20, 2), + (252016, 19, 2), + (252016, 128, 2), + (252016, 127, 2), + (252016, 130, 2), + (252016, 131, 2), + (252016, 129, 2), + (252016, 122, 2), + (252017, 91, 900), + (252017, 90, 900), + (252017, 92, 900), + (252017, 97, 900), + (252017, 95, 590), + (252017, 94, 590), + (252017, 93, 900), + (252017, 96, 590), + (252017, 1, 400), + (252017, 276, 10), + (252017, 16, 3), + (252017, 18, 3), + (252017, 17, 3), + (252017, 21, 3), + (252017, 20, 3), + (252017, 19, 3), + (252017, 128, 3), + (252017, 127, 3), + (252017, 130, 3), + (252017, 131, 3), + (252017, 129, 3), + (252017, 122, 3), + (252018, 91, 250), + (252018, 90, 250), + (252018, 92, 250), + (252018, 97, 250), + (252018, 95, 170), + (252018, 94, 170), + (252018, 93, 250), + (252018, 96, 170), + (252018, 1, 120), + (252018, 276, 4), + (252018, 16, 2), + (252018, 18, 2), + (252018, 17, 2), + (252018, 21, 2), + (252018, 20, 2), + (252018, 19, 2), + (252018, 128, 2), + (252018, 127, 2), + (252018, 130, 2), + (252018, 131, 2), + (252018, 129, 2), + (252018, 122, 2), + (252019, 91, 335), + (252019, 90, 335), + (252019, 92, 335), + (252019, 97, 335), + (252019, 95, 215), + (252019, 94, 215), + (252019, 93, 335), + (252019, 96, 215), + (252019, 1, 160), + (252019, 276, 4), + (252019, 16, 2), + (252019, 18, 2), + (252019, 17, 2), + (252019, 21, 2), + (252019, 20, 2), + (252019, 19, 2), + (252019, 128, 2), + (252019, 127, 2), + (252019, 130, 2), + (252019, 131, 2), + (252019, 129, 2), + (252019, 122, 2), + (252020, 91, 470), + (252020, 90, 470), + (252020, 92, 470), + (252020, 97, 470), + (252020, 95, 310), + (252020, 94, 310), + (252020, 93, 470), + (252020, 96, 310), + (252020, 1, 240), + (252020, 276, 8), + (252020, 16, 2), + (252020, 18, 2), + (252020, 17, 2), + (252020, 21, 2), + (252020, 20, 2), + (252020, 19, 2), + (252020, 128, 2), + (252020, 127, 2), + (252020, 130, 2), + (252020, 131, 2), + (252020, 129, 2), + (252020, 122, 2), + (252021, 91, 1240), + (252021, 90, 1240), + (252021, 92, 1240), + (252021, 97, 1240), + (252021, 95, 820), + (252021, 94, 820), + (252021, 93, 1240), + (252021, 96, 820), + (252021, 1, 600), + (252021, 276, 16), + (252021, 16, 3), + (252021, 18, 3), + (252021, 17, 3), + (252021, 21, 3), + (252021, 20, 3), + (252021, 19, 3), + (252021, 128, 3), + (252021, 127, 3), + (252021, 130, 3), + (252021, 131, 3), + (252021, 129, 3), + (252021, 122, 3), + (252022, 91, 770), + (252022, 90, 770), + (252022, 92, 770), + (252022, 97, 770), + (252022, 95, 510), + (252022, 94, 510), + (252022, 93, 770), + (252022, 96, 510), + (252022, 1, 360), + (252022, 276, 12), + (252022, 16, 3), + (252022, 18, 3), + (252022, 17, 3), + (252022, 21, 3), + (252022, 20, 3), + (252022, 19, 3), + (252022, 128, 3), + (252022, 127, 3), + (252022, 130, 3), + (252022, 131, 3), + (252022, 129, 3), + (252022, 122, 3), + (252058, 118, -233), + (252058, 119, -233), + (252058, 120, -233), + (252058, 149, -233), + (252158, 45, 2), + (252158, 181, 2), + (252984, 128, 1), + (252984, 127, 1), + (252984, 130, 1), + (252984, 131, 1), + (252984, 129, 1), + (252984, 122, 1), + (252985, 128, 5), + (252985, 127, 5), + (252985, 130, 5), + (252985, 131, 5), + (252985, 129, 5), + (252985, 122, 5), + (252988, 91, 2), + (252988, 90, 3), + (252988, 92, 4), + (252988, 97, 2), + (252988, 95, 2), + (252988, 94, 1), + (252988, 93, 1), + (252988, 96, 1), + (252988, 280, 1), + (252989, 91, 250), + (252989, 90, 300), + (252989, 92, 400), + (252989, 97, 250), + (252989, 95, 250), + (252989, 94, 150), + (252989, 93, 150), + (252989, 96, 150), + (252989, 280, 60), + (252990, 91, 2), + (252990, 90, 3), + (252990, 92, 4), + (252990, 97, 2), + (252990, 95, 2), + (252990, 94, 1), + (252990, 93, 1), + (252990, 96, 1), + (252990, 16, 1), + (252990, 18, 1), + (252990, 100, 1), + (252990, 17, 1), + (252990, 280, 1), + (252991, 91, 250), + (252991, 90, 300), + (252991, 92, 400), + (252991, 97, 250), + (252991, 95, 250), + (252991, 94, 150), + (252991, 93, 150), + (252991, 96, 150), + (252991, 16, 6), + (252991, 18, 6), + (252991, 100, 20), + (252991, 17, 6), + (252991, 280, 12), + (252992, 128, 1), + (252992, 127, 1), + (252992, 130, 1), + (252992, 131, 1), + (252992, 129, 1), + (252992, 122, 1), + (252993, 128, 30), + (252993, 127, 30), + (252993, 130, 30), + (252993, 131, 30), + (252993, 129, 30), + (252993, 122, 30), + (253160, 154, 10), + (253161, 154, 30), + (253182, 111, 5), + (253182, 121, 5), + (253182, 120, 5), + (253182, 154, 5), + (253182, 155, 5), + (253183, 111, 80), + (253183, 121, 80), + (253183, 120, 80), + (253183, 154, 80), + (253183, 155, 80), + (253184, 91, 1), + (253184, 90, 1), + (253184, 92, 1), + (253184, 97, 1), + (253184, 95, 1), + (253184, 94, 1), + (253184, 93, 1), + (253184, 96, 1), + (253184, 127, 1), + (253184, 128, 1), + (253184, 129, 1), + (253184, 130, 1), + (253184, 131, 1), + (253184, 122, 1), + (253184, 181, 1), + (253185, 91, 230), + (253185, 90, 230), + (253185, 92, 230), + (253185, 97, 200), + (253185, 95, 200), + (253185, 94, 230), + (253185, 93, 200), + (253185, 96, 200), + (253185, 127, 30), + (253185, 128, 30), + (253185, 129, 30), + (253185, 130, 30), + (253185, 131, 30), + (253185, 122, 30), + (253185, 181, 15), + (253190, 91, 4), + (253190, 90, 4), + (253190, 92, 4), + (253190, 97, 4), + (253190, 95, 4), + (253190, 94, 4), + (253190, 93, 3), + (253190, 96, 3), + (253190, 156, 5), + (253190, 154, 3), + (253190, 155, 3), + (253190, 153, 3), + (253191, 91, 500), + (253191, 90, 500), + (253191, 92, 500), + (253191, 97, 500), + (253191, 95, 500), + (253191, 94, 500), + (253191, 93, 400), + (253191, 96, 400), + (253191, 156, 60), + (253191, 154, 45), + (253191, 155, 45), + (253191, 153, 45), + (253192, 128, 1), + (253192, 127, 1), + (253192, 130, 1), + (253192, 131, 1), + (253192, 129, 1), + (253192, 122, 1), + (253193, 128, 75), + (253193, 127, 75), + (253193, 130, 75), + (253193, 131, 75), + (253193, 129, 75), + (253193, 122, 75), + (253194, 127, 100), + (253194, 128, 100), + (253194, 129, 100), + (253194, 130, 100), + (253194, 131, 100), + (253194, 122, 100), + (253194, 536, 3), + (253194, 149, 150), + (253194, 151, -2000), + (253194, 167, -2000), + (253194, 148, -2000), + (253194, 150, -2000), + (253194, 114, -2000), + (253194, 115, -2000), + (253194, 111, -2000), + (253194, 133, -2000), + (253194, 109, -2000), + (253194, 110, -2000), + (253194, 116, -2000), + (253194, 113, -2000), + (253194, 112, -2000), + (253195, 127, 100), + (253195, 128, 100), + (253195, 129, 100), + (253195, 130, 100), + (253195, 131, 100), + (253195, 122, 100), + (253195, 536, 3), + (253195, 318, -5), + (253195, 151, -2000), + (253195, 167, -2000), + (253195, 148, -2000), + (253195, 150, -2000), + (253195, 114, -2000), + (253195, 115, -2000), + (253195, 111, -2000), + (253195, 133, -2000), + (253195, 109, -2000), + (253195, 110, -2000), + (253195, 116, -2000), + (253195, 113, -2000), + (253195, 112, -2000), + (253196, 127, 100), + (253196, 128, 100), + (253196, 129, 100), + (253196, 130, 100), + (253196, 131, 100), + (253196, 122, 100), + (253196, 536, 6), + (253196, 151, -2000), + (253196, 167, -2000), + (253196, 148, -2000), + (253196, 150, -2000), + (253196, 114, -2000), + (253196, 115, -2000), + (253196, 111, -2000), + (253196, 133, -2000), + (253196, 109, -2000), + (253196, 110, -2000), + (253196, 116, -2000), + (253196, 113, -2000), + (253196, 112, -2000), + (253197, 127, 100), + (253197, 128, 100), + (253197, 129, 100), + (253197, 130, 100), + (253197, 131, 100), + (253197, 122, 100), + (253197, 536, 3), + (253197, 149, 150), + (253197, 151, -2000), + (253197, 167, -2000), + (253197, 148, -2000), + (253197, 150, -2000), + (253197, 114, -2000), + (253197, 115, -2000), + (253197, 111, -2000), + (253197, 133, -2000), + (253197, 109, -2000), + (253197, 110, -2000), + (253197, 116, -2000), + (253197, 113, -2000), + (253197, 112, -2000), + (253198, 127, 100), + (253198, 128, 100), + (253198, 129, 100), + (253198, 130, 100), + (253198, 131, 100), + (253198, 122, 100), + (253198, 536, 3), + (253198, 318, -5), + (253198, 151, -2000), + (253198, 167, -2000), + (253198, 148, -2000), + (253198, 150, -2000), + (253198, 114, -2000), + (253198, 115, -2000), + (253198, 111, -2000), + (253198, 133, -2000), + (253198, 109, -2000), + (253198, 110, -2000), + (253198, 116, -2000), + (253198, 113, -2000), + (253198, 112, -2000), + (253199, 127, 100), + (253199, 128, 100), + (253199, 129, 100), + (253199, 130, 100), + (253199, 131, 100), + (253199, 122, 100), + (253199, 536, 6), + (253199, 151, -2000), + (253199, 167, -2000), + (253199, 148, -2000), + (253199, 150, -2000), + (253199, 114, -2000), + (253199, 115, -2000), + (253199, 111, -2000), + (253199, 133, -2000), + (253199, 109, -2000), + (253199, 110, -2000), + (253199, 116, -2000), + (253199, 113, -2000), + (253199, 112, -2000), + (253200, 127, 100), + (253200, 128, 100), + (253200, 129, 100), + (253200, 130, 100), + (253200, 131, 100), + (253200, 122, 100), + (253200, 536, 3), + (253200, 149, 150), + (253200, 151, -2000), + (253200, 167, -2000), + (253200, 148, -2000), + (253200, 150, -2000), + (253200, 114, -2000), + (253200, 115, -2000), + (253200, 111, -2000), + (253200, 133, -2000), + (253200, 109, -2000), + (253200, 110, -2000), + (253200, 116, -2000), + (253200, 113, -2000), + (253200, 112, -2000), + (253201, 127, 100), + (253201, 128, 100), + (253201, 129, 100), + (253201, 130, 100), + (253201, 131, 100), + (253201, 122, 100), + (253201, 536, 3), + (253201, 318, -5), + (253201, 151, -2000), + (253201, 167, -2000), + (253201, 148, -2000), + (253201, 150, -2000), + (253201, 114, -2000), + (253201, 115, -2000), + (253201, 111, -2000), + (253201, 133, -2000), + (253201, 109, -2000), + (253201, 110, -2000), + (253201, 116, -2000), + (253201, 113, -2000), + (253201, 112, -2000), + (253202, 127, 100), + (253202, 128, 100), + (253202, 129, 100), + (253202, 130, 100), + (253202, 131, 100), + (253202, 122, 100), + (253202, 536, 6), + (253202, 151, -2000), + (253202, 167, -2000), + (253202, 148, -2000), + (253202, 150, -2000), + (253202, 114, -2000), + (253202, 115, -2000), + (253202, 111, -2000), + (253202, 133, -2000), + (253202, 109, -2000), + (253202, 110, -2000), + (253202, 116, -2000), + (253202, 113, -2000), + (253202, 112, -2000), + (253203, 127, 100), + (253203, 128, 100), + (253203, 129, 100), + (253203, 130, 100), + (253203, 131, 100), + (253203, 122, 100), + (253203, 536, 3), + (253203, 149, 150), + (253203, 151, -2000), + (253203, 167, -2000), + (253203, 148, -2000), + (253203, 150, -2000), + (253203, 114, -2000), + (253203, 115, -2000), + (253203, 111, -2000), + (253203, 133, -2000), + (253203, 109, -2000), + (253203, 110, -2000), + (253203, 116, -2000), + (253203, 113, -2000), + (253203, 112, -2000), + (253204, 127, 100), + (253204, 128, 100), + (253204, 129, 100), + (253204, 130, 100), + (253204, 131, 100), + (253204, 122, 100), + (253204, 536, 3), + (253204, 318, -5), + (253204, 151, -2000), + (253204, 167, -2000), + (253204, 148, -2000), + (253204, 150, -2000), + (253204, 114, -2000), + (253204, 115, -2000), + (253204, 111, -2000), + (253204, 133, -2000), + (253204, 109, -2000), + (253204, 110, -2000), + (253204, 116, -2000), + (253204, 113, -2000), + (253204, 112, -2000), + (253205, 127, 100), + (253205, 128, 100), + (253205, 129, 100), + (253205, 130, 100), + (253205, 131, 100), + (253205, 122, 100), + (253205, 536, 6), + (253205, 151, -2000), + (253205, 167, -2000), + (253205, 148, -2000), + (253205, 150, -2000), + (253205, 114, -2000), + (253205, 115, -2000), + (253205, 111, -2000), + (253205, 133, -2000), + (253205, 109, -2000), + (253205, 110, -2000), + (253205, 116, -2000), + (253205, 113, -2000), + (253205, 112, -2000), + (253206, 127, 100), + (253206, 128, 100), + (253206, 129, 100), + (253206, 130, 100), + (253206, 131, 100), + (253206, 122, 100), + (253206, 536, 3), + (253206, 149, 150), + (253206, 151, -2000), + (253206, 167, -2000), + (253206, 148, -2000), + (253206, 150, -2000), + (253206, 114, -2000), + (253206, 115, -2000), + (253206, 111, -2000), + (253206, 133, -2000), + (253206, 109, -2000), + (253206, 110, -2000), + (253206, 116, -2000), + (253206, 113, -2000), + (253206, 112, -2000), + (253207, 127, 100), + (253207, 128, 100), + (253207, 129, 100), + (253207, 130, 100), + (253207, 131, 100), + (253207, 122, 100), + (253207, 536, 3), + (253207, 318, -5), + (253207, 151, -2000), + (253207, 167, -2000), + (253207, 148, -2000), + (253207, 150, -2000), + (253207, 114, -2000), + (253207, 115, -2000), + (253207, 111, -2000), + (253207, 133, -2000), + (253207, 109, -2000), + (253207, 110, -2000), + (253207, 116, -2000), + (253207, 113, -2000), + (253207, 112, -2000), + (253208, 127, 100), + (253208, 128, 100), + (253208, 129, 100), + (253208, 130, 100), + (253208, 131, 100), + (253208, 122, 100), + (253208, 536, 6), + (253208, 151, -2000), + (253208, 167, -2000), + (253208, 148, -2000), + (253208, 150, -2000), + (253208, 114, -2000), + (253208, 115, -2000), + (253208, 111, -2000), + (253208, 133, -2000), + (253208, 109, -2000), + (253208, 110, -2000), + (253208, 116, -2000), + (253208, 113, -2000), + (253208, 112, -2000), + (253209, 127, 100), + (253209, 128, 100), + (253209, 129, 100), + (253209, 130, 100), + (253209, 131, 100), + (253209, 122, 100), + (253209, 536, 6), + (253209, 151, -2000), + (253209, 167, -2000), + (253209, 148, -2000), + (253209, 150, -2000), + (253209, 114, -2000), + (253209, 115, -2000), + (253209, 111, -2000), + (253209, 133, -2000), + (253209, 109, -2000), + (253209, 110, -2000), + (253209, 116, -2000), + (253209, 113, -2000), + (253209, 112, -2000), + (253210, 127, 100), + (253210, 128, 100), + (253210, 129, 100), + (253210, 130, 100), + (253210, 131, 100), + (253210, 122, 100), + (253210, 536, 3), + (253210, 318, -5), + (253210, 151, -2000), + (253210, 167, -2000), + (253210, 148, -2000), + (253210, 150, -2000), + (253210, 114, -2000), + (253210, 115, -2000), + (253210, 111, -2000), + (253210, 133, -2000), + (253210, 109, -2000), + (253210, 110, -2000), + (253210, 116, -2000), + (253210, 113, -2000), + (253210, 112, -2000), + (253211, 127, 100), + (253211, 128, 100), + (253211, 129, 100), + (253211, 130, 100), + (253211, 131, 100), + (253211, 122, 100), + (253211, 536, 3), + (253211, 149, 150), + (253211, 151, -2000), + (253211, 167, -2000), + (253211, 148, -2000), + (253211, 150, -2000), + (253211, 114, -2000), + (253211, 115, -2000), + (253211, 111, -2000), + (253211, 133, -2000), + (253211, 109, -2000), + (253211, 110, -2000), + (253211, 116, -2000), + (253211, 113, -2000), + (253211, 112, -2000), + (253212, 127, 100), + (253212, 128, 100), + (253212, 129, 100), + (253212, 130, 100), + (253212, 131, 100), + (253212, 122, 100), + (253212, 536, 6), + (253212, 151, -2000), + (253212, 167, -2000), + (253212, 148, -2000), + (253212, 150, -2000), + (253212, 114, -2000), + (253212, 115, -2000), + (253212, 111, -2000), + (253212, 133, -2000), + (253212, 109, -2000), + (253212, 110, -2000), + (253212, 116, -2000), + (253212, 113, -2000), + (253212, 112, -2000), + (253213, 127, 100), + (253213, 128, 100), + (253213, 129, 100), + (253213, 130, 100), + (253213, 131, 100), + (253213, 122, 100), + (253213, 536, 3), + (253213, 318, -5), + (253213, 151, -2000), + (253213, 167, -2000), + (253213, 148, -2000), + (253213, 150, -2000), + (253213, 114, -2000), + (253213, 115, -2000), + (253213, 111, -2000), + (253213, 133, -2000), + (253213, 109, -2000), + (253213, 110, -2000), + (253213, 116, -2000), + (253213, 113, -2000), + (253213, 112, -2000), + (253214, 127, 100), + (253214, 128, 100), + (253214, 129, 100), + (253214, 130, 100), + (253214, 131, 100), + (253214, 122, 100), + (253214, 536, 3), + (253214, 149, 150), + (253214, 151, -2000), + (253214, 167, -2000), + (253214, 148, -2000), + (253214, 150, -2000), + (253214, 114, -2000), + (253214, 115, -2000), + (253214, 111, -2000), + (253214, 133, -2000), + (253214, 109, -2000), + (253214, 110, -2000), + (253214, 116, -2000), + (253214, 113, -2000), + (253214, 112, -2000), + (253236, 1, 100), + (253237, 1, 50), + (253238, 1, 50), + (253239, 154, 10), + (253239, 1, 100), + (253240, 154, 10), + (253240, 1, 100), + (253241, 164, 20), + (253241, 154, 20), + (253241, 1, 200), + (253244, 1, 50), + (253245, 1, 50), + (253246, 1, 200), + (253250, 1, 1), + (253250, 221, 1), + (253250, 19, 1), + (253250, 149, 5), + (253251, 1, 60), + (253251, 221, 60), + (253251, 19, 2), + (253251, 149, 15), + (253252, 1, 130), + (253252, 221, 130), + (253252, 19, 3), + (253252, 149, 30), + (253253, 1, 200), + (253253, 221, 200), + (253253, 19, 5), + (253253, 149, 60), + (253254, 120, 5), + (253254, 1, 1), + (253254, 279, 5), + (253254, 118, 5), + (253255, 120, 10), + (253255, 1, 90), + (253255, 279, 10), + (253255, 118, 10), + (253256, 120, 20), + (253256, 1, 160), + (253256, 279, 20), + (253256, 118, 20), + (253257, 120, 40), + (253257, 1, 300), + (253257, 279, 40), + (253257, 118, 40), + (253381, 380, -14), + (253381, 381, -14), + (253383, 380, -18), + (253383, 381, -18), + (253385, 380, -22), + (253385, 381, -22), + (253573, 137, 30), + (253573, 156, 800), + (253574, 137, 75), + (253574, 156, 800), + (253575, 137, 30), + (253575, 156, 800), + (253576, 137, 75), + (253576, 156, 800), + (253577, 137, 30), + (253577, 156, 800), + (253578, 137, 75), + (253578, 156, 800), + (253579, 137, 30), + (253579, 156, 800), + (253580, 137, 75), + (253580, 156, 800), + (253581, 156, 800), + (253582, 156, 800), + (253583, 156, 800), + (253584, 156, 800), + (254317, 164, 10), + (254317, 91, 50), + (254317, 90, 50), + (254317, 92, 50), + (254317, 95, 50), + (254317, 97, 50), + (254317, 93, 50), + (254317, 94, 50), + (254317, 96, 50), + (254372, 45, 5), + (254372, 181, 20), + (254372, 1, 50), + (254452, 1, -1880), + (254877, 379, 10), + (254879, 279, 1), + (254881, 1, 8), + (254883, 227, 1), + (254885, 91, 10), + (256522, 96, 50), + (257109, 119, 20), + (257109, 153, 20), + (257109, 134, 20), + (257111, 152, 50), + (257111, 155, 30), + (257111, 162, 70), + (257112, 1, 1800), + (257112, 221, 1800), + (257112, 319, 9), + (257112, 277, 75), + (257112, 276, 75), + (257112, 136, 160), + (257112, 164, 160), + (257112, 156, 250), + (257112, 160, 250), + (257112, 161, 250), + (257112, 278, 30), + (257112, 279, 30), + (257112, 280, 30), + (257112, 281, 30), + (257112, 282, 30), + (257112, 311, 30), + (257112, 316, 30), + (257112, 317, 30), + (257113, 1, 1800), + (257113, 221, 1800), + (257113, 319, 9), + (257113, 277, 75), + (257113, 276, 75), + (257113, 136, 160), + (257113, 164, 160), + (257113, 156, 250), + (257113, 160, 250), + (257113, 161, 250), + (257113, 278, 30), + (257113, 279, 30), + (257113, 280, 30), + (257113, 281, 30), + (257113, 282, 30), + (257113, 311, 30), + (257113, 316, 30), + (257113, 317, 30), + (257114, 96, 1000), + (257114, 90, 1000), + (257114, 91, 1000), + (257114, 92, 1000), + (257114, 94, 1000), + (257114, 93, 1000), + (257114, 97, 500), + (257114, 95, 1000), + (257114, 168, 20), + (257114, 155, 20), + (257114, 118, 20), + (257114, 123, 20), + (257114, 280, 10), + (257114, 278, 10), + (257114, 279, 10), + (257114, 281, 10), + (257114, 282, 10), + (257114, 311, 10), + (257114, 316, 10), + (257114, 317, 10), + (257115, 96, 1000), + (257115, 90, 1000), + (257115, 91, 1000), + (257115, 92, 1000), + (257115, 94, 1000), + (257115, 93, 1000), + (257115, 97, 1000), + (257115, 95, 500), + (257115, 168, 20), + (257115, 155, 20), + (257115, 118, 20), + (257115, 123, 20), + (257115, 280, 10), + (257115, 278, 10), + (257115, 279, 10), + (257115, 281, 10), + (257115, 282, 10), + (257115, 311, 10), + (257115, 316, 10), + (257115, 317, 10), + (257118, 149, 40), + (257118, 318, -2), + (257118, 379, 2), + (257119, 45, 6), + (257119, 181, 30), + (257119, 1, 150), + (257119, 221, 150), + (257119, 19, 35), + (257119, 21, 35), + (257119, 20, 35), + (257119, 17, 35), + (257123, 119, 20), + (257123, 153, 20), + (257124, 97, 120), + (257124, 94, 120), + (257126, 92, 500), + (257128, 276, 30), + (257128, 164, 120), + (257128, 154, 60), + (257141, 1, 100), + (257377, 91, 1425), + (257377, 90, 1350), + (257377, 92, 1275), + (257377, 97, 1425), + (257377, 95, 1350), + (257377, 94, 1425), + (257377, 93, 1275), + (257377, 96, 1200), + (257377, 152, 50), + (257377, 1, 200), + (257377, 221, 200), + (257377, 132, 50), + (257377, 318, -3), + (257377, 278, 15), + (257377, 280, 15), + (257377, 279, 15), + (257377, 281, 15), + (257377, 282, 15), + (257377, 311, 15), + (257377, 316, 15), + (257377, 317, 15), + (257378, 91, 1300), + (257378, 90, 1300), + (257378, 92, 1300), + (257378, 97, 990), + (257378, 95, 1300), + (257378, 94, 990), + (257378, 93, 1300), + (257378, 96, 990), + (257378, 1, 400), + (257378, 277, 8), + (257378, 124, 4), + (257378, 123, 8), + (257378, 318, -2), + (257378, 278, 10), + (257378, 280, 10), + (257378, 16, 3), + (257378, 18, 3), + (257378, 279, 10), + (257378, 17, 3), + (257378, 281, 10), + (257378, 282, 10), + (257378, 21, 3), + (257378, 311, 10), + (257378, 20, 3), + (257378, 316, 10), + (257378, 19, 3), + (257378, 317, 10), + (257379, 91, 1300), + (257379, 90, 1300), + (257379, 92, 1300), + (257379, 97, 1300), + (257379, 95, 990), + (257379, 94, 990), + (257379, 93, 1300), + (257379, 96, 990), + (257379, 1, 400), + (257379, 276, 10), + (257379, 16, 3), + (257379, 278, 10), + (257379, 18, 3), + (257379, 280, 10), + (257379, 279, 10), + (257379, 17, 3), + (257379, 281, 10), + (257379, 21, 3), + (257379, 20, 3), + (257379, 282, 10), + (257379, 19, 3), + (257379, 311, 10), + (257379, 128, 3), + (257379, 316, 10), + (257379, 127, 3), + (257379, 317, 10), + (257379, 130, 3), + (257379, 131, 3), + (257379, 129, 3), + (257379, 122, 3), + (257380, 91, 1425), + (257380, 90, 1425), + (257380, 92, 1350), + (257380, 97, 1350), + (257380, 95, 1275), + (257380, 94, 1425), + (257380, 93, 1200), + (257380, 96, 1275), + (257380, 1, 200), + (257380, 152, 50), + (257380, 278, 25), + (257380, 280, 25), + (257380, 279, 25), + (257380, 281, 25), + (257380, 282, 25), + (257380, 311, 25), + (257380, 316, 25), + (257380, 317, 25), + (257380, 102, 30), + (257380, 103, 30), + (257380, 106, 30), + (257380, 107, 30), + (257380, 105, 30), + (257380, 104, 30), + (257380, 100, 30), + (257380, 142, 30), + (257380, 144, 30), + (257380, 143, 30), + (257380, 146, 30), + (257380, 147, 30), + (257380, 101, 30), + (257380, 277, 15), + (257381, 91, 1350), + (257381, 90, 1425), + (257381, 92, 1425), + (257381, 97, 1275), + (257381, 95, 1200), + (257381, 94, 1350), + (257381, 93, 1275), + (257381, 96, 1425), + (257381, 102, 30), + (257381, 103, 30), + (257381, 106, 30), + (257381, 107, 30), + (257381, 105, 30), + (257381, 104, 30), + (257381, 100, 30), + (257381, 142, 30), + (257381, 144, 30), + (257381, 143, 30), + (257381, 146, 30), + (257381, 147, 30), + (257381, 101, 30), + (257381, 278, 25), + (257381, 277, 15), + (257381, 280, 25), + (257381, 279, 25), + (257381, 281, 25), + (257381, 282, 25), + (257381, 311, 25), + (257381, 316, 25), + (257381, 317, 25), + (257381, 111, 30), + (257381, 112, 30), + (257381, 116, 30), + (257381, 114, 30), + (257381, 115, 30), + (257381, 113, 30), + (257381, 133, 30), + (257381, 108, 30), + (257381, 109, 30), + (257381, 110, 30), + (257381, 150, 30), + (257381, 151, 30), + (257381, 148, 30), + (257381, 167, 30), + (257381, 121, 30), + (257381, 134, 30), + (257381, 276, 15), + (257382, 91, 1350), + (257382, 90, 1350), + (257382, 92, 1275), + (257382, 97, 1275), + (257382, 95, 1425), + (257382, 94, 1200), + (257382, 93, 1425), + (257382, 96, 1350), + (257382, 155, 30), + (257382, 154, 30), + (257382, 153, 30), + (257382, 118, 40), + (257382, 119, 40), + (257382, 120, 40), + (257382, 136, 30), + (257382, 164, 30), + (257382, 165, 30), + (257382, 135, 30), + (257382, 278, 15), + (257382, 280, 15), + (257382, 279, 15), + (257382, 281, 15), + (257382, 282, 15), + (257382, 311, 15), + (257382, 316, 15), + (257382, 317, 15), + (257382, 127, 30), + (257382, 128, 30), + (257382, 129, 30), + (257382, 130, 30), + (257382, 131, 30), + (257382, 122, 30), + (257382, 125, 30), + (257382, 126, 30), + (257382, 157, 30), + (257382, 158, 30), + (257382, 159, 30), + (257382, 160, 30), + (257382, 162, 30), + (257382, 163, 30), + (257382, 181, 15), + (257383, 91, 1350), + (257383, 90, 1350), + (257383, 92, 1275), + (257383, 97, 1275), + (257383, 95, 1425), + (257383, 94, 1200), + (257383, 93, 1425), + (257383, 96, 1350), + (257383, 221, 200), + (257383, 132, 50), + (257383, 318, -3), + (257383, 278, 15), + (257383, 280, 15), + (257383, 279, 15), + (257383, 281, 15), + (257383, 282, 15), + (257383, 311, 15), + (257383, 316, 15), + (257383, 317, 15), + (257383, 127, 30), + (257383, 128, 30), + (257383, 129, 30), + (257383, 130, 30), + (257383, 131, 30), + (257383, 122, 30), + (257383, 125, 30), + (257383, 126, 30), + (257383, 157, 30), + (257383, 158, 30), + (257383, 159, 30), + (257383, 160, 30), + (257383, 162, 30), + (257383, 163, 30), + (257383, 181, 15), + (257384, 91, 1350), + (257384, 90, 1350), + (257384, 92, 1425), + (257384, 97, 1200), + (257384, 95, 1275), + (257384, 94, 1275), + (257384, 93, 1425), + (257384, 96, 1425), + (257384, 155, 30), + (257384, 154, 30), + (257384, 153, 30), + (257384, 118, 40), + (257384, 119, 40), + (257384, 120, 40), + (257384, 136, 30), + (257384, 164, 30), + (257384, 165, 30), + (257384, 135, 30), + (257384, 278, 15), + (257384, 280, 15), + (257384, 279, 15), + (257384, 281, 15), + (257384, 282, 15), + (257384, 311, 15), + (257384, 316, 15), + (257384, 317, 15), + (257384, 111, 30), + (257384, 112, 30), + (257384, 116, 30), + (257384, 114, 30), + (257384, 115, 30), + (257384, 113, 30), + (257384, 133, 30), + (257384, 108, 30), + (257384, 109, 30), + (257384, 110, 30), + (257384, 150, 30), + (257384, 151, 30), + (257384, 148, 30), + (257384, 167, 30), + (257384, 121, 30), + (257384, 134, 30), + (257384, 276, 15), + (258289, 156, 500), + (258289, 205, 1000), + (258289, 206, 1000), + (258289, 207, 1000), + (258289, 208, 1000), + (258289, 216, 1000), + (258289, 217, 1000), + (258289, 218, 1000), + (258289, 219, 1000), + (258289, 225, 1000), + (258289, 93, 5000), + (258289, 95, 5000), + (258289, 92, 5000), + (258289, 97, 5000), + (258289, 91, 5000), + (258289, 168, 5000), + (258289, 96, 5000), + (258289, 90, 5000), + (258289, 94, 5000), + (258289, 1, 100000), + (258289, 27, 100000), + (258289, 343, 100000), + (258289, 364, 100000), + (258290, 156, 500), + (258290, 205, 1000), + (258290, 206, 1000), + (258290, 207, 1000), + (258290, 208, 1000), + (258290, 216, 1000), + (258290, 217, 1000), + (258290, 218, 1000), + (258290, 219, 1000), + (258290, 225, 1000), + (258290, 93, 5000), + (258290, 95, 5000), + (258290, 92, 5000), + (258290, 97, 5000), + (258290, 91, 5000), + (258290, 168, 5000), + (258290, 96, 5000), + (258290, 90, 5000), + (258290, 94, 5000), + (258290, 1, 100000), + (258290, 27, 100000), + (258290, 343, 100000), + (258290, 364, 100000), + (258291, 156, 500), + (258291, 205, 1000), + (258291, 206, 1000), + (258291, 207, 1000), + (258291, 208, 1000), + (258291, 216, 1000), + (258291, 217, 1000), + (258291, 218, 1000), + (258291, 219, 1000), + (258291, 225, 1000), + (258291, 93, 5000), + (258291, 95, 5000), + (258291, 92, 5000), + (258291, 97, 5000), + (258291, 91, 5000), + (258291, 168, 5000), + (258291, 96, 5000), + (258291, 90, 5000), + (258291, 94, 5000), + (258291, 1, 100000), + (258291, 27, 100000), + (258291, 343, 100000), + (258291, 364, 100000), + (258341, 92, 5000), + (258341, 217, 1000), + (258341, 219, 1000), + (258341, 205, 1000), + (258341, 206, 1000), + (258341, 207, 1000), + (258341, 91, 5000), + (258341, 168, 5000), + (258341, 156, 500), + (258341, 225, 1000), + (258341, 218, 1000), + (258341, 216, 1000), + (258341, 90, 5000), + (258341, 96, 5000), + (258341, 94, 5000), + (258341, 93, 5000), + (258341, 97, 5000), + (258341, 95, 5000), + (258341, 1, 100000), + (258341, 27, 100000), + (258341, 343, 100000), + (258341, 364, 100000), + (258343, 20, 10), + (258343, 17, 10), + (258344, 16, 10), + (258344, 18, 10), + (258345, 19, 10), + (258345, 21, 10), + (258472, 91, 400), + (258472, 90, 465), + (258472, 92, 500), + (258472, 97, 465), + (258472, 95, 595), + (258472, 94, 595), + (258472, 93, 595), + (258472, 96, 500), + (258472, 132, 10), + (258472, 128, 9), + (258472, 127, 9), + (258472, 130, 9), + (258472, 129, 9), + (258472, 122, 9), + (258472, 131, 9), + (258473, 91, 600), + (258473, 90, 700), + (258473, 92, 750), + (258473, 97, 700), + (258473, 95, 895), + (258473, 94, 895), + (258473, 93, 895), + (258473, 96, 750), + (258473, 132, 40), + (258473, 128, 11), + (258473, 127, 11), + (258473, 130, 11), + (258473, 129, 11), + (258473, 122, 11), + (258473, 131, 11), + (258474, 91, 110), + (258474, 94, 120), + (258474, 92, 120), + (258474, 90, 110), + (258474, 95, 80), + (258474, 97, 80), + (258474, 93, 50), + (258474, 96, 50), + (258474, 19, 3), + (258474, 221, 9), + (258743, 379, 2000), + (258743, 278, 12000), + (258743, 279, 12000), + (258743, 280, 12000), + (258743, 281, 12000), + (258743, 282, 12000), + (258743, 311, 12000), + (258743, 316, 12000), + (258743, 317, 12000), + (258743, 315, 12000), + (259265, 124, 7), + (259265, 123, 7), + (259265, 181, 15), + (259265, 122, 10), + (259266, 124, 7), + (259266, 123, 7), + (259266, 181, 15), + (259266, 127, 10), + (259267, 124, 7), + (259267, 123, 7), + (259267, 181, 15), + (259267, 128, 10), + (259268, 124, 7), + (259268, 123, 7), + (259268, 181, 15), + (259268, 129, 10), + (259269, 124, 7), + (259269, 123, 7), + (259269, 181, 15), + (259269, 130, 10), + (259270, 124, 7), + (259270, 123, 7), + (259270, 181, 15), + (259270, 131, 10), + (259605, 144, 20), + (259608, 144, 10), + (260678, 152, 24), + (260678, 118, 12), + (260678, 279, 12), + (260678, 280, 12), + (260678, 316, 12), + (260678, 311, 12), + (260678, 102, 8), + (260678, 103, 8), + (260678, 276, 6), + (260678, 277, 6), + (260679, 106, 12), + (260679, 146, 12), + (260679, 123, 12), + (260679, 124, 12), + (260679, 155, 12), + (260679, 154, 12), + (260679, 153, 12), + (260679, 152, 12), + (260679, 132, 12), + (260679, 276, 12), + (260679, 277, 12), + (260679, 118, 12), + (260679, 120, 12), + (260679, 162, 12), + (260679, 136, 12), + (260679, 101, 12), + (260679, 145, 12), + (260679, 168, 12), + (260679, 156, 12), + (260679, 181, 12), + (260680, 90, 300), + (260680, 91, 300), + (260680, 92, 300), + (260680, 97, 300), + (260680, 95, 300), + (260680, 94, 475), + (260680, 93, 295), + (260680, 96, 295), + (260680, 1, 295), + (260680, 221, 25), + (260680, 128, 12), + (260681, 90, 2450), + (260681, 91, 2450), + (260681, 92, 2400), + (260681, 97, 1500), + (260681, 95, 1995), + (260681, 94, 1800), + (260681, 93, 1595), + (260681, 96, 1795), + (260681, 21, 18), + (260681, 19, 18), + (260681, 221, 50), + (260681, 129, 10), + (260682, 96, 1300), + (260682, 95, 1300), + (260682, 97, 1300), + (260682, 93, 1300), + (260682, 94, 1300), + (260682, 92, 1300), + (260682, 91, 1300), + (260682, 90, 1300), + (260682, 1, 200), + (260682, 221, 200), + (260682, 119, 50), + (260682, 154, 50), + (260682, 168, 50), + (260682, 164, 50), + (260682, 156, 50), + (260683, 17, 7), + (260683, 151, 7), + (260683, 113, 7), + (260683, 136, 7), + (260683, 122, 7), + (260684, 96, 1300), + (260684, 95, 1300), + (260684, 97, 1300), + (260684, 93, 1300), + (260684, 94, 1300), + (260684, 92, 1300), + (260684, 91, 1300), + (260684, 90, 1300), + (260684, 1, 300), + (260684, 221, 100), + (260684, 156, 75), + (260685, 96, 300), + (260685, 95, 300), + (260685, 97, 300), + (260685, 93, 300), + (260685, 94, 300), + (260685, 92, 300), + (260685, 91, 300), + (260685, 90, 300), + (260685, 1, 150), + (260685, 119, 25), + (260685, 16, 15), + (260686, 277, 20), + (260686, 1, 200), + (260686, 129, 60), + (260687, 277, 20), + (260687, 1, 200), + (260687, 129, 60), + (260688, 277, 25), + (260688, 1, 250), + (260688, 129, 75), + (260690, 1, 100), + (260691, 278, 5), + (260691, 279, 5), + (260691, 316, 5), + (260691, 311, 5), + (260691, 280, 5), + (260691, 317, 5), + (260691, 281, 5), + (260691, 282, 5), + (260692, 278, 25), + (260692, 279, 25), + (260692, 316, 25), + (260692, 311, 25), + (260692, 280, 25), + (260692, 317, 25), + (260692, 281, 25), + (260692, 282, 25), + (260693, 17, 20), + (260693, 20, 20), + (260693, 19, 20), + (260693, 21, 20), + (260694, 45, 6), + (260694, 18, 10), + (260695, 45, 6), + (260695, 16, 10), + (260696, 45, 6), + (260696, 20, 10), + (260697, 45, 6), + (260697, 19, 10), + (260698, 45, 6), + (260698, 17, 10), + (260699, 45, 6), + (260699, 21, 10), + (260700, 319, 1), + (260701, 319, 1), + (260702, 319, 2), + (260703, 319, 2), + (260704, 319, 3), + (260705, 319, 3), + (260706, 319, 4), + (260707, 319, 1), + (260708, 319, 1), + (260709, 319, 2), + (260710, 319, 2), + (260711, 319, 3), + (260712, 319, 3), + (260713, 319, 4), + (260714, 319, 1), + (260715, 319, 1), + (260716, 319, 2), + (260717, 319, 2), + (260718, 319, 3), + (260719, 319, 3), + (260720, 319, 4), + (260759, 536, 10), + (260766, 153, -170), + (260766, 154, -170), + (260766, 155, -170), + (260766, 180, 25), + (260772, 149, 200), + (260772, 535, 12), + (262462, 91, 4), + (262462, 90, 4), + (262462, 92, 4), + (262462, 97, 3), + (262462, 95, 4), + (262462, 94, 3), + (262462, 93, 9), + (262462, 96, 4), + (262463, 91, 900), + (262463, 90, 900), + (262463, 92, 900), + (262463, 97, 800), + (262463, 95, 900), + (262463, 94, 800), + (262463, 93, 1000), + (262463, 96, 900), + (262464, 91, 1), + (262464, 90, 1), + (262464, 92, 1), + (262464, 97, 0), + (262464, 95, 1), + (262464, 94, 0), + (262464, 93, 6), + (262464, 96, 1), + (262465, 91, 230), + (262465, 90, 230), + (262465, 92, 230), + (262465, 97, 210), + (262465, 95, 230), + (262465, 94, 210), + (262465, 93, 250), + (262465, 96, 230), + (262466, 91, 1), + (262466, 90, 1), + (262466, 92, 1), + (262466, 97, 0), + (262466, 95, 1), + (262466, 94, 0), + (262466, 93, 6), + (262466, 96, 1), + (262467, 91, 230), + (262467, 90, 230), + (262467, 92, 230), + (262467, 97, 210), + (262467, 95, 230), + (262467, 94, 210), + (262467, 93, 250), + (262467, 96, 230), + (262468, 91, 2), + (262468, 90, 2), + (262468, 92, 2), + (262468, 97, 1), + (262468, 95, 2), + (262468, 94, 1), + (262468, 93, 7), + (262468, 96, 2), + (262469, 91, 575), + (262469, 90, 575), + (262469, 92, 575), + (262469, 97, 525), + (262469, 95, 575), + (262469, 94, 525), + (262469, 93, 625), + (262469, 96, 575), + (262470, 91, 2), + (262470, 90, 2), + (262470, 92, 2), + (262470, 97, 1), + (262470, 95, 2), + (262470, 94, 1), + (262470, 93, 7), + (262470, 96, 2), + (262471, 91, 340), + (262471, 90, 340), + (262471, 92, 340), + (262471, 97, 305), + (262471, 95, 340), + (262471, 94, 305), + (262471, 93, 375), + (262471, 96, 340), + (262846, 206, 200), + (262846, 207, 200), + (262846, 208, 200), + (262846, 216, 200), + (262846, 217, 200), + (262846, 205, 200), + (262846, 219, 200), + (262846, 225, 200), + (262954, 1, 1050), + (262954, 156, 210), + (262954, 160, 210), + (262954, 161, 220), + (262954, 164, 140), + (262954, 221, 1050), + (262954, 276, 45), + (262954, 277, 60), + (262954, 278, 20), + (262954, 279, 20), + (262954, 280, 20), + (262954, 281, 20), + (262954, 282, 20), + (262954, 311, 20), + (262954, 316, 20), + (262954, 317, 20), + (262954, 319, 8), + (262955, 1, 1050), + (262955, 156, 210), + (262955, 160, 210), + (262955, 161, 220), + (262955, 164, 140), + (262955, 221, 1050), + (262955, 276, 45), + (262955, 277, 60), + (262955, 278, 20), + (262955, 279, 20), + (262955, 280, 20), + (262955, 281, 20), + (262955, 282, 20), + (262955, 311, 20), + (262955, 316, 20), + (262955, 317, 20), + (262955, 319, 8), + (263242, 17, 30), + (263242, 20, 25), + (263245, 17, 40), + (263245, 20, 35), + (263247, 111, 40), + (263247, 151, 40), + (263248, 111, 55), + (263248, 151, 55), + (263252, 112, 60), + (263253, 112, 45), + (263256, 205, 1), + (263256, 206, 1), + (263256, 207, 1), + (263256, 208, 1), + (263256, 216, 1), + (263256, 217, 1), + (263256, 219, 1), + (263256, 225, 1), + (263257, 205, 10), + (263257, 206, 10), + (263257, 207, 10), + (263257, 208, 10), + (263257, 216, 10), + (263257, 217, 10), + (263257, 219, 10), + (263257, 225, 10), + (263267, 536, 7), + (263285, 1, 500), + (263285, 152, 30), + (263285, 147, 15), + (263285, 146, 15), + (263285, 104, 20), + (263285, 105, 20), + (263285, 101, 25), + (263286, 1, 250), + (263286, 277, 30), + (263286, 168, 50), + (263286, 155, 20), + (263286, 154, 20), + (263286, 153, 20), + (263286, 156, 30), + (263289, 277, 75), + (263289, 118, 75), + (263290, 277, 100), + (263290, 118, 100), + (263291, 93, 150), + (263291, 95, 150), + (263291, 92, 150), + (263291, 97, 150), + (263291, 91, 200), + (263291, 96, 150), + (263291, 90, 200), + (263291, 94, 150), + (263291, 161, 3), + (263299, 149, 100), + (263299, 129, 80), + (263299, 122, 80), + (263300, 129, 80), + (263300, 122, 80), + (263302, 277, 30), + (263302, 360, -30), + (263304, 277, 50), + (263304, 360, -50), + (263305, 1, 1), + (264174, 91, 3), + (264174, 90, 3), + (264174, 92, 1), + (264174, 97, 3), + (264174, 95, 3), + (264174, 94, 3), + (264174, 93, 1), + (264174, 96, 3), + (264174, 146, 1), + (264174, 150, 1), + (264174, 17, 1), + (264174, 131, 1), + (264175, 91, 945), + (264175, 90, 945), + (264175, 92, 945), + (264175, 97, 945), + (264175, 95, 945), + (264175, 94, 945), + (264175, 93, 945), + (264175, 96, 945), + (264175, 146, 55), + (264175, 150, 60), + (264175, 17, 20), + (264175, 131, 30), + (264176, 91, 2), + (264176, 90, 2), + (264176, 92, 2), + (264176, 97, 2), + (264176, 95, 2), + (264176, 94, 2), + (264176, 93, 2), + (264176, 96, 2), + (264176, 156, 1), + (264176, 123, 1), + (264176, 137, 1), + (264176, 127, 1), + (264176, 1, 1), + (264177, 91, 473), + (264177, 90, 473), + (264177, 92, 473), + (264177, 97, 473), + (264177, 95, 473), + (264177, 94, 473), + (264177, 93, 473), + (264177, 96, 473), + (264177, 156, 75), + (264177, 123, 65), + (264177, 137, 75), + (264177, 127, 21), + (264177, 1, 350), + (264178, 91, 6), + (264178, 90, 6), + (264178, 92, 6), + (264178, 97, 6), + (264178, 95, 6), + (264178, 94, 6), + (264178, 93, 6), + (264178, 96, 6), + (264178, 1, 3), + (264178, 103, 1), + (264178, 148, 1), + (264178, 18, 1), + (264178, 112, 1), + (264179, 91, 1890), + (264179, 90, 1890), + (264179, 92, 1890), + (264179, 97, 1890), + (264179, 95, 1890), + (264179, 94, 1890), + (264179, 93, 1890), + (264179, 96, 1890), + (264179, 1, 840), + (264179, 103, 35), + (264179, 148, 35), + (264179, 18, 25), + (264179, 112, 35), + (264180, 91, 2), + (264180, 90, 2), + (264180, 92, 2), + (264180, 97, 2), + (264180, 95, 2), + (264180, 94, 2), + (264180, 93, 2), + (264180, 96, 2), + (264180, 119, 1), + (264180, 118, 1), + (264180, 134, 1), + (264180, 101, 1), + (264180, 103, 1), + (264180, 112, 1), + (264180, 1, 1), + (264181, 91, 577), + (264181, 90, 577), + (264181, 92, 577), + (264181, 97, 577), + (264181, 95, 577), + (264181, 94, 577), + (264181, 93, 577), + (264181, 96, 577), + (264181, 119, 42), + (264181, 118, 42), + (264181, 134, 45), + (264181, 101, 45), + (264181, 103, 35), + (264181, 112, 35), + (264181, 1, 350), + (264182, 91, 1), + (264182, 90, 1), + (264182, 92, 1), + (264182, 97, 1), + (264182, 95, 1), + (264182, 94, 1), + (264182, 93, 1), + (264182, 96, 1), + (264182, 147, 1), + (264182, 124, 1), + (264182, 20, 1), + (264182, 129, 1), + (264182, 1, 1), + (264183, 91, 394), + (264183, 90, 394), + (264183, 92, 394), + (264183, 97, 394), + (264183, 95, 394), + (264183, 94, 394), + (264183, 93, 394), + (264183, 96, 394), + (264183, 147, 55), + (264183, 124, 35), + (264183, 20, 22), + (264183, 129, 17), + (264183, 1, 350), + (264184, 91, 5), + (264184, 90, 5), + (264184, 92, 5), + (264184, 97, 5), + (264184, 95, 5), + (264184, 94, 5), + (264184, 93, 5), + (264184, 96, 5), + (264184, 136, 1), + (264184, 19, 1), + (264184, 128, 1), + (264184, 1, 1), + (264185, 91, 1420), + (264185, 90, 1420), + (264185, 92, 1420), + (264185, 97, 1420), + (264185, 95, 1420), + (264185, 94, 1420), + (264185, 93, 1420), + (264185, 96, 1420), + (264185, 136, 75), + (264185, 19, 22), + (264185, 128, 45), + (264185, 1, 350), + (264186, 91, 3), + (264186, 90, 3), + (264186, 92, 3), + (264186, 97, 3), + (264186, 95, 3), + (264186, 94, 3), + (264186, 93, 3), + (264186, 96, 3), + (264186, 146, 1), + (264186, 150, 1), + (264186, 17, 1), + (264186, 131, 1), + (264187, 91, 945), + (264187, 90, 945), + (264187, 92, 945), + (264187, 97, 945), + (264187, 95, 945), + (264187, 94, 945), + (264187, 93, 945), + (264187, 96, 945), + (264187, 146, 50), + (264187, 150, 55), + (264187, 17, 20), + (264187, 131, 25), + (264188, 91, 2), + (264188, 90, 2), + (264188, 92, 2), + (264188, 97, 2), + (264188, 95, 2), + (264188, 94, 2), + (264188, 93, 2), + (264188, 96, 2), + (264188, 156, 1), + (264188, 123, 1), + (264188, 137, 1), + (264188, 127, 1), + (264188, 1, 1), + (264189, 91, 473), + (264189, 90, 473), + (264189, 92, 473), + (264189, 97, 473), + (264189, 95, 473), + (264189, 94, 473), + (264189, 93, 473), + (264189, 96, 473), + (264189, 156, 70), + (264189, 123, 60), + (264189, 137, 70), + (264189, 127, 17), + (264189, 1, 300), + (264190, 91, 6), + (264190, 90, 6), + (264190, 92, 6), + (264190, 97, 6), + (264190, 95, 6), + (264190, 94, 6), + (264190, 93, 6), + (264190, 96, 6), + (264190, 1, 2), + (264190, 148, 1), + (264190, 18, 1), + (264190, 112, 1), + (264190, 103, 1), + (264191, 91, 1890), + (264191, 90, 1890), + (264191, 92, 1890), + (264191, 97, 1890), + (264191, 95, 1890), + (264191, 94, 1890), + (264191, 93, 1890), + (264191, 96, 1890), + (264191, 1, 720), + (264191, 148, 30), + (264191, 18, 22), + (264191, 112, 30), + (264191, 103, 30), + (264192, 91, 2), + (264192, 90, 2), + (264192, 92, 2), + (264192, 97, 2), + (264192, 95, 2), + (264192, 94, 2), + (264192, 93, 2), + (264192, 96, 2), + (264192, 119, 1), + (264192, 118, 1), + (264192, 134, 1), + (264192, 101, 1), + (264192, 103, 1), + (264192, 112, 1), + (264192, 1, 1), + (264193, 91, 577), + (264193, 90, 577), + (264193, 92, 577), + (264193, 97, 577), + (264193, 95, 577), + (264193, 94, 577), + (264193, 93, 577), + (264193, 96, 577), + (264193, 119, 35), + (264193, 118, 35), + (264193, 134, 40), + (264193, 101, 40), + (264193, 103, 25), + (264193, 112, 25), + (264193, 1, 300), + (264194, 91, 1), + (264194, 90, 1), + (264194, 92, 1), + (264194, 97, 1), + (264194, 95, 1), + (264194, 94, 1), + (264194, 93, 1), + (264194, 96, 1), + (264194, 147, 1), + (264194, 124, 1), + (264194, 20, 1), + (264194, 129, 1), + (264194, 1, 1), + (264195, 91, 394), + (264195, 90, 394), + (264195, 92, 394), + (264195, 97, 394), + (264195, 95, 394), + (264195, 94, 394), + (264195, 93, 394), + (264195, 96, 394), + (264195, 147, 45), + (264195, 124, 35), + (264195, 20, 20), + (264195, 129, 15), + (264195, 1, 300), + (264196, 91, 5), + (264196, 90, 5), + (264196, 92, 5), + (264196, 97, 5), + (264196, 95, 5), + (264196, 94, 5), + (264196, 93, 5), + (264196, 96, 5), + (264196, 136, 1), + (264196, 19, 1), + (264196, 128, 1), + (264196, 1, 1), + (264197, 91, 1420), + (264197, 90, 1420), + (264197, 92, 1420), + (264197, 97, 1420), + (264197, 95, 1420), + (264197, 94, 1420), + (264197, 93, 1420), + (264197, 96, 1420), + (264197, 136, 65), + (264197, 19, 20), + (264197, 128, 40), + (264197, 1, 320), + (264198, 91, 3), + (264198, 90, 3), + (264198, 92, 3), + (264198, 97, 3), + (264198, 95, 3), + (264198, 94, 3), + (264198, 93, 3), + (264198, 96, 3), + (264198, 146, 1), + (264198, 150, 1), + (264198, 17, 1), + (264198, 131, 1), + (264199, 91, 945), + (264199, 90, 945), + (264199, 92, 945), + (264199, 97, 945), + (264199, 95, 945), + (264199, 94, 945), + (264199, 93, 945), + (264199, 96, 945), + (264199, 146, 40), + (264199, 150, 45), + (264199, 17, 18), + (264199, 131, 10), + (264200, 91, 2), + (264200, 90, 2), + (264200, 92, 1), + (264200, 97, 2), + (264200, 95, 2), + (264200, 94, 2), + (264200, 93, 1), + (264200, 96, 2), + (264200, 156, 1), + (264200, 123, 1), + (264200, 127, 1), + (264200, 137, 1), + (264200, 1, 1), + (264201, 91, 473), + (264201, 90, 473), + (264201, 92, 473), + (264201, 97, 473), + (264201, 95, 473), + (264201, 94, 473), + (264201, 93, 473), + (264201, 96, 473), + (264201, 156, 63), + (264201, 123, 55), + (264201, 127, 13), + (264201, 137, 63), + (264201, 1, 265), + (264202, 91, 6), + (264202, 90, 6), + (264202, 92, 6), + (264202, 97, 6), + (264202, 95, 6), + (264202, 94, 6), + (264202, 93, 6), + (264202, 96, 6), + (264202, 1, 2), + (264202, 148, 1), + (264202, 18, 1), + (264202, 112, 1), + (264202, 103, 1), + (264203, 91, 1890), + (264203, 90, 1890), + (264203, 92, 1890), + (264203, 97, 1890), + (264203, 95, 1890), + (264203, 94, 1890), + (264203, 93, 1890), + (264203, 96, 1890), + (264203, 1, 640), + (264203, 148, 25), + (264203, 18, 18), + (264203, 112, 25), + (264203, 103, 25), + (264204, 91, 2), + (264204, 90, 2), + (264204, 92, 2), + (264204, 97, 2), + (264204, 95, 2), + (264204, 94, 2), + (264204, 93, 2), + (264204, 96, 2), + (264204, 119, 1), + (264204, 118, 1), + (264204, 134, 1), + (264204, 101, 1), + (264204, 103, 1), + (264204, 112, 1), + (264204, 1, 1), + (264205, 91, 577), + (264205, 90, 577), + (264205, 92, 577), + (264205, 97, 577), + (264205, 95, 577), + (264205, 94, 577), + (264205, 93, 577), + (264205, 96, 577), + (264205, 119, 30), + (264205, 118, 30), + (264205, 134, 35), + (264205, 101, 35), + (264205, 103, 20), + (264205, 112, 20), + (264205, 1, 265), + (264206, 91, 1), + (264206, 90, 1), + (264206, 92, 1), + (264206, 97, 1), + (264206, 95, 1), + (264206, 94, 1), + (264206, 93, 1), + (264206, 96, 1), + (264206, 147, 1), + (264206, 124, 1), + (264206, 20, 1), + (264206, 129, 1), + (264206, 1, 1), + (264207, 91, 394), + (264207, 90, 394), + (264207, 92, 394), + (264207, 97, 394), + (264207, 95, 394), + (264207, 94, 394), + (264207, 93, 394), + (264207, 96, 394), + (264207, 147, 40), + (264207, 124, 30), + (264207, 20, 17), + (264207, 129, 10), + (264207, 1, 210), + (264208, 91, 5), + (264208, 90, 5), + (264208, 92, 5), + (264208, 97, 5), + (264208, 95, 5), + (264208, 94, 5), + (264208, 93, 5), + (264208, 96, 5), + (264208, 136, 1), + (264208, 19, 1), + (264208, 128, 1), + (264208, 1, 1), + (264209, 91, 1420), + (264209, 90, 1420), + (264209, 92, 1420), + (264209, 97, 1420), + (264209, 95, 1420), + (264209, 94, 1420), + (264209, 93, 1420), + (264209, 96, 1420), + (264209, 136, 60), + (264209, 19, 18), + (264209, 128, 35), + (264209, 1, 265), + (264211, 91, 4), + (264211, 90, 4), + (264211, 92, 1), + (264211, 97, 4), + (264211, 95, 4), + (264211, 94, 4), + (264211, 93, 4), + (264211, 96, 1), + (264211, 146, 1), + (264211, 145, 1), + (264211, 17, 1), + (264211, 131, 1), + (264212, 91, 1182), + (264212, 90, 1182), + (264212, 92, 1182), + (264212, 97, 1182), + (264212, 95, 1182), + (264212, 94, 1182), + (264212, 93, 1182), + (264212, 96, 1182), + (264212, 146, 55), + (264212, 145, 32), + (264212, 17, 17), + (264212, 131, 12), + (264213, 91, 4), + (264213, 90, 4), + (264213, 92, 4), + (264213, 97, 4), + (264213, 95, 4), + (264213, 94, 4), + (264213, 93, 4), + (264213, 96, 4), + (264213, 146, 1), + (264213, 145, 1), + (264213, 17, 1), + (264213, 131, 1), + (264214, 91, 1182), + (264214, 90, 1182), + (264214, 92, 1182), + (264214, 97, 1182), + (264214, 95, 1182), + (264214, 94, 1182), + (264214, 93, 1182), + (264214, 96, 1182), + (264214, 146, 60), + (264214, 145, 38), + (264214, 17, 20), + (264214, 131, 15), + (264215, 91, 4), + (264215, 90, 4), + (264215, 92, 4), + (264215, 97, 4), + (264215, 95, 4), + (264215, 94, 4), + (264215, 93, 4), + (264215, 96, 4), + (264215, 146, 1), + (264215, 145, 1), + (264215, 17, 1), + (264215, 131, 1), + (264216, 91, 1182), + (264216, 90, 1182), + (264216, 92, 1182), + (264216, 97, 1182), + (264216, 95, 1182), + (264216, 94, 1182), + (264216, 93, 1182), + (264216, 96, 1182), + (264216, 146, 70), + (264216, 145, 42), + (264216, 17, 22), + (264216, 131, 17), + (264217, 91, 2), + (264217, 90, 2), + (264217, 92, 1), + (264217, 97, 2), + (264217, 95, 2), + (264217, 94, 2), + (264217, 93, 2), + (264217, 96, 1), + (264217, 156, 1), + (264217, 123, 1), + (264217, 106, 1), + (264217, 127, 1), + (264217, 1, 1), + (264218, 91, 709), + (264218, 90, 709), + (264218, 92, 709), + (264218, 97, 709), + (264218, 95, 709), + (264218, 94, 709), + (264218, 93, 709), + (264218, 96, 709), + (264218, 156, 40), + (264218, 123, 40), + (264218, 106, 60), + (264218, 127, 17), + (264218, 1, 265), + (264219, 91, 2), + (264219, 90, 2), + (264219, 92, 2), + (264219, 97, 2), + (264219, 95, 2), + (264219, 94, 2), + (264219, 93, 2), + (264219, 96, 2), + (264219, 156, 1), + (264219, 123, 1), + (264219, 106, 1), + (264219, 127, 1), + (264219, 1, 1), + (264220, 91, 709), + (264220, 90, 709), + (264220, 92, 709), + (264220, 97, 709), + (264220, 95, 709), + (264220, 94, 709), + (264220, 93, 709), + (264220, 96, 709), + (264220, 156, 45), + (264220, 123, 45), + (264220, 106, 65), + (264220, 127, 17), + (264220, 1, 400), + (264221, 91, 2), + (264221, 90, 2), + (264221, 92, 2), + (264221, 97, 2), + (264221, 95, 2), + (264221, 94, 2), + (264221, 93, 2), + (264221, 96, 2), + (264221, 156, 1), + (264221, 123, 1), + (264221, 106, 1), + (264221, 127, 1), + (264221, 1, 1), + (264222, 91, 709), + (264222, 90, 709), + (264222, 92, 709), + (264222, 97, 709), + (264222, 95, 709), + (264222, 94, 709), + (264222, 93, 709), + (264222, 96, 709), + (264222, 156, 55), + (264222, 123, 55), + (264222, 106, 75), + (264222, 127, 20), + (264222, 1, 450), + (264223, 91, 3), + (264223, 90, 3), + (264223, 92, 2), + (264223, 97, 3), + (264223, 95, 3), + (264223, 94, 3), + (264223, 93, 3), + (264223, 96, 2), + (264223, 1, 2), + (264223, 107, 1), + (264223, 18, 1), + (264223, 130, 1), + (264224, 91, 1890), + (264224, 90, 1890), + (264224, 92, 1890), + (264224, 97, 1890), + (264224, 95, 1890), + (264224, 94, 1890), + (264224, 93, 1890), + (264224, 96, 1890), + (264224, 1, 1100), + (264224, 107, 60), + (264224, 18, 18), + (264224, 130, 17), + (264225, 91, 6), + (264225, 90, 6), + (264225, 92, 2), + (264225, 97, 6), + (264225, 95, 6), + (264225, 94, 6), + (264225, 93, 6), + (264225, 96, 6), + (264225, 1, 3), + (264225, 107, 1), + (264225, 18, 1), + (264225, 130, 1), + (264226, 91, 1890), + (264226, 90, 1890), + (264226, 92, 473), + (264226, 97, 1890), + (264226, 95, 1890), + (264226, 94, 1890), + (264226, 93, 1890), + (264226, 96, 1890), + (264226, 1, 1250), + (264226, 107, 70), + (264226, 18, 20), + (264226, 130, 19), + (264227, 91, 6), + (264227, 90, 6), + (264227, 92, 6), + (264227, 97, 6), + (264227, 95, 6), + (264227, 94, 6), + (264227, 93, 6), + (264227, 96, 6), + (264227, 1, 4), + (264227, 107, 1), + (264227, 18, 1), + (264227, 130, 1), + (264228, 91, 1890), + (264228, 90, 1890), + (264228, 92, 1890), + (264228, 97, 1890), + (264228, 95, 1890), + (264228, 94, 1890), + (264228, 93, 1890), + (264228, 96, 1890), + (264228, 1, 1400), + (264228, 107, 80), + (264228, 18, 26), + (264228, 130, 22), + (264229, 91, 2), + (264229, 90, 2), + (264229, 92, 1), + (264229, 97, 2), + (264229, 95, 2), + (264229, 94, 2), + (264229, 93, 2), + (264229, 96, 1), + (264229, 118, 1), + (264229, 103, 1), + (264229, 104, 1), + (264229, 101, 1), + (264229, 1, 1), + (264230, 91, 525), + (264230, 90, 525), + (264230, 92, 525), + (264230, 97, 525), + (264230, 95, 525), + (264230, 94, 525), + (264230, 93, 525), + (264230, 96, 525), + (264230, 118, 35), + (264230, 103, 30), + (264230, 104, 30), + (264230, 101, 23), + (264230, 1, 265), + (264231, 91, 2), + (264231, 90, 2), + (264231, 92, 2), + (264231, 97, 2), + (264231, 95, 2), + (264231, 94, 2), + (264231, 93, 2), + (264231, 96, 2), + (264231, 118, 1), + (264231, 103, 1), + (264231, 104, 1), + (264231, 101, 1), + (264231, 1, 1), + (264232, 91, 525), + (264232, 90, 525), + (264232, 92, 525), + (264232, 97, 525), + (264232, 95, 525), + (264232, 94, 525), + (264232, 93, 525), + (264232, 96, 525), + (264232, 118, 40), + (264232, 103, 35), + (264232, 104, 35), + (264232, 101, 25), + (264232, 1, 300), + (264233, 91, 2), + (264233, 90, 2), + (264233, 92, 2), + (264233, 97, 2), + (264233, 95, 2), + (264233, 94, 2), + (264233, 93, 2), + (264233, 96, 2), + (264233, 118, 1), + (264233, 103, 1), + (264233, 104, 1), + (264233, 101, 1), + (264233, 1, 1), + (264234, 91, 525), + (264234, 90, 525), + (264234, 92, 525), + (264234, 97, 525), + (264234, 95, 525), + (264234, 94, 525), + (264234, 93, 525), + (264234, 96, 525), + (264234, 118, 50), + (264234, 103, 40), + (264234, 104, 40), + (264234, 101, 30), + (264234, 1, 350), + (264235, 91, 1), + (264235, 90, 1), + (264235, 92, 1), + (264235, 97, 1), + (264235, 95, 1), + (264235, 94, 1), + (264235, 93, 1), + (264235, 96, 1), + (264235, 147, 1), + (264235, 105, 1), + (264235, 20, 1), + (264235, 129, 1), + (264235, 1, 1), + (264236, 91, 394), + (264236, 90, 394), + (264236, 92, 394), + (264236, 97, 394), + (264236, 95, 394), + (264236, 94, 394), + (264236, 93, 394), + (264236, 96, 394), + (264236, 147, 60), + (264236, 105, 60), + (264236, 20, 11), + (264236, 129, 12), + (264236, 1, 265), + (264237, 91, 1), + (264237, 90, 1), + (264237, 92, 1), + (264237, 97, 1), + (264237, 95, 1), + (264237, 94, 1), + (264237, 93, 1), + (264237, 96, 1), + (264237, 147, 1), + (264237, 105, 1), + (264237, 20, 1), + (264237, 129, 1), + (264237, 1, 1), + (264238, 91, 394), + (264238, 90, 394), + (264238, 92, 394), + (264238, 97, 394), + (264238, 95, 394), + (264238, 94, 394), + (264238, 93, 394), + (264238, 96, 394), + (264238, 147, 65), + (264238, 105, 65), + (264238, 20, 13), + (264238, 129, 14), + (264238, 1, 300), + (264239, 91, 1), + (264239, 90, 1), + (264239, 92, 1), + (264239, 97, 1), + (264239, 95, 1), + (264239, 94, 1), + (264239, 93, 1), + (264239, 96, 1), + (264239, 147, 1), + (264239, 105, 1), + (264239, 20, 1), + (264239, 129, 1), + (264239, 1, 1), + (264240, 91, 394), + (264240, 90, 394), + (264240, 92, 394), + (264240, 97, 394), + (264240, 95, 394), + (264240, 94, 394), + (264240, 93, 394), + (264240, 96, 394), + (264240, 147, 75), + (264240, 105, 75), + (264240, 20, 15), + (264240, 129, 17), + (264240, 1, 350), + (264241, 91, 5), + (264241, 90, 5), + (264241, 92, 1), + (264241, 97, 5), + (264241, 95, 5), + (264241, 94, 5), + (264241, 93, 5), + (264241, 96, 1), + (264241, 162, 1), + (264241, 19, 1), + (264241, 128, 1), + (264241, 1, 1), + (264242, 91, 1418), + (264242, 90, 1418), + (264242, 92, 1418), + (264242, 97, 1418), + (264242, 95, 1418), + (264242, 94, 1418), + (264242, 93, 1418), + (264242, 96, 1418), + (264242, 162, 42), + (264242, 19, 11), + (264242, 128, 18), + (264242, 1, 265), + (264243, 91, 5), + (264243, 90, 5), + (264243, 92, 1), + (264243, 97, 5), + (264243, 95, 5), + (264243, 94, 5), + (264243, 93, 5), + (264243, 96, 5), + (264243, 162, 1), + (264243, 19, 1), + (264243, 128, 1), + (264243, 1, 1), + (264244, 91, 1418), + (264244, 90, 1418), + (264244, 92, 1418), + (264244, 97, 1418), + (264244, 95, 1418), + (264244, 94, 1418), + (264244, 93, 1418), + (264244, 96, 1418), + (264244, 162, 48), + (264244, 19, 13), + (264244, 128, 20), + (264244, 1, 300), + (264245, 91, 5), + (264245, 90, 5), + (264245, 92, 5), + (264245, 97, 5), + (264245, 95, 5), + (264245, 94, 5), + (264245, 93, 5), + (264245, 96, 5), + (264245, 162, 1), + (264245, 19, 1), + (264245, 128, 1), + (264245, 1, 1), + (264246, 91, 1418), + (264246, 90, 1418), + (264246, 92, 1418), + (264246, 97, 1418), + (264246, 95, 1418), + (264246, 94, 1418), + (264246, 93, 1418), + (264246, 96, 1418), + (264246, 162, 60), + (264246, 19, 18), + (264246, 128, 25), + (264246, 1, 350), + (264247, 91, 5), + (264247, 90, 5), + (264247, 92, 5), + (264247, 97, 5), + (264247, 95, 5), + (264247, 94, 5), + (264247, 93, 5), + (264247, 96, 5), + (264247, 19, 1), + (264247, 160, 1), + (264247, 131, 1), + (264247, 150, 1), + (264247, 1, 1), + (264248, 91, 1418), + (264248, 90, 1418), + (264248, 92, 1418), + (264248, 97, 1418), + (264248, 95, 1418), + (264248, 94, 1418), + (264248, 93, 1418), + (264248, 96, 1418), + (264248, 19, 21), + (264248, 160, 60), + (264248, 131, 35), + (264248, 150, 30), + (264248, 1, 350), + (264249, 91, 5), + (264249, 90, 5), + (264249, 92, 5), + (264249, 97, 1), + (264249, 95, 5), + (264249, 94, 5), + (264249, 93, 5), + (264249, 96, 5), + (264249, 19, 1), + (264249, 160, 1), + (264249, 131, 1), + (264249, 150, 1), + (264249, 1, 1), + (264250, 91, 1418), + (264250, 90, 1418), + (264250, 92, 1418), + (264250, 97, 1418), + (264250, 95, 1418), + (264250, 94, 1418), + (264250, 93, 1418), + (264250, 96, 1418), + (264250, 19, 19), + (264250, 160, 50), + (264250, 131, 30), + (264250, 150, 25), + (264250, 1, 300), + (264251, 91, 5), + (264251, 90, 5), + (264251, 92, 5), + (264251, 97, 5), + (264251, 95, 5), + (264251, 94, 5), + (264251, 93, 5), + (264251, 96, 5), + (264251, 19, 1), + (264251, 160, 1), + (264251, 131, 1), + (264251, 150, 1), + (264251, 1, 1), + (264252, 91, 1418), + (264252, 90, 1418), + (264252, 92, 1418), + (264252, 97, 1418), + (264252, 95, 1418), + (264252, 94, 1418), + (264252, 93, 1418), + (264252, 96, 1418), + (264252, 19, 17), + (264252, 160, 45), + (264252, 131, 26), + (264252, 150, 21), + (264252, 1, 265), + (264253, 91, 2), + (264253, 90, 2), + (264253, 92, 2), + (264253, 97, 2), + (264253, 95, 2), + (264253, 94, 2), + (264253, 93, 2), + (264253, 96, 2), + (264253, 125, 1), + (264253, 163, 1), + (264253, 20, 1), + (264253, 1, 1), + (264253, 129, 1), + (264254, 91, 709), + (264254, 90, 709), + (264254, 92, 709), + (264254, 97, 709), + (264254, 95, 709), + (264254, 94, 709), + (264254, 93, 709), + (264254, 96, 709), + (264254, 125, 75), + (264254, 163, 75), + (264254, 20, 21), + (264254, 1, 350), + (264254, 129, 26), + (264255, 91, 2), + (264255, 90, 2), + (264255, 92, 2), + (264255, 97, 2), + (264255, 95, 2), + (264255, 94, 2), + (264255, 93, 2), + (264255, 96, 2), + (264255, 125, 1), + (264255, 163, 1), + (264255, 20, 1), + (264255, 1, 1), + (264255, 129, 1), + (264256, 91, 709), + (264256, 90, 709), + (264256, 92, 709), + (264256, 97, 709), + (264256, 95, 709), + (264256, 94, 709), + (264256, 93, 709), + (264256, 96, 709), + (264256, 125, 60), + (264256, 163, 60), + (264256, 20, 19), + (264256, 1, 300), + (264256, 129, 23), + (264257, 91, 2), + (264257, 90, 2), + (264257, 92, 2), + (264257, 97, 2), + (264257, 95, 2), + (264257, 94, 2), + (264257, 93, 2), + (264257, 96, 2), + (264257, 125, 1), + (264257, 163, 1), + (264257, 20, 1), + (264257, 1, 1), + (264257, 129, 1), + (264258, 91, 709), + (264258, 90, 709), + (264258, 92, 709), + (264258, 97, 709), + (264258, 95, 709), + (264258, 94, 709), + (264258, 93, 709), + (264258, 96, 709), + (264258, 125, 55), + (264258, 163, 55), + (264258, 20, 17), + (264258, 1, 265), + (264258, 129, 21), + (264259, 91, 2), + (264259, 90, 2), + (264259, 92, 2), + (264259, 97, 2), + (264259, 95, 2), + (264259, 94, 2), + (264259, 93, 2), + (264259, 96, 2), + (264259, 123, 1), + (264259, 149, 1), + (264259, 159, 1), + (264259, 127, 1), + (264259, 1, 1), + (264260, 91, 578), + (264260, 90, 578), + (264260, 92, 578), + (264260, 97, 578), + (264260, 95, 578), + (264260, 94, 578), + (264260, 93, 578), + (264260, 96, 578), + (264260, 123, 25), + (264260, 149, 45), + (264260, 159, 45), + (264260, 127, 17), + (264260, 1, 350), + (264261, 91, 2), + (264261, 90, 2), + (264261, 92, 2), + (264261, 97, 2), + (264261, 95, 2), + (264261, 94, 2), + (264261, 93, 2), + (264261, 96, 2), + (264261, 123, 1), + (264261, 149, 1), + (264261, 159, 1), + (264261, 127, 1), + (264261, 1, 1), + (264262, 91, 578), + (264262, 90, 578), + (264262, 92, 578), + (264262, 97, 578), + (264262, 95, 578), + (264262, 94, 578), + (264262, 93, 578), + (264262, 96, 578), + (264262, 123, 19), + (264262, 149, 35), + (264262, 159, 35), + (264262, 127, 15), + (264262, 1, 300), + (264263, 91, 2), + (264263, 90, 2), + (264263, 92, 2), + (264263, 97, 2), + (264263, 95, 2), + (264263, 94, 2), + (264263, 93, 2), + (264263, 96, 2), + (264263, 123, 1), + (264263, 149, 1), + (264263, 159, 1), + (264263, 127, 1), + (264263, 1, 1), + (264264, 91, 578), + (264264, 90, 578), + (264264, 92, 578), + (264264, 97, 578), + (264264, 95, 578), + (264264, 94, 578), + (264264, 93, 578), + (264264, 96, 578), + (264264, 123, 17), + (264264, 149, 30), + (264264, 159, 30), + (264264, 127, 13), + (264264, 1, 265), + (264265, 91, 6), + (264265, 90, 6), + (264265, 92, 6), + (264265, 97, 6), + (264265, 95, 6), + (264265, 94, 6), + (264265, 93, 6), + (264265, 96, 6), + (264265, 115, 1), + (264265, 158, 1), + (264265, 18, 1), + (264265, 130, 1), + (264265, 162, 1), + (264265, 161, 1), + (264265, 181, 1), + (264266, 91, 1890), + (264266, 90, 1890), + (264266, 92, 1890), + (264266, 97, 1890), + (264266, 95, 1890), + (264266, 94, 1890), + (264266, 93, 1890), + (264266, 96, 1890), + (264266, 115, 75), + (264266, 158, 75), + (264266, 18, 20), + (264266, 130, 26), + (264266, 162, 30), + (264266, 161, 40), + (264266, 181, 35), + (264267, 91, 6), + (264267, 90, 6), + (264267, 92, 6), + (264267, 97, 2), + (264267, 95, 6), + (264267, 94, 6), + (264267, 93, 6), + (264267, 96, 6), + (264267, 115, 1), + (264267, 158, 1), + (264267, 18, 1), + (264267, 130, 1), + (264267, 162, 1), + (264267, 161, 1), + (264267, 181, 1), + (264268, 91, 1890), + (264268, 90, 1890), + (264268, 92, 1890), + (264268, 97, 1890), + (264268, 95, 1890), + (264268, 94, 1890), + (264268, 93, 1890), + (264268, 96, 1890), + (264268, 115, 65), + (264268, 158, 60), + (264268, 18, 16), + (264268, 130, 23), + (264268, 162, 25), + (264268, 161, 35), + (264268, 181, 30), + (264269, 91, 6), + (264269, 90, 6), + (264269, 92, 6), + (264269, 97, 6), + (264269, 95, 6), + (264269, 94, 6), + (264269, 93, 6), + (264269, 96, 6), + (264269, 115, 1), + (264269, 158, 1), + (264269, 18, 1), + (264269, 130, 1), + (264269, 162, 1), + (264269, 161, 1), + (264269, 181, 1), + (264270, 91, 1890), + (264270, 90, 1890), + (264270, 92, 1890), + (264270, 97, 1890), + (264270, 95, 1890), + (264270, 94, 1890), + (264270, 93, 1890), + (264270, 96, 1890), + (264270, 115, 60), + (264270, 158, 55), + (264270, 18, 14), + (264270, 130, 21), + (264270, 162, 20), + (264270, 161, 30), + (264270, 181, 25), + (264271, 91, 5), + (264271, 90, 5), + (264271, 92, 5), + (264271, 97, 5), + (264271, 95, 5), + (264271, 94, 5), + (264271, 93, 5), + (264271, 96, 5), + (264271, 1, 1), + (264271, 119, 1), + (264271, 17, 1), + (264271, 161, 1), + (264271, 181, 1), + (264272, 91, 1392), + (264272, 90, 1392), + (264272, 92, 1392), + (264272, 97, 1392), + (264272, 95, 1392), + (264272, 94, 1392), + (264272, 93, 1392), + (264272, 96, 1392), + (264272, 1, 500), + (264272, 119, 75), + (264272, 17, 15), + (264272, 161, 65), + (264272, 181, 20), + (264273, 91, 5), + (264273, 90, 5), + (264273, 92, 5), + (264273, 97, 1), + (264273, 95, 5), + (264273, 94, 5), + (264273, 93, 5), + (264273, 96, 5), + (264273, 1, 1), + (264273, 119, 1), + (264273, 17, 1), + (264273, 161, 1), + (264273, 181, 1), + (264274, 91, 1392), + (264274, 90, 1392), + (264274, 92, 1392), + (264274, 97, 1392), + (264274, 95, 1392), + (264274, 94, 1392), + (264274, 93, 1392), + (264274, 96, 1392), + (264274, 1, 350), + (264274, 119, 65), + (264274, 17, 13), + (264274, 161, 50), + (264274, 181, 15), + (264275, 91, 5), + (264275, 90, 5), + (264275, 92, 5), + (264275, 97, 5), + (264275, 95, 5), + (264275, 94, 5), + (264275, 93, 5), + (264275, 96, 5), + (264275, 1, 1), + (264275, 119, 1), + (264275, 17, 1), + (264275, 161, 1), + (264275, 181, 1), + (264276, 91, 1392), + (264276, 90, 1392), + (264276, 92, 1392), + (264276, 97, 1392), + (264276, 95, 1392), + (264276, 94, 1392), + (264276, 93, 1392), + (264276, 96, 1392), + (264276, 1, 265), + (264276, 119, 60), + (264276, 17, 11), + (264276, 161, 45), + (264276, 181, 10), + (264277, 91, 3), + (264277, 90, 3), + (264277, 92, 3), + (264277, 97, 3), + (264277, 95, 3), + (264277, 94, 3), + (264277, 93, 3), + (264277, 96, 3), + (264277, 156, 1), + (264277, 126, 1), + (264277, 157, 1), + (264277, 122, 1), + (264277, 1, 1), + (264278, 91, 919), + (264278, 90, 919), + (264278, 92, 919), + (264278, 97, 919), + (264278, 95, 919), + (264278, 94, 919), + (264278, 93, 919), + (264278, 96, 919), + (264278, 156, 50), + (264278, 126, 65), + (264278, 157, 65), + (264278, 122, 26), + (264278, 1, 350), + (264279, 91, 3), + (264279, 90, 3), + (264279, 92, 3), + (264279, 97, 1), + (264279, 95, 3), + (264279, 94, 3), + (264279, 93, 3), + (264279, 96, 3), + (264279, 119, 1), + (264279, 126, 1), + (264279, 157, 1), + (264279, 122, 1), + (264279, 1, 1), + (264280, 91, 919), + (264280, 90, 919), + (264280, 92, 919), + (264280, 97, 919), + (264280, 95, 919), + (264280, 94, 919), + (264280, 93, 919), + (264280, 96, 919), + (264280, 119, 45), + (264280, 126, 60), + (264280, 157, 60), + (264280, 122, 23), + (264280, 1, 300), + (264281, 91, 3), + (264281, 90, 3), + (264281, 92, 3), + (264281, 97, 1), + (264281, 95, 1), + (264281, 94, 3), + (264281, 93, 3), + (264281, 96, 3), + (264281, 119, 1), + (264281, 126, 1), + (264281, 157, 1), + (264281, 122, 1), + (264281, 1, 1), + (264282, 91, 919), + (264282, 90, 919), + (264282, 92, 919), + (264282, 97, 919), + (264282, 95, 919), + (264282, 94, 919), + (264282, 93, 919), + (264282, 96, 919), + (264282, 119, 40), + (264282, 126, 55), + (264282, 157, 55), + (264282, 122, 21), + (264282, 1, 265), + (264283, 91, 5), + (264283, 90, 5), + (264283, 92, 5), + (264283, 97, 5), + (264283, 95, 5), + (264283, 94, 5), + (264283, 93, 5), + (264283, 96, 5), + (264283, 136, 1), + (264283, 19, 1), + (264283, 128, 1), + (264283, 1, 1), + (264284, 91, 1418), + (264284, 90, 1418), + (264284, 92, 1418), + (264284, 97, 1418), + (264284, 95, 1418), + (264284, 94, 1418), + (264284, 93, 1418), + (264284, 96, 1418), + (264284, 136, 75), + (264284, 19, 15), + (264284, 128, 30), + (264284, 1, 400), + (264285, 91, 5), + (264285, 90, 5), + (264285, 92, 1), + (264285, 97, 5), + (264285, 95, 5), + (264285, 94, 5), + (264285, 93, 5), + (264285, 96, 5), + (264285, 136, 1), + (264285, 19, 1), + (264285, 128, 1), + (264285, 1, 1), + (264286, 91, 1418), + (264286, 90, 1418), + (264286, 92, 355), + (264286, 97, 1418), + (264286, 95, 1418), + (264286, 94, 1418), + (264286, 93, 1418), + (264286, 96, 1418), + (264286, 136, 60), + (264286, 19, 13), + (264286, 128, 25), + (264286, 1, 320), + (264287, 91, 5), + (264287, 90, 5), + (264287, 92, 5), + (264287, 97, 5), + (264287, 95, 5), + (264287, 94, 5), + (264287, 93, 5), + (264287, 96, 5), + (264287, 136, 1), + (264287, 19, 1), + (264287, 128, 1), + (264287, 1, 1), + (264288, 91, 1418), + (264288, 90, 1418), + (264288, 92, 1418), + (264288, 97, 1418), + (264288, 95, 1418), + (264288, 94, 1418), + (264288, 93, 1418), + (264288, 96, 1418), + (264288, 136, 55), + (264288, 19, 11), + (264288, 128, 20), + (264288, 1, 265), + (264289, 91, 1), + (264289, 90, 1), + (264289, 92, 1), + (264289, 97, 1), + (264289, 95, 1), + (264289, 94, 1), + (264289, 93, 1), + (264289, 96, 1), + (264289, 165, 1), + (264289, 155, 1), + (264289, 20, 1), + (264289, 379, 1), + (264289, 1, 1), + (264290, 91, 263), + (264290, 90, 263), + (264290, 92, 263), + (264290, 97, 263), + (264290, 95, 263), + (264290, 94, 263), + (264290, 93, 263), + (264290, 96, 263), + (264290, 165, 50), + (264290, 155, 55), + (264290, 20, 22), + (264290, 379, 5), + (264290, 1, 300), + (264291, 91, 1), + (264291, 90, 1), + (264291, 92, 1), + (264291, 97, 1), + (264291, 95, 1), + (264291, 94, 1), + (264291, 93, 1), + (264291, 96, 1), + (264291, 165, 1), + (264291, 155, 1), + (264291, 20, 1), + (264291, 379, 1), + (264291, 1, 1), + (264292, 91, 263), + (264292, 90, 263), + (264292, 92, 263), + (264292, 97, 263), + (264292, 95, 263), + (264292, 94, 263), + (264292, 93, 263), + (264292, 96, 263), + (264292, 165, 45), + (264292, 155, 50), + (264292, 20, 20), + (264292, 379, 4), + (264292, 1, 300), + (264293, 91, 1), + (264293, 90, 1), + (264293, 92, 1), + (264293, 97, 1), + (264293, 95, 1), + (264293, 94, 1), + (264293, 93, 1), + (264293, 96, 1), + (264293, 165, 1), + (264293, 155, 1), + (264293, 20, 1), + (264293, 379, 1), + (264293, 1, 1), + (264294, 91, 263), + (264294, 90, 263), + (264294, 92, 263), + (264294, 97, 263), + (264294, 95, 263), + (264294, 94, 263), + (264294, 93, 263), + (264294, 96, 263), + (264294, 165, 40), + (264294, 155, 50), + (264294, 20, 18), + (264294, 379, 3), + (264294, 1, 265), + (264295, 91, 1), + (264295, 90, 1), + (264295, 92, 1), + (264295, 97, 1), + (264295, 95, 1), + (264295, 94, 1), + (264295, 93, 1), + (264295, 96, 1), + (264295, 119, 1), + (264295, 113, 1), + (264295, 318, -1), + (264295, 131, 1), + (264295, 1, 1), + (264296, 91, 315), + (264296, 90, 315), + (264296, 92, 315), + (264296, 97, 315), + (264296, 95, 315), + (264296, 94, 315), + (264296, 93, 315), + (264296, 96, 315), + (264296, 119, 50), + (264296, 113, 40), + (264296, 318, -4), + (264296, 131, 15), + (264296, 1, 350), + (264297, 91, 1), + (264297, 90, 1), + (264297, 92, 1), + (264297, 97, 1), + (264297, 95, 1), + (264297, 94, 1), + (264297, 93, 1), + (264297, 96, 1), + (264297, 119, 1), + (264297, 113, 1), + (264297, 318, -1), + (264297, 131, 1), + (264297, 1, 1), + (264298, 91, 315), + (264298, 90, 315), + (264298, 92, 315), + (264298, 97, 315), + (264298, 95, 315), + (264298, 94, 315), + (264298, 93, 315), + (264298, 96, 315), + (264298, 119, 45), + (264298, 113, 30), + (264298, 318, -3), + (264298, 131, 13), + (264298, 1, 300), + (264299, 91, 1), + (264299, 90, 1), + (264299, 92, 1), + (264299, 97, 1), + (264299, 95, 1), + (264299, 94, 1), + (264299, 93, 1), + (264299, 96, 1), + (264299, 119, 1), + (264299, 113, 1), + (264299, 318, -1), + (264299, 131, 1), + (264299, 1, 1), + (264300, 91, 315), + (264300, 90, 315), + (264300, 92, 315), + (264300, 97, 315), + (264300, 95, 315), + (264300, 94, 315), + (264300, 93, 315), + (264300, 96, 315), + (264300, 119, 40), + (264300, 113, 25), + (264300, 318, -2), + (264300, 131, 11), + (264300, 1, 265), + (264301, 91, 6), + (264301, 90, 6), + (264301, 92, 6), + (264301, 97, 6), + (264301, 95, 6), + (264301, 94, 6), + (264301, 93, 6), + (264301, 96, 6), + (264301, 1, 1), + (264301, 151, 1), + (264301, 18, 1), + (264301, 130, 1), + (264301, 181, 1), + (264302, 91, 1785), + (264302, 90, 1785), + (264302, 92, 1785), + (264302, 97, 1785), + (264302, 95, 1785), + (264302, 94, 1785), + (264302, 93, 1785), + (264302, 96, 1785), + (264302, 1, 600), + (264302, 151, 85), + (264302, 18, 25), + (264302, 130, 24), + (264302, 181, 35), + (264303, 91, 6), + (264303, 90, 6), + (264303, 92, 6), + (264303, 97, 6), + (264303, 95, 6), + (264303, 94, 6), + (264303, 93, 6), + (264303, 96, 6), + (264303, 1, 1), + (264303, 151, 1), + (264303, 18, 1), + (264303, 130, 1), + (264303, 181, 1), + (264304, 91, 1785), + (264304, 90, 1785), + (264304, 92, 1785), + (264304, 97, 1785), + (264304, 95, 1785), + (264304, 94, 1785), + (264304, 93, 1785), + (264304, 96, 1785), + (264304, 1, 500), + (264304, 151, 80), + (264304, 18, 22), + (264304, 130, 22), + (264304, 181, 33), + (264305, 91, 6), + (264305, 90, 6), + (264305, 92, 6), + (264305, 97, 6), + (264305, 95, 6), + (264305, 94, 6), + (264305, 93, 6), + (264305, 96, 6), + (264305, 1, 1), + (264305, 151, 1), + (264305, 18, 1), + (264305, 130, 1), + (264305, 181, 1), + (264306, 91, 1785), + (264306, 90, 1785), + (264306, 92, 1785), + (264306, 97, 1785), + (264306, 95, 1785), + (264306, 94, 1785), + (264306, 93, 1785), + (264306, 96, 1785), + (264306, 1, 420), + (264306, 151, 75), + (264306, 18, 20), + (264306, 130, 20), + (264306, 181, 30), + (264307, 91, 3), + (264307, 90, 3), + (264307, 92, 3), + (264307, 97, 3), + (264307, 95, 3), + (264307, 94, 3), + (264307, 93, 3), + (264307, 96, 3), + (264307, 156, 1), + (264307, 164, 1), + (264307, 119, 1), + (264307, 127, 1), + (264307, 1, 1), + (264308, 91, 814), + (264308, 90, 814), + (264308, 92, 814), + (264308, 97, 814), + (264308, 95, 814), + (264308, 94, 814), + (264308, 93, 814), + (264308, 96, 814), + (264308, 156, 50), + (264308, 164, 63), + (264308, 119, 40), + (264308, 127, 22), + (264308, 1, 350), + (264309, 91, 3), + (264309, 90, 3), + (264309, 92, 3), + (264309, 97, 3), + (264309, 95, 3), + (264309, 94, 3), + (264309, 93, 3), + (264309, 96, 3), + (264309, 156, 1), + (264309, 164, 1), + (264309, 119, 1), + (264309, 127, 1), + (264309, 1, 1), + (264310, 91, 814), + (264310, 90, 814), + (264310, 92, 814), + (264310, 97, 814), + (264310, 95, 814), + (264310, 94, 814), + (264310, 93, 814), + (264310, 96, 814), + (264310, 156, 45), + (264310, 164, 55), + (264310, 119, 30), + (264310, 127, 20), + (264310, 1, 300), + (264311, 91, 3), + (264311, 90, 3), + (264311, 92, 3), + (264311, 97, 3), + (264311, 95, 3), + (264311, 94, 3), + (264311, 93, 3), + (264311, 96, 3), + (264311, 156, 1), + (264311, 164, 1), + (264311, 119, 1), + (264311, 127, 1), + (264311, 1, 1), + (264312, 91, 814), + (264312, 90, 814), + (264312, 92, 814), + (264312, 97, 814), + (264312, 95, 814), + (264312, 94, 814), + (264312, 93, 814), + (264312, 96, 814), + (264312, 156, 40), + (264312, 164, 50), + (264312, 119, 25), + (264312, 127, 18), + (264312, 1, 265), + (264313, 91, 4), + (264313, 90, 4), + (264313, 92, 4), + (264313, 97, 4), + (264313, 95, 4), + (264313, 94, 4), + (264313, 93, 4), + (264313, 96, 4), + (264313, 154, 1), + (264313, 150, 1), + (264313, 17, 1), + (264313, 123, 1), + (264313, 181, 1), + (264314, 91, 1287), + (264314, 90, 1287), + (264314, 92, 1287), + (264314, 97, 1287), + (264314, 95, 1287), + (264314, 94, 1287), + (264314, 93, 1287), + (264314, 96, 1287), + (264314, 154, 65), + (264314, 150, 40), + (264314, 17, 24), + (264314, 123, 50), + (264314, 181, 28), + (264315, 91, 4), + (264315, 90, 4), + (264315, 92, 1), + (264315, 97, 4), + (264315, 95, 4), + (264315, 94, 4), + (264315, 93, 4), + (264315, 96, 4), + (264315, 154, 1), + (264315, 150, 1), + (264315, 17, 1), + (264315, 123, 1), + (264315, 181, 1), + (264316, 91, 1287), + (264316, 90, 1287), + (264316, 92, 1287), + (264316, 97, 1287), + (264316, 95, 1287), + (264316, 94, 1287), + (264316, 93, 1287), + (264316, 96, 1287), + (264316, 154, 55), + (264316, 150, 35), + (264316, 17, 22), + (264316, 123, 45), + (264316, 181, 25), + (264317, 91, 4), + (264317, 90, 4), + (264317, 92, 4), + (264317, 97, 4), + (264317, 95, 4), + (264317, 94, 4), + (264317, 93, 4), + (264317, 96, 4), + (264317, 154, 1), + (264317, 150, 1), + (264317, 17, 1), + (264317, 123, 1), + (264317, 181, 1), + (264318, 91, 1287), + (264318, 90, 1287), + (264318, 92, 1287), + (264318, 97, 1287), + (264318, 95, 1287), + (264318, 94, 1287), + (264318, 93, 1287), + (264318, 96, 1287), + (264318, 154, 50), + (264318, 150, 30), + (264318, 17, 20), + (264318, 123, 40), + (264318, 181, 25), + (264319, 91, 5), + (264319, 90, 5), + (264319, 92, 5), + (264319, 97, 5), + (264319, 95, 5), + (264319, 94, 5), + (264319, 93, 5), + (264319, 96, 5), + (264319, 121, 1), + (264319, 19, 1), + (264319, 128, 1), + (264319, 1, 1), + (264320, 91, 1365), + (264320, 90, 1365), + (264320, 92, 1365), + (264320, 97, 1365), + (264320, 95, 1365), + (264320, 94, 1365), + (264320, 93, 1365), + (264320, 96, 1365), + (264320, 121, 80), + (264320, 19, 16), + (264320, 128, 40), + (264320, 1, 400), + (264321, 91, 5), + (264321, 90, 5), + (264321, 92, 1), + (264321, 97, 5), + (264321, 95, 5), + (264321, 94, 5), + (264321, 93, 5), + (264321, 96, 5), + (264321, 121, 1), + (264321, 19, 1), + (264321, 128, 1), + (264321, 1, 1), + (264322, 91, 1365), + (264322, 90, 1365), + (264322, 92, 1365), + (264322, 97, 1365), + (264322, 95, 1365), + (264322, 94, 1365), + (264322, 93, 1365), + (264322, 96, 1365), + (264322, 121, 70), + (264322, 19, 14), + (264322, 128, 35), + (264322, 1, 320), + (264323, 91, 5), + (264323, 90, 5), + (264323, 92, 1), + (264323, 97, 5), + (264323, 95, 1), + (264323, 94, 5), + (264323, 93, 5), + (264323, 96, 5), + (264323, 121, 1), + (264323, 19, 1), + (264323, 128, 1), + (264323, 1, 1), + (264324, 91, 1365), + (264324, 90, 1365), + (264324, 92, 1365), + (264324, 97, 1365), + (264324, 95, 1365), + (264324, 94, 1365), + (264324, 93, 1365), + (264324, 96, 1365), + (264324, 121, 65), + (264324, 19, 12), + (264324, 128, 30), + (264324, 1, 265), + (264325, 91, 2), + (264325, 90, 2), + (264325, 92, 2), + (264325, 97, 2), + (264325, 95, 2), + (264325, 94, 2), + (264325, 93, 2), + (264325, 96, 2), + (264325, 145, 1), + (264325, 164, 1), + (264325, 20, 1), + (264325, 111, 1), + (264325, 1, 1), + (264326, 91, 709), + (264326, 90, 709), + (264326, 92, 709), + (264326, 97, 709), + (264326, 95, 709), + (264326, 94, 709), + (264326, 93, 709), + (264326, 96, 709), + (264326, 145, 75), + (264326, 164, 65), + (264326, 20, 20), + (264326, 111, 90), + (264326, 1, 350), + (264327, 91, 2), + (264327, 90, 2), + (264327, 92, 2), + (264327, 97, 2), + (264327, 95, 2), + (264327, 94, 2), + (264327, 93, 2), + (264327, 96, 2), + (264327, 145, 1), + (264327, 164, 1), + (264327, 20, 1), + (264327, 111, 1), + (264327, 1, 1), + (264328, 91, 709), + (264328, 90, 709), + (264328, 92, 709), + (264328, 97, 709), + (264328, 95, 709), + (264328, 94, 709), + (264328, 93, 709), + (264328, 96, 709), + (264328, 145, 65), + (264328, 164, 55), + (264328, 20, 17), + (264328, 111, 80), + (264328, 1, 300), + (264329, 91, 2), + (264329, 90, 2), + (264329, 92, 1), + (264329, 97, 2), + (264329, 95, 1), + (264329, 94, 2), + (264329, 93, 2), + (264329, 96, 2), + (264329, 145, 1), + (264329, 164, 1), + (264329, 20, 1), + (264329, 111, 1), + (264329, 1, 1), + (264330, 91, 709), + (264330, 90, 709), + (264330, 92, 709), + (264330, 97, 709), + (264330, 95, 709), + (264330, 94, 709), + (264330, 93, 709), + (264330, 96, 709), + (264330, 145, 55), + (264330, 164, 50), + (264330, 20, 15), + (264330, 111, 75), + (264330, 1, 265), + (264331, 91, 1), + (264331, 90, 1), + (264331, 92, 1), + (264331, 97, 1), + (264331, 95, 1), + (264331, 94, 1), + (264331, 93, 1), + (264331, 96, 1), + (264331, 120, 1), + (264331, 276, 1), + (264331, 154, 1), + (264331, 122, 1), + (264331, 1, 1), + (264332, 91, 420), + (264332, 90, 420), + (264332, 92, 420), + (264332, 97, 420), + (264332, 95, 420), + (264332, 94, 420), + (264332, 93, 420), + (264332, 96, 420), + (264332, 120, 35), + (264332, 276, 14), + (264332, 154, 40), + (264332, 122, 15), + (264332, 1, 350), + (264333, 91, 1), + (264333, 90, 1), + (264333, 92, 1), + (264333, 97, 1), + (264333, 95, 1), + (264333, 94, 1), + (264333, 93, 1), + (264333, 96, 1), + (264333, 120, 1), + (264333, 276, 1), + (264333, 154, 1), + (264333, 122, 1), + (264333, 1, 1), + (264334, 91, 420), + (264334, 90, 420), + (264334, 92, 420), + (264334, 97, 420), + (264334, 95, 420), + (264334, 94, 420), + (264334, 93, 420), + (264334, 96, 420), + (264334, 120, 30), + (264334, 276, 12), + (264334, 154, 35), + (264334, 122, 13), + (264334, 1, 300), + (264335, 91, 1), + (264335, 90, 1), + (264335, 92, 1), + (264335, 97, 1), + (264335, 95, 1), + (264335, 94, 1), + (264335, 93, 1), + (264335, 96, 1), + (264335, 120, 1), + (264335, 276, 1), + (264335, 154, 1), + (264335, 122, 1), + (264335, 1, 1), + (264336, 91, 420), + (264336, 90, 420), + (264336, 92, 420), + (264336, 97, 420), + (264336, 95, 420), + (264336, 94, 420), + (264336, 93, 420), + (264336, 96, 420), + (264336, 120, 30), + (264336, 276, 10), + (264336, 154, 30), + (264336, 122, 11), + (264336, 1, 265), + (264337, 91, 6), + (264337, 90, 6), + (264337, 92, 6), + (264337, 97, 6), + (264337, 95, 6), + (264337, 94, 6), + (264337, 93, 6), + (264337, 96, 6), + (264337, 1, 3), + (264337, 155, 1), + (264337, 18, 1), + (264337, 130, 1), + (264337, 181, 1), + (264338, 91, 1890), + (264338, 90, 1890), + (264338, 92, 1890), + (264338, 97, 1890), + (264338, 95, 1890), + (264338, 94, 1890), + (264338, 93, 1890), + (264338, 96, 1890), + (264338, 1, 800), + (264338, 155, 74), + (264338, 18, 20), + (264338, 130, 15), + (264338, 181, 28), + (264339, 91, 6), + (264339, 90, 6), + (264339, 92, 2), + (264339, 97, 6), + (264339, 95, 6), + (264339, 94, 6), + (264339, 93, 6), + (264339, 96, 6), + (264339, 1, 2), + (264339, 155, 1), + (264339, 18, 1), + (264339, 130, 1), + (264339, 181, 1), + (264340, 91, 1890), + (264340, 90, 1890), + (264340, 92, 1890), + (264340, 97, 1890), + (264340, 95, 1890), + (264340, 94, 1890), + (264340, 93, 1890), + (264340, 96, 1890), + (264340, 1, 700), + (264340, 155, 60), + (264340, 18, 18), + (264340, 130, 13), + (264340, 181, 25), + (264341, 91, 6), + (264341, 90, 6), + (264341, 92, 6), + (264341, 97, 6), + (264341, 95, 6), + (264341, 94, 6), + (264341, 93, 6), + (264341, 96, 6), + (264341, 1, 2), + (264341, 155, 1), + (264341, 18, 1), + (264341, 130, 1), + (264341, 181, 1), + (264342, 91, 1890), + (264342, 90, 1890), + (264342, 92, 1890), + (264342, 97, 1890), + (264342, 95, 1890), + (264342, 94, 1890), + (264342, 93, 1890), + (264342, 96, 1890), + (264342, 1, 620), + (264342, 155, 55), + (264342, 18, 15), + (264342, 130, 11), + (264342, 181, 25), + (264343, 91, 3), + (264343, 90, 3), + (264343, 92, 3), + (264343, 97, 3), + (264343, 95, 3), + (264343, 94, 3), + (264343, 93, 3), + (264343, 96, 3), + (264343, 156, 1), + (264343, 123, 1), + (264343, 120, 1), + (264343, 127, 1), + (264343, 1, 1), + (264344, 91, 919), + (264344, 90, 919), + (264344, 92, 919), + (264344, 97, 919), + (264344, 95, 919), + (264344, 94, 919), + (264344, 93, 919), + (264344, 96, 919), + (264344, 156, 55), + (264344, 123, 65), + (264344, 120, 65), + (264344, 127, 15), + (264344, 1, 350), + (264345, 91, 3), + (264345, 90, 3), + (264345, 92, 1), + (264345, 97, 3), + (264345, 95, 3), + (264345, 94, 3), + (264345, 93, 3), + (264345, 96, 3), + (264345, 156, 1), + (264345, 123, 1), + (264345, 120, 1), + (264345, 127, 1), + (264345, 1, 1), + (264346, 91, 919), + (264346, 90, 919), + (264346, 92, 919), + (264346, 97, 919), + (264346, 95, 919), + (264346, 94, 919), + (264346, 93, 919), + (264346, 96, 919), + (264346, 156, 45), + (264346, 123, 60), + (264346, 120, 55), + (264346, 127, 13), + (264346, 1, 300), + (264347, 91, 3), + (264347, 90, 3), + (264347, 92, 3), + (264347, 97, 3), + (264347, 95, 3), + (264347, 94, 3), + (264347, 93, 3), + (264347, 96, 3), + (264347, 156, 1), + (264347, 123, 1), + (264347, 120, 1), + (264347, 127, 1), + (264347, 1, 1), + (264348, 91, 919), + (264348, 90, 919), + (264348, 92, 919), + (264348, 97, 919), + (264348, 95, 919), + (264348, 94, 919), + (264348, 93, 919), + (264348, 96, 919), + (264348, 156, 40), + (264348, 123, 55), + (264348, 120, 50), + (264348, 127, 11), + (264348, 1, 265), + (264349, 91, 4), + (264349, 90, 4), + (264349, 92, 4), + (264349, 97, 4), + (264349, 95, 4), + (264349, 94, 4), + (264349, 93, 4), + (264349, 96, 4), + (264349, 100, 1), + (264349, 153, 1), + (264349, 17, 1), + (264349, 131, 1), + (264349, 181, 1), + (264350, 91, 1182), + (264350, 90, 1182), + (264350, 92, 1182), + (264350, 97, 1182), + (264350, 95, 1182), + (264350, 94, 1182), + (264350, 93, 1182), + (264350, 96, 1182), + (264350, 100, 75), + (264350, 153, 65), + (264350, 17, 19), + (264350, 131, 16), + (264350, 181, 24), + (264351, 91, 4), + (264351, 90, 4), + (264351, 92, 1), + (264351, 97, 4), + (264351, 95, 4), + (264351, 94, 4), + (264351, 93, 4), + (264351, 96, 4), + (264351, 100, 1), + (264351, 153, 1), + (264351, 17, 1), + (264351, 131, 1), + (264351, 181, 1), + (264352, 91, 1182), + (264352, 90, 1182), + (264352, 92, 1182), + (264352, 97, 1182), + (264352, 95, 1182), + (264352, 94, 1182), + (264352, 93, 1182), + (264352, 96, 1182), + (264352, 100, 65), + (264352, 153, 55), + (264352, 17, 17), + (264352, 131, 14), + (264352, 181, 22), + (264353, 91, 4), + (264353, 90, 4), + (264353, 92, 4), + (264353, 97, 4), + (264353, 95, 4), + (264353, 94, 4), + (264353, 93, 4), + (264353, 96, 4), + (264353, 100, 1), + (264353, 153, 1), + (264353, 17, 1), + (264353, 131, 1), + (264353, 181, 1), + (264354, 91, 1182), + (264354, 90, 1182), + (264354, 92, 1182), + (264354, 97, 1182), + (264354, 95, 1182), + (264354, 94, 1182), + (264354, 93, 1182), + (264354, 96, 1182), + (264354, 100, 60), + (264354, 153, 50), + (264354, 17, 15), + (264354, 131, 12), + (264354, 181, 20), + (264355, 91, 4), + (264355, 90, 4), + (264355, 92, 4), + (264355, 97, 4), + (264355, 95, 4), + (264355, 94, 4), + (264355, 93, 4), + (264355, 96, 4), + (264355, 19, 1), + (264355, 277, 1), + (264355, 149, 1), + (264355, 1, 1), + (264356, 91, 1260), + (264356, 90, 1260), + (264356, 92, 1260), + (264356, 97, 1260), + (264356, 95, 1260), + (264356, 94, 1260), + (264356, 93, 1260), + (264356, 96, 1260), + (264356, 19, 21), + (264356, 277, 50), + (264356, 149, 100), + (264356, 1, 350), + (264357, 91, 4), + (264357, 90, 4), + (264357, 92, 4), + (264357, 97, 4), + (264357, 95, 1), + (264357, 94, 4), + (264357, 93, 4), + (264357, 96, 4), + (264357, 19, 1), + (264357, 277, 1), + (264357, 149, 1), + (264357, 1, 1), + (264358, 91, 1260), + (264358, 90, 1260), + (264358, 92, 1260), + (264358, 97, 1260), + (264358, 95, 1260), + (264358, 94, 1260), + (264358, 93, 1260), + (264358, 96, 1260), + (264358, 19, 19), + (264358, 277, 30), + (264358, 149, 80), + (264358, 1, 300), + (264359, 91, 4), + (264359, 90, 4), + (264359, 92, 4), + (264359, 97, 4), + (264359, 95, 1), + (264359, 94, 4), + (264359, 93, 4), + (264359, 96, 1), + (264359, 19, 1), + (264359, 277, 1), + (264359, 149, 1), + (264359, 1, 1), + (264360, 91, 1260), + (264360, 90, 1260), + (264360, 92, 1260), + (264360, 97, 1260), + (264360, 95, 1260), + (264360, 94, 1260), + (264360, 93, 1260), + (264360, 96, 1260), + (264360, 19, 18), + (264360, 277, 25), + (264360, 149, 75), + (264360, 1, 265), + (264361, 91, 1), + (264361, 90, 1), + (264361, 92, 1), + (264361, 97, 1), + (264361, 95, 1), + (264361, 94, 1), + (264361, 93, 1), + (264361, 96, 1), + (264361, 107, 1), + (264361, 155, 1), + (264361, 20, 1), + (264361, 1, 1), + (264361, 130, 1), + (264362, 91, 263), + (264362, 90, 263), + (264362, 92, 263), + (264362, 97, 263), + (264362, 95, 263), + (264362, 94, 263), + (264362, 93, 263), + (264362, 96, 263), + (264362, 107, 65), + (264362, 155, 45), + (264362, 20, 24), + (264362, 1, 350), + (264362, 130, 32), + (264363, 91, 1), + (264363, 90, 1), + (264363, 92, 1), + (264363, 97, 1), + (264363, 95, 1), + (264363, 94, 1), + (264363, 93, 1), + (264363, 96, 1), + (264363, 107, 1), + (264363, 155, 1), + (264363, 20, 1), + (264363, 1, 1), + (264363, 130, 1), + (264364, 91, 263), + (264364, 90, 263), + (264364, 92, 263), + (264364, 97, 263), + (264364, 95, 263), + (264364, 94, 263), + (264364, 93, 263), + (264364, 96, 263), + (264364, 107, 55), + (264364, 155, 35), + (264364, 20, 20), + (264364, 1, 300), + (264364, 130, 30), + (264365, 91, 1), + (264365, 90, 1), + (264365, 92, 1), + (264365, 97, 1), + (264365, 95, 1), + (264365, 94, 1), + (264365, 93, 1), + (264365, 96, 1), + (264365, 107, 1), + (264365, 155, 1), + (264365, 20, 1), + (264365, 1, 1), + (264365, 130, 1), + (264366, 91, 263), + (264366, 90, 263), + (264366, 92, 263), + (264366, 97, 263), + (264366, 95, 263), + (264366, 94, 263), + (264366, 93, 263), + (264366, 96, 263), + (264366, 107, 50), + (264366, 155, 30), + (264366, 20, 18), + (264366, 1, 265), + (264366, 130, 25), + (264367, 91, 1), + (264367, 90, 1), + (264367, 92, 1), + (264367, 97, 1), + (264367, 95, 1), + (264367, 94, 1), + (264367, 93, 1), + (264367, 96, 1), + (264367, 102, 1), + (264367, 123, 1), + (264367, 277, 1), + (264367, 127, 1), + (264367, 1, 1), + (264368, 91, 315), + (264368, 90, 315), + (264368, 92, 315), + (264368, 97, 315), + (264368, 95, 315), + (264368, 94, 315), + (264368, 93, 315), + (264368, 96, 315), + (264368, 102, 35), + (264368, 123, 35), + (264368, 277, 24), + (264368, 127, 19), + (264368, 1, 350), + (264369, 91, 1), + (264369, 90, 1), + (264369, 92, 1), + (264369, 97, 1), + (264369, 95, 1), + (264369, 94, 1), + (264369, 93, 1), + (264369, 96, 1), + (264369, 102, 1), + (264369, 123, 1), + (264369, 277, 1), + (264369, 127, 1), + (264369, 1, 1), + (264370, 91, 315), + (264370, 90, 315), + (264370, 92, 315), + (264370, 97, 315), + (264370, 95, 315), + (264370, 94, 315), + (264370, 93, 315), + (264370, 96, 315), + (264370, 102, 30), + (264370, 123, 30), + (264370, 277, 22), + (264370, 127, 17), + (264370, 1, 300), + (264371, 91, 1), + (264371, 90, 1), + (264371, 92, 1), + (264371, 97, 1), + (264371, 95, 1), + (264371, 94, 1), + (264371, 93, 1), + (264371, 96, 1), + (264371, 102, 1), + (264371, 123, 1), + (264371, 277, 1), + (264371, 127, 1), + (264371, 1, 1), + (264372, 91, 315), + (264372, 90, 315), + (264372, 92, 315), + (264372, 97, 315), + (264372, 95, 315), + (264372, 94, 315), + (264372, 93, 315), + (264372, 96, 315), + (264372, 102, 25), + (264372, 123, 25), + (264372, 277, 20), + (264372, 127, 15), + (264372, 1, 265), + (264373, 91, 6), + (264373, 90, 6), + (264373, 92, 6), + (264373, 97, 6), + (264373, 95, 6), + (264373, 94, 6), + (264373, 93, 6), + (264373, 96, 6), + (264373, 221, 3), + (264373, 277, 1), + (264373, 18, 1), + (264373, 318, -1), + (264373, 111, 1), + (264373, 181, 1), + (264374, 91, 1890), + (264374, 90, 1890), + (264374, 92, 1890), + (264374, 97, 1890), + (264374, 95, 1890), + (264374, 94, 1890), + (264374, 93, 1890), + (264374, 96, 1890), + (264374, 221, 1250), + (264374, 277, 40), + (264374, 18, 20), + (264374, 318, -6), + (264374, 111, 75), + (264374, 181, 30), + (264375, 91, 6), + (264375, 90, 6), + (264375, 92, 6), + (264375, 97, 6), + (264375, 95, 6), + (264375, 94, 6), + (264375, 93, 6), + (264375, 96, 6), + (264375, 221, 2), + (264375, 277, 1), + (264375, 18, 1), + (264375, 318, -1), + (264375, 111, 1), + (264375, 181, 1), + (264376, 91, 1890), + (264376, 90, 1890), + (264376, 92, 1890), + (264376, 97, 1890), + (264376, 95, 1890), + (264376, 94, 1890), + (264376, 93, 1890), + (264376, 96, 1890), + (264376, 221, 1000), + (264376, 277, 30), + (264376, 18, 17), + (264376, 318, -5), + (264376, 111, 55), + (264376, 181, 27), + (264377, 91, 6), + (264377, 90, 6), + (264377, 92, 6), + (264377, 97, 6), + (264377, 95, 6), + (264377, 94, 6), + (264377, 93, 6), + (264377, 96, 6), + (264377, 221, 2), + (264377, 277, 1), + (264377, 18, 1), + (264377, 318, -1), + (264377, 111, 1), + (264377, 181, 1), + (264378, 91, 1890), + (264378, 90, 1890), + (264378, 92, 1890), + (264378, 97, 1890), + (264378, 95, 1890), + (264378, 94, 1890), + (264378, 93, 1890), + (264378, 96, 1890), + (264378, 221, 900), + (264378, 277, 25), + (264378, 18, 15), + (264378, 318, -4), + (264378, 111, 50), + (264378, 181, 25), + (264379, 91, 2), + (264379, 90, 2), + (264379, 92, 2), + (264379, 97, 2), + (264379, 95, 2), + (264379, 94, 2), + (264379, 93, 2), + (264379, 96, 2), + (264379, 156, 1), + (264379, 153, 1), + (264379, 149, 1), + (264379, 122, 1), + (264379, 1, 1), + (264380, 91, 473), + (264380, 90, 473), + (264380, 92, 473), + (264380, 97, 473), + (264380, 95, 473), + (264380, 94, 473), + (264380, 93, 473), + (264380, 96, 473), + (264380, 156, 45), + (264380, 153, 45), + (264380, 149, 75), + (264380, 122, 32), + (264380, 1, 350), + (264381, 91, 2), + (264381, 90, 2), + (264381, 92, 2), + (264381, 97, 2), + (264381, 95, 1), + (264381, 94, 2), + (264381, 93, 2), + (264381, 96, 1), + (264381, 156, 1), + (264381, 153, 1), + (264381, 149, 1), + (264381, 122, 1), + (264381, 1, 1), + (264382, 91, 473), + (264382, 90, 473), + (264382, 92, 473), + (264382, 97, 473), + (264382, 95, 473), + (264382, 94, 473), + (264382, 93, 473), + (264382, 96, 473), + (264382, 156, 40), + (264382, 153, 40), + (264382, 149, 60), + (264382, 122, 26), + (264382, 1, 300), + (264383, 91, 2), + (264383, 90, 2), + (264383, 92, 2), + (264383, 97, 2), + (264383, 95, 2), + (264383, 94, 2), + (264383, 93, 2), + (264383, 96, 2), + (264383, 156, 1), + (264383, 153, 1), + (264383, 149, 1), + (264383, 122, 1), + (264383, 1, 1), + (264384, 91, 473), + (264384, 90, 473), + (264384, 92, 473), + (264384, 97, 473), + (264384, 95, 473), + (264384, 94, 473), + (264384, 93, 473), + (264384, 96, 473), + (264384, 156, 40), + (264384, 153, 35), + (264384, 149, 50), + (264384, 122, 21), + (264384, 1, 265), + (264385, 91, 3), + (264385, 90, 3), + (264385, 92, 3), + (264385, 97, 3), + (264385, 95, 3), + (264385, 94, 3), + (264385, 93, 3), + (264385, 96, 3), + (264385, 1, 1), + (264385, 277, 1), + (264385, 17, 1), + (264385, 161, 1), + (264385, 181, 1), + (264386, 91, 945), + (264386, 90, 945), + (264386, 92, 945), + (264386, 97, 945), + (264386, 95, 945), + (264386, 94, 945), + (264386, 93, 945), + (264386, 96, 945), + (264386, 1, 600), + (264386, 277, 30), + (264386, 17, 16), + (264386, 161, 32), + (264386, 181, 30), + (264387, 91, 3), + (264387, 90, 3), + (264387, 92, 3), + (264387, 97, 3), + (264387, 95, 1), + (264387, 94, 3), + (264387, 93, 3), + (264387, 96, 3), + (264387, 1, 1), + (264387, 277, 1), + (264387, 17, 1), + (264387, 161, 1), + (264387, 181, 1), + (264388, 91, 945), + (264388, 90, 945), + (264388, 92, 945), + (264388, 97, 945), + (264388, 95, 945), + (264388, 94, 945), + (264388, 93, 945), + (264388, 96, 945), + (264388, 1, 500), + (264388, 277, 20), + (264388, 17, 14), + (264388, 161, 28), + (264388, 181, 28), + (264389, 91, 3), + (264389, 90, 3), + (264389, 92, 3), + (264389, 97, 3), + (264389, 95, 3), + (264389, 94, 3), + (264389, 93, 3), + (264389, 96, 3), + (264389, 1, 1), + (264389, 277, 1), + (264389, 17, 1), + (264389, 161, 1), + (264389, 181, 1), + (264390, 91, 945), + (264390, 90, 945), + (264390, 92, 945), + (264390, 97, 945), + (264390, 95, 945), + (264390, 94, 945), + (264390, 93, 945), + (264390, 96, 945), + (264390, 1, 410), + (264390, 277, 15), + (264390, 17, 12), + (264390, 161, 25), + (264390, 181, 25), + (264391, 91, 4), + (264391, 90, 4), + (264391, 92, 4), + (264391, 97, 4), + (264391, 95, 4), + (264391, 94, 4), + (264391, 93, 4), + (264391, 96, 4), + (264391, 19, 1), + (264391, 318, -1), + (264391, 130, 1), + (264391, 1, 1), + (264392, 91, 1418), + (264392, 90, 1418), + (264392, 92, 1418), + (264392, 97, 1418), + (264392, 95, 1418), + (264392, 94, 1418), + (264392, 93, 1418), + (264392, 96, 1418), + (264392, 19, 21), + (264392, 318, -5), + (264392, 130, 40), + (264392, 1, 350), + (264393, 91, 4), + (264393, 90, 4), + (264393, 92, 4), + (264393, 97, 4), + (264393, 95, 4), + (264393, 94, 4), + (264393, 93, 4), + (264393, 96, 4), + (264393, 19, 1), + (264393, 318, -1), + (264393, 130, 1), + (264393, 1, 1), + (264394, 91, 1418), + (264394, 90, 1418), + (264394, 92, 1418), + (264394, 97, 1418), + (264394, 95, 1418), + (264394, 94, 1418), + (264394, 93, 1418), + (264394, 96, 1418), + (264394, 19, 19), + (264394, 318, -4), + (264394, 130, 35), + (264394, 1, 300), + (264395, 91, 4), + (264395, 90, 4), + (264395, 92, 4), + (264395, 97, 4), + (264395, 95, 4), + (264395, 94, 1), + (264395, 93, 1), + (264395, 96, 4), + (264395, 19, 1), + (264395, 318, -1), + (264395, 130, 1), + (264395, 1, 1), + (264396, 91, 1418), + (264396, 90, 1418), + (264396, 92, 1418), + (264396, 97, 1418), + (264396, 95, 1418), + (264396, 94, 1418), + (264396, 93, 1418), + (264396, 96, 1418), + (264396, 19, 18), + (264396, 318, -3), + (264396, 130, 30), + (264396, 1, 265), + (264397, 91, 2), + (264397, 90, 2), + (264397, 92, 2), + (264397, 97, 2), + (264397, 95, 2), + (264397, 94, 2), + (264397, 93, 2), + (264397, 96, 2), + (264397, 318, -1), + (264397, 155, 1), + (264397, 20, 1), + (264397, 128, 1), + (264397, 1, 1), + (264398, 91, 709), + (264398, 90, 709), + (264398, 92, 709), + (264398, 97, 709), + (264398, 95, 709), + (264398, 94, 709), + (264398, 93, 709), + (264398, 96, 709), + (264398, 318, -4), + (264398, 155, 65), + (264398, 20, 21), + (264398, 128, 35), + (264398, 1, 350), + (264399, 91, 2), + (264399, 90, 2), + (264399, 92, 2), + (264399, 97, 2), + (264399, 95, 2), + (264399, 94, 1), + (264399, 93, 2), + (264399, 96, 2), + (264399, 318, -1), + (264399, 155, 1), + (264399, 20, 1), + (264399, 128, 1), + (264399, 1, 1), + (264400, 91, 709), + (264400, 90, 709), + (264400, 92, 709), + (264400, 97, 709), + (264400, 95, 709), + (264400, 94, 709), + (264400, 93, 709), + (264400, 96, 709), + (264400, 318, -3), + (264400, 155, 55), + (264400, 20, 19), + (264400, 128, 30), + (264400, 1, 300), + (264401, 91, 2), + (264401, 90, 2), + (264401, 92, 2), + (264401, 97, 2), + (264401, 95, 2), + (264401, 94, 2), + (264401, 93, 2), + (264401, 96, 2), + (264401, 318, -1), + (264401, 155, 1), + (264401, 20, 1), + (264401, 128, 1), + (264401, 1, 1), + (264402, 91, 709), + (264402, 90, 709), + (264402, 92, 709), + (264402, 97, 709), + (264402, 95, 709), + (264402, 94, 709), + (264402, 93, 709), + (264402, 96, 709), + (264402, 318, -2), + (264402, 155, 50), + (264402, 20, 18), + (264402, 128, 25), + (264402, 1, 265), + (264403, 91, 2), + (264403, 90, 2), + (264403, 92, 2), + (264403, 97, 2), + (264403, 95, 2), + (264403, 94, 2), + (264403, 93, 2), + (264403, 96, 2), + (264403, 112, 1), + (264403, 123, 1), + (264403, 277, 1), + (264403, 129, 1), + (264403, 1, 1), + (264404, 91, 525), + (264404, 90, 525), + (264404, 92, 525), + (264404, 97, 525), + (264404, 95, 525), + (264404, 94, 525), + (264404, 93, 525), + (264404, 96, 525), + (264404, 112, 40), + (264404, 123, 40), + (264404, 277, 30), + (264404, 129, 20), + (264404, 1, 350), + (264405, 91, 2), + (264405, 90, 2), + (264405, 92, 2), + (264405, 97, 2), + (264405, 95, 2), + (264405, 94, 1), + (264405, 93, 2), + (264405, 96, 2), + (264405, 112, 1), + (264405, 123, 1), + (264405, 277, 1), + (264405, 129, 1), + (264405, 1, 1), + (264406, 91, 525), + (264406, 90, 525), + (264406, 92, 525), + (264406, 97, 525), + (264406, 95, 525), + (264406, 94, 132), + (264406, 93, 525), + (264406, 96, 525), + (264406, 112, 30), + (264406, 123, 30), + (264406, 277, 25), + (264406, 129, 17), + (264406, 1, 300), + (264407, 91, 2), + (264407, 90, 2), + (264407, 92, 2), + (264407, 97, 2), + (264407, 95, 2), + (264407, 94, 2), + (264407, 93, 2), + (264407, 96, 2), + (264407, 112, 1), + (264407, 123, 1), + (264407, 277, 1), + (264407, 129, 1), + (264407, 1, 1), + (264408, 91, 525), + (264408, 90, 525), + (264408, 92, 525), + (264408, 97, 525), + (264408, 95, 525), + (264408, 94, 525), + (264408, 93, 525), + (264408, 96, 525), + (264408, 112, 25), + (264408, 123, 25), + (264408, 277, 20), + (264408, 129, 15), + (264408, 1, 265), + (264409, 91, 6), + (264409, 90, 6), + (264409, 92, 6), + (264409, 97, 6), + (264409, 95, 6), + (264409, 94, 6), + (264409, 93, 6), + (264409, 96, 6), + (264409, 221, 4), + (264409, 536, 1), + (264409, 18, 1), + (264409, 318, -1), + (264409, 181, 1), + (264410, 91, 1890), + (264410, 90, 1890), + (264410, 92, 1890), + (264410, 97, 1890), + (264410, 95, 1890), + (264410, 94, 1890), + (264410, 93, 1890), + (264410, 96, 1890), + (264410, 221, 1050), + (264410, 536, 4), + (264410, 18, 14), + (264410, 318, -6), + (264410, 181, 40), + (264411, 91, 6), + (264411, 90, 6), + (264411, 92, 6), + (264411, 97, 6), + (264411, 95, 6), + (264411, 94, 6), + (264411, 93, 6), + (264411, 96, 6), + (264411, 221, 3), + (264411, 536, 1), + (264411, 18, 1), + (264411, 318, -1), + (264411, 181, 1), + (264412, 91, 1890), + (264412, 90, 1890), + (264412, 92, 1890), + (264412, 97, 1890), + (264412, 95, 1890), + (264412, 94, 1890), + (264412, 93, 1890), + (264412, 96, 1890), + (264412, 221, 850), + (264412, 536, 3), + (264412, 18, 12), + (264412, 318, -5), + (264412, 181, 35), + (264413, 91, 6), + (264413, 90, 6), + (264413, 92, 6), + (264413, 97, 6), + (264413, 95, 6), + (264413, 94, 6), + (264413, 93, 6), + (264413, 96, 6), + (264413, 221, 2), + (264413, 536, 1), + (264413, 18, 1), + (264413, 318, -1), + (264413, 181, 1), + (264414, 91, 1890), + (264414, 90, 1890), + (264414, 92, 1890), + (264414, 97, 1890), + (264414, 95, 1890), + (264414, 94, 1890), + (264414, 93, 1890), + (264414, 96, 1890), + (264414, 221, 750), + (264414, 536, 2), + (264414, 18, 10), + (264414, 318, -4), + (264414, 181, 30), + (264415, 91, 3), + (264415, 90, 3), + (264415, 92, 3), + (264415, 97, 3), + (264415, 95, 3), + (264415, 94, 3), + (264415, 93, 3), + (264415, 96, 3), + (264415, 156, 1), + (264415, 277, 1), + (264415, 149, 1), + (264415, 122, 1), + (264415, 1, 1), + (264416, 91, 919), + (264416, 90, 919), + (264416, 92, 919), + (264416, 97, 919), + (264416, 95, 919), + (264416, 94, 919), + (264416, 93, 919), + (264416, 96, 919), + (264416, 156, 55), + (264416, 277, 30), + (264416, 149, 125), + (264416, 122, 50), + (264416, 1, 350), + (264417, 91, 3), + (264417, 90, 3), + (264417, 92, 3), + (264417, 97, 3), + (264417, 95, 3), + (264417, 94, 3), + (264417, 93, 3), + (264417, 96, 3), + (264417, 156, 1), + (264417, 277, 1), + (264417, 149, 1), + (264417, 122, 1), + (264417, 1, 1), + (264418, 91, 919), + (264418, 90, 919), + (264418, 92, 919), + (264418, 97, 919), + (264418, 95, 919), + (264418, 94, 919), + (264418, 93, 919), + (264418, 96, 919), + (264418, 156, 45), + (264418, 277, 25), + (264418, 149, 110), + (264418, 122, 45), + (264418, 1, 300), + (264419, 91, 3), + (264419, 90, 3), + (264419, 92, 3), + (264419, 97, 3), + (264419, 95, 3), + (264419, 94, 3), + (264419, 93, 3), + (264419, 96, 3), + (264419, 156, 1), + (264419, 277, 1), + (264419, 149, 1), + (264419, 122, 1), + (264419, 1, 1), + (264420, 91, 919), + (264420, 90, 919), + (264420, 92, 919), + (264420, 97, 919), + (264420, 95, 919), + (264420, 94, 919), + (264420, 93, 919), + (264420, 96, 919), + (264420, 156, 40), + (264420, 277, 20), + (264420, 149, 100), + (264420, 122, 40), + (264420, 1, 300), + (264421, 91, 4), + (264421, 90, 4), + (264421, 92, 4), + (264421, 97, 4), + (264421, 95, 4), + (264421, 94, 4), + (264421, 93, 4), + (264421, 96, 4), + (264421, 1, 1), + (264421, 149, 1), + (264421, 17, 1), + (264421, 161, 1), + (264421, 181, 1), + (264422, 91, 1287), + (264422, 90, 1287), + (264422, 92, 1287), + (264422, 97, 1287), + (264422, 95, 1287), + (264422, 94, 1287), + (264422, 93, 1287), + (264422, 96, 1287), + (264422, 1, 350), + (264422, 149, 40), + (264422, 17, 15), + (264422, 161, 50), + (264422, 181, 45), + (264423, 91, 4), + (264423, 90, 4), + (264423, 92, 4), + (264423, 97, 4), + (264423, 95, 4), + (264423, 94, 1), + (264423, 93, 4), + (264423, 96, 4), + (264423, 1, 1), + (264423, 149, 1), + (264423, 17, 1), + (264423, 161, 1), + (264423, 181, 1), + (264424, 91, 1287), + (264424, 90, 1287), + (264424, 92, 1287), + (264424, 97, 1287), + (264424, 95, 1287), + (264424, 94, 1287), + (264424, 93, 1287), + (264424, 96, 1287), + (264424, 1, 300), + (264424, 149, 30), + (264424, 17, 13), + (264424, 161, 40), + (264424, 181, 30), + (264425, 91, 4), + (264425, 90, 4), + (264425, 92, 4), + (264425, 97, 4), + (264425, 95, 4), + (264425, 94, 4), + (264425, 93, 4), + (264425, 96, 4), + (264425, 1, 1), + (264425, 149, 1), + (264425, 17, 1), + (264425, 161, 1), + (264425, 181, 1), + (264426, 91, 1287), + (264426, 90, 1287), + (264426, 92, 1287), + (264426, 97, 1287), + (264426, 95, 1287), + (264426, 94, 1287), + (264426, 93, 1287), + (264426, 96, 1287), + (264426, 1, 265), + (264426, 149, 25), + (264426, 17, 11), + (264426, 161, 35), + (264426, 181, 25), + (264427, 91, 5), + (264427, 90, 5), + (264427, 92, 5), + (264427, 97, 5), + (264427, 95, 5), + (264427, 94, 5), + (264427, 93, 5), + (264427, 96, 5), + (264427, 119, 1), + (264427, 19, 1), + (264427, 276, 1), + (264427, 1, 1), + (264428, 91, 1418), + (264428, 90, 1418), + (264428, 92, 1418), + (264428, 97, 1418), + (264428, 95, 1418), + (264428, 94, 1418), + (264428, 93, 1418), + (264428, 96, 1418), + (264428, 119, 70), + (264428, 19, 15), + (264428, 276, 20), + (264428, 1, 600), + (264429, 91, 5), + (264429, 90, 5), + (264429, 92, 1), + (264429, 97, 5), + (264429, 95, 5), + (264429, 94, 5), + (264429, 93, 5), + (264429, 96, 5), + (264429, 119, 1), + (264429, 19, 1), + (264429, 276, 1), + (264429, 1, 1), + (264430, 91, 1418), + (264430, 90, 1418), + (264430, 92, 1418), + (264430, 97, 1418), + (264430, 95, 1418), + (264430, 94, 1418), + (264430, 93, 1418), + (264430, 96, 1418), + (264430, 119, 55), + (264430, 19, 13), + (264430, 276, 20), + (264430, 1, 500), + (264431, 91, 5), + (264431, 90, 5), + (264431, 92, 1), + (264431, 97, 5), + (264431, 95, 5), + (264431, 94, 1), + (264431, 93, 5), + (264431, 96, 5), + (264431, 119, 1), + (264431, 19, 1), + (264431, 276, 1), + (264431, 1, 1), + (264432, 91, 1418), + (264432, 90, 1418), + (264432, 92, 1418), + (264432, 97, 1418), + (264432, 95, 1418), + (264432, 94, 1418), + (264432, 93, 1418), + (264432, 96, 1418), + (264432, 119, 50), + (264432, 19, 11), + (264432, 276, 15), + (264432, 1, 400), + (264433, 91, 1), + (264433, 90, 1), + (264433, 92, 1), + (264433, 97, 1), + (264433, 95, 1), + (264433, 94, 1), + (264433, 93, 1), + (264433, 96, 1), + (264433, 167, 1), + (264433, 116, 1), + (264433, 114, 1), + (264433, 130, 1), + (264433, 1, 1), + (264434, 91, 394), + (264434, 90, 394), + (264434, 92, 394), + (264434, 97, 394), + (264434, 95, 394), + (264434, 94, 394), + (264434, 93, 394), + (264434, 96, 394), + (264434, 167, 65), + (264434, 116, 75), + (264434, 114, 75), + (264434, 130, 20), + (264434, 1, 350), + (264435, 91, 1), + (264435, 90, 1), + (264435, 92, 1), + (264435, 97, 1), + (264435, 95, 310), + (264435, 94, 1), + (264435, 93, 1), + (264435, 96, 1), + (264435, 167, 1), + (264435, 116, 1), + (264435, 114, 1), + (264435, 130, 1), + (264435, 1, 1), + (264436, 91, 394), + (264436, 90, 394), + (264436, 92, 394), + (264436, 97, 394), + (264436, 95, 394), + (264436, 94, 394), + (264436, 93, 394), + (264436, 96, 394), + (264436, 167, 55), + (264436, 116, 55), + (264436, 114, 55), + (264436, 130, 17), + (264436, 1, 300), + (264437, 91, 1), + (264437, 90, 1), + (264437, 92, 1), + (264437, 97, 1), + (264437, 95, 1), + (264437, 94, 1), + (264437, 93, 1), + (264437, 96, 1), + (264437, 167, 1), + (264437, 116, 1), + (264437, 114, 1), + (264437, 130, 1), + (264437, 1, 1), + (264438, 91, 394), + (264438, 90, 394), + (264438, 92, 394), + (264438, 97, 394), + (264438, 95, 394), + (264438, 94, 394), + (264438, 93, 394), + (264438, 96, 394), + (264438, 167, 50), + (264438, 116, 50), + (264438, 114, 50), + (264438, 130, 15), + (264438, 1, 265), + (264439, 91, 2), + (264439, 90, 2), + (264439, 92, 2), + (264439, 97, 2), + (264439, 95, 2), + (264439, 94, 2), + (264439, 93, 2), + (264439, 96, 2), + (264439, 119, 1), + (264439, 151, 1), + (264439, 148, 1), + (264439, 134, 1), + (264439, 1, 1), + (264440, 91, 578), + (264440, 90, 578), + (264440, 92, 578), + (264440, 97, 578), + (264440, 95, 578), + (264440, 94, 578), + (264440, 93, 578), + (264440, 96, 578), + (264440, 119, 35), + (264440, 151, 40), + (264440, 148, 40), + (264440, 134, 35), + (264440, 1, 350), + (264441, 91, 2), + (264441, 90, 2), + (264441, 92, 1), + (264441, 97, 2), + (264441, 95, 2), + (264441, 94, 2), + (264441, 93, 2), + (264441, 96, 2), + (264441, 119, 1), + (264441, 151, 1), + (264441, 148, 1), + (264441, 134, 1), + (264441, 1, 1), + (264442, 91, 578), + (264442, 90, 578), + (264442, 92, 578), + (264442, 97, 578), + (264442, 95, 578), + (264442, 94, 578), + (264442, 93, 578), + (264442, 96, 578), + (264442, 119, 30), + (264442, 151, 30), + (264442, 148, 30), + (264442, 134, 30), + (264442, 1, 300), + (264443, 91, 2), + (264443, 90, 2), + (264443, 92, 2), + (264443, 97, 2), + (264443, 95, 2), + (264443, 94, 2), + (264443, 93, 2), + (264443, 96, 2), + (264443, 119, 1), + (264443, 151, 1), + (264443, 148, 1), + (264443, 134, 1), + (264443, 1, 1), + (264444, 91, 578), + (264444, 90, 578), + (264444, 92, 578), + (264444, 97, 578), + (264444, 95, 578), + (264444, 94, 578), + (264444, 93, 578), + (264444, 96, 578), + (264444, 119, 25), + (264444, 151, 25), + (264444, 148, 25), + (264444, 134, 25), + (264444, 1, 265), + (264445, 91, 6), + (264445, 90, 6), + (264445, 92, 6), + (264445, 97, 6), + (264445, 95, 6), + (264445, 94, 6), + (264445, 93, 6), + (264445, 96, 6), + (264445, 1, 3), + (264445, 276, 1), + (264445, 18, 1), + (264445, 129, 1), + (264446, 91, 1890), + (264446, 90, 1890), + (264446, 92, 1890), + (264446, 97, 1890), + (264446, 95, 1890), + (264446, 94, 1890), + (264446, 93, 1890), + (264446, 96, 1890), + (264446, 1, 1250), + (264446, 276, 30), + (264446, 18, 30), + (264446, 129, 11), + (264447, 91, 6), + (264447, 90, 6), + (264447, 92, 2), + (264447, 97, 6), + (264447, 95, 6), + (264447, 94, 6), + (264447, 93, 6), + (264447, 96, 6), + (264447, 1, 3), + (264447, 276, 1), + (264447, 18, 1), + (264447, 129, 1), + (264448, 91, 1890), + (264448, 90, 1890), + (264448, 92, 1890), + (264448, 97, 1890), + (264448, 95, 1890), + (264448, 94, 1890), + (264448, 93, 1890), + (264448, 96, 1890), + (264448, 1, 1000), + (264448, 276, 20), + (264448, 18, 28), + (264448, 129, 9), + (264449, 91, 6), + (264449, 90, 6), + (264449, 92, 2), + (264449, 97, 6), + (264449, 95, 6), + (264449, 94, 2), + (264449, 93, 6), + (264449, 96, 6), + (264449, 1, 2), + (264449, 276, 1), + (264449, 18, 1), + (264449, 129, 1), + (264450, 91, 1890), + (264450, 90, 1890), + (264450, 92, 1890), + (264450, 97, 1890), + (264450, 95, 1890), + (264450, 94, 1890), + (264450, 93, 1890), + (264450, 96, 1890), + (264450, 1, 750), + (264450, 276, 15), + (264450, 18, 25), + (264450, 129, 7), + (264451, 91, 2), + (264451, 90, 2), + (264451, 92, 2), + (264451, 97, 2), + (264451, 95, 2), + (264451, 94, 2), + (264451, 93, 2), + (264451, 96, 2), + (264451, 156, 1), + (264451, 123, 1), + (264451, 133, 1), + (264451, 127, 1), + (264451, 1, 1), + (264452, 91, 709), + (264452, 90, 709), + (264452, 92, 709), + (264452, 97, 709), + (264452, 95, 709), + (264452, 94, 709), + (264452, 93, 709), + (264452, 96, 709), + (264452, 156, 55), + (264452, 123, 55), + (264452, 133, 65), + (264452, 127, 15), + (264452, 1, 350), + (264453, 91, 2), + (264453, 90, 2), + (264453, 92, 2), + (264453, 97, 2), + (264453, 95, 2), + (264453, 94, 2), + (264453, 93, 2), + (264453, 96, 2), + (264453, 156, 1), + (264453, 123, 1), + (264453, 133, 1), + (264453, 127, 1), + (264453, 1, 1), + (264454, 91, 709), + (264454, 90, 709), + (264454, 92, 709), + (264454, 97, 709), + (264454, 95, 709), + (264454, 94, 709), + (264454, 93, 709), + (264454, 96, 709), + (264454, 156, 45), + (264454, 123, 45), + (264454, 133, 55), + (264454, 127, 13), + (264454, 1, 300), + (264455, 91, 2), + (264455, 90, 2), + (264455, 92, 2), + (264455, 97, 2), + (264455, 95, 2), + (264455, 94, 2), + (264455, 93, 2), + (264455, 96, 2), + (264455, 156, 1), + (264455, 123, 1), + (264455, 133, 1), + (264455, 127, 1), + (264455, 1, 1), + (264456, 91, 709), + (264456, 90, 709), + (264456, 92, 709), + (264456, 97, 709), + (264456, 95, 709), + (264456, 94, 709), + (264456, 93, 709), + (264456, 96, 709), + (264456, 156, 40), + (264456, 123, 40), + (264456, 133, 50), + (264456, 127, 11), + (264456, 1, 265), + (264457, 91, 5), + (264457, 90, 5), + (264457, 92, 5), + (264457, 97, 5), + (264457, 95, 5), + (264457, 94, 5), + (264457, 93, 5), + (264457, 96, 5), + (264457, 116, 1), + (264457, 114, 1), + (264457, 17, 1), + (264457, 131, 1), + (264458, 91, 1392), + (264458, 90, 1392), + (264458, 92, 1392), + (264458, 97, 1392), + (264458, 95, 1392), + (264458, 94, 1392), + (264458, 93, 1392), + (264458, 96, 1392), + (264458, 116, 75), + (264458, 114, 75), + (264458, 17, 20), + (264458, 131, 15), + (264459, 91, 5), + (264459, 90, 5), + (264459, 92, 5), + (264459, 97, 5), + (264459, 95, 5), + (264459, 94, 5), + (264459, 93, 5), + (264459, 96, 5), + (264459, 116, 1), + (264459, 114, 1), + (264459, 17, 1), + (264459, 131, 1), + (264460, 91, 1392), + (264460, 90, 1392), + (264460, 92, 1392), + (264460, 97, 1392), + (264460, 95, 1392), + (264460, 94, 1392), + (264460, 93, 1392), + (264460, 96, 1392), + (264460, 116, 55), + (264460, 114, 55), + (264460, 17, 14), + (264460, 131, 13), + (264461, 91, 5), + (264461, 90, 5), + (264461, 92, 1), + (264461, 97, 5), + (264461, 95, 5), + (264461, 94, 1), + (264461, 93, 5), + (264461, 96, 5), + (264461, 116, 1), + (264461, 114, 1), + (264461, 17, 1), + (264461, 131, 1), + (264462, 91, 1392), + (264462, 90, 1392), + (264462, 92, 1392), + (264462, 97, 1392), + (264462, 95, 1392), + (264462, 94, 1392), + (264462, 93, 1392), + (264462, 96, 1392), + (264462, 116, 50), + (264462, 114, 50), + (264462, 17, 12), + (264462, 131, 11), + (264463, 91, 4), + (264463, 90, 4), + (264463, 92, 4), + (264463, 97, 4), + (264463, 95, 4), + (264463, 94, 4), + (264463, 93, 4), + (264463, 96, 4), + (264463, 276, 1), + (264463, 19, 1), + (264463, 318, -1), + (264463, 1, 1), + (264464, 91, 1260), + (264464, 90, 1260), + (264464, 92, 1260), + (264464, 97, 1260), + (264464, 95, 1260), + (264464, 94, 1260), + (264464, 93, 1260), + (264464, 96, 1260), + (264464, 276, 40), + (264464, 19, 16), + (264464, 318, -5), + (264464, 1, 350), + (264465, 91, 4), + (264465, 90, 4), + (264465, 92, 4), + (264465, 97, 4), + (264465, 95, 4), + (264465, 94, 4), + (264465, 93, 4), + (264465, 96, 1), + (264465, 276, 1), + (264465, 19, 1), + (264465, 318, -1), + (264465, 1, 1), + (264466, 91, 1260), + (264466, 90, 1260), + (264466, 92, 1260), + (264466, 97, 1260), + (264466, 95, 1260), + (264466, 94, 1260), + (264466, 93, 1260), + (264466, 96, 1260), + (264466, 276, 30), + (264466, 19, 14), + (264466, 318, -4), + (264466, 1, 300), + (264467, 91, 4), + (264467, 90, 4), + (264467, 92, 4), + (264467, 97, 4), + (264467, 95, 4), + (264467, 94, 4), + (264467, 93, 1), + (264467, 96, 1), + (264467, 276, 1), + (264467, 19, 1), + (264467, 318, -1), + (264467, 1, 1), + (264468, 91, 1260), + (264468, 90, 1260), + (264468, 92, 1260), + (264468, 97, 1260), + (264468, 95, 1260), + (264468, 94, 1260), + (264468, 93, 1260), + (264468, 96, 1260), + (264468, 276, 25), + (264468, 19, 12), + (264468, 318, -3), + (264468, 1, 265), + (264469, 91, 2), + (264469, 90, 2), + (264469, 92, 2), + (264469, 97, 2), + (264469, 95, 2), + (264469, 94, 2), + (264469, 93, 2), + (264469, 96, 2), + (264469, 165, 1), + (264469, 155, 1), + (264469, 20, 1), + (264469, 343, 1), + (264469, 1, 1), + (264470, 91, 499), + (264470, 90, 499), + (264470, 92, 499), + (264470, 97, 499), + (264470, 95, 499), + (264470, 94, 499), + (264470, 93, 499), + (264470, 96, 499), + (264470, 165, 65), + (264470, 155, 55), + (264470, 20, 22), + (264470, 343, 12), + (264470, 1, 350), + (264471, 91, 2), + (264471, 90, 2), + (264471, 92, 2), + (264471, 97, 2), + (264471, 95, 2), + (264471, 94, 2), + (264471, 93, 2), + (264471, 96, 1), + (264471, 165, 1), + (264471, 155, 1), + (264471, 20, 1), + (264471, 343, 1), + (264471, 1, 1), + (264472, 91, 499), + (264472, 90, 499), + (264472, 92, 499), + (264472, 97, 499), + (264472, 95, 499), + (264472, 94, 499), + (264472, 93, 499), + (264472, 96, 499), + (264472, 165, 55), + (264472, 155, 45), + (264472, 20, 20), + (264472, 343, 7), + (264472, 1, 300), + (264473, 91, 2), + (264473, 90, 2), + (264473, 92, 2), + (264473, 97, 2), + (264473, 95, 2), + (264473, 94, 2), + (264473, 93, 1), + (264473, 96, 1), + (264473, 165, 1), + (264473, 155, 1), + (264473, 20, 1), + (264473, 343, 1), + (264473, 1, 1), + (264474, 91, 499), + (264474, 90, 499), + (264474, 92, 499), + (264474, 97, 499), + (264474, 95, 499), + (264474, 94, 499), + (264474, 93, 499), + (264474, 96, 499), + (264474, 165, 50), + (264474, 155, 40), + (264474, 20, 18), + (264474, 343, 5), + (264474, 1, 265), + (264475, 91, 1), + (264475, 90, 1), + (264475, 92, 1), + (264475, 97, 1), + (264475, 95, 1), + (264475, 94, 1), + (264475, 93, 1), + (264475, 96, 1), + (264475, 119, 1), + (264475, 114, 1), + (264475, 277, 1), + (264475, 128, 1), + (264475, 1, 1), + (264476, 91, 315), + (264476, 90, 315), + (264476, 92, 315), + (264476, 97, 315), + (264476, 95, 315), + (264476, 94, 315), + (264476, 93, 315), + (264476, 96, 315), + (264476, 119, 40), + (264476, 114, 40), + (264476, 277, 35), + (264476, 128, 15), + (264476, 1, 350), + (264477, 91, 1), + (264477, 90, 1), + (264477, 92, 1), + (264477, 97, 1), + (264477, 95, 1), + (264477, 94, 1), + (264477, 93, 1), + (264477, 96, 1), + (264477, 119, 1), + (264477, 114, 1), + (264477, 277, 1), + (264477, 128, 1), + (264477, 1, 1), + (264478, 91, 315), + (264478, 90, 315), + (264478, 92, 315), + (264478, 97, 315), + (264478, 95, 315), + (264478, 94, 315), + (264478, 93, 315), + (264478, 96, 315), + (264478, 119, 30), + (264478, 114, 30), + (264478, 277, 20), + (264478, 128, 12), + (264478, 1, 300), + (264479, 91, 1), + (264479, 90, 1), + (264479, 92, 1), + (264479, 97, 1), + (264479, 95, 1), + (264479, 94, 1), + (264479, 93, 1), + (264479, 96, 1), + (264479, 119, 1), + (264479, 114, 1), + (264479, 277, 1), + (264479, 128, 1), + (264479, 1, 1), + (264480, 91, 315), + (264480, 90, 315), + (264480, 92, 315), + (264480, 97, 315), + (264480, 95, 315), + (264480, 94, 315), + (264480, 93, 315), + (264480, 96, 315), + (264480, 119, 25), + (264480, 114, 25), + (264480, 277, 15), + (264480, 128, 10), + (264480, 1, 265), + (264481, 91, 6), + (264481, 90, 6), + (264481, 92, 6), + (264481, 97, 6), + (264481, 95, 6), + (264481, 94, 6), + (264481, 93, 6), + (264481, 96, 6), + (264481, 1, 1), + (264481, 148, 1), + (264481, 18, 1), + (264481, 276, 1), + (264481, 181, 1), + (264481, 167, 1), + (264482, 91, 1785), + (264482, 90, 1785), + (264482, 92, 1785), + (264482, 97, 1785), + (264482, 95, 1785), + (264482, 94, 1785), + (264482, 93, 1785), + (264482, 96, 1785), + (264482, 1, 600), + (264482, 148, 75), + (264482, 18, 16), + (264482, 276, 25), + (264482, 181, 40), + (264482, 167, 75), + (264483, 91, 6), + (264483, 90, 6), + (264483, 92, 6), + (264483, 97, 6), + (264483, 95, 6), + (264483, 94, 6), + (264483, 93, 6), + (264483, 96, 2), + (264483, 1, 1), + (264483, 148, 1), + (264483, 18, 1), + (264483, 276, 1), + (264483, 181, 1), + (264483, 167, 1), + (264484, 91, 1785), + (264484, 90, 1785), + (264484, 92, 1785), + (264484, 97, 1785), + (264484, 95, 1785), + (264484, 94, 1785), + (264484, 93, 1785), + (264484, 96, 1785), + (264484, 1, 500), + (264484, 148, 55), + (264484, 18, 14), + (264484, 276, 18), + (264484, 181, 35), + (264484, 167, 50), + (264485, 91, 6), + (264485, 90, 6), + (264485, 92, 6), + (264485, 97, 6), + (264485, 95, 6), + (264485, 94, 6), + (264485, 93, 2), + (264485, 96, 2), + (264485, 1, 1), + (264485, 148, 1), + (264485, 18, 1), + (264485, 276, 1), + (264485, 181, 1), + (264485, 167, 1), + (264486, 91, 1785), + (264486, 90, 1785), + (264486, 92, 1785), + (264486, 97, 1785), + (264486, 95, 1785), + (264486, 94, 1785), + (264486, 93, 1785), + (264486, 96, 1785), + (264486, 1, 400), + (264486, 148, 50), + (264486, 18, 12), + (264486, 276, 15), + (264486, 181, 30), + (264486, 167, 40), + (264487, 91, 3), + (264487, 90, 3), + (264487, 92, 3), + (264487, 97, 3), + (264487, 95, 3), + (264487, 94, 3), + (264487, 93, 3), + (264487, 96, 3), + (264487, 156, 1), + (264487, 164, 1), + (264487, 277, 1), + (264487, 129, 1), + (264487, 1, 1), + (264488, 91, 1024), + (264488, 90, 1024), + (264488, 92, 1024), + (264488, 97, 1024), + (264488, 95, 1024), + (264488, 94, 1024), + (264488, 93, 1024), + (264488, 96, 1024), + (264488, 156, 100), + (264488, 164, 55), + (264488, 277, 25), + (264488, 129, 20), + (264488, 1, 350), + (264489, 91, 3), + (264489, 90, 3), + (264489, 92, 3), + (264489, 97, 3), + (264489, 95, 3), + (264489, 94, 3), + (264489, 93, 3), + (264489, 96, 1), + (264489, 156, 1), + (264489, 164, 1), + (264489, 277, 1), + (264489, 129, 1), + (264489, 1, 1), + (264490, 91, 1024), + (264490, 90, 1024), + (264490, 92, 1024), + (264490, 97, 1024), + (264490, 95, 1024), + (264490, 94, 1024), + (264490, 93, 1024), + (264490, 96, 1024), + (264490, 156, 80), + (264490, 164, 42), + (264490, 277, 15), + (264490, 129, 17), + (264490, 1, 300), + (264491, 91, 3), + (264491, 90, 3), + (264491, 92, 3), + (264491, 97, 3), + (264491, 95, 3), + (264491, 94, 3), + (264491, 93, 1), + (264491, 96, 1), + (264491, 156, 1), + (264491, 164, 1), + (264491, 277, 1), + (264491, 129, 1), + (264491, 1, 1), + (264492, 91, 1024), + (264492, 90, 1024), + (264492, 92, 1024), + (264492, 97, 1024), + (264492, 95, 1024), + (264492, 94, 1024), + (264492, 93, 1024), + (264492, 96, 1024), + (264492, 156, 75), + (264492, 164, 32), + (264492, 277, 12), + (264492, 129, 15), + (264492, 1, 265), + (264493, 91, 4), + (264493, 90, 4), + (264493, 92, 4), + (264493, 97, 4), + (264493, 95, 4), + (264493, 94, 4), + (264493, 93, 4), + (264493, 96, 4), + (264493, 154, 1), + (264493, 123, 1), + (264493, 17, 1), + (264493, 161, 1), + (264493, 181, 1), + (264494, 91, 1287), + (264494, 90, 1287), + (264494, 92, 1287), + (264494, 97, 1287), + (264494, 95, 1287), + (264494, 94, 1287), + (264494, 93, 1287), + (264494, 96, 1287), + (264494, 154, 65), + (264494, 123, 45), + (264494, 17, 21), + (264494, 161, 55), + (264494, 181, 35), + (264495, 91, 4), + (264495, 90, 4), + (264495, 92, 4), + (264495, 97, 4), + (264495, 95, 4), + (264495, 94, 4), + (264495, 93, 4), + (264495, 96, 1), + (264495, 154, 1), + (264495, 123, 1), + (264495, 17, 1), + (264495, 161, 1), + (264495, 181, 1), + (264496, 91, 1287), + (264496, 90, 1287), + (264496, 92, 1287), + (264496, 97, 1287), + (264496, 95, 1287), + (264496, 94, 1287), + (264496, 93, 1287), + (264496, 96, 1287), + (264496, 154, 45), + (264496, 123, 35), + (264496, 17, 17), + (264496, 161, 45), + (264496, 181, 30), + (264497, 91, 4), + (264497, 90, 4), + (264497, 92, 4), + (264497, 97, 4), + (264497, 95, 4), + (264497, 94, 4), + (264497, 93, 1), + (264497, 96, 1), + (264497, 154, 1), + (264497, 123, 1), + (264497, 17, 1), + (264497, 161, 1), + (264497, 181, 1), + (264498, 91, 1287), + (264498, 90, 1287), + (264498, 92, 1287), + (264498, 97, 1287), + (264498, 95, 1287), + (264498, 94, 1287), + (264498, 93, 1287), + (264498, 96, 1287), + (264498, 154, 40), + (264498, 123, 30), + (264498, 17, 15), + (264498, 161, 40), + (264498, 181, 25), + (264499, 91, 4), + (264499, 90, 4), + (264499, 92, 4), + (264499, 97, 4), + (264499, 95, 4), + (264499, 94, 4), + (264499, 93, 4), + (264499, 96, 4), + (264499, 19, 1), + (264499, 318, -1), + (264499, 277, 1), + (264499, 129, 1), + (264499, 1, 1), + (264500, 91, 1260), + (264500, 90, 1260), + (264500, 92, 1260), + (264500, 97, 1260), + (264500, 95, 1260), + (264500, 94, 1260), + (264500, 93, 1260), + (264500, 96, 1260), + (264500, 19, 32), + (264500, 318, -6), + (264500, 277, 35), + (264500, 129, 32), + (264500, 1, 210), + (264501, 91, 4), + (264501, 90, 4), + (264501, 92, 4), + (264501, 97, 4), + (264501, 95, 1), + (264501, 94, 4), + (264501, 93, 4), + (264501, 96, 4), + (264501, 19, 1), + (264501, 277, 1), + (264501, 318, -1), + (264501, 129, 1), + (264501, 1, 1), + (264502, 91, 1260), + (264502, 90, 1260), + (264502, 92, 1260), + (264502, 97, 1260), + (264502, 95, 1260), + (264502, 94, 1260), + (264502, 93, 1260), + (264502, 96, 1260), + (264502, 19, 29), + (264502, 277, 30), + (264502, 318, -5), + (264502, 129, 30), + (264502, 1, 168), + (264503, 91, 4), + (264503, 90, 4), + (264503, 92, 4), + (264503, 97, 1), + (264503, 95, 4), + (264503, 94, 4), + (264503, 93, 4), + (264503, 96, 4), + (264503, 19, 1), + (264503, 277, 1), + (264503, 318, -1), + (264503, 129, 1), + (264503, 1, 1), + (264504, 91, 1260), + (264504, 90, 1260), + (264504, 92, 1260), + (264504, 97, 1260), + (264504, 95, 1260), + (264504, 94, 1260), + (264504, 93, 1260), + (264504, 96, 1260), + (264504, 19, 18), + (264504, 277, 25), + (264504, 318, -4), + (264504, 129, 25), + (264504, 1, 265), + (264505, 91, 1), + (264505, 90, 1), + (264505, 92, 1), + (264505, 97, 1), + (264505, 95, 1), + (264505, 94, 1), + (264505, 93, 1), + (264505, 96, 1), + (264505, 112, 1), + (264505, 154, 1), + (264505, 155, 1), + (264505, 20, 1), + (264505, 130, 1), + (264505, 1, 1), + (264506, 91, 263), + (264506, 90, 263), + (264506, 92, 263), + (264506, 97, 263), + (264506, 95, 263), + (264506, 94, 263), + (264506, 93, 263), + (264506, 96, 263), + (264506, 112, 75), + (264506, 154, 40), + (264506, 155, 40), + (264506, 20, 23), + (264506, 130, 27), + (264506, 1, 350), + (264507, 91, 1), + (264507, 90, 1), + (264507, 92, 1), + (264507, 97, 1), + (264507, 95, 1), + (264507, 94, 1), + (264507, 93, 1), + (264507, 96, 1), + (264507, 112, 1), + (264507, 154, 1), + (264507, 155, 1), + (264507, 20, 1), + (264507, 130, 1), + (264507, 1, 1), + (264508, 91, 263), + (264508, 90, 263), + (264508, 92, 263), + (264508, 97, 263), + (264508, 95, 263), + (264508, 94, 263), + (264508, 93, 263), + (264508, 96, 263), + (264508, 112, 55), + (264508, 154, 30), + (264508, 155, 30), + (264508, 20, 21), + (264508, 130, 21), + (264508, 1, 300), + (264509, 91, 1), + (264509, 90, 1), + (264509, 92, 1), + (264509, 97, 1), + (264509, 95, 1), + (264509, 94, 1), + (264509, 93, 1), + (264509, 96, 1), + (264509, 112, 1), + (264509, 154, 1), + (264509, 155, 1), + (264509, 20, 1), + (264509, 130, 1), + (264509, 1, 1), + (264510, 91, 263), + (264510, 90, 263), + (264510, 92, 263), + (264510, 97, 263), + (264510, 95, 263), + (264510, 94, 263), + (264510, 93, 263), + (264510, 96, 263), + (264510, 112, 50), + (264510, 154, 25), + (264510, 155, 25), + (264510, 20, 17), + (264510, 130, 16), + (264510, 1, 265), + (264511, 91, 1), + (264511, 90, 1), + (264511, 92, 1), + (264511, 97, 1), + (264511, 95, 1), + (264511, 94, 1), + (264511, 93, 1), + (264511, 96, 1), + (264511, 149, 1), + (264511, 123, 1), + (264511, 153, 1), + (264511, 131, 1), + (264511, 1, 1), + (264512, 91, 315), + (264512, 90, 315), + (264512, 92, 315), + (264512, 97, 315), + (264512, 95, 315), + (264512, 94, 315), + (264512, 93, 315), + (264512, 96, 315), + (264512, 149, 55), + (264512, 123, 25), + (264512, 153, 40), + (264512, 131, 16), + (264512, 1, 350), + (264513, 91, 1), + (264513, 90, 1), + (264513, 92, 1), + (264513, 97, 1), + (264513, 95, 1), + (264513, 94, 1), + (264513, 93, 1), + (264513, 96, 1), + (264513, 149, 1), + (264513, 123, 1), + (264513, 153, 1), + (264513, 131, 1), + (264513, 1, 1), + (264514, 91, 315), + (264514, 90, 315), + (264514, 92, 315), + (264514, 97, 315), + (264514, 95, 315), + (264514, 94, 315), + (264514, 93, 315), + (264514, 96, 315), + (264514, 149, 35), + (264514, 123, 18), + (264514, 153, 30), + (264514, 131, 14), + (264514, 1, 300), + (264515, 91, 1), + (264515, 90, 1), + (264515, 92, 1), + (264515, 97, 1), + (264515, 95, 1), + (264515, 94, 1), + (264515, 93, 1), + (264515, 96, 1), + (264515, 149, 1), + (264515, 123, 1), + (264515, 153, 25), + (264515, 131, 1), + (264515, 1, 1), + (264516, 91, 315), + (264516, 90, 315), + (264516, 92, 315), + (264516, 97, 315), + (264516, 95, 315), + (264516, 94, 315), + (264516, 93, 315), + (264516, 96, 315), + (264516, 149, 25), + (264516, 123, 15), + (264516, 153, 25), + (264516, 131, 12), + (264516, 1, 265), + (264517, 91, 5), + (264517, 90, 5), + (264517, 92, 5), + (264517, 97, 5), + (264517, 95, 5), + (264517, 94, 5), + (264517, 93, 5), + (264517, 96, 5), + (264517, 221, 2), + (264517, 277, 1), + (264517, 149, 1), + (264517, 18, 1), + (264517, 1, 1), + (264517, 181, 1), + (264518, 91, 1575), + (264518, 90, 1575), + (264518, 92, 1575), + (264518, 97, 1575), + (264518, 95, 1575), + (264518, 94, 1575), + (264518, 93, 1575), + (264518, 96, 1575), + (264518, 221, 900), + (264518, 277, 35), + (264518, 149, 40), + (264518, 18, 15), + (264518, 1, 350), + (264518, 181, 40), + (264519, 91, 5), + (264519, 90, 5), + (264519, 92, 5), + (264519, 97, 5), + (264519, 95, 1), + (264519, 94, 5), + (264519, 93, 5), + (264519, 96, 5), + (264519, 221, 2), + (264519, 277, 1), + (264519, 149, 1), + (264519, 18, 1), + (264519, 1, 1), + (264519, 181, 1), + (264520, 91, 1575), + (264520, 90, 1575), + (264520, 92, 1575), + (264520, 97, 1575), + (264520, 95, 1575), + (264520, 94, 1575), + (264520, 93, 1575), + (264520, 96, 1575), + (264520, 221, 820), + (264520, 277, 30), + (264520, 149, 30), + (264520, 18, 13), + (264520, 1, 300), + (264520, 181, 35), + (264521, 91, 5), + (264521, 90, 5), + (264521, 92, 5), + (264521, 97, 5), + (264521, 95, 5), + (264521, 94, 5), + (264521, 93, 5), + (264521, 96, 5), + (264521, 221, 2), + (264521, 277, 1), + (264521, 149, 1), + (264521, 18, 1), + (264521, 1, 1), + (264521, 181, 1), + (264522, 91, 1575), + (264522, 90, 1575), + (264522, 92, 1575), + (264522, 97, 1575), + (264522, 95, 1575), + (264522, 94, 1575), + (264522, 93, 1575), + (264522, 96, 1575), + (264522, 221, 750), + (264522, 277, 25), + (264522, 149, 20), + (264522, 18, 11), + (264522, 1, 265), + (264522, 181, 30), + (264523, 91, 2), + (264523, 90, 2), + (264523, 92, 2), + (264523, 97, 2), + (264523, 95, 2), + (264523, 94, 2), + (264523, 93, 2), + (264523, 96, 2), + (264523, 156, 1), + (264523, 277, 1), + (264523, 319, 1), + (264523, 122, 1), + (264523, 1, 1), + (264524, 91, 473), + (264524, 90, 473), + (264524, 92, 473), + (264524, 97, 473), + (264524, 95, 473), + (264524, 94, 473), + (264524, 93, 473), + (264524, 96, 473), + (264524, 156, 50), + (264524, 277, 20), + (264524, 319, 4), + (264524, 122, 32), + (264524, 1, 350), + (264525, 91, 2), + (264525, 90, 2), + (264525, 92, 2), + (264525, 97, 2), + (264525, 95, 2), + (264525, 94, 2), + (264525, 93, 2), + (264525, 96, 2), + (264525, 156, 1), + (264525, 277, 1), + (264525, 319, 1), + (264525, 122, 1), + (264525, 1, 1), + (264526, 91, 473), + (264526, 90, 473), + (264526, 92, 473), + (264526, 97, 473), + (264526, 95, 473), + (264526, 94, 473), + (264526, 93, 473), + (264526, 96, 473), + (264526, 156, 40), + (264526, 277, 15), + (264526, 319, 3), + (264526, 122, 27), + (264526, 1, 300), + (264527, 91, 2), + (264527, 90, 2), + (264527, 92, 2), + (264527, 97, 1), + (264527, 95, 1), + (264527, 94, 2), + (264527, 93, 2), + (264527, 96, 2), + (264527, 156, 1), + (264527, 277, 1), + (264527, 319, 1), + (264527, 122, 1), + (264527, 1, 1), + (264528, 91, 473), + (264528, 90, 473), + (264528, 92, 473), + (264528, 97, 473), + (264528, 95, 473), + (264528, 94, 473), + (264528, 93, 473), + (264528, 96, 473), + (264528, 156, 40), + (264528, 277, 10), + (264528, 319, 2), + (264528, 122, 25), + (264528, 1, 265), + (264529, 91, 3), + (264529, 90, 3), + (264529, 92, 3), + (264529, 97, 3), + (264529, 95, 3), + (264529, 94, 3), + (264529, 93, 3), + (264529, 96, 3), + (264529, 1, 1), + (264529, 150, 1), + (264529, 17, 1), + (264529, 149, 1), + (264529, 181, 1), + (264529, 128, 1), + (264530, 91, 945), + (264530, 90, 945), + (264530, 92, 945), + (264530, 97, 945), + (264530, 95, 945), + (264530, 94, 945), + (264530, 93, 945), + (264530, 96, 945), + (264530, 1, 350), + (264530, 150, 40), + (264530, 17, 16), + (264530, 149, 65), + (264530, 181, 35), + (264530, 128, 27), + (264531, 91, 3), + (264531, 90, 3), + (264531, 92, 3), + (264531, 97, 3), + (264531, 95, 1), + (264531, 94, 3), + (264531, 93, 3), + (264531, 96, 3), + (264531, 1, 1), + (264531, 150, 1), + (264531, 17, 1), + (264531, 149, 1), + (264531, 181, 1), + (264531, 128, 1), + (264532, 91, 945), + (264532, 90, 945), + (264532, 92, 945), + (264532, 97, 945), + (264532, 95, 945), + (264532, 94, 945), + (264532, 93, 945), + (264532, 96, 945), + (264532, 1, 300), + (264532, 150, 30), + (264532, 17, 14), + (264532, 149, 55), + (264532, 181, 30), + (264532, 128, 21), + (264533, 91, 3), + (264533, 90, 3), + (264533, 92, 3), + (264533, 97, 1), + (264533, 95, 1), + (264533, 94, 3), + (264533, 93, 3), + (264533, 96, 3), + (264533, 1, 1), + (264533, 150, 1), + (264533, 17, 1), + (264533, 149, 1), + (264533, 181, 1), + (264534, 91, 945), + (264534, 90, 945), + (264534, 92, 945), + (264534, 97, 945), + (264534, 95, 945), + (264534, 94, 945), + (264534, 93, 945), + (264534, 96, 945), + (264534, 1, 265), + (264534, 150, 25), + (264534, 17, 12), + (264534, 149, 50), + (264534, 181, 25), + (264535, 91, 5), + (264535, 90, 5), + (264535, 92, 5), + (264535, 97, 5), + (264535, 95, 5), + (264535, 94, 5), + (264535, 93, 5), + (264535, 96, 5), + (264535, 19, 1), + (264535, 164, 1), + (264535, 276, 1), + (264535, 1, 1), + (264536, 91, 1418), + (264536, 90, 1418), + (264536, 92, 1418), + (264536, 97, 1418), + (264536, 95, 1418), + (264536, 94, 1418), + (264536, 93, 1418), + (264536, 96, 1418), + (264536, 19, 25), + (264536, 164, 75), + (264536, 276, 35), + (264536, 1, 350), + (264537, 91, 5), + (264537, 90, 5), + (264537, 92, 5), + (264537, 97, 5), + (264537, 95, 5), + (264537, 94, 5), + (264537, 93, 5), + (264537, 96, 5), + (264537, 19, 1), + (264537, 164, 1), + (264537, 276, 1), + (264537, 1, 1), + (264538, 91, 1418), + (264538, 90, 1418), + (264538, 92, 1418), + (264538, 97, 1418), + (264538, 95, 1418), + (264538, 94, 1418), + (264538, 93, 1418), + (264538, 96, 1418), + (264538, 19, 22), + (264538, 164, 65), + (264538, 276, 25), + (264538, 1, 300), + (264539, 91, 5), + (264539, 90, 5), + (264539, 92, 5), + (264539, 97, 5), + (264539, 95, 5), + (264539, 94, 5), + (264539, 93, 5), + (264539, 96, 5), + (264539, 19, 1), + (264539, 164, 1), + (264539, 276, 1), + (264539, 1, 1), + (264540, 91, 1418), + (264540, 90, 1418), + (264540, 92, 1418), + (264540, 97, 1418), + (264540, 95, 1418), + (264540, 94, 1418), + (264540, 93, 1418), + (264540, 96, 1418), + (264540, 19, 20), + (264540, 164, 60), + (264540, 276, 20), + (264540, 1, 265), + (264541, 91, 1), + (264541, 90, 1), + (264541, 92, 1), + (264541, 97, 1), + (264541, 95, 1), + (264541, 94, 1), + (264541, 93, 1), + (264541, 96, 1), + (264541, 106, 1), + (264541, 144, 1), + (264541, 20, 1), + (264541, 129, 1), + (264541, 1, 1), + (264542, 91, 394), + (264542, 90, 394), + (264542, 92, 394), + (264542, 97, 394), + (264542, 95, 394), + (264542, 94, 394), + (264542, 93, 394), + (264542, 96, 394), + (264542, 106, 75), + (264542, 144, 55), + (264542, 20, 32), + (264542, 129, 32), + (264542, 1, 350), + (264543, 91, 1), + (264543, 90, 1), + (264543, 92, 1), + (264543, 97, 1), + (264543, 95, 1), + (264543, 94, 1), + (264543, 93, 1), + (264543, 96, 1), + (264543, 106, 1), + (264543, 144, 1), + (264543, 20, 1), + (264543, 129, 1), + (264543, 1, 1), + (264544, 91, 394), + (264544, 90, 394), + (264544, 92, 394), + (264544, 97, 394), + (264544, 95, 394), + (264544, 94, 394), + (264544, 93, 394), + (264544, 96, 394), + (264544, 106, 65), + (264544, 144, 35), + (264544, 20, 27), + (264544, 129, 28), + (264544, 1, 300), + (264545, 91, 1), + (264545, 90, 1), + (264545, 92, 1), + (264545, 97, 1), + (264545, 95, 1), + (264545, 94, 1), + (264545, 93, 1), + (264545, 96, 1), + (264545, 106, 1), + (264545, 144, 1), + (264545, 20, 1), + (264545, 129, 1), + (264545, 1, 1), + (264546, 91, 394), + (264546, 90, 394), + (264546, 92, 394), + (264546, 97, 394), + (264546, 95, 394), + (264546, 94, 394), + (264546, 93, 394), + (264546, 96, 394), + (264546, 106, 60), + (264546, 144, 30), + (264546, 20, 25), + (264546, 129, 25), + (264546, 1, 265), + (264547, 91, 2), + (264547, 90, 2), + (264547, 92, 2), + (264547, 97, 2), + (264547, 95, 2), + (264547, 94, 2), + (264547, 93, 2), + (264547, 96, 2), + (264547, 118, 1), + (264547, 123, 1), + (264547, 101, 1), + (264547, 127, 1), + (264547, 1, 1), + (264548, 91, 473), + (264548, 90, 473), + (264548, 92, 473), + (264548, 97, 473), + (264548, 95, 473), + (264548, 94, 473), + (264548, 93, 473), + (264548, 96, 473), + (264548, 118, 26), + (264548, 123, 30), + (264548, 101, 30), + (264548, 127, 20), + (264548, 1, 350), + (264549, 91, 2), + (264549, 90, 2), + (264549, 92, 2), + (264549, 97, 1), + (264549, 95, 2), + (264549, 94, 2), + (264549, 93, 2), + (264549, 96, 2), + (264549, 118, 1), + (264549, 123, 1), + (264549, 101, 1), + (264549, 127, 1), + (264549, 1, 1), + (264550, 91, 473), + (264550, 90, 473), + (264550, 92, 473), + (264550, 97, 473), + (264550, 95, 473), + (264550, 94, 473), + (264550, 93, 473), + (264550, 96, 473), + (264550, 118, 30), + (264550, 123, 25), + (264550, 101, 25), + (264550, 127, 14), + (264550, 1, 300), + (264551, 91, 2), + (264551, 90, 2), + (264551, 92, 2), + (264551, 97, 2), + (264551, 95, 2), + (264551, 94, 2), + (264551, 93, 2), + (264551, 96, 2), + (264551, 118, 1), + (264551, 123, 1), + (264551, 101, 1), + (264551, 127, 1), + (264551, 1, 1), + (264552, 91, 473), + (264552, 90, 473), + (264552, 92, 473), + (264552, 97, 473), + (264552, 95, 473), + (264552, 94, 473), + (264552, 93, 473), + (264552, 96, 473), + (264552, 118, 25), + (264552, 123, 20), + (264552, 101, 20), + (264552, 127, 12), + (264552, 1, 265), + (264553, 91, 6), + (264553, 90, 6), + (264553, 92, 6), + (264553, 97, 6), + (264553, 95, 6), + (264553, 94, 6), + (264553, 93, 6), + (264553, 96, 6), + (264553, 161, 1), + (264553, 276, 1), + (264553, 18, 1), + (264553, 130, 1), + (264553, 181, 1), + (264554, 91, 1890), + (264554, 90, 1890), + (264554, 92, 1890), + (264554, 97, 1890), + (264554, 95, 1890), + (264554, 94, 1890), + (264554, 93, 1890), + (264554, 96, 1890), + (264554, 161, 55), + (264554, 276, 25), + (264554, 18, 25), + (264554, 130, 30), + (264554, 181, 30), + (264555, 91, 6), + (264555, 90, 6), + (264555, 92, 6), + (264555, 97, 2), + (264555, 95, 6), + (264555, 94, 6), + (264555, 93, 6), + (264555, 96, 6), + (264555, 161, 1), + (264555, 276, 1), + (264555, 18, 1), + (264555, 130, 1), + (264555, 181, 1), + (264556, 91, 1890), + (264556, 90, 1890), + (264556, 92, 1890), + (264556, 97, 473), + (264556, 95, 1890), + (264556, 94, 1890), + (264556, 93, 1890), + (264556, 96, 1890), + (264556, 161, 55), + (264556, 276, 20), + (264556, 18, 20), + (264556, 130, 25), + (264556, 181, 25), + (264557, 91, 6), + (264557, 90, 6), + (264557, 92, 6), + (264557, 97, 6), + (264557, 95, 6), + (264557, 94, 6), + (264557, 93, 6), + (264557, 96, 6), + (264557, 161, 1), + (264557, 276, 1), + (264557, 18, 1), + (264557, 130, 1), + (264557, 181, 1), + (264558, 91, 1890), + (264558, 90, 1890), + (264558, 92, 1890), + (264558, 97, 1890), + (264558, 95, 1890), + (264558, 94, 1890), + (264558, 93, 1890), + (264558, 96, 1890), + (264558, 161, 50), + (264558, 276, 15), + (264558, 18, 18), + (264558, 130, 20), + (264558, 181, 20), + (264559, 91, 2), + (264559, 90, 2), + (264559, 92, 2), + (264559, 97, 2), + (264559, 95, 2), + (264559, 94, 2), + (264559, 93, 2), + (264559, 96, 2), + (264559, 156, 1), + (264559, 153, 1), + (264559, 154, 1), + (264559, 122, 1), + (264559, 1, 1), + (264560, 91, 709), + (264560, 90, 709), + (264560, 92, 709), + (264560, 97, 709), + (264560, 95, 709), + (264560, 94, 709), + (264560, 93, 709), + (264560, 96, 709), + (264560, 156, 55), + (264560, 153, 55), + (264560, 154, 55), + (264560, 122, 35), + (264560, 1, 350), + (264561, 91, 2), + (264561, 90, 2), + (264561, 92, 2), + (264561, 97, 1), + (264561, 95, 2), + (264561, 94, 2), + (264561, 93, 2), + (264561, 96, 2), + (264561, 156, 1), + (264561, 153, 1), + (264561, 154, 1), + (264561, 122, 1), + (264561, 1, 1), + (264562, 91, 709), + (264562, 90, 709), + (264562, 92, 709), + (264562, 97, 178), + (264562, 95, 709), + (264562, 94, 709), + (264562, 93, 709), + (264562, 96, 709), + (264562, 156, 45), + (264562, 153, 45), + (264562, 154, 45), + (264562, 122, 30), + (264562, 1, 300), + (264563, 91, 2), + (264563, 90, 2), + (264563, 92, 2), + (264563, 97, 2), + (264563, 95, 2), + (264563, 94, 2), + (264563, 93, 2), + (264563, 96, 2), + (264563, 156, 1), + (264563, 153, 1), + (264563, 154, 1), + (264563, 122, 1), + (264563, 1, 1), + (264564, 91, 709), + (264564, 90, 709), + (264564, 92, 709), + (264564, 97, 709), + (264564, 95, 709), + (264564, 94, 709), + (264564, 93, 709), + (264564, 96, 709), + (264564, 156, 40), + (264564, 153, 40), + (264564, 154, 40), + (264564, 122, 25), + (264564, 1, 265), + (264565, 91, 4), + (264565, 90, 4), + (264565, 92, 4), + (264565, 97, 4), + (264565, 95, 4), + (264565, 94, 4), + (264565, 93, 4), + (264565, 96, 4), + (264565, 1, 2), + (264565, 155, 1), + (264565, 17, 1), + (264565, 181, 1), + (264565, 161, 1), + (264566, 91, 1182), + (264566, 90, 1182), + (264566, 92, 1182), + (264566, 97, 1182), + (264566, 95, 1182), + (264566, 94, 1182), + (264566, 93, 1182), + (264566, 96, 1182), + (264566, 1, 650), + (264566, 155, 65), + (264566, 17, 35), + (264566, 181, 25), + (264566, 161, 25), + (264567, 91, 4), + (264567, 90, 4), + (264567, 92, 4), + (264567, 97, 4), + (264567, 95, 4), + (264567, 94, 4), + (264567, 93, 4), + (264567, 96, 4), + (264567, 1, 2), + (264567, 155, 1), + (264567, 17, 1), + (264567, 181, 1), + (264568, 91, 1182), + (264568, 90, 1182), + (264568, 92, 1182), + (264568, 97, 1182), + (264568, 95, 1182), + (264568, 94, 1182), + (264568, 93, 1182), + (264568, 96, 1182), + (264568, 1, 500), + (264568, 155, 55), + (264568, 17, 27), + (264568, 181, 20), + (264569, 91, 4), + (264569, 90, 4), + (264569, 92, 4), + (264569, 97, 1), + (264569, 95, 4), + (264569, 94, 4), + (264569, 93, 4), + (264569, 96, 1), + (264569, 1, 1), + (264569, 155, 1), + (264569, 17, 1), + (264569, 181, 1), + (264570, 91, 1182), + (264570, 90, 1182), + (264570, 92, 1182), + (264570, 97, 1182), + (264570, 95, 1182), + (264570, 94, 1182), + (264570, 93, 1182), + (264570, 96, 1182), + (264570, 1, 400), + (264570, 155, 50), + (264570, 17, 25), + (264570, 181, 15), + (264571, 91, 5), + (264571, 90, 5), + (264571, 92, 5), + (264571, 97, 5), + (264571, 95, 5), + (264571, 94, 5), + (264571, 93, 5), + (264571, 96, 5), + (264571, 19, 1), + (264571, 149, 1), + (264571, 131, 1), + (264571, 119, 1), + (264571, 1, 1), + (264572, 91, 1418), + (264572, 90, 1418), + (264572, 92, 1418), + (264572, 97, 1418), + (264572, 95, 1418), + (264572, 94, 1418), + (264572, 93, 1418), + (264572, 96, 1418), + (264572, 19, 25), + (264572, 149, 70), + (264572, 131, 27), + (264572, 119, 80), + (264572, 1, 350), + (264573, 91, 5), + (264573, 90, 5), + (264573, 92, 5), + (264573, 97, 5), + (264573, 95, 5), + (264573, 94, 5), + (264573, 93, 5), + (264573, 96, 5), + (264573, 19, 1), + (264573, 149, 1), + (264573, 131, 1), + (264573, 119, 1), + (264573, 1, 1), + (264574, 91, 1418), + (264574, 90, 1418), + (264574, 92, 1418), + (264574, 97, 1418), + (264574, 95, 1418), + (264574, 94, 1418), + (264574, 93, 1418), + (264574, 96, 1418), + (264574, 19, 22), + (264574, 149, 70), + (264574, 131, 20), + (264574, 119, 70), + (264574, 1, 168), + (264575, 91, 5), + (264575, 90, 5), + (264575, 92, 5), + (264575, 97, 5), + (264575, 95, 5), + (264575, 94, 5), + (264575, 93, 5), + (264575, 96, 5), + (264575, 19, 1), + (264575, 149, 1), + (264575, 119, 1), + (264575, 131, 1), + (264575, 1, 1), + (264576, 91, 1418), + (264576, 90, 1418), + (264576, 92, 1418), + (264576, 97, 1418), + (264576, 95, 1418), + (264576, 94, 1418), + (264576, 93, 1418), + (264576, 96, 1418), + (264576, 19, 20), + (264576, 149, 60), + (264576, 119, 60), + (264576, 131, 16), + (264576, 1, 265), + (264577, 91, 2), + (264577, 90, 2), + (264577, 92, 2), + (264577, 97, 2), + (264577, 95, 2), + (264577, 94, 2), + (264577, 93, 2), + (264577, 96, 2), + (264577, 112, 1), + (264577, 115, 1), + (264577, 163, 1), + (264577, 20, 1), + (264577, 129, 1), + (264577, 1, 1), + (264578, 91, 499), + (264578, 90, 499), + (264578, 92, 499), + (264578, 97, 499), + (264578, 95, 499), + (264578, 94, 499), + (264578, 93, 499), + (264578, 96, 499), + (264578, 112, 40), + (264578, 115, 35), + (264578, 163, 60), + (264578, 20, 20), + (264578, 129, 21), + (264578, 1, 350), + (264579, 91, 2), + (264579, 90, 2), + (264579, 92, 2), + (264579, 97, 2), + (264579, 95, 1), + (264579, 94, 2), + (264579, 93, 2), + (264579, 96, 2), + (264579, 112, 1), + (264579, 115, 1), + (264579, 163, 1), + (264579, 20, 1), + (264579, 129, 1), + (264579, 1, 1), + (264580, 91, 499), + (264580, 90, 499), + (264580, 92, 499), + (264580, 97, 499), + (264580, 95, 499), + (264580, 94, 499), + (264580, 93, 499), + (264580, 96, 499), + (264580, 112, 30), + (264580, 115, 25), + (264580, 163, 40), + (264580, 20, 15), + (264580, 129, 17), + (264580, 1, 300), + (264581, 91, 2), + (264581, 90, 2), + (264581, 92, 2), + (264581, 97, 2), + (264581, 95, 1), + (264581, 94, 2), + (264581, 93, 2), + (264581, 96, 1), + (264581, 112, 1), + (264581, 115, 1), + (264581, 163, 1), + (264581, 20, 1), + (264581, 129, 1), + (264581, 1, 1), + (264582, 91, 499), + (264582, 90, 499), + (264582, 92, 499), + (264582, 97, 499), + (264582, 95, 125), + (264582, 94, 499), + (264582, 93, 499), + (264582, 96, 125), + (264582, 112, 23), + (264582, 115, 13), + (264582, 163, 35), + (264582, 20, 13), + (264582, 129, 13), + (264582, 1, 158), + (264583, 91, 2), + (264583, 90, 2), + (264583, 92, 2), + (264583, 97, 2), + (264583, 95, 2), + (264583, 94, 2), + (264583, 93, 2), + (264583, 96, 2), + (264583, 126, 1), + (264583, 119, 1), + (264583, 125, 1), + (264583, 127, 1), + (264583, 1, 1), + (264584, 91, 473), + (264584, 90, 473), + (264584, 92, 473), + (264584, 97, 473), + (264584, 95, 473), + (264584, 94, 473), + (264584, 93, 473), + (264584, 96, 473), + (264584, 126, 50), + (264584, 119, 50), + (264584, 125, 50), + (264584, 127, 15), + (264584, 1, 350), + (264585, 91, 2), + (264585, 90, 2), + (264585, 92, 2), + (264585, 97, 2), + (264585, 95, 1), + (264585, 94, 2), + (264585, 93, 2), + (264585, 96, 2), + (264585, 126, 1), + (264585, 119, 1), + (264585, 125, 1), + (264585, 127, 1), + (264585, 1, 1), + (264586, 91, 473), + (264586, 90, 473), + (264586, 92, 473), + (264586, 97, 473), + (264586, 95, 473), + (264586, 94, 473), + (264586, 93, 473), + (264586, 96, 473), + (264586, 126, 30), + (264586, 119, 30), + (264586, 125, 30), + (264586, 127, 10), + (264586, 1, 300), + (264590, 91, 2), + (264590, 90, 2), + (264590, 92, 2), + (264590, 97, 2), + (264590, 95, 2), + (264590, 94, 2), + (264590, 93, 2), + (264590, 96, 2), + (264590, 125, 1), + (264590, 119, 1), + (264590, 126, 1), + (264590, 127, 1), + (264590, 1, 1), + (264591, 91, 473), + (264591, 90, 473), + (264591, 92, 473), + (264591, 97, 473), + (264591, 95, 473), + (264591, 94, 473), + (264591, 93, 473), + (264591, 96, 473), + (264591, 125, 25), + (264591, 119, 25), + (264591, 126, 25), + (264591, 127, 8), + (264591, 1, 265), + (264592, 91, 5), + (264592, 90, 5), + (264592, 92, 5), + (264592, 97, 5), + (264592, 95, 5), + (264592, 94, 5), + (264592, 93, 5), + (264592, 96, 5), + (264592, 221, 2), + (264592, 158, 1), + (264592, 18, 1), + (264592, 119, 1), + (264592, 109, 1), + (264592, 181, 1), + (264593, 91, 1575), + (264593, 90, 1575), + (264593, 92, 1575), + (264593, 97, 1575), + (264593, 95, 1575), + (264593, 94, 1575), + (264593, 93, 1575), + (264593, 96, 1575), + (264593, 221, 1250), + (264593, 158, 75), + (264593, 18, 20), + (264593, 119, 40), + (264593, 109, 75), + (264593, 181, 30), + (264594, 91, 5), + (264594, 90, 5), + (264594, 92, 5), + (264594, 97, 5), + (264594, 95, 1), + (264594, 94, 5), + (264594, 93, 5), + (264594, 96, 5), + (264594, 221, 2), + (264594, 158, 1), + (264594, 18, 1), + (264594, 119, 1), + (264594, 109, 1), + (264594, 181, 1), + (264595, 91, 1575), + (264595, 90, 1575), + (264595, 92, 1575), + (264595, 97, 1575), + (264595, 95, 1575), + (264595, 94, 1575), + (264595, 93, 1575), + (264595, 96, 1575), + (264595, 221, 1000), + (264595, 158, 55), + (264595, 18, 14), + (264595, 119, 30), + (264595, 109, 55), + (264595, 181, 30), + (264596, 91, 5), + (264596, 90, 5), + (264596, 92, 5), + (264596, 97, 5), + (264596, 95, 5), + (264596, 94, 5), + (264596, 93, 5), + (264596, 96, 5), + (264596, 221, 1), + (264596, 158, 1), + (264596, 18, 1), + (264596, 119, 1), + (264596, 109, 1), + (264596, 181, 1), + (264597, 91, 1575), + (264597, 90, 1575), + (264597, 92, 1575), + (264597, 97, 1575), + (264597, 95, 1575), + (264597, 94, 1575), + (264597, 93, 1575), + (264597, 96, 1575), + (264597, 221, 750), + (264597, 158, 50), + (264597, 18, 12), + (264597, 119, 25), + (264597, 109, 50), + (264597, 181, 25), + (264598, 91, 2), + (264598, 90, 2), + (264598, 92, 2), + (264598, 97, 2), + (264598, 95, 2), + (264598, 94, 2), + (264598, 93, 2), + (264598, 96, 2), + (264598, 156, 1), + (264598, 126, 1), + (264598, 157, 1), + (264598, 122, 1), + (264598, 1, 1), + (264599, 91, 630), + (264599, 90, 630), + (264599, 92, 630), + (264599, 97, 630), + (264599, 95, 630), + (264599, 94, 630), + (264599, 93, 630), + (264599, 96, 630), + (264599, 156, 55), + (264599, 126, 58), + (264599, 157, 58), + (264599, 122, 25), + (264599, 1, 350), + (264600, 91, 2), + (264600, 90, 2), + (264600, 92, 2), + (264600, 97, 2), + (264600, 95, 1), + (264600, 94, 2), + (264600, 93, 2), + (264600, 96, 2), + (264600, 156, 1), + (264600, 126, 1), + (264600, 157, 1), + (264600, 122, 1), + (264600, 1, 1), + (264601, 91, 630), + (264601, 90, 630), + (264601, 92, 630), + (264601, 97, 630), + (264601, 95, 630), + (264601, 94, 630), + (264601, 93, 630), + (264601, 96, 630), + (264601, 156, 45), + (264601, 126, 47), + (264601, 157, 47), + (264601, 122, 22), + (264601, 1, 300), + (264602, 91, 2), + (264602, 90, 2), + (264602, 92, 2), + (264602, 97, 2), + (264602, 95, 1), + (264602, 94, 2), + (264602, 93, 2), + (264602, 96, 1), + (264602, 156, 1), + (264602, 126, 1), + (264602, 157, 1), + (264602, 122, 1), + (264602, 1, 1), + (264603, 91, 630), + (264603, 90, 630), + (264603, 92, 630), + (264603, 97, 630), + (264603, 95, 630), + (264603, 94, 630), + (264603, 93, 630), + (264603, 96, 630), + (264603, 156, 40), + (264603, 126, 40), + (264603, 157, 40), + (264603, 122, 20), + (264603, 1, 265), + (264604, 91, 3), + (264604, 90, 3), + (264604, 92, 3), + (264604, 97, 3), + (264604, 95, 3), + (264604, 94, 3), + (264604, 93, 3), + (264604, 96, 3), + (264604, 1, 1), + (264604, 150, 1), + (264604, 17, 1), + (264604, 161, 1), + (264604, 181, 1), + (264605, 91, 945), + (264605, 90, 945), + (264605, 92, 945), + (264605, 97, 945), + (264605, 95, 945), + (264605, 94, 945), + (264605, 93, 945), + (264605, 96, 945), + (264605, 1, 350), + (264605, 150, 30), + (264605, 17, 20), + (264605, 161, 40), + (264605, 181, 20), + (264606, 91, 3), + (264606, 90, 3), + (264606, 92, 3), + (264606, 97, 3), + (264606, 95, 3), + (264606, 94, 3), + (264606, 93, 3), + (264606, 96, 3), + (264606, 1, 1), + (264606, 150, 1), + (264606, 17, 1), + (264606, 161, 1), + (264606, 181, 1), + (264607, 91, 945), + (264607, 90, 945), + (264607, 92, 945), + (264607, 97, 945), + (264607, 95, 945), + (264607, 94, 945), + (264607, 93, 945), + (264607, 96, 945), + (264607, 1, 300), + (264607, 150, 25), + (264607, 17, 12), + (264607, 161, 30), + (264607, 181, 18), + (264608, 91, 3), + (264608, 90, 3), + (264608, 92, 3), + (264608, 97, 3), + (264608, 95, 1), + (264608, 94, 3), + (264608, 93, 3), + (264608, 96, 1), + (264608, 1, 1), + (264608, 150, 1), + (264608, 17, 1), + (264608, 161, 1), + (264608, 181, 1), + (264609, 91, 945), + (264609, 90, 945), + (264609, 92, 945), + (264609, 97, 945), + (264609, 95, 945), + (264609, 94, 945), + (264609, 93, 945), + (264609, 96, 945), + (264609, 1, 265), + (264609, 150, 20), + (264609, 17, 10), + (264609, 161, 25), + (264609, 181, 15), + (264610, 91, 5), + (264610, 90, 5), + (264610, 92, 5), + (264610, 97, 5), + (264610, 95, 5), + (264610, 94, 5), + (264610, 93, 5), + (264610, 96, 5), + (264610, 277, 1), + (264610, 19, 1), + (264610, 128, 1), + (264610, 1, 1), + (264611, 91, 1418), + (264611, 90, 1418), + (264611, 92, 1418), + (264611, 97, 1418), + (264611, 95, 1418), + (264611, 94, 1418), + (264611, 93, 1418), + (264611, 96, 1418), + (264611, 277, 40), + (264611, 19, 18), + (264611, 128, 24), + (264611, 1, 600), + (264612, 91, 5), + (264612, 90, 5), + (264612, 92, 5), + (264612, 97, 5), + (264612, 95, 5), + (264612, 94, 5), + (264612, 93, 5), + (264612, 96, 5), + (264612, 277, 1), + (264612, 19, 1), + (264612, 128, 1), + (264612, 1, 1), + (264613, 91, 1418), + (264613, 90, 1418), + (264613, 92, 1418), + (264613, 97, 1418), + (264613, 95, 1418), + (264613, 94, 1418), + (264613, 93, 1418), + (264613, 96, 1418), + (264613, 277, 30), + (264613, 19, 14), + (264613, 128, 18), + (264613, 1, 500), + (264614, 91, 5), + (264614, 90, 5), + (264614, 92, 5), + (264614, 97, 5), + (264614, 95, 5), + (264614, 94, 5), + (264614, 93, 5), + (264614, 96, 5), + (264614, 277, 1), + (264614, 19, 1), + (264614, 128, 1), + (264614, 1, 1), + (264615, 91, 1418), + (264615, 90, 1418), + (264615, 92, 1418), + (264615, 97, 1418), + (264615, 95, 1418), + (264615, 94, 1418), + (264615, 93, 1418), + (264615, 96, 1418), + (264615, 277, 25), + (264615, 19, 12), + (264615, 128, 15), + (264615, 1, 400), + (264616, 91, 1), + (264616, 90, 1), + (264616, 92, 1), + (264616, 97, 1), + (264616, 95, 1), + (264616, 94, 1), + (264616, 93, 1), + (264616, 96, 1), + (264616, 147, 1), + (264616, 104, 1), + (264616, 146, 1), + (264616, 20, 1), + (264616, 129, 1), + (264616, 1, 1), + (264617, 91, 394), + (264617, 90, 394), + (264617, 92, 394), + (264617, 97, 394), + (264617, 95, 394), + (264617, 94, 394), + (264617, 93, 394), + (264617, 96, 394), + (264617, 147, 75), + (264617, 104, 85), + (264617, 146, 65), + (264617, 20, 16), + (264617, 129, 16), + (264617, 1, 350), + (264618, 91, 1), + (264618, 90, 1), + (264618, 92, 1), + (264618, 97, 1), + (264618, 95, 1), + (264618, 94, 1), + (264618, 93, 1), + (264618, 96, 1), + (264618, 147, 1), + (264618, 104, 1), + (264618, 146, 1), + (264618, 20, 1), + (264618, 129, 1), + (264618, 1, 1), + (264619, 91, 394), + (264619, 90, 394), + (264619, 92, 394), + (264619, 97, 394), + (264619, 95, 394), + (264619, 94, 99), + (264619, 93, 394), + (264619, 96, 394), + (264619, 147, 55), + (264619, 104, 65), + (264619, 146, 55), + (264619, 20, 14), + (264619, 129, 14), + (264619, 1, 300), + (264620, 91, 1), + (264620, 90, 1), + (264620, 92, 1), + (264620, 97, 1), + (264620, 95, 1), + (264620, 94, 1), + (264620, 93, 1), + (264620, 96, 1), + (264620, 147, 1), + (264620, 104, 1), + (264620, 146, 1), + (264620, 20, 1), + (264620, 129, 1), + (264620, 1, 1), + (264621, 91, 394), + (264621, 90, 394), + (264621, 92, 394), + (264621, 97, 394), + (264621, 95, 394), + (264621, 94, 394), + (264621, 93, 394), + (264621, 96, 394), + (264621, 147, 50), + (264621, 104, 60), + (264621, 146, 50), + (264621, 20, 12), + (264621, 129, 12), + (264621, 1, 265), + (264622, 91, 2), + (264622, 90, 2), + (264622, 92, 2), + (264622, 97, 2), + (264622, 95, 2), + (264622, 94, 2), + (264622, 93, 2), + (264622, 96, 2), + (264622, 118, 1), + (264622, 105, 1), + (264622, 154, 1), + (264622, 1, 1), + (264623, 91, 525), + (264623, 90, 525), + (264623, 92, 525), + (264623, 97, 525), + (264623, 95, 525), + (264623, 94, 525), + (264623, 93, 525), + (264623, 96, 525), + (264623, 118, 35), + (264623, 105, 40), + (264623, 154, 45), + (264623, 1, 350), + (264624, 91, 2), + (264624, 90, 2), + (264624, 92, 2), + (264624, 97, 2), + (264624, 95, 2), + (264624, 94, 2), + (264624, 93, 2), + (264624, 96, 2), + (264624, 118, 1), + (264624, 105, 1), + (264624, 154, 1), + (264624, 1, 1), + (264625, 91, 525), + (264625, 90, 525), + (264625, 92, 525), + (264625, 97, 525), + (264625, 95, 525), + (264625, 94, 525), + (264625, 93, 525), + (264625, 96, 525), + (264625, 118, 26), + (264625, 105, 30), + (264625, 154, 30), + (264625, 1, 300), + (264626, 91, 2), + (264626, 90, 2), + (264626, 92, 2), + (264626, 97, 2), + (264626, 95, 2), + (264626, 94, 2), + (264626, 93, 2), + (264626, 96, 2), + (264626, 118, 1), + (264626, 105, 1), + (264626, 154, 1), + (264626, 1, 1), + (264627, 91, 525), + (264627, 90, 525), + (264627, 92, 525), + (264627, 97, 525), + (264627, 95, 525), + (264627, 94, 525), + (264627, 93, 525), + (264627, 96, 525), + (264627, 118, 19), + (264627, 105, 25), + (264627, 154, 25), + (264627, 1, 265), + (264628, 91, 6), + (264628, 90, 6), + (264628, 92, 6), + (264628, 97, 6), + (264628, 95, 6), + (264628, 94, 6), + (264628, 93, 6), + (264628, 96, 6), + (264628, 1, 2), + (264628, 105, 1), + (264628, 18, 1), + (264628, 118, 1), + (264629, 91, 1890), + (264629, 90, 1890), + (264629, 92, 1890), + (264629, 97, 1890), + (264629, 95, 1890), + (264629, 94, 1890), + (264629, 93, 1890), + (264629, 96, 1890), + (264629, 1, 1000), + (264629, 105, 85), + (264629, 18, 25), + (264629, 118, 40), + (264630, 91, 6), + (264630, 90, 6), + (264630, 92, 6), + (264630, 97, 6), + (264630, 95, 6), + (264630, 94, 6), + (264630, 93, 6), + (264630, 96, 6), + (264630, 1, 2), + (264630, 105, 1), + (264630, 18, 1), + (264630, 118, 1), + (264631, 91, 1890), + (264631, 90, 1890), + (264631, 92, 1890), + (264631, 97, 1890), + (264631, 95, 1890), + (264631, 94, 1890), + (264631, 93, 1890), + (264631, 96, 1890), + (264631, 1, 750), + (264631, 105, 65), + (264631, 18, 22), + (264631, 118, 30), + (264632, 91, 6), + (264632, 90, 6), + (264632, 92, 6), + (264632, 97, 6), + (264632, 95, 6), + (264632, 94, 2), + (264632, 93, 2), + (264632, 96, 6), + (264632, 1, 1), + (264632, 105, 1), + (264632, 18, 1), + (264632, 118, 1), + (264633, 91, 1890), + (264633, 90, 1890), + (264633, 92, 1890), + (264633, 97, 1890), + (264633, 95, 1890), + (264633, 94, 1890), + (264633, 93, 1890), + (264633, 96, 1890), + (264633, 1, 600), + (264633, 105, 60), + (264633, 18, 20), + (264633, 118, 25), + (264634, 91, 2), + (264634, 90, 2), + (264634, 92, 2), + (264634, 97, 2), + (264634, 95, 2), + (264634, 94, 2), + (264634, 93, 2), + (264634, 96, 2), + (264634, 156, 1), + (264634, 123, 1), + (264634, 277, 1), + (264634, 127, 1), + (264634, 1, 1), + (264635, 91, 709), + (264635, 90, 709), + (264635, 92, 709), + (264635, 97, 709), + (264635, 95, 709), + (264635, 94, 709), + (264635, 93, 709), + (264635, 96, 709), + (264635, 156, 55), + (264635, 123, 55), + (264635, 277, 30), + (264635, 127, 20), + (264635, 1, 350), + (264636, 91, 2), + (264636, 90, 2), + (264636, 92, 2), + (264636, 97, 2), + (264636, 95, 2), + (264636, 94, 1), + (264636, 93, 2), + (264636, 96, 2), + (264636, 156, 1), + (264636, 123, 1), + (264636, 277, 1), + (264636, 127, 1), + (264636, 1, 1), + (264637, 91, 709), + (264637, 90, 709), + (264637, 92, 709), + (264637, 97, 709), + (264637, 95, 709), + (264637, 94, 709), + (264637, 93, 709), + (264637, 96, 709), + (264637, 156, 45), + (264637, 123, 45), + (264637, 277, 20), + (264637, 127, 17), + (264637, 1, 300), + (264638, 91, 2), + (264638, 90, 2), + (264638, 92, 2), + (264638, 97, 2), + (264638, 95, 2), + (264638, 94, 1), + (264638, 93, 1), + (264638, 96, 2), + (264638, 156, 1), + (264638, 123, 1), + (264638, 277, 1), + (264638, 127, 1), + (264638, 1, 1), + (264639, 91, 709), + (264639, 90, 709), + (264639, 92, 709), + (264639, 97, 709), + (264639, 95, 709), + (264639, 94, 709), + (264639, 93, 709), + (264639, 96, 709), + (264639, 156, 40), + (264639, 123, 40), + (264639, 277, 15), + (264639, 127, 15), + (264639, 1, 265), + (264640, 91, 4), + (264640, 90, 4), + (264640, 92, 4), + (264640, 97, 4), + (264640, 95, 4), + (264640, 94, 4), + (264640, 93, 4), + (264640, 96, 4), + (264640, 155, 1), + (264640, 104, 1), + (264640, 118, 1), + (264640, 17, 1), + (264640, 131, 1), + (264641, 91, 1182), + (264641, 90, 1182), + (264641, 92, 1182), + (264641, 97, 1182), + (264641, 95, 1182), + (264641, 94, 1182), + (264641, 93, 1182), + (264641, 96, 1182), + (264641, 155, 75), + (264641, 104, 80), + (264641, 118, 40), + (264641, 17, 20), + (264641, 131, 20), + (264642, 91, 4), + (264642, 90, 4), + (264642, 92, 4), + (264642, 97, 4), + (264642, 95, 4), + (264642, 94, 1), + (264642, 93, 4), + (264642, 96, 4), + (264642, 155, 1), + (264642, 104, 1), + (264642, 118, 1), + (264642, 17, 1), + (264642, 131, 1), + (264643, 91, 1182), + (264643, 90, 1182), + (264643, 92, 1182), + (264643, 97, 1182), + (264643, 95, 1182), + (264643, 94, 1182), + (264643, 93, 1182), + (264643, 96, 1182), + (264643, 155, 50), + (264643, 104, 60), + (264643, 118, 30), + (264643, 17, 17), + (264643, 131, 12), + (264644, 91, 4), + (264644, 90, 4), + (264644, 92, 4), + (264644, 97, 4), + (264644, 95, 4), + (264644, 94, 1), + (264644, 93, 1), + (264644, 96, 4), + (264644, 155, 1), + (264644, 104, 1), + (264644, 118, 1), + (264644, 17, 1), + (264644, 131, 1), + (264645, 91, 1182), + (264645, 90, 1182), + (264645, 92, 1182), + (264645, 97, 1182), + (264645, 95, 1182), + (264645, 94, 1182), + (264645, 93, 1182), + (264645, 96, 1182), + (264645, 155, 40), + (264645, 104, 50), + (264645, 118, 25), + (264645, 17, 15), + (264645, 131, 10), + (264646, 91, 5), + (264646, 90, 5), + (264646, 92, 5), + (264646, 97, 5), + (264646, 95, 5), + (264646, 94, 5), + (264646, 93, 5), + (264646, 96, 5), + (264646, 19, 1), + (264646, 149, 1), + (264646, 127, 1), + (264646, 1, 1), + (264647, 91, 1418), + (264647, 90, 1418), + (264647, 92, 1418), + (264647, 97, 1418), + (264647, 95, 1418), + (264647, 94, 1418), + (264647, 93, 1418), + (264647, 96, 1418), + (264647, 19, 25), + (264647, 149, 65), + (264647, 127, 30), + (264647, 1, 350), + (264648, 91, 5), + (264648, 90, 5), + (264648, 92, 1), + (264648, 97, 5), + (264648, 95, 5), + (264648, 94, 5), + (264648, 93, 5), + (264648, 96, 5), + (264648, 19, 1), + (264648, 149, 1), + (264648, 127, 1), + (264648, 1, 1), + (264649, 91, 1418), + (264649, 90, 1418), + (264649, 92, 1418), + (264649, 97, 1418), + (264649, 95, 1418), + (264649, 94, 1418), + (264649, 93, 1418), + (264649, 96, 1418), + (264649, 19, 22), + (264649, 149, 55), + (264649, 127, 20), + (264649, 1, 300), + (264650, 91, 5), + (264650, 90, 5), + (264650, 92, 5), + (264650, 97, 5), + (264650, 95, 5), + (264650, 94, 5), + (264650, 93, 5), + (264650, 96, 5), + (264650, 19, 1), + (264650, 149, 1), + (264650, 127, 1), + (264650, 1, 1), + (264651, 91, 1418), + (264651, 90, 1418), + (264651, 92, 1418), + (264651, 97, 1418), + (264651, 95, 1418), + (264651, 94, 1418), + (264651, 93, 1418), + (264651, 96, 1418), + (264651, 19, 20), + (264651, 149, 50), + (264651, 127, 16), + (264651, 1, 265), + (264652, 91, 2), + (264652, 90, 2), + (264652, 92, 2), + (264652, 97, 2), + (264652, 95, 2), + (264652, 94, 2), + (264652, 93, 2), + (264652, 96, 2), + (264652, 112, 1), + (264652, 115, 1), + (264652, 133, 1), + (264652, 20, 1), + (264652, 129, 1), + (264652, 1, 1), + (264653, 91, 604), + (264653, 90, 604), + (264653, 92, 604), + (264653, 97, 604), + (264653, 95, 604), + (264653, 94, 604), + (264653, 93, 604), + (264653, 96, 604), + (264653, 112, 40), + (264653, 115, 40), + (264653, 133, 40), + (264653, 20, 25), + (264653, 129, 20), + (264653, 1, 350), + (264654, 91, 2), + (264654, 90, 2), + (264654, 92, 2), + (264654, 97, 2), + (264654, 95, 2), + (264654, 94, 2), + (264654, 93, 2), + (264654, 96, 2), + (264654, 112, 1), + (264654, 115, 1), + (264654, 133, 1), + (264654, 20, 1), + (264654, 129, 1), + (264654, 1, 1), + (264655, 91, 604), + (264655, 90, 604), + (264655, 92, 604), + (264655, 97, 604), + (264655, 95, 604), + (264655, 94, 604), + (264655, 93, 604), + (264655, 96, 604), + (264655, 112, 30), + (264655, 115, 30), + (264655, 133, 30), + (264655, 20, 20), + (264655, 129, 17), + (264655, 1, 300), + (264656, 91, 2), + (264656, 90, 2), + (264656, 92, 2), + (264656, 97, 2), + (264656, 95, 2), + (264656, 94, 2), + (264656, 93, 2), + (264656, 96, 2), + (264656, 112, 1), + (264656, 115, 1), + (264656, 133, 1), + (264656, 20, 1), + (264656, 129, 1), + (264656, 1, 1), + (264657, 91, 604), + (264657, 90, 604), + (264657, 92, 604), + (264657, 97, 604), + (264657, 95, 604), + (264657, 94, 604), + (264657, 93, 604), + (264657, 96, 604), + (264657, 112, 25), + (264657, 115, 25), + (264657, 133, 25), + (264657, 20, 18), + (264657, 129, 15), + (264657, 1, 265), + (264658, 91, 1), + (264658, 90, 1), + (264658, 92, 1), + (264658, 97, 1), + (264658, 95, 1), + (264658, 94, 1), + (264658, 93, 1), + (264658, 96, 1), + (264658, 149, 1), + (264658, 123, 1), + (264658, 154, 1), + (264658, 131, 1), + (264658, 1, 1), + (264659, 91, 315), + (264659, 90, 315), + (264659, 92, 315), + (264659, 97, 315), + (264659, 95, 315), + (264659, 94, 315), + (264659, 93, 315), + (264659, 96, 315), + (264659, 149, 50), + (264659, 123, 45), + (264659, 154, 30), + (264659, 131, 20), + (264659, 1, 350), + (264660, 91, 1), + (264660, 90, 1), + (264660, 92, 1), + (264660, 97, 1), + (264660, 95, 1), + (264660, 94, 1), + (264660, 93, 1), + (264660, 96, 1), + (264660, 149, 1), + (264660, 123, 1), + (264660, 154, 1), + (264660, 131, 1), + (264660, 1, 1), + (264661, 91, 315), + (264661, 90, 315), + (264661, 92, 315), + (264661, 97, 315), + (264661, 95, 315), + (264661, 94, 315), + (264661, 93, 315), + (264661, 96, 315), + (264661, 149, 40), + (264661, 123, 30), + (264661, 154, 20), + (264661, 131, 17), + (264661, 1, 300), + (264662, 91, 1), + (264662, 90, 1), + (264662, 92, 1), + (264662, 97, 1), + (264662, 95, 1), + (264662, 94, 1), + (264662, 93, 1), + (264662, 96, 1), + (264662, 149, 1), + (264662, 123, 1), + (264662, 154, 1), + (264662, 131, 1), + (264662, 1, 1), + (264663, 91, 315), + (264663, 90, 315), + (264663, 92, 315), + (264663, 97, 315), + (264663, 95, 315), + (264663, 94, 315), + (264663, 93, 315), + (264663, 96, 315), + (264663, 149, 30), + (264663, 123, 25), + (264663, 154, 15), + (264663, 131, 15), + (264663, 1, 265), + (264664, 91, 5), + (264664, 90, 5), + (264664, 92, 5), + (264664, 97, 5), + (264664, 95, 5), + (264664, 94, 5), + (264664, 93, 5), + (264664, 96, 5), + (264664, 221, 3), + (264664, 149, 1), + (264664, 18, 1), + (264664, 122, 1), + (264664, 181, 1), + (264665, 91, 1575), + (264665, 90, 1575), + (264665, 92, 1575), + (264665, 97, 1575), + (264665, 95, 1575), + (264665, 94, 1575), + (264665, 93, 1575), + (264665, 96, 1575), + (264665, 221, 1000), + (264665, 149, 65), + (264665, 18, 20), + (264665, 122, 25), + (264665, 181, 32), + (264666, 91, 5), + (264666, 90, 5), + (264666, 92, 1), + (264666, 97, 5), + (264666, 95, 5), + (264666, 94, 5), + (264666, 93, 5), + (264666, 96, 5), + (264666, 221, 2), + (264666, 149, 1), + (264666, 18, 1), + (264666, 122, 1), + (264666, 181, 1), + (264667, 91, 1575), + (264667, 90, 1575), + (264667, 92, 1575), + (264667, 97, 1575), + (264667, 95, 1575), + (264667, 94, 1575), + (264667, 93, 1575), + (264667, 96, 1575), + (264667, 221, 800), + (264667, 149, 55), + (264667, 18, 17), + (264667, 122, 22), + (264667, 181, 28), + (264668, 91, 5), + (264668, 90, 5), + (264668, 92, 5), + (264668, 97, 5), + (264668, 95, 5), + (264668, 94, 5), + (264668, 93, 5), + (264668, 96, 5), + (264668, 221, 2), + (264668, 149, 1), + (264668, 18, 1), + (264668, 122, 1), + (264668, 181, 1), + (264669, 91, 1575), + (264669, 90, 1575), + (264669, 92, 1575), + (264669, 97, 1575), + (264669, 95, 1575), + (264669, 94, 1575), + (264669, 93, 1575), + (264669, 96, 1575), + (264669, 221, 600), + (264669, 149, 50), + (264669, 18, 15), + (264669, 122, 20), + (264669, 181, 25), + (264670, 91, 2), + (264670, 90, 2), + (264670, 92, 2), + (264670, 97, 2), + (264670, 95, 2), + (264670, 94, 2), + (264670, 93, 2), + (264670, 96, 2), + (264670, 156, 1), + (264670, 153, 1), + (264670, 155, 1), + (264670, 130, 1), + (264670, 1, 1), + (264671, 91, 473), + (264671, 90, 473), + (264671, 92, 473), + (264671, 97, 473), + (264671, 95, 473), + (264671, 94, 473), + (264671, 93, 473), + (264671, 96, 473), + (264671, 156, 55), + (264671, 153, 40), + (264671, 155, 40), + (264671, 130, 35), + (264671, 1, 350), + (264672, 91, 2), + (264672, 90, 2), + (264672, 92, 2), + (264672, 97, 2), + (264672, 95, 2), + (264672, 94, 2), + (264672, 93, 2), + (264672, 96, 2), + (264672, 156, 1), + (264672, 153, 1), + (264672, 155, 1), + (264672, 130, 1), + (264672, 1, 1), + (264673, 91, 473), + (264673, 90, 473), + (264673, 92, 473), + (264673, 97, 473), + (264673, 95, 473), + (264673, 94, 473), + (264673, 93, 473), + (264673, 96, 473), + (264673, 156, 45), + (264673, 153, 30), + (264673, 155, 30), + (264673, 130, 30), + (264673, 1, 300), + (264674, 91, 2), + (264674, 90, 2), + (264674, 92, 2), + (264674, 97, 2), + (264674, 95, 2), + (264674, 94, 2), + (264674, 93, 2), + (264674, 96, 2), + (264674, 156, 1), + (264674, 153, 1), + (264674, 155, 1), + (264674, 130, 1), + (264674, 1, 1), + (264675, 91, 473), + (264675, 90, 473), + (264675, 92, 473), + (264675, 97, 473), + (264675, 95, 473), + (264675, 94, 473), + (264675, 93, 473), + (264675, 96, 473), + (264675, 156, 40), + (264675, 153, 25), + (264675, 155, 25), + (264675, 130, 25), + (264675, 1, 265), + (264676, 91, 3), + (264676, 90, 3), + (264676, 92, 3), + (264676, 97, 3), + (264676, 95, 3), + (264676, 94, 3), + (264676, 93, 3), + (264676, 96, 3), + (264676, 1, 1), + (264676, 150, 1), + (264676, 17, 1), + (264676, 161, 1), + (264676, 181, 1), + (264677, 91, 945), + (264677, 90, 945), + (264677, 92, 945), + (264677, 97, 945), + (264677, 95, 945), + (264677, 94, 945), + (264677, 93, 945), + (264677, 96, 945), + (264677, 1, 350), + (264677, 150, 55), + (264677, 17, 16), + (264677, 161, 24), + (264677, 181, 25), + (264678, 91, 3), + (264678, 90, 3), + (264678, 92, 3), + (264678, 97, 3), + (264678, 95, 3), + (264678, 94, 3), + (264678, 93, 3), + (264678, 96, 3), + (264678, 1, 1), + (264678, 150, 1), + (264678, 17, 1), + (264678, 161, 1), + (264678, 181, 1), + (264679, 91, 945), + (264679, 90, 945), + (264679, 92, 945), + (264679, 97, 945), + (264679, 95, 945), + (264679, 94, 945), + (264679, 93, 945), + (264679, 96, 945), + (264679, 1, 300), + (264679, 150, 45), + (264679, 17, 14), + (264679, 161, 22), + (264679, 181, 22), + (264680, 91, 3), + (264680, 90, 3), + (264680, 92, 1), + (264680, 97, 3), + (264680, 95, 3), + (264680, 94, 3), + (264680, 93, 1), + (264680, 96, 3), + (264680, 1, 1), + (264680, 150, 1), + (264680, 17, 1), + (264680, 161, 1), + (264680, 181, 1), + (264681, 91, 945), + (264681, 90, 945), + (264681, 92, 945), + (264681, 97, 945), + (264681, 95, 945), + (264681, 94, 945), + (264681, 93, 945), + (264681, 96, 945), + (264681, 1, 265), + (264681, 150, 40), + (264681, 17, 12), + (264681, 161, 20), + (264681, 181, 20), + (265380, 149, 3), + (265441, 106, -1000), + (265442, 128, -750), + (265442, 127, -750), + (265442, 130, -750), + (265442, 129, -750), + (265442, 131, -750), + (265442, 122, -750), + (265443, 148, -600), + (265443, 114, -600), + (265443, 119, -600), + (265444, 128, -750), + (265444, 127, -750), + (265444, 130, -750), + (265444, 129, -750), + (265444, 131, -750), + (265444, 122, -750), + (265445, 128, -750), + (265445, 127, -750), + (265445, 130, -750), + (265445, 129, -750), + (265445, 131, -750), + (265445, 122, -750), + (265446, 535, -50), + (265449, 155, -400), + (265449, 154, -400), + (265449, 153, -400), + (265449, 156, -400), + (265451, 128, -500), + (265451, 127, -500), + (265451, 130, -500), + (265451, 129, -500), + (265451, 131, -500), + (265451, 122, -500), + (265453, 113, -1250), + (265797, 1, 20), + (266337, 151, -2000), + (266337, 167, -2000), + (266337, 148, -2000), + (266337, 150, -2000), + (266337, 114, -2000), + (266337, 115, -2000), + (266337, 111, -2000), + (266337, 133, -2000), + (266337, 109, -2000), + (266337, 110, -2000), + (266337, 116, -2000), + (266337, 113, -2000), + (266337, 112, -2000), + (266338, 151, -2000), + (266338, 167, -2000), + (266338, 148, -2000), + (266338, 150, -2000), + (266338, 114, -2000), + (266338, 115, -2000), + (266338, 111, -2000), + (266338, 133, -2000), + (266338, 109, -2000), + (266338, 110, -2000), + (266338, 116, -2000), + (266338, 113, -2000), + (266338, 112, -2000), + (266339, 151, -2000), + (266339, 167, -2000), + (266339, 148, -2000), + (266339, 150, -2000), + (266339, 114, -2000), + (266339, 115, -2000), + (266339, 111, -2000), + (266339, 133, -2000), + (266339, 109, -2000), + (266339, 110, -2000), + (266339, 116, -2000), + (266339, 113, -2000), + (266339, 112, -2000), + (266340, 151, -2000), + (266340, 167, -2000), + (266340, 148, -2000), + (266340, 150, -2000), + (266340, 114, -2000), + (266340, 115, -2000), + (266340, 111, -2000), + (266340, 133, -2000), + (266340, 109, -2000), + (266340, 110, -2000), + (266340, 116, -2000), + (266340, 113, -2000), + (266340, 112, -2000), + (266341, 151, -2000), + (266341, 167, -2000), + (266341, 148, -2000), + (266341, 150, -2000), + (266341, 114, -2000), + (266341, 115, -2000), + (266341, 111, -2000), + (266341, 133, -2000), + (266341, 109, -2000), + (266341, 110, -2000), + (266341, 116, -2000), + (266341, 113, -2000), + (266341, 112, -2000), + (266342, 151, -2000), + (266342, 167, -2000), + (266342, 148, -2000), + (266342, 150, -2000), + (266342, 114, -2000), + (266342, 115, -2000), + (266342, 111, -2000), + (266342, 133, -2000), + (266342, 109, -2000), + (266342, 110, -2000), + (266342, 116, -2000), + (266342, 113, -2000), + (266342, 112, -2000), + (266343, 151, -2000), + (266343, 167, -2000), + (266343, 148, -2000), + (266343, 150, -2000), + (266343, 114, -2000), + (266343, 115, -2000), + (266343, 111, -2000), + (266343, 133, -2000), + (266343, 109, -2000), + (266343, 110, -2000), + (266343, 116, -2000), + (266343, 113, -2000), + (266343, 112, -2000), + (266344, 151, -2000), + (266344, 167, -2000), + (266344, 148, -2000), + (266344, 150, -2000), + (266344, 114, -2000), + (266344, 115, -2000), + (266344, 111, -2000), + (266344, 133, -2000), + (266344, 109, -2000), + (266344, 110, -2000), + (266344, 116, -2000), + (266344, 113, -2000), + (266344, 112, -2000), + (266345, 151, -2000), + (266345, 167, -2000), + (266345, 148, -2000), + (266345, 150, -2000), + (266345, 114, -2000), + (266345, 115, -2000), + (266345, 111, -2000), + (266345, 133, -2000), + (266345, 109, -2000), + (266345, 110, -2000), + (266345, 116, -2000), + (266345, 113, -2000), + (266345, 112, -2000), + (266346, 151, -2000), + (266346, 167, -2000), + (266346, 148, -2000), + (266346, 150, -2000), + (266346, 114, -2000), + (266346, 115, -2000), + (266346, 111, -2000), + (266346, 133, -2000), + (266346, 109, -2000), + (266346, 110, -2000), + (266346, 116, -2000), + (266346, 113, -2000), + (266346, 112, -2000), + (266347, 151, -2000), + (266347, 167, -2000), + (266347, 148, -2000), + (266347, 150, -2000), + (266347, 114, -2000), + (266347, 115, -2000), + (266347, 111, -2000), + (266347, 133, -2000), + (266347, 109, -2000), + (266347, 110, -2000), + (266347, 116, -2000), + (266347, 113, -2000), + (266347, 112, -2000), + (266348, 151, -2000), + (266348, 167, -2000), + (266348, 148, -2000), + (266348, 150, -2000), + (266348, 114, -2000), + (266348, 115, -2000), + (266348, 111, -2000), + (266348, 133, -2000), + (266348, 109, -2000), + (266348, 110, -2000), + (266348, 116, -2000), + (266348, 113, -2000), + (266348, 112, -2000), + (266349, 151, -2000), + (266349, 167, -2000), + (266349, 148, -2000), + (266349, 150, -2000), + (266349, 114, -2000), + (266349, 115, -2000), + (266349, 111, -2000), + (266349, 133, -2000), + (266349, 109, -2000), + (266349, 110, -2000), + (266349, 116, -2000), + (266349, 113, -2000), + (266349, 112, -2000), + (266350, 151, -2000), + (266350, 167, -2000), + (266350, 148, -2000), + (266350, 150, -2000), + (266350, 114, -2000), + (266350, 115, -2000), + (266350, 111, -2000), + (266350, 133, -2000), + (266350, 109, -2000), + (266350, 110, -2000), + (266350, 116, -2000), + (266350, 113, -2000), + (266350, 112, -2000), + (267015, 205, 50), + (267015, 206, 50), + (267015, 207, 50), + (267015, 208, 50), + (267015, 216, 50), + (267015, 217, 50), + (267015, 219, 50), + (267015, 225, 50), + (267015, 475, 50), + (267015, 476, 50), + (267015, 477, 50), + (267015, 478, 50), + (267015, 479, 50), + (267015, 480, 50), + (267015, 482, 50), + (267015, 483, 50), + (267022, 226, 100), + (267022, 227, 100), + (267022, 228, 100), + (267022, 229, 100), + (267022, 230, 100), + (267022, 231, 100), + (267022, 233, 100), + (267022, 234, 100), + (267106, 221, 800), + (267106, 1, 800), + (267106, 120, 100), + (267106, 118, 100), + (267106, 119, 100), + (267106, 276, 40), + (267106, 277, 40), + (267106, 280, 20), + (267106, 281, 20), + (267106, 282, 20), + (267106, 311, 20), + (267106, 316, 20), + (267106, 317, 20), + (267106, 319, 4), + (267108, 221, 800), + (267108, 1, 800), + (267108, 149, 100), + (267108, 276, 40), + (267108, 277, 40), + (267108, 318, -2), + (267108, 364, 10), + (267108, 535, 2), + (267108, 536, 2), + (267108, 319, 4), + (267124, 1, 200), + (267124, 221, 100), + (267158, 276, 20), + (267164, 112, 25), + (267164, 150, 15), + (267164, 380, 2), + (267164, 379, 1), + (267164, 119, 50), + (267165, 114, 25), + (267165, 116, 25), + (267165, 148, 15), + (267165, 276, 10), + (267165, 379, 1), + (267165, 119, 50), + (267166, 1, 225), + (267166, 16, 10), + (267166, 277, 10), + (267167, 1, 500), + (267167, 16, 20), + (267167, 277, 25), + (267168, 1, 250), + (267168, 16, 20), + (267168, 277, 50), + (267255, 18, 15), + (267255, 16, 15), + (267257, 1, 500), + (267257, 221, 500), + (267258, 1, 250), + (267259, 153, 25), + (267259, 154, 25), + (267259, 155, 25), + (267259, 1, 100), + (267259, 277, 25), + (267260, 119, 25), + (267260, 278, 25), + (267260, 279, 25), + (267260, 280, 25), + (267260, 281, 25), + (267260, 282, 25), + (267260, 311, 25), + (267260, 316, 25), + (267260, 317, 25), + (267260, 276, 15), + (267270, 535, -50), + (267273, 536, -50), + (267274, 536, -25), + (267276, 535, -25), + (267282, 39, 90), + (267282, 35, 100), + (267284, 122, -3000), + (267284, 131, -3000), + (267284, 130, -3000), + (267284, 129, -3000), + (267284, 128, -3000), + (267284, 127, -3000), + (267285, 103, 25), + (267285, 106, 25), + (267285, 146, 25), + (267285, 147, 25), + (267285, 118, 100), + (267286, 113, 25), + (267286, 119, 250), + (267286, 151, 25), + (267286, 379, 5), + (267286, 1, 150), + (267317, 96, 6500), + (267317, 94, 6500), + (267317, 91, 6500), + (267317, 95, 6500), + (267317, 97, 7000), + (267317, 90, 6500), + (267317, 92, 6500), + (267317, 93, 6500), + (267317, 153, 150), + (267317, 154, 150), + (267317, 155, 150), + (267317, 156, 100), + (267317, 316, 225), + (267317, 278, 225), + (267317, 279, 225), + (267317, 280, 225), + (267317, 281, 225), + (267317, 317, 225), + (267317, 276, 125), + (267317, 277, 125), + (267317, 282, 225), + (267317, 311, 225), + (267317, 133, 100), + (267317, 379, 5), + (267317, 113, 100), + (267317, 112, 100), + (267317, 116, 100), + (267317, 115, 100), + (267317, 114, 100), + (267317, 111, 100), + (267317, 1, 2000), + (267317, 221, 1000), + (267351, 91, 5), + (267351, 90, 5), + (267351, 92, 5), + (267351, 97, 5), + (267351, 95, 5), + (267351, 94, 5), + (267351, 93, 5), + (267351, 96, 5), + (267351, 19, 1), + (267351, 149, 1), + (267351, 277, 1), + (267351, 1, 1), + (267351, 318, -1), + (267351, 364, 1), + (267351, 221, 1), + (267352, 91, 1600), + (267352, 90, 1600), + (267352, 92, 1600), + (267352, 97, 1600), + (267352, 95, 1600), + (267352, 94, 1600), + (267352, 93, 1600), + (267352, 96, 1600), + (267352, 19, 30), + (267352, 149, 75), + (267352, 277, 50), + (267352, 1, 500), + (267352, 318, -5), + (267352, 364, 10), + (267352, 221, 500), + (267353, 91, 5), + (267353, 90, 5), + (267353, 92, 5), + (267353, 97, 5), + (267353, 95, 5), + (267353, 94, 5), + (267353, 93, 5), + (267353, 96, 5), + (267353, 136, 1), + (267353, 134, 1), + (267353, 276, 1), + (267353, 1, 1), + (267353, 118, 1), + (267353, 119, 1), + (267353, 101, 1), + (267354, 91, 1600), + (267354, 90, 1600), + (267354, 92, 1600), + (267354, 97, 1600), + (267354, 95, 1600), + (267354, 94, 1600), + (267354, 93, 1600), + (267354, 96, 1600), + (267354, 136, 100), + (267354, 134, 50), + (267354, 276, 25), + (267354, 1, 500), + (267354, 118, 100), + (267354, 119, 100), + (267354, 101, 50), + (267356, 91, 5), + (267356, 90, 5), + (267356, 92, 5), + (267356, 97, 5), + (267356, 95, 5), + (267356, 94, 5), + (267356, 93, 5), + (267356, 96, 5), + (267356, 18, 1), + (267356, 221, 1), + (267356, 1, 1), + (267356, 379, 1), + (267356, 277, 1), + (267356, 318, -1), + (267356, 119, 1), + (267357, 91, 1600), + (267357, 90, 1600), + (267357, 92, 1600), + (267357, 97, 1600), + (267357, 95, 1600), + (267357, 94, 1600), + (267357, 93, 1600), + (267357, 96, 1600), + (267357, 18, 25), + (267357, 221, 300), + (267357, 1, 500), + (267357, 379, 4), + (267357, 277, 25), + (267357, 318, -5), + (267357, 119, 100), + (267363, 91, 4), + (267363, 90, 4), + (267363, 92, 4), + (267363, 97, 4), + (267363, 95, 4), + (267363, 94, 4), + (267363, 93, 4), + (267363, 96, 4), + (267363, 391, 1), + (267363, 318, -1), + (267363, 277, 1), + (267363, 149, 1), + (267363, 221, 1), + (267363, 1, 1), + (267364, 91, 1600), + (267364, 90, 1600), + (267364, 92, 1600), + (267364, 97, 1600), + (267364, 95, 1600), + (267364, 94, 1600), + (267364, 93, 1600), + (267364, 96, 1600), + (267364, 391, 3), + (267364, 318, -8), + (267364, 277, 50), + (267364, 149, 100), + (267364, 221, 500), + (267364, 1, 500), + (267365, 91, 5), + (267365, 90, 5), + (267365, 92, 5), + (267365, 97, 5), + (267365, 95, 5), + (267365, 94, 5), + (267365, 93, 5), + (267365, 96, 5), + (267365, 276, 1), + (267365, 18, 1), + (267365, 277, 1), + (267365, 1, 1), + (267365, 221, 1), + (267366, 91, 1600), + (267366, 90, 1600), + (267366, 92, 1600), + (267366, 97, 1600), + (267366, 95, 1600), + (267366, 94, 1600), + (267366, 93, 1600), + (267366, 96, 1600), + (267366, 276, 25), + (267366, 18, 30), + (267366, 277, 50), + (267366, 1, 1000), + (267366, 221, 500), + (267367, 91, 4), + (267367, 90, 4), + (267367, 92, 4), + (267367, 97, 4), + (267367, 95, 4), + (267367, 94, 4), + (267367, 93, 4), + (267367, 96, 4), + (267367, 276, 1), + (267367, 18, 1), + (267367, 318, -1), + (267367, 1, 1), + (267367, 167, 1), + (267368, 91, 1600), + (267368, 90, 1600), + (267368, 92, 1600), + (267368, 97, 1600), + (267368, 95, 1600), + (267368, 94, 1600), + (267368, 93, 1600), + (267368, 96, 1600), + (267368, 276, 50), + (267368, 18, 25), + (267368, 318, -6), + (267368, 1, 500), + (267368, 167, 40), + (267369, 91, 5), + (267369, 90, 5), + (267369, 92, 5), + (267369, 97, 5), + (267369, 95, 5), + (267369, 94, 5), + (267369, 93, 5), + (267369, 96, 5), + (267369, 119, 1), + (267369, 149, 1), + (267369, 391, 1), + (267369, 168, 1), + (267369, 277, 1), + (267369, 1, 1), + (267370, 91, 1600), + (267370, 90, 1600), + (267370, 92, 1600), + (267370, 97, 1600), + (267370, 95, 1600), + (267370, 94, 1600), + (267370, 93, 1600), + (267370, 96, 1600), + (267370, 119, 100), + (267370, 149, 100), + (267370, 391, 3), + (267370, 168, 25), + (267370, 277, 25), + (267370, 1, 500), + (267371, 91, 5), + (267371, 90, 5), + (267371, 92, 5), + (267371, 97, 5), + (267371, 95, 5), + (267371, 94, 5), + (267371, 93, 5), + (267371, 96, 5), + (267371, 276, 1), + (267371, 18, 1), + (267371, 535, 1), + (267371, 1, 1), + (267372, 91, 1600), + (267372, 90, 1600), + (267372, 92, 1600), + (267372, 97, 1600), + (267372, 95, 1600), + (267372, 94, 1600), + (267372, 93, 1600), + (267372, 96, 1600), + (267372, 276, 50), + (267372, 18, 25), + (267372, 535, 3), + (267372, 1, 500), + (267373, 91, 4), + (267373, 90, 4), + (267373, 92, 4), + (267373, 97, 4), + (267373, 95, 4), + (267373, 94, 4), + (267373, 93, 4), + (267373, 96, 4), + (267373, 18, 1), + (267373, 277, 1), + (267373, 149, 1), + (267373, 1, 1), + (267373, 391, 1), + (267374, 91, 1600), + (267374, 90, 1600), + (267374, 92, 1600), + (267374, 97, 1600), + (267374, 95, 1600), + (267374, 94, 1600), + (267374, 93, 1600), + (267374, 96, 1600), + (267374, 18, 25), + (267374, 277, 75), + (267374, 149, 125), + (267374, 1, 500), + (267374, 391, 3), + (267375, 91, 5), + (267375, 90, 5), + (267375, 92, 5), + (267375, 97, 5), + (267375, 95, 5), + (267375, 94, 5), + (267375, 93, 5), + (267375, 96, 5), + (267375, 277, 1), + (267375, 276, 1), + (267375, 18, 1), + (267375, 16, 1), + (267375, 1, 1), + (267376, 91, 1600), + (267376, 90, 1600), + (267376, 92, 1600), + (267376, 97, 1600), + (267376, 95, 1600), + (267376, 94, 1600), + (267376, 93, 1600), + (267376, 96, 1600), + (267376, 277, 25), + (267376, 276, 50), + (267376, 18, 25), + (267376, 16, 25), + (267376, 1, 750), + (267377, 91, 5), + (267377, 90, 5), + (267377, 92, 5), + (267377, 97, 5), + (267377, 95, 5), + (267377, 94, 5), + (267377, 93, 5), + (267377, 96, 5), + (267377, 17, 1), + (267377, 18, 1), + (267377, 164, 1), + (267377, 276, 1), + (267377, 1, 1), + (267378, 91, 1600), + (267378, 90, 1600), + (267378, 92, 1600), + (267378, 97, 1600), + (267378, 95, 1600), + (267378, 94, 1600), + (267378, 93, 1600), + (267378, 96, 1600), + (267378, 17, 25), + (267378, 18, 25), + (267378, 164, 150), + (267378, 276, 50), + (267378, 1, 500), + (267379, 91, 5), + (267379, 90, 5), + (267379, 92, 5), + (267379, 97, 5), + (267379, 95, 5), + (267379, 94, 5), + (267379, 93, 5), + (267379, 96, 5), + (267379, 119, 1), + (267379, 16, 1), + (267379, 18, 1), + (267379, 276, 1), + (267379, 1, 1), + (267380, 91, 1600), + (267380, 90, 1600), + (267380, 92, 1600), + (267380, 97, 1600), + (267380, 95, 1600), + (267380, 94, 1600), + (267380, 93, 1600), + (267380, 96, 1600), + (267380, 119, 150), + (267380, 16, 25), + (267380, 18, 25), + (267380, 276, 50), + (267380, 1, 750), + (267381, 91, 5), + (267381, 90, 5), + (267381, 92, 5), + (267381, 97, 5), + (267381, 95, 5), + (267381, 94, 5), + (267381, 93, 5), + (267381, 96, 5), + (267381, 19, 1), + (267381, 149, 1), + (267381, 277, 1), + (267381, 150, 1), + (267381, 1, 1), + (267381, 18, 1), + (267382, 91, 1600), + (267382, 90, 1600), + (267382, 92, 1600), + (267382, 97, 1600), + (267382, 95, 1600), + (267382, 94, 1600), + (267382, 93, 1600), + (267382, 96, 1600), + (267382, 19, 25), + (267382, 149, 150), + (267382, 277, 50), + (267382, 150, 75), + (267382, 1, 500), + (267382, 18, 25), + (267383, 91, 4), + (267383, 90, 4), + (267383, 92, 4), + (267383, 97, 4), + (267383, 95, 4), + (267383, 94, 4), + (267383, 93, 4), + (267383, 96, 4), + (267383, 19, 1), + (267383, 318, -1), + (267383, 18, 1), + (267383, 277, 1), + (267383, 1, 1), + (267384, 91, 1600), + (267384, 90, 1600), + (267384, 92, 1600), + (267384, 97, 1600), + (267384, 95, 1600), + (267384, 94, 1600), + (267384, 93, 1600), + (267384, 96, 1600), + (267384, 19, 25), + (267384, 318, -7), + (267384, 18, 25), + (267384, 277, 50), + (267384, 1, 500), + (267509, 1, 300), + (267509, 90, 2300), + (267509, 91, 2300), + (267509, 92, 2300), + (267509, 93, 2300), + (267509, 94, 2300), + (267509, 95, 2300), + (267509, 96, 2300), + (267509, 97, 2300), + (267509, 21, 15), + (267509, 129, 30), + (267509, 18, 15), + (267509, 181, 25), + (267509, 276, 25), + (267510, 1, 300), + (267510, 221, 200), + (267510, 90, 2800), + (267510, 91, 2800), + (267510, 92, 2800), + (267510, 93, 2800), + (267510, 94, 2800), + (267510, 95, 2800), + (267510, 96, 2800), + (267510, 97, 2800), + (267510, 21, 15), + (267510, 142, 50), + (267510, 19, 15), + (267510, 181, 25), + (267510, 277, 50), + (267511, 1, 450), + (267511, 90, 375), + (267511, 91, 375), + (267511, 92, 375), + (267511, 93, 375), + (267511, 94, 375), + (267511, 95, 375), + (267511, 96, 375), + (267511, 97, 375), + (267511, 16, 15), + (267511, 102, 30), + (267511, 122, 7), + (267512, 1, 600), + (267512, 90, 2000), + (267512, 91, 2000), + (267512, 92, 2000), + (267512, 93, 2000), + (267512, 94, 2000), + (267512, 95, 2000), + (267512, 96, 2000), + (267512, 97, 2000), + (267512, 21, 15), + (267512, 168, 50), + (267512, 18, 15), + (267512, 119, 50), + (267512, 167, 15), + (267512, 181, 25), + (267512, 276, 25), + (267513, 1, 300), + (267513, 221, 300), + (267513, 90, 2800), + (267513, 91, 2800), + (267513, 92, 2800), + (267513, 93, 2800), + (267513, 94, 2800), + (267513, 95, 2800), + (267513, 96, 2800), + (267513, 97, 2800), + (267513, 21, 15), + (267513, 142, 50), + (267513, 19, 15), + (267513, 181, 25), + (267513, 276, 25), + (267514, 1, 375), + (267514, 90, 375), + (267514, 91, 375), + (267514, 92, 375), + (267514, 93, 375), + (267514, 94, 375), + (267514, 95, 375), + (267514, 96, 375), + (267514, 97, 375), + (267514, 16, 12), + (267514, 105, 30), + (267514, 122, 7), + (267514, 104, 30), + (267515, 1, 300), + (267515, 90, 2100), + (267515, 91, 2100), + (267515, 92, 2100), + (267515, 93, 2100), + (267515, 94, 2100), + (267515, 95, 2100), + (267515, 96, 2100), + (267515, 97, 2100), + (267515, 21, 25), + (267515, 129, 50), + (267515, 16, 15), + (267515, 181, 25), + (267515, 277, 50), + (267528, 136, 150), + (267528, 278, 30), + (267528, 279, 30), + (267528, 280, 30), + (267528, 281, 30), + (267528, 282, 30), + (267528, 311, 30), + (267528, 316, 30), + (267528, 317, 30), + (267528, 1, 1000), + (267528, 221, 1000), + (267528, 276, 20), + (267528, 277, 20), + (267528, 318, -5), + (267528, 364, 3), + (267528, 379, 2), + (267528, 535, 2), + (267528, 536, 2), + (267528, 118, 75), + (267528, 119, 75), + (267528, 120, 75), + (267528, 149, 75), + (267530, 276, 200), + (267532, 276, 200), + (267534, 276, 400), + (267537, 118, -2100), + (267537, 119, -2100), + (267537, 120, -2100), + (267537, 149, -2100), + (267539, 118, -1700), + (267539, 119, -1700), + (267539, 120, -1700), + (267539, 149, -1700), + (267560, 1, 1), + (267560, 277, 1), + (267560, 150, 1), + (267560, 142, 1), + (267560, 276, 1), + (267560, 535, 0), + (267561, 1, 150), + (267561, 277, 20), + (267561, 150, 25), + (267561, 142, 25), + (267561, 276, 20), + (267561, 535, 3), + (267562, 1, 1), + (267562, 535, 0), + (267562, 318, 0), + (267562, 149, 1), + (267562, 128, 1), + (267562, 127, 1), + (267562, 391, 0), + (267563, 1, 150), + (267563, 535, 5), + (267563, 318, -2), + (267563, 149, 100), + (267563, 128, 20), + (267563, 127, 20), + (267563, 391, 2), + (267564, 152, 1), + (267564, 276, 1), + (267564, 142, 1), + (267564, 343, 1), + (267564, 101, 1), + (267565, 152, 50), + (267565, 276, 20), + (267565, 142, 25), + (267565, 343, 10), + (267565, 101, 20), + (267566, 1, 1), + (267566, 277, 1), + (267566, 391, 0), + (267566, 168, 1), + (267566, 161, 1), + (267566, 131, 1), + (267566, 130, 1), + (267566, 127, 1), + (267567, 1, 150), + (267567, 277, 30), + (267567, 391, 2), + (267567, 168, 25), + (267567, 161, 20), + (267567, 131, 20), + (267567, 130, 20), + (267567, 127, 20), + (267568, 1, 1), + (267568, 277, 1), + (267568, 276, 1), + (267568, 148, 1), + (267568, 156, 1), + (267568, 135, 1), + (267568, 165, 1), + (267568, 164, 1), + (267568, 136, 1), + (267569, 1, 150), + (267569, 277, 20), + (267569, 276, 20), + (267569, 148, 25), + (267569, 156, 20), + (267569, 135, 20), + (267569, 165, 20), + (267569, 164, 20), + (267569, 136, 20), + (267570, 152, 1), + (267570, 276, 1), + (267570, 131, 1), + (267570, 105, 1), + (267570, 104, 1), + (267570, 343, 1), + (267571, 152, 50), + (267571, 276, 20), + (267571, 131, 20), + (267571, 105, 20), + (267571, 104, 20), + (267571, 343, 10), + (267572, 1, 1), + (267572, 277, 1), + (267572, 168, 1), + (267572, 280, 1), + (267572, 316, 1), + (267572, 281, 1), + (267572, 279, 1), + (267573, 1, 150), + (267573, 277, 30), + (267573, 168, 25), + (267573, 280, 20), + (267573, 316, 20), + (267573, 281, 20), + (267573, 279, 20), + (267574, 1, 1), + (267574, 132, 1), + (267574, 277, 1), + (267574, 130, 1), + (267574, 168, 1), + (267574, 161, 1), + (267574, 149, 1), + (267575, 1, 150), + (267575, 132, 50), + (267575, 277, 20), + (267575, 130, 20), + (267575, 168, 25), + (267575, 161, 20), + (267575, 149, 100), + (267576, 1, 1), + (267576, 277, 1), + (267576, 276, 1), + (267576, 106, 1), + (267576, 101, 1), + (267576, 164, 1), + (267577, 1, 150), + (267577, 277, 20), + (267577, 276, 20), + (267577, 106, 20), + (267577, 101, 20), + (267577, 164, 20), + (267578, 152, 1), + (267578, 276, 1), + (267578, 167, 1), + (267578, 148, 1), + (267578, 343, 1), + (267579, 152, 50), + (267579, 276, 20), + (267579, 167, 25), + (267579, 148, 20), + (267579, 343, 10), + (267580, 1, 1), + (267580, 277, 1), + (267580, 276, 1), + (267580, 149, 1), + (267580, 150, 1), + (267580, 161, 1), + (267581, 1, 150), + (267581, 277, 20), + (267581, 276, 20), + (267581, 149, 100), + (267581, 150, 25), + (267581, 161, 20), + (267582, 1, 1), + (267582, 277, 1), + (267582, 276, 1), + (267582, 151, 1), + (267582, 156, 1), + (267582, 149, 1), + (267582, 136, 1), + (267582, 164, 1), + (267583, 1, 150), + (267583, 277, 20), + (267583, 276, 20), + (267583, 151, 25), + (267583, 156, 20), + (267583, 149, 100), + (267583, 136, 20), + (267583, 164, 20), + (267618, 221, 250), + (267618, 535, 5), + (267619, 318, -3), + (267619, 364, 35), + (267625, 277, 25), + (267626, 277, 25), + (267627, 1, 300), + (267627, 123, 50), + (267627, 168, 25), + (267627, 277, 25), + (267629, 276, 500), + (267630, 277, 250), + (267631, 277, 300), + (267633, 277, 250), + (267634, 277, 300), + (267635, 277, 325), + (267635, 90, 2000), + (267635, 91, 2000), + (267635, 92, 2000), + (267635, 93, 2000), + (267635, 94, 2000), + (267635, 95, 2000), + (267635, 97, 2000), + (267635, 96, 2000), + (267636, 277, 200), + (267637, 277, 250), + (267638, 277, 300), + (267638, 90, 1000), + (267638, 91, 1000), + (267638, 92, 1000), + (267638, 93, 1000), + (267638, 94, 1000), + (267638, 95, 1000), + (267638, 97, 1000), + (267638, 96, 1000), + (267639, 168, 600), + (267640, 168, 300), + (267642, 1, 3000), + (267642, 168, 500), + (267642, 277, 300), + (267643, 1, 1500), + (267643, 168, 250), + (267643, 277, 200), + (267644, 1, 1000), + (267644, 168, 100), + (267644, 277, 100), + (267651, 111, 25), + (267651, 119, 25), + (267651, 120, 25), + (267651, 121, 25), + (267652, 125, 75), + (267652, 126, 75), + (267652, 157, 75), + (267652, 158, 75), + (267652, 159, 75), + (267652, 160, 75), + (267652, 163, 75), + (267653, 108, 20), + (267653, 109, 20), + (267653, 110, 20), + (267653, 111, 20), + (267653, 112, 20), + (267653, 113, 20), + (267653, 114, 20), + (267653, 115, 20), + (267653, 116, 20), + (267653, 133, 20), + (267656, 108, 20), + (267656, 109, 20), + (267656, 110, 20), + (267656, 111, 20), + (267656, 112, 20), + (267656, 113, 20), + (267656, 114, 20), + (267656, 115, 20), + (267656, 116, 20), + (267656, 133, 20), + (267657, 206, 99), + (267678, 108, 10), + (267678, 109, 10), + (267678, 110, 10), + (267678, 111, 10), + (267678, 112, 10), + (267678, 113, 10), + (267678, 114, 10), + (267678, 115, 10), + (267678, 116, 10), + (267678, 133, 10), + (267682, 108, 30), + (267682, 109, 30), + (267682, 110, 30), + (267682, 111, 30), + (267682, 112, 30), + (267682, 113, 30), + (267682, 114, 30), + (267682, 115, 30), + (267682, 116, 30), + (267682, 133, 30), + (267695, 108, 30), + (267695, 109, 30), + (267695, 110, 30), + (267695, 111, 30), + (267695, 112, 30), + (267695, 113, 30), + (267695, 114, 30), + (267695, 115, 30), + (267695, 116, 30), + (267695, 133, 30), + (267695, 280, 15), + (267695, 278, 15), + (267695, 279, 15), + (267695, 282, 15), + (267695, 281, 15), + (267695, 317, 15), + (267695, 316, 15), + (267695, 311, 15), + (267696, 108, 30), + (267696, 109, 30), + (267696, 110, 30), + (267696, 111, 30), + (267696, 112, 30), + (267696, 113, 30), + (267696, 114, 30), + (267696, 115, 30), + (267696, 116, 30), + (267696, 133, 30), + (267696, 278, 20), + (267696, 279, 20), + (267696, 280, 20), + (267696, 281, 20), + (267696, 282, 20), + (267696, 311, 20), + (267696, 316, 20), + (267696, 317, 20), + (267696, 276, 10), + (267706, 111, 50), + (267706, 119, 50), + (267706, 120, 50), + (267706, 121, 50), + (267707, 111, 75), + (267707, 119, 50), + (267707, 120, 50), + (267707, 121, 150), + (267707, 151, 50), + (267712, 122, 25), + (267712, 127, 25), + (267712, 128, 25), + (267712, 129, 25), + (267712, 130, 25), + (267712, 131, 25), + (267720, 97, 500), + (267721, 95, 500), + (267722, 93, 500), + (267723, 94, 500), + (267724, 96, 500), + (267752, 123, 25), + (267752, 124, 25), + (267752, 128, 25), + (267752, 535, 2), + (267753, 278, 20), + (267753, 279, 20), + (267753, 280, 20), + (267753, 281, 20), + (267753, 282, 20), + (267753, 311, 20), + (267753, 316, 20), + (267753, 317, 20), + (267753, 276, 10), + (267754, 122, 20), + (267754, 127, 20), + (267754, 128, 20), + (267754, 129, 20), + (267754, 130, 20), + (267754, 131, 20), + (267754, 221, 500), + (267754, 318, -2), + (267754, 364, 10), + (267754, 278, 25), + (267754, 279, 25), + (267754, 280, 25), + (267754, 281, 25), + (267754, 282, 25), + (267754, 311, 25), + (267754, 316, 25), + (267754, 317, 25), + (267755, 278, 20), + (267755, 279, 20), + (267755, 280, 20), + (267755, 281, 20), + (267755, 282, 20), + (267755, 311, 20), + (267755, 316, 20), + (267755, 317, 20), + (267755, 1, 500), + (267755, 102, 10), + (267755, 103, 10), + (267755, 104, 10), + (267755, 105, 10), + (267755, 106, 10), + (267755, 107, 10), + (267755, 146, 25), + (267755, 147, 25), + (267755, 276, 10), + (267756, 278, 20), + (267756, 279, 20), + (267756, 280, 20), + (267756, 281, 20), + (267756, 282, 20), + (267756, 311, 20), + (267756, 316, 20), + (267756, 317, 20), + (267756, 113, 10), + (267756, 151, 25), + (267756, 379, 1), + (267757, 278, 25), + (267757, 279, 25), + (267757, 280, 25), + (267757, 281, 25), + (267757, 282, 25), + (267757, 311, 25), + (267757, 316, 25), + (267757, 317, 25), + (267757, 119, 100), + (267757, 148, 25), + (267757, 150, 25), + (267757, 167, 25), + (267757, 276, 20), + (267760, 221, 374), + (267760, 318, -2), + (267780, 1, 1000), + (267780, 16, 20), + (267780, 17, 20), + (267780, 18, 20), + (267780, 19, 20), + (267780, 20, 20), + (267780, 21, 20), + (267780, 221, 1000), + (267780, 276, 20), + (267780, 277, 20), + (267789, 91, 1500), + (267789, 90, 1500), + (267789, 92, 1500), + (267789, 97, 1000), + (267789, 95, 1500), + (267789, 94, 1500), + (267789, 93, 1000), + (267789, 96, 1500), + (267789, 1, 500), + (267789, 105, 45), + (267789, 18, 10), + (267789, 130, 1), + (267790, 91, 1800), + (267790, 90, 1800), + (267790, 92, 1800), + (267790, 97, 1200), + (267790, 95, 1800), + (267790, 94, 1800), + (267790, 93, 1200), + (267790, 96, 1800), + (267790, 1, 700), + (267790, 105, 60), + (267790, 18, 20), + (267790, 130, 15), + (267796, 181, 100), + (267796, 391, 1), + (267796, 124, 5), + (267797, 181, 125), + (267797, 391, 1), + (267797, 124, 10), + (267798, 278, 20), + (267798, 279, 20), + (267798, 280, 20), + (267798, 281, 20), + (267798, 282, 20), + (267798, 311, 20), + (267798, 316, 20), + (267798, 317, 20), + (267798, 1, 500), + (267798, 102, 15), + (267798, 103, 15), + (267798, 104, 15), + (267798, 105, 15), + (267798, 106, 15), + (267798, 107, 15), + (267798, 146, 25), + (267798, 147, 25), + (267798, 277, 15), + (267798, 391, 4), + (267905, 164, 25), + (267905, 277, 15), + (267905, 276, 15), + (267905, 136, 25), + (267906, 379, 1), + (267906, 278, 12), + (267906, 279, 12), + (267906, 280, 12), + (267906, 281, 12), + (267906, 282, 12), + (267906, 311, 12), + (267906, 316, 12), + (267906, 317, 12), + (267907, 318, -2), + (267907, 364, 5), + (267907, 391, 1), + (267907, 278, 10), + (267907, 279, 10), + (267907, 280, 10), + (267907, 281, 10), + (267907, 282, 10), + (267907, 311, 10), + (267907, 316, 10), + (267907, 317, 10), + (267909, 225, 2), + (267909, 234, 15), + (267909, 96, 300), + (267911, 277, 30), + (267911, 90, 150), + (267911, 92, 150), + (267911, 91, 150), + (267911, 95, 150), + (267911, 97, 150), + (267911, 93, 150), + (267911, 94, 150), + (267911, 96, 150), + (267911, 391, 2), + (267911, 1, 250), + (267912, 149, 11), + (267912, 168, 5), + (267912, 364, 1), + (267913, 149, 700), + (267913, 168, 70), + (267913, 364, 5), + (267930, 27, 300), + (267931, 1, 300), + (267931, 221, 300), + (267931, 90, 2000), + (267931, 91, 2000), + (267931, 92, 2000), + (267931, 93, 2000), + (267931, 94, 2000), + (267931, 95, 2000), + (267931, 96, 2000), + (267931, 97, 2000), + (267931, 21, 15), + (267931, 149, 50), + (267931, 19, 15), + (267931, 181, 25), + (267931, 276, 25), + (267932, 1, 500), + (267932, 90, 2100), + (267932, 91, 2100), + (267932, 92, 2100), + (267932, 93, 2100), + (267932, 94, 2100), + (267932, 95, 2100), + (267932, 96, 2100), + (267932, 97, 2100), + (267932, 21, 25), + (267932, 168, 75), + (267932, 16, 15), + (267932, 181, 25), + (267932, 277, 100), + (267932, 149, 100), + (267933, 1, 300), + (267933, 90, 2100), + (267933, 91, 2100), + (267933, 92, 2100), + (267933, 93, 2100), + (267933, 94, 2100), + (267933, 95, 2100), + (267933, 96, 2100), + (267933, 97, 2100), + (267933, 21, 25), + (267933, 124, 50), + (267933, 18, 15), + (267933, 181, 25), + (267933, 535, 2), + (267933, 276, 25), + (267934, 1, 500), + (267934, 221, 700), + (267934, 90, 2000), + (267934, 91, 2000), + (267934, 92, 2000), + (267934, 93, 2000), + (267934, 94, 2000), + (267934, 95, 2000), + (267934, 96, 2000), + (267934, 97, 2000), + (267934, 21, 25), + (267934, 146, 50), + (267934, 18, 15), + (267934, 181, 25), + (267934, 276, 25), + (267934, 118, 50), + (267935, 1, 500), + (267935, 221, 500), + (267935, 90, 2100), + (267935, 91, 2100), + (267935, 92, 2100), + (267935, 93, 2100), + (267935, 94, 2100), + (267935, 95, 2100), + (267935, 96, 2100), + (267935, 97, 2100), + (267935, 21, 25), + (267935, 16, 15), + (267935, 181, 25), + (267935, 277, 50), + (267936, 1, 700), + (267936, 90, 2000), + (267936, 91, 2000), + (267936, 92, 2000), + (267936, 93, 2000), + (267936, 94, 2000), + (267936, 95, 2000), + (267936, 96, 2000), + (267936, 97, 2000), + (267936, 21, 25), + (267936, 125, 70), + (267936, 16, 15), + (267936, 181, 25), + (267936, 277, 50), + (267937, 1, 500), + (267937, 221, 500), + (267937, 90, 2300), + (267937, 91, 2300), + (267937, 92, 2300), + (267937, 93, 2300), + (267937, 94, 2300), + (267937, 95, 2300), + (267937, 96, 2300), + (267937, 97, 2300), + (267937, 21, 20), + (267937, 142, 50), + (267937, 18, 15), + (267937, 181, 25), + (267937, 276, 30), + (267937, 277, 10), + (267938, 1, 500), + (267938, 90, 2100), + (267938, 91, 2100), + (267938, 92, 2100), + (267938, 93, 2100), + (267938, 94, 2100), + (267938, 95, 2100), + (267938, 96, 2100), + (267938, 97, 2100), + (267938, 21, 25), + (267938, 127, 50), + (267938, 16, 15), + (267938, 181, 25), + (267938, 536, 2), + (267938, 277, 25), + (267939, 205, 5), + (267939, 1, 300), + (267939, 206, 5), + (267939, 221, 300), + (267939, 207, 5), + (267939, 208, 5), + (267939, 216, 5), + (267939, 217, 5), + (267939, 219, 5), + (267939, 225, 5), + (267939, 90, 2000), + (267939, 91, 2000), + (267939, 92, 2000), + (267939, 93, 2000), + (267939, 94, 2000), + (267939, 95, 2000), + (267939, 96, 2000), + (267939, 97, 2000), + (267939, 21, 15), + (267939, 148, 60), + (267939, 19, 15), + (267939, 181, 25), + (267939, 276, 15), + (268003, 1, 400), + (268003, 90, 250), + (268003, 91, 250), + (268003, 92, 250), + (268003, 93, 250), + (268003, 94, 250), + (268003, 95, 250), + (268003, 96, 250), + (268003, 97, 250), + (268003, 16, 10), + (268003, 18, 10), + (268003, 128, 15), + (268003, 181, 25), + (268003, 277, 10), + (268004, 1, 500), + (268004, 90, 175), + (268004, 91, 175), + (268004, 92, 175), + (268004, 93, 175), + (268004, 94, 175), + (268004, 95, 175), + (268004, 96, 175), + (268004, 97, 175), + (268004, 16, 10), + (268004, 18, 10), + (268004, 144, 30), + (268004, 129, 10), + (268004, 277, 10), + (268005, 1, 500), + (268005, 90, 250), + (268005, 91, 250), + (268005, 92, 250), + (268005, 93, 250), + (268005, 94, 250), + (268005, 95, 250), + (268005, 96, 250), + (268005, 97, 250), + (268005, 16, 12), + (268005, 18, 12), + (268005, 145, 25), + (268005, 128, 15), + (268005, 277, 10), + (268006, 1, 400), + (268006, 90, 250), + (268006, 91, 250), + (268006, 92, 250), + (268006, 93, 250), + (268006, 94, 250), + (268006, 95, 250), + (268006, 96, 250), + (268006, 97, 250), + (268006, 16, 10), + (268006, 18, 10), + (268006, 181, 25), + (268006, 128, 15), + (268006, 277, 10), + (268081, 1, 250), + (268081, 90, 375), + (268081, 91, 375), + (268081, 92, 375), + (268081, 93, 375), + (268081, 94, 375), + (268081, 95, 375), + (268081, 96, 375), + (268081, 97, 375), + (268081, 16, 10), + (268081, 18, 10), + (268081, 181, 26), + (268081, 131, 19), + (268081, 277, 10), + (268186, 1, 450), + (268186, 90, 375), + (268186, 91, 375), + (268186, 92, 375), + (268186, 93, 375), + (268186, 94, 375), + (268186, 95, 375), + (268186, 96, 375), + (268186, 97, 375), + (268186, 16, 15), + (268186, 18, 15), + (268186, 116, 25), + (268186, 276, 10), + (268186, 119, 50), + (268305, 1, 1), + (268305, 277, 1), + (268305, 536, 1), + (268305, 168, 1), + (268305, 111, 1), + (268305, 161, 1), + (268305, 131, 1), + (268305, 130, 1), + (268305, 128, 1), + (268305, 127, 1), + (268305, 149, 1), + (268306, 1, 150), + (268306, 277, 30), + (268306, 536, 5), + (268306, 168, 25), + (268306, 111, 20), + (268306, 161, 20), + (268306, 131, 20), + (268306, 130, 20), + (268306, 128, 20), + (268306, 127, 20), + (268306, 149, 100), + (268307, 1, 1), + (268307, 277, 1), + (268307, 319, 1), + (268307, 168, 1), + (268307, 156, 1), + (268307, 161, 1), + (268307, 149, 1), + (268308, 1, 150), + (268308, 277, 30), + (268308, 319, 7), + (268308, 168, 25), + (268308, 156, 20), + (268308, 161, 20), + (268308, 149, 100), + (268467, 119, 15), + (268467, 278, 15), + (268467, 279, 15), + (268467, 280, 15), + (268467, 281, 15), + (268467, 282, 15), + (268467, 311, 15), + (268467, 316, 15), + (268467, 317, 15), + (268467, 276, 10), + (268468, 127, 15), + (268468, 122, 15), + (268468, 128, 15), + (268468, 129, 15), + (268468, 130, 15), + (268468, 131, 15), + (268468, 149, 25), + (268468, 364, 2), + (268469, 1, 500), + (268469, 153, 10), + (268469, 154, 10), + (268469, 155, 10), + (268469, 168, 25), + (268470, 125, 15), + (268470, 126, 15), + (268470, 141, 15), + (268470, 157, 15), + (268470, 158, 15), + (268470, 160, 15), + (268470, 161, 15), + (268471, 159, 15), + (268471, 123, 15), + (268471, 124, 15), + (268471, 126, 15), + (268471, 128, 15), + (268471, 157, 15), + (268471, 163, 15), + (268472, 162, 15), + (268472, 122, 15), + (268472, 129, 15), + (268472, 136, 15), + (268472, 21, 5), + (268473, 90, 500), + (268473, 277, 5), + (268473, 91, 500), + (268473, 92, 500), + (268473, 93, 500), + (268473, 94, 500), + (268473, 95, 500), + (268473, 96, 500), + (268473, 97, 500), + (268495, 153, 10), + (268495, 154, 10), + (268495, 155, 10), + (268495, 168, 10), + (268497, 149, 10), + (268497, 221, 200), + (268497, 364, 3), + (268498, 118, 15), + (268498, 119, 15), + (268498, 120, 15), + (268498, 149, 15), + (268498, 17, 5), + (268503, 93, 800), + (268503, 95, 800), + (268503, 92, 800), + (268503, 97, 800), + (268503, 91, 800), + (268503, 96, 800), + (268503, 90, 800), + (268503, 94, 800), + (268503, 1, 200), + (268503, 221, 200), + (268504, 93, 800), + (268504, 95, 800), + (268504, 92, 800), + (268504, 97, 800), + (268504, 91, 800), + (268504, 96, 800), + (268504, 90, 800), + (268504, 94, 800), + (268504, 1, 200), + (268504, 221, 200), + (268504, 118, 10), + (268504, 119, 10), + (268504, 120, 10), + (268504, 276, 20), + (268505, 93, 800), + (268505, 95, 800), + (268505, 92, 800), + (268505, 97, 800), + (268505, 91, 800), + (268505, 96, 800), + (268505, 90, 800), + (268505, 94, 800), + (268505, 1, 300), + (268505, 221, 300), + (268505, 118, 25), + (268505, 119, 25), + (268505, 120, 25), + (268505, 276, 25), + (268505, 277, 10), + (268506, 93, 800), + (268506, 95, 800), + (268506, 92, 800), + (268506, 97, 800), + (268506, 91, 800), + (268506, 96, 800), + (268506, 90, 800), + (268506, 94, 800), + (268506, 1, 500), + (268506, 149, 25), + (268506, 152, 15), + (268506, 18, 10), + (268506, 276, 15), + (268507, 93, 100), + (268507, 95, 100), + (268507, 92, 100), + (268507, 97, 100), + (268507, 91, 100), + (268507, 96, 100), + (268507, 90, 100), + (268507, 94, 100), + (268518, 91, 1), + (268518, 90, 1), + (268518, 92, 1), + (268518, 97, 1), + (268518, 95, 1), + (268518, 94, 1), + (268518, 93, 1), + (268518, 96, 1), + (268518, 156, 1), + (268518, 106, 1), + (268518, 143, 1), + (268518, 101, 1), + (268519, 91, 500), + (268519, 90, 500), + (268519, 92, 500), + (268519, 97, 500), + (268519, 95, 500), + (268519, 94, 500), + (268519, 93, 500), + (268519, 96, 500), + (268519, 156, 30), + (268519, 106, 30), + (268519, 143, 30), + (268519, 101, 20), + (268520, 91, 7), + (268520, 90, 7), + (268520, 92, 6), + (268520, 97, 6), + (268520, 95, 6), + (268520, 94, 3), + (268520, 93, 3), + (268520, 96, 3), + (268520, 1, 10), + (268520, 100, 1), + (268520, 142, 1), + (268521, 91, 750), + (268521, 90, 750), + (268521, 92, 750), + (268521, 97, 750), + (268521, 95, 750), + (268521, 94, 750), + (268521, 93, 750), + (268521, 96, 750), + (268521, 1, 225), + (268521, 100, 30), + (268521, 142, 30), + (268522, 91, 1), + (268522, 90, 1), + (268522, 92, 1), + (268522, 97, 1), + (268522, 95, 1), + (268522, 94, 1), + (268522, 93, 1), + (268522, 96, 1), + (268522, 1, 25), + (268522, 107, 1), + (268522, 105, 1), + (268523, 91, 1500), + (268523, 90, 1500), + (268523, 92, 1500), + (268523, 97, 1500), + (268523, 95, 1500), + (268523, 94, 1500), + (268523, 93, 1500), + (268523, 96, 1500), + (268523, 1, 500), + (268523, 107, 30), + (268523, 105, 30), + (268524, 91, 1), + (268524, 90, 1), + (268524, 92, 1), + (268524, 97, 1), + (268524, 95, 1), + (268524, 94, 1), + (268524, 93, 1), + (268524, 96, 1), + (268524, 103, 1), + (268524, 101, 1), + (268524, 102, 1), + (268524, 104, 1), + (268525, 91, 300), + (268525, 90, 300), + (268525, 92, 300), + (268525, 97, 300), + (268525, 95, 300), + (268525, 94, 300), + (268525, 93, 300), + (268525, 96, 300), + (268525, 103, 20), + (268525, 101, 20), + (268525, 102, 20), + (268525, 104, 20), + (268526, 91, 1), + (268526, 90, 1), + (268526, 92, 1), + (268526, 97, 1), + (268526, 95, 1), + (268526, 94, 1), + (268526, 93, 1), + (268526, 96, 1), + (268526, 147, 1), + (268526, 105, 1), + (268526, 145, 1), + (268526, 144, 1), + (268526, 107, 1), + (268527, 91, 500), + (268527, 90, 500), + (268527, 92, 500), + (268527, 97, 500), + (268527, 95, 500), + (268527, 94, 500), + (268527, 93, 500), + (268527, 96, 500), + (268527, 147, 30), + (268527, 105, 25), + (268527, 145, 25), + (268527, 144, 20), + (268527, 107, 25), + (268833, 90, 4), + (268833, 91, 4), + (268833, 92, 5), + (268833, 93, 5), + (268833, 94, 5), + (268833, 95, 5), + (268833, 96, 5), + (268833, 97, 5), + (268833, 1, 1), + (268833, 128, 1), + (268833, 181, 1), + (268833, 19, 1), + (268833, 21, 1), + (268834, 90, 800), + (268834, 91, 800), + (268834, 92, 1200), + (268834, 93, 1200), + (268834, 94, 1200), + (268834, 95, 1200), + (268834, 96, 1200), + (268834, 97, 1200), + (268834, 1, 100), + (268834, 128, 16), + (268834, 181, 16), + (268834, 19, 22), + (268834, 21, 15), + (268836, 90, 4), + (268836, 91, 4), + (268836, 92, 5), + (268836, 93, 5), + (268836, 94, 5), + (268836, 95, 5), + (268836, 96, 5), + (268836, 97, 5), + (268836, 1, 2), + (268836, 149, 2), + (268836, 221, 5), + (268836, 181, 1), + (268836, 318, -1), + (268836, 18, 1), + (268836, 131, 1), + (268837, 90, 1200), + (268837, 91, 1200), + (268837, 92, 1800), + (268837, 93, 1800), + (268837, 94, 1800), + (268837, 95, 1800), + (268837, 96, 1800), + (268837, 97, 1800), + (268837, 1, 200), + (268837, 149, 50), + (268837, 221, 375), + (268837, 181, 16), + (268837, 318, -5), + (268837, 18, 22), + (268837, 131, 16), + (268838, 90, 4), + (268838, 91, 4), + (268838, 92, 5), + (268838, 93, 5), + (268838, 94, 5), + (268838, 95, 5), + (268838, 96, 5), + (268838, 97, 5), + (268838, 1, 1), + (268838, 155, 1), + (268838, 130, 1), + (268838, 20, 1), + (268839, 90, 200), + (268839, 91, 200), + (268839, 92, 250), + (268839, 93, 250), + (268839, 94, 250), + (268839, 95, 250), + (268839, 96, 250), + (268839, 97, 250), + (268839, 1, 125), + (268839, 155, 24), + (268839, 130, 16), + (268839, 20, 15), + (268840, 90, 4), + (268840, 91, 4), + (268840, 92, 5), + (268840, 93, 5), + (268840, 94, 5), + (268840, 95, 5), + (268840, 96, 5), + (268840, 97, 5), + (268840, 1, 1), + (268840, 154, 1), + (268840, 127, 1), + (268840, 21, 1), + (268840, 19, 1), + (268841, 90, 250), + (268841, 91, 250), + (268841, 92, 300), + (268841, 93, 300), + (268841, 94, 300), + (268841, 95, 300), + (268841, 96, 300), + (268841, 97, 300), + (268841, 1, 125), + (268841, 154, 12), + (268841, 127, 8), + (268841, 21, 14), + (268841, 19, 11), + (268842, 90, 4), + (268842, 91, 4), + (268842, 92, 5), + (268842, 93, 5), + (268842, 94, 5), + (268842, 95, 5), + (268842, 96, 5), + (268842, 97, 5), + (268842, 1, 2), + (268842, 129, 1), + (268842, 17, 1), + (268842, 181, 1), + (268843, 90, 750), + (268843, 91, 750), + (268843, 92, 900), + (268843, 93, 900), + (268843, 94, 900), + (268843, 95, 900), + (268843, 96, 900), + (268843, 97, 900), + (268843, 1, 175), + (268843, 129, 16), + (268843, 17, 22), + (268843, 181, 12), + (268844, 90, 4), + (268844, 91, 4), + (268844, 92, 5), + (268844, 93, 5), + (268844, 94, 5), + (268844, 95, 5), + (268844, 96, 5), + (268844, 97, 5), + (268844, 1, 2), + (268844, 154, 1), + (268844, 122, 1), + (268844, 16, 1), + (268845, 90, 300), + (268845, 91, 300), + (268845, 92, 400), + (268845, 93, 400), + (268845, 94, 400), + (268845, 95, 400), + (268845, 96, 400), + (268845, 97, 400), + (268845, 1, 175), + (268845, 154, 24), + (268845, 122, 16), + (268845, 16, 15), + (268848, 90, 5), + (268848, 91, 5), + (268848, 92, 4), + (268848, 93, 5), + (268848, 94, 5), + (268848, 95, 4), + (268848, 96, 5), + (268848, 97, 4), + (268848, 1, 1), + (268848, 181, 1), + (268848, 19, 1), + (268849, 90, 1200), + (268849, 91, 1200), + (268849, 92, 800), + (268849, 93, 1200), + (268849, 94, 1200), + (268849, 95, 800), + (268849, 96, 1200), + (268849, 97, 800), + (268849, 1, 100), + (268849, 181, 16), + (268849, 19, 22), + (268850, 90, 5), + (268850, 91, 5), + (268850, 92, 4), + (268850, 93, 5), + (268850, 94, 5), + (268850, 95, 4), + (268850, 96, 5), + (268850, 97, 4), + (268850, 1, 2), + (268850, 120, 2), + (268850, 118, 2), + (268850, 18, 1), + (268850, 181, 1), + (268850, 221, 5), + (268851, 90, 1800), + (268851, 91, 1800), + (268851, 92, 1200), + (268851, 93, 1800), + (268851, 94, 1800), + (268851, 95, 1200), + (268851, 96, 1800), + (268851, 97, 1200), + (268851, 1, 200), + (268851, 120, 50), + (268851, 118, 50), + (268851, 18, 22), + (268851, 181, 16), + (268851, 221, 375), + (268852, 90, 5), + (268852, 91, 5), + (268852, 92, 4), + (268852, 93, 5), + (268852, 94, 5), + (268852, 95, 4), + (268852, 96, 5), + (268852, 97, 4), + (268852, 1, 1), + (268852, 106, 1), + (268852, 20, 1), + (268852, 17, 1), + (268852, 155, 1), + (268852, 111, 1), + (268853, 90, 250), + (268853, 91, 250), + (268853, 92, 200), + (268853, 93, 250), + (268853, 94, 250), + (268853, 95, 200), + (268853, 96, 250), + (268853, 97, 200), + (268853, 1, 125), + (268853, 106, 16), + (268853, 20, 15), + (268853, 17, 17), + (268853, 155, 30), + (268853, 111, 16), + (268854, 90, 5), + (268854, 91, 5), + (268854, 92, 4), + (268854, 93, 5), + (268854, 94, 5), + (268854, 95, 4), + (268854, 96, 5), + (268854, 97, 4), + (268854, 1, 1), + (268854, 103, 1), + (268854, 102, 1), + (268854, 21, 1), + (268854, 154, 1), + (268855, 90, 300), + (268855, 91, 300), + (268855, 92, 250), + (268855, 93, 300), + (268855, 94, 300), + (268855, 95, 250), + (268855, 96, 300), + (268855, 97, 250), + (268855, 1, 125), + (268855, 103, 16), + (268855, 102, 16), + (268855, 21, 14), + (268855, 154, 6), + (268856, 90, 5), + (268856, 91, 5), + (268856, 92, 4), + (268856, 93, 5), + (268856, 94, 5), + (268856, 95, 4), + (268856, 96, 5), + (268856, 97, 4), + (268856, 1, 2), + (268856, 20, 1), + (268856, 17, 1), + (268856, 181, 1), + (268856, 100, 1), + (268857, 90, 900), + (268857, 91, 900), + (268857, 92, 750), + (268857, 93, 900), + (268857, 94, 900), + (268857, 95, 750), + (268857, 96, 900), + (268857, 97, 750), + (268857, 1, 175), + (268857, 20, 15), + (268857, 17, 22), + (268857, 181, 12), + (268857, 100, 16), + (268858, 90, 5), + (268858, 91, 5), + (268858, 92, 4), + (268858, 93, 5), + (268858, 94, 5), + (268858, 95, 4), + (268858, 96, 5), + (268858, 97, 4), + (268858, 1, 2), + (268858, 156, 1), + (268858, 153, 1), + (268858, 16, 1), + (268859, 90, 400), + (268859, 91, 400), + (268859, 92, 300), + (268859, 93, 400), + (268859, 94, 400), + (268859, 95, 300), + (268859, 96, 400), + (268859, 97, 300), + (268859, 1, 175), + (268859, 156, 24), + (268859, 153, 30), + (268859, 16, 15), + (268860, 90, 5), + (268860, 91, 5), + (268860, 92, 5), + (268860, 93, 4), + (268860, 94, 4), + (268860, 95, 5), + (268860, 96, 4), + (268860, 97, 5), + (268860, 1, 1), + (268860, 116, 1), + (268860, 181, 1), + (268860, 19, 1), + (268861, 90, 1200), + (268861, 91, 1200), + (268861, 92, 1200), + (268861, 93, 800), + (268861, 94, 800), + (268861, 95, 1200), + (268861, 96, 800), + (268861, 97, 1200), + (268861, 1, 100), + (268861, 116, 16), + (268861, 181, 16), + (268861, 19, 22), + (268862, 90, 5), + (268862, 91, 5), + (268862, 92, 5), + (268862, 93, 4), + (268862, 94, 4), + (268862, 95, 5), + (268862, 96, 4), + (268862, 97, 5), + (268862, 1, 2), + (268862, 119, 2), + (268862, 221, 5), + (268862, 181, 1), + (268862, 16, 1), + (268862, 18, 1), + (268862, 111, 1), + (268863, 90, 1800), + (268863, 91, 1800), + (268863, 92, 1800), + (268863, 93, 1200), + (268863, 94, 1200), + (268863, 95, 1800), + (268863, 96, 1200), + (268863, 97, 1800), + (268863, 1, 200), + (268863, 119, 50), + (268863, 221, 375), + (268863, 181, 16), + (268863, 16, 17), + (268863, 18, 22), + (268863, 111, 16), + (268864, 90, 5), + (268864, 91, 5), + (268864, 92, 5), + (268864, 93, 4), + (268864, 94, 4), + (268864, 95, 5), + (268864, 96, 4), + (268864, 97, 5), + (268864, 1, 1), + (268864, 115, 1), + (268864, 20, 1), + (268864, 17, 1), + (268864, 155, 1), + (268865, 90, 250), + (268865, 91, 250), + (268865, 92, 250), + (268865, 93, 200), + (268865, 94, 200), + (268865, 95, 250), + (268865, 96, 200), + (268865, 97, 250), + (268865, 1, 125), + (268865, 115, 16), + (268865, 20, 15), + (268865, 17, 17), + (268865, 155, 18), + (268866, 90, 5), + (268866, 91, 5), + (268866, 92, 5), + (268866, 93, 4), + (268866, 94, 4), + (268866, 95, 5), + (268866, 96, 4), + (268866, 97, 5), + (268866, 1, 1), + (268866, 114, 1), + (268866, 112, 1), + (268866, 21, 1), + (268866, 154, 1), + (268867, 90, 300), + (268867, 91, 300), + (268867, 92, 300), + (268867, 93, 250), + (268867, 94, 250), + (268867, 95, 300), + (268867, 96, 250), + (268867, 97, 300), + (268867, 1, 125), + (268867, 114, 8), + (268867, 112, 8), + (268867, 21, 14), + (268867, 154, 18), + (268868, 90, 5), + (268868, 91, 5), + (268868, 92, 5), + (268868, 93, 4), + (268868, 94, 4), + (268868, 95, 5), + (268868, 96, 4), + (268868, 97, 5), + (268868, 1, 2), + (268868, 113, 1), + (268868, 17, 1), + (268868, 181, 1), + (268869, 90, 900), + (268869, 91, 900), + (268869, 92, 900), + (268869, 93, 750), + (268869, 94, 750), + (268869, 95, 900), + (268869, 96, 750), + (268869, 97, 900), + (268869, 1, 175), + (268869, 113, 16), + (268869, 17, 22), + (268869, 181, 12), + (268870, 90, 5), + (268870, 91, 5), + (268870, 92, 5), + (268870, 93, 4), + (268870, 94, 4), + (268870, 95, 5), + (268870, 96, 4), + (268870, 97, 5), + (268870, 1, 2), + (268870, 153, 1), + (268870, 133, 1), + (268870, 16, 1), + (268871, 90, 400), + (268871, 91, 400), + (268871, 92, 400), + (268871, 93, 300), + (268871, 94, 300), + (268871, 95, 400), + (268871, 96, 300), + (268871, 97, 400), + (268871, 1, 175), + (268871, 153, 18), + (268871, 133, 16), + (268871, 16, 15), + (268872, 90, 5), + (268872, 91, 5), + (268872, 92, 5), + (268872, 93, 5), + (268872, 94, 5), + (268872, 95, 5), + (268872, 96, 5), + (268872, 97, 5), + (268872, 1, 1), + (268872, 181, 1), + (268872, 19, 1), + (268873, 90, 1200), + (268873, 91, 1200), + (268873, 92, 1200), + (268873, 93, 1200), + (268873, 94, 1200), + (268873, 95, 1200), + (268873, 96, 1200), + (268873, 97, 1200), + (268873, 1, 100), + (268873, 181, 16), + (268873, 19, 22), + (268874, 90, 5), + (268874, 91, 5), + (268874, 92, 5), + (268874, 93, 5), + (268874, 94, 5), + (268874, 95, 5), + (268874, 96, 5), + (268874, 97, 5), + (268874, 1, 2), + (268874, 107, 1), + (268874, 221, 5), + (268874, 181, 1), + (268874, 318, -1), + (268874, 16, 1), + (268874, 18, 1), + (268875, 90, 1800), + (268875, 91, 1800), + (268875, 92, 1800), + (268875, 93, 1800), + (268875, 94, 1800), + (268875, 95, 1800), + (268875, 96, 1800), + (268875, 97, 1800), + (268875, 1, 200), + (268875, 107, 16), + (268875, 221, 375), + (268875, 181, 16), + (268875, 318, -5), + (268875, 16, 17), + (268875, 18, 22), + (268876, 90, 5), + (268876, 91, 5), + (268876, 92, 5), + (268876, 93, 5), + (268876, 94, 5), + (268876, 95, 5), + (268876, 96, 5), + (268876, 97, 5), + (268876, 1, 1), + (268876, 155, 1), + (268876, 105, 1), + (268876, 20, 1), + (268877, 90, 250), + (268877, 91, 250), + (268877, 92, 250), + (268877, 93, 250), + (268877, 94, 250), + (268877, 95, 250), + (268877, 96, 250), + (268877, 97, 250), + (268877, 1, 125), + (268877, 155, 24), + (268877, 105, 16), + (268877, 20, 15), + (268878, 90, 5), + (268878, 91, 5), + (268878, 92, 5), + (268878, 93, 5), + (268878, 94, 5), + (268878, 95, 5), + (268878, 96, 5), + (268878, 97, 5), + (268878, 1, 1), + (268878, 154, 1), + (268878, 104, 1), + (268878, 21, 1), + (268879, 90, 300), + (268879, 91, 300), + (268879, 92, 300), + (268879, 93, 300), + (268879, 94, 300), + (268879, 95, 300), + (268879, 96, 300), + (268879, 97, 300), + (268879, 1, 125), + (268879, 154, 12), + (268879, 104, 8), + (268879, 21, 14), + (268880, 90, 5), + (268880, 91, 5), + (268880, 92, 5), + (268880, 93, 5), + (268880, 94, 5), + (268880, 95, 5), + (268880, 96, 5), + (268880, 97, 5), + (268880, 1, 2), + (268880, 109, 1), + (268880, 17, 1), + (268880, 181, 1), + (268880, 110, 1), + (268881, 90, 900), + (268881, 91, 900), + (268881, 92, 900), + (268881, 93, 900), + (268881, 94, 900), + (268881, 95, 900), + (268881, 96, 900), + (268881, 97, 900), + (268881, 1, 175), + (268881, 109, 16), + (268881, 17, 22), + (268881, 181, 12), + (268881, 110, 16), + (268882, 90, 5), + (268882, 91, 5), + (268882, 92, 5), + (268882, 93, 5), + (268882, 94, 5), + (268882, 95, 5), + (268882, 96, 5), + (268882, 97, 5), + (268882, 1, 2), + (268882, 143, 1), + (268882, 145, 1), + (268882, 16, 1), + (268882, 18, 1), + (268882, 153, 1), + (268883, 90, 400), + (268883, 91, 400), + (268883, 92, 400), + (268883, 93, 400), + (268883, 94, 400), + (268883, 95, 400), + (268883, 96, 400), + (268883, 97, 400), + (268883, 1, 175), + (268883, 143, 16), + (268883, 145, 16), + (268883, 16, 15), + (268883, 18, 15), + (268883, 153, 24), + (268884, 90, 5), + (268884, 91, 5), + (268884, 92, 5), + (268884, 93, 5), + (268884, 94, 5), + (268884, 95, 5), + (268884, 96, 5), + (268884, 97, 5), + (268884, 1, 1), + (268884, 391, 0), + (268884, 181, 1), + (268884, 19, 1), + (268885, 90, 1200), + (268885, 91, 1200), + (268885, 92, 1200), + (268885, 93, 1200), + (268885, 94, 1200), + (268885, 95, 1200), + (268885, 96, 1200), + (268885, 97, 1200), + (268885, 1, 100), + (268885, 391, 3), + (268885, 181, 16), + (268885, 19, 22), + (268886, 90, 5), + (268886, 91, 5), + (268886, 92, 5), + (268886, 93, 5), + (268886, 94, 5), + (268886, 95, 5), + (268886, 96, 5), + (268886, 97, 5), + (268886, 1, 2), + (268886, 18, 1), + (268886, 181, 1), + (268886, 221, 5), + (268887, 90, 1800), + (268887, 91, 1800), + (268887, 92, 1800), + (268887, 93, 1800), + (268887, 94, 1800), + (268887, 95, 1800), + (268887, 96, 1800), + (268887, 97, 1800), + (268887, 1, 200), + (268887, 18, 22), + (268887, 181, 16), + (268887, 221, 375), + (268888, 90, 5), + (268888, 91, 5), + (268888, 92, 5), + (268888, 93, 5), + (268888, 94, 5), + (268888, 95, 5), + (268888, 96, 5), + (268888, 97, 5), + (268888, 1, 1), + (268888, 155, 1), + (268888, 164, 1), + (268888, 20, 1), + (268889, 90, 250), + (268889, 91, 250), + (268889, 92, 250), + (268889, 93, 250), + (268889, 94, 250), + (268889, 95, 250), + (268889, 96, 250), + (268889, 97, 250), + (268889, 1, 125), + (268889, 155, 24), + (268889, 164, 32), + (268889, 20, 15), + (268890, 90, 5), + (268890, 91, 5), + (268890, 92, 5), + (268890, 93, 5), + (268890, 94, 5), + (268890, 95, 5), + (268890, 96, 5), + (268890, 97, 5), + (268890, 1, 1), + (268890, 154, 1), + (268890, 136, 1), + (268890, 21, 1), + (268890, 19, 1), + (268891, 90, 300), + (268891, 91, 300), + (268891, 92, 300), + (268891, 93, 300), + (268891, 94, 300), + (268891, 95, 300), + (268891, 96, 300), + (268891, 97, 300), + (268891, 1, 125), + (268891, 154, 12), + (268891, 136, 16), + (268891, 21, 14), + (268891, 19, 11), + (268892, 90, 5), + (268892, 91, 5), + (268892, 92, 5), + (268892, 93, 5), + (268892, 94, 5), + (268892, 95, 5), + (268892, 96, 5), + (268892, 97, 5), + (268892, 1, 2), + (268892, 20, 1), + (268892, 17, 1), + (268892, 181, 1), + (268893, 90, 900), + (268893, 91, 900), + (268893, 92, 900), + (268893, 93, 900), + (268893, 94, 900), + (268893, 95, 900), + (268893, 96, 900), + (268893, 97, 900), + (268893, 1, 175), + (268893, 20, 15), + (268893, 17, 22), + (268893, 181, 12), + (268894, 90, 5), + (268894, 91, 5), + (268894, 92, 5), + (268894, 93, 5), + (268894, 94, 5), + (268894, 95, 5), + (268894, 96, 5), + (268894, 97, 5), + (268894, 1, 2), + (268894, 18, 1), + (268894, 16, 1), + (268894, 156, 1), + (268894, 153, 1), + (268895, 90, 400), + (268895, 91, 400), + (268895, 92, 400), + (268895, 93, 400), + (268895, 94, 400), + (268895, 95, 400), + (268895, 96, 400), + (268895, 97, 400), + (268895, 1, 175), + (268895, 18, 15), + (268895, 16, 15), + (268895, 156, 24), + (268895, 153, 24), + (269184, 536, 1), + (269184, 381, 1), + (269185, 536, 5), + (269185, 381, 10), + (269186, 535, 1), + (269186, 381, 1), + (269187, 535, 5), + (269187, 381, 10), + (269188, 18, 1), + (269188, 16, 1), + (269189, 18, 20), + (269189, 16, 10), + (269190, 16, 1), + (269190, 18, 1), + (269191, 16, 20), + (269191, 18, 10), + (269192, 1, 5), + (269192, 90, 1), + (269192, 91, 1), + (269192, 92, 1), + (269192, 93, 1), + (269192, 94, 1), + (269192, 95, 1), + (269192, 96, 1), + (269192, 97, 1), + (269192, 149, 1), + (269192, 127, 1), + (269192, 128, 1), + (269192, 129, 1), + (269192, 130, 1), + (269192, 131, 1), + (269192, 122, 1), + (269193, 1, 280), + (269193, 90, 200), + (269193, 91, 200), + (269193, 92, 200), + (269193, 93, 200), + (269193, 94, 200), + (269193, 95, 200), + (269193, 96, 200), + (269193, 97, 200), + (269193, 149, 50), + (269193, 127, 20), + (269193, 128, 20), + (269193, 129, 20), + (269193, 130, 20), + (269193, 131, 20), + (269193, 122, 20), + (269194, 1, 5), + (269194, 90, 1), + (269194, 91, 1), + (269194, 92, 1), + (269194, 93, 1), + (269194, 94, 1), + (269194, 95, 1), + (269194, 96, 1), + (269194, 97, 1), + (269194, 17, 1), + (269194, 20, 1), + (269195, 1, 100), + (269195, 90, 50), + (269195, 91, 50), + (269195, 92, 50), + (269195, 93, 50), + (269195, 94, 50), + (269195, 95, 50), + (269195, 96, 50), + (269195, 97, 50), + (269195, 17, 20), + (269195, 20, 20), + (269196, 1, 5), + (269196, 90, 1), + (269196, 91, 1), + (269196, 92, 1), + (269196, 93, 1), + (269196, 94, 1), + (269196, 95, 1), + (269196, 96, 1), + (269196, 97, 1), + (269196, 16, 1), + (269196, 18, 1), + (269196, 111, 1), + (269197, 1, 180), + (269197, 90, 200), + (269197, 91, 200), + (269197, 92, 200), + (269197, 93, 200), + (269197, 94, 200), + (269197, 95, 200), + (269197, 96, 200), + (269197, 97, 200), + (269197, 16, 20), + (269197, 18, 20), + (269197, 111, 20), + (269198, 1, 5), + (269198, 90, 1), + (269198, 91, 1), + (269198, 92, 1), + (269198, 93, 1), + (269198, 94, 1), + (269198, 95, 1), + (269198, 96, 1), + (269198, 97, 1), + (269198, 102, 1), + (269198, 103, 1), + (269198, 107, 1), + (269198, 105, 1), + (269198, 142, 1), + (269198, 154, 1), + (269198, 155, 1), + (269199, 1, 280), + (269199, 90, 1200), + (269199, 91, 1200), + (269199, 92, 1200), + (269199, 93, 1200), + (269199, 94, 1200), + (269199, 95, 1200), + (269199, 96, 1200), + (269199, 97, 1200), + (269199, 102, 20), + (269199, 103, 20), + (269199, 107, 20), + (269199, 105, 20), + (269199, 142, 25), + (269199, 154, 25), + (269199, 155, 25), + (269200, 1, 5), + (269200, 90, 1), + (269200, 91, 1), + (269200, 92, 1), + (269200, 93, 1), + (269200, 94, 1), + (269200, 95, 1), + (269200, 96, 1), + (269200, 97, 1), + (269200, 101, 1), + (269200, 134, 1), + (269200, 108, 1), + (269200, 109, 1), + (269200, 110, 1), + (269200, 118, 1), + (269200, 119, 1), + (269200, 120, 1), + (269201, 1, 220), + (269201, 90, 350), + (269201, 91, 350), + (269201, 92, 350), + (269201, 93, 350), + (269201, 94, 350), + (269201, 95, 350), + (269201, 96, 350), + (269201, 97, 350), + (269201, 101, 25), + (269201, 134, 25), + (269201, 108, 25), + (269201, 109, 25), + (269201, 110, 25), + (269201, 118, 50), + (269201, 119, 50), + (269201, 120, 50), + (269202, 1, 5), + (269202, 90, 1), + (269202, 91, 1), + (269202, 92, 1), + (269202, 93, 1), + (269202, 94, 1), + (269202, 95, 1), + (269202, 96, 1), + (269202, 97, 1), + (269202, 112, 1), + (269202, 113, 1), + (269202, 114, 1), + (269202, 115, 1), + (269202, 116, 1), + (269202, 153, 1), + (269202, 154, 1), + (269203, 1, 280), + (269203, 90, 750), + (269203, 91, 750), + (269203, 92, 750), + (269203, 93, 750), + (269203, 94, 750), + (269203, 95, 750), + (269203, 96, 750), + (269203, 97, 750), + (269203, 112, 20), + (269203, 113, 20), + (269203, 114, 20), + (269203, 115, 20), + (269203, 116, 20), + (269203, 153, 25), + (269203, 154, 25), + (269204, 1, 5), + (269204, 90, 1), + (269204, 91, 1), + (269204, 92, 1), + (269204, 93, 1), + (269204, 94, 1), + (269204, 95, 1), + (269204, 96, 1), + (269204, 97, 1), + (269204, 100, 1), + (269204, 106, 1), + (269204, 104, 1), + (269204, 146, 1), + (269204, 147, 1), + (269204, 153, 1), + (269204, 155, 1), + (269205, 1, 250), + (269205, 90, 450), + (269205, 91, 450), + (269205, 92, 450), + (269205, 93, 450), + (269205, 94, 450), + (269205, 95, 450), + (269205, 96, 450), + (269205, 97, 450), + (269205, 100, 20), + (269205, 106, 20), + (269205, 104, 20), + (269205, 146, 25), + (269205, 147, 25), + (269205, 153, 25), + (269205, 155, 25), + (269401, 100, 10), + (269401, 102, 10), + (269401, 103, 10), + (269401, 104, 10), + (269401, 105, 10), + (269401, 106, 10), + (269401, 107, 10), + (269401, 109, 10), + (269401, 110, 10), + (269401, 111, 10), + (269401, 112, 10), + (269401, 113, 10), + (269401, 114, 10), + (269401, 115, 10), + (269401, 116, 10), + (269401, 133, 10), + (269402, 100, 30), + (269402, 102, 30), + (269402, 103, 30), + (269402, 104, 30), + (269402, 105, 30), + (269402, 106, 30), + (269402, 107, 30), + (269402, 109, 30), + (269402, 110, 30), + (269402, 111, 30), + (269402, 112, 30), + (269402, 113, 30), + (269402, 114, 30), + (269402, 115, 30), + (269402, 116, 30), + (269402, 133, 30), + (269403, 100, 75), + (269403, 102, 75), + (269403, 103, 75), + (269403, 104, 75), + (269403, 105, 75), + (269403, 106, 75), + (269403, 107, 75), + (269403, 109, 75), + (269403, 110, 75), + (269403, 111, 75), + (269403, 112, 75), + (269403, 113, 75), + (269403, 114, 75), + (269403, 115, 75), + (269403, 116, 75), + (269403, 133, 75), + (269404, 122, 30), + (269404, 127, 30), + (269404, 128, 30), + (269404, 129, 30), + (269404, 130, 30), + (269404, 131, 30), + (269405, 122, 75), + (269405, 127, 75), + (269405, 128, 75), + (269405, 129, 75), + (269405, 130, 75), + (269405, 131, 75), + (269406, 122, 10), + (269406, 127, 10), + (269406, 128, 10), + (269406, 129, 10), + (269406, 130, 10), + (269406, 131, 10), + (269407, 123, 10), + (269407, 124, 10), + (269407, 128, 10), + (269407, 535, 1), + (269408, 123, 50), + (269408, 124, 50), + (269408, 128, 50), + (269408, 535, 2), + (269409, 123, 100), + (269409, 124, 100), + (269409, 128, 100), + (269409, 535, 3), + (269410, 153, 50), + (269410, 154, 50), + (269410, 155, 50), + (269410, 277, 25), + (269411, 153, 100), + (269411, 154, 100), + (269411, 155, 100), + (269411, 277, 50), + (269412, 153, 10), + (269412, 154, 10), + (269412, 155, 10), + (269412, 277, 10), + (269413, 278, 75), + (269413, 279, 75), + (269413, 280, 75), + (269413, 281, 75), + (269413, 282, 75), + (269413, 311, 75), + (269413, 316, 75), + (269413, 317, 75), + (269413, 276, 40), + (269414, 278, 100), + (269414, 279, 100), + (269414, 280, 100), + (269414, 281, 100), + (269414, 282, 100), + (269414, 311, 100), + (269414, 316, 100), + (269414, 317, 100), + (269414, 276, 60), + (269415, 278, 20), + (269415, 279, 20), + (269415, 280, 20), + (269415, 281, 20), + (269415, 282, 20), + (269415, 311, 20), + (269415, 316, 20), + (269415, 317, 20), + (269415, 276, 10), + (269416, 1, 500), + (269416, 152, 15), + (269416, 16, 15), + (269416, 17, 15), + (269416, 18, 15), + (269416, 19, 15), + (269416, 20, 15), + (269416, 21, 15), + (269416, 132, 15), + (269417, 1, 1000), + (269417, 152, 25), + (269417, 16, 25), + (269417, 17, 25), + (269417, 18, 25), + (269417, 19, 25), + (269417, 20, 25), + (269417, 21, 25), + (269417, 132, 25), + (269418, 1, 150), + (269418, 152, 5), + (269418, 16, 5), + (269418, 17, 5), + (269418, 18, 5), + (269418, 19, 5), + (269418, 20, 5), + (269418, 21, 5), + (269418, 132, 5), + (269425, 136, 15), + (269443, 234, 1250), + (269443, 233, 1250), + (269443, 231, 1250), + (269443, 229, 1250), + (269443, 230, 1250), + (269443, 226, 1250), + (269443, 228, 1250), + (269443, 227, 1250), + (269448, 21, -20), + (269461, 226, 70), + (269461, 227, 70), + (269461, 228, 70), + (269461, 229, 70), + (269461, 230, 70), + (269461, 231, 70), + (269461, 233, 70), + (269461, 234, 70), + (269461, 95, 415), + (269461, 1, 510), + (269464, 278, 35), + (269464, 279, 35), + (269464, 280, 35), + (269464, 281, 35), + (269464, 282, 35), + (269464, 311, 35), + (269464, 316, 35), + (269464, 317, 35), + (269464, 119, 205), + (269472, 278, 220), + (269472, 279, 220), + (269472, 280, 220), + (269472, 281, 220), + (269472, 282, 220), + (269472, 311, 220), + (269472, 316, 220), + (269472, 317, 220), + (269472, 120, 400), + (269478, 1, 176), + (269483, 116, 100), + (269483, 113, 100), + (269483, 109, 100), + (269483, 110, 100), + (269483, 133, 100), + (269483, 114, 100), + (269511, 91, 295), + (269511, 90, 295), + (269511, 92, 295), + (269511, 97, 295), + (269511, 95, 295), + (269511, 94, 295), + (269511, 93, 295), + (269511, 96, 295), + (269511, 161, 50), + (269511, 118, 30), + (269511, 146, 13), + (269511, 147, 13), + (269511, 153, 13), + (269511, 164, 13), + (269511, 168, 13), + (269511, 319, 7), + (269513, 1, 150), + (269513, 118, -500), + (269513, 149, -150), + (269827, 20, 10), + (269827, 18, 10), + (269896, 90, 150), + (269896, 91, 150), + (269896, 93, 150), + (269896, 94, 150), + (269896, 95, 150), + (269896, 96, 150), + (269896, 97, 150), + (269896, 1, 250), + (269896, 221, 250), + (269897, 90, 200), + (269897, 91, 200), + (269897, 93, 200), + (269897, 94, 200), + (269897, 95, 200), + (269897, 96, 200), + (269897, 97, 200), + (269897, 319, 1), + (269897, 1, 350), + (269897, 221, 350), + (269898, 90, 200), + (269898, 91, 200), + (269898, 93, 200), + (269898, 94, 200), + (269898, 95, 200), + (269898, 96, 200), + (269898, 97, 200), + (269898, 276, 5), + (269898, 319, 1), + (269898, 379, 1), + (269898, 278, 5), + (269898, 279, 5), + (269898, 280, 5), + (269898, 281, 5), + (269898, 282, 5), + (269898, 311, 5), + (269898, 316, 5), + (269898, 317, 5), + (269898, 1, 350), + (269898, 221, 350), + (269899, 90, 400), + (269899, 91, 400), + (269899, 93, 400), + (269899, 94, 400), + (269899, 95, 400), + (269899, 96, 400), + (269899, 97, 400), + (269899, 276, 10), + (269899, 277, 15), + (269899, 319, 1), + (269899, 379, 2), + (269899, 278, 10), + (269899, 279, 10), + (269899, 280, 10), + (269899, 281, 10), + (269899, 282, 10), + (269899, 311, 10), + (269899, 316, 10), + (269899, 317, 10), + (269899, 1, 400), + (269899, 221, 400), + (269900, 90, 400), + (269900, 91, 400), + (269900, 93, 400), + (269900, 94, 400), + (269900, 95, 400), + (269900, 96, 400), + (269900, 97, 400), + (269900, 276, 5), + (269900, 277, 15), + (269900, 319, 1), + (269900, 535, 2), + (269900, 1, 400), + (269900, 221, 400), + (269900, 122, 10), + (269900, 127, 10), + (269900, 128, 10), + (269900, 129, 10), + (269900, 130, 10), + (269900, 131, 10), + (269900, 149, 40), + (269901, 90, 200), + (269901, 91, 200), + (269901, 93, 200), + (269901, 94, 200), + (269901, 95, 200), + (269901, 96, 200), + (269901, 97, 200), + (269901, 276, 10), + (269901, 319, 1), + (269901, 1, 350), + (269901, 221, 350), + (269901, 122, 5), + (269901, 127, 5), + (269901, 128, 5), + (269901, 129, 5), + (269901, 130, 5), + (269901, 131, 5), + (269901, 149, 20), + (269902, 90, 200), + (269902, 91, 200), + (269902, 93, 200), + (269902, 94, 200), + (269902, 95, 200), + (269902, 96, 200), + (269902, 97, 200), + (269902, 276, 5), + (269902, 319, 1), + (269902, 100, 5), + (269902, 142, 5), + (269902, 145, 5), + (269902, 146, 5), + (269902, 147, 5), + (269902, 379, 2), + (269902, 1, 350), + (269902, 221, 350), + (269903, 90, 400), + (269903, 91, 400), + (269903, 93, 400), + (269903, 94, 400), + (269903, 95, 400), + (269903, 96, 400), + (269903, 97, 400), + (269903, 276, 10), + (269903, 277, 15), + (269903, 319, 1), + (269903, 100, 10), + (269903, 142, 10), + (269903, 145, 10), + (269903, 146, 10), + (269903, 147, 10), + (269903, 379, 3), + (269903, 1, 400), + (269903, 221, 400), + (269985, 1, 200), + (269985, 181, 70), + (269985, 19, 6), + (269985, 21, 6), + (269985, 221, 200), + (269986, 1, 200), + (269986, 16, 6), + (269986, 18, 6), + (269986, 181, 70), + (269986, 221, 200), + (269987, 1, 200), + (269987, 17, 6), + (269987, 181, 70), + (269987, 20, 6), + (269987, 221, 200), + (269990, 153, 25), + (269990, 154, 25), + (269990, 155, 25), + (269990, 181, 70), + (269990, 277, 25), + (269993, 16, 25), + (269993, 18, 25), + (269993, 93, 2000), + (269993, 95, 2000), + (269993, 92, 2000), + (269993, 97, 2000), + (269993, 91, 2000), + (269993, 96, 2000), + (269993, 90, 2000), + (269993, 94, 2000), + (269993, 1, 500), + (269993, 221, 500), + (269993, 379, 2), + (269993, 278, 15), + (269993, 279, 15), + (269993, 280, 15), + (269993, 281, 15), + (269993, 282, 15), + (269993, 311, 15), + (269993, 316, 15), + (269993, 317, 15), + (269994, 93, 2000), + (269994, 95, 2000), + (269994, 92, 2000), + (269994, 97, 2000), + (269994, 91, 2000), + (269994, 96, 2000), + (269994, 90, 2000), + (269994, 94, 2000), + (269994, 1, 500), + (269994, 221, 500), + (269994, 122, 35), + (269994, 127, 35), + (269994, 128, 35), + (269994, 129, 35), + (269994, 130, 35), + (269994, 131, 35), + (269994, 318, -4), + (269996, 93, 500), + (269996, 95, 500), + (269996, 92, 500), + (269996, 97, 500), + (269996, 91, 500), + (269996, 96, 500), + (269996, 90, 500), + (269996, 94, 500), + (269996, 1, 150), + (269996, 17, 20), + (269996, 20, 20), + (269996, 221, 150), + (269996, 277, 20), + (269996, 379, 1), + (269997, 93, 1000), + (269997, 95, 1000), + (269997, 92, 1000), + (269997, 97, 1000), + (269997, 91, 1000), + (269997, 96, 1000), + (269997, 90, 1000), + (269997, 94, 1000), + (269997, 1, 200), + (269997, 181, 15), + (269997, 221, 200), + (269997, 277, 20), + (269997, 318, -1), + (269997, 379, 1), + (269997, 16, 22), + (269997, 17, 22), + (269997, 18, 22), + (269997, 19, 22), + (269997, 20, 22), + (269997, 21, 22), + (269999, 93, 975), + (269999, 95, 900), + (269999, 92, 900), + (269999, 97, 900), + (269999, 91, 975), + (269999, 96, 1500), + (269999, 90, 975), + (269999, 94, 50), + (269999, 1, 180), + (269999, 168, 20), + (269999, 160, 20), + (269999, 154, 20), + (269999, 162, 20), + (270236, 137, 350), + (270236, 168, 142), + (270247, 276, 74), + (270329, 90, 5), + (270329, 91, 5), + (270329, 92, 5), + (270329, 93, 5), + (270329, 94, 5), + (270329, 95, 5), + (270329, 96, 5), + (270329, 97, 5), + (270329, 1, 2), + (270329, 16, 1), + (270329, 17, 1), + (270329, 18, 1), + (270329, 19, 1), + (270329, 20, 1), + (270329, 21, 1), + (270329, 221, 2), + (270330, 90, 1400), + (270330, 91, 1400), + (270330, 92, 1400), + (270330, 93, 1400), + (270330, 94, 1400), + (270330, 95, 1400), + (270330, 96, 1400), + (270330, 97, 1400), + (270330, 1, 200), + (270330, 16, 10), + (270330, 17, 10), + (270330, 18, 10), + (270330, 19, 10), + (270330, 20, 10), + (270330, 21, 10), + (270330, 221, 200), + (270338, 90, 5), + (270338, 91, 5), + (270338, 92, 5), + (270338, 93, 5), + (270338, 94, 5), + (270338, 95, 5), + (270338, 96, 5), + (270338, 97, 5), + (270338, 1, 2), + (270338, 16, 1), + (270338, 17, 1), + (270338, 18, 1), + (270338, 19, 1), + (270338, 20, 1), + (270338, 21, 1), + (270338, 221, 2), + (270339, 90, 1400), + (270339, 91, 1400), + (270339, 92, 1400), + (270339, 93, 1400), + (270339, 94, 1400), + (270339, 95, 1400), + (270339, 96, 1400), + (270339, 97, 1400), + (270339, 1, 200), + (270339, 16, 10), + (270339, 17, 10), + (270339, 18, 10), + (270339, 19, 10), + (270339, 20, 10), + (270339, 21, 10), + (270339, 221, 200), + (270340, 90, 5), + (270340, 91, 5), + (270340, 92, 5), + (270340, 93, 5), + (270340, 94, 5), + (270340, 95, 5), + (270340, 96, 5), + (270340, 97, 5), + (270340, 1, 2), + (270340, 16, 1), + (270340, 17, 1), + (270340, 18, 1), + (270340, 19, 1), + (270340, 20, 1), + (270340, 21, 1), + (270340, 221, 2), + (270341, 90, 1400), + (270341, 91, 1400), + (270341, 92, 1400), + (270341, 93, 1400), + (270341, 94, 1400), + (270341, 95, 1400), + (270341, 96, 1400), + (270341, 97, 1400), + (270341, 1, 200), + (270341, 16, 10), + (270341, 17, 10), + (270341, 18, 10), + (270341, 19, 10), + (270341, 20, 10), + (270341, 21, 10), + (270341, 221, 200), + (270342, 90, 5), + (270342, 91, 5), + (270342, 92, 5), + (270342, 93, 5), + (270342, 94, 5), + (270342, 95, 5), + (270342, 96, 5), + (270342, 97, 5), + (270342, 1, 2), + (270342, 16, 1), + (270342, 17, 1), + (270342, 18, 1), + (270342, 19, 1), + (270342, 20, 1), + (270342, 21, 1), + (270342, 221, 2), + (270343, 90, 1400), + (270343, 91, 1400), + (270343, 92, 1400), + (270343, 93, 1400), + (270343, 94, 1400), + (270343, 95, 1400), + (270343, 96, 1400), + (270343, 97, 1400), + (270343, 1, 200), + (270343, 16, 10), + (270343, 17, 10), + (270343, 18, 10), + (270343, 19, 10), + (270343, 20, 10), + (270343, 21, 10), + (270343, 221, 200), + (270344, 90, 5), + (270344, 91, 5), + (270344, 92, 5), + (270344, 93, 5), + (270344, 94, 5), + (270344, 95, 5), + (270344, 96, 5), + (270344, 97, 5), + (270344, 1, 2), + (270344, 16, 1), + (270344, 17, 1), + (270344, 18, 1), + (270344, 19, 1), + (270344, 20, 1), + (270344, 21, 1), + (270344, 221, 2), + (270345, 90, 1400), + (270345, 91, 1400), + (270345, 92, 1400), + (270345, 93, 1400), + (270345, 94, 1400), + (270345, 95, 1400), + (270345, 96, 1400), + (270345, 97, 1400), + (270345, 1, 200), + (270345, 16, 10), + (270345, 17, 10), + (270345, 18, 10), + (270345, 19, 10), + (270345, 20, 10), + (270345, 21, 10), + (270345, 221, 200), + (270391, 20, 22), + (270392, 93, 500), + (270392, 95, 500), + (270392, 92, 500), + (270392, 97, 500), + (270392, 91, 500), + (270392, 96, 500), + (270392, 90, 450), + (270392, 94, 500), + (270392, 1, 200), + (270392, 221, 200), + (270392, 276, 5), + (270392, 318, -5), + (270392, 122, 20), + (270392, 127, 20), + (270392, 128, 20), + (270392, 129, 20), + (270392, 130, 20), + (270392, 131, 20), + (270392, 278, 15), + (270392, 279, 15), + (270392, 280, 15), + (270392, 281, 15), + (270392, 282, 15), + (270392, 311, 15), + (270392, 316, 15), + (270392, 317, 15), + (270393, 93, 400), + (270393, 95, 400), + (270393, 92, 400), + (270393, 97, 400), + (270393, 91, 400), + (270393, 96, 300), + (270393, 90, 400), + (270393, 94, 400), + (270393, 123, 75), + (270393, 128, 50), + (270393, 141, 20), + (270393, 159, 50), + (270393, 161, 50), + (270393, 163, 50), + (270393, 535, 1), + (270393, 1, 150), + (270393, 221, 150), + (270394, 93, 300), + (270394, 95, 300), + (270394, 92, 150), + (270394, 97, 300), + (270394, 91, 300), + (270394, 96, 300), + (270394, 90, 300), + (270394, 94, 150), + (270394, 1, 150), + (270394, 221, 150), + (270394, 122, 35), + (270394, 127, 35), + (270394, 128, 35), + (270394, 129, 35), + (270394, 130, 35), + (270394, 131, 35), + (270394, 318, -5), + (270432, 156, 150), + (270539, 156, 150), + (270541, 156, 150), + (270543, 156, 150), + (270545, 156, 150), + (270547, 156, 150), + (270633, 156, 150), + (270635, 156, 150), + (270642, 156, 150), + (270644, 156, 150), + (270646, 156, 800), + (270712, 156, 800), + (270732, 156, 800), + (270739, 156, 800), + (270746, 381, 5), + (270746, 380, 5), + (270746, 156, 50), + (270746, 391, 2), + (270750, 380, 5), + (270750, 156, 25), + (270750, 391, 2), + (270751, 380, 5), + (270751, 156, 25), + (270751, 391, 2), + (270752, 381, 5), + (270752, 380, 5), + (270752, 156, 25), + (270752, 391, 2), + (270753, 380, 5), + (270753, 156, 50), + (270753, 391, 2), + (270755, 381, 5), + (270755, 380, 5), + (270755, 156, 25), + (270755, 391, 2), + (270759, 380, 5), + (270759, 156, 25), + (270759, 391, 2), + (270761, 380, 5), + (270761, 156, 50), + (270761, 391, 2), + (270762, 380, 5), + (270762, 156, 50), + (270762, 391, 2), + (270763, 381, 5), + (270763, 380, 5), + (270763, 156, 50), + (270763, 391, 2), + (270765, 156, 800), + (270766, 381, 5), + (270766, 380, 5), + (270766, 156, 25), + (270766, 391, 2), + (270767, 380, 5), + (270767, 156, 50), + (270767, 391, 2), + (270768, 380, 5), + (270768, 156, 25), + (270768, 391, 2), + (270769, 381, 5), + (270769, 380, 5), + (270769, 156, 25), + (270769, 391, 2), + (270780, 156, 800), + (270799, 279, 65), + (270803, 153, 160), + (270803, 155, 160), + (270803, 154, 160), + (270805, 106, 200), + (270805, 101, 30), + (270805, 108, 140), + (270805, 279, 45), + (270805, 278, 45), + (270805, 280, 45), + (270805, 316, 45), + (270805, 311, 45), + (270805, 281, 45), + (270805, 317, 45), + (270805, 282, 45), + (270807, 108, 125), + (270807, 109, 125), + (270807, 110, 125), + (270807, 111, 125), + (270807, 112, 125), + (270807, 113, 125), + (270807, 114, 125), + (270807, 115, 125), + (270807, 116, 125), + (270807, 133, 125), + (270809, 153, 210), + (270809, 154, 210), + (270809, 155, 210), + (270837, 156, 800), + (270885, 156, 800), + (270940, 156, 800), + (270942, 156, 800), + (270944, 156, 800), + (270946, 156, 800), + (270983, 156, 800), + (270985, 156, 800), + (270987, 156, 800), + (270992, 156, 800), + (270994, 156, 800), + (270996, 156, 800), + (271048, 97, 1), + (271048, 94, 1), + (271048, 93, 1), + (271049, 97, 50), + (271049, 94, 50), + (271049, 93, 50), + (271050, 97, 1), + (271050, 94, 1), + (271050, 93, 1), + (271051, 97, 50), + (271051, 94, 50), + (271051, 93, 50), + (271052, 97, 1), + (271052, 94, 1), + (271052, 93, 1), + (271053, 97, 50), + (271053, 94, 50), + (271053, 93, 50), + (271054, 97, 1), + (271054, 94, 1), + (271054, 93, 1), + (271055, 97, 50), + (271055, 94, 50), + (271055, 93, 50), + (271056, 97, 1), + (271056, 94, 1), + (271056, 93, 1), + (271057, 97, 50), + (271057, 94, 50), + (271057, 93, 50), + (271058, 92, 1), + (271058, 91, 1), + (271058, 90, 1), + (271059, 92, 50), + (271059, 91, 50), + (271059, 90, 50), + (271060, 92, 1), + (271060, 91, 1), + (271060, 90, 1), + (271061, 92, 50), + (271061, 91, 50), + (271061, 90, 50), + (271062, 92, 1), + (271062, 91, 1), + (271062, 90, 1), + (271063, 92, 50), + (271063, 91, 50), + (271063, 90, 50), + (271064, 92, 1), + (271064, 91, 1), + (271064, 90, 1), + (271065, 92, 50), + (271065, 91, 50), + (271065, 90, 50), + (271066, 92, 1), + (271066, 91, 1), + (271066, 90, 1), + (271067, 92, 50), + (271067, 91, 50), + (271067, 90, 50), + (271129, 103, 1), + (271130, 103, 35), + (271131, 103, 1), + (271132, 103, 35), + (271133, 103, 1), + (271134, 103, 35), + (271135, 103, 1), + (271136, 103, 35), + (271137, 103, 1), + (271138, 103, 35), + (271139, 118, 1), + (271140, 118, 45), + (271141, 118, 1), + (271142, 118, 45), + (271143, 118, 1), + (271144, 118, 45), + (271145, 118, 1), + (271146, 118, 45), + (271147, 118, 1), + (271148, 118, 45), + (271199, 105, 1), + (271200, 105, 45), + (271201, 105, 1), + (271202, 105, 45), + (271203, 105, 1), + (271204, 105, 45), + (271205, 105, 1), + (271206, 105, 45), + (271207, 105, 1), + (271208, 105, 45), + (271219, 156, 1), + (271220, 156, 45), + (271221, 156, 1), + (271222, 156, 45), + (271223, 156, 1), + (271224, 156, 45), + (271225, 156, 1), + (271226, 156, 45), + (271227, 156, 1), + (271228, 156, 45), + (271335, 1, 5), + (271336, 1, 140), + (271337, 1, 5), + (271338, 1, 140), + (271339, 1, 5), + (271340, 1, 140), + (271341, 1, 5), + (271342, 1, 140), + (271343, 1, 5), + (271344, 1, 140), + (271441, 154, 1), + (271442, 154, 45), + (271443, 154, 1), + (271444, 154, 45), + (271445, 154, 1), + (271446, 154, 45), + (271447, 154, 1), + (271448, 154, 45), + (271497, 154, 1), + (271498, 154, 45), + (271499, 154, 1), + (271500, 154, 45), + (271501, 154, 1), + (271502, 154, 45), + (271503, 154, 1), + (271504, 154, 45), + (271649, 136, 1), + (271650, 136, 45), + (271653, 136, 1), + (271654, 136, 45), + (271655, 136, 1), + (271656, 136, 45), + (271657, 119, 1), + (271658, 119, 45), + (271661, 119, 1), + (271662, 119, 45), + (271663, 119, 1), + (271664, 119, 45), + (271673, 134, 1), + (271674, 134, 45), + (271677, 134, 1), + (271678, 134, 45), + (271679, 134, 1), + (271680, 134, 45), + (271814, 134, 1), + (271815, 134, 45), + (271818, 134, 1), + (271819, 134, 45), + (271820, 134, 1), + (271821, 134, 45), + (271822, 1, 1), + (271823, 1, 150), + (271826, 1, 1), + (271827, 1, 150), + (271828, 1, 1), + (271829, 1, 150), + (271935, 1, 1), + (271936, 1, 150), + (271939, 1, 1), + (271940, 1, 150), + (271941, 1, 1), + (271942, 1, 150), + (271986, 156, 150), + (272049, 156, 150), + (272150, 155, 1), + (272151, 155, 45), + (272152, 155, 1), + (272153, 155, 45), + (272154, 155, 1), + (272155, 155, 45), + (272156, 155, 1), + (272157, 155, 45), + (272158, 155, 1), + (272159, 155, 45), + (272372, 156, 250), + (272443, 91, 1155), + (272443, 90, 1155), + (272443, 92, 1155), + (272443, 97, 765), + (272443, 95, 1155), + (272443, 94, 765), + (272443, 93, 1155), + (272443, 96, 765), + (272443, 1, 480), + (272443, 277, 18), + (272443, 124, 4), + (272443, 123, 6), + (272443, 318, -5), + (272443, 16, 5), + (272443, 18, 5), + (272443, 17, 5), + (272443, 21, 5), + (272443, 20, 5), + (272443, 19, 5), + (272443, 155, 4), + (272443, 154, 4), + (272443, 153, 4), + (272443, 168, 4), + (272443, 136, 14), + (272443, 391, 1), + (272443, 536, 1), + (272443, 535, 1), + (272443, 181, 10), + (272443, 161, 12), + (272443, 343, 3), + (272443, 101, 13), + (272443, 134, 13), + (272444, 91, 1860), + (272444, 90, 1860), + (272444, 92, 1860), + (272444, 97, 1230), + (272444, 95, 1860), + (272444, 94, 1230), + (272444, 93, 1860), + (272444, 96, 1230), + (272444, 1, 900), + (272444, 277, 24), + (272444, 124, 8), + (272444, 123, 16), + (272444, 318, -5), + (272444, 16, 5), + (272444, 18, 5), + (272444, 17, 5), + (272444, 21, 5), + (272444, 20, 5), + (272444, 19, 5), + (272444, 155, 4), + (272444, 154, 4), + (272444, 153, 4), + (272444, 168, 4), + (272444, 136, 14), + (272444, 391, 1), + (272444, 536, 1), + (272444, 535, 1), + (272444, 181, 10), + (272444, 161, 12), + (272444, 343, 3), + (272444, 101, 13), + (272444, 134, 13), + (272445, 91, 705), + (272445, 90, 705), + (272445, 92, 705), + (272445, 97, 465), + (272445, 95, 705), + (272445, 94, 465), + (272445, 93, 705), + (272445, 96, 465), + (272445, 1, 360), + (272445, 277, 12), + (272445, 124, 4), + (272445, 123, 8), + (272445, 318, -3), + (272445, 16, 3), + (272445, 18, 3), + (272445, 17, 3), + (272445, 21, 3), + (272445, 20, 3), + (272445, 19, 3), + (272445, 155, 4), + (272445, 154, 4), + (272445, 153, 4), + (272445, 168, 4), + (272445, 136, 14), + (272445, 391, 1), + (272445, 536, 1), + (272445, 535, 1), + (272445, 181, 10), + (272445, 161, 12), + (272445, 343, 3), + (272445, 101, 13), + (272445, 134, 13), + (272446, 91, 503), + (272446, 90, 503), + (272446, 92, 503), + (272446, 97, 322), + (272446, 95, 503), + (272446, 94, 322), + (272446, 93, 503), + (272446, 96, 322), + (272446, 1, 240), + (272446, 277, 6), + (272446, 124, 4), + (272446, 123, 8), + (272446, 318, -3), + (272446, 16, 3), + (272446, 18, 3), + (272446, 17, 3), + (272446, 21, 3), + (272446, 20, 3), + (272446, 19, 3), + (272446, 155, 4), + (272446, 154, 4), + (272446, 153, 4), + (272446, 168, 4), + (272446, 136, 14), + (272446, 391, 1), + (272446, 536, 1), + (272446, 535, 1), + (272446, 181, 10), + (272446, 161, 12), + (272446, 343, 3), + (272446, 101, 13), + (272446, 134, 13), + (272447, 91, 375), + (272447, 90, 375), + (272447, 92, 375), + (272447, 97, 255), + (272447, 95, 375), + (272447, 94, 255), + (272447, 93, 375), + (272447, 96, 255), + (272447, 1, 180), + (272447, 277, 6), + (272447, 124, 4), + (272447, 123, 8), + (272447, 318, -3), + (272447, 16, 3), + (272447, 18, 3), + (272447, 17, 3), + (272447, 21, 3), + (272447, 20, 3), + (272447, 19, 3), + (272447, 155, 4), + (272447, 154, 4), + (272447, 153, 4), + (272447, 168, 4), + (272447, 136, 14), + (272447, 391, 1), + (272447, 536, 1), + (272447, 535, 1), + (272447, 181, 10), + (272447, 161, 12), + (272447, 343, 3), + (272447, 101, 13), + (272447, 134, 13), + (272448, 91, 1350), + (272448, 90, 1350), + (272448, 92, 1350), + (272448, 97, 885), + (272448, 95, 1350), + (272448, 94, 885), + (272448, 93, 1350), + (272448, 96, 885), + (272448, 1, 600), + (272448, 277, 15), + (272448, 124, 8), + (272448, 123, 16), + (272448, 318, -3), + (272448, 16, 5), + (272448, 18, 5), + (272448, 17, 5), + (272448, 21, 5), + (272448, 20, 5), + (272448, 155, 4), + (272448, 154, 4), + (272448, 19, 5), + (272448, 153, 4), + (272448, 168, 4), + (272448, 136, 14), + (272448, 391, 1), + (272448, 536, 1), + (272448, 535, 1), + (272448, 181, 10), + (272448, 161, 12), + (272448, 343, 3), + (272448, 101, 13), + (272448, 134, 13), + (272449, 91, 1155), + (272449, 90, 1155), + (272449, 92, 1155), + (272449, 97, 1155), + (272449, 95, 765), + (272449, 94, 765), + (272449, 93, 1155), + (272449, 96, 765), + (272449, 1, 480), + (272449, 276, 18), + (272449, 16, 5), + (272449, 18, 5), + (272449, 17, 5), + (272449, 21, 5), + (272449, 20, 5), + (272449, 19, 5), + (272449, 128, 5), + (272449, 127, 5), + (272449, 130, 5), + (272449, 131, 5), + (272449, 129, 5), + (272449, 122, 5), + (272449, 120, 14), + (272449, 118, 14), + (272449, 119, 14), + (272449, 149, 14), + (272449, 164, 14), + (272449, 391, 1), + (272449, 536, 1), + (272449, 535, 1), + (272449, 181, 10), + (272449, 161, 12), + (272449, 364, 3), + (272449, 101, 13), + (272449, 134, 13), + (272450, 91, 1860), + (272450, 90, 1860), + (272450, 92, 1860), + (272450, 97, 1860), + (272450, 95, 1230), + (272450, 94, 1230), + (272450, 93, 1860), + (272450, 96, 1230), + (272450, 1, 900), + (272450, 276, 24), + (272450, 16, 5), + (272450, 18, 5), + (272450, 17, 5), + (272450, 21, 5), + (272450, 20, 5), + (272450, 19, 5), + (272450, 128, 5), + (272450, 127, 5), + (272450, 130, 5), + (272450, 131, 5), + (272450, 129, 5), + (272450, 122, 5), + (272450, 120, 14), + (272450, 118, 14), + (272450, 119, 14), + (272450, 149, 14), + (272450, 164, 14), + (272450, 391, 1), + (272450, 536, 1), + (272450, 535, 1), + (272450, 181, 10), + (272450, 161, 12), + (272450, 364, 3), + (272450, 101, 13), + (272450, 134, 13), + (272451, 91, 705), + (272451, 90, 705), + (272451, 92, 705), + (272451, 97, 705), + (272451, 95, 465), + (272451, 94, 465), + (272451, 93, 705), + (272451, 96, 465), + (272451, 1, 360), + (272451, 276, 12), + (272451, 16, 3), + (272451, 18, 3), + (272451, 17, 3), + (272451, 21, 3), + (272451, 20, 3), + (272451, 19, 3), + (272451, 128, 3), + (272451, 127, 3), + (272451, 130, 3), + (272451, 131, 3), + (272451, 129, 3), + (272451, 122, 3), + (272451, 120, 14), + (272451, 118, 14), + (272451, 119, 14), + (272451, 149, 14), + (272451, 164, 14), + (272451, 391, 1), + (272451, 536, 1), + (272451, 535, 1), + (272451, 181, 10), + (272451, 161, 12), + (272451, 364, 3), + (272451, 101, 13), + (272451, 134, 13), + (272452, 91, 503), + (272452, 90, 503), + (272452, 92, 503), + (272452, 97, 503), + (272452, 95, 322), + (272452, 94, 322), + (272452, 93, 503), + (272452, 96, 322), + (272452, 1, 240), + (272452, 276, 6), + (272452, 16, 3), + (272452, 18, 3), + (272452, 17, 3), + (272452, 21, 3), + (272452, 20, 3), + (272452, 19, 3), + (272452, 128, 3), + (272452, 127, 3), + (272452, 130, 3), + (272452, 131, 3), + (272452, 129, 3), + (272452, 122, 3), + (272452, 120, 14), + (272452, 118, 14), + (272452, 119, 14), + (272452, 149, 14), + (272452, 164, 14), + (272452, 391, 1), + (272452, 536, 1), + (272452, 535, 1), + (272452, 181, 10), + (272452, 161, 12), + (272452, 364, 3), + (272452, 101, 13), + (272452, 134, 13), + (272453, 91, 375), + (272453, 90, 375), + (272453, 92, 375), + (272453, 97, 375), + (272453, 95, 255), + (272453, 94, 255), + (272453, 93, 375), + (272453, 96, 255), + (272453, 1, 180), + (272453, 276, 6), + (272453, 16, 3), + (272453, 18, 3), + (272453, 17, 3), + (272453, 21, 3), + (272453, 20, 3), + (272453, 19, 3), + (272453, 128, 3), + (272453, 127, 3), + (272453, 130, 3), + (272453, 131, 3), + (272453, 129, 3), + (272453, 122, 3), + (272453, 120, 14), + (272453, 118, 14), + (272453, 119, 14), + (272453, 149, 14), + (272453, 164, 14), + (272453, 391, 1), + (272453, 536, 1), + (272453, 535, 1), + (272453, 181, 10), + (272453, 161, 12), + (272453, 364, 3), + (272453, 101, 13), + (272453, 134, 13), + (272454, 91, 1350), + (272454, 90, 1350), + (272454, 92, 1350), + (272454, 97, 1350), + (272454, 95, 885), + (272454, 94, 885), + (272454, 93, 1350), + (272454, 96, 885), + (272454, 1, 600), + (272454, 276, 15), + (272454, 16, 5), + (272454, 18, 5), + (272454, 17, 5), + (272454, 21, 5), + (272454, 20, 5), + (272454, 120, 14), + (272454, 19, 5), + (272454, 118, 14), + (272454, 128, 5), + (272454, 127, 5), + (272454, 119, 14), + (272454, 149, 14), + (272454, 130, 5), + (272454, 131, 5), + (272454, 164, 14), + (272454, 129, 5), + (272454, 391, 1), + (272454, 122, 5), + (272454, 536, 1), + (272454, 535, 1), + (272454, 181, 10), + (272454, 161, 12), + (272454, 364, 3), + (272454, 101, 13), + (272454, 134, 13), + (273291, 226, 60), + (273291, 227, 60), + (273291, 228, 60), + (273291, 229, 60), + (273291, 230, 60), + (273291, 231, 60), + (273291, 233, 60), + (273291, 234, 60), + (273291, 1, 75), + (273291, 278, 20), + (273291, 279, 20), + (273291, 280, 20), + (273291, 281, 20), + (273291, 282, 20), + (273291, 311, 20), + (273291, 316, 20), + (273291, 317, 20), + (273291, 205, 4), + (273291, 206, 4), + (273291, 207, 4), + (273291, 208, 4), + (273291, 216, 4), + (273291, 217, 4), + (273291, 219, 4), + (273291, 225, 4), + (273295, 379, 23), + (273297, 360, -60), + (273297, 164, 800), + (273306, 1, 150), + (273306, 20, 15), + (273306, 319, 5), + (273323, 689, 20), + (273323, 1, 20000), + (273323, 16, 54), + (273323, 18, 54), + (273347, 125, 200), + (273347, 126, 200), + (273347, 157, 200), + (273347, 158, 200), + (273347, 159, 200), + (273347, 163, 200), + (273350, 277, 1000), + (273350, 168, 315), + (273350, 181, 100), + (273350, 1, 500), + (273350, 91, 1700), + (273350, 92, 1700), + (273350, 90, 1700), + (273350, 97, 1700), + (273350, 95, 1700), + (273350, 93, 1700), + (273350, 96, 1700), + (273350, 94, 1700), + (273350, 279, 60), + (273350, 280, 60), + (273350, 278, 60), + (273350, 316, 60), + (273350, 311, 60), + (273350, 281, 60), + (273350, 317, 60), + (273350, 282, 60), + (273356, 114, 201), + (273356, 148, 130), + (273356, 167, 130), + (273356, 134, 58), + (273356, 278, 18), + (273356, 279, 18), + (273356, 280, 18), + (273356, 281, 18), + (273356, 282, 18), + (273356, 311, 18), + (273356, 316, 18), + (273356, 317, 18), + (273356, 119, 60), + (273356, 153, 20), + (273356, 154, 20), + (273356, 155, 20), + (273358, 153, -250), + (273358, 154, -250), + (273358, 155, -250), + (273358, 180, 35), + (273366, 16, 80), + (273366, 18, 80), + (273366, 17, 40), + (273366, 20, 40), + (273366, 1, 980), + (273371, 111, 120), + (273371, 151, 120), + (273373, 118, 315), + (273373, 120, 315), + (273373, 149, 200), + (273377, 277, 800), + (273377, 168, 200), + (273377, 149, 500), + (273377, 96, 1010), + (273377, 94, 1010), + (273377, 93, 1010), + (273377, 95, 1010), + (273377, 97, 1010), + (273377, 90, 1010), + (273377, 92, 1010), + (273377, 91, 1010), + (273380, 19, 103), + (273380, 21, 103), + (273380, 129, 100), + (273380, 122, 100), + (273380, 131, 100), + (273380, 130, 100), + (273380, 128, 100), + (273380, 127, 100), + (273380, 168, 200), + (273381, 164, -35), + (273381, 277, 35), + (273394, 155, 140), + (273394, 153, 80), + (273394, 154, 80), + (273394, 17, 110), + (273394, 164, 100), + (273394, 156, 350), + (273396, 164, 750), + (273399, 1, 1200), + (273399, 343, 35), + (273399, 689, 5), + (273401, 225, 82), + (273401, 219, 82), + (273401, 217, 82), + (273401, 216, 82), + (273401, 208, 82), + (273401, 207, 82), + (273401, 206, 82), + (273401, 205, 82), + (273401, 483, 500), + (273401, 476, 500), + (273401, 477, 500), + (273401, 478, 500), + (273401, 479, 500), + (273401, 480, 500), + (273401, 482, 500), + (273401, 475, 500), + (273401, 535, 10), + (273401, 689, 10), + (273403, 167, 180), + (273403, 278, 25), + (273403, 279, 25), + (273403, 280, 25), + (273403, 281, 25), + (273403, 282, 25), + (273403, 311, 25), + (273403, 317, 25), + (273403, 316, 25), + (273403, 119, 45), + (273403, 153, 25), + (273403, 154, 25), + (273413, 125, 200), + (273413, 126, 200), + (273413, 157, 200), + (273413, 158, 200), + (273413, 159, 200), + (273469, 156, 800), + (273630, 1, 1998), + (273630, 16, 54), + (273630, 18, 54), + (273630, 360, 12), + (274153, 221, 100), + (274153, 1, 100), + (274153, 156, 100), + (274153, 161, 100), + (274153, 277, 12), + (274153, 124, 12), + (274153, 19, 5), + (274273, 156, 150), + (274374, 19, -1), + (274541, 364, 1), + (274541, 535, 1), + (274541, 1, 100), + (274541, 16, 2), + (274541, 17, 2), + (274541, 18, 2), + (274541, 19, 2), + (274541, 20, 2), + (274541, 21, 2), + (274541, 221, 100), + (274541, 276, 5), + (274541, 277, 5), + (274541, 278, 5), + (274541, 279, 5), + (274541, 280, 5), + (274541, 281, 5), + (274541, 282, 5), + (274541, 311, 5), + (274541, 316, 5), + (274541, 317, 5), + (274542, 364, 1), + (274542, 535, 1), + (274542, 1, 200), + (274542, 16, 4), + (274542, 17, 4), + (274542, 18, 4), + (274542, 19, 4), + (274542, 20, 4), + (274542, 21, 4), + (274542, 221, 200), + (274542, 276, 10), + (274542, 277, 10), + (274542, 278, 10), + (274542, 279, 10), + (274542, 280, 10), + (274542, 281, 10), + (274542, 282, 10), + (274542, 311, 10), + (274542, 316, 10), + (274542, 317, 10), + (274543, 364, 1), + (274543, 535, 1), + (274543, 1, 300), + (274543, 16, 6), + (274543, 17, 6), + (274543, 18, 6), + (274543, 19, 6), + (274543, 20, 6), + (274543, 21, 6), + (274543, 221, 300), + (274543, 276, 15), + (274543, 277, 15), + (274543, 278, 15), + (274543, 279, 15), + (274543, 280, 15), + (274543, 281, 15), + (274543, 282, 15), + (274543, 311, 15), + (274543, 316, 15), + (274543, 317, 15), + (274544, 364, 1), + (274544, 535, 1), + (274544, 1, 400), + (274544, 16, 8), + (274544, 17, 8), + (274544, 18, 8), + (274544, 19, 8), + (274544, 20, 8), + (274544, 21, 8), + (274544, 221, 400), + (274544, 276, 20), + (274544, 277, 20), + (274544, 278, 20), + (274544, 279, 20), + (274544, 280, 20), + (274544, 281, 20), + (274544, 282, 20), + (274544, 311, 20), + (274544, 316, 20), + (274544, 317, 20), + (274545, 364, 2), + (274545, 535, 2), + (274545, 1, 500), + (274545, 16, 10), + (274545, 17, 10), + (274545, 18, 10), + (274545, 19, 10), + (274545, 20, 10), + (274545, 21, 10), + (274545, 221, 500), + (274545, 276, 25), + (274545, 277, 25), + (274545, 278, 25), + (274545, 279, 25), + (274545, 280, 25), + (274545, 281, 25), + (274545, 282, 25), + (274545, 311, 25), + (274545, 316, 25), + (274545, 317, 25), + (274546, 364, 2), + (274546, 535, 2), + (274546, 1, 600), + (274546, 16, 12), + (274546, 17, 12), + (274546, 18, 12), + (274546, 19, 12), + (274546, 20, 12), + (274546, 21, 12), + (274546, 221, 600), + (274546, 276, 30), + (274546, 277, 30), + (274546, 278, 30), + (274546, 279, 30), + (274546, 280, 30), + (274546, 281, 30), + (274546, 282, 30), + (274546, 311, 30), + (274546, 316, 30), + (274546, 317, 30), + (274547, 364, 2), + (274547, 535, 2), + (274547, 1, 700), + (274547, 16, 14), + (274547, 17, 14), + (274547, 18, 14), + (274547, 19, 14), + (274547, 20, 14), + (274547, 21, 14), + (274547, 221, 700), + (274547, 276, 35), + (274547, 277, 35), + (274547, 278, 35), + (274547, 279, 35), + (274547, 280, 35), + (274547, 281, 35), + (274547, 282, 35), + (274547, 311, 35), + (274547, 316, 35), + (274547, 317, 35), + (274548, 364, 2), + (274548, 535, 2), + (274548, 1, 800), + (274548, 16, 16), + (274548, 17, 16), + (274548, 18, 16), + (274548, 19, 16), + (274548, 20, 16), + (274548, 21, 16), + (274548, 221, 800), + (274548, 276, 40), + (274548, 277, 40), + (274548, 278, 40), + (274548, 279, 40), + (274548, 280, 40), + (274548, 281, 40), + (274548, 282, 40), + (274548, 311, 40), + (274548, 316, 40), + (274548, 317, 40), + (274549, 364, 3), + (274549, 535, 3), + (274549, 1, 900), + (274549, 16, 18), + (274549, 17, 18), + (274549, 18, 18), + (274549, 19, 18), + (274549, 20, 18), + (274549, 21, 18), + (274549, 221, 900), + (274549, 276, 45), + (274549, 277, 45), + (274549, 278, 45), + (274549, 279, 45), + (274549, 280, 45), + (274549, 281, 45), + (274549, 282, 45), + (274549, 311, 45), + (274549, 316, 45), + (274549, 317, 45), + (274550, 364, 3), + (274550, 535, 3), + (274550, 1, 1000), + (274550, 16, 20), + (274550, 17, 20), + (274550, 18, 20), + (274550, 19, 20), + (274550, 20, 20), + (274550, 21, 20), + (274550, 221, 1000), + (274550, 276, 50), + (274550, 277, 50), + (274550, 278, 50), + (274550, 279, 50), + (274550, 280, 50), + (274550, 281, 50), + (274550, 282, 50), + (274550, 311, 50), + (274550, 316, 50), + (274550, 317, 50), + (274551, 364, 4), + (274551, 535, 4), + (274551, 1, 1200), + (274551, 16, 25), + (274551, 17, 25), + (274551, 18, 25), + (274551, 19, 25), + (274551, 20, 25), + (274551, 21, 25), + (274551, 221, 1200), + (274551, 276, 75), + (274551, 277, 75), + (274551, 278, 75), + (274551, 279, 75), + (274551, 280, 75), + (274551, 281, 75), + (274551, 282, 75), + (274551, 311, 75), + (274551, 316, 75), + (274551, 317, 75), + (274553, 277, 50), + (274554, 122, 50), + (274554, 127, 50), + (274554, 128, 50), + (274554, 129, 50), + (274554, 130, 50), + (274554, 131, 50), + (274555, 277, 50), + (274556, 1, 500), + (274556, 123, 60), + (274556, 168, 30), + (274556, 277, 50), + (274557, 141, 50), + (274557, 221, 420), + (274557, 1, 300), + (274557, 125, 40), + (274557, 126, 40), + (274557, 157, 40), + (274557, 160, 40), + (274557, 127, 10), + (274557, 130, 10), + (274557, 131, 10), + (274557, 181, 30), + (274557, 319, 3), + (274557, 91, 300), + (274557, 92, 300), + (274557, 93, 300), + (274557, 96, 300), + (274559, 125, 20), + (274559, 126, 20), + (274559, 157, 20), + (274559, 181, 20), + (274560, 125, 30), + (274560, 126, 30), + (274560, 157, 30), + (274560, 181, 25), + (274669, 91, 800), + (274669, 90, 800), + (274669, 92, 800), + (274669, 93, 800), + (274669, 94, 800), + (274669, 95, 800), + (274669, 96, 800), + (274669, 97, 800), + (274669, 1, 100), + (274669, 113, 11), + (274669, 133, 11), + (274669, 152, 11), + (274669, 115, 11), + (274669, 150, 11), + (274669, 151, 11), + (274669, 148, 11), + (274669, 114, 11), + (274669, 167, 11), + (274669, 116, 11), + (274669, 112, 11), + (274669, 134, 11), + (274669, 156, 50), + (274669, 129, 11), + (274669, 127, 11), + (274669, 122, 11), + (274669, 130, 11), + (274669, 128, 11), + (274669, 131, 11), + (274693, 91, 850), + (274693, 90, 850), + (274693, 92, 850), + (274693, 93, 850), + (274693, 94, 850), + (274693, 95, 850), + (274693, 96, 850), + (274693, 97, 850), + (274693, 1, 150), + (274693, 113, 12), + (274693, 133, 12), + (274693, 152, 12), + (274693, 115, 12), + (274693, 150, 12), + (274693, 151, 12), + (274693, 148, 12), + (274693, 114, 12), + (274693, 167, 12), + (274693, 116, 12), + (274693, 112, 12), + (274693, 134, 12), + (274693, 319, 1), + (274693, 156, 75), + (274693, 129, 12), + (274693, 127, 12), + (274693, 122, 12), + (274693, 130, 12), + (274693, 128, 12), + (274693, 131, 12), + (274694, 91, 900), + (274694, 90, 900), + (274694, 92, 900), + (274694, 93, 900), + (274694, 94, 900), + (274694, 95, 900), + (274694, 96, 900), + (274694, 97, 900), + (274694, 1, 200), + (274694, 113, 13), + (274694, 133, 13), + (274694, 152, 13), + (274694, 115, 13), + (274694, 150, 13), + (274694, 151, 13), + (274694, 148, 13), + (274694, 114, 13), + (274694, 167, 13), + (274694, 116, 13), + (274694, 112, 13), + (274694, 134, 13), + (274694, 319, 2), + (274694, 156, 100), + (274694, 129, 13), + (274694, 127, 13), + (274694, 122, 13), + (274694, 130, 13), + (274694, 128, 13), + (274694, 131, 13), + (274695, 91, 950), + (274695, 90, 950), + (274695, 92, 950), + (274695, 93, 950), + (274695, 94, 950), + (274695, 95, 950), + (274695, 96, 950), + (274695, 97, 950), + (274695, 1, 250), + (274695, 113, 14), + (274695, 133, 14), + (274695, 152, 14), + (274695, 115, 14), + (274695, 150, 14), + (274695, 151, 14), + (274695, 148, 14), + (274695, 114, 14), + (274695, 167, 14), + (274695, 116, 14), + (274695, 112, 14), + (274695, 134, 14), + (274695, 319, 2), + (274695, 156, 125), + (274695, 129, 14), + (274695, 127, 14), + (274695, 122, 14), + (274695, 130, 14), + (274695, 128, 14), + (274695, 131, 14), + (274696, 91, 1000), + (274696, 90, 1000), + (274696, 92, 1000), + (274696, 93, 1000), + (274696, 94, 1000), + (274696, 95, 1000), + (274696, 96, 1000), + (274696, 97, 1000), + (274696, 1, 300), + (274696, 113, 15), + (274696, 133, 15), + (274696, 152, 15), + (274696, 115, 15), + (274696, 150, 15), + (274696, 151, 15), + (274696, 148, 15), + (274696, 114, 15), + (274696, 167, 15), + (274696, 116, 15), + (274696, 112, 15), + (274696, 134, 15), + (274696, 319, 3), + (274696, 156, 150), + (274696, 129, 15), + (274696, 127, 15), + (274696, 122, 15), + (274696, 130, 15), + (274696, 128, 15), + (274696, 131, 15), + (274697, 91, 800), + (274697, 90, 800), + (274697, 92, 800), + (274697, 93, 800), + (274697, 94, 800), + (274697, 95, 800), + (274697, 96, 800), + (274697, 97, 800), + (274697, 1, 100), + (274697, 102, 11), + (274697, 103, 11), + (274697, 152, 11), + (274697, 106, 11), + (274697, 105, 11), + (274697, 107, 11), + (274697, 104, 11), + (274697, 145, 11), + (274697, 146, 11), + (274697, 147, 11), + (274697, 101, 11), + (274697, 100, 11), + (274697, 142, 11), + (274697, 144, 11), + (274697, 143, 11), + (274697, 156, 50), + (274697, 129, 11), + (274697, 127, 11), + (274697, 122, 11), + (274697, 130, 11), + (274697, 128, 11), + (274697, 131, 11), + (274699, 91, 850), + (274699, 90, 850), + (274699, 92, 850), + (274699, 93, 850), + (274699, 94, 850), + (274699, 95, 850), + (274699, 96, 850), + (274699, 97, 850), + (274699, 1, 150), + (274699, 102, 12), + (274699, 103, 12), + (274699, 152, 12), + (274699, 106, 12), + (274699, 105, 12), + (274699, 107, 12), + (274699, 104, 12), + (274699, 145, 12), + (274699, 146, 12), + (274699, 147, 12), + (274699, 101, 12), + (274699, 100, 12), + (274699, 142, 12), + (274699, 144, 12), + (274699, 143, 12), + (274699, 319, 1), + (274699, 156, 75), + (274699, 129, 12), + (274699, 127, 12), + (274699, 122, 12), + (274699, 130, 12), + (274699, 128, 12), + (274699, 131, 12), + (274700, 91, 900), + (274700, 90, 900), + (274700, 92, 900), + (274700, 93, 900), + (274700, 94, 900), + (274700, 95, 900), + (274700, 96, 900), + (274700, 97, 900), + (274700, 1, 200), + (274700, 102, 13), + (274700, 103, 13), + (274700, 152, 13), + (274700, 106, 13), + (274700, 105, 13), + (274700, 107, 13), + (274700, 104, 13), + (274700, 145, 13), + (274700, 146, 13), + (274700, 147, 13), + (274700, 101, 13), + (274700, 100, 13), + (274700, 142, 13), + (274700, 144, 13), + (274700, 143, 13), + (274700, 319, 2), + (274700, 156, 100), + (274700, 129, 13), + (274700, 127, 13), + (274700, 122, 13), + (274700, 130, 13), + (274700, 128, 13), + (274700, 131, 13), + (274701, 91, 950), + (274701, 90, 950), + (274701, 92, 950), + (274701, 93, 950), + (274701, 94, 950), + (274701, 95, 950), + (274701, 96, 950), + (274701, 97, 950), + (274701, 1, 250), + (274701, 102, 14), + (274701, 103, 14), + (274701, 152, 14), + (274701, 106, 14), + (274701, 105, 14), + (274701, 107, 14), + (274701, 104, 14), + (274701, 145, 14), + (274701, 146, 14), + (274701, 147, 14), + (274701, 101, 14), + (274701, 100, 14), + (274701, 142, 14), + (274701, 144, 14), + (274701, 143, 14), + (274701, 319, 2), + (274701, 156, 125), + (274701, 129, 14), + (274701, 127, 14), + (274701, 122, 14), + (274701, 130, 14), + (274701, 128, 14), + (274701, 131, 14), + (274702, 91, 1000), + (274702, 90, 1000), + (274702, 92, 1000), + (274702, 93, 1000), + (274702, 94, 1000), + (274702, 95, 1000), + (274702, 96, 1000), + (274702, 97, 1000), + (274702, 1, 300), + (274702, 102, 15), + (274702, 103, 15), + (274702, 152, 15), + (274702, 106, 15), + (274702, 105, 15), + (274702, 107, 15), + (274702, 104, 15), + (274702, 145, 15), + (274702, 146, 15), + (274702, 147, 15), + (274702, 101, 15), + (274702, 100, 15), + (274702, 142, 15), + (274702, 144, 15), + (274702, 143, 15), + (274702, 319, 3), + (274702, 156, 150), + (274702, 129, 15), + (274702, 127, 15), + (274702, 122, 15), + (274702, 130, 15), + (274702, 128, 15), + (274702, 131, 15), + (274703, 91, 800), + (274703, 90, 800), + (274703, 92, 800), + (274703, 93, 800), + (274703, 94, 800), + (274703, 95, 800), + (274703, 96, 800), + (274703, 97, 800), + (274703, 1, 50), + (274703, 221, 50), + (274703, 124, 4), + (274703, 123, 4), + (274703, 343, 2), + (274703, 129, 11), + (274703, 127, 11), + (274703, 122, 11), + (274703, 130, 11), + (274703, 128, 11), + (274703, 131, 11), + (274703, 149, 10), + (274704, 91, 850), + (274704, 90, 850), + (274704, 92, 850), + (274704, 93, 850), + (274704, 94, 850), + (274704, 95, 850), + (274704, 96, 850), + (274704, 97, 850), + (274704, 1, 100), + (274704, 221, 100), + (274704, 364, 5), + (274704, 124, 6), + (274704, 123, 6), + (274704, 343, 4), + (274704, 319, 1), + (274704, 156, 25), + (274704, 129, 12), + (274704, 127, 12), + (274704, 122, 12), + (274704, 130, 12), + (274704, 128, 12), + (274704, 131, 12), + (274704, 149, 15), + (274705, 91, 900), + (274705, 90, 900), + (274705, 92, 900), + (274705, 93, 900), + (274705, 94, 900), + (274705, 95, 900), + (274705, 96, 900), + (274705, 97, 900), + (274705, 1, 150), + (274705, 221, 150), + (274705, 364, 10), + (274705, 535, 1), + (274705, 124, 8), + (274705, 123, 8), + (274705, 152, 5), + (274705, 343, 6), + (274705, 319, 2), + (274705, 156, 50), + (274705, 129, 13), + (274705, 127, 13), + (274705, 122, 13), + (274705, 130, 13), + (274705, 128, 13), + (274705, 131, 13), + (274705, 149, 20), + (274706, 91, 950), + (274706, 90, 950), + (274706, 92, 950), + (274706, 93, 950), + (274706, 94, 950), + (274706, 95, 950), + (274706, 96, 950), + (274706, 97, 950), + (274706, 1, 200), + (274706, 221, 200), + (274706, 364, 15), + (274706, 535, 2), + (274706, 124, 10), + (274706, 123, 10), + (274706, 152, 10), + (274706, 343, 8), + (274706, 319, 2), + (274706, 156, 75), + (274706, 129, 14), + (274706, 127, 14), + (274706, 122, 14), + (274706, 130, 14), + (274706, 128, 14), + (274706, 131, 14), + (274706, 149, 35), + (274707, 91, 1000), + (274707, 90, 1000), + (274707, 92, 1000), + (274707, 93, 1000), + (274707, 94, 1000), + (274707, 95, 1000), + (274707, 96, 1000), + (274707, 97, 1000), + (274707, 1, 300), + (274707, 221, 300), + (274707, 364, 20), + (274707, 535, 3), + (274707, 124, 13), + (274707, 123, 13), + (274707, 152, 20), + (274707, 343, 10), + (274707, 319, 3), + (274707, 156, 100), + (274707, 129, 18), + (274707, 127, 18), + (274707, 122, 18), + (274707, 130, 18), + (274707, 128, 18), + (274707, 131, 18), + (274707, 149, 50), + (274708, 91, 800), + (274708, 90, 800), + (274708, 92, 800), + (274708, 93, 800), + (274708, 94, 800), + (274708, 95, 800), + (274708, 96, 800), + (274708, 97, 800), + (274708, 107, 11), + (274708, 147, 11), + (274708, 102, 11), + (274708, 112, 11), + (274708, 148, 11), + (274708, 150, 11), + (274708, 109, 11), + (274708, 121, 11), + (274708, 111, 11), + (274708, 129, 11), + (274708, 127, 11), + (274708, 122, 11), + (274708, 130, 11), + (274708, 128, 11), + (274708, 131, 11), + (274709, 91, 850), + (274709, 90, 850), + (274709, 92, 850), + (274709, 93, 850), + (274709, 94, 850), + (274709, 95, 850), + (274709, 96, 850), + (274709, 97, 850), + (274709, 107, 12), + (274709, 147, 12), + (274709, 102, 12), + (274709, 112, 12), + (274709, 148, 12), + (274709, 150, 12), + (274709, 109, 12), + (274709, 121, 12), + (274709, 111, 12), + (274709, 221, 50), + (274709, 364, 10), + (274709, 152, 5), + (274709, 319, 1), + (274709, 156, 25), + (274709, 129, 12), + (274709, 127, 12), + (274709, 122, 12), + (274709, 130, 12), + (274709, 128, 12), + (274709, 131, 12), + (274710, 91, 900), + (274710, 90, 900), + (274710, 92, 900), + (274710, 93, 900), + (274710, 94, 900), + (274710, 95, 900), + (274710, 96, 900), + (274710, 97, 900), + (274710, 1, 50), + (274710, 107, 13), + (274710, 147, 13), + (274710, 102, 13), + (274710, 112, 13), + (274710, 148, 13), + (274710, 150, 13), + (274710, 109, 13), + (274710, 121, 13), + (274710, 111, 13), + (274710, 221, 150), + (274710, 364, 15), + (274710, 152, 10), + (274710, 319, 2), + (274710, 156, 50), + (274710, 129, 13), + (274710, 127, 13), + (274710, 122, 13), + (274710, 130, 13), + (274710, 128, 13), + (274710, 131, 13), + (274711, 91, 950), + (274711, 90, 950), + (274711, 92, 950), + (274711, 93, 950), + (274711, 94, 950), + (274711, 95, 950), + (274711, 96, 950), + (274711, 97, 950), + (274711, 1, 75), + (274711, 107, 14), + (274711, 147, 14), + (274711, 102, 14), + (274711, 112, 14), + (274711, 148, 14), + (274711, 150, 14), + (274711, 109, 14), + (274711, 121, 14), + (274711, 111, 14), + (274711, 221, 200), + (274711, 364, 20), + (274711, 152, 15), + (274711, 319, 2), + (274711, 156, 100), + (274711, 129, 14), + (274711, 127, 14), + (274711, 122, 14), + (274711, 130, 14), + (274711, 128, 14), + (274711, 131, 14), + (274712, 91, 1000), + (274712, 90, 1000), + (274712, 92, 1000), + (274712, 93, 1000), + (274712, 94, 1000), + (274712, 95, 1000), + (274712, 96, 1000), + (274712, 97, 1000), + (274712, 1, 100), + (274712, 107, 15), + (274712, 147, 15), + (274712, 102, 15), + (274712, 112, 15), + (274712, 148, 15), + (274712, 150, 15), + (274712, 109, 15), + (274712, 121, 15), + (274712, 111, 15), + (274712, 221, 300), + (274712, 364, 25), + (274712, 152, 20), + (274712, 319, 3), + (274712, 156, 150), + (274712, 129, 18), + (274712, 127, 18), + (274712, 122, 18), + (274712, 130, 18), + (274712, 128, 18), + (274712, 131, 18), + (274713, 91, 800), + (274713, 90, 800), + (274713, 92, 800), + (274713, 93, 800), + (274713, 94, 800), + (274713, 95, 800), + (274713, 96, 800), + (274713, 97, 800), + (274713, 1, 50), + (274713, 112, 11), + (274713, 148, 11), + (274713, 150, 11), + (274713, 221, 100), + (274713, 364, 10), + (274713, 156, 15), + (274713, 129, 11), + (274713, 127, 11), + (274713, 122, 11), + (274713, 130, 11), + (274713, 128, 11), + (274713, 131, 11), + (274713, 149, 20), + (274714, 91, 850), + (274714, 90, 850), + (274714, 92, 850), + (274714, 93, 850), + (274714, 94, 850), + (274714, 95, 850), + (274714, 96, 850), + (274714, 97, 850), + (274714, 1, 100), + (274714, 112, 12), + (274714, 148, 12), + (274714, 150, 12), + (274714, 221, 150), + (274714, 364, 15), + (274714, 319, 1), + (274714, 156, 25), + (274714, 129, 12), + (274714, 127, 12), + (274714, 122, 12), + (274714, 130, 12), + (274714, 128, 12), + (274714, 131, 12), + (274714, 149, 30), + (274716, 91, 950), + (274716, 90, 950), + (274716, 92, 950), + (274716, 93, 950), + (274716, 94, 950), + (274716, 95, 950), + (274716, 96, 950), + (274716, 97, 950), + (274716, 1, 200), + (274716, 112, 14), + (274716, 148, 14), + (274716, 150, 14), + (274716, 318, -2), + (274716, 221, 250), + (274716, 364, 25), + (274716, 319, 2), + (274716, 156, 75), + (274716, 129, 16), + (274716, 127, 16), + (274716, 122, 16), + (274716, 130, 16), + (274716, 128, 16), + (274716, 131, 16), + (274716, 149, 50), + (274717, 91, 1000), + (274717, 90, 1000), + (274717, 92, 1000), + (274717, 93, 1000), + (274717, 94, 1000), + (274717, 95, 1000), + (274717, 96, 1000), + (274717, 97, 1000), + (274717, 1, 250), + (274717, 112, 15), + (274717, 148, 15), + (274717, 150, 15), + (274717, 318, -3), + (274717, 536, 1), + (274717, 221, 300), + (274717, 364, 30), + (274717, 319, 3), + (274717, 156, 100), + (274717, 129, 20), + (274717, 127, 20), + (274717, 122, 20), + (274717, 130, 20), + (274717, 128, 20), + (274717, 131, 20), + (274717, 149, 75), + (274718, 91, 800), + (274718, 90, 800), + (274718, 92, 800), + (274718, 93, 800), + (274718, 94, 800), + (274718, 95, 800), + (274718, 96, 800), + (274718, 97, 800), + (274718, 1, 50), + (274718, 154, 11), + (274718, 153, 11), + (274718, 155, 11), + (274718, 152, 5), + (274718, 343, 2), + (274718, 319, 1), + (274718, 156, 50), + (274718, 161, 15), + (274718, 129, 11), + (274718, 127, 11), + (274718, 122, 11), + (274718, 130, 11), + (274718, 128, 11), + (274718, 131, 11), + (274719, 91, 850), + (274719, 90, 850), + (274719, 92, 850), + (274719, 93, 850), + (274719, 94, 850), + (274719, 95, 850), + (274719, 96, 850), + (274719, 97, 850), + (274719, 1, 100), + (274719, 154, 13), + (274719, 153, 13), + (274719, 155, 13), + (274719, 152, 10), + (274719, 343, 4), + (274719, 319, 1), + (274719, 156, 75), + (274719, 161, 16), + (274719, 129, 12), + (274719, 127, 12), + (274719, 122, 12), + (274719, 130, 12), + (274719, 128, 12), + (274719, 131, 12), + (274720, 91, 900), + (274720, 90, 900), + (274720, 92, 900), + (274720, 93, 900), + (274720, 94, 900), + (274720, 95, 900), + (274720, 96, 900), + (274720, 97, 900), + (274720, 1, 150), + (274720, 154, 14), + (274720, 153, 14), + (274720, 155, 14), + (274720, 152, 15), + (274720, 343, 6), + (274720, 319, 2), + (274720, 156, 100), + (274720, 161, 17), + (274720, 129, 13), + (274720, 127, 13), + (274720, 122, 13), + (274720, 130, 13), + (274720, 128, 13), + (274720, 131, 13), + (274721, 91, 950), + (274721, 90, 950), + (274721, 92, 950), + (274721, 93, 950), + (274721, 94, 950), + (274721, 95, 950), + (274721, 96, 950), + (274721, 97, 950), + (274721, 1, 200), + (274721, 154, 15), + (274721, 153, 15), + (274721, 155, 15), + (274721, 152, 20), + (274721, 343, 8), + (274721, 319, 2), + (274721, 156, 125), + (274721, 161, 18), + (274721, 129, 14), + (274721, 127, 14), + (274721, 122, 14), + (274721, 130, 14), + (274721, 128, 14), + (274721, 131, 14), + (274722, 91, 1000), + (274722, 90, 1000), + (274722, 92, 1000), + (274722, 93, 1000), + (274722, 94, 1000), + (274722, 95, 1000), + (274722, 96, 1000), + (274722, 97, 1000), + (274722, 1, 300), + (274722, 154, 20), + (274722, 153, 20), + (274722, 155, 20), + (274722, 152, 25), + (274722, 343, 10), + (274722, 319, 3), + (274722, 156, 150), + (274722, 161, 20), + (274722, 129, 15), + (274722, 127, 15), + (274722, 122, 15), + (274722, 130, 15), + (274722, 128, 15), + (274722, 131, 15), + (274955, 221, 100), + (274956, 122, 15), + (274956, 127, 15), + (274956, 128, 15), + (274956, 129, 15), + (274956, 130, 15), + (274956, 131, 15), + (274956, 221, 200), + (274956, 90, 400), + (274956, 91, 400), + (274956, 92, 400), + (274956, 93, 400), + (274956, 94, 400), + (274956, 95, 400), + (274956, 96, 400), + (274956, 97, 400), + (274956, 318, -1), + (274957, 168, 40), + (274957, 19, 4), + (274957, 21, 4), + (274971, 181, 20), + (274971, 1, 50), + (274972, 45, 5), + (274972, 181, 12), + (274972, 1, 100), + (274973, 141, 50), + (274973, 221, 420), + (274973, 1, 300), + (274973, 125, 40), + (274973, 126, 40), + (274973, 157, 40), + (274973, 160, 40), + (274973, 127, 10), + (274973, 130, 10), + (274973, 131, 10), + (274973, 181, 30), + (274973, 319, 3), + (274973, 91, 300), + (274973, 92, 300), + (274973, 93, 300), + (274973, 96, 300), + (274974, 1, 100), + (274974, 146, 50), + (274976, 93, 500), + (274976, 95, 500), + (274976, 92, 500), + (274976, 97, 500), + (274976, 91, 500), + (274976, 96, 500), + (274976, 90, 450), + (274976, 94, 500), + (274976, 1, 200), + (274976, 221, 200), + (274976, 276, 5), + (274976, 318, -5), + (274976, 122, 25), + (274976, 127, 25), + (274976, 128, 25), + (274976, 129, 25), + (274976, 130, 25), + (274976, 131, 25), + (274977, 319, 1), + (274978, 1, 100), + (274978, 146, 50), + (274979, 319, 1), + (274987, 90, 2600), + (274987, 91, 2600), + (274987, 92, 2600), + (274987, 93, 2600), + (274987, 94, 2600), + (274987, 95, 2600), + (274987, 96, 2600), + (274987, 97, 2600), + (274987, 1, 500), + (274987, 101, 25), + (274987, 156, 100), + (274987, 168, 50), + (274987, 181, 25), + (274987, 277, 25), + (275008, 151, 395), + (275008, 113, 205), + (275017, 118, 240), + (275017, 119, 240), + (275017, 120, 240), + (275017, 149, 240), + (275017, 201, 80), + (275019, 149, 300), + (275019, 276, 300), + (275028, 116, 200), + (275028, 278, 20), + (275028, 279, 20), + (275028, 280, 20), + (275028, 281, 20), + (275028, 282, 20), + (275028, 311, 20), + (275028, 317, 20), + (275028, 316, 20), + (275028, 148, 50), + (275134, 1, 300), + (275139, 91, 900), + (275139, 90, 900), + (275139, 92, 900), + (275139, 93, 900), + (275139, 94, 900), + (275139, 95, 900), + (275139, 96, 900), + (275139, 97, 900), + (275139, 1, 150), + (275139, 112, 13), + (275139, 148, 13), + (275139, 150, 13), + (275139, 318, -1), + (275139, 221, 200), + (275139, 364, 20), + (275139, 319, 1), + (275139, 156, 50), + (275139, 129, 14), + (275139, 127, 14), + (275139, 122, 14), + (275139, 130, 14), + (275139, 128, 14), + (275139, 131, 14), + (275139, 149, 40), + (275334, 149, 3), + (275379, 1, 10), + (275379, 319, 1), + (275381, 1, 800), + (275381, 316, 80), + (275381, 280, 80), + (275381, 278, 80), + (275381, 282, 80), + (275381, 90, 1000), + (275381, 91, 1000), + (275381, 92, 1000), + (275381, 93, 1000), + (275381, 94, 1000), + (275381, 95, 1000), + (275381, 96, 1000), + (275381, 97, 1000), + (275412, 122, 15), + (275412, 127, 15), + (275412, 128, 15), + (275412, 129, 15), + (275412, 130, 15), + (275412, 131, 15), + (275412, 132, 40), + (275412, 221, 800), + (275412, 318, -17), + (275412, 90, 300), + (275412, 91, 300), + (275412, 92, 300), + (275412, 93, 300), + (275412, 94, 300), + (275412, 95, 300), + (275412, 96, 300), + (275412, 97, 300), + (275423, 221, 200), + (275423, 276, 20), + (275423, 277, 20), + (275423, 379, 2), + (275500, 127, 20), + (275500, 128, 20), + (275500, 129, 20), + (275500, 122, 20), + (275500, 131, 20), + (275500, 130, 20), + (275706, 379, 250), + (275706, 278, 65), + (275706, 279, 65), + (275706, 280, 65), + (275706, 281, 65), + (275706, 282, 65), + (275706, 311, 65), + (275706, 316, 65), + (275706, 317, 65), + (275706, 113, 20), + (275706, 151, 30), + (275706, 164, 15), + (275706, 168, 55), + (275706, 118, -1448), + (275706, 120, -1448), + (275706, 119, -1448), + (275706, 149, -1448), + (275706, 156, 400), + (275706, 168, 1200), + (275706, 689, -50), + (275706, 118, 500), + (275706, 119, 500), + (275706, 120, 500), + (275706, 149, 500), + (275706, 153, 110), + (275706, 155, 110), + (275706, 154, 110), + (275706, 119, 125), + (275848, 221, 300), + (275848, 318, -6), + (275851, 96, 1050), + (275851, 94, 1050), + (275851, 93, 1050), + (275851, 95, 1050), + (275851, 97, 1050), + (275851, 90, 1050), + (275851, 92, 1050), + (275851, 91, 1050), + (275851, 318, -14), + (275851, 221, 1000), + (275851, 536, 25), + (275854, 277, 500), + (275854, 154, -350), + (275854, 360, 60), + (275854, 276, 301), + (275854, 276, 130), + (275854, 105, 170), + (275854, 1, 100), + (275854, 104, 120), + (275854, 118, 100), + (275854, 17, 30), + (275854, 16, -70), + (275854, 153, 60), + (275854, 154, 60), + (275854, 155, 60), + (275854, 90, -900), + (275854, 91, -900), + (275854, 92, -900), + (275854, 93, -900), + (275854, 94, -900), + (275854, 95, -900), + (275854, 96, -900), + (275854, 97, -900), + (275854, 276, 120), + (275854, 101, 180), + (275854, 145, 100), + (275854, 100, 30), + (275854, 276, 30), + (275854, 277, 30), + (275854, 118, 150), + (275854, 133, 120), + (277042, 17, 1), + (277042, 181, 2), + (277043, 17, 2), + (277043, 181, 63), + (277044, 17, 3), + (277044, 181, 64), + (277045, 17, 4), + (277045, 181, 95), + (277046, 17, 5), + (277046, 181, 96), + (277047, 19, 1), + (277047, 181, 2), + (277048, 19, 2), + (277048, 181, 63), + (277049, 19, 3), + (277049, 181, 64), + (277050, 19, 4), + (277050, 181, 95), + (277051, 19, 5), + (277051, 181, 96), + (277052, 21, 1), + (277052, 181, 2), + (277053, 21, 2), + (277053, 181, 63), + (277054, 21, 3), + (277054, 181, 64), + (277055, 21, 4), + (277055, 181, 95), + (277056, 21, 5), + (277056, 181, 96), + (277057, 17, 1), + (277057, 19, 1), + (277057, 181, 2), + (277058, 17, 2), + (277058, 19, 2), + (277058, 181, 63), + (277059, 17, 3), + (277059, 19, 3), + (277059, 181, 64), + (277060, 17, 4), + (277060, 19, 4), + (277060, 181, 95), + (277061, 17, 5), + (277061, 19, 5), + (277061, 181, 96), + (277062, 17, 1), + (277062, 21, 1), + (277062, 181, 2), + (277063, 17, 2), + (277063, 21, 2), + (277063, 181, 63), + (277064, 17, 3), + (277064, 21, 3), + (277064, 181, 64), + (277065, 17, 4), + (277065, 21, 4), + (277065, 181, 95), + (277066, 17, 5), + (277066, 21, 5), + (277066, 181, 96), + (277067, 17, 1), + (277067, 20, 1), + (277067, 181, 2), + (277068, 17, 2), + (277068, 20, 2), + (277068, 181, 63), + (277069, 17, 3), + (277069, 20, 3), + (277069, 181, 64), + (277070, 17, 4), + (277070, 20, 4), + (277070, 181, 95), + (277071, 17, 5), + (277071, 20, 5), + (277071, 181, 96), + (277072, 17, 1), + (277072, 19, 1), + (277072, 21, 1), + (277072, 181, 2), + (277073, 17, 2), + (277073, 19, 2), + (277073, 21, 2), + (277073, 181, 63), + (277074, 17, 3), + (277074, 19, 3), + (277074, 21, 3), + (277074, 181, 64), + (277075, 17, 4), + (277075, 19, 4), + (277075, 21, 4), + (277075, 181, 95), + (277076, 17, 5), + (277076, 19, 5), + (277076, 21, 5), + (277076, 181, 96), + (277077, 17, 1), + (277077, 19, 1), + (277077, 20, 1), + (277077, 181, 2), + (277078, 17, 2), + (277078, 19, 2), + (277078, 20, 2), + (277078, 181, 63), + (277079, 17, 3), + (277079, 19, 3), + (277079, 20, 3), + (277079, 181, 64), + (277080, 17, 4), + (277080, 19, 4), + (277080, 20, 4), + (277080, 181, 95), + (277081, 17, 5), + (277081, 19, 5), + (277081, 20, 5), + (277081, 181, 96), + (277082, 17, 1), + (277082, 19, 1), + (277082, 18, 1), + (277082, 181, 2), + (277083, 17, 2), + (277083, 19, 2), + (277083, 18, 2), + (277083, 181, 63), + (277084, 17, 3), + (277084, 19, 3), + (277084, 18, 3), + (277084, 181, 64), + (277085, 17, 4), + (277085, 19, 4), + (277085, 18, 4), + (277085, 181, 95), + (277086, 17, 5), + (277086, 19, 5), + (277086, 18, 5), + (277086, 181, 96), + (277087, 17, 1), + (277087, 19, 1), + (277087, 16, 1), + (277087, 181, 2), + (277088, 17, 2), + (277088, 19, 2), + (277088, 16, 2), + (277088, 181, 63), + (277089, 17, 3), + (277089, 19, 3), + (277089, 16, 3), + (277089, 181, 64), + (277090, 17, 4), + (277090, 19, 4), + (277090, 16, 4), + (277090, 181, 95), + (277091, 17, 5), + (277091, 19, 5), + (277091, 16, 5), + (277091, 181, 96), + (277092, 17, 1), + (277092, 21, 1), + (277092, 20, 1), + (277092, 181, 2), + (277093, 17, 2), + (277093, 21, 2), + (277093, 20, 2), + (277093, 181, 63), + (277094, 17, 3), + (277094, 21, 3), + (277094, 20, 3), + (277094, 181, 64), + (277095, 17, 4), + (277095, 21, 4), + (277095, 20, 4), + (277095, 181, 95), + (277096, 17, 5), + (277096, 21, 5), + (277096, 20, 5), + (277096, 181, 96), + (277097, 17, 1), + (277097, 21, 1), + (277097, 18, 1), + (277097, 181, 2), + (277098, 17, 2), + (277098, 21, 2), + (277098, 18, 2), + (277098, 181, 63), + (277099, 17, 3), + (277099, 21, 3), + (277099, 18, 3), + (277099, 181, 64), + (277100, 17, 4), + (277100, 21, 4), + (277100, 18, 4), + (277100, 181, 95), + (277101, 17, 5), + (277101, 21, 5), + (277101, 18, 5), + (277101, 181, 96), + (277102, 17, 1), + (277102, 19, 1), + (277102, 21, 1), + (277102, 20, 1), + (277102, 181, 2), + (277103, 17, 2), + (277103, 19, 2), + (277103, 21, 2), + (277103, 20, 2), + (277103, 181, 63), + (277104, 17, 3), + (277104, 19, 3), + (277104, 21, 3), + (277104, 20, 3), + (277104, 181, 64), + (277105, 17, 4), + (277105, 19, 4), + (277105, 21, 4), + (277105, 20, 4), + (277105, 181, 95), + (277106, 17, 5), + (277106, 19, 5), + (277106, 21, 5), + (277106, 20, 5), + (277106, 181, 96), + (277107, 17, 1), + (277107, 19, 1), + (277107, 21, 1), + (277107, 18, 1), + (277107, 181, 2), + (277108, 17, 2), + (277108, 19, 2), + (277108, 21, 2), + (277108, 18, 2), + (277108, 181, 63), + (277109, 17, 3), + (277109, 19, 3), + (277109, 21, 3), + (277109, 18, 3), + (277109, 181, 64), + (277110, 17, 4), + (277110, 19, 4), + (277110, 21, 4), + (277110, 18, 4), + (277110, 181, 95), + (277111, 17, 5), + (277111, 19, 5), + (277111, 21, 5), + (277111, 18, 5), + (277111, 181, 96), + (277112, 17, 1), + (277112, 19, 1), + (277112, 21, 1), + (277112, 16, 1), + (277112, 181, 2), + (277113, 17, 2), + (277113, 19, 2), + (277113, 21, 2), + (277113, 16, 2), + (277113, 181, 63), + (277114, 17, 3), + (277114, 19, 3), + (277114, 21, 3), + (277114, 16, 3), + (277114, 181, 64), + (277115, 17, 4), + (277115, 19, 4), + (277115, 21, 4), + (277115, 16, 4), + (277115, 181, 95), + (277116, 17, 5), + (277116, 19, 5), + (277116, 21, 5), + (277116, 16, 5), + (277116, 181, 96), + (277117, 17, 1), + (277117, 19, 1), + (277117, 20, 1), + (277117, 18, 1), + (277117, 181, 2), + (277118, 17, 2), + (277118, 19, 2), + (277118, 20, 2), + (277118, 18, 2), + (277118, 181, 63), + (277119, 17, 3), + (277119, 19, 3), + (277119, 20, 3), + (277119, 18, 3), + (277119, 181, 64), + (277120, 17, 4), + (277120, 19, 4), + (277120, 20, 4), + (277120, 18, 4), + (277120, 181, 95), + (277121, 17, 5), + (277121, 19, 5), + (277121, 20, 5), + (277121, 18, 5), + (277121, 181, 96), + (277122, 17, 1), + (277122, 19, 1), + (277122, 20, 1), + (277122, 16, 1), + (277122, 181, 2), + (277123, 17, 2), + (277123, 19, 2), + (277123, 20, 2), + (277123, 16, 2), + (277123, 181, 63), + (277124, 17, 3), + (277124, 19, 3), + (277124, 20, 3), + (277124, 16, 3), + (277124, 181, 64), + (277125, 17, 4), + (277125, 19, 4), + (277125, 20, 4), + (277125, 16, 4), + (277125, 181, 95), + (277126, 17, 5), + (277126, 19, 5), + (277126, 20, 5), + (277126, 16, 5), + (277126, 181, 96), + (277127, 17, 1), + (277127, 19, 1), + (277127, 18, 1), + (277127, 16, 1), + (277127, 181, 2), + (277128, 17, 2), + (277128, 19, 2), + (277128, 18, 2), + (277128, 16, 2), + (277128, 181, 63), + (277129, 17, 3), + (277129, 19, 3), + (277129, 18, 3), + (277129, 16, 3), + (277129, 181, 64), + (277130, 17, 4), + (277130, 19, 4), + (277130, 18, 4), + (277130, 16, 4), + (277130, 181, 95), + (277131, 17, 5), + (277131, 19, 5), + (277131, 18, 5), + (277131, 16, 5), + (277131, 181, 96), + (277132, 17, 1), + (277132, 19, 1), + (277132, 21, 1), + (277132, 20, 1), + (277132, 18, 1), + (277132, 181, 2), + (277133, 17, 2), + (277133, 19, 2), + (277133, 21, 2), + (277133, 20, 2), + (277133, 18, 2), + (277133, 181, 63), + (277134, 17, 3), + (277134, 19, 3), + (277134, 21, 3), + (277134, 20, 3), + (277134, 18, 3), + (277134, 181, 64), + (277135, 17, 4), + (277135, 19, 4), + (277135, 21, 4), + (277135, 20, 4), + (277135, 18, 4), + (277135, 181, 95), + (277136, 17, 5), + (277136, 19, 5), + (277136, 21, 5), + (277136, 20, 5), + (277136, 18, 5), + (277136, 181, 96), + (277137, 17, 1), + (277137, 19, 1), + (277137, 21, 1), + (277137, 20, 1), + (277137, 16, 1), + (277138, 17, 2), + (277138, 19, 2), + (277138, 21, 2), + (277138, 20, 2), + (277138, 16, 2), + (277139, 17, 3), + (277139, 19, 3), + (277139, 21, 3), + (277139, 20, 3), + (277139, 16, 3), + (277140, 17, 4), + (277140, 19, 4), + (277140, 21, 4), + (277140, 20, 4), + (277140, 16, 4), + (277141, 17, 5), + (277141, 19, 5), + (277141, 21, 5), + (277141, 20, 5), + (277141, 16, 5), + (277142, 17, 1), + (277142, 19, 1), + (277142, 21, 1), + (277142, 18, 1), + (277142, 16, 1), + (277142, 181, 2), + (277143, 17, 2), + (277143, 19, 2), + (277143, 21, 2), + (277143, 18, 2), + (277143, 16, 2), + (277143, 181, 63), + (277144, 17, 3), + (277144, 19, 3), + (277144, 21, 3), + (277144, 18, 3), + (277144, 16, 3), + (277144, 181, 64), + (277145, 17, 4), + (277145, 19, 4), + (277145, 21, 4), + (277145, 18, 4), + (277145, 16, 4), + (277145, 181, 95), + (277146, 17, 5), + (277146, 19, 5), + (277146, 21, 5), + (277146, 18, 5), + (277146, 16, 5), + (277146, 181, 96), + (277147, 17, 1), + (277147, 19, 1), + (277147, 20, 1), + (277147, 18, 1), + (277147, 16, 1), + (277147, 181, 2), + (277148, 17, 2), + (277148, 19, 2), + (277148, 20, 2), + (277148, 18, 2), + (277148, 16, 2), + (277148, 181, 63), + (277149, 17, 3), + (277149, 19, 3), + (277149, 20, 3), + (277149, 18, 3), + (277149, 16, 3), + (277149, 181, 64), + (277150, 17, 4), + (277150, 19, 4), + (277150, 20, 4), + (277150, 18, 4), + (277150, 16, 4), + (277150, 181, 95), + (277151, 17, 5), + (277151, 19, 5), + (277151, 20, 5), + (277151, 18, 5), + (277151, 16, 5), + (277151, 181, 96), + (277152, 17, 1), + (277152, 21, 1), + (277152, 20, 1), + (277152, 18, 1), + (277152, 16, 1), + (277153, 17, 2), + (277153, 21, 2), + (277153, 20, 2), + (277153, 18, 2), + (277153, 16, 2), + (277154, 17, 3), + (277154, 21, 3), + (277154, 20, 3), + (277154, 18, 3), + (277154, 16, 3), + (277155, 17, 4), + (277155, 21, 4), + (277155, 20, 4), + (277155, 18, 4), + (277155, 16, 4), + (277156, 17, 5), + (277156, 21, 5), + (277156, 20, 5), + (277156, 18, 5), + (277156, 16, 5), + (277157, 19, 1), + (277157, 21, 1), + (277157, 20, 1), + (277157, 18, 1), + (277157, 16, 1), + (277157, 181, 2), + (277158, 19, 2), + (277158, 21, 2), + (277158, 20, 2), + (277158, 18, 2), + (277158, 16, 2), + (277158, 181, 63), + (277159, 19, 3), + (277159, 21, 3), + (277159, 20, 3), + (277159, 18, 3), + (277159, 16, 3), + (277159, 181, 64), + (277160, 19, 4), + (277160, 21, 4), + (277160, 20, 4), + (277160, 18, 4), + (277160, 16, 4), + (277160, 181, 95), + (277161, 19, 5), + (277161, 21, 5), + (277161, 20, 5), + (277161, 18, 5), + (277161, 16, 5), + (277161, 181, 96), + (277162, 17, 1), + (277162, 19, 1), + (277162, 21, 1), + (277162, 20, 1), + (277162, 18, 1), + (277162, 16, 1), + (277162, 181, 2), + (277163, 17, 2), + (277163, 19, 2), + (277163, 21, 2), + (277163, 20, 2), + (277163, 18, 2), + (277163, 16, 2), + (277163, 181, 63), + (277164, 17, 3), + (277164, 19, 3), + (277164, 21, 3), + (277164, 20, 3), + (277164, 18, 3), + (277164, 16, 3), + (277164, 181, 64), + (277165, 17, 4), + (277165, 19, 4), + (277165, 21, 4), + (277165, 20, 4), + (277165, 18, 4), + (277165, 16, 4), + (277165, 181, 95), + (277166, 17, 5), + (277166, 19, 5), + (277166, 21, 5), + (277166, 20, 5), + (277166, 18, 5), + (277166, 16, 5), + (277166, 181, 96), + (277183, 20, 1), + (277183, 181, 2), + (277184, 20, 2), + (277184, 181, 63), + (277185, 20, 3), + (277185, 181, 64), + (277186, 20, 4), + (277186, 181, 95), + (277187, 20, 5), + (277187, 181, 96), + (277188, 18, 1), + (277188, 181, 2), + (277189, 18, 2), + (277189, 181, 63), + (277190, 18, 3), + (277190, 181, 64), + (277191, 18, 4), + (277191, 181, 95), + (277192, 18, 5), + (277192, 181, 96), + (277193, 16, 1), + (277193, 181, 2), + (277194, 16, 2), + (277194, 181, 63), + (277195, 16, 3), + (277195, 181, 64), + (277196, 16, 4), + (277196, 181, 95), + (277197, 16, 5), + (277197, 181, 96), + (277198, 17, 1), + (277198, 18, 1), + (277198, 181, 2), + (277199, 17, 2), + (277199, 18, 2), + (277199, 181, 63), + (277200, 17, 3), + (277200, 18, 3), + (277200, 181, 64), + (277201, 17, 4), + (277201, 18, 4), + (277201, 181, 95), + (277202, 17, 5), + (277202, 18, 5), + (277202, 181, 96), + (277203, 17, 1), + (277203, 16, 1), + (277203, 181, 2), + (277204, 17, 2), + (277204, 16, 2), + (277204, 181, 63), + (277205, 17, 3), + (277205, 16, 3), + (277205, 181, 64), + (277206, 17, 4), + (277206, 16, 4), + (277206, 181, 95), + (277207, 17, 5), + (277207, 16, 5), + (277207, 181, 96), + (277208, 19, 1), + (277208, 21, 1), + (277208, 181, 2), + (277209, 19, 2), + (277209, 21, 2), + (277209, 181, 63), + (277210, 19, 3), + (277210, 21, 3), + (277210, 181, 64), + (277211, 19, 4), + (277211, 21, 4), + (277211, 181, 95), + (277212, 19, 5), + (277212, 21, 5), + (277212, 181, 96), + (277213, 19, 1), + (277213, 20, 1), + (277213, 181, 2), + (277214, 19, 2), + (277214, 20, 2), + (277214, 181, 63), + (277215, 19, 3), + (277215, 20, 3), + (277215, 181, 64), + (277216, 19, 4), + (277216, 20, 4), + (277216, 181, 95), + (277217, 19, 5), + (277217, 20, 5), + (277217, 181, 96), + (277218, 19, 1), + (277218, 18, 1), + (277218, 181, 2), + (277219, 19, 2), + (277219, 18, 2), + (277219, 181, 63), + (277220, 19, 3), + (277220, 18, 3), + (277220, 181, 64), + (277221, 19, 4), + (277221, 18, 4), + (277221, 181, 95), + (277222, 19, 5), + (277222, 18, 5), + (277222, 181, 96), + (277223, 19, 1), + (277223, 16, 1), + (277223, 181, 2), + (277224, 19, 2), + (277224, 16, 2), + (277224, 181, 63), + (277225, 19, 3), + (277225, 16, 3), + (277225, 181, 64), + (277226, 19, 4), + (277226, 16, 4), + (277226, 181, 95), + (277227, 19, 5), + (277227, 16, 5), + (277227, 181, 96), + (277228, 21, 1), + (277228, 20, 1), + (277228, 181, 2), + (277229, 21, 2), + (277229, 20, 2), + (277229, 181, 63), + (277230, 21, 3), + (277230, 20, 3), + (277230, 181, 64), + (277231, 21, 4), + (277231, 20, 4), + (277231, 181, 95), + (277232, 21, 5), + (277232, 20, 5), + (277232, 181, 96), + (277233, 21, 1), + (277233, 18, 1), + (277233, 181, 2), + (277234, 21, 2), + (277234, 18, 2), + (277234, 181, 63), + (277235, 21, 3), + (277235, 18, 3), + (277235, 181, 64), + (277236, 21, 4), + (277236, 18, 4), + (277236, 181, 95), + (277237, 21, 5), + (277237, 18, 5), + (277237, 181, 96), + (277238, 21, 1), + (277238, 16, 1), + (277238, 181, 2), + (277239, 21, 2), + (277239, 16, 2), + (277239, 181, 63), + (277240, 21, 3), + (277240, 16, 3), + (277240, 181, 64), + (277241, 21, 4), + (277241, 16, 4), + (277241, 181, 95), + (277242, 21, 5), + (277242, 16, 5), + (277242, 181, 96), + (277243, 20, 1), + (277243, 18, 1), + (277243, 181, 2), + (277244, 20, 2), + (277244, 18, 2), + (277244, 181, 63), + (277245, 20, 3), + (277245, 18, 3), + (277245, 181, 64), + (277246, 20, 4), + (277246, 18, 4), + (277246, 181, 95), + (277247, 20, 5), + (277247, 18, 5), + (277247, 181, 96), + (277248, 20, 1), + (277248, 16, 1), + (277248, 181, 2), + (277249, 20, 2), + (277249, 16, 2), + (277249, 181, 63), + (277250, 20, 3), + (277250, 16, 3), + (277250, 181, 64), + (277251, 20, 4), + (277251, 16, 4), + (277251, 181, 95), + (277252, 20, 5), + (277252, 16, 5), + (277252, 181, 96), + (277253, 18, 1), + (277253, 16, 1), + (277253, 181, 2), + (277254, 18, 2), + (277254, 16, 2), + (277254, 181, 63), + (277255, 18, 3), + (277255, 16, 3), + (277255, 181, 64), + (277256, 18, 4), + (277256, 16, 4), + (277256, 181, 95), + (277257, 18, 5), + (277257, 16, 5), + (277257, 181, 96), + (277262, 17, 1), + (277262, 21, 1), + (277262, 16, 1), + (277262, 181, 2), + (277263, 17, 2), + (277263, 21, 2), + (277263, 16, 2), + (277263, 181, 63), + (277264, 17, 3), + (277264, 21, 3), + (277264, 16, 3), + (277264, 181, 64), + (277265, 17, 4), + (277265, 21, 4), + (277265, 16, 4), + (277265, 181, 95), + (277266, 17, 5), + (277266, 21, 5), + (277266, 16, 5), + (277266, 181, 96), + (277267, 17, 1), + (277267, 20, 1), + (277267, 18, 1), + (277267, 181, 2), + (277268, 17, 2), + (277268, 20, 2), + (277268, 18, 2), + (277268, 181, 63), + (277269, 17, 3), + (277269, 20, 3), + (277269, 18, 3), + (277269, 181, 64), + (277270, 17, 4), + (277270, 20, 4), + (277270, 18, 4), + (277270, 181, 95), + (277271, 17, 5), + (277271, 20, 5), + (277271, 18, 5), + (277271, 181, 96), + (277272, 17, 1), + (277272, 20, 1), + (277272, 16, 1), + (277272, 181, 2), + (277273, 17, 2), + (277273, 20, 2), + (277273, 16, 2), + (277273, 181, 63), + (277274, 17, 3), + (277274, 20, 3), + (277274, 16, 3), + (277274, 181, 64), + (277275, 17, 4), + (277275, 20, 4), + (277275, 16, 4), + (277275, 181, 95), + (277276, 17, 5), + (277276, 20, 5), + (277276, 16, 5), + (277276, 181, 96), + (277277, 17, 1), + (277277, 18, 1), + (277277, 16, 1), + (277277, 181, 2), + (277278, 17, 2), + (277278, 18, 2), + (277278, 16, 2), + (277278, 181, 63), + (277279, 17, 3), + (277279, 18, 3), + (277279, 16, 3), + (277279, 181, 64), + (277280, 17, 4), + (277280, 18, 4), + (277280, 16, 4), + (277280, 181, 95), + (277281, 17, 5), + (277281, 18, 5), + (277281, 16, 5), + (277281, 181, 96), + (277282, 19, 1), + (277282, 21, 1), + (277282, 20, 1), + (277282, 181, 2), + (277283, 19, 2), + (277283, 21, 2), + (277283, 20, 2), + (277283, 181, 63), + (277284, 19, 3), + (277284, 21, 3), + (277284, 20, 3), + (277284, 181, 64), + (277285, 19, 4), + (277285, 21, 4), + (277285, 20, 4), + (277285, 181, 95), + (277286, 19, 5), + (277286, 21, 5), + (277286, 20, 5), + (277286, 181, 96), + (277287, 19, 1), + (277287, 21, 1), + (277287, 18, 1), + (277287, 181, 2), + (277288, 19, 2), + (277288, 21, 2), + (277288, 18, 2), + (277288, 181, 63), + (277289, 19, 3), + (277289, 21, 3), + (277289, 18, 3), + (277289, 181, 64), + (277290, 19, 4), + (277290, 21, 4), + (277290, 18, 4), + (277290, 181, 95), + (277291, 19, 5), + (277291, 21, 5), + (277291, 18, 5), + (277291, 181, 96), + (277292, 19, 1), + (277292, 21, 1), + (277292, 16, 1), + (277292, 181, 2), + (277293, 19, 2), + (277293, 21, 2), + (277293, 16, 2), + (277293, 181, 63), + (277294, 19, 3), + (277294, 21, 3), + (277294, 16, 3), + (277294, 181, 64), + (277295, 19, 4), + (277295, 21, 4), + (277295, 16, 4), + (277295, 181, 95), + (277296, 19, 5), + (277296, 21, 5), + (277296, 16, 5), + (277296, 181, 96), + (277297, 19, 1), + (277297, 20, 1), + (277297, 18, 1), + (277297, 181, 2), + (277298, 19, 2), + (277298, 20, 2), + (277298, 18, 2), + (277298, 181, 63), + (277299, 19, 3), + (277299, 20, 3), + (277299, 18, 3), + (277299, 181, 64), + (277300, 19, 4), + (277300, 20, 4), + (277300, 18, 4), + (277300, 181, 95), + (277301, 19, 5), + (277301, 20, 5), + (277301, 18, 5), + (277301, 181, 96), + (277302, 19, 1), + (277302, 20, 1), + (277302, 16, 1), + (277302, 181, 2), + (277303, 19, 2), + (277303, 20, 2), + (277303, 16, 2), + (277303, 181, 63), + (277304, 19, 3), + (277304, 20, 3), + (277304, 16, 3), + (277304, 181, 64), + (277305, 19, 4), + (277305, 20, 4), + (277305, 16, 4), + (277305, 181, 95), + (277306, 19, 5), + (277306, 20, 5), + (277306, 16, 5), + (277306, 181, 96), + (277307, 19, 1), + (277307, 18, 1), + (277307, 16, 1), + (277307, 181, 2), + (277308, 19, 2), + (277308, 18, 2), + (277308, 16, 2), + (277308, 181, 63), + (277309, 19, 3), + (277309, 18, 3), + (277309, 16, 3), + (277309, 181, 64), + (277310, 19, 4), + (277310, 18, 4), + (277310, 16, 4), + (277310, 181, 95), + (277311, 19, 5), + (277311, 18, 5), + (277311, 16, 5), + (277311, 181, 96), + (277312, 21, 1), + (277312, 20, 1), + (277312, 18, 1), + (277312, 181, 2), + (277313, 21, 2), + (277313, 20, 2), + (277313, 18, 2), + (277313, 181, 63), + (277314, 21, 3), + (277314, 20, 3), + (277314, 18, 3), + (277314, 181, 64), + (277315, 21, 4), + (277315, 20, 4), + (277315, 18, 4), + (277315, 181, 95), + (277316, 21, 5), + (277316, 20, 5), + (277316, 18, 5), + (277316, 181, 96), + (277317, 21, 1), + (277317, 20, 1), + (277317, 16, 1), + (277317, 181, 2), + (277318, 21, 2), + (277318, 20, 2), + (277318, 16, 2), + (277318, 181, 63), + (277319, 21, 3), + (277319, 20, 3), + (277319, 16, 3), + (277319, 181, 64), + (277320, 21, 4), + (277320, 20, 4), + (277320, 16, 4), + (277320, 181, 95), + (277321, 21, 5), + (277321, 20, 5), + (277321, 16, 5), + (277321, 181, 96), + (277322, 21, 1), + (277322, 18, 1), + (277322, 16, 1), + (277322, 181, 2), + (277323, 21, 2), + (277323, 18, 2), + (277323, 16, 2), + (277323, 181, 63), + (277324, 21, 3), + (277324, 18, 3), + (277324, 16, 3), + (277324, 181, 64), + (277325, 21, 4), + (277325, 18, 4), + (277325, 16, 4), + (277325, 181, 95), + (277326, 21, 5), + (277326, 18, 5), + (277326, 16, 5), + (277326, 181, 96), + (277327, 20, 1), + (277327, 18, 1), + (277327, 16, 1), + (277327, 181, 2), + (277328, 20, 2), + (277328, 18, 2), + (277328, 16, 2), + (277328, 181, 63), + (277329, 20, 3), + (277329, 18, 3), + (277329, 16, 3), + (277329, 181, 64), + (277330, 20, 4), + (277330, 18, 4), + (277330, 16, 4), + (277330, 181, 95), + (277331, 20, 5), + (277331, 18, 5), + (277331, 16, 5), + (277331, 181, 96), + (277332, 17, 1), + (277332, 21, 1), + (277332, 20, 1), + (277332, 18, 1), + (277332, 181, 2), + (277333, 17, 2), + (277333, 21, 2), + (277333, 20, 2), + (277333, 18, 2), + (277333, 181, 63), + (277334, 17, 3), + (277334, 21, 3), + (277334, 20, 3), + (277334, 18, 3), + (277334, 181, 64), + (277335, 17, 4), + (277335, 21, 4), + (277335, 20, 4), + (277335, 18, 4), + (277335, 181, 95), + (277336, 17, 5), + (277336, 21, 5), + (277336, 20, 5), + (277336, 18, 5), + (277336, 181, 96), + (277337, 17, 1), + (277337, 21, 1), + (277337, 20, 1), + (277337, 16, 1), + (277337, 181, 2), + (277338, 17, 2), + (277338, 21, 2), + (277338, 20, 2), + (277338, 16, 2), + (277338, 181, 63), + (277339, 17, 3), + (277339, 21, 3), + (277339, 20, 3), + (277339, 16, 3), + (277339, 181, 64), + (277340, 17, 4), + (277340, 21, 4), + (277340, 20, 4), + (277340, 16, 4), + (277340, 181, 95), + (277341, 17, 5), + (277341, 21, 5), + (277341, 20, 5), + (277341, 16, 5), + (277341, 181, 96), + (277342, 17, 1), + (277342, 21, 1), + (277342, 18, 1), + (277342, 16, 1), + (277342, 181, 2), + (277343, 17, 2), + (277343, 21, 2), + (277343, 18, 2), + (277343, 16, 2), + (277343, 181, 63), + (277344, 17, 3), + (277344, 21, 3), + (277344, 18, 3), + (277344, 16, 3), + (277344, 181, 64), + (277345, 17, 4), + (277345, 21, 4), + (277345, 18, 4), + (277345, 16, 4), + (277345, 181, 95), + (277346, 17, 5), + (277346, 21, 5), + (277346, 18, 5), + (277346, 16, 5), + (277346, 181, 96), + (277347, 17, 1), + (277347, 20, 1), + (277347, 18, 1), + (277347, 16, 1), + (277347, 181, 2), + (277348, 17, 2), + (277348, 20, 2), + (277348, 18, 2), + (277348, 16, 2), + (277348, 181, 63), + (277349, 17, 3), + (277349, 20, 3), + (277349, 18, 3), + (277349, 16, 3), + (277349, 181, 64), + (277350, 17, 4), + (277350, 20, 4), + (277350, 18, 4), + (277350, 16, 4), + (277350, 181, 95), + (277351, 17, 5), + (277351, 20, 5), + (277351, 18, 5), + (277351, 16, 5), + (277351, 181, 96), + (277352, 19, 1), + (277352, 21, 1), + (277352, 20, 1), + (277352, 18, 1), + (277352, 181, 2), + (277353, 19, 2), + (277353, 21, 2), + (277353, 20, 2), + (277353, 18, 2), + (277353, 181, 63), + (277354, 19, 3), + (277354, 21, 3), + (277354, 20, 3), + (277354, 18, 3), + (277354, 181, 64), + (277355, 19, 4), + (277355, 21, 4), + (277355, 20, 4), + (277355, 18, 4), + (277355, 181, 95), + (277356, 19, 5), + (277356, 21, 5), + (277356, 20, 5), + (277356, 18, 5), + (277356, 181, 96), + (277357, 19, 1), + (277357, 21, 1), + (277357, 20, 1), + (277357, 16, 1), + (277357, 181, 2), + (277358, 19, 2), + (277358, 21, 2), + (277358, 20, 2), + (277358, 16, 2), + (277358, 181, 63), + (277359, 19, 3), + (277359, 21, 3), + (277359, 20, 3), + (277359, 16, 3), + (277359, 181, 64), + (277360, 19, 4), + (277360, 21, 4), + (277360, 20, 4), + (277360, 16, 4), + (277360, 181, 95), + (277361, 19, 5), + (277361, 21, 5), + (277361, 20, 5), + (277361, 16, 5), + (277361, 181, 96), + (277362, 19, 1), + (277362, 21, 1), + (277362, 18, 1), + (277362, 16, 1), + (277362, 181, 2), + (277363, 19, 2), + (277363, 21, 2), + (277363, 18, 2), + (277363, 16, 2), + (277363, 181, 63), + (277364, 19, 3), + (277364, 21, 3), + (277364, 18, 3), + (277364, 16, 3), + (277364, 181, 64), + (277365, 19, 4), + (277365, 21, 4), + (277365, 18, 4), + (277365, 16, 4), + (277365, 181, 95), + (277366, 19, 5), + (277366, 21, 5), + (277366, 18, 5), + (277366, 16, 5), + (277366, 181, 96), + (277367, 19, 1), + (277367, 20, 1), + (277367, 18, 1), + (277367, 16, 1), + (277367, 181, 2), + (277368, 19, 2), + (277368, 20, 2), + (277368, 18, 2), + (277368, 16, 2), + (277368, 181, 63), + (277369, 19, 3), + (277369, 20, 3), + (277369, 18, 3), + (277369, 16, 3), + (277369, 181, 64), + (277370, 19, 4), + (277370, 20, 4), + (277370, 18, 4), + (277370, 16, 4), + (277370, 181, 95), + (277371, 19, 5), + (277371, 20, 5), + (277371, 18, 5), + (277371, 16, 5), + (277371, 181, 96), + (277372, 21, 1), + (277372, 20, 1), + (277372, 18, 1), + (277372, 16, 1), + (277372, 181, 2), + (277373, 21, 2), + (277373, 20, 2), + (277373, 18, 2), + (277373, 16, 2), + (277373, 181, 63), + (277374, 21, 3), + (277374, 20, 3), + (277374, 18, 3), + (277374, 16, 3), + (277374, 181, 64), + (277375, 21, 4), + (277375, 20, 4), + (277375, 18, 4), + (277375, 16, 4), + (277375, 181, 95), + (277376, 21, 5), + (277376, 20, 5), + (277376, 18, 5), + (277376, 16, 5), + (277376, 181, 96), + (277380, 128, 5), + (277425, 156, 800), + (277432, 181, 2), + (277433, 181, 63), + (277434, 181, 64), + (277435, 181, 95), + (277436, 181, 96), + (277502, 128, 1), + (277502, 181, 2), + (277503, 128, 2), + (277503, 181, 63), + (277504, 128, 3), + (277504, 181, 64), + (277505, 128, 4), + (277505, 181, 95), + (277506, 128, 5), + (277506, 181, 96), + (277507, 130, 1), + (277507, 181, 2), + (277508, 130, 2), + (277508, 181, 63), + (277509, 130, 3), + (277509, 181, 64), + (277510, 130, 4), + (277510, 181, 95), + (277511, 130, 5), + (277511, 181, 96), + (277512, 127, 1), + (277512, 181, 2), + (277513, 127, 2), + (277513, 181, 63), + (277514, 127, 3), + (277514, 181, 64), + (277515, 127, 4), + (277515, 181, 95), + (277516, 127, 5), + (277516, 181, 96), + (277517, 129, 1), + (277517, 181, 2), + (277518, 129, 2), + (277518, 181, 63), + (277519, 129, 3), + (277519, 181, 64), + (277520, 129, 4), + (277520, 181, 95), + (277521, 129, 5), + (277521, 181, 96), + (277522, 122, 1), + (277522, 181, 2), + (277523, 122, 2), + (277523, 181, 63), + (277524, 122, 3), + (277524, 181, 64), + (277525, 122, 4), + (277525, 181, 95), + (277526, 122, 5), + (277526, 181, 96), + (277527, 131, 1), + (277527, 181, 2), + (277528, 131, 2), + (277528, 181, 63), + (277529, 131, 3), + (277529, 181, 64), + (277530, 131, 4), + (277530, 181, 95), + (277531, 131, 5), + (277531, 181, 96), + (277532, 128, 1), + (277532, 130, 1), + (277532, 181, 2), + (277533, 128, 2), + (277533, 130, 2), + (277533, 181, 63), + (277534, 128, 3), + (277534, 130, 3), + (277534, 181, 64), + (277535, 128, 4), + (277535, 130, 4), + (277535, 181, 95), + (277536, 128, 5), + (277536, 130, 5), + (277536, 181, 96), + (277541, 128, 1), + (277541, 127, 1), + (277541, 181, 2), + (277542, 128, 2), + (277542, 127, 2), + (277542, 181, 63), + (277543, 128, 3), + (277543, 127, 3), + (277543, 181, 64), + (277544, 128, 4), + (277544, 127, 4), + (277544, 181, 95), + (277545, 128, 5), + (277545, 127, 5), + (277545, 181, 96), + (277546, 128, 1), + (277546, 129, 1), + (277546, 181, 2), + (277547, 128, 2), + (277547, 129, 2), + (277547, 181, 63), + (277548, 128, 3), + (277548, 129, 3), + (277548, 181, 64), + (277549, 128, 4), + (277549, 129, 4), + (277549, 181, 95), + (277550, 128, 5), + (277550, 129, 5), + (277550, 181, 96), + (277552, 128, 1), + (277552, 122, 1), + (277552, 181, 2), + (277553, 128, 2), + (277553, 122, 2), + (277553, 181, 63), + (277554, 128, 3), + (277554, 122, 3), + (277554, 181, 64), + (277555, 128, 4), + (277555, 122, 4), + (277555, 181, 95), + (277556, 128, 5), + (277556, 122, 5), + (277556, 181, 96), + (277557, 128, 1), + (277557, 131, 1), + (277557, 181, 2), + (277558, 128, 2), + (277558, 131, 2), + (277558, 181, 63), + (277559, 128, 3), + (277559, 131, 3), + (277559, 181, 64), + (277560, 128, 4), + (277560, 131, 4), + (277560, 181, 95), + (277561, 128, 5), + (277561, 131, 5), + (277561, 181, 96), + (277562, 130, 1), + (277562, 127, 1), + (277562, 181, 2), + (277563, 130, 2), + (277563, 127, 2), + (277563, 181, 63), + (277564, 130, 3), + (277564, 127, 3), + (277564, 181, 64), + (277565, 130, 4), + (277565, 127, 4), + (277565, 181, 95), + (277566, 130, 5), + (277566, 127, 5), + (277566, 181, 96), + (277567, 130, 1), + (277567, 129, 1), + (277567, 181, 2), + (277568, 130, 2), + (277568, 129, 2), + (277568, 181, 63), + (277569, 130, 3), + (277569, 129, 3), + (277569, 181, 64), + (277570, 130, 4), + (277570, 129, 4), + (277570, 181, 95), + (277571, 130, 5), + (277571, 129, 5), + (277571, 181, 96), + (277572, 130, 1), + (277572, 122, 1), + (277572, 181, 2), + (277573, 130, 2), + (277573, 122, 2), + (277573, 181, 63), + (277574, 130, 3), + (277574, 122, 3), + (277574, 181, 64), + (277575, 130, 4), + (277575, 122, 4), + (277575, 181, 95), + (277576, 130, 5), + (277576, 122, 5), + (277576, 181, 96), + (277577, 130, 1), + (277577, 131, 1), + (277577, 181, 2), + (277578, 130, 2), + (277578, 131, 2), + (277578, 181, 63), + (277579, 130, 3), + (277579, 131, 3), + (277579, 181, 64), + (277580, 130, 4), + (277580, 131, 4), + (277580, 181, 95), + (277581, 130, 5), + (277581, 131, 5), + (277581, 181, 96), + (277582, 127, 1), + (277582, 129, 1), + (277582, 181, 2), + (277583, 127, 2), + (277583, 129, 2), + (277583, 181, 63), + (277584, 127, 3), + (277584, 129, 3), + (277584, 181, 64), + (277585, 127, 4), + (277585, 129, 4), + (277585, 181, 95), + (277586, 127, 5), + (277586, 129, 5), + (277586, 181, 96), + (277587, 127, 1), + (277587, 122, 1), + (277587, 181, 2), + (277588, 127, 2), + (277588, 122, 2), + (277588, 181, 63), + (277589, 127, 3), + (277589, 122, 3), + (277589, 181, 64), + (277590, 127, 4), + (277590, 122, 4), + (277590, 181, 95), + (277591, 127, 5), + (277591, 122, 5), + (277591, 181, 96), + (277592, 127, 1), + (277592, 131, 1), + (277592, 181, 2), + (277593, 127, 2), + (277593, 131, 2), + (277593, 181, 63), + (277594, 127, 3), + (277594, 131, 3), + (277594, 181, 64), + (277595, 127, 4), + (277595, 131, 4), + (277595, 181, 95), + (277596, 127, 5), + (277596, 131, 5), + (277596, 181, 96), + (277597, 129, 1), + (277597, 122, 1), + (277597, 181, 2), + (277598, 129, 2), + (277598, 122, 2), + (277598, 181, 63), + (277599, 129, 3), + (277599, 122, 3), + (277599, 181, 64), + (277600, 129, 4), + (277600, 122, 4), + (277600, 181, 95), + (277601, 129, 5), + (277601, 122, 5), + (277601, 181, 96), + (277602, 129, 1), + (277602, 131, 1), + (277602, 181, 2), + (277603, 129, 2), + (277603, 131, 2), + (277603, 181, 63), + (277604, 129, 3), + (277604, 131, 3), + (277604, 181, 64), + (277605, 129, 4), + (277605, 131, 4), + (277605, 181, 95), + (277606, 129, 5), + (277606, 131, 5), + (277606, 181, 96), + (277607, 122, 1), + (277607, 131, 1), + (277607, 181, 2), + (277608, 122, 2), + (277608, 131, 2), + (277608, 181, 63), + (277609, 122, 3), + (277609, 131, 3), + (277609, 181, 64), + (277610, 122, 4), + (277610, 131, 4), + (277610, 181, 95), + (277611, 122, 5), + (277611, 131, 5), + (277611, 181, 96), + (277612, 128, 1), + (277612, 130, 1), + (277612, 127, 1), + (277612, 181, 2), + (277613, 128, 2), + (277613, 130, 2), + (277613, 127, 2), + (277613, 181, 63), + (277614, 128, 3), + (277614, 130, 3), + (277614, 127, 3), + (277614, 181, 64), + (277615, 128, 4), + (277615, 130, 4), + (277615, 127, 4), + (277615, 181, 95), + (277616, 128, 5), + (277616, 130, 5), + (277616, 127, 5), + (277616, 181, 96), + (277617, 128, 1), + (277617, 130, 1), + (277617, 129, 1), + (277617, 181, 2), + (277618, 128, 2), + (277618, 130, 2), + (277618, 129, 2), + (277618, 181, 63), + (277619, 128, 3), + (277619, 130, 3), + (277619, 129, 3), + (277619, 181, 64), + (277620, 128, 4), + (277620, 130, 4), + (277620, 129, 4), + (277620, 181, 95), + (277621, 128, 5), + (277621, 130, 5), + (277621, 129, 5), + (277621, 181, 96), + (277622, 128, 1), + (277622, 130, 1), + (277622, 122, 1), + (277622, 181, 2), + (277623, 128, 2), + (277623, 130, 2), + (277623, 122, 2), + (277623, 181, 63), + (277624, 128, 3), + (277624, 130, 3), + (277624, 122, 3), + (277624, 181, 64), + (277625, 128, 4), + (277625, 130, 4), + (277625, 122, 4), + (277625, 181, 95), + (277626, 128, 5), + (277626, 130, 5), + (277626, 122, 5), + (277626, 181, 96), + (277627, 128, 1), + (277627, 130, 1), + (277627, 131, 1), + (277627, 181, 2), + (277628, 128, 2), + (277628, 130, 2), + (277628, 131, 2), + (277628, 181, 63), + (277629, 128, 3), + (277629, 130, 3), + (277629, 131, 3), + (277629, 181, 64), + (277630, 128, 4), + (277630, 130, 4), + (277630, 131, 4), + (277630, 181, 95), + (277631, 128, 5), + (277631, 130, 5), + (277631, 131, 5), + (277631, 181, 96), + (277632, 128, 1), + (277632, 127, 1), + (277632, 129, 1), + (277632, 181, 2), + (277633, 128, 2), + (277633, 127, 2), + (277633, 129, 2), + (277633, 181, 63), + (277634, 128, 3), + (277634, 127, 3), + (277634, 129, 3), + (277634, 181, 64), + (277635, 128, 4), + (277635, 127, 4), + (277635, 129, 4), + (277635, 181, 95), + (277636, 128, 5), + (277636, 127, 5), + (277636, 129, 5), + (277636, 181, 96), + (277637, 128, 1), + (277637, 127, 1), + (277637, 122, 1), + (277637, 181, 2), + (277638, 128, 2), + (277638, 127, 2), + (277638, 122, 2), + (277638, 181, 63), + (277639, 128, 3), + (277639, 127, 3), + (277639, 122, 3), + (277639, 181, 64), + (277640, 128, 4), + (277640, 127, 4), + (277640, 122, 4), + (277640, 181, 95), + (277641, 128, 5), + (277641, 127, 5), + (277641, 122, 5), + (277641, 181, 96), + (277642, 128, 1), + (277642, 127, 1), + (277642, 131, 1), + (277642, 181, 2), + (277643, 128, 2), + (277643, 127, 2), + (277643, 131, 2), + (277643, 181, 63), + (277644, 128, 3), + (277644, 127, 3), + (277644, 131, 3), + (277644, 181, 64), + (277645, 128, 4), + (277645, 127, 4), + (277645, 131, 4), + (277645, 181, 95), + (277646, 128, 5), + (277646, 127, 5), + (277646, 131, 5), + (277646, 181, 96), + (277647, 128, 1), + (277647, 129, 1), + (277647, 122, 1), + (277647, 181, 2), + (277648, 128, 2), + (277648, 129, 2), + (277648, 122, 2), + (277648, 181, 63), + (277649, 128, 3), + (277649, 129, 3), + (277649, 122, 3), + (277649, 181, 64), + (277650, 128, 4), + (277650, 129, 4), + (277650, 122, 4), + (277650, 181, 95), + (277651, 128, 5), + (277651, 129, 5), + (277651, 122, 5), + (277651, 181, 96), + (277652, 128, 1), + (277652, 129, 1), + (277652, 131, 1), + (277652, 181, 2), + (277653, 128, 2), + (277653, 129, 2), + (277653, 131, 2), + (277653, 181, 63), + (277654, 128, 3), + (277654, 129, 3), + (277654, 131, 3), + (277654, 181, 64), + (277655, 128, 4), + (277655, 129, 4), + (277655, 131, 4), + (277655, 181, 95), + (277656, 128, 5), + (277656, 129, 5), + (277656, 131, 5), + (277656, 181, 96), + (277657, 128, 1), + (277657, 122, 1), + (277657, 131, 1), + (277657, 181, 2), + (277658, 128, 2), + (277658, 122, 2), + (277658, 131, 2), + (277658, 181, 63), + (277659, 128, 3), + (277659, 122, 3), + (277659, 131, 3), + (277659, 181, 64), + (277660, 128, 4), + (277660, 122, 4), + (277660, 131, 4), + (277660, 181, 95), + (277661, 128, 5), + (277661, 122, 5), + (277661, 131, 5), + (277661, 181, 96), + (277662, 130, 1), + (277662, 127, 1), + (277662, 129, 1), + (277662, 181, 2), + (277663, 130, 2), + (277663, 127, 2), + (277663, 129, 2), + (277663, 181, 63), + (277664, 130, 3), + (277664, 127, 3), + (277664, 129, 3), + (277664, 181, 64), + (277665, 130, 4), + (277665, 127, 4), + (277665, 129, 4), + (277665, 181, 95), + (277666, 130, 5), + (277666, 127, 5), + (277666, 129, 5), + (277666, 181, 96), + (277667, 130, 1), + (277667, 127, 1), + (277667, 122, 1), + (277667, 181, 2), + (277668, 130, 2), + (277668, 127, 2), + (277668, 122, 2), + (277668, 181, 63), + (277669, 130, 3), + (277669, 127, 3), + (277669, 122, 3), + (277669, 181, 64), + (277670, 130, 4), + (277670, 127, 4), + (277670, 122, 4), + (277670, 181, 95), + (277671, 130, 5), + (277671, 127, 5), + (277671, 122, 5), + (277671, 181, 96), + (277672, 130, 1), + (277672, 127, 1), + (277672, 131, 1), + (277672, 181, 2), + (277673, 130, 2), + (277673, 127, 2), + (277673, 131, 2), + (277673, 181, 63), + (277674, 130, 3), + (277674, 127, 3), + (277674, 131, 3), + (277674, 181, 64), + (277675, 130, 4), + (277675, 127, 4), + (277675, 131, 4), + (277675, 181, 95), + (277676, 130, 5), + (277676, 127, 5), + (277676, 131, 5), + (277676, 181, 96), + (277677, 130, 1), + (277677, 129, 1), + (277677, 122, 1), + (277677, 181, 2), + (277678, 130, 2), + (277678, 129, 2), + (277678, 122, 2), + (277678, 181, 63), + (277679, 130, 3), + (277679, 129, 3), + (277679, 122, 3), + (277679, 181, 64), + (277680, 130, 4), + (277680, 129, 4), + (277680, 122, 4), + (277680, 181, 95), + (277681, 130, 5), + (277681, 129, 5), + (277681, 122, 5), + (277681, 181, 96), + (277682, 130, 1), + (277682, 129, 1), + (277682, 131, 1), + (277682, 181, 2), + (277683, 130, 2), + (277683, 129, 2), + (277683, 131, 2), + (277683, 181, 63), + (277684, 130, 3), + (277684, 129, 3), + (277684, 131, 3), + (277684, 181, 64), + (277685, 130, 4), + (277685, 129, 4), + (277685, 131, 4), + (277685, 181, 95), + (277686, 130, 5), + (277686, 129, 5), + (277686, 131, 5), + (277686, 181, 96), + (277687, 130, 1), + (277687, 122, 1), + (277687, 131, 1), + (277687, 181, 2), + (277688, 130, 2), + (277688, 122, 2), + (277688, 131, 2), + (277688, 181, 63), + (277689, 130, 3), + (277689, 122, 3), + (277689, 131, 3), + (277689, 181, 64), + (277690, 130, 4), + (277690, 122, 4), + (277690, 131, 4), + (277690, 181, 95), + (277691, 130, 5), + (277691, 122, 5), + (277691, 131, 5), + (277691, 181, 96), + (277692, 127, 1), + (277692, 129, 1), + (277692, 122, 1), + (277692, 181, 2), + (277693, 127, 2), + (277693, 129, 2), + (277693, 122, 2), + (277693, 181, 63), + (277694, 127, 3), + (277694, 129, 3), + (277694, 122, 3), + (277694, 181, 64), + (277695, 127, 4), + (277695, 129, 4), + (277695, 122, 4), + (277695, 181, 95), + (277696, 127, 5), + (277696, 129, 5), + (277696, 122, 5), + (277696, 181, 96), + (277697, 127, 1), + (277697, 129, 1), + (277697, 131, 1), + (277697, 181, 2), + (277698, 127, 2), + (277698, 129, 2), + (277698, 131, 2), + (277698, 181, 63), + (277699, 127, 3), + (277699, 129, 3), + (277699, 131, 3), + (277699, 181, 64), + (277700, 127, 4), + (277700, 129, 4), + (277700, 131, 4), + (277700, 181, 95), + (277701, 127, 5), + (277701, 129, 5), + (277701, 131, 5), + (277701, 181, 96), + (277702, 127, 1), + (277702, 122, 1), + (277702, 131, 1), + (277702, 181, 2), + (277703, 127, 2), + (277703, 122, 2), + (277703, 131, 2), + (277703, 181, 63), + (277704, 127, 3), + (277704, 122, 3), + (277704, 131, 3), + (277704, 181, 64), + (277705, 127, 4), + (277705, 122, 4), + (277705, 131, 4), + (277705, 181, 95), + (277706, 127, 5), + (277706, 122, 5), + (277706, 131, 5), + (277706, 181, 96), + (277707, 129, 1), + (277707, 122, 1), + (277707, 131, 1), + (277707, 181, 2), + (277708, 129, 2), + (277708, 122, 2), + (277708, 131, 2), + (277708, 181, 63), + (277709, 129, 3), + (277709, 122, 3), + (277709, 131, 3), + (277709, 181, 64), + (277710, 129, 4), + (277710, 122, 4), + (277710, 131, 4), + (277710, 181, 95), + (277711, 129, 5), + (277711, 122, 5), + (277711, 131, 5), + (277711, 181, 96), + (277713, 156, 150), + (277714, 128, 1), + (277714, 130, 1), + (277714, 127, 1), + (277714, 129, 1), + (277714, 181, 2), + (277715, 128, 2), + (277715, 130, 2), + (277715, 127, 2), + (277715, 129, 2), + (277715, 181, 63), + (277716, 128, 3), + (277716, 130, 3), + (277716, 127, 3), + (277716, 129, 3), + (277716, 181, 64), + (277717, 128, 4), + (277717, 130, 4), + (277717, 127, 4), + (277717, 129, 4), + (277717, 181, 95), + (277718, 128, 5), + (277718, 130, 5), + (277718, 127, 5), + (277718, 129, 5), + (277718, 181, 96), + (277719, 128, 1), + (277719, 130, 1), + (277719, 127, 1), + (277719, 122, 1), + (277719, 181, 2), + (277720, 128, 2), + (277720, 130, 2), + (277720, 127, 2), + (277720, 122, 2), + (277720, 181, 63), + (277721, 128, 3), + (277721, 130, 3), + (277721, 127, 3), + (277721, 122, 3), + (277721, 181, 64), + (277722, 128, 4), + (277722, 130, 4), + (277722, 127, 4), + (277722, 122, 4), + (277722, 181, 95), + (277723, 128, 5), + (277723, 130, 5), + (277723, 127, 5), + (277723, 122, 5), + (277723, 181, 96), + (277724, 128, 1), + (277724, 130, 1), + (277724, 127, 1), + (277724, 131, 1), + (277724, 181, 2), + (277725, 128, 2), + (277725, 130, 2), + (277725, 127, 2), + (277725, 131, 2), + (277725, 181, 63), + (277726, 128, 3), + (277726, 130, 3), + (277726, 127, 3), + (277726, 131, 3), + (277726, 181, 64), + (277727, 128, 4), + (277727, 130, 4), + (277727, 127, 4), + (277727, 131, 4), + (277727, 181, 95), + (277728, 128, 5), + (277728, 130, 5), + (277728, 127, 5), + (277728, 131, 5), + (277728, 181, 96), + (277729, 128, 1), + (277729, 130, 1), + (277729, 129, 1), + (277729, 122, 1), + (277729, 181, 2), + (277730, 128, 2), + (277730, 130, 2), + (277730, 129, 2), + (277730, 122, 2), + (277730, 181, 63), + (277731, 128, 3), + (277731, 130, 3), + (277731, 129, 3), + (277731, 122, 3), + (277731, 181, 64), + (277732, 128, 4), + (277732, 130, 4), + (277732, 129, 4), + (277732, 122, 4), + (277732, 181, 95), + (277733, 128, 5), + (277733, 130, 5), + (277733, 129, 5), + (277733, 122, 5), + (277733, 181, 96), + (277734, 128, 1), + (277734, 130, 1), + (277734, 129, 1), + (277734, 131, 1), + (277734, 181, 2), + (277735, 128, 2), + (277735, 130, 2), + (277735, 129, 2), + (277735, 131, 2), + (277735, 181, 63), + (277736, 128, 3), + (277736, 130, 3), + (277736, 129, 3), + (277736, 131, 3), + (277736, 181, 64), + (277737, 128, 4), + (277737, 130, 4), + (277737, 129, 4), + (277737, 131, 4), + (277737, 181, 95), + (277738, 128, 5), + (277738, 130, 5), + (277738, 129, 5), + (277738, 131, 5), + (277738, 181, 96), + (277739, 128, 1), + (277739, 130, 1), + (277739, 122, 1), + (277739, 131, 1), + (277739, 181, 2), + (277740, 128, 2), + (277740, 130, 2), + (277740, 122, 2), + (277740, 131, 2), + (277740, 181, 63), + (277741, 128, 3), + (277741, 130, 3), + (277741, 122, 3), + (277741, 131, 3), + (277741, 181, 64), + (277742, 128, 4), + (277742, 130, 4), + (277742, 122, 4), + (277742, 131, 4), + (277742, 181, 95), + (277743, 128, 5), + (277743, 130, 5), + (277743, 122, 5), + (277743, 131, 5), + (277743, 181, 96), + (277744, 128, 1), + (277744, 127, 1), + (277744, 129, 1), + (277744, 122, 1), + (277744, 181, 2), + (277745, 128, 2), + (277745, 127, 2), + (277745, 129, 2), + (277745, 122, 2), + (277745, 181, 63), + (277746, 128, 3), + (277746, 127, 3), + (277746, 129, 3), + (277746, 122, 3), + (277746, 181, 64), + (277747, 128, 4), + (277747, 127, 4), + (277747, 129, 4), + (277747, 122, 4), + (277747, 181, 95), + (277748, 128, 5), + (277748, 127, 5), + (277748, 129, 5), + (277748, 122, 5), + (277748, 181, 96), + (277749, 128, 1), + (277749, 127, 1), + (277749, 129, 1), + (277749, 131, 1), + (277749, 181, 2), + (277750, 128, 2), + (277750, 127, 2), + (277750, 129, 2), + (277750, 131, 2), + (277750, 181, 63), + (277751, 128, 3), + (277751, 127, 3), + (277751, 129, 3), + (277751, 131, 3), + (277751, 181, 64), + (277752, 128, 4), + (277752, 127, 4), + (277752, 129, 4), + (277752, 131, 4), + (277752, 181, 95), + (277753, 128, 5), + (277753, 127, 5), + (277753, 129, 5), + (277753, 131, 5), + (277753, 181, 96), + (277754, 128, 1), + (277754, 127, 1), + (277754, 122, 1), + (277754, 131, 1), + (277754, 181, 2), + (277755, 128, 2), + (277755, 127, 2), + (277755, 122, 2), + (277755, 131, 2), + (277755, 181, 63), + (277756, 128, 3), + (277756, 127, 3), + (277756, 122, 3), + (277756, 131, 3), + (277756, 181, 64), + (277757, 128, 4), + (277757, 127, 4), + (277757, 122, 4), + (277757, 131, 4), + (277757, 181, 95), + (277758, 128, 5), + (277758, 127, 5), + (277758, 122, 5), + (277758, 131, 5), + (277758, 181, 96), + (277759, 128, 1), + (277759, 129, 1), + (277759, 122, 1), + (277759, 131, 1), + (277759, 181, 2), + (277760, 128, 2), + (277760, 129, 2), + (277760, 122, 2), + (277760, 131, 2), + (277760, 181, 63), + (277761, 128, 3), + (277761, 129, 3), + (277761, 122, 3), + (277761, 131, 3), + (277761, 181, 64), + (277762, 128, 4), + (277762, 129, 4), + (277762, 122, 4), + (277762, 131, 4), + (277762, 181, 95), + (277763, 128, 5), + (277763, 129, 5), + (277763, 122, 5), + (277763, 131, 5), + (277763, 181, 96), + (277764, 130, 1), + (277764, 127, 1), + (277764, 129, 1), + (277764, 122, 1), + (277764, 181, 2), + (277765, 130, 2), + (277765, 127, 2), + (277765, 129, 2), + (277765, 122, 2), + (277765, 181, 63), + (277766, 130, 3), + (277766, 127, 3), + (277766, 129, 3), + (277766, 122, 3), + (277766, 181, 64), + (277767, 130, 4), + (277767, 127, 4), + (277767, 129, 4), + (277767, 122, 4), + (277767, 181, 95), + (277768, 130, 5), + (277768, 127, 5), + (277768, 129, 5), + (277768, 122, 5), + (277768, 181, 96), + (277769, 130, 1), + (277769, 127, 1), + (277769, 129, 1), + (277769, 131, 1), + (277769, 181, 2), + (277770, 130, 2), + (277770, 127, 2), + (277770, 129, 2), + (277770, 131, 2), + (277770, 181, 63), + (277771, 130, 3), + (277771, 127, 3), + (277771, 129, 3), + (277771, 131, 3), + (277771, 181, 64), + (277772, 130, 4), + (277772, 127, 4), + (277772, 129, 4), + (277772, 131, 4), + (277772, 181, 95), + (277773, 130, 5), + (277773, 127, 5), + (277773, 129, 5), + (277773, 131, 5), + (277773, 181, 96), + (277774, 130, 1), + (277774, 127, 1), + (277774, 122, 1), + (277774, 131, 1), + (277774, 181, 2), + (277775, 130, 2), + (277775, 127, 2), + (277775, 122, 2), + (277775, 131, 2), + (277775, 181, 63), + (277776, 130, 3), + (277776, 127, 3), + (277776, 122, 3), + (277776, 131, 3), + (277776, 181, 64), + (277777, 130, 4), + (277777, 127, 4), + (277777, 122, 4), + (277777, 131, 4), + (277777, 181, 95), + (277778, 130, 5), + (277778, 127, 5), + (277778, 122, 5), + (277778, 131, 5), + (277778, 181, 96), + (277779, 130, 1), + (277779, 129, 1), + (277779, 122, 1), + (277779, 131, 1), + (277779, 181, 2), + (277780, 130, 2), + (277780, 129, 2), + (277780, 122, 2), + (277780, 131, 2), + (277780, 181, 63), + (277781, 130, 3), + (277781, 129, 3), + (277781, 122, 3), + (277781, 131, 3), + (277781, 181, 64), + (277782, 130, 4), + (277782, 129, 4), + (277782, 122, 4), + (277782, 131, 4), + (277782, 181, 95), + (277783, 130, 5), + (277783, 129, 5), + (277783, 122, 5), + (277783, 131, 5), + (277783, 181, 96), + (277784, 127, 1), + (277784, 129, 1), + (277784, 122, 1), + (277784, 131, 1), + (277784, 181, 2), + (277785, 127, 2), + (277785, 129, 2), + (277785, 122, 2), + (277785, 131, 2), + (277785, 181, 63), + (277786, 127, 3), + (277786, 129, 3), + (277786, 122, 3), + (277786, 131, 3), + (277786, 181, 64), + (277787, 127, 4), + (277787, 129, 4), + (277787, 122, 4), + (277787, 131, 4), + (277787, 181, 95), + (277788, 127, 5), + (277788, 129, 5), + (277788, 122, 5), + (277788, 131, 5), + (277788, 181, 96), + (277789, 128, 1), + (277789, 130, 1), + (277789, 127, 1), + (277789, 129, 1), + (277789, 122, 1), + (277789, 181, 2), + (277790, 128, 2), + (277790, 130, 2), + (277790, 127, 2), + (277790, 129, 2), + (277790, 122, 2), + (277790, 181, 63), + (277791, 128, 3), + (277791, 130, 3), + (277791, 127, 3), + (277791, 129, 3), + (277791, 122, 3), + (277791, 181, 64), + (277792, 128, 4), + (277792, 130, 4), + (277792, 127, 4), + (277792, 129, 4), + (277792, 122, 4), + (277792, 181, 95), + (277793, 128, 5), + (277793, 130, 5), + (277793, 127, 5), + (277793, 129, 5), + (277793, 122, 5), + (277793, 181, 96), + (277794, 128, 1), + (277794, 130, 1), + (277794, 127, 1), + (277794, 129, 1), + (277794, 131, 1), + (277794, 181, 2), + (277795, 128, 2), + (277795, 130, 2), + (277795, 127, 2), + (277795, 129, 2), + (277795, 131, 2), + (277795, 181, 63), + (277796, 128, 3), + (277796, 130, 3), + (277796, 127, 3), + (277796, 129, 3), + (277796, 131, 3), + (277796, 181, 64), + (277797, 128, 4), + (277797, 130, 4), + (277797, 127, 4), + (277797, 129, 4), + (277797, 131, 4), + (277797, 181, 95), + (277798, 128, 5), + (277798, 130, 5), + (277798, 127, 5), + (277798, 129, 5), + (277798, 131, 5), + (277798, 181, 96), + (277799, 128, 1), + (277799, 130, 1), + (277799, 127, 1), + (277799, 122, 1), + (277799, 131, 1), + (277799, 181, 2), + (277800, 128, 2), + (277800, 130, 2), + (277800, 127, 2), + (277800, 122, 2), + (277800, 131, 2), + (277800, 181, 63), + (277801, 128, 3), + (277801, 130, 3), + (277801, 127, 3), + (277801, 122, 3), + (277801, 131, 3), + (277801, 181, 64), + (277802, 128, 4), + (277802, 130, 4), + (277802, 127, 4), + (277802, 122, 4), + (277802, 131, 4), + (277802, 181, 95), + (277803, 128, 5), + (277803, 130, 5), + (277803, 127, 5), + (277803, 122, 5), + (277803, 131, 5), + (277803, 181, 96), + (277804, 128, 1), + (277804, 130, 1), + (277804, 129, 1), + (277804, 122, 1), + (277804, 131, 1), + (277804, 181, 2), + (277805, 128, 2), + (277805, 130, 2), + (277805, 129, 2), + (277805, 122, 2), + (277805, 131, 2), + (277805, 181, 63), + (277806, 128, 3), + (277806, 130, 3), + (277806, 129, 3), + (277806, 122, 3), + (277806, 131, 3), + (277806, 181, 64), + (277807, 128, 4), + (277807, 130, 4), + (277807, 129, 4), + (277807, 122, 4), + (277807, 131, 4), + (277807, 181, 95), + (277808, 128, 5), + (277808, 130, 5), + (277808, 129, 5), + (277808, 122, 5), + (277808, 131, 5), + (277808, 181, 96), + (277809, 128, 1), + (277809, 127, 1), + (277809, 129, 1), + (277809, 122, 1), + (277809, 131, 1), + (277809, 181, 2), + (277810, 128, 2), + (277810, 127, 2), + (277810, 129, 2), + (277810, 122, 2), + (277810, 131, 2), + (277810, 181, 63), + (277811, 128, 3), + (277811, 127, 3), + (277811, 129, 3), + (277811, 122, 3), + (277811, 131, 3), + (277811, 181, 64), + (277812, 128, 4), + (277812, 127, 4), + (277812, 129, 4), + (277812, 122, 4), + (277812, 131, 4), + (277812, 181, 95), + (277813, 128, 5), + (277813, 127, 5), + (277813, 129, 5), + (277813, 122, 5), + (277813, 131, 5), + (277813, 181, 96), + (277814, 130, 1), + (277814, 127, 1), + (277814, 129, 1), + (277814, 122, 1), + (277814, 131, 1), + (277814, 181, 2), + (277815, 130, 2), + (277815, 127, 2), + (277815, 129, 2), + (277815, 122, 2), + (277815, 131, 2), + (277815, 181, 63), + (277816, 130, 3), + (277816, 127, 3), + (277816, 129, 3), + (277816, 122, 3), + (277816, 131, 3), + (277816, 181, 64), + (277817, 130, 4), + (277817, 127, 4), + (277817, 129, 4), + (277817, 122, 4), + (277817, 131, 4), + (277817, 181, 95), + (277818, 130, 5), + (277818, 127, 5), + (277818, 129, 5), + (277818, 122, 5), + (277818, 131, 5), + (277818, 181, 96), + (277819, 128, 1), + (277819, 130, 1), + (277819, 127, 1), + (277819, 129, 1), + (277819, 122, 1), + (277819, 131, 1), + (277819, 181, 2), + (277820, 128, 2), + (277820, 130, 2), + (277820, 127, 2), + (277820, 129, 2), + (277820, 122, 2), + (277820, 131, 2), + (277820, 181, 63), + (277821, 128, 3), + (277821, 130, 3), + (277821, 127, 3), + (277821, 129, 3), + (277821, 122, 3), + (277821, 131, 3), + (277821, 181, 64), + (277822, 128, 4), + (277822, 130, 4), + (277822, 127, 4), + (277822, 129, 4), + (277822, 122, 4), + (277822, 131, 4), + (277822, 181, 95), + (277823, 128, 5), + (277823, 130, 5), + (277823, 127, 5), + (277823, 129, 5), + (277823, 122, 5), + (277823, 131, 5), + (277823, 181, 96), + (277933, 109, 0), + (277933, 181, 2), + (277934, 109, 0), + (277934, 181, 63), + (277935, 109, 1), + (277935, 181, 64), + (277936, 109, 1), + (277936, 181, 95), + (277937, 109, 1), + (277937, 181, 96), + (278007, 109, 0), + (278007, 181, 2), + (278008, 109, 0), + (278008, 181, 63), + (278009, 109, 1), + (278009, 181, 64), + (278010, 109, 1), + (278010, 181, 95), + (278011, 109, 2), + (278011, 181, 96), + (278012, 109, 0), + (278012, 181, 2), + (278013, 109, 1), + (278013, 181, 63), + (278014, 109, 2), + (278014, 181, 64), + (278015, 109, 2), + (278015, 181, 95), + (278016, 109, 3), + (278016, 181, 96), + (278017, 109, 1), + (278017, 181, 2), + (278018, 109, 2), + (278018, 181, 63), + (278019, 109, 3), + (278019, 181, 64), + (278020, 109, 3), + (278020, 181, 95), + (278021, 109, 4), + (278021, 181, 96), + (278022, 109, 1), + (278022, 181, 2), + (278023, 109, 2), + (278023, 181, 63), + (278024, 109, 3), + (278024, 181, 64), + (278025, 109, 4), + (278025, 181, 95), + (278026, 109, 5), + (278026, 181, 96), + (278027, 109, 1), + (278027, 181, 2), + (278028, 109, 3), + (278028, 181, 63), + (278029, 109, 4), + (278029, 181, 64), + (278030, 109, 5), + (278030, 181, 95), + (278031, 109, 6), + (278031, 181, 96), + (278040, 110, 0), + (278040, 181, 2), + (278041, 110, 0), + (278041, 181, 63), + (278042, 110, 1), + (278042, 181, 64), + (278043, 110, 1), + (278043, 181, 95), + (278044, 110, 1), + (278044, 181, 96), + (278045, 110, 0), + (278045, 181, 2), + (278046, 110, 0), + (278046, 181, 63), + (278047, 110, 1), + (278047, 181, 64), + (278048, 110, 1), + (278048, 181, 95), + (278049, 110, 2), + (278049, 181, 96), + (278050, 110, 0), + (278050, 181, 2), + (278051, 110, 1), + (278051, 181, 63), + (278052, 110, 2), + (278052, 181, 64), + (278053, 110, 2), + (278053, 181, 95), + (278054, 110, 3), + (278054, 181, 96), + (278055, 110, 1), + (278055, 181, 2), + (278056, 110, 2), + (278056, 181, 63), + (278057, 110, 3), + (278057, 181, 64), + (278058, 110, 3), + (278058, 181, 95), + (278059, 110, 4), + (278059, 181, 96), + (278060, 110, 1), + (278060, 181, 2), + (278061, 110, 2), + (278061, 181, 63), + (278062, 110, 3), + (278062, 181, 64), + (278063, 110, 4), + (278063, 181, 95), + (278064, 110, 5), + (278064, 181, 96), + (278065, 110, 1), + (278065, 181, 2), + (278066, 110, 3), + (278066, 181, 63), + (278067, 110, 4), + (278067, 181, 64), + (278068, 110, 5), + (278068, 181, 95), + (278069, 110, 6), + (278069, 181, 96), + (278070, 133, 0), + (278070, 181, 2), + (278071, 133, 0), + (278071, 181, 63), + (278072, 133, 1), + (278072, 181, 64), + (278073, 133, 1), + (278073, 181, 95), + (278074, 133, 1), + (278074, 181, 96), + (278075, 133, 0), + (278075, 181, 2), + (278076, 133, 0), + (278076, 181, 63), + (278077, 133, 1), + (278077, 181, 64), + (278078, 133, 1), + (278078, 181, 95), + (278079, 133, 2), + (278079, 181, 96), + (278080, 133, 0), + (278080, 181, 2), + (278081, 133, 1), + (278081, 181, 63), + (278082, 133, 2), + (278082, 181, 64), + (278083, 133, 2), + (278083, 181, 95), + (278084, 133, 3), + (278084, 181, 96), + (278085, 133, 1), + (278085, 181, 2), + (278086, 133, 2), + (278086, 181, 63), + (278087, 133, 3), + (278087, 181, 64), + (278088, 133, 3), + (278088, 181, 95), + (278089, 133, 4), + (278089, 181, 96), + (278090, 133, 1), + (278090, 181, 2), + (278091, 133, 2), + (278091, 181, 63), + (278092, 133, 3), + (278092, 181, 64), + (278093, 133, 4), + (278093, 181, 95), + (278094, 133, 5), + (278094, 181, 96), + (278095, 133, 1), + (278095, 181, 2), + (278096, 133, 3), + (278096, 181, 63), + (278097, 133, 4), + (278097, 181, 64), + (278098, 133, 5), + (278098, 181, 95), + (278099, 133, 6), + (278099, 181, 96), + (278100, 113, 0), + (278100, 181, 2), + (278101, 113, 0), + (278101, 181, 63), + (278102, 113, 1), + (278102, 181, 64), + (278103, 113, 1), + (278103, 181, 95), + (278104, 113, 1), + (278104, 181, 96), + (278105, 113, 0), + (278105, 181, 2), + (278106, 113, 0), + (278106, 181, 63), + (278107, 113, 1), + (278107, 181, 64), + (278108, 113, 1), + (278108, 181, 95), + (278109, 113, 2), + (278109, 181, 96), + (278110, 113, 0), + (278110, 181, 2), + (278111, 113, 1), + (278111, 181, 63), + (278112, 113, 2), + (278112, 181, 64), + (278113, 113, 2), + (278113, 181, 95), + (278114, 113, 3), + (278114, 181, 96), + (278115, 113, 1), + (278115, 181, 2), + (278116, 113, 2), + (278116, 181, 63), + (278117, 113, 3), + (278117, 181, 64), + (278118, 113, 3), + (278118, 181, 95), + (278119, 113, 4), + (278119, 181, 96), + (278120, 113, 1), + (278120, 181, 2), + (278121, 113, 2), + (278121, 181, 63), + (278122, 113, 3), + (278122, 181, 64), + (278123, 113, 4), + (278123, 181, 95), + (278124, 113, 5), + (278124, 181, 96), + (278125, 113, 1), + (278125, 181, 2), + (278126, 113, 3), + (278126, 181, 63), + (278127, 113, 4), + (278127, 181, 64), + (278128, 113, 5), + (278128, 181, 95), + (278129, 113, 6), + (278129, 181, 96), + (278130, 116, 0), + (278130, 181, 2), + (278131, 116, 0), + (278131, 181, 63), + (278132, 116, 1), + (278132, 181, 64), + (278133, 116, 1), + (278133, 181, 95), + (278134, 116, 1), + (278134, 181, 96), + (278135, 116, 0), + (278135, 181, 2), + (278136, 116, 0), + (278136, 181, 63), + (278137, 116, 1), + (278137, 181, 64), + (278138, 116, 1), + (278138, 181, 95), + (278139, 116, 2), + (278139, 181, 96), + (278140, 116, 0), + (278140, 181, 2), + (278141, 116, 1), + (278141, 181, 63), + (278142, 116, 2), + (278142, 181, 64), + (278143, 116, 2), + (278143, 181, 95), + (278144, 116, 3), + (278144, 181, 96), + (278145, 116, 1), + (278145, 181, 2), + (278146, 116, 2), + (278146, 181, 63), + (278147, 116, 3), + (278147, 181, 64), + (278148, 116, 3), + (278148, 181, 95), + (278149, 116, 4), + (278149, 181, 96), + (278150, 116, 1), + (278150, 181, 2), + (278151, 116, 2), + (278151, 181, 63), + (278152, 116, 3), + (278152, 181, 64), + (278153, 116, 4), + (278153, 181, 95), + (278154, 116, 5), + (278154, 181, 96), + (278155, 116, 1), + (278155, 181, 2), + (278156, 116, 3), + (278156, 181, 63), + (278157, 116, 4), + (278157, 181, 64), + (278158, 116, 5), + (278158, 181, 95), + (278159, 116, 6), + (278159, 181, 96), + (278160, 111, 0), + (278160, 181, 2), + (278161, 111, 0), + (278161, 181, 63), + (278162, 111, 1), + (278162, 181, 64), + (278163, 111, 1), + (278163, 181, 95), + (278164, 111, 1), + (278164, 181, 96), + (278165, 111, 0), + (278165, 181, 2), + (278166, 111, 0), + (278166, 181, 63), + (278167, 111, 1), + (278167, 181, 64), + (278168, 111, 1), + (278168, 181, 95), + (278169, 111, 2), + (278169, 181, 96), + (278170, 111, 0), + (278170, 181, 2), + (278171, 111, 1), + (278171, 181, 63), + (278172, 111, 2), + (278172, 181, 64), + (278173, 111, 2), + (278173, 181, 95), + (278174, 111, 3), + (278174, 181, 96), + (278175, 111, 1), + (278175, 181, 2), + (278176, 111, 2), + (278176, 181, 63), + (278177, 111, 3), + (278177, 181, 64), + (278178, 111, 3), + (278178, 181, 95), + (278179, 111, 4), + (278179, 181, 96), + (278180, 111, 1), + (278180, 181, 2), + (278181, 111, 2), + (278181, 181, 63), + (278182, 111, 3), + (278182, 181, 64), + (278183, 111, 4), + (278183, 181, 95), + (278184, 111, 5), + (278184, 181, 96), + (278185, 111, 1), + (278185, 181, 2), + (278186, 111, 3), + (278186, 181, 63), + (278187, 111, 4), + (278187, 181, 64), + (278188, 111, 5), + (278188, 181, 95), + (278189, 111, 6), + (278189, 181, 96), + (278190, 112, 0), + (278190, 181, 2), + (278191, 112, 0), + (278191, 181, 63), + (278192, 112, 1), + (278192, 181, 64), + (278193, 112, 1), + (278193, 181, 95), + (278194, 112, 1), + (278194, 181, 96), + (278195, 112, 0), + (278195, 181, 2), + (278196, 112, 0), + (278196, 181, 63), + (278197, 112, 1), + (278197, 181, 64), + (278198, 112, 1), + (278198, 181, 95), + (278199, 112, 2), + (278199, 181, 96), + (278200, 112, 0), + (278200, 181, 2), + (278201, 112, 1), + (278201, 181, 63), + (278202, 112, 2), + (278202, 181, 64), + (278203, 112, 2), + (278203, 181, 95), + (278204, 112, 3), + (278204, 181, 96), + (278205, 112, 1), + (278205, 181, 2), + (278206, 112, 2), + (278206, 181, 63), + (278207, 112, 3), + (278207, 181, 64), + (278208, 112, 3), + (278208, 181, 95), + (278209, 112, 4), + (278209, 181, 96), + (278210, 112, 1), + (278210, 181, 2), + (278211, 112, 2), + (278211, 181, 63), + (278212, 112, 3), + (278212, 181, 64), + (278213, 112, 4), + (278213, 181, 95), + (278214, 112, 5), + (278214, 181, 96), + (278215, 112, 1), + (278215, 181, 2), + (278216, 112, 3), + (278216, 181, 63), + (278217, 112, 4), + (278217, 181, 64), + (278218, 112, 5), + (278218, 181, 95), + (278219, 112, 6), + (278219, 181, 96), + (278220, 114, 0), + (278220, 181, 2), + (278221, 114, 0), + (278221, 181, 63), + (278222, 114, 1), + (278222, 181, 64), + (278223, 114, 1), + (278223, 181, 95), + (278224, 114, 1), + (278224, 181, 96), + (278225, 114, 0), + (278225, 181, 2), + (278226, 114, 0), + (278226, 181, 63), + (278227, 114, 1), + (278227, 181, 64), + (278228, 114, 1), + (278228, 181, 95), + (278229, 114, 2), + (278229, 181, 96), + (278230, 114, 0), + (278230, 181, 2), + (278231, 114, 1), + (278231, 181, 63), + (278232, 114, 2), + (278232, 181, 64), + (278233, 114, 2), + (278233, 181, 95), + (278234, 114, 3), + (278234, 181, 96), + (278235, 114, 1), + (278235, 181, 2), + (278236, 114, 2), + (278236, 181, 63), + (278237, 114, 3), + (278237, 181, 64), + (278238, 114, 3), + (278238, 181, 95), + (278239, 114, 4), + (278239, 181, 96), + (278240, 114, 1), + (278240, 181, 2), + (278241, 114, 2), + (278241, 181, 63), + (278242, 114, 3), + (278242, 181, 64), + (278243, 114, 4), + (278243, 181, 95), + (278244, 114, 5), + (278244, 181, 96), + (278245, 114, 1), + (278245, 181, 2), + (278246, 114, 3), + (278246, 181, 63), + (278247, 114, 4), + (278247, 181, 64), + (278248, 114, 5), + (278248, 181, 95), + (278249, 114, 6), + (278249, 181, 96), + (278250, 115, 0), + (278250, 181, 2), + (278251, 115, 0), + (278251, 181, 63), + (278252, 115, 1), + (278252, 181, 64), + (278253, 115, 1), + (278253, 181, 95), + (278254, 115, 1), + (278254, 181, 96), + (278255, 115, 0), + (278255, 181, 2), + (278256, 115, 0), + (278256, 181, 63), + (278257, 115, 1), + (278257, 181, 64), + (278258, 115, 1), + (278258, 181, 95), + (278259, 115, 2), + (278259, 181, 96), + (278260, 115, 0), + (278260, 181, 2), + (278261, 115, 1), + (278261, 181, 63), + (278262, 115, 2), + (278262, 181, 64), + (278263, 115, 2), + (278263, 181, 95), + (278264, 115, 3), + (278264, 181, 96), + (278265, 115, 1), + (278265, 181, 2), + (278266, 115, 2), + (278266, 181, 63), + (278267, 115, 3), + (278267, 181, 64), + (278268, 115, 3), + (278268, 181, 95), + (278269, 115, 4), + (278269, 181, 96), + (278270, 115, 1), + (278270, 181, 2), + (278271, 115, 2), + (278271, 181, 63), + (278272, 115, 3), + (278272, 181, 64), + (278273, 115, 4), + (278273, 181, 95), + (278274, 115, 5), + (278274, 181, 96), + (278275, 115, 1), + (278275, 181, 2), + (278276, 115, 3), + (278276, 181, 63), + (278277, 115, 4), + (278277, 181, 64), + (278278, 115, 5), + (278278, 181, 95), + (278279, 115, 6), + (278279, 181, 96), + (278280, 106, 0), + (278280, 181, 2), + (278281, 106, 0), + (278281, 181, 63), + (278282, 106, 1), + (278282, 181, 64), + (278283, 106, 1), + (278283, 181, 95), + (278284, 106, 1), + (278284, 181, 96), + (278285, 106, 0), + (278285, 181, 2), + (278286, 106, 0), + (278286, 181, 63), + (278287, 106, 1), + (278287, 181, 64), + (278288, 106, 1), + (278288, 181, 95), + (278289, 106, 2), + (278289, 181, 96), + (278290, 106, 0), + (278290, 181, 2), + (278291, 106, 1), + (278291, 181, 63), + (278292, 106, 2), + (278292, 181, 64), + (278293, 106, 2), + (278293, 181, 95), + (278294, 106, 3), + (278294, 181, 96), + (278295, 106, 1), + (278295, 181, 2), + (278296, 106, 2), + (278296, 181, 63), + (278297, 106, 3), + (278297, 181, 64), + (278298, 106, 3), + (278298, 181, 95), + (278299, 106, 4), + (278299, 181, 96), + (278300, 106, 1), + (278300, 181, 2), + (278301, 106, 2), + (278301, 181, 63), + (278302, 106, 3), + (278302, 181, 64), + (278303, 106, 4), + (278303, 181, 95), + (278304, 106, 5), + (278304, 181, 96), + (278305, 106, 1), + (278305, 181, 2), + (278306, 106, 3), + (278306, 181, 63), + (278307, 106, 4), + (278307, 181, 64), + (278308, 106, 5), + (278308, 181, 95), + (278309, 106, 6), + (278309, 181, 96), + (278310, 102, 0), + (278310, 181, 2), + (278311, 102, 0), + (278311, 181, 63), + (278312, 102, 1), + (278312, 181, 64), + (278313, 102, 1), + (278313, 181, 95), + (278314, 102, 1), + (278314, 181, 96), + (278315, 102, 0), + (278315, 181, 2), + (278316, 102, 0), + (278316, 181, 63), + (278317, 102, 1), + (278317, 181, 64), + (278318, 102, 1), + (278318, 181, 95), + (278319, 102, 2), + (278319, 181, 96), + (278320, 102, 0), + (278320, 181, 2), + (278321, 102, 1), + (278321, 181, 63), + (278322, 102, 2), + (278322, 181, 64), + (278323, 102, 2), + (278323, 181, 95), + (278324, 102, 3), + (278324, 181, 96), + (278325, 102, 1), + (278325, 181, 2), + (278326, 102, 2), + (278326, 181, 63), + (278327, 102, 3), + (278327, 181, 64), + (278328, 102, 3), + (278328, 181, 95), + (278329, 102, 4), + (278329, 181, 96), + (278330, 102, 1), + (278330, 181, 2), + (278331, 102, 2), + (278331, 181, 63), + (278332, 102, 3), + (278332, 181, 64), + (278333, 102, 4), + (278333, 181, 95), + (278334, 102, 5), + (278334, 181, 96), + (278335, 102, 1), + (278335, 181, 2), + (278336, 102, 3), + (278336, 181, 63), + (278337, 102, 4), + (278337, 181, 64), + (278338, 102, 5), + (278338, 181, 95), + (278339, 102, 6), + (278339, 181, 96), + (278340, 103, 0), + (278340, 181, 2), + (278341, 103, 0), + (278341, 181, 63), + (278342, 103, 1), + (278342, 181, 64), + (278343, 103, 1), + (278343, 181, 95), + (278344, 103, 1), + (278344, 181, 96), + (278345, 103, 0), + (278345, 181, 2), + (278346, 103, 0), + (278346, 181, 63), + (278347, 103, 1), + (278347, 181, 64), + (278348, 103, 1), + (278348, 181, 95), + (278349, 103, 2), + (278349, 181, 96), + (278350, 103, 0), + (278350, 181, 2), + (278351, 103, 1), + (278351, 181, 63), + (278352, 103, 2), + (278352, 181, 64), + (278353, 103, 2), + (278353, 181, 95), + (278354, 103, 3), + (278354, 181, 96), + (278355, 103, 1), + (278355, 181, 2), + (278356, 103, 2), + (278356, 181, 63), + (278357, 103, 3), + (278357, 181, 64), + (278358, 103, 3), + (278358, 181, 95), + (278359, 103, 4), + (278359, 181, 96), + (278360, 103, 1), + (278360, 181, 2), + (278361, 103, 2), + (278361, 181, 63), + (278362, 103, 3), + (278362, 181, 64), + (278363, 103, 4), + (278363, 181, 95), + (278364, 103, 5), + (278364, 181, 96), + (278365, 103, 1), + (278365, 181, 2), + (278366, 103, 3), + (278366, 181, 63), + (278367, 103, 4), + (278367, 181, 64), + (278368, 103, 5), + (278368, 181, 95), + (278369, 103, 6), + (278369, 181, 96), + (278370, 100, 0), + (278370, 181, 2), + (278371, 100, 0), + (278371, 181, 63), + (278372, 100, 1), + (278372, 181, 64), + (278373, 100, 1), + (278373, 181, 95), + (278374, 100, 1), + (278374, 181, 96), + (278375, 100, 0), + (278375, 181, 2), + (278376, 100, 0), + (278376, 181, 63), + (278377, 100, 1), + (278377, 181, 64), + (278378, 100, 1), + (278378, 181, 95), + (278379, 100, 2), + (278379, 181, 96), + (278380, 100, 0), + (278380, 181, 2), + (278381, 100, 1), + (278381, 181, 63), + (278382, 100, 2), + (278382, 181, 64), + (278383, 100, 2), + (278383, 181, 95), + (278384, 100, 3), + (278384, 181, 96), + (278385, 100, 1), + (278385, 181, 2), + (278386, 100, 2), + (278386, 181, 63), + (278387, 100, 3), + (278387, 181, 64), + (278388, 100, 3), + (278388, 181, 95), + (278389, 100, 4), + (278389, 181, 96), + (278390, 100, 1), + (278390, 181, 2), + (278391, 100, 2), + (278391, 181, 63), + (278392, 100, 3), + (278392, 181, 64), + (278393, 100, 4), + (278393, 181, 95), + (278394, 100, 5), + (278394, 181, 96), + (278395, 100, 1), + (278395, 181, 2), + (278396, 100, 3), + (278396, 181, 63), + (278397, 100, 4), + (278397, 181, 64), + (278398, 100, 5), + (278398, 181, 95), + (278399, 100, 6), + (278399, 181, 96), + (278400, 107, 0), + (278400, 181, 2), + (278401, 107, 0), + (278401, 181, 63), + (278402, 107, 1), + (278402, 181, 64), + (278403, 107, 1), + (278403, 181, 95), + (278404, 107, 1), + (278404, 181, 96), + (278405, 107, 0), + (278405, 181, 2), + (278406, 107, 0), + (278406, 181, 63), + (278407, 107, 1), + (278407, 181, 64), + (278408, 107, 1), + (278408, 181, 95), + (278409, 107, 2), + (278409, 181, 96), + (278410, 107, 0), + (278410, 181, 2), + (278411, 107, 1), + (278411, 181, 63), + (278412, 107, 2), + (278412, 181, 64), + (278413, 107, 2), + (278413, 181, 95), + (278414, 107, 3), + (278414, 181, 96), + (278415, 107, 1), + (278415, 181, 2), + (278416, 107, 2), + (278416, 181, 63), + (278417, 107, 3), + (278417, 181, 64), + (278418, 107, 3), + (278418, 181, 95), + (278419, 107, 4), + (278419, 181, 96), + (278420, 107, 1), + (278420, 181, 2), + (278421, 107, 2), + (278421, 181, 63), + (278422, 107, 3), + (278422, 181, 64), + (278423, 107, 4), + (278423, 181, 95), + (278424, 107, 5), + (278424, 181, 96), + (278425, 107, 1), + (278425, 181, 2), + (278426, 107, 3), + (278426, 181, 63), + (278427, 107, 4), + (278427, 181, 64), + (278428, 107, 5), + (278428, 181, 95), + (278429, 107, 6), + (278429, 181, 96), + (278430, 105, 0), + (278430, 181, 2), + (278431, 105, 0), + (278431, 181, 63), + (278432, 105, 1), + (278432, 181, 64), + (278433, 105, 1), + (278433, 181, 95), + (278434, 105, 1), + (278434, 181, 96), + (278435, 105, 0), + (278435, 181, 2), + (278436, 105, 0), + (278436, 181, 63), + (278437, 105, 1), + (278437, 181, 64), + (278438, 105, 1), + (278438, 181, 95), + (278439, 105, 2), + (278439, 181, 96), + (278440, 105, 0), + (278440, 181, 2), + (278441, 105, 1), + (278441, 181, 63), + (278442, 105, 2), + (278442, 181, 64), + (278443, 105, 2), + (278443, 181, 95), + (278444, 105, 3), + (278444, 181, 96), + (278445, 105, 1), + (278445, 181, 2), + (278446, 105, 2), + (278446, 181, 63), + (278447, 105, 3), + (278447, 181, 64), + (278448, 105, 3), + (278448, 181, 95), + (278449, 105, 4), + (278449, 181, 96), + (278450, 105, 1), + (278450, 181, 2), + (278451, 105, 2), + (278451, 181, 63), + (278452, 105, 3), + (278452, 181, 64), + (278453, 105, 4), + (278453, 181, 95), + (278454, 105, 5), + (278454, 181, 96), + (278455, 105, 1), + (278455, 181, 2), + (278456, 105, 3), + (278456, 181, 63), + (278457, 105, 4), + (278457, 181, 64), + (278458, 105, 5), + (278458, 181, 95), + (278459, 105, 6), + (278459, 181, 96), + (278460, 104, 0), + (278460, 181, 2), + (278461, 104, 0), + (278461, 181, 63), + (278462, 104, 1), + (278462, 181, 64), + (278463, 104, 1), + (278463, 181, 95), + (278464, 104, 1), + (278464, 181, 96), + (278465, 104, 0), + (278465, 181, 2), + (278466, 104, 0), + (278466, 181, 63), + (278467, 104, 1), + (278467, 181, 64), + (278468, 104, 1), + (278468, 181, 95), + (278469, 104, 2), + (278469, 181, 96), + (278470, 104, 0), + (278470, 181, 2), + (278471, 104, 1), + (278471, 181, 63), + (278472, 104, 2), + (278472, 181, 64), + (278473, 104, 2), + (278473, 181, 95), + (278474, 104, 3), + (278474, 181, 96), + (278475, 104, 1), + (278475, 181, 2), + (278476, 104, 2), + (278476, 181, 63), + (278477, 104, 3), + (278477, 181, 64), + (278478, 104, 3), + (278478, 181, 95), + (278479, 104, 4), + (278479, 181, 96), + (278480, 104, 1), + (278480, 181, 2), + (278481, 104, 2), + (278481, 181, 63), + (278482, 104, 3), + (278482, 181, 64), + (278483, 104, 4), + (278483, 181, 95), + (278484, 104, 5), + (278484, 181, 96), + (278485, 104, 1), + (278485, 181, 2), + (278486, 104, 3), + (278486, 181, 63), + (278487, 104, 4), + (278487, 181, 64), + (278488, 104, 5), + (278488, 181, 95), + (278489, 104, 6), + (278489, 181, 96), + (278753, 181, 2), + (278754, 181, 73), + (278755, 181, 74), + (278756, 181, 111), + (278757, 181, 112), + (278758, 181, 2), + (278759, 181, 84), + (278760, 181, 85), + (278761, 181, 127), + (278762, 181, 128), + (278763, 181, 2), + (278764, 181, 95), + (278765, 181, 96), + (278766, 181, 143), + (278767, 181, 144), + (278768, 181, 3), + (278769, 181, 105), + (278770, 181, 106), + (278771, 181, 159), + (278772, 181, 160), + (278773, 181, 3), + (278774, 181, 116), + (278775, 181, 117), + (278776, 181, 175), + (278777, 181, 176), + (278778, 181, 3), + (278779, 181, 127), + (278780, 181, 128), + (278781, 181, 191), + (278782, 181, 192), + (279380, 277, 15), + (279436, 1, 2000), + (279436, 221, 2000), + (279436, 319, 10), + (279436, 277, 75), + (279436, 276, 100), + (279436, 136, 160), + (279436, 164, 160), + (279436, 156, 300), + (279436, 160, 250), + (279436, 161, 250), + (279436, 278, 40), + (279436, 279, 40), + (279436, 280, 40), + (279436, 281, 40), + (279436, 282, 40), + (279436, 311, 40), + (279436, 316, 40), + (279436, 317, 40), + (279436, 120, 100), + (279436, 118, 100), + (279436, 119, 100), + (279436, 149, 100), + (279437, 1, 2000), + (279437, 221, 2000), + (279437, 319, 10), + (279437, 277, 100), + (279437, 276, 75), + (279437, 136, 160), + (279437, 164, 160), + (279437, 156, 300), + (279437, 160, 250), + (279437, 161, 250), + (279437, 278, 30), + (279437, 279, 30), + (279437, 280, 30), + (279437, 281, 30), + (279437, 282, 30), + (279437, 311, 30), + (279437, 316, 30), + (279437, 317, 30), + (279437, 343, 20), + (279437, 168, 30), + (279437, 149, 100), + (279438, 1, 2000), + (279438, 221, 2000), + (279438, 319, 10), + (279438, 277, 75), + (279438, 276, 100), + (279438, 136, 160), + (279438, 164, 160), + (279438, 156, 300), + (279438, 160, 250), + (279438, 161, 250), + (279438, 278, 40), + (279438, 279, 40), + (279438, 280, 40), + (279438, 281, 40), + (279438, 282, 40), + (279438, 311, 40), + (279438, 316, 40), + (279438, 317, 40), + (279438, 120, 100), + (279438, 118, 100), + (279438, 119, 100), + (279438, 149, 100), + (279439, 221, 1000), + (279439, 1, 1000), + (279439, 120, 100), + (279439, 118, 100), + (279439, 119, 100), + (279439, 276, 70), + (279439, 277, 30), + (279439, 278, 40), + (279439, 279, 40), + (279439, 280, 40), + (279439, 281, 40), + (279439, 282, 40), + (279439, 311, 40), + (279439, 316, 40), + (279439, 317, 40), + (279439, 319, 10), + (279439, 156, 100), + (279439, 164, 100), + (279440, 221, 1000), + (279440, 1, 1000), + (279440, 149, 100), + (279440, 276, 30), + (279440, 277, 70), + (279440, 278, 30), + (279440, 279, 30), + (279440, 280, 30), + (279440, 281, 30), + (279440, 282, 30), + (279440, 311, 30), + (279440, 316, 30), + (279440, 317, 30), + (279440, 168, 20), + (279440, 319, 10), + (279440, 343, 10), + (279440, 156, 120), + (279440, 164, 120), + (279441, 1, 2000), + (279441, 221, 2000), + (279441, 319, 10), + (279441, 277, 100), + (279441, 276, 75), + (279441, 136, 160), + (279441, 164, 160), + (279441, 156, 300), + (279441, 160, 250), + (279441, 161, 250), + (279441, 278, 30), + (279441, 279, 30), + (279441, 280, 30), + (279441, 281, 30), + (279441, 282, 30), + (279441, 311, 30), + (279441, 316, 30), + (279441, 317, 30), + (279441, 343, 20), + (279441, 168, 30), + (279441, 149, 100), + (279449, 45, 6), + (279449, 181, 30), + (279449, 1, 150), + (279449, 221, 150), + (279449, 19, 35), + (279449, 21, 35), + (279449, 16, 35), + (279449, 20, 35), + (279449, 17, 35), + (279449, 18, 35), + (279450, 16, 70), + (279450, 18, 70), + (279450, 45, 6), + (279451, 19, 70), + (279451, 21, 70), + (279451, 45, 6), + (279452, 20, 70), + (279452, 17, 70), + (279452, 45, 6), + (280531, 156, 150), + (280717, 1, 300), + (280717, 277, 15), + (280717, 276, 15), + (280718, 1, 300), + (280718, 127, 15), + (280718, 128, 15), + (280718, 129, 15), + (280719, 1, 300), + (280719, 277, 15), + (280719, 276, 15), + (280720, 1, 600), + (280720, 277, 30), + (280720, 128, 30), + (280720, 129, 30), + (280721, 1, 600), + (280721, 276, 30), + (280721, 130, 30), + (280722, 276, 30), + (280722, 130, 30), + (280722, 131, 30), + (280723, 1, 600), + (280723, 276, 30), + (280723, 164, 120), + (280724, 1, 300), + (280724, 277, 15), + (280724, 276, 15), + (280725, 1, 600), + (280725, 129, 30), + (280725, 131, 30), + (280726, 1, 600), + (280726, 276, 30), + (280726, 129, 30), + (280727, 1, 600), + (280727, 276, 30), + (280727, 130, 30), + (280727, 131, 30), + (280728, 1, 300), + (280728, 276, 15), + (280728, 149, 50), + (280728, 119, 50), + (280729, 1, 300), + (280729, 277, 15), + (280729, 276, 15), + (280729, 19, 32), + (280730, 1, 300), + (280730, 277, 15), + (280730, 276, 15), + (280730, 19, 32), + (280756, 381, 5), + (280756, 380, 5), + (280756, 156, 50), + (280756, 391, 2), + (280757, 380, 5), + (280757, 156, 25), + (280757, 391, 2), + (280758, 380, 5), + (280758, 156, 25), + (280758, 391, 2), + (280759, 381, 5), + (280759, 380, 5), + (280759, 156, 25), + (280759, 391, 2), + (280760, 380, 5), + (280760, 156, 50), + (280760, 391, 2), + (280761, 381, 5), + (280761, 380, 5), + (280761, 156, 25), + (280761, 391, 2), + (280762, 380, 5), + (280762, 156, 25), + (280762, 391, 2), + (280763, 380, 5), + (280763, 156, 50), + (280763, 391, 2), + (280764, 380, 5), + (280764, 156, 50), + (280764, 391, 2), + (280765, 381, 5), + (280765, 380, 5), + (280765, 156, 50), + (280765, 391, 2), + (280766, 381, 5), + (280766, 380, 5), + (280766, 156, 25), + (280766, 391, 2), + (280767, 380, 5), + (280767, 156, 50), + (280767, 391, 2), + (280768, 380, 5), + (280768, 156, 25), + (280768, 391, 2), + (280769, 381, 5), + (280769, 380, 5), + (280769, 156, 25), + (280769, 391, 2), + (280770, 381, 5), + (280770, 380, 5), + (280770, 156, 50), + (280770, 391, 2), + (280770, 128, 30), + (280770, 124, 30), + (280770, 18, 30), + (280770, 159, 60), + (280770, 112, 30), + (280770, 100, 30), + (280770, 102, 30), + (280770, 130, 30), + (280770, 1, 300), + (280771, 380, 5), + (280771, 156, 25), + (280771, 391, 2), + (280771, 103, 30), + (280771, 112, 30), + (280771, 136, 30), + (280771, 101, 60), + (280771, 134, 60), + (280771, 147, 30), + (280771, 148, 30), + (280771, 277, 30), + (280772, 380, 5), + (280772, 156, 25), + (280772, 391, 2), + (280772, 113, 30), + (280772, 151, 30), + (280772, 164, 30), + (280772, 163, 60), + (280772, 150, 30), + (280772, 1, 300), + (280772, 318, -5), + (280773, 381, 5), + (280773, 380, 5), + (280773, 156, 25), + (280773, 391, 2), + (280773, 122, 30), + (280773, 112, 30), + (280773, 162, 90), + (280773, 129, 30), + (280773, 132, 60), + (280773, 168, 30), + (280773, 153, 30), + (280773, 277, 30), + (280774, 380, 5), + (280774, 156, 50), + (280774, 391, 2), + (280774, 102, 30), + (280774, 107, 30), + (280774, 276, 30), + (280774, 1, 300), + (280774, 103, 30), + (280774, 105, 30), + (280774, 106, 30), + (280774, 104, 30), + (280775, 381, 5), + (280775, 380, 5), + (280775, 156, 25), + (280775, 391, 2), + (280775, 125, 60), + (280775, 158, 60), + (280775, 141, 60), + (280775, 131, 30), + (280775, 109, 30), + (280775, 130, 30), + (280775, 112, 30), + (280775, 100, 30), + (280775, 115, 30), + (280775, 133, 30), + (280775, 163, 30), + (280775, 1, 300), + (280776, 380, 5), + (280776, 156, 25), + (280776, 391, 2), + (280776, 114, 30), + (280776, 148, 30), + (280776, 154, 60), + (280776, 165, 60), + (280776, 167, 30), + (280776, 277, 30), + (280777, 380, 5), + (280777, 156, 50), + (280777, 391, 2), + (280777, 105, 30), + (280777, 145, 30), + (280777, 143, 30), + (280777, 277, 30), + (280777, 147, 30), + (280777, 104, 30), + (280777, 142, 30), + (280778, 380, 5), + (280778, 156, 50), + (280778, 391, 2), + (280778, 100, 30), + (280778, 142, 30), + (280778, 155, 60), + (280778, 17, 30), + (280778, 144, 30), + (280778, 111, 30), + (280778, 277, 30), + (280779, 381, 5), + (280779, 380, 5), + (280779, 156, 50), + (280779, 391, 2), + (280779, 127, 30), + (280779, 19, 30), + (280779, 160, 60), + (280779, 168, 60), + (280779, 102, 30), + (280779, 107, 30), + (280779, 111, 30), + (280779, 112, 30), + (280779, 129, 30), + (280779, 122, 30), + (280779, 1, 300), + (280780, 381, 5), + (280780, 380, 5), + (280780, 156, 25), + (280780, 391, 2), + (280780, 130, 30), + (280780, 21, 30), + (280780, 318, -10), + (280780, 221, 500), + (280780, 1, 300), + (280780, 277, 30), + (280781, 380, 5), + (280781, 156, 50), + (280781, 391, 2), + (280781, 106, 30), + (280781, 146, 30), + (280781, 144, 30), + (280781, 20, 30), + (280781, 100, 30), + (280781, 277, 30), + (280781, 1, 300), + (280782, 380, 5), + (280782, 156, 25), + (280782, 391, 2), + (280782, 116, 30), + (280782, 167, 30), + (280782, 123, 30), + (280782, 16, 30), + (280782, 148, 30), + (280782, 114, 30), + (280782, 133, 30), + (280782, 110, 30), + (280783, 381, 5), + (280783, 380, 5), + (280783, 156, 25), + (280783, 391, 2), + (280783, 115, 30), + (280783, 129, 30), + (280783, 126, 60), + (280783, 157, 60), + (280783, 382, -10), + (280783, 150, 30), + (280783, 131, 30), + (280783, 379, 2), + (280783, 1, 300), + (280787, 149, -1700), + (280787, 118, -1700), + (280787, 119, -1800), + (280787, 120, -1700), + (280787, 156, -1000), + (280788, 122, -1500), + (280788, 127, -1500), + (280788, 131, -1500), + (280788, 130, -1500), + (280788, 129, -1500), + (280788, 128, -1500), + (281045, 116, 30), + (281045, 167, 30), + (281045, 123, 30), + (281045, 16, 30), + (281046, 100, 30), + (281046, 142, 30), + (281046, 155, 60), + (281046, 17, 30), + (281047, 125, 60), + (281047, 158, 60), + (281047, 141, 60), + (281047, 131, 30), + (281047, 109, 30), + (281048, 114, 30), + (281048, 148, 30), + (281048, 154, 60), + (281048, 165, 60), + (281049, 113, 30), + (281049, 151, 30), + (281049, 164, 30), + (281049, 163, 60), + (281050, 103, 30), + (281050, 112, 30), + (281050, 136, 30), + (281050, 101, 60), + (281050, 134, 60), + (281051, 115, 30), + (281051, 129, 30), + (281051, 126, 60), + (281051, 157, 60), + (281051, 382, -10), + (281052, 122, 30), + (281052, 162, 90), + (281052, 132, 60), + (281052, 153, 30), + (281053, 102, 30), + (281053, 107, 30), + (281053, 276, 30), + (281053, 1, 180), + (281054, 128, 30), + (281054, 124, 30), + (281054, 18, 30), + (281054, 159, 60), + (281055, 130, 30), + (281055, 21, 30), + (281055, 318, -10), + (281055, 221, 180), + (281056, 127, 30), + (281056, 19, 30), + (281056, 160, 60), + (281056, 168, 60), + (281057, 105, 30), + (281057, 145, 30), + (281057, 143, 30), + (281057, 277, 30), + (281058, 106, 30), + (281058, 146, 30), + (281058, 144, 30), + (281058, 20, 30), + (281194, 156, 100), + (281194, 168, 500), + (281194, 168, 200), + (281194, 97, 200), + (281196, 156, 100), + (281196, 168, 500), + (281196, 168, 200), + (281196, 97, 200), + (281197, 156, 100), + (281197, 168, 500), + (281197, 168, 200), + (281197, 97, 200), + (281198, 156, 100), + (281198, 168, 500), + (281198, 168, 200), + (281198, 97, 200), + (281199, 156, 100), + (281199, 168, 500), + (281199, 168, 200), + (281199, 97, 200), + (281200, 156, 100), + (281200, 168, 500), + (281200, 168, 200), + (281200, 97, 200), + (281201, 156, 100), + (281201, 168, 500), + (281201, 168, 200), + (281201, 97, 200), + (281202, 156, 100), + (281202, 168, 500), + (281202, 168, 200), + (281202, 97, 200), + (281203, 156, 100), + (281203, 168, 500), + (281203, 168, 200), + (281203, 97, 200), + (281204, 156, 100), + (281204, 168, 500), + (281204, 168, 200), + (281204, 97, 200), + (281205, 156, 100), + (281205, 168, 500), + (281205, 168, 200), + (281205, 97, 200), + (281206, 156, 100), + (281206, 168, 500), + (281206, 168, 200), + (281206, 97, 200), + (281207, 156, 100), + (281207, 168, 500), + (281207, 168, 200), + (281207, 97, 200), + (281208, 156, 100), + (281208, 168, 500), + (281208, 168, 200), + (281208, 97, 200), + (281267, 168, 500), + (281267, 156, 100), + (281267, 168, 200), + (281468, 91, 1000), + (281468, 90, 1000), + (281468, 92, 1000), + (281468, 93, 1000), + (281468, 94, 1000), + (281468, 95, 1000), + (281468, 96, 1000), + (281468, 97, 1000), + (281468, 129, 15), + (281468, 127, 15), + (281468, 122, 15), + (281468, 130, 15), + (281468, 128, 15), + (281468, 131, 15), + (281468, 156, 75), + (281468, 319, 3), + (281503, 1, 300), + (281503, 276, 15), + (281503, 128, 15), + (281503, 129, 15), + (281504, 1, 600), + (281504, 276, 30), + (281504, 128, 30), + (281504, 129, 30), + (281505, 1, 300), + (281505, 276, 15), + (281505, 149, 50), + (281505, 119, 50), + (281506, 1, 300), + (281506, 276, 15), + (281506, 149, 50), + (281506, 119, 50), + (281506, 167, -2000), + (281507, 1, 300), + (281507, 277, 15), + (281507, 276, 15), + (281570, 156, 1000), + (281570, 205, 30), + (281570, 206, 30), + (281570, 207, 30), + (281570, 208, 30), + (281570, 216, 30), + (281570, 217, 30), + (281570, 219, 30), + (281570, 225, 30), + (281669, 156, 150), + (281685, 156, 150), + (281906, 156, 150), + (281957, 475, 100), + (281957, 476, 100), + (281957, 477, 100), + (281957, 478, 100), + (281957, 479, 100), + (281957, 480, 100), + (281957, 482, 100), + (281957, 483, 100), + (281957, 219, 100), + (281957, 208, 100), + (281957, 217, 100), + (281957, 207, 100), + (281957, 206, 100), + (281957, 218, 100), + (281957, 225, 100), + (281957, 205, 100), + (281957, 216, 100), + (281962, 1, 300), + (281962, 276, 15), + (281962, 128, 15), + (281962, 122, 15), + (282113, 91, 350), + (282113, 90, 350), + (282113, 92, 350), + (282113, 95, 350), + (282113, 97, 350), + (282113, 93, 350), + (282113, 94, 350), + (282113, 96, 350), + (282113, 1, 125), + (282113, 221, 125), + (282113, 120, 10), + (282113, 119, 10), + (282113, 118, 10), + (282113, 149, 10), + (282113, 168, 10), + (282113, 155, 15), + (282113, 154, 15), + (282113, 153, 15), + (282113, 379, 1), + (282116, 91, 600), + (282116, 90, 600), + (282116, 92, 600), + (282116, 95, 600), + (282116, 97, 600), + (282116, 93, 600), + (282116, 94, 600), + (282116, 96, 600), + (282116, 1, 125), + (282116, 221, 125), + (282116, 120, 10), + (282116, 119, 10), + (282116, 118, 10), + (282116, 149, 10), + (282116, 168, 10), + (282116, 155, 15), + (282116, 154, 15), + (282116, 153, 15), + (282116, 391, 1), + (282117, 91, 250), + (282117, 90, 250), + (282117, 92, 250), + (282117, 95, 250), + (282117, 97, 250), + (282117, 93, 250), + (282117, 94, 250), + (282117, 96, 250), + (282117, 1, 125), + (282117, 221, 125), + (282117, 120, 10), + (282117, 119, 10), + (282117, 118, 10), + (282117, 149, 10), + (282117, 168, 10), + (282117, 155, 15), + (282117, 154, 15), + (282117, 153, 15), + (282117, 319, 3), + (282118, 91, 250), + (282118, 90, 250), + (282118, 92, 250), + (282118, 95, 250), + (282118, 97, 250), + (282118, 93, 250), + (282118, 94, 250), + (282118, 96, 250), + (282118, 1, 125), + (282118, 221, 125), + (282118, 120, 10), + (282118, 119, 10), + (282118, 118, 10), + (282118, 149, 10), + (282118, 168, 10), + (282118, 155, 15), + (282118, 154, 15), + (282118, 153, 15), + (282118, 318, -2), + (282119, 91, 750), + (282119, 90, 750), + (282119, 92, 750), + (282119, 95, 750), + (282119, 97, 750), + (282119, 93, 750), + (282119, 94, 750), + (282119, 96, 750), + (282119, 1, 125), + (282119, 221, 125), + (282119, 120, 10), + (282119, 119, 10), + (282119, 118, 10), + (282119, 149, 10), + (282119, 168, 10), + (282119, 155, 15), + (282119, 154, 15), + (282119, 153, 15), + (282119, 276, 15), + (282120, 91, 700), + (282120, 90, 700), + (282120, 92, 700), + (282120, 95, 700), + (282120, 97, 700), + (282120, 93, 700), + (282120, 94, 700), + (282120, 96, 250), + (282120, 1, 125), + (282120, 221, 125), + (282120, 120, 10), + (282120, 119, 10), + (282120, 118, 10), + (282120, 149, 10), + (282120, 168, 10), + (282120, 155, 15), + (282120, 154, 15), + (282120, 153, 15), + (282120, 317, 10), + (282120, 316, 10), + (282120, 311, 10), + (282120, 282, 10), + (282120, 281, 10), + (282120, 280, 10), + (282120, 279, 10), + (282120, 278, 10), + (283379, 1, 300), + (283379, 277, 15), + (283379, 276, 15), + (283380, 1, 300), + (283380, 277, 15), + (283380, 276, 15), + (284004, 156, 150), + (284006, 156, 150), + (284043, 151, -5000), + (284062, 156, 800), + (284599, 122, 75), + (284599, 127, 75), + (284599, 128, 75), + (284599, 129, 75), + (284599, 130, 75), + (284599, 131, 75), + (285055, 156, 150), + (285445, 118, -800), + (285445, 119, -800), + (285445, 120, -800), + (285445, 151, -300), + (285445, 379, -15), + (285445, 380, -45), + (286232, 156, 100), + (286232, 168, 500), + (286233, 156, -500), + (286233, 16, 50), + (286233, 168, 50), + (286233, 90, 50), + (286233, 91, 50), + (286233, 92, 50), + (286233, 93, 30), + (286233, 94, 60), + (286233, 97, 5), + (286234, 156, -500), + (286234, 16, 150), + (286234, 168, 150), + (286234, 90, 150), + (286234, 91, 150), + (286234, 92, 150), + (286234, 93, 30), + (286234, 94, 160), + (286234, 97, 5), + (286303, 93, 200), + (286303, 95, 450), + (286303, 92, 450), + (286303, 97, 450), + (286303, 91, 300), + (286303, 96, 200), + (286303, 90, 300), + (286303, 94, 200), + (286303, 18, 22), + (286303, 16, 22), + (287041, 125, 20), + (287041, 126, 20), + (287041, 157, 20), + (287041, 158, 20), + (287041, 159, 20), + (287041, 163, 20), + (287041, 160, 20), + (287043, 160, 20), + (287043, 161, 20), + (287043, 162, 20), + (287043, 141, 20), + (287043, 165, 20), + (287043, 135, 20), + (287045, 123, 20), + (287045, 124, 20), + (287045, 343, 3), + (287045, 364, 2), + (287047, 164, 20), + (287047, 136, 20), + (287047, 165, 20), + (287047, 161, 20), + (287047, 124, 20), + (287047, 123, 20), + (287047, 162, 20), + (287060, 125, 20), + (287060, 126, 20), + (287060, 157, 20), + (287060, 158, 20), + (287060, 159, 20), + (287060, 163, 20), + (287061, 160, 20), + (287061, 161, 20), + (287061, 162, 20), + (287061, 141, 20), + (287061, 165, 20), + (287061, 135, 20), + (287062, 125, 20), + (287062, 126, 20), + (287062, 157, 20), + (287062, 158, 20), + (287062, 159, 20), + (287062, 163, 20), + (287063, 160, 20), + (287063, 161, 20), + (287063, 162, 20), + (287063, 141, 20), + (287063, 165, 20), + (287063, 135, 20), + (287064, 125, 20), + (287064, 126, 20), + (287064, 157, 20), + (287064, 158, 20), + (287064, 159, 20), + (287064, 163, 20), + (287065, 160, 20), + (287065, 161, 20), + (287065, 162, 20), + (287065, 141, 20), + (287065, 165, 20), + (287065, 135, 20), + (287066, 123, 20), + (287066, 124, 20), + (287066, 343, 3), + (287066, 364, 2), + (287067, 123, 20), + (287067, 124, 20), + (287067, 343, 3), + (287067, 364, 2), + (287068, 123, 20), + (287068, 124, 20), + (287068, 343, 3), + (287068, 364, 2), + (287286, 156, 1000), + (287556, 318, 30), + (287556, 535, 100), + (287556, 379, -50), + (288084, 45, 6), + (288084, 181, 20), + (288084, 1, 100), + (288084, 221, 100), + (288084, 19, 5), + (288084, 21, 5), + (288084, 20, 5), + (288084, 17, 5), + (288084, 16, 5), + (288084, 18, 5), + (288106, 181, 42), + (288106, 318, -10), + (288107, 181, 84), + (288107, 318, -5), + (288125, 181, 42), + (288125, 381, 100), + (288126, 181, 84), + (288126, 381, 50), + (288128, 181, 84), + (288128, 383, 33), + (288129, 181, 42), + (288129, 383, 66), + (288132, 181, 20), + (288132, 1, 100), + (288132, 221, 100), + (288134, 45, 6), + (288134, 181, 20), + (288134, 1, 100), + (288134, 221, 100), + (288139, 181, 64), + (288139, 319, 2), + (288140, 181, 64), + (288140, 279, 5), + (288140, 280, 5), + (288140, 278, 5), + (288140, 316, 5), + (288140, 311, 5), + (288140, 281, 5), + (288140, 317, 5), + (288140, 282, 5), + (288203, 156, 150), + (288204, 156, 50), + (288204, 168, 200), + (288204, 319, 7), + (288281, 122, 25), + (288281, 127, 25), + (288281, 128, 25), + (288281, 129, 25), + (288281, 130, 25), + (288281, 131, 25), + (288435, 156, 150), + (288471, 153, 20), + (288719, 45, 6), + (288719, 181, 20), + (288719, 1, 100), + (288719, 221, 100), + (288719, 19, 5), + (288719, 21, 5), + (288719, 20, 5), + (288719, 17, 5), + (288719, 16, 5), + (288719, 18, 5), + (288720, 45, 6), + (288720, 181, 30), + (288720, 1, 150), + (288720, 221, 150), + (288720, 19, 35), + (288720, 21, 35), + (288720, 20, 35), + (288720, 17, 35), + (288729, 149, -900), + (288729, 118, -900), + (288729, 119, -900), + (288729, 120, -900), + (288744, 124, 1), + (288745, 124, 15), + (288796, 156, 150), + (288798, 156, 150), + (288800, 156, 150), + (288803, 156, 150), + (288806, 156, 150), + (288809, 156, 150), + (288810, 156, 150), + (288813, 156, 150), + (288815, 156, 150), + (288817, 156, 150), + (288819, 156, 150), + (289579, 156, 150), + (289783, 1, 10), + (289783, 129, 1), + (289783, 122, 1), + (289783, 130, 1), + (289783, 319, 1), + (289783, 19, 1), + (289784, 1, 100), + (289784, 129, 15), + (289784, 122, 15), + (289784, 130, 10), + (289784, 319, 4), + (289784, 19, 8), + (289989, 156, 150), + (290215, 156, 150), + (290222, 90, 1), + (290222, 91, 1), + (290222, 92, 1), + (290222, 93, 1), + (290222, 94, 1), + (290222, 95, 1), + (290222, 96, 1), + (290222, 97, 1), + (290222, 19, 1), + (290222, 21, 1), + (290223, 90, 200), + (290223, 91, 200), + (290223, 92, 200), + (290223, 93, 200), + (290223, 94, 200), + (290223, 95, 200), + (290223, 96, 200), + (290223, 97, 200), + (290223, 19, 20), + (290223, 21, 20), + (290224, 1, 5), + (290224, 90, 1), + (290224, 91, 1), + (290224, 92, 1), + (290224, 93, 1), + (290224, 94, 1), + (290224, 95, 1), + (290224, 96, 1), + (290224, 97, 1), + (290224, 17, 1), + (290224, 20, 1), + (290225, 1, 100), + (290225, 90, 50), + (290225, 91, 50), + (290225, 92, 50), + (290225, 93, 50), + (290225, 94, 50), + (290225, 95, 50), + (290225, 96, 50), + (290225, 97, 50), + (290225, 17, 20), + (290225, 20, 20), + (290226, 1, 5), + (290226, 90, 1), + (290226, 91, 1), + (290226, 92, 1), + (290226, 93, 1), + (290226, 94, 1), + (290226, 95, 1), + (290226, 96, 1), + (290226, 97, 1), + (290226, 16, 1), + (290226, 18, 1), + (290226, 111, 1), + (290227, 1, 180), + (290227, 90, 200), + (290227, 91, 200), + (290227, 92, 200), + (290227, 93, 200), + (290227, 94, 200), + (290227, 95, 200), + (290227, 96, 200), + (290227, 97, 200), + (290227, 16, 20), + (290227, 18, 20), + (290227, 111, 20), + (290228, 1, 5), + (290228, 90, 1), + (290228, 91, 1), + (290228, 92, 1), + (290228, 93, 1), + (290228, 94, 1), + (290228, 95, 1), + (290228, 96, 1), + (290228, 97, 1), + (290228, 102, 1), + (290228, 103, 1), + (290228, 107, 1), + (290228, 105, 1), + (290228, 142, 1), + (290228, 154, 1), + (290228, 155, 1), + (290229, 1, 280), + (290229, 90, 1200), + (290229, 91, 1200), + (290229, 92, 1200), + (290229, 93, 1200), + (290229, 94, 1200), + (290229, 95, 1200), + (290229, 96, 1200), + (290229, 97, 1200), + (290229, 102, 20), + (290229, 103, 20), + (290229, 107, 20), + (290229, 105, 20), + (290229, 142, 25), + (290229, 154, 25), + (290229, 155, 25), + (290230, 1, 5), + (290230, 90, 1), + (290230, 91, 1), + (290230, 92, 1), + (290230, 93, 1), + (290230, 94, 1), + (290230, 95, 1), + (290230, 96, 1), + (290230, 97, 1), + (290230, 101, 1), + (290230, 134, 1), + (290230, 108, 1), + (290230, 109, 1), + (290230, 110, 1), + (290230, 118, 1), + (290230, 119, 1), + (290230, 120, 1), + (290231, 1, 220), + (290231, 90, 350), + (290231, 91, 350), + (290231, 92, 350), + (290231, 93, 350), + (290231, 94, 350), + (290231, 95, 350), + (290231, 96, 350), + (290231, 97, 350), + (290231, 101, 25), + (290231, 134, 25), + (290231, 108, 25), + (290231, 109, 25), + (290231, 110, 25), + (290231, 118, 50), + (290231, 119, 50), + (290231, 120, 50), + (290232, 1, 5), + (290232, 90, 1), + (290232, 91, 1), + (290232, 92, 1), + (290232, 93, 1), + (290232, 94, 1), + (290232, 95, 1), + (290232, 96, 1), + (290232, 97, 1), + (290232, 112, 1), + (290232, 113, 1), + (290232, 114, 1), + (290232, 115, 1), + (290232, 116, 1), + (290232, 153, 1), + (290232, 154, 1), + (290233, 1, 280), + (290233, 90, 750), + (290233, 91, 750), + (290233, 92, 750), + (290233, 93, 750), + (290233, 94, 750), + (290233, 95, 750), + (290233, 96, 750), + (290233, 97, 750), + (290233, 112, 20), + (290233, 113, 20), + (290233, 114, 20), + (290233, 115, 20), + (290233, 116, 20), + (290233, 153, 25), + (290233, 154, 25), + (290234, 1, 5), + (290234, 90, 1), + (290234, 91, 1), + (290234, 92, 1), + (290234, 93, 1), + (290234, 94, 1), + (290234, 95, 1), + (290234, 96, 1), + (290234, 97, 1), + (290234, 100, 1), + (290234, 106, 1), + (290234, 104, 1), + (290234, 146, 1), + (290234, 147, 1), + (290234, 153, 1), + (290234, 155, 1), + (290235, 1, 250), + (290235, 90, 450), + (290235, 91, 450), + (290235, 92, 450), + (290235, 93, 450), + (290235, 94, 450), + (290235, 95, 450), + (290235, 96, 450), + (290235, 97, 450), + (290235, 100, 20), + (290235, 106, 20), + (290235, 104, 20), + (290235, 146, 25), + (290235, 147, 25), + (290235, 153, 25), + (290235, 155, 25), + (290276, 90, 1), + (290276, 91, 1), + (290276, 92, 1), + (290276, 93, 1), + (290276, 94, 1), + (290276, 95, 1), + (290276, 96, 1), + (290276, 97, 1), + (290276, 1, 5), + (290276, 127, 1), + (290276, 128, 1), + (290276, 129, 1), + (290276, 122, 1), + (290276, 130, 1), + (290276, 131, 1), + (290276, 149, 1), + (290277, 90, 200), + (290277, 91, 200), + (290277, 92, 200), + (290277, 93, 200), + (290277, 94, 200), + (290277, 95, 200), + (290277, 96, 200), + (290277, 97, 200), + (290277, 1, 280), + (290277, 127, 20), + (290277, 128, 20), + (290277, 129, 20), + (290277, 122, 20), + (290277, 130, 20), + (290277, 131, 20), + (290277, 149, 50), + (290474, 156, 450), + (290474, 205, 30), + (290474, 206, 30), + (290474, 207, 30), + (290474, 208, 30), + (290474, 216, 30), + (290474, 217, 30), + (290474, 219, 30), + (290474, 225, 30), + (290480, 91, 50), + (290480, 90, 50), + (290480, 95, 150), + (290480, 96, 50), + (290480, 97, 50), + (290480, 94, 50), + (290480, 93, 50), + (290480, 92, 50), + (290480, 112, 15), + (290480, 150, 10), + (290480, 134, 10), + (290583, 156, 450), + (290583, 205, 30), + (290583, 206, 30), + (290583, 207, 30), + (290583, 208, 30), + (290583, 216, 30), + (290583, 217, 30), + (290583, 219, 30), + (290583, 225, 30), + (290619, 168, 1), + (290619, 181, 2), + (290625, 168, 35), + (290625, 181, 65), + (290626, 168, 35), + (290626, 181, 66), + (290627, 168, 35), + (290627, 181, 120), + (291931, 90, 500), + (291931, 91, 500), + (291931, 92, 500), + (291931, 93, 500), + (291931, 94, 500), + (291931, 95, 500), + (291931, 96, 500), + (291931, 97, 500), + (291931, 1, 450), + (291931, 221, 450), + (291931, 127, 20), + (291931, 128, 20), + (291931, 131, 20), + (291931, 130, 20), + (291931, 129, 20), + (291931, 122, 20), + (291931, 276, 20), + (291931, 277, 20), + (291931, 168, 20), + (291931, 278, 15), + (291931, 279, 15), + (291931, 280, 15), + (291931, 281, 15), + (291931, 282, 15), + (291931, 316, 15), + (291931, 317, 15), + (291931, 311, 15), + (291931, 319, 3), + (291931, 379, 3), + (291932, 90, 500), + (291932, 91, 500), + (291932, 92, 500), + (291932, 93, 500), + (291932, 94, 500), + (291932, 95, 500), + (291932, 96, 500), + (291932, 97, 500), + (291932, 1, 450), + (291932, 221, 450), + (291932, 127, 10), + (291932, 128, 10), + (291932, 131, 10), + (291932, 130, 10), + (291932, 129, 10), + (291932, 122, 10), + (291932, 276, 10), + (291932, 277, 10), + (291932, 168, 10), + (291932, 278, 15), + (291932, 279, 15), + (291932, 280, 15), + (291932, 281, 15), + (291932, 282, 15), + (291932, 316, 15), + (291932, 317, 15), + (291932, 311, 15), + (292152, 181, 65), + (292152, 318, -15), + (292153, 181, 66), + (292153, 318, -15), + (292154, 181, 119), + (292154, 318, -15), + (292155, 181, 120), + (292155, 318, -15), + (292157, 111, 32), + (292157, 112, 32), + (292157, 133, 32), + (292157, 116, 32), + (292157, 113, 32), + (292157, 114, 32), + (292157, 115, 32), + (292157, 109, 32), + (292157, 110, 32), + (292157, 167, 32), + (292157, 148, 32), + (292157, 150, 32), + (292157, 151, 32), + (292157, 134, 32), + (292157, 108, 32), + (292157, 121, 32), + (292183, 181, 65), + (292183, 383, 99), + (292184, 181, 66), + (292184, 383, 99), + (292185, 181, 119), + (292185, 383, 99), + (292186, 181, 120), + (292186, 383, 99), + (292187, 181, 65), + (292187, 381, 150), + (292188, 181, 66), + (292188, 381, 150), + (292189, 181, 119), + (292189, 381, 150), + (292190, 181, 120), + (292190, 381, 150), + (292191, 90, 1400), + (292191, 91, 1400), + (292191, 92, 1400), + (292191, 93, 1400), + (292191, 94, 1400), + (292191, 95, 1400), + (292191, 96, 1400), + (292191, 97, 1400), + (292191, 19, 20), + (292191, 20, 20), + (292191, 21, 20), + (292191, 276, 30), + (292191, 277, 30), + (292191, 379, 1), + (292191, 118, 25), + (292191, 119, 25), + (292191, 120, 25), + (292191, 149, 25), + (292194, 91, 1200), + (292194, 90, 1200), + (292194, 97, 1200), + (292194, 95, 1200), + (292194, 92, 1200), + (292194, 94, 1200), + (292194, 93, 1200), + (292194, 96, 1200), + (292194, 1, 500), + (292194, 221, 500), + (292194, 131, 20), + (292194, 130, 20), + (292194, 122, 20), + (292194, 129, 20), + (292194, 127, 20), + (292194, 128, 20), + (292194, 156, 100), + (292194, 154, 20), + (292194, 155, 20), + (292194, 153, 20), + (292194, 319, 3), + (292194, 276, 20), + (292194, 168, 20), + (292194, 318, -2), + (292194, 343, 15), + (292194, 364, 15), + (292194, 125, 20), + (292194, 126, 20), + (292194, 157, 20), + (292194, 158, 20), + (292194, 159, 20), + (292194, 160, 20), + (292194, 162, 20), + (292194, 163, 20), + (292194, 148, 20), + (292194, 150, 20), + (292194, 142, 20), + (292194, 147, 20), + (292194, 120, 50), + (292194, 119, 50), + (292194, 118, 50), + (292194, 149, 50), + (292235, 90, 10), + (292235, 91, 10), + (292235, 92, 10), + (292235, 93, 10), + (292235, 94, 10), + (292235, 95, 10), + (292235, 96, 10), + (292235, 97, 10), + (292263, 45, 2), + (292263, 181, 2), + (292564, 1, 1200), + (292564, 221, 1200), + (292564, 535, 2), + (292564, 278, 75), + (292564, 279, 75), + (292564, 280, 75), + (292564, 281, 75), + (292564, 282, 75), + (292564, 311, 75), + (292564, 316, 75), + (292564, 317, 75), + (292564, 123, 20), + (292564, 276, 10), + (292564, 277, 10), + (292565, 1, 800), + (292565, 221, 800), + (292565, 535, 1), + (292565, 278, 50), + (292565, 279, 50), + (292565, 280, 50), + (292565, 281, 50), + (292565, 282, 50), + (292565, 311, 50), + (292565, 316, 50), + (292565, 317, 50), + (292565, 123, 15), + (292565, 276, 5), + (292565, 277, 5), + (292566, 1, 400), + (292566, 221, 400), + (292566, 535, 1), + (292566, 278, 25), + (292566, 279, 25), + (292566, 280, 25), + (292566, 281, 25), + (292566, 282, 25), + (292566, 311, 25), + (292566, 316, 25), + (292566, 317, 25), + (292566, 123, 10), + (292566, 276, 3), + (292566, 277, 3), + (292603, 111, 32), + (292603, 112, 32), + (292603, 133, 32), + (292603, 116, 32), + (292603, 113, 32), + (292603, 114, 32), + (292603, 115, 32), + (292603, 109, 32), + (292603, 110, 32), + (292603, 148, 32), + (292603, 150, 32), + (292603, 121, 32), + (292603, 102, 32), + (292603, 107, 32), + (292603, 103, 32), + (292603, 105, 32), + (292603, 106, 32), + (292603, 104, 32), + (292603, 100, 32), + (292603, 142, 32), + (292603, 147, 32), + (292604, 102, 32), + (292604, 107, 32), + (292604, 103, 32), + (292604, 105, 32), + (292604, 106, 32), + (292604, 104, 32), + (292604, 100, 32), + (292604, 142, 32), + (292604, 147, 32), + (292604, 146, 32), + (292604, 143, 32), + (292604, 101, 32), + (292605, 112, 32), + (292605, 133, 32), + (292605, 116, 32), + (292605, 113, 32), + (292605, 114, 32), + (292605, 115, 32), + (292605, 109, 32), + (292605, 110, 32), + (292605, 102, 32), + (292605, 107, 32), + (292605, 103, 32), + (292605, 105, 32), + (292605, 106, 32), + (292605, 104, 32), + (292605, 100, 32), + (292605, 145, 32), + (292605, 1, 1500), + (292605, 91, 2000), + (292605, 92, 2000), + (292605, 93, 2000), + (292605, 94, 2000), + (292605, 95, 2000), + (292605, 96, 2000), + (292605, 97, 2000), + (292605, 90, 2000), + (292606, 111, 32), + (292606, 112, 32), + (292606, 133, 32), + (292606, 116, 32), + (292606, 113, 32), + (292606, 114, 32), + (292606, 115, 32), + (292606, 109, 32), + (292606, 110, 32), + (292606, 102, 32), + (292606, 107, 32), + (292606, 103, 32), + (292606, 105, 32), + (292606, 106, 32), + (292606, 104, 32), + (292606, 100, 32), + (292606, 155, 32), + (292606, 154, 32), + (292606, 153, 32), + (292607, 168, 32), + (292607, 127, 32), + (292607, 128, 32), + (292607, 131, 32), + (292607, 130, 32), + (292607, 129, 32), + (292607, 122, 32), + (292608, 111, 32), + (292608, 112, 32), + (292608, 133, 32), + (292608, 116, 32), + (292608, 113, 32), + (292608, 114, 32), + (292608, 115, 32), + (292608, 109, 32), + (292608, 110, 32), + (292608, 102, 32), + (292608, 107, 32), + (292608, 103, 32), + (292608, 105, 32), + (292608, 106, 32), + (292608, 104, 32), + (292608, 100, 32), + (292608, 221, 1500), + (292608, 127, 32), + (292608, 128, 32), + (292608, 131, 32), + (292608, 130, 32), + (292608, 129, 32), + (292608, 122, 32), + (292608, 157, 32), + (292608, 158, 32), + (292608, 125, 32), + (292608, 126, 32), + (292608, 159, 32), + (292608, 160, 32), + (292608, 162, 32), + (292608, 163, 32), + (293115, 1, 1500000), + (293115, 155, 3000), + (293115, 154, 3000), + (293115, 153, 3000), + (293115, 168, 3000), + (293115, 100, 3000), + (293115, 280, 2000), + (293115, 276, 3000), + (293270, 475, 200), + (293270, 476, 200), + (293270, 477, 200), + (293270, 478, 200), + (293270, 479, 200), + (293270, 480, 200), + (293270, 482, 200), + (293270, 483, 200), + (293270, 219, 50), + (293270, 208, 50), + (293270, 217, 50), + (293270, 207, 50), + (293270, 206, 50), + (293270, 218, 50), + (293270, 225, 50), + (293270, 205, 50), + (293270, 216, 50), + (293398, 123, 15), + (293398, 141, 100), + (293398, 156, 25), + (293398, 16, 1), + (293398, 17, 1), + (293398, 18, 1), + (293398, 19, 1), + (293398, 20, 1), + (293398, 21, 1), + (293398, 319, 15), + (293620, 156, 900), + (293633, 91, 1100), + (293633, 90, 1100), + (293633, 97, 1100), + (293633, 95, 1100), + (293633, 92, 1100), + (293633, 94, 1100), + (293633, 93, 1100), + (293633, 96, 1100), + (293633, 1, 400), + (293633, 221, 400), + (293633, 131, 16), + (293633, 130, 16), + (293633, 122, 16), + (293633, 129, 16), + (293633, 127, 16), + (293633, 128, 16), + (293633, 156, 75), + (293633, 154, 16), + (293633, 155, 16), + (293633, 153, 16), + (293633, 319, 2), + (293633, 276, 16), + (293633, 168, 16), + (293633, 318, -2), + (293633, 343, 10), + (293633, 364, 10), + (293633, 125, 16), + (293633, 126, 16), + (293633, 157, 16), + (293633, 158, 16), + (293633, 159, 16), + (293633, 160, 16), + (293633, 162, 16), + (293633, 163, 16), + (293633, 148, 16), + (293633, 150, 16), + (293633, 142, 16), + (293633, 147, 16), + (293633, 120, 40), + (293633, 119, 40), + (293633, 118, 50), + (293633, 149, 40), + (293634, 91, 1000), + (293634, 90, 1000), + (293634, 97, 1000), + (293634, 95, 1000), + (293634, 92, 1000), + (293634, 94, 1000), + (293634, 93, 1000), + (293634, 96, 1000), + (293634, 1, 300), + (293634, 221, 300), + (293634, 131, 12), + (293634, 130, 12), + (293634, 122, 12), + (293634, 129, 12), + (293634, 127, 12), + (293634, 128, 12), + (293634, 156, 50), + (293634, 154, 12), + (293634, 155, 12), + (293634, 153, 12), + (293634, 319, 1), + (293634, 276, 12), + (293634, 168, 12), + (293634, 318, -1), + (293634, 343, 5), + (293634, 364, 5), + (293634, 125, 12), + (293634, 126, 12), + (293634, 157, 12), + (293634, 158, 12), + (293634, 159, 12), + (293634, 160, 12), + (293634, 162, 12), + (293634, 163, 12), + (293634, 148, 12), + (293634, 150, 12), + (293634, 142, 12), + (293634, 147, 12), + (293634, 120, 30), + (293634, 119, 30), + (293634, 118, 30), + (293634, 149, 30), + (293635, 91, 1100), + (293635, 90, 1100), + (293635, 97, 1100), + (293635, 95, 1100), + (293635, 92, 1100), + (293635, 94, 1100), + (293635, 93, 1100), + (293635, 96, 1100), + (293635, 1, 400), + (293635, 221, 400), + (293635, 131, 16), + (293635, 130, 16), + (293635, 122, 16), + (293635, 129, 16), + (293635, 127, 16), + (293635, 128, 16), + (293635, 156, 75), + (293635, 154, 16), + (293635, 155, 16), + (293635, 153, 16), + (293635, 319, 2), + (293635, 276, 16), + (293635, 168, 16), + (293635, 318, -2), + (293635, 343, 10), + (293635, 364, 10), + (293635, 125, 16), + (293635, 126, 16), + (293635, 157, 16), + (293635, 158, 16), + (293635, 159, 16), + (293635, 160, 16), + (293635, 162, 16), + (293635, 163, 16), + (293635, 148, 16), + (293635, 150, 16), + (293635, 142, 16), + (293635, 147, 16), + (293635, 120, 40), + (293635, 119, 40), + (293635, 118, 50), + (293635, 149, 40), + (293636, 91, 1200), + (293636, 90, 1200), + (293636, 97, 1200), + (293636, 95, 1200), + (293636, 92, 1200), + (293636, 94, 1200), + (293636, 93, 1200), + (293636, 96, 1200), + (293636, 1, 500), + (293636, 221, 500), + (293636, 131, 20), + (293636, 130, 20), + (293636, 122, 20), + (293636, 129, 20), + (293636, 127, 20), + (293636, 128, 20), + (293636, 156, 100), + (293636, 154, 20), + (293636, 155, 20), + (293636, 153, 20), + (293636, 319, 3), + (293636, 276, 20), + (293636, 168, 20), + (293636, 318, -2), + (293636, 343, 15), + (293636, 364, 15), + (293636, 125, 20), + (293636, 126, 20), + (293636, 157, 20), + (293636, 158, 20), + (293636, 159, 20), + (293636, 160, 20), + (293636, 162, 20), + (293636, 163, 20), + (293636, 148, 20), + (293636, 150, 20), + (293636, 142, 20), + (293636, 147, 20), + (293636, 120, 50), + (293636, 119, 50), + (293636, 118, 50), + (293636, 149, 50), + (293637, 91, 1000), + (293637, 90, 1000), + (293637, 97, 1000), + (293637, 95, 1000), + (293637, 92, 1000), + (293637, 94, 1000), + (293637, 93, 1000), + (293637, 96, 1000), + (293637, 1, 300), + (293637, 221, 300), + (293637, 131, 12), + (293637, 130, 12), + (293637, 122, 12), + (293637, 129, 12), + (293637, 127, 12), + (293637, 128, 12), + (293637, 156, 50), + (293637, 154, 12), + (293637, 155, 12), + (293637, 153, 12), + (293637, 319, 1), + (293637, 276, 12), + (293637, 168, 12), + (293637, 318, -1), + (293637, 343, 5), + (293637, 364, 5), + (293637, 125, 12), + (293637, 126, 12), + (293637, 157, 12), + (293637, 158, 12), + (293637, 159, 12), + (293637, 160, 12), + (293637, 162, 12), + (293637, 163, 12), + (293637, 148, 12), + (293637, 150, 12), + (293637, 142, 12), + (293637, 147, 12), + (293637, 120, 30), + (293637, 119, 30), + (293637, 118, 30), + (293637, 149, 30), + (293641, 90, 300), + (293641, 91, 300), + (293641, 92, 300), + (293641, 93, 300), + (293641, 94, 300), + (293641, 95, 300), + (293641, 96, 300), + (293641, 97, 300), + (293641, 1, 250), + (293641, 221, 250), + (293641, 127, 6), + (293641, 128, 6), + (293641, 131, 6), + (293641, 130, 6), + (293641, 129, 6), + (293641, 122, 6), + (293641, 276, 6), + (293641, 277, 6), + (293641, 168, 6), + (293641, 278, 10), + (293641, 279, 10), + (293641, 280, 10), + (293641, 281, 10), + (293641, 282, 10), + (293641, 316, 10), + (293641, 317, 10), + (293641, 311, 10), + (293642, 90, 400), + (293642, 91, 400), + (293642, 92, 400), + (293642, 93, 400), + (293642, 94, 400), + (293642, 95, 400), + (293642, 96, 400), + (293642, 97, 400), + (293642, 1, 350), + (293642, 221, 350), + (293642, 127, 8), + (293642, 128, 8), + (293642, 131, 8), + (293642, 130, 8), + (293642, 129, 8), + (293642, 122, 8), + (293642, 276, 8), + (293642, 277, 8), + (293642, 168, 8), + (293642, 278, 12), + (293642, 279, 12), + (293642, 280, 12), + (293642, 281, 12), + (293642, 282, 12), + (293642, 316, 12), + (293642, 317, 12), + (293642, 311, 12), + (293644, 90, 500), + (293644, 91, 500), + (293644, 92, 500), + (293644, 93, 500), + (293644, 94, 500), + (293644, 95, 500), + (293644, 96, 500), + (293644, 97, 500), + (293644, 1, 450), + (293644, 221, 450), + (293644, 127, 10), + (293644, 128, 10), + (293644, 131, 10), + (293644, 130, 10), + (293644, 129, 10), + (293644, 122, 10), + (293644, 276, 10), + (293644, 277, 10), + (293644, 168, 10), + (293644, 278, 15), + (293644, 279, 15), + (293644, 280, 15), + (293644, 281, 15), + (293644, 282, 15), + (293644, 316, 15), + (293644, 317, 15), + (293644, 311, 15), + (293645, 90, 300), + (293645, 91, 300), + (293645, 92, 300), + (293645, 93, 300), + (293645, 94, 300), + (293645, 95, 300), + (293645, 96, 300), + (293645, 97, 300), + (293645, 1, 250), + (293645, 221, 250), + (293645, 127, 6), + (293645, 128, 6), + (293645, 131, 6), + (293645, 130, 6), + (293645, 129, 6), + (293645, 122, 6), + (293645, 276, 6), + (293645, 277, 6), + (293645, 168, 6), + (293645, 278, 10), + (293645, 279, 10), + (293645, 280, 10), + (293645, 281, 10), + (293645, 282, 10), + (293645, 316, 10), + (293645, 317, 10), + (293645, 311, 10), + (293646, 90, 400), + (293646, 91, 400), + (293646, 92, 400), + (293646, 93, 400), + (293646, 94, 400), + (293646, 95, 400), + (293646, 96, 400), + (293646, 97, 400), + (293646, 1, 350), + (293646, 221, 350), + (293646, 127, 8), + (293646, 128, 8), + (293646, 131, 8), + (293646, 130, 8), + (293646, 129, 8), + (293646, 122, 8), + (293646, 276, 8), + (293646, 277, 8), + (293646, 168, 8), + (293646, 278, 12), + (293646, 279, 12), + (293646, 280, 12), + (293646, 281, 12), + (293646, 282, 12), + (293646, 316, 12), + (293646, 317, 12), + (293646, 311, 12), + (293648, 90, 500), + (293648, 91, 500), + (293648, 92, 500), + (293648, 93, 500), + (293648, 94, 500), + (293648, 95, 500), + (293648, 96, 500), + (293648, 97, 500), + (293648, 1, 450), + (293648, 221, 450), + (293648, 127, 20), + (293648, 128, 20), + (293648, 131, 20), + (293648, 130, 20), + (293648, 129, 20), + (293648, 122, 20), + (293648, 276, 20), + (293648, 277, 20), + (293648, 168, 20), + (293648, 278, 15), + (293648, 279, 15), + (293648, 280, 15), + (293648, 281, 15), + (293648, 282, 15), + (293648, 316, 15), + (293648, 317, 15), + (293648, 311, 15), + (293648, 319, 3), + (293648, 379, 3), + (293649, 90, 400), + (293649, 91, 400), + (293649, 92, 400), + (293649, 93, 400), + (293649, 94, 400), + (293649, 95, 400), + (293649, 96, 400), + (293649, 97, 400), + (293649, 1, 350), + (293649, 221, 350), + (293649, 127, 16), + (293649, 128, 16), + (293649, 131, 16), + (293649, 130, 16), + (293649, 129, 16), + (293649, 122, 16), + (293649, 276, 16), + (293649, 277, 16), + (293649, 168, 16), + (293649, 278, 12), + (293649, 279, 12), + (293649, 280, 12), + (293649, 281, 12), + (293649, 282, 12), + (293649, 316, 12), + (293649, 317, 12), + (293649, 311, 12), + (293649, 319, 2), + (293649, 379, 2), + (293650, 90, 400), + (293650, 91, 400), + (293650, 92, 400), + (293650, 93, 400), + (293650, 94, 400), + (293650, 95, 400), + (293650, 96, 400), + (293650, 97, 400), + (293650, 1, 350), + (293650, 221, 350), + (293650, 127, 16), + (293650, 128, 16), + (293650, 131, 16), + (293650, 130, 16), + (293650, 129, 16), + (293650, 122, 16), + (293650, 276, 16), + (293650, 277, 16), + (293650, 168, 16), + (293650, 278, 12), + (293650, 279, 12), + (293650, 280, 12), + (293650, 281, 12), + (293650, 282, 12), + (293650, 316, 12), + (293650, 317, 12), + (293650, 311, 12), + (293650, 319, 2), + (293650, 379, 2), + (293651, 90, 300), + (293651, 91, 300), + (293651, 92, 300), + (293651, 93, 300), + (293651, 94, 300), + (293651, 95, 300), + (293651, 96, 300), + (293651, 97, 300), + (293651, 1, 250), + (293651, 221, 250), + (293651, 127, 12), + (293651, 128, 12), + (293651, 131, 12), + (293651, 130, 12), + (293651, 129, 12), + (293651, 122, 12), + (293651, 276, 12), + (293651, 277, 12), + (293651, 168, 12), + (293651, 278, 10), + (293651, 279, 10), + (293651, 280, 10), + (293651, 281, 10), + (293651, 282, 10), + (293651, 316, 10), + (293651, 317, 10), + (293651, 311, 10), + (293651, 319, 1), + (293651, 379, 1), + (293652, 90, 300), + (293652, 91, 300), + (293652, 92, 300), + (293652, 93, 300), + (293652, 94, 300), + (293652, 95, 300), + (293652, 96, 300), + (293652, 97, 300), + (293652, 1, 250), + (293652, 221, 250), + (293652, 127, 12), + (293652, 128, 12), + (293652, 131, 12), + (293652, 130, 12), + (293652, 129, 12), + (293652, 122, 12), + (293652, 276, 12), + (293652, 277, 12), + (293652, 168, 12), + (293652, 278, 10), + (293652, 279, 10), + (293652, 280, 10), + (293652, 281, 10), + (293652, 282, 10), + (293652, 316, 10), + (293652, 317, 10), + (293652, 311, 10), + (293652, 319, 1), + (293652, 379, 1), + (293693, 125, 10), + (293693, 126, 10), + (293693, 157, 10), + (293693, 158, 10), + (293693, 159, 10), + (293693, 163, 10), + (293693, 160, 10), + (293693, 162, 10), + (293693, 165, 10), + (293693, 135, 10), + (293699, 125, 30), + (293699, 126, 30), + (293699, 157, 30), + (293699, 158, 30), + (293699, 159, 30), + (293699, 163, 30), + (293699, 160, 30), + (293699, 162, 30), + (293699, 165, 30), + (293699, 135, 30), + (293701, 125, 75), + (293701, 126, 75), + (293701, 157, 75), + (293701, 158, 75), + (293701, 159, 75), + (293701, 163, 75), + (293701, 160, 75), + (293701, 162, 75), + (293701, 165, 75), + (293701, 135, 75), + (293726, 91, 1200), + (293726, 90, 1200), + (293726, 97, 1200), + (293726, 95, 1200), + (293726, 92, 1200), + (293726, 94, 1200), + (293726, 93, 1200), + (293726, 96, 1200), + (293726, 1, 500), + (293726, 221, 500), + (293726, 131, 20), + (293726, 130, 20), + (293726, 122, 20), + (293726, 129, 20), + (293726, 127, 20), + (293726, 128, 20), + (293726, 156, 100), + (293726, 154, 20), + (293726, 155, 20), + (293726, 153, 20), + (293726, 319, 3), + (293726, 276, 20), + (293726, 168, 20), + (293726, 318, -2), + (293726, 343, 15), + (293726, 364, 15), + (293726, 125, 20), + (293726, 126, 20), + (293726, 157, 20), + (293726, 158, 20), + (293726, 159, 20), + (293726, 160, 20), + (293726, 162, 20), + (293726, 163, 20), + (293726, 148, 20), + (293726, 150, 20), + (293726, 142, 20), + (293726, 147, 20), + (293726, 120, 50), + (293726, 119, 50), + (293726, 118, 50), + (293726, 149, 50), + (293727, 91, 1200), + (293727, 90, 1200), + (293727, 97, 1200), + (293727, 95, 1200), + (293727, 92, 1200), + (293727, 94, 1200), + (293727, 93, 1200), + (293727, 96, 1200), + (293727, 1, 500), + (293727, 221, 500), + (293727, 131, 20), + (293727, 130, 20), + (293727, 122, 20), + (293727, 129, 20), + (293727, 127, 20), + (293727, 128, 20), + (293727, 156, 100), + (293727, 154, 20), + (293727, 155, 20), + (293727, 153, 20), + (293727, 319, 3), + (293727, 276, 20), + (293727, 168, 20), + (293727, 318, -2), + (293727, 343, 15), + (293727, 364, 15), + (293727, 125, 20), + (293727, 126, 20), + (293727, 157, 20), + (293727, 158, 20), + (293727, 159, 20), + (293727, 160, 20), + (293727, 162, 20), + (293727, 163, 20), + (293727, 148, 20), + (293727, 150, 20), + (293727, 142, 20), + (293727, 147, 20), + (293727, 120, 50), + (293727, 119, 50), + (293727, 118, 50), + (293727, 149, 50), + (293728, 91, 1200), + (293728, 90, 1200), + (293728, 97, 1200), + (293728, 95, 1200), + (293728, 92, 1200), + (293728, 94, 1200), + (293728, 93, 1200), + (293728, 96, 1200), + (293728, 1, 500), + (293728, 221, 500), + (293728, 131, 20), + (293728, 130, 20), + (293728, 122, 20), + (293728, 129, 20), + (293728, 127, 20), + (293728, 128, 20), + (293728, 156, 100), + (293728, 154, 20), + (293728, 155, 20), + (293728, 153, 20), + (293728, 319, 3), + (293728, 276, 20), + (293728, 168, 20), + (293728, 318, -2), + (293728, 343, 15), + (293728, 364, 15), + (293728, 125, 20), + (293728, 126, 20), + (293728, 157, 20), + (293728, 158, 20), + (293728, 159, 20), + (293728, 160, 20), + (293728, 162, 20), + (293728, 163, 20), + (293728, 148, 20), + (293728, 150, 20), + (293728, 142, 20), + (293728, 147, 20), + (293728, 120, 50), + (293728, 119, 50), + (293728, 118, 50), + (293728, 149, 50), + (293729, 91, 1200), + (293729, 90, 1200), + (293729, 97, 1200), + (293729, 95, 1200), + (293729, 92, 1200), + (293729, 94, 1200), + (293729, 93, 1200), + (293729, 96, 1200), + (293729, 1, 500), + (293729, 221, 500), + (293729, 131, 20), + (293729, 130, 20), + (293729, 122, 20), + (293729, 129, 20), + (293729, 127, 20), + (293729, 128, 20), + (293729, 156, 100), + (293729, 154, 20), + (293729, 155, 20), + (293729, 153, 20), + (293729, 319, 3), + (293729, 276, 20), + (293729, 168, 20), + (293729, 318, -2), + (293729, 343, 15), + (293729, 364, 15), + (293729, 125, 20), + (293729, 126, 20), + (293729, 157, 20), + (293729, 158, 20), + (293729, 159, 20), + (293729, 160, 20), + (293729, 162, 20), + (293729, 163, 20), + (293729, 148, 20), + (293729, 150, 20), + (293729, 142, 20), + (293729, 147, 20), + (293729, 120, 50), + (293729, 119, 50), + (293729, 118, 50), + (293729, 149, 50), + (293730, 91, 1200), + (293730, 90, 1200), + (293730, 97, 1200), + (293730, 95, 1200), + (293730, 92, 1200), + (293730, 94, 1200), + (293730, 93, 1200), + (293730, 96, 1200), + (293730, 1, 500), + (293730, 221, 500), + (293730, 131, 20), + (293730, 130, 20), + (293730, 122, 20), + (293730, 129, 20), + (293730, 127, 20), + (293730, 128, 20), + (293730, 156, 100), + (293730, 154, 20), + (293730, 155, 20), + (293730, 153, 20), + (293730, 319, 3), + (293730, 276, 20), + (293730, 168, 20), + (293730, 318, -2), + (293730, 343, 15), + (293730, 364, 15), + (293730, 125, 20), + (293730, 126, 20), + (293730, 157, 20), + (293730, 158, 20), + (293730, 159, 20), + (293730, 160, 20), + (293730, 162, 20), + (293730, 163, 20), + (293730, 148, 20), + (293730, 150, 20), + (293730, 142, 20), + (293730, 147, 20), + (293730, 120, 50), + (293730, 119, 50), + (293730, 118, 50), + (293730, 149, 50), + (293731, 91, 1200), + (293731, 90, 1200), + (293731, 97, 1200), + (293731, 95, 1200), + (293731, 92, 1200), + (293731, 94, 1200), + (293731, 93, 1200), + (293731, 96, 1200), + (293731, 1, 500), + (293731, 221, 500), + (293731, 131, 20), + (293731, 130, 20), + (293731, 122, 20), + (293731, 129, 20), + (293731, 127, 20), + (293731, 128, 20), + (293731, 156, 100), + (293731, 154, 20), + (293731, 155, 20), + (293731, 153, 20), + (293731, 319, 3), + (293731, 276, 20), + (293731, 168, 20), + (293731, 318, -2), + (293731, 343, 15), + (293731, 364, 15), + (293731, 125, 20), + (293731, 126, 20), + (293731, 157, 20), + (293731, 158, 20), + (293731, 159, 20), + (293731, 160, 20), + (293731, 162, 20), + (293731, 163, 20), + (293731, 148, 20), + (293731, 150, 20), + (293731, 142, 20), + (293731, 147, 20), + (293731, 120, 50), + (293731, 119, 50), + (293731, 118, 50), + (293731, 149, 50), + (293732, 91, 1200), + (293732, 90, 1200), + (293732, 97, 1200), + (293732, 95, 1200), + (293732, 92, 1200), + (293732, 94, 1200), + (293732, 93, 1200), + (293732, 96, 1200), + (293732, 1, 500), + (293732, 221, 500), + (293732, 131, 20), + (293732, 130, 20), + (293732, 122, 20), + (293732, 129, 20), + (293732, 127, 20), + (293732, 128, 20), + (293732, 156, 100), + (293732, 154, 20), + (293732, 155, 20), + (293732, 153, 20), + (293732, 319, 3), + (293732, 276, 20), + (293732, 168, 20), + (293732, 318, -2), + (293732, 343, 15), + (293732, 364, 15), + (293732, 125, 20), + (293732, 126, 20), + (293732, 157, 20), + (293732, 158, 20), + (293732, 159, 20), + (293732, 160, 20), + (293732, 162, 20), + (293732, 163, 20), + (293732, 148, 20), + (293732, 150, 20), + (293732, 142, 20), + (293732, 147, 20), + (293732, 120, 50), + (293732, 119, 50), + (293732, 118, 50), + (293732, 149, 50), + (293733, 91, 1100), + (293733, 90, 1100), + (293733, 97, 1100), + (293733, 95, 1100), + (293733, 92, 1100), + (293733, 94, 1100), + (293733, 93, 1100), + (293733, 96, 1100), + (293733, 1, 400), + (293733, 221, 400), + (293733, 131, 16), + (293733, 130, 16), + (293733, 122, 16), + (293733, 129, 16), + (293733, 127, 16), + (293733, 128, 16), + (293733, 156, 75), + (293733, 154, 16), + (293733, 155, 16), + (293733, 153, 16), + (293733, 319, 2), + (293733, 276, 16), + (293733, 168, 16), + (293733, 318, -2), + (293733, 343, 10), + (293733, 364, 10), + (293733, 125, 16), + (293733, 126, 16), + (293733, 157, 16), + (293733, 158, 16), + (293733, 159, 16), + (293733, 160, 16), + (293733, 162, 16), + (293733, 163, 16), + (293733, 148, 16), + (293733, 150, 16), + (293733, 142, 16), + (293733, 147, 16), + (293733, 120, 40), + (293733, 119, 40), + (293733, 118, 50), + (293733, 149, 40), + (293734, 91, 1100), + (293734, 90, 1100), + (293734, 97, 1100), + (293734, 95, 1100), + (293734, 92, 1100), + (293734, 94, 1100), + (293734, 93, 1100), + (293734, 96, 1100), + (293734, 1, 400), + (293734, 221, 400), + (293734, 131, 16), + (293734, 130, 16), + (293734, 122, 16), + (293734, 129, 16), + (293734, 127, 16), + (293734, 128, 16), + (293734, 156, 75), + (293734, 154, 16), + (293734, 155, 16), + (293734, 153, 16), + (293734, 319, 2), + (293734, 276, 16), + (293734, 168, 16), + (293734, 318, -2), + (293734, 343, 10), + (293734, 364, 10), + (293734, 125, 16), + (293734, 126, 16), + (293734, 157, 16), + (293734, 158, 16), + (293734, 159, 16), + (293734, 160, 16), + (293734, 162, 16), + (293734, 163, 16), + (293734, 148, 16), + (293734, 150, 16), + (293734, 142, 16), + (293734, 147, 16), + (293734, 120, 40), + (293734, 119, 40), + (293734, 118, 50), + (293734, 149, 40), + (293735, 91, 1100), + (293735, 90, 1100), + (293735, 97, 1100), + (293735, 95, 1100), + (293735, 92, 1100), + (293735, 94, 1100), + (293735, 93, 1100), + (293735, 96, 1100), + (293735, 1, 400), + (293735, 221, 400), + (293735, 131, 16), + (293735, 130, 16), + (293735, 122, 16), + (293735, 129, 16), + (293735, 127, 16), + (293735, 128, 16), + (293735, 156, 75), + (293735, 154, 16), + (293735, 155, 16), + (293735, 153, 16), + (293735, 319, 2), + (293735, 276, 16), + (293735, 168, 16), + (293735, 318, -2), + (293735, 343, 10), + (293735, 364, 10), + (293735, 125, 16), + (293735, 126, 16), + (293735, 157, 16), + (293735, 158, 16), + (293735, 159, 16), + (293735, 160, 16), + (293735, 162, 16), + (293735, 163, 16), + (293735, 148, 16), + (293735, 150, 16), + (293735, 142, 16), + (293735, 147, 16), + (293735, 120, 40), + (293735, 119, 40), + (293735, 118, 50), + (293735, 149, 40), + (293736, 91, 1100), + (293736, 90, 1100), + (293736, 97, 1100), + (293736, 95, 1100), + (293736, 92, 1100), + (293736, 94, 1100), + (293736, 93, 1100), + (293736, 96, 1100), + (293736, 1, 400), + (293736, 221, 400), + (293736, 131, 16), + (293736, 130, 16), + (293736, 122, 16), + (293736, 129, 16), + (293736, 127, 16), + (293736, 128, 16), + (293736, 156, 75), + (293736, 154, 16), + (293736, 155, 16), + (293736, 153, 16), + (293736, 319, 2), + (293736, 276, 16), + (293736, 168, 16), + (293736, 318, -2), + (293736, 343, 10), + (293736, 364, 10), + (293736, 125, 16), + (293736, 126, 16), + (293736, 157, 16), + (293736, 158, 16), + (293736, 159, 16), + (293736, 160, 16), + (293736, 162, 16), + (293736, 163, 16), + (293736, 148, 16), + (293736, 150, 16), + (293736, 142, 16), + (293736, 147, 16), + (293736, 120, 40), + (293736, 119, 40), + (293736, 118, 50), + (293736, 149, 40), + (293737, 91, 1100), + (293737, 90, 1100), + (293737, 97, 1100), + (293737, 95, 1100), + (293737, 92, 1100), + (293737, 94, 1100), + (293737, 93, 1100), + (293737, 96, 1100), + (293737, 1, 400), + (293737, 221, 400), + (293737, 131, 16), + (293737, 130, 16), + (293737, 122, 16), + (293737, 129, 16), + (293737, 127, 16), + (293737, 128, 16), + (293737, 156, 75), + (293737, 154, 16), + (293737, 155, 16), + (293737, 153, 16), + (293737, 319, 2), + (293737, 276, 16), + (293737, 168, 16), + (293737, 318, -2), + (293737, 343, 10), + (293737, 364, 10), + (293737, 125, 16), + (293737, 126, 16), + (293737, 157, 16), + (293737, 158, 16), + (293737, 159, 16), + (293737, 160, 16), + (293737, 162, 16), + (293737, 163, 16), + (293737, 148, 16), + (293737, 150, 16), + (293737, 142, 16), + (293737, 147, 16), + (293737, 120, 40), + (293737, 119, 40), + (293737, 118, 50), + (293737, 149, 40), + (293738, 91, 1100), + (293738, 90, 1100), + (293738, 97, 1100), + (293738, 95, 1100), + (293738, 92, 1100), + (293738, 94, 1100), + (293738, 93, 1100), + (293738, 96, 1100), + (293738, 1, 400), + (293738, 221, 400), + (293738, 131, 16), + (293738, 130, 16), + (293738, 122, 16), + (293738, 129, 16), + (293738, 127, 16), + (293738, 128, 16), + (293738, 156, 75), + (293738, 154, 16), + (293738, 155, 16), + (293738, 153, 16), + (293738, 319, 2), + (293738, 276, 16), + (293738, 168, 16), + (293738, 318, -2), + (293738, 343, 10), + (293738, 364, 10), + (293738, 125, 16), + (293738, 126, 16), + (293738, 157, 16), + (293738, 158, 16), + (293738, 159, 16), + (293738, 160, 16), + (293738, 162, 16), + (293738, 163, 16), + (293738, 148, 16), + (293738, 150, 16), + (293738, 142, 16), + (293738, 147, 16), + (293738, 120, 40), + (293738, 119, 40), + (293738, 118, 50), + (293738, 149, 40), + (293739, 91, 1100), + (293739, 90, 1100), + (293739, 97, 1100), + (293739, 95, 1100), + (293739, 92, 1100), + (293739, 94, 1100), + (293739, 93, 1100), + (293739, 96, 1100), + (293739, 1, 400), + (293739, 221, 400), + (293739, 131, 16), + (293739, 130, 16), + (293739, 122, 16), + (293739, 129, 16), + (293739, 127, 16), + (293739, 128, 16), + (293739, 156, 75), + (293739, 154, 16), + (293739, 155, 16), + (293739, 153, 16), + (293739, 319, 2), + (293739, 276, 16), + (293739, 168, 16), + (293739, 318, -2), + (293739, 343, 10), + (293739, 364, 10), + (293739, 125, 16), + (293739, 126, 16), + (293739, 157, 16), + (293739, 158, 16), + (293739, 159, 16), + (293739, 160, 16), + (293739, 162, 16), + (293739, 163, 16), + (293739, 148, 16), + (293739, 150, 16), + (293739, 142, 16), + (293739, 147, 16), + (293739, 120, 40), + (293739, 119, 40), + (293739, 118, 50), + (293739, 149, 40), + (293740, 91, 1000), + (293740, 90, 1000), + (293740, 97, 1000), + (293740, 95, 1000), + (293740, 92, 1000), + (293740, 94, 1000), + (293740, 93, 1000), + (293740, 96, 1000), + (293740, 1, 300), + (293740, 221, 300), + (293740, 131, 12), + (293740, 130, 12), + (293740, 122, 12), + (293740, 129, 12), + (293740, 127, 12), + (293740, 128, 12), + (293740, 156, 50), + (293740, 154, 12), + (293740, 155, 12), + (293740, 153, 12), + (293740, 319, 1), + (293740, 276, 12), + (293740, 168, 12), + (293740, 318, -1), + (293740, 343, 5), + (293740, 364, 5), + (293740, 125, 12), + (293740, 126, 12), + (293740, 157, 12), + (293740, 158, 12), + (293740, 159, 12), + (293740, 160, 12), + (293740, 162, 12), + (293740, 163, 12), + (293740, 148, 12), + (293740, 150, 12), + (293740, 142, 12), + (293740, 147, 12), + (293740, 120, 30), + (293740, 119, 30), + (293740, 118, 30), + (293740, 149, 30), + (293741, 91, 1000), + (293741, 90, 1000), + (293741, 97, 1000), + (293741, 95, 1000), + (293741, 92, 1000), + (293741, 94, 1000), + (293741, 93, 1000), + (293741, 96, 1000), + (293741, 1, 300), + (293741, 221, 300), + (293741, 131, 12), + (293741, 130, 12), + (293741, 122, 12), + (293741, 129, 12), + (293741, 127, 12), + (293741, 128, 12), + (293741, 156, 50), + (293741, 154, 12), + (293741, 155, 12), + (293741, 153, 12), + (293741, 319, 1), + (293741, 276, 12), + (293741, 168, 12), + (293741, 318, -1), + (293741, 343, 5), + (293741, 364, 5), + (293741, 125, 12), + (293741, 126, 12), + (293741, 157, 12), + (293741, 158, 12), + (293741, 159, 12), + (293741, 160, 12), + (293741, 162, 12), + (293741, 163, 12), + (293741, 148, 12), + (293741, 150, 12), + (293741, 142, 12), + (293741, 147, 12), + (293741, 120, 30), + (293741, 119, 30), + (293741, 118, 30), + (293741, 149, 30), + (293742, 91, 1000), + (293742, 90, 1000), + (293742, 97, 1000), + (293742, 95, 1000), + (293742, 92, 1000), + (293742, 94, 1000), + (293742, 93, 1000), + (293742, 96, 1000), + (293742, 1, 300), + (293742, 221, 300), + (293742, 131, 12), + (293742, 130, 12), + (293742, 122, 12), + (293742, 129, 12), + (293742, 127, 12), + (293742, 128, 12), + (293742, 156, 50), + (293742, 154, 12), + (293742, 155, 12), + (293742, 153, 12), + (293742, 319, 1), + (293742, 276, 12), + (293742, 168, 12), + (293742, 318, -1), + (293742, 343, 5), + (293742, 364, 5), + (293742, 125, 12), + (293742, 126, 12), + (293742, 157, 12), + (293742, 158, 12), + (293742, 159, 12), + (293742, 160, 12), + (293742, 162, 12), + (293742, 163, 12), + (293742, 148, 12), + (293742, 150, 12), + (293742, 142, 12), + (293742, 147, 12), + (293742, 120, 30), + (293742, 119, 30), + (293742, 118, 30), + (293742, 149, 30), + (293743, 91, 1000), + (293743, 90, 1000), + (293743, 97, 1000), + (293743, 95, 1000), + (293743, 92, 1000), + (293743, 94, 1000), + (293743, 93, 1000), + (293743, 96, 1000), + (293743, 1, 300), + (293743, 221, 300), + (293743, 131, 12), + (293743, 130, 12), + (293743, 122, 12), + (293743, 129, 12), + (293743, 127, 12), + (293743, 128, 12), + (293743, 156, 50), + (293743, 154, 12), + (293743, 155, 12), + (293743, 153, 12), + (293743, 319, 1), + (293743, 276, 12), + (293743, 168, 12), + (293743, 318, -1), + (293743, 343, 5), + (293743, 364, 5), + (293743, 125, 12), + (293743, 126, 12), + (293743, 157, 12), + (293743, 158, 12), + (293743, 159, 12), + (293743, 160, 12), + (293743, 162, 12), + (293743, 163, 12), + (293743, 148, 12), + (293743, 150, 12), + (293743, 142, 12), + (293743, 147, 12), + (293743, 120, 30), + (293743, 119, 30), + (293743, 118, 30), + (293743, 149, 30), + (293744, 91, 1000), + (293744, 90, 1000), + (293744, 97, 1000), + (293744, 95, 1000), + (293744, 92, 1000), + (293744, 94, 1000), + (293744, 93, 1000), + (293744, 96, 1000), + (293744, 1, 300), + (293744, 221, 300), + (293744, 131, 12), + (293744, 130, 12), + (293744, 122, 12), + (293744, 129, 12), + (293744, 127, 12), + (293744, 128, 12), + (293744, 156, 50), + (293744, 154, 12), + (293744, 155, 12), + (293744, 153, 12), + (293744, 319, 1), + (293744, 276, 12), + (293744, 168, 12), + (293744, 318, -1), + (293744, 343, 5), + (293744, 364, 5), + (293744, 125, 12), + (293744, 126, 12), + (293744, 157, 12), + (293744, 158, 12), + (293744, 159, 12), + (293744, 160, 12), + (293744, 162, 12), + (293744, 163, 12), + (293744, 148, 12), + (293744, 150, 12), + (293744, 142, 12), + (293744, 147, 12), + (293744, 120, 30), + (293744, 119, 30), + (293744, 118, 30), + (293744, 149, 30), + (293745, 91, 1000), + (293745, 90, 1000), + (293745, 97, 1000), + (293745, 95, 1000), + (293745, 92, 1000), + (293745, 94, 1000), + (293745, 93, 1000), + (293745, 96, 1000), + (293745, 1, 300), + (293745, 221, 300), + (293745, 131, 12), + (293745, 130, 12), + (293745, 122, 12), + (293745, 129, 12), + (293745, 127, 12), + (293745, 128, 12), + (293745, 156, 50), + (293745, 154, 12), + (293745, 155, 12), + (293745, 153, 12), + (293745, 319, 1), + (293745, 276, 12), + (293745, 168, 12), + (293745, 318, -1), + (293745, 343, 5), + (293745, 364, 5), + (293745, 125, 12), + (293745, 126, 12), + (293745, 157, 12), + (293745, 158, 12), + (293745, 159, 12), + (293745, 160, 12), + (293745, 162, 12), + (293745, 163, 12), + (293745, 148, 12), + (293745, 150, 12), + (293745, 142, 12), + (293745, 147, 12), + (293745, 120, 30), + (293745, 119, 30), + (293745, 118, 30), + (293745, 149, 30), + (293746, 91, 1000), + (293746, 90, 1000), + (293746, 97, 1000), + (293746, 95, 1000), + (293746, 92, 1000), + (293746, 94, 1000), + (293746, 93, 1000), + (293746, 96, 1000), + (293746, 1, 300), + (293746, 221, 300), + (293746, 131, 12), + (293746, 130, 12), + (293746, 122, 12), + (293746, 129, 12), + (293746, 127, 12), + (293746, 128, 12), + (293746, 156, 50), + (293746, 154, 12), + (293746, 155, 12), + (293746, 153, 12), + (293746, 319, 1), + (293746, 276, 12), + (293746, 168, 12), + (293746, 318, -1), + (293746, 343, 5), + (293746, 364, 5), + (293746, 125, 12), + (293746, 126, 12), + (293746, 157, 12), + (293746, 158, 12), + (293746, 159, 12), + (293746, 160, 12), + (293746, 162, 12), + (293746, 163, 12), + (293746, 148, 12), + (293746, 150, 12), + (293746, 142, 12), + (293746, 147, 12), + (293746, 120, 30), + (293746, 119, 30), + (293746, 118, 30), + (293746, 149, 30), + (293754, 90, 300), + (293754, 91, 300), + (293754, 92, 300), + (293754, 93, 300), + (293754, 94, 300), + (293754, 95, 300), + (293754, 96, 300), + (293754, 97, 300), + (293754, 1, 250), + (293754, 221, 250), + (293754, 127, 6), + (293754, 128, 6), + (293754, 131, 6), + (293754, 130, 6), + (293754, 129, 6), + (293754, 122, 6), + (293754, 276, 6), + (293754, 277, 6), + (293754, 168, 6), + (293754, 278, 10), + (293754, 279, 10), + (293754, 280, 10), + (293754, 281, 10), + (293754, 282, 10), + (293754, 316, 10), + (293754, 317, 10), + (293754, 311, 10), + (293755, 90, 300), + (293755, 91, 300), + (293755, 92, 300), + (293755, 93, 300), + (293755, 94, 300), + (293755, 95, 300), + (293755, 96, 300), + (293755, 97, 300), + (293755, 1, 250), + (293755, 221, 250), + (293755, 127, 12), + (293755, 128, 12), + (293755, 131, 12), + (293755, 130, 12), + (293755, 129, 12), + (293755, 122, 12), + (293755, 276, 12), + (293755, 277, 12), + (293755, 168, 12), + (293755, 278, 10), + (293755, 279, 10), + (293755, 280, 10), + (293755, 281, 10), + (293755, 282, 10), + (293755, 316, 10), + (293755, 317, 10), + (293755, 311, 10), + (293755, 319, 1), + (293755, 379, 1), + (293756, 90, 300), + (293756, 91, 300), + (293756, 92, 300), + (293756, 93, 300), + (293756, 94, 300), + (293756, 95, 300), + (293756, 96, 300), + (293756, 97, 300), + (293756, 1, 250), + (293756, 221, 250), + (293756, 127, 12), + (293756, 128, 12), + (293756, 131, 12), + (293756, 130, 12), + (293756, 129, 12), + (293756, 122, 12), + (293756, 276, 12), + (293756, 277, 12), + (293756, 168, 12), + (293756, 278, 10), + (293756, 279, 10), + (293756, 280, 10), + (293756, 281, 10), + (293756, 282, 10), + (293756, 316, 10), + (293756, 317, 10), + (293756, 311, 10), + (293756, 319, 1), + (293756, 379, 1), + (293757, 90, 300), + (293757, 91, 300), + (293757, 92, 300), + (293757, 93, 300), + (293757, 94, 300), + (293757, 95, 300), + (293757, 96, 300), + (293757, 97, 300), + (293757, 1, 250), + (293757, 221, 250), + (293757, 127, 12), + (293757, 128, 12), + (293757, 131, 12), + (293757, 130, 12), + (293757, 129, 12), + (293757, 122, 12), + (293757, 276, 12), + (293757, 277, 12), + (293757, 168, 12), + (293757, 278, 10), + (293757, 279, 10), + (293757, 280, 10), + (293757, 281, 10), + (293757, 282, 10), + (293757, 316, 10), + (293757, 317, 10), + (293757, 311, 10), + (293757, 319, 1), + (293757, 379, 1), + (293758, 90, 300), + (293758, 91, 300), + (293758, 92, 300), + (293758, 93, 300), + (293758, 94, 300), + (293758, 95, 300), + (293758, 96, 300), + (293758, 97, 300), + (293758, 1, 250), + (293758, 221, 250), + (293758, 127, 12), + (293758, 128, 12), + (293758, 131, 12), + (293758, 130, 12), + (293758, 129, 12), + (293758, 122, 12), + (293758, 276, 12), + (293758, 277, 12), + (293758, 168, 12), + (293758, 278, 10), + (293758, 279, 10), + (293758, 280, 10), + (293758, 281, 10), + (293758, 282, 10), + (293758, 316, 10), + (293758, 317, 10), + (293758, 311, 10), + (293758, 319, 1), + (293758, 379, 1), + (293759, 90, 300), + (293759, 91, 300), + (293759, 92, 300), + (293759, 93, 300), + (293759, 94, 300), + (293759, 95, 300), + (293759, 96, 300), + (293759, 97, 300), + (293759, 1, 250), + (293759, 221, 250), + (293759, 127, 12), + (293759, 128, 12), + (293759, 131, 12), + (293759, 130, 12), + (293759, 129, 12), + (293759, 122, 12), + (293759, 276, 12), + (293759, 277, 12), + (293759, 168, 12), + (293759, 278, 10), + (293759, 279, 10), + (293759, 280, 10), + (293759, 281, 10), + (293759, 282, 10), + (293759, 316, 10), + (293759, 317, 10), + (293759, 311, 10), + (293759, 319, 1), + (293759, 379, 1), + (293760, 90, 300), + (293760, 91, 300), + (293760, 92, 300), + (293760, 93, 300), + (293760, 94, 300), + (293760, 95, 300), + (293760, 96, 300), + (293760, 97, 300), + (293760, 1, 250), + (293760, 221, 250), + (293760, 127, 12), + (293760, 128, 12), + (293760, 131, 12), + (293760, 130, 12), + (293760, 129, 12), + (293760, 122, 12), + (293760, 276, 12), + (293760, 277, 12), + (293760, 168, 12), + (293760, 278, 10), + (293760, 279, 10), + (293760, 280, 10), + (293760, 281, 10), + (293760, 282, 10), + (293760, 316, 10), + (293760, 317, 10), + (293760, 311, 10), + (293760, 319, 1), + (293760, 379, 1), + (293761, 90, 300), + (293761, 91, 300), + (293761, 92, 300), + (293761, 93, 300), + (293761, 94, 300), + (293761, 95, 300), + (293761, 96, 300), + (293761, 97, 300), + (293761, 1, 250), + (293761, 221, 250), + (293761, 127, 12), + (293761, 128, 12), + (293761, 131, 12), + (293761, 130, 12), + (293761, 129, 12), + (293761, 122, 12), + (293761, 276, 12), + (293761, 277, 12), + (293761, 168, 12), + (293761, 278, 10), + (293761, 279, 10), + (293761, 280, 10), + (293761, 281, 10), + (293761, 282, 10), + (293761, 316, 10), + (293761, 317, 10), + (293761, 311, 10), + (293761, 319, 1), + (293761, 379, 1), + (293762, 90, 300), + (293762, 91, 300), + (293762, 92, 300), + (293762, 93, 300), + (293762, 94, 300), + (293762, 95, 300), + (293762, 96, 300), + (293762, 97, 300), + (293762, 1, 250), + (293762, 221, 250), + (293762, 127, 6), + (293762, 128, 6), + (293762, 131, 6), + (293762, 130, 6), + (293762, 129, 6), + (293762, 122, 6), + (293762, 276, 6), + (293762, 277, 6), + (293762, 168, 6), + (293762, 278, 10), + (293762, 279, 10), + (293762, 280, 10), + (293762, 281, 10), + (293762, 282, 10), + (293762, 316, 10), + (293762, 317, 10), + (293762, 311, 10), + (293763, 90, 300), + (293763, 91, 300), + (293763, 92, 300), + (293763, 93, 300), + (293763, 94, 300), + (293763, 95, 300), + (293763, 96, 300), + (293763, 97, 300), + (293763, 1, 250), + (293763, 221, 250), + (293763, 127, 6), + (293763, 128, 6), + (293763, 131, 6), + (293763, 130, 6), + (293763, 129, 6), + (293763, 122, 6), + (293763, 276, 6), + (293763, 277, 6), + (293763, 168, 6), + (293763, 278, 10), + (293763, 279, 10), + (293763, 280, 10), + (293763, 281, 10), + (293763, 282, 10), + (293763, 316, 10), + (293763, 317, 10), + (293763, 311, 10), + (293764, 90, 300), + (293764, 91, 300), + (293764, 92, 300), + (293764, 93, 300), + (293764, 94, 300), + (293764, 95, 300), + (293764, 96, 300), + (293764, 97, 300), + (293764, 1, 250), + (293764, 221, 250), + (293764, 127, 6), + (293764, 128, 6), + (293764, 131, 6), + (293764, 130, 6), + (293764, 129, 6), + (293764, 122, 6), + (293764, 276, 6), + (293764, 277, 6), + (293764, 168, 6), + (293764, 278, 10), + (293764, 279, 10), + (293764, 280, 10), + (293764, 281, 10), + (293764, 282, 10), + (293764, 316, 10), + (293764, 317, 10), + (293764, 311, 10), + (293765, 90, 300), + (293765, 91, 300), + (293765, 92, 300), + (293765, 93, 300), + (293765, 94, 300), + (293765, 95, 300), + (293765, 96, 300), + (293765, 97, 300), + (293765, 1, 250), + (293765, 221, 250), + (293765, 127, 6), + (293765, 128, 6), + (293765, 131, 6), + (293765, 130, 6), + (293765, 129, 6), + (293765, 122, 6), + (293765, 276, 6), + (293765, 277, 6), + (293765, 168, 6), + (293765, 278, 10), + (293765, 279, 10), + (293765, 280, 10), + (293765, 281, 10), + (293765, 282, 10), + (293765, 316, 10), + (293765, 317, 10), + (293765, 311, 10), + (293766, 90, 300), + (293766, 91, 300), + (293766, 92, 300), + (293766, 93, 300), + (293766, 94, 300), + (293766, 95, 300), + (293766, 96, 300), + (293766, 97, 300), + (293766, 1, 250), + (293766, 221, 250), + (293766, 127, 6), + (293766, 128, 6), + (293766, 131, 6), + (293766, 130, 6), + (293766, 129, 6), + (293766, 122, 6), + (293766, 276, 6), + (293766, 277, 6), + (293766, 168, 6), + (293766, 278, 10), + (293766, 279, 10), + (293766, 280, 10), + (293766, 281, 10), + (293766, 282, 10), + (293766, 316, 10), + (293766, 317, 10), + (293766, 311, 10), + (293767, 90, 300), + (293767, 91, 300), + (293767, 92, 300), + (293767, 93, 300), + (293767, 94, 300), + (293767, 95, 300), + (293767, 96, 300), + (293767, 97, 300), + (293767, 1, 250), + (293767, 221, 250), + (293767, 127, 6), + (293767, 128, 6), + (293767, 131, 6), + (293767, 130, 6), + (293767, 129, 6), + (293767, 122, 6), + (293767, 276, 6), + (293767, 277, 6), + (293767, 168, 6), + (293767, 278, 10), + (293767, 279, 10), + (293767, 280, 10), + (293767, 281, 10), + (293767, 282, 10), + (293767, 316, 10), + (293767, 317, 10), + (293767, 311, 10), + (293768, 90, 400), + (293768, 91, 400), + (293768, 92, 400), + (293768, 93, 400), + (293768, 94, 400), + (293768, 95, 400), + (293768, 96, 400), + (293768, 97, 400), + (293768, 1, 350), + (293768, 221, 350), + (293768, 127, 8), + (293768, 128, 8), + (293768, 131, 8), + (293768, 130, 8), + (293768, 129, 8), + (293768, 122, 8), + (293768, 276, 8), + (293768, 277, 8), + (293768, 168, 8), + (293768, 278, 12), + (293768, 279, 12), + (293768, 280, 12), + (293768, 281, 12), + (293768, 282, 12), + (293768, 316, 12), + (293768, 317, 12), + (293768, 311, 12), + (293769, 90, 400), + (293769, 91, 400), + (293769, 92, 400), + (293769, 93, 400), + (293769, 94, 400), + (293769, 95, 400), + (293769, 96, 400), + (293769, 97, 400), + (293769, 1, 350), + (293769, 221, 350), + (293769, 127, 8), + (293769, 128, 8), + (293769, 131, 8), + (293769, 130, 8), + (293769, 129, 8), + (293769, 122, 8), + (293769, 276, 8), + (293769, 277, 8), + (293769, 168, 8), + (293769, 278, 12), + (293769, 279, 12), + (293769, 280, 12), + (293769, 281, 12), + (293769, 282, 12), + (293769, 316, 12), + (293769, 317, 12), + (293769, 311, 12), + (293770, 90, 400), + (293770, 91, 400), + (293770, 92, 400), + (293770, 93, 400), + (293770, 94, 400), + (293770, 95, 400), + (293770, 96, 400), + (293770, 97, 400), + (293770, 1, 350), + (293770, 221, 350), + (293770, 127, 8), + (293770, 128, 8), + (293770, 131, 8), + (293770, 130, 8), + (293770, 129, 8), + (293770, 122, 8), + (293770, 276, 8), + (293770, 277, 8), + (293770, 168, 8), + (293770, 278, 12), + (293770, 279, 12), + (293770, 280, 12), + (293770, 281, 12), + (293770, 282, 12), + (293770, 316, 12), + (293770, 317, 12), + (293770, 311, 12), + (293771, 90, 400), + (293771, 91, 400), + (293771, 92, 400), + (293771, 93, 400), + (293771, 94, 400), + (293771, 95, 400), + (293771, 96, 400), + (293771, 97, 400), + (293771, 1, 350), + (293771, 221, 350), + (293771, 127, 8), + (293771, 128, 8), + (293771, 131, 8), + (293771, 130, 8), + (293771, 129, 8), + (293771, 122, 8), + (293771, 276, 8), + (293771, 277, 8), + (293771, 168, 8), + (293771, 278, 12), + (293771, 279, 12), + (293771, 280, 12), + (293771, 281, 12), + (293771, 282, 12), + (293771, 316, 12), + (293771, 317, 12), + (293771, 311, 12), + (293772, 90, 400), + (293772, 91, 400), + (293772, 92, 400), + (293772, 93, 400), + (293772, 94, 400), + (293772, 95, 400), + (293772, 96, 400), + (293772, 97, 400), + (293772, 1, 350), + (293772, 221, 350), + (293772, 127, 8), + (293772, 128, 8), + (293772, 131, 8), + (293772, 130, 8), + (293772, 129, 8), + (293772, 122, 8), + (293772, 276, 8), + (293772, 277, 8), + (293772, 168, 8), + (293772, 278, 12), + (293772, 279, 12), + (293772, 280, 12), + (293772, 281, 12), + (293772, 282, 12), + (293772, 316, 12), + (293772, 317, 12), + (293772, 311, 12), + (293773, 90, 400), + (293773, 91, 400), + (293773, 92, 400), + (293773, 93, 400), + (293773, 94, 400), + (293773, 95, 400), + (293773, 96, 400), + (293773, 97, 400), + (293773, 1, 350), + (293773, 221, 350), + (293773, 127, 8), + (293773, 128, 8), + (293773, 131, 8), + (293773, 130, 8), + (293773, 129, 8), + (293773, 122, 8), + (293773, 276, 8), + (293773, 277, 8), + (293773, 168, 8), + (293773, 278, 12), + (293773, 279, 12), + (293773, 280, 12), + (293773, 281, 12), + (293773, 282, 12), + (293773, 316, 12), + (293773, 317, 12), + (293773, 311, 12), + (293774, 90, 400), + (293774, 91, 400), + (293774, 92, 400), + (293774, 93, 400), + (293774, 94, 400), + (293774, 95, 400), + (293774, 96, 400), + (293774, 97, 400), + (293774, 1, 350), + (293774, 221, 350), + (293774, 127, 16), + (293774, 128, 16), + (293774, 131, 16), + (293774, 130, 16), + (293774, 129, 16), + (293774, 122, 16), + (293774, 276, 16), + (293774, 277, 16), + (293774, 168, 16), + (293774, 278, 12), + (293774, 279, 12), + (293774, 280, 12), + (293774, 281, 12), + (293774, 282, 12), + (293774, 316, 12), + (293774, 317, 12), + (293774, 311, 12), + (293774, 319, 2), + (293774, 379, 2), + (293775, 90, 400), + (293775, 91, 400), + (293775, 92, 400), + (293775, 93, 400), + (293775, 94, 400), + (293775, 95, 400), + (293775, 96, 400), + (293775, 97, 400), + (293775, 1, 350), + (293775, 221, 350), + (293775, 127, 16), + (293775, 128, 16), + (293775, 131, 16), + (293775, 130, 16), + (293775, 129, 16), + (293775, 122, 16), + (293775, 276, 16), + (293775, 277, 16), + (293775, 168, 16), + (293775, 278, 12), + (293775, 279, 12), + (293775, 280, 12), + (293775, 281, 12), + (293775, 282, 12), + (293775, 316, 12), + (293775, 317, 12), + (293775, 311, 12), + (293775, 319, 2), + (293775, 379, 2), + (293776, 90, 400), + (293776, 91, 400), + (293776, 92, 400), + (293776, 93, 400), + (293776, 94, 400), + (293776, 95, 400), + (293776, 96, 400), + (293776, 97, 400), + (293776, 1, 350), + (293776, 221, 350), + (293776, 127, 16), + (293776, 128, 16), + (293776, 131, 16), + (293776, 130, 16), + (293776, 129, 16), + (293776, 122, 16), + (293776, 276, 16), + (293776, 277, 16), + (293776, 168, 16), + (293776, 278, 12), + (293776, 279, 12), + (293776, 280, 12), + (293776, 281, 12), + (293776, 282, 12), + (293776, 316, 12), + (293776, 317, 12), + (293776, 311, 12), + (293776, 319, 2), + (293776, 379, 2), + (293777, 90, 400), + (293777, 91, 400), + (293777, 92, 400), + (293777, 93, 400), + (293777, 94, 400), + (293777, 95, 400), + (293777, 96, 400), + (293777, 97, 400), + (293777, 1, 350), + (293777, 221, 350), + (293777, 127, 16), + (293777, 128, 16), + (293777, 131, 16), + (293777, 130, 16), + (293777, 129, 16), + (293777, 122, 16), + (293777, 276, 16), + (293777, 277, 16), + (293777, 168, 16), + (293777, 278, 12), + (293777, 279, 12), + (293777, 280, 12), + (293777, 281, 12), + (293777, 282, 12), + (293777, 316, 12), + (293777, 317, 12), + (293777, 311, 12), + (293777, 319, 2), + (293777, 379, 2), + (293778, 90, 400), + (293778, 91, 400), + (293778, 92, 400), + (293778, 93, 400), + (293778, 94, 400), + (293778, 95, 400), + (293778, 96, 400), + (293778, 97, 400), + (293778, 1, 350), + (293778, 221, 350), + (293778, 127, 16), + (293778, 128, 16), + (293778, 131, 16), + (293778, 130, 16), + (293778, 129, 16), + (293778, 122, 16), + (293778, 276, 16), + (293778, 277, 16), + (293778, 168, 16), + (293778, 278, 12), + (293778, 279, 12), + (293778, 280, 12), + (293778, 281, 12), + (293778, 282, 12), + (293778, 316, 12), + (293778, 317, 12), + (293778, 311, 12), + (293778, 319, 2), + (293778, 379, 2), + (293779, 90, 400), + (293779, 91, 400), + (293779, 92, 400), + (293779, 93, 400), + (293779, 94, 400), + (293779, 95, 400), + (293779, 96, 400), + (293779, 97, 400), + (293779, 1, 350), + (293779, 221, 350), + (293779, 127, 16), + (293779, 128, 16), + (293779, 131, 16), + (293779, 130, 16), + (293779, 129, 16), + (293779, 122, 16), + (293779, 276, 16), + (293779, 277, 16), + (293779, 168, 16), + (293779, 278, 12), + (293779, 279, 12), + (293779, 280, 12), + (293779, 281, 12), + (293779, 282, 12), + (293779, 316, 12), + (293779, 317, 12), + (293779, 311, 12), + (293779, 319, 2), + (293779, 379, 2), + (293780, 90, 400), + (293780, 91, 400), + (293780, 92, 400), + (293780, 93, 400), + (293780, 94, 400), + (293780, 95, 400), + (293780, 96, 400), + (293780, 97, 400), + (293780, 1, 350), + (293780, 221, 350), + (293780, 127, 16), + (293780, 128, 16), + (293780, 131, 16), + (293780, 130, 16), + (293780, 129, 16), + (293780, 122, 16), + (293780, 276, 16), + (293780, 277, 16), + (293780, 168, 16), + (293780, 278, 12), + (293780, 279, 12), + (293780, 280, 12), + (293780, 281, 12), + (293780, 282, 12), + (293780, 316, 12), + (293780, 317, 12), + (293780, 311, 12), + (293780, 319, 2), + (293780, 379, 2), + (293781, 90, 400), + (293781, 91, 400), + (293781, 92, 400), + (293781, 93, 400), + (293781, 94, 400), + (293781, 95, 400), + (293781, 96, 400), + (293781, 97, 400), + (293781, 1, 350), + (293781, 221, 350), + (293781, 127, 8), + (293781, 128, 8), + (293781, 131, 8), + (293781, 130, 8), + (293781, 129, 8), + (293781, 122, 8), + (293781, 276, 8), + (293781, 277, 8), + (293781, 168, 8), + (293781, 278, 12), + (293781, 279, 12), + (293781, 280, 12), + (293781, 281, 12), + (293781, 282, 12), + (293781, 316, 12), + (293781, 317, 12), + (293781, 311, 12), + (293782, 90, 500), + (293782, 91, 500), + (293782, 92, 500), + (293782, 93, 500), + (293782, 94, 500), + (293782, 95, 500), + (293782, 96, 500), + (293782, 97, 500), + (293782, 1, 450), + (293782, 221, 450), + (293782, 127, 10), + (293782, 128, 10), + (293782, 131, 10), + (293782, 130, 10), + (293782, 129, 10), + (293782, 122, 10), + (293782, 276, 10), + (293782, 277, 10), + (293782, 168, 10), + (293782, 278, 15), + (293782, 279, 15), + (293782, 280, 15), + (293782, 281, 15), + (293782, 282, 15), + (293782, 316, 15), + (293782, 317, 15), + (293782, 311, 15), + (293783, 90, 500), + (293783, 91, 500), + (293783, 92, 500), + (293783, 93, 500), + (293783, 94, 500), + (293783, 95, 500), + (293783, 96, 500), + (293783, 97, 500), + (293783, 1, 450), + (293783, 221, 450), + (293783, 127, 10), + (293783, 128, 10), + (293783, 131, 10), + (293783, 130, 10), + (293783, 129, 10), + (293783, 122, 10), + (293783, 276, 10), + (293783, 277, 10), + (293783, 168, 10), + (293783, 278, 15), + (293783, 279, 15), + (293783, 280, 15), + (293783, 281, 15), + (293783, 282, 15), + (293783, 316, 15), + (293783, 317, 15), + (293783, 311, 15), + (293784, 90, 500), + (293784, 91, 500), + (293784, 92, 500), + (293784, 93, 500), + (293784, 94, 500), + (293784, 95, 500), + (293784, 96, 500), + (293784, 97, 500), + (293784, 1, 450), + (293784, 221, 450), + (293784, 127, 10), + (293784, 128, 10), + (293784, 131, 10), + (293784, 130, 10), + (293784, 129, 10), + (293784, 122, 10), + (293784, 276, 10), + (293784, 277, 10), + (293784, 168, 10), + (293784, 278, 15), + (293784, 279, 15), + (293784, 280, 15), + (293784, 281, 15), + (293784, 282, 15), + (293784, 316, 15), + (293784, 317, 15), + (293784, 311, 15), + (293785, 90, 500), + (293785, 91, 500), + (293785, 92, 500), + (293785, 93, 500), + (293785, 94, 500), + (293785, 95, 500), + (293785, 96, 500), + (293785, 97, 500), + (293785, 1, 450), + (293785, 221, 450), + (293785, 127, 10), + (293785, 128, 10), + (293785, 131, 10), + (293785, 130, 10), + (293785, 129, 10), + (293785, 122, 10), + (293785, 276, 10), + (293785, 277, 10), + (293785, 168, 10), + (293785, 278, 15), + (293785, 279, 15), + (293785, 280, 15), + (293785, 281, 15), + (293785, 282, 15), + (293785, 316, 15), + (293785, 317, 15), + (293785, 311, 15), + (293786, 90, 500), + (293786, 91, 500), + (293786, 92, 500), + (293786, 93, 500), + (293786, 94, 500), + (293786, 95, 500), + (293786, 96, 500), + (293786, 97, 500), + (293786, 1, 450), + (293786, 221, 450), + (293786, 127, 10), + (293786, 128, 10), + (293786, 131, 10), + (293786, 130, 10), + (293786, 129, 10), + (293786, 122, 10), + (293786, 276, 10), + (293786, 277, 10), + (293786, 168, 10), + (293786, 278, 15), + (293786, 279, 15), + (293786, 280, 15), + (293786, 281, 15), + (293786, 282, 15), + (293786, 316, 15), + (293786, 317, 15), + (293786, 311, 15), + (293787, 90, 500), + (293787, 91, 500), + (293787, 92, 500), + (293787, 93, 500), + (293787, 94, 500), + (293787, 95, 500), + (293787, 96, 500), + (293787, 97, 500), + (293787, 1, 450), + (293787, 221, 450), + (293787, 127, 10), + (293787, 128, 10), + (293787, 131, 10), + (293787, 130, 10), + (293787, 129, 10), + (293787, 122, 10), + (293787, 276, 10), + (293787, 277, 10), + (293787, 168, 10), + (293787, 278, 15), + (293787, 279, 15), + (293787, 280, 15), + (293787, 281, 15), + (293787, 282, 15), + (293787, 316, 15), + (293787, 317, 15), + (293787, 311, 15), + (293788, 90, 500), + (293788, 91, 500), + (293788, 92, 500), + (293788, 93, 500), + (293788, 94, 500), + (293788, 95, 500), + (293788, 96, 500), + (293788, 97, 500), + (293788, 1, 450), + (293788, 221, 450), + (293788, 127, 20), + (293788, 128, 20), + (293788, 131, 20), + (293788, 130, 20), + (293788, 129, 20), + (293788, 122, 20), + (293788, 276, 20), + (293788, 277, 20), + (293788, 168, 20), + (293788, 278, 15), + (293788, 279, 15), + (293788, 280, 15), + (293788, 281, 15), + (293788, 282, 15), + (293788, 316, 15), + (293788, 317, 15), + (293788, 311, 15), + (293788, 319, 3), + (293788, 379, 3), + (293789, 90, 500), + (293789, 91, 500), + (293789, 92, 500), + (293789, 93, 500), + (293789, 94, 500), + (293789, 95, 500), + (293789, 96, 500), + (293789, 97, 500), + (293789, 1, 450), + (293789, 221, 450), + (293789, 127, 20), + (293789, 128, 20), + (293789, 131, 20), + (293789, 130, 20), + (293789, 129, 20), + (293789, 122, 20), + (293789, 276, 20), + (293789, 277, 20), + (293789, 168, 20), + (293789, 278, 15), + (293789, 279, 15), + (293789, 280, 15), + (293789, 281, 15), + (293789, 282, 15), + (293789, 316, 15), + (293789, 317, 15), + (293789, 311, 15), + (293789, 319, 3), + (293789, 379, 3), + (293790, 90, 500), + (293790, 91, 500), + (293790, 92, 500), + (293790, 93, 500), + (293790, 94, 500), + (293790, 95, 500), + (293790, 96, 500), + (293790, 97, 500), + (293790, 1, 450), + (293790, 221, 450), + (293790, 127, 20), + (293790, 128, 20), + (293790, 131, 20), + (293790, 130, 20), + (293790, 129, 20), + (293790, 122, 20), + (293790, 276, 20), + (293790, 277, 20), + (293790, 168, 20), + (293790, 278, 15), + (293790, 279, 15), + (293790, 280, 15), + (293790, 281, 15), + (293790, 282, 15), + (293790, 316, 15), + (293790, 317, 15), + (293790, 311, 15), + (293790, 319, 3), + (293790, 379, 3), + (293791, 90, 500), + (293791, 91, 500), + (293791, 92, 500), + (293791, 93, 500), + (293791, 94, 500), + (293791, 95, 500), + (293791, 96, 500), + (293791, 97, 500), + (293791, 1, 450), + (293791, 221, 450), + (293791, 127, 20), + (293791, 128, 20), + (293791, 131, 20), + (293791, 130, 20), + (293791, 129, 20), + (293791, 122, 20), + (293791, 276, 20), + (293791, 277, 20), + (293791, 168, 20), + (293791, 278, 15), + (293791, 279, 15), + (293791, 280, 15), + (293791, 281, 15), + (293791, 282, 15), + (293791, 316, 15), + (293791, 317, 15), + (293791, 311, 15), + (293791, 319, 3), + (293791, 379, 3), + (293792, 90, 500), + (293792, 91, 500), + (293792, 92, 500), + (293792, 93, 500), + (293792, 94, 500), + (293792, 95, 500), + (293792, 96, 500), + (293792, 97, 500), + (293792, 1, 450), + (293792, 221, 450), + (293792, 127, 20), + (293792, 128, 20), + (293792, 131, 20), + (293792, 130, 20), + (293792, 129, 20), + (293792, 122, 20), + (293792, 276, 20), + (293792, 277, 20), + (293792, 168, 20), + (293792, 278, 15), + (293792, 279, 15), + (293792, 280, 15), + (293792, 281, 15), + (293792, 282, 15), + (293792, 316, 15), + (293792, 317, 15), + (293792, 311, 15), + (293792, 319, 3), + (293792, 379, 3), + (293793, 90, 500), + (293793, 91, 500), + (293793, 92, 500), + (293793, 93, 500), + (293793, 94, 500), + (293793, 95, 500), + (293793, 96, 500), + (293793, 97, 500), + (293793, 1, 450), + (293793, 221, 450), + (293793, 127, 20), + (293793, 128, 20), + (293793, 131, 20), + (293793, 130, 20), + (293793, 129, 20), + (293793, 122, 20), + (293793, 276, 20), + (293793, 277, 20), + (293793, 168, 20), + (293793, 278, 15), + (293793, 279, 15), + (293793, 280, 15), + (293793, 281, 15), + (293793, 282, 15), + (293793, 316, 15), + (293793, 317, 15), + (293793, 311, 15), + (293793, 319, 3), + (293793, 379, 3), + (293794, 90, 500), + (293794, 91, 500), + (293794, 92, 500), + (293794, 93, 500), + (293794, 94, 500), + (293794, 95, 500), + (293794, 96, 500), + (293794, 97, 500), + (293794, 1, 450), + (293794, 221, 450), + (293794, 127, 20), + (293794, 128, 20), + (293794, 131, 20), + (293794, 130, 20), + (293794, 129, 20), + (293794, 122, 20), + (293794, 276, 20), + (293794, 277, 20), + (293794, 168, 20), + (293794, 278, 15), + (293794, 279, 15), + (293794, 280, 15), + (293794, 281, 15), + (293794, 282, 15), + (293794, 316, 15), + (293794, 317, 15), + (293794, 311, 15), + (293794, 319, 3), + (293794, 379, 3), + (293795, 90, 500), + (293795, 91, 500), + (293795, 92, 500), + (293795, 93, 500), + (293795, 94, 500), + (293795, 95, 500), + (293795, 96, 500), + (293795, 97, 500), + (293795, 1, 450), + (293795, 221, 450), + (293795, 127, 10), + (293795, 128, 10), + (293795, 131, 10), + (293795, 130, 10), + (293795, 129, 10), + (293795, 122, 10), + (293795, 276, 10), + (293795, 277, 10), + (293795, 168, 10), + (293795, 278, 15), + (293795, 279, 15), + (293795, 280, 15), + (293795, 281, 15), + (293795, 282, 15), + (293795, 316, 15), + (293795, 317, 15), + (293795, 311, 15), + (293908, 118, -2000), + (293908, 119, -2000), + (293908, 120, -2000), + (293908, 149, -2000), + (293908, 219, 25), + (293908, 217, 25), + (293908, 216, 25), + (293908, 208, 25), + (293908, 207, 25), + (293908, 205, 25), + (293908, 225, 25), + (293908, 206, 25), + (293908, 483, 150), + (293908, 476, 150), + (293908, 477, 150), + (293908, 478, 150), + (293908, 479, 150), + (293908, 480, 150), + (293908, 482, 150), + (293908, 475, 150), + (293908, 219, 25), + (293908, 217, 25), + (293908, 216, 25), + (293908, 208, 25), + (293908, 207, 25), + (293908, 205, 25), + (293908, 225, 25), + (293908, 206, 25), + (293908, 483, 150), + (293908, 476, 150), + (293908, 477, 150), + (293908, 478, 150), + (293908, 479, 150), + (293908, 480, 150), + (293908, 482, 150), + (293908, 475, 150), + (293908, 156, -1550), + (293908, 123, 20), + (293908, 16, 10), + (293908, 17, 10), + (293908, 18, 10), + (293908, 19, 10), + (293908, 20, 10), + (293908, 21, 10), + (293908, 319, 2), + (293947, 155, 1000), + (293947, 153, 1000), + (293947, 154, 1000), + (293993, 1, 300), + (293993, 276, 15), + (293993, 128, 15), + (293993, 122, 15), + (293995, 1, 300), + (293995, 276, 15), + (293995, 128, 15), + (293995, 122, 15), + (293996, 1, 300), + (293996, 276, 15), + (293996, 128, 15), + (293996, 122, 15), + (293997, 1, 150), + (293997, 276, 7), + (293997, 128, 7), + (293997, 122, 7), + (293999, 1, 150), + (293999, 276, 7), + (293999, 128, 7), + (293999, 122, 7), + (294000, 1, 150), + (294000, 276, 7), + (294000, 128, 7), + (294000, 122, 7), + (294001, 1, 150), + (294001, 276, 7), + (294001, 128, 7), + (294001, 122, 7), + (294045, 380, -150), + (294045, 381, -150), + (294432, 156, 150), + (294472, 156, 900), + (294844, 156, 1000), + (294844, 205, 10), + (294844, 206, 10), + (294844, 207, 10), + (294844, 208, 10), + (294844, 216, 10), + (294844, 217, 10), + (294844, 219, 10), + (294844, 225, 10), + (294978, 360, -90), + (295111, 124, 20), + (295111, 123, 20), + (295112, 124, 20), + (295112, 123, 20), + (295557, 95, 20), + (295557, 92, 10), + (295557, 97, 60), + (295557, 91, 40), + (295557, 96, 10), + (295557, 90, 10), + (295557, 94, 50), + (295698, 95, 40), + (295698, 92, 75), + (295698, 97, 40), + (295698, 91, 75), + (295698, 96, 50), + (295698, 90, 75), + (295698, 94, 60), + (295698, 277, 5), + (295698, 1, 25), + (295698, 221, 25), + (295698, 319, 1), + (295699, 95, 70), + (295699, 92, 80), + (295699, 97, 70), + (295699, 91, 90), + (295699, 96, 75), + (295699, 90, 80), + (295699, 94, 60), + (295699, 276, 5), + (295699, 1, 50), + (295699, 319, 1), + (295703, 95, 20), + (295703, 92, 50), + (295703, 97, 20), + (295703, 91, 50), + (295703, 96, 30), + (295703, 90, 50), + (295703, 94, 40), + (295703, 221, 50), + (295703, 318, -1), + (295703, 319, 1), + (295705, 156, 500), + (295756, 126, 15), + (295756, 125, 15), + (295756, 158, 15), + (295756, 157, 15), + (295756, 160, 15), + (295756, 165, 15), + (295769, 45, 3), + (295769, 181, 5), + (296035, 156, 1000), + (296363, 1, 20), + (296363, 221, 20), + (296363, 319, 1), + (296364, 1, 40), + (296364, 221, 40), + (296364, 319, 2), + (296365, 1, 60), + (296365, 221, 60), + (296365, 319, 3), + (296366, 1, 200), + (296366, 221, 200), + (296366, 319, 4), + (296366, 276, 5), + (296366, 277, 5), + (296366, 136, 10), + (296366, 164, 10), + (296367, 1, 350), + (296367, 221, 350), + (296367, 319, 5), + (296367, 277, 10), + (296367, 276, 10), + (296367, 136, 20), + (296367, 164, 20), + (296367, 156, 25), + (296368, 1, 450), + (296368, 221, 450), + (296368, 319, 6), + (296368, 277, 20), + (296368, 276, 20), + (296368, 136, 40), + (296368, 164, 40), + (296368, 156, 50), + (296369, 1, 500), + (296369, 221, 500), + (296369, 319, 7), + (296369, 277, 40), + (296369, 276, 40), + (296369, 136, 80), + (296369, 164, 80), + (296369, 156, 100), + (296369, 160, 100), + (296369, 161, 100), + (296369, 278, 10), + (296369, 279, 10), + (296369, 280, 10), + (296369, 281, 10), + (296369, 282, 10), + (296369, 311, 10), + (296369, 316, 10), + (296369, 317, 10), + (296370, 1, 1000), + (296370, 221, 1000), + (296370, 319, 8), + (296370, 277, 60), + (296370, 276, 60), + (296370, 136, 140), + (296370, 164, 140), + (296370, 156, 210), + (296370, 160, 210), + (296370, 161, 210), + (296370, 278, 20), + (296370, 279, 20), + (296370, 280, 20), + (296370, 281, 20), + (296370, 282, 20), + (296370, 311, 20), + (296370, 316, 20), + (296370, 317, 20), + (296371, 1, 20), + (296371, 221, 20), + (296371, 319, 1), + (296372, 1, 40), + (296372, 221, 40), + (296372, 319, 2), + (296373, 1, 60), + (296373, 221, 60), + (296373, 319, 3), + (296374, 1, 200), + (296374, 221, 200), + (296374, 319, 4), + (296374, 276, 5), + (296374, 277, 5), + (296374, 136, 10), + (296374, 164, 10), + (296375, 1, 350), + (296375, 221, 350), + (296375, 319, 5), + (296375, 277, 10), + (296375, 276, 10), + (296375, 136, 20), + (296375, 164, 20), + (296375, 156, 25), + (296376, 1, 450), + (296376, 221, 450), + (296376, 319, 6), + (296376, 277, 20), + (296376, 276, 20), + (296376, 136, 40), + (296376, 164, 40), + (296376, 156, 50), + (296377, 1, 500), + (296377, 221, 500), + (296377, 319, 7), + (296377, 277, 40), + (296377, 276, 40), + (296377, 136, 80), + (296377, 164, 80), + (296377, 156, 100), + (296377, 160, 100), + (296377, 161, 100), + (296377, 278, 10), + (296377, 279, 10), + (296377, 280, 10), + (296377, 281, 10), + (296377, 282, 10), + (296377, 311, 10), + (296377, 316, 10), + (296377, 317, 10), + (296378, 1, 1000), + (296378, 221, 1000), + (296378, 319, 8), + (296378, 277, 60), + (296378, 276, 60), + (296378, 136, 140), + (296378, 164, 140), + (296378, 156, 210), + (296378, 160, 210), + (296378, 161, 210), + (296378, 278, 20), + (296378, 279, 20), + (296378, 280, 20), + (296378, 281, 20), + (296378, 282, 20), + (296378, 311, 20), + (296378, 316, 20), + (296378, 317, 20), + (296379, 1, 1200), + (296379, 221, 1200), + (296379, 319, 8), + (296379, 277, 60), + (296379, 276, 60), + (296379, 136, 140), + (296379, 164, 140), + (296379, 156, 220), + (296379, 160, 220), + (296379, 161, 220), + (296379, 278, 20), + (296379, 279, 20), + (296379, 280, 20), + (296379, 281, 20), + (296379, 282, 20), + (296379, 311, 20), + (296379, 316, 20), + (296379, 317, 20), + (296380, 1, 1200), + (296380, 221, 1200), + (296380, 319, 8), + (296380, 277, 60), + (296380, 276, 60), + (296380, 136, 140), + (296380, 164, 140), + (296380, 156, 220), + (296380, 160, 220), + (296380, 161, 220), + (296380, 278, 20), + (296380, 279, 20), + (296380, 280, 20), + (296380, 281, 20), + (296380, 282, 20), + (296380, 311, 20), + (296380, 316, 20), + (296380, 317, 20), + (296633, 156, 300), + (296670, 156, 600), + (296794, 319, 50), + (296977, 1, 10), + (296977, 132, 10), + (297650, 91, 750), + (297650, 90, 750), + (297650, 92, 750), + (297650, 97, 750), + (297650, 95, 750), + (297650, 94, 700), + (297650, 93, 700), + (297650, 96, 700), + (297650, 1, 100), + (297650, 221, 100), + (297650, 181, 10), + (297650, 123, 20), + (297651, 91, 400), + (297651, 90, 400), + (297651, 92, 400), + (297651, 97, 400), + (297651, 95, 400), + (297651, 94, 350), + (297651, 93, 350), + (297651, 96, 350), + (297651, 1, 100), + (297651, 221, 100), + (297651, 181, 10), + (297651, 123, 20), + (297652, 91, 950), + (297652, 90, 950), + (297652, 92, 950), + (297652, 97, 950), + (297652, 95, 950), + (297652, 94, 900), + (297652, 93, 900), + (297652, 96, 900), + (297652, 1, 100), + (297652, 221, 100), + (297652, 181, 10), + (297652, 123, 20), + (297653, 91, 300), + (297653, 90, 300), + (297653, 92, 300), + (297653, 97, 300), + (297653, 95, 300), + (297653, 94, 250), + (297653, 93, 250), + (297653, 96, 250), + (297653, 1, 100), + (297653, 221, 100), + (297653, 181, 10), + (297653, 123, 20), + (297654, 91, 300), + (297654, 90, 300), + (297654, 92, 300), + (297654, 97, 300), + (297654, 95, 300), + (297654, 94, 250), + (297654, 93, 250), + (297654, 96, 250), + (297654, 1, 100), + (297654, 221, 100), + (297654, 181, 10), + (297654, 123, 20), + (297655, 91, 400), + (297655, 90, 400), + (297655, 92, 400), + (297655, 97, 400), + (297655, 95, 400), + (297655, 94, 400), + (297655, 93, 350), + (297655, 96, 350), + (297655, 1, 100), + (297655, 221, 100), + (297655, 181, 10), + (297655, 123, 20), + (297656, 91, 750), + (297656, 90, 750), + (297656, 92, 750), + (297656, 97, 750), + (297656, 95, 750), + (297656, 94, 750), + (297656, 93, 700), + (297656, 96, 700), + (297656, 1, 100), + (297656, 221, 100), + (297656, 181, 10), + (297656, 123, 20), + (297657, 91, 950), + (297657, 90, 950), + (297657, 92, 950), + (297657, 97, 950), + (297657, 95, 950), + (297657, 94, 950), + (297657, 93, 900), + (297657, 96, 900), + (297657, 1, 100), + (297657, 221, 100), + (297657, 181, 10), + (297657, 123, 20), + (297658, 91, 300), + (297658, 90, 300), + (297658, 92, 300), + (297658, 97, 300), + (297658, 95, 300), + (297658, 94, 300), + (297658, 93, 250), + (297658, 96, 250), + (297658, 1, 100), + (297658, 221, 100), + (297658, 181, 10), + (297658, 123, 20), + (297659, 91, 300), + (297659, 90, 300), + (297659, 92, 300), + (297659, 97, 300), + (297659, 95, 300), + (297659, 94, 300), + (297659, 93, 250), + (297659, 96, 250), + (297659, 1, 100), + (297659, 221, 100), + (297659, 181, 10), + (297659, 123, 20), + (297660, 91, 400), + (297660, 90, 400), + (297660, 92, 400), + (297660, 97, 400), + (297660, 95, 400), + (297660, 94, 350), + (297660, 93, 350), + (297660, 96, 400), + (297660, 1, 100), + (297660, 221, 100), + (297660, 181, 10), + (297660, 123, 20), + (297661, 91, 750), + (297661, 90, 750), + (297661, 92, 750), + (297661, 97, 750), + (297661, 95, 750), + (297661, 94, 700), + (297661, 93, 700), + (297661, 96, 750), + (297661, 1, 100), + (297661, 221, 100), + (297661, 181, 10), + (297661, 123, 20), + (297662, 91, 950), + (297662, 90, 950), + (297662, 92, 950), + (297662, 97, 950), + (297662, 95, 950), + (297662, 94, 900), + (297662, 93, 900), + (297662, 96, 950), + (297662, 1, 100), + (297662, 221, 100), + (297662, 181, 10), + (297662, 123, 20), + (297663, 91, 300), + (297663, 90, 300), + (297663, 92, 300), + (297663, 97, 300), + (297663, 95, 300), + (297663, 94, 250), + (297663, 93, 250), + (297663, 96, 300), + (297663, 1, 100), + (297663, 221, 100), + (297663, 181, 10), + (297663, 123, 20), + (297664, 91, 300), + (297664, 90, 300), + (297664, 92, 300), + (297664, 97, 300), + (297664, 95, 300), + (297664, 94, 250), + (297664, 93, 250), + (297664, 96, 300), + (297664, 1, 100), + (297664, 221, 100), + (297664, 181, 10), + (297664, 123, 20), + (297665, 127, 5), + (297665, 128, 5), + (297665, 129, 5), + (297665, 130, 5), + (297665, 131, 5), + (297665, 122, 5), + (297665, 151, -2000), + (297665, 167, -2000), + (297665, 148, -2000), + (297665, 150, -2000), + (297665, 114, -2000), + (297665, 115, -2000), + (297665, 111, -2000), + (297665, 133, -2000), + (297665, 109, -2000), + (297665, 110, -2000), + (297665, 116, -2000), + (297665, 113, -2000), + (297665, 112, -2000), + (297666, 127, 5), + (297666, 128, 5), + (297666, 129, 5), + (297666, 130, 5), + (297666, 131, 5), + (297666, 122, 5), + (297666, 151, -2000), + (297666, 167, -2000), + (297666, 148, -2000), + (297666, 150, -2000), + (297666, 114, -2000), + (297666, 115, -2000), + (297666, 111, -2000), + (297666, 133, -2000), + (297666, 109, -2000), + (297666, 110, -2000), + (297666, 116, -2000), + (297666, 113, -2000), + (297666, 112, -2000), + (297667, 127, 5), + (297667, 128, 5), + (297667, 129, 5), + (297667, 130, 5), + (297667, 131, 5), + (297667, 122, 5), + (297667, 151, -2000), + (297667, 167, -2000), + (297667, 148, -2000), + (297667, 150, -2000), + (297667, 114, -2000), + (297667, 115, -2000), + (297667, 111, -2000), + (297667, 133, -2000), + (297667, 109, -2000), + (297667, 110, -2000), + (297667, 116, -2000), + (297667, 113, -2000), + (297667, 112, -2000), + (300673, 91, 10), + (300673, 90, 10), + (300673, 92, 10), + (300673, 97, 10), + (300673, 95, 10), + (300673, 94, 10), + (300673, 93, 10), + (300673, 96, 10), + (300673, 123, 2), + (300673, 124, 2), + (300673, 119, 5), + (300673, 118, 5), + (300673, 120, 5), + (300673, 149, 5), + (300673, 319, 5), + (300673, 181, 1), + (300673, 1, 5), + (300673, 221, 5), + (300674, 91, 800), + (300674, 90, 800), + (300674, 92, 800), + (300674, 97, 800), + (300674, 95, 800), + (300674, 94, 800), + (300674, 93, 800), + (300674, 96, 800), + (300674, 123, 10), + (300674, 124, 10), + (300674, 119, 20), + (300674, 118, 20), + (300674, 120, 20), + (300674, 149, 20), + (300674, 319, 5), + (300674, 181, 8), + (300674, 1, 150), + (300674, 221, 150), + (300690, 91, 10), + (300690, 90, 10), + (300690, 92, 10), + (300690, 97, 10), + (300690, 95, 10), + (300690, 94, 10), + (300690, 93, 10), + (300690, 96, 10), + (300690, 123, 2), + (300690, 124, 2), + (300690, 119, 5), + (300690, 118, 5), + (300690, 120, 5), + (300690, 149, 5), + (300690, 181, 1), + (300690, 319, 5), + (300690, 1, 5), + (300690, 221, 5), + (300691, 91, 800), + (300691, 90, 800), + (300691, 92, 800), + (300691, 97, 800), + (300691, 95, 800), + (300691, 94, 800), + (300691, 93, 800), + (300691, 96, 800), + (300691, 123, 10), + (300691, 124, 10), + (300691, 119, 50), + (300691, 118, 50), + (300691, 120, 50), + (300691, 149, 50), + (300691, 181, 5), + (300691, 319, 5), + (300691, 1, 200), + (300691, 221, 200), + (300693, 91, 10), + (300693, 90, 10), + (300693, 92, 10), + (300693, 97, 10), + (300693, 95, 10), + (300693, 94, 10), + (300693, 93, 10), + (300693, 96, 10), + (300693, 123, 14), + (300693, 124, 14), + (300693, 119, 2), + (300693, 118, 2), + (300693, 120, 2), + (300693, 149, 2), + (300693, 319, 5), + (300693, 181, 1), + (300693, 1, 5), + (300693, 221, 5), + (300694, 91, 800), + (300694, 90, 800), + (300694, 92, 800), + (300694, 97, 800), + (300694, 95, 800), + (300694, 94, 800), + (300694, 93, 800), + (300694, 96, 800), + (300694, 123, 14), + (300694, 124, 14), + (300694, 119, 20), + (300694, 118, 20), + (300694, 120, 20), + (300694, 149, 20), + (300694, 319, 5), + (300694, 181, 8), + (300694, 1, 200), + (300694, 221, 200), + (300696, 91, 10), + (300696, 90, 10), + (300696, 92, 10), + (300696, 97, 10), + (300696, 95, 10), + (300696, 94, 10), + (300696, 93, 10), + (300696, 96, 10), + (300696, 123, 20), + (300696, 124, 20), + (300696, 119, 2), + (300696, 118, 2), + (300696, 120, 2), + (300696, 149, 2), + (300696, 319, 5), + (300696, 181, 1), + (300696, 1, 5), + (300696, 221, 5), + (300697, 91, 800), + (300697, 90, 800), + (300697, 92, 800), + (300697, 97, 800), + (300697, 95, 800), + (300697, 94, 800), + (300697, 93, 800), + (300697, 96, 800), + (300697, 123, 20), + (300697, 124, 20), + (300697, 119, 20), + (300697, 118, 20), + (300697, 120, 20), + (300697, 149, 20), + (300697, 319, 5), + (300697, 181, 8), + (300697, 1, 300), + (300697, 221, 300), + (300700, 91, 10), + (300700, 90, 10), + (300700, 92, 10), + (300700, 97, 10), + (300700, 95, 10), + (300700, 94, 10), + (300700, 93, 10), + (300700, 96, 10), + (300700, 123, 14), + (300700, 124, 14), + (300700, 119, 2), + (300700, 118, 2), + (300700, 120, 2), + (300700, 149, 2), + (300700, 319, 5), + (300700, 181, 1), + (300700, 1, 5), + (300700, 221, 5), + (300701, 91, 300), + (300701, 90, 300), + (300701, 92, 300), + (300701, 97, 300), + (300701, 95, 300), + (300701, 94, 300), + (300701, 93, 300), + (300701, 96, 300), + (300701, 123, 14), + (300701, 124, 14), + (300701, 119, 20), + (300701, 118, 20), + (300701, 120, 20), + (300701, 149, 20), + (300701, 319, 5), + (300701, 181, 8), + (300701, 1, 150), + (300701, 221, 150), + (300703, 91, 10), + (300703, 90, 10), + (300703, 92, 10), + (300703, 97, 10), + (300703, 95, 10), + (300703, 94, 10), + (300703, 93, 10), + (300703, 96, 10), + (300703, 123, 10), + (300703, 124, 10), + (300703, 119, 2), + (300703, 118, 2), + (300703, 120, 2), + (300703, 149, 2), + (300703, 319, 5), + (300703, 181, 1), + (300703, 1, 5), + (300703, 221, 5), + (300704, 91, 200), + (300704, 90, 200), + (300704, 92, 200), + (300704, 97, 200), + (300704, 95, 200), + (300704, 94, 200), + (300704, 93, 200), + (300704, 96, 200), + (300704, 123, 10), + (300704, 124, 10), + (300704, 119, 20), + (300704, 118, 20), + (300704, 120, 20), + (300704, 149, 20), + (300704, 319, 5), + (300704, 181, 8), + (300704, 1, 150), + (300704, 221, 150), + (300705, 91, 10), + (300705, 90, 10), + (300705, 92, 10), + (300705, 97, 10), + (300705, 95, 10), + (300705, 94, 10), + (300705, 93, 10), + (300705, 96, 10), + (300705, 123, 6), + (300705, 124, 6), + (300705, 119, 2), + (300705, 118, 2), + (300705, 120, 2), + (300705, 149, 2), + (300705, 319, 5), + (300705, 181, 1), + (300705, 1, 5), + (300705, 221, 5), + (300706, 91, 250), + (300706, 90, 250), + (300706, 92, 250), + (300706, 97, 250), + (300706, 95, 250), + (300706, 94, 250), + (300706, 93, 250), + (300706, 96, 250), + (300706, 123, 6), + (300706, 124, 6), + (300706, 119, 20), + (300706, 118, 20), + (300706, 120, 20), + (300706, 149, 20), + (300706, 319, 5), + (300706, 181, 8), + (300706, 1, 150), + (300706, 221, 150), + (300864, 162, 10), + (300864, 141, 10), + (300865, 162, 30), + (300865, 141, 30), + (300869, 278, 1), + (300869, 279, 1), + (300870, 278, 28), + (300870, 279, 28), + (300871, 316, 1), + (300871, 311, 1), + (300871, 278, 1), + (300871, 279, 1), + (300872, 316, 28), + (300872, 311, 28), + (300872, 278, 28), + (300872, 279, 28), + (300873, 282, 1), + (300873, 280, 1), + (300873, 281, 1), + (300873, 317, 1), + (300874, 282, 28), + (300874, 280, 28), + (300874, 281, 28), + (300874, 317, 28), + (300875, 316, 1), + (300875, 311, 1), + (300875, 278, 1), + (300875, 279, 1), + (300875, 282, 1), + (300875, 280, 1), + (300875, 281, 1), + (300875, 317, 1), + (300876, 316, 28), + (300876, 311, 28), + (300876, 278, 28), + (300876, 279, 28), + (300876, 282, 28), + (300876, 280, 28), + (300876, 281, 28), + (300876, 317, 28), + (300912, 379, 250), + (300913, 277, 500), + (301065, 96, 20), + (301065, 94, 20), + (301065, 93, 20), + (301065, 97, 20), + (301065, 95, 20), + (301065, 92, 20), + (301065, 90, 20), + (301065, 91, 20), + (301065, 277, 5), + (301066, 96, 20), + (301066, 94, 20), + (301066, 93, 20), + (301066, 97, 20), + (301066, 95, 20), + (301066, 92, 20), + (301066, 90, 20), + (301066, 91, 20), + (301066, 318, -1), + (301067, 96, 20), + (301067, 94, 20), + (301067, 93, 20), + (301067, 97, 20), + (301067, 95, 20), + (301067, 92, 20), + (301067, 90, 20), + (301067, 91, 20), + (301067, 277, 5), + (301068, 96, 20), + (301068, 94, 20), + (301068, 93, 20), + (301068, 97, 20), + (301068, 95, 20), + (301068, 92, 20), + (301068, 90, 20), + (301068, 91, 20), + (301068, 318, -1), + (301082, 364, -60), + (301082, 383, -10), + (301082, 277, -30), + (301082, 343, -60), + (301086, 118, -1448), + (301086, 120, -1448), + (301086, 119, -1448), + (301086, 149, -1448), + (301126, 100, 20), + (301126, 111, 20), + (301126, 121, 20), + (301126, 142, 20), + (301126, 144, 20), + (301126, 278, 22), + (301126, 279, 22), + (301126, 280, 22), + (301126, 281, 22), + (301126, 282, 22), + (301126, 311, 22), + (301126, 316, 22), + (301126, 317, 22), + (301126, 90, 200), + (301126, 91, 200), + (301126, 92, 200), + (301126, 93, 200), + (301126, 94, 200), + (301126, 95, 200), + (301126, 96, 200), + (301126, 97, 200), + (301298, 156, 400), + (301298, 168, 1200), + (301298, 689, -50), + (301298, 118, 500), + (301298, 119, 500), + (301298, 120, 500), + (301298, 149, 500), + (301327, 16, 1), + (301327, 18, 1), + (301327, 19, 1), + (301327, 21, 1), + (301327, 17, 1), + (301327, 20, 1), + (301327, 124, 3), + (301327, 161, 3), + (301327, 319, 1), + (301333, 141, 100), + (301333, 16, 1), + (301333, 18, 1), + (301333, 19, 1), + (301333, 21, 1), + (301333, 17, 1), + (301333, 20, 1), + (301594, 277, 25), + (301601, 276, 30), + (301656, 123, 14), + (301656, 124, 14), + (301656, 16, 7), + (301656, 161, 7), + (301656, 18, 5), + (301656, 319, 5), + (301656, 593, 25), + (301668, 156, 800), + (301671, 156, 900), + (301673, 154, 64), + (301673, 156, 1200), + (301678, 100, 20), + (301678, 122, 20), + (301678, 127, 20), + (301678, 128, 20), + (301678, 168, 10), + (301678, 535, 4), + (301678, 93, 300), + (301678, 95, 255), + (301678, 92, 150), + (301678, 97, 255), + (301678, 91, 255), + (301678, 96, 300), + (301678, 90, 150), + (301678, 94, 150), + (301679, 149, 100), + (301679, 168, 35), + (301679, 277, 25), + (301679, 318, -3), + (301679, 382, -5), + (301693, 1, 350), + (301693, 90, 375), + (301693, 91, 375), + (301693, 92, 375), + (301693, 93, 375), + (301693, 94, 375), + (301693, 95, 375), + (301693, 96, 375), + (301693, 97, 375), + (301693, 16, 12), + (301693, 122, 15), + (301693, 146, 20), + (301693, 103, 15), + (301693, 277, 10), + (301694, 1, 250), + (301694, 90, 375), + (301694, 91, 375), + (301694, 92, 375), + (301694, 93, 375), + (301694, 94, 375), + (301694, 95, 375), + (301694, 96, 375), + (301694, 97, 375), + (301694, 16, 12), + (301694, 127, 15), + (301694, 114, 20), + (301694, 277, 15), + (301695, 1, 350), + (301695, 90, 375), + (301695, 91, 375), + (301695, 92, 375), + (301695, 93, 375), + (301695, 94, 375), + (301695, 95, 375), + (301695, 96, 375), + (301695, 97, 375), + (301695, 19, 10), + (301695, 16, 12), + (301695, 129, 15), + (301695, 102, 15), + (301695, 111, 15), + (301695, 277, 10), + (301696, 1, 350), + (301696, 90, 375), + (301696, 91, 375), + (301696, 92, 375), + (301696, 93, 375), + (301696, 94, 375), + (301696, 95, 375), + (301696, 96, 375), + (301696, 97, 375), + (301696, 16, 12), + (301696, 19, 10), + (301696, 129, 20), + (301696, 112, 15), + (301696, 277, 15), + (301697, 1, 450), + (301697, 90, 375), + (301697, 91, 375), + (301697, 92, 375), + (301697, 93, 375), + (301697, 94, 375), + (301697, 95, 375), + (301697, 96, 375), + (301697, 97, 375), + (301697, 16, 12), + (301697, 134, 15), + (301697, 112, 15), + (301697, 128, 20), + (301697, 277, 15), + (301698, 1, 350), + (301698, 90, 375), + (301698, 91, 375), + (301698, 92, 375), + (301698, 93, 375), + (301698, 94, 375), + (301698, 95, 375), + (301698, 96, 375), + (301698, 97, 375), + (301698, 16, 12), + (301698, 17, 10), + (301698, 113, 20), + (301698, 379, 1), + (301698, 277, 10), + (301701, 156, 900), + (301743, 16, 20), + (301743, 18, 20), + (301743, 1, 50), + (301743, 319, 1), + (301744, 19, 20), + (301744, 21, 20), + (301744, 221, 100), + (301744, 319, 1), + (301745, 17, 20), + (301745, 20, 20), + (301745, 156, 125), + (301745, 319, 1), + (301763, 113, 1), + (301764, 113, 2), + (301765, 113, 2), + (301766, 113, 2), + (301839, 156, -250), + (301854, 279, 45), + (301879, 149, 3), + (301900, 118, -150), + (301900, 119, -150), + (301900, 120, -150), + (301900, 149, -150), + (301901, 119, 20), + (301901, 153, 20), + (301901, 134, 20), + (301934, 127, 100), + (301934, 128, 100), + (301934, 129, 100), + (301934, 130, 100), + (301934, 131, 100), + (301934, 122, 100), + (301934, 536, 3), + (301935, 91, 1200), + (302065, 151, -2000), + (302065, 167, -2000), + (302065, 148, -2000), + (302065, 150, -2000), + (302065, 114, -2000), + (302065, 115, -2000), + (302065, 111, -2000), + (302065, 133, -2000), + (302065, 109, -2000), + (302065, 110, -2000), + (302065, 116, -2000), + (302065, 113, -2000), + (302065, 112, -2000), + (302066, 151, -2000), + (302066, 167, -2000), + (302066, 148, -2000), + (302066, 150, -2000), + (302066, 114, -2000), + (302066, 115, -2000), + (302066, 111, -2000), + (302066, 133, -2000), + (302066, 109, -2000), + (302066, 110, -2000), + (302066, 116, -2000), + (302066, 113, -2000), + (302066, 112, -2000), + (302141, 119, -200), + (302145, 149, -200), + (302146, 118, -200), + (302146, 119, -200), + (302146, 120, -200), + (302147, 118, -200), + (302149, 118, -450), + (302151, 118, -450), + (302151, 119, -450), + (302151, 120, -450), + (302153, 149, -450), + (302155, 119, -450), + (302159, 143, 20), + (302159, 145, 20), + (302159, 343, 4), + (302159, 108, 20), + (302159, 156, 30), + (302159, 364, 4), + (302163, 221, 15), + (302163, 318, -1), + (302164, 1, 800), + (302164, 276, 50), + (302164, 164, 175), + (302189, 153, 150), + (302189, 154, 150), + (302189, 155, 150), + (302258, 111, 40), + (302258, 151, 40), + (302275, 130, 180), + (302291, 382, 50), + (302354, 116, 100), + (302354, 113, 100), + (302354, 109, 100), + (302354, 110, 100), + (302354, 133, 100), + (302354, 114, 100), + (302355, 278, 220), + (302355, 279, 220), + (302355, 280, 220), + (302355, 281, 220), + (302355, 282, 220), + (302355, 311, 220), + (302355, 316, 220), + (302355, 317, 220), + (302355, 120, 400), + (302359, 536, 7), + (302362, 536, 10), + (302374, 379, 2), + (302374, 319, 3), + (302413, 156, -250), + (302458, 127, 50), + (302458, 128, 50), + (302458, 129, 50), + (302458, 130, 50), + (302458, 131, 50), + (302458, 122, 50), + (302458, 148, -2000), + (302458, 150, -2000), + (302458, 151, -2000), + (302458, 167, -2000), + (302458, 111, -2000), + (302458, 114, -2000), + (302458, 115, -2000), + (302458, 133, -2000), + (302458, 109, -2000), + (302458, 110, -2000), + (302458, 116, -2000), + (302458, 113, -2000), + (302458, 112, -2000), + (302531, 360, -10), + (302533, 360, -15), + (302536, 360, -20), + (302537, 360, -30), + (302539, 360, 10), + (302541, 360, 15), + (302543, 360, 20), + (302545, 360, 30), + (302602, 221, 30), + (302602, 318, -2), + (302722, 90, 500), + (302722, 92, 500), + (302722, 91, 500), + (302722, 97, 500), + (302722, 95, 500), + (302722, 93, 500), + (302722, 94, 500), + (302722, 96, 500), + (302722, 125, 45), + (302722, 126, 45), + (302722, 157, 45), + (302722, 158, 45), + (302722, 159, 45), + (302722, 160, 45), + (302722, 161, 45), + (302722, 162, 45), + (302722, 163, 45), + (302722, 141, 45), + (302722, 181, 25), + (302722, 1, 250), + (302722, 221, 250), + (302722, 535, 2), + (302722, 536, 2), + (302722, 152, 20), + (302722, 132, 20), + (302722, 276, 15), + (302722, 277, 15), + (302722, 343, 5), + (302722, 364, 5), + (302723, 90, 600), + (302723, 92, 600), + (302723, 91, 600), + (302723, 97, 600), + (302723, 95, 600), + (302723, 93, 600), + (302723, 94, 600), + (302723, 96, 600), + (302723, 102, 45), + (302723, 103, 45), + (302723, 106, 45), + (302723, 107, 45), + (302723, 105, 45), + (302723, 104, 45), + (302723, 145, 45), + (302723, 146, 45), + (302723, 101, 45), + (302723, 147, 45), + (302723, 108, 45), + (302723, 110, 45), + (302723, 181, 25), + (302723, 1, 250), + (302723, 221, 250), + (302723, 152, 20), + (302723, 132, 20), + (302723, 276, 15), + (302723, 277, 15), + (302723, 343, 5), + (302723, 364, 5), + (302724, 90, 600), + (302724, 92, 600), + (302724, 91, 600), + (302724, 97, 600), + (302724, 95, 600), + (302724, 93, 600), + (302724, 94, 600), + (302724, 96, 600), + (302724, 112, 45), + (302724, 116, 45), + (302724, 114, 45), + (302724, 115, 45), + (302724, 113, 45), + (302724, 133, 45), + (302724, 150, 45), + (302724, 151, 45), + (302724, 148, 45), + (302724, 167, 45), + (302724, 134, 45), + (302724, 109, 45), + (302724, 181, 25), + (302724, 1, 250), + (302724, 221, 250), + (302724, 152, 20), + (302724, 132, 20), + (302724, 276, 15), + (302724, 277, 15), + (302724, 343, 5), + (302724, 364, 5), + (302725, 90, 500), + (302725, 92, 500), + (302725, 91, 500), + (302725, 97, 500), + (302725, 95, 500), + (302725, 93, 500), + (302725, 94, 500), + (302725, 96, 500), + (302725, 164, 45), + (302725, 165, 45), + (302725, 135, 45), + (302725, 136, 45), + (302725, 181, 25), + (302725, 1, 500), + (302725, 221, 500), + (302725, 379, 5), + (302725, 229, 50), + (302725, 231, 50), + (302725, 228, 50), + (302725, 233, 50), + (302725, 227, 50), + (302725, 234, 50), + (302725, 226, 50), + (302725, 230, 50), + (302725, 152, 20), + (302725, 132, 20), + (302725, 276, 15), + (302725, 277, 15), + (302725, 343, 5), + (302725, 364, 5), + (302726, 90, 800), + (302726, 92, 800), + (302726, 91, 800), + (302726, 97, 800), + (302726, 95, 800), + (302726, 93, 800), + (302726, 94, 800), + (302726, 96, 800), + (302726, 139, 45), + (302726, 156, 300), + (302726, 181, 25), + (302726, 1, 250), + (302726, 221, 250), + (302726, 391, 10), + (302726, 152, 20), + (302726, 132, 20), + (302726, 276, 15), + (302726, 277, 15), + (302726, 343, 5), + (302726, 364, 5), + (302727, 90, 1400), + (302727, 92, 1400), + (302727, 91, 1400), + (302727, 97, 1400), + (302727, 95, 1400), + (302727, 93, 1400), + (302727, 94, 1400), + (302727, 96, 1400), + (302727, 118, 45), + (302727, 119, 45), + (302727, 120, 45), + (302727, 149, 45), + (302727, 154, 45), + (302727, 155, 45), + (302727, 153, 45), + (302727, 168, 45), + (302727, 156, 45), + (302727, 181, 25), + (302727, 1, 350), + (302727, 221, 350), + (302727, 152, 20), + (302727, 132, 20), + (302727, 276, 15), + (302727, 277, 15), + (302727, 343, 5), + (302727, 364, 5), + (302728, 90, 1200), + (302728, 92, 1200), + (302728, 91, 1200), + (302728, 97, 1200), + (302728, 95, 1200), + (302728, 93, 1200), + (302728, 94, 1200), + (302728, 96, 1200), + (302728, 127, 45), + (302728, 128, 45), + (302728, 129, 45), + (302728, 130, 45), + (302728, 131, 45), + (302728, 122, 45), + (302728, 123, 45), + (302728, 124, 45), + (302728, 181, 40), + (302728, 1, 300), + (302728, 221, 300), + (302728, 152, 20), + (302728, 132, 50), + (302728, 276, 15), + (302728, 277, 15), + (302728, 343, 5), + (302728, 364, 10), + (302729, 90, 2200), + (302729, 92, 2200), + (302729, 91, 2200), + (302729, 97, 2200), + (302729, 95, 2200), + (302729, 93, 2200), + (302729, 94, 2200), + (302729, 96, 2200), + (302729, 100, 45), + (302729, 142, 45), + (302729, 144, 45), + (302729, 143, 45), + (302729, 137, 45), + (302729, 111, 45), + (302729, 121, 45), + (302729, 181, 50), + (302729, 1, 1000), + (302729, 221, 1000), + (302729, 152, 50), + (302729, 132, 20), + (302729, 276, 15), + (302729, 277, 15), + (302729, 343, 5), + (302729, 364, 5), + (302730, 90, 2000), + (302730, 92, 2000), + (302730, 91, 2000), + (302730, 97, 2000), + (302730, 95, 2000), + (302730, 93, 2000), + (302730, 94, 2000), + (302730, 96, 2000), + (302730, 16, 45), + (302730, 17, 45), + (302730, 18, 45), + (302730, 19, 45), + (302730, 20, 45), + (302730, 21, 45), + (302730, 152, 45), + (302730, 132, 45), + (302730, 181, 30), + (302730, 1, 500), + (302730, 221, 500), + (302730, 276, 100), + (302730, 277, 50), + (302730, 343, 5), + (302730, 364, 5), + (302731, 156, 300), + (302731, 90, 500), + (302731, 92, 500), + (302731, 91, 500), + (302731, 97, 500), + (302731, 95, 500), + (302731, 93, 500), + (302731, 94, 500), + (302731, 96, 500), + (302731, 1, 4000), + (302731, 221, 4000), + (302731, 181, 50), + (302731, 124, 50), + (302731, 161, 100), + (302841, 149, 300), + (302866, 382, 50), + (302867, 17, 1), + (302867, 19, 1), + (302867, 21, 1), + (302867, 20, 1), + (302867, 18, 1), + (302867, 16, 1), + (302867, 93, 10), + (302867, 95, 10), + (302867, 92, 10), + (302867, 97, 1), + (302867, 91, 10), + (302867, 96, 10), + (302867, 90, 10), + (302867, 94, 10), + (302867, 1, 5), + (302867, 221, 5), + (302867, 181, 3), + (302867, 168, 1), + (302867, 319, 5), + (302868, 17, 1), + (302868, 19, 1), + (302868, 21, 1), + (302868, 20, 1), + (302868, 18, 1), + (302868, 16, 1), + (302868, 93, 10), + (302868, 95, 10), + (302868, 92, 10), + (302868, 97, 1), + (302868, 91, 10), + (302868, 96, 10), + (302868, 90, 10), + (302868, 94, 10), + (302868, 145, 1), + (302868, 1, 5), + (302868, 221, 5), + (302868, 181, 3), + (302868, 168, 1), + (302868, 319, 5), + (302869, 17, 1), + (302869, 19, 1), + (302869, 21, 1), + (302869, 20, 1), + (302869, 18, 1), + (302869, 16, 1), + (302869, 93, 10), + (302869, 95, 10), + (302869, 92, 10), + (302869, 97, 1), + (302869, 91, 10), + (302869, 96, 10), + (302869, 90, 10), + (302869, 94, 10), + (302869, 1, 5), + (302869, 221, 5), + (302869, 181, 3), + (302869, 168, 1), + (302869, 319, 5), + (302870, 17, 1), + (302870, 19, 1), + (302870, 21, 1), + (302870, 20, 1), + (302870, 18, 1), + (302870, 16, 1), + (302870, 93, 10), + (302870, 95, 10), + (302870, 92, 10), + (302870, 97, 1), + (302870, 91, 10), + (302870, 96, 10), + (302870, 90, 10), + (302870, 94, 10), + (302870, 1, 5), + (302870, 221, 5), + (302870, 181, 3), + (302870, 168, 1), + (302870, 319, 5), + (302871, 17, 5), + (302871, 19, 5), + (302871, 21, 5), + (302871, 20, 5), + (302871, 18, 5), + (302871, 16, 5), + (302871, 93, 800), + (302871, 95, 800), + (302871, 92, 800), + (302871, 97, 800), + (302871, 91, 800), + (302871, 96, 800), + (302871, 90, 800), + (302871, 94, 800), + (302871, 1, 300), + (302871, 221, 300), + (302871, 181, 5), + (302871, 168, 5), + (302871, 319, 5), + (302872, 17, 1), + (302872, 19, 1), + (302872, 21, 1), + (302872, 20, 1), + (302872, 18, 1), + (302872, 16, 1), + (302872, 93, 10), + (302872, 95, 10), + (302872, 92, 10), + (302872, 97, 1), + (302872, 91, 10), + (302872, 96, 10), + (302872, 90, 10), + (302872, 94, 10), + (302872, 1, 5), + (302872, 221, 5), + (302872, 181, 3), + (302872, 168, 1), + (302872, 319, 5), + (302873, 17, 5), + (302873, 19, 5), + (302873, 21, 5), + (302873, 20, 5), + (302873, 18, 5), + (302873, 16, 5), + (302873, 93, 1200), + (302873, 95, 1200), + (302873, 92, 1200), + (302873, 97, 1200), + (302873, 91, 1200), + (302873, 96, 1200), + (302873, 90, 1200), + (302873, 94, 1200), + (302873, 1, 400), + (302873, 221, 400), + (302873, 181, 5), + (302873, 168, 5), + (302873, 319, 5), + (302874, 17, 1), + (302874, 19, 1), + (302874, 21, 1), + (302874, 20, 1), + (302874, 18, 1), + (302874, 16, 1), + (302874, 93, 10), + (302874, 95, 10), + (302874, 92, 10), + (302874, 97, 1), + (302874, 91, 10), + (302874, 96, 10), + (302874, 90, 10), + (302874, 94, 10), + (302874, 145, 1), + (302874, 1, 5), + (302874, 221, 5), + (302874, 181, 3), + (302874, 168, 1), + (302874, 319, 5), + (302875, 17, 5), + (302875, 19, 5), + (302875, 21, 5), + (302875, 20, 5), + (302875, 18, 5), + (302875, 16, 5), + (302875, 93, 350), + (302875, 95, 350), + (302875, 92, 350), + (302875, 97, 350), + (302875, 91, 350), + (302875, 96, 350), + (302875, 90, 350), + (302875, 94, 350), + (302875, 145, 10), + (302875, 1, 200), + (302875, 221, 200), + (302875, 181, 5), + (302875, 168, 5), + (302875, 319, 5), + (302876, 277, 5), + (302876, 101, 5), + (302876, 93, 10), + (302876, 95, 10), + (302876, 92, 10), + (302876, 97, 10), + (302876, 91, 10), + (302876, 96, 10), + (302876, 90, 10), + (302876, 94, 10), + (302876, 319, 5), + (302877, 277, 20), + (302877, 101, 20), + (302877, 93, 200), + (302877, 95, 200), + (302877, 92, 200), + (302877, 97, 200), + (302877, 91, 200), + (302877, 96, 200), + (302877, 90, 200), + (302877, 94, 200), + (302877, 319, 5), + (302878, 276, 5), + (302878, 134, 5), + (302878, 93, 10), + (302878, 95, 10), + (302878, 92, 10), + (302878, 97, 10), + (302878, 91, 10), + (302878, 96, 10), + (302878, 90, 10), + (302878, 94, 10), + (302878, 319, 5), + (302879, 276, 20), + (302879, 134, 20), + (302879, 93, 200), + (302879, 95, 200), + (302879, 92, 200), + (302879, 97, 200), + (302879, 91, 200), + (302879, 96, 200), + (302879, 90, 200), + (302879, 94, 200), + (302879, 319, 5), + (302880, 17, 5), + (302880, 19, 5), + (302880, 21, 5), + (302880, 20, 5), + (302880, 18, 5), + (302880, 16, 5), + (302880, 93, 300), + (302880, 95, 300), + (302880, 92, 300), + (302880, 97, 300), + (302880, 91, 300), + (302880, 96, 300), + (302880, 90, 300), + (302880, 94, 300), + (302880, 1, 150), + (302880, 221, 150), + (302880, 181, 5), + (302880, 168, 5), + (302880, 319, 5), + (302881, 17, 5), + (302881, 19, 5), + (302881, 21, 5), + (302881, 20, 5), + (302881, 18, 5), + (302881, 16, 5), + (302881, 93, 300), + (302881, 95, 300), + (302881, 92, 300), + (302881, 97, 300), + (302881, 91, 300), + (302881, 96, 300), + (302881, 90, 300), + (302881, 94, 300), + (302881, 145, 10), + (302881, 1, 150), + (302881, 221, 150), + (302881, 181, 5), + (302881, 168, 5), + (302881, 319, 5), + (302882, 17, 5), + (302882, 19, 5), + (302882, 21, 5), + (302882, 20, 5), + (302882, 18, 5), + (302882, 16, 5), + (302882, 93, 350), + (302882, 95, 350), + (302882, 92, 350), + (302882, 97, 350), + (302882, 91, 350), + (302882, 96, 350), + (302882, 90, 350), + (302882, 94, 350), + (302882, 1, 200), + (302882, 221, 200), + (302882, 181, 5), + (302882, 168, 5), + (302882, 319, 5), + (302912, 1, 3500), + (302912, 221, 3500), + (302912, 319, 15), + (302912, 277, 100), + (302912, 276, 150), + (302912, 136, 200), + (302912, 164, 200), + (302912, 156, 350), + (302912, 160, 275), + (302912, 161, 275), + (302912, 278, 65), + (302912, 279, 65), + (302912, 280, 65), + (302912, 281, 65), + (302912, 282, 65), + (302912, 311, 65), + (302912, 316, 65), + (302912, 317, 65), + (302912, 120, 150), + (302912, 118, 150), + (302912, 119, 150), + (302912, 149, 150), + (302912, 379, 2), + (302912, 536, 2), + (302912, 343, 10), + (302912, 168, 20), + (302913, 1, 3500), + (302913, 221, 3500), + (302913, 319, 15), + (302913, 277, 100), + (302913, 276, 150), + (302913, 136, 200), + (302913, 164, 200), + (302913, 156, 350), + (302913, 160, 275), + (302913, 161, 275), + (302913, 278, 65), + (302913, 279, 65), + (302913, 280, 65), + (302913, 281, 65), + (302913, 282, 65), + (302913, 311, 65), + (302913, 316, 65), + (302913, 317, 65), + (302913, 120, 150), + (302913, 118, 150), + (302913, 119, 150), + (302913, 149, 150), + (302913, 379, 2), + (302913, 536, 2), + (302913, 343, 10), + (302913, 168, 20), + (302914, 1, 3500), + (302914, 221, 3500), + (302914, 319, 15), + (302914, 277, 150), + (302914, 276, 100), + (302914, 136, 200), + (302914, 164, 200), + (302914, 156, 350), + (302914, 160, 275), + (302914, 161, 275), + (302914, 278, 45), + (302914, 279, 45), + (302914, 280, 45), + (302914, 281, 45), + (302914, 282, 45), + (302914, 311, 45), + (302914, 316, 45), + (302914, 317, 45), + (302914, 343, 30), + (302914, 168, 50), + (302914, 149, 130), + (302915, 1, 3500), + (302915, 221, 3500), + (302915, 319, 15), + (302915, 277, 150), + (302915, 276, 100), + (302915, 136, 200), + (302915, 164, 200), + (302915, 156, 350), + (302915, 160, 275), + (302915, 161, 275), + (302915, 278, 45), + (302915, 279, 45), + (302915, 280, 45), + (302915, 281, 45), + (302915, 282, 45), + (302915, 311, 45), + (302915, 316, 45), + (302915, 317, 45), + (302915, 343, 30), + (302915, 168, 50), + (302915, 149, 130), + (302921, 1, 2000), + (302921, 221, 2000), + (302921, 319, 15), + (302921, 277, 75), + (302921, 276, 100), + (302921, 136, 150), + (302921, 164, 150), + (302921, 156, 300), + (302921, 160, 250), + (302921, 161, 250), + (302921, 278, 40), + (302921, 279, 40), + (302921, 280, 40), + (302921, 281, 40), + (302921, 282, 40), + (302921, 311, 40), + (302921, 316, 40), + (302921, 317, 40), + (302921, 120, 120), + (302921, 343, 5), + (302921, 118, 120), + (302921, 119, 120), + (302921, 168, 10), + (302921, 149, 120), + (302921, 379, 2), + (302921, 536, 2), + (302922, 1, 2000), + (302922, 221, 2000), + (302922, 319, 15), + (302922, 277, 100), + (302922, 276, 75), + (302922, 136, 150), + (302922, 164, 150), + (302922, 156, 300), + (302922, 160, 250), + (302922, 161, 250), + (302922, 278, 20), + (302922, 279, 20), + (302922, 280, 20), + (302922, 281, 20), + (302922, 282, 20), + (302922, 311, 20), + (302922, 316, 20), + (302922, 317, 20), + (302922, 343, 20), + (302922, 168, 25), + (302922, 391, 5), + (302922, 535, 3), + (302922, 149, 100), + (302923, 1, 1000), + (302923, 689, 10), + (302923, 343, 10), + (302923, 391, 10), + (302923, 93, 600), + (302923, 95, 600), + (302923, 92, 600), + (302923, 97, 600), + (302923, 91, 600), + (302923, 96, 600), + (302923, 90, 600), + (302923, 90, 600), + (302923, 94, 600), + (302924, 379, 5), + (302924, 536, 5), + (302924, 276, 25), + (302924, 281, 30), + (302924, 311, 30), + (302924, 280, 30), + (302924, 316, 30), + (302924, 279, 30), + (302924, 317, 30), + (302924, 278, 30), + (302924, 282, 30), + (302925, 221, 1000), + (302925, 277, 25), + (302925, 149, 100), + (302925, 381, 50), + (302925, 364, 10), + (302925, 535, 5), + (302925, 318, -10), + (302930, 149, -800), + (302930, 168, 120), + (302931, 149, -800), + (302931, 535, 10), + (302931, 536, 10), + (302933, 1, 300), + (302933, 277, 15), + (302933, 276, 15), + (302933, 130, 30), + (302934, 1, 300), + (302934, 127, 15), + (302934, 128, 15), + (302934, 129, 15), + (302935, 1, 300), + (302935, 277, 15), + (302935, 276, 15), + (302936, 1, 300), + (302936, 277, 15), + (302936, 128, 30), + (302936, 129, 30), + (302938, 276, 15), + (302938, 130, 30), + (302938, 131, 30), + (302939, 1, 600), + (302939, 276, 30), + (302939, 164, 120), + (302940, 1, 300), + (302940, 277, 15), + (302940, 276, 15), + (302941, 1, 600), + (302941, 129, 30), + (302941, 131, 30), + (302942, 1, 400), + (302942, 276, 30), + (302942, 129, 30), + (302943, 1, 600), + (302943, 276, 30), + (302943, 130, 30), + (302943, 131, 30), + (302944, 1, 150), + (302944, 276, 15), + (302944, 149, 50), + (302944, 119, 50), + (302945, 1, 150), + (302945, 276, 7), + (302945, 128, 7), + (302945, 122, 7), + (302946, 1, 150), + (302946, 276, 7), + (302946, 128, 7), + (302946, 122, 7), + (302947, 1, 150), + (302947, 276, 7), + (302947, 128, 7), + (302947, 122, 7), + (302948, 1, 150), + (302948, 276, 7), + (302948, 128, 7), + (302948, 122, 7), + (302949, 1, 500), + (302949, 276, 30), + (302949, 130, 30), + (303000, 276, 30), + (303000, 130, 30), + (303000, 131, 30), + (303036, 161, 1), + (303036, 123, 10), + (303036, 124, 10), + (303036, 93, 10), + (303036, 95, 10), + (303036, 92, 10), + (303036, 97, 1), + (303036, 91, 10), + (303036, 96, 10), + (303036, 90, 10), + (303036, 94, 10), + (303036, 1, 5), + (303036, 221, 5), + (303036, 181, 3), + (303036, 319, 5), + (303037, 161, 2), + (303037, 123, 10), + (303037, 124, 10), + (303037, 93, 300), + (303037, 95, 300), + (303037, 92, 300), + (303037, 97, 300), + (303037, 91, 300), + (303037, 96, 300), + (303037, 90, 300), + (303037, 94, 300), + (303037, 1, 150), + (303037, 221, 150), + (303037, 181, 5), + (303037, 319, 5), + (303038, 161, 1), + (303038, 123, 10), + (303038, 124, 10), + (303038, 93, 10), + (303038, 95, 10), + (303038, 92, 10), + (303038, 97, 1), + (303038, 91, 10), + (303038, 96, 10), + (303038, 90, 10), + (303038, 94, 10), + (303038, 1, 5), + (303038, 221, 5), + (303038, 181, 3), + (303038, 319, 5), + (303039, 161, 2), + (303039, 123, 10), + (303039, 124, 10), + (303039, 93, 300), + (303039, 95, 300), + (303039, 92, 300), + (303039, 97, 300), + (303039, 91, 300), + (303039, 96, 300), + (303039, 90, 300), + (303039, 94, 300), + (303039, 1, 150), + (303039, 221, 150), + (303039, 181, 5), + (303039, 319, 5), + (303040, 161, 1), + (303040, 123, 15), + (303040, 124, 15), + (303040, 93, 10), + (303040, 95, 10), + (303040, 92, 10), + (303040, 97, 1), + (303040, 91, 10), + (303040, 96, 10), + (303040, 90, 10), + (303040, 94, 10), + (303040, 1, 5), + (303040, 221, 5), + (303040, 181, 3), + (303040, 319, 5), + (303041, 161, 2), + (303041, 123, 15), + (303041, 124, 15), + (303041, 93, 800), + (303041, 95, 800), + (303041, 92, 800), + (303041, 97, 800), + (303041, 91, 800), + (303041, 96, 800), + (303041, 90, 800), + (303041, 94, 800), + (303041, 1, 300), + (303041, 221, 300), + (303041, 181, 5), + (303041, 319, 5), + (303042, 161, 1), + (303042, 123, 15), + (303042, 124, 15), + (303042, 93, 10), + (303042, 95, 10), + (303042, 92, 10), + (303042, 97, 1), + (303042, 91, 10), + (303042, 96, 10), + (303042, 90, 10), + (303042, 94, 10), + (303042, 1, 5), + (303042, 221, 5), + (303042, 181, 3), + (303042, 319, 5), + (303043, 161, 2), + (303043, 123, 15), + (303043, 124, 15), + (303043, 93, 1200), + (303043, 95, 1200), + (303043, 92, 1200), + (303043, 97, 1200), + (303043, 91, 1200), + (303043, 96, 1200), + (303043, 90, 1200), + (303043, 94, 1200), + (303043, 1, 400), + (303043, 221, 400), + (303043, 181, 5), + (303043, 319, 5), + (303044, 161, 1), + (303044, 123, 10), + (303044, 124, 10), + (303044, 93, 10), + (303044, 95, 10), + (303044, 92, 10), + (303044, 97, 1), + (303044, 91, 10), + (303044, 96, 10), + (303044, 90, 10), + (303044, 94, 10), + (303044, 1, 5), + (303044, 221, 5), + (303044, 181, 3), + (303044, 319, 5), + (303045, 161, 2), + (303045, 123, 10), + (303045, 124, 10), + (303045, 93, 350), + (303045, 95, 350), + (303045, 92, 350), + (303045, 97, 350), + (303045, 91, 350), + (303045, 96, 350), + (303045, 90, 350), + (303045, 94, 350), + (303045, 1, 200), + (303045, 221, 200), + (303045, 181, 5), + (303045, 319, 5), + (303046, 276, 5), + (303046, 277, 5), + (303046, 93, 10), + (303046, 95, 10), + (303046, 92, 10), + (303046, 97, 10), + (303046, 91, 10), + (303046, 96, 10), + (303046, 90, 10), + (303046, 94, 10), + (303046, 319, 5), + (303047, 276, 15), + (303047, 277, 15), + (303047, 93, 200), + (303047, 95, 200), + (303047, 92, 200), + (303047, 97, 200), + (303047, 91, 200), + (303047, 96, 200), + (303047, 90, 200), + (303047, 94, 200), + (303047, 319, 5), + (303048, 161, 1), + (303048, 123, 2), + (303048, 124, 2), + (303048, 93, 10), + (303048, 95, 10), + (303048, 92, 10), + (303048, 97, 10), + (303048, 91, 10), + (303048, 96, 10), + (303048, 90, 10), + (303048, 94, 10), + (303048, 141, 50), + (303048, 319, 5), + (303049, 161, 3), + (303049, 123, 15), + (303049, 124, 15), + (303049, 93, 200), + (303049, 95, 200), + (303049, 92, 200), + (303049, 97, 200), + (303049, 91, 200), + (303049, 96, 200), + (303049, 90, 200), + (303049, 94, 200), + (303049, 141, 50), + (303049, 319, 5), + (303054, 156, 10), + (303054, 17, 1), + (303054, 93, 100), + (303054, 95, 100), + (303054, 92, 100), + (303054, 97, 100), + (303054, 19, 1), + (303054, 91, 100), + (303054, 96, 100), + (303054, 90, 100), + (303054, 21, 1), + (303054, 94, 100), + (303054, 20, 1), + (303054, 18, 1), + (303054, 16, 1), + (303058, 276, 15), + (303061, 229, 20), + (303061, 231, 20), + (303061, 228, 20), + (303061, 233, 20), + (303061, 227, 20), + (303061, 234, 20), + (303061, 226, 20), + (303061, 230, 20), + (303061, 93, 200), + (303061, 95, 200), + (303061, 92, 200), + (303061, 97, 750), + (303061, 91, 200), + (303061, 96, 200), + (303061, 90, 200), + (303061, 94, 200), + (303061, 219, 2), + (303062, 379, 5), + (303062, 151, 50), + (303062, 146, 25), + (303062, 118, -100), + (303062, 119, -100), + (303062, 120, -100), + (303064, 1, 750), + (303064, 221, 750), + (303064, 276, 20), + (303064, 277, 30), + (303064, 161, 150), + (303064, 156, 150), + (303064, 124, 10), + (303064, 319, 5), + (303064, 281, 10), + (303064, 311, 10), + (303064, 280, 10), + (303064, 316, 10), + (303064, 279, 10), + (303064, 317, 10), + (303064, 278, 10), + (303064, 282, 10), + (303065, 143, 15), + (303065, 144, 20), + (303065, 145, 15), + (303065, 153, 18), + (303065, 154, 18), + (303065, 155, 18), + (303065, 90, 75), + (303065, 91, 75), + (303065, 92, 75), + (303065, 93, 75), + (303065, 94, 75), + (303065, 95, 75), + (303065, 96, 75), + (303065, 97, 75), + (303066, 391, -10), + (303066, 277, -50), + (303067, 277, 10), + (303067, 318, -5), + (303068, 276, 15), + (303068, 128, 5), + (303068, 130, 5), + (303068, 131, 5), + (303068, 127, 5), + (303068, 129, 5), + (303068, 122, 5), + (303069, 154, 15), + (303069, 153, 15), + (303069, 155, 15), + (303069, 156, 50), + (303069, 391, 15), + (303069, 343, 5), + (303069, 382, 5), + (303070, 276, 10), + (303070, 281, 15), + (303070, 311, 15), + (303070, 280, 15), + (303070, 316, 15), + (303070, 279, 15), + (303070, 317, 15), + (303070, 278, 15), + (303070, 282, 15), + (303070, 118, 50), + (303070, 119, 50), + (303070, 149, 50), + (303070, 120, 50), + (303070, 379, 2), + (303093, 16, 20), + (303093, 18, 20), + (303093, 1, 50), + (303093, 319, 1), + (303094, 19, 20), + (303094, 21, 20), + (303094, 221, 100), + (303094, 319, 1), + (303095, 17, 20), + (303095, 20, 20), + (303095, 156, 125), + (303095, 319, 1), + (303097, 95, 1000), + (303097, 91, 60), + (303097, 90, 60), + (303103, 1, 200), + (303103, 221, 200), + (303103, 93, 600), + (303103, 95, 600), + (303103, 92, 350), + (303103, 97, 600), + (303103, 91, 500), + (303103, 96, 600), + (303103, 90, 600), + (303103, 94, 450), + (303103, 17, 25), + (303103, 276, 20), + (303103, 116, 40), + (303103, 118, 30), + (303103, 379, 2), + (303103, 119, 30), + (303103, 167, 40), + (303103, 149, 30), + (303103, 120, 30), + (303103, 20, 25), + (303103, 110, 40), + (303104, 1, 950), + (303104, 221, 950), + (303104, 93, 1800), + (303104, 95, 1800), + (303104, 92, 900), + (303104, 97, 1800), + (303104, 91, 1800), + (303104, 96, 1800), + (303104, 90, 1800), + (303104, 94, 900), + (303104, 276, 30), + (303104, 379, 5), + (303104, 100, 30), + (303104, 281, 35), + (303104, 311, 35), + (303104, 280, 35), + (303104, 316, 35), + (303104, 279, 35), + (303104, 315, 35), + (303104, 317, 35), + (303104, 278, 35), + (303104, 282, 35), + (303105, 1, 300), + (303105, 221, 300), + (303105, 93, 550), + (303105, 95, 550), + (303105, 92, 225), + (303105, 97, 550), + (303105, 91, 550), + (303105, 96, 550), + (303105, 90, 450), + (303105, 94, 525), + (303105, 277, 20), + (303105, 154, 20), + (303105, 139, 50), + (303105, 153, 20), + (303105, 155, 20), + (303105, 156, 30), + (303105, 128, 20), + (303105, 281, 15), + (303105, 311, 15), + (303105, 280, 15), + (303105, 316, 15), + (303105, 130, 20), + (303105, 131, 20), + (303105, 127, 20), + (303105, 279, 15), + (303105, 315, 15), + (303105, 317, 15), + (303105, 278, 15), + (303105, 129, 20), + (303105, 282, 15), + (303105, 122, 20), + (303106, 1, 250), + (303106, 221, 250), + (303106, 93, 500), + (303106, 95, 500), + (303106, 92, 350), + (303106, 97, 500), + (303106, 91, 500), + (303106, 96, 500), + (303106, 90, 500), + (303106, 94, 350), + (303106, 148, 40), + (303106, 161, 30), + (303106, 150, 40), + (303106, 318, -5), + (303106, 112, 40), + (303106, 381, 10), + (303106, 380, 10), + (303106, 163, 20), + (303106, 157, 20), + (303106, 160, 20), + (303106, 159, 20), + (303106, 162, 20), + (303106, 158, 20), + (303107, 1, 500), + (303107, 221, 500), + (303107, 93, 1050), + (303107, 95, 1050), + (303107, 92, 875), + (303107, 97, 1050), + (303107, 91, 1050), + (303107, 96, 1050), + (303107, 90, 1050), + (303107, 94, 875), + (303107, 276, 25), + (303107, 277, 25), + (303107, 123, 25), + (303107, 109, 45), + (303107, 133, 20), + (303107, 134, 20), + (303107, 124, 25), + (303107, 17, 25), + (303107, 19, 25), + (303107, 21, 25), + (303107, 20, 25), + (303107, 18, 25), + (303107, 16, 25), + (303108, 1, 750), + (303108, 221, 750), + (303108, 93, 1500), + (303108, 95, 1500), + (303108, 92, 900), + (303108, 97, 1500), + (303108, 91, 1500), + (303108, 96, 1500), + (303108, 90, 1500), + (303108, 94, 900), + (303108, 276, 40), + (303108, 391, 2), + (303108, 379, 2), + (303108, 277, 40), + (303108, 181, 50), + (303108, 168, 25), + (303174, 90, 60), + (303174, 91, 60), + (303174, 92, 100), + (303174, 93, 120), + (303174, 94, 20), + (303174, 95, 20), + (303174, 96, 40), + (303174, 97, 50), + (303174, 319, 5), + (303176, 161, 2), + (303176, 19, 5), + (303188, 276, 20), + (303188, 277, 5), + (303188, 1, 200), + (303188, 221, 50), + (303189, 276, 5), + (303189, 277, 20), + (303189, 1, 50), + (303189, 221, 200), + (303192, 276, 12), + (303192, 277, 12), + (303192, 1, 125), + (303192, 221, 125), + (303209, 118, -300), + (303209, 120, -300), + (303209, 149, -300), + (303209, 119, -300), + (303209, 279, -30), + (303209, 280, -30), + (303209, 278, -30), + (303209, 316, -30), + (303209, 311, -30), + (303209, 281, -30), + (303209, 317, -30), + (303209, 282, -30), + (303209, 92, -1500), + (303209, 91, -1500), + (303209, 90, -1500), + (303209, 97, -1500), + (303209, 95, -1500), + (303209, 96, -1500), + (303209, 93, -1500), + (303209, 94, -1500), + (303209, 118, -300), + (303209, 120, -300), + (303209, 149, -300), + (303209, 119, -300), + (303209, 279, -30), + (303209, 280, -30), + (303209, 278, -30), + (303209, 316, -30), + (303209, 311, -30), + (303209, 281, -30), + (303209, 317, -30), + (303209, 282, -30), + (303209, 92, -1500), + (303209, 91, -1500), + (303209, 90, -1500), + (303209, 97, -1500), + (303209, 95, -1500), + (303209, 96, -1500), + (303209, 93, -1500), + (303209, 94, -1500), + (303209, 118, -261), + (303209, 119, -261), + (303209, 120, -261), + (303236, 1, 200), + (303236, 90, 500), + (303236, 91, 500), + (303236, 92, 500), + (303236, 93, 500), + (303236, 94, 500), + (303236, 95, 500), + (303236, 96, 500), + (303236, 97, 500), + (303236, 281, 30), + (303236, 280, 30), + (303236, 316, 30), + (303236, 279, 30), + (303236, 317, 30), + (303236, 278, 30), + (303236, 282, 30), + (303247, 91, 10), + (303247, 90, 10), + (303247, 92, 10), + (303247, 97, 10), + (303247, 95, 10), + (303247, 94, 10), + (303247, 93, 10), + (303247, 96, 10), + (303247, 123, 2), + (303247, 124, 2), + (303247, 119, 5), + (303247, 118, 5), + (303247, 120, 5), + (303247, 149, 5), + (303247, 319, 5), + (303247, 181, 1), + (303247, 1, 5), + (303247, 164, 5), + (303247, 221, 5), + (303247, 156, 5), + (303248, 91, 800), + (303248, 90, 800), + (303248, 92, 800), + (303248, 97, 800), + (303248, 95, 800), + (303248, 94, 800), + (303248, 93, 800), + (303248, 96, 800), + (303248, 123, 10), + (303248, 124, 10), + (303248, 119, 10), + (303248, 118, 10), + (303248, 120, 10), + (303248, 149, 10), + (303248, 319, 5), + (303248, 181, 5), + (303248, 1, 100), + (303248, 164, 20), + (303248, 221, 100), + (303248, 156, 15), + (303249, 91, 10), + (303249, 90, 10), + (303249, 92, 10), + (303249, 97, 10), + (303249, 95, 10), + (303249, 94, 10), + (303249, 93, 10), + (303249, 96, 10), + (303249, 123, 14), + (303249, 124, 14), + (303249, 119, 5), + (303249, 118, 5), + (303249, 120, 5), + (303249, 149, 5), + (303249, 319, 5), + (303249, 181, 1), + (303249, 1, 5), + (303249, 156, 5), + (303249, 221, 5), + (303250, 91, 800), + (303250, 90, 800), + (303250, 92, 800), + (303250, 97, 800), + (303250, 95, 800), + (303250, 94, 800), + (303250, 93, 800), + (303250, 96, 800), + (303250, 123, 14), + (303250, 124, 14), + (303250, 119, 10), + (303250, 118, 10), + (303250, 120, 10), + (303250, 149, 10), + (303250, 319, 5), + (303250, 181, 5), + (303250, 1, 100), + (303250, 156, 15), + (303250, 221, 100), + (303251, 91, 10), + (303251, 90, 10), + (303251, 92, 10), + (303251, 97, 10), + (303251, 95, 10), + (303251, 94, 10), + (303251, 93, 10), + (303251, 96, 10), + (303251, 123, 20), + (303251, 124, 20), + (303251, 119, 5), + (303251, 118, 5), + (303251, 120, 5), + (303251, 149, 5), + (303251, 319, 5), + (303251, 181, 1), + (303251, 1, 5), + (303251, 164, 5), + (303251, 156, 5), + (303251, 221, 5), + (303252, 91, 800), + (303252, 90, 800), + (303252, 92, 800), + (303252, 97, 800), + (303252, 95, 800), + (303252, 94, 800), + (303252, 93, 800), + (303252, 96, 800), + (303252, 123, 20), + (303252, 124, 20), + (303252, 119, 10), + (303252, 118, 10), + (303252, 120, 10), + (303252, 149, 10), + (303252, 319, 5), + (303252, 181, 5), + (303252, 1, 100), + (303252, 164, 20), + (303252, 156, 15), + (303252, 221, 100), + (303253, 91, 10), + (303253, 90, 10), + (303253, 92, 10), + (303253, 97, 10), + (303253, 95, 10), + (303253, 94, 10), + (303253, 93, 10), + (303253, 96, 10), + (303253, 123, 14), + (303253, 124, 14), + (303253, 119, 5), + (303253, 118, 5), + (303253, 120, 5), + (303253, 149, 5), + (303253, 319, 5), + (303253, 181, 1), + (303253, 1, 5), + (303253, 164, 5), + (303253, 156, 5), + (303253, 221, 5), + (303254, 91, 300), + (303254, 90, 300), + (303254, 92, 300), + (303254, 97, 300), + (303254, 95, 300), + (303254, 94, 300), + (303254, 93, 300), + (303254, 96, 300), + (303254, 123, 14), + (303254, 124, 14), + (303254, 119, 10), + (303254, 118, 10), + (303254, 120, 10), + (303254, 149, 10), + (303254, 319, 5), + (303254, 181, 5), + (303254, 1, 100), + (303254, 164, 20), + (303254, 156, 15), + (303254, 221, 100), + (303255, 91, 10), + (303255, 90, 10), + (303255, 92, 10), + (303255, 97, 10), + (303255, 95, 10), + (303255, 94, 10), + (303255, 93, 10), + (303255, 96, 10), + (303255, 123, 10), + (303255, 124, 10), + (303255, 119, 5), + (303255, 118, 5), + (303255, 120, 5), + (303255, 149, 5), + (303255, 319, 5), + (303255, 181, 1), + (303255, 1, 5), + (303255, 164, 5), + (303255, 156, 5), + (303255, 221, 5), + (303256, 91, 200), + (303256, 90, 200), + (303256, 92, 200), + (303256, 97, 200), + (303256, 95, 200), + (303256, 94, 200), + (303256, 93, 200), + (303256, 96, 200), + (303256, 123, 10), + (303256, 124, 10), + (303256, 119, 10), + (303256, 118, 10), + (303256, 120, 10), + (303256, 149, 10), + (303256, 319, 5), + (303256, 181, 5), + (303256, 1, 100), + (303256, 164, 20), + (303256, 156, 15), + (303256, 221, 100), + (303257, 91, 10), + (303257, 90, 10), + (303257, 92, 10), + (303257, 97, 10), + (303257, 95, 10), + (303257, 94, 10), + (303257, 93, 10), + (303257, 96, 10), + (303257, 123, 6), + (303257, 124, 6), + (303257, 119, 5), + (303257, 118, 5), + (303257, 120, 5), + (303257, 149, 5), + (303257, 319, 5), + (303257, 181, 1), + (303257, 1, 5), + (303257, 164, 5), + (303257, 156, 5), + (303257, 221, 5), + (303258, 91, 250), + (303258, 90, 250), + (303258, 92, 250), + (303258, 97, 250), + (303258, 95, 250), + (303258, 94, 250), + (303258, 93, 250), + (303258, 96, 250), + (303258, 123, 6), + (303258, 124, 6), + (303258, 119, 10), + (303258, 118, 10), + (303258, 120, 10), + (303258, 149, 10), + (303258, 319, 5), + (303258, 181, 5), + (303258, 1, 100), + (303258, 164, 20), + (303258, 156, 15), + (303258, 221, 100), + (303259, 91, 10), + (303259, 90, 10), + (303259, 92, 10), + (303259, 97, 10), + (303259, 95, 10), + (303259, 94, 10), + (303259, 93, 10), + (303259, 96, 10), + (303259, 123, 5), + (303259, 124, 1), + (303259, 119, 5), + (303259, 118, 5), + (303259, 120, 5), + (303259, 149, 5), + (303259, 319, 5), + (303259, 181, 1), + (303259, 164, 5), + (303259, 1, 30), + (303259, 221, 30), + (303259, 156, 5), + (303259, 161, 1), + (303259, 276, 1), + (303259, 277, 1), + (303260, 91, 200), + (303260, 90, 200), + (303260, 92, 200), + (303260, 97, 200), + (303260, 95, 200), + (303260, 94, 200), + (303260, 93, 200), + (303260, 96, 200), + (303260, 123, 25), + (303260, 124, 20), + (303260, 119, 10), + (303260, 118, 10), + (303260, 120, 10), + (303260, 149, 10), + (303260, 319, 5), + (303260, 181, 5), + (303260, 164, 20), + (303260, 1, 500), + (303260, 221, 500), + (303260, 156, 15), + (303260, 161, 10), + (303260, 276, 20), + (303260, 277, 20), + (303278, 19, 1), + (303278, 21, 1), + (303278, 161, 5), + (303278, 123, 5), + (303278, 124, 5), + (303278, 141, 20), + (303278, 319, 5), + (303283, 91, 10), + (303283, 90, 10), + (303283, 92, 10), + (303283, 97, 10), + (303283, 95, 10), + (303283, 94, 10), + (303283, 93, 10), + (303283, 96, 10), + (303283, 123, 2), + (303283, 124, 2), + (303283, 119, 5), + (303283, 118, 5), + (303283, 120, 5), + (303283, 149, 5), + (303283, 181, 1), + (303283, 319, 5), + (303283, 1, 5), + (303283, 221, 5), + (303284, 91, 800), + (303284, 90, 800), + (303284, 92, 800), + (303284, 97, 800), + (303284, 95, 800), + (303284, 94, 800), + (303284, 93, 800), + (303284, 96, 800), + (303284, 123, 10), + (303284, 124, 10), + (303284, 119, 50), + (303284, 118, 50), + (303284, 120, 50), + (303284, 149, 50), + (303284, 181, 5), + (303284, 319, 5), + (303284, 1, 200), + (303284, 221, 200), + (303319, 17, 4), + (303319, 19, 5), + (303319, 21, -2), + (303319, 156, 50), + (303319, 20, -3), + (303319, 18, -1), + (303319, 16, 2), + (303322, 124, 6), + (303322, 134, 15), + (303322, 18, 10), + (303322, 16, 10), + (303380, 319, 50), + (303445, 91, 10), + (303445, 90, 10), + (303445, 92, 10), + (303445, 97, 10), + (303445, 95, 10), + (303445, 94, 10), + (303445, 93, 10), + (303445, 96, 10), + (303445, 123, 2), + (303445, 124, 2), + (303445, 119, 5), + (303445, 118, 5), + (303445, 120, 5), + (303445, 149, 5), + (303445, 181, 1), + (303445, 319, 5), + (303445, 1, 5), + (303445, 221, 5), + (303446, 91, 1200), + (303446, 90, 1200), + (303446, 92, 1200), + (303446, 97, 1200), + (303446, 95, 1200), + (303446, 94, 1200), + (303446, 93, 1200), + (303446, 96, 1200), + (303446, 123, 10), + (303446, 124, 11), + (303446, 119, 55), + (303446, 118, 65), + (303446, 120, 65), + (303446, 149, 65), + (303446, 181, 5), + (303446, 319, 5), + (303446, 1, 250), + (303446, 221, 250), + (303447, 91, 10), + (303447, 90, 10), + (303447, 92, 10), + (303447, 97, 10), + (303447, 95, 10), + (303447, 94, 10), + (303447, 93, 10), + (303447, 96, 10), + (303447, 123, 2), + (303447, 124, 2), + (303447, 119, 5), + (303447, 118, 5), + (303447, 120, 5), + (303447, 149, 5), + (303447, 319, 5), + (303447, 181, 1), + (303447, 1, 5), + (303447, 164, 5), + (303447, 221, 5), + (303447, 156, 5), + (303448, 91, 900), + (303448, 90, 900), + (303448, 92, 900), + (303448, 97, 900), + (303448, 95, 900), + (303448, 94, 900), + (303448, 93, 900), + (303448, 96, 900), + (303448, 123, 10), + (303448, 124, 10), + (303448, 119, 15), + (303448, 118, 15), + (303448, 120, 15), + (303448, 149, 15), + (303448, 319, 5), + (303448, 181, 5), + (303448, 1, 150), + (303448, 164, 20), + (303448, 221, 150), + (303448, 156, 15), + (303449, 91, 10), + (303449, 90, 10), + (303449, 92, 10), + (303449, 97, 10), + (303449, 95, 10), + (303449, 94, 10), + (303449, 93, 10), + (303449, 96, 10), + (303449, 123, 14), + (303449, 124, 14), + (303449, 119, 5), + (303449, 118, 5), + (303449, 120, 5), + (303449, 149, 5), + (303449, 319, 5), + (303449, 181, 1), + (303449, 1, 5), + (303449, 156, 5), + (303449, 221, 5), + (303450, 91, 1000), + (303450, 90, 1000), + (303450, 92, 1000), + (303450, 97, 1000), + (303450, 95, 1000), + (303450, 94, 1000), + (303450, 93, 1000), + (303450, 96, 1000), + (303450, 123, 14), + (303450, 124, 14), + (303450, 119, 10), + (303450, 118, 15), + (303450, 120, 15), + (303450, 149, 15), + (303450, 319, 5), + (303450, 181, 7), + (303450, 1, 150), + (303450, 156, 15), + (303450, 221, 150), + (303451, 91, 10), + (303451, 90, 10), + (303451, 92, 10), + (303451, 97, 10), + (303451, 95, 10), + (303451, 94, 10), + (303451, 93, 10), + (303451, 96, 10), + (303451, 123, 20), + (303451, 124, 20), + (303451, 119, 5), + (303451, 118, 5), + (303451, 120, 5), + (303451, 149, 5), + (303451, 319, 5), + (303451, 181, 1), + (303451, 1, 5), + (303451, 164, 5), + (303451, 156, 5), + (303451, 221, 5), + (303452, 91, 1200), + (303452, 90, 1200), + (303452, 92, 1200), + (303452, 97, 1200), + (303452, 95, 1200), + (303452, 94, 1200), + (303452, 93, 1200), + (303452, 96, 1200), + (303452, 123, 22), + (303452, 124, 22), + (303452, 119, 20), + (303452, 118, 20), + (303452, 120, 20), + (303452, 149, 20), + (303452, 319, 5), + (303452, 181, 5), + (303452, 1, 200), + (303452, 164, 20), + (303452, 156, 15), + (303452, 221, 200), + (303453, 91, 10), + (303453, 90, 10), + (303453, 92, 10), + (303453, 97, 10), + (303453, 95, 10), + (303453, 94, 10), + (303453, 93, 10), + (303453, 96, 10), + (303453, 123, 14), + (303453, 124, 14), + (303453, 119, 5), + (303453, 118, 5), + (303453, 120, 5), + (303453, 149, 5), + (303453, 319, 5), + (303453, 181, 1), + (303453, 1, 5), + (303453, 164, 5), + (303453, 156, 5), + (303453, 221, 5), + (303454, 91, 350), + (303454, 90, 350), + (303454, 92, 350), + (303454, 97, 350), + (303454, 95, 350), + (303454, 94, 350), + (303454, 93, 350), + (303454, 96, 350), + (303454, 123, 14), + (303454, 124, 14), + (303454, 119, 15), + (303454, 118, 15), + (303454, 120, 15), + (303454, 149, 15), + (303454, 319, 5), + (303454, 181, 5), + (303454, 1, 100), + (303454, 164, 20), + (303454, 156, 15), + (303454, 221, 100), + (303455, 91, 10), + (303455, 90, 10), + (303455, 92, 10), + (303455, 97, 10), + (303455, 95, 10), + (303455, 94, 10), + (303455, 93, 10), + (303455, 96, 10), + (303455, 123, 10), + (303455, 124, 10), + (303455, 119, 5), + (303455, 118, 5), + (303455, 120, 5), + (303455, 149, 5), + (303455, 319, 5), + (303455, 181, 1), + (303455, 1, 5), + (303455, 164, 5), + (303455, 156, 5), + (303455, 221, 5), + (303456, 91, 300), + (303456, 90, 300), + (303456, 92, 300), + (303456, 97, 300), + (303456, 95, 300), + (303456, 94, 300), + (303456, 93, 300), + (303456, 96, 300), + (303456, 123, 10), + (303456, 124, 10), + (303456, 119, 15), + (303456, 118, 15), + (303456, 120, 15), + (303456, 149, 15), + (303456, 319, 5), + (303456, 181, 5), + (303456, 1, 100), + (303456, 164, 20), + (303456, 156, 15), + (303456, 221, 100), + (303457, 91, 10), + (303457, 90, 10), + (303457, 92, 10), + (303457, 97, 10), + (303457, 95, 10), + (303457, 94, 10), + (303457, 93, 10), + (303457, 96, 10), + (303457, 123, 6), + (303457, 124, 6), + (303457, 119, 5), + (303457, 118, 5), + (303457, 120, 5), + (303457, 149, 5), + (303457, 319, 5), + (303457, 181, 1), + (303457, 1, 5), + (303457, 164, 5), + (303457, 156, 5), + (303457, 221, 5), + (303458, 91, 400), + (303458, 90, 400), + (303458, 92, 400), + (303458, 97, 400), + (303458, 95, 400), + (303458, 94, 400), + (303458, 93, 400), + (303458, 96, 400), + (303458, 123, 6), + (303458, 124, 6), + (303458, 119, 10), + (303458, 118, 10), + (303458, 120, 10), + (303458, 149, 10), + (303458, 319, 5), + (303458, 181, 5), + (303458, 1, 100), + (303458, 164, 20), + (303458, 156, 30), + (303458, 221, 100), + (303459, 91, 10), + (303459, 90, 10), + (303459, 92, 10), + (303459, 97, 10), + (303459, 95, 10), + (303459, 94, 10), + (303459, 93, 10), + (303459, 96, 10), + (303459, 123, 5), + (303459, 124, 1), + (303459, 119, 5), + (303459, 118, 5), + (303459, 120, 5), + (303459, 149, 5), + (303459, 319, 5), + (303459, 181, 1), + (303459, 164, 5), + (303459, 1, 30), + (303459, 221, 30), + (303459, 156, 5), + (303459, 161, 1), + (303459, 276, 1), + (303459, 277, 1), + (303460, 91, 250), + (303460, 90, 250), + (303460, 92, 250), + (303460, 97, 250), + (303460, 95, 250), + (303460, 94, 250), + (303460, 93, 250), + (303460, 96, 250), + (303460, 123, 25), + (303460, 124, 20), + (303460, 119, 10), + (303460, 118, 10), + (303460, 120, 10), + (303460, 149, 10), + (303460, 319, 5), + (303460, 181, 5), + (303460, 164, 20), + (303460, 1, 600), + (303460, 221, 600), + (303460, 156, 15), + (303460, 161, 10), + (303460, 276, 20), + (303460, 277, 20), + (303471, 17, 1), + (303471, 19, 1), + (303471, 21, 1), + (303471, 20, 1), + (303471, 18, 1), + (303471, 16, 1), + (303471, 93, 10), + (303471, 95, 10), + (303471, 92, 10), + (303471, 97, 1), + (303471, 91, 10), + (303471, 96, 10), + (303471, 90, 10), + (303471, 94, 10), + (303471, 145, 1), + (303471, 1, 5), + (303471, 221, 5), + (303471, 181, 3), + (303471, 168, 1), + (303471, 319, 5), + (303472, 17, 5), + (303472, 19, 5), + (303472, 21, 5), + (303472, 20, 5), + (303472, 18, 5), + (303472, 16, 5), + (303472, 93, 350), + (303472, 95, 350), + (303472, 92, 350), + (303472, 97, 350), + (303472, 91, 350), + (303472, 96, 350), + (303472, 90, 350), + (303472, 94, 350), + (303472, 145, 10), + (303472, 1, 200), + (303472, 221, 200), + (303472, 181, 5), + (303472, 168, 5), + (303472, 319, 5), + (303489, 91, 10), + (303489, 90, 10), + (303489, 92, 10), + (303489, 97, 10), + (303489, 95, 10), + (303489, 94, 10), + (303489, 93, 10), + (303489, 96, 10), + (303489, 123, 2), + (303489, 124, 2), + (303489, 119, 5), + (303489, 118, 5), + (303489, 120, 5), + (303489, 149, 5), + (303489, 319, 5), + (303489, 181, 1), + (303489, 1, 5), + (303489, 221, 5), + (303490, 91, 800), + (303490, 90, 800), + (303490, 92, 800), + (303490, 97, 800), + (303490, 95, 800), + (303490, 94, 800), + (303490, 93, 800), + (303490, 96, 800), + (303490, 123, 10), + (303490, 124, 10), + (303490, 119, 20), + (303490, 118, 20), + (303490, 120, 20), + (303490, 149, 20), + (303490, 319, 5), + (303490, 181, 8), + (303490, 1, 150), + (303490, 221, 150), + (303491, 91, 10), + (303491, 90, 10), + (303491, 92, 10), + (303491, 97, 10), + (303491, 95, 10), + (303491, 94, 10), + (303491, 93, 10), + (303491, 96, 10), + (303491, 123, 1), + (303491, 124, 1), + (303491, 119, 2), + (303491, 118, 5), + (303491, 120, 5), + (303491, 149, 5), + (303491, 181, 1), + (303491, 319, 2), + (303491, 1, 2), + (303491, 221, 2), + (303492, 91, 200), + (303492, 90, 200), + (303492, 92, 200), + (303492, 97, 200), + (303492, 95, 200), + (303492, 94, 200), + (303492, 93, 200), + (303492, 96, 200), + (303492, 123, 3), + (303492, 124, 3), + (303492, 119, 15), + (303492, 118, 15), + (303492, 120, 15), + (303492, 149, 15), + (303492, 181, 5), + (303492, 319, 5), + (303492, 1, 50), + (303492, 221, 50), + (303493, 91, 10), + (303493, 90, 10), + (303493, 92, 10), + (303493, 97, 10), + (303493, 95, 10), + (303493, 94, 10), + (303493, 93, 10), + (303493, 96, 10), + (303493, 123, 14), + (303493, 124, 14), + (303493, 119, 2), + (303493, 118, 2), + (303493, 120, 2), + (303493, 149, 2), + (303493, 319, 5), + (303493, 181, 1), + (303493, 1, 5), + (303493, 221, 5), + (303494, 91, 800), + (303494, 90, 800), + (303494, 92, 800), + (303494, 97, 800), + (303494, 95, 800), + (303494, 94, 800), + (303494, 93, 800), + (303494, 96, 800), + (303494, 123, 14), + (303494, 124, 14), + (303494, 119, 20), + (303494, 118, 20), + (303494, 120, 20), + (303494, 149, 20), + (303494, 319, 5), + (303494, 181, 8), + (303494, 1, 200), + (303494, 221, 200), + (303495, 91, 10), + (303495, 90, 10), + (303495, 92, 10), + (303495, 97, 10), + (303495, 95, 10), + (303495, 94, 10), + (303495, 93, 10), + (303495, 96, 10), + (303495, 123, 20), + (303495, 124, 20), + (303495, 119, 2), + (303495, 118, 2), + (303495, 120, 2), + (303495, 149, 2), + (303495, 319, 5), + (303495, 181, 1), + (303495, 1, 5), + (303495, 221, 5), + (303496, 91, 800), + (303496, 90, 800), + (303496, 92, 800), + (303496, 97, 800), + (303496, 95, 800), + (303496, 94, 800), + (303496, 93, 800), + (303496, 96, 800), + (303496, 123, 20), + (303496, 124, 20), + (303496, 119, 20), + (303496, 118, 20), + (303496, 120, 20), + (303496, 149, 20), + (303496, 319, 5), + (303496, 181, 8), + (303496, 1, 300), + (303496, 221, 300), + (303497, 91, 10), + (303497, 90, 10), + (303497, 92, 10), + (303497, 97, 10), + (303497, 95, 10), + (303497, 94, 10), + (303497, 93, 10), + (303497, 96, 10), + (303497, 123, 14), + (303497, 124, 14), + (303497, 119, 2), + (303497, 118, 2), + (303497, 120, 2), + (303497, 149, 2), + (303497, 319, 5), + (303497, 181, 1), + (303497, 1, 5), + (303497, 221, 5), + (303498, 91, 300), + (303498, 90, 300), + (303498, 92, 300), + (303498, 97, 300), + (303498, 95, 300), + (303498, 94, 300), + (303498, 93, 300), + (303498, 96, 300), + (303498, 123, 14), + (303498, 124, 14), + (303498, 119, 20), + (303498, 118, 20), + (303498, 120, 20), + (303498, 149, 20), + (303498, 319, 5), + (303498, 181, 8), + (303498, 1, 150), + (303498, 221, 150), + (303499, 91, 10), + (303499, 90, 10), + (303499, 92, 10), + (303499, 97, 10), + (303499, 95, 10), + (303499, 94, 10), + (303499, 93, 10), + (303499, 96, 10), + (303499, 123, 10), + (303499, 124, 10), + (303499, 119, 2), + (303499, 118, 2), + (303499, 120, 2), + (303499, 149, 2), + (303499, 319, 5), + (303499, 181, 1), + (303499, 1, 5), + (303499, 221, 5), + (303500, 91, 200), + (303500, 90, 200), + (303500, 92, 200), + (303500, 97, 200), + (303500, 95, 200), + (303500, 94, 200), + (303500, 93, 200), + (303500, 96, 200), + (303500, 123, 10), + (303500, 124, 10), + (303500, 119, 20), + (303500, 118, 20), + (303500, 120, 20), + (303500, 149, 20), + (303500, 319, 5), + (303500, 181, 8), + (303500, 1, 150), + (303500, 221, 150), + (303501, 91, 10), + (303501, 90, 10), + (303501, 92, 10), + (303501, 97, 10), + (303501, 95, 10), + (303501, 94, 10), + (303501, 93, 10), + (303501, 96, 10), + (303501, 123, 6), + (303501, 124, 6), + (303501, 119, 2), + (303501, 118, 2), + (303501, 120, 2), + (303501, 149, 2), + (303501, 319, 5), + (303501, 181, 1), + (303501, 1, 5), + (303501, 221, 5), + (303502, 91, 250), + (303502, 90, 250), + (303502, 92, 250), + (303502, 97, 250), + (303502, 95, 250), + (303502, 94, 250), + (303502, 93, 250), + (303502, 96, 250), + (303502, 123, 6), + (303502, 124, 6), + (303502, 119, 20), + (303502, 118, 20), + (303502, 120, 20), + (303502, 149, 20), + (303502, 319, 5), + (303502, 181, 8), + (303502, 1, 150), + (303502, 221, 150), + (303510, 16, 2), + (303510, 17, 2), + (303510, 18, 2), + (303510, 19, 2), + (303510, 20, 2), + (303510, 21, 2), + (303510, 221, 20), + (303510, 1, 20), + (303510, 319, 5), + (303548, 90, 1), + (303548, 91, 1), + (303548, 92, 1), + (303548, 93, 1), + (303548, 94, 1), + (303548, 95, 1), + (303548, 96, 1), + (303548, 97, 1), + (303548, 19, 1), + (303548, 21, 1), + (303549, 90, 300), + (303549, 91, 300), + (303549, 92, 300), + (303549, 93, 300), + (303549, 94, 300), + (303549, 95, 300), + (303549, 96, 300), + (303549, 97, 300), + (303549, 19, 25), + (303549, 21, 25), + (303550, 1, 5), + (303550, 90, 1), + (303550, 91, 1), + (303550, 92, 1), + (303550, 93, 1), + (303550, 94, 1), + (303550, 95, 1), + (303550, 96, 1), + (303550, 97, 1), + (303550, 17, 1), + (303550, 20, 1), + (303551, 1, 200), + (303551, 90, 75), + (303551, 91, 75), + (303551, 92, 75), + (303551, 93, 75), + (303551, 94, 75), + (303551, 95, 75), + (303551, 96, 75), + (303551, 97, 75), + (303551, 17, 23), + (303551, 20, 23), + (303552, 1, 5), + (303552, 90, 1), + (303552, 91, 1), + (303552, 92, 1), + (303552, 93, 1), + (303552, 94, 1), + (303552, 95, 1), + (303552, 96, 1), + (303552, 97, 1), + (303552, 16, 1), + (303552, 18, 1), + (303552, 111, 1), + (303553, 1, 250), + (303553, 90, 350), + (303553, 91, 350), + (303553, 92, 350), + (303553, 93, 350), + (303553, 94, 350), + (303553, 95, 350), + (303553, 96, 350), + (303553, 97, 350), + (303553, 16, 22), + (303553, 18, 22), + (303553, 111, 25), + (303554, 1, 5), + (303554, 90, 1), + (303554, 91, 1), + (303554, 92, 1), + (303554, 93, 1), + (303554, 94, 1), + (303554, 95, 1), + (303554, 96, 1), + (303554, 97, 1), + (303554, 102, 1), + (303554, 103, 1), + (303554, 107, 1), + (303554, 105, 1), + (303554, 142, 1), + (303554, 154, 1), + (303554, 155, 1), + (303555, 1, 350), + (303555, 90, 1200), + (303555, 91, 1200), + (303555, 92, 1200), + (303555, 93, 1200), + (303555, 94, 1200), + (303555, 95, 1200), + (303555, 96, 1200), + (303555, 97, 1200), + (303555, 102, 25), + (303555, 103, 25), + (303555, 107, 25), + (303555, 105, 25), + (303555, 142, 25), + (303555, 154, 30), + (303555, 155, 30), + (303556, 1, 5), + (303556, 90, 1), + (303556, 91, 1), + (303556, 92, 1), + (303556, 93, 1), + (303556, 94, 1), + (303556, 95, 1), + (303556, 96, 1), + (303556, 97, 1), + (303556, 101, 1), + (303556, 134, 1), + (303556, 108, 1), + (303556, 109, 1), + (303556, 110, 1), + (303556, 118, 1), + (303556, 119, 1), + (303556, 120, 1), + (303557, 1, 250), + (303557, 90, 400), + (303557, 91, 400), + (303557, 92, 400), + (303557, 93, 400), + (303557, 94, 400), + (303557, 95, 400), + (303557, 96, 400), + (303557, 97, 400), + (303557, 101, 30), + (303557, 134, 30), + (303557, 108, 40), + (303557, 109, 25), + (303557, 110, 25), + (303557, 118, 60), + (303557, 119, 60), + (303557, 120, 60), + (303558, 1, 5), + (303558, 90, 1), + (303558, 91, 1), + (303558, 92, 1), + (303558, 93, 1), + (303558, 94, 1), + (303558, 95, 1), + (303558, 96, 1), + (303558, 97, 1), + (303558, 112, 1), + (303558, 113, 1), + (303558, 114, 1), + (303558, 115, 1), + (303558, 116, 1), + (303558, 153, 1), + (303558, 154, 1), + (303559, 1, 350), + (303559, 90, 800), + (303559, 91, 800), + (303559, 92, 800), + (303559, 93, 800), + (303559, 94, 800), + (303559, 95, 800), + (303559, 96, 800), + (303559, 97, 800), + (303559, 112, 25), + (303559, 113, 25), + (303559, 114, 25), + (303559, 115, 25), + (303559, 116, 25), + (303559, 153, 25), + (303559, 154, 25), + (303560, 1, 5), + (303560, 90, 1), + (303560, 91, 1), + (303560, 92, 1), + (303560, 93, 1), + (303560, 94, 1), + (303560, 95, 1), + (303560, 96, 1), + (303560, 97, 1), + (303560, 100, 1), + (303560, 106, 1), + (303560, 104, 1), + (303560, 146, 1), + (303560, 147, 1), + (303560, 153, 1), + (303560, 155, 1), + (303561, 1, 350), + (303561, 90, 550), + (303561, 91, 550), + (303561, 92, 550), + (303561, 93, 550), + (303561, 94, 550), + (303561, 95, 550), + (303561, 96, 550), + (303561, 97, 550), + (303561, 100, 25), + (303561, 106, 25), + (303561, 104, 20), + (303561, 146, 25), + (303561, 147, 25), + (303561, 153, 25), + (303561, 155, 25), + (303562, 90, 1), + (303562, 91, 1), + (303562, 92, 1), + (303562, 93, 1), + (303562, 94, 1), + (303562, 95, 1), + (303562, 96, 1), + (303562, 97, 1), + (303562, 1, 5), + (303562, 127, 1), + (303562, 128, 1), + (303562, 129, 1), + (303562, 122, 1), + (303562, 130, 1), + (303562, 131, 1), + (303562, 149, 1), + (303563, 90, 300), + (303563, 91, 300), + (303563, 92, 300), + (303563, 93, 300), + (303563, 94, 300), + (303563, 95, 300), + (303563, 96, 300), + (303563, 97, 300), + (303563, 1, 400), + (303563, 127, 25), + (303563, 128, 25), + (303563, 129, 25), + (303563, 122, 25), + (303563, 130, 25), + (303563, 131, 25), + (303563, 149, 75), + (303580, 156, 250), + (303592, 149, 3), + (303592, 181, 3), + (303592, 221, 5), + (303592, 90, 8), + (303592, 91, 10), + (303592, 92, 4), + (303592, 93, 10), + (303592, 94, 4), + (303592, 95, 8), + (303592, 96, 8), + (303592, 97, 8), + (303592, 1, 5), + (303593, 149, 15), + (303593, 181, 15), + (303593, 221, 200), + (303593, 90, 200), + (303593, 91, 250), + (303593, 92, 100), + (303593, 93, 250), + (303593, 94, 100), + (303593, 95, 200), + (303593, 96, 200), + (303593, 97, 200), + (303593, 1, 200), + (303594, 149, 3), + (303594, 181, 3), + (303594, 221, 5), + (303594, 90, 8), + (303594, 91, 10), + (303594, 92, 4), + (303594, 93, 10), + (303594, 94, 4), + (303594, 95, 8), + (303594, 96, 8), + (303594, 97, 8), + (303594, 1, 5), + (303595, 149, 15), + (303595, 181, 15), + (303595, 221, 120), + (303595, 90, 200), + (303595, 91, 25), + (303595, 92, 100), + (303595, 93, 250), + (303595, 94, 100), + (303595, 95, 200), + (303595, 96, 200), + (303595, 97, 200), + (303595, 1, 120), + (303596, 149, 3), + (303596, 181, 3), + (303596, 221, 5), + (303596, 90, 8), + (303596, 91, 10), + (303596, 92, 4), + (303596, 93, 10), + (303596, 94, 4), + (303596, 95, 8), + (303596, 96, 8), + (303596, 97, 8), + (303596, 1, 5), + (303597, 149, 15), + (303597, 181, 15), + (303597, 221, 250), + (303597, 90, 800), + (303597, 91, 1000), + (303597, 92, 400), + (303597, 93, 1000), + (303597, 94, 400), + (303597, 95, 800), + (303597, 96, 800), + (303597, 97, 800), + (303597, 1, 250), + (303598, 149, 3), + (303598, 181, 3), + (303598, 221, 5), + (303598, 90, 8), + (303598, 91, 10), + (303598, 92, 4), + (303598, 93, 10), + (303598, 94, 4), + (303598, 95, 8), + (303598, 96, 8), + (303598, 97, 8), + (303598, 1, 5), + (303599, 149, 15), + (303599, 181, 15), + (303599, 221, 200), + (303599, 90, 550), + (303599, 91, 700), + (303599, 92, 275), + (303599, 93, 600), + (303599, 94, 275), + (303599, 95, 550), + (303599, 96, 550), + (303599, 97, 575), + (303599, 1, 200), + (303600, 91, 10), + (303600, 90, 8), + (303600, 92, 4), + (303600, 95, 8), + (303600, 97, 8), + (303600, 93, 10), + (303600, 94, 4), + (303600, 96, 8), + (303600, 181, 3), + (303600, 221, 5), + (303600, 149, 3), + (303600, 1, 5), + (303601, 91, 350), + (303601, 90, 250), + (303601, 92, 100), + (303601, 95, 250), + (303601, 97, 300), + (303601, 93, 375), + (303601, 94, 100), + (303601, 96, 300), + (303601, 181, 15), + (303601, 221, 200), + (303601, 149, 15), + (303601, 1, 200), + (303602, 149, 3), + (303602, 181, 3), + (303602, 221, 5), + (303602, 93, 10), + (303602, 95, 8), + (303602, 92, 4), + (303602, 97, 8), + (303602, 91, 10), + (303602, 96, 8), + (303602, 90, 8), + (303602, 94, 4), + (303602, 1, 5), + (303603, 149, 15), + (303603, 181, 15), + (303603, 221, 200), + (303603, 93, 750), + (303603, 95, 600), + (303603, 92, 300), + (303603, 97, 600), + (303603, 91, 700), + (303603, 96, 650), + (303603, 90, 650), + (303603, 94, 290), + (303603, 1, 200), + (303638, 379, 1), + (303638, 319, 5), + (303639, 17, 5), + (303639, 20, 5), + (303684, 91, 10), + (303684, 90, 10), + (303684, 92, 10), + (303684, 97, 10), + (303684, 95, 10), + (303684, 94, 10), + (303684, 93, 10), + (303684, 96, 10), + (303684, 123, 1), + (303684, 124, 1), + (303684, 149, 5), + (303684, 181, 1), + (303684, 319, 5), + (303684, 1, 5), + (303684, 221, 5), + (303685, 91, 600), + (303685, 90, 600), + (303685, 92, 600), + (303685, 97, 600), + (303685, 95, 600), + (303685, 94, 600), + (303685, 93, 600), + (303685, 96, 600), + (303685, 123, 5), + (303685, 124, 5), + (303685, 149, 30), + (303685, 181, 10), + (303685, 319, 5), + (303685, 1, 50), + (303685, 221, 250), + (303686, 91, 10), + (303686, 90, 10), + (303686, 92, 10), + (303686, 97, 10), + (303686, 95, 10), + (303686, 94, 10), + (303686, 93, 10), + (303686, 96, 10), + (303686, 123, 14), + (303686, 124, 14), + (303686, 149, 2), + (303686, 319, 5), + (303686, 181, 1), + (303686, 1, 5), + (303686, 221, 5), + (303687, 91, 600), + (303687, 90, 600), + (303687, 92, 600), + (303687, 97, 600), + (303687, 95, 600), + (303687, 94, 600), + (303687, 93, 600), + (303687, 96, 600), + (303687, 123, 14), + (303687, 124, 14), + (303687, 149, 30), + (303687, 319, 5), + (303687, 181, 10), + (303687, 1, 100), + (303687, 221, 300), + (303688, 91, 10), + (303688, 90, 10), + (303688, 92, 10), + (303688, 97, 10), + (303688, 95, 10), + (303688, 94, 10), + (303688, 93, 10), + (303688, 96, 10), + (303688, 123, 20), + (303688, 124, 20), + (303688, 149, 2), + (303688, 319, 5), + (303688, 181, 1), + (303688, 1, 5), + (303688, 221, 5), + (303689, 91, 600), + (303689, 90, 600), + (303689, 92, 600), + (303689, 97, 600), + (303689, 95, 600), + (303689, 94, 600), + (303689, 93, 600), + (303689, 96, 600), + (303689, 123, 20), + (303689, 124, 20), + (303689, 149, 50), + (303689, 319, 5), + (303689, 181, 10), + (303689, 1, 200), + (303689, 221, 400), + (303690, 91, 10), + (303690, 90, 10), + (303690, 92, 10), + (303690, 97, 10), + (303690, 95, 10), + (303690, 94, 10), + (303690, 93, 10), + (303690, 96, 10), + (303690, 123, 14), + (303690, 124, 14), + (303690, 149, 2), + (303690, 319, 5), + (303690, 181, 1), + (303690, 1, 5), + (303690, 221, 5), + (303691, 91, 200), + (303691, 90, 200), + (303691, 92, 200), + (303691, 97, 200), + (303691, 95, 200), + (303691, 94, 200), + (303691, 93, 200), + (303691, 96, 200), + (303691, 123, 14), + (303691, 124, 14), + (303691, 149, 30), + (303691, 319, 5), + (303691, 181, 10), + (303691, 1, 100), + (303691, 221, 200), + (303692, 91, 10), + (303692, 90, 10), + (303692, 92, 10), + (303692, 97, 10), + (303692, 95, 10), + (303692, 94, 10), + (303692, 93, 10), + (303692, 96, 10), + (303692, 123, 10), + (303692, 124, 10), + (303692, 149, 2), + (303692, 319, 5), + (303692, 181, 1), + (303692, 1, 5), + (303692, 221, 5), + (303693, 91, 150), + (303693, 90, 150), + (303693, 92, 150), + (303693, 97, 150), + (303693, 95, 150), + (303693, 94, 150), + (303693, 93, 150), + (303693, 96, 150), + (303693, 123, 10), + (303693, 124, 10), + (303693, 149, 30), + (303693, 319, 5), + (303693, 181, 10), + (303693, 1, 50), + (303693, 221, 200), + (303694, 91, 10), + (303694, 90, 10), + (303694, 92, 10), + (303694, 97, 10), + (303694, 95, 10), + (303694, 94, 10), + (303694, 93, 10), + (303694, 96, 10), + (303694, 123, 6), + (303694, 124, 6), + (303694, 149, 2), + (303694, 319, 5), + (303694, 181, 1), + (303694, 1, 5), + (303694, 221, 5), + (303695, 91, 150), + (303695, 90, 150), + (303695, 92, 150), + (303695, 97, 150), + (303695, 95, 150), + (303695, 94, 150), + (303695, 93, 150), + (303695, 96, 150), + (303695, 123, 6), + (303695, 124, 6), + (303695, 149, 30), + (303695, 319, 5), + (303695, 181, 10), + (303695, 1, 75), + (303695, 221, 200), + (303699, 128, 5), + (303699, 130, 5), + (303699, 131, 5), + (303699, 127, 5), + (303699, 181, 10), + (303699, 132, 20), + (303699, 149, 20), + (303699, 129, 5), + (303699, 122, 5), + (303700, 128, 5), + (303700, 130, 5), + (303700, 131, 5), + (303700, 127, 5), + (303700, 181, 10), + (303700, 132, 20), + (303700, 149, 20), + (303700, 129, 5), + (303700, 122, 5), + (303701, 128, 5), + (303701, 130, 5), + (303701, 131, 5), + (303701, 127, 5), + (303701, 181, 10), + (303701, 132, 20), + (303701, 149, 20), + (303701, 129, 5), + (303701, 122, 5), + (303702, 128, 5), + (303702, 130, 5), + (303702, 131, 5), + (303702, 127, 5), + (303702, 181, 10), + (303702, 132, 20), + (303702, 149, 20), + (303702, 129, 5), + (303702, 122, 5), + (303703, 128, 5), + (303703, 130, 5), + (303703, 131, 5), + (303703, 127, 5), + (303703, 181, 10), + (303703, 132, 20), + (303703, 149, 20), + (303703, 129, 5), + (303703, 122, 5), + (303704, 128, 5), + (303704, 130, 5), + (303704, 131, 5), + (303704, 127, 5), + (303704, 181, 10), + (303704, 132, 20), + (303704, 149, 20), + (303704, 129, 5), + (303704, 122, 5), + (303705, 128, 5), + (303705, 130, 5), + (303705, 131, 5), + (303705, 127, 5), + (303705, 181, 10), + (303705, 132, 20), + (303705, 149, 20), + (303705, 129, 5), + (303705, 122, 5), + (303843, 226, 3), + (303843, 227, 3), + (303843, 228, 3), + (303843, 229, 3), + (303843, 230, 3), + (303843, 231, 3), + (303843, 233, 3), + (303843, 234, 3), + (303843, 226, 3), + (303843, 227, 3), + (303843, 228, 3), + (303843, 229, 3), + (303843, 230, 3), + (303843, 231, 3), + (303843, 233, 3), + (303843, 234, 3), + (303843, 226, 2), + (303843, 227, 2), + (303843, 228, 2), + (303843, 229, 2), + (303843, 230, 2), + (303843, 231, 2), + (303843, 233, 2), + (303843, 234, 2), + (303843, 156, 65), + (303843, 90, 71), + (303843, 91, 71), + (303843, 92, 71), + (303843, 93, 71), + (303843, 94, 71), + (303843, 95, 71), + (303843, 96, 71), + (303843, 97, 71), + (303843, 90, 18), + (303843, 91, 18), + (303843, 92, 18), + (303843, 93, 18), + (303843, 94, 18), + (303843, 95, 18), + (303843, 96, 18), + (303843, 97, 18), + (303843, 226, 9), + (303843, 227, 9), + (303843, 228, 9), + (303843, 229, 9), + (303843, 230, 9), + (303843, 231, 9), + (303843, 233, 9), + (303843, 234, 9), + (303843, 226, 8), + (303843, 227, 8), + (303843, 228, 8), + (303843, 229, 8), + (303843, 230, 8), + (303843, 231, 8), + (303843, 233, 8), + (303843, 234, 8), + (303843, 226, 4), + (303843, 227, 4), + (303843, 228, 4), + (303843, 229, 4), + (303843, 230, 4), + (303843, 231, 4), + (303843, 233, 4), + (303843, 234, 4), + (303844, 90, 18), + (303844, 91, 18), + (303844, 92, 18), + (303844, 93, 18), + (303844, 94, 18), + (303844, 95, 18), + (303844, 96, 18), + (303844, 97, 18), + (303844, 226, 3), + (303844, 227, 3), + (303844, 228, 3), + (303844, 229, 3), + (303844, 230, 3), + (303844, 231, 3), + (303844, 233, 3), + (303844, 234, 3), + (303844, 226, 2), + (303844, 227, 2), + (303844, 228, 2), + (303844, 229, 2), + (303844, 230, 2), + (303844, 231, 2), + (303844, 233, 2), + (303844, 234, 2), + (303844, 156, 65), + (303844, 103, 60), + (303844, 147, 3), + (303844, 90, 144), + (303844, 91, 144), + (303844, 92, 144), + (303844, 93, 144), + (303844, 94, 144), + (303844, 95, 144), + (303844, 96, 144), + (303844, 97, 144), + (303844, 226, 11), + (303844, 227, 11), + (303844, 228, 11), + (303844, 229, 11), + (303844, 230, 11), + (303844, 231, 11), + (303844, 233, 11), + (303844, 234, 11), + (303844, 226, 17), + (303844, 227, 17), + (303844, 228, 17), + (303844, 229, 17), + (303844, 230, 17), + (303844, 231, 17), + (303844, 233, 17), + (303844, 234, 17), + (303844, 226, 23), + (303844, 227, 23), + (303844, 228, 23), + (303844, 229, 23), + (303844, 230, 23), + (303844, 231, 23), + (303844, 233, 23), + (303844, 234, 23), + (303844, 226, 15), + (303844, 227, 15), + (303844, 228, 15), + (303844, 229, 15), + (303844, 230, 15), + (303844, 231, 15), + (303844, 233, 15), + (303844, 234, 15), + (303844, 226, 21), + (303844, 227, 21), + (303844, 228, 21), + (303844, 229, 21), + (303844, 230, 21), + (303844, 231, 21), + (303844, 233, 21), + (303844, 234, 21), + (303844, 123, 46), + (303844, 101, 45), + (303844, 134, 45), + (303844, 112, 40), + (303844, 150, 3), + (303844, 156, 125), + (303844, 146, 70), + (303844, 156, 100), + (303844, 277, 100), + (303844, 379, 50), + (303845, 90, 18), + (303845, 91, 18), + (303845, 92, 18), + (303845, 93, 18), + (303845, 94, 18), + (303845, 95, 18), + (303845, 96, 18), + (303845, 97, 18), + (303845, 226, 3), + (303845, 227, 3), + (303845, 228, 3), + (303845, 229, 3), + (303845, 230, 3), + (303845, 231, 3), + (303845, 233, 3), + (303845, 234, 3), + (303845, 226, 2), + (303845, 227, 2), + (303845, 228, 2), + (303845, 229, 2), + (303845, 230, 2), + (303845, 231, 2), + (303845, 233, 2), + (303845, 234, 2), + (303845, 156, 65), + (303845, 103, 85), + (303845, 147, 9), + (303845, 278, 50), + (303845, 279, 50), + (303845, 280, 50), + (303845, 281, 50), + (303845, 282, 50), + (303845, 311, 50), + (303845, 316, 50), + (303845, 317, 50), + (303845, 276, 25), + (303845, 118, 100), + (303845, 119, 100), + (303845, 120, 100), + (303845, 277, 200), + (303845, 90, 220), + (303845, 91, 220), + (303845, 92, 220), + (303845, 93, 220), + (303845, 94, 220), + (303845, 95, 220), + (303845, 96, 220), + (303845, 97, 220), + (303845, 226, 20), + (303845, 227, 20), + (303845, 228, 20), + (303845, 229, 20), + (303845, 230, 20), + (303845, 231, 20), + (303845, 233, 20), + (303845, 234, 20), + (303845, 226, 35), + (303845, 227, 35), + (303845, 228, 35), + (303845, 229, 35), + (303845, 230, 35), + (303845, 231, 35), + (303845, 233, 35), + (303845, 234, 35), + (303845, 226, 42), + (303845, 227, 42), + (303845, 228, 42), + (303845, 229, 42), + (303845, 230, 42), + (303845, 231, 42), + (303845, 233, 42), + (303845, 234, 42), + (303845, 226, 32), + (303845, 227, 32), + (303845, 228, 32), + (303845, 229, 32), + (303845, 230, 32), + (303845, 231, 32), + (303845, 233, 32), + (303845, 234, 32), + (303845, 226, 38), + (303845, 227, 38), + (303845, 228, 38), + (303845, 229, 38), + (303845, 230, 38), + (303845, 231, 38), + (303845, 233, 38), + (303845, 234, 38), + (303845, 101, 80), + (303845, 134, 80), + (303845, 112, 65), + (303845, 150, 9), + (303845, 146, 70), + (303845, 156, 100), + (303845, 136, 240), + (303846, 90, 18), + (303846, 91, 18), + (303846, 92, 18), + (303846, 93, 18), + (303846, 94, 18), + (303846, 95, 18), + (303846, 96, 18), + (303846, 97, 18), + (303846, 226, 3), + (303846, 227, 3), + (303846, 228, 3), + (303846, 229, 3), + (303846, 230, 3), + (303846, 231, 3), + (303846, 233, 3), + (303846, 234, 3), + (303846, 226, 2), + (303846, 227, 2), + (303846, 228, 2), + (303846, 229, 2), + (303846, 230, 2), + (303846, 231, 2), + (303846, 233, 2), + (303846, 234, 2), + (303846, 156, 65), + (303846, 103, 107), + (303846, 147, 17), + (303846, 278, 2), + (303846, 279, 2), + (303846, 280, 2), + (303846, 281, 2), + (303846, 282, 2), + (303846, 311, 2), + (303846, 316, 2), + (303846, 317, 2), + (303846, 278, 75), + (303846, 279, 75), + (303846, 280, 75), + (303846, 281, 75), + (303846, 282, 75), + (303846, 311, 75), + (303846, 316, 75), + (303846, 317, 75), + (303846, 276, 50), + (303846, 118, 150), + (303846, 119, 150), + (303846, 120, 150), + (303846, 379, 100), + (303846, 277, 300), + (303846, 151, 165), + (303846, 90, 220), + (303846, 91, 220), + (303846, 92, 220), + (303846, 93, 220), + (303846, 94, 220), + (303846, 95, 220), + (303846, 96, 220), + (303846, 97, 220), + (303846, 226, 33), + (303846, 227, 33), + (303846, 228, 33), + (303846, 229, 33), + (303846, 230, 33), + (303846, 231, 33), + (303846, 233, 33), + (303846, 234, 33), + (303846, 1, 30), + (303846, 278, 5), + (303846, 279, 5), + (303846, 280, 5), + (303846, 281, 5), + (303846, 282, 5), + (303846, 311, 5), + (303846, 316, 5), + (303846, 317, 5), + (303846, 226, 65), + (303846, 227, 65), + (303846, 228, 65), + (303846, 229, 65), + (303846, 230, 65), + (303846, 231, 65), + (303846, 233, 65), + (303846, 234, 65), + (303846, 226, 74), + (303846, 227, 74), + (303846, 228, 74), + (303846, 229, 74), + (303846, 230, 74), + (303846, 231, 74), + (303846, 233, 74), + (303846, 234, 74), + (303846, 226, 59), + (303846, 227, 59), + (303846, 228, 59), + (303846, 229, 59), + (303846, 230, 59), + (303846, 231, 59), + (303846, 233, 59), + (303846, 234, 59), + (303846, 226, 67), + (303846, 227, 67), + (303846, 228, 67), + (303846, 229, 67), + (303846, 230, 67), + (303846, 231, 67), + (303846, 233, 67), + (303846, 234, 67), + (303846, 124, 60), + (303846, 123, 60), + (303846, 101, 105), + (303846, 134, 105), + (303846, 153, 10), + (303846, 154, 10), + (303846, 155, 10), + (303846, 136, 240), + (303846, 146, 90), + (303846, 201, 10), + (303846, 360, -80), + (303846, 156, 100), + (303847, 90, 18), + (303847, 91, 18), + (303847, 92, 18), + (303847, 93, 18), + (303847, 94, 18), + (303847, 95, 18), + (303847, 96, 18), + (303847, 97, 18), + (303847, 226, 3), + (303847, 227, 3), + (303847, 228, 3), + (303847, 229, 3), + (303847, 230, 3), + (303847, 231, 3), + (303847, 233, 3), + (303847, 234, 3), + (303847, 226, 2), + (303847, 227, 2), + (303847, 228, 2), + (303847, 229, 2), + (303847, 230, 2), + (303847, 231, 2), + (303847, 233, 2), + (303847, 234, 2), + (303847, 156, 65), + (303847, 103, 120), + (303847, 147, 25), + (303847, 278, 6), + (303847, 279, 6), + (303847, 280, 6), + (303847, 281, 6), + (303847, 282, 6), + (303847, 311, 6), + (303847, 316, 6), + (303847, 317, 6), + (303847, 145, 20), + (303847, 379, 150), + (303847, 277, 400), + (303847, 278, 125), + (303847, 279, 125), + (303847, 280, 125), + (303847, 281, 125), + (303847, 282, 125), + (303847, 311, 125), + (303847, 316, 125), + (303847, 317, 125), + (303847, 276, 100), + (303847, 118, 250), + (303847, 119, 250), + (303847, 120, 250), + (303847, 234, 1250), + (303847, 233, 1250), + (303847, 231, 1250), + (303847, 229, 1250), + (303847, 230, 1250), + (303847, 226, 1250), + (303847, 228, 1250), + (303847, 227, 1250), + (303847, 151, 165), + (303847, 226, 88), + (303847, 227, 88), + (303847, 228, 88), + (303847, 229, 88), + (303847, 230, 88), + (303847, 231, 88), + (303847, 233, 88), + (303847, 234, 88), + (303847, 226, 100), + (303847, 227, 100), + (303847, 228, 100), + (303847, 229, 100), + (303847, 230, 100), + (303847, 231, 100), + (303847, 233, 100), + (303847, 234, 100), + (303847, 226, 80), + (303847, 227, 80), + (303847, 228, 80), + (303847, 229, 80), + (303847, 230, 80), + (303847, 231, 80), + (303847, 233, 80), + (303847, 234, 80), + (303847, 226, 91), + (303847, 227, 91), + (303847, 228, 91), + (303847, 229, 91), + (303847, 230, 91), + (303847, 231, 91), + (303847, 233, 91), + (303847, 234, 91), + (303847, 124, 60), + (303847, 123, 60), + (303847, 101, 120), + (303847, 134, 120), + (303847, 153, 18), + (303847, 154, 18), + (303847, 155, 18), + (303847, 17, 4), + (303847, 137, 350), + (303847, 168, 142), + (303847, 136, 240), + (303847, 112, 100), + (303847, 150, 25), + (303847, 278, 6), + (303847, 279, 6), + (303847, 280, 6), + (303847, 281, 6), + (303847, 282, 6), + (303847, 311, 6), + (303847, 316, 6), + (303847, 317, 6), + (303847, 136, 20), + (303847, 146, 110), + (303847, 146, 135), + (303847, 201, 10), + (303847, 360, -80), + (303847, 156, 100), + (303848, 90, 18), + (303848, 91, 18), + (303848, 92, 18), + (303848, 93, 18), + (303848, 94, 18), + (303848, 95, 18), + (303848, 96, 18), + (303848, 97, 18), + (303848, 226, 3), + (303848, 227, 3), + (303848, 228, 3), + (303848, 229, 3), + (303848, 230, 3), + (303848, 231, 3), + (303848, 233, 3), + (303848, 234, 3), + (303848, 226, 2), + (303848, 227, 2), + (303848, 228, 2), + (303848, 229, 2), + (303848, 230, 2), + (303848, 231, 2), + (303848, 233, 2), + (303848, 234, 2), + (303848, 156, 65), + (303848, 103, 120), + (303848, 147, 25), + (303848, 278, 6), + (303848, 279, 6), + (303848, 280, 6), + (303848, 281, 6), + (303848, 282, 6), + (303848, 311, 6), + (303848, 316, 6), + (303848, 317, 6), + (303848, 145, 20), + (303848, 278, 150), + (303848, 279, 150), + (303848, 280, 150), + (303848, 281, 150), + (303848, 282, 150), + (303848, 311, 150), + (303848, 316, 150), + (303848, 317, 150), + (303848, 276, 125), + (303848, 118, 300), + (303848, 119, 300), + (303848, 120, 300), + (303848, 234, 1250), + (303848, 233, 1250), + (303848, 231, 1250), + (303848, 229, 1250), + (303848, 230, 1250), + (303848, 226, 1250), + (303848, 228, 1250), + (303848, 227, 1250), + (303848, 277, 400), + (303848, 379, 150), + (303848, 151, 165), + (303848, 90, 773), + (303848, 91, 773), + (303848, 92, 773), + (303848, 93, 773), + (303848, 94, 773), + (303848, 95, 773), + (303848, 96, 773), + (303848, 97, 773), + (303848, 226, 45), + (303848, 227, 45), + (303848, 228, 45), + (303848, 229, 45), + (303848, 230, 45), + (303848, 231, 45), + (303848, 233, 45), + (303848, 234, 45), + (303848, 1, 40), + (303848, 278, 10), + (303848, 279, 10), + (303848, 280, 10), + (303848, 281, 10), + (303848, 282, 10), + (303848, 311, 10), + (303848, 316, 10), + (303848, 317, 10), + (303848, 205, 2), + (303848, 206, 2), + (303848, 207, 2), + (303848, 208, 2), + (303848, 216, 2), + (303848, 217, 2), + (303848, 219, 2), + (303848, 225, 2), + (303848, 226, 100), + (303848, 227, 100), + (303848, 228, 100), + (303848, 229, 100), + (303848, 230, 100), + (303848, 231, 100), + (303848, 233, 100), + (303848, 234, 100), + (303848, 226, 91), + (303848, 227, 91), + (303848, 228, 91), + (303848, 229, 91), + (303848, 230, 91), + (303848, 231, 91), + (303848, 233, 91), + (303848, 234, 91), + (303848, 124, 60), + (303848, 123, 60), + (303848, 101, 120), + (303848, 134, 120), + (303848, 153, 18), + (303848, 154, 18), + (303848, 155, 18), + (303848, 17, 4), + (303848, 137, 350), + (303848, 168, 142), + (303848, 136, 240), + (303848, 112, 100), + (303848, 150, 25), + (303848, 278, 6), + (303848, 279, 6), + (303848, 280, 6), + (303848, 281, 6), + (303848, 282, 6), + (303848, 311, 6), + (303848, 316, 6), + (303848, 317, 6), + (303848, 136, 20), + (303848, 156, 125), + (303848, 146, 150), + (303848, 201, 10), + (303848, 360, -80), + (303848, 156, 100), + (303849, 164, 20), + (303849, 279, 12), + (303849, 278, 12), + (303849, 280, 12), + (303849, 281, 12), + (303849, 282, 12), + (303849, 311, 12), + (303849, 315, 12), + (303849, 316, 12), + (303849, 317, 12), + (303849, 276, 15), + (303849, 278, 20), + (303849, 279, 20), + (303849, 280, 20), + (303849, 281, 20), + (303849, 282, 20), + (303849, 311, 20), + (303849, 316, 20), + (303849, 317, 20), + (303849, 379, 100), + (303849, 156, -210), + (303850, 164, 20), + (303850, 156, 361), + (303850, 168, 361), + (303850, 277, 361), + (303850, 391, 10), + (303850, 156, 150), + (303850, 168, 150), + (303850, 277, 150), + (303850, 391, 5), + (303850, 279, 12), + (303850, 278, 12), + (303850, 280, 12), + (303850, 281, 12), + (303850, 282, 12), + (303850, 311, 12), + (303850, 315, 12), + (303850, 316, 12), + (303850, 317, 12), + (303850, 279, 25), + (303850, 278, 25), + (303850, 280, 25), + (303850, 281, 25), + (303850, 282, 25), + (303850, 311, 25), + (303850, 315, 25), + (303850, 316, 25), + (303850, 317, 25), + (303850, 17, 25), + (303850, 164, 63), + (303850, 164, 200), + (303850, 360, -10), + (303850, 276, 15), + (303850, 278, 20), + (303850, 279, 20), + (303850, 280, 20), + (303850, 281, 20), + (303850, 282, 20), + (303850, 311, 20), + (303850, 316, 20), + (303850, 317, 20), + (303850, 379, 100), + (303850, 379, 6), + (303850, 278, 16), + (303850, 279, 16), + (303850, 280, 16), + (303850, 281, 16), + (303850, 282, 16), + (303850, 311, 16), + (303850, 316, 16), + (303850, 317, 16), + (303850, 113, 1), + (303850, 113, 50), + (303850, 20, 15), + (303850, 156, -430), + (303851, 164, 20), + (303851, 156, 361), + (303851, 168, 361), + (303851, 277, 361), + (303851, 391, 10), + (303851, 156, 150), + (303851, 168, 150), + (303851, 277, 150), + (303851, 391, 5), + (303851, 279, 35), + (303851, 278, 35), + (303851, 280, 35), + (303851, 281, 35), + (303851, 282, 35), + (303851, 311, 35), + (303851, 315, 35), + (303851, 316, 35), + (303851, 317, 35), + (303851, 279, 42), + (303851, 278, 42), + (303851, 280, 42), + (303851, 281, 42), + (303851, 282, 42), + (303851, 311, 42), + (303851, 315, 42), + (303851, 316, 42), + (303851, 317, 42), + (303851, 279, 25), + (303851, 278, 25), + (303851, 280, 25), + (303851, 281, 25), + (303851, 282, 25), + (303851, 311, 25), + (303851, 315, 25), + (303851, 316, 25), + (303851, 317, 25), + (303851, 17, 25), + (303851, 164, 63), + (303851, 164, 400), + (303851, 360, -20), + (303851, 276, 30), + (303851, 278, 80), + (303851, 279, 80), + (303851, 280, 80), + (303851, 281, 80), + (303851, 282, 80), + (303851, 311, 80), + (303851, 316, 80), + (303851, 317, 80), + (303851, 379, 150), + (303851, 379, 8), + (303851, 278, 23), + (303851, 279, 23), + (303851, 280, 23), + (303851, 281, 23), + (303851, 282, 23), + (303851, 311, 23), + (303851, 316, 23), + (303851, 317, 23), + (303851, 113, 2), + (303851, 113, 50), + (303851, 20, 15), + (303851, 156, -840), + (303851, 154, -78), + (303852, 164, 20), + (303852, 156, 839), + (303852, 168, 839), + (303852, 277, 839), + (303852, 391, 20), + (303852, 156, 400), + (303852, 168, 400), + (303852, 277, 400), + (303852, 391, 10), + (303852, 279, 35), + (303852, 278, 35), + (303852, 280, 35), + (303852, 281, 35), + (303852, 282, 35), + (303852, 311, 35), + (303852, 315, 35), + (303852, 316, 35), + (303852, 317, 35), + (303852, 279, 42), + (303852, 278, 42), + (303852, 280, 42), + (303852, 281, 42), + (303852, 282, 42), + (303852, 311, 42), + (303852, 315, 42), + (303852, 316, 42), + (303852, 317, 42), + (303852, 279, 50), + (303852, 278, 50), + (303852, 280, 50), + (303852, 281, 50), + (303852, 282, 50), + (303852, 311, 50), + (303852, 315, 50), + (303852, 316, 50), + (303852, 317, 50), + (303852, 17, 25), + (303852, 151, 165), + (303852, 164, 63), + (303852, 164, 600), + (303852, 360, -30), + (303852, 276, 50), + (303852, 278, 300), + (303852, 279, 300), + (303852, 280, 300), + (303852, 281, 300), + (303852, 282, 300), + (303852, 311, 300), + (303852, 316, 300), + (303852, 317, 300), + (303852, 379, 200), + (303852, 379, 11), + (303852, 278, 27), + (303852, 279, 27), + (303852, 280, 27), + (303852, 281, 27), + (303852, 282, 27), + (303852, 311, 27), + (303852, 316, 27), + (303852, 317, 27), + (303852, 113, 3), + (303852, 151, 2), + (303852, 113, 120), + (303852, 20, 15), + (303852, 156, -840), + (303852, 154, -78), + (303853, 164, 20), + (303853, 156, 839), + (303853, 168, 839), + (303853, 277, 839), + (303853, 391, 20), + (303853, 156, 400), + (303853, 168, 400), + (303853, 277, 400), + (303853, 391, 10), + (303853, 279, 60), + (303853, 278, 60), + (303853, 280, 60), + (303853, 281, 60), + (303853, 282, 60), + (303853, 311, 60), + (303853, 315, 60), + (303853, 316, 60), + (303853, 317, 60), + (303853, 279, 42), + (303853, 278, 42), + (303853, 280, 42), + (303853, 281, 42), + (303853, 282, 42), + (303853, 311, 42), + (303853, 315, 42), + (303853, 316, 42), + (303853, 317, 42), + (303853, 279, 50), + (303853, 278, 50), + (303853, 280, 50), + (303853, 281, 50), + (303853, 282, 50), + (303853, 311, 50), + (303853, 315, 50), + (303853, 316, 50), + (303853, 317, 50), + (303853, 17, 25), + (303853, 151, 165), + (303853, 151, 260), + (303853, 113, 180), + (303853, 164, 63), + (303853, 164, 600), + (303853, 360, -30), + (303853, 276, 50), + (303853, 278, 300), + (303853, 279, 300), + (303853, 280, 300), + (303853, 281, 300), + (303853, 282, 300), + (303853, 311, 300), + (303853, 316, 300), + (303853, 317, 300), + (303853, 379, 200), + (303853, 379, 17), + (303853, 278, 38), + (303853, 279, 38), + (303853, 280, 38), + (303853, 281, 38), + (303853, 282, 38), + (303853, 311, 38), + (303853, 316, 38), + (303853, 317, 38), + (303853, 113, 7), + (303853, 151, 10), + (303853, 164, 8), + (303853, 113, 120), + (303853, 20, 15), + (303853, 156, -840), + (303853, 154, -78), + (303854, 164, 20), + (303854, 156, 1229), + (303854, 168, 1229), + (303854, 277, 1229), + (303854, 391, 40), + (303854, 156, 650), + (303854, 168, 650), + (303854, 277, 650), + (303854, 391, 20), + (303854, 279, 105), + (303854, 278, 105), + (303854, 280, 105), + (303854, 281, 105), + (303854, 282, 105), + (303854, 311, 105), + (303854, 315, 105), + (303854, 316, 105), + (303854, 317, 105), + (303854, 279, 100), + (303854, 278, 100), + (303854, 280, 100), + (303854, 281, 100), + (303854, 282, 100), + (303854, 311, 100), + (303854, 315, 100), + (303854, 316, 100), + (303854, 317, 100), + (303854, 279, 95), + (303854, 278, 95), + (303854, 280, 95), + (303854, 281, 95), + (303854, 282, 95), + (303854, 311, 95), + (303854, 315, 95), + (303854, 316, 95), + (303854, 317, 95), + (303854, 17, 25), + (303854, 151, 165), + (303854, 151, 260), + (303854, 113, 180), + (303854, 164, 63), + (303854, 164, 600), + (303854, 360, -30), + (303854, 276, 50), + (303854, 278, 300), + (303854, 279, 300), + (303854, 280, 300), + (303854, 281, 300), + (303854, 282, 300), + (303854, 311, 300), + (303854, 316, 300), + (303854, 317, 300), + (303854, 379, 200), + (303854, 379, 17), + (303854, 278, 38), + (303854, 279, 38), + (303854, 280, 38), + (303854, 281, 38), + (303854, 282, 38), + (303854, 311, 38), + (303854, 316, 38), + (303854, 317, 38), + (303854, 113, 7), + (303854, 151, 10), + (303854, 164, 8), + (303854, 113, 120), + (303854, 20, 15), + (303854, 156, -840), + (303854, 154, -78), + (303855, 112, 20), + (303855, 118, -416), + (303855, 119, -416), + (303855, 120, -416), + (303855, 149, -416), + (303855, 118, -550), + (303855, 119, -550), + (303855, 120, -550), + (303855, 149, -550), + (303855, 156, -120), + (303855, 19, 23), + (303855, 21, 23), + (303856, 201, 31), + (303856, 19, 23), + (303856, 21, 23), + (303856, 276, 88), + (303856, 201, 12), + (303856, 276, 30), + (303856, 201, 10), + (303856, 1, 200), + (303856, 277, 48), + (303856, 279, 12), + (303856, 278, 12), + (303856, 280, 12), + (303856, 281, 12), + (303856, 282, 12), + (303856, 279, 12), + (303856, 118, -701), + (303856, 119, -701), + (303856, 120, -701), + (303856, 149, -701), + (303856, 118, -550), + (303856, 119, -550), + (303856, 120, -550), + (303856, 149, -550), + (303856, 156, -600), + (303856, 164, 86), + (303856, 112, 40), + (303856, 162, 50), + (303856, 118, -400), + (303856, 120, -400), + (303856, 119, -400), + (303856, 149, -400), + (303857, 112, 40), + (303857, 162, 50), + (303857, 118, -927), + (303857, 119, -927), + (303857, 120, -927), + (303857, 149, -927), + (303857, 118, -800), + (303857, 119, -800), + (303857, 120, -800), + (303857, 149, -800), + (303857, 156, -720), + (303857, 118, -400), + (303857, 120, -400), + (303857, 119, -400), + (303857, 149, -400), + (303857, 19, 23), + (303857, 21, 23), + (303857, 276, 121), + (303857, 201, 14), + (303857, 276, 121), + (303857, 201, 14), + (303857, 1, 1200), + (303857, 277, 135), + (303857, 279, 30), + (303857, 278, 30), + (303857, 280, 30), + (303857, 281, 30), + (303857, 282, 30), + (303857, 279, 30), + (303857, 201, 31), + (303857, 164, 86), + (303858, 164, 86), + (303858, 112, 40), + (303858, 162, 50), + (303858, 118, -1312), + (303858, 119, -1312), + (303858, 120, -1312), + (303858, 149, -1312), + (303858, 118, -1000), + (303858, 119, -1000), + (303858, 120, -1000), + (303858, 149, -1000), + (303858, 156, -1000), + (303858, 118, -400), + (303858, 120, -400), + (303858, 119, -400), + (303858, 149, -400), + (303858, 19, 23), + (303858, 21, 23), + (303858, 276, 156), + (303858, 201, 16), + (303858, 276, 156), + (303858, 201, 16), + (303858, 1, 1350), + (303858, 277, 144), + (303858, 279, 40), + (303858, 278, 40), + (303858, 280, 40), + (303858, 281, 40), + (303858, 282, 40), + (303858, 279, 40), + (303858, 201, 57), + (303859, 164, 86), + (303859, 112, 40), + (303859, 162, 50), + (303859, 118, -2100), + (303859, 119, -2100), + (303859, 120, -2100), + (303859, 149, -2100), + (303859, 118, -1200), + (303859, 119, -1200), + (303859, 120, -1200), + (303859, 149, -1200), + (303859, 156, -1400), + (303859, 19, 23), + (303859, 21, 23), + (303859, 276, 298), + (303859, 201, 27), + (303859, 276, 260), + (303859, 201, 25), + (303859, 1, 3800), + (303859, 277, 250), + (303859, 279, 90), + (303859, 278, 90), + (303859, 280, 90), + (303859, 281, 90), + (303859, 282, 90), + (303859, 279, 90), + (303859, 201, 80), + (303860, 164, 86), + (303860, 112, 40), + (303860, 162, 50), + (303860, 118, -2100), + (303860, 119, -2100), + (303860, 120, -2100), + (303860, 149, -2100), + (303860, 118, -2200), + (303860, 119, -2200), + (303860, 120, -2200), + (303860, 149, -2200), + (303860, 156, -1400), + (303860, 118, -841), + (303860, 120, -841), + (303860, 119, -841), + (303860, 149, -841), + (303860, 118, -1126), + (303860, 120, -1126), + (303860, 119, -1126), + (303860, 149, -1126), + (303860, 276, 354), + (303860, 201, 30), + (303860, 276, 354), + (303860, 201, 30), + (303860, 1, 6200), + (303860, 277, 378), + (303860, 279, 110), + (303860, 278, 110), + (303860, 280, 110), + (303860, 281, 110), + (303860, 282, 110), + (303860, 279, 110), + (303860, 201, 80), + (303861, 112, 40), + (303861, 1, 118), + (303861, 123, 15), + (303861, 124, 10), + (303862, 1, 379), + (303862, 124, 35), + (303862, 123, 20), + (303862, 112, 40), + (303863, 1, 581), + (303863, 1, 644), + (303863, 124, 35), + (303863, 123, 20), + (303863, 123, 80), + (303863, 124, 80), + (303863, 112, 40), + (303863, 16, 20), + (303863, 18, 20), + (303864, 1, 644), + (303864, 1, 928), + (303864, 123, 80), + (303864, 124, 80), + (303864, 16, 20), + (303864, 18, 20), + (303865, 1, 1017), + (303865, 1, 1123), + (303865, 123, 80), + (303865, 124, 80), + (303865, 16, 20), + (303865, 18, 20), + (303866, 112, 40), + (303866, 16, 20), + (303866, 18, 20), + (303866, 1, 1344), + (303866, 123, 80), + (303866, 124, 80), + (303867, 102, 14), + (303867, 1, 18), + (303867, 226, 1), + (303867, 227, 1), + (303867, 228, 1), + (303867, 229, 1), + (303867, 230, 1), + (303867, 231, 1), + (303867, 234, 1), + (303867, 233, 1), + (303867, 276, 45), + (303867, 360, 18), + (303867, 1, 73), + (303867, 226, 5), + (303867, 227, 5), + (303867, 228, 5), + (303867, 229, 5), + (303867, 230, 5), + (303867, 231, 5), + (303867, 233, 5), + (303867, 234, 5), + (303867, 92, 60), + (303867, 104, 29), + (303867, 106, 17), + (303867, 147, 30), + (303867, 689, 20), + (303867, 1, 1500), + (303867, 16, 15), + (303867, 18, 15), + (303867, 1, 171), + (303867, 16, 8), + (303867, 18, 8), + (303867, 360, 4), + (303867, 1, 240), + (303867, 16, 11), + (303867, 18, 11), + (303867, 360, 5), + (303867, 102, 46), + (303867, 107, 46), + (303867, 107, 14), + (303867, 103, 14), + (303867, 103, 42), + (303867, 105, 14), + (303867, 105, 42), + (303867, 156, 50), + (303867, 168, 150), + (303867, 689, -5), + (303867, 118, 100), + (303867, 119, 100), + (303867, 120, 100), + (303867, 149, 100), + (303868, 102, 14), + (303868, 1, 18), + (303868, 226, 1), + (303868, 227, 1), + (303868, 228, 1), + (303868, 229, 1), + (303868, 230, 1), + (303868, 231, 1), + (303868, 234, 1), + (303868, 233, 1), + (303868, 276, 92), + (303868, 360, 24), + (303868, 316, 5), + (303868, 1, 161), + (303868, 226, 15), + (303868, 227, 15), + (303868, 228, 15), + (303868, 229, 15), + (303868, 230, 15), + (303868, 231, 15), + (303868, 233, 15), + (303868, 234, 15), + (303868, 1, 128), + (303868, 226, 11), + (303868, 227, 11), + (303868, 228, 11), + (303868, 229, 11), + (303868, 230, 11), + (303868, 231, 11), + (303868, 233, 11), + (303868, 234, 11), + (303868, 95, 90), + (303868, 104, 29), + (303868, 106, 45), + (303868, 147, 30), + (303868, 689, 20), + (303868, 1, 1500), + (303868, 16, 15), + (303868, 18, 15), + (303868, 1, 240), + (303868, 16, 11), + (303868, 18, 11), + (303868, 360, 5), + (303868, 1, 401), + (303868, 16, 17), + (303868, 18, 17), + (303868, 360, 7), + (303868, 118, 72), + (303868, 119, 72), + (303868, 120, 72), + (303868, 149, 72), + (303868, 102, 46), + (303868, 107, 46), + (303868, 102, 65), + (303868, 107, 14), + (303868, 107, 65), + (303868, 103, 42), + (303868, 103, 65), + (303868, 105, 42), + (303868, 105, 65), + (303868, 156, 50), + (303868, 168, 150), + (303868, 689, -5), + (303868, 118, 100), + (303868, 119, 100), + (303868, 120, 100), + (303868, 149, 100), + (303868, 156, 65), + (303868, 168, 260), + (303868, 689, -10), + (303868, 118, 180), + (303868, 119, 180), + (303868, 120, 180), + (303868, 149, 180), + (303869, 102, 14), + (303869, 1, 18), + (303869, 226, 1), + (303869, 227, 1), + (303869, 228, 1), + (303869, 229, 1), + (303869, 230, 1), + (303869, 231, 1), + (303869, 234, 1), + (303869, 233, 1), + (303869, 276, 144), + (303869, 360, 30), + (303869, 276, 157), + (303869, 278, 44), + (303869, 279, 44), + (303869, 280, 44), + (303869, 281, 44), + (303869, 282, 44), + (303869, 311, 44), + (303869, 316, 44), + (303869, 317, 44), + (303869, 360, 32), + (303869, 316, 5), + (303869, 1, 228), + (303869, 226, 22), + (303869, 227, 22), + (303869, 228, 22), + (303869, 229, 22), + (303869, 230, 22), + (303869, 231, 22), + (303869, 233, 22), + (303869, 234, 22), + (303869, 1, 256), + (303869, 226, 25), + (303869, 227, 25), + (303869, 228, 25), + (303869, 229, 25), + (303869, 230, 25), + (303869, 231, 25), + (303869, 233, 25), + (303869, 234, 25), + (303869, 104, 68), + (303869, 106, 62), + (303869, 147, 70), + (303869, 689, 20), + (303869, 1, 1500), + (303869, 16, 15), + (303869, 18, 15), + (303869, 689, 20), + (303869, 1, 3500), + (303869, 16, 23), + (303869, 18, 23), + (303869, 1, 401), + (303869, 16, 17), + (303869, 18, 17), + (303869, 360, 7), + (303869, 118, 72), + (303869, 119, 72), + (303869, 120, 72), + (303869, 149, 72), + (303869, 102, 87), + (303869, 107, 87), + (303869, 102, 65), + (303869, 107, 65), + (303869, 103, 65), + (303869, 105, 65), + (303869, 156, 140), + (303869, 168, 420), + (303869, 689, -15), + (303869, 118, 240), + (303869, 119, 240), + (303869, 120, 240), + (303869, 149, 240), + (303869, 156, 65), + (303869, 168, 260), + (303869, 689, -10), + (303869, 118, 180), + (303869, 119, 180), + (303869, 120, 180), + (303869, 149, 180), + (303870, 102, 14), + (303870, 1, 18), + (303870, 226, 1), + (303870, 227, 1), + (303870, 228, 1), + (303870, 229, 1), + (303870, 230, 1), + (303870, 231, 1), + (303870, 234, 1), + (303870, 233, 1), + (303870, 276, 190), + (303870, 360, 36), + (303870, 276, 205), + (303870, 360, 38), + (303870, 316, 5), + (303870, 1, 310), + (303870, 226, 30), + (303870, 227, 30), + (303870, 228, 30), + (303870, 229, 30), + (303870, 230, 30), + (303870, 231, 30), + (303870, 233, 30), + (303870, 234, 30), + (303870, 92, 160), + (303870, 1, 381), + (303870, 226, 40), + (303870, 227, 40), + (303870, 228, 40), + (303870, 229, 40), + (303870, 230, 40), + (303870, 231, 40), + (303870, 231, 40), + (303870, 233, 40), + (303870, 234, 40), + (303870, 95, 200), + (303870, 104, 68), + (303870, 104, 96), + (303870, 106, 90), + (303870, 147, 70), + (303870, 147, 90), + (303870, 689, 20), + (303870, 1, 3500), + (303870, 16, 23), + (303870, 18, 23), + (303870, 689, 20), + (303870, 1, 6000), + (303870, 16, 27), + (303870, 18, 27), + (303870, 1, 707), + (303870, 16, 22), + (303870, 18, 22), + (303870, 360, 9), + (303870, 1, 819), + (303870, 16, 24), + (303870, 18, 24), + (303870, 360, 10), + (303870, 118, 107), + (303870, 120, 107), + (303870, 102, 87), + (303870, 107, 87), + (303870, 102, 65), + (303870, 107, 65), + (303870, 103, 89), + (303870, 105, 89), + (303870, 156, 140), + (303870, 168, 420), + (303870, 689, -15), + (303870, 118, 240), + (303870, 119, 240), + (303870, 120, 240), + (303870, 149, 240), + (303870, 156, 160), + (303870, 168, 630), + (303870, 689, -20), + (303870, 118, 290), + (303870, 119, 290), + (303870, 120, 290), + (303870, 149, 290), + (303870, 16, 40), + (303871, 102, 14), + (303871, 1, 18), + (303871, 226, 1), + (303871, 227, 1), + (303871, 228, 1), + (303871, 229, 1), + (303871, 230, 1), + (303871, 231, 1), + (303871, 234, 1), + (303871, 233, 1), + (303871, 276, 240), + (303871, 360, 48), + (303871, 316, 5), + (303871, 311, 11), + (303871, 1, 479), + (303871, 226, 60), + (303871, 227, 60), + (303871, 228, 60), + (303871, 229, 60), + (303871, 230, 60), + (303871, 231, 60), + (303871, 233, 60), + (303871, 234, 60), + (303871, 92, 240), + (303871, 104, 107), + (303871, 279, 2), + (303871, 278, 2), + (303871, 311, 2), + (303871, 316, 2), + (303871, 282, 2), + (303871, 281, 2), + (303871, 317, 2), + (303871, 280, 2), + (303871, 106, 98), + (303871, 279, 2), + (303871, 278, 2), + (303871, 311, 2), + (303871, 316, 2), + (303871, 282, 2), + (303871, 281, 2), + (303871, 317, 2), + (303871, 280, 2), + (303871, 147, 110), + (303871, 689, 20), + (303871, 1, 6000), + (303871, 16, 27), + (303871, 18, 27), + (303871, 1, 996), + (303871, 16, 27), + (303871, 18, 27), + (303871, 360, 12), + (303871, 118, 107), + (303871, 120, 107), + (303871, 102, 87), + (303871, 107, 87), + (303871, 102, 100), + (303871, 279, 3), + (303871, 278, 3), + (303871, 311, 3), + (303871, 316, 3), + (303871, 282, 3), + (303871, 281, 3), + (303871, 317, 3), + (303871, 280, 3), + (303871, 142, 10), + (303871, 107, 100), + (303871, 279, 3), + (303871, 278, 3), + (303871, 280, 3), + (303871, 281, 3), + (303871, 282, 3), + (303871, 316, 3), + (303871, 311, 3), + (303871, 317, 3), + (303871, 142, 10), + (303871, 103, 100), + (303871, 278, 3), + (303871, 279, 3), + (303871, 280, 3), + (303871, 281, 3), + (303871, 282, 3), + (303871, 311, 3), + (303871, 316, 3), + (303871, 317, 3), + (303871, 142, 10), + (303871, 105, 100), + (303871, 279, 3), + (303871, 278, 3), + (303871, 280, 3), + (303871, 281, 3), + (303871, 282, 3), + (303871, 316, 3), + (303871, 311, 3), + (303871, 317, 3), + (303871, 142, 10), + (303871, 156, 200), + (303871, 168, 800), + (303871, 689, -30), + (303871, 118, 350), + (303871, 119, 350), + (303871, 120, 350), + (303871, 149, 350), + (303871, 16, 40), + (303872, 102, 14), + (303872, 1, 18), + (303872, 226, 1), + (303872, 227, 1), + (303872, 228, 1), + (303872, 229, 1), + (303872, 230, 1), + (303872, 231, 1), + (303872, 234, 1), + (303872, 233, 1), + (303872, 276, 252), + (303872, 360, 60), + (303872, 316, 5), + (303872, 311, 11), + (303872, 281, 17), + (303872, 317, 24), + (303872, 1, 479), + (303872, 226, 60), + (303872, 227, 60), + (303872, 228, 60), + (303872, 229, 60), + (303872, 230, 60), + (303872, 231, 60), + (303872, 233, 60), + (303872, 234, 60), + (303872, 92, 240), + (303872, 104, 120), + (303872, 279, 5), + (303872, 278, 5), + (303872, 311, 5), + (303872, 316, 5), + (303872, 282, 5), + (303872, 281, 5), + (303872, 317, 5), + (303872, 280, 5), + (303872, 106, 120), + (303872, 279, 7), + (303872, 278, 7), + (303872, 311, 7), + (303872, 316, 7), + (303872, 282, 7), + (303872, 281, 7), + (303872, 317, 7), + (303872, 280, 7), + (303872, 118, 15), + (303872, 101, 3), + (303872, 147, 3), + (303872, 147, 150), + (303872, 689, 20), + (303872, 1, 8000), + (303872, 16, 33), + (303872, 18, 33), + (303872, 689, 20), + (303872, 1, 10500), + (303872, 16, 36), + (303872, 18, 36), + (303872, 1, 996), + (303872, 16, 27), + (303872, 18, 27), + (303872, 360, 12), + (303872, 118, 107), + (303872, 120, 107), + (303872, 102, 87), + (303872, 107, 87), + (303872, 102, 120), + (303872, 279, 7), + (303872, 278, 7), + (303872, 311, 7), + (303872, 316, 7), + (303872, 282, 7), + (303872, 281, 7), + (303872, 317, 7), + (303872, 280, 7), + (303872, 118, 15), + (303872, 101, 3), + (303872, 147, 3), + (303872, 142, 50), + (303872, 107, 120), + (303872, 279, 13), + (303872, 278, 13), + (303872, 280, 13), + (303872, 281, 13), + (303872, 282, 13), + (303872, 316, 13), + (303872, 311, 13), + (303872, 317, 13), + (303872, 1, 15), + (303872, 118, 15), + (303872, 142, 50), + (303872, 103, 120), + (303872, 147, 3), + (303872, 118, 15), + (303872, 101, 3), + (303872, 278, 7), + (303872, 279, 7), + (303872, 280, 7), + (303872, 281, 7), + (303872, 282, 7), + (303872, 311, 7), + (303872, 316, 7), + (303872, 317, 7), + (303872, 142, 50), + (303872, 105, 120), + (303872, 279, 13), + (303872, 278, 13), + (303872, 280, 13), + (303872, 281, 13), + (303872, 282, 13), + (303872, 316, 13), + (303872, 311, 13), + (303872, 317, 13), + (303872, 1, 15), + (303872, 118, 15), + (303872, 142, 50), + (303872, 156, 200), + (303872, 168, 800), + (303872, 689, -30), + (303872, 118, 350), + (303872, 119, 350), + (303872, 120, 350), + (303872, 149, 350), + (303872, 16, 40), + (303873, 119, 12), + (303873, 90, 13), + (303873, 91, 13), + (303873, 92, 13), + (303873, 93, 13), + (303873, 94, 13), + (303873, 95, 13), + (303873, 96, 13), + (303873, 97, 13), + (303873, 90, 66), + (303873, 91, 66), + (303873, 92, 66), + (303873, 93, 66), + (303873, 94, 66), + (303873, 95, 66), + (303873, 96, 66), + (303873, 97, 66), + (303873, 90, 85), + (303873, 91, 85), + (303873, 92, 85), + (303873, 93, 85), + (303873, 94, 85), + (303873, 95, 85), + (303873, 96, 85), + (303873, 97, 85), + (303873, 226, 4), + (303873, 227, 4), + (303873, 228, 4), + (303873, 229, 4), + (303873, 230, 4), + (303873, 231, 4), + (303873, 233, 4), + (303873, 234, 4), + (303873, 92, 100), + (303873, 226, 7), + (303873, 227, 7), + (303873, 228, 7), + (303873, 229, 7), + (303873, 230, 7), + (303873, 231, 7), + (303873, 233, 7), + (303873, 234, 7), + (303873, 94, 110), + (303873, 112, 40), + (303873, 205, 10), + (303873, 206, 10), + (303873, 207, 10), + (303873, 208, 10), + (303873, 216, 10), + (303873, 217, 10), + (303873, 219, 10), + (303873, 225, 10), + (303873, 475, 3), + (303873, 476, 3), + (303873, 477, 3), + (303873, 478, 3), + (303873, 479, 3), + (303873, 480, 3), + (303873, 482, 3), + (303873, 483, 3), + (303873, 276, 32), + (303873, 277, 6), + (303874, 119, 12), + (303874, 90, 13), + (303874, 91, 13), + (303874, 92, 13), + (303874, 93, 13), + (303874, 94, 13), + (303874, 95, 13), + (303874, 96, 13), + (303874, 97, 13), + (303874, 90, 147), + (303874, 91, 147), + (303874, 92, 147), + (303874, 93, 147), + (303874, 94, 147), + (303874, 95, 147), + (303874, 96, 147), + (303874, 97, 147), + (303874, 90, 189), + (303874, 91, 189), + (303874, 92, 189), + (303874, 93, 189), + (303874, 94, 189), + (303874, 95, 189), + (303874, 96, 189), + (303874, 97, 189), + (303874, 163, 62), + (303874, 159, 62), + (303874, 226, 7), + (303874, 227, 7), + (303874, 228, 7), + (303874, 229, 7), + (303874, 230, 7), + (303874, 231, 7), + (303874, 233, 7), + (303874, 234, 7), + (303874, 94, 110), + (303874, 226, 11), + (303874, 227, 11), + (303874, 228, 11), + (303874, 229, 11), + (303874, 230, 11), + (303874, 231, 11), + (303874, 233, 11), + (303874, 234, 11), + (303874, 91, 120), + (303874, 119, 52), + (303874, 112, 40), + (303874, 205, 10), + (303874, 206, 10), + (303874, 207, 10), + (303874, 208, 10), + (303874, 216, 10), + (303874, 217, 10), + (303874, 219, 10), + (303874, 225, 10), + (303874, 475, 3), + (303874, 476, 3), + (303874, 477, 3), + (303874, 478, 3), + (303874, 479, 3), + (303874, 480, 3), + (303874, 482, 3), + (303874, 483, 3), + (303874, 205, 13), + (303874, 206, 13), + (303874, 207, 13), + (303874, 208, 13), + (303874, 216, 13), + (303874, 217, 13), + (303874, 219, 13), + (303874, 225, 13), + (303874, 475, 7), + (303874, 476, 7), + (303874, 477, 7), + (303874, 478, 7), + (303874, 479, 7), + (303874, 480, 7), + (303874, 482, 7), + (303874, 483, 7), + (303874, 168, 10), + (303875, 119, 12), + (303875, 90, 13), + (303875, 91, 13), + (303875, 92, 13), + (303875, 93, 13), + (303875, 94, 13), + (303875, 95, 13), + (303875, 96, 13), + (303875, 97, 13), + (303875, 90, 252), + (303875, 91, 252), + (303875, 92, 252), + (303875, 93, 252), + (303875, 94, 252), + (303875, 95, 252), + (303875, 96, 252), + (303875, 97, 252), + (303875, 90, 301), + (303875, 91, 301), + (303875, 92, 301), + (303875, 93, 301), + (303875, 94, 301), + (303875, 95, 301), + (303875, 96, 301), + (303875, 97, 301), + (303875, 163, 62), + (303875, 159, 62), + (303875, 226, 15), + (303875, 227, 15), + (303875, 228, 15), + (303875, 229, 15), + (303875, 230, 15), + (303875, 231, 15), + (303875, 233, 15), + (303875, 234, 15), + (303875, 92, 140), + (303875, 226, 19), + (303875, 227, 19), + (303875, 228, 19), + (303875, 229, 19), + (303875, 230, 19), + (303875, 231, 19), + (303875, 233, 19), + (303875, 234, 19), + (303875, 91, 180), + (303875, 126, 80), + (303875, 157, 80), + (303875, 119, 52), + (303875, 125, 80), + (303875, 159, 80), + (303875, 112, 40), + (303875, 205, 13), + (303875, 206, 13), + (303875, 207, 13), + (303875, 208, 13), + (303875, 216, 13), + (303875, 217, 13), + (303875, 219, 13), + (303875, 225, 13), + (303875, 475, 7), + (303875, 476, 7), + (303875, 477, 7), + (303875, 478, 7), + (303875, 479, 7), + (303875, 480, 7), + (303875, 482, 7), + (303875, 483, 7), + (303875, 205, 16), + (303875, 206, 16), + (303875, 207, 16), + (303875, 208, 16), + (303875, 216, 16), + (303875, 217, 16), + (303875, 219, 16), + (303875, 225, 16), + (303875, 475, 10), + (303875, 476, 10), + (303875, 477, 10), + (303875, 478, 10), + (303875, 479, 10), + (303875, 480, 10), + (303875, 482, 10), + (303875, 483, 10), + (303875, 158, 80), + (303875, 276, 15), + (303875, 276, 30), + (303875, 276, 120), + (303875, 277, 21), + (303875, 276, 165), + (303875, 277, 28), + (303875, 168, 25), + (303876, 119, 12), + (303876, 90, 13), + (303876, 91, 13), + (303876, 92, 13), + (303876, 93, 13), + (303876, 94, 13), + (303876, 95, 13), + (303876, 96, 13), + (303876, 97, 13), + (303876, 90, 389), + (303876, 91, 389), + (303876, 92, 389), + (303876, 93, 389), + (303876, 94, 389), + (303876, 95, 389), + (303876, 96, 389), + (303876, 97, 389), + (303876, 90, 440), + (303876, 91, 440), + (303876, 92, 440), + (303876, 93, 440), + (303876, 94, 440), + (303876, 95, 440), + (303876, 96, 440), + (303876, 97, 440), + (303876, 163, 62), + (303876, 159, 62), + (303876, 226, 24), + (303876, 227, 24), + (303876, 228, 24), + (303876, 229, 24), + (303876, 230, 24), + (303876, 231, 24), + (303876, 233, 24), + (303876, 234, 24), + (303876, 92, 220), + (303876, 226, 28), + (303876, 227, 28), + (303876, 228, 28), + (303876, 229, 28), + (303876, 230, 28), + (303876, 231, 28), + (303876, 233, 28), + (303876, 234, 28), + (303876, 94, 230), + (303876, 226, 39), + (303876, 227, 39), + (303876, 228, 39), + (303876, 229, 39), + (303876, 230, 39), + (303876, 231, 39), + (303876, 233, 39), + (303876, 234, 39), + (303876, 91, 240), + (303876, 126, 80), + (303876, 126, 125), + (303876, 157, 80), + (303876, 157, 125), + (303876, 109, 120), + (303876, 110, 50), + (303876, 112, 120), + (303876, 119, 114), + (303876, 125, 80), + (303876, 125, 125), + (303876, 159, 80), + (303876, 159, 125), + (303876, 112, 40), + (303876, 205, 16), + (303876, 206, 16), + (303876, 207, 16), + (303876, 208, 16), + (303876, 216, 16), + (303876, 217, 16), + (303876, 219, 16), + (303876, 225, 16), + (303876, 475, 10), + (303876, 476, 10), + (303876, 477, 10), + (303876, 478, 10), + (303876, 479, 10), + (303876, 480, 10), + (303876, 482, 10), + (303876, 483, 10), + (303876, 205, 19), + (303876, 206, 19), + (303876, 207, 19), + (303876, 208, 19), + (303876, 216, 19), + (303876, 217, 19), + (303876, 219, 19), + (303876, 225, 19), + (303876, 475, 15), + (303876, 476, 15), + (303876, 477, 15), + (303876, 478, 15), + (303876, 479, 15), + (303876, 480, 15), + (303876, 482, 15), + (303876, 483, 15), + (303876, 158, 125), + (303876, 158, 80), + (303876, 276, 30), + (303876, 276, 45), + (303876, 276, 205), + (303876, 277, 36), + (303876, 276, 250), + (303876, 277, 43), + (303876, 276, 291), + (303876, 277, 50), + (303876, 168, 25), + (303876, 168, 50), + (303877, 119, 12), + (303877, 90, 13), + (303877, 91, 13), + (303877, 92, 13), + (303877, 93, 13), + (303877, 94, 13), + (303877, 95, 13), + (303877, 96, 13), + (303877, 97, 13), + (303877, 90, 672), + (303877, 91, 672), + (303877, 92, 672), + (303877, 93, 672), + (303877, 94, 672), + (303877, 95, 672), + (303877, 96, 672), + (303877, 97, 672), + (303877, 90, 720), + (303877, 91, 720), + (303877, 92, 720), + (303877, 93, 720), + (303877, 94, 720), + (303877, 95, 720), + (303877, 96, 720), + (303877, 97, 720), + (303877, 163, 62), + (303877, 159, 62), + (303877, 278, 35), + (303877, 279, 35), + (303877, 280, 35), + (303877, 281, 35), + (303877, 282, 35), + (303877, 311, 35), + (303877, 316, 35), + (303877, 317, 35), + (303877, 119, 205), + (303877, 226, 53), + (303877, 227, 53), + (303877, 228, 53), + (303877, 229, 53), + (303877, 230, 53), + (303877, 231, 53), + (303877, 233, 53), + (303877, 234, 53), + (303877, 91, 800), + (303877, 226, 65), + (303877, 227, 65), + (303877, 228, 65), + (303877, 229, 65), + (303877, 230, 65), + (303877, 231, 65), + (303877, 233, 65), + (303877, 234, 65), + (303877, 92, 1200), + (303877, 126, 80), + (303877, 126, 125), + (303877, 157, 80), + (303877, 157, 125), + (303877, 109, 120), + (303877, 110, 50), + (303877, 112, 120), + (303877, 119, 114), + (303877, 125, 80), + (303877, 125, 125), + (303877, 159, 80), + (303877, 159, 125), + (303877, 112, 40), + (303877, 205, 25), + (303877, 206, 25), + (303877, 207, 25), + (303877, 208, 25), + (303877, 216, 25), + (303877, 217, 25), + (303877, 219, 25), + (303877, 225, 25), + (303877, 475, 30), + (303877, 476, 30), + (303877, 477, 30), + (303877, 478, 30), + (303877, 479, 30), + (303877, 480, 30), + (303877, 482, 30), + (303877, 483, 30), + (303877, 205, 29), + (303877, 206, 29), + (303877, 207, 29), + (303877, 208, 29), + (303877, 216, 29), + (303877, 217, 29), + (303877, 219, 29), + (303877, 225, 29), + (303877, 475, 40), + (303877, 476, 40), + (303877, 477, 40), + (303877, 478, 40), + (303877, 479, 40), + (303877, 480, 40), + (303877, 482, 40), + (303877, 483, 40), + (303877, 100, 400), + (303877, 101, 50), + (303877, 142, 50), + (303877, 147, 50), + (303877, 90, 150), + (303877, 91, 150), + (303877, 92, 150), + (303877, 158, 80), + (303877, 158, 125), + (303877, 276, 30), + (303877, 276, 45), + (303877, 276, 250), + (303877, 277, 43), + (303877, 276, 291), + (303877, 277, 50), + (303877, 168, 50), + (303877, 168, 100), + (303878, 119, 12), + (303878, 90, 13), + (303878, 91, 13), + (303878, 92, 13), + (303878, 93, 13), + (303878, 94, 13), + (303878, 95, 13), + (303878, 96, 13), + (303878, 97, 13), + (303878, 90, 720), + (303878, 91, 720), + (303878, 92, 720), + (303878, 93, 720), + (303878, 94, 720), + (303878, 95, 720), + (303878, 96, 720), + (303878, 97, 720), + (303878, 90, 2500), + (303878, 91, 2500), + (303878, 92, 2500), + (303878, 93, 2500), + (303878, 94, 2500), + (303878, 95, 2500), + (303878, 97, 2500), + (303878, 96, 2500), + (303878, 163, 62), + (303878, 159, 62), + (303878, 278, 35), + (303878, 279, 35), + (303878, 280, 35), + (303878, 281, 35), + (303878, 282, 35), + (303878, 311, 35), + (303878, 316, 35), + (303878, 317, 35), + (303878, 119, 205), + (303878, 226, 65), + (303878, 227, 65), + (303878, 228, 65), + (303878, 229, 65), + (303878, 230, 65), + (303878, 231, 65), + (303878, 233, 65), + (303878, 234, 65), + (303878, 92, 1200), + (303878, 135, 79), + (303878, 126, 125), + (303878, 157, 125), + (303878, 109, 120), + (303878, 110, 50), + (303878, 112, 120), + (303878, 119, 114), + (303878, 125, 125), + (303878, 159, 125), + (303878, 112, 40), + (303878, 205, 29), + (303878, 206, 29), + (303878, 207, 29), + (303878, 208, 29), + (303878, 216, 29), + (303878, 217, 29), + (303878, 219, 29), + (303878, 225, 29), + (303878, 475, 40), + (303878, 476, 40), + (303878, 477, 40), + (303878, 478, 40), + (303878, 479, 40), + (303878, 480, 40), + (303878, 482, 40), + (303878, 483, 40), + (303878, 100, 400), + (303878, 101, 50), + (303878, 142, 50), + (303878, 147, 50), + (303878, 90, 150), + (303878, 91, 150), + (303878, 92, 150), + (303878, 158, 125), + (303878, 276, 100), + (303878, 276, 446), + (303878, 277, 88), + (303879, 114, 8), + (303879, 148, 7), + (303879, 165, 23), + (303879, 135, 23), + (303879, 164, 40), + (303879, 114, 24), + (303879, 148, 15), + (303879, 114, 46), + (303879, 148, 30), + (303879, 153, 2), + (303879, 154, 2), + (303879, 155, 2), + (303879, 156, 140), + (303879, 153, 7), + (303879, 154, 7), + (303879, 155, 7), + (303879, 156, 190), + (303879, 156, -180), + (303879, 156, -320), + (303880, 114, 8), + (303880, 148, 7), + (303880, 165, 23), + (303880, 135, 23), + (303880, 114, 46), + (303880, 148, 30), + (303880, 114, 79), + (303880, 148, 50), + (303880, 153, 36), + (303880, 154, 36), + (303880, 155, 36), + (303880, 153, 16), + (303880, 154, 16), + (303880, 155, 16), + (303880, 156, 260), + (303880, 153, 25), + (303880, 154, 25), + (303880, 155, 25), + (303880, 156, 310), + (303880, 146, 70), + (303880, 156, -480), + (303880, 156, -750), + (303881, 114, 8), + (303881, 148, 7), + (303881, 165, 79), + (303881, 135, 79), + (303881, 164, 40), + (303881, 114, 79), + (303881, 148, 50), + (303881, 114, 100), + (303881, 148, 64), + (303881, 134, 10), + (303881, 153, 36), + (303881, 154, 36), + (303881, 155, 36), + (303881, 153, 37), + (303881, 154, 37), + (303881, 155, 37), + (303881, 156, 390), + (303881, 146, 70), + (303881, 156, -750), + (303881, 153, -85), + (303881, 154, -85), + (303881, 155, -85), + (303881, 180, 15), + (303882, 114, 8), + (303882, 148, 7), + (303882, 165, 79), + (303882, 135, 79), + (303882, 164, 40), + (303882, 114, 100), + (303882, 148, 64), + (303882, 134, 10), + (303882, 114, 121), + (303882, 148, 78), + (303882, 134, 15), + (303882, 278, 3), + (303882, 279, 3), + (303882, 280, 3), + (303882, 281, 3), + (303882, 282, 3), + (303882, 311, 3), + (303882, 316, 3), + (303882, 317, 3), + (303882, 153, 36), + (303882, 154, 36), + (303882, 155, 36), + (303882, 153, 78), + (303882, 154, 78), + (303882, 155, 78), + (303882, 153, 61), + (303882, 154, 61), + (303882, 155, 61), + (303882, 156, 450), + (303882, 153, 70), + (303882, 154, 70), + (303882, 155, 70), + (303882, 156, 620), + (303882, 136, 240), + (303882, 146, 70), + (303882, 156, -1080), + (303882, 153, -85), + (303882, 154, -85), + (303882, 155, -85), + (303882, 180, 15), + (303883, 114, 8), + (303883, 148, 7), + (303883, 165, 130), + (303883, 135, 130), + (303883, 164, 40), + (303883, 114, 121), + (303883, 148, 78), + (303883, 134, 15), + (303883, 278, 3), + (303883, 279, 3), + (303883, 280, 3), + (303883, 281, 3), + (303883, 282, 3), + (303883, 311, 3), + (303883, 316, 3), + (303883, 317, 3), + (303883, 114, 134), + (303883, 148, 85), + (303883, 167, 85), + (303883, 134, 22), + (303883, 278, 5), + (303883, 279, 5), + (303883, 280, 5), + (303883, 281, 5), + (303883, 282, 5), + (303883, 311, 5), + (303883, 316, 5), + (303883, 317, 5), + (303883, 119, 25), + (303883, 153, 5), + (303883, 154, 5), + (303883, 155, 5), + (303883, 153, 78), + (303883, 154, 78), + (303883, 155, 78), + (303883, 153, 36), + (303883, 154, 36), + (303883, 155, 36), + (303883, 153, 70), + (303883, 154, 70), + (303883, 155, 70), + (303883, 156, 620), + (303883, 153, 79), + (303883, 154, 79), + (303883, 155, 79), + (303883, 156, 720), + (303883, 136, 240), + (303883, 146, 70), + (303883, 156, -1080), + (303883, 153, -85), + (303883, 154, -85), + (303883, 155, -85), + (303883, 180, 15), + (303883, 153, -170), + (303883, 154, -170), + (303883, 155, -170), + (303883, 180, 25), + (303884, 114, 8), + (303884, 148, 7), + (303884, 165, 130), + (303884, 135, 130), + (303884, 164, 40), + (303884, 114, 141), + (303884, 148, 90), + (303884, 167, 90), + (303884, 134, 38), + (303884, 278, 8), + (303884, 279, 8), + (303884, 280, 8), + (303884, 281, 8), + (303884, 282, 8), + (303884, 311, 8), + (303884, 316, 8), + (303884, 317, 8), + (303884, 119, 40), + (303884, 153, 10), + (303884, 154, 10), + (303884, 155, 10), + (303884, 153, 119), + (303884, 154, 119), + (303884, 155, 119), + (303884, 155, 128), + (303884, 153, 128), + (303884, 154, 128), + (303884, 153, 79), + (303884, 154, 79), + (303884, 155, 79), + (303884, 156, 720), + (303884, 136, 240), + (303884, 146, 70), + (303884, 156, -920), + (303884, 153, -170), + (303884, 154, -170), + (303884, 155, -170), + (303884, 180, 25), + (303885, 104, 8), + (303885, 105, 12), + (303885, 104, 20), + (303885, 105, 29), + (303885, 147, 30), + (303885, 145, 38), + (303885, 143, 38), + (303885, 101, 15), + (303885, 146, 30), + (303886, 104, 8), + (303886, 105, 12), + (303886, 104, 40), + (303886, 105, 54), + (303886, 147, 70), + (303886, 147, 30), + (303886, 145, 38), + (303886, 143, 38), + (303886, 101, 15), + (303886, 145, 65), + (303886, 143, 65), + (303886, 101, 30), + (303886, 155, 50), + (303886, 154, 25), + (303886, 153, 25), + (303886, 16, 12), + (303886, 18, 12), + (303886, 17, 6), + (303886, 146, 30), + (303886, 146, 70), + (303887, 104, 8), + (303887, 105, 12), + (303887, 104, 40), + (303887, 105, 54), + (303887, 105, 85), + (303887, 104, 65), + (303887, 276, 30), + (303887, 147, 70), + (303887, 145, 65), + (303887, 143, 65), + (303887, 101, 30), + (303887, 155, 50), + (303887, 154, 25), + (303887, 153, 25), + (303887, 155, 80), + (303887, 154, 40), + (303887, 153, 40), + (303887, 16, 12), + (303887, 18, 12), + (303887, 17, 6), + (303887, 146, 70), + (303888, 104, 8), + (303888, 105, 12), + (303888, 105, 85), + (303888, 104, 65), + (303888, 105, 110), + (303888, 104, 80), + (303888, 276, 30), + (303888, 147, 90), + (303888, 145, 65), + (303888, 143, 65), + (303888, 101, 30), + (303888, 145, 105), + (303888, 143, 105), + (303888, 101, 45), + (303888, 155, 80), + (303888, 154, 40), + (303888, 153, 40), + (303888, 16, 12), + (303888, 18, 12), + (303888, 17, 6), + (303888, 16, 23), + (303888, 18, 23), + (303888, 17, 12), + (303888, 146, 70), + (303888, 146, 90), + (303889, 104, 8), + (303889, 105, 12), + (303889, 105, 110), + (303889, 104, 80), + (303889, 104, 95), + (303889, 105, 127), + (303889, 276, 30), + (303889, 147, 90), + (303889, 147, 110), + (303889, 145, 105), + (303889, 143, 105), + (303889, 101, 45), + (303889, 155, 80), + (303889, 154, 40), + (303889, 153, 40), + (303889, 155, 110), + (303889, 154, 55), + (303889, 153, 55), + (303889, 16, 12), + (303889, 18, 12), + (303889, 17, 6), + (303889, 16, 23), + (303889, 18, 23), + (303889, 17, 12), + (303889, 146, 70), + (303889, 146, 90), + (303890, 104, 8), + (303890, 105, 12), + (303890, 105, 140), + (303890, 1, 15), + (303890, 118, 10), + (303890, 104, 105), + (303890, 276, 30), + (303890, 147, 150), + (303890, 145, 140), + (303890, 143, 140), + (303890, 101, 80), + (303890, 277, 12), + (303890, 155, 140), + (303890, 154, 70), + (303890, 153, 70), + (303890, 16, 40), + (303890, 18, 40), + (303890, 17, 20), + (303890, 146, 135), + (303890, 146, 150), + (303891, 100, 12), + (303891, 120, 8), + (303891, 90, 31), + (303891, 91, 36), + (303891, 92, 31), + (303891, 93, 31), + (303891, 94, 31), + (303891, 95, 31), + (303891, 96, 31), + (303891, 97, 31), + (303891, 90, 80), + (303891, 91, 95), + (303891, 92, 80), + (303891, 93, 80), + (303891, 94, 80), + (303891, 95, 80), + (303891, 96, 80), + (303891, 97, 80), + (303891, 142, 45), + (303891, 379, 12), + (303891, 147, 30), + (303891, 153, 50), + (303891, 154, 50), + (303891, 155, 50), + (303891, 16, 12), + (303891, 153, 30), + (303892, 100, 12), + (303892, 120, 8), + (303892, 90, 139), + (303892, 91, 164), + (303892, 92, 139), + (303892, 93, 139), + (303892, 94, 139), + (303892, 95, 139), + (303892, 96, 139), + (303892, 97, 139), + (303892, 90, 199), + (303892, 91, 234), + (303892, 92, 199), + (303892, 93, 199), + (303892, 94, 199), + (303892, 95, 199), + (303892, 96, 199), + (303892, 97, 199), + (303892, 142, 45), + (303892, 379, 12), + (303892, 379, 6), + (303892, 147, 30), + (303892, 153, 50), + (303892, 154, 50), + (303892, 155, 50), + (303892, 16, 12), + (303892, 100, 60), + (303892, 108, 30), + (303892, 156, 70), + (303892, 16, 12), + (303892, 153, 30), + (303893, 100, 12), + (303893, 120, 8), + (303893, 90, 258), + (303893, 91, 304), + (303893, 92, 258), + (303893, 93, 258), + (303893, 94, 258), + (303893, 95, 258), + (303893, 96, 258), + (303893, 97, 258), + (303893, 90, 288), + (303893, 91, 339), + (303893, 92, 288), + (303893, 93, 288), + (303893, 94, 288), + (303893, 95, 288), + (303893, 96, 288), + (303893, 97, 288), + (303893, 142, 45), + (303893, 379, 12), + (303893, 379, 17), + (303893, 379, 6), + (303893, 147, 70), + (303893, 147, 90), + (303893, 118, 93), + (303893, 120, 93), + (303893, 153, 50), + (303893, 154, 50), + (303893, 155, 50), + (303893, 153, 85), + (303893, 154, 85), + (303893, 155, 85), + (303893, 100, 60), + (303893, 108, 30), + (303893, 156, 70), + (303893, 16, 12), + (303893, 16, 25), + (303893, 153, 30), + (303894, 100, 12), + (303894, 120, 8), + (303894, 90, 318), + (303894, 91, 375), + (303894, 92, 318), + (303894, 93, 318), + (303894, 94, 318), + (303894, 95, 318), + (303894, 96, 318), + (303894, 97, 318), + (303894, 90, 380), + (303894, 91, 447), + (303894, 92, 380), + (303894, 93, 380), + (303894, 94, 380), + (303894, 95, 380), + (303894, 96, 380), + (303894, 97, 380), + (303894, 142, 45), + (303894, 379, 17), + (303894, 379, 23), + (303894, 379, 8), + (303894, 147, 70), + (303894, 147, 90), + (303894, 118, 93), + (303894, 120, 93), + (303894, 153, 85), + (303894, 154, 85), + (303894, 155, 85), + (303894, 153, 120), + (303894, 154, 120), + (303894, 155, 120), + (303894, 100, 60), + (303894, 108, 30), + (303894, 156, 70), + (303894, 16, 12), + (303894, 16, 25), + (303894, 143, 80), + (303894, 145, 80), + (303894, 153, 30), + (303895, 100, 12), + (303895, 120, 8), + (303895, 90, 538), + (303895, 91, 621), + (303895, 92, 538), + (303895, 93, 538), + (303895, 94, 538), + (303895, 95, 538), + (303895, 96, 538), + (303895, 97, 538), + (303895, 16, 40), + (303895, 17, -70), + (303895, 90, 574), + (303895, 91, 676), + (303895, 92, 574), + (303895, 93, 574), + (303895, 94, 574), + (303895, 95, 574), + (303895, 96, 574), + (303895, 97, 574), + (303895, 156, -250), + (303895, 142, 45), + (303895, 379, 23), + (303895, 379, 28), + (303895, 379, 8), + (303895, 379, 11), + (303895, 147, 90), + (303895, 147, 110), + (303895, 118, 93), + (303895, 120, 93), + (303895, 153, 120), + (303895, 154, 120), + (303895, 155, 120), + (303895, 100, 60), + (303895, 108, 30), + (303895, 156, 70), + (303895, 16, 12), + (303895, 16, 25), + (303895, 100, 160), + (303895, 108, 60), + (303895, 144, 150), + (303895, 147, 30), + (303895, 143, 80), + (303895, 145, 80), + (303895, 153, 30), + (303896, 100, 12), + (303896, 120, 8), + (303896, 90, 538), + (303896, 91, 621), + (303896, 92, 538), + (303896, 93, 538), + (303896, 94, 538), + (303896, 95, 538), + (303896, 96, 538), + (303896, 97, 538), + (303896, 16, 40), + (303896, 17, -70), + (303896, 90, 574), + (303896, 91, 676), + (303896, 92, 574), + (303896, 93, 574), + (303896, 94, 574), + (303896, 95, 574), + (303896, 96, 574), + (303896, 97, 574), + (303896, 156, -250), + (303896, 142, 45), + (303896, 379, 28), + (303896, 379, 11), + (303896, 147, 150), + (303896, 118, 93), + (303896, 120, 93), + (303896, 153, 120), + (303896, 154, 120), + (303896, 155, 120), + (303896, 100, 160), + (303896, 108, 60), + (303896, 144, 150), + (303896, 147, 30), + (303896, 143, 80), + (303896, 145, 80), + (303896, 156, 70), + (303896, 16, 25), + (303896, 153, 30), + (303897, 128, 25), + (303897, 131, 25), + (303897, 127, 25), + (303897, 128, 25), + (303897, 130, 25), + (303897, 122, 25), + (303897, 129, 25), + (303897, 130, 25), + (303897, 131, 25), + (303897, 127, 25), + (303897, 160, 20), + (303897, 112, 40), + (303897, 19, 23), + (303897, 21, 23), + (303897, 129, 25), + (303897, 122, 25), + (303897, 118, -32), + (303897, 119, -32), + (303897, 120, -32), + (303897, 118, -61), + (303897, 119, -61), + (303897, 120, -61), + (303897, 51, 73), + (303897, 119, 360), + (303897, 149, 360), + (303897, 120, 360), + (303897, 118, 360), + (303897, 201, 30), + (303897, 276, 24), + (303897, 276, 52), + (303898, 128, 50), + (303898, 131, 50), + (303898, 127, 50), + (303898, 128, 50), + (303898, 130, 50), + (303898, 122, 50), + (303898, 129, 50), + (303898, 153, 60), + (303898, 154, 60), + (303898, 155, 60), + (303898, 130, 50), + (303898, 131, 50), + (303898, 127, 50), + (303898, 160, 20), + (303898, 112, 40), + (303898, 19, 23), + (303898, 21, 23), + (303898, 129, 50), + (303898, 122, 50), + (303898, 128, -75), + (303898, 130, -75), + (303898, 131, -75), + (303898, 127, -75), + (303898, 118, -101), + (303898, 119, -101), + (303898, 120, -101), + (303898, 118, -134), + (303898, 119, -134), + (303898, 120, -134), + (303898, 129, -75), + (303898, 122, -75), + (303898, 51, 73), + (303898, 119, 360), + (303898, 149, 360), + (303898, 120, 360), + (303898, 118, 360), + (303898, 201, 30), + (303898, 276, 52), + (303898, 276, 88), + (303899, 128, 50), + (303899, 128, 90), + (303899, 131, 50), + (303899, 127, 50), + (303899, 128, 50), + (303899, 130, 50), + (303899, 122, 50), + (303899, 129, 50), + (303899, 131, 90), + (303899, 127, 90), + (303899, 128, 90), + (303899, 130, 90), + (303899, 122, 90), + (303899, 129, 90), + (303899, 153, 60), + (303899, 154, 60), + (303899, 155, 60), + (303899, 130, 50), + (303899, 130, 90), + (303899, 131, 50), + (303899, 131, 90), + (303899, 127, 50), + (303899, 127, 90), + (303899, 160, 92), + (303899, 112, 40), + (303899, 19, 23), + (303899, 21, 23), + (303899, 129, 50), + (303899, 129, 90), + (303899, 122, 50), + (303899, 122, 90), + (303899, 128, -75), + (303899, 130, -75), + (303899, 131, -75), + (303899, 127, -75), + (303899, 118, -156), + (303899, 119, -156), + (303899, 120, -156), + (303899, 129, -75), + (303899, 122, -75), + (303899, 51, 73), + (303899, 119, 360), + (303899, 149, 360), + (303899, 120, 360), + (303899, 118, 360), + (303899, 201, 30), + (303899, 51, 101), + (303899, 119, 510), + (303899, 149, 510), + (303899, 120, 510), + (303899, 118, 510), + (303899, 201, 50), + (303899, 276, 88), + (303899, 276, 129), + (303899, 156, 600), + (303900, 128, 90), + (303900, 128, 50), + (303900, 131, 50), + (303900, 127, 50), + (303900, 128, 50), + (303900, 130, 50), + (303900, 122, 50), + (303900, 129, 50), + (303900, 131, 90), + (303900, 127, 90), + (303900, 128, 90), + (303900, 130, 90), + (303900, 122, 90), + (303900, 129, 90), + (303900, 153, 60), + (303900, 154, 60), + (303900, 155, 60), + (303900, 130, 50), + (303900, 130, 90), + (303900, 131, 50), + (303900, 131, 90), + (303900, 127, 50), + (303900, 127, 90), + (303900, 160, 92), + (303900, 112, 40), + (303900, 19, 23), + (303900, 21, 23), + (303900, 129, 50), + (303900, 129, 90), + (303900, 122, 50), + (303900, 122, 90), + (303900, 128, -125), + (303900, 128, -75), + (303900, 130, -125), + (303900, 130, -75), + (303900, 131, -125), + (303900, 131, -75), + (303900, 127, -125), + (303900, 127, -75), + (303900, 118, -181), + (303900, 119, -181), + (303900, 120, -181), + (303900, 118, -199), + (303900, 119, -199), + (303900, 120, -199), + (303900, 129, -125), + (303900, 129, -75), + (303900, 122, -125), + (303900, 122, -75), + (303900, 51, 101), + (303900, 119, 510), + (303900, 149, 510), + (303900, 120, 510), + (303900, 118, 510), + (303900, 201, 50), + (303900, 276, 129), + (303900, 156, 600), + (303901, 128, 90), + (303901, 128, 140), + (303901, 131, 90), + (303901, 127, 90), + (303901, 128, 90), + (303901, 130, 90), + (303901, 122, 90), + (303901, 129, 90), + (303901, 131, 140), + (303901, 127, 140), + (303901, 128, 140), + (303901, 130, 140), + (303901, 122, 140), + (303901, 129, 140), + (303901, 153, 60), + (303901, 154, 60), + (303901, 155, 60), + (303901, 130, 90), + (303901, 130, 140), + (303901, 131, 90), + (303901, 131, 140), + (303901, 127, 90), + (303901, 127, 140), + (303901, 160, 92), + (303901, 112, 40), + (303901, 19, 23), + (303901, 21, 23), + (303901, 19, 43), + (303901, 21, 43), + (303901, 129, 40), + (303901, 122, 40), + (303901, 131, 40), + (303901, 130, 40), + (303901, 128, 40), + (303901, 127, 40), + (303901, 168, 100), + (303901, 129, 90), + (303901, 129, 140), + (303901, 122, 90), + (303901, 122, 140), + (303901, 128, -125), + (303901, 278, -51), + (303901, 280, -51), + (303901, 279, -51), + (303901, 311, -51), + (303901, 316, -51), + (303901, 317, -51), + (303901, 281, -51), + (303901, 282, -51), + (303901, 278, -72), + (303901, 280, -72), + (303901, 279, -72), + (303901, 311, -72), + (303901, 316, -72), + (303901, 317, -72), + (303901, 281, -72), + (303901, 282, -72), + (303901, 130, -125), + (303901, 131, -125), + (303901, 127, -125), + (303901, 118, -261), + (303901, 119, -261), + (303901, 120, -261), + (303901, 118, -244), + (303901, 119, -244), + (303901, 120, -244), + (303901, 122, -1000), + (303901, 131, -1000), + (303901, 130, -1000), + (303901, 129, -1000), + (303901, 128, -1000), + (303901, 127, -1000), + (303901, 129, -125), + (303901, 122, -125), + (303901, 51, 139), + (303901, 119, 700), + (303901, 149, 700), + (303901, 120, 700), + (303901, 118, 700), + (303901, 201, 65), + (303901, 51, 184), + (303901, 120, 920), + (303901, 118, 920), + (303901, 119, 920), + (303901, 149, 920), + (303901, 201, 80), + (303901, 276, 175), + (303901, 276, 213), + (303901, 276, 269), + (303901, 156, 600), + (303902, 128, 140), + (303902, 131, 140), + (303902, 127, 140), + (303902, 128, 140), + (303902, 130, 140), + (303902, 122, 140), + (303902, 129, 140), + (303902, 131, 140), + (303902, 127, 140), + (303902, 128, 140), + (303902, 130, 140), + (303902, 122, 140), + (303902, 129, 140), + (303902, 153, 60), + (303902, 154, 60), + (303902, 155, 60), + (303902, 130, 140), + (303902, 131, 140), + (303902, 127, 140), + (303902, 160, 92), + (303902, 112, 40), + (303902, 19, 23), + (303902, 21, 23), + (303902, 19, 43), + (303902, 21, 43), + (303902, 129, 40), + (303902, 122, 40), + (303902, 131, 40), + (303902, 130, 40), + (303902, 128, 40), + (303902, 127, 40), + (303902, 168, 100), + (303902, 129, 140), + (303902, 122, 140), + (303902, 128, -125), + (303902, 278, -136), + (303902, 280, -136), + (303902, 279, -136), + (303902, 311, -136), + (303902, 316, -136), + (303902, 317, -136), + (303902, 281, -136), + (303902, 282, -136), + (303902, 278, -97), + (303902, 280, -97), + (303902, 279, -97), + (303902, 311, -97), + (303902, 316, -97), + (303902, 317, -97), + (303902, 281, -97), + (303902, 282, -97), + (303902, 278, -141), + (303902, 280, -141), + (303902, 279, -141), + (303902, 311, -141), + (303902, 316, -141), + (303902, 317, -141), + (303902, 281, -141), + (303902, 282, -141), + (303902, 278, -181), + (303902, 280, -181), + (303902, 279, -181), + (303902, 311, -181), + (303902, 316, -181), + (303902, 317, -181), + (303902, 281, -181), + (303902, 282, -181), + (303902, 130, -125), + (303902, 131, -125), + (303902, 127, -125), + (303902, 118, -261), + (303902, 119, -261), + (303902, 120, -261), + (303902, 122, -1000), + (303902, 131, -1000), + (303902, 130, -1000), + (303902, 129, -1000), + (303902, 128, -1000), + (303902, 127, -1000), + (303902, 129, -125), + (303902, 122, -125), + (303902, 51, 184), + (303902, 120, 920), + (303902, 118, 920), + (303902, 119, 920), + (303902, 149, 920), + (303902, 201, 80), + (303902, 276, 304), + (303902, 156, 600), + (303903, 96, 17), + (303903, 95, 17), + (303903, 97, 17), + (303903, 93, 17), + (303903, 94, 17), + (303903, 90, 17), + (303903, 92, 17), + (303903, 91, 17), + (303903, 1, 27), + (303903, 168, 18), + (303903, 96, 31), + (303903, 95, 31), + (303903, 97, 31), + (303903, 93, 31), + (303903, 94, 31), + (303903, 90, 31), + (303903, 92, 31), + (303903, 91, 31), + (303903, 1, 50), + (303903, 168, 32), + (303903, 130, 25), + (303903, 19, 23), + (303903, 21, 23), + (303903, 118, -291), + (303903, 119, -291), + (303903, 120, -291), + (303903, 149, -291), + (303904, 96, 61), + (303904, 95, 61), + (303904, 97, 61), + (303904, 93, 61), + (303904, 94, 61), + (303904, 90, 61), + (303904, 92, 61), + (303904, 91, 61), + (303904, 1, 92), + (303904, 168, 51), + (303904, 96, 79), + (303904, 95, 79), + (303904, 97, 79), + (303904, 93, 79), + (303904, 94, 79), + (303904, 90, 79), + (303904, 92, 79), + (303904, 91, 79), + (303904, 1, 120), + (303904, 168, 62), + (303904, 130, 25), + (303904, 130, 50), + (303904, 19, 23), + (303904, 21, 23), + (303904, 118, -404), + (303904, 119, -404), + (303904, 120, -404), + (303904, 149, -404), + (303905, 96, 96), + (303905, 95, 96), + (303905, 97, 96), + (303905, 93, 96), + (303905, 94, 96), + (303905, 90, 96), + (303905, 92, 96), + (303905, 91, 96), + (303905, 1, 150), + (303905, 168, 74), + (303905, 96, 116), + (303905, 95, 116), + (303905, 97, 116), + (303905, 93, 116), + (303905, 94, 116), + (303905, 90, 116), + (303905, 92, 116), + (303905, 91, 116), + (303905, 1, 177), + (303905, 168, 85), + (303905, 153, 80), + (303905, 154, 80), + (303905, 155, 80), + (303905, 130, 25), + (303905, 130, 50), + (303905, 160, 75), + (303905, 205, 100), + (303905, 206, 100), + (303905, 207, 100), + (303905, 208, 100), + (303905, 216, 100), + (303905, 217, 100), + (303905, 219, 100), + (303905, 225, 100), + (303905, 156, -2500), + (303905, 164, -2000), + (303905, 19, 23), + (303905, 21, 23), + (303905, 118, -404), + (303905, 119, -404), + (303905, 120, -404), + (303905, 149, -404), + (303906, 96, 138), + (303906, 95, 138), + (303906, 97, 138), + (303906, 93, 138), + (303906, 94, 138), + (303906, 90, 138), + (303906, 92, 138), + (303906, 91, 138), + (303906, 1, 207), + (303906, 168, 96), + (303906, 96, 167), + (303906, 95, 167), + (303906, 97, 167), + (303906, 93, 167), + (303906, 94, 167), + (303906, 90, 167), + (303906, 92, 167), + (303906, 91, 167), + (303906, 1, 246), + (303906, 168, 111), + (303906, 153, 80), + (303906, 154, 80), + (303906, 155, 80), + (303906, 130, 50), + (303906, 160, 75), + (303906, 205, 100), + (303906, 206, 100), + (303906, 207, 100), + (303906, 208, 100), + (303906, 216, 100), + (303906, 217, 100), + (303906, 219, 100), + (303906, 225, 100), + (303906, 156, -2500), + (303906, 164, -2000), + (303906, 19, 23), + (303906, 21, 23), + (303906, 118, -643), + (303906, 119, -643), + (303906, 120, -643), + (303906, 149, -643), + (303907, 96, 200), + (303907, 95, 200), + (303907, 97, 200), + (303907, 93, 200), + (303907, 94, 200), + (303907, 90, 200), + (303907, 92, 200), + (303907, 91, 200), + (303907, 1, 281), + (303907, 168, 122), + (303907, 96, 230), + (303907, 95, 230), + (303907, 97, 230), + (303907, 93, 230), + (303907, 94, 230), + (303907, 90, 230), + (303907, 92, 230), + (303907, 91, 230), + (303907, 1, 307), + (303907, 168, 129), + (303907, 153, 80), + (303907, 154, 80), + (303907, 155, 80), + (303907, 130, 50), + (303907, 160, 75), + (303907, 205, 100), + (303907, 206, 100), + (303907, 207, 100), + (303907, 208, 100), + (303907, 216, 100), + (303907, 217, 100), + (303907, 219, 100), + (303907, 225, 100), + (303907, 156, -2500), + (303907, 164, -2000), + (303907, 205, 100), + (303907, 206, 100), + (303907, 207, 100), + (303907, 208, 100), + (303907, 216, 100), + (303907, 217, 100), + (303907, 219, 100), + (303907, 225, 100), + (303907, 156, -2500), + (303907, 164, -2000), + (303907, 19, 23), + (303907, 21, 23), + (303907, 118, -643), + (303907, 119, -643), + (303907, 120, -643), + (303907, 149, -643), + (303907, 118, -802), + (303907, 119, -802), + (303907, 120, -802), + (303907, 149, -802), + (303908, 97, 331), + (303908, 93, 331), + (303908, 94, 331), + (303908, 90, 331), + (303908, 92, 331), + (303908, 91, 331), + (303908, 96, 331), + (303908, 95, 331), + (303908, 1, 350), + (303908, 168, 140), + (303908, 153, 80), + (303908, 154, 80), + (303908, 155, 80), + (303908, 130, 180), + (303908, 205, 100), + (303908, 206, 100), + (303908, 207, 100), + (303908, 208, 100), + (303908, 216, 100), + (303908, 217, 100), + (303908, 219, 100), + (303908, 225, 100), + (303908, 156, -2500), + (303908, 164, -2000), + (303908, 19, 23), + (303908, 21, 23), + (303908, 19, 83), + (303908, 21, 83), + (303908, 130, 15), + (303908, 19, 48), + (303908, 21, 48), + (303908, 130, 4), + (303908, 380, -14), + (303908, 381, -14), + (303908, 380, -18), + (303908, 381, -18), + (303908, 118, -802), + (303908, 119, -802), + (303908, 120, -802), + (303908, 149, -802), + (303969, 106, 12), + (303969, 147, 30), + (303969, 144, 19), + (303969, 100, 16), + (303969, 101, 20), + (303969, 145, 12), + (303969, 106, 29), + (303969, 146, 30), + (303970, 106, 12), + (303970, 155, 30), + (303970, 153, 15), + (303970, 154, 15), + (303970, 17, 25), + (303970, 164, 20), + (303970, 147, 30), + (303970, 147, 70), + (303970, 144, 19), + (303970, 100, 16), + (303970, 144, 40), + (303970, 100, 34), + (303970, 101, 20), + (303970, 145, 12), + (303970, 101, 45), + (303970, 145, 27), + (303970, 106, 29), + (303970, 106, 54), + (303970, 146, 30), + (303970, 146, 70), + (303971, 106, 12), + (303971, 155, 30), + (303971, 153, 15), + (303971, 154, 15), + (303971, 17, 25), + (303971, 164, 20), + (303971, 155, 50), + (303971, 153, 25), + (303971, 154, 25), + (303971, 164, 45), + (303971, 17, 45), + (303971, 147, 70), + (303971, 147, 90), + (303971, 144, 40), + (303971, 100, 34), + (303971, 144, 75), + (303971, 100, 64), + (303971, 101, 45), + (303971, 145, 27), + (303971, 101, 80), + (303971, 145, 48), + (303971, 106, 54), + (303971, 106, 85), + (303971, 146, 70), + (303971, 146, 90), + (303972, 106, 12), + (303972, 155, 50), + (303972, 153, 25), + (303972, 154, 25), + (303972, 164, 45), + (303972, 17, 45), + (303972, 155, 75), + (303972, 153, 35), + (303972, 154, 35), + (303972, 164, 60), + (303972, 17, 65), + (303972, 147, 70), + (303972, 147, 90), + (303972, 147, 110), + (303972, 144, 75), + (303972, 100, 64), + (303972, 144, 94), + (303972, 100, 80), + (303972, 144, 110), + (303972, 100, 94), + (303972, 101, 45), + (303972, 145, 27), + (303972, 101, 80), + (303972, 145, 48), + (303972, 101, 112), + (303972, 145, 68), + (303972, 106, 54), + (303972, 106, 85), + (303972, 106, 110), + (303972, 279, 3), + (303972, 278, 3), + (303972, 280, 3), + (303972, 316, 3), + (303972, 311, 3), + (303972, 281, 3), + (303972, 317, 3), + (303972, 282, 3), + (303972, 146, 70), + (303972, 146, 90), + (303973, 106, 12), + (303973, 155, 50), + (303973, 153, 25), + (303973, 154, 25), + (303973, 164, 45), + (303973, 17, 45), + (303973, 155, 75), + (303973, 153, 35), + (303973, 154, 35), + (303973, 164, 60), + (303973, 17, 65), + (303973, 155, 70), + (303973, 153, 40), + (303973, 154, 40), + (303973, 17, 80), + (303973, 164, 80), + (303973, 147, 90), + (303973, 147, 110), + (303973, 147, 135), + (303973, 144, 75), + (303973, 100, 64), + (303973, 144, 94), + (303973, 100, 80), + (303973, 144, 110), + (303973, 100, 94), + (303973, 144, 127), + (303973, 100, 108), + (303973, 101, 45), + (303973, 145, 27), + (303973, 101, 80), + (303973, 145, 48), + (303973, 101, 112), + (303973, 145, 68), + (303973, 106, 54), + (303973, 106, 85), + (303973, 106, 110), + (303973, 279, 3), + (303973, 278, 3), + (303973, 280, 3), + (303973, 316, 3), + (303973, 311, 3), + (303973, 281, 3), + (303973, 317, 3), + (303973, 282, 3), + (303973, 106, 127), + (303973, 101, 4), + (303973, 279, 7), + (303973, 278, 7), + (303973, 280, 7), + (303973, 316, 7), + (303973, 311, 7), + (303973, 281, 7), + (303973, 317, 7), + (303973, 282, 7), + (303973, 146, 70), + (303973, 146, 90), + (303973, 146, 110), + (303974, 106, 12), + (303974, 155, 75), + (303974, 153, 35), + (303974, 154, 35), + (303974, 164, 60), + (303974, 17, 65), + (303974, 155, 70), + (303974, 153, 40), + (303974, 154, 40), + (303974, 17, 80), + (303974, 164, 80), + (303974, 147, 150), + (303974, 144, 127), + (303974, 100, 108), + (303974, 144, 140), + (303974, 100, 120), + (303974, 101, 112), + (303974, 145, 68), + (303974, 101, 130), + (303974, 145, 80), + (303974, 106, 127), + (303974, 101, 4), + (303974, 279, 7), + (303974, 278, 7), + (303974, 280, 7), + (303974, 316, 7), + (303974, 311, 7), + (303974, 281, 7), + (303974, 317, 7), + (303974, 282, 7), + (303974, 106, 140), + (303974, 101, 10), + (303974, 108, 80), + (303974, 279, 15), + (303974, 278, 15), + (303974, 280, 15), + (303974, 316, 15), + (303974, 311, 15), + (303974, 281, 15), + (303974, 317, 15), + (303974, 282, 15), + (303974, 146, 135), + (303974, 146, 150), + (303975, 1, 20), + (303975, 205, 10), + (303975, 206, 10), + (303975, 207, 10), + (303975, 208, 10), + (303975, 216, 10), + (303975, 217, 10), + (303975, 219, 10), + (303975, 225, 10), + (303975, 475, 1), + (303975, 476, 1), + (303975, 477, 1), + (303975, 478, 1), + (303975, 479, 1), + (303975, 480, 1), + (303975, 482, 1), + (303975, 483, 1), + (303975, 90, 42), + (303975, 91, 42), + (303975, 92, 42), + (303975, 93, 42), + (303975, 94, 42), + (303975, 95, 42), + (303975, 96, 42), + (303975, 97, 42), + (303975, 90, 68), + (303975, 91, 68), + (303975, 92, 68), + (303975, 93, 68), + (303975, 94, 68), + (303975, 95, 68), + (303975, 96, 68), + (303975, 97, 68), + (303975, 1, 58), + (303975, 343, 1), + (303975, 119, 28), + (303975, 112, 40), + (303975, 205, 12), + (303975, 206, 12), + (303975, 207, 12), + (303975, 208, 12), + (303975, 216, 12), + (303975, 217, 12), + (303975, 219, 12), + (303975, 225, 12), + (303975, 475, 4), + (303975, 476, 4), + (303975, 477, 4), + (303975, 478, 4), + (303975, 479, 4), + (303975, 480, 4), + (303975, 482, 4), + (303975, 483, 4), + (303975, 205, 13), + (303975, 206, 13), + (303975, 207, 13), + (303975, 208, 13), + (303975, 216, 13), + (303975, 217, 13), + (303975, 219, 13), + (303975, 225, 13), + (303975, 475, 7), + (303975, 476, 7), + (303975, 477, 7), + (303975, 478, 7), + (303975, 479, 7), + (303975, 480, 7), + (303975, 482, 7), + (303975, 483, 7), + (303975, 205, 75), + (303975, 206, 75), + (303975, 207, 75), + (303975, 208, 75), + (303975, 216, 75), + (303975, 217, 75), + (303975, 219, 75), + (303975, 225, 75), + (303975, 475, 7), + (303975, 476, 7), + (303975, 477, 7), + (303975, 478, 7), + (303975, 479, 7), + (303975, 480, 7), + (303975, 482, 7), + (303975, 483, 7), + (303975, 689, 10), + (303975, 205, 75), + (303975, 206, 75), + (303975, 207, 75), + (303975, 208, 75), + (303975, 216, 75), + (303975, 217, 75), + (303975, 219, 75), + (303975, 225, 75), + (303975, 475, 21), + (303975, 476, 21), + (303975, 477, 21), + (303975, 478, 21), + (303975, 479, 21), + (303975, 480, 21), + (303975, 482, 21), + (303975, 483, 21), + (303975, 689, 10), + (303976, 1, 20), + (303976, 205, 10), + (303976, 206, 10), + (303976, 207, 10), + (303976, 208, 10), + (303976, 216, 10), + (303976, 217, 10), + (303976, 219, 10), + (303976, 225, 10), + (303976, 475, 1), + (303976, 476, 1), + (303976, 477, 1), + (303976, 478, 1), + (303976, 479, 1), + (303976, 480, 1), + (303976, 482, 1), + (303976, 483, 1), + (303976, 90, 112), + (303976, 91, 112), + (303976, 92, 112), + (303976, 93, 112), + (303976, 94, 112), + (303976, 95, 112), + (303976, 96, 112), + (303976, 97, 112), + (303976, 90, 154), + (303976, 91, 154), + (303976, 92, 154), + (303976, 93, 154), + (303976, 94, 154), + (303976, 95, 154), + (303976, 96, 154), + (303976, 97, 154), + (303976, 116, 30), + (303976, 116, 60), + (303976, 148, 33), + (303976, 1, 105), + (303976, 343, 1), + (303976, 1, 176), + (303976, 343, 2), + (303976, 110, 45), + (303976, 153, 55), + (303976, 154, 55), + (303976, 155, 55), + (303976, 112, 40), + (303976, 133, 44), + (303976, 205, 75), + (303976, 206, 75), + (303976, 207, 75), + (303976, 208, 75), + (303976, 216, 75), + (303976, 217, 75), + (303976, 219, 75), + (303976, 225, 75), + (303976, 475, 38), + (303976, 476, 38), + (303976, 477, 38), + (303976, 478, 38), + (303976, 479, 38), + (303976, 480, 38), + (303976, 482, 38), + (303976, 483, 38), + (303976, 689, 10), + (303976, 205, 75), + (303976, 206, 75), + (303976, 207, 75), + (303976, 208, 75), + (303976, 216, 75), + (303976, 217, 75), + (303976, 219, 75), + (303976, 225, 75), + (303976, 475, 49), + (303976, 476, 49), + (303976, 477, 49), + (303976, 478, 49), + (303976, 479, 49), + (303976, 480, 49), + (303976, 482, 49), + (303976, 483, 49), + (303976, 689, 10), + (303976, 205, 14), + (303976, 206, 14), + (303976, 207, 14), + (303976, 208, 14), + (303976, 216, 14), + (303976, 217, 14), + (303976, 219, 14), + (303976, 225, 14), + (303976, 475, 10), + (303976, 476, 10), + (303976, 477, 10), + (303976, 478, 10), + (303976, 479, 10), + (303976, 480, 10), + (303976, 482, 10), + (303976, 483, 10), + (303976, 205, 15), + (303976, 206, 15), + (303976, 207, 15), + (303976, 208, 15), + (303976, 216, 15), + (303976, 217, 15), + (303976, 219, 15), + (303976, 225, 15), + (303976, 475, 14), + (303976, 476, 14), + (303976, 477, 14), + (303976, 478, 14), + (303976, 479, 14), + (303976, 480, 14), + (303976, 482, 14), + (303976, 483, 14), + (303976, 113, 50), + (303976, 167, 29), + (303976, 115, 30), + (303976, 118, 43), + (303976, 119, 43), + (303976, 120, 43), + (303976, 149, 43), + (303977, 1, 20), + (303977, 205, 10), + (303977, 206, 10), + (303977, 207, 10), + (303977, 208, 10), + (303977, 216, 10), + (303977, 217, 10), + (303977, 219, 10), + (303977, 225, 10), + (303977, 475, 1), + (303977, 476, 1), + (303977, 477, 1), + (303977, 478, 1), + (303977, 479, 1), + (303977, 480, 1), + (303977, 482, 1), + (303977, 483, 1), + (303977, 90, 196), + (303977, 91, 196), + (303977, 92, 196), + (303977, 93, 196), + (303977, 94, 196), + (303977, 95, 196), + (303977, 96, 196), + (303977, 97, 196), + (303977, 90, 238), + (303977, 91, 238), + (303977, 92, 238), + (303977, 93, 238), + (303977, 94, 238), + (303977, 95, 238), + (303977, 96, 238), + (303977, 97, 238), + (303977, 116, 60), + (303977, 148, 33), + (303977, 148, 48), + (303977, 278, 2), + (303977, 279, 2), + (303977, 280, 2), + (303977, 281, 2), + (303977, 282, 2), + (303977, 311, 2), + (303977, 317, 2), + (303977, 316, 2), + (303977, 1, 176), + (303977, 343, 2), + (303977, 110, 45), + (303977, 118, 43), + (303977, 119, 43), + (303977, 120, 43), + (303977, 149, 43), + (303977, 153, 55), + (303977, 154, 55), + (303977, 155, 55), + (303977, 112, 40), + (303977, 133, 70), + (303977, 205, 75), + (303977, 206, 75), + (303977, 207, 75), + (303977, 208, 75), + (303977, 216, 75), + (303977, 217, 75), + (303977, 219, 75), + (303977, 225, 75), + (303977, 475, 49), + (303977, 476, 49), + (303977, 477, 49), + (303977, 478, 49), + (303977, 479, 49), + (303977, 480, 49), + (303977, 482, 49), + (303977, 483, 49), + (303977, 689, 10), + (303977, 205, 75), + (303977, 206, 75), + (303977, 207, 75), + (303977, 208, 75), + (303977, 216, 75), + (303977, 217, 75), + (303977, 219, 75), + (303977, 225, 75), + (303977, 475, 66), + (303977, 476, 66), + (303977, 477, 66), + (303977, 478, 66), + (303977, 479, 66), + (303977, 480, 66), + (303977, 482, 66), + (303977, 483, 66), + (303977, 689, 10), + (303977, 205, 19), + (303977, 206, 19), + (303977, 207, 19), + (303977, 208, 19), + (303977, 216, 19), + (303977, 217, 19), + (303977, 219, 19), + (303977, 225, 19), + (303977, 475, 21), + (303977, 476, 21), + (303977, 477, 21), + (303977, 478, 21), + (303977, 479, 21), + (303977, 480, 21), + (303977, 482, 21), + (303977, 483, 21), + (303977, 205, 21), + (303977, 206, 21), + (303977, 207, 21), + (303977, 208, 21), + (303977, 216, 21), + (303977, 217, 21), + (303977, 219, 21), + (303977, 225, 21), + (303977, 475, 25), + (303977, 476, 25), + (303977, 477, 25), + (303977, 478, 25), + (303977, 479, 25), + (303977, 480, 25), + (303977, 482, 25), + (303977, 483, 25), + (303977, 113, 50), + (303977, 167, 43), + (303977, 167, 57), + (303977, 115, 50), + (303978, 1, 20), + (303978, 205, 10), + (303978, 206, 10), + (303978, 207, 10), + (303978, 208, 10), + (303978, 216, 10), + (303978, 217, 10), + (303978, 219, 10), + (303978, 225, 10), + (303978, 475, 1), + (303978, 476, 1), + (303978, 477, 1), + (303978, 478, 1), + (303978, 479, 1), + (303978, 480, 1), + (303978, 482, 1), + (303978, 483, 1), + (303978, 205, 22), + (303978, 206, 22), + (303978, 207, 22), + (303978, 208, 22), + (303978, 216, 22), + (303978, 217, 22), + (303978, 219, 22), + (303978, 225, 22), + (303978, 475, 29), + (303978, 476, 29), + (303978, 477, 29), + (303978, 478, 29), + (303978, 479, 29), + (303978, 480, 29), + (303978, 482, 29), + (303978, 483, 29), + (303978, 205, 24), + (303978, 206, 24), + (303978, 207, 24), + (303978, 208, 24), + (303978, 216, 24), + (303978, 217, 24), + (303978, 219, 24), + (303978, 225, 24), + (303978, 475, 33), + (303978, 476, 33), + (303978, 477, 33), + (303978, 478, 33), + (303978, 479, 33), + (303978, 480, 33), + (303978, 482, 33), + (303978, 483, 33), + (303978, 205, 25), + (303978, 206, 25), + (303978, 207, 25), + (303978, 208, 25), + (303978, 216, 25), + (303978, 217, 25), + (303978, 219, 25), + (303978, 225, 25), + (303978, 475, 37), + (303978, 476, 37), + (303978, 477, 37), + (303978, 478, 37), + (303978, 479, 37), + (303978, 480, 37), + (303978, 482, 37), + (303978, 483, 37), + (303978, 205, 75), + (303978, 206, 75), + (303978, 207, 75), + (303978, 208, 75), + (303978, 216, 75), + (303978, 217, 75), + (303978, 219, 75), + (303978, 225, 75), + (303978, 475, 80), + (303978, 476, 80), + (303978, 477, 80), + (303978, 478, 80), + (303978, 479, 80), + (303978, 480, 80), + (303978, 482, 80), + (303978, 483, 80), + (303978, 689, 10), + (303978, 205, 75), + (303978, 206, 75), + (303978, 207, 75), + (303978, 208, 75), + (303978, 216, 75), + (303978, 217, 75), + (303978, 219, 75), + (303978, 225, 75), + (303978, 475, 97), + (303978, 476, 97), + (303978, 477, 97), + (303978, 478, 97), + (303978, 479, 97), + (303978, 480, 97), + (303978, 482, 97), + (303978, 483, 97), + (303978, 689, 10), + (303978, 205, 75), + (303978, 206, 75), + (303978, 207, 75), + (303978, 208, 75), + (303978, 216, 75), + (303978, 217, 75), + (303978, 219, 75), + (303978, 225, 75), + (303978, 475, 111), + (303978, 476, 111), + (303978, 477, 111), + (303978, 478, 111), + (303978, 479, 111), + (303978, 480, 111), + (303978, 482, 111), + (303978, 483, 111), + (303978, 689, 10), + (303978, 133, 70), + (303978, 276, 30), + (303978, 90, 280), + (303978, 91, 280), + (303978, 92, 280), + (303978, 93, 280), + (303978, 94, 280), + (303978, 95, 280), + (303978, 96, 280), + (303978, 97, 280), + (303978, 90, 323), + (303978, 91, 323), + (303978, 92, 323), + (303978, 93, 323), + (303978, 94, 323), + (303978, 95, 323), + (303978, 96, 323), + (303978, 97, 323), + (303978, 116, 60), + (303978, 148, 62), + (303978, 278, 5), + (303978, 279, 5), + (303978, 280, 5), + (303978, 281, 5), + (303978, 282, 5), + (303978, 311, 5), + (303978, 317, 5), + (303978, 316, 5), + (303978, 148, 110), + (303978, 90, 125), + (303978, 91, 125), + (303978, 92, 125), + (303978, 93, 125), + (303978, 94, 125), + (303978, 95, 125), + (303978, 96, 125), + (303978, 97, 125), + (303978, 156, -150), + (303978, 1, 241), + (303978, 343, 2), + (303978, 1, 361), + (303978, 343, 3), + (303978, 110, 45), + (303978, 118, 43), + (303978, 119, 43), + (303978, 120, 43), + (303978, 149, 43), + (303978, 153, 55), + (303978, 154, 55), + (303978, 155, 55), + (303978, 112, 40), + (303979, 1, 20), + (303979, 205, 10), + (303979, 206, 10), + (303979, 207, 10), + (303979, 208, 10), + (303979, 216, 10), + (303979, 217, 10), + (303979, 219, 10), + (303979, 225, 10), + (303979, 475, 1), + (303979, 476, 1), + (303979, 477, 1), + (303979, 478, 1), + (303979, 479, 1), + (303979, 480, 1), + (303979, 482, 1), + (303979, 483, 1), + (303979, 276, 30), + (303979, 90, 450), + (303979, 91, 450), + (303979, 92, 450), + (303979, 93, 450), + (303979, 94, 450), + (303979, 95, 450), + (303979, 96, 450), + (303979, 97, 450), + (303979, 90, 530), + (303979, 91, 530), + (303979, 92, 530), + (303979, 93, 530), + (303979, 94, 530), + (303979, 95, 530), + (303979, 96, 530), + (303979, 97, 530), + (303979, 116, 60), + (303979, 116, 90), + (303979, 278, 5), + (303979, 279, 5), + (303979, 280, 5), + (303979, 281, 5), + (303979, 282, 5), + (303979, 311, 5), + (303979, 317, 5), + (303979, 316, 5), + (303979, 148, 10), + (303979, 148, 110), + (303979, 90, 125), + (303979, 91, 125), + (303979, 92, 125), + (303979, 93, 125), + (303979, 94, 125), + (303979, 95, 125), + (303979, 96, 125), + (303979, 97, 125), + (303979, 156, -150), + (303979, 1, 361), + (303979, 343, 3), + (303979, 1, 405), + (303979, 343, 3), + (303979, 110, 45), + (303979, 110, 85), + (303979, 118, 43), + (303979, 119, 43), + (303979, 120, 43), + (303979, 149, 43), + (303979, 118, 133), + (303979, 119, 133), + (303979, 120, 133), + (303979, 149, 133), + (303979, 150, 30), + (303979, 153, 55), + (303979, 154, 55), + (303979, 155, 55), + (303979, 112, 40), + (303979, 133, 70), + (303979, 205, 75), + (303979, 206, 75), + (303979, 207, 75), + (303979, 208, 75), + (303979, 216, 75), + (303979, 217, 75), + (303979, 219, 75), + (303979, 225, 75), + (303979, 475, 115), + (303979, 476, 115), + (303979, 477, 115), + (303979, 478, 115), + (303979, 479, 115), + (303979, 480, 115), + (303979, 482, 115), + (303979, 483, 115), + (303979, 689, 10), + (303979, 205, 75), + (303979, 206, 75), + (303979, 207, 75), + (303979, 208, 75), + (303979, 216, 75), + (303979, 217, 75), + (303979, 219, 75), + (303979, 225, 75), + (303979, 475, 136), + (303979, 476, 136), + (303979, 477, 136), + (303979, 478, 136), + (303979, 479, 136), + (303979, 480, 136), + (303979, 482, 136), + (303979, 483, 136), + (303979, 689, 10), + (303979, 475, 250), + (303979, 219, 77), + (303979, 217, 77), + (303979, 216, 77), + (303979, 208, 77), + (303979, 207, 77), + (303979, 206, 77), + (303979, 205, 77), + (303979, 483, 250), + (303979, 476, 250), + (303979, 477, 250), + (303979, 478, 250), + (303979, 479, 250), + (303979, 480, 250), + (303979, 482, 250), + (303979, 225, 77), + (303979, 535, 2), + (303979, 689, 10), + (303979, 205, 26), + (303979, 206, 26), + (303979, 207, 26), + (303979, 208, 26), + (303979, 216, 26), + (303979, 217, 26), + (303979, 219, 26), + (303979, 225, 26), + (303979, 475, 42), + (303979, 476, 42), + (303979, 477, 42), + (303979, 478, 42), + (303979, 479, 42), + (303979, 480, 42), + (303979, 482, 42), + (303979, 483, 42), + (303979, 205, 28), + (303979, 206, 28), + (303979, 207, 28), + (303979, 208, 28), + (303979, 216, 28), + (303979, 217, 28), + (303979, 219, 28), + (303979, 225, 28), + (303979, 475, 46), + (303979, 476, 46), + (303979, 477, 46), + (303979, 478, 46), + (303979, 479, 46), + (303979, 480, 46), + (303979, 482, 46), + (303979, 483, 46), + (303979, 205, 30), + (303979, 206, 30), + (303979, 207, 30), + (303979, 208, 30), + (303979, 216, 30), + (303979, 217, 30), + (303979, 219, 30), + (303979, 225, 30), + (303979, 475, 49), + (303979, 476, 49), + (303979, 477, 49), + (303979, 478, 49), + (303979, 479, 49), + (303979, 480, 49), + (303979, 482, 49), + (303979, 483, 49), + (303979, 113, 50), + (303979, 167, 71), + (303979, 167, 85), + (303979, 278, 3), + (303979, 279, 3), + (303979, 280, 3), + (303979, 281, 3), + (303979, 282, 3), + (303979, 311, 3), + (303979, 317, 3), + (303979, 316, 3), + (303979, 167, 92), + (303979, 278, 6), + (303979, 279, 6), + (303979, 280, 6), + (303979, 281, 6), + (303979, 282, 6), + (303979, 311, 6), + (303979, 317, 6), + (303979, 316, 6), + (303979, 119, 8), + (303979, 115, 50), + (303979, 108, 50), + (303979, 109, 50), + (303979, 110, 50), + (303979, 111, 50), + (303979, 112, 50), + (303979, 113, 50), + (303979, 114, 50), + (303979, 115, 50), + (303979, 116, 50), + (303979, 133, 50), + (303979, 155, -40), + (303979, 153, -40), + (303979, 154, -40), + (303980, 1, 20), + (303980, 205, 10), + (303980, 206, 10), + (303980, 207, 10), + (303980, 208, 10), + (303980, 216, 10), + (303980, 217, 10), + (303980, 219, 10), + (303980, 225, 10), + (303980, 475, 1), + (303980, 476, 1), + (303980, 477, 1), + (303980, 478, 1), + (303980, 479, 1), + (303980, 480, 1), + (303980, 482, 1), + (303980, 483, 1), + (303980, 276, 30), + (303980, 90, 530), + (303980, 91, 530), + (303980, 92, 530), + (303980, 93, 530), + (303980, 94, 530), + (303980, 95, 530), + (303980, 96, 530), + (303980, 97, 530), + (303980, 116, 90), + (303980, 278, 5), + (303980, 279, 5), + (303980, 280, 5), + (303980, 281, 5), + (303980, 282, 5), + (303980, 311, 5), + (303980, 317, 5), + (303980, 316, 5), + (303980, 148, 10), + (303980, 148, 110), + (303980, 90, 125), + (303980, 91, 125), + (303980, 92, 125), + (303980, 93, 125), + (303980, 94, 125), + (303980, 95, 125), + (303980, 96, 125), + (303980, 97, 125), + (303980, 156, -150), + (303980, 1, 405), + (303980, 343, 3), + (303980, 110, 120), + (303980, 110, 85), + (303980, 118, 133), + (303980, 119, 133), + (303980, 120, 133), + (303980, 149, 133), + (303980, 150, 30), + (303980, 153, 55), + (303980, 154, 55), + (303980, 155, 55), + (303980, 112, 40), + (303980, 133, 70), + (303980, 475, 300), + (303980, 219, 78), + (303980, 217, 78), + (303980, 216, 78), + (303980, 208, 78), + (303980, 207, 78), + (303980, 206, 78), + (303980, 205, 78), + (303980, 483, 300), + (303980, 476, 300), + (303980, 477, 300), + (303980, 478, 300), + (303980, 479, 300), + (303980, 480, 300), + (303980, 482, 300), + (303980, 225, 78), + (303980, 535, 3), + (303980, 689, 10), + (303980, 475, 350), + (303980, 219, 79), + (303980, 217, 79), + (303980, 216, 79), + (303980, 208, 79), + (303980, 207, 79), + (303980, 206, 79), + (303980, 205, 79), + (303980, 483, 350), + (303980, 476, 350), + (303980, 477, 350), + (303980, 478, 350), + (303980, 479, 350), + (303980, 480, 350), + (303980, 482, 350), + (303980, 225, 79), + (303980, 535, 5), + (303980, 689, 10), + (303980, 205, 30), + (303980, 206, 30), + (303980, 207, 30), + (303980, 208, 30), + (303980, 216, 30), + (303980, 217, 30), + (303980, 219, 30), + (303980, 225, 30), + (303980, 475, 49), + (303980, 476, 49), + (303980, 477, 49), + (303980, 478, 49), + (303980, 479, 49), + (303980, 480, 49), + (303980, 482, 49), + (303980, 483, 49), + (303980, 113, 50), + (303980, 167, 120), + (303980, 278, 10), + (303980, 279, 10), + (303980, 280, 10), + (303980, 281, 10), + (303980, 282, 10), + (303980, 311, 10), + (303980, 317, 10), + (303980, 316, 10), + (303980, 119, 15), + (303980, 153, 10), + (303980, 154, 10), + (303980, 115, 90), + (303980, 150, 2), + (303980, 108, 50), + (303980, 109, 50), + (303980, 110, 50), + (303980, 111, 50), + (303980, 112, 50), + (303980, 113, 50), + (303980, 114, 50), + (303980, 115, 50), + (303980, 116, 50), + (303980, 133, 50), + (303980, 155, -40), + (303980, 153, -40), + (303980, 154, -40), + (303981, 119, 15), + (303981, 161, 55), + (303981, 126, 40), + (303981, 157, 40), + (303981, 125, 40), + (303981, 159, 40), + (303981, 158, 40), + (303981, 118, -50), + (303981, 119, -50), + (303981, 120, -50), + (303981, 149, -50), + (303981, 113, 9), + (303981, 102, 9), + (303981, 107, 9), + (303981, 103, 9), + (303981, 105, 9), + (303981, 104, 9), + (303981, 106, 9), + (303981, 100, 9), + (303981, 109, 9), + (303981, 133, 9), + (303981, 110, 9), + (303981, 112, 9), + (303981, 130, 9), + (303981, 114, 9), + (303981, 115, 9), + (303981, 116, 9), + (303981, 108, 9), + (303981, 128, 9), + (303981, 122, 9), + (303981, 129, 9), + (303981, 127, 9), + (303981, 131, 9), + (303981, 111, 9), + (303981, 113, 13), + (303981, 102, 13), + (303981, 107, 13), + (303981, 103, 13), + (303981, 105, 13), + (303981, 104, 13), + (303981, 106, 13), + (303981, 100, 13), + (303981, 109, 13), + (303981, 133, 13), + (303981, 110, 13), + (303981, 112, 13), + (303981, 130, 13), + (303981, 114, 13), + (303981, 115, 13), + (303981, 116, 13), + (303981, 108, 13), + (303981, 128, 13), + (303981, 122, 13), + (303981, 129, 13), + (303981, 127, 13), + (303981, 131, 13), + (303981, 111, 13), + (303982, 126, 40), + (303982, 157, 40), + (303982, 125, 40), + (303982, 159, 40), + (303982, 158, 40), + (303982, 119, 15), + (303982, 161, 55), + (303982, 118, -73), + (303982, 119, -73), + (303982, 120, -73), + (303982, 149, -73), + (303982, 118, -85), + (303982, 119, -85), + (303982, 120, -85), + (303982, 149, -85), + (303982, 113, 37), + (303982, 102, 37), + (303982, 107, 37), + (303982, 103, 37), + (303982, 105, 37), + (303982, 104, 37), + (303982, 106, 37), + (303982, 100, 37), + (303982, 109, 37), + (303982, 133, 37), + (303982, 110, 37), + (303982, 112, 37), + (303982, 130, 37), + (303982, 114, 37), + (303982, 115, 37), + (303982, 116, 37), + (303982, 108, 37), + (303982, 128, 37), + (303982, 122, 37), + (303982, 129, 37), + (303982, 127, 37), + (303982, 131, 37), + (303982, 111, 37), + (303982, 113, 46), + (303982, 102, 46), + (303982, 107, 46), + (303982, 103, 46), + (303982, 105, 46), + (303982, 104, 46), + (303982, 106, 46), + (303982, 100, 46), + (303982, 109, 46), + (303982, 133, 46), + (303982, 110, 46), + (303982, 112, 46), + (303982, 130, 46), + (303982, 114, 46), + (303982, 115, 46), + (303982, 116, 46), + (303982, 108, 46), + (303982, 128, 46), + (303982, 122, 46), + (303982, 129, 46), + (303982, 127, 46), + (303982, 131, 46), + (303982, 111, 46), + (303983, 119, 15), + (303983, 161, 55), + (303983, 161, 160), + (303983, 126, 80), + (303983, 157, 80), + (303983, 125, 80), + (303983, 159, 80), + (303983, 158, 80), + (303983, 118, -85), + (303983, 119, -85), + (303983, 120, -85), + (303983, 149, -85), + (303983, 118, -115), + (303983, 119, -115), + (303983, 120, -115), + (303983, 149, -115), + (303983, 90, -244), + (303983, 91, -244), + (303983, 92, -244), + (303983, 93, -244), + (303983, 94, -244), + (303983, 95, -244), + (303983, 96, -244), + (303983, 97, -244), + (303983, 90, -202), + (303983, 91, -202), + (303983, 92, -202), + (303983, 93, -202), + (303983, 94, -202), + (303983, 95, -202), + (303983, 96, -202), + (303983, 97, -202), + (303983, 113, 46), + (303983, 102, 46), + (303983, 107, 46), + (303983, 103, 46), + (303983, 105, 46), + (303983, 104, 46), + (303983, 106, 46), + (303983, 100, 46), + (303983, 109, 46), + (303983, 133, 46), + (303983, 110, 46), + (303983, 112, 46), + (303983, 130, 46), + (303983, 114, 46), + (303983, 115, 46), + (303983, 116, 46), + (303983, 108, 46), + (303983, 128, 46), + (303983, 122, 46), + (303983, 129, 46), + (303983, 127, 46), + (303983, 131, 46), + (303983, 111, 46), + (303983, 113, 56), + (303983, 102, 56), + (303983, 107, 56), + (303983, 103, 56), + (303983, 105, 56), + (303983, 104, 56), + (303983, 106, 56), + (303983, 100, 56), + (303983, 109, 56), + (303983, 133, 56), + (303983, 110, 56), + (303983, 112, 56), + (303983, 130, 56), + (303983, 114, 56), + (303983, 115, 56), + (303983, 116, 56), + (303983, 108, 56), + (303983, 128, 56), + (303983, 122, 56), + (303983, 129, 56), + (303983, 127, 56), + (303983, 131, 56), + (303983, 111, 56), + (303983, 113, 65), + (303983, 102, 65), + (303983, 107, 65), + (303983, 103, 65), + (303983, 105, 65), + (303983, 104, 65), + (303983, 106, 65), + (303983, 100, 65), + (303983, 109, 65), + (303983, 133, 65), + (303983, 110, 65), + (303983, 112, 65), + (303983, 130, 65), + (303983, 114, 65), + (303983, 115, 65), + (303983, 116, 65), + (303983, 108, 65), + (303983, 128, 65), + (303983, 122, 65), + (303983, 129, 65), + (303983, 127, 65), + (303983, 131, 65), + (303983, 111, 65), + (303984, 126, 80), + (303984, 157, 80), + (303984, 125, 80), + (303984, 159, 80), + (303984, 158, 80), + (303984, 119, 45), + (303984, 153, 110), + (303984, 154, 110), + (303984, 155, 110), + (303984, 161, 160), + (303984, 118, -115), + (303984, 119, -115), + (303984, 120, -115), + (303984, 149, -115), + (303984, 118, -143), + (303984, 119, -143), + (303984, 120, -143), + (303984, 149, -143), + (303984, 90, -337), + (303984, 91, -337), + (303984, 92, -337), + (303984, 93, -337), + (303984, 94, -337), + (303984, 95, -337), + (303984, 96, -337), + (303984, 97, -337), + (303984, 90, -449), + (303984, 91, -449), + (303984, 92, -449), + (303984, 93, -449), + (303984, 94, -449), + (303984, 95, -449), + (303984, 96, -449), + (303984, 97, -449), + (303984, 90, -393), + (303984, 91, -393), + (303984, 92, -393), + (303984, 93, -393), + (303984, 94, -393), + (303984, 95, -393), + (303984, 96, -393), + (303984, 97, -393), + (303984, 90, -513), + (303984, 91, -513), + (303984, 92, -513), + (303984, 93, -513), + (303984, 94, -513), + (303984, 95, -513), + (303984, 96, -513), + (303984, 97, -513), + (303984, 113, 74), + (303984, 102, 74), + (303984, 107, 74), + (303984, 103, 74), + (303984, 105, 74), + (303984, 104, 74), + (303984, 106, 74), + (303984, 100, 74), + (303984, 109, 74), + (303984, 133, 74), + (303984, 110, 74), + (303984, 112, 74), + (303984, 130, 74), + (303984, 114, 74), + (303984, 115, 74), + (303984, 116, 74), + (303984, 108, 74), + (303984, 128, 74), + (303984, 122, 74), + (303984, 129, 74), + (303984, 127, 74), + (303984, 131, 74), + (303984, 111, 74), + (303984, 113, 85), + (303984, 102, 85), + (303984, 107, 85), + (303984, 103, 85), + (303984, 105, 85), + (303984, 104, 85), + (303984, 106, 85), + (303984, 100, 85), + (303984, 109, 85), + (303984, 133, 85), + (303984, 110, 85), + (303984, 112, 85), + (303984, 130, 85), + (303984, 114, 85), + (303984, 115, 85), + (303984, 116, 85), + (303984, 108, 85), + (303984, 128, 85), + (303984, 122, 85), + (303984, 129, 85), + (303984, 127, 85), + (303984, 131, 85), + (303984, 111, 85), + (303984, 113, 99), + (303984, 102, 99), + (303984, 107, 99), + (303984, 103, 99), + (303984, 105, 99), + (303984, 104, 99), + (303984, 106, 99), + (303984, 100, 99), + (303984, 109, 99), + (303984, 133, 99), + (303984, 110, 99), + (303984, 112, 99), + (303984, 130, 99), + (303984, 114, 99), + (303984, 115, 99), + (303984, 116, 99), + (303984, 108, 99), + (303984, 128, 99), + (303984, 122, 99), + (303984, 129, 99), + (303984, 127, 99), + (303984, 131, 99), + (303984, 111, 99), + (303985, 153, 110), + (303985, 154, 110), + (303985, 155, 110), + (303985, 161, 260), + (303985, 161, 160), + (303985, 126, 125), + (303985, 157, 125), + (303985, 125, 125), + (303985, 159, 125), + (303985, 158, 125), + (303985, 118, -173), + (303985, 119, -173), + (303985, 120, -173), + (303985, 149, -173), + (303985, 90, -1000), + (303985, 92, -1000), + (303985, 91, -1000), + (303985, 95, -1000), + (303985, 97, -1000), + (303985, 96, -1000), + (303985, 93, -1000), + (303985, 94, -1000), + (303985, 90, -2000), + (303985, 92, -2000), + (303985, 91, -2000), + (303985, 95, -2000), + (303985, 97, -2000), + (303985, 96, -2000), + (303985, 93, -2000), + (303985, 94, -2000), + (303985, 90, -3000), + (303985, 92, -3000), + (303985, 91, -3000), + (303985, 95, -3000), + (303985, 97, -3000), + (303985, 96, -3000), + (303985, 93, -3000), + (303985, 94, -3000), + (303985, 90, -4000), + (303985, 92, -4000), + (303985, 91, -4000), + (303985, 95, -4000), + (303985, 97, -4000), + (303985, 96, -4000), + (303985, 93, -4000), + (303985, 94, -4000), + (303985, 90, -444), + (303985, 92, -444), + (303985, 91, -444), + (303985, 95, -444), + (303985, 97, -444), + (303985, 96, -444), + (303985, 93, -444), + (303985, 94, -444), + (303985, 168, -80), + (303985, 168, -500), + (303985, 90, -1098), + (303985, 91, -1098), + (303985, 92, -1098), + (303985, 93, -1098), + (303985, 94, -1098), + (303985, 95, -1098), + (303985, 96, -1098), + (303985, 97, -1098), + (303985, 90, -1200), + (303985, 91, -1200), + (303985, 92, -1200), + (303985, 93, -1200), + (303985, 94, -1200), + (303985, 95, -1200), + (303985, 96, -1200), + (303985, 97, -1200), + (303985, 113, 112), + (303985, 102, 112), + (303985, 107, 112), + (303985, 103, 112), + (303985, 105, 112), + (303985, 104, 112), + (303985, 106, 112), + (303985, 100, 112), + (303985, 109, 112), + (303985, 133, 112), + (303985, 110, 112), + (303985, 112, 112), + (303985, 130, 112), + (303985, 114, 112), + (303985, 115, 112), + (303985, 116, 112), + (303985, 108, 112), + (303985, 128, 112), + (303985, 122, 112), + (303985, 129, 112), + (303985, 127, 112), + (303985, 131, 112), + (303985, 111, 112), + (303985, 113, 121), + (303985, 102, 121), + (303985, 107, 121), + (303985, 103, 121), + (303985, 105, 121), + (303985, 104, 121), + (303985, 106, 121), + (303985, 100, 121), + (303985, 109, 121), + (303985, 133, 121), + (303985, 110, 121), + (303985, 112, 121), + (303985, 130, 121), + (303985, 114, 121), + (303985, 115, 121), + (303985, 116, 121), + (303985, 108, 121), + (303985, 128, 121), + (303985, 122, 121), + (303985, 129, 121), + (303985, 127, 121), + (303985, 131, 121), + (303985, 111, 121), + (303985, 113, 131), + (303985, 102, 131), + (303985, 107, 131), + (303985, 103, 131), + (303985, 105, 131), + (303985, 104, 131), + (303985, 106, 131), + (303985, 100, 131), + (303985, 109, 131), + (303985, 133, 131), + (303985, 110, 131), + (303985, 112, 131), + (303985, 130, 131), + (303985, 114, 131), + (303985, 115, 131), + (303985, 116, 131), + (303985, 108, 131), + (303985, 128, 131), + (303985, 122, 131), + (303985, 129, 131), + (303985, 127, 131), + (303985, 131, 131), + (303985, 111, 131), + (303986, 126, 125), + (303986, 157, 125), + (303986, 125, 125), + (303986, 159, 125), + (303986, 158, 125), + (303986, 153, 110), + (303986, 154, 110), + (303986, 155, 110), + (303986, 161, 260), + (303986, 118, -173), + (303986, 119, -173), + (303986, 120, -173), + (303986, 149, -173), + (303986, 118, -233), + (303986, 119, -233), + (303986, 120, -233), + (303986, 149, -233), + (303986, 90, -1000), + (303986, 92, -1000), + (303986, 91, -1000), + (303986, 95, -1000), + (303986, 97, -1000), + (303986, 96, -1000), + (303986, 93, -1000), + (303986, 94, -1000), + (303986, 90, -2500), + (303986, 92, -2500), + (303986, 91, -2500), + (303986, 95, -2500), + (303986, 97, -2500), + (303986, 96, -2500), + (303986, 93, -2500), + (303986, 94, -2500), + (303986, 90, -4000), + (303986, 92, -4000), + (303986, 91, -4000), + (303986, 95, -4000), + (303986, 97, -4000), + (303986, 96, -4000), + (303986, 93, -4000), + (303986, 94, -4000), + (303986, 90, -6500), + (303986, 92, -6500), + (303986, 91, -6500), + (303986, 95, -6500), + (303986, 97, -6500), + (303986, 96, -6500), + (303986, 93, -6500), + (303986, 94, -6500), + (303986, 90, -722), + (303986, 92, -722), + (303986, 91, -722), + (303986, 95, -722), + (303986, 97, -722), + (303986, 96, -722), + (303986, 93, -722), + (303986, 94, -722), + (303986, 90, -1000), + (303986, 92, -1000), + (303986, 91, -1000), + (303986, 95, -1000), + (303986, 97, -1000), + (303986, 96, -1000), + (303986, 93, -1000), + (303986, 94, -1000), + (303986, 90, -3000), + (303986, 92, -3000), + (303986, 91, -3000), + (303986, 95, -3000), + (303986, 97, -3000), + (303986, 96, -3000), + (303986, 93, -3000), + (303986, 94, -3000), + (303986, 90, -6000), + (303986, 92, -6000), + (303986, 91, -6000), + (303986, 95, -6000), + (303986, 97, -6000), + (303986, 96, -6000), + (303986, 93, -6000), + (303986, 94, -6000), + (303986, 90, -9000), + (303986, 92, -9000), + (303986, 91, -9000), + (303986, 95, -9000), + (303986, 97, -9000), + (303986, 96, -9000), + (303986, 93, -9000), + (303986, 94, -9000), + (303986, 90, -1000), + (303986, 92, -1000), + (303986, 91, -1000), + (303986, 95, -1000), + (303986, 97, -1000), + (303986, 96, -1000), + (303986, 93, -1000), + (303986, 94, -1000), + (303986, 168, -120), + (303986, 168, -150), + (303986, 168, -900), + (303986, 168, -1700), + (303986, 90, -1098), + (303986, 91, -1098), + (303986, 92, -1098), + (303986, 93, -1098), + (303986, 94, -1098), + (303986, 95, -1098), + (303986, 96, -1098), + (303986, 97, -1098), + (303986, 90, -1200), + (303986, 91, -1200), + (303986, 92, -1200), + (303986, 93, -1200), + (303986, 94, -1200), + (303986, 95, -1200), + (303986, 96, -1200), + (303986, 97, -1200), + (303986, 113, 121), + (303986, 102, 121), + (303986, 107, 121), + (303986, 103, 121), + (303986, 105, 121), + (303986, 104, 121), + (303986, 106, 121), + (303986, 100, 121), + (303986, 109, 121), + (303986, 133, 121), + (303986, 110, 121), + (303986, 112, 121), + (303986, 130, 121), + (303986, 114, 121), + (303986, 115, 121), + (303986, 116, 121), + (303986, 108, 121), + (303986, 128, 121), + (303986, 122, 121), + (303986, 129, 121), + (303986, 127, 121), + (303986, 131, 121), + (303986, 111, 121), + (303986, 113, 131), + (303986, 102, 131), + (303986, 107, 131), + (303986, 103, 131), + (303986, 105, 131), + (303986, 104, 131), + (303986, 106, 131), + (303986, 100, 131), + (303986, 109, 131), + (303986, 133, 131), + (303986, 110, 131), + (303986, 112, 131), + (303986, 130, 131), + (303986, 114, 131), + (303986, 115, 131), + (303986, 116, 131), + (303986, 108, 131), + (303986, 128, 131), + (303986, 122, 131), + (303986, 129, 131), + (303986, 127, 131), + (303986, 131, 131), + (303986, 111, 131), + (303987, 181, 35), + (303988, 181, 45), + (303989, 181, 55), + (303990, 181, 100), + (303991, 181, 8), + (303992, 181, 25), + (303993, 45, 3), + (303994, 45, 4), + (303995, 45, 5), + (303996, 45, 6), + (303997, 45, 6), + (303998, 45, 6), + (304128, 16, 30), + (304128, 18, 30), + (304128, 93, 1200), + (304128, 95, 1200), + (304128, 92, 1200), + (304128, 97, 1200), + (304128, 91, 1200), + (304128, 96, 1200), + (304128, 90, 1200), + (304128, 94, 1200), + (304128, 1, 300), + (304128, 105, 20), + (304128, 221, 300), + (304128, 379, 1), + (304128, 278, 10), + (304128, 279, 10), + (304128, 280, 10), + (304128, 281, 10), + (304128, 282, 10), + (304128, 311, 10), + (304128, 316, 10), + (304128, 317, 10), + (304129, 93, 750), + (304129, 95, 750), + (304129, 92, 750), + (304129, 97, 750), + (304129, 91, 750), + (304129, 96, 750), + (304129, 90, 750), + (304129, 94, 750), + (304129, 1, 150), + (304129, 129, 15), + (304129, 130, 15), + (304129, 221, 150), + (304129, 277, 20), + (304129, 318, -2), + (304129, 379, 1), + (304129, 16, 25), + (304129, 17, 25), + (304129, 18, 25), + (304129, 19, 25), + (304129, 20, 25), + (304129, 21, 25), + (304130, 93, 1350), + (304130, 95, 1350), + (304130, 92, 1350), + (304130, 97, 1350), + (304130, 91, 1350), + (304130, 96, 1350), + (304130, 90, 1350), + (304130, 94, 1350), + (304130, 1, 250), + (304130, 105, 20), + (304130, 118, 60), + (304130, 221, 250), + (304130, 154, 30), + (304130, 153, 30), + (304130, 155, 45), + (304130, 156, 40), + (304143, 149, 3), + (304223, 124, 5), + (304223, 21, 5), + (304223, 20, 5), + (304223, 19, 5), + (304223, 18, 5), + (304223, 17, 5), + (304223, 16, 5), + (304223, 161, 5), + (304223, 319, 5), + (304224, 91, 10), + (304224, 90, 10), + (304224, 92, 10), + (304224, 97, 5), + (304224, 95, 15), + (304224, 94, 10), + (304224, 93, 10), + (304224, 96, 10), + (304224, 123, 2), + (304224, 124, 2), + (304224, 119, 5), + (304224, 118, 5), + (304224, 120, 5), + (304224, 149, 5), + (304224, 319, 5), + (304224, 181, 1), + (304224, 1, 5), + (304224, 221, 5), + (304224, 156, 5), + (304224, 139, 5), + (304224, 166, 5), + (304225, 91, 800), + (304225, 90, 800), + (304225, 92, 800), + (304225, 97, 400), + (304225, 95, 1200), + (304225, 94, 800), + (304225, 93, 800), + (304225, 96, 800), + (304225, 123, 10), + (304225, 124, 10), + (304225, 119, 20), + (304225, 118, 20), + (304225, 120, 20), + (304225, 149, 10), + (304225, 319, 5), + (304225, 181, 8), + (304225, 1, 250), + (304225, 221, 100), + (304225, 156, 10), + (304225, 139, 5), + (304225, 166, 5), + (304226, 91, 10), + (304226, 90, 10), + (304226, 92, 10), + (304226, 97, 5), + (304226, 95, 15), + (304226, 94, 10), + (304226, 93, 10), + (304226, 96, 10), + (304226, 123, 2), + (304226, 124, 2), + (304226, 119, 5), + (304226, 118, 5), + (304226, 120, 5), + (304226, 149, 5), + (304226, 181, 1), + (304226, 319, 5), + (304226, 1, 5), + (304226, 221, 5), + (304226, 156, 5), + (304226, 139, 5), + (304226, 166, 5), + (304227, 91, 800), + (304227, 90, 800), + (304227, 92, 800), + (304227, 97, 400), + (304227, 95, 1200), + (304227, 94, 800), + (304227, 93, 800), + (304227, 96, 800), + (304227, 123, 10), + (304227, 124, 10), + (304227, 119, 20), + (304227, 118, 20), + (304227, 120, 20), + (304227, 149, 10), + (304227, 181, 5), + (304227, 319, 5), + (304227, 1, 300), + (304227, 221, 100), + (304227, 156, 10), + (304227, 139, 5), + (304227, 166, 5), + (304228, 91, 10), + (304228, 90, 10), + (304228, 92, 10), + (304228, 97, 5), + (304228, 95, 15), + (304228, 94, 10), + (304228, 93, 10), + (304228, 96, 10), + (304228, 123, 14), + (304228, 124, 14), + (304228, 119, 2), + (304228, 118, 2), + (304228, 120, 2), + (304228, 149, 2), + (304228, 319, 5), + (304228, 181, 1), + (304228, 1, 5), + (304228, 221, 5), + (304228, 156, 5), + (304228, 139, 5), + (304228, 166, 5), + (304229, 91, 800), + (304229, 90, 800), + (304229, 92, 800), + (304229, 97, 400), + (304229, 95, 1200), + (304229, 94, 800), + (304229, 93, 800), + (304229, 96, 800), + (304229, 123, 14), + (304229, 124, 14), + (304229, 119, 20), + (304229, 118, 20), + (304229, 120, 20), + (304229, 149, 10), + (304229, 319, 5), + (304229, 181, 8), + (304229, 1, 300), + (304229, 221, 100), + (304229, 156, 10), + (304229, 139, 5), + (304229, 166, 5), + (304230, 91, 10), + (304230, 90, 10), + (304230, 92, 10), + (304230, 97, 5), + (304230, 95, 15), + (304230, 94, 10), + (304230, 93, 10), + (304230, 96, 10), + (304230, 123, 20), + (304230, 124, 20), + (304230, 119, 2), + (304230, 118, 2), + (304230, 120, 2), + (304230, 149, 2), + (304230, 181, 1), + (304230, 319, 5), + (304230, 1, 5), + (304230, 221, 5), + (304230, 139, 5), + (304230, 166, 5), + (304230, 156, 5), + (304231, 91, 800), + (304231, 90, 800), + (304231, 92, 800), + (304231, 97, 400), + (304231, 95, 1200), + (304231, 94, 800), + (304231, 93, 800), + (304231, 96, 800), + (304231, 123, 20), + (304231, 124, 20), + (304231, 119, 20), + (304231, 118, 20), + (304231, 120, 20), + (304231, 149, 10), + (304231, 181, 8), + (304231, 319, 5), + (304231, 1, 500), + (304231, 221, 100), + (304231, 139, 5), + (304231, 166, 5), + (304231, 156, 10), + (304232, 91, 10), + (304232, 90, 10), + (304232, 92, 10), + (304232, 97, 5), + (304232, 95, 15), + (304232, 94, 10), + (304232, 93, 10), + (304232, 96, 10), + (304232, 123, 14), + (304232, 124, 14), + (304232, 119, 2), + (304232, 118, 2), + (304232, 120, 2), + (304232, 149, 2), + (304232, 319, 5), + (304232, 181, 1), + (304232, 1, 5), + (304232, 221, 5), + (304232, 156, 5), + (304232, 139, 5), + (304232, 166, 5), + (304233, 91, 300), + (304233, 90, 300), + (304233, 92, 300), + (304233, 97, 150), + (304233, 95, 450), + (304233, 94, 300), + (304233, 93, 300), + (304233, 96, 300), + (304233, 123, 14), + (304233, 124, 14), + (304233, 119, 20), + (304233, 118, 20), + (304233, 120, 20), + (304233, 149, 10), + (304233, 319, 5), + (304233, 181, 8), + (304233, 1, 200), + (304233, 221, 50), + (304233, 156, 10), + (304233, 139, 5), + (304233, 166, 5), + (304234, 91, 10), + (304234, 90, 10), + (304234, 92, 10), + (304234, 97, 5), + (304234, 95, 15), + (304234, 94, 10), + (304234, 93, 10), + (304234, 96, 10), + (304234, 123, 10), + (304234, 124, 10), + (304234, 119, 2), + (304234, 118, 2), + (304234, 120, 2), + (304234, 149, 2), + (304234, 319, 5), + (304234, 181, 1), + (304234, 1, 5), + (304234, 221, 5), + (304234, 156, 5), + (304234, 139, 5), + (304234, 166, 5), + (304235, 91, 200), + (304235, 90, 200), + (304235, 92, 200), + (304235, 97, 100), + (304235, 95, 300), + (304235, 94, 200), + (304235, 93, 200), + (304235, 96, 200), + (304235, 123, 10), + (304235, 124, 10), + (304235, 119, 20), + (304235, 118, 20), + (304235, 120, 20), + (304235, 149, 10), + (304235, 319, 5), + (304235, 181, 8), + (304235, 1, 250), + (304235, 221, 50), + (304235, 156, 10), + (304235, 139, 5), + (304235, 166, 5), + (304236, 91, 10), + (304236, 90, 10), + (304236, 92, 10), + (304236, 97, 5), + (304236, 95, 15), + (304236, 94, 10), + (304236, 93, 10), + (304236, 96, 10), + (304236, 123, 6), + (304236, 124, 6), + (304236, 119, 2), + (304236, 118, 2), + (304236, 120, 2), + (304236, 149, 2), + (304236, 319, 5), + (304236, 181, 1), + (304236, 1, 5), + (304236, 221, 5), + (304236, 156, 5), + (304236, 139, 5), + (304236, 166, 5), + (304237, 91, 250), + (304237, 90, 250), + (304237, 92, 250), + (304237, 97, 125), + (304237, 95, 400), + (304237, 94, 250), + (304237, 93, 250), + (304237, 96, 250), + (304237, 123, 6), + (304237, 124, 6), + (304237, 119, 20), + (304237, 118, 20), + (304237, 120, 20), + (304237, 149, 10), + (304237, 319, 5), + (304237, 181, 8), + (304237, 1, 250), + (304237, 221, 50), + (304237, 156, 10), + (304237, 139, 5), + (304237, 166, 5), + (304238, 91, 10), + (304238, 90, 10), + (304238, 92, 10), + (304238, 97, 10), + (304238, 95, 10), + (304238, 94, 10), + (304238, 93, 10), + (304238, 96, 10), + (304238, 181, 1), + (304238, 1, 5), + (304238, 221, 5), + (304239, 91, 100), + (304239, 90, 100), + (304239, 92, 100), + (304239, 97, 100), + (304239, 95, 100), + (304239, 94, 100), + (304239, 93, 100), + (304239, 96, 100), + (304239, 181, 5), + (304239, 1, 200), + (304239, 221, 200), + (304240, 91, 10), + (304240, 90, 10), + (304240, 92, 10), + (304240, 97, 10), + (304240, 95, 10), + (304240, 94, 10), + (304240, 93, 10), + (304240, 96, 10), + (304240, 181, 1), + (304240, 1, 5), + (304240, 221, 5), + (304241, 91, 100), + (304241, 90, 100), + (304241, 92, 100), + (304241, 97, 100), + (304241, 95, 100), + (304241, 94, 100), + (304241, 93, 100), + (304241, 96, 100), + (304241, 181, 5), + (304241, 1, 250), + (304241, 221, 250), + (304242, 91, 10), + (304242, 90, 10), + (304242, 92, 10), + (304242, 97, 10), + (304242, 95, 10), + (304242, 94, 10), + (304242, 93, 10), + (304242, 96, 10), + (304242, 181, 1), + (304242, 1, 5), + (304242, 221, 5), + (304243, 91, 100), + (304243, 90, 100), + (304243, 92, 100), + (304243, 97, 100), + (304243, 95, 100), + (304243, 94, 100), + (304243, 93, 100), + (304243, 96, 100), + (304243, 181, 5), + (304243, 1, 200), + (304243, 221, 200), + (304244, 91, 10), + (304244, 90, 10), + (304244, 92, 10), + (304244, 97, 10), + (304244, 95, 10), + (304244, 94, 10), + (304244, 93, 10), + (304244, 96, 10), + (304244, 181, 1), + (304244, 1, 5), + (304244, 221, 5), + (304245, 91, 100), + (304245, 90, 100), + (304245, 92, 100), + (304245, 97, 100), + (304245, 95, 100), + (304245, 94, 100), + (304245, 93, 100), + (304245, 96, 100), + (304245, 181, 5), + (304245, 1, 250), + (304245, 221, 250), + (304246, 91, 10), + (304246, 90, 10), + (304246, 92, 10), + (304246, 97, 10), + (304246, 95, 10), + (304246, 94, 10), + (304246, 93, 10), + (304246, 96, 10), + (304246, 181, 1), + (304246, 1, 5), + (304246, 221, 5), + (304247, 91, 75), + (304247, 90, 75), + (304247, 92, 75), + (304247, 97, 75), + (304247, 95, 75), + (304247, 94, 75), + (304247, 93, 75), + (304247, 96, 75), + (304247, 181, 5), + (304247, 1, 100), + (304247, 221, 100), + (304248, 91, 10), + (304248, 90, 10), + (304248, 92, 10), + (304248, 97, 10), + (304248, 95, 10), + (304248, 94, 10), + (304248, 93, 10), + (304248, 96, 10), + (304248, 181, 1), + (304248, 1, 5), + (304248, 221, 5), + (304249, 91, 75), + (304249, 90, 75), + (304249, 92, 75), + (304249, 97, 75), + (304249, 95, 75), + (304249, 94, 75), + (304249, 93, 75), + (304249, 96, 75), + (304249, 181, 5), + (304249, 1, 100), + (304249, 221, 100), + (304250, 91, 10), + (304250, 90, 10), + (304250, 92, 10), + (304250, 97, 10), + (304250, 95, 10), + (304250, 94, 10), + (304250, 93, 10), + (304250, 96, 10), + (304250, 181, 1), + (304250, 1, 5), + (304250, 221, 5), + (304251, 91, 100), + (304251, 90, 100), + (304251, 92, 100), + (304251, 97, 100), + (304251, 95, 100), + (304251, 94, 100), + (304251, 93, 100), + (304251, 96, 100), + (304251, 181, 5), + (304251, 1, 100), + (304251, 221, 100), + (304363, 382, 50), + (304444, 91, 10), + (304444, 90, 10), + (304444, 92, 10), + (304444, 97, 10), + (304444, 95, 10), + (304444, 94, 10), + (304444, 93, 10), + (304444, 96, 10), + (304444, 119, 5), + (304444, 118, 5), + (304444, 120, 5), + (304444, 149, 5), + (304444, 181, 1), + (304444, 1, 5), + (304444, 221, 5), + (304444, 153, 5), + (304444, 154, 5), + (304444, 155, 5), + (304444, 168, 1), + (304444, 151, 1), + (304444, 146, 1), + (304444, 164, 1), + (304444, 276, 1), + (304444, 277, 1), + (304445, 91, 800), + (304445, 90, 800), + (304445, 92, 800), + (304445, 97, 1200), + (304445, 95, 1200), + (304445, 94, 600), + (304445, 93, 1000), + (304445, 96, 1300), + (304445, 119, 30), + (304445, 118, 30), + (304445, 120, 30), + (304445, 149, 30), + (304445, 181, 8), + (304445, 1, 150), + (304445, 221, 150), + (304445, 153, 25), + (304445, 154, 25), + (304445, 155, 25), + (304445, 168, 10), + (304445, 151, 35), + (304445, 146, 35), + (304445, 164, 35), + (304445, 276, 15), + (304445, 277, 15), + (304446, 91, 10), + (304446, 90, 10), + (304446, 92, 10), + (304446, 97, 10), + (304446, 95, 10), + (304446, 94, 10), + (304446, 93, 10), + (304446, 96, 10), + (304446, 119, 2), + (304446, 118, 2), + (304446, 120, 2), + (304446, 149, 2), + (304446, 181, 1), + (304446, 1, 5), + (304446, 221, 5), + (304446, 153, 5), + (304446, 154, 5), + (304446, 155, 5), + (304446, 168, 1), + (304446, 151, 1), + (304446, 146, 1), + (304446, 164, 1), + (304446, 276, 1), + (304446, 277, 1), + (304447, 91, 800), + (304447, 90, 800), + (304447, 92, 800), + (304447, 97, 800), + (304447, 95, 1200), + (304447, 94, 600), + (304447, 93, 1000), + (304447, 96, 1300), + (304447, 119, 30), + (304447, 118, 30), + (304447, 120, 30), + (304447, 149, 30), + (304447, 181, 8), + (304447, 1, 200), + (304447, 221, 200), + (304447, 153, 25), + (304447, 154, 25), + (304447, 155, 25), + (304447, 168, 10), + (304447, 151, 35), + (304447, 146, 35), + (304447, 164, 35), + (304447, 276, 15), + (304447, 277, 15), + (304448, 91, 10), + (304448, 90, 10), + (304448, 92, 10), + (304448, 97, 10), + (304448, 95, 10), + (304448, 94, 10), + (304448, 93, 10), + (304448, 96, 10), + (304448, 119, 5), + (304448, 118, 5), + (304448, 120, 5), + (304448, 149, 5), + (304448, 181, 1), + (304448, 1, 5), + (304448, 221, 5), + (304448, 153, 5), + (304448, 154, 5), + (304448, 155, 5), + (304448, 168, 1), + (304448, 151, 1), + (304448, 146, 1), + (304448, 164, 1), + (304448, 276, 1), + (304448, 277, 1), + (304449, 91, 400), + (304449, 90, 400), + (304449, 92, 400), + (304449, 97, 600), + (304449, 95, 600), + (304449, 94, 300), + (304449, 93, 500), + (304449, 96, 650), + (304449, 119, 30), + (304449, 118, 30), + (304449, 120, 30), + (304449, 149, 30), + (304449, 181, 5), + (304449, 1, 150), + (304449, 221, 150), + (304449, 153, 25), + (304449, 154, 25), + (304449, 155, 25), + (304449, 168, 10), + (304449, 151, 35), + (304449, 146, 35), + (304449, 164, 35), + (304449, 276, 15), + (304449, 277, 15), + (304450, 91, 10), + (304450, 90, 10), + (304450, 92, 10), + (304450, 97, 10), + (304450, 95, 10), + (304450, 94, 10), + (304450, 93, 10), + (304450, 96, 10), + (304450, 119, 2), + (304450, 118, 2), + (304450, 120, 2), + (304450, 149, 2), + (304450, 181, 1), + (304450, 1, 5), + (304450, 221, 5), + (304450, 153, 5), + (304450, 154, 5), + (304450, 155, 5), + (304450, 168, 1), + (304450, 151, 1), + (304450, 146, 1), + (304450, 164, 1), + (304450, 276, 1), + (304450, 277, 1), + (304451, 91, 800), + (304451, 90, 800), + (304451, 92, 800), + (304451, 97, 1200), + (304451, 95, 1200), + (304451, 94, 600), + (304451, 93, 1000), + (304451, 96, 1300), + (304451, 119, 30), + (304451, 118, 30), + (304451, 120, 30), + (304451, 149, 30), + (304451, 181, 8), + (304451, 1, 250), + (304451, 221, 250), + (304451, 153, 25), + (304451, 154, 25), + (304451, 155, 25), + (304451, 168, 10), + (304451, 151, 35), + (304451, 146, 35), + (304451, 164, 35), + (304451, 276, 15), + (304451, 277, 15), + (304452, 91, 10), + (304452, 90, 10), + (304452, 92, 10), + (304452, 97, 10), + (304452, 95, 10), + (304452, 94, 10), + (304452, 93, 10), + (304452, 96, 10), + (304452, 119, 2), + (304452, 118, 2), + (304452, 120, 2), + (304452, 149, 2), + (304452, 181, 1), + (304452, 1, 5), + (304452, 221, 5), + (304452, 153, 5), + (304452, 154, 5), + (304452, 155, 5), + (304452, 168, 1), + (304452, 151, 1), + (304452, 146, 1), + (304452, 164, 1), + (304452, 276, 1), + (304452, 277, 1), + (304453, 91, 300), + (304453, 90, 300), + (304453, 92, 300), + (304453, 97, 500), + (304453, 95, 500), + (304453, 94, 200), + (304453, 93, 400), + (304453, 96, 700), + (304453, 119, 30), + (304453, 118, 30), + (304453, 120, 30), + (304453, 149, 30), + (304453, 181, 8), + (304453, 1, 100), + (304453, 221, 100), + (304453, 153, 25), + (304453, 154, 25), + (304453, 155, 25), + (304453, 168, 10), + (304453, 151, 35), + (304453, 146, 35), + (304453, 164, 35), + (304453, 276, 15), + (304453, 277, 15), + (304454, 91, 10), + (304454, 90, 10), + (304454, 92, 10), + (304454, 97, 10), + (304454, 95, 10), + (304454, 94, 10), + (304454, 93, 10), + (304454, 96, 10), + (304454, 119, 2), + (304454, 118, 2), + (304454, 120, 2), + (304454, 149, 2), + (304454, 181, 1), + (304454, 1, 5), + (304454, 221, 5), + (304454, 153, 5), + (304454, 154, 5), + (304454, 155, 5), + (304454, 168, 1), + (304454, 151, 1), + (304454, 146, 1), + (304454, 164, 1), + (304454, 276, 1), + (304454, 277, 1), + (304455, 91, 200), + (304455, 90, 200), + (304455, 92, 200), + (304455, 97, 400), + (304455, 95, 400), + (304455, 94, 100), + (304455, 93, 300), + (304455, 96, 500), + (304455, 119, 30), + (304455, 118, 30), + (304455, 120, 30), + (304455, 149, 30), + (304455, 181, 8), + (304455, 1, 150), + (304455, 221, 150), + (304455, 153, 25), + (304455, 154, 25), + (304455, 155, 25), + (304455, 168, 10), + (304455, 151, 35), + (304455, 146, 35), + (304455, 164, 35), + (304455, 276, 15), + (304455, 277, 15), + (304456, 91, 10), + (304456, 90, 10), + (304456, 92, 10), + (304456, 97, 10), + (304456, 95, 10), + (304456, 94, 10), + (304456, 93, 10), + (304456, 96, 10), + (304456, 119, 2), + (304456, 118, 2), + (304456, 120, 2), + (304456, 149, 2), + (304456, 181, 1), + (304456, 1, 5), + (304456, 221, 5), + (304456, 153, 5), + (304456, 154, 5), + (304456, 155, 5), + (304456, 168, 1), + (304456, 151, 1), + (304456, 146, 1), + (304456, 164, 1), + (304456, 276, 1), + (304456, 277, 1), + (304457, 91, 250), + (304457, 90, 250), + (304457, 92, 250), + (304457, 97, 450), + (304457, 95, 450), + (304457, 94, 100), + (304457, 93, 300), + (304457, 96, 650), + (304457, 119, 30), + (304457, 118, 30), + (304457, 120, 30), + (304457, 149, 30), + (304457, 181, 8), + (304457, 1, 150), + (304457, 221, 150), + (304457, 153, 25), + (304457, 154, 25), + (304457, 155, 25), + (304457, 168, 10), + (304457, 151, 35), + (304457, 146, 35), + (304457, 164, 35), + (304457, 276, 15), + (304457, 277, 15), + (304458, 91, 10), + (304458, 90, 10), + (304458, 92, 10), + (304458, 97, 10), + (304458, 95, 10), + (304458, 94, 10), + (304458, 93, 10), + (304458, 96, 10), + (304458, 123, 1), + (304458, 124, 1), + (304458, 149, 1), + (304458, 319, 1), + (304458, 181, 1), + (304458, 1, 5), + (304458, 221, 5), + (304458, 156, 1), + (304459, 91, 75), + (304459, 90, 75), + (304459, 92, 75), + (304459, 97, 50), + (304459, 95, 50), + (304459, 94, 50), + (304459, 93, 50), + (304459, 96, 25), + (304459, 123, 2), + (304459, 124, 2), + (304459, 149, 5), + (304459, 319, 1), + (304459, 181, 3), + (304459, 1, 10), + (304459, 221, 10), + (304459, 156, 10), + (304460, 91, 10), + (304460, 90, 10), + (304460, 92, 10), + (304460, 97, 10), + (304460, 95, 10), + (304460, 94, 10), + (304460, 93, 10), + (304460, 96, 10), + (304460, 123, 1), + (304460, 124, 1), + (304460, 319, 1), + (304460, 181, 1), + (304460, 1, 5), + (304460, 221, 5), + (304460, 156, 5), + (304461, 91, 100), + (304461, 90, 100), + (304461, 92, 100), + (304461, 97, 75), + (304461, 95, 75), + (304461, 94, 75), + (304461, 93, 75), + (304461, 96, 40), + (304461, 123, 3), + (304461, 124, 3), + (304461, 319, 1), + (304461, 181, 3), + (304461, 1, 10), + (304461, 221, 10), + (304461, 156, 10), + (304462, 91, 10), + (304462, 90, 10), + (304462, 92, 10), + (304462, 97, 10), + (304462, 95, 10), + (304462, 94, 10), + (304462, 93, 10), + (304462, 96, 10), + (304462, 319, 1), + (304462, 181, 1), + (304462, 1, 5), + (304462, 221, 5), + (304462, 156, 5), + (304462, 161, 1), + (304463, 91, 50), + (304463, 90, 50), + (304463, 92, 50), + (304463, 97, 25), + (304463, 95, 25), + (304463, 94, 25), + (304463, 93, 25), + (304463, 96, 10), + (304463, 319, 1), + (304463, 181, 1), + (304463, 1, 10), + (304463, 221, 10), + (304463, 156, 10), + (304463, 161, 2), + (304464, 91, 10), + (304464, 90, 10), + (304464, 92, 10), + (304464, 97, 10), + (304464, 95, 10), + (304464, 94, 10), + (304464, 93, 10), + (304464, 96, 10), + (304464, 123, 1), + (304464, 124, 1), + (304464, 319, 2), + (304464, 181, 1), + (304464, 1, 5), + (304464, 221, 5), + (304464, 156, 5), + (304465, 91, 125), + (304465, 90, 125), + (304465, 92, 125), + (304465, 97, 75), + (304465, 95, 75), + (304465, 94, 75), + (304465, 93, 75), + (304465, 96, 25), + (304465, 123, 3), + (304465, 124, 3), + (304465, 319, 2), + (304465, 181, 5), + (304465, 1, 20), + (304465, 221, 20), + (304465, 156, 10), + (304466, 91, 10), + (304466, 90, 10), + (304466, 92, 10), + (304466, 97, 10), + (304466, 95, 10), + (304466, 94, 10), + (304466, 93, 10), + (304466, 96, 10), + (304466, 123, 1), + (304466, 124, 1), + (304466, 319, 1), + (304466, 181, 1), + (304466, 1, 5), + (304466, 221, 5), + (304466, 156, 5), + (304467, 91, 50), + (304467, 90, 50), + (304467, 92, 50), + (304467, 97, 25), + (304467, 95, 25), + (304467, 94, 25), + (304467, 93, 25), + (304467, 96, 10), + (304467, 123, 2), + (304467, 124, 2), + (304467, 319, 1), + (304467, 181, 2), + (304467, 1, 10), + (304467, 221, 10), + (304467, 156, 10), + (304468, 91, 10), + (304468, 90, 10), + (304468, 92, 10), + (304468, 97, 10), + (304468, 95, 10), + (304468, 94, 10), + (304468, 93, 10), + (304468, 96, 10), + (304468, 123, 1), + (304468, 124, 1), + (304468, 319, 1), + (304468, 181, 1), + (304468, 1, 5), + (304468, 221, 5), + (304468, 156, 5), + (304469, 91, 50), + (304469, 90, 50), + (304469, 92, 50), + (304469, 97, 25), + (304469, 95, 25), + (304469, 94, 25), + (304469, 93, 25), + (304469, 96, 10), + (304469, 123, 2), + (304469, 124, 2), + (304469, 319, 1), + (304469, 181, 2), + (304469, 1, 10), + (304469, 221, 10), + (304469, 156, 10), + (304470, 91, 10), + (304470, 90, 10), + (304470, 92, 10), + (304470, 97, 10), + (304470, 95, 10), + (304470, 94, 10), + (304470, 93, 10), + (304470, 96, 10), + (304470, 123, 1), + (304470, 124, 1), + (304470, 319, 2), + (304470, 181, 1), + (304470, 1, 5), + (304470, 221, 5), + (304470, 156, 5), + (304471, 91, 50), + (304471, 90, 50), + (304471, 92, 50), + (304471, 97, 25), + (304471, 95, 25), + (304471, 94, 25), + (304471, 93, 25), + (304471, 96, 10), + (304471, 123, 2), + (304471, 124, 2), + (304471, 319, 2), + (304471, 181, 2), + (304471, 1, 10), + (304471, 221, 10), + (304471, 156, 10), + (304472, 91, 10), + (304472, 90, 10), + (304472, 92, 10), + (304472, 97, 10), + (304472, 95, 10), + (304472, 94, 10), + (304472, 93, 10), + (304472, 96, 10), + (304472, 123, 2), + (304472, 124, 2), + (304472, 119, 5), + (304472, 118, 5), + (304472, 120, 5), + (304472, 149, 5), + (304472, 319, 2), + (304472, 181, 1), + (304472, 1, 5), + (304472, 221, 5), + (304472, 156, 5), + (304472, 161, 1), + (304473, 91, 200), + (304473, 90, 200), + (304473, 92, 200), + (304473, 97, 100), + (304473, 95, 100), + (304473, 94, 100), + (304473, 93, 100), + (304473, 96, 50), + (304473, 123, 5), + (304473, 124, 5), + (304473, 119, 10), + (304473, 118, 10), + (304473, 120, 10), + (304473, 149, 10), + (304473, 319, 2), + (304473, 181, 3), + (304473, 1, 30), + (304473, 221, 30), + (304473, 156, 15), + (304473, 161, 1), + (304474, 91, 400), + (304474, 90, 400), + (304474, 92, 400), + (304474, 97, 400), + (304474, 95, 400), + (304474, 94, 400), + (304474, 93, 400), + (304474, 96, 400), + (304474, 123, 10), + (304474, 124, 10), + (304474, 119, 10), + (304474, 118, 10), + (304474, 120, 10), + (304474, 149, 30), + (304474, 319, 5), + (304474, 181, 8), + (304474, 1, 100), + (304474, 221, 200), + (304474, 16, 6), + (304474, 17, 6), + (304474, 18, 6), + (304474, 19, 6), + (304474, 20, 6), + (304474, 21, 6), + (304474, 127, 10), + (304474, 130, 10), + (304474, 131, 10), + (304474, 128, 10), + (304474, 129, 10), + (304474, 122, 10), + (304475, 91, 400), + (304475, 90, 400), + (304475, 92, 400), + (304475, 97, 400), + (304475, 95, 400), + (304475, 94, 400), + (304475, 93, 400), + (304475, 96, 400), + (304475, 123, 10), + (304475, 124, 10), + (304475, 119, 10), + (304475, 118, 10), + (304475, 120, 10), + (304475, 149, 30), + (304475, 319, 5), + (304475, 181, 8), + (304475, 1, 100), + (304475, 221, 200), + (304475, 16, 6), + (304475, 17, 6), + (304475, 18, 6), + (304475, 19, 6), + (304475, 20, 6), + (304475, 21, 6), + (304475, 127, 10), + (304475, 130, 10), + (304475, 131, 10), + (304475, 128, 10), + (304475, 129, 10), + (304475, 122, 10), + (304476, 91, 400), + (304476, 90, 400), + (304476, 92, 400), + (304476, 97, 400), + (304476, 95, 400), + (304476, 94, 400), + (304476, 93, 400), + (304476, 96, 400), + (304476, 123, 14), + (304476, 124, 14), + (304476, 119, 10), + (304476, 118, 10), + (304476, 120, 10), + (304476, 149, 30), + (304476, 181, 8), + (304476, 319, 5), + (304476, 1, 100), + (304476, 221, 300), + (304476, 16, 6), + (304476, 17, 6), + (304476, 18, 6), + (304476, 19, 6), + (304476, 20, 6), + (304476, 21, 6), + (304476, 127, 10), + (304476, 130, 10), + (304476, 131, 10), + (304476, 128, 10), + (304476, 129, 10), + (304476, 122, 10), + (304477, 91, 400), + (304477, 90, 400), + (304477, 92, 400), + (304477, 97, 400), + (304477, 95, 400), + (304477, 94, 400), + (304477, 93, 400), + (304477, 96, 400), + (304477, 123, 14), + (304477, 124, 14), + (304477, 119, 10), + (304477, 118, 10), + (304477, 120, 10), + (304477, 149, 30), + (304477, 181, 8), + (304477, 319, 5), + (304477, 1, 100), + (304477, 221, 300), + (304477, 16, 6), + (304477, 17, 6), + (304477, 18, 6), + (304477, 19, 6), + (304477, 20, 6), + (304477, 21, 6), + (304477, 127, 10), + (304477, 130, 10), + (304477, 131, 10), + (304477, 128, 10), + (304477, 129, 10), + (304477, 122, 10), + (304478, 91, 200), + (304478, 90, 200), + (304478, 92, 200), + (304478, 97, 200), + (304478, 95, 200), + (304478, 94, 200), + (304478, 93, 200), + (304478, 96, 200), + (304478, 123, 10), + (304478, 124, 10), + (304478, 119, 10), + (304478, 118, 10), + (304478, 120, 10), + (304478, 149, 30), + (304478, 319, 5), + (304478, 181, 5), + (304478, 1, 50), + (304478, 221, 200), + (304478, 16, 6), + (304478, 17, 6), + (304478, 18, 6), + (304478, 19, 6), + (304478, 20, 6), + (304478, 21, 6), + (304478, 127, 10), + (304478, 130, 10), + (304478, 131, 10), + (304478, 128, 10), + (304478, 129, 10), + (304478, 122, 10), + (304479, 91, 200), + (304479, 90, 200), + (304479, 92, 200), + (304479, 97, 200), + (304479, 95, 200), + (304479, 94, 200), + (304479, 93, 200), + (304479, 96, 200), + (304479, 123, 10), + (304479, 124, 10), + (304479, 119, 10), + (304479, 118, 10), + (304479, 120, 10), + (304479, 149, 30), + (304479, 319, 5), + (304479, 181, 5), + (304479, 1, 50), + (304479, 221, 200), + (304479, 16, 6), + (304479, 17, 6), + (304479, 18, 6), + (304479, 19, 6), + (304479, 20, 6), + (304479, 21, 6), + (304479, 127, 10), + (304479, 130, 10), + (304479, 131, 10), + (304479, 128, 10), + (304479, 129, 10), + (304479, 122, 10), + (304480, 91, 400), + (304480, 90, 400), + (304480, 92, 400), + (304480, 97, 400), + (304480, 95, 400), + (304480, 94, 400), + (304480, 93, 400), + (304480, 96, 400), + (304480, 123, 20), + (304480, 124, 20), + (304480, 119, 10), + (304480, 118, 10), + (304480, 120, 10), + (304480, 149, 30), + (304480, 181, 8), + (304480, 319, 5), + (304480, 1, 100), + (304480, 221, 500), + (304480, 16, 6), + (304480, 17, 6), + (304480, 18, 6), + (304480, 19, 6), + (304480, 20, 6), + (304480, 21, 6), + (304480, 127, 10), + (304480, 130, 10), + (304480, 131, 10), + (304480, 128, 10), + (304480, 129, 10), + (304480, 122, 10), + (304481, 91, 400), + (304481, 90, 400), + (304481, 92, 400), + (304481, 97, 400), + (304481, 95, 400), + (304481, 94, 400), + (304481, 93, 400), + (304481, 96, 400), + (304481, 123, 20), + (304481, 124, 20), + (304481, 119, 10), + (304481, 118, 10), + (304481, 120, 10), + (304481, 149, 30), + (304481, 181, 8), + (304481, 319, 5), + (304481, 1, 100), + (304481, 221, 500), + (304481, 16, 6), + (304481, 17, 6), + (304481, 18, 6), + (304481, 19, 6), + (304481, 20, 6), + (304481, 21, 6), + (304481, 127, 10), + (304481, 130, 10), + (304481, 131, 10), + (304481, 128, 10), + (304481, 129, 10), + (304481, 122, 10), + (304482, 91, 100), + (304482, 90, 100), + (304482, 92, 100), + (304482, 97, 100), + (304482, 95, 100), + (304482, 94, 100), + (304482, 93, 100), + (304482, 96, 100), + (304482, 123, 14), + (304482, 124, 14), + (304482, 119, 10), + (304482, 118, 10), + (304482, 120, 10), + (304482, 149, 30), + (304482, 319, 5), + (304482, 181, 8), + (304482, 1, 50), + (304482, 221, 300), + (304482, 16, 5), + (304482, 17, 5), + (304482, 18, 5), + (304482, 19, 5), + (304482, 20, 5), + (304482, 21, 5), + (304482, 127, 10), + (304482, 130, 10), + (304482, 131, 10), + (304482, 128, 10), + (304482, 129, 10), + (304482, 122, 10), + (304483, 91, 100), + (304483, 90, 100), + (304483, 92, 100), + (304483, 97, 100), + (304483, 95, 100), + (304483, 94, 100), + (304483, 93, 100), + (304483, 96, 100), + (304483, 123, 14), + (304483, 124, 14), + (304483, 119, 10), + (304483, 118, 10), + (304483, 120, 10), + (304483, 149, 30), + (304483, 319, 5), + (304483, 181, 8), + (304483, 1, 50), + (304483, 221, 300), + (304483, 16, 5), + (304483, 17, 5), + (304483, 18, 5), + (304483, 19, 5), + (304483, 20, 5), + (304483, 21, 5), + (304483, 127, 10), + (304483, 130, 10), + (304483, 131, 10), + (304483, 128, 10), + (304483, 129, 10), + (304483, 122, 10), + (304484, 91, 100), + (304484, 90, 100), + (304484, 92, 100), + (304484, 97, 100), + (304484, 95, 100), + (304484, 94, 100), + (304484, 93, 100), + (304484, 96, 100), + (304484, 123, 10), + (304484, 124, 10), + (304484, 119, 10), + (304484, 118, 10), + (304484, 120, 10), + (304484, 149, 30), + (304484, 319, 5), + (304484, 181, 8), + (304484, 1, 75), + (304484, 221, 300), + (304484, 16, 6), + (304484, 17, 6), + (304484, 18, 6), + (304484, 19, 6), + (304484, 20, 6), + (304484, 21, 6), + (304484, 127, 10), + (304484, 130, 10), + (304484, 131, 10), + (304484, 128, 10), + (304484, 129, 10), + (304484, 122, 10), + (304485, 91, 100), + (304485, 90, 100), + (304485, 92, 100), + (304485, 97, 100), + (304485, 95, 100), + (304485, 94, 100), + (304485, 93, 100), + (304485, 96, 100), + (304485, 123, 10), + (304485, 124, 10), + (304485, 119, 10), + (304485, 118, 10), + (304485, 120, 10), + (304485, 149, 30), + (304485, 319, 5), + (304485, 181, 8), + (304485, 1, 75), + (304485, 221, 300), + (304485, 16, 6), + (304485, 17, 6), + (304485, 18, 6), + (304485, 19, 6), + (304485, 20, 6), + (304485, 21, 6), + (304485, 127, 10), + (304485, 130, 10), + (304485, 131, 10), + (304485, 128, 10), + (304485, 129, 10), + (304485, 122, 10), + (304486, 91, 250), + (304486, 90, 250), + (304486, 92, 250), + (304486, 97, 250), + (304486, 95, 250), + (304486, 94, 250), + (304486, 93, 250), + (304486, 96, 250), + (304486, 123, 6), + (304486, 124, 6), + (304486, 119, 10), + (304486, 118, 10), + (304486, 120, 10), + (304486, 149, 30), + (304486, 319, 5), + (304486, 181, 8), + (304486, 1, 75), + (304486, 221, 300), + (304486, 16, 6), + (304486, 17, 6), + (304486, 18, 6), + (304486, 19, 6), + (304486, 20, 6), + (304486, 21, 6), + (304486, 127, 10), + (304486, 130, 10), + (304486, 131, 10), + (304486, 128, 10), + (304486, 129, 10), + (304486, 122, 10), + (304487, 91, 250), + (304487, 90, 250), + (304487, 92, 250), + (304487, 97, 250), + (304487, 95, 250), + (304487, 94, 250), + (304487, 93, 250), + (304487, 96, 250), + (304487, 123, 6), + (304487, 124, 6), + (304487, 119, 10), + (304487, 118, 10), + (304487, 120, 10), + (304487, 149, 30), + (304487, 319, 5), + (304487, 181, 8), + (304487, 1, 75), + (304487, 221, 300), + (304487, 16, 6), + (304487, 17, 6), + (304487, 18, 6), + (304487, 19, 6), + (304487, 20, 6), + (304487, 21, 6), + (304487, 127, 10), + (304487, 130, 10), + (304487, 131, 10), + (304487, 128, 10), + (304487, 129, 10), + (304487, 122, 10), + (304488, 91, 400), + (304488, 90, 400), + (304488, 92, 400), + (304488, 97, 400), + (304488, 95, 400), + (304488, 94, 400), + (304488, 93, 400), + (304488, 96, 400), + (304488, 123, 10), + (304488, 124, 10), + (304488, 119, 10), + (304488, 118, 10), + (304488, 120, 10), + (304488, 149, 50), + (304488, 319, 5), + (304488, 181, 5), + (304488, 1, 100), + (304488, 221, 500), + (304488, 16, 7), + (304488, 17, 7), + (304488, 18, 7), + (304488, 19, 7), + (304488, 20, 7), + (304488, 21, 7), + (304488, 127, 10), + (304488, 130, 10), + (304488, 131, 10), + (304488, 128, 10), + (304488, 129, 10), + (304488, 122, 10), + (304489, 91, 400), + (304489, 90, 400), + (304489, 92, 400), + (304489, 97, 400), + (304489, 95, 400), + (304489, 94, 400), + (304489, 93, 400), + (304489, 96, 400), + (304489, 123, 10), + (304489, 124, 10), + (304489, 119, 10), + (304489, 118, 10), + (304489, 120, 10), + (304489, 149, 50), + (304489, 319, 5), + (304489, 181, 5), + (304489, 1, 100), + (304489, 221, 500), + (304489, 16, 7), + (304489, 17, 7), + (304489, 18, 7), + (304489, 19, 7), + (304489, 20, 7), + (304489, 21, 7), + (304489, 127, 10), + (304489, 130, 10), + (304489, 131, 10), + (304489, 128, 10), + (304489, 129, 10), + (304489, 122, 10), + (304497, 156, 150), + (304503, 45, 2), + (304504, 181, 3), + (304505, 90, 18), + (304505, 91, 18), + (304505, 92, 18), + (304505, 93, 18), + (304505, 94, 18), + (304505, 95, 18), + (304505, 96, 18), + (304505, 97, 18), + (304505, 226, 3), + (304505, 227, 3), + (304505, 228, 3), + (304505, 229, 3), + (304505, 230, 3), + (304505, 231, 3), + (304505, 233, 3), + (304505, 234, 3), + (304505, 226, 2), + (304505, 227, 2), + (304505, 228, 2), + (304505, 229, 2), + (304505, 230, 2), + (304505, 231, 2), + (304505, 233, 2), + (304505, 234, 2), + (304505, 156, 65), + (304506, 164, 20), + (304507, 156, -60), + (304507, 118, -416), + (304507, 119, -416), + (304507, 120, -416), + (304507, 149, -416), + (304507, 156, -150), + (304508, 1, 57), + (304508, 1, 118), + (304509, 102, 14), + (304509, 1, 18), + (304509, 226, 1), + (304509, 227, 1), + (304509, 228, 1), + (304509, 229, 1), + (304509, 230, 1), + (304509, 231, 1), + (304509, 234, 1), + (304509, 233, 1), + (304509, 276, 27), + (304509, 360, 16), + (304509, 1, 44), + (304509, 226, 3), + (304509, 227, 3), + (304509, 228, 3), + (304509, 229, 3), + (304509, 230, 3), + (304509, 231, 3), + (304509, 233, 3), + (304509, 234, 3), + (304509, 689, 20), + (304509, 1, 500), + (304509, 16, 10), + (304509, 18, 10), + (304510, 119, 12), + (304510, 90, 13), + (304510, 91, 13), + (304510, 92, 13), + (304510, 93, 13), + (304510, 94, 13), + (304510, 95, 13), + (304510, 96, 13), + (304510, 97, 13), + (304510, 90, 23), + (304510, 91, 23), + (304510, 92, 23), + (304510, 93, 23), + (304510, 94, 23), + (304510, 95, 23), + (304510, 96, 23), + (304510, 97, 23), + (304510, 226, 1), + (304510, 227, 1), + (304510, 228, 1), + (304510, 229, 1), + (304510, 230, 1), + (304510, 231, 1), + (304510, 233, 1), + (304510, 234, 1), + (304510, 91, 40), + (304511, 114, 8), + (304511, 148, 7), + (304511, 156, -100), + (304512, 104, 8), + (304512, 105, 12), + (304513, 100, 12), + (304513, 120, 8), + (304513, 90, 14), + (304513, 91, 16), + (304513, 92, 14), + (304513, 93, 14), + (304513, 94, 14), + (304513, 95, 14), + (304513, 96, 14), + (304513, 97, 14), + (304513, 90, 31), + (304513, 91, 36), + (304513, 92, 31), + (304513, 93, 31), + (304513, 94, 31), + (304513, 95, 31), + (304513, 96, 31), + (304513, 97, 31), + (304514, 118, -19), + (304514, 119, -19), + (304514, 120, -19), + (304515, 96, 17), + (304515, 95, 17), + (304515, 97, 17), + (304515, 93, 17), + (304515, 94, 17), + (304515, 90, 17), + (304515, 92, 17), + (304515, 91, 17), + (304515, 1, 27), + (304515, 168, 18), + (304516, 106, 12), + (304516, 144, 19), + (304516, 100, 16), + (304517, 1, 20), + (304517, 205, 10), + (304517, 206, 10), + (304517, 207, 10), + (304517, 208, 10), + (304517, 216, 10), + (304517, 217, 10), + (304517, 219, 10), + (304517, 225, 10), + (304517, 475, 1), + (304517, 476, 1), + (304517, 477, 1), + (304517, 478, 1), + (304517, 479, 1), + (304517, 480, 1), + (304517, 482, 1), + (304517, 483, 1), + (304517, 90, 21), + (304517, 91, 21), + (304517, 92, 21), + (304517, 93, 21), + (304517, 94, 21), + (304517, 95, 21), + (304517, 96, 21), + (304517, 97, 21), + (304517, 205, 75), + (304517, 206, 75), + (304517, 207, 75), + (304517, 208, 75), + (304517, 216, 75), + (304517, 217, 75), + (304517, 219, 75), + (304517, 225, 75), + (304517, 475, 7), + (304517, 476, 7), + (304517, 477, 7), + (304517, 478, 7), + (304517, 479, 7), + (304517, 480, 7), + (304517, 482, 7), + (304517, 483, 7), + (304517, 689, 10), + (304517, 205, 10), + (304517, 206, 10), + (304517, 207, 10), + (304517, 208, 10), + (304517, 216, 10), + (304517, 217, 10), + (304517, 219, 10), + (304517, 225, 10), + (304517, 475, 2), + (304517, 476, 2), + (304517, 477, 2), + (304517, 478, 2), + (304517, 479, 2), + (304517, 480, 2), + (304517, 482, 2), + (304517, 483, 2), + (304518, 119, 15), + (304518, 113, 3), + (304518, 102, 3), + (304518, 107, 3), + (304518, 103, 3), + (304518, 105, 3), + (304518, 104, 3), + (304518, 106, 3), + (304518, 100, 3), + (304518, 109, 3), + (304518, 133, 3), + (304518, 110, 3), + (304518, 112, 3), + (304518, 130, 3), + (304518, 114, 3), + (304518, 115, 3), + (304518, 116, 3), + (304518, 108, 3), + (304518, 128, 3), + (304518, 122, 3), + (304518, 129, 3), + (304518, 127, 3), + (304518, 131, 3), + (304518, 111, 3), + (304519, 91, 10), + (304519, 90, 10), + (304519, 92, 10), + (304519, 97, 10), + (304519, 95, 10), + (304519, 94, 10), + (304519, 93, 10), + (304519, 96, 10), + (304519, 119, 5), + (304519, 118, 5), + (304519, 120, 5), + (304519, 149, 5), + (304519, 181, 1), + (304519, 1, 5), + (304519, 221, 5), + (304520, 91, 1000), + (304520, 90, 1000), + (304520, 92, 1000), + (304520, 97, 1000), + (304520, 95, 1000), + (304520, 94, 1000), + (304520, 93, 1000), + (304520, 96, 1000), + (304520, 119, 10), + (304520, 118, 10), + (304520, 120, 10), + (304520, 149, 10), + (304520, 181, 5), + (304520, 1, 25), + (304520, 221, 25), + (304521, 91, 10), + (304521, 90, 10), + (304521, 92, 10), + (304521, 97, 10), + (304521, 95, 10), + (304521, 94, 10), + (304521, 93, 10), + (304521, 96, 10), + (304521, 119, 5), + (304521, 118, 5), + (304521, 120, 5), + (304521, 149, 5), + (304521, 181, 1), + (304521, 1, 5), + (304521, 221, 5), + (304522, 91, 600), + (304522, 90, 600), + (304522, 92, 600), + (304522, 97, 600), + (304522, 95, 600), + (304522, 94, 600), + (304522, 93, 600), + (304522, 96, 600), + (304522, 119, 10), + (304522, 118, 10), + (304522, 120, 10), + (304522, 149, 10), + (304522, 181, 5), + (304522, 1, 30), + (304522, 221, 30), + (304523, 91, 10), + (304523, 90, 10), + (304523, 92, 10), + (304523, 97, 10), + (304523, 95, 10), + (304523, 94, 10), + (304523, 93, 10), + (304523, 96, 10), + (304523, 119, 5), + (304523, 118, 5), + (304523, 120, 5), + (304523, 149, 5), + (304523, 181, 1), + (304523, 1, 5), + (304523, 221, 5), + (304524, 91, 700), + (304524, 90, 700), + (304524, 92, 700), + (304524, 97, 700), + (304524, 95, 700), + (304524, 94, 700), + (304524, 93, 700), + (304524, 96, 700), + (304524, 119, 7), + (304524, 118, 7), + (304524, 120, 7), + (304524, 149, 7), + (304524, 181, 7), + (304524, 1, 15), + (304524, 221, 15), + (304525, 91, 10), + (304525, 90, 10), + (304525, 92, 10), + (304525, 97, 10), + (304525, 95, 10), + (304525, 94, 10), + (304525, 93, 10), + (304525, 96, 10), + (304525, 119, 5), + (304525, 118, 5), + (304525, 120, 5), + (304525, 149, 5), + (304525, 181, 1), + (304525, 1, 5), + (304525, 221, 5), + (304526, 91, 850), + (304526, 90, 850), + (304526, 92, 850), + (304526, 97, 850), + (304526, 95, 850), + (304526, 94, 850), + (304526, 93, 850), + (304526, 96, 850), + (304526, 119, 15), + (304526, 118, 15), + (304526, 120, 15), + (304526, 149, 15), + (304526, 181, 5), + (304526, 1, 50), + (304526, 221, 50), + (304527, 91, 10), + (304527, 90, 10), + (304527, 92, 10), + (304527, 97, 10), + (304527, 95, 10), + (304527, 94, 10), + (304527, 93, 10), + (304527, 96, 10), + (304527, 119, 5), + (304527, 118, 5), + (304527, 120, 5), + (304527, 149, 5), + (304527, 181, 1), + (304527, 1, 5), + (304527, 221, 5), + (304528, 91, 150), + (304528, 90, 150), + (304528, 92, 150), + (304528, 97, 150), + (304528, 95, 150), + (304528, 94, 150), + (304528, 93, 150), + (304528, 96, 150), + (304528, 119, 7), + (304528, 118, 7), + (304528, 120, 7), + (304528, 149, 7), + (304528, 181, 5), + (304528, 1, 20), + (304528, 221, 20), + (304529, 91, 10), + (304529, 90, 10), + (304529, 92, 10), + (304529, 97, 10), + (304529, 95, 10), + (304529, 94, 10), + (304529, 93, 10), + (304529, 96, 10), + (304529, 119, 5), + (304529, 118, 5), + (304529, 120, 5), + (304529, 149, 5), + (304529, 181, 1), + (304529, 1, 5), + (304529, 221, 5), + (304530, 91, 100), + (304530, 90, 100), + (304530, 92, 100), + (304530, 97, 100), + (304530, 95, 100), + (304530, 94, 100), + (304530, 93, 100), + (304530, 96, 100), + (304530, 119, 7), + (304530, 118, 7), + (304530, 120, 7), + (304530, 149, 7), + (304530, 181, 5), + (304530, 1, 20), + (304530, 221, 20), + (304531, 91, 10), + (304531, 90, 10), + (304531, 92, 10), + (304531, 97, 10), + (304531, 95, 10), + (304531, 94, 10), + (304531, 93, 10), + (304531, 96, 10), + (304531, 119, 5), + (304531, 118, 5), + (304531, 120, 5), + (304531, 149, 5), + (304531, 181, 1), + (304531, 1, 5), + (304531, 221, 5), + (304532, 91, 250), + (304532, 90, 250), + (304532, 92, 250), + (304532, 97, 250), + (304532, 95, 250), + (304532, 94, 250), + (304532, 93, 250), + (304532, 96, 250), + (304532, 119, 7), + (304532, 118, 7), + (304532, 120, 7), + (304532, 149, 7), + (304532, 181, 5), + (304532, 1, 15), + (304532, 221, 15), + (304533, 91, 10), + (304533, 90, 10), + (304533, 92, 10), + (304533, 97, 10), + (304533, 95, 10), + (304533, 94, 10), + (304533, 93, 10), + (304533, 96, 10), + (304533, 119, 5), + (304533, 118, 5), + (304533, 120, 5), + (304533, 149, 5), + (304533, 181, 1), + (304533, 1, 30), + (304533, 221, 30), + (304533, 161, 1), + (304533, 276, 1), + (304533, 277, 1), + (304534, 91, 100), + (304534, 90, 100), + (304534, 92, 100), + (304534, 97, 100), + (304534, 95, 100), + (304534, 94, 100), + (304534, 93, 100), + (304534, 96, 100), + (304534, 119, 10), + (304534, 118, 10), + (304534, 120, 10), + (304534, 149, 10), + (304534, 181, 5), + (304534, 1, 100), + (304534, 221, 100), + (304534, 161, 10), + (304534, 276, 20), + (304534, 277, 20), + (304586, 123, 15), + (304586, 141, 150), + (304586, 156, 25), + (304586, 16, 1), + (304586, 17, 1), + (304586, 18, 1), + (304586, 19, 1), + (304586, 20, 1), + (304586, 21, 1), + (304586, 319, 2), + (304608, 168, 1000), + (304608, 118, 500), + (304608, 119, 500), + (304608, 120, 500), + (304608, 149, 500), + (304608, 276, 250), + (304608, 360, 100), + (304609, 1, 250), + (304609, 101, 25), + (304609, 118, 25), + (304609, 119, 25), + (304609, 120, 25), + (304609, 131, 8), + (304609, 149, 25), + (304609, 16, 8), + (304609, 181, 15), + (304609, 93, 400), + (304609, 95, 400), + (304609, 92, 400), + (304609, 97, 400), + (304609, 91, 500), + (304609, 96, 400), + (304609, 90, 500), + (304609, 94, 400), + (304610, 1, 250), + (304610, 111, 15), + (304610, 112, 15), + (304610, 113, 15), + (304610, 114, 15), + (304610, 130, 15), + (304610, 134, 20), + (304610, 145, 15), + (304610, 146, 15), + (304610, 147, 15), + (304610, 160, 10), + (304610, 181, 15), + (304610, 93, 500), + (304610, 95, 500), + (304610, 92, 500), + (304610, 97, 500), + (304610, 91, 500), + (304610, 96, 500), + (304610, 90, 500), + (304610, 94, 500), + (304611, 1, 350), + (304611, 116, 15), + (304611, 122, 15), + (304611, 123, 20), + (304611, 136, 20), + (304611, 151, 15), + (304611, 161, 15), + (304611, 181, 20), + (304611, 21, 14), + (304611, 221, 300), + (304611, 93, 1100), + (304611, 95, 1100), + (304611, 92, 1100), + (304611, 97, 1100), + (304611, 91, 1100), + (304611, 96, 1250), + (304611, 90, 1100), + (304611, 94, 1100), + (304612, 1, 350), + (304612, 104, 12), + (304612, 121, 12), + (304612, 124, 12), + (304612, 125, 2), + (304612, 126, 22), + (304612, 128, 12), + (304612, 133, 12), + (304612, 153, 22), + (304612, 154, 22), + (304612, 155, 22), + (304612, 181, 15), + (304612, 20, 12), + (304612, 93, 900), + (304612, 95, 1100), + (304612, 92, 900), + (304612, 97, 1100), + (304612, 91, 900), + (304612, 96, 900), + (304612, 90, 900), + (304612, 94, 900), + (304613, 1, 500), + (304613, 100, 15), + (304613, 129, 15), + (304613, 142, 15), + (304613, 143, 15), + (304613, 144, 15), + (304613, 181, 25), + (304613, 19, 12), + (304613, 318, -10), + (304613, 93, 1300), + (304613, 95, 1300), + (304613, 92, 1400), + (304613, 97, 1200), + (304613, 91, 1300), + (304613, 96, 1300), + (304613, 90, 1300), + (304613, 94, 1400), + (304614, 1, 350), + (304614, 115, 15), + (304614, 127, 15), + (304614, 139, 50), + (304614, 148, 15), + (304614, 150, 15), + (304614, 156, 100), + (304614, 167, 15), + (304614, 17, 12), + (304614, 181, 18), + (304614, 93, 750), + (304614, 95, 600), + (304614, 92, 600), + (304614, 97, 600), + (304614, 91, 600), + (304614, 96, 600), + (304614, 90, 600), + (304614, 94, 600), + (304615, 95, 600), + (304615, 92, 700), + (304615, 91, 700), + (304615, 90, 700), + (304615, 1, 100), + (304615, 104, 15), + (304615, 118, 35), + (304615, 133, 15), + (304615, 142, 15), + (304615, 221, 140), + (304615, 93, 500), + (304615, 154, 30), + (304615, 153, 30), + (304615, 155, 30), + (304615, 97, 500), + (304615, 96, 500), + (304615, 94, 600), + (304615, 156, 50), + (304616, 1, 250), + (304617, 91, 200), + (304617, 97, 200), + (304617, 161, 5), + (304617, 125, 15), + (304617, 158, 15), + (304617, 157, 15), + (304617, 160, 15), + (304617, 159, 15), + (304617, 163, 15), + (304617, 151, 5), + (304618, 105, 15), + (304618, 147, 15), + (304618, 155, 12), + (304618, 91, 100), + (304618, 92, 50), + (304618, 90, 75), + (304618, 94, 125), + (304619, 90, 15), + (304619, 91, 30), + (304619, 92, 25), + (304619, 93, 10), + (304619, 94, 5), + (304619, 95, 20), + (304619, 96, 30), + (304619, 97, 5), + (304619, 16, 8), + (304619, 18, 8), + (304619, 145, 20), + (304619, 153, 12), + (304619, 154, 12), + (304619, 155, 12), + (304619, 164, 15), + (304619, 155, 12), + (304620, 124, 14), + (304620, 123, 14), + (304620, 127, 12), + (304620, 128, 12), + (304620, 535, 1), + (304620, 318, -1), + (304621, 19, 8), + (304621, 21, 8), + (304621, 141, 24), + (304621, 319, 2), + (304622, 1, 500), + (304622, 221, 250), + (304636, 123, 10), + (304636, 141, 25), + (304636, 156, 50), + (304636, 16, 1), + (304636, 17, 1), + (304636, 18, 1), + (304636, 19, 1), + (304636, 20, 1), + (304636, 21, 1), + (304636, 319, 10), + (304637, 123, 15), + (304637, 1, 30), + (304637, 221, 30), + (304660, 91, 10), + (304660, 90, 10), + (304660, 92, 10), + (304660, 97, 10), + (304660, 95, 10), + (304660, 94, 10), + (304660, 93, 10), + (304660, 96, 10), + (304660, 123, 2), + (304660, 124, 2), + (304660, 119, 5), + (304660, 118, 5), + (304660, 120, 5), + (304660, 149, 5), + (304660, 319, 5), + (304660, 181, 1), + (304660, 1, 5), + (304660, 221, 5), + (304661, 91, 800), + (304661, 90, 800), + (304661, 92, 800), + (304661, 97, 800), + (304661, 95, 800), + (304661, 94, 800), + (304661, 93, 800), + (304661, 96, 800), + (304661, 123, 8), + (304661, 124, 8), + (304661, 119, 10), + (304661, 118, 10), + (304661, 120, 10), + (304661, 149, 10), + (304661, 319, 5), + (304661, 181, 5), + (304661, 1, 200), + (304661, 221, 200), + (304662, 91, 10), + (304662, 90, 10), + (304662, 92, 10), + (304662, 97, 10), + (304662, 95, 10), + (304662, 94, 10), + (304662, 93, 10), + (304662, 96, 10), + (304662, 123, 2), + (304662, 124, 2), + (304662, 119, 5), + (304662, 118, 5), + (304662, 120, 5), + (304662, 149, 5), + (304662, 181, 1), + (304662, 319, 5), + (304662, 1, 5), + (304662, 221, 5), + (304663, 91, 800), + (304663, 90, 800), + (304663, 92, 800), + (304663, 97, 800), + (304663, 95, 800), + (304663, 94, 800), + (304663, 93, 800), + (304663, 96, 800), + (304663, 123, 10), + (304663, 124, 10), + (304663, 119, 50), + (304663, 118, 50), + (304663, 120, 50), + (304663, 149, 50), + (304663, 181, 5), + (304663, 319, 5), + (304663, 1, 200), + (304663, 221, 200), + (304664, 91, 10), + (304664, 90, 10), + (304664, 92, 10), + (304664, 97, 10), + (304664, 95, 10), + (304664, 94, 10), + (304664, 93, 10), + (304664, 96, 10), + (304664, 123, 10), + (304664, 124, 10), + (304664, 119, 2), + (304664, 118, 2), + (304664, 120, 2), + (304664, 149, 2), + (304664, 181, 1), + (304664, 319, 5), + (304664, 1, 5), + (304664, 221, 5), + (304665, 91, 800), + (304665, 90, 800), + (304665, 92, 800), + (304665, 97, 800), + (304665, 95, 800), + (304665, 94, 800), + (304665, 93, 800), + (304665, 96, 800), + (304665, 123, 10), + (304665, 124, 10), + (304665, 119, 15), + (304665, 118, 15), + (304665, 120, 15), + (304665, 149, 15), + (304665, 181, 5), + (304665, 319, 5), + (304665, 1, 250), + (304665, 221, 250), + (304666, 91, 10), + (304666, 90, 10), + (304666, 92, 10), + (304666, 97, 10), + (304666, 95, 10), + (304666, 94, 10), + (304666, 93, 10), + (304666, 96, 10), + (304666, 123, 15), + (304666, 124, 15), + (304666, 119, 2), + (304666, 118, 2), + (304666, 120, 2), + (304666, 149, 2), + (304666, 319, 5), + (304666, 181, 1), + (304666, 1, 5), + (304666, 221, 5), + (304667, 91, 800), + (304667, 90, 800), + (304667, 92, 800), + (304667, 97, 800), + (304667, 95, 800), + (304667, 94, 800), + (304667, 93, 800), + (304667, 96, 800), + (304667, 123, 15), + (304667, 124, 15), + (304667, 119, 15), + (304667, 118, 15), + (304667, 120, 15), + (304667, 149, 15), + (304667, 319, 5), + (304667, 181, 5), + (304667, 1, 350), + (304667, 221, 350), + (304668, 91, 10), + (304668, 90, 10), + (304668, 92, 10), + (304668, 97, 10), + (304668, 95, 10), + (304668, 94, 10), + (304668, 93, 10), + (304668, 96, 10), + (304668, 123, 10), + (304668, 124, 10), + (304668, 119, 2), + (304668, 118, 2), + (304668, 120, 2), + (304668, 149, 2), + (304668, 181, 1), + (304668, 319, 5), + (304668, 1, 5), + (304668, 221, 5), + (304669, 91, 300), + (304669, 90, 300), + (304669, 92, 300), + (304669, 97, 300), + (304669, 95, 300), + (304669, 94, 300), + (304669, 93, 300), + (304669, 96, 300), + (304669, 123, 10), + (304669, 124, 10), + (304669, 119, 15), + (304669, 118, 15), + (304669, 120, 15), + (304669, 149, 15), + (304669, 181, 5), + (304669, 319, 5), + (304669, 1, 200), + (304669, 221, 200), + (304670, 91, 10), + (304670, 90, 10), + (304670, 92, 10), + (304670, 97, 10), + (304670, 95, 10), + (304670, 94, 10), + (304670, 93, 10), + (304670, 96, 10), + (304670, 123, 8), + (304670, 124, 8), + (304670, 119, 2), + (304670, 118, 2), + (304670, 120, 2), + (304670, 149, 2), + (304670, 319, 5), + (304670, 181, 1), + (304670, 1, 5), + (304670, 221, 5), + (304671, 91, 200), + (304671, 90, 200), + (304671, 92, 200), + (304671, 97, 200), + (304671, 95, 200), + (304671, 94, 200), + (304671, 93, 200), + (304671, 96, 200), + (304671, 123, 8), + (304671, 124, 8), + (304671, 119, 15), + (304671, 118, 15), + (304671, 120, 15), + (304671, 149, 15), + (304671, 319, 5), + (304671, 181, 5), + (304671, 1, 200), + (304671, 221, 200), + (304672, 91, 10), + (304672, 90, 10), + (304672, 92, 10), + (304672, 97, 10), + (304672, 95, 10), + (304672, 94, 10), + (304672, 93, 10), + (304672, 96, 10), + (304672, 123, 5), + (304672, 124, 5), + (304672, 119, 2), + (304672, 118, 2), + (304672, 120, 2), + (304672, 149, 2), + (304672, 319, 5), + (304672, 181, 1), + (304672, 1, 5), + (304672, 221, 5), + (304673, 91, 250), + (304673, 90, 250), + (304673, 92, 250), + (304673, 97, 250), + (304673, 95, 250), + (304673, 94, 250), + (304673, 93, 250), + (304673, 96, 250), + (304673, 123, 5), + (304673, 124, 5), + (304673, 119, 15), + (304673, 118, 20), + (304673, 120, 20), + (304673, 149, 20), + (304673, 319, 5), + (304673, 181, 5), + (304673, 1, 200), + (304673, 221, 200), + (304818, 19, 3), + (304818, 21, 3), + (304818, 221, 25), + (304819, 221, 18), + (304819, 168, 6), + (304819, 149, 14), + (304820, 17, 2), + (304820, 16, 2), + (304820, 142, 8), + (304820, 100, 8), + (304821, 379, 2), + (304821, 319, 4), + (304822, 276, 10), + (304822, 379, 1), + (304822, 277, 5), + (304822, 281, 8), + (304822, 311, 8), + (304822, 280, 8), + (304822, 316, 8), + (304822, 279, 8), + (304822, 317, 8), + (304822, 278, 8), + (304822, 282, 8), + (304900, 129, -110), + (304900, 122, -110), + (304900, 130, -110), + (304900, 131, -110), + (304900, 127, -110), + (304900, 128, -110), + (304916, 475, 200), + (304916, 476, 200), + (304916, 477, 200), + (304916, 478, 200), + (304916, 479, 200), + (304916, 480, 200), + (304916, 482, 200), + (304916, 483, 200), + (304916, 219, 50), + (304916, 208, 50), + (304916, 217, 50), + (304916, 207, 50), + (304916, 206, 50), + (304916, 218, 50), + (304916, 225, 50), + (304916, 205, 50), + (304916, 216, 50), + (304923, 118, -1000), + (304923, 120, -1000), + (304923, 149, -1000), + (304923, 119, -1000), + (304923, 279, -200), + (304923, 280, -200), + (304923, 278, -200), + (304923, 316, -200), + (304923, 311, -200), + (304923, 281, -200), + (304923, 317, -200), + (304923, 282, -200), + (304923, 92, -5000), + (304923, 91, -5000), + (304923, 90, -5000), + (304923, 97, -5000), + (304923, 95, -5000), + (304923, 96, -5000), + (304923, 93, -5000), + (304923, 94, -5000), + (304923, 535, -30), + (304923, 276, 55), + (304923, 279, 83), + (304923, 280, 83), + (304923, 278, 83), + (304923, 316, 83), + (304923, 311, 83), + (304923, 317, 83), + (304923, 281, 83), + (304923, 282, 83), + (304923, 227, 43), + (304923, 228, 43), + (304923, 226, 43), + (304923, 233, 43), + (304923, 231, 43), + (304923, 229, 43), + (304923, 234, 43), + (304923, 230, 43), + (305017, 93, 150), + (305017, 95, 150), + (305017, 92, 150), + (305017, 97, 150), + (305017, 91, 150), + (305017, 96, 150), + (305017, 90, 150), + (305017, 94, 150), + (305017, 154, 55), + (305017, 153, 55), + (305017, 155, 55), + (305017, 156, 100), + (305018, 93, 25), + (305018, 95, 25), + (305018, 92, 25), + (305018, 97, 25), + (305018, 91, 25), + (305018, 96, 25), + (305018, 90, 25), + (305018, 94, 25), + (305018, 154, 35), + (305018, 153, 35), + (305018, 155, 35), + (305018, 156, 40), + (305019, 93, 60), + (305019, 95, 60), + (305019, 92, 60), + (305019, 97, 60), + (305019, 91, 60), + (305019, 96, 60), + (305019, 90, 60), + (305019, 94, 60), + (305019, 154, 40), + (305019, 153, 40), + (305019, 155, 40), + (305019, 156, 75), + (305020, 93, 50), + (305020, 95, 50), + (305020, 92, 50), + (305020, 97, 50), + (305020, 91, 50), + (305020, 96, 50), + (305020, 90, 50), + (305020, 94, 50), + (305020, 154, 50), + (305020, 153, 50), + (305020, 155, 50), + (305020, 156, 75), + (305021, 19, 35), + (305021, 221, 300), + (305021, 319, 5), + (305022, 124, 15), + (305022, 123, 15), + (305022, 181, 75), + (305022, 118, 65), + (305022, 119, 65), + (305022, 120, 65), + (305022, 149, 65), + (305023, 93, 500), + (305023, 95, 500), + (305023, 92, 500), + (305023, 97, 500), + (305023, 91, 500), + (305023, 96, 500), + (305023, 90, 500), + (305023, 94, 500), + (305023, 318, -15), + (305023, 536, 2), + (305023, 127, 15), + (305023, 128, 15), + (305023, 129, 15), + (305023, 130, 15), + (305023, 131, 15), + (305023, 122, 15), + (305023, 181, 20), + (305023, 149, 30), + (305023, 168, 30), + (305023, 132, 50), + (305024, 20, 15), + (305024, 21, 15), + (305024, 277, 20), + (305024, 380, 10), + (305024, 168, 15), + (305024, 123, 20), + (305024, 159, 20), + (305024, 127, 15), + (305024, 155, 40), + (305024, 154, 40), + (305024, 153, 40), + (305024, 118, 45), + (305024, 119, 45), + (305024, 120, 45), + (305024, 152, 50), + (305024, 132, 50), + (305024, 93, 600), + (305024, 95, 600), + (305024, 92, 600), + (305024, 97, 600), + (305024, 91, 600), + (305024, 96, 600), + (305024, 90, 600), + (305024, 94, 600), + (305025, 113, 35), + (305025, 119, 200), + (305025, 151, 35), + (305025, 379, 3), + (305025, 380, 10), + (305026, 155, 20), + (305026, 221, 75), + (305026, 149, 25), + (305028, 181, 75), + (305028, 161, 15), + (305028, 168, 30), + (305029, 134, 25), + (305029, 101, 25), + (305030, 1, 1000), + (305031, 93, 200), + (305031, 95, 200), + (305031, 92, 200), + (305031, 97, 200), + (305031, 91, 200), + (305031, 96, 200), + (305031, 90, 200), + (305031, 94, 200), + (305031, 126, 40), + (305031, 157, 40), + (305031, 125, 40), + (305031, 160, 40), + (305031, 159, 40), + (305031, 158, 40), + (305032, 1, 200), + (305032, 92, 666), + (305033, 93, 2000), + (305033, 95, 2000), + (305033, 92, 2000), + (305033, 97, 2000), + (305033, 91, 2000), + (305033, 96, 2000), + (305033, 90, 2000), + (305033, 94, 2000), + (305033, 1, 500), + (305033, 221, 250), + (305034, 1, 200), + (305035, 1, 500), + (305037, 93, 1500), + (305037, 95, 1200), + (305037, 92, 1500), + (305037, 97, 1200), + (305037, 91, 1500), + (305037, 96, 1500), + (305037, 90, 1500), + (305037, 94, 1500), + (305037, 152, 40), + (305037, 132, 40), + (305037, 154, 30), + (305037, 153, 30), + (305037, 155, 30), + (305037, 168, 30), + (305038, 90, 500), + (305038, 91, 500), + (305038, 92, 500), + (305038, 93, 500), + (305038, 94, 500), + (305038, 95, 500), + (305038, 96, 500), + (305038, 97, 500), + (305038, 1, 650), + (305038, 221, 650), + (305039, 90, 500), + (305039, 91, 500), + (305039, 92, 500), + (305039, 93, 500), + (305039, 95, 500), + (305039, 96, 500), + (305039, 97, 500), + (305039, 100, 35), + (305039, 101, 30), + (305039, 102, 35), + (305039, 103, 35), + (305039, 104, 35), + (305039, 105, 35), + (305039, 106, 35), + (305039, 107, 35), + (305039, 118, 40), + (305039, 120, 35), + (305250, 276, 300), + (305250, 279, 200), + (305250, 280, 200), + (305250, 278, 200), + (305250, 316, 200), + (305250, 311, 200), + (305250, 317, 200), + (305250, 281, 200), + (305250, 282, 200), + (305250, 227, 250), + (305250, 228, 250), + (305250, 226, 250), + (305250, 233, 250), + (305250, 231, 250), + (305250, 229, 250), + (305250, 234, 250), + (305250, 230, 250), + (305292, 156, -2000), + (305322, 118, -1000), + (305322, 120, -1000), + (305322, 149, -1000), + (305322, 119, -1000), + (305322, 279, -200), + (305322, 280, -200), + (305322, 278, -200), + (305322, 316, -200), + (305322, 311, -200), + (305322, 281, -200), + (305322, 317, -200), + (305322, 282, -200), + (305322, 92, -5000), + (305322, 91, -5000), + (305322, 90, -5000), + (305322, 97, -5000), + (305322, 95, -5000), + (305322, 96, -5000), + (305322, 93, -5000), + (305322, 94, -5000), + (305322, 535, -30), + (305322, 122, -2000), + (305322, 131, -2000), + (305322, 130, -2000), + (305322, 129, -2000), + (305322, 128, -2000), + (305322, 127, -2000), + (305336, 156, -2000), + (305465, 1, 250), + (305465, 91, 1200), + (305465, 92, 1200), + (305465, 90, 1200), + (305465, 97, 1200), + (305465, 95, 1200), + (305465, 93, 1200), + (305465, 96, 1200), + (305465, 94, 1200), + (305466, 91, 1100), + (305466, 92, 1100), + (305466, 90, 1100), + (305466, 97, 1100), + (305466, 95, 1100), + (305466, 96, 1100), + (305466, 93, 1100), + (305466, 94, 1100), + (305466, 1, 200), + (305466, 221, 300), + (305466, 535, 5), + (305467, 1, 150), + (305467, 91, 1000), + (305467, 92, 1000), + (305467, 90, 1000), + (305467, 97, 1000), + (305467, 95, 1000), + (305467, 93, 1000), + (305467, 96, 1000), + (305467, 94, 1000), + (305467, 221, 150), + (305467, 343, 20), + (305467, 364, 20), + (305468, 1, 300), + (305468, 91, 900), + (305468, 92, 900), + (305468, 90, 900), + (305468, 97, 900), + (305468, 95, 900), + (305468, 93, 900), + (305468, 96, 900), + (305468, 94, 900), + (305468, 221, 150), + (305468, 226, 30), + (305468, 227, 30), + (305468, 228, 30), + (305468, 229, 30), + (305468, 230, 30), + (305468, 231, 30), + (305468, 233, 30), + (305468, 234, 30), + (305469, 1, 300), + (305469, 91, 800), + (305469, 92, 800), + (305469, 90, 800), + (305469, 97, 800), + (305469, 95, 800), + (305469, 93, 800), + (305469, 96, 800), + (305469, 94, 800), + (305469, 221, 300), + (305469, 153, 30), + (305469, 154, 30), + (305469, 155, 30), + (305469, 168, 30), + (305470, 154, 50), + (305470, 155, 50), + (305470, 153, 50), + (305470, 156, 50), + (305470, 91, 800), + (305470, 90, 800), + (305470, 92, 800), + (305470, 97, 800), + (305470, 95, 800), + (305470, 93, 800), + (305470, 94, 800), + (305470, 96, 800), + (305470, 1, 400), + (305470, 221, 400), + (305471, 90, 200), + (305471, 91, 200), + (305471, 92, 200), + (305471, 93, 200), + (305471, 94, 200), + (305471, 95, 200), + (305471, 96, 200), + (305471, 97, 200), + (305472, 90, 200), + (305472, 91, 200), + (305472, 92, 200), + (305472, 93, 200), + (305472, 94, 200), + (305472, 95, 200), + (305472, 96, 200), + (305472, 97, 200), + (305473, 90, 200), + (305473, 91, 200), + (305473, 92, 200), + (305473, 93, 200), + (305473, 94, 200), + (305473, 95, 200), + (305473, 96, 200), + (305473, 97, 200), + (305474, 90, 200), + (305474, 91, 200), + (305474, 92, 200), + (305474, 93, 200), + (305474, 94, 200), + (305474, 95, 200), + (305474, 96, 200), + (305474, 97, 200), + (305475, 90, 200), + (305475, 91, 200), + (305475, 92, 200), + (305475, 93, 200), + (305475, 94, 200), + (305475, 95, 200), + (305475, 96, 200), + (305475, 97, 200), + (305476, 1, 300), + (305476, 156, -100), + (305476, 17, -20), + (305476, 91, 250), + (305476, 92, 250), + (305476, 90, 250), + (305476, 97, 250), + (305476, 95, 250), + (305476, 93, 250), + (305476, 96, 250), + (305476, 94, 250), + (305478, 18, -9), + (305478, 16, 12), + (305478, 279, 44), + (305478, 280, 44), + (305478, 278, 44), + (305478, 316, 44), + (305478, 311, 44), + (305478, 281, 44), + (305478, 317, 44), + (305478, 282, 44), + (305480, 95, 142), + (305480, 96, 219), + (305480, 94, 219), + (305480, 93, 219), + (305480, 97, 219), + (305480, 90, 219), + (305480, 92, 219), + (305480, 91, 219), + (305480, 100, 35), + (305480, 153, 20), + (305480, 154, 20), + (305480, 155, 20), + (305480, 279, 15), + (305480, 280, 15), + (305480, 278, 15), + (305480, 316, 15), + (305480, 311, 15), + (305480, 281, 15), + (305480, 317, 15), + (305480, 282, 15), + (305480, 1, 150), + (305481, 93, 721), + (305481, 95, 684), + (305481, 92, 721), + (305481, 97, 684), + (305481, 91, 684), + (305481, 96, 684), + (305481, 90, 721), + (305481, 94, 684), + (305481, 164, 50), + (305481, 113, 10), + (305481, 151, 10), + (305481, 1, 200), + (305481, 181, 8), + (305481, 279, 10), + (305481, 278, 10), + (305481, 280, 10), + (305481, 311, 10), + (305481, 316, 10), + (305481, 281, 10), + (305481, 317, 10), + (305481, 282, 10), + (305481, 131, 15), + (305482, 93, 309), + (305482, 95, 271), + (305482, 92, 309), + (305482, 97, 271), + (305482, 91, 271), + (305482, 96, 271), + (305482, 90, 309), + (305482, 94, 271), + (305482, 164, 20), + (305482, 113, 8), + (305482, 151, 6), + (305482, 1, 200), + (305482, 181, 8), + (305482, 279, 10), + (305482, 278, 10), + (305482, 280, 10), + (305482, 316, 10), + (305482, 311, 10), + (305482, 317, 10), + (305482, 281, 10), + (305482, 282, 10), + (305482, 130, 15), + (305483, 93, 1217), + (305483, 95, 1173), + (305483, 92, 1217), + (305483, 97, 1173), + (305483, 91, 1173), + (305483, 96, 973), + (305483, 90, 1217), + (305483, 94, 973), + (305483, 164, 50), + (305483, 113, 20), + (305483, 151, 15), + (305483, 1, 300), + (305483, 181, 15), + (305483, 279, 12), + (305483, 278, 12), + (305483, 280, 12), + (305483, 311, 12), + (305483, 316, 12), + (305483, 317, 12), + (305483, 281, 12), + (305483, 282, 12), + (305484, 93, 279), + (305484, 95, 263), + (305484, 92, 279), + (305484, 97, 263), + (305484, 91, 263), + (305484, 96, 263), + (305484, 90, 279), + (305484, 94, 263), + (305484, 164, 20), + (305484, 113, 10), + (305484, 151, 14), + (305484, 1, 150), + (305484, 181, 8), + (305484, 279, 10), + (305484, 278, 10), + (305484, 280, 10), + (305484, 316, 10), + (305484, 311, 10), + (305484, 317, 10), + (305484, 281, 10), + (305484, 282, 10), + (305484, 149, 50), + (305484, 379, 3), + (305485, 93, 998), + (305485, 95, 872), + (305485, 92, 998), + (305485, 97, 872), + (305485, 91, 872), + (305485, 96, 872), + (305485, 90, 998), + (305485, 94, 872), + (305485, 164, 20), + (305485, 113, 10), + (305485, 151, 25), + (305485, 1, 250), + (305485, 181, 10), + (305485, 279, 15), + (305485, 280, 15), + (305485, 278, 15), + (305485, 316, 15), + (305485, 311, 15), + (305485, 317, 15), + (305485, 281, 15), + (305485, 282, 15), + (305485, 379, 3), + (305485, 119, 60), + (305486, 93, 1008), + (305486, 95, 981), + (305486, 92, 1008), + (305486, 97, 981), + (305486, 91, 981), + (305486, 96, 981), + (305486, 90, 1008), + (305486, 94, 981), + (305486, 164, 20), + (305486, 113, 10), + (305486, 151, 5), + (305486, 1, 200), + (305486, 181, 10), + (305486, 279, 10), + (305486, 278, 10), + (305486, 280, 10), + (305486, 311, 10), + (305486, 316, 10), + (305486, 281, 10), + (305486, 317, 10), + (305486, 282, 10), + (305486, 155, 45), + (305486, 154, 45), + (305487, 95, 350), + (305487, 96, 350), + (305487, 94, 350), + (305487, 93, 350), + (305487, 97, 350), + (305487, 90, 350), + (305487, 92, 350), + (305487, 91, 350), + (305487, 16, 12), + (305487, 1, 500), + (305487, 279, 15), + (305487, 280, 15), + (305487, 278, 15), + (305487, 316, 15), + (305487, 311, 15), + (305487, 281, 15), + (305487, 317, 15), + (305487, 282, 15), + (305487, 142, 35), + (305488, 181, 15), + (305488, 1, 100), + (305488, 279, 15), + (305488, 280, 15), + (305488, 278, 15), + (305488, 317, 15), + (305488, 92, 125), + (305488, 90, 125), + (305488, 91, 125), + (305488, 97, 125), + (305488, 95, 125), + (305488, 96, 125), + (305488, 93, 125), + (305488, 94, 125), + (305488, 128, 15), + (305488, 127, 15), + (305489, 181, 15), + (305489, 1, 100), + (305489, 535, 1), + (305489, 536, 1), + (305489, 92, 125), + (305489, 90, 125), + (305489, 91, 125), + (305489, 97, 125), + (305489, 95, 125), + (305489, 96, 125), + (305489, 93, 125), + (305489, 94, 125), + (305489, 130, 15), + (305489, 131, 15), + (305490, 181, 15), + (305490, 1, 100), + (305490, 281, 15), + (305490, 282, 15), + (305490, 311, 15), + (305490, 316, 15), + (305490, 92, 125), + (305490, 90, 125), + (305490, 91, 125), + (305490, 97, 125), + (305490, 95, 125), + (305490, 96, 125), + (305490, 93, 125), + (305490, 94, 125), + (305490, 129, 15), + (305490, 122, 15), + (305491, 96, 600), + (305491, 168, 36), + (305491, 1, 150), + (305493, 227, 20), + (305493, 226, 20), + (305493, 228, 20), + (305493, 233, 20), + (305493, 231, 20), + (305493, 229, 20), + (305493, 234, 20), + (305493, 230, 20), + (305493, 97, 600), + (305495, 1, 140), + (305495, 91, 92), + (305495, 90, 92), + (305495, 92, 92), + (305495, 97, 92), + (305495, 95, 92), + (305495, 96, 92), + (305495, 93, 92), + (305495, 94, 92), + (305496, 227, 20), + (305496, 226, 20), + (305496, 228, 20), + (305496, 233, 20), + (305496, 231, 20), + (305496, 229, 20), + (305496, 234, 20), + (305496, 230, 20), + (305496, 97, 600), + (305498, 221, 420), + (305498, 364, 15), + (305498, 277, 20), + (305499, 1, 420), + (305499, 343, 15), + (305499, 277, 10), + (305500, 142, 20), + (305500, 147, 20), + (305500, 1, 250), + (305500, 156, 45), + (305500, 91, 365), + (305500, 279, 37), + (305500, 280, 37), + (305500, 278, 37), + (305500, 316, 37), + (305500, 311, 37), + (305500, 317, 37), + (305500, 281, 37), + (305500, 282, 37), + (305516, 181, 200), + (305517, 181, 90), + (305517, 168, 40), + (305518, 181, 5), + (305518, 153, 30), + (305518, 155, 30), + (305518, 154, 30), + (305518, 168, 50), + (305519, 45, 5), + (305519, 168, 100), + (305519, 149, 500), + (305519, 153, 15), + (305519, 154, 15), + (305519, 154, 15), + (305520, 164, 50), + (305521, 154, 25), + (305521, 153, 25), + (305521, 155, 25), + (305522, 152, 30), + (305522, 134, 30), + (305522, 132, 30), + (305523, 221, 1000), + (305523, 382, -10), + (305523, 318, -5), + (305523, 535, 7), + (305523, 381, 120), + (305524, 221, 500), + (305524, 318, -5), + (305524, 536, 10), + (305524, 381, 150), + (305530, 1, 200), + (305530, 92, 666), + (305588, 91, 10), + (305588, 90, 10), + (305588, 92, 10), + (305588, 97, 10), + (305588, 95, 10), + (305588, 94, 10), + (305588, 93, 10), + (305588, 96, 10), + (305588, 123, 2), + (305588, 124, 2), + (305588, 119, 5), + (305588, 319, 5), + (305588, 1, 5), + (305588, 221, 5), + (305588, 118, 5), + (305588, 120, 5), + (305588, 149, 5), + (305588, 181, 1), + (305589, 91, 800), + (305589, 90, 800), + (305589, 92, 800), + (305589, 97, 800), + (305589, 95, 800), + (305589, 94, 800), + (305589, 93, 800), + (305589, 96, 800), + (305589, 123, 10), + (305589, 124, 10), + (305589, 119, 20), + (305589, 319, 5), + (305589, 1, 150), + (305589, 221, 150), + (305589, 118, 20), + (305589, 120, 20), + (305589, 149, 20), + (305589, 181, 8), + (305590, 91, 10), + (305590, 90, 10), + (305590, 92, 10), + (305590, 97, 10), + (305590, 95, 10), + (305590, 94, 10), + (305590, 93, 10), + (305590, 96, 10), + (305590, 123, 1), + (305590, 124, 1), + (305590, 119, 2), + (305590, 319, 2), + (305590, 1, 5), + (305590, 221, 5), + (305590, 181, 1), + (305590, 118, 2), + (305590, 120, 2), + (305590, 149, 2), + (305591, 91, 250), + (305591, 90, 250), + (305591, 92, 250), + (305591, 97, 250), + (305591, 95, 250), + (305591, 94, 250), + (305591, 93, 250), + (305591, 96, 250), + (305591, 123, 4), + (305591, 124, 4), + (305591, 119, 10), + (305591, 319, 2), + (305591, 1, 75), + (305591, 221, 75), + (305591, 181, 5), + (305591, 118, 10), + (305591, 120, 10), + (305591, 149, 10), + (305592, 91, 10), + (305592, 90, 10), + (305592, 92, 10), + (305592, 97, 10), + (305592, 95, 10), + (305592, 94, 10), + (305592, 93, 10), + (305592, 96, 10), + (305592, 123, 14), + (305592, 124, 14), + (305592, 119, 2), + (305592, 319, 5), + (305592, 1, 5), + (305592, 221, 5), + (305592, 181, 1), + (305592, 118, 2), + (305592, 120, 2), + (305592, 149, 2), + (305593, 91, 300), + (305593, 90, 300), + (305593, 92, 300), + (305593, 97, 300), + (305593, 95, 300), + (305593, 94, 300), + (305593, 93, 300), + (305593, 96, 300), + (305593, 123, 14), + (305593, 124, 14), + (305593, 119, 20), + (305593, 319, 5), + (305593, 1, 150), + (305593, 221, 150), + (305593, 181, 8), + (305593, 118, 20), + (305593, 120, 20), + (305593, 149, 20), + (305594, 91, 10), + (305594, 90, 10), + (305594, 92, 10), + (305594, 97, 10), + (305594, 95, 10), + (305594, 94, 10), + (305594, 93, 10), + (305594, 96, 10), + (305594, 123, 20), + (305594, 124, 20), + (305594, 119, 2), + (305594, 319, 5), + (305594, 1, 5), + (305594, 221, 5), + (305594, 181, 1), + (305594, 118, 2), + (305594, 120, 2), + (305594, 149, 2), + (305595, 91, 800), + (305595, 90, 800), + (305595, 92, 800), + (305595, 97, 800), + (305595, 95, 800), + (305595, 94, 800), + (305595, 93, 800), + (305595, 96, 800), + (305595, 123, 20), + (305595, 124, 20), + (305595, 119, 20), + (305595, 319, 5), + (305595, 1, 300), + (305595, 221, 300), + (305595, 181, 8), + (305595, 118, 20), + (305595, 120, 20), + (305595, 149, 20), + (305596, 91, 10), + (305596, 90, 10), + (305596, 92, 10), + (305596, 97, 10), + (305596, 95, 10), + (305596, 94, 10), + (305596, 93, 10), + (305596, 96, 10), + (305596, 123, 10), + (305596, 124, 10), + (305596, 119, 2), + (305596, 319, 5), + (305596, 1, 5), + (305596, 221, 5), + (305596, 181, 1), + (305596, 118, 2), + (305596, 120, 2), + (305596, 149, 2), + (305597, 91, 200), + (305597, 90, 200), + (305597, 92, 200), + (305597, 97, 200), + (305597, 95, 200), + (305597, 94, 200), + (305597, 93, 200), + (305597, 96, 200), + (305597, 123, 10), + (305597, 124, 10), + (305597, 119, 20), + (305597, 319, 5), + (305597, 1, 150), + (305597, 221, 150), + (305597, 181, 8), + (305597, 118, 20), + (305597, 120, 20), + (305597, 149, 20), + (305598, 91, 10), + (305598, 90, 10), + (305598, 92, 10), + (305598, 97, 10), + (305598, 95, 10), + (305598, 94, 10), + (305598, 93, 10), + (305598, 96, 10), + (305598, 123, 14), + (305598, 124, 14), + (305598, 119, 2), + (305598, 319, 5), + (305598, 1, 5), + (305598, 221, 5), + (305598, 181, 1), + (305598, 118, 2), + (305598, 120, 2), + (305598, 149, 2), + (305599, 91, 800), + (305599, 90, 800), + (305599, 92, 800), + (305599, 97, 800), + (305599, 95, 800), + (305599, 94, 800), + (305599, 93, 800), + (305599, 96, 800), + (305599, 123, 14), + (305599, 124, 14), + (305599, 119, 20), + (305599, 319, 5), + (305599, 1, 200), + (305599, 221, 200), + (305599, 181, 8), + (305599, 118, 20), + (305599, 120, 20), + (305599, 149, 20), + (305600, 91, 10), + (305600, 90, 10), + (305600, 92, 10), + (305600, 97, 10), + (305600, 95, 10), + (305600, 94, 10), + (305600, 93, 10), + (305600, 96, 10), + (305600, 123, 6), + (305600, 124, 6), + (305600, 119, 2), + (305600, 319, 5), + (305600, 1, 5), + (305600, 221, 5), + (305600, 181, 1), + (305600, 118, 2), + (305600, 120, 2), + (305600, 149, 2), + (305601, 91, 250), + (305601, 90, 250), + (305601, 92, 250), + (305601, 97, 250), + (305601, 95, 250), + (305601, 94, 250), + (305601, 93, 250), + (305601, 96, 250), + (305601, 123, 6), + (305601, 124, 6), + (305601, 119, 20), + (305601, 319, 5), + (305601, 1, 150), + (305601, 221, 150), + (305601, 181, 8), + (305601, 118, 20), + (305601, 120, 20), + (305601, 149, 20), + (305602, 91, 10), + (305602, 90, 10), + (305602, 92, 10), + (305602, 97, 10), + (305602, 95, 10), + (305602, 94, 10), + (305602, 93, 10), + (305602, 96, 10), + (305602, 123, 2), + (305602, 124, 2), + (305602, 119, 5), + (305602, 319, 5), + (305602, 1, 5), + (305602, 221, 5), + (305602, 181, 1), + (305602, 118, 5), + (305602, 120, 5), + (305602, 149, 5), + (305603, 91, 800), + (305603, 90, 800), + (305603, 92, 800), + (305603, 97, 800), + (305603, 95, 800), + (305603, 94, 800), + (305603, 93, 800), + (305603, 96, 800), + (305603, 123, 10), + (305603, 124, 10), + (305603, 119, 50), + (305603, 319, 5), + (305603, 1, 200), + (305603, 221, 200), + (305603, 181, 5), + (305603, 118, 50), + (305603, 120, 50), + (305603, 149, 50), + (305605, 277, 800), + (305605, 168, 200), + (305605, 149, 500), + (305605, 96, 1010), + (305605, 94, 1010), + (305605, 93, 1010), + (305605, 95, 1010), + (305605, 97, 1010), + (305605, 90, 1010), + (305605, 92, 1010), + (305605, 91, 1010), + (305768, 279, 2000), + (305772, 122, -2500), + (305772, 131, -2500), + (305772, 130, -2500), + (305772, 129, -2500), + (305772, 128, -2500), + (305772, 127, -2500), + (305780, 279, -1000), + (305780, 278, -1000), + (305780, 280, -1000), + (305780, 317, -1000), + (305780, 281, -1000), + (305780, 282, -1000), + (305780, 311, -1000), + (305780, 316, -1000), + (305807, 276, 100), + (305807, 278, 500), + (305807, 279, 500), + (305807, 280, 500), + (305807, 281, 500), + (305807, 282, 500), + (305807, 311, 500), + (305807, 316, 500), + (305807, 317, 500), + (305807, 379, 200), + (305962, 93, 800), + (305962, 95, 800), + (305962, 92, 800), + (305962, 97, 800), + (305962, 91, 800), + (305962, 96, 800), + (305962, 90, 800), + (305962, 94, 800), + (305962, 276, -25), + (305962, 277, 200), + (305962, 1, 300), + (305962, 168, 65), + (305962, 164, -300), + (305963, 93, 2500), + (305963, 95, 2500), + (305963, 92, 2500), + (305963, 97, 2500), + (305963, 91, 2500), + (305963, 96, 2500), + (305963, 90, 2500), + (305963, 94, 2500), + (305963, 97, 1500), + (305963, 1, 1500), + (305964, 93, 250), + (305964, 95, 250), + (305964, 92, 250), + (305964, 97, 250), + (305964, 91, 250), + (305964, 96, 250), + (305964, 90, 250), + (305964, 94, 250), + (305964, 126, 35), + (305964, 157, 35), + (305964, 125, 35), + (305964, 160, 35), + (305964, 159, 35), + (305964, 158, 35), + (305964, 1, 200), + (305965, 1, 750), + (305967, 93, 900), + (305967, 95, 1800), + (305967, 92, 1800), + (305967, 97, 1800), + (305967, 91, 1800), + (305967, 96, 900), + (305967, 90, 1800), + (305967, 94, 1800), + (305967, 1, 500), + (305967, 221, 500), + (305967, 17, 5), + (305967, 19, 5), + (305967, 21, 5), + (305967, 20, 5), + (305967, 18, 5), + (305967, 16, 5), + (305967, 276, 15), + (305967, 277, 15), + (305967, 161, 14), + (305967, 154, 6), + (305967, 153, 6), + (305967, 155, 6), + (305967, 535, 1), + (305967, 181, 10), + (305967, 168, 6), + (305967, 536, 1), + (305967, 364, 5), + (305967, 149, 12), + (305967, 318, -3), + (305968, 93, 900), + (305968, 95, 1800), + (305968, 92, 1800), + (305968, 97, 1800), + (305968, 91, 1800), + (305968, 96, 900), + (305968, 90, 1800), + (305968, 94, 1800), + (305968, 1, 500), + (305968, 221, 500), + (305968, 17, 5), + (305968, 19, 5), + (305968, 21, 5), + (305968, 20, 5), + (305968, 18, 5), + (305968, 16, 5), + (305968, 276, 10), + (305968, 277, 10), + (305968, 161, 14), + (305968, 154, 6), + (305968, 153, 6), + (305968, 155, 6), + (305968, 535, 1), + (305968, 181, 10), + (305968, 168, 6), + (305968, 536, 1), + (305968, 364, 5), + (305968, 149, 12), + (305968, 318, -3), + (305969, 93, 200), + (305969, 95, 400), + (305969, 92, 400), + (305969, 97, 400), + (305969, 91, 400), + (305969, 96, 200), + (305969, 90, 400), + (305969, 94, 400), + (305969, 1, 200), + (305969, 221, 200), + (305969, 17, 5), + (305969, 19, 5), + (305969, 21, 5), + (305969, 20, 5), + (305969, 18, 5), + (305969, 16, 5), + (305969, 276, 10), + (305969, 277, 10), + (305969, 161, 14), + (305969, 154, 6), + (305969, 153, 6), + (305969, 155, 6), + (305969, 535, 1), + (305969, 181, 10), + (305969, 168, 6), + (305969, 536, 1), + (305969, 364, 5), + (305969, 149, 12), + (305969, 318, -3), + (305970, 93, 400), + (305970, 95, 800), + (305970, 92, 800), + (305970, 97, 800), + (305970, 91, 800), + (305970, 96, 400), + (305970, 90, 800), + (305970, 94, 800), + (305970, 1, 350), + (305970, 221, 350), + (305970, 17, 5), + (305970, 19, 5), + (305970, 21, 5), + (305970, 20, 5), + (305970, 18, 5), + (305970, 16, 5), + (305970, 276, 10), + (305970, 277, 10), + (305970, 161, 14), + (305970, 154, 6), + (305970, 153, 6), + (305970, 155, 6), + (305970, 535, 1), + (305970, 181, 10), + (305970, 168, 6), + (305970, 536, 1), + (305970, 364, 5), + (305970, 149, 12), + (305970, 318, -3), + (305971, 93, 150), + (305971, 95, 300), + (305971, 92, 300), + (305971, 97, 300), + (305971, 91, 300), + (305971, 96, 150), + (305971, 90, 300), + (305971, 94, 300), + (305971, 1, 200), + (305971, 221, 200), + (305971, 17, 5), + (305971, 19, 5), + (305971, 21, 5), + (305971, 20, 5), + (305971, 18, 5), + (305971, 16, 5), + (305971, 276, 10), + (305971, 277, 10), + (305971, 161, 14), + (305971, 154, 6), + (305971, 153, 6), + (305971, 155, 6), + (305971, 535, 1), + (305971, 181, 10), + (305971, 168, 6), + (305971, 536, 1), + (305971, 364, 5), + (305971, 149, 12), + (305971, 318, -3), + (305972, 93, 450), + (305972, 95, 900), + (305972, 92, 900), + (305972, 97, 900), + (305972, 91, 900), + (305972, 96, 450), + (305972, 90, 900), + (305972, 94, 900), + (305972, 1, 500), + (305972, 221, 500), + (305972, 17, 5), + (305972, 19, 5), + (305972, 21, 5), + (305972, 20, 5), + (305972, 18, 5), + (305972, 16, 5), + (305972, 276, 10), + (305972, 277, 10), + (305972, 161, 14), + (305972, 154, 6), + (305972, 153, 6), + (305972, 155, 6), + (305972, 535, 1), + (305972, 181, 10), + (305972, 168, 6), + (305972, 536, 1), + (305972, 364, 5), + (305972, 149, 12), + (305972, 318, -3), + (305973, 93, 200), + (305973, 95, 400), + (305973, 92, 400), + (305973, 97, 400), + (305973, 91, 400), + (305973, 96, 200), + (305973, 90, 400), + (305973, 94, 400), + (305973, 1, 300), + (305973, 221, 300), + (305973, 17, 5), + (305973, 19, 5), + (305973, 21, 5), + (305973, 20, 5), + (305973, 18, 5), + (305973, 16, 5), + (305973, 276, 10), + (305973, 277, 10), + (305973, 161, 14), + (305973, 154, 6), + (305973, 153, 6), + (305973, 155, 6), + (305973, 535, 1), + (305973, 181, 10), + (305973, 168, 6), + (305973, 536, 1), + (305973, 364, 5), + (305973, 149, 12), + (305973, 318, -3), + (305974, 277, 50), + (305979, 156, 100), + (305979, 379, 6), + (305979, 164, 50), + (305979, 136, 50), + (305979, 165, 25), + (305979, 281, 30), + (305979, 317, 30), + (305979, 278, 30), + (305979, 280, 30), + (305979, 93, 1000), + (305979, 96, 1400), + (305979, 95, 850), + (305979, 97, 850), + (305979, 91, 1000), + (305979, 90, 1000), + (305979, 92, 1000), + (305979, 94, 600), + (305979, 1, 500), + (305979, 221, 250), + (305980, 154, 30), + (305980, 153, 30), + (305980, 155, 30), + (305980, 151, -2000), + (305981, 125, 100), + (305981, 126, 100), + (305981, 157, 100), + (305981, 158, 100), + (305981, 159, 100), + (305981, 160, 100), + (305981, 163, 100), + (305982, 93, 1800), + (305982, 95, 1800), + (305982, 92, 1800), + (305982, 97, 1800), + (305982, 91, 1800), + (305982, 96, 1800), + (305982, 90, 1800), + (305982, 94, 1800), + (305982, 1, 750), + (305982, 221, 1000), + (305982, 277, 75), + (305982, 154, 50), + (305982, 153, 50), + (305982, 155, 50), + (305982, 168, 50), + (305982, 149, 75), + (305983, 93, 1900), + (305983, 95, 1650), + (305983, 92, 2100), + (305983, 97, 1650), + (305983, 91, 2100), + (305983, 96, 1900), + (305983, 90, 2100), + (305983, 94, 1900), + (305983, 1, 1000), + (305983, 221, 750), + (305983, 116, 40), + (305983, 148, 40), + (305983, 379, 5), + (305983, 154, 20), + (305983, 153, 20), + (305983, 155, 20), + (305983, 167, 40), + (305983, 133, 40), + (305983, 110, 40), + (305983, 281, 15), + (305983, 311, 15), + (305983, 280, 15), + (305983, 316, 15), + (305983, 279, 15), + (305983, 317, 15), + (305983, 278, 15), + (305983, 282, 15), + (305984, 277, 75), + (305986, 102, 31), + (305986, 116, 23), + (305986, 100, 48), + (305986, 112, 44), + (305986, 153, 22), + (305986, 155, 25), + (305986, 21, 21), + (305986, 20, 12), + (305986, 16, 9), + (305986, 123, 41), + (305986, 124, 39), + (305986, 128, 42), + (305986, 130, 63), + (305986, 129, 22), + (305986, 281, 29), + (305986, 316, 33), + (305986, 279, 15), + (305986, 317, 27), + (305986, 126, 47), + (305986, 125, 30), + (305986, 159, 11), + (305987, 93, 1200), + (305987, 95, 1200), + (305987, 92, 1200), + (305987, 97, 1200), + (305987, 91, 1200), + (305987, 96, 700), + (305987, 90, 1200), + (305987, 94, 1200), + (305987, 391, 5), + (305987, 277, 15), + (305987, 154, 60), + (305987, 153, 60), + (305987, 155, 60), + (305987, 343, 5), + (305987, 1, 500), + (305987, 168, 40), + (305987, 156, 100), + (305988, 1, 500), + (305988, 221, 500), + (305989, 122, 65), + (305989, 127, 65), + (305989, 128, 65), + (305989, 129, 65), + (305989, 130, 65), + (305989, 131, 65), + (305990, 93, 600), + (305990, 95, 300), + (305990, 92, 900), + (305990, 97, 900), + (305990, 91, 900), + (305990, 96, 600), + (305990, 90, 600), + (305990, 94, 600), + (305990, 1, 250), + (305990, 221, 500), + (305990, 128, 40), + (305990, 130, 40), + (305990, 131, 40), + (305990, 127, 40), + (305990, 129, 40), + (305990, 122, 40), + (305990, 535, 4), + (305990, 536, 2), + (305990, 318, -5), + (305993, 154, 30), + (305993, 153, 30), + (305993, 155, 30), + (305995, 93, 1200), + (305995, 95, 1200), + (305995, 92, 1200), + (305995, 97, 1200), + (305995, 91, 1200), + (305995, 96, 1200), + (305995, 90, 1200), + (305995, 94, 1200), + (305995, 276, 20), + (305995, 161, 20), + (305995, 277, 20), + (305995, 156, 200), + (305995, 118, 50), + (305995, 119, 50), + (305995, 149, 50), + (305995, 120, 50), + (305997, 93, 1000), + (305997, 95, 1000), + (305997, 92, 1000), + (305997, 97, 1000), + (305997, 91, 1000), + (305997, 96, 1000), + (305997, 90, 1000), + (305997, 94, 1000), + (305997, 105, 40), + (305997, 276, 30), + (305997, 277, 30), + (305997, 1, 500), + (305997, 221, 500), + (306001, 45, 6), + (306001, 276, 20), + (306001, 1, 300), + (306001, 221, 300), + (306001, 181, 50), + (306001, 154, 30), + (306001, 153, 30), + (306001, 155, 30), + (306001, 168, 30), + (306001, 343, 5), + (306001, 364, 5), + (306001, 318, -5), + (306002, 1, 1200), + (306002, 689, 5), + (306002, 343, 5), + (306002, 391, 5), + (306002, 93, 800), + (306002, 95, 800), + (306002, 92, 800), + (306002, 97, 800), + (306002, 91, 800), + (306002, 96, 800), + (306002, 90, 800), + (306002, 90, 800), + (306002, 94, 800), + (306002, 168, 20), + (306003, 93, 3000), + (306003, 95, 3000), + (306003, 92, 3000), + (306003, 97, 3000), + (306003, 91, 3000), + (306003, 96, 3000), + (306003, 90, 3000), + (306003, 94, 3000), + (306003, 277, 100), + (306003, 1, 2000), + (306003, 221, 1000), + (306003, 535, 5), + (306003, 343, 5), + (306003, 364, 5), + (306004, 276, 20), + (306026, 93, 500), + (306026, 95, 500), + (306026, 92, 500), + (306026, 97, 500), + (306026, 91, 500), + (306026, 96, 500), + (306026, 90, 500), + (306026, 94, 500), + (306026, 391, 3), + (306026, 535, 5), + (306026, 689, 5), + (306026, 1, 200), + (306026, 221, 200), + (306026, 318, -5), + (306026, 277, 20), + (306026, 154, 15), + (306026, 153, 15), + (306026, 155, 15), + (306026, 168, 15), + (306080, 91, 10), + (306080, 90, 10), + (306080, 92, 10), + (306080, 97, 10), + (306080, 95, 10), + (306080, 94, 10), + (306080, 93, 10), + (306080, 96, 10), + (306080, 123, 2), + (306080, 124, 2), + (306080, 119, 5), + (306080, 319, 5), + (306080, 1, 5), + (306080, 221, 5), + (306080, 118, 5), + (306080, 120, 5), + (306080, 149, 5), + (306080, 181, 1), + (306081, 91, 800), + (306081, 90, 800), + (306081, 92, 800), + (306081, 97, 800), + (306081, 95, 800), + (306081, 94, 800), + (306081, 93, 800), + (306081, 96, 800), + (306081, 123, 10), + (306081, 124, 10), + (306081, 119, 20), + (306081, 319, 5), + (306081, 1, 150), + (306081, 221, 150), + (306081, 118, 20), + (306081, 120, 20), + (306081, 149, 20), + (306081, 181, 8), + (306082, 91, 10), + (306082, 90, 10), + (306082, 92, 10), + (306082, 97, 10), + (306082, 95, 10), + (306082, 94, 10), + (306082, 93, 10), + (306082, 96, 10), + (306082, 123, 1), + (306082, 124, 1), + (306082, 119, 2), + (306082, 319, 2), + (306082, 1, 5), + (306082, 221, 5), + (306082, 181, 1), + (306082, 118, 2), + (306082, 120, 2), + (306082, 149, 2), + (306083, 91, 250), + (306083, 90, 250), + (306083, 92, 250), + (306083, 97, 250), + (306083, 95, 250), + (306083, 94, 250), + (306083, 93, 250), + (306083, 96, 250), + (306083, 123, 4), + (306083, 124, 4), + (306083, 119, 10), + (306083, 319, 2), + (306083, 1, 75), + (306083, 221, 75), + (306083, 181, 5), + (306083, 118, 10), + (306083, 120, 10), + (306083, 149, 10), + (306084, 91, 10), + (306084, 90, 10), + (306084, 92, 10), + (306084, 97, 10), + (306084, 95, 10), + (306084, 94, 10), + (306084, 93, 10), + (306084, 96, 10), + (306084, 123, 14), + (306084, 124, 14), + (306084, 119, 2), + (306084, 319, 5), + (306084, 1, 5), + (306084, 221, 5), + (306084, 181, 1), + (306084, 118, 2), + (306084, 120, 2), + (306084, 149, 2), + (306085, 91, 300), + (306085, 90, 300), + (306085, 92, 300), + (306085, 97, 300), + (306085, 95, 300), + (306085, 94, 300), + (306085, 93, 300), + (306085, 96, 300), + (306085, 123, 14), + (306085, 124, 14), + (306085, 119, 20), + (306085, 319, 5), + (306085, 1, 150), + (306085, 221, 150), + (306085, 181, 8), + (306085, 118, 20), + (306085, 120, 20), + (306085, 149, 20), + (306086, 91, 10), + (306086, 90, 10), + (306086, 92, 10), + (306086, 97, 10), + (306086, 95, 10), + (306086, 94, 10), + (306086, 93, 10), + (306086, 96, 10), + (306086, 123, 20), + (306086, 124, 20), + (306086, 119, 2), + (306086, 319, 5), + (306086, 1, 5), + (306086, 221, 5), + (306086, 181, 1), + (306086, 118, 2), + (306086, 120, 2), + (306086, 149, 2), + (306087, 91, 800), + (306087, 90, 800), + (306087, 92, 800), + (306087, 97, 800), + (306087, 95, 800), + (306087, 94, 800), + (306087, 93, 800), + (306087, 96, 800), + (306087, 123, 20), + (306087, 124, 20), + (306087, 119, 20), + (306087, 319, 5), + (306087, 1, 300), + (306087, 221, 300), + (306087, 181, 8), + (306087, 118, 20), + (306087, 120, 20), + (306087, 149, 20), + (306088, 91, 10), + (306088, 90, 10), + (306088, 92, 10), + (306088, 97, 10), + (306088, 95, 10), + (306088, 94, 10), + (306088, 93, 10), + (306088, 96, 10), + (306088, 123, 10), + (306088, 124, 10), + (306088, 119, 2), + (306088, 319, 5), + (306088, 1, 5), + (306088, 221, 5), + (306088, 181, 1), + (306088, 118, 2), + (306088, 120, 2), + (306088, 149, 2), + (306089, 91, 200), + (306089, 90, 200), + (306089, 92, 200), + (306089, 97, 200), + (306089, 95, 200), + (306089, 94, 200), + (306089, 93, 200), + (306089, 96, 200), + (306089, 123, 10), + (306089, 124, 10), + (306089, 119, 20), + (306089, 319, 5), + (306089, 1, 150), + (306089, 221, 150), + (306089, 181, 8), + (306089, 118, 20), + (306089, 120, 20), + (306089, 149, 20), + (306090, 91, 10), + (306090, 90, 10), + (306090, 92, 10), + (306090, 97, 10), + (306090, 95, 10), + (306090, 94, 10), + (306090, 93, 10), + (306090, 96, 10), + (306090, 123, 14), + (306090, 124, 14), + (306090, 119, 2), + (306090, 319, 5), + (306090, 1, 5), + (306090, 221, 5), + (306090, 181, 1), + (306090, 118, 2), + (306090, 120, 2), + (306090, 149, 2), + (306091, 91, 800), + (306091, 90, 800), + (306091, 92, 800), + (306091, 97, 800), + (306091, 95, 800), + (306091, 94, 800), + (306091, 93, 800), + (306091, 96, 800), + (306091, 123, 14), + (306091, 124, 14), + (306091, 119, 20), + (306091, 319, 5), + (306091, 1, 200), + (306091, 221, 200), + (306091, 181, 8), + (306091, 118, 20), + (306091, 120, 20), + (306091, 149, 20), + (306092, 91, 10), + (306092, 90, 10), + (306092, 92, 10), + (306092, 97, 10), + (306092, 95, 10), + (306092, 94, 10), + (306092, 93, 10), + (306092, 96, 10), + (306092, 123, 6), + (306092, 124, 6), + (306092, 119, 2), + (306092, 319, 5), + (306092, 1, 5), + (306092, 221, 5), + (306092, 181, 1), + (306092, 118, 2), + (306092, 120, 2), + (306092, 149, 2), + (306093, 91, 250), + (306093, 90, 250), + (306093, 92, 250), + (306093, 97, 250), + (306093, 95, 250), + (306093, 94, 250), + (306093, 93, 250), + (306093, 96, 250), + (306093, 123, 6), + (306093, 124, 6), + (306093, 119, 20), + (306093, 319, 5), + (306093, 1, 150), + (306093, 221, 150), + (306093, 181, 8), + (306093, 118, 20), + (306093, 120, 20), + (306093, 149, 20), + (306094, 91, 10), + (306094, 90, 10), + (306094, 92, 10), + (306094, 97, 10), + (306094, 95, 10), + (306094, 94, 10), + (306094, 93, 10), + (306094, 96, 10), + (306094, 123, 2), + (306094, 124, 2), + (306094, 119, 5), + (306094, 319, 5), + (306094, 1, 5), + (306094, 221, 5), + (306094, 181, 1), + (306094, 118, 5), + (306094, 120, 5), + (306094, 149, 5), + (306095, 91, 800), + (306095, 90, 800), + (306095, 92, 800), + (306095, 97, 800), + (306095, 95, 800), + (306095, 94, 800), + (306095, 93, 800), + (306095, 96, 800), + (306095, 123, 10), + (306095, 124, 10), + (306095, 119, 50), + (306095, 319, 5), + (306095, 1, 200), + (306095, 221, 200), + (306095, 181, 5), + (306095, 118, 50), + (306095, 120, 50), + (306095, 149, 50), + (306172, 128, 10), + (306172, 123, 25), + (306172, 127, 10), + (306172, 124, 25), + (306173, 161, 25), + (306173, 130, 10), + (306173, 131, 10), + (306173, 141, 25), + (306174, 1, 500), + (306175, 134, 30), + (306175, 124, 35), + (306175, 112, 30), + (306176, 153, 40), + (306176, 154, 40), + (306176, 155, 40), + (306176, 168, 25), + (306176, 277, 30), + (306201, 276, 25), + (306201, 277, 25), + (306201, 168, 50); diff --git a/modules/standard/items/item_types.sql b/modules/standard/items/item_types.sql new file mode 100644 index 0000000..9a687b2 --- /dev/null +++ b/modules/standard/items/item_types.sql @@ -0,0 +1,13974 @@ +DROP TABLE IF EXISTS item_types; +CREATE TABLE item_types +( + item_id INT, + item_type VARCHAR(50) +); +INSERT INTO item_types (item_id, item_type) +VALUES (21793, 'Arms'), + (21797, 'Back'), + (21801, 'Chest'), + (21805, 'Feet'), + (21809, 'Hands'), + (21813, 'Head'), + (21817, 'Legs'), + (21917, 'Arms'), + (21921, 'Arms'), + (21929, 'Arms'), + (21937, 'Arms'), + (21955, 'Arms'), + (21959, 'Arms'), + (21963, 'Arms'), + (21967, 'Arms'), + (21971, 'Arms'), + (21975, 'Arms'), + (22004, 'Chest'), + (22010, 'Chest'), + (22014, 'Chest'), + (22018, 'Chest'), + (22026, 'Chest'), + (22046, 'Chest'), + (22064, 'Chest'), + (22068, 'Chest'), + (22072, 'Chest'), + (22076, 'Chest'), + (22080, 'Chest'), + (22084, 'Chest'), + (22088, 'Chest'), + (22104, 'Feet'), + (22108, 'Feet'), + (22116, 'Feet'), + (22124, 'Feet'), + (22142, 'Feet'), + (22146, 'Feet'), + (22150, 'Feet'), + (22154, 'Feet'), + (22158, 'Feet'), + (22162, 'Feet'), + (22166, 'Hands'), + (22170, 'Hands'), + (22178, 'Hands'), + (22196, 'Hands'), + (22200, 'Hands'), + (22204, 'Hands'), + (22208, 'Hands'), + (22212, 'Hands'), + (22216, 'Hands'), + (22219, 'Head'), + (22223, 'Head'), + (22246, 'Head'), + (22250, 'Head'), + (22254, 'Head'), + (22258, 'Head'), + (22262, 'Head'), + (22266, 'Head'), + (22289, 'Legs'), + (22293, 'Legs'), + (22301, 'Legs'), + (22313, 'Legs'), + (22331, 'Legs'), + (22335, 'Legs'), + (22339, 'Legs'), + (22343, 'Legs'), + (22347, 'Legs'), + (22351, 'Legs'), + (26015, 'Nanoprogram'), + (26019, 'Nanoprogram'), + (26166, 'Nanoprogram'), + (26206, 'Nanoprogram'), + (26207, 'Nanoprogram'), + (26245, 'Nanoprogram'), + (26461, 'Nanoprogram'), + (26462, 'Nanoprogram'), + (26463, 'Nanoprogram'), + (26464, 'Nanoprogram'), + (26467, 'Nanoprogram'), + (26469, 'Nanoprogram'), + (26470, 'Nanoprogram'), + (26471, 'Nanoprogram'), + (26472, 'Nanoprogram'), + (26473, 'Nanoprogram'), + (26478, 'Nanoprogram'), + (26479, 'Nanoprogram'), + (26480, 'Nanoprogram'), + (26481, 'Nanoprogram'), + (26482, 'Nanoprogram'), + (26483, 'Nanoprogram'), + (26484, 'Nanoprogram'), + (26485, 'Nanoprogram'), + (26486, 'Nanoprogram'), + (26487, 'Nanoprogram'), + (26488, 'Nanoprogram'), + (26489, 'Nanoprogram'), + (26490, 'Nanoprogram'), + (26491, 'Nanoprogram'), + (26494, 'Nanoprogram'), + (26495, 'Nanoprogram'), + (26496, 'Nanoprogram'), + (26497, 'Nanoprogram'), + (26498, 'Nanoprogram'), + (26499, 'Nanoprogram'), + (26500, 'Nanoprogram'), + (26501, 'Nanoprogram'), + (26502, 'Nanoprogram'), + (26503, 'Nanoprogram'), + (26504, 'Nanoprogram'), + (26505, 'Nanoprogram'), + (26506, 'Nanoprogram'), + (26507, 'Nanoprogram'), + (26508, 'Nanoprogram'), + (26509, 'Nanoprogram'), + (26510, 'Nanoprogram'), + (26511, 'Nanoprogram'), + (26514, 'Nanoprogram'), + (26515, 'Nanoprogram'), + (26516, 'Nanoprogram'), + (26522, 'Nanoprogram'), + (26523, 'Nanoprogram'), + (26524, 'Nanoprogram'), + (26525, 'Nanoprogram'), + (26526, 'Nanoprogram'), + (26527, 'Nanoprogram'), + (26528, 'Nanoprogram'), + (26529, 'Nanoprogram'), + (26530, 'Nanoprogram'), + (26531, 'Nanoprogram'), + (26532, 'Nanoprogram'), + (26533, 'Nanoprogram'), + (26534, 'Nanoprogram'), + (26535, 'Nanoprogram'), + (26539, 'Nanoprogram'), + (26540, 'Nanoprogram'), + (26541, 'Nanoprogram'), + (26542, 'Nanoprogram'), + (26543, 'Nanoprogram'), + (26544, 'Nanoprogram'), + (26547, 'Nanoprogram'), + (26549, 'Nanoprogram'), + (26550, 'Nanoprogram'), + (26551, 'Nanoprogram'), + (26552, 'Nanoprogram'), + (26555, 'Nanoprogram'), + (26556, 'Nanoprogram'), + (26557, 'Nanoprogram'), + (26558, 'Nanoprogram'), + (26559, 'Nanoprogram'), + (26560, 'Nanoprogram'), + (26561, 'Nanoprogram'), + (26562, 'Nanoprogram'), + (26564, 'Nanoprogram'), + (26565, 'Nanoprogram'), + (26568, 'Nanoprogram'), + (26569, 'Nanoprogram'), + (26570, 'Nanoprogram'), + (26571, 'Nanoprogram'), + (26572, 'Nanoprogram'), + (26573, 'Nanoprogram'), + (26574, 'Nanoprogram'), + (26575, 'Nanoprogram'), + (26576, 'Nanoprogram'), + (26577, 'Nanoprogram'), + (26578, 'Nanoprogram'), + (26580, 'Nanoprogram'), + (26581, 'Nanoprogram'), + (26582, 'Nanoprogram'), + (26583, 'Nanoprogram'), + (26584, 'Nanoprogram'), + (26585, 'Nanoprogram'), + (26680, 'Nanoprogram'), + (26682, 'Nanoprogram'), + (27197, 'Nanoprogram'), + (27198, 'Nanoprogram'), + (27199, 'Nanoprogram'), + (27200, 'Nanoprogram'), + (27201, 'Nanoprogram'), + (27202, 'Nanoprogram'), + (27203, 'Nanoprogram'), + (27204, 'Nanoprogram'), + (27205, 'Nanoprogram'), + (27206, 'Nanoprogram'), + (27207, 'Nanoprogram'), + (27208, 'Nanoprogram'), + (27209, 'Nanoprogram'), + (27210, 'Nanoprogram'), + (27211, 'Nanoprogram'), + (27212, 'Nanoprogram'), + (27213, 'Nanoprogram'), + (27216, 'Nanoprogram'), + (27217, 'Nanoprogram'), + (27218, 'Nanoprogram'), + (27219, 'Nanoprogram'), + (27220, 'Nanoprogram'), + (27221, 'Nanoprogram'), + (27222, 'Nanoprogram'), + (27223, 'Nanoprogram'), + (27225, 'Nanoprogram'), + (27226, 'Nanoprogram'), + (27227, 'Nanoprogram'), + (27228, 'Nanoprogram'), + (27229, 'Nanoprogram'), + (27230, 'Nanoprogram'), + (27231, 'Nanoprogram'), + (27232, 'Nanoprogram'), + (27233, 'Nanoprogram'), + (27234, 'Nanoprogram'), + (27235, 'Nanoprogram'), + (27236, 'Nanoprogram'), + (27237, 'Nanoprogram'), + (27238, 'Nanoprogram'), + (27239, 'Nanoprogram'), + (27240, 'Nanoprogram'), + (27241, 'Nanoprogram'), + (27242, 'Nanoprogram'), + (27243, 'Nanoprogram'), + (27244, 'Nanoprogram'), + (27245, 'Nanoprogram'), + (27246, 'Nanoprogram'), + (27250, 'Nanoprogram'), + (27251, 'Nanoprogram'), + (27253, 'Nanoprogram'), + (27256, 'Nanoprogram'), + (27257, 'Nanoprogram'), + (27258, 'Nanoprogram'), + (27259, 'Nanoprogram'), + (27260, 'Nanoprogram'), + (27261, 'Nanoprogram'), + (27262, 'Nanoprogram'), + (27263, 'Nanoprogram'), + (27264, 'Nanoprogram'), + (27265, 'Nanoprogram'), + (27270, 'Nanoprogram'), + (27271, 'Nanoprogram'), + (27272, 'Nanoprogram'), + (27273, 'Nanoprogram'), + (27274, 'Nanoprogram'), + (27275, 'Nanoprogram'), + (27276, 'Nanoprogram'), + (27277, 'Nanoprogram'), + (27278, 'Nanoprogram'), + (27279, 'Nanoprogram'), + (27280, 'Nanoprogram'), + (27282, 'Nanoprogram'), + (27283, 'Nanoprogram'), + (27284, 'Nanoprogram'), + (27285, 'Nanoprogram'), + (27286, 'Nanoprogram'), + (27287, 'Nanoprogram'), + (27288, 'Nanoprogram'), + (27289, 'Nanoprogram'), + (27290, 'Nanoprogram'), + (27291, 'Nanoprogram'), + (27292, 'Nanoprogram'), + (27293, 'Nanoprogram'), + (27294, 'Nanoprogram'), + (27295, 'Nanoprogram'), + (27296, 'Nanoprogram'), + (27297, 'Nanoprogram'), + (27298, 'Nanoprogram'), + (27299, 'Nanoprogram'), + (27300, 'Nanoprogram'), + (27301, 'Nanoprogram'), + (27302, 'Nanoprogram'), + (27303, 'Nanoprogram'), + (27304, 'Nanoprogram'), + (27305, 'Nanoprogram'), + (27308, 'Nanoprogram'), + (27311, 'Nanoprogram'), + (27312, 'Nanoprogram'), + (27313, 'Nanoprogram'), + (27314, 'Nanoprogram'), + (27324, 'Nanoprogram'), + (27325, 'Nanoprogram'), + (27326, 'Nanoprogram'), + (27360, 'Legs'), + (27381, 'Hands'), + (27382, 'Feet'), + (27383, 'Chest'), + (27384, 'Legs'), + (27385, 'Arms'), + (27386, 'Legs'), + (27387, 'Chest'), + (27389, 'Chest'), + (27391, 'Arms'), + (27392, 'Feet'), + (27394, 'Legs'), + (27396, 'Hands'), + (27398, 'Chest'), + (27400, 'Arms'), + (27402, 'Head'), + (27708, 'Nanoprogram'), + (28734, 'Back'), + (28735, 'Back'), + (28736, 'Back'), + (28738, 'Back'), + (28743, 'Nanoprogram'), + (28744, 'Nanoprogram'), + (28745, 'Nanoprogram'), + (28752, 'Nanoprogram'), + (28764, 'Nanoprogram'), + (28770, 'Nanoprogram'), + (28771, 'Nanoprogram'), + (28776, 'Nanoprogram'), + (28782, 'Nanoprogram'), + (28784, 'Nanoprogram'), + (28787, 'Nanoprogram'), + (28788, 'Nanoprogram'), + (28794, 'Nanoprogram'), + (28806, 'Nanoprogram'), + (28913, 'Nanoprogram'), + (28920, 'Nanoprogram'), + (28921, 'Nanoprogram'), + (28923, 'Nanoprogram'), + (28926, 'Nanoprogram'), + (28929, 'Nanoprogram'), + (28930, 'Nanoprogram'), + (28931, 'Nanoprogram'), + (28945, 'Nanoprogram'), + (28946, 'Nanoprogram'), + (28949, 'Nanoprogram'), + (28950, 'Nanoprogram'), + (28954, 'Nanoprogram'), + (28955, 'Nanoprogram'), + (28956, 'Nanoprogram'), + (28958, 'Nanoprogram'), + (29092, 'Nanoprogram'), + (29102, 'Nanoprogram'), + (29103, 'Nanoprogram'), + (29191, 'Nanoprogram'), + (29192, 'Nanoprogram'), + (29194, 'Nanoprogram'), + (29195, 'Nanoprogram'), + (29202, 'Nanoprogram'), + (29329, 'Nanoprogram'), + (29332, 'Nanoprogram'), + (29333, 'Nanoprogram'), + (29334, 'Nanoprogram'), + (29342, 'Nanoprogram'), + (29344, 'Nanoprogram'), + (29352, 'Nanoprogram'), + (29358, 'Nanoprogram'), + (29359, 'Nanoprogram'), + (29360, 'Nanoprogram'), + (29362, 'Nanoprogram'), + (29363, 'Nanoprogram'), + (29366, 'Nanoprogram'), + (29367, 'Nanoprogram'), + (29369, 'Nanoprogram'), + (29372, 'Nanoprogram'), + (29383, 'Nanoprogram'), + (29384, 'Nanoprogram'), + (29385, 'Nanoprogram'), + (29386, 'Nanoprogram'), + (29387, 'Nanoprogram'), + (29388, 'Nanoprogram'), + (29391, 'Nanoprogram'), + (29392, 'Nanoprogram'), + (29393, 'Nanoprogram'), + (29396, 'Nanoprogram'), + (29397, 'Nanoprogram'), + (29398, 'Nanoprogram'), + (29399, 'Nanoprogram'), + (29400, 'Nanoprogram'), + (29401, 'Nanoprogram'), + (29403, 'Nanoprogram'), + (29406, 'Nanoprogram'), + (29409, 'Nanoprogram'), + (29412, 'Nanoprogram'), + (29418, 'Nanoprogram'), + (29419, 'Nanoprogram'), + (29420, 'Nanoprogram'), + (29421, 'Nanoprogram'), + (29422, 'Nanoprogram'), + (29423, 'Nanoprogram'), + (29424, 'Nanoprogram'), + (29426, 'Chest'), + (29792, 'Nanoprogram'), + (29803, 'Nanoprogram'), + (29804, 'Nanoprogram'), + (29806, 'Nanoprogram'), + (29807, 'Nanoprogram'), + (29808, 'Nanoprogram'), + (29811, 'Nanoprogram'), + (29814, 'Nanoprogram'), + (29820, 'Nanoprogram'), + (29823, 'Nanoprogram'), + (29842, 'Nanoprogram'), + (29843, 'Nanoprogram'), + (29852, 'Nanoprogram'), + (29853, 'Nanoprogram'), + (29854, 'Nanoprogram'), + (29858, 'Nanoprogram'), + (29859, 'Nanoprogram'), + (29861, 'Nanoprogram'), + (29862, 'Nanoprogram'), + (29865, 'Nanoprogram'), + (29868, 'Nanoprogram'), + (29869, 'Nanoprogram'), + (30101, 'Nanoprogram'), + (30102, 'Nanoprogram'), + (30109, 'Nanoprogram'), + (30110, 'Nanoprogram'), + (30119, 'Nanoprogram'), + (30122, 'Nanoprogram'), + (30135, 'Nanoprogram'), + (30138, 'Nanoprogram'), + (30140, 'Nanoprogram'), + (30266, 'Nanoprogram'), + (30757, 'Nanoprogram'), + (30758, 'Nanoprogram'), + (30759, 'Nanoprogram'), + (30764, 'Nanoprogram'), + (30766, 'Nanoprogram'), + (30769, 'Nanoprogram'), + (30771, 'Nanoprogram'), + (30775, 'Nanoprogram'), + (30776, 'Nanoprogram'), + (30777, 'Nanoprogram'), + (30778, 'Nanoprogram'), + (30779, 'Nanoprogram'), + (30780, 'Nanoprogram'), + (30781, 'Nanoprogram'), + (30782, 'Nanoprogram'), + (30783, 'Nanoprogram'), + (30785, 'Nanoprogram'), + (30786, 'Nanoprogram'), + (30787, 'Nanoprogram'), + (30788, 'Nanoprogram'), + (30789, 'Nanoprogram'), + (30796, 'Nanoprogram'), + (30804, 'Nanoprogram'), + (31415, 'Nanoprogram'), + (31420, 'Nanoprogram'), + (31422, 'Nanoprogram'), + (31425, 'Nanoprogram'), + (31427, 'Nanoprogram'), + (31441, 'Nanoprogram'), + (31443, 'Nanoprogram'), + (31594, 'Nanoprogram'), + (31835, 'Head'), + (32099, 'Nanoprogram'), + (32100, 'Nanoprogram'), + (32101, 'Nanoprogram'), + (32102, 'Nanoprogram'), + (32103, 'Nanoprogram'), + (32105, 'Nanoprogram'), + (32106, 'Nanoprogram'), + (32108, 'Nanoprogram'), + (36777, 'Deck'), + (36778, 'Deck'), + (36779, 'Deck'), + (36780, 'Deck'), + (36781, 'Deck'), + (36782, 'Deck'), + (36783, 'Deck'), + (36784, 'Deck'), + (36785, 'Deck'), + (36786, 'Deck'), + (36787, 'Deck'), + (41390, 'Back'), + (41395, 'Back'), + (41398, 'Back'), + (41402, 'Back'), + (42415, 'Nanoprogram'), + (43379, 'Nanoprogram'), + (43380, 'Nanoprogram'), + (43382, 'Nanoprogram'), + (49812, 'Nanoprogram'), + (49813, 'Nanoprogram'), + (49814, 'Nanoprogram'), + (49815, 'Nanoprogram'), + (49816, 'Nanoprogram'), + (49817, 'Nanoprogram'), + (49818, 'Nanoprogram'), + (49819, 'Nanoprogram'), + (49820, 'Nanoprogram'), + (49821, 'Nanoprogram'), + (49822, 'Nanoprogram'), + (49823, 'Nanoprogram'), + (49824, 'Nanoprogram'), + (49825, 'Nanoprogram'), + (49826, 'Nanoprogram'), + (49827, 'Nanoprogram'), + (49828, 'Nanoprogram'), + (49829, 'Nanoprogram'), + (55752, 'Nanoprogram'), + (55753, 'Nanoprogram'), + (55754, 'Nanoprogram'), + (55755, 'Nanoprogram'), + (55756, 'Nanoprogram'), + (55757, 'Nanoprogram'), + (55758, 'Nanoprogram'), + (55759, 'Nanoprogram'), + (55760, 'Nanoprogram'), + (55761, 'Nanoprogram'), + (55762, 'Nanoprogram'), + (55775, 'Nanoprogram'), + (55776, 'Nanoprogram'), + (55777, 'Nanoprogram'), + (55778, 'Nanoprogram'), + (55779, 'Nanoprogram'), + (55780, 'Nanoprogram'), + (55781, 'Nanoprogram'), + (55782, 'Nanoprogram'), + (55838, 'Nanoprogram'), + (55839, 'Nanoprogram'), + (55840, 'Nanoprogram'), + (55841, 'Nanoprogram'), + (55842, 'Nanoprogram'), + (55843, 'Nanoprogram'), + (55844, 'Nanoprogram'), + (55845, 'Nanoprogram'), + (55846, 'Nanoprogram'), + (55847, 'Nanoprogram'), + (55848, 'Nanoprogram'), + (55849, 'Nanoprogram'), + (55850, 'Nanoprogram'), + (55851, 'Nanoprogram'), + (55852, 'Nanoprogram'), + (55853, 'Nanoprogram'), + (55854, 'Nanoprogram'), + (55855, 'Nanoprogram'), + (55856, 'Nanoprogram'), + (55857, 'Nanoprogram'), + (55858, 'Nanoprogram'), + (55859, 'Nanoprogram'), + (55860, 'Nanoprogram'), + (55861, 'Nanoprogram'), + (55862, 'Nanoprogram'), + (55863, 'Nanoprogram'), + (70251, 'Util'), + (70252, 'Util'), + (70253, 'Util'), + (70254, 'Util'), + (70383, 'Nanoprogram'), + (70384, 'Nanoprogram'), + (70385, 'Nanoprogram'), + (70386, 'Nanoprogram'), + (70387, 'Nanoprogram'), + (70388, 'Nanoprogram'), + (70389, 'Nanoprogram'), + (70390, 'Nanoprogram'), + (70391, 'Nanoprogram'), + (70392, 'Nanoprogram'), + (70393, 'Nanoprogram'), + (70394, 'Nanoprogram'), + (70395, 'Nanoprogram'), + (70396, 'Nanoprogram'), + (70397, 'Nanoprogram'), + (70398, 'Nanoprogram'), + (70399, 'Nanoprogram'), + (70400, 'Nanoprogram'), + (70401, 'Nanoprogram'), + (70402, 'Nanoprogram'), + (70403, 'Nanoprogram'), + (70404, 'Nanoprogram'), + (70405, 'Nanoprogram'), + (70406, 'Nanoprogram'), + (70407, 'Nanoprogram'), + (70408, 'Nanoprogram'), + (70409, 'Nanoprogram'), + (70410, 'Nanoprogram'), + (70411, 'Nanoprogram'), + (70412, 'Nanoprogram'), + (70413, 'Nanoprogram'), + (70414, 'Nanoprogram'), + (70415, 'Nanoprogram'), + (70416, 'Nanoprogram'), + (70417, 'Nanoprogram'), + (70418, 'Nanoprogram'), + (70419, 'Nanoprogram'), + (70420, 'Nanoprogram'), + (70421, 'Nanoprogram'), + (70422, 'Nanoprogram'), + (70423, 'Nanoprogram'), + (70424, 'Nanoprogram'), + (70425, 'Nanoprogram'), + (70426, 'Nanoprogram'), + (70558, 'Feet'), + (70559, 'Chest'), + (70560, 'Chest'), + (70561, 'Arms'), + (70562, 'Hands'), + (70563, 'Head'), + (70564, 'Legs'), + (70565, 'Legs'), + (70570, 'Nanoprogram'), + (70571, 'Nanoprogram'), + (70572, 'Nanoprogram'), + (70573, 'Nanoprogram'), + (70574, 'Nanoprogram'), + (70575, 'Nanoprogram'), + (70576, 'Nanoprogram'), + (70577, 'Nanoprogram'), + (70578, 'Nanoprogram'), + (70579, 'Nanoprogram'), + (70580, 'Nanoprogram'), + (70581, 'Nanoprogram'), + (70582, 'Nanoprogram'), + (70583, 'Nanoprogram'), + (70584, 'Nanoprogram'), + (70585, 'Nanoprogram'), + (70586, 'Nanoprogram'), + (70587, 'Nanoprogram'), + (70588, 'Nanoprogram'), + (70589, 'Nanoprogram'), + (70590, 'Nanoprogram'), + (70591, 'Nanoprogram'), + (70592, 'Nanoprogram'), + (70593, 'Nanoprogram'), + (70594, 'Nanoprogram'), + (70595, 'Nanoprogram'), + (70596, 'Nanoprogram'), + (70597, 'Nanoprogram'), + (70598, 'Nanoprogram'), + (75352, 'Nanoprogram'), + (75353, 'Nanoprogram'), + (75354, 'Nanoprogram'), + (75355, 'Nanoprogram'), + (75356, 'Nanoprogram'), + (75357, 'Nanoprogram'), + (75358, 'Nanoprogram'), + (75359, 'Nanoprogram'), + (75360, 'Nanoprogram'), + (75361, 'Nanoprogram'), + (75362, 'Nanoprogram'), + (75363, 'Nanoprogram'), + (75364, 'Nanoprogram'), + (75365, 'Nanoprogram'), + (75366, 'Nanoprogram'), + (75367, 'Nanoprogram'), + (75368, 'Nanoprogram'), + (75369, 'Nanoprogram'), + (75370, 'Nanoprogram'), + (75371, 'Nanoprogram'), + (75372, 'Nanoprogram'), + (75373, 'Nanoprogram'), + (75415, 'Nanoprogram'), + (75416, 'Nanoprogram'), + (75417, 'Nanoprogram'), + (75418, 'Nanoprogram'), + (75419, 'Nanoprogram'), + (75420, 'Nanoprogram'), + (75421, 'Nanoprogram'), + (75422, 'Nanoprogram'), + (75423, 'Nanoprogram'), + (75424, 'Nanoprogram'), + (75425, 'Nanoprogram'), + (75426, 'Nanoprogram'), + (75427, 'Nanoprogram'), + (82800, 'Nanoprogram'), + (82801, 'Nanoprogram'), + (82802, 'Nanoprogram'), + (82803, 'Nanoprogram'), + (82804, 'Nanoprogram'), + (82805, 'Nanoprogram'), + (82806, 'Nanoprogram'), + (82807, 'Nanoprogram'), + (82808, 'Nanoprogram'), + (82809, 'Nanoprogram'), + (82810, 'Nanoprogram'), + (82811, 'Nanoprogram'), + (82812, 'Nanoprogram'), + (82813, 'Nanoprogram'), + (82814, 'Nanoprogram'), + (82815, 'Nanoprogram'), + (82816, 'Nanoprogram'), + (82817, 'Nanoprogram'), + (82818, 'Nanoprogram'), + (82819, 'Nanoprogram'), + (82820, 'Nanoprogram'), + (84140, 'Wrists'), + (84141, 'Fingers'), + (84142, 'Fingers'), + (84143, 'Fingers'), + (84144, 'Fingers'), + (84145, 'Fingers'), + (84146, 'Fingers'), + (84147, 'Fingers'), + (84148, 'Fingers'), + (84149, 'Fingers'), + (84150, 'Fingers'), + (84153, 'Fingers'), + (84154, 'Fingers'), + (84155, 'Fingers'), + (84156, 'Fingers'), + (84157, 'Fingers'), + (84158, 'Fingers'), + (84159, 'Util'), + (84160, 'Util'), + (84163, 'Wrists'), + (84164, 'Wrists'), + (84165, 'Wrists'), + (84166, 'Wrists'), + (84167, 'Wrists'), + (84168, 'Wrists'), + (84169, 'Wrists'), + (84170, 'Wrists'), + (84171, 'Wrists'), + (84172, 'Wrists'), + (84173, 'Wrists'), + (84174, 'Wrists'), + (84175, 'Wrists'), + (84176, 'Wrists'), + (84177, 'Wrists'), + (84178, 'Wrists'), + (84179, 'Wrists'), + (84180, 'Wrists'), + (84181, 'Wrists'), + (84182, 'Wrists'), + (84183, 'Wrists'), + (84184, 'Wrists'), + (84185, 'Wrists'), + (84186, 'Wrists'), + (84188, 'Wrists'), + (85146, 'Nanoprogram'), + (85477, 'Arms'), + (85478, 'Back'), + (85479, 'Back'), + (85480, 'Back'), + (85481, 'Chest'), + (85482, 'Back'), + (85483, 'Back'), + (85484, 'Back'), + (85485, 'Back'), + (85486, 'Back'), + (85487, 'Legs'), + (85488, 'Legs'), + (85489, 'Legs'), + (85490, 'Legs'), + (85491, 'Legs'), + (85492, 'Legs'), + (85493, 'Legs'), + (85494, 'Legs'), + (85495, 'Legs'), + (85496, 'Legs'), + (85497, 'Legs'), + (85498, 'Legs'), + (85499, 'Legs'), + (85500, 'Legs'), + (85501, 'Legs'), + (85502, 'Legs'), + (85503, 'Legs'), + (85504, 'Legs'), + (85505, 'Legs'), + (85506, 'Legs'), + (85507, 'Legs'), + (85508, 'Legs'), + (85509, 'Legs'), + (85510, 'Legs'), + (85511, 'Legs'), + (85512, 'Legs'), + (85513, 'Legs'), + (85514, 'Legs'), + (85515, 'Legs'), + (85516, 'Legs'), + (85517, 'Legs'), + (85518, 'Legs'), + (85519, 'Legs'), + (85520, 'Legs'), + (85521, 'Legs'), + (85522, 'Legs'), + (85523, 'Legs'), + (85524, 'Legs'), + (85525, 'Legs'), + (85526, 'Legs'), + (85527, 'Legs'), + (85528, 'Legs'), + (85529, 'Legs'), + (85530, 'Legs'), + (85531, 'Legs'), + (85532, 'Legs'), + (85533, 'Legs'), + (85534, 'Head'), + (85535, 'Head'), + (85536, 'Head'), + (85537, 'Head'), + (85538, 'Head'), + (85539, 'Head'), + (85540, 'Head'), + (85541, 'Head'), + (85542, 'Head'), + (85543, 'Head'), + (85544, 'Head'), + (85545, 'Head'), + (85546, 'Head'), + (85547, 'Head'), + (85548, 'Head'), + (85549, 'Head'), + (85550, 'Head'), + (85551, 'Head'), + (85552, 'Head'), + (85553, 'Head'), + (85554, 'Head'), + (85555, 'Head'), + (85556, 'Head'), + (85557, 'Head'), + (85558, 'Head'), + (85559, 'Head'), + (85560, 'Head'), + (85561, 'Head'), + (85562, 'Head'), + (85563, 'Head'), + (85564, 'Head'), + (85565, 'Head'), + (85566, 'Head'), + (85567, 'Head'), + (85568, 'Head'), + (85569, 'Head'), + (85570, 'Head'), + (85571, 'Head'), + (85572, 'Head'), + (85573, 'Hands'), + (85574, 'Hands'), + (85575, 'Hands'), + (85576, 'Hands'), + (85577, 'Hands'), + (85578, 'Hands'), + (85579, 'Hands'), + (85580, 'Hands'), + (85581, 'Hands'), + (85582, 'Hands'), + (85583, 'Hands'), + (85584, 'Hands'), + (85585, 'Hands'), + (85586, 'Hands'), + (85587, 'Hands'), + (85588, 'Hands'), + (85589, 'Hands'), + (85590, 'Hands'), + (85591, 'Hands'), + (85592, 'Hands'), + (85593, 'Hands'), + (85594, 'Hands'), + (85595, 'Hands'), + (85596, 'Hands'), + (85597, 'Hands'), + (85598, 'Hands'), + (85599, 'Hands'), + (85600, 'Hands'), + (85601, 'Hands'), + (85602, 'Hands'), + (85603, 'Hands'), + (85604, 'Hands'), + (85605, 'Hands'), + (85606, 'Hands'), + (85607, 'Hands'), + (85608, 'Hands'), + (85609, 'Hands'), + (85610, 'Hands'), + (85611, 'Hands'), + (85612, 'Hands'), + (85613, 'Feet'), + (85614, 'Feet'), + (85615, 'Feet'), + (85616, 'Feet'), + (85617, 'Feet'), + (85618, 'Feet'), + (85619, 'Feet'), + (85620, 'Feet'), + (85621, 'Feet'), + (85622, 'Feet'), + (85623, 'Feet'), + (85624, 'Feet'), + (85625, 'Feet'), + (85626, 'Feet'), + (85627, 'Feet'), + (85628, 'Feet'), + (85629, 'Feet'), + (85630, 'Feet'), + (85631, 'Feet'), + (85632, 'Feet'), + (85633, 'Feet'), + (85634, 'Feet'), + (85635, 'Feet'), + (85636, 'Feet'), + (85637, 'Feet'), + (85638, 'Feet'), + (85639, 'Feet'), + (85640, 'Feet'), + (85641, 'Feet'), + (85642, 'Feet'), + (85643, 'Feet'), + (85644, 'Feet'), + (85645, 'Feet'), + (85646, 'Feet'), + (85647, 'Feet'), + (85648, 'Feet'), + (85649, 'Feet'), + (85650, 'Feet'), + (85651, 'Feet'), + (85652, 'Feet'), + (85653, 'Feet'), + (85654, 'Feet'), + (85655, 'Feet'), + (85656, 'Feet'), + (85657, 'Feet'), + (85658, 'Chest'), + (85659, 'Chest'), + (85660, 'Chest'), + (85661, 'Chest'), + (85662, 'Chest'), + (85663, 'Chest'), + (85664, 'Chest'), + (85665, 'Chest'), + (85666, 'Chest'), + (85667, 'Chest'), + (85668, 'Chest'), + (85669, 'Chest'), + (85670, 'Chest'), + (85671, 'Chest'), + (85672, 'Chest'), + (85673, 'Chest'), + (85674, 'Chest'), + (85675, 'Chest'), + (85676, 'Chest'), + (85677, 'Chest'), + (85678, 'Chest'), + (85679, 'Chest'), + (85680, 'Chest'), + (85681, 'Chest'), + (85682, 'Chest'), + (85683, 'Chest'), + (85684, 'Chest'), + (85685, 'Chest'), + (85686, 'Chest'), + (85687, 'Chest'), + (85688, 'Chest'), + (85689, 'Chest'), + (85690, 'Chest'), + (85691, 'Chest'), + (85692, 'Chest'), + (85693, 'Chest'), + (85694, 'Chest'), + (85695, 'Chest'), + (85696, 'Chest'), + (85697, 'Chest'), + (85698, 'Chest'), + (85699, 'Chest'), + (85700, 'Chest'), + (85701, 'Chest'), + (85702, 'Chest'), + (85703, 'Chest'), + (85704, 'Chest'), + (85705, 'Chest'), + (85706, 'Chest'), + (85707, 'Chest'), + (85708, 'Chest'), + (85709, 'Chest'), + (85710, 'Chest'), + (85711, 'Chest'), + (85712, 'Chest'), + (85713, 'Chest'), + (85714, 'Chest'), + (85715, 'Head'), + (85716, 'Back'), + (85717, 'Arms'), + (85718, 'Arms'), + (85719, 'Arms'), + (85720, 'Arms'), + (85721, 'Arms'), + (85722, 'Arms'), + (85723, 'Arms'), + (85724, 'Arms'), + (85725, 'Arms'), + (85726, 'Arms'), + (85727, 'Arms'), + (85728, 'Arms'), + (85729, 'Arms'), + (85730, 'Arms'), + (85731, 'Arms'), + (85732, 'Arms'), + (85733, 'Arms'), + (85734, 'Arms'), + (85735, 'Arms'), + (85736, 'Arms'), + (85737, 'Arms'), + (85738, 'Arms'), + (85739, 'Arms'), + (85740, 'Arms'), + (85741, 'Arms'), + (85742, 'Arms'), + (85743, 'Arms'), + (85744, 'Arms'), + (85745, 'Arms'), + (85746, 'Arms'), + (85747, 'Arms'), + (85748, 'Arms'), + (85749, 'Arms'), + (85750, 'Arms'), + (85751, 'Arms'), + (85752, 'Arms'), + (85753, 'Arms'), + (85754, 'Arms'), + (85755, 'Arms'), + (85756, 'Arms'), + (85757, 'Arms'), + (85758, 'Arms'), + (85759, 'Arms'), + (85760, 'Arms'), + (85761, 'Arms'), + (85907, 'Util'), + (85908, 'Util'), + (85935, 'Back'), + (88058, 'Fingers'), + (88067, 'Back'), + (88068, 'Back'), + (88069, 'Back'), + (88070, 'Back'), + (88071, 'Back'), + (88072, 'Back'), + (88073, 'Back'), + (88074, 'Back'), + (88075, 'Back'), + (88076, 'Back'), + (88077, 'Back'), + (88078, 'Back'), + (88373, 'Hud'), + (88374, 'Hud'), + (88375, 'Hud'), + (88376, 'Hud'), + (91378, 'Nanoprogram'), + (91381, 'Nanoprogram'), + (91382, 'Nanoprogram'), + (91384, 'Nanoprogram'), + (91386, 'Nanoprogram'), + (91387, 'Nanoprogram'), + (91389, 'Nanoprogram'), + (91390, 'Nanoprogram'), + (91392, 'Nanoprogram'), + (91394, 'Nanoprogram'), + (91395, 'Nanoprogram'), + (91397, 'Nanoprogram'), + (91399, 'Nanoprogram'), + (91401, 'Nanoprogram'), + (91403, 'Nanoprogram'), + (92189, 'Nanoprogram'), + (92194, 'Nanoprogram'), + (92196, 'Nanoprogram'), + (92197, 'Nanoprogram'), + (92199, 'Nanoprogram'), + (92201, 'Nanoprogram'), + (92203, 'Nanoprogram'), + (92205, 'Nanoprogram'), + (93133, 'Nanoprogram'), + (93134, 'Nanoprogram'), + (93135, 'Nanoprogram'), + (93136, 'Nanoprogram'), + (93137, 'Nanoprogram'), + (93138, 'Nanoprogram'), + (93139, 'Nanoprogram'), + (93140, 'Nanoprogram'), + (95512, 'Deck'), + (95513, 'Deck'), + (95514, 'Deck'), + (95515, 'Deck'), + (95516, 'Deck'), + (95517, 'Deck'), + (95518, 'Deck'), + (95519, 'Deck'), + (95520, 'Deck'), + (95531, 'Nanoprogram'), + (95532, 'Nanoprogram'), + (95533, 'Nanoprogram'), + (95538, 'Nanoprogram'), + (95723, 'Nanoprogram'), + (95724, 'Nanoprogram'), + (95725, 'Nanoprogram'), + (95726, 'Nanoprogram'), + (95727, 'Nanoprogram'), + (95728, 'Nanoprogram'), + (95729, 'Nanoprogram'), + (95730, 'Nanoprogram'), + (95731, 'Nanoprogram'), + (95732, 'Nanoprogram'), + (95733, 'Nanoprogram'), + (95734, 'Nanoprogram'), + (95735, 'Nanoprogram'), + (95736, 'Nanoprogram'), + (95737, 'Nanoprogram'), + (95738, 'Nanoprogram'), + (95805, 'Fingers'), + (96078, 'Hud'), + (96079, 'Hud'), + (96086, 'Hud'), + (96087, 'Hud'), + (96088, 'Hud'), + (96092, 'Hud'), + (96093, 'Hud'), + (96094, 'Hud'), + (96095, 'Hud'), + (96351, 'Neck'), + (96352, 'Neck'), + (96353, 'Neck'), + (96354, 'Neck'), + (96355, 'Neck'), + (96356, 'Neck'), + (96357, 'Neck'), + (96358, 'Neck'), + (97447, 'Nanoprogram'), + (97449, 'Nanoprogram'), + (97450, 'Nanoprogram'), + (97452, 'Nanoprogram'), + (97453, 'Nanoprogram'), + (97455, 'Nanoprogram'), + (97456, 'Nanoprogram'), + (97458, 'Nanoprogram'), + (97459, 'Nanoprogram'), + (97461, 'Nanoprogram'), + (97462, 'Nanoprogram'), + (97464, 'Nanoprogram'), + (97465, 'Nanoprogram'), + (99129, 'Nanoprogram'), + (99130, 'Nanoprogram'), + (99131, 'Nanoprogram'), + (99132, 'Nanoprogram'), + (99133, 'Nanoprogram'), + (99134, 'Nanoprogram'), + (99135, 'Nanoprogram'), + (99136, 'Nanoprogram'), + (99137, 'Nanoprogram'), + (99138, 'Nanoprogram'), + (99139, 'Nanoprogram'), + (99140, 'Nanoprogram'), + (99719, 'Neck'), + (99720, 'Neck'), + (99721, 'Neck'), + (99722, 'Neck'), + (99723, 'Neck'), + (99724, 'Neck'), + (99725, 'Neck'), + (99726, 'Neck'), + (100000, 'Back'), + (100001, 'Back'), + (100002, 'Back'), + (100003, 'Back'), + (100008, 'Back'), + (100260, 'Nanoprogram'), + (100261, 'Nanoprogram'), + (100262, 'Nanoprogram'), + (100263, 'Nanoprogram'), + (100264, 'Nanoprogram'), + (100444, 'Nanoprogram'), + (100445, 'Nanoprogram'), + (100446, 'Nanoprogram'), + (100447, 'Nanoprogram'), + (100448, 'Nanoprogram'), + (100449, 'Nanoprogram'), + (100450, 'Nanoprogram'), + (100451, 'Nanoprogram'), + (100452, 'Nanoprogram'), + (100453, 'Nanoprogram'), + (100454, 'Nanoprogram'), + (100455, 'Nanoprogram'), + (100457, 'Nanoprogram'), + (100460, 'Nanoprogram'), + (100461, 'Nanoprogram'), + (100462, 'Nanoprogram'), + (116822, 'Nanoprogram'), + (116829, 'Nanoprogram'), + (116830, 'Nanoprogram'), + (116831, 'Nanoprogram'), + (117294, 'Hud'), + (117295, 'Hud'), + (117322, 'Hud'), + (118180, 'Feet'), + (118181, 'Legs'), + (118183, 'Chest'), + (118184, 'Arms'), + (118195, 'Head'), + (120500, 'Nanoprogram'), + (120565, 'Head'), + (120573, 'Head'), + (120574, 'Head'), + (120575, 'Head'), + (120579, 'Legs'), + (120581, 'Hands'), + (120582, 'Feet'), + (120583, 'Chest'), + (120584, 'Arms'), + (120585, 'Legs'), + (120586, 'Head'), + (120587, 'Hands'), + (120588, 'Feet'), + (120589, 'Chest'), + (120590, 'Arms'), + (120591, 'Legs'), + (120592, 'Head'), + (120593, 'Hands'), + (120594, 'Feet'), + (120595, 'Chest'), + (120596, 'Arms'), + (121360, 'Nanoprogram'), + (121362, 'Nanoprogram'), + (121363, 'Nanoprogram'), + (121364, 'Nanoprogram'), + (121365, 'Nanoprogram'), + (121366, 'Nanoprogram'), + (121367, 'Nanoprogram'), + (121368, 'Nanoprogram'), + (121369, 'Nanoprogram'), + (121370, 'Nanoprogram'), + (121371, 'Nanoprogram'), + (121372, 'Nanoprogram'), + (121373, 'Nanoprogram'), + (121374, 'Nanoprogram'), + (121375, 'Nanoprogram'), + (121376, 'Nanoprogram'), + (121566, 'Weapon'), + (121578, 'Weapon'), + (121579, 'Weapon'), + (121580, 'Weapon'), + (121581, 'Weapon'), + (121582, 'Weapon'), + (121583, 'Weapon'), + (121584, 'Weapon'), + (121585, 'Weapon'), + (121586, 'Weapon'), + (121587, 'Weapon'), + (121588, 'Weapon'), + (121589, 'Weapon'), + (121590, 'Weapon'), + (121595, 'Weapon'), + (121596, 'Weapon'), + (121597, 'Weapon'), + (121598, 'Weapon'), + (121599, 'Weapon'), + (121600, 'Weapon'), + (121601, 'Weapon'), + (121602, 'Weapon'), + (121603, 'Weapon'), + (121604, 'Weapon'), + (121605, 'Weapon'), + (121606, 'Weapon'), + (121607, 'Weapon'), + (121608, 'Weapon'), + (121609, 'Weapon'), + (121610, 'Weapon'), + (121611, 'Weapon'), + (121612, 'Weapon'), + (121613, 'Weapon'), + (121614, 'Weapon'), + (121615, 'Weapon'), + (121616, 'Weapon'), + (121617, 'Weapon'), + (121618, 'Weapon'), + (121619, 'Weapon'), + (121620, 'Weapon'), + (121621, 'Weapon'), + (121622, 'Weapon'), + (121623, 'Weapon'), + (121624, 'Weapon'), + (121625, 'Weapon'), + (121626, 'Weapon'), + (121627, 'Weapon'), + (121628, 'Weapon'), + (121629, 'Weapon'), + (121630, 'Weapon'), + (121631, 'Weapon'), + (121632, 'Weapon'), + (121633, 'Weapon'), + (121634, 'Weapon'), + (121635, 'Weapon'), + (121636, 'Weapon'), + (121637, 'Weapon'), + (121638, 'Weapon'), + (121639, 'Weapon'), + (121640, 'Weapon'), + (121641, 'Weapon'), + (121642, 'Weapon'), + (121643, 'Weapon'), + (121644, 'Weapon'), + (121645, 'Weapon'), + (121646, 'Weapon'), + (121647, 'Weapon'), + (121654, 'Weapon'), + (121655, 'Weapon'), + (121656, 'Weapon'), + (121657, 'Weapon'), + (121658, 'Weapon'), + (121659, 'Weapon'), + (121660, 'Weapon'), + (121661, 'Weapon'), + (121662, 'Weapon'), + (121663, 'Weapon'), + (121664, 'Weapon'), + (121667, 'Weapon'), + (121668, 'Weapon'), + (121669, 'Weapon'), + (121670, 'Weapon'), + (121671, 'Weapon'), + (121672, 'Weapon'), + (121673, 'Weapon'), + (121674, 'Weapon'), + (121675, 'Weapon'), + (121676, 'Weapon'), + (121677, 'Weapon'), + (121678, 'Weapon'), + (121679, 'Weapon'), + (121680, 'Weapon'), + (121681, 'Weapon'), + (121682, 'Weapon'), + (121683, 'Weapon'), + (122349, 'Weapon'), + (122350, 'Weapon'), + (122351, 'Weapon'), + (122352, 'Weapon'), + (122353, 'Weapon'), + (122354, 'Weapon'), + (122355, 'Weapon'), + (122356, 'Weapon'), + (122357, 'Weapon'), + (122358, 'Weapon'), + (122359, 'Weapon'), + (122360, 'Weapon'), + (122361, 'Weapon'), + (122362, 'Weapon'), + (122363, 'Weapon'), + (122364, 'Weapon'), + (122365, 'Weapon'), + (122366, 'Weapon'), + (122367, 'Weapon'), + (122368, 'Weapon'), + (122369, 'Weapon'), + (122370, 'Weapon'), + (122371, 'Weapon'), + (122372, 'Weapon'), + (122373, 'Weapon'), + (122374, 'Weapon'), + (122375, 'Weapon'), + (122376, 'Weapon'), + (122377, 'Weapon'), + (122378, 'Weapon'), + (122379, 'Weapon'), + (122380, 'Weapon'), + (122381, 'Weapon'), + (122382, 'Weapon'), + (122383, 'Weapon'), + (122384, 'Weapon'), + (122385, 'Weapon'), + (122386, 'Weapon'), + (122387, 'Weapon'), + (122388, 'Weapon'), + (122389, 'Weapon'), + (122390, 'Weapon'), + (122391, 'Weapon'), + (122392, 'Weapon'), + (122393, 'Weapon'), + (122394, 'Weapon'), + (122395, 'Weapon'), + (122397, 'Weapon'), + (122398, 'Weapon'), + (122399, 'Weapon'), + (122400, 'Weapon'), + (122401, 'Weapon'), + (122402, 'Weapon'), + (122403, 'Weapon'), + (122404, 'Weapon'), + (122405, 'Weapon'), + (122406, 'Weapon'), + (122407, 'Weapon'), + (122408, 'Weapon'), + (122409, 'Weapon'), + (122410, 'Weapon'), + (122411, 'Weapon'), + (122412, 'Weapon'), + (122413, 'Weapon'), + (122414, 'Weapon'), + (122415, 'Weapon'), + (122416, 'Weapon'), + (122417, 'Weapon'), + (122418, 'Weapon'), + (122419, 'Weapon'), + (122420, 'Weapon'), + (122421, 'Weapon'), + (122422, 'Weapon'), + (122423, 'Weapon'), + (122424, 'Weapon'), + (122828, 'Weapon'), + (123731, 'Weapon'), + (123732, 'Weapon'), + (123733, 'Weapon'), + (123734, 'Weapon'), + (123735, 'Weapon'), + (123736, 'Weapon'), + (123737, 'Weapon'), + (123738, 'Weapon'), + (123739, 'Weapon'), + (123740, 'Weapon'), + (123741, 'Weapon'), + (123752, 'Weapon'), + (123753, 'Weapon'), + (123754, 'Weapon'), + (123755, 'Weapon'), + (123756, 'Weapon'), + (123757, 'Weapon'), + (123758, 'Weapon'), + (123759, 'Weapon'), + (123760, 'Weapon'), + (123769, 'Weapon'), + (123770, 'Weapon'), + (123771, 'Weapon'), + (123772, 'Weapon'), + (123773, 'Weapon'), + (123778, 'Weapon'), + (123779, 'Weapon'), + (123780, 'Weapon'), + (123781, 'Weapon'), + (123782, 'Weapon'), + (123783, 'Weapon'), + (123784, 'Weapon'), + (123785, 'Weapon'), + (123786, 'Weapon'), + (123787, 'Weapon'), + (123788, 'Weapon'), + (123801, 'Weapon'), + (123802, 'Weapon'), + (123803, 'Weapon'), + (123804, 'Weapon'), + (123805, 'Weapon'), + (123806, 'Weapon'), + (123807, 'Weapon'), + (123812, 'Weapon'), + (123813, 'Weapon'), + (123814, 'Weapon'), + (123815, 'Weapon'), + (123816, 'Weapon'), + (123817, 'Weapon'), + (123818, 'Weapon'), + (123819, 'Weapon'), + (123820, 'Weapon'), + (123821, 'Weapon'), + (123822, 'Weapon'), + (123823, 'Weapon'), + (123824, 'Weapon'), + (123825, 'Weapon'), + (123834, 'Weapon'), + (123835, 'Weapon'), + (123836, 'Weapon'), + (123841, 'Weapon'), + (123842, 'Weapon'), + (123843, 'Weapon'), + (123848, 'Weapon'), + (123849, 'Weapon'), + (123850, 'Weapon'), + (123851, 'Weapon'), + (123852, 'Weapon'), + (123853, 'Weapon'), + (123854, 'Weapon'), + (123855, 'Weapon'), + (123856, 'Weapon'), + (123857, 'Weapon'), + (123858, 'Weapon'), + (123859, 'Weapon'), + (123860, 'Weapon'), + (123861, 'Weapon'), + (123862, 'Weapon'), + (123863, 'Weapon'), + (123864, 'Weapon'), + (123865, 'Weapon'), + (123866, 'Weapon'), + (123867, 'Weapon'), + (123872, 'Weapon'), + (123873, 'Weapon'), + (123874, 'Weapon'), + (123875, 'Weapon'), + (123876, 'Weapon'), + (123877, 'Weapon'), + (123878, 'Weapon'), + (123883, 'Weapon'), + (123884, 'Weapon'), + (123885, 'Weapon'), + (123890, 'Weapon'), + (123891, 'Weapon'), + (123892, 'Weapon'), + (123899, 'Weapon'), + (123900, 'Weapon'), + (123901, 'Weapon'), + (123902, 'Weapon'), + (123903, 'Weapon'), + (123908, 'Weapon'), + (123915, 'Weapon'), + (123916, 'Weapon'), + (123917, 'Weapon'), + (123918, 'Weapon'), + (123919, 'Weapon'), + (123920, 'Weapon'), + (123921, 'Weapon'), + (123922, 'Weapon'), + (123923, 'Weapon'), + (123924, 'Weapon'), + (123925, 'Weapon'), + (123926, 'Weapon'), + (123927, 'Weapon'), + (123932, 'Weapon'), + (123937, 'Weapon'), + (123938, 'Weapon'), + (123939, 'Weapon'), + (123940, 'Weapon'), + (123941, 'Weapon'), + (123946, 'Weapon'), + (123947, 'Weapon'), + (123948, 'Weapon'), + (123949, 'Weapon'), + (123950, 'Weapon'), + (123951, 'Weapon'), + (123952, 'Weapon'), + (123953, 'Weapon'), + (123954, 'Weapon'), + (123955, 'Weapon'), + (123956, 'Weapon'), + (123957, 'Weapon'), + (123958, 'Weapon'), + (123959, 'Weapon'), + (123960, 'Weapon'), + (123973, 'Weapon'), + (123978, 'Weapon'), + (123983, 'Weapon'), + (123988, 'Weapon'), + (123989, 'Weapon'), + (123990, 'Weapon'), + (123991, 'Weapon'), + (123992, 'Weapon'), + (123993, 'Weapon'), + (123994, 'Weapon'), + (123995, 'Weapon'), + (123996, 'Weapon'), + (123997, 'Weapon'), + (123998, 'Weapon'), + (123999, 'Weapon'), + (124000, 'Weapon'), + (124001, 'Weapon'), + (124002, 'Weapon'), + (124003, 'Weapon'), + (124013, 'Weapon'), + (124014, 'Weapon'), + (124015, 'Weapon'), + (124020, 'Weapon'), + (124021, 'Weapon'), + (124022, 'Weapon'), + (124023, 'Weapon'), + (124024, 'Weapon'), + (124029, 'Weapon'), + (124030, 'Weapon'), + (124031, 'Weapon'), + (124032, 'Weapon'), + (124033, 'Weapon'), + (124034, 'Weapon'), + (124035, 'Weapon'), + (124036, 'Weapon'), + (124037, 'Weapon'), + (124038, 'Weapon'), + (124039, 'Weapon'), + (124040, 'Weapon'), + (124041, 'Weapon'), + (124052, 'Weapon'), + (124064, 'Weapon'), + (124065, 'Weapon'), + (124066, 'Weapon'), + (124067, 'Weapon'), + (124068, 'Weapon'), + (124069, 'Weapon'), + (124077, 'Weapon'), + (124078, 'Weapon'), + (124079, 'Weapon'), + (124080, 'Weapon'), + (124081, 'Weapon'), + (124082, 'Weapon'), + (124083, 'Weapon'), + (124084, 'Weapon'), + (124085, 'Weapon'), + (124086, 'Weapon'), + (124087, 'Weapon'), + (124088, 'Weapon'), + (124089, 'Weapon'), + (124090, 'Weapon'), + (124091, 'Weapon'), + (124096, 'Weapon'), + (124097, 'Weapon'), + (124098, 'Weapon'), + (124099, 'Weapon'), + (124100, 'Weapon'), + (124101, 'Weapon'), + (124102, 'Weapon'), + (124103, 'Weapon'), + (124104, 'Weapon'), + (124105, 'Weapon'), + (124112, 'Weapon'), + (124113, 'Weapon'), + (124114, 'Weapon'), + (124115, 'Weapon'), + (124116, 'Weapon'), + (124117, 'Weapon'), + (124118, 'Weapon'), + (124119, 'Weapon'), + (124120, 'Weapon'), + (124125, 'Weapon'), + (124126, 'Weapon'), + (124127, 'Weapon'), + (124128, 'Weapon'), + (124129, 'Weapon'), + (124130, 'Weapon'), + (124131, 'Weapon'), + (124132, 'Weapon'), + (124133, 'Weapon'), + (124134, 'Weapon'), + (124135, 'Weapon'), + (124138, 'Weapon'), + (124139, 'Weapon'), + (124140, 'Weapon'), + (124141, 'Weapon'), + (124142, 'Weapon'), + (124147, 'Weapon'), + (124148, 'Weapon'), + (124149, 'Weapon'), + (124150, 'Weapon'), + (124151, 'Weapon'), + (124152, 'Weapon'), + (124153, 'Weapon'), + (124154, 'Weapon'), + (124155, 'Weapon'), + (124156, 'Weapon'), + (124157, 'Weapon'), + (124158, 'Weapon'), + (124159, 'Weapon'), + (124160, 'Weapon'), + (124161, 'Weapon'), + (124168, 'Weapon'), + (124169, 'Weapon'), + (124170, 'Weapon'), + (124171, 'Weapon'), + (124174, 'Weapon'), + (124175, 'Weapon'), + (124180, 'Weapon'), + (124181, 'Weapon'), + (124182, 'Weapon'), + (124187, 'Weapon'), + (124188, 'Weapon'), + (124189, 'Weapon'), + (124190, 'Weapon'), + (124191, 'Weapon'), + (124192, 'Weapon'), + (124193, 'Weapon'), + (124194, 'Weapon'), + (124195, 'Weapon'), + (124196, 'Weapon'), + (124197, 'Weapon'), + (124202, 'Weapon'), + (124203, 'Weapon'), + (124204, 'Weapon'), + (124205, 'Weapon'), + (124206, 'Weapon'), + (124207, 'Weapon'), + (124208, 'Weapon'), + (124209, 'Weapon'), + (124210, 'Weapon'), + (124211, 'Weapon'), + (124212, 'Weapon'), + (124213, 'Weapon'), + (124214, 'Weapon'), + (124215, 'Weapon'), + (124216, 'Weapon'), + (124221, 'Weapon'), + (124222, 'Weapon'), + (124223, 'Weapon'), + (124224, 'Weapon'), + (124225, 'Weapon'), + (124226, 'Weapon'), + (124227, 'Weapon'), + (124228, 'Weapon'), + (124229, 'Weapon'), + (124234, 'Weapon'), + (124235, 'Weapon'), + (124236, 'Weapon'), + (124237, 'Weapon'), + (124238, 'Weapon'), + (124239, 'Weapon'), + (124240, 'Weapon'), + (124245, 'Weapon'), + (124246, 'Weapon'), + (124247, 'Weapon'), + (124248, 'Weapon'), + (124249, 'Weapon'), + (124250, 'Weapon'), + (124251, 'Weapon'), + (124252, 'Weapon'), + (124253, 'Weapon'), + (124254, 'Weapon'), + (124255, 'Weapon'), + (124260, 'Weapon'), + (124261, 'Weapon'), + (124262, 'Weapon'), + (124267, 'Weapon'), + (124268, 'Weapon'), + (124269, 'Weapon'), + (124270, 'Weapon'), + (124271, 'Weapon'), + (124272, 'Weapon'), + (124273, 'Weapon'), + (124274, 'Weapon'), + (124275, 'Weapon'), + (124280, 'Weapon'), + (124281, 'Weapon'), + (124282, 'Weapon'), + (124283, 'Weapon'), + (124284, 'Weapon'), + (124289, 'Weapon'), + (124290, 'Weapon'), + (124291, 'Weapon'), + (124292, 'Weapon'), + (124293, 'Weapon'), + (124294, 'Weapon'), + (124295, 'Weapon'), + (124296, 'Weapon'), + (124297, 'Weapon'), + (124298, 'Weapon'), + (124299, 'Weapon'), + (124300, 'Weapon'), + (124301, 'Weapon'), + (124306, 'Weapon'), + (124307, 'Weapon'), + (124308, 'Weapon'), + (124309, 'Weapon'), + (124310, 'Weapon'), + (124311, 'Weapon'), + (124312, 'Weapon'), + (124317, 'Weapon'), + (124318, 'Weapon'), + (124319, 'Weapon'), + (124320, 'Weapon'), + (124321, 'Weapon'), + (124322, 'Weapon'), + (124323, 'Weapon'), + (124324, 'Weapon'), + (124325, 'Weapon'), + (124326, 'Weapon'), + (124327, 'Weapon'), + (124332, 'Weapon'), + (124333, 'Weapon'), + (124334, 'Weapon'), + (124335, 'Weapon'), + (124336, 'Weapon'), + (124337, 'Weapon'), + (124338, 'Weapon'), + (124339, 'Weapon'), + (124340, 'Weapon'), + (124341, 'Weapon'), + (124342, 'Weapon'), + (124343, 'Weapon'), + (124344, 'Weapon'), + (124345, 'Weapon'), + (124346, 'Weapon'), + (124347, 'Weapon'), + (124352, 'Weapon'), + (124353, 'Weapon'), + (124354, 'Weapon'), + (124355, 'Weapon'), + (124356, 'Weapon'), + (124359, 'Weapon'), + (124360, 'Weapon'), + (124361, 'Weapon'), + (124362, 'Weapon'), + (124363, 'Weapon'), + (124368, 'Weapon'), + (124371, 'Weapon'), + (124376, 'Weapon'), + (124377, 'Weapon'), + (124378, 'Weapon'), + (124379, 'Weapon'), + (124380, 'Weapon'), + (124381, 'Weapon'), + (124382, 'Weapon'), + (124385, 'Weapon'), + (124390, 'Weapon'), + (124393, 'Weapon'), + (124394, 'Weapon'), + (124395, 'Weapon'), + (124396, 'Weapon'), + (124397, 'Weapon'), + (124398, 'Weapon'), + (124399, 'Weapon'), + (124400, 'Weapon'), + (124401, 'Weapon'), + (124402, 'Weapon'), + (124403, 'Weapon'), + (124404, 'Weapon'), + (124405, 'Weapon'), + (124406, 'Weapon'), + (124411, 'Weapon'), + (124412, 'Weapon'), + (124413, 'Weapon'), + (124414, 'Weapon'), + (124415, 'Weapon'), + (124416, 'Weapon'), + (124417, 'Weapon'), + (124418, 'Weapon'), + (124419, 'Weapon'), + (124422, 'Weapon'), + (124423, 'Weapon'), + (124424, 'Weapon'), + (124425, 'Weapon'), + (124426, 'Weapon'), + (124427, 'Weapon'), + (124428, 'Weapon'), + (124429, 'Weapon'), + (124430, 'Weapon'), + (124435, 'Weapon'), + (124436, 'Weapon'), + (124437, 'Weapon'), + (124438, 'Weapon'), + (124439, 'Weapon'), + (124440, 'Weapon'), + (124441, 'Weapon'), + (124442, 'Weapon'), + (124443, 'Weapon'), + (124448, 'Weapon'), + (124449, 'Weapon'), + (124450, 'Weapon'), + (124451, 'Weapon'), + (124452, 'Weapon'), + (124457, 'Weapon'), + (124458, 'Weapon'), + (124459, 'Weapon'), + (124460, 'Weapon'), + (124461, 'Weapon'), + (124462, 'Weapon'), + (124463, 'Weapon'), + (124464, 'Weapon'), + (124469, 'Weapon'), + (124470, 'Weapon'), + (124471, 'Weapon'), + (124472, 'Weapon'), + (124473, 'Weapon'), + (124474, 'Weapon'), + (124475, 'Weapon'), + (124476, 'Weapon'), + (124477, 'Weapon'), + (124478, 'Weapon'), + (124479, 'Weapon'), + (124480, 'Weapon'), + (124481, 'Weapon'), + (124482, 'Weapon'), + (124483, 'Weapon'), + (124486, 'Weapon'), + (124489, 'Weapon'), + (124490, 'Weapon'), + (124491, 'Weapon'), + (124492, 'Weapon'), + (124493, 'Weapon'), + (124498, 'Weapon'), + (124499, 'Weapon'), + (124500, 'Weapon'), + (124501, 'Weapon'), + (124502, 'Weapon'), + (124507, 'Weapon'), + (124508, 'Weapon'), + (124509, 'Weapon'), + (124514, 'Weapon'), + (124515, 'Weapon'), + (124516, 'Weapon'), + (124517, 'Weapon'), + (124518, 'Weapon'), + (124519, 'Weapon'), + (124520, 'Weapon'), + (124521, 'Weapon'), + (124522, 'Weapon'), + (124523, 'Weapon'), + (124524, 'Weapon'), + (124525, 'Weapon'), + (124526, 'Weapon'), + (124527, 'Weapon'), + (124528, 'Weapon'), + (124531, 'Weapon'), + (124532, 'Weapon'), + (124533, 'Weapon'), + (124538, 'Weapon'), + (124539, 'Weapon'), + (124540, 'Weapon'), + (124541, 'Weapon'), + (124542, 'Weapon'), + (124543, 'Weapon'), + (124544, 'Weapon'), + (124545, 'Weapon'), + (124546, 'Weapon'), + (124547, 'Weapon'), + (124552, 'Weapon'), + (124553, 'Weapon'), + (124554, 'Weapon'), + (124555, 'Weapon'), + (124556, 'Weapon'), + (124557, 'Weapon'), + (124558, 'Weapon'), + (124559, 'Weapon'), + (124621, 'Weapon'), + (124622, 'Weapon'), + (124623, 'Weapon'), + (124643, 'Weapon'), + (124644, 'Weapon'), + (124645, 'Weapon'), + (124646, 'Weapon'), + (124647, 'Weapon'), + (124648, 'Weapon'), + (124649, 'Weapon'), + (124650, 'Weapon'), + (124651, 'Weapon'), + (124652, 'Weapon'), + (124653, 'Weapon'), + (124654, 'Weapon'), + (124655, 'Weapon'), + (124656, 'Weapon'), + (124657, 'Weapon'), + (124658, 'Weapon'), + (124659, 'Weapon'), + (124660, 'Weapon'), + (124661, 'Weapon'), + (125034, 'Weapon'), + (125035, 'Weapon'), + (125036, 'Weapon'), + (125037, 'Weapon'), + (125038, 'Weapon'), + (125039, 'Weapon'), + (125040, 'Weapon'), + (125041, 'Weapon'), + (125042, 'Weapon'), + (125053, 'Weapon'), + (125054, 'Weapon'), + (125055, 'Weapon'), + (125056, 'Weapon'), + (125057, 'Weapon'), + (125058, 'Weapon'), + (125059, 'Weapon'), + (125060, 'Weapon'), + (125061, 'Weapon'), + (125093, 'Weapon'), + (125094, 'Weapon'), + (125095, 'Weapon'), + (125096, 'Weapon'), + (125097, 'Weapon'), + (125098, 'Weapon'), + (125099, 'Weapon'), + (125100, 'Weapon'), + (125101, 'Weapon'), + (125102, 'Weapon'), + (125103, 'Weapon'), + (125104, 'Weapon'), + (125105, 'Weapon'), + (125106, 'Weapon'), + (125107, 'Weapon'), + (125108, 'Weapon'), + (125109, 'Weapon'), + (125110, 'Weapon'), + (125445, 'Weapon'), + (125446, 'Weapon'), + (125447, 'Weapon'), + (125448, 'Weapon'), + (125449, 'Weapon'), + (125450, 'Weapon'), + (125451, 'Weapon'), + (125452, 'Weapon'), + (125453, 'Weapon'), + (125454, 'Weapon'), + (125455, 'Weapon'), + (125456, 'Weapon'), + (125457, 'Weapon'), + (125458, 'Weapon'), + (128499, 'Weapon'), + (128500, 'Weapon'), + (128501, 'Weapon'), + (128786, 'Weapon'), + (128791, 'Weapon'), + (129023, 'Weapon'), + (129024, 'Weapon'), + (129025, 'Weapon'), + (129045, 'Weapon'), + (129046, 'Weapon'), + (129047, 'Weapon'), + (129048, 'Weapon'), + (129049, 'Weapon'), + (129050, 'Weapon'), + (129051, 'Weapon'), + (129052, 'Weapon'), + (129053, 'Weapon'), + (129054, 'Weapon'), + (129055, 'Weapon'), + (129056, 'Weapon'), + (129057, 'Weapon'), + (129058, 'Weapon'), + (129059, 'Weapon'), + (129061, 'Weapon'), + (129062, 'Weapon'), + (129063, 'Weapon'), + (129073, 'Weapon'), + (129074, 'Weapon'), + (129075, 'Weapon'), + (129076, 'Weapon'), + (129077, 'Weapon'), + (129078, 'Weapon'), + (129079, 'Weapon'), + (129080, 'Weapon'), + (129081, 'Weapon'), + (129638, 'Util'), + (129639, 'Util'), + (129640, 'Util'), + (129641, 'Util'), + (129642, 'Util'), + (129643, 'Util'), + (129644, 'Util'), + (129645, 'Util'), + (129646, 'Util'), + (129647, 'Util'), + (129648, 'Util'), + (129649, 'Util'), + (129650, 'Util'), + (129651, 'Util'), + (129652, 'Util'), + (129653, 'Util'), + (129654, 'Util'), + (129655, 'Util'), + (129656, 'Util'), + (130046, 'Weapon'), + (130048, 'Weapon'), + (130049, 'Weapon'), + (130050, 'Weapon'), + (135719, 'Back'), + (137072, 'Head'), + (137669, 'Head'), + (142631, 'Feet'), + (142632, 'Back'), + (142633, 'Legs'), + (142634, 'Head'), + (142635, 'Feet'), + (142636, 'Chest'), + (142637, 'Arms'), + (142638, 'Back'), + (142640, 'Legs'), + (142641, 'Legs'), + (142642, 'Head'), + (142643, 'Hands'), + (142644, 'Hands'), + (142645, 'Feet'), + (142646, 'Back'), + (142647, 'Chest'), + (142648, 'Chest'), + (142649, 'Back'), + (142650, 'Back'), + (142651, 'Arms'), + (142652, 'Arms'), + (142653, 'Back'), + (142654, 'Legs'), + (142655, 'Legs'), + (142656, 'Head'), + (142657, 'Hands'), + (142658, 'Hands'), + (142659, 'Feet'), + (142660, 'Feet'), + (142661, 'Chest'), + (142662, 'Chest'), + (142663, 'Back'), + (142664, 'Arms'), + (142665, 'Arms'), + (142666, 'Legs'), + (142667, 'Legs'), + (142668, 'Head'), + (142669, 'Hands'), + (142670, 'Hands'), + (142671, 'Feet'), + (142672, 'Feet'), + (142673, 'Chest'), + (142674, 'Chest'), + (142675, 'Back'), + (142676, 'Back'), + (142677, 'Arms'), + (142678, 'Arms'), + (142679, 'Legs'), + (142680, 'Legs'), + (142681, 'Head'), + (142682, 'Head'), + (142683, 'Hands'), + (142684, 'Hands'), + (142685, 'Feet'), + (142686, 'Feet'), + (142687, 'Chest'), + (142688, 'Chest'), + (142689, 'Arms'), + (142690, 'Arms'), + (142691, 'Legs'), + (142692, 'Head'), + (142693, 'Hands'), + (142694, 'Feet'), + (142695, 'Chest'), + (142696, 'Arms'), + (144058, 'Weapon'), + (144059, 'Weapon'), + (144060, 'Weapon'), + (144061, 'Weapon'), + (144062, 'Weapon'), + (149901, 'Shoulders'), + (149902, 'Shoulders'), + (149903, 'Shoulders'), + (149904, 'Shoulders'), + (149905, 'Shoulders'), + (149906, 'Shoulders'), + (149907, 'Shoulders'), + (149908, 'Shoulders'), + (149909, 'Shoulders'), + (149910, 'Shoulders'), + (149911, 'Shoulders'), + (149912, 'Shoulders'), + (149913, 'Shoulders'), + (149914, 'Shoulders'), + (149915, 'Shoulders'), + (149916, 'Shoulders'), + (149917, 'Shoulders'), + (149918, 'Shoulders'), + (149919, 'Shoulders'), + (149920, 'Shoulders'), + (149921, 'Shoulders'), + (149922, 'Shoulders'), + (149923, 'Shoulders'), + (149924, 'Shoulders'), + (149925, 'Shoulders'), + (149926, 'Shoulders'), + (149927, 'Shoulders'), + (149928, 'Shoulders'), + (149929, 'Shoulders'), + (149930, 'Shoulders'), + (149931, 'Shoulders'), + (149932, 'Shoulders'), + (150006, 'Nanoprogram'), + (150008, 'Nanoprogram'), + (150009, 'Nanoprogram'), + (150013, 'Nanoprogram'), + (150015, 'Nanoprogram'), + (150017, 'Nanoprogram'), + (150019, 'Nanoprogram'), + (150020, 'Nanoprogram'), + (150022, 'Nanoprogram'), + (150176, 'Weapon'), + (150177, 'Weapon'), + (150178, 'Weapon'), + (150179, 'Weapon'), + (150180, 'Weapon'), + (150181, 'Weapon'), + (150182, 'Weapon'), + (150183, 'Weapon'), + (150184, 'Weapon'), + (150185, 'Weapon'), + (150186, 'Weapon'), + (150187, 'Weapon'), + (150188, 'Weapon'), + (150189, 'Weapon'), + (150190, 'Weapon'), + (150191, 'Weapon'), + (150192, 'Weapon'), + (150254, 'Weapon'), + (150255, 'Weapon'), + (150256, 'Weapon'), + (150257, 'Weapon'), + (150258, 'Weapon'), + (150259, 'Weapon'), + (150260, 'Weapon'), + (150261, 'Weapon'), + (150262, 'Weapon'), + (150263, 'Weapon'), + (150264, 'Weapon'), + (150265, 'Weapon'), + (150266, 'Weapon'), + (150267, 'Weapon'), + (150268, 'Weapon'), + (150269, 'Weapon'), + (150270, 'Weapon'), + (150271, 'Weapon'), + (150272, 'Weapon'), + (150503, 'Nanoprogram'), + (150504, 'Nanoprogram'), + (150632, 'Nanoprogram'), + (150633, 'Nanoprogram'), + (150634, 'Nanoprogram'), + (150635, 'Nanoprogram'), + (150636, 'Nanoprogram'), + (150637, 'Nanoprogram'), + (150638, 'Nanoprogram'), + (150639, 'Nanoprogram'), + (150640, 'Nanoprogram'), + (150641, 'Nanoprogram'), + (150642, 'Nanoprogram'), + (150643, 'Nanoprogram'), + (151405, 'Back'), + (151665, 'Fingers'), + (151666, 'Fingers'), + (151672, 'Deck'), + (151673, 'Deck'), + (151674, 'Deck'), + (151675, 'Deck'), + (151676, 'Deck'), + (151677, 'Deck'), + (151680, 'Chest'), + (151681, 'Chest'), + (151685, 'Hands'), + (151686, 'Hands'), + (151692, 'Util'), + (151692, 'Deck'), + (151693, 'Util'), + (151693, 'Deck'), + (151694, 'Deck'), + (151695, 'Deck'), + (151696, 'Deck'), + (151697, 'Deck'), + (151698, 'Deck'), + (151699, 'Deck'), + (151702, 'Fingers'), + (151703, 'Fingers'), + (151704, 'Fingers'), + (151705, 'Fingers'), + (151706, 'Fingers'), + (151707, 'Fingers'), + (151708, 'Wrists'), + (151709, 'Wrists'), + (151714, 'Wrists'), + (151715, 'Wrists'), + (151716, 'Wrists'), + (151717, 'Wrists'), + (151718, 'Wrists'), + (151719, 'Wrists'), + (151731, 'Deck'), + (151732, 'Deck'), + (151733, 'Deck'), + (151734, 'Deck'), + (151735, 'Deck'), + (151736, 'Deck'), + (151737, 'Wrists'), + (151738, 'Wrists'), + (151739, 'Head'), + (151740, 'Head'), + (151743, 'Wrists'), + (151744, 'Wrists'), + (151745, 'Fingers'), + (151746, 'Fingers'), + (151769, 'Nanoprogram'), + (151770, 'Nanoprogram'), + (151771, 'Nanoprogram'), + (151772, 'Nanoprogram'), + (151773, 'Nanoprogram'), + (151774, 'Nanoprogram'), + (151775, 'Nanoprogram'), + (151776, 'Nanoprogram'), + (151777, 'Nanoprogram'), + (151778, 'Nanoprogram'), + (151779, 'Nanoprogram'), + (151780, 'Nanoprogram'), + (151884, 'Back'), + (151885, 'Back'), + (151895, 'Back'), + (151896, 'Fingers'), + (151903, 'Weapon'), + (151906, 'Deck'), + (151908, 'Deck'), + (151909, 'Deck'), + (151910, 'Deck'), + (151911, 'Deck'), + (152021, 'Hands'), + (152022, 'Hands'), + (152023, 'Hands'), + (152024, 'Weapon'), + (152025, 'Weapon'), + (152026, 'Weapon'), + (152039, 'Back'), + (152109, 'Weapon'), + (152110, 'Weapon'), + (152111, 'Weapon'), + (152112, 'Weapon'), + (152113, 'Weapon'), + (152114, 'Weapon'), + (152115, 'Weapon'), + (152116, 'Weapon'), + (152117, 'Weapon'), + (152118, 'Weapon'), + (152119, 'Weapon'), + (152120, 'Weapon'), + (152121, 'Weapon'), + (152130, 'Weapon'), + (152131, 'Weapon'), + (152132, 'Weapon'), + (152133, 'Weapon'), + (152134, 'Weapon'), + (152154, 'Weapon'), + (152155, 'Weapon'), + (152156, 'Weapon'), + (152157, 'Weapon'), + (152158, 'Weapon'), + (152159, 'Weapon'), + (152160, 'Weapon'), + (152161, 'Weapon'), + (152162, 'Weapon'), + (152163, 'Weapon'), + (152164, 'Weapon'), + (152165, 'Weapon'), + (152166, 'Weapon'), + (152167, 'Weapon'), + (152168, 'Weapon'), + (152169, 'Weapon'), + (152170, 'Weapon'), + (152171, 'Weapon'), + (152172, 'Weapon'), + (152173, 'Head'), + (152215, 'Hud'), + (152218, 'Head'), + (152219, 'Deck'), + (152253, 'Head'), + (152254, 'Head'), + (152255, 'Shoulders'), + (152256, 'Shoulders'), + (152257, 'Shoulders'), + (152258, 'Shoulders'), + (152259, 'Head'), + (152260, 'Head'), + (152261, 'Shoulders'), + (152262, 'Shoulders'), + (152263, 'Head'), + (152264, 'Head'), + (152265, 'Shoulders'), + (152266, 'Shoulders'), + (152267, 'Deck'), + (152268, 'Shoulders'), + (152269, 'Shoulders'), + (152270, 'Head'), + (152271, 'Head'), + (152272, 'Shoulders'), + (152273, 'Shoulders'), + (152274, 'Head'), + (152275, 'Head'), + (152276, 'Shoulders'), + (152277, 'Shoulders'), + (152278, 'Shoulders'), + (152326, 'Weapon'), + (152327, 'Weapon'), + (152328, 'Weapon'), + (152329, 'Weapon'), + (152330, 'Weapon'), + (152331, 'Weapon'), + (152332, 'Weapon'), + (152333, 'Weapon'), + (152334, 'Weapon'), + (152335, 'Weapon'), + (152336, 'Weapon'), + (152337, 'Weapon'), + (152338, 'Weapon'), + (152339, 'Weapon'), + (152340, 'Weapon'), + (152341, 'Weapon'), + (152342, 'Weapon'), + (152343, 'Weapon'), + (152344, 'Weapon'), + (152345, 'Weapon'), + (152346, 'Weapon'), + (152347, 'Weapon'), + (152348, 'Weapon'), + (152349, 'Weapon'), + (152350, 'Weapon'), + (152351, 'Weapon'), + (152352, 'Weapon'), + (152353, 'Weapon'), + (152354, 'Weapon'), + (152355, 'Weapon'), + (152356, 'Weapon'), + (152357, 'Weapon'), + (152410, 'Shoulders'), + (152411, 'Shoulders'), + (152412, 'Shoulders'), + (152413, 'Shoulders'), + (152414, 'Shoulders'), + (152415, 'Shoulders'), + (152416, 'Shoulders'), + (152428, 'Weapon'), + (152431, 'Weapon'), + (152432, 'Weapon'), + (152433, 'Weapon'), + (152434, 'Weapon'), + (152435, 'Weapon'), + (152436, 'Weapon'), + (152437, 'Weapon'), + (152438, 'Weapon'), + (152527, 'Nanoprogram'), + (152528, 'Nanoprogram'), + (152529, 'Nanoprogram'), + (152531, 'Nanoprogram'), + (152533, 'Hands'), + (152537, 'Arms'), + (152538, 'Arms'), + (152542, 'Legs'), + (152543, 'Legs'), + (152544, 'Hands'), + (152702, 'Back'), + (152703, 'Head'), + (152704, 'Chest'), + (152705, 'Arms'), + (152706, 'Feet'), + (152707, 'Feet'), + (152708, 'Back'), + (152709, 'Back'), + (152710, 'Arms'), + (152711, 'Arms'), + (152712, 'Chest'), + (152713, 'Head'), + (152714, 'Hud'), + (152715, 'Head'), + (152783, 'Util'), + (152784, 'Deck'), + (152786, 'Deck'), + (152788, 'Head'), + (152792, 'Head'), + (152793, 'Head'), + (152794, 'Feet'), + (152795, 'Arms'), + (152796, 'Head'), + (152797, 'Head'), + (152822, 'Back'), + (152825, 'Back'), + (152826, 'Back'), + (152827, 'Back'), + (152844, 'Nanoprogram'), + (152847, 'Back'), + (152883, 'Back'), + (152884, 'Back'), + (152885, 'Back'), + (153087, 'Weapon'), + (153088, 'Weapon'), + (153089, 'Weapon'), + (153090, 'Weapon'), + (153091, 'Weapon'), + (153976, 'Weapon'), + (153977, 'Weapon'), + (153982, 'Back'), + (154037, 'Legs'), + (154043, 'Legs'), + (154400, 'Legs'), + (154401, 'Head'), + (154402, 'Hands'), + (154403, 'Feet'), + (154404, 'Chest'), + (154405, 'Arms'), + (154503, 'Weapon'), + (154504, 'Weapon'), + (154505, 'Weapon'), + (154686, 'Weapon'), + (154687, 'Weapon'), + (154844, 'Neck'), + (154844, 'Head'), + (154844, 'Back'), + (154844, 'Chest'), + (154844, 'Hands'), + (154844, 'Legs'), + (154844, 'Shoulders'), + (154844, 'Arms'), + (154844, 'Wrists'), + (154844, 'Fingers'), + (154845, 'Neck'), + (154845, 'Head'), + (154845, 'Back'), + (154845, 'Chest'), + (154845, 'Hands'), + (154845, 'Legs'), + (154845, 'Shoulders'), + (154845, 'Arms'), + (154845, 'Wrists'), + (154845, 'Fingers'), + (154846, 'Neck'), + (154846, 'Head'), + (154846, 'Back'), + (154846, 'Chest'), + (154846, 'Hands'), + (154846, 'Legs'), + (154846, 'Shoulders'), + (154846, 'Arms'), + (154846, 'Wrists'), + (154846, 'Fingers'), + (154847, 'Neck'), + (154847, 'Head'), + (154847, 'Back'), + (154847, 'Chest'), + (154847, 'Hands'), + (154847, 'Legs'), + (154847, 'Shoulders'), + (154847, 'Arms'), + (154847, 'Wrists'), + (154847, 'Fingers'), + (154848, 'Neck'), + (154848, 'Head'), + (154848, 'Back'), + (154848, 'Chest'), + (154848, 'Hands'), + (154848, 'Legs'), + (154848, 'Shoulders'), + (154848, 'Arms'), + (154848, 'Wrists'), + (154848, 'Fingers'), + (154896, 'Weapon'), + (154897, 'Weapon'), + (154898, 'Weapon'), + (154899, 'Weapon'), + (154900, 'Weapon'), + (154901, 'Weapon'), + (154902, 'Weapon'), + (154903, 'Weapon'), + (154924, 'Weapon'), + (154925, 'Weapon'), + (154926, 'Weapon'), + (154927, 'Weapon'), + (154928, 'Weapon'), + (154929, 'Weapon'), + (154930, 'Weapon'), + (154931, 'Weapon'), + (154932, 'Weapon'), + (155086, 'Arms'), + (155087, 'Arms'), + (155088, 'Chest'), + (155089, 'Chest'), + (155090, 'Legs'), + (155091, 'Legs'), + (155150, 'Back'), + (155172, 'Back'), + (155173, 'Back'), + (155174, 'Back'), + (155175, 'Arms'), + (155176, 'Arms'), + (155177, 'Chest'), + (155178, 'Chest'), + (155179, 'Legs'), + (155180, 'Legs'), + (155181, 'Hands'), + (155182, 'Hands'), + (155183, 'Feet'), + (155184, 'Feet'), + (155578, 'Nanoprogram'), + (155618, 'Nanoprogram'), + (155619, 'Nanoprogram'), + (155620, 'Nanoprogram'), + (156026, 'Shoulders'), + (156027, 'Shoulders'), + (156522, 'Back'), + (156528, 'Back'), + (156529, 'Back'), + (156530, 'Back'), + (156537, 'Back'), + (156538, 'Back'), + (156539, 'Neck'), + (156540, 'Neck'), + (156575, 'Back'), + (156576, 'Back'), + (156592, 'Head'), + (156599, 'Weapon'), + (156693, 'Deck'), + (156694, 'Deck'), + (156717, 'Weapon'), + (156718, 'Weapon'), + (156719, 'Weapon'), + (156762, 'Arms'), + (156772, 'Fingers'), + (156773, 'Hud'), + (156774, 'Hud'), + (156831, 'Back'), + (157126, 'Head'), + (157163, 'Legs'), + (157164, 'Legs'), + (157165, 'Legs'), + (157166, 'Arms'), + (157167, 'Arms'), + (157168, 'Chest'), + (157169, 'Chest'), + (157279, 'Weapon'), + (157620, 'Weapon'), + (157621, 'Weapon'), + (157622, 'Weapon'), + (157623, 'Weapon'), + (157624, 'Weapon'), + (157625, 'Weapon'), + (157626, 'Weapon'), + (157627, 'Weapon'), + (157628, 'Weapon'), + (157629, 'Weapon'), + (157630, 'Weapon'), + (157631, 'Weapon'), + (157632, 'Weapon'), + (157633, 'Weapon'), + (157634, 'Weapon'), + (157635, 'Weapon'), + (157636, 'Weapon'), + (157637, 'Weapon'), + (157638, 'Weapon'), + (157639, 'Weapon'), + (157640, 'Weapon'), + (157641, 'Weapon'), + (157642, 'Weapon'), + (157643, 'Weapon'), + (157644, 'Weapon'), + (157662, 'Weapon'), + (157663, 'Weapon'), + (157664, 'Weapon'), + (157665, 'Weapon'), + (157666, 'Weapon'), + (157760, 'Weapon'), + (157761, 'Weapon'), + (157762, 'Chest'), + (157763, 'Feet'), + (157764, 'Legs'), + (157765, 'Hands'), + (157766, 'Chest'), + (157767, 'Head'), + (157768, 'Feet'), + (157769, 'Legs'), + (157770, 'Hands'), + (157771, 'Head'), + (157773, 'Arms'), + (157774, 'Arms'), + (157821, 'Weapon'), + (157822, 'Weapon'), + (157823, 'Weapon'), + (157824, 'Weapon'), + (157825, 'Weapon'), + (157826, 'Weapon'), + (157854, 'Weapon'), + (157855, 'Weapon'), + (157856, 'Weapon'), + (157898, 'Weapon'), + (157899, 'Weapon'), + (157900, 'Weapon'), + (157901, 'Weapon'), + (157902, 'Weapon'), + (157903, 'Weapon'), + (157952, 'Shoulders'), + (157953, 'Shoulders'), + (157954, 'Shoulders'), + (157955, 'Shoulders'), + (157970, 'Weapon'), + (157971, 'Weapon'), + (157972, 'Weapon'), + (157973, 'Weapon'), + (157976, 'Weapon'), + (157978, 'Weapon'), + (157981, 'Weapon'), + (157982, 'Weapon'), + (157998, 'Shoulders'), + (157999, 'Shoulders'), + (158000, 'Shoulders'), + (158085, 'Shoulders'), + (158086, 'Shoulders'), + (158087, 'Shoulders'), + (158295, 'Weapon'), + (158296, 'Weapon'), + (158297, 'Weapon'), + (158298, 'Weapon'), + (158299, 'Weapon'), + (158300, 'Weapon'), + (158321, 'Weapon'), + (158322, 'Weapon'), + (158403, 'Weapon'), + (158416, 'Hud'), + (158417, 'Hud'), + (158481, 'Weapon'), + (158743, 'Back'), + (158744, 'Back'), + (158745, 'Back'), + (158746, 'Back'), + (158747, 'Back'), + (158748, 'Back'), + (158749, 'Back'), + (158750, 'Back'), + (158751, 'Back'), + (158752, 'Back'), + (158753, 'Back'), + (158754, 'Back'), + (158755, 'Fingers'), + (158756, 'Back'), + (158762, 'Deck'), + (158763, 'Neck'), + (158788, 'Back'), + (158789, 'Head'), + (158790, 'Back'), + (158791, 'Chest'), + (158792, 'Arms'), + (158793, 'Legs'), + (158794, 'Feet'), + (158795, 'Head'), + (158796, 'Shoulders'), + (158797, 'Shoulders'), + (158798, 'Back'), + (158799, 'Head'), + (158800, 'Back'), + (158801, 'Fingers'), + (158841, 'Weapon'), + (158842, 'Weapon'), + (158843, 'Weapon'), + (158844, 'Hands'), + (158891, 'Wrists'), + (158914, 'Arms'), + (158915, 'Arms'), + (158965, 'Weapon'), + (158966, 'Weapon'), + (158967, 'Weapon'), + (158970, 'Weapon'), + (158971, 'Weapon'), + (158972, 'Weapon'), + (158973, 'Weapon'), + (158988, 'Weapon'), + (158989, 'Weapon'), + (158990, 'Weapon'), + (158991, 'Weapon'), + (158992, 'Weapon'), + (158993, 'Weapon'), + (158994, 'Weapon'), + (158995, 'Weapon'), + (158996, 'Weapon'), + (159007, 'Weapon'), + (159008, 'Weapon'), + (159009, 'Weapon'), + (159023, 'Weapon'), + (159026, 'Weapon'), + (159027, 'Weapon'), + (159028, 'Weapon'), + (159029, 'Weapon'), + (159030, 'Weapon'), + (159031, 'Weapon'), + (159032, 'Weapon'), + (159033, 'Weapon'), + (159034, 'Weapon'), + (159039, 'Weapon'), + (159042, 'Weapon'), + (159043, 'Weapon'), + (159044, 'Weapon'), + (159045, 'Weapon'), + (159046, 'Weapon'), + (159047, 'Weapon'), + (159048, 'Weapon'), + (159073, 'Weapon'), + (159074, 'Weapon'), + (159075, 'Weapon'), + (159076, 'Weapon'), + (159077, 'Weapon'), + (159078, 'Weapon'), + (159080, 'Weapon'), + (159081, 'Weapon'), + (159082, 'Weapon'), + (159111, 'Weapon'), + (159112, 'Weapon'), + (159113, 'Weapon'), + (159114, 'Weapon'), + (159115, 'Weapon'), + (159828, 'Neck'), + (159828, 'Head'), + (159828, 'Back'), + (159828, 'Chest'), + (159828, 'Hands'), + (159828, 'Legs'), + (159828, 'Feet'), + (159828, 'Shoulders'), + (159828, 'Arms'), + (159828, 'Wrists'), + (159828, 'Fingers'), + (159893, 'Head'), + (160050, 'Legs'), + (160051, 'Legs'), + (160094, 'Weapon'), + (160095, 'Weapon'), + (160096, 'Weapon'), + (160097, 'Weapon'), + (160098, 'Weapon'), + (160099, 'Weapon'), + (160100, 'Weapon'), + (160101, 'Weapon'), + (160102, 'Weapon'), + (160103, 'Weapon'), + (160104, 'Weapon'), + (160105, 'Weapon'), + (160106, 'Weapon'), + (160107, 'Weapon'), + (160108, 'Weapon'), + (160109, 'Weapon'), + (160110, 'Weapon'), + (160111, 'Weapon'), + (160112, 'Weapon'), + (160113, 'Weapon'), + (160114, 'Weapon'), + (160115, 'Weapon'), + (160116, 'Weapon'), + (160117, 'Weapon'), + (160118, 'Weapon'), + (160119, 'Weapon'), + (160120, 'Weapon'), + (160121, 'Weapon'), + (160122, 'Weapon'), + (160123, 'Weapon'), + (160129, 'Weapon'), + (160130, 'Weapon'), + (160131, 'Weapon'), + (160132, 'Weapon'), + (160133, 'Weapon'), + (160140, 'Weapon'), + (160152, 'Weapon'), + (160153, 'Weapon'), + (160154, 'Weapon'), + (160155, 'Weapon'), + (160156, 'Weapon'), + (160157, 'Weapon'), + (160158, 'Weapon'), + (160159, 'Weapon'), + (160160, 'Weapon'), + (160161, 'Weapon'), + (160162, 'Weapon'), + (160167, 'Weapon'), + (160172, 'Weapon'), + (160173, 'Weapon'), + (160174, 'Weapon'), + (160175, 'Weapon'), + (160176, 'Weapon'), + (160177, 'Weapon'), + (160178, 'Weapon'), + (160179, 'Weapon'), + (160180, 'Weapon'), + (160181, 'Weapon'), + (160182, 'Weapon'), + (160183, 'Weapon'), + (160190, 'Weapon'), + (160191, 'Weapon'), + (160192, 'Weapon'), + (160193, 'Weapon'), + (160194, 'Weapon'), + (160195, 'Weapon'), + (160196, 'Weapon'), + (160197, 'Weapon'), + (160198, 'Weapon'), + (160199, 'Weapon'), + (160200, 'Weapon'), + (160201, 'Weapon'), + (160207, 'Weapon'), + (160208, 'Weapon'), + (160209, 'Weapon'), + (160212, 'Weapon'), + (160215, 'Weapon'), + (160218, 'Weapon'), + (160219, 'Weapon'), + (160220, 'Weapon'), + (160221, 'Weapon'), + (160222, 'Weapon'), + (160223, 'Weapon'), + (160224, 'Weapon'), + (160225, 'Weapon'), + (160226, 'Weapon'), + (160227, 'Weapon'), + (160228, 'Weapon'), + (160229, 'Weapon'), + (160230, 'Weapon'), + (160231, 'Weapon'), + (160232, 'Weapon'), + (160235, 'Weapon'), + (160238, 'Weapon'), + (160241, 'Weapon'), + (160244, 'Weapon'), + (160247, 'Weapon'), + (160248, 'Weapon'), + (160249, 'Weapon'), + (160250, 'Weapon'), + (160251, 'Weapon'), + (160252, 'Weapon'), + (160253, 'Weapon'), + (160254, 'Weapon'), + (160257, 'Weapon'), + (160258, 'Weapon'), + (160259, 'Weapon'), + (160260, 'Weapon'), + (160261, 'Weapon'), + (160262, 'Weapon'), + (160263, 'Weapon'), + (160264, 'Weapon'), + (160265, 'Weapon'), + (160266, 'Weapon'), + (160267, 'Weapon'), + (160268, 'Weapon'), + (160269, 'Weapon'), + (160270, 'Weapon'), + (160271, 'Weapon'), + (160272, 'Weapon'), + (160275, 'Weapon'), + (160285, 'Weapon'), + (160286, 'Weapon'), + (160287, 'Weapon'), + (160288, 'Weapon'), + (160289, 'Weapon'), + (160290, 'Weapon'), + (160291, 'Weapon'), + (160292, 'Weapon'), + (160293, 'Feet'), + (160294, 'Feet'), + (160330, 'Hands'), + (160331, 'Hands'), + (160332, 'Arms'), + (160333, 'Arms'), + (160334, 'Legs'), + (160335, 'Legs'), + (160336, 'Chest'), + (160337, 'Chest'), + (160338, 'Chest'), + (160339, 'Chest'), + (160389, 'Back'), + (160390, 'Back'), + (160391, 'Chest'), + (160392, 'Chest'), + (160393, 'Hands'), + (160394, 'Hands'), + (160395, 'Head'), + (160396, 'Head'), + (160397, 'Legs'), + (160398, 'Legs'), + (160399, 'Arms'), + (160400, 'Arms'), + (160401, 'Feet'), + (160402, 'Feet'), + (160403, 'Feet'), + (160404, 'Feet'), + (160405, 'Arms'), + (160406, 'Arms'), + (160407, 'Chest'), + (160408, 'Chest'), + (160409, 'Hands'), + (160410, 'Hands'), + (160411, 'Head'), + (160412, 'Head'), + (160413, 'Legs'), + (160414, 'Legs'), + (160415, 'Chest'), + (160416, 'Chest'), + (160417, 'Hands'), + (160418, 'Hands'), + (160419, 'Feet'), + (160420, 'Feet'), + (160421, 'Head'), + (160422, 'Head'), + (160423, 'Fingers'), + (160424, 'Fingers'), + (160425, 'Fingers'), + (160426, 'Fingers'), + (160427, 'Arms'), + (160428, 'Arms'), + (160429, 'Chest'), + (160430, 'Chest'), + (160431, 'Feet'), + (160432, 'Feet'), + (160433, 'Hands'), + (160434, 'Hands'), + (160435, 'Legs'), + (160436, 'Legs'), + (160437, 'Head'), + (160438, 'Head'), + (160439, 'Back'), + (160440, 'Back'), + (160449, 'Weapon'), + (160463, 'Back'), + (160464, 'Back'), + (160465, 'Back'), + (160466, 'Back'), + (160467, 'Back'), + (160468, 'Back'), + (160469, 'Back'), + (160470, 'Back'), + (160471, 'Back'), + (160472, 'Back'), + (160476, 'Weapon'), + (160477, 'Weapon'), + (160478, 'Weapon'), + (160479, 'Weapon'), + (160480, 'Weapon'), + (160481, 'Weapon'), + (160482, 'Weapon'), + (160483, 'Weapon'), + (160484, 'Weapon'), + (160485, 'Weapon'), + (160486, 'Weapon'), + (160487, 'Weapon'), + (160488, 'Weapon'), + (160489, 'Weapon'), + (160490, 'Weapon'), + (160491, 'Weapon'), + (160492, 'Weapon'), + (160493, 'Weapon'), + (160494, 'Weapon'), + (160495, 'Weapon'), + (160496, 'Weapon'), + (160497, 'Weapon'), + (160498, 'Weapon'), + (160499, 'Weapon'), + (160568, 'Head'), + (160569, 'Head'), + (160577, 'Nanoprogram'), + (160578, 'Nanoprogram'), + (160579, 'Nanoprogram'), + (160632, 'Hud'), + (160633, 'Hud'), + (160652, 'Back'), + (160653, 'Back'), + (160654, 'Back'), + (160655, 'Back'), + (160656, 'Back'), + (160657, 'Back'), + (160658, 'Back'), + (160659, 'Back'), + (160704, 'Nanoprogram'), + (160707, 'Back'), + (160708, 'Back'), + (160711, 'Nanoprogram'), + (160713, 'Nanoprogram'), + (160728, 'Head'), + (160729, 'Head'), + (160730, 'Head'), + (160731, 'Head'), + (160732, 'Head'), + (160733, 'Head'), + (160734, 'Head'), + (160735, 'Head'), + (160736, 'Head'), + (160737, 'Head'), + (160738, 'Wrists'), + (160738, 'Fingers'), + (160739, 'Wrists'), + (160739, 'Fingers'), + (160776, 'Feet'), + (160777, 'Feet'), + (160788, 'Nanoprogram'), + (160790, 'Nanoprogram'), + (160792, 'Nanoprogram'), + (160794, 'Nanoprogram'), + (160796, 'Nanoprogram'), + (160821, 'Nanoprogram'), + (160823, 'Nanoprogram'), + (160825, 'Nanoprogram'), + (160827, 'Nanoprogram'), + (160829, 'Nanoprogram'), + (160831, 'Chest'), + (160832, 'Chest'), + (160880, 'Arms'), + (160881, 'Arms'), + (160882, 'Legs'), + (160883, 'Legs'), + (160884, 'Feet'), + (160885, 'Feet'), + (160908, 'Shoulders'), + (160909, 'Shoulders'), + (160918, 'Shoulders'), + (160919, 'Shoulders'), + (160920, 'Shoulders'), + (160921, 'Shoulders'), + (160922, 'Shoulders'), + (160923, 'Shoulders'), + (160924, 'Shoulders'), + (160925, 'Shoulders'), + (160926, 'Back'), + (160927, 'Back'), + (160961, 'Wrists'), + (160962, 'Wrists'), + (161091, 'Nanoprogram'), + (161093, 'Nanoprogram'), + (161095, 'Nanoprogram'), + (161097, 'Nanoprogram'), + (161126, 'Weapon'), + (161127, 'Weapon'), + (161128, 'Weapon'), + (161129, 'Weapon'), + (161130, 'Weapon'), + (161146, 'Nanoprogram'), + (161148, 'Nanoprogram'), + (161150, 'Nanoprogram'), + (161152, 'Nanoprogram'), + (161154, 'Nanoprogram'), + (161156, 'Nanoprogram'), + (161158, 'Nanoprogram'), + (161160, 'Nanoprogram'), + (161162, 'Nanoprogram'), + (161164, 'Nanoprogram'), + (161166, 'Nanoprogram'), + (161168, 'Nanoprogram'), + (161478, 'Weapon'), + (161479, 'Weapon'), + (161480, 'Weapon'), + (161481, 'Weapon'), + (161482, 'Weapon'), + (161483, 'Weapon'), + (161484, 'Weapon'), + (161485, 'Weapon'), + (161486, 'Weapon'), + (161487, 'Weapon'), + (161488, 'Weapon'), + (161489, 'Weapon'), + (161490, 'Weapon'), + (161491, 'Weapon'), + (161492, 'Weapon'), + (161493, 'Weapon'), + (161494, 'Weapon'), + (161495, 'Weapon'), + (161496, 'Weapon'), + (161498, 'Nanoprogram'), + (161500, 'Nanoprogram'), + (161502, 'Nanoprogram'), + (161504, 'Nanoprogram'), + (161506, 'Nanoprogram'), + (161508, 'Weapon'), + (161509, 'Weapon'), + (161510, 'Weapon'), + (161511, 'Weapon'), + (161512, 'Weapon'), + (161513, 'Weapon'), + (161514, 'Weapon'), + (161515, 'Weapon'), + (161516, 'Nanoprogram'), + (161518, 'Nanoprogram'), + (161520, 'Nanoprogram'), + (161522, 'Nanoprogram'), + (161524, 'Weapon'), + (161525, 'Weapon'), + (161526, 'Weapon'), + (161527, 'Weapon'), + (161528, 'Weapon'), + (161529, 'Weapon'), + (161530, 'Weapon'), + (161531, 'Weapon'), + (161532, 'Nanoprogram'), + (161534, 'Nanoprogram'), + (161536, 'Nanoprogram'), + (161538, 'Nanoprogram'), + (161540, 'Weapon'), + (161541, 'Weapon'), + (161542, 'Weapon'), + (161543, 'Weapon'), + (161544, 'Weapon'), + (161545, 'Weapon'), + (161546, 'Weapon'), + (161547, 'Weapon'), + (161548, 'Nanoprogram'), + (161550, 'Nanoprogram'), + (161552, 'Nanoprogram'), + (161554, 'Nanoprogram'), + (161556, 'Weapon'), + (161557, 'Weapon'), + (161558, 'Weapon'), + (161559, 'Weapon'), + (161560, 'Weapon'), + (161561, 'Weapon'), + (161562, 'Weapon'), + (161563, 'Weapon'), + (161564, 'Nanoprogram'), + (161566, 'Nanoprogram'), + (161568, 'Nanoprogram'), + (161570, 'Nanoprogram'), + (161572, 'Weapon'), + (161573, 'Weapon'), + (161574, 'Weapon'), + (161575, 'Weapon'), + (161576, 'Weapon'), + (161577, 'Weapon'), + (161578, 'Weapon'), + (161579, 'Weapon'), + (161580, 'Weapon'), + (161581, 'Weapon'), + (161582, 'Weapon'), + (161583, 'Weapon'), + (161584, 'Weapon'), + (161585, 'Weapon'), + (161586, 'Weapon'), + (161587, 'Weapon'), + (161588, 'Nanoprogram'), + (161590, 'Nanoprogram'), + (161592, 'Nanoprogram'), + (161594, 'Nanoprogram'), + (161596, 'Nanoprogram'), + (161604, 'Weapon'), + (161605, 'Weapon'), + (161606, 'Weapon'), + (161607, 'Weapon'), + (161608, 'Weapon'), + (161609, 'Weapon'), + (161610, 'Weapon'), + (161611, 'Weapon'), + (161612, 'Weapon'), + (161613, 'Weapon'), + (161614, 'Weapon'), + (161615, 'Weapon'), + (161616, 'Weapon'), + (161617, 'Weapon'), + (161618, 'Weapon'), + (161619, 'Weapon'), + (161620, 'Weapon'), + (161621, 'Weapon'), + (161622, 'Weapon'), + (161623, 'Weapon'), + (161624, 'Weapon'), + (161625, 'Weapon'), + (161626, 'Weapon'), + (161627, 'Weapon'), + (161628, 'Weapon'), + (161629, 'Weapon'), + (161630, 'Weapon'), + (161631, 'Weapon'), + (161632, 'Weapon'), + (161633, 'Weapon'), + (161634, 'Weapon'), + (161635, 'Weapon'), + (161636, 'Weapon'), + (161637, 'Weapon'), + (161638, 'Weapon'), + (161639, 'Weapon'), + (161640, 'Weapon'), + (161641, 'Weapon'), + (161642, 'Weapon'), + (161643, 'Weapon'), + (161644, 'Weapon'), + (161645, 'Weapon'), + (161646, 'Weapon'), + (161647, 'Weapon'), + (161648, 'Weapon'), + (161649, 'Weapon'), + (161650, 'Weapon'), + (161651, 'Weapon'), + (161652, 'Weapon'), + (161653, 'Weapon'), + (161654, 'Weapon'), + (161655, 'Weapon'), + (161656, 'Weapon'), + (161657, 'Weapon'), + (161658, 'Weapon'), + (161659, 'Weapon'), + (161660, 'Weapon'), + (161661, 'Weapon'), + (161662, 'Weapon'), + (161663, 'Weapon'), + (161699, 'Util'), + (161699, 'Hud'), + (161700, 'Weapon'), + (161701, 'Weapon'), + (161737, 'Weapon'), + (161738, 'Weapon'), + (161739, 'Weapon'), + (161740, 'Weapon'), + (161741, 'Weapon'), + (161742, 'Weapon'), + (161743, 'Weapon'), + (161744, 'Weapon'), + (161745, 'Weapon'), + (161746, 'Weapon'), + (161747, 'Weapon'), + (161748, 'Weapon'), + (161749, 'Weapon'), + (161750, 'Weapon'), + (161751, 'Weapon'), + (161752, 'Weapon'), + (161753, 'Weapon'), + (161769, 'Util'), + (161770, 'Util'), + (161771, 'Util'), + (161772, 'Util'), + (161844, 'Back'), + (161845, 'Back'), + (161846, 'Back'), + (161847, 'Back'), + (161848, 'Back'), + (161849, 'Back'), + (161850, 'Back'), + (161851, 'Back'), + (161852, 'Back'), + (161853, 'Back'), + (161854, 'Back'), + (161855, 'Back'), + (161856, 'Back'), + (161857, 'Back'), + (161858, 'Back'), + (161859, 'Back'), + (161866, 'Util'), + (161867, 'Util'), + (161966, 'Feet'), + (162009, 'Head'), + (162010, 'Head'), + (162011, 'Head'), + (162012, 'Head'), + (162013, 'Head'), + (162014, 'Head'), + (162015, 'Head'), + (162016, 'Head'), + (162017, 'Head'), + (162018, 'Head'), + (162019, 'Head'), + (162020, 'Head'), + (162021, 'Head'), + (162022, 'Head'), + (162023, 'Head'), + (162024, 'Head'), + (162025, 'Head'), + (162026, 'Head'), + (162027, 'Head'), + (162028, 'Head'), + (162029, 'Head'), + (162118, 'Nanoprogram'), + (162120, 'Nanoprogram'), + (162122, 'Nanoprogram'), + (162203, 'Arms'), + (162204, 'Arms'), + (162205, 'Chest'), + (162206, 'Chest'), + (162207, 'Feet'), + (162208, 'Feet'), + (162209, 'Hands'), + (162210, 'Hands'), + (162211, 'Head'), + (162212, 'Head'), + (162215, 'Legs'), + (162216, 'Legs'), + (162255, 'Nanoprogram'), + (162257, 'Nanoprogram'), + (162259, 'Nanoprogram'), + (162261, 'Nanoprogram'), + (162314, 'Nanoprogram'), + (162316, 'Nanoprogram'), + (162318, 'Nanoprogram'), + (162320, 'Nanoprogram'), + (162322, 'Nanoprogram'), + (162426, 'Head'), + (162427, 'Hands'), + (162428, 'Hands'), + (162429, 'Arms'), + (162430, 'Arms'), + (162431, 'Chest'), + (162432, 'Chest'), + (162433, 'Legs'), + (162434, 'Legs'), + (162435, 'Feet'), + (162436, 'Feet'), + (162437, 'Head'), + (162485, 'Nanoprogram'), + (162487, 'Nanoprogram'), + (162489, 'Nanoprogram'), + (162491, 'Nanoprogram'), + (162493, 'Nanoprogram'), + (162495, 'Nanoprogram'), + (162497, 'Nanoprogram'), + (162898, 'Weapon'), + (162899, 'Weapon'), + (162900, 'Weapon'), + (162901, 'Weapon'), + (162902, 'Weapon'), + (162931, 'Weapon'), + (162932, 'Weapon'), + (162933, 'Weapon'), + (163216, 'Head'), + (163217, 'Head'), + (163283, 'Weapon'), + (163284, 'Weapon'), + (163285, 'Weapon'), + (163318, 'Weapon'), + (163319, 'Weapon'), + (163320, 'Weapon'), + (163321, 'Weapon'), + (163322, 'Weapon'), + (163323, 'Weapon'), + (163324, 'Weapon'), + (163334, 'Head'), + (163341, 'Head'), + (163342, 'Chest'), + (163343, 'Chest'), + (163344, 'Feet'), + (163345, 'Feet'), + (163346, 'Hands'), + (163347, 'Hands'), + (163348, 'Arms'), + (163349, 'Arms'), + (163350, 'Legs'), + (163351, 'Legs'), + (163383, 'Hud'), + (163384, 'Hud'), + (163386, 'Hud'), + (163387, 'Hud'), + (163422, 'Feet'), + (163423, 'Feet'), + (163424, 'Chest'), + (163425, 'Chest'), + (163426, 'Hands'), + (163427, 'Hands'), + (163428, 'Chest'), + (163429, 'Chest'), + (163430, 'Arms'), + (163431, 'Arms'), + (163432, 'Head'), + (163433, 'Head'), + (163497, 'Fingers'), + (163498, 'Fingers'), + (163574, 'Fingers'), + (163578, 'Weapon'), + (163581, 'Weapon'), + (163584, 'Weapon'), + (163587, 'Weapon'), + (163631, 'Head'), + (163632, 'Fingers'), + (163633, 'Fingers'), + (163634, 'Fingers'), + (163635, 'Fingers'), + (163636, 'Fingers'), + (163637, 'Fingers'), + (163638, 'Fingers'), + (163639, 'Fingers'), + (163640, 'Fingers'), + (163641, 'Fingers'), + (163642, 'Fingers'), + (163643, 'Fingers'), + (163644, 'Fingers'), + (163645, 'Fingers'), + (163646, 'Fingers'), + (163647, 'Fingers'), + (163648, 'Fingers'), + (163649, 'Fingers'), + (163650, 'Fingers'), + (163651, 'Fingers'), + (163652, 'Fingers'), + (163653, 'Fingers'), + (163654, 'Fingers'), + (163655, 'Fingers'), + (163656, 'Fingers'), + (163657, 'Fingers'), + (163658, 'Fingers'), + (163659, 'Fingers'), + (163660, 'Fingers'), + (163661, 'Fingers'), + (163662, 'Fingers'), + (163663, 'Fingers'), + (163664, 'Fingers'), + (163665, 'Fingers'), + (163666, 'Fingers'), + (163667, 'Fingers'), + (163668, 'Fingers'), + (163669, 'Fingers'), + (163670, 'Fingers'), + (163671, 'Fingers'), + (163672, 'Fingers'), + (163673, 'Fingers'), + (163674, 'Fingers'), + (163675, 'Fingers'), + (163676, 'Fingers'), + (163677, 'Fingers'), + (163678, 'Fingers'), + (163679, 'Fingers'), + (163680, 'Fingers'), + (163681, 'Fingers'), + (163682, 'Fingers'), + (163683, 'Fingers'), + (163684, 'Fingers'), + (163685, 'Fingers'), + (163686, 'Fingers'), + (163687, 'Fingers'), + (163688, 'Fingers'), + (163689, 'Fingers'), + (163690, 'Fingers'), + (163691, 'Fingers'), + (163692, 'Fingers'), + (163693, 'Fingers'), + (163695, 'Fingers'), + (163696, 'Fingers'), + (163697, 'Fingers'), + (163699, 'Fingers'), + (163700, 'Fingers'), + (163701, 'Fingers'), + (163703, 'Fingers'), + (163704, 'Fingers'), + (163705, 'Fingers'), + (163706, 'Fingers'), + (163709, 'Fingers'), + (163710, 'Fingers'), + (163711, 'Fingers'), + (163712, 'Fingers'), + (163713, 'Fingers'), + (163714, 'Fingers'), + (163718, 'Head'), + (163719, 'Head'), + (163720, 'Head'), + (163721, 'Head'), + (163722, 'Head'), + (163723, 'Head'), + (163725, 'Head'), + (163726, 'Head'), + (163941, 'Feet'), + (163942, 'Feet'), + (163943, 'Arms'), + (163944, 'Arms'), + (163945, 'Chest'), + (163946, 'Chest'), + (163947, 'Hands'), + (163948, 'Hands'), + (163949, 'Head'), + (163950, 'Head'), + (163951, 'Legs'), + (163952, 'Legs'), + (163993, 'Weapon'), + (163994, 'Weapon'), + (163995, 'Weapon'), + (163996, 'Weapon'), + (163997, 'Weapon'), + (163998, 'Weapon'), + (163999, 'Weapon'), + (164000, 'Weapon'), + (164001, 'Weapon'), + (164002, 'Weapon'), + (164003, 'Weapon'), + (164004, 'Weapon'), + (164005, 'Weapon'), + (164006, 'Weapon'), + (164007, 'Weapon'), + (164008, 'Weapon'), + (164009, 'Weapon'), + (164010, 'Weapon'), + (164011, 'Weapon'), + (164012, 'Weapon'), + (164013, 'Weapon'), + (164014, 'Weapon'), + (164015, 'Weapon'), + (164016, 'Weapon'), + (164017, 'Weapon'), + (164018, 'Weapon'), + (164019, 'Weapon'), + (164020, 'Weapon'), + (164021, 'Weapon'), + (164022, 'Weapon'), + (164023, 'Weapon'), + (164024, 'Weapon'), + (164025, 'Weapon'), + (164026, 'Weapon'), + (164027, 'Weapon'), + (164028, 'Weapon'), + (164029, 'Weapon'), + (164030, 'Weapon'), + (164031, 'Weapon'), + (164032, 'Weapon'), + (164033, 'Weapon'), + (164034, 'Weapon'), + (164035, 'Weapon'), + (164036, 'Weapon'), + (164037, 'Weapon'), + (164038, 'Weapon'), + (164039, 'Weapon'), + (164040, 'Weapon'), + (164041, 'Weapon'), + (164042, 'Weapon'), + (164043, 'Weapon'), + (164044, 'Weapon'), + (164045, 'Weapon'), + (164046, 'Weapon'), + (164047, 'Weapon'), + (164048, 'Weapon'), + (164049, 'Weapon'), + (164050, 'Weapon'), + (164051, 'Weapon'), + (164052, 'Weapon'), + (164053, 'Weapon'), + (164054, 'Weapon'), + (164055, 'Weapon'), + (164056, 'Weapon'), + (164057, 'Weapon'), + (164058, 'Weapon'), + (164059, 'Weapon'), + (164060, 'Weapon'), + (164061, 'Weapon'), + (164062, 'Weapon'), + (164063, 'Weapon'), + (164064, 'Weapon'), + (164065, 'Weapon'), + (164066, 'Weapon'), + (164067, 'Weapon'), + (164070, 'Weapon'), + (164071, 'Weapon'), + (164072, 'Weapon'), + (164073, 'Weapon'), + (164074, 'Weapon'), + (164075, 'Weapon'), + (164076, 'Weapon'), + (164079, 'Weapon'), + (164080, 'Weapon'), + (164081, 'Weapon'), + (164082, 'Weapon'), + (164083, 'Weapon'), + (164084, 'Weapon'), + (164085, 'Weapon'), + (164088, 'Weapon'), + (164089, 'Weapon'), + (164090, 'Weapon'), + (164091, 'Weapon'), + (164092, 'Weapon'), + (164093, 'Weapon'), + (164094, 'Weapon'), + (164097, 'Weapon'), + (164098, 'Weapon'), + (164099, 'Weapon'), + (164100, 'Weapon'), + (164101, 'Weapon'), + (164102, 'Weapon'), + (164103, 'Weapon'), + (164349, 'Chest'), + (164392, 'Chest'), + (164393, 'Feet'), + (164394, 'Feet'), + (164395, 'Arms'), + (164396, 'Arms'), + (164397, 'Hands'), + (164398, 'Hands'), + (164399, 'Legs'), + (164400, 'Legs'), + (164401, 'Fingers'), + (164402, 'Fingers'), + (164412, 'Wrists'), + (164413, 'Wrists'), + (164414, 'Neck'), + (164415, 'Neck'), + (164416, 'Hud'), + (164417, 'Hud'), + (164427, 'Weapon'), + (164428, 'Weapon'), + (164429, 'Weapon'), + (164430, 'Weapon'), + (164431, 'Weapon'), + (164432, 'Neck'), + (164432, 'Back'), + (164432, 'Shoulders'), + (164487, 'Head'), + (164488, 'Head'), + (164489, 'Weapon'), + (164490, 'Weapon'), + (164497, 'Weapon'), + (164498, 'Weapon'), + (164500, 'Weapon'), + (164501, 'Weapon'), + (164510, 'Weapon'), + (164511, 'Weapon'), + (164512, 'Weapon'), + (164513, 'Weapon'), + (164515, 'Weapon'), + (164548, 'Wrists'), + (164564, 'Back'), + (164603, 'Deck'), + (164604, 'Deck'), + (164605, 'Deck'), + (164606, 'Deck'), + (164607, 'Deck'), + (164608, 'Deck'), + (164800, 'Arms'), + (164801, 'Arms'), + (164808, 'Hands'), + (164809, 'Hands'), + (164810, 'Feet'), + (164811, 'Feet'), + (164812, 'Legs'), + (164813, 'Legs'), + (164816, 'Chest'), + (164817, 'Chest'), + (164819, 'Head'), + (164820, 'Head'), + (164931, 'Arms'), + (164932, 'Arms'), + (164933, 'Feet'), + (164934, 'Feet'), + (164935, 'Hands'), + (164936, 'Hands'), + (164937, 'Head'), + (164938, 'Head'), + (164939, 'Legs'), + (164940, 'Legs'), + (164941, 'Chest'), + (164942, 'Chest'), + (164971, 'Back'), + (164972, 'Back'), + (164973, 'Back'), + (164974, 'Back'), + (164975, 'Back'), + (164976, 'Back'), + (164977, 'Back'), + (164978, 'Back'), + (164979, 'Back'), + (164980, 'Back'), + (164981, 'Back'), + (164982, 'Back'), + (164997, 'Chest'), + (164998, 'Chest'), + (164999, 'Feet'), + (165000, 'Feet'), + (165001, 'Hands'), + (165002, 'Hands'), + (165003, 'Legs'), + (165004, 'Legs'), + (165005, 'Arms'), + (165006, 'Arms'), + (165007, 'Head'), + (165008, 'Head'), + (165055, 'Weapon'), + (165056, 'Weapon'), + (165057, 'Weapon'), + (165058, 'Weapon'), + (165059, 'Weapon'), + (165127, 'Weapon'), + (165130, 'Weapon'), + (165133, 'Weapon'), + (165134, 'Wrists'), + (165135, 'Wrists'), + (165136, 'Wrists'), + (165137, 'Wrists'), + (165140, 'Weapon'), + (165141, 'Chest'), + (165142, 'Chest'), + (165143, 'Legs'), + (165144, 'Legs'), + (165145, 'Arms'), + (165146, 'Arms'), + (165147, 'Hands'), + (165148, 'Hands'), + (165149, 'Feet'), + (165150, 'Feet'), + (165167, 'Weapon'), + (165168, 'Weapon'), + (165169, 'Chest'), + (165170, 'Arms'), + (165173, 'Legs'), + (165174, 'Feet'), + (165176, 'Head'), + (165177, 'Head'), + (165200, 'Weapon'), + (165201, 'Back'), + (165202, 'Arms'), + (165203, 'Back'), + (165204, 'Back'), + (165205, 'Feet'), + (165206, 'Legs'), + (165207, 'Hands'), + (165208, 'Back'), + (165209, 'Back'), + (165213, 'Back'), + (165214, 'Back'), + (165215, 'Neck'), + (165215, 'Head'), + (165215, 'Hands'), + (165215, 'Feet'), + (165215, 'Arms'), + (165215, 'Wrists'), + (165215, 'Fingers'), + (165282, 'Hud'), + (165283, 'Wrists'), + (165284, 'Wrists'), + (165287, 'Arms'), + (165290, 'Arms'), + (165291, 'Legs'), + (165292, 'Head'), + (165303, 'Arms'), + (165304, 'Chest'), + (165305, 'Feet'), + (165306, 'Hands'), + (165307, 'Head'), + (165308, 'Legs'), + (165361, 'Arms'), + (165362, 'Feet'), + (165363, 'Legs'), + (165364, 'Chest'), + (165365, 'Head'), + (165366, 'Hands'), + (165369, 'Weapon'), + (165370, 'Weapon'), + (165371, 'Weapon'), + (165372, 'Weapon'), + (165373, 'Weapon'), + (165374, 'Weapon'), + (165375, 'Weapon'), + (165395, 'Wrists'), + (165396, 'Wrists'), + (165397, 'Wrists'), + (165398, 'Wrists'), + (165399, 'Wrists'), + (165400, 'Wrists'), + (165401, 'Wrists'), + (165402, 'Wrists'), + (165403, 'Wrists'), + (165404, 'Wrists'), + (165405, 'Wrists'), + (165406, 'Wrists'), + (165407, 'Wrists'), + (165408, 'Wrists'), + (165409, 'Wrists'), + (165410, 'Wrists'), + (165411, 'Wrists'), + (165412, 'Wrists'), + (165413, 'Wrists'), + (165414, 'Wrists'), + (165415, 'Wrists'), + (165416, 'Wrists'), + (165417, 'Wrists'), + (165418, 'Wrists'), + (165419, 'Wrists'), + (165420, 'Wrists'), + (165421, 'Wrists'), + (165422, 'Wrists'), + (165423, 'Wrists'), + (165424, 'Wrists'), + (165427, 'Chest'), + (165428, 'Chest'), + (165429, 'Head'), + (165430, 'Head'), + (165437, 'Nanoprogram'), + (165439, 'Nanoprogram'), + (165441, 'Nanoprogram'), + (165456, 'Arms'), + (165457, 'Chest'), + (165458, 'Feet'), + (165459, 'Hands'), + (165460, 'Legs'), + (165461, 'Arms'), + (165462, 'Chest'), + (165463, 'Feet'), + (165464, 'Hands'), + (165465, 'Legs'), + (165475, 'Fingers'), + (165476, 'Fingers'), + (165477, 'Fingers'), + (165478, 'Fingers'), + (165479, 'Fingers'), + (165480, 'Fingers'), + (165481, 'Fingers'), + (165482, 'Fingers'), + (165483, 'Fingers'), + (165484, 'Fingers'), + (165485, 'Fingers'), + (165486, 'Fingers'), + (168414, 'Fingers'), + (168415, 'Fingers'), + (168416, 'Fingers'), + (168417, 'Fingers'), + (168418, 'Fingers'), + (168438, 'Wrists'), + (168439, 'Wrists'), + (168440, 'Wrists'), + (168441, 'Wrists'), + (168442, 'Wrists'), + (168443, 'Wrists'), + (168444, 'Wrists'), + (168445, 'Wrists'), + (168446, 'Wrists'), + (168447, 'Wrists'), + (168448, 'Wrists'), + (168449, 'Wrists'), + (168450, 'Wrists'), + (168451, 'Wrists'), + (168452, 'Wrists'), + (168453, 'Wrists'), + (168454, 'Wrists'), + (168455, 'Wrists'), + (168456, 'Wrists'), + (168457, 'Wrists'), + (168458, 'Wrists'), + (168459, 'Wrists'), + (168460, 'Wrists'), + (168461, 'Wrists'), + (168462, 'Wrists'), + (168463, 'Wrists'), + (168464, 'Wrists'), + (168465, 'Wrists'), + (168466, 'Wrists'), + (168467, 'Wrists'), + (168479, 'Wrists'), + (168480, 'Wrists'), + (168481, 'Wrists'), + (168482, 'Wrists'), + (168483, 'Wrists'), + (168484, 'Wrists'), + (168485, 'Wrists'), + (168486, 'Wrists'), + (168487, 'Wrists'), + (168488, 'Wrists'), + (168489, 'Wrists'), + (168490, 'Wrists'), + (168491, 'Wrists'), + (168492, 'Wrists'), + (168493, 'Wrists'), + (168494, 'Wrists'), + (168495, 'Wrists'), + (168496, 'Wrists'), + (168497, 'Wrists'), + (168498, 'Wrists'), + (168499, 'Wrists'), + (168500, 'Wrists'), + (168501, 'Wrists'), + (168502, 'Wrists'), + (168503, 'Wrists'), + (168504, 'Wrists'), + (168505, 'Wrists'), + (168506, 'Wrists'), + (168507, 'Wrists'), + (168508, 'Wrists'), + (168519, 'Wrists'), + (168520, 'Wrists'), + (168521, 'Wrists'), + (168522, 'Wrists'), + (168523, 'Wrists'), + (168524, 'Wrists'), + (168525, 'Wrists'), + (168526, 'Wrists'), + (168527, 'Wrists'), + (168528, 'Wrists'), + (168529, 'Wrists'), + (168530, 'Wrists'), + (168531, 'Wrists'), + (168532, 'Wrists'), + (168533, 'Wrists'), + (168534, 'Wrists'), + (168535, 'Wrists'), + (168536, 'Wrists'), + (168537, 'Wrists'), + (168538, 'Wrists'), + (168539, 'Wrists'), + (168540, 'Wrists'), + (168541, 'Wrists'), + (168542, 'Wrists'), + (168543, 'Wrists'), + (168544, 'Wrists'), + (168545, 'Wrists'), + (168546, 'Wrists'), + (168547, 'Wrists'), + (168548, 'Wrists'), + (168559, 'Wrists'), + (168561, 'Wrists'), + (168562, 'Wrists'), + (168563, 'Wrists'), + (168564, 'Wrists'), + (168565, 'Wrists'), + (168566, 'Wrists'), + (168567, 'Wrists'), + (168568, 'Wrists'), + (168569, 'Wrists'), + (168570, 'Wrists'), + (168571, 'Wrists'), + (168572, 'Wrists'), + (168573, 'Wrists'), + (168574, 'Wrists'), + (168575, 'Wrists'), + (168576, 'Wrists'), + (168577, 'Wrists'), + (168578, 'Wrists'), + (168579, 'Wrists'), + (168580, 'Wrists'), + (168581, 'Wrists'), + (168582, 'Wrists'), + (168583, 'Wrists'), + (168584, 'Wrists'), + (168585, 'Wrists'), + (168586, 'Wrists'), + (168587, 'Wrists'), + (168588, 'Wrists'), + (168626, 'Wrists'), + (168627, 'Wrists'), + (168628, 'Wrists'), + (168629, 'Wrists'), + (168630, 'Wrists'), + (168631, 'Wrists'), + (168632, 'Wrists'), + (168633, 'Wrists'), + (168634, 'Wrists'), + (168635, 'Wrists'), + (168636, 'Wrists'), + (168637, 'Wrists'), + (168638, 'Wrists'), + (168639, 'Wrists'), + (168640, 'Wrists'), + (168641, 'Wrists'), + (168642, 'Wrists'), + (168643, 'Wrists'), + (168644, 'Wrists'), + (168645, 'Wrists'), + (168646, 'Wrists'), + (168647, 'Wrists'), + (168648, 'Wrists'), + (168649, 'Wrists'), + (168650, 'Wrists'), + (168651, 'Wrists'), + (168652, 'Wrists'), + (168653, 'Wrists'), + (168654, 'Wrists'), + (168655, 'Wrists'), + (168658, 'Shoulders'), + (168658, 'Wrists'), + (168658, 'Fingers'), + (168660, 'Nanoprogram'), + (168662, 'Nanoprogram'), + (168664, 'Nanoprogram'), + (168670, 'Legs'), + (168671, 'Arms'), + (168672, 'Chest'), + (168675, 'Weapon'), + (168676, 'Hands'), + (168677, 'Legs'), + (168678, 'Head'), + (168684, 'Nanoprogram'), + (168686, 'Nanoprogram'), + (168690, 'Nanoprogram'), + (168692, 'Nanoprogram'), + (168696, 'Nanoprogram'), + (168723, 'Wrists'), + (168724, 'Wrists'), + (168725, 'Wrists'), + (168726, 'Wrists'), + (168727, 'Wrists'), + (168728, 'Wrists'), + (168729, 'Wrists'), + (168730, 'Wrists'), + (168731, 'Wrists'), + (168732, 'Wrists'), + (168733, 'Wrists'), + (168734, 'Wrists'), + (168735, 'Wrists'), + (168736, 'Wrists'), + (168737, 'Wrists'), + (168738, 'Wrists'), + (168739, 'Wrists'), + (168740, 'Wrists'), + (168741, 'Wrists'), + (168742, 'Wrists'), + (168743, 'Wrists'), + (168744, 'Wrists'), + (168745, 'Wrists'), + (168746, 'Wrists'), + (168747, 'Wrists'), + (168748, 'Wrists'), + (168749, 'Wrists'), + (168750, 'Wrists'), + (168751, 'Wrists'), + (168752, 'Wrists'), + (168763, 'Wrists'), + (168764, 'Wrists'), + (168765, 'Wrists'), + (168766, 'Wrists'), + (168767, 'Wrists'), + (168768, 'Wrists'), + (168769, 'Wrists'), + (168770, 'Wrists'), + (168771, 'Wrists'), + (168772, 'Wrists'), + (168773, 'Wrists'), + (168774, 'Wrists'), + (168775, 'Wrists'), + (168776, 'Wrists'), + (168777, 'Wrists'), + (168778, 'Wrists'), + (168779, 'Wrists'), + (168780, 'Wrists'), + (168781, 'Wrists'), + (168782, 'Wrists'), + (168783, 'Wrists'), + (168784, 'Wrists'), + (168785, 'Wrists'), + (168786, 'Wrists'), + (168787, 'Wrists'), + (168788, 'Wrists'), + (168789, 'Wrists'), + (168790, 'Wrists'), + (168791, 'Wrists'), + (168792, 'Wrists'), + (168803, 'Wrists'), + (168804, 'Wrists'), + (168805, 'Wrists'), + (168806, 'Wrists'), + (168807, 'Wrists'), + (168808, 'Wrists'), + (168809, 'Wrists'), + (168810, 'Wrists'), + (168811, 'Wrists'), + (168812, 'Wrists'), + (168813, 'Wrists'), + (168814, 'Wrists'), + (168815, 'Wrists'), + (168816, 'Wrists'), + (168817, 'Wrists'), + (168818, 'Wrists'), + (168819, 'Wrists'), + (168820, 'Wrists'), + (168821, 'Wrists'), + (168822, 'Wrists'), + (168823, 'Wrists'), + (168824, 'Wrists'), + (168825, 'Wrists'), + (168826, 'Wrists'), + (168827, 'Wrists'), + (168828, 'Wrists'), + (168829, 'Wrists'), + (168830, 'Wrists'), + (168831, 'Wrists'), + (168832, 'Wrists'), + (168833, 'Deck'), + (168834, 'Deck'), + (168835, 'Deck'), + (168836, 'Deck'), + (168837, 'Deck'), + (168838, 'Deck'), + (168849, 'Wrists'), + (168850, 'Wrists'), + (168851, 'Wrists'), + (168852, 'Wrists'), + (168853, 'Wrists'), + (168854, 'Wrists'), + (168855, 'Wrists'), + (168856, 'Wrists'), + (168857, 'Wrists'), + (168858, 'Wrists'), + (168859, 'Wrists'), + (168860, 'Wrists'), + (168861, 'Wrists'), + (168862, 'Wrists'), + (168863, 'Wrists'), + (168864, 'Wrists'), + (168865, 'Wrists'), + (168866, 'Wrists'), + (168867, 'Wrists'), + (168868, 'Wrists'), + (168869, 'Wrists'), + (168870, 'Wrists'), + (168871, 'Wrists'), + (168872, 'Wrists'), + (168873, 'Wrists'), + (168874, 'Wrists'), + (168875, 'Wrists'), + (168876, 'Wrists'), + (168877, 'Wrists'), + (168878, 'Wrists'), + (168879, 'Wrists'), + (168880, 'Wrists'), + (168881, 'Wrists'), + (168882, 'Wrists'), + (168890, 'Nanoprogram'), + (168892, 'Nanoprogram'), + (168927, 'Head'), + (168928, 'Head'), + (168929, 'Head'), + (168930, 'Head'), + (168931, 'Arms'), + (168932, 'Head'), + (168941, 'Head'), + (168942, 'Head'), + (168943, 'Feet'), + (168944, 'Feet'), + (168945, 'Hands'), + (168946, 'Hands'), + (168947, 'Arms'), + (168948, 'Arms'), + (168949, 'Legs'), + (168950, 'Legs'), + (168951, 'Chest'), + (168952, 'Chest'), + (168953, 'Chest'), + (168954, 'Chest'), + (199378, 'Feet'), + (199379, 'Feet'), + (199380, 'Feet'), + (199381, 'Feet'), + (199382, 'Feet'), + (199383, 'Feet'), + (199384, 'Feet'), + (199385, 'Feet'), + (199386, 'Feet'), + (199387, 'Feet'), + (199388, 'Feet'), + (199389, 'Feet'), + (199390, 'Feet'), + (199391, 'Feet'), + (199392, 'Feet'), + (199393, 'Feet'), + (199394, 'Feet'), + (199395, 'Feet'), + (199396, 'Feet'), + (199397, 'Feet'), + (199398, 'Feet'), + (199399, 'Hands'), + (199400, 'Hands'), + (199401, 'Hands'), + (199402, 'Hands'), + (199403, 'Hands'), + (199404, 'Hands'), + (199405, 'Hands'), + (199406, 'Hands'), + (199407, 'Hands'), + (199408, 'Hands'), + (199409, 'Hands'), + (199410, 'Hands'), + (199411, 'Hands'), + (199412, 'Hands'), + (199413, 'Hands'), + (199414, 'Hands'), + (199415, 'Hands'), + (199416, 'Hands'), + (199417, 'Hands'), + (199418, 'Hands'), + (199419, 'Hands'), + (199420, 'Head'), + (199421, 'Head'), + (199422, 'Head'), + (199423, 'Head'), + (199424, 'Head'), + (199425, 'Head'), + (199426, 'Head'), + (199427, 'Head'), + (199428, 'Head'), + (199429, 'Head'), + (199430, 'Head'), + (199431, 'Head'), + (199432, 'Head'), + (199433, 'Head'), + (199434, 'Head'), + (199435, 'Head'), + (199436, 'Head'), + (199437, 'Head'), + (199438, 'Head'), + (199439, 'Head'), + (199440, 'Head'), + (199441, 'Legs'), + (199442, 'Legs'), + (199443, 'Legs'), + (199444, 'Legs'), + (199445, 'Legs'), + (199446, 'Legs'), + (199447, 'Legs'), + (199448, 'Legs'), + (199449, 'Legs'), + (199450, 'Legs'), + (199451, 'Legs'), + (199452, 'Legs'), + (199453, 'Legs'), + (199454, 'Legs'), + (199455, 'Legs'), + (199456, 'Legs'), + (199457, 'Legs'), + (199458, 'Legs'), + (199459, 'Legs'), + (199460, 'Legs'), + (199461, 'Legs'), + (199462, 'Arms'), + (199463, 'Arms'), + (199464, 'Arms'), + (199465, 'Arms'), + (199466, 'Arms'), + (199467, 'Arms'), + (199468, 'Arms'), + (199469, 'Arms'), + (199470, 'Arms'), + (199471, 'Arms'), + (199472, 'Arms'), + (199473, 'Arms'), + (199474, 'Arms'), + (199475, 'Arms'), + (199476, 'Arms'), + (199477, 'Arms'), + (199478, 'Arms'), + (199479, 'Arms'), + (199480, 'Arms'), + (199481, 'Arms'), + (199482, 'Arms'), + (199483, 'Chest'), + (199484, 'Chest'), + (199485, 'Chest'), + (199486, 'Chest'), + (199487, 'Chest'), + (199488, 'Chest'), + (199489, 'Chest'), + (199490, 'Chest'), + (199491, 'Chest'), + (199492, 'Chest'), + (199493, 'Chest'), + (199494, 'Chest'), + (199495, 'Chest'), + (199496, 'Chest'), + (199497, 'Chest'), + (199498, 'Chest'), + (199499, 'Chest'), + (199500, 'Chest'), + (199501, 'Chest'), + (199502, 'Chest'), + (199503, 'Chest'), + (199504, 'Chest'), + (199505, 'Chest'), + (199506, 'Chest'), + (199507, 'Chest'), + (199508, 'Chest'), + (199509, 'Chest'), + (199510, 'Chest'), + (199511, 'Chest'), + (199512, 'Chest'), + (199513, 'Chest'), + (199514, 'Chest'), + (199515, 'Chest'), + (199516, 'Chest'), + (199517, 'Chest'), + (199518, 'Chest'), + (199519, 'Chest'), + (199520, 'Chest'), + (199521, 'Chest'), + (199522, 'Chest'), + (199523, 'Chest'), + (199524, 'Chest'), + (199525, 'Feet'), + (199526, 'Feet'), + (199527, 'Feet'), + (199528, 'Feet'), + (199529, 'Feet'), + (199530, 'Feet'), + (199531, 'Feet'), + (199532, 'Feet'), + (199533, 'Feet'), + (199534, 'Feet'), + (199535, 'Feet'), + (199536, 'Feet'), + (199537, 'Feet'), + (199538, 'Feet'), + (199539, 'Feet'), + (199540, 'Feet'), + (199541, 'Feet'), + (199542, 'Feet'), + (199543, 'Feet'), + (199544, 'Feet'), + (199545, 'Feet'), + (199546, 'Hands'), + (199547, 'Hands'), + (199548, 'Hands'), + (199549, 'Hands'), + (199550, 'Hands'), + (199551, 'Hands'), + (199552, 'Hands'), + (199553, 'Hands'), + (199554, 'Hands'), + (199555, 'Hands'), + (199556, 'Hands'), + (199557, 'Hands'), + (199558, 'Hands'), + (199559, 'Hands'), + (199560, 'Hands'), + (199561, 'Hands'), + (199562, 'Hands'), + (199563, 'Hands'), + (199564, 'Hands'), + (199565, 'Hands'), + (199566, 'Hands'), + (199567, 'Head'), + (199568, 'Head'), + (199569, 'Head'), + (199570, 'Head'), + (199571, 'Head'), + (199572, 'Head'), + (199573, 'Head'), + (199574, 'Head'), + (199575, 'Head'), + (199576, 'Head'), + (199577, 'Head'), + (199578, 'Head'), + (199579, 'Head'), + (199580, 'Head'), + (199581, 'Head'), + (199582, 'Head'), + (199583, 'Head'), + (199584, 'Head'), + (199585, 'Head'), + (199586, 'Head'), + (199587, 'Head'), + (199588, 'Legs'), + (199589, 'Legs'), + (199590, 'Legs'), + (199592, 'Legs'), + (199593, 'Legs'), + (199594, 'Legs'), + (199595, 'Legs'), + (199596, 'Legs'), + (199597, 'Legs'), + (199598, 'Legs'), + (199599, 'Legs'), + (199600, 'Legs'), + (199601, 'Legs'), + (199602, 'Legs'), + (199603, 'Legs'), + (199604, 'Legs'), + (199605, 'Legs'), + (199606, 'Legs'), + (199607, 'Legs'), + (199608, 'Legs'), + (199609, 'Legs'), + (199610, 'Arms'), + (199611, 'Arms'), + (199612, 'Arms'), + (199613, 'Arms'), + (199614, 'Arms'), + (199615, 'Arms'), + (199616, 'Arms'), + (199617, 'Arms'), + (199618, 'Arms'), + (199619, 'Arms'), + (199620, 'Arms'), + (199621, 'Arms'), + (199622, 'Arms'), + (199623, 'Arms'), + (199624, 'Arms'), + (199625, 'Arms'), + (199626, 'Arms'), + (199627, 'Arms'), + (199628, 'Arms'), + (199629, 'Arms'), + (199630, 'Arms'), + (199631, 'Chest'), + (199632, 'Chest'), + (199633, 'Chest'), + (199634, 'Chest'), + (199635, 'Chest'), + (199636, 'Chest'), + (199637, 'Chest'), + (199638, 'Chest'), + (199639, 'Chest'), + (199640, 'Chest'), + (199641, 'Chest'), + (199642, 'Chest'), + (199643, 'Chest'), + (199644, 'Chest'), + (199645, 'Chest'), + (199646, 'Chest'), + (199647, 'Chest'), + (199648, 'Chest'), + (199649, 'Chest'), + (199650, 'Chest'), + (199651, 'Chest'), + (199652, 'Chest'), + (199653, 'Chest'), + (199654, 'Chest'), + (199655, 'Chest'), + (199656, 'Chest'), + (199657, 'Chest'), + (199658, 'Chest'), + (199659, 'Chest'), + (199660, 'Chest'), + (199661, 'Chest'), + (199662, 'Chest'), + (199663, 'Chest'), + (199664, 'Chest'), + (199665, 'Chest'), + (199666, 'Chest'), + (199667, 'Chest'), + (199668, 'Chest'), + (199669, 'Chest'), + (199670, 'Chest'), + (199671, 'Chest'), + (199672, 'Chest'), + (199673, 'Feet'), + (199674, 'Feet'), + (199675, 'Feet'), + (199676, 'Feet'), + (199677, 'Feet'), + (199678, 'Feet'), + (199679, 'Feet'), + (199680, 'Feet'), + (199681, 'Feet'), + (199682, 'Feet'), + (199683, 'Feet'), + (199684, 'Feet'), + (199685, 'Feet'), + (199686, 'Feet'), + (199687, 'Feet'), + (199688, 'Feet'), + (199689, 'Feet'), + (199690, 'Feet'), + (199691, 'Feet'), + (199692, 'Feet'), + (199693, 'Feet'), + (199694, 'Hands'), + (199695, 'Hands'), + (199696, 'Hands'), + (199697, 'Hands'), + (199698, 'Hands'), + (199699, 'Hands'), + (199700, 'Hands'), + (199701, 'Hands'), + (199702, 'Hands'), + (199703, 'Hands'), + (199704, 'Hands'), + (199705, 'Hands'), + (199706, 'Hands'), + (199707, 'Hands'), + (199708, 'Hands'), + (199709, 'Hands'), + (199710, 'Hands'), + (199711, 'Hands'), + (199712, 'Hands'), + (199713, 'Hands'), + (199714, 'Hands'), + (199715, 'Head'), + (199716, 'Head'), + (199717, 'Head'), + (199718, 'Head'), + (199719, 'Head'), + (199720, 'Head'), + (199721, 'Head'), + (199722, 'Head'), + (199723, 'Head'), + (199724, 'Head'), + (199725, 'Head'), + (199726, 'Head'), + (199727, 'Head'), + (199728, 'Head'), + (199729, 'Head'), + (199730, 'Head'), + (199731, 'Head'), + (199732, 'Head'), + (199733, 'Head'), + (199734, 'Head'), + (199735, 'Head'), + (199736, 'Legs'), + (199737, 'Legs'), + (199738, 'Legs'), + (199739, 'Legs'), + (199740, 'Legs'), + (199741, 'Legs'), + (199742, 'Legs'), + (199743, 'Legs'), + (199744, 'Legs'), + (199745, 'Legs'), + (199746, 'Legs'), + (199747, 'Legs'), + (199748, 'Legs'), + (199749, 'Legs'), + (199750, 'Legs'), + (199751, 'Legs'), + (199752, 'Legs'), + (199753, 'Legs'), + (199754, 'Legs'), + (199755, 'Legs'), + (199756, 'Legs'), + (199757, 'Arms'), + (199758, 'Arms'), + (199759, 'Arms'), + (199760, 'Arms'), + (199761, 'Arms'), + (199762, 'Arms'), + (199763, 'Arms'), + (199764, 'Arms'), + (199765, 'Arms'), + (199766, 'Arms'), + (199767, 'Arms'), + (199768, 'Arms'), + (199769, 'Arms'), + (199770, 'Arms'), + (199771, 'Arms'), + (199772, 'Arms'), + (199773, 'Arms'), + (199774, 'Arms'), + (199775, 'Arms'), + (199776, 'Arms'), + (199777, 'Arms'), + (199778, 'Chest'), + (199779, 'Chest'), + (199780, 'Chest'), + (199781, 'Chest'), + (199782, 'Chest'), + (199783, 'Chest'), + (199784, 'Chest'), + (199785, 'Chest'), + (199786, 'Chest'), + (199787, 'Chest'), + (199788, 'Chest'), + (199789, 'Chest'), + (199790, 'Chest'), + (199791, 'Chest'), + (199792, 'Chest'), + (199793, 'Chest'), + (199794, 'Chest'), + (199795, 'Chest'), + (199796, 'Chest'), + (199797, 'Chest'), + (199798, 'Chest'), + (199799, 'Feet'), + (199800, 'Feet'), + (199801, 'Feet'), + (199802, 'Feet'), + (199803, 'Feet'), + (199804, 'Feet'), + (199805, 'Feet'), + (199806, 'Feet'), + (199807, 'Feet'), + (199808, 'Feet'), + (199809, 'Feet'), + (199810, 'Feet'), + (199811, 'Feet'), + (199812, 'Feet'), + (199813, 'Feet'), + (199814, 'Feet'), + (199815, 'Feet'), + (199816, 'Feet'), + (199817, 'Feet'), + (199818, 'Feet'), + (199819, 'Feet'), + (199820, 'Hands'), + (199821, 'Hands'), + (199822, 'Hands'), + (199823, 'Hands'), + (199824, 'Hands'), + (199825, 'Hands'), + (199826, 'Hands'), + (199827, 'Hands'), + (199828, 'Hands'), + (199829, 'Hands'), + (199830, 'Hands'), + (199831, 'Hands'), + (199832, 'Hands'), + (199833, 'Hands'), + (199834, 'Hands'), + (199835, 'Hands'), + (199836, 'Hands'), + (199837, 'Hands'), + (199838, 'Hands'), + (199839, 'Hands'), + (199840, 'Hands'), + (199841, 'Head'), + (199842, 'Head'), + (199843, 'Head'), + (199844, 'Head'), + (199845, 'Head'), + (199846, 'Head'), + (199847, 'Head'), + (199848, 'Head'), + (199849, 'Head'), + (199850, 'Head'), + (199851, 'Head'), + (199852, 'Head'), + (199853, 'Head'), + (199854, 'Head'), + (199855, 'Head'), + (199856, 'Head'), + (199857, 'Head'), + (199858, 'Head'), + (199859, 'Head'), + (199860, 'Head'), + (199861, 'Head'), + (199862, 'Legs'), + (199863, 'Legs'), + (199864, 'Legs'), + (199865, 'Legs'), + (199866, 'Legs'), + (199867, 'Legs'), + (199868, 'Legs'), + (199869, 'Legs'), + (199870, 'Legs'), + (199871, 'Legs'), + (199872, 'Legs'), + (199873, 'Legs'), + (199874, 'Legs'), + (199875, 'Legs'), + (199876, 'Legs'), + (199877, 'Legs'), + (199878, 'Legs'), + (199879, 'Legs'), + (199880, 'Legs'), + (199881, 'Legs'), + (199882, 'Legs'), + (199883, 'Arms'), + (199884, 'Arms'), + (199885, 'Arms'), + (199886, 'Arms'), + (199887, 'Arms'), + (199888, 'Arms'), + (199889, 'Arms'), + (199890, 'Arms'), + (199891, 'Arms'), + (199892, 'Arms'), + (199893, 'Arms'), + (199894, 'Arms'), + (199895, 'Arms'), + (199896, 'Arms'), + (199897, 'Arms'), + (199898, 'Arms'), + (199899, 'Arms'), + (199900, 'Arms'), + (199901, 'Arms'), + (199902, 'Arms'), + (199903, 'Arms'), + (199904, 'Chest'), + (199905, 'Chest'), + (199906, 'Chest'), + (199907, 'Chest'), + (199908, 'Chest'), + (199909, 'Chest'), + (199910, 'Chest'), + (199911, 'Chest'), + (199912, 'Chest'), + (199913, 'Chest'), + (199914, 'Chest'), + (199915, 'Chest'), + (199916, 'Chest'), + (199917, 'Chest'), + (199918, 'Chest'), + (199919, 'Chest'), + (199920, 'Chest'), + (199921, 'Chest'), + (199922, 'Chest'), + (199923, 'Chest'), + (199924, 'Chest'), + (199925, 'Feet'), + (199926, 'Feet'), + (199927, 'Feet'), + (199928, 'Feet'), + (199929, 'Feet'), + (199930, 'Feet'), + (199931, 'Feet'), + (199932, 'Feet'), + (199933, 'Feet'), + (199934, 'Feet'), + (199935, 'Feet'), + (199936, 'Feet'), + (199937, 'Feet'), + (199938, 'Feet'), + (199939, 'Feet'), + (199940, 'Feet'), + (199941, 'Feet'), + (199942, 'Feet'), + (199943, 'Feet'), + (199944, 'Feet'), + (199945, 'Feet'), + (199946, 'Hands'), + (199947, 'Hands'), + (199948, 'Hands'), + (199949, 'Hands'), + (199950, 'Hands'), + (199951, 'Hands'), + (199952, 'Hands'), + (199953, 'Hands'), + (199954, 'Hands'), + (199955, 'Hands'), + (199956, 'Hands'), + (199957, 'Hands'), + (199958, 'Hands'), + (199959, 'Hands'), + (199960, 'Hands'), + (199961, 'Hands'), + (199962, 'Hands'), + (199963, 'Hands'), + (199964, 'Hands'), + (199965, 'Hands'), + (199966, 'Hands'), + (199967, 'Head'), + (199968, 'Head'), + (199969, 'Head'), + (199970, 'Head'), + (199971, 'Head'), + (199972, 'Head'), + (199973, 'Head'), + (199974, 'Head'), + (199975, 'Head'), + (199976, 'Head'), + (199977, 'Head'), + (199978, 'Head'), + (199979, 'Head'), + (199980, 'Head'), + (199981, 'Head'), + (199982, 'Head'), + (199983, 'Head'), + (199984, 'Head'), + (199985, 'Head'), + (199986, 'Head'), + (199987, 'Head'), + (199988, 'Legs'), + (199989, 'Legs'), + (199990, 'Legs'), + (199991, 'Legs'), + (199992, 'Legs'), + (199993, 'Legs'), + (199994, 'Legs'), + (199995, 'Legs'), + (199996, 'Legs'), + (199997, 'Legs'), + (199998, 'Legs'), + (199999, 'Legs'), + (200000, 'Legs'), + (200001, 'Legs'), + (200002, 'Legs'), + (200003, 'Legs'), + (200004, 'Legs'), + (200005, 'Legs'), + (200006, 'Legs'), + (200007, 'Legs'), + (200008, 'Legs'), + (200009, 'Arms'), + (200010, 'Arms'), + (200011, 'Arms'), + (200012, 'Arms'), + (200013, 'Arms'), + (200014, 'Arms'), + (200015, 'Arms'), + (200016, 'Arms'), + (200017, 'Arms'), + (200018, 'Arms'), + (200019, 'Arms'), + (200020, 'Arms'), + (200021, 'Arms'), + (200022, 'Arms'), + (200023, 'Arms'), + (200024, 'Arms'), + (200025, 'Arms'), + (200026, 'Arms'), + (200027, 'Arms'), + (200028, 'Arms'), + (200029, 'Arms'), + (200030, 'Chest'), + (200031, 'Chest'), + (200032, 'Chest'), + (200033, 'Chest'), + (200034, 'Chest'), + (200035, 'Chest'), + (200036, 'Chest'), + (200037, 'Chest'), + (200038, 'Chest'), + (200039, 'Chest'), + (200040, 'Chest'), + (200041, 'Chest'), + (200042, 'Chest'), + (200043, 'Chest'), + (200044, 'Chest'), + (200045, 'Chest'), + (200046, 'Chest'), + (200047, 'Chest'), + (200048, 'Chest'), + (200049, 'Chest'), + (200050, 'Chest'), + (200051, 'Back'), + (200052, 'Back'), + (200053, 'Back'), + (200054, 'Back'), + (200055, 'Back'), + (200056, 'Back'), + (200057, 'Back'), + (200058, 'Back'), + (200059, 'Back'), + (200060, 'Back'), + (200061, 'Back'), + (200062, 'Back'), + (200063, 'Back'), + (200064, 'Back'), + (200065, 'Back'), + (200066, 'Back'), + (200067, 'Back'), + (200068, 'Back'), + (200069, 'Back'), + (200070, 'Back'), + (200071, 'Back'), + (200072, 'Feet'), + (200073, 'Feet'), + (200074, 'Feet'), + (200075, 'Feet'), + (200076, 'Feet'), + (200077, 'Feet'), + (200078, 'Feet'), + (200079, 'Feet'), + (200080, 'Feet'), + (200081, 'Feet'), + (200082, 'Feet'), + (200083, 'Feet'), + (200084, 'Feet'), + (200085, 'Feet'), + (200086, 'Feet'), + (200087, 'Feet'), + (200088, 'Feet'), + (200089, 'Feet'), + (200090, 'Feet'), + (200091, 'Feet'), + (200092, 'Feet'), + (200093, 'Hands'), + (200094, 'Hands'), + (200095, 'Hands'), + (200096, 'Hands'), + (200097, 'Hands'), + (200098, 'Hands'), + (200099, 'Hands'), + (200100, 'Hands'), + (200101, 'Hands'), + (200102, 'Hands'), + (200103, 'Hands'), + (200104, 'Hands'), + (200105, 'Hands'), + (200106, 'Hands'), + (200107, 'Hands'), + (200108, 'Hands'), + (200109, 'Hands'), + (200110, 'Hands'), + (200111, 'Hands'), + (200112, 'Hands'), + (200113, 'Hands'), + (200114, 'Head'), + (200115, 'Head'), + (200116, 'Head'), + (200117, 'Head'), + (200118, 'Head'), + (200119, 'Head'), + (200120, 'Head'), + (200121, 'Head'), + (200122, 'Head'), + (200123, 'Head'), + (200124, 'Head'), + (200125, 'Head'), + (200126, 'Head'), + (200127, 'Head'), + (200128, 'Head'), + (200129, 'Head'), + (200130, 'Head'), + (200131, 'Head'), + (200132, 'Head'), + (200133, 'Head'), + (200134, 'Head'), + (200135, 'Legs'), + (200136, 'Legs'), + (200137, 'Legs'), + (200138, 'Legs'), + (200139, 'Legs'), + (200140, 'Legs'), + (200141, 'Legs'), + (200142, 'Legs'), + (200143, 'Legs'), + (200144, 'Legs'), + (200145, 'Legs'), + (200146, 'Legs'), + (200147, 'Legs'), + (200148, 'Legs'), + (200149, 'Legs'), + (200150, 'Legs'), + (200151, 'Legs'), + (200152, 'Legs'), + (200153, 'Legs'), + (200154, 'Legs'), + (200155, 'Legs'), + (200156, 'Arms'), + (200157, 'Arms'), + (200158, 'Arms'), + (200159, 'Arms'), + (200160, 'Arms'), + (200161, 'Arms'), + (200162, 'Arms'), + (200163, 'Arms'), + (200164, 'Arms'), + (200165, 'Arms'), + (200166, 'Arms'), + (200167, 'Arms'), + (200168, 'Arms'), + (200169, 'Arms'), + (200170, 'Arms'), + (200171, 'Arms'), + (200172, 'Arms'), + (200173, 'Arms'), + (200174, 'Arms'), + (200175, 'Arms'), + (200176, 'Arms'), + (200177, 'Chest'), + (200178, 'Chest'), + (200179, 'Chest'), + (200180, 'Chest'), + (200181, 'Chest'), + (200182, 'Chest'), + (200183, 'Chest'), + (200184, 'Chest'), + (200185, 'Chest'), + (200186, 'Chest'), + (200187, 'Chest'), + (200188, 'Chest'), + (200189, 'Chest'), + (200190, 'Chest'), + (200191, 'Chest'), + (200192, 'Chest'), + (200193, 'Chest'), + (200194, 'Chest'), + (200195, 'Chest'), + (200196, 'Chest'), + (200197, 'Chest'), + (200198, 'Feet'), + (200199, 'Feet'), + (200200, 'Feet'), + (200201, 'Feet'), + (200202, 'Feet'), + (200203, 'Feet'), + (200204, 'Feet'), + (200205, 'Feet'), + (200206, 'Feet'), + (200207, 'Feet'), + (200208, 'Feet'), + (200209, 'Feet'), + (200210, 'Feet'), + (200211, 'Feet'), + (200212, 'Feet'), + (200213, 'Feet'), + (200214, 'Feet'), + (200215, 'Feet'), + (200216, 'Feet'), + (200217, 'Feet'), + (200218, 'Feet'), + (200219, 'Hands'), + (200220, 'Hands'), + (200221, 'Hands'), + (200222, 'Hands'), + (200223, 'Hands'), + (200224, 'Hands'), + (200225, 'Hands'), + (200226, 'Hands'), + (200227, 'Hands'), + (200228, 'Hands'), + (200229, 'Hands'), + (200230, 'Hands'), + (200231, 'Hands'), + (200232, 'Hands'), + (200233, 'Hands'), + (200234, 'Hands'), + (200235, 'Hands'), + (200236, 'Hands'), + (200237, 'Hands'), + (200238, 'Hands'), + (200239, 'Hands'), + (200240, 'Head'), + (200241, 'Head'), + (200242, 'Head'), + (200243, 'Head'), + (200244, 'Head'), + (200245, 'Head'), + (200246, 'Head'), + (200247, 'Head'), + (200248, 'Head'), + (200249, 'Head'), + (200250, 'Head'), + (200251, 'Head'), + (200252, 'Head'), + (200253, 'Head'), + (200254, 'Head'), + (200255, 'Head'), + (200256, 'Head'), + (200257, 'Head'), + (200258, 'Head'), + (200259, 'Head'), + (200260, 'Head'), + (200261, 'Legs'), + (200262, 'Legs'), + (200263, 'Legs'), + (200264, 'Legs'), + (200265, 'Legs'), + (200266, 'Legs'), + (200267, 'Legs'), + (200268, 'Legs'), + (200269, 'Legs'), + (200270, 'Legs'), + (200271, 'Legs'), + (200272, 'Legs'), + (200273, 'Legs'), + (200274, 'Legs'), + (200275, 'Legs'), + (200276, 'Legs'), + (200277, 'Legs'), + (200278, 'Legs'), + (200279, 'Legs'), + (200280, 'Legs'), + (200281, 'Legs'), + (200282, 'Arms'), + (200283, 'Arms'), + (200284, 'Arms'), + (200285, 'Arms'), + (200286, 'Arms'), + (200287, 'Arms'), + (200288, 'Arms'), + (200289, 'Arms'), + (200290, 'Arms'), + (200291, 'Arms'), + (200292, 'Arms'), + (200293, 'Arms'), + (200294, 'Arms'), + (200295, 'Arms'), + (200296, 'Arms'), + (200297, 'Arms'), + (200298, 'Arms'), + (200299, 'Arms'), + (200300, 'Arms'), + (200301, 'Arms'), + (200302, 'Arms'), + (200303, 'Chest'), + (200304, 'Chest'), + (200305, 'Chest'), + (200306, 'Chest'), + (200307, 'Chest'), + (200308, 'Chest'), + (200309, 'Chest'), + (200310, 'Chest'), + (200311, 'Chest'), + (200312, 'Chest'), + (200313, 'Chest'), + (200314, 'Chest'), + (200315, 'Chest'), + (200316, 'Chest'), + (200317, 'Chest'), + (200318, 'Chest'), + (200319, 'Chest'), + (200320, 'Chest'), + (200321, 'Chest'), + (200322, 'Chest'), + (200323, 'Chest'), + (200433, 'Weapon'), + (200436, 'Weapon'), + (200437, 'Weapon'), + (200461, 'Back'), + (200463, 'Legs'), + (200464, 'Legs'), + (200465, 'Feet'), + (200466, 'Hands'), + (200467, 'Hands'), + (200468, 'Hands'), + (200469, 'Hands'), + (200655, 'Hands'), + (200681, 'Feet'), + (200818, 'Fingers'), + (200956, 'Weapon'), + (200957, 'Weapon'), + (200958, 'Weapon'), + (200959, 'Weapon'), + (200960, 'Weapon'), + (201041, 'Arms'), + (201042, 'Arms'), + (201043, 'Feet'), + (201044, 'Feet'), + (201045, 'Hands'), + (201046, 'Hands'), + (201047, 'Head'), + (201048, 'Head'), + (201049, 'Legs'), + (201050, 'Legs'), + (201051, 'Chest'), + (201052, 'Chest'), + (201068, 'Arms'), + (201069, 'Arms'), + (201070, 'Feet'), + (201071, 'Feet'), + (201072, 'Hands'), + (201073, 'Hands'), + (201074, 'Head'), + (201075, 'Head'), + (201076, 'Legs'), + (201077, 'Legs'), + (201078, 'Chest'), + (201079, 'Chest'), + (201084, 'Arms'), + (201085, 'Arms'), + (201086, 'Arms'), + (201087, 'Chest'), + (201088, 'Chest'), + (201089, 'Chest'), + (201090, 'Feet'), + (201091, 'Feet'), + (201092, 'Feet'), + (201093, 'Hands'), + (201094, 'Hands'), + (201095, 'Hands'), + (201096, 'Head'), + (201097, 'Head'), + (201098, 'Head'), + (201100, 'Legs'), + (201102, 'Legs'), + (201103, 'Legs'), + (201111, 'Arms'), + (201112, 'Arms'), + (201114, 'Feet'), + (201115, 'Feet'), + (201117, 'Hands'), + (201118, 'Hands'), + (201121, 'Head'), + (201122, 'Head'), + (201124, 'Legs'), + (201125, 'Legs'), + (201127, 'Chest'), + (201128, 'Chest'), + (201135, 'Arms'), + (201136, 'Arms'), + (201137, 'Chest'), + (201138, 'Chest'), + (201139, 'Feet'), + (201140, 'Feet'), + (201141, 'Hands'), + (201142, 'Hands'), + (201143, 'Head'), + (201144, 'Head'), + (201145, 'Legs'), + (201146, 'Legs'), + (201156, 'Arms'), + (201157, 'Arms'), + (201158, 'Chest'), + (201159, 'Chest'), + (201160, 'Feet'), + (201161, 'Feet'), + (201162, 'Hands'), + (201163, 'Hands'), + (201164, 'Head'), + (201165, 'Head'), + (201166, 'Legs'), + (201167, 'Legs'), + (201186, 'Arms'), + (201187, 'Arms'), + (201189, 'Chest'), + (201190, 'Chest'), + (201192, 'Feet'), + (201193, 'Feet'), + (201195, 'Hands'), + (201196, 'Hands'), + (201198, 'Head'), + (201199, 'Head'), + (201201, 'Legs'), + (201202, 'Legs'), + (201212, 'Arms'), + (201213, 'Arms'), + (201214, 'Arms'), + (201215, 'Chest'), + (201216, 'Chest'), + (201217, 'Chest'), + (201218, 'Feet'), + (201219, 'Feet'), + (201220, 'Feet'), + (201221, 'Hands'), + (201222, 'Hands'), + (201223, 'Hands'), + (201224, 'Head'), + (201225, 'Head'), + (201226, 'Head'), + (201227, 'Legs'), + (201228, 'Legs'), + (201229, 'Legs'), + (201234, 'Back'), + (201235, 'Back'), + (201237, 'Back'), + (201238, 'Back'), + (201239, 'Back'), + (201252, 'Weapon'), + (201253, 'Weapon'), + (201254, 'Weapon'), + (201255, 'Weapon'), + (201256, 'Weapon'), + (201259, 'Weapon'), + (201260, 'Weapon'), + (201261, 'Weapon'), + (201264, 'Weapon'), + (201265, 'Weapon'), + (201266, 'Weapon'), + (201267, 'Weapon'), + (201268, 'Weapon'), + (201271, 'Weapon'), + (201272, 'Weapon'), + (201273, 'Weapon'), + (201274, 'Weapon'), + (201275, 'Weapon'), + (201522, 'Nanoprogram'), + (201938, 'Nanoprogram'), + (201939, 'Weapon'), + (201940, 'Weapon'), + (202264, 'Weapon'), + (202265, 'Weapon'), + (202278, 'Weapon'), + (202279, 'Weapon'), + (202297, 'Util'), + (202298, 'Util'), + (202299, 'Util'), + (202300, 'Util'), + (202301, 'Util'), + (202302, 'Util'), + (202347, 'Util'), + (202348, 'Util'), + (202349, 'Util'), + (202350, 'Util'), + (202351, 'Util'), + (202352, 'Util'), + (202353, 'Util'), + (202354, 'Util'), + (202355, 'Util'), + (202356, 'Util'), + (202357, 'Util'), + (202358, 'Util'), + (202359, 'Util'), + (202360, 'Util'), + (202361, 'Util'), + (202362, 'Util'), + (202363, 'Util'), + (202364, 'Util'), + (202365, 'Util'), + (202366, 'Util'), + (202367, 'Util'), + (202368, 'Util'), + (202369, 'Util'), + (202370, 'Util'), + (202371, 'Util'), + (202372, 'Util'), + (202373, 'Util'), + (202374, 'Util'), + (202375, 'Util'), + (202376, 'Util'), + (202377, 'Util'), + (202378, 'Util'), + (202381, 'Util'), + (202382, 'Util'), + (202383, 'Util'), + (202384, 'Util'), + (202385, 'Util'), + (202386, 'Util'), + (202387, 'Util'), + (202388, 'Util'), + (202389, 'Util'), + (202390, 'Util'), + (202391, 'Util'), + (202392, 'Util'), + (202393, 'Util'), + (202394, 'Util'), + (202395, 'Util'), + (202396, 'Util'), + (202397, 'Util'), + (202398, 'Util'), + (202399, 'Util'), + (202400, 'Util'), + (202401, 'Util'), + (202402, 'Util'), + (202403, 'Util'), + (202404, 'Util'), + (202405, 'Util'), + (202406, 'Util'), + (202407, 'Util'), + (202408, 'Util'), + (202409, 'Util'), + (202410, 'Util'), + (202411, 'Util'), + (202412, 'Util'), + (202413, 'Util'), + (202414, 'Util'), + (202415, 'Util'), + (202416, 'Util'), + (202417, 'Util'), + (202418, 'Util'), + (202419, 'Util'), + (202420, 'Util'), + (202421, 'Util'), + (202422, 'Util'), + (202423, 'Util'), + (202424, 'Util'), + (202425, 'Util'), + (202427, 'Util'), + (202428, 'Util'), + (202429, 'Util'), + (202430, 'Util'), + (202431, 'Util'), + (202432, 'Util'), + (202433, 'Util'), + (202434, 'Util'), + (202435, 'Util'), + (202436, 'Util'), + (202437, 'Util'), + (202442, 'Hud'), + (202443, 'Hud'), + (202453, 'Hud'), + (202454, 'Hud'), + (202717, 'Fingers'), + (202718, 'Fingers'), + (202719, 'Weapon'), + (202720, 'Weapon'), + (202722, 'Feet'), + (202723, 'Feet'), + (202724, 'Nanoprogram'), + (202726, 'Deck'), + (202727, 'Deck'), + (202728, 'Deck'), + (202729, 'Deck'), + (202730, 'Deck'), + (202731, 'Deck'), + (202733, 'Deck'), + (202734, 'Deck'), + (202735, 'Deck'), + (202736, 'Deck'), + (202737, 'Deck'), + (202738, 'Deck'), + (202740, 'Nanoprogram'), + (202741, 'Fingers'), + (202742, 'Fingers'), + (202743, 'Weapon'), + (202744, 'Weapon'), + (202756, 'Arms'), + (202775, 'Nanoprogram'), + (202788, 'Weapon'), + (202789, 'Weapon'), + (202792, 'Nanoprogram'), + (202794, 'Nanoprogram'), + (202817, 'Nanoprogram'), + (202819, 'Nanoprogram'), + (202827, 'Nanoprogram'), + (202829, 'Nanoprogram'), + (202831, 'Nanoprogram'), + (202833, 'Nanoprogram'), + (202835, 'Nanoprogram'), + (202837, 'Nanoprogram'), + (202839, 'Nanoprogram'), + (202841, 'Nanoprogram'), + (202843, 'Nanoprogram'), + (202845, 'Nanoprogram'), + (202847, 'Nanoprogram'), + (202849, 'Nanoprogram'), + (202851, 'Nanoprogram'), + (202853, 'Nanoprogram'), + (202855, 'Nanoprogram'), + (202857, 'Nanoprogram'), + (202859, 'Nanoprogram'), + (202861, 'Nanoprogram'), + (202863, 'Nanoprogram'), + (202865, 'Nanoprogram'), + (202867, 'Nanoprogram'), + (202869, 'Nanoprogram'), + (202871, 'Nanoprogram'), + (203120, 'Nanoprogram'), + (203122, 'Nanoprogram'), + (203124, 'Nanoprogram'), + (203126, 'Nanoprogram'), + (203128, 'Nanoprogram'), + (203130, 'Nanoprogram'), + (203132, 'Nanoprogram'), + (203134, 'Nanoprogram'), + (203136, 'Nanoprogram'), + (203138, 'Nanoprogram'), + (203140, 'Nanoprogram'), + (203142, 'Nanoprogram'), + (203144, 'Nanoprogram'), + (203146, 'Nanoprogram'), + (203148, 'Nanoprogram'), + (203150, 'Nanoprogram'), + (203206, 'Nanoprogram'), + (203208, 'Nanoprogram'), + (203210, 'Nanoprogram'), + (203212, 'Nanoprogram'), + (203214, 'Nanoprogram'), + (203292, 'Hud'), + (203293, 'Hud'), + (203294, 'Hud'), + (203295, 'Hud'), + (203445, 'Head'), + (203446, 'Feet'), + (203447, 'Chest'), + (203448, 'Hands'), + (203449, 'Legs'), + (203450, 'Arms'), + (203451, 'Chest'), + (203452, 'Feet'), + (203453, 'Head'), + (203454, 'Legs'), + (203455, 'Hands'), + (203530, 'Arms'), + (203549, 'Hud'), + (203550, 'Hud'), + (203553, 'Hud'), + (203554, 'Hud'), + (203555, 'Hud'), + (203556, 'Hud'), + (203557, 'Hud'), + (203558, 'Hud'), + (203574, 'Weapon'), + (203829, 'Hud'), + (203830, 'Hud'), + (203832, 'Hud'), + (203834, 'Hud'), + (203841, 'Hud'), + (203848, 'Util'), + (204157, 'Hud'), + (204206, 'Back'), + (204207, 'Back'), + (204336, 'Nanoprogram'), + (204338, 'Nanoprogram'), + (204340, 'Nanoprogram'), + (204342, 'Nanoprogram'), + (204363, 'Nanoprogram'), + (204365, 'Nanoprogram'), + (204367, 'Nanoprogram'), + (204369, 'Nanoprogram'), + (204371, 'Nanoprogram'), + (204396, 'Weapon'), + (204397, 'Back'), + (204569, 'Fingers'), + (204571, 'Fingers'), + (204572, 'Fingers'), + (204573, 'Fingers'), + (204574, 'Fingers'), + (204575, 'Fingers'), + (204576, 'Fingers'), + (204577, 'Fingers'), + (204578, 'Fingers'), + (204579, 'Fingers'), + (204593, 'Fingers'), + (204595, 'Fingers'), + (204596, 'Fingers'), + (204598, 'Fingers'), + (204601, 'Deck'), + (204602, 'Deck'), + (204603, 'Deck'), + (204653, 'Shoulders'), + (204698, 'Shoulders'), + (204699, 'Chest'), + (204700, 'Arms'), + (204701, 'Hands'), + (204702, 'Legs'), + (204703, 'Feet'), + (204704, 'Head'), + (204706, 'Weapon'), + (204746, 'Weapon'), + (204748, 'Back'), + (204751, 'Weapon'), + (204752, 'Weapon'), + (204755, 'Weapon'), + (204756, 'Wrists'), + (204757, 'Hands'), + (204758, 'Hands'), + (204759, 'Back'), + (204760, 'Back'), + (204761, 'Back'), + (204762, 'Back'), + (204763, 'Back'), + (204791, 'Arms'), + (204792, 'Arms'), + (204793, 'Arms'), + (204794, 'Arms'), + (204795, 'Arms'), + (204796, 'Arms'), + (204797, 'Arms'), + (204798, 'Arms'), + (204799, 'Arms'), + (204800, 'Arms'), + (204801, 'Arms'), + (204802, 'Arms'), + (204803, 'Feet'), + (204804, 'Feet'), + (204805, 'Feet'), + (204806, 'Feet'), + (204807, 'Feet'), + (204808, 'Feet'), + (204809, 'Feet'), + (204810, 'Feet'), + (204811, 'Feet'), + (204812, 'Feet'), + (204813, 'Feet'), + (204814, 'Feet'), + (204815, 'Hands'), + (204816, 'Hands'), + (204817, 'Hands'), + (204818, 'Hands'), + (204819, 'Hands'), + (204820, 'Hands'), + (204821, 'Hands'), + (204822, 'Hands'), + (204823, 'Hands'), + (204824, 'Hands'), + (204825, 'Hands'), + (204826, 'Hands'), + (204853, 'Chest'), + (204854, 'Chest'), + (204882, 'Fingers'), + (204883, 'Fingers'), + (204962, 'Weapon'), + (204963, 'Weapon'), + (204964, 'Weapon'), + (204965, 'Weapon'), + (204966, 'Weapon'), + (204967, 'Weapon'), + (204968, 'Weapon'), + (204969, 'Weapon'), + (204970, 'Weapon'), + (204971, 'Weapon'), + (204972, 'Weapon'), + (204986, 'Back'), + (204987, 'Back'), + (204989, 'Back'), + (204990, 'Back'), + (204991, 'Back'), + (204993, 'Shoulders'), + (204994, 'Shoulders'), + (204995, 'Back'), + (204996, 'Back'), + (204997, 'Back'), + (204998, 'Back'), + (204999, 'Back'), + (205000, 'Back'), + (205136, 'Neck'), + (205136, 'Head'), + (205136, 'Back'), + (205136, 'Chest'), + (205136, 'Hands'), + (205136, 'Legs'), + (205136, 'Feet'), + (205136, 'Shoulders'), + (205136, 'Arms'), + (205136, 'Wrists'), + (205136, 'Fingers'), + (205178, 'Back'), + (205184, 'Nanoprogram'), + (205186, 'Nanoprogram'), + (205188, 'Nanoprogram'), + (205190, 'Nanoprogram'), + (205192, 'Nanoprogram'), + (205194, 'Nanoprogram'), + (205196, 'Nanoprogram'), + (205198, 'Nanoprogram'), + (205230, 'Nanoprogram'), + (205232, 'Nanoprogram'), + (205234, 'Nanoprogram'), + (205236, 'Nanoprogram'), + (205238, 'Nanoprogram'), + (205240, 'Nanoprogram'), + (205242, 'Nanoprogram'), + (205244, 'Nanoprogram'), + (205246, 'Nanoprogram'), + (205248, 'Nanoprogram'), + (205250, 'Nanoprogram'), + (205288, 'Nanoprogram'), + (205290, 'Nanoprogram'), + (205292, 'Nanoprogram'), + (205294, 'Nanoprogram'), + (205296, 'Nanoprogram'), + (205298, 'Nanoprogram'), + (205300, 'Nanoprogram'), + (205302, 'Nanoprogram'), + (205304, 'Nanoprogram'), + (205591, 'Nanoprogram'), + (205595, 'Nanoprogram'), + (205597, 'Nanoprogram'), + (205601, 'Nanoprogram'), + (205603, 'Nanoprogram'), + (205605, 'Nanoprogram'), + (205620, 'Hud'), + (205736, 'Weapon'), + (205738, 'Head'), + (205739, 'Head'), + (205740, 'Head'), + (205742, 'Head'), + (205743, 'Head'), + (205950, 'Head'), + (205951, 'Chest'), + (205952, 'Legs'), + (205953, 'Hands'), + (205954, 'Arms'), + (205955, 'Feet'), + (205956, 'Arms'), + (205957, 'Chest'), + (205958, 'Legs'), + (205959, 'Hands'), + (205960, 'Feet'), + (205961, 'Head'), + (205962, 'Arms'), + (205963, 'Chest'), + (205964, 'Legs'), + (205965, 'Hands'), + (205966, 'Feet'), + (205967, 'Head'), + (206006, 'Neck'), + (206006, 'Back'), + (206006, 'Shoulders'), + (206006, 'Arms'), + (206006, 'Wrists'), + (206006, 'Fingers'), + (206007, 'Neck'), + (206007, 'Back'), + (206007, 'Shoulders'), + (206007, 'Arms'), + (206007, 'Wrists'), + (206007, 'Fingers'), + (206008, 'Neck'), + (206008, 'Back'), + (206008, 'Shoulders'), + (206008, 'Arms'), + (206008, 'Wrists'), + (206008, 'Fingers'), + (206009, 'Neck'), + (206009, 'Back'), + (206009, 'Shoulders'), + (206009, 'Arms'), + (206009, 'Wrists'), + (206009, 'Fingers'), + (206010, 'Neck'), + (206010, 'Back'), + (206010, 'Shoulders'), + (206010, 'Arms'), + (206010, 'Wrists'), + (206010, 'Fingers'), + (206011, 'Neck'), + (206011, 'Back'), + (206011, 'Shoulders'), + (206011, 'Arms'), + (206011, 'Wrists'), + (206011, 'Fingers'), + (206013, 'Shoulders'), + (206015, 'Shoulders'), + (206016, 'Weapon'), + (206018, 'Deck'), + (206022, 'Hands'), + (206052, 'Weapon'), + (206053, 'Weapon'), + (206054, 'Weapon'), + (206057, 'Weapon'), + (206058, 'Weapon'), + (206059, 'Weapon'), + (206060, 'Weapon'), + (206061, 'Weapon'), + (206062, 'Weapon'), + (206063, 'Fingers'), + (206064, 'Wrists'), + (206080, 'Weapon'), + (206081, 'Weapon'), + (206082, 'Weapon'), + (206083, 'Weapon'), + (206084, 'Weapon'), + (206136, 'Back'), + (206137, 'Back'), + (206138, 'Back'), + (206139, 'Back'), + (206140, 'Back'), + (206141, 'Back'), + (206142, 'Back'), + (206143, 'Back'), + (206144, 'Back'), + (206145, 'Back'), + (206146, 'Back'), + (206147, 'Back'), + (206148, 'Back'), + (206149, 'Back'), + (206150, 'Back'), + (206157, 'Back'), + (206158, 'Back'), + (206159, 'Back'), + (206160, 'Back'), + (206192, 'Back'), + (206193, 'Back'), + (206194, 'Back'), + (206195, 'Back'), + (206196, 'Back'), + (206197, 'Back'), + (206201, 'Fingers'), + (206202, 'Fingers'), + (206203, 'Fingers'), + (206204, 'Fingers'), + (206224, 'Fingers'), + (206225, 'Fingers'), + (206226, 'Fingers'), + (206232, 'Fingers'), + (206235, 'Fingers'), + (206236, 'Fingers'), + (206237, 'Fingers'), + (206238, 'Fingers'), + (206239, 'Fingers'), + (206248, 'Wrists'), + (206293, 'Weapon'), + (206308, 'Nanoprogram'), + (206310, 'Nanoprogram'), + (206314, 'Nanoprogram'), + (206316, 'Nanoprogram'), + (206318, 'Nanoprogram'), + (206320, 'Nanoprogram'), + (206334, 'Nanoprogram'), + (206336, 'Nanoprogram'), + (206338, 'Nanoprogram'), + (206340, 'Nanoprogram'), + (206342, 'Nanoprogram'), + (206455, 'Head'), + (206456, 'Head'), + (206459, 'Head'), + (206460, 'Head'), + (206551, 'Head'), + (206552, 'Head'), + (206553, 'Head'), + (206616, 'Legs'), + (206617, 'Legs'), + (206618, 'Legs'), + (206619, 'Legs'), + (206620, 'Legs'), + (206621, 'Legs'), + (206622, 'Legs'), + (206623, 'Legs'), + (206624, 'Legs'), + (206625, 'Feet'), + (206626, 'Feet'), + (206627, 'Feet'), + (206628, 'Feet'), + (206629, 'Feet'), + (206630, 'Feet'), + (206631, 'Feet'), + (206632, 'Feet'), + (206633, 'Feet'), + (206634, 'Feet'), + (206635, 'Legs'), + (206636, 'Chest'), + (206637, 'Chest'), + (206638, 'Chest'), + (206639, 'Chest'), + (206640, 'Chest'), + (206641, 'Chest'), + (206642, 'Chest'), + (206643, 'Chest'), + (206644, 'Chest'), + (206645, 'Chest'), + (206646, 'Arms'), + (206647, 'Arms'), + (206648, 'Arms'), + (206649, 'Arms'), + (206650, 'Arms'), + (206651, 'Arms'), + (206652, 'Arms'), + (206653, 'Arms'), + (206654, 'Arms'), + (206655, 'Arms'), + (206656, 'Feet'), + (206657, 'Feet'), + (206658, 'Feet'), + (206662, 'Back'), + (206668, 'Weapon'), + (206669, 'Weapon'), + (206670, 'Weapon'), + (206671, 'Weapon'), + (206672, 'Weapon'), + (206678, 'Chest'), + (206679, 'Chest'), + (206680, 'Hands'), + (206681, 'Hands'), + (206682, 'Arms'), + (206683, 'Arms'), + (206684, 'Legs'), + (206685, 'Legs'), + (206686, 'Feet'), + (206687, 'Feet'), + (206688, 'Shoulders'), + (206689, 'Shoulders'), + (206704, 'Neck'), + (206704, 'Head'), + (206704, 'Back'), + (206704, 'Chest'), + (206704, 'Hands'), + (206704, 'Legs'), + (206704, 'Feet'), + (206704, 'Shoulders'), + (206704, 'Arms'), + (206704, 'Wrists'), + (206704, 'Fingers'), + (206705, 'Weapon'), + (206706, 'Weapon'), + (206707, 'Weapon'), + (206711, 'Weapon'), + (206712, 'Weapon'), + (206713, 'Weapon'), + (206714, 'Weapon'), + (206715, 'Weapon'), + (206716, 'Weapon'), + (206717, 'Weapon'), + (206718, 'Weapon'), + (206719, 'Weapon'), + (206720, 'Weapon'), + (206721, 'Weapon'), + (206722, 'Weapon'), + (206723, 'Weapon'), + (206724, 'Back'), + (206725, 'Back'), + (206726, 'Back'), + (206727, 'Back'), + (206728, 'Back'), + (206729, 'Back'), + (206730, 'Back'), + (206731, 'Back'), + (206740, 'Head'), + (206741, 'Head'), + (206743, 'Fingers'), + (206876, 'Head'), + (206877, 'Head'), + (206878, 'Head'), + (206879, 'Head'), + (206880, 'Head'), + (206881, 'Head'), + (206882, 'Head'), + (206883, 'Head'), + (206884, 'Head'), + (206885, 'Head'), + (206896, 'Head'), + (206897, 'Head'), + (206970, 'Head'), + (206971, 'Feet'), + (206972, 'Chest'), + (206973, 'Hands'), + (206974, 'Legs'), + (206975, 'Arms'), + (206976, 'Back'), + (206977, 'Head'), + (206978, 'Head'), + (207001, 'Head'), + (207002, 'Head'), + (207065, 'Head'), + (207066, 'Head'), + (207088, 'Head'), + (207089, 'Head'), + (207090, 'Head'), + (207091, 'Head'), + (207092, 'Head'), + (207093, 'Head'), + (207116, 'Arms'), + (207242, 'Back'), + (207250, 'Weapon'), + (207251, 'Weapon'), + (207252, 'Weapon'), + (207253, 'Deck'), + (207260, 'Deck'), + (207262, 'Shoulders'), + (207265, 'Head'), + (207289, 'Feet'), + (207290, 'Feet'), + (207291, 'Feet'), + (207319, 'Hands'), + (207320, 'Hands'), + (207835, 'Head'), + (207836, 'Hands'), + (207837, 'Feet'), + (207838, 'Back'), + (207861, 'Weapon'), + (207862, 'Weapon'), + (207863, 'Weapon'), + (207966, 'Weapon'), + (207967, 'Weapon'), + (207968, 'Weapon'), + (207973, 'Weapon'), + (207975, 'Weapon'), + (207976, 'Weapon'), + (207984, 'Weapon'), + (207985, 'Weapon'), + (207988, 'Weapon'), + (207992, 'Weapon'), + (207993, 'Weapon'), + (207994, 'Weapon'), + (207995, 'Weapon'), + (207996, 'Weapon'), + (207997, 'Weapon'), + (207998, 'Weapon'), + (207999, 'Weapon'), + (208000, 'Weapon'), + (208001, 'Weapon'), + (208002, 'Weapon'), + (208003, 'Weapon'), + (208004, 'Weapon'), + (208005, 'Weapon'), + (208006, 'Weapon'), + (208010, 'Weapon'), + (208011, 'Weapon'), + (208012, 'Weapon'), + (208013, 'Weapon'), + (208014, 'Weapon'), + (208015, 'Weapon'), + (208016, 'Weapon'), + (208017, 'Weapon'), + (208018, 'Weapon'), + (208019, 'Weapon'), + (208020, 'Weapon'), + (208021, 'Weapon'), + (208022, 'Weapon'), + (208023, 'Weapon'), + (208024, 'Weapon'), + (208025, 'Weapon'), + (208026, 'Weapon'), + (208027, 'Weapon'), + (208028, 'Weapon'), + (208029, 'Weapon'), + (208030, 'Weapon'), + (208031, 'Weapon'), + (208032, 'Weapon'), + (208033, 'Weapon'), + (208034, 'Weapon'), + (208035, 'Weapon'), + (208036, 'Weapon'), + (208037, 'Weapon'), + (208038, 'Weapon'), + (208039, 'Weapon'), + (208040, 'Weapon'), + (208041, 'Weapon'), + (208042, 'Weapon'), + (208043, 'Weapon'), + (208044, 'Weapon'), + (208045, 'Weapon'), + (208046, 'Weapon'), + (208047, 'Weapon'), + (208048, 'Weapon'), + (208049, 'Weapon'), + (208053, 'Weapon'), + (208055, 'Weapon'), + (208056, 'Weapon'), + (208057, 'Weapon'), + (208058, 'Weapon'), + (208059, 'Weapon'), + (208060, 'Weapon'), + (208061, 'Weapon'), + (208062, 'Weapon'), + (208063, 'Weapon'), + (208064, 'Weapon'), + (208065, 'Weapon'), + (208067, 'Weapon'), + (208068, 'Weapon'), + (208069, 'Weapon'), + (208070, 'Weapon'), + (208071, 'Weapon'), + (208072, 'Weapon'), + (208073, 'Weapon'), + (208074, 'Weapon'), + (208075, 'Weapon'), + (208076, 'Weapon'), + (208077, 'Weapon'), + (208078, 'Weapon'), + (208079, 'Weapon'), + (208082, 'Weapon'), + (208083, 'Weapon'), + (208084, 'Weapon'), + (208085, 'Weapon'), + (208086, 'Weapon'), + (208087, 'Weapon'), + (208088, 'Weapon'), + (208089, 'Weapon'), + (208092, 'Weapon'), + (208093, 'Weapon'), + (208094, 'Weapon'), + (208095, 'Weapon'), + (208096, 'Weapon'), + (208097, 'Weapon'), + (208098, 'Weapon'), + (208099, 'Weapon'), + (208100, 'Weapon'), + (208101, 'Weapon'), + (208102, 'Weapon'), + (208103, 'Weapon'), + (208200, 'Arms'), + (208201, 'Arms'), + (208202, 'Feet'), + (208203, 'Feet'), + (208207, 'Legs'), + (208208, 'Legs'), + (208216, 'Head'), + (208217, 'Head'), + (208222, 'Chest'), + (208223, 'Chest'), + (208224, 'Hands'), + (208225, 'Hands'), + (208253, 'Arms'), + (208254, 'Arms'), + (208255, 'Chest'), + (208256, 'Chest'), + (208257, 'Feet'), + (208258, 'Feet'), + (208259, 'Hands'), + (208260, 'Hands'), + (208261, 'Head'), + (208262, 'Head'), + (208263, 'Legs'), + (208264, 'Legs'), + (208284, 'Arms'), + (208285, 'Arms'), + (208286, 'Chest'), + (208287, 'Chest'), + (208288, 'Feet'), + (208289, 'Feet'), + (208290, 'Hands'), + (208291, 'Hands'), + (208292, 'Head'), + (208293, 'Head'), + (208294, 'Legs'), + (208295, 'Legs'), + (208516, 'Weapon'), + (208527, 'Weapon'), + (208602, 'Back'), + (209039, 'Head'), + (209237, 'Shoulders'), + (209273, 'Weapon'), + (209285, 'Weapon'), + (210298, 'Nanoprogram'), + (210300, 'Nanoprogram'), + (210302, 'Nanoprogram'), + (210304, 'Nanoprogram'), + (210306, 'Nanoprogram'), + (210308, 'Nanoprogram'), + (210310, 'Nanoprogram'), + (210312, 'Nanoprogram'), + (210314, 'Nanoprogram'), + (210316, 'Nanoprogram'), + (210318, 'Nanoprogram'), + (210320, 'Nanoprogram'), + (210322, 'Nanoprogram'), + (210324, 'Nanoprogram'), + (210326, 'Nanoprogram'), + (210328, 'Nanoprogram'), + (210330, 'Nanoprogram'), + (210332, 'Nanoprogram'), + (210733, 'Nanoprogram'), + (210735, 'Nanoprogram'), + (210737, 'Nanoprogram'), + (210739, 'Nanoprogram'), + (210741, 'Nanoprogram'), + (210743, 'Nanoprogram'), + (210745, 'Nanoprogram'), + (210747, 'Nanoprogram'), + (210749, 'Nanoprogram'), + (210751, 'Nanoprogram'), + (210753, 'Nanoprogram'), + (210788, 'Nanoprogram'), + (210790, 'Nanoprogram'), + (210792, 'Nanoprogram'), + (210794, 'Nanoprogram'), + (210796, 'Nanoprogram'), + (210798, 'Nanoprogram'), + (210805, 'Nanoprogram'), + (210807, 'Nanoprogram'), + (210809, 'Nanoprogram'), + (210811, 'Nanoprogram'), + (210813, 'Nanoprogram'), + (211143, 'Nanoprogram'), + (211145, 'Nanoprogram'), + (211147, 'Nanoprogram'), + (211149, 'Nanoprogram'), + (211151, 'Nanoprogram'), + (211153, 'Nanoprogram'), + (211155, 'Nanoprogram'), + (211159, 'Nanoprogram'), + (211161, 'Nanoprogram'), + (211163, 'Nanoprogram'), + (211165, 'Nanoprogram'), + (211167, 'Nanoprogram'), + (211169, 'Nanoprogram'), + (211171, 'Nanoprogram'), + (211193, 'Weapon'), + (211196, 'Weapon'), + (211199, 'Weapon'), + (211202, 'Weapon'), + (211205, 'Weapon'), + (211208, 'Weapon'), + (211211, 'Weapon'), + (211214, 'Weapon'), + (211215, 'Weapon'), + (211216, 'Weapon'), + (211217, 'Weapon'), + (211220, 'Weapon'), + (211223, 'Weapon'), + (211226, 'Weapon'), + (211229, 'Weapon'), + (211232, 'Weapon'), + (211235, 'Weapon'), + (211238, 'Weapon'), + (211241, 'Weapon'), + (211244, 'Weapon'), + (211247, 'Weapon'), + (211250, 'Weapon'), + (211253, 'Weapon'), + (211256, 'Weapon'), + (211259, 'Weapon'), + (211262, 'Weapon'), + (211265, 'Weapon'), + (211268, 'Weapon'), + (211271, 'Weapon'), + (211274, 'Weapon'), + (211277, 'Weapon'), + (211282, 'Weapon'), + (212207, 'Weapon'), + (212212, 'Weapon'), + (212217, 'Weapon'), + (212222, 'Weapon'), + (212227, 'Weapon'), + (212232, 'Weapon'), + (212237, 'Weapon'), + (212242, 'Weapon'), + (212247, 'Weapon'), + (212252, 'Weapon'), + (212257, 'Weapon'), + (212262, 'Weapon'), + (212267, 'Weapon'), + (212272, 'Weapon'), + (212277, 'Weapon'), + (212282, 'Weapon'), + (212287, 'Weapon'), + (212292, 'Weapon'), + (212297, 'Weapon'), + (212302, 'Weapon'), + (212307, 'Weapon'), + (212312, 'Weapon'), + (212317, 'Weapon'), + (212322, 'Weapon'), + (212327, 'Weapon'), + (212332, 'Weapon'), + (212337, 'Weapon'), + (212342, 'Weapon'), + (212347, 'Weapon'), + (212352, 'Weapon'), + (212357, 'Weapon'), + (212362, 'Weapon'), + (212367, 'Weapon'), + (212372, 'Weapon'), + (212377, 'Weapon'), + (212382, 'Weapon'), + (212387, 'Weapon'), + (212392, 'Weapon'), + (212398, 'Weapon'), + (212403, 'Weapon'), + (212408, 'Weapon'), + (212413, 'Weapon'), + (212418, 'Weapon'), + (212423, 'Weapon'), + (212428, 'Weapon'), + (212433, 'Weapon'), + (212438, 'Weapon'), + (212443, 'Weapon'), + (212448, 'Weapon'), + (212453, 'Weapon'), + (212458, 'Weapon'), + (212463, 'Weapon'), + (212468, 'Weapon'), + (212473, 'Weapon'), + (212478, 'Weapon'), + (212483, 'Weapon'), + (212488, 'Weapon'), + (212493, 'Weapon'), + (212498, 'Weapon'), + (212503, 'Weapon'), + (212508, 'Weapon'), + (212513, 'Weapon'), + (212518, 'Weapon'), + (212523, 'Weapon'), + (212528, 'Weapon'), + (212533, 'Weapon'), + (212538, 'Weapon'), + (212543, 'Weapon'), + (212548, 'Weapon'), + (212553, 'Weapon'), + (212558, 'Weapon'), + (212563, 'Weapon'), + (212568, 'Weapon'), + (212573, 'Weapon'), + (212579, 'Weapon'), + (212584, 'Weapon'), + (212589, 'Weapon'), + (212594, 'Weapon'), + (212599, 'Weapon'), + (212604, 'Weapon'), + (212609, 'Weapon'), + (212614, 'Weapon'), + (212619, 'Weapon'), + (212624, 'Weapon'), + (212629, 'Weapon'), + (212634, 'Weapon'), + (212639, 'Weapon'), + (212644, 'Weapon'), + (212649, 'Weapon'), + (212654, 'Weapon'), + (212659, 'Weapon'), + (212664, 'Weapon'), + (212669, 'Weapon'), + (212674, 'Weapon'), + (212679, 'Weapon'), + (212684, 'Weapon'), + (212689, 'Weapon'), + (212694, 'Weapon'), + (212699, 'Weapon'), + (212704, 'Weapon'), + (212709, 'Weapon'), + (212714, 'Weapon'), + (212719, 'Weapon'), + (212724, 'Weapon'), + (212729, 'Weapon'), + (212734, 'Weapon'), + (212739, 'Weapon'), + (212745, 'Weapon'), + (212750, 'Weapon'), + (212755, 'Weapon'), + (212760, 'Weapon'), + (212765, 'Weapon'), + (212770, 'Weapon'), + (212775, 'Weapon'), + (212780, 'Weapon'), + (212785, 'Weapon'), + (212790, 'Weapon'), + (212795, 'Weapon'), + (212800, 'Weapon'), + (212805, 'Weapon'), + (212812, 'Weapon'), + (212817, 'Weapon'), + (212822, 'Weapon'), + (212827, 'Weapon'), + (212834, 'Weapon'), + (212839, 'Weapon'), + (212845, 'Weapon'), + (212851, 'Weapon'), + (212856, 'Weapon'), + (212861, 'Weapon'), + (212866, 'Weapon'), + (212871, 'Weapon'), + (212876, 'Weapon'), + (212881, 'Weapon'), + (212886, 'Weapon'), + (212891, 'Weapon'), + (212995, 'Weapon'), + (213441, 'Hands'), + (213442, 'Hands'), + (213443, 'Arms'), + (213444, 'Arms'), + (213445, 'Chest'), + (213446, 'Chest'), + (213447, 'Feet'), + (213448, 'Feet'), + (213449, 'Legs'), + (213450, 'Legs'), + (214156, 'Weapon'), + (214157, 'Weapon'), + (214158, 'Weapon'), + (214159, 'Weapon'), + (214160, 'Weapon'), + (214161, 'Weapon'), + (214162, 'Weapon'), + (214163, 'Weapon'), + (214164, 'Weapon'), + (214165, 'Weapon'), + (214166, 'Weapon'), + (214167, 'Weapon'), + (214168, 'Weapon'), + (214169, 'Weapon'), + (214170, 'Weapon'), + (214171, 'Weapon'), + (214172, 'Weapon'), + (214173, 'Weapon'), + (214174, 'Weapon'), + (214175, 'Weapon'), + (214176, 'Weapon'), + (214177, 'Weapon'), + (214178, 'Weapon'), + (214179, 'Weapon'), + (214180, 'Weapon'), + (214182, 'Weapon'), + (214183, 'Weapon'), + (214184, 'Weapon'), + (214185, 'Weapon'), + (214186, 'Weapon'), + (214187, 'Weapon'), + (214188, 'Weapon'), + (214189, 'Weapon'), + (214190, 'Weapon'), + (214191, 'Weapon'), + (214192, 'Weapon'), + (214193, 'Weapon'), + (214194, 'Weapon'), + (214195, 'Weapon'), + (214196, 'Weapon'), + (214197, 'Weapon'), + (214198, 'Weapon'), + (214199, 'Weapon'), + (214200, 'Weapon'), + (214201, 'Weapon'), + (214203, 'Weapon'), + (214204, 'Weapon'), + (214205, 'Weapon'), + (214206, 'Weapon'), + (214207, 'Weapon'), + (214208, 'Weapon'), + (214209, 'Weapon'), + (214210, 'Weapon'), + (214211, 'Weapon'), + (214212, 'Weapon'), + (214217, 'Weapon'), + (214218, 'Weapon'), + (214219, 'Weapon'), + (214220, 'Weapon'), + (214221, 'Weapon'), + (214245, 'Weapon'), + (214246, 'Weapon'), + (214247, 'Weapon'), + (214248, 'Weapon'), + (214249, 'Weapon'), + (214255, 'Weapon'), + (214256, 'Weapon'), + (214257, 'Weapon'), + (214258, 'Weapon'), + (214259, 'Weapon'), + (214260, 'Weapon'), + (214261, 'Weapon'), + (214262, 'Weapon'), + (214263, 'Weapon'), + (214264, 'Weapon'), + (214265, 'Weapon'), + (214266, 'Weapon'), + (214267, 'Weapon'), + (214268, 'Weapon'), + (214269, 'Weapon'), + (214270, 'Weapon'), + (214271, 'Weapon'), + (214272, 'Weapon'), + (214273, 'Weapon'), + (214274, 'Weapon'), + (214277, 'Weapon'), + (214278, 'Weapon'), + (214279, 'Weapon'), + (214280, 'Weapon'), + (214281, 'Weapon'), + (214282, 'Weapon'), + (214283, 'Weapon'), + (214284, 'Weapon'), + (214285, 'Weapon'), + (214286, 'Weapon'), + (214287, 'Weapon'), + (214288, 'Weapon'), + (214289, 'Weapon'), + (214290, 'Weapon'), + (214291, 'Weapon'), + (214292, 'Weapon'), + (214293, 'Weapon'), + (214294, 'Weapon'), + (214295, 'Weapon'), + (214296, 'Weapon'), + (214297, 'Weapon'), + (214298, 'Weapon'), + (214299, 'Weapon'), + (214300, 'Weapon'), + (214301, 'Weapon'), + (214303, 'Weapon'), + (214304, 'Weapon'), + (214305, 'Weapon'), + (214306, 'Weapon'), + (214307, 'Weapon'), + (214308, 'Weapon'), + (214309, 'Weapon'), + (214310, 'Weapon'), + (214311, 'Weapon'), + (214312, 'Weapon'), + (214313, 'Weapon'), + (214314, 'Weapon'), + (214315, 'Weapon'), + (214316, 'Weapon'), + (214317, 'Weapon'), + (214318, 'Weapon'), + (214319, 'Weapon'), + (214320, 'Weapon'), + (214321, 'Weapon'), + (214322, 'Weapon'), + (214323, 'Weapon'), + (214324, 'Weapon'), + (214325, 'Weapon'), + (214326, 'Weapon'), + (214327, 'Weapon'), + (214328, 'Weapon'), + (214329, 'Weapon'), + (214330, 'Weapon'), + (214331, 'Weapon'), + (214332, 'Weapon'), + (214333, 'Weapon'), + (214334, 'Weapon'), + (214335, 'Weapon'), + (214336, 'Weapon'), + (214337, 'Weapon'), + (214338, 'Weapon'), + (214339, 'Weapon'), + (214340, 'Weapon'), + (214341, 'Weapon'), + (214342, 'Weapon'), + (214343, 'Weapon'), + (214344, 'Weapon'), + (214345, 'Weapon'), + (214346, 'Weapon'), + (214347, 'Weapon'), + (214348, 'Weapon'), + (214349, 'Weapon'), + (214350, 'Weapon'), + (214351, 'Weapon'), + (214722, 'Back'), + (214723, 'Shoulders'), + (214724, 'Head'), + (214725, 'Hands'), + (214726, 'Arms'), + (214727, 'Chest'), + (214728, 'Legs'), + (214729, 'Feet'), + (214755, 'Legs'), + (214756, 'Legs'), + (214757, 'Feet'), + (214758, 'Feet'), + (214759, 'Chest'), + (214760, 'Chest'), + (214761, 'Arms'), + (214762, 'Arms'), + (214763, 'Hands'), + (214764, 'Hands'), + (214765, 'Head'), + (214766, 'Head'), + (214767, 'Shoulders'), + (214768, 'Shoulders'), + (214794, 'Feet'), + (214795, 'Feet'), + (214796, 'Chest'), + (214797, 'Chest'), + (214798, 'Arms'), + (214799, 'Arms'), + (214800, 'Hands'), + (214801, 'Hands'), + (214802, 'Head'), + (214803, 'Head'), + (214804, 'Shoulders'), + (214805, 'Shoulders'), + (214806, 'Back'), + (214807, 'Back'), + (214808, 'Legs'), + (214809, 'Legs'), + (214810, 'Feet'), + (214811, 'Feet'), + (214812, 'Chest'), + (214813, 'Chest'), + (214814, 'Arms'), + (214815, 'Arms'), + (214816, 'Hands'), + (214817, 'Hands'), + (214818, 'Head'), + (214819, 'Head'), + (214820, 'Shoulders'), + (214821, 'Shoulders'), + (214822, 'Back'), + (214823, 'Back'), + (214824, 'Legs'), + (214825, 'Legs'), + (214826, 'Feet'), + (214827, 'Feet'), + (214828, 'Chest'), + (214829, 'Chest'), + (214830, 'Arms'), + (214831, 'Arms'), + (214832, 'Hands'), + (214833, 'Hands'), + (214834, 'Head'), + (214835, 'Head'), + (214836, 'Shoulders'), + (214837, 'Shoulders'), + (214838, 'Back'), + (214839, 'Back'), + (214841, 'Feet'), + (214842, 'Feet'), + (214843, 'Chest'), + (214844, 'Chest'), + (214845, 'Arms'), + (214846, 'Arms'), + (214847, 'Hands'), + (214848, 'Hands'), + (214849, 'Head'), + (214850, 'Head'), + (214851, 'Shoulders'), + (214852, 'Shoulders'), + (214853, 'Back'), + (214854, 'Back'), + (214857, 'Legs'), + (214858, 'Legs'), + (214888, 'Legs'), + (214889, 'Legs'), + (215222, 'Deck'), + (215223, 'Deck'), + (215224, 'Deck'), + (215225, 'Deck'), + (215226, 'Deck'), + (215227, 'Deck'), + (215228, 'Deck'), + (215229, 'Deck'), + (215230, 'Deck'), + (215231, 'Deck'), + (215232, 'Deck'), + (215233, 'Deck'), + (215234, 'Hud'), + (215235, 'Hud'), + (215236, 'Hud'), + (215237, 'Hud'), + (215238, 'Hud'), + (215239, 'Hud'), + (215240, 'Wrists'), + (215241, 'Wrists'), + (215242, 'Wrists'), + (215243, 'Wrists'), + (215244, 'Wrists'), + (215245, 'Wrists'), + (215246, 'Util'), + (215247, 'Util'), + (215248, 'Util'), + (215249, 'Util'), + (215250, 'Util'), + (215251, 'Util'), + (215252, 'Shoulders'), + (215253, 'Shoulders'), + (215254, 'Shoulders'), + (215255, 'Shoulders'), + (215256, 'Head'), + (215257, 'Head'), + (215265, 'Nanoprogram'), + (215374, 'Unknown'), + (215392, 'Unknown'), + (215393, 'Unknown'), + (215394, 'Unknown'), + (215395, 'Unknown'), + (215396, 'Unknown'), + (215397, 'Unknown'), + (215398, 'Unknown'), + (215399, 'Unknown'), + (215400, 'Unknown'), + (215401, 'Unknown'), + (215402, 'Unknown'), + (215403, 'Unknown'), + (215404, 'Unknown'), + (215405, 'Unknown'), + (215406, 'Unknown'), + (215407, 'Unknown'), + (215408, 'Unknown'), + (215409, 'Unknown'), + (215410, 'Unknown'), + (215411, 'Unknown'), + (215412, 'Unknown'), + (215413, 'Unknown'), + (215415, 'Back'), + (215416, 'Back'), + (215440, 'Back'), + (215441, 'Back'), + (215460, 'Back'), + (215461, 'Back'), + (215462, 'Back'), + (215463, 'Back'), + (215464, 'Back'), + (215465, 'Back'), + (215466, 'Head'), + (215467, 'Head'), + (215468, 'Hands'), + (215469, 'Hands'), + (215470, 'Arms'), + (215471, 'Arms'), + (215472, 'Chest'), + (215473, 'Chest'), + (215474, 'Feet'), + (215475, 'Feet'), + (215476, 'Legs'), + (215477, 'Legs'), + (215531, 'Head'), + (215533, 'Head'), + (215535, 'Hands'), + (215536, 'Hands'), + (215537, 'Arms'), + (215538, 'Arms'), + (215539, 'Chest'), + (215540, 'Chest'), + (215541, 'Feet'), + (215542, 'Feet'), + (215543, 'Legs'), + (215544, 'Legs'), + (215546, 'Head'), + (215547, 'Head'), + (215548, 'Hands'), + (215549, 'Hands'), + (215550, 'Arms'), + (215551, 'Arms'), + (215552, 'Chest'), + (215553, 'Chest'), + (215554, 'Feet'), + (215555, 'Feet'), + (215556, 'Legs'), + (215557, 'Legs'), + (215600, 'Legs'), + (215601, 'Legs'), + (215602, 'Feet'), + (215603, 'Feet'), + (215604, 'Chest'), + (215605, 'Chest'), + (215606, 'Arms'), + (215607, 'Arms'), + (215608, 'Hands'), + (215609, 'Hands'), + (215610, 'Head'), + (215611, 'Head'), + (215613, 'Head'), + (215614, 'Head'), + (215615, 'Hands'), + (215616, 'Hands'), + (215617, 'Arms'), + (215618, 'Arms'), + (215619, 'Chest'), + (215620, 'Chest'), + (215621, 'Feet'), + (215622, 'Feet'), + (215623, 'Legs'), + (215624, 'Legs'), + (216002, 'Nanoprogram'), + (216266, 'Head'), + (216267, 'Hud'), + (216268, 'Hud'), + (216270, 'Util'), + (216271, 'Util'), + (216272, 'Util'), + (216276, 'Head'), + (216277, 'Chest'), + (216278, 'Arms'), + (216279, 'Hands'), + (216280, 'Legs'), + (216281, 'Feet'), + (216282, 'Back'), + (216283, 'Wrists'), + (216284, 'Neck'), + (216285, 'Neck'), + (216302, 'Neck'), + (216303, 'Neck'), + (216323, 'Neck'), + (216325, 'Neck'), + (216340, 'Back'), + (216363, 'Neck'), + (216364, 'Neck'), + (216366, 'Neck'), + (216367, 'Neck'), + (216368, 'Neck'), + (216369, 'Neck'), + (216370, 'Neck'), + (216371, 'Neck'), + (216372, 'Hands'), + (216373, 'Hands'), + (216380, 'Util'), + (216380, 'Hud'), + (216430, 'Head'), + (216448, 'Head'), + (216449, 'Head'), + (216450, 'Head'), + (216659, 'Back'), + (216660, 'Back'), + (216661, 'Shoulders'), + (216662, 'Shoulders'), + (216663, 'Head'), + (216664, 'Head'), + (216665, 'Hands'), + (216666, 'Hands'), + (216667, 'Arms'), + (216668, 'Arms'), + (216669, 'Chest'), + (216670, 'Chest'), + (216671, 'Feet'), + (216672, 'Feet'), + (216673, 'Legs'), + (216674, 'Legs'), + (216675, 'Back'), + (216676, 'Back'), + (216677, 'Shoulders'), + (216678, 'Shoulders'), + (216679, 'Head'), + (216680, 'Head'), + (216681, 'Hands'), + (216682, 'Hands'), + (216683, 'Arms'), + (216684, 'Arms'), + (216685, 'Chest'), + (216686, 'Chest'), + (216687, 'Feet'), + (216688, 'Feet'), + (216689, 'Legs'), + (216690, 'Legs'), + (216916, 'Back'), + (216917, 'Back'), + (216918, 'Shoulders'), + (216919, 'Shoulders'), + (216920, 'Head'), + (216921, 'Head'), + (216922, 'Hands'), + (216923, 'Hands'), + (216924, 'Arms'), + (216925, 'Arms'), + (216926, 'Chest'), + (216927, 'Chest'), + (216928, 'Feet'), + (216929, 'Feet'), + (216930, 'Legs'), + (216931, 'Legs'), + (216992, 'Legs'), + (216993, 'Legs'), + (216994, 'Feet'), + (216995, 'Feet'), + (216996, 'Chest'), + (216997, 'Chest'), + (216998, 'Arms'), + (216999, 'Arms'), + (217000, 'Hands'), + (217001, 'Hands'), + (217002, 'Head'), + (217003, 'Head'), + (217004, 'Back'), + (217005, 'Back'), + (217029, 'Hands'), + (217030, 'Hands'), + (217031, 'Arms'), + (217032, 'Arms'), + (217033, 'Chest'), + (217034, 'Chest'), + (217035, 'Feet'), + (217036, 'Feet'), + (217037, 'Legs'), + (217038, 'Legs'), + (217635, 'Back'), + (217636, 'Back'), + (217637, 'Shoulders'), + (217638, 'Shoulders'), + (217639, 'Head'), + (217640, 'Head'), + (217641, 'Hands'), + (217642, 'Hands'), + (217643, 'Arms'), + (217644, 'Arms'), + (217645, 'Chest'), + (217646, 'Chest'), + (217647, 'Feet'), + (217648, 'Feet'), + (217649, 'Legs'), + (217650, 'Legs'), + (217653, 'Legs'), + (217654, 'Legs'), + (217655, 'Feet'), + (217656, 'Feet'), + (217657, 'Chest'), + (217658, 'Chest'), + (217659, 'Arms'), + (217660, 'Arms'), + (217661, 'Hands'), + (217662, 'Hands'), + (217663, 'Head'), + (217664, 'Head'), + (217665, 'Back'), + (217666, 'Back'), + (217667, 'Neck'), + (217667, 'Head'), + (217667, 'Back'), + (217667, 'Chest'), + (217667, 'Hands'), + (217667, 'Legs'), + (217667, 'Feet'), + (217667, 'Shoulders'), + (217667, 'Arms'), + (217667, 'Wrists'), + (217667, 'Fingers'), + (217671, 'Nanoprogram'), + (217682, 'Hands'), + (217683, 'Hands'), + (217684, 'Arms'), + (217685, 'Arms'), + (217686, 'Chest'), + (217687, 'Chest'), + (217688, 'Feet'), + (217689, 'Feet'), + (217690, 'Legs'), + (217691, 'Legs'), + (217698, 'Hands'), + (217699, 'Hands'), + (217700, 'Arms'), + (217701, 'Arms'), + (217702, 'Chest'), + (217703, 'Chest'), + (217704, 'Feet'), + (217705, 'Feet'), + (217706, 'Legs'), + (217707, 'Legs'), + (217710, 'Back'), + (217711, 'Back'), + (217712, 'Shoulders'), + (217713, 'Shoulders'), + (217714, 'Head'), + (217715, 'Head'), + (217716, 'Hands'), + (217717, 'Hands'), + (217718, 'Arms'), + (217719, 'Arms'), + (217720, 'Chest'), + (217721, 'Chest'), + (217722, 'Feet'), + (217723, 'Feet'), + (217724, 'Legs'), + (217725, 'Legs'), + (218002, 'Back'), + (218003, 'Back'), + (218004, 'Shoulders'), + (218005, 'Shoulders'), + (218006, 'Head'), + (218007, 'Head'), + (218008, 'Hands'), + (218009, 'Hands'), + (218010, 'Arms'), + (218011, 'Arms'), + (218012, 'Chest'), + (218013, 'Chest'), + (218014, 'Feet'), + (218015, 'Feet'), + (218016, 'Legs'), + (218017, 'Legs'), + (218036, 'Shoulders'), + (218037, 'Shoulders'), + (218038, 'Head'), + (218039, 'Head'), + (218040, 'Hands'), + (218041, 'Hands'), + (218042, 'Arms'), + (218043, 'Arms'), + (218044, 'Chest'), + (218045, 'Chest'), + (218046, 'Feet'), + (218047, 'Feet'), + (218048, 'Legs'), + (218049, 'Legs'), + (218050, 'Legs'), + (218051, 'Legs'), + (218052, 'Feet'), + (218053, 'Feet'), + (218054, 'Chest'), + (218055, 'Chest'), + (218056, 'Arms'), + (218057, 'Arms'), + (218058, 'Hands'), + (218059, 'Hands'), + (218172, 'Back'), + (218173, 'Back'), + (218174, 'Shoulders'), + (218175, 'Shoulders'), + (218176, 'Head'), + (218177, 'Head'), + (218178, 'Hands'), + (218179, 'Hands'), + (218180, 'Arms'), + (218181, 'Arms'), + (218182, 'Chest'), + (218183, 'Chest'), + (218184, 'Feet'), + (218185, 'Feet'), + (218186, 'Legs'), + (218187, 'Legs'), + (218206, 'Legs'), + (218207, 'Legs'), + (218208, 'Feet'), + (218209, 'Feet'), + (218210, 'Chest'), + (218211, 'Chest'), + (218212, 'Arms'), + (218213, 'Arms'), + (218214, 'Hands'), + (218215, 'Hands'), + (218216, 'Head'), + (218217, 'Head'), + (218218, 'Shoulders'), + (218219, 'Shoulders'), + (218220, 'Back'), + (218221, 'Back'), + (218236, 'Shoulders'), + (218237, 'Shoulders'), + (218238, 'Head'), + (218239, 'Head'), + (218240, 'Hands'), + (218241, 'Hands'), + (218242, 'Arms'), + (218243, 'Arms'), + (218244, 'Chest'), + (218245, 'Chest'), + (218246, 'Feet'), + (218247, 'Feet'), + (218248, 'Legs'), + (218249, 'Legs'), + (218250, 'Hands'), + (218251, 'Hands'), + (218252, 'Arms'), + (218253, 'Arms'), + (218254, 'Chest'), + (218255, 'Chest'), + (218256, 'Feet'), + (218257, 'Feet'), + (218258, 'Legs'), + (218259, 'Legs'), + (218260, 'Back'), + (218261, 'Back'), + (218262, 'Shoulders'), + (218263, 'Shoulders'), + (218264, 'Head'), + (218265, 'Head'), + (218266, 'Hands'), + (218267, 'Hands'), + (218268, 'Arms'), + (218269, 'Arms'), + (218270, 'Chest'), + (218271, 'Chest'), + (218272, 'Feet'), + (218273, 'Feet'), + (218274, 'Legs'), + (218275, 'Legs'), + (218279, 'Legs'), + (218280, 'Legs'), + (218281, 'Feet'), + (218282, 'Feet'), + (218283, 'Chest'), + (218284, 'Chest'), + (218285, 'Arms'), + (218286, 'Arms'), + (218287, 'Hands'), + (218288, 'Hands'), + (218289, 'Head'), + (218290, 'Head'), + (218291, 'Shoulders'), + (218292, 'Shoulders'), + (218293, 'Back'), + (218294, 'Back'), + (218427, 'Shoulders'), + (218428, 'Shoulders'), + (218429, 'Head'), + (218430, 'Head'), + (218431, 'Hands'), + (218432, 'Hands'), + (218433, 'Arms'), + (218434, 'Arms'), + (218435, 'Chest'), + (218436, 'Chest'), + (218437, 'Feet'), + (218438, 'Feet'), + (218439, 'Legs'), + (218440, 'Legs'), + (218453, 'Legs'), + (218454, 'Legs'), + (218455, 'Feet'), + (218456, 'Feet'), + (218457, 'Chest'), + (218458, 'Chest'), + (218459, 'Arms'), + (218460, 'Arms'), + (218461, 'Hands'), + (218462, 'Hands'), + (218489, 'Legs'), + (218490, 'Legs'), + (218514, 'Feet'), + (218515, 'Feet'), + (218516, 'Chest'), + (218517, 'Chest'), + (218518, 'Arms'), + (218519, 'Arms'), + (218520, 'Hands'), + (218521, 'Hands'), + (218522, 'Head'), + (218523, 'Head'), + (218525, 'Shoulders'), + (218526, 'Shoulders'), + (218529, 'Back'), + (218530, 'Back'), + (218535, 'Back'), + (218536, 'Back'), + (218537, 'Shoulders'), + (218538, 'Shoulders'), + (218539, 'Head'), + (218540, 'Head'), + (218541, 'Hands'), + (218542, 'Hands'), + (218543, 'Arms'), + (218544, 'Arms'), + (218545, 'Chest'), + (218546, 'Chest'), + (218547, 'Feet'), + (218548, 'Feet'), + (218549, 'Legs'), + (218550, 'Legs'), + (218551, 'Legs'), + (218552, 'Legs'), + (218553, 'Feet'), + (218554, 'Feet'), + (218555, 'Chest'), + (218556, 'Chest'), + (218557, 'Arms'), + (218558, 'Arms'), + (218559, 'Hands'), + (218560, 'Hands'), + (218562, 'Head'), + (218563, 'Head'), + (218564, 'Shoulders'), + (218565, 'Shoulders'), + (218566, 'Hands'), + (218567, 'Hands'), + (218568, 'Arms'), + (218569, 'Arms'), + (218570, 'Chest'), + (218571, 'Chest'), + (218572, 'Feet'), + (218573, 'Feet'), + (218574, 'Legs'), + (218575, 'Legs'), + (218577, 'Back'), + (218578, 'Back'), + (218579, 'Shoulders'), + (218580, 'Shoulders'), + (218581, 'Head'), + (218582, 'Head'), + (218583, 'Hands'), + (218584, 'Hands'), + (218585, 'Arms'), + (218586, 'Arms'), + (218587, 'Chest'), + (218588, 'Chest'), + (218589, 'Feet'), + (218590, 'Feet'), + (218591, 'Legs'), + (218592, 'Legs'), + (218606, 'Back'), + (218607, 'Back'), + (218608, 'Shoulders'), + (218609, 'Shoulders'), + (218610, 'Head'), + (218611, 'Head'), + (218612, 'Hands'), + (218613, 'Hands'), + (218624, 'Arms'), + (218625, 'Arms'), + (218626, 'Chest'), + (218627, 'Chest'), + (218633, 'Feet'), + (218634, 'Feet'), + (218635, 'Legs'), + (218636, 'Legs'), + (218689, 'Legs'), + (218690, 'Legs'), + (218691, 'Feet'), + (218692, 'Feet'), + (218693, 'Chest'), + (218694, 'Chest'), + (218696, 'Arms'), + (218697, 'Arms'), + (218698, 'Hands'), + (218699, 'Hands'), + (218717, 'Head'), + (218718, 'Head'), + (218726, 'Back'), + (218727, 'Back'), + (218820, 'Legs'), + (218821, 'Legs'), + (218858, 'Feet'), + (218859, 'Feet'), + (218860, 'Chest'), + (218861, 'Chest'), + (218862, 'Arms'), + (218863, 'Arms'), + (218864, 'Hands'), + (218865, 'Hands'), + (218866, 'Head'), + (218867, 'Head'), + (218868, 'Shoulders'), + (218869, 'Shoulders'), + (218870, 'Back'), + (218871, 'Back'), + (218881, 'Back'), + (218882, 'Back'), + (218883, 'Shoulders'), + (218884, 'Shoulders'), + (218885, 'Head'), + (218886, 'Head'), + (218899, 'Hands'), + (218900, 'Hands'), + (218901, 'Arms'), + (218902, 'Arms'), + (218903, 'Chest'), + (218904, 'Chest'), + (218905, 'Feet'), + (218906, 'Feet'), + (218907, 'Legs'), + (218908, 'Legs'), + (218909, 'Legs'), + (218910, 'Legs'), + (218911, 'Feet'), + (218912, 'Feet'), + (218913, 'Chest'), + (218914, 'Chest'), + (218915, 'Arms'), + (218916, 'Arms'), + (218917, 'Hands'), + (218918, 'Hands'), + (218919, 'Head'), + (218920, 'Head'), + (218921, 'Shoulders'), + (218922, 'Shoulders'), + (218923, 'Legs'), + (218924, 'Legs'), + (218925, 'Arms'), + (218926, 'Arms'), + (218929, 'Chest'), + (218930, 'Chest'), + (218931, 'Feet'), + (218932, 'Feet'), + (218933, 'Hands'), + (218934, 'Hands'), + (218945, 'Legs'), + (218946, 'Legs'), + (218947, 'Feet'), + (218948, 'Feet'), + (218949, 'Chest'), + (218950, 'Chest'), + (218959, 'Arms'), + (218960, 'Arms'), + (218963, 'Hands'), + (218964, 'Hands'), + (218965, 'Head'), + (218966, 'Head'), + (218967, 'Shoulders'), + (218968, 'Shoulders'), + (218969, 'Back'), + (218970, 'Back'), + (219021, 'Nanoprogram'), + (219023, 'Legs'), + (219024, 'Legs'), + (219025, 'Feet'), + (219026, 'Feet'), + (219029, 'Chest'), + (219030, 'Chest'), + (219033, 'Arms'), + (219034, 'Arms'), + (219037, 'Hands'), + (219038, 'Hands'), + (219041, 'Head'), + (219042, 'Head'), + (219045, 'Shoulders'), + (219046, 'Shoulders'), + (219049, 'Back'), + (219050, 'Back'), + (219055, 'Shoulders'), + (219056, 'Shoulders'), + (219057, 'Head'), + (219058, 'Head'), + (219059, 'Hands'), + (219060, 'Hands'), + (219061, 'Arms'), + (219062, 'Arms'), + (219065, 'Chest'), + (219066, 'Chest'), + (219067, 'Feet'), + (219068, 'Feet'), + (219069, 'Legs'), + (219070, 'Legs'), + (219086, 'Hands'), + (219087, 'Hands'), + (219088, 'Arms'), + (219089, 'Arms'), + (219092, 'Chest'), + (219093, 'Chest'), + (219096, 'Legs'), + (219097, 'Legs'), + (219100, 'Feet'), + (219101, 'Feet'), + (220237, 'Legs'), + (220238, 'Legs'), + (220239, 'Feet'), + (220240, 'Feet'), + (220243, 'Chest'), + (220244, 'Chest'), + (220247, 'Arms'), + (220248, 'Arms'), + (220251, 'Hands'), + (220252, 'Hands'), + (220255, 'Head'), + (220256, 'Head'), + (220259, 'Shoulders'), + (220260, 'Shoulders'), + (220263, 'Back'), + (220264, 'Back'), + (220269, 'Back'), + (220270, 'Back'), + (220271, 'Shoulders'), + (220272, 'Shoulders'), + (220275, 'Head'), + (220276, 'Head'), + (220277, 'Hands'), + (220278, 'Hands'), + (220279, 'Arms'), + (220280, 'Arms'), + (220281, 'Chest'), + (220282, 'Chest'), + (220283, 'Feet'), + (220284, 'Feet'), + (220287, 'Legs'), + (220288, 'Legs'), + (220295, 'Back'), + (220296, 'Back'), + (220299, 'Fingers'), + (220303, 'Legs'), + (220304, 'Legs'), + (220305, 'Feet'), + (220306, 'Feet'), + (220307, 'Chest'), + (220308, 'Chest'), + (220310, 'Arms'), + (220311, 'Arms'), + (220313, 'Hands'), + (220314, 'Hands'), + (220315, 'Head'), + (220316, 'Head'), + (220317, 'Shoulders'), + (220318, 'Shoulders'), + (220332, 'Nanoprogram'), + (220334, 'Nanoprogram'), + (220336, 'Nanoprogram'), + (220338, 'Nanoprogram'), + (220340, 'Nanoprogram'), + (220342, 'Nanoprogram'), + (220344, 'Nanoprogram'), + (220346, 'Nanoprogram'), + (220348, 'Nanoprogram'), + (220350, 'Nanoprogram'), + (220440, 'Nanoprogram'), + (220445, 'Nanoprogram'), + (220455, 'Nanoprogram'), + (220465, 'Nanoprogram'), + (220471, 'Nanoprogram'), + (220473, 'Nanoprogram'), + (220474, 'Nanoprogram'), + (220476, 'Nanoprogram'), + (220497, 'Nanoprogram'), + (220499, 'Nanoprogram'), + (220503, 'Nanoprogram'), + (220504, 'Nanoprogram'), + (220521, 'Nanoprogram'), + (220527, 'Nanoprogram'), + (220528, 'Nanoprogram'), + (220529, 'Nanoprogram'), + (220539, 'Nanoprogram'), + (220541, 'Nanoprogram'), + (220571, 'Nanoprogram'), + (220576, 'Nanoprogram'), + (220581, 'Nanoprogram'), + (220587, 'Nanoprogram'), + (220594, 'Nanoprogram'), + (220599, 'Nanoprogram'), + (220604, 'Nanoprogram'), + (220617, 'Nanoprogram'), + (220622, 'Nanoprogram'), + (220623, 'Nanoprogram'), + (220625, 'Nanoprogram'), + (220629, 'Nanoprogram'), + (220630, 'Nanoprogram'), + (220638, 'Nanoprogram'), + (220653, 'Nanoprogram'), + (220657, 'Nanoprogram'), + (220663, 'Nanoprogram'), + (220693, 'Nanoprogram'), + (220697, 'Nanoprogram'), + (220702, 'Nanoprogram'), + (220710, 'Nanoprogram'), + (220730, 'Nanoprogram'), + (220733, 'Nanoprogram'), + (220743, 'Nanoprogram'), + (220770, 'Nanoprogram'), + (220773, 'Nanoprogram'), + (220777, 'Nanoprogram'), + (220779, 'Nanoprogram'), + (220782, 'Nanoprogram'), + (220783, 'Nanoprogram'), + (220790, 'Nanoprogram'), + (220795, 'Nanoprogram'), + (220797, 'Nanoprogram'), + (220801, 'Nanoprogram'), + (220803, 'Nanoprogram'), + (220805, 'Nanoprogram'), + (220810, 'Nanoprogram'), + (220816, 'Nanoprogram'), + (220817, 'Nanoprogram'), + (220821, 'Nanoprogram'), + (220827, 'Nanoprogram'), + (220829, 'Nanoprogram'), + (220837, 'Nanoprogram'), + (220839, 'Nanoprogram'), + (220852, 'Nanoprogram'), + (220853, 'Nanoprogram'), + (220858, 'Nanoprogram'), + (220864, 'Nanoprogram'), + (220867, 'Nanoprogram'), + (220871, 'Nanoprogram'), + (220875, 'Nanoprogram'), + (220878, 'Nanoprogram'), + (220880, 'Nanoprogram'), + (220895, 'Nanoprogram'), + (220897, 'Nanoprogram'), + (220903, 'Nanoprogram'), + (220905, 'Nanoprogram'), + (220930, 'Nanoprogram'), + (220933, 'Nanoprogram'), + (220937, 'Nanoprogram'), + (220946, 'Nanoprogram'), + (220962, 'Nanoprogram'), + (220972, 'Nanoprogram'), + (220982, 'Nanoprogram'), + (220984, 'Nanoprogram'), + (220986, 'Nanoprogram'), + (220991, 'Nanoprogram'), + (221007, 'Nanoprogram'), + (221012, 'Nanoprogram'), + (221028, 'Nanoprogram'), + (221045, 'Nanoprogram'), + (221052, 'Nanoprogram'), + (221058, 'Nanoprogram'), + (221059, 'Nanoprogram'), + (221068, 'Nanoprogram'), + (221073, 'Nanoprogram'), + (221082, 'Nanoprogram'), + (221094, 'Nanoprogram'), + (221098, 'Nanoprogram'), + (221101, 'Nanoprogram'), + (221118, 'Nanoprogram'), + (221124, 'Nanoprogram'), + (221128, 'Nanoprogram'), + (221129, 'Nanoprogram'), + (221132, 'Nanoprogram'), + (221133, 'Nanoprogram'), + (221146, 'Nanoprogram'), + (221152, 'Nanoprogram'), + (221173, 'Nanoprogram'), + (221183, 'Nanoprogram'), + (221185, 'Nanoprogram'), + (221204, 'Nanoprogram'), + (221212, 'Nanoprogram'), + (221217, 'Nanoprogram'), + (221218, 'Nanoprogram'), + (221220, 'Nanoprogram'), + (221222, 'Nanoprogram'), + (221223, 'Nanoprogram'), + (221225, 'Nanoprogram'), + (221231, 'Nanoprogram'), + (221235, 'Nanoprogram'), + (221236, 'Nanoprogram'), + (221237, 'Nanoprogram'), + (221238, 'Nanoprogram'), + (221240, 'Nanoprogram'), + (221249, 'Nanoprogram'), + (221255, 'Nanoprogram'), + (221265, 'Nanoprogram'), + (221266, 'Nanoprogram'), + (221267, 'Nanoprogram'), + (221268, 'Nanoprogram'), + (221269, 'Nanoprogram'), + (221272, 'Nanoprogram'), + (221277, 'Nanoprogram'), + (221278, 'Nanoprogram'), + (221280, 'Nanoprogram'), + (221291, 'Nanoprogram'), + (221293, 'Nanoprogram'), + (221296, 'Nanoprogram'), + (221300, 'Nanoprogram'), + (221302, 'Nanoprogram'), + (221306, 'Nanoprogram'), + (221307, 'Nanoprogram'), + (221308, 'Nanoprogram'), + (221309, 'Nanoprogram'), + (221310, 'Nanoprogram'), + (221311, 'Nanoprogram'), + (221367, 'Nanoprogram'), + (221451, 'Legs'), + (221453, 'Legs'), + (221456, 'Feet'), + (221457, 'Feet'), + (221462, 'Chest'), + (221463, 'Chest'), + (221467, 'Arms'), + (221469, 'Arms'), + (221471, 'Hands'), + (221472, 'Hands'), + (221477, 'Head'), + (221478, 'Head'), + (221483, 'Shoulders'), + (221484, 'Shoulders'), + (221486, 'Back'), + (221487, 'Back'), + (221554, 'Nanoprogram'), + (221555, 'Nanoprogram'), + (221559, 'Nanoprogram'), + (221561, 'Nanoprogram'), + (221575, 'Nanoprogram'), + (221577, 'Nanoprogram'), + (221580, 'Nanoprogram'), + (221584, 'Nanoprogram'), + (221606, 'Nanoprogram'), + (221628, 'Nanoprogram'), + (221629, 'Nanoprogram'), + (221630, 'Nanoprogram'), + (221636, 'Nanoprogram'), + (221653, 'Nanoprogram'), + (221655, 'Nanoprogram'), + (221687, 'Nanoprogram'), + (221693, 'Nanoprogram'), + (221717, 'Nanoprogram'), + (221732, 'Nanoprogram'), + (221741, 'Nanoprogram'), + (221756, 'Nanoprogram'), + (221757, 'Nanoprogram'), + (221759, 'Nanoprogram'), + (221778, 'Nanoprogram'), + (221790, 'Nanoprogram'), + (221794, 'Nanoprogram'), + (221806, 'Nanoprogram'), + (221809, 'Nanoprogram'), + (221818, 'Nanoprogram'), + (221850, 'Nanoprogram'), + (221862, 'Nanoprogram'), + (221877, 'Nanoprogram'), + (221905, 'Nanoprogram'), + (221906, 'Nanoprogram'), + (221907, 'Nanoprogram'), + (221908, 'Nanoprogram'), + (221910, 'Nanoprogram'), + (221917, 'Nanoprogram'), + (221920, 'Nanoprogram'), + (221930, 'Nanoprogram'), + (221931, 'Nanoprogram'), + (221932, 'Nanoprogram'), + (221939, 'Nanoprogram'), + (221940, 'Nanoprogram'), + (221942, 'Nanoprogram'), + (221943, 'Nanoprogram'), + (221944, 'Nanoprogram'), + (221945, 'Nanoprogram'), + (221948, 'Nanoprogram'), + (221950, 'Nanoprogram'), + (221956, 'Nanoprogram'), + (221959, 'Nanoprogram'), + (221965, 'Nanoprogram'), + (221971, 'Nanoprogram'), + (221984, 'Nanoprogram'), + (221989, 'Nanoprogram'), + (221990, 'Nanoprogram'), + (221996, 'Nanoprogram'), + (222007, 'Nanoprogram'), + (222012, 'Nanoprogram'), + (222034, 'Nanoprogram'), + (222047, 'Nanoprogram'), + (222063, 'Nanoprogram'), + (222072, 'Nanoprogram'), + (222121, 'Nanoprogram'), + (222123, 'Nanoprogram'), + (222127, 'Nanoprogram'), + (222128, 'Nanoprogram'), + (222134, 'Nanoprogram'), + (222153, 'Nanoprogram'), + (222155, 'Nanoprogram'), + (222157, 'Nanoprogram'), + (222169, 'Nanoprogram'), + (222171, 'Nanoprogram'), + (222177, 'Nanoprogram'), + (222184, 'Nanoprogram'), + (222186, 'Nanoprogram'), + (222196, 'Nanoprogram'), + (222201, 'Nanoprogram'), + (222203, 'Nanoprogram'), + (222224, 'Nanoprogram'), + (222229, 'Nanoprogram'), + (222233, 'Nanoprogram'), + (222237, 'Nanoprogram'), + (222238, 'Nanoprogram'), + (222242, 'Nanoprogram'), + (222248, 'Nanoprogram'), + (222255, 'Nanoprogram'), + (222257, 'Nanoprogram'), + (222316, 'Nanoprogram'), + (222317, 'Nanoprogram'), + (222318, 'Nanoprogram'), + (222319, 'Nanoprogram'), + (222320, 'Nanoprogram'), + (222321, 'Nanoprogram'), + (222322, 'Nanoprogram'), + (222323, 'Nanoprogram'), + (222324, 'Nanoprogram'), + (222325, 'Nanoprogram'), + (222326, 'Nanoprogram'), + (222327, 'Nanoprogram'), + (222328, 'Nanoprogram'), + (222329, 'Nanoprogram'), + (222330, 'Nanoprogram'), + (222331, 'Nanoprogram'), + (222332, 'Nanoprogram'), + (222333, 'Nanoprogram'), + (222334, 'Nanoprogram'), + (222335, 'Nanoprogram'), + (222336, 'Nanoprogram'), + (222337, 'Nanoprogram'), + (222338, 'Nanoprogram'), + (222426, 'Nanoprogram'), + (222427, 'Nanoprogram'), + (222428, 'Nanoprogram'), + (222429, 'Nanoprogram'), + (222515, 'Nanoprogram'), + (222517, 'Nanoprogram'), + (222521, 'Nanoprogram'), + (222522, 'Nanoprogram'), + (222523, 'Nanoprogram'), + (222524, 'Nanoprogram'), + (222525, 'Nanoprogram'), + (222526, 'Nanoprogram'), + (222527, 'Nanoprogram'), + (222528, 'Nanoprogram'), + (222529, 'Nanoprogram'), + (222530, 'Nanoprogram'), + (222531, 'Nanoprogram'), + (222532, 'Nanoprogram'), + (222533, 'Nanoprogram'), + (222534, 'Nanoprogram'), + (222535, 'Nanoprogram'), + (222536, 'Nanoprogram'), + (222581, 'Nanoprogram'), + (222582, 'Nanoprogram'), + (222583, 'Nanoprogram'), + (222584, 'Nanoprogram'), + (222585, 'Nanoprogram'), + (222586, 'Nanoprogram'), + (222587, 'Nanoprogram'), + (222588, 'Nanoprogram'), + (222589, 'Nanoprogram'), + (222590, 'Nanoprogram'), + (222591, 'Nanoprogram'), + (222592, 'Nanoprogram'), + (222593, 'Nanoprogram'), + (222594, 'Nanoprogram'), + (222595, 'Nanoprogram'), + (222596, 'Nanoprogram'), + (222603, 'Legs'), + (222604, 'Legs'), + (222605, 'Feet'), + (222606, 'Feet'), + (222609, 'Chest'), + (222610, 'Chest'), + (222611, 'Arms'), + (222612, 'Arms'), + (222613, 'Hands'), + (222614, 'Hands'), + (222617, 'Head'), + (222618, 'Head'), + (222621, 'Shoulders'), + (222622, 'Shoulders'), + (222625, 'Back'), + (222626, 'Back'), + (222629, 'Shoulders'), + (222630, 'Shoulders'), + (222631, 'Head'), + (222632, 'Head'), + (222633, 'Hands'), + (222634, 'Hands'), + (222637, 'Arms'), + (222638, 'Arms'), + (222641, 'Chest'), + (222642, 'Chest'), + (222645, 'Feet'), + (222646, 'Feet'), + (222649, 'Legs'), + (222650, 'Legs'), + (222651, 'Hands'), + (222652, 'Hands'), + (222653, 'Arms'), + (222654, 'Arms'), + (222655, 'Chest'), + (222656, 'Chest'), + (222657, 'Feet'), + (222658, 'Feet'), + (222659, 'Legs'), + (222660, 'Legs'), + (222661, 'Legs'), + (222662, 'Legs'), + (222663, 'Feet'), + (222664, 'Feet'), + (222667, 'Chest'), + (222668, 'Chest'), + (222669, 'Arms'), + (222670, 'Arms'), + (222673, 'Hands'), + (222674, 'Hands'), + (222677, 'Head'), + (222678, 'Head'), + (222681, 'Shoulders'), + (222682, 'Shoulders'), + (222683, 'Back'), + (222684, 'Back'), + (222694, 'Nanoprogram'), + (222707, 'Nanoprogram'), + (222746, 'Back'), + (222747, 'Back'), + (222748, 'Shoulders'), + (222749, 'Shoulders'), + (222750, 'Head'), + (222751, 'Head'), + (222754, 'Hands'), + (222755, 'Hands'), + (222758, 'Arms'), + (222759, 'Arms'), + (222762, 'Chest'), + (222763, 'Chest'), + (222766, 'Feet'), + (222767, 'Feet'), + (222770, 'Legs'), + (222771, 'Legs'), + (222774, 'Shoulders'), + (222775, 'Shoulders'), + (222783, 'Head'), + (222784, 'Head'), + (222785, 'Hands'), + (222786, 'Hands'), + (222789, 'Arms'), + (222790, 'Arms'), + (222793, 'Chest'), + (222794, 'Chest'), + (222797, 'Feet'), + (222798, 'Feet'), + (222801, 'Legs'), + (222802, 'Legs'), + (222865, 'Legs'), + (222866, 'Legs'), + (222867, 'Feet'), + (222868, 'Feet'), + (222871, 'Chest'), + (222872, 'Chest'), + (222875, 'Arms'), + (222876, 'Arms'), + (222879, 'Hands'), + (222880, 'Hands'), + (222897, 'Legs'), + (222898, 'Legs'), + (222899, 'Feet'), + (222900, 'Feet'), + (222901, 'Chest'), + (222902, 'Chest'), + (222903, 'Arms'), + (222904, 'Arms'), + (222907, 'Hands'), + (222908, 'Hands'), + (222911, 'Head'), + (222912, 'Head'), + (222913, 'Shoulders'), + (222914, 'Shoulders'), + (222916, 'Nanoprogram'), + (222918, 'Nanoprogram'), + (222920, 'Nanoprogram'), + (222921, 'Legs'), + (222922, 'Legs'), + (222923, 'Feet'), + (222924, 'Feet'), + (222925, 'Chest'), + (222926, 'Chest'), + (222927, 'Arms'), + (222928, 'Arms'), + (222929, 'Hands'), + (222930, 'Hands'), + (222931, 'Legs'), + (222932, 'Legs'), + (222933, 'Feet'), + (222934, 'Feet'), + (222935, 'Chest'), + (222936, 'Chest'), + (222939, 'Arms'), + (222940, 'Arms'), + (222941, 'Hands'), + (222942, 'Hands'), + (223083, 'Head'), + (223084, 'Head'), + (223085, 'Hands'), + (223086, 'Hands'), + (223087, 'Arms'), + (223088, 'Arms'), + (223089, 'Chest'), + (223090, 'Chest'), + (223091, 'Legs'), + (223092, 'Legs'), + (223093, 'Feet'), + (223094, 'Feet'), + (223095, 'Head'), + (223096, 'Head'), + (223097, 'Hands'), + (223098, 'Hands'), + (223099, 'Arms'), + (223100, 'Arms'), + (223101, 'Chest'), + (223102, 'Chest'), + (223103, 'Legs'), + (223104, 'Legs'), + (223105, 'Feet'), + (223106, 'Feet'), + (223108, 'Nanoprogram'), + (223110, 'Nanoprogram'), + (223112, 'Nanoprogram'), + (223114, 'Nanoprogram'), + (223126, 'Nanoprogram'), + (223128, 'Nanoprogram'), + (223130, 'Nanoprogram'), + (223132, 'Nanoprogram'), + (223169, 'Feet'), + (223170, 'Feet'), + (223171, 'Legs'), + (223172, 'Legs'), + (223173, 'Chest'), + (223174, 'Chest'), + (223175, 'Arms'), + (223176, 'Arms'), + (223177, 'Hands'), + (223178, 'Hands'), + (223179, 'Head'), + (223180, 'Head'), + (223182, 'Nanoprogram'), + (223184, 'Nanoprogram'), + (223186, 'Nanoprogram'), + (223224, 'Nanoprogram'), + (223226, 'Nanoprogram'), + (223228, 'Nanoprogram'), + (223230, 'Nanoprogram'), + (223349, 'Nanoprogram'), + (223351, 'Nanoprogram'), + (223353, 'Nanoprogram'), + (223355, 'Nanoprogram'), + (223357, 'Nanoprogram'), + (223359, 'Nanoprogram'), + (223361, 'Nanoprogram'), + (223363, 'Nanoprogram'), + (223365, 'Nanoprogram'), + (223367, 'Nanoprogram'), + (223369, 'Nanoprogram'), + (223371, 'Nanoprogram'), + (223373, 'Nanoprogram'), + (223375, 'Nanoprogram'), + (223377, 'Nanoprogram'), + (223379, 'Nanoprogram'), + (223381, 'Nanoprogram'), + (223383, 'Nanoprogram'), + (223385, 'Nanoprogram'), + (223387, 'Nanoprogram'), + (223389, 'Nanoprogram'), + (223391, 'Nanoprogram'), + (223393, 'Nanoprogram'), + (223394, 'Feet'), + (223395, 'Feet'), + (223396, 'Legs'), + (223397, 'Legs'), + (223400, 'Chest'), + (223401, 'Chest'), + (223403, 'Arms'), + (223404, 'Arms'), + (223405, 'Hands'), + (223406, 'Hands'), + (223407, 'Head'), + (223408, 'Head'), + (223409, 'Head'), + (223410, 'Head'), + (223411, 'Hands'), + (223412, 'Hands'), + (223413, 'Arms'), + (223414, 'Arms'), + (223415, 'Chest'), + (223416, 'Chest'), + (223417, 'Legs'), + (223418, 'Legs'), + (223419, 'Feet'), + (223420, 'Feet'), + (223433, 'Nanoprogram'), + (223466, 'Neck'), + (223467, 'Weapon'), + (223468, 'Weapon'), + (223469, 'Weapon'), + (223655, 'Feet'), + (223656, 'Feet'), + (223657, 'Legs'), + (223658, 'Legs'), + (223659, 'Chest'), + (223660, 'Chest'), + (223661, 'Arms'), + (223662, 'Arms'), + (223663, 'Hands'), + (223664, 'Hands'), + (223665, 'Head'), + (223666, 'Head'), + (223677, 'Wrists'), + (223678, 'Wrists'), + (223679, 'Wrists'), + (223681, 'Wrists'), + (223683, 'Wrists'), + (223684, 'Wrists'), + (223691, 'Wrists'), + (223692, 'Wrists'), + (223693, 'Wrists'), + (223697, 'Wrists'), + (223698, 'Wrists'), + (223699, 'Wrists'), + (223704, 'Back'), + (223705, 'Back'), + (223706, 'Feet'), + (223707, 'Feet'), + (223708, 'Shoulders'), + (223709, 'Shoulders'), + (223714, 'Back'), + (223715, 'Back'), + (223716, 'Feet'), + (223717, 'Feet'), + (223718, 'Shoulders'), + (223719, 'Shoulders'), + (223720, 'Hands'), + (223721, 'Hud'), + (223722, 'Arms'), + (223723, 'Hands'), + (223724, 'Hud'), + (223725, 'Arms'), + (223762, 'Wrists'), + (223765, 'Arms'), + (223766, 'Chest'), + (223769, 'Fingers'), + (223771, 'Wrists'), + (223953, 'Feet'), + (223954, 'Feet'), + (223955, 'Legs'), + (223956, 'Legs'), + (223971, 'Chest'), + (223972, 'Chest'), + (223974, 'Arms'), + (223975, 'Arms'), + (223979, 'Hands'), + (223980, 'Hands'), + (223983, 'Feet'), + (223984, 'Feet'), + (223985, 'Legs'), + (223986, 'Legs'), + (223987, 'Chest'), + (223988, 'Chest'), + (223989, 'Arms'), + (223990, 'Arms'), + (223991, 'Hands'), + (223992, 'Hands'), + (223995, 'Head'), + (223996, 'Head'), + (223998, 'Fingers'), + (224019, 'Fingers'), + (224035, 'Fingers'), + (224037, 'Fingers'), + (224053, 'Fingers'), + (224054, 'Fingers'), + (224055, 'Fingers'), + (224080, 'Legs'), + (224081, 'Legs'), + (224083, 'Legs'), + (224084, 'Legs'), + (224086, 'Fingers'), + (224088, 'Fingers'), + (224089, 'Fingers'), + (224090, 'Fingers'), + (224091, 'Fingers'), + (224092, 'Neck'), + (224092, 'Shoulders'), + (224093, 'Neck'), + (224093, 'Shoulders'), + (224098, 'Back'), + (224110, 'Back'), + (224116, 'Nanoprogram'), + (224118, 'Nanoprogram'), + (224132, 'Nanoprogram'), + (224134, 'Nanoprogram'), + (224136, 'Nanoprogram'), + (224138, 'Nanoprogram'), + (224140, 'Nanoprogram'), + (224142, 'Nanoprogram'), + (224144, 'Nanoprogram'), + (224146, 'Nanoprogram'), + (224148, 'Nanoprogram'), + (224150, 'Nanoprogram'), + (224184, 'Head'), + (224185, 'Head'), + (224390, 'Back'), + (224392, 'Back'), + (224393, 'Back'), + (224394, 'Back'), + (224395, 'Back'), + (224396, 'Back'), + (224397, 'Back'), + (224398, 'Back'), + (224399, 'Back'), + (224400, 'Back'), + (224431, 'Arms'), + (224432, 'Arms'), + (224437, 'Back'), + (224515, 'Back'), + (224521, 'Hands'), + (224521, 'Arms'), + (224522, 'Hands'), + (224522, 'Arms'), + (225379, 'Neck'), + (225379, 'Hands'), + (225379, 'Shoulders'), + (225379, 'Fingers'), + (225380, 'Neck'), + (225380, 'Hands'), + (225380, 'Shoulders'), + (225380, 'Fingers'), + (225381, 'Neck'), + (225381, 'Hands'), + (225381, 'Shoulders'), + (225381, 'Fingers'), + (225382, 'Neck'), + (225382, 'Hands'), + (225382, 'Shoulders'), + (225382, 'Fingers'), + (225385, 'Feet'), + (225388, 'Legs'), + (225389, 'Arms'), + (225390, 'Feet'), + (225391, 'Legs'), + (225392, 'Arms'), + (225415, 'Shoulders'), + (225457, 'Head'), + (225458, 'Shoulders'), + (225459, 'Head'), + (225507, 'Weapon'), + (225508, 'Weapon'), + (225509, 'Weapon'), + (225511, 'Weapon'), + (225512, 'Weapon'), + (225513, 'Weapon'), + (225514, 'Head'), + (225515, 'Back'), + (225516, 'Arms'), + (225517, 'Hands'), + (225518, 'Feet'), + (225519, 'Shoulders'), + (225541, 'Head'), + (225542, 'Back'), + (225543, 'Arms'), + (225544, 'Hands'), + (225545, 'Feet'), + (225546, 'Shoulders'), + (225579, 'Fingers'), + (225580, 'Fingers'), + (225587, 'Fingers'), + (225588, 'Fingers'), + (225591, 'Wrists'), + (225592, 'Wrists'), + (225595, 'Arms'), + (225596, 'Arms'), + (225627, 'Feet'), + (225628, 'Feet'), + (225635, 'Fingers'), + (225636, 'Fingers'), + (225637, 'Fingers'), + (225638, 'Fingers'), + (225639, 'Wrists'), + (225640, 'Wrists'), + (225647, 'Arms'), + (225648, 'Arms'), + (225649, 'Feet'), + (225650, 'Feet'), + (225657, 'Fingers'), + (225658, 'Fingers'), + (225659, 'Fingers'), + (225660, 'Fingers'), + (225661, 'Fingers'), + (225662, 'Fingers'), + (225663, 'Fingers'), + (225664, 'Fingers'), + (225665, 'Fingers'), + (225666, 'Fingers'), + (225667, 'Fingers'), + (225668, 'Fingers'), + (225669, 'Fingers'), + (225670, 'Fingers'), + (225671, 'Fingers'), + (225672, 'Fingers'), + (225673, 'Fingers'), + (225674, 'Fingers'), + (225675, 'Fingers'), + (225676, 'Fingers'), + (225677, 'Fingers'), + (225678, 'Fingers'), + (225679, 'Fingers'), + (225680, 'Fingers'), + (225681, 'Fingers'), + (225682, 'Fingers'), + (225683, 'Fingers'), + (225684, 'Fingers'), + (225685, 'Fingers'), + (225686, 'Fingers'), + (225687, 'Fingers'), + (225688, 'Fingers'), + (225689, 'Head'), + (225690, 'Head'), + (225691, 'Head'), + (225692, 'Head'), + (225693, 'Head'), + (225694, 'Head'), + (225695, 'Head'), + (225696, 'Head'), + (225697, 'Head'), + (225698, 'Head'), + (225699, 'Head'), + (225700, 'Head'), + (225701, 'Head'), + (225702, 'Head'), + (225703, 'Head'), + (225704, 'Head'), + (225705, 'Head'), + (225706, 'Head'), + (225707, 'Head'), + (225708, 'Head'), + (225709, 'Head'), + (225710, 'Head'), + (225711, 'Head'), + (225712, 'Head'), + (225737, 'Util'), + (225738, 'Util'), + (225739, 'Util'), + (225740, 'Util'), + (225741, 'Util'), + (225742, 'Util'), + (225743, 'Util'), + (225744, 'Util'), + (225745, 'Util'), + (225746, 'Util'), + (225747, 'Util'), + (225748, 'Util'), + (225749, 'Util'), + (225750, 'Util'), + (225751, 'Util'), + (225752, 'Util'), + (225753, 'Fingers'), + (225754, 'Util'), + (225755, 'Util'), + (225756, 'Util'), + (225757, 'Util'), + (225758, 'Fingers'), + (225759, 'Fingers'), + (225760, 'Fingers'), + (225762, 'Util'), + (225763, 'Util'), + (225764, 'Util'), + (225765, 'Util'), + (225766, 'Util'), + (225767, 'Util'), + (225768, 'Util'), + (225769, 'Util'), + (225770, 'Util'), + (225771, 'Util'), + (225773, 'Util'), + (225774, 'Util'), + (225775, 'Util'), + (225776, 'Util'), + (225777, 'Util'), + (225778, 'Util'), + (225779, 'Util'), + (225780, 'Util'), + (225781, 'Util'), + (225782, 'Util'), + (226001, 'Neck'), + (226002, 'Neck'), + (226005, 'Fingers'), + (226023, 'Fingers'), + (226065, 'Fingers'), + (226066, 'Fingers'), + (226067, 'Fingers'), + (226068, 'Fingers'), + (226069, 'Fingers'), + (226073, 'Fingers'), + (226125, 'Fingers'), + (226126, 'Fingers'), + (226127, 'Fingers'), + (226188, 'Fingers'), + (226189, 'Fingers'), + (226190, 'Fingers'), + (226191, 'Fingers'), + (226192, 'Fingers'), + (226287, 'Fingers'), + (226288, 'Fingers'), + (226290, 'Fingers'), + (226291, 'Fingers'), + (226293, 'Fingers'), + (226294, 'Fingers'), + (226295, 'Fingers'), + (226306, 'Fingers'), + (226307, 'Fingers'), + (226308, 'Fingers'), + (226329, 'Weapon'), + (226330, 'Weapon'), + (226331, 'Weapon'), + (226395, 'Nanoprogram'), + (226397, 'Nanoprogram'), + (226400, 'Nanoprogram'), + (226405, 'Nanoprogram'), + (226407, 'Nanoprogram'), + (226409, 'Nanoprogram'), + (226412, 'Nanoprogram'), + (226414, 'Nanoprogram'), + (226416, 'Nanoprogram'), + (226418, 'Nanoprogram'), + (226420, 'Nanoprogram'), + (226422, 'Nanoprogram'), + (226424, 'Nanoprogram'), + (226426, 'Nanoprogram'), + (226428, 'Nanoprogram'), + (226430, 'Nanoprogram'), + (226432, 'Nanoprogram'), + (226434, 'Nanoprogram'), + (226436, 'Nanoprogram'), + (226438, 'Nanoprogram'), + (226449, 'Head'), + (226450, 'Head'), + (226453, 'Legs'), + (226454, 'Legs'), + (226455, 'Feet'), + (226456, 'Feet'), + (226457, 'Chest'), + (226458, 'Chest'), + (226459, 'Arms'), + (226460, 'Arms'), + (226461, 'Hands'), + (226462, 'Hands'), + (226463, 'Back'), + (226464, 'Back'), + (226474, 'Weapon'), + (226475, 'Weapon'), + (226476, 'Weapon'), + (226477, 'Weapon'), + (226478, 'Weapon'), + (226479, 'Weapon'), + (226480, 'Weapon'), + (226481, 'Weapon'), + (226482, 'Weapon'), + (226483, 'Weapon'), + (226484, 'Weapon'), + (226485, 'Weapon'), + (226486, 'Weapon'), + (226590, 'Feet'), + (226591, 'Feet'), + (226670, 'Legs'), + (226671, 'Legs'), + (226672, 'Chest'), + (226673, 'Chest'), + (226674, 'Arms'), + (226675, 'Arms'), + (226676, 'Hands'), + (226677, 'Hands'), + (226689, 'Feet'), + (226690, 'Feet'), + (226691, 'Legs'), + (226692, 'Legs'), + (226693, 'Chest'), + (226694, 'Chest'), + (226695, 'Arms'), + (226696, 'Arms'), + (226697, 'Hands'), + (226698, 'Hands'), + (226701, 'Hands'), + (226702, 'Hands'), + (226703, 'Arms'), + (226704, 'Arms'), + (226705, 'Chest'), + (226706, 'Chest'), + (226707, 'Legs'), + (226708, 'Legs'), + (226709, 'Feet'), + (226710, 'Feet'), + (226712, 'Nanoprogram'), + (226717, 'Nanoprogram'), + (226719, 'Nanoprogram'), + (226721, 'Nanoprogram'), + (226723, 'Nanoprogram'), + (226725, 'Nanoprogram'), + (226727, 'Nanoprogram'), + (226729, 'Nanoprogram'), + (226731, 'Nanoprogram'), + (226735, 'Nanoprogram'), + (226737, 'Nanoprogram'), + (226739, 'Nanoprogram'), + (226741, 'Nanoprogram'), + (226743, 'Nanoprogram'), + (226745, 'Nanoprogram'), + (226747, 'Nanoprogram'), + (226749, 'Nanoprogram'), + (226751, 'Nanoprogram'), + (226824, 'Hud'), + (226825, 'Feet'), + (226826, 'Feet'), + (226827, 'Legs'), + (226828, 'Legs'), + (226829, 'Chest'), + (226830, 'Chest'), + (226831, 'Arms'), + (226832, 'Arms'), + (226833, 'Hands'), + (226834, 'Hands'), + (226835, 'Back'), + (226836, 'Back'), + (226838, 'Back'), + (226839, 'Back'), + (226862, 'Hands'), + (226863, 'Hands'), + (226864, 'Arms'), + (226865, 'Arms'), + (226866, 'Chest'), + (226867, 'Chest'), + (226868, 'Legs'), + (226869, 'Legs'), + (226870, 'Feet'), + (226871, 'Feet'), + (226955, 'Feet'), + (226956, 'Feet'), + (226957, 'Legs'), + (226958, 'Legs'), + (226959, 'Chest'), + (226960, 'Chest'), + (226961, 'Arms'), + (226962, 'Arms'), + (226963, 'Hands'), + (226964, 'Hands'), + (226965, 'Feet'), + (226966, 'Feet'), + (226967, 'Legs'), + (226968, 'Legs'), + (226969, 'Chest'), + (226970, 'Chest'), + (226971, 'Arms'), + (226972, 'Arms'), + (226973, 'Hands'), + (226974, 'Hands'), + (226975, 'Hands'), + (226976, 'Hands'), + (226977, 'Arms'), + (226978, 'Arms'), + (226979, 'Chest'), + (226980, 'Chest'), + (226981, 'Legs'), + (226982, 'Legs'), + (226983, 'Feet'), + (226984, 'Feet'), + (226985, 'Hud'), + (226986, 'Hud'), + (226987, 'Hud'), + (226988, 'Hud'), + (226989, 'Hud'), + (226990, 'Hud'), + (226991, 'Hud'), + (226992, 'Hud'), + (226993, 'Hud'), + (226994, 'Hud'), + (226995, 'Hud'), + (226996, 'Hands'), + (226997, 'Hands'), + (226998, 'Arms'), + (226999, 'Arms'), + (227000, 'Chest'), + (227001, 'Chest'), + (227002, 'Legs'), + (227003, 'Legs'), + (227004, 'Feet'), + (227005, 'Feet'), + (227006, 'Hands'), + (227007, 'Hands'), + (227008, 'Arms'), + (227009, 'Arms'), + (227010, 'Chest'), + (227011, 'Chest'), + (227012, 'Legs'), + (227013, 'Legs'), + (227014, 'Feet'), + (227015, 'Feet'), + (227016, 'Feet'), + (227017, 'Feet'), + (227018, 'Legs'), + (227019, 'Legs'), + (227020, 'Chest'), + (227021, 'Chest'), + (227022, 'Arms'), + (227023, 'Arms'), + (227024, 'Hands'), + (227025, 'Hands'), + (227026, 'Feet'), + (227027, 'Feet'), + (227028, 'Legs'), + (227029, 'Legs'), + (227030, 'Chest'), + (227031, 'Chest'), + (227032, 'Arms'), + (227033, 'Arms'), + (227034, 'Hands'), + (227035, 'Hands'), + (227087, 'Weapon'), + (227091, 'Weapon'), + (227096, 'Weapon'), + (227105, 'Weapon'), + (227108, 'Weapon'), + (227110, 'Nanoprogram'), + (227112, 'Nanoprogram'), + (227114, 'Nanoprogram'), + (227116, 'Nanoprogram'), + (227118, 'Nanoprogram'), + (227122, 'Nanoprogram'), + (227124, 'Nanoprogram'), + (227130, 'Weapon'), + (227131, 'Nanoprogram'), + (227133, 'Nanoprogram'), + (227136, 'Nanoprogram'), + (227139, 'Nanoprogram'), + (227141, 'Weapon'), + (227142, 'Nanoprogram'), + (227144, 'Nanoprogram'), + (227146, 'Nanoprogram'), + (227148, 'Nanoprogram'), + (227150, 'Nanoprogram'), + (227456, 'Weapon'), + (227457, 'Weapon'), + (227458, 'Weapon'), + (227459, 'Weapon'), + (227460, 'Weapon'), + (227461, 'Weapon'), + (227462, 'Weapon'), + (227463, 'Weapon'), + (227464, 'Weapon'), + (227633, 'Back'), + (227643, 'Util'), + (227654, 'Nanoprogram'), + (227656, 'Nanoprogram'), + (227658, 'Nanoprogram'), + (227660, 'Nanoprogram'), + (227662, 'Nanoprogram'), + (227664, 'Nanoprogram'), + (227666, 'Nanoprogram'), + (227668, 'Nanoprogram'), + (227670, 'Nanoprogram'), + (227673, 'Nanoprogram'), + (227675, 'Nanoprogram'), + (227677, 'Nanoprogram'), + (227679, 'Nanoprogram'), + (227681, 'Nanoprogram'), + (227769, 'Nanoprogram'), + (227771, 'Nanoprogram'), + (227773, 'Nanoprogram'), + (227775, 'Nanoprogram'), + (227777, 'Nanoprogram'), + (227779, 'Nanoprogram'), + (227906, 'Back'), + (227907, 'Shoulders'), + (227908, 'Head'), + (227909, 'Back'), + (227910, 'Shoulders'), + (228369, 'Weapon'), + (228371, 'Weapon'), + (228372, 'Weapon'), + (228373, 'Weapon'), + (229057, 'Hud'), + (229058, 'Hud'), + (229059, 'Hud'), + (229060, 'Hud'), + (229061, 'Hud'), + (229062, 'Hud'), + (229063, 'Hud'), + (229064, 'Hud'), + (229973, 'Wrists'), + (229990, 'Wrists'), + (230011, 'Wrists'), + (230026, 'Wrists'), + (230057, 'Wrists'), + (230072, 'Wrists'), + (230099, 'Wrists'), + (230114, 'Wrists'), + (230142, 'Wrists'), + (230157, 'Wrists'), + (230182, 'Wrists'), + (230197, 'Wrists'), + (230222, 'Wrists'), + (230237, 'Wrists'), + (230262, 'Wrists'), + (230277, 'Wrists'), + (230302, 'Wrists'), + (230317, 'Wrists'), + (230342, 'Wrists'), + (230357, 'Wrists'), + (230373, 'Nanoprogram'), + (230375, 'Nanoprogram'), + (230377, 'Nanoprogram'), + (230379, 'Nanoprogram'), + (230381, 'Nanoprogram'), + (230383, 'Nanoprogram'), + (230385, 'Nanoprogram'), + (230387, 'Nanoprogram'), + (230389, 'Nanoprogram'), + (230446, 'Nanoprogram'), + (230448, 'Nanoprogram'), + (230460, 'Nanoprogram'), + (230462, 'Nanoprogram'), + (230464, 'Nanoprogram'), + (230483, 'Weapon'), + (230484, 'Weapon'), + (230485, 'Weapon'), + (230486, 'Weapon'), + (230487, 'Weapon'), + (230900, 'Unknown'), + (230901, 'Unknown'), + (230902, 'Unknown'), + (230903, 'Unknown'), + (230904, 'Unknown'), + (230905, 'Unknown'), + (230906, 'Unknown'), + (230907, 'Unknown'), + (230908, 'Unknown'), + (230909, 'Unknown'), + (230910, 'Unknown'), + (230911, 'Unknown'), + (231097, 'Weapon'), + (231098, 'Weapon'), + (231099, 'Weapon'), + (231100, 'Weapon'), + (231101, 'Weapon'), + (231102, 'Weapon'), + (231103, 'Weapon'), + (231118, 'Weapon'), + (231119, 'Weapon'), + (231120, 'Weapon'), + (231121, 'Weapon'), + (231122, 'Weapon'), + (231125, 'Weapon'), + (231126, 'Weapon'), + (231127, 'Weapon'), + (231128, 'Weapon'), + (231129, 'Weapon'), + (231130, 'Weapon'), + (231131, 'Weapon'), + (231132, 'Weapon'), + (231133, 'Weapon'), + (231134, 'Weapon'), + (231135, 'Weapon'), + (231136, 'Weapon'), + (231137, 'Weapon'), + (231138, 'Weapon'), + (231139, 'Weapon'), + (231206, 'Weapon'), + (231207, 'Weapon'), + (231208, 'Weapon'), + (231209, 'Weapon'), + (231210, 'Weapon'), + (231211, 'Weapon'), + (231212, 'Weapon'), + (231213, 'Weapon'), + (231214, 'Weapon'), + (231215, 'Weapon'), + (231216, 'Weapon'), + (231217, 'Weapon'), + (231218, 'Weapon'), + (231219, 'Weapon'), + (231220, 'Weapon'), + (231228, 'Neck'), + (231228, 'Head'), + (231228, 'Back'), + (231228, 'Chest'), + (231228, 'Hands'), + (231228, 'Legs'), + (231228, 'Feet'), + (231228, 'Shoulders'), + (231228, 'Arms'), + (231228, 'Wrists'), + (231228, 'Fingers'), + (231229, 'Neck'), + (231229, 'Head'), + (231229, 'Back'), + (231229, 'Chest'), + (231229, 'Hands'), + (231229, 'Legs'), + (231229, 'Feet'), + (231229, 'Shoulders'), + (231229, 'Arms'), + (231229, 'Wrists'), + (231229, 'Fingers'), + (231234, 'Fingers'), + (231235, 'Feet'), + (231264, 'Weapon'), + (231265, 'Weapon'), + (231266, 'Weapon'), + (231267, 'Weapon'), + (231268, 'Weapon'), + (231343, 'Back'), + (231353, 'Back'), + (233102, 'Fingers'), + (233191, 'Weapon'), + (233192, 'Weapon'), + (233193, 'Weapon'), + (233222, 'Weapon'), + (233223, 'Weapon'), + (233224, 'Weapon'), + (233227, 'Weapon'), + (233228, 'Weapon'), + (233229, 'Weapon'), + (233236, 'Weapon'), + (233237, 'Weapon'), + (233238, 'Weapon'), + (233239, 'Weapon'), + (233240, 'Weapon'), + (233241, 'Weapon'), + (233242, 'Weapon'), + (233244, 'Weapon'), + (233245, 'Weapon'), + (233246, 'Weapon'), + (233247, 'Weapon'), + (233248, 'Weapon'), + (233255, 'Weapon'), + (233256, 'Weapon'), + (233257, 'Weapon'), + (233258, 'Weapon'), + (233259, 'Weapon'), + (233260, 'Weapon'), + (233261, 'Weapon'), + (233262, 'Weapon'), + (233263, 'Weapon'), + (233264, 'Weapon'), + (233265, 'Weapon'), + (233266, 'Weapon'), + (233267, 'Weapon'), + (233268, 'Weapon'), + (233269, 'Weapon'), + (233270, 'Weapon'), + (233273, 'Weapon'), + (233274, 'Weapon'), + (233275, 'Weapon'), + (233276, 'Weapon'), + (233277, 'Weapon'), + (233278, 'Weapon'), + (233279, 'Weapon'), + (233280, 'Weapon'), + (233281, 'Weapon'), + (233282, 'Weapon'), + (233283, 'Weapon'), + (233284, 'Weapon'), + (233285, 'Weapon'), + (233288, 'Weapon'), + (233289, 'Weapon'), + (233290, 'Weapon'), + (233291, 'Weapon'), + (233292, 'Weapon'), + (233293, 'Weapon'), + (233294, 'Weapon'), + (233295, 'Weapon'), + (233296, 'Weapon'), + (233297, 'Weapon'), + (233298, 'Weapon'), + (233299, 'Weapon'), + (233300, 'Weapon'), + (233303, 'Weapon'), + (233304, 'Weapon'), + (233305, 'Weapon'), + (233306, 'Weapon'), + (233307, 'Weapon'), + (233308, 'Weapon'), + (233309, 'Weapon'), + (233310, 'Weapon'), + (233311, 'Weapon'), + (233312, 'Weapon'), + (233313, 'Weapon'), + (233314, 'Weapon'), + (233315, 'Weapon'), + (233318, 'Weapon'), + (233321, 'Weapon'), + (233324, 'Weapon'), + (233331, 'Weapon'), + (233332, 'Weapon'), + (233333, 'Weapon'), + (233334, 'Weapon'), + (233335, 'Weapon'), + (233336, 'Weapon'), + (233337, 'Weapon'), + (233344, 'Weapon'), + (233345, 'Weapon'), + (233346, 'Weapon'), + (233351, 'Weapon'), + (233359, 'Weapon'), + (233405, 'Hands'), + (233406, 'Hud'), + (233407, 'Hud'), + (233418, 'Head'), + (233420, 'Weapon'), + (233421, 'Weapon'), + (233422, 'Weapon'), + (233423, 'Weapon'), + (233424, 'Weapon'), + (233425, 'Weapon'), + (233426, 'Weapon'), + (233427, 'Back'), + (233428, 'Weapon'), + (233429, 'Weapon'), + (233430, 'Weapon'), + (233431, 'Weapon'), + (233432, 'Weapon'), + (233433, 'Weapon'), + (233434, 'Weapon'), + (233435, 'Weapon'), + (233436, 'Weapon'), + (233437, 'Weapon'), + (233438, 'Weapon'), + (233439, 'Weapon'), + (233440, 'Weapon'), + (233441, 'Weapon'), + (233442, 'Weapon'), + (233443, 'Weapon'), + (233444, 'Weapon'), + (233445, 'Weapon'), + (233446, 'Weapon'), + (233447, 'Weapon'), + (233448, 'Weapon'), + (233449, 'Weapon'), + (233450, 'Weapon'), + (233451, 'Weapon'), + (233452, 'Weapon'), + (233453, 'Weapon'), + (233454, 'Weapon'), + (233455, 'Weapon'), + (233456, 'Weapon'), + (233457, 'Weapon'), + (233458, 'Weapon'), + (233459, 'Weapon'), + (233460, 'Weapon'), + (233461, 'Weapon'), + (233462, 'Weapon'), + (233463, 'Weapon'), + (233464, 'Weapon'), + (233465, 'Weapon'), + (233466, 'Weapon'), + (233467, 'Weapon'), + (233468, 'Arms'), + (233469, 'Arms'), + (233470, 'Feet'), + (233792, 'Weapon'), + (233793, 'Weapon'), + (233794, 'Weapon'), + (233795, 'Weapon'), + (233796, 'Weapon'), + (233797, 'Weapon'), + (233798, 'Weapon'), + (233799, 'Weapon'), + (233800, 'Weapon'), + (233801, 'Weapon'), + (233802, 'Weapon'), + (233803, 'Weapon'), + (233804, 'Wrists'), + (234050, 'Feet'), + (234051, 'Feet'), + (234057, 'Legs'), + (234058, 'Legs'), + (234059, 'Chest'), + (234060, 'Chest'), + (234061, 'Hands'), + (234062, 'Hands'), + (234063, 'Arms'), + (234064, 'Arms'), + (234065, 'Head'), + (234066, 'Head'), + (234610, 'Weapon'), + (234650, 'Weapon'), + (234651, 'Weapon'), + (234652, 'Weapon'), + (234653, 'Weapon'), + (234654, 'Weapon'), + (234657, 'Weapon'), + (234658, 'Weapon'), + (234659, 'Weapon'), + (234660, 'Weapon'), + (234661, 'Weapon'), + (235300, 'Chest'), + (235301, 'Chest'), + (235302, 'Arms'), + (235303, 'Arms'), + (235304, 'Legs'), + (235305, 'Legs'), + (235306, 'Feet'), + (235307, 'Feet'), + (235356, 'Chest'), + (235357, 'Chest'), + (235358, 'Arms'), + (235359, 'Arms'), + (235360, 'Legs'), + (235361, 'Legs'), + (235362, 'Feet'), + (235363, 'Feet'), + (235364, 'Chest'), + (235365, 'Chest'), + (235366, 'Arms'), + (235367, 'Arms'), + (235368, 'Legs'), + (235369, 'Legs'), + (235370, 'Feet'), + (235371, 'Feet'), + (235377, 'Chest'), + (235378, 'Chest'), + (235379, 'Arms'), + (235380, 'Arms'), + (235381, 'Legs'), + (235382, 'Legs'), + (235383, 'Feet'), + (235384, 'Feet'), + (235388, 'Head'), + (235389, 'Head'), + (235390, 'Head'), + (235391, 'Head'), + (235392, 'Head'), + (235393, 'Head'), + (235394, 'Head'), + (235395, 'Head'), + (235396, 'Head'), + (235397, 'Head'), + (235398, 'Head'), + (235399, 'Head'), + (236507, 'Nanoprogram'), + (236509, 'Nanoprogram'), + (236515, 'Nanoprogram'), + (238908, 'Head'), + (238909, 'Head'), + (238910, 'Fingers'), + (238911, 'Fingers'), + (238912, 'Fingers'), + (238913, 'Fingers'), + (238914, 'Fingers'), + (238915, 'Fingers'), + (238916, 'Hands'), + (238917, 'Hands'), + (238918, 'Arms'), + (238919, 'Arms'), + (238920, 'Deck'), + (238921, 'Deck'), + (238922, 'Weapon'), + (238923, 'Weapon'), + (238924, 'Weapon'), + (238925, 'Weapon'), + (238926, 'Weapon'), + (238927, 'Weapon'), + (238928, 'Weapon'), + (238929, 'Weapon'), + (238930, 'Weapon'), + (238931, 'Weapon'), + (238932, 'Weapon'), + (238933, 'Weapon'), + (238934, 'Weapon'), + (238935, 'Weapon'), + (238936, 'Weapon'), + (238937, 'Weapon'), + (238939, 'Weapon'), + (238940, 'Weapon'), + (238941, 'Weapon'), + (238942, 'Weapon'), + (238943, 'Weapon'), + (238944, 'Weapon'), + (238958, 'Weapon'), + (238959, 'Weapon'), + (238960, 'Weapon'), + (238961, 'Weapon'), + (238962, 'Weapon'), + (239358, 'Nanoprogram'), + (243739, 'Weapon'), + (243740, 'Weapon'), + (243741, 'Weapon'), + (243742, 'Weapon'), + (243743, 'Weapon'), + (243744, 'Weapon'), + (243745, 'Weapon'), + (243746, 'Weapon'), + (243747, 'Weapon'), + (243748, 'Weapon'), + (243749, 'Weapon'), + (243750, 'Weapon'), + (243751, 'Weapon'), + (243752, 'Weapon'), + (243753, 'Weapon'), + (243754, 'Weapon'), + (243755, 'Weapon'), + (243756, 'Weapon'), + (243757, 'Weapon'), + (243758, 'Weapon'), + (243759, 'Weapon'), + (243760, 'Weapon'), + (243761, 'Weapon'), + (243762, 'Weapon'), + (243763, 'Weapon'), + (243764, 'Weapon'), + (243765, 'Weapon'), + (243766, 'Weapon'), + (243767, 'Weapon'), + (243768, 'Weapon'), + (243769, 'Weapon'), + (243770, 'Weapon'), + (243771, 'Weapon'), + (243772, 'Weapon'), + (243773, 'Weapon'), + (243774, 'Weapon'), + (243775, 'Weapon'), + (243777, 'Weapon'), + (243778, 'Weapon'), + (243779, 'Weapon'), + (243780, 'Weapon'), + (243781, 'Weapon'), + (243782, 'Weapon'), + (243783, 'Weapon'), + (243784, 'Weapon'), + (243785, 'Weapon'), + (243786, 'Weapon'), + (243787, 'Weapon'), + (243788, 'Weapon'), + (243789, 'Weapon'), + (243790, 'Weapon'), + (243791, 'Weapon'), + (243792, 'Weapon'), + (243793, 'Weapon'), + (243794, 'Weapon'), + (243795, 'Weapon'), + (243796, 'Weapon'), + (243797, 'Weapon'), + (243798, 'Weapon'), + (243799, 'Weapon'), + (243800, 'Weapon'), + (243801, 'Weapon'), + (243802, 'Weapon'), + (243803, 'Weapon'), + (243804, 'Weapon'), + (243805, 'Weapon'), + (243806, 'Weapon'), + (243807, 'Weapon'), + (243846, 'Weapon'), + (243847, 'Weapon'), + (243848, 'Weapon'), + (244223, 'Hands'), + (244235, 'Fingers'), + (244236, 'Fingers'), + (244237, 'Fingers'), + (244238, 'Fingers'), + (244239, 'Fingers'), + (244240, 'Fingers'), + (244241, 'Fingers'), + (244242, 'Fingers'), + (244243, 'Fingers'), + (244244, 'Fingers'), + (244245, 'Fingers'), + (244246, 'Fingers'), + (244249, 'Fingers'), + (244250, 'Fingers'), + (244251, 'Fingers'), + (244252, 'Fingers'), + (244253, 'Fingers'), + (244254, 'Fingers'), + (244255, 'Fingers'), + (244256, 'Fingers'), + (244257, 'Fingers'), + (244258, 'Fingers'), + (244259, 'Fingers'), + (244260, 'Fingers'), + (244263, 'Fingers'), + (244264, 'Fingers'), + (244265, 'Fingers'), + (244266, 'Fingers'), + (244267, 'Fingers'), + (244268, 'Fingers'), + (244269, 'Fingers'), + (244270, 'Fingers'), + (244271, 'Fingers'), + (244272, 'Fingers'), + (244273, 'Fingers'), + (244274, 'Fingers'), + (244277, 'Fingers'), + (244278, 'Fingers'), + (244279, 'Fingers'), + (244280, 'Fingers'), + (244281, 'Fingers'), + (244282, 'Fingers'), + (244283, 'Fingers'), + (244284, 'Fingers'), + (244285, 'Fingers'), + (244286, 'Fingers'), + (244287, 'Fingers'), + (244288, 'Fingers'), + (244291, 'Fingers'), + (244292, 'Fingers'), + (244293, 'Fingers'), + (244294, 'Fingers'), + (244295, 'Fingers'), + (244296, 'Fingers'), + (244297, 'Fingers'), + (244298, 'Fingers'), + (244299, 'Fingers'), + (244300, 'Fingers'), + (244301, 'Fingers'), + (244302, 'Fingers'), + (244305, 'Fingers'), + (244306, 'Fingers'), + (244307, 'Fingers'), + (244308, 'Fingers'), + (244309, 'Fingers'), + (244310, 'Fingers'), + (244311, 'Fingers'), + (244312, 'Fingers'), + (244313, 'Fingers'), + (244314, 'Fingers'), + (244315, 'Fingers'), + (244316, 'Fingers'), + (244319, 'Fingers'), + (244320, 'Fingers'), + (244321, 'Fingers'), + (244322, 'Fingers'), + (244323, 'Fingers'), + (244324, 'Fingers'), + (244325, 'Fingers'), + (244326, 'Fingers'), + (244327, 'Fingers'), + (244328, 'Fingers'), + (244329, 'Fingers'), + (244330, 'Fingers'), + (244333, 'Fingers'), + (244334, 'Fingers'), + (244335, 'Fingers'), + (244336, 'Fingers'), + (244337, 'Fingers'), + (244338, 'Fingers'), + (244339, 'Fingers'), + (244340, 'Fingers'), + (244341, 'Fingers'), + (244342, 'Fingers'), + (244343, 'Fingers'), + (244344, 'Fingers'), + (244357, 'Feet'), + (244358, 'Deck'), + (244364, 'Fingers'), + (244365, 'Fingers'), + (244366, 'Fingers'), + (244367, 'Fingers'), + (244368, 'Fingers'), + (244369, 'Fingers'), + (244370, 'Fingers'), + (244371, 'Fingers'), + (244372, 'Fingers'), + (244373, 'Fingers'), + (244374, 'Fingers'), + (244375, 'Fingers'), + (244376, 'Util'), + (244379, 'Fingers'), + (244380, 'Fingers'), + (244381, 'Fingers'), + (244382, 'Fingers'), + (244383, 'Fingers'), + (244384, 'Fingers'), + (244385, 'Fingers'), + (244386, 'Fingers'), + (244387, 'Fingers'), + (244388, 'Fingers'), + (244389, 'Fingers'), + (244390, 'Fingers'), + (244393, 'Fingers'), + (244394, 'Fingers'), + (244395, 'Fingers'), + (244396, 'Fingers'), + (244397, 'Fingers'), + (244398, 'Fingers'), + (244399, 'Fingers'), + (244400, 'Fingers'), + (244401, 'Fingers'), + (244402, 'Fingers'), + (244403, 'Fingers'), + (244404, 'Fingers'), + (244405, 'Util'), + (244408, 'Fingers'), + (244409, 'Fingers'), + (244410, 'Fingers'), + (244411, 'Fingers'), + (244412, 'Fingers'), + (244413, 'Fingers'), + (244414, 'Fingers'), + (244415, 'Fingers'), + (244416, 'Fingers'), + (244417, 'Fingers'), + (244418, 'Fingers'), + (244419, 'Fingers'), + (244429, 'Fingers'), + (244430, 'Fingers'), + (244431, 'Fingers'), + (244432, 'Fingers'), + (244433, 'Fingers'), + (244434, 'Fingers'), + (244435, 'Fingers'), + (244436, 'Fingers'), + (244437, 'Fingers'), + (244438, 'Fingers'), + (244439, 'Fingers'), + (244440, 'Fingers'), + (244443, 'Fingers'), + (244444, 'Fingers'), + (244445, 'Fingers'), + (244446, 'Fingers'), + (244447, 'Fingers'), + (244448, 'Fingers'), + (244449, 'Fingers'), + (244450, 'Fingers'), + (244451, 'Fingers'), + (244452, 'Fingers'), + (244453, 'Fingers'), + (244454, 'Fingers'), + (244457, 'Fingers'), + (244458, 'Fingers'), + (244459, 'Fingers'), + (244460, 'Fingers'), + (244461, 'Fingers'), + (244462, 'Fingers'), + (244463, 'Fingers'), + (244464, 'Fingers'), + (244465, 'Fingers'), + (244466, 'Fingers'), + (244467, 'Fingers'), + (244468, 'Fingers'), + (244469, 'Util'), + (244472, 'Fingers'), + (244473, 'Fingers'), + (244474, 'Fingers'), + (244475, 'Fingers'), + (244476, 'Fingers'), + (244477, 'Fingers'), + (244478, 'Fingers'), + (244479, 'Fingers'), + (244480, 'Fingers'), + (244481, 'Fingers'), + (244482, 'Fingers'), + (244483, 'Fingers'), + (244486, 'Fingers'), + (244487, 'Fingers'), + (244488, 'Fingers'), + (244489, 'Fingers'), + (244490, 'Fingers'), + (244491, 'Fingers'), + (244492, 'Fingers'), + (244493, 'Fingers'), + (244494, 'Fingers'), + (244495, 'Fingers'), + (244496, 'Fingers'), + (244497, 'Fingers'), + (244500, 'Fingers'), + (244501, 'Fingers'), + (244502, 'Fingers'), + (244503, 'Fingers'), + (244504, 'Fingers'), + (244505, 'Fingers'), + (244506, 'Fingers'), + (244507, 'Fingers'), + (244508, 'Fingers'), + (244509, 'Fingers'), + (244510, 'Fingers'), + (244511, 'Fingers'), + (244514, 'Fingers'), + (244515, 'Fingers'), + (244516, 'Fingers'), + (244517, 'Fingers'), + (244518, 'Fingers'), + (244519, 'Fingers'), + (244520, 'Fingers'), + (244521, 'Fingers'), + (244522, 'Fingers'), + (244523, 'Fingers'), + (244524, 'Fingers'), + (244525, 'Fingers'), + (244528, 'Fingers'), + (244529, 'Fingers'), + (244530, 'Fingers'), + (244531, 'Fingers'), + (244532, 'Fingers'), + (244533, 'Fingers'), + (244534, 'Fingers'), + (244535, 'Fingers'), + (244536, 'Fingers'), + (244537, 'Fingers'), + (244538, 'Fingers'), + (244539, 'Fingers'), + (244540, 'Head'), + (244541, 'Arms'), + (244542, 'Arms'), + (244543, 'Feet'), + (244558, 'Deck'), + (244559, 'Hands'), + (244560, 'Fingers'), + (244561, 'Deck'), + (244562, 'Hands'), + (244563, 'Util'), + (244564, 'Wrists'), + (244565, 'Hud'), + (244566, 'Legs'), + (244567, 'Util'), + (244572, 'Wrists'), + (244573, 'Wrists'), + (244574, 'Feet'), + (244575, 'Deck'), + (244578, 'Shoulders'), + (244579, 'Deck'), + (244581, 'Legs'), + (244635, 'Shoulders'), + (244637, 'Hud'), + (244638, 'Arms'), + (244639, 'Back'), + (244640, 'Util'), + (244641, 'Head'), + (244643, 'Deck'), + (244644, 'Wrists'), + (244645, 'Neck'), + (244647, 'Hands'), + (244648, 'Deck'), + (244650, 'Feet'), + (244654, 'Back'), + (244655, 'Util'), + (244658, 'Deck'), + (244659, 'Hud'), + (244660, 'Hud'), + (244661, 'Fingers'), + (244662, 'Hands'), + (244663, 'Deck'), + (244664, 'Hud'), + (244665, 'Deck'), + (244690, 'Util'), + (244690, 'Hud'), + (244691, 'Util'), + (244691, 'Hud'), + (244692, 'Util'), + (244692, 'Hud'), + (244693, 'Util'), + (244693, 'Hud'), + (244694, 'Util'), + (244694, 'Hud'), + (244695, 'Util'), + (244695, 'Hud'), + (244696, 'Util'), + (244696, 'Hud'), + (244697, 'Util'), + (244697, 'Hud'), + (244698, 'Util'), + (244698, 'Hud'), + (244699, 'Util'), + (244699, 'Hud'), + (244700, 'Util'), + (244700, 'Hud'), + (244701, 'Util'), + (244701, 'Hud'), + (244702, 'Util'), + (244702, 'Hud'), + (244703, 'Util'), + (244703, 'Hud'), + (244704, 'Hands'), + (244705, 'Arms'), + (244712, 'Arms'), + (244713, 'Shoulders'), + (244714, 'Feet'), + (244715, 'Legs'), + (244716, 'Head'), + (244717, 'Chest'), + (244718, 'Back'), + (244719, 'Neck'), + (244742, 'Weapon'), + (244743, 'Weapon'), + (244750, 'Neck'), + (244761, 'Weapon'), + (244762, 'Weapon'), + (244778, 'Weapon'), + (244779, 'Weapon'), + (244782, 'Weapon'), + (244783, 'Weapon'), + (244784, 'Weapon'), + (244785, 'Weapon'), + (244801, 'Weapon'), + (244802, 'Weapon'), + (244820, 'Weapon'), + (244821, 'Weapon'), + (244842, 'Weapon'), + (244843, 'Weapon'), + (244859, 'Weapon'), + (244862, 'Weapon'), + (244909, 'Weapon'), + (244910, 'Weapon'), + (244911, 'Weapon'), + (244912, 'Weapon'), + (244913, 'Weapon'), + (244914, 'Weapon'), + (244988, 'Deck'), + (244989, 'Deck'), + (244990, 'Deck'), + (244992, 'Util'), + (244992, 'Hud'), + (244993, 'Util'), + (244993, 'Hud'), + (245025, 'Deck'), + (245092, 'Fingers'), + (245118, 'Hands'), + (245119, 'Arms'), + (245120, 'Legs'), + (245122, 'Feet'), + (245123, 'Chest'), + (245124, 'Head'), + (245125, 'Shoulders'), + (245135, 'Back'), + (245139, 'Head'), + (245170, 'Back'), + (245175, 'Arms'), + (245176, 'Arms'), + (245177, 'Chest'), + (245178, 'Chest'), + (245179, 'Hands'), + (245180, 'Hands'), + (245181, 'Legs'), + (245182, 'Legs'), + (245183, 'Feet'), + (245184, 'Feet'), + (245185, 'Shoulders'), + (245186, 'Shoulders'), + (245187, 'Head'), + (245188, 'Head'), + (245217, 'Weapon'), + (245218, 'Weapon'), + (245219, 'Weapon'), + (245220, 'Weapon'), + (245221, 'Weapon'), + (245222, 'Weapon'), + (245223, 'Weapon'), + (245276, 'Wrists'), + (245278, 'Wrists'), + (245302, 'Arms'), + (245303, 'Arms'), + (245319, 'Hud'), + (245320, 'Hud'), + (245321, 'Hud'), + (245324, 'Util'), + (245324, 'Hud'), + (245339, 'Head'), + (245355, 'Hands'), + (245357, 'Chest'), + (245372, 'Legs'), + (245409, 'Head'), + (245424, 'Head'), + (245425, 'Head'), + (245426, 'Wrists'), + (245427, 'Deck'), + (245428, 'Util'), + (245428, 'Hud'), + (245429, 'Deck'), + (245430, 'Head'), + (245433, 'Arms'), + (245450, 'Back'), + (245481, 'Util'), + (245481, 'Hud'), + (245482, 'Fingers'), + (245484, 'Arms'), + (245484, 'Wrists'), + (245505, 'Legs'), + (245506, 'Legs'), + (245508, 'Arms'), + (245509, 'Feet'), + (245510, 'Chest'), + (245511, 'Chest'), + (245513, 'Hands'), + (245514, 'Legs'), + (245515, 'Feet'), + (245516, 'Chest'), + (245517, 'Arms'), + (245518, 'Hands'), + (245519, 'Legs'), + (245520, 'Feet'), + (245521, 'Hands'), + (245522, 'Arms'), + (245523, 'Chest'), + (245524, 'Legs'), + (245525, 'Feet'), + (245526, 'Arms'), + (245528, 'Hands'), + (245529, 'Chest'), + (245571, 'Head'), + (245572, 'Weapon'), + (245573, 'Weapon'), + (245574, 'Weapon'), + (245575, 'Weapon'), + (245576, 'Weapon'), + (245577, 'Weapon'), + (245578, 'Weapon'), + (245579, 'Weapon'), + (245580, 'Weapon'), + (245582, 'Weapon'), + (245583, 'Weapon'), + (245584, 'Weapon'), + (245585, 'Back'), + (245593, 'Head'), + (245595, 'Back'), + (245597, 'Wrists'), + (245605, 'Weapon'), + (245606, 'Weapon'), + (245607, 'Weapon'), + (245629, 'Weapon'), + (245630, 'Weapon'), + (245631, 'Weapon'), + (245632, 'Weapon'), + (245633, 'Weapon'), + (245634, 'Weapon'), + (245635, 'Weapon'), + (245636, 'Weapon'), + (245637, 'Weapon'), + (245638, 'Weapon'), + (245639, 'Weapon'), + (245640, 'Weapon'), + (245641, 'Weapon'), + (245656, 'Feet'), + (245657, 'Back'), + (245659, 'Wrists'), + (245660, 'Wrists'), + (245661, 'Head'), + (245664, 'Arms'), + (245665, 'Fingers'), + (245669, 'Weapon'), + (245671, 'Head'), + (245672, 'Shoulders'), + (245674, 'Fingers'), + (245675, 'Back'), + (245676, 'Back'), + (245677, 'Head'), + (245678, 'Weapon'), + (245679, 'Weapon'), + (245680, 'Weapon'), + (245682, 'Legs'), + (245694, 'Back'), + (245718, 'Head'), + (245719, 'Head'), + (245720, 'Head'), + (245721, 'Head'), + (245722, 'Head'), + (245723, 'Head'), + (245728, 'Head'), + (245729, 'Head'), + (245730, 'Head'), + (245736, 'Weapon'), + (245737, 'Weapon'), + (245738, 'Weapon'), + (245740, 'Hud'), + (245766, 'Weapon'), + (245767, 'Weapon'), + (245768, 'Weapon'), + (245770, 'Fingers'), + (245771, 'Wrists'), + (245773, 'Arms'), + (245774, 'Neck'), + (245780, 'Util'), + (245780, 'Hud'), + (245783, 'Util'), + (245783, 'Hud'), + (245784, 'Weapon'), + (245785, 'Weapon'), + (245786, 'Weapon'), + (245797, 'Weapon'), + (245798, 'Weapon'), + (245799, 'Weapon'), + (245824, 'Wrists'), + (245854, 'Chest'), + (245855, 'Arms'), + (245856, 'Hands'), + (245857, 'Feet'), + (245858, 'Shoulders'), + (245859, 'Head'), + (245860, 'Back'), + (245863, 'Util'), + (245863, 'Hud'), + (245865, 'Hands'), + (245866, 'Feet'), + (245880, 'Arms'), + (245881, 'Weapon'), + (245882, 'Weapon'), + (245883, 'Weapon'), + (245884, 'Hands'), + (245886, 'Back'), + (245887, 'Head'), + (245889, 'Head'), + (245890, 'Feet'), + (245891, 'Chest'), + (245892, 'Hud'), + (245893, 'Back'), + (245894, 'Shoulders'), + (245905, 'Fingers'), + (245929, 'Chest'), + (245930, 'Chest'), + (245931, 'Arms'), + (245932, 'Arms'), + (245933, 'Head'), + (245934, 'Head'), + (245935, 'Feet'), + (245936, 'Feet'), + (245937, 'Legs'), + (245938, 'Legs'), + (245939, 'Hands'), + (245940, 'Hands'), + (245964, 'Chest'), + (245965, 'Chest'), + (245966, 'Feet'), + (245967, 'Feet'), + (245968, 'Hands'), + (245969, 'Hands'), + (245970, 'Legs'), + (245971, 'Legs'), + (245972, 'Arms'), + (245973, 'Arms'), + (245974, 'Head'), + (245975, 'Head'), + (245997, 'Weapon'), + (245998, 'Weapon'), + (245999, 'Weapon'), + (246000, 'Weapon'), + (246001, 'Weapon'), + (246002, 'Weapon'), + (246003, 'Weapon'), + (246004, 'Weapon'), + (246005, 'Weapon'), + (246006, 'Weapon'), + (246007, 'Weapon'), + (246008, 'Weapon'), + (246009, 'Weapon'), + (246010, 'Weapon'), + (246011, 'Weapon'), + (246012, 'Weapon'), + (246013, 'Weapon'), + (246014, 'Weapon'), + (246015, 'Weapon'), + (246016, 'Weapon'), + (246017, 'Weapon'), + (246018, 'Weapon'), + (246021, 'Weapon'), + (246022, 'Weapon'), + (246023, 'Weapon'), + (246044, 'Weapon'), + (246045, 'Weapon'), + (246046, 'Weapon'), + (246047, 'Weapon'), + (246048, 'Weapon'), + (246049, 'Weapon'), + (246050, 'Weapon'), + (246051, 'Weapon'), + (246052, 'Weapon'), + (246053, 'Weapon'), + (246054, 'Weapon'), + (246055, 'Weapon'), + (246056, 'Weapon'), + (246057, 'Weapon'), + (246058, 'Weapon'), + (246059, 'Weapon'), + (246060, 'Weapon'), + (246061, 'Weapon'), + (246062, 'Hud'), + (246063, 'Chest'), + (246080, 'Fingers'), + (246083, 'Head'), + (246084, 'Fingers'), + (246085, 'Back'), + (246087, 'Head'), + (246088, 'Hud'), + (246089, 'Hud'), + (246090, 'Fingers'), + (246091, 'Arms'), + (246092, 'Hands'), + (246094, 'Feet'), + (246095, 'Hud'), + (246097, 'Weapon'), + (246098, 'Weapon'), + (246099, 'Weapon'), + (246100, 'Weapon'), + (246101, 'Weapon'), + (246102, 'Weapon'), + (246103, 'Weapon'), + (246104, 'Weapon'), + (246105, 'Weapon'), + (246109, 'Arms'), + (246110, 'Neck'), + (246123, 'Fingers'), + (246125, 'Neck'), + (246206, 'Hud'), + (246207, 'Hud'), + (246208, 'Hud'), + (246210, 'Hud'), + (246212, 'Hud'), + (246216, 'Back'), + (246217, 'Head'), + (246218, 'Deck'), + (246219, 'Neck'), + (246219, 'Shoulders'), + (246219, 'Wrists'), + (246220, 'Unknown'), + (246221, 'Unknown'), + (246222, 'Chest'), + (246223, 'Hands'), + (246226, 'Head'), + (246244, 'Weapon'), + (246256, 'Weapon'), + (246274, 'Head'), + (246276, 'Deck'), + (246277, 'Deck'), + (246278, 'Deck'), + (246279, 'Hud'), + (246280, 'Hud'), + (246281, 'Hud'), + (246287, 'Back'), + (246288, 'Back'), + (246289, 'Fingers'), + (246291, 'Nanoprogram'), + (246309, 'Chest'), + (246310, 'Neck'), + (246310, 'Head'), + (246310, 'Fingers'), + (246311, 'Neck'), + (246311, 'Head'), + (246311, 'Fingers'), + (246312, 'Head'), + (246313, 'Head'), + (246314, 'Chest'), + (246316, 'Arms'), + (246317, 'Hands'), + (246318, 'Legs'), + (246319, 'Feet'), + (246323, 'Weapon'), + (246324, 'Weapon'), + (246325, 'Weapon'), + (246326, 'Weapon'), + (246327, 'Weapon'), + (246328, 'Weapon'), + (246329, 'Weapon'), + (246330, 'Weapon'), + (246331, 'Weapon'), + (246332, 'Weapon'), + (246333, 'Weapon'), + (246334, 'Weapon'), + (246335, 'Weapon'), + (246336, 'Weapon'), + (246337, 'Weapon'), + (246338, 'Weapon'), + (246339, 'Weapon'), + (246340, 'Weapon'), + (246341, 'Weapon'), + (246342, 'Weapon'), + (246343, 'Weapon'), + (246344, 'Weapon'), + (246345, 'Weapon'), + (246346, 'Weapon'), + (246347, 'Weapon'), + (246348, 'Weapon'), + (246349, 'Weapon'), + (246350, 'Weapon'), + (246351, 'Weapon'), + (246352, 'Weapon'), + (246353, 'Weapon'), + (246354, 'Weapon'), + (246355, 'Weapon'), + (246382, 'Nanoprogram'), + (246384, 'Nanoprogram'), + (246386, 'Nanoprogram'), + (246408, 'Weapon'), + (246409, 'Weapon'), + (246410, 'Weapon'), + (246411, 'Weapon'), + (246412, 'Weapon'), + (246413, 'Weapon'), + (246414, 'Weapon'), + (246415, 'Weapon'), + (246416, 'Weapon'), + (246417, 'Weapon'), + (246418, 'Weapon'), + (246419, 'Weapon'), + (246420, 'Weapon'), + (246421, 'Weapon'), + (246422, 'Weapon'), + (246423, 'Weapon'), + (246424, 'Weapon'), + (246425, 'Weapon'), + (246426, 'Weapon'), + (246427, 'Weapon'), + (246428, 'Weapon'), + (246559, 'Chest'), + (246560, 'Chest'), + (246561, 'Head'), + (246562, 'Head'), + (246563, 'Arms'), + (246564, 'Arms'), + (246565, 'Hands'), + (246566, 'Hands'), + (246567, 'Legs'), + (246568, 'Legs'), + (246569, 'Feet'), + (246570, 'Feet'), + (246571, 'Feet'), + (246572, 'Feet'), + (246573, 'Legs'), + (246574, 'Legs'), + (246575, 'Hands'), + (246576, 'Hands'), + (246577, 'Arms'), + (246578, 'Arms'), + (246579, 'Chest'), + (246580, 'Chest'), + (246581, 'Head'), + (246582, 'Head'), + (246583, 'Feet'), + (246584, 'Feet'), + (246585, 'Legs'), + (246586, 'Legs'), + (246587, 'Hands'), + (246588, 'Hands'), + (246589, 'Arms'), + (246590, 'Arms'), + (246591, 'Chest'), + (246592, 'Chest'), + (246593, 'Head'), + (246594, 'Head'), + (246595, 'Feet'), + (246596, 'Feet'), + (246597, 'Head'), + (246598, 'Head'), + (246599, 'Chest'), + (246600, 'Chest'), + (246601, 'Arms'), + (246602, 'Arms'), + (246603, 'Hands'), + (246604, 'Hands'), + (246605, 'Legs'), + (246606, 'Legs'), + (246607, 'Feet'), + (246608, 'Feet'), + (246609, 'Legs'), + (246610, 'Legs'), + (246611, 'Hands'), + (246612, 'Hands'), + (246613, 'Arms'), + (246614, 'Arms'), + (246615, 'Chest'), + (246616, 'Chest'), + (246617, 'Head'), + (246618, 'Head'), + (246619, 'Head'), + (246620, 'Head'), + (246621, 'Chest'), + (246622, 'Chest'), + (246623, 'Arms'), + (246624, 'Arms'), + (246625, 'Hands'), + (246626, 'Hands'), + (246627, 'Feet'), + (246628, 'Feet'), + (246629, 'Legs'), + (246630, 'Legs'), + (246631, 'Head'), + (246632, 'Head'), + (246635, 'Head'), + (246636, 'Head'), + (246637, 'Chest'), + (246638, 'Chest'), + (246639, 'Arms'), + (246640, 'Arms'), + (246641, 'Hands'), + (246642, 'Hands'), + (246643, 'Legs'), + (246644, 'Legs'), + (246645, 'Feet'), + (246646, 'Feet'), + (246647, 'Chest'), + (246648, 'Chest'), + (246649, 'Arms'), + (246650, 'Arms'), + (246651, 'Hands'), + (246652, 'Hands'), + (246653, 'Legs'), + (246654, 'Legs'), + (246655, 'Feet'), + (246656, 'Feet'), + (246657, 'Head'), + (246658, 'Head'), + (246659, 'Chest'), + (246660, 'Chest'), + (246661, 'Arms'), + (246662, 'Arms'), + (246663, 'Hands'), + (246664, 'Hands'), + (246665, 'Legs'), + (246666, 'Legs'), + (246667, 'Feet'), + (246668, 'Feet'), + (246669, 'Head'), + (246670, 'Head'), + (246671, 'Chest'), + (246672, 'Chest'), + (246673, 'Arms'), + (246674, 'Arms'), + (246675, 'Hands'), + (246676, 'Hands'), + (246677, 'Legs'), + (246678, 'Legs'), + (246679, 'Feet'), + (246680, 'Feet'), + (246681, 'Head'), + (246682, 'Head'), + (246683, 'Chest'), + (246684, 'Chest'), + (246685, 'Arms'), + (246686, 'Arms'), + (246687, 'Hands'), + (246688, 'Hands'), + (246689, 'Legs'), + (246690, 'Legs'), + (246691, 'Feet'), + (246692, 'Feet'), + (246693, 'Head'), + (246694, 'Head'), + (246695, 'Chest'), + (246696, 'Chest'), + (246697, 'Arms'), + (246698, 'Arms'), + (246699, 'Hands'), + (246700, 'Hands'), + (246701, 'Legs'), + (246702, 'Legs'), + (246703, 'Feet'), + (246704, 'Feet'), + (246705, 'Weapon'), + (246706, 'Weapon'), + (246707, 'Weapon'), + (246708, 'Weapon'), + (246709, 'Weapon'), + (246710, 'Weapon'), + (246711, 'Weapon'), + (246712, 'Weapon'), + (246713, 'Weapon'), + (246714, 'Weapon'), + (246715, 'Weapon'), + (246716, 'Weapon'), + (246717, 'Weapon'), + (246718, 'Weapon'), + (246719, 'Weapon'), + (246720, 'Weapon'), + (246721, 'Weapon'), + (246722, 'Weapon'), + (246723, 'Weapon'), + (246724, 'Weapon'), + (246833, 'Fingers'), + (246834, 'Neck'), + (246873, 'Weapon'), + (246887, 'Back'), + (246889, 'Back'), + (246890, 'Back'), + (246891, 'Back'), + (246892, 'Back'), + (247015, 'Back'), + (247016, 'Back'), + (247057, 'Weapon'), + (247058, 'Weapon'), + (247059, 'Weapon'), + (247060, 'Weapon'), + (247061, 'Weapon'), + (247062, 'Weapon'), + (247063, 'Weapon'), + (247064, 'Weapon'), + (247065, 'Weapon'), + (247066, 'Weapon'), + (247067, 'Weapon'), + (247068, 'Weapon'), + (247069, 'Weapon'), + (247070, 'Weapon'), + (247071, 'Weapon'), + (247072, 'Weapon'), + (247073, 'Weapon'), + (247074, 'Weapon'), + (247075, 'Weapon'), + (247076, 'Weapon'), + (247077, 'Weapon'), + (247078, 'Weapon'), + (247079, 'Weapon'), + (247080, 'Weapon'), + (247081, 'Back'), + (247803, 'Head'), + (248068, 'Arms'), + (248081, 'Chest'), + (248084, 'Hands'), + (248085, 'Legs'), + (248086, 'Feet'), + (248090, 'Arms'), + (248091, 'Chest'), + (248092, 'Legs'), + (248093, 'Feet'), + (248197, 'Arms'), + (248210, 'Arms'), + (248213, 'Chest'), + (248215, 'Legs'), + (248216, 'Feet'), + (248269, 'Feet'), + (248270, 'Feet'), + (248271, 'Legs'), + (248272, 'Legs'), + (248273, 'Chest'), + (248274, 'Chest'), + (248275, 'Arms'), + (248276, 'Arms'), + (248277, 'Hands'), + (248278, 'Hands'), + (248279, 'Feet'), + (248280, 'Feet'), + (248281, 'Legs'), + (248282, 'Legs'), + (248283, 'Chest'), + (248284, 'Chest'), + (248285, 'Arms'), + (248286, 'Arms'), + (248287, 'Hands'), + (248288, 'Hands'), + (248296, 'Feet'), + (248297, 'Feet'), + (248298, 'Legs'), + (248299, 'Legs'), + (248300, 'Chest'), + (248301, 'Chest'), + (248302, 'Arms'), + (248303, 'Arms'), + (248304, 'Hands'), + (248305, 'Hands'), + (248341, 'Weapon'), + (248342, 'Weapon'), + (248343, 'Weapon'), + (248344, 'Weapon'), + (248345, 'Weapon'), + (248346, 'Weapon'), + (248347, 'Weapon'), + (248348, 'Weapon'), + (248349, 'Weapon'), + (248350, 'Weapon'), + (248351, 'Weapon'), + (248352, 'Weapon'), + (248353, 'Weapon'), + (248354, 'Weapon'), + (248355, 'Weapon'), + (248359, 'Shoulders'), + (248360, 'Shoulders'), + (248361, 'Head'), + (248362, 'Head'), + (248373, 'Chest'), + (248374, 'Hud'), + (248375, 'Wrists'), + (248376, 'Neck'), + (248377, 'Util'), + (248378, 'Back'), + (248379, 'Back'), + (248380, 'Back'), + (248381, 'Back'), + (248382, 'Back'), + (248383, 'Back'), + (248384, 'Back'), + (248385, 'Back'), + (248406, 'Back'), + (248407, 'Back'), + (248408, 'Back'), + (248409, 'Back'), + (248410, 'Back'), + (248411, 'Arms'), + (248412, 'Chest'), + (248413, 'Feet'), + (248414, 'Hands'), + (248415, 'Legs'), + (248416, 'Arms'), + (248417, 'Chest'), + (248418, 'Arms'), + (248419, 'Chest'), + (248420, 'Feet'), + (248421, 'Weapon'), + (248422, 'Weapon'), + (248423, 'Weapon'), + (248424, 'Weapon'), + (248425, 'Weapon'), + (248426, 'Weapon'), + (248427, 'Weapon'), + (248518, 'Legs'), + (248519, 'Back'), + (248540, 'Arms'), + (248541, 'Back'), + (248563, 'Arms'), + (248582, 'Weapon'), + (248583, 'Weapon'), + (248584, 'Weapon'), + (248585, 'Weapon'), + (248586, 'Weapon'), + (248587, 'Weapon'), + (248588, 'Weapon'), + (248597, 'Weapon'), + (248598, 'Weapon'), + (248599, 'Weapon'), + (248600, 'Weapon'), + (248601, 'Weapon'), + (248602, 'Weapon'), + (248603, 'Weapon'), + (248604, 'Weapon'), + (248605, 'Weapon'), + (248606, 'Weapon'), + (248607, 'Weapon'), + (248745, 'Chest'), + (248746, 'Feet'), + (248747, 'Legs'), + (248748, 'Hands'), + (248749, 'Back'), + (248752, 'Back'), + (248753, 'Arms'), + (248754, 'Chest'), + (248755, 'Legs'), + (248756, 'Feet'), + (248757, 'Head'), + (248758, 'Head'), + (248759, 'Arms'), + (248760, 'Chest'), + (248761, 'Legs'), + (248762, 'Feet'), + (248763, 'Head'), + (248764, 'Head'), + (248783, 'Arms'), + (248784, 'Chest'), + (248785, 'Legs'), + (248788, 'Back'), + (248789, 'Arms'), + (248790, 'Arms'), + (248791, 'Chest'), + (248792, 'Feet'), + (248793, 'Legs'), + (248794, 'Back'), + (248795, 'Arms'), + (248796, 'Chest'), + (248797, 'Arms'), + (248800, 'Chest'), + (248801, 'Feet'), + (248813, 'Head'), + (248814, 'Head'), + (248815, 'Head'), + (248827, 'Legs'), + (248828, 'Arms'), + (248829, 'Chest'), + (248830, 'Hands'), + (248831, 'Feet'), + (248832, 'Legs'), + (248833, 'Back'), + (248834, 'Arms'), + (248835, 'Chest'), + (248836, 'Legs'), + (248837, 'Feet'), + (248838, 'Feet'), + (248839, 'Arms'), + (248840, 'Chest'), + (248841, 'Legs'), + (248842, 'Feet'), + (248845, 'Arms'), + (248846, 'Arms'), + (248847, 'Chest'), + (248848, 'Legs'), + (248849, 'Feet'), + (248850, 'Arms'), + (248851, 'Chest'), + (248852, 'Feet'), + (248853, 'Hands'), + (248854, 'Legs'), + (248855, 'Arms'), + (248856, 'Chest'), + (248857, 'Feet'), + (248858, 'Hands'), + (248859, 'Legs'), + (248869, 'Weapon'), + (248889, 'Chest'), + (248890, 'Feet'), + (248891, 'Legs'), + (248892, 'Back'), + (248893, 'Back'), + (248895, 'Weapon'), + (248897, 'Weapon'), + (248899, 'Feet'), + (248900, 'Hands'), + (248901, 'Feet'), + (248902, 'Hands'), + (248903, 'Feet'), + (248904, 'Feet'), + (248905, 'Arms'), + (248906, 'Chest'), + (248907, 'Feet'), + (248908, 'Legs'), + (248909, 'Fingers'), + (248910, 'Back'), + (248911, 'Back'), + (248912, 'Feet'), + (248913, 'Feet'), + (248914, 'Back'), + (248915, 'Back'), + (248916, 'Wrists'), + (248917, 'Neck'), + (248918, 'Neck'), + (248919, 'Arms'), + (248920, 'Shoulders'), + (248921, 'Chest'), + (248922, 'Feet'), + (248923, 'Hands'), + (248924, 'Weapon'), + (248925, 'Weapon'), + (248926, 'Weapon'), + (248927, 'Hands'), + (248928, 'Hands'), + (248935, 'Legs'), + (248952, 'Arms'), + (248953, 'Chest'), + (248954, 'Arms'), + (248955, 'Chest'), + (248956, 'Chest'), + (248957, 'Arms'), + (248958, 'Chest'), + (248961, 'Feet'), + (248963, 'Hands'), + (248964, 'Legs'), + (248977, 'Arms'), + (248978, 'Chest'), + (248979, 'Feet'), + (248980, 'Hands'), + (248981, 'Legs'), + (248982, 'Arms'), + (248983, 'Chest'), + (248984, 'Feet'), + (248985, 'Hands'), + (248986, 'Legs'), + (248987, 'Arms'), + (248988, 'Chest'), + (248989, 'Feet'), + (248990, 'Legs'), + (248991, 'Back'), + (248992, 'Chest'), + (248993, 'Chest'), + (248994, 'Chest'), + (248995, 'Chest'), + (248996, 'Chest'), + (248997, 'Chest'), + (248998, 'Arms'), + (248999, 'Chest'), + (249000, 'Chest'), + (249001, 'Arms'), + (249002, 'Weapon'), + (249003, 'Weapon'), + (249004, 'Weapon'), + (249005, 'Weapon'), + (249006, 'Weapon'), + (249007, 'Weapon'), + (249009, 'Weapon'), + (249012, 'Weapon'), + (249013, 'Weapon'), + (249014, 'Weapon'), + (249015, 'Weapon'), + (249016, 'Weapon'), + (249017, 'Weapon'), + (249018, 'Weapon'), + (249019, 'Weapon'), + (249020, 'Weapon'), + (249021, 'Weapon'), + (249022, 'Weapon'), + (249023, 'Weapon'), + (249024, 'Weapon'), + (249025, 'Weapon'), + (249026, 'Weapon'), + (249027, 'Weapon'), + (249028, 'Weapon'), + (249029, 'Weapon'), + (249030, 'Weapon'), + (249031, 'Weapon'), + (249032, 'Weapon'), + (249033, 'Weapon'), + (249034, 'Weapon'), + (249035, 'Weapon'), + (249036, 'Weapon'), + (249037, 'Weapon'), + (249038, 'Weapon'), + (249039, 'Weapon'), + (249040, 'Weapon'), + (249041, 'Weapon'), + (249042, 'Weapon'), + (249043, 'Weapon'), + (249044, 'Weapon'), + (249045, 'Arms'), + (249046, 'Weapon'), + (249047, 'Weapon'), + (249048, 'Weapon'), + (249049, 'Weapon'), + (249050, 'Weapon'), + (249051, 'Weapon'), + (249052, 'Weapon'), + (249053, 'Weapon'), + (249054, 'Weapon'), + (249055, 'Weapon'), + (249056, 'Chest'), + (249057, 'Arms'), + (249058, 'Arms'), + (249059, 'Arms'), + (249064, 'Feet'), + (249073, 'Weapon'), + (249074, 'Weapon'), + (249075, 'Weapon'), + (249076, 'Weapon'), + (249077, 'Weapon'), + (249078, 'Weapon'), + (249079, 'Weapon'), + (249080, 'Legs'), + (249081, 'Hands'), + (249082, 'Chest'), + (249083, 'Feet'), + (249084, 'Hands'), + (249085, 'Feet'), + (249086, 'Legs'), + (249088, 'Legs'), + (249089, 'Legs'), + (249090, 'Feet'), + (249095, 'Feet'), + (249101, 'Legs'), + (249102, 'Legs'), + (249103, 'Feet'), + (249686, 'Back'), + (249687, 'Back'), + (249688, 'Back'), + (249695, 'Arms'), + (249696, 'Legs'), + (249697, 'Chest'), + (249698, 'Chest'), + (249700, 'Chest'), + (249701, 'Chest'), + (249702, 'Back'), + (249707, 'Feet'), + (249708, 'Feet'), + (249715, 'Back'), + (249716, 'Back'), + (249717, 'Arms'), + (249815, 'Weapon'), + (249816, 'Weapon'), + (249817, 'Weapon'), + (249818, 'Weapon'), + (249819, 'Weapon'), + (249820, 'Weapon'), + (249821, 'Weapon'), + (249822, 'Weapon'), + (249823, 'Weapon'), + (249825, 'Weapon'), + (249826, 'Weapon'), + (249827, 'Weapon'), + (249828, 'Weapon'), + (249829, 'Weapon'), + (249844, 'Weapon'), + (249845, 'Weapon'), + (249846, 'Weapon'), + (249848, 'Weapon'), + (249849, 'Weapon'), + (249850, 'Weapon'), + (249851, 'Weapon'), + (249852, 'Weapon'), + (249853, 'Weapon'), + (249859, 'Weapon'), + (249860, 'Weapon'), + (249861, 'Weapon'), + (249862, 'Weapon'), + (249863, 'Weapon'), + (249864, 'Weapon'), + (249865, 'Weapon'), + (249866, 'Weapon'), + (249867, 'Weapon'), + (250144, 'Weapon'), + (250145, 'Weapon'), + (250146, 'Weapon'), + (250147, 'Weapon'), + (250148, 'Weapon'), + (250149, 'Weapon'), + (250150, 'Weapon'), + (250151, 'Weapon'), + (250152, 'Weapon'), + (250153, 'Weapon'), + (250154, 'Weapon'), + (250155, 'Weapon'), + (250156, 'Weapon'), + (250157, 'Weapon'), + (250158, 'Weapon'), + (250159, 'Weapon'), + (250161, 'Weapon'), + (250162, 'Weapon'), + (250163, 'Weapon'), + (250459, 'Head'), + (250460, 'Head'), + (251222, 'Deck'), + (251223, 'Deck'), + (251231, 'Hands'), + (251232, 'Hands'), + (251238, 'Hud'), + (251239, 'Hud'), + (251240, 'Hud'), + (251241, 'Hud'), + (251242, 'Deck'), + (251243, 'Deck'), + (251254, 'Deck'), + (251262, 'Fingers'), + (251263, 'Fingers'), + (251264, 'Fingers'), + (251265, 'Fingers'), + (251298, 'Wrists'), + (251299, 'Wrists'), + (251755, 'Wrists'), + (251756, 'Wrists'), + (251757, 'Fingers'), + (251758, 'Fingers'), + (251759, 'Fingers'), + (251760, 'Fingers'), + (251761, 'Wrists'), + (251762, 'Wrists'), + (251763, 'Wrists'), + (251764, 'Wrists'), + (251767, 'Wrists'), + (251768, 'Wrists'), + (251769, 'Wrists'), + (251770, 'Wrists'), + (251800, 'Hud'), + (251801, 'Hud'), + (251807, 'Hud'), + (251808, 'Hud'), + (251994, 'Chest'), + (251995, 'Legs'), + (251996, 'Feet'), + (251997, 'Arms'), + (251998, 'Hands'), + (251999, 'Head'), + (252000, 'Legs'), + (252001, 'Chest'), + (252002, 'Feet'), + (252003, 'Arms'), + (252004, 'Hands'), + (252005, 'Head'), + (252011, 'Legs'), + (252012, 'Chest'), + (252013, 'Feet'), + (252014, 'Arms'), + (252015, 'Hands'), + (252016, 'Head'), + (252017, 'Head'), + (252018, 'Hands'), + (252019, 'Arms'), + (252020, 'Feet'), + (252021, 'Chest'), + (252022, 'Legs'), + (252058, 'Nanoprogram'), + (252158, 'Deck'), + (252984, 'Util'), + (252985, 'Util'), + (252988, 'Hands'), + (252989, 'Hands'), + (252990, 'Hands'), + (252991, 'Hands'), + (252992, 'Util'), + (252993, 'Util'), + (253160, 'Util'), + (253161, 'Util'), + (253182, 'Head'), + (253183, 'Head'), + (253184, 'Arms'), + (253185, 'Arms'), + (253190, 'Feet'), + (253191, 'Feet'), + (253192, 'Hud'), + (253193, 'Hud'), + (253194, 'Weapon'), + (253195, 'Weapon'), + (253196, 'Weapon'), + (253197, 'Weapon'), + (253198, 'Weapon'), + (253199, 'Weapon'), + (253200, 'Weapon'), + (253201, 'Weapon'), + (253202, 'Weapon'), + (253203, 'Weapon'), + (253204, 'Weapon'), + (253205, 'Weapon'), + (253206, 'Weapon'), + (253207, 'Weapon'), + (253208, 'Weapon'), + (253209, 'Weapon'), + (253210, 'Weapon'), + (253211, 'Weapon'), + (253212, 'Weapon'), + (253213, 'Weapon'), + (253214, 'Weapon'), + (253236, 'Weapon'), + (253237, 'Weapon'), + (253238, 'Weapon'), + (253239, 'Weapon'), + (253240, 'Weapon'), + (253241, 'Weapon'), + (253244, 'Weapon'), + (253245, 'Weapon'), + (253246, 'Weapon'), + (253250, 'Wrists'), + (253251, 'Wrists'), + (253252, 'Wrists'), + (253253, 'Wrists'), + (253254, 'Wrists'), + (253255, 'Wrists'), + (253256, 'Wrists'), + (253257, 'Wrists'), + (253381, 'Nanoprogram'), + (253383, 'Nanoprogram'), + (253385, 'Nanoprogram'), + (253573, 'Hud'), + (253574, 'Hud'), + (253575, 'Hud'), + (253576, 'Hud'), + (253577, 'Hud'), + (253578, 'Hud'), + (253579, 'Hud'), + (253580, 'Hud'), + (253581, 'Hud'), + (253582, 'Hud'), + (253583, 'Hud'), + (253584, 'Hud'), + (254317, 'Head'), + (254372, 'Deck'), + (254452, 'Fingers'), + (254877, 'Nanoprogram'), + (254879, 'Nanoprogram'), + (254881, 'Nanoprogram'), + (254883, 'Nanoprogram'), + (254885, 'Nanoprogram'), + (256522, 'Back'), + (257109, 'Weapon'), + (257111, 'Weapon'), + (257112, 'Neck'), + (257113, 'Neck'), + (257114, 'Head'), + (257115, 'Head'), + (257118, 'Util'), + (257119, 'Deck'), + (257123, 'Weapon'), + (257124, 'Weapon'), + (257126, 'Weapon'), + (257128, 'Weapon'), + (257141, 'Weapon'), + (257377, 'Head'), + (257378, 'Head'), + (257379, 'Head'), + (257380, 'Head'), + (257381, 'Head'), + (257382, 'Head'), + (257383, 'Head'), + (257384, 'Head'), + (258289, 'Back'), + (258290, 'Back'), + (258291, 'Back'), + (258341, 'Chest'), + (258343, 'Weapon'), + (258344, 'Weapon'), + (258345, 'Weapon'), + (258472, 'Back'), + (258473, 'Back'), + (258474, 'Head'), + (258743, 'Fingers'), + (259265, 'Neck'), + (259266, 'Neck'), + (259267, 'Neck'), + (259268, 'Neck'), + (259269, 'Neck'), + (259270, 'Neck'), + (259605, 'Nanoprogram'), + (259608, 'Nanoprogram'), + (260678, 'Hud'), + (260679, 'Head'), + (260680, 'Shoulders'), + (260681, 'Back'), + (260682, 'Back'), + (260683, 'Util'), + (260683, 'Hud'), + (260684, 'Back'), + (260685, 'Shoulders'), + (260686, 'Weapon'), + (260687, 'Weapon'), + (260688, 'Weapon'), + (260690, 'Util'), + (260691, 'Util'), + (260692, 'Wrists'), + (260693, 'Fingers'), + (260694, 'Deck'), + (260695, 'Deck'), + (260696, 'Deck'), + (260697, 'Deck'), + (260698, 'Deck'), + (260699, 'Deck'), + (260700, 'Weapon'), + (260701, 'Weapon'), + (260702, 'Weapon'), + (260703, 'Weapon'), + (260704, 'Weapon'), + (260705, 'Weapon'), + (260706, 'Weapon'), + (260707, 'Weapon'), + (260708, 'Weapon'), + (260709, 'Weapon'), + (260710, 'Weapon'), + (260711, 'Weapon'), + (260712, 'Weapon'), + (260713, 'Weapon'), + (260714, 'Weapon'), + (260715, 'Weapon'), + (260716, 'Weapon'), + (260717, 'Weapon'), + (260718, 'Weapon'), + (260719, 'Weapon'), + (260720, 'Weapon'), + (260759, 'Nanoprogram'), + (260766, 'Nanoprogram'), + (260772, 'Weapon'), + (260772, 'Nanoprogram'), + (262462, 'Chest'), + (262463, 'Chest'), + (262464, 'Arms'), + (262465, 'Arms'), + (262466, 'Hands'), + (262467, 'Hands'), + (262468, 'Legs'), + (262469, 'Legs'), + (262470, 'Feet'), + (262471, 'Feet'), + (262846, 'Neck'), + (262846, 'Head'), + (262846, 'Back'), + (262846, 'Chest'), + (262846, 'Hands'), + (262846, 'Legs'), + (262846, 'Feet'), + (262846, 'Shoulders'), + (262846, 'Arms'), + (262846, 'Wrists'), + (262846, 'Fingers'), + (262954, 'Neck'), + (262955, 'Neck'), + (263242, 'Nanoprogram'), + (263245, 'Nanoprogram'), + (263247, 'Nanoprogram'), + (263248, 'Nanoprogram'), + (263252, 'Nanoprogram'), + (263253, 'Nanoprogram'), + (263256, 'Hud'), + (263257, 'Hud'), + (263267, 'Nanoprogram'), + (263285, 'Weapon'), + (263286, 'Weapon'), + (263289, 'Neck'), + (263290, 'Neck'), + (263291, 'Back'), + (263299, 'Weapon'), + (263299, 'Nanoprogram'), + (263300, 'Nanoprogram'), + (263302, 'Nanoprogram'), + (263304, 'Nanoprogram'), + (263305, 'Fingers'), + (264174, 'Legs'), + (264175, 'Legs'), + (264176, 'Feet'), + (264177, 'Feet'), + (264178, 'Chest'), + (264179, 'Chest'), + (264180, 'Arms'), + (264181, 'Arms'), + (264182, 'Hands'), + (264183, 'Hands'), + (264184, 'Head'), + (264185, 'Head'), + (264186, 'Legs'), + (264187, 'Legs'), + (264188, 'Feet'), + (264189, 'Feet'), + (264190, 'Chest'), + (264191, 'Chest'), + (264192, 'Arms'), + (264193, 'Arms'), + (264194, 'Hands'), + (264195, 'Hands'), + (264196, 'Head'), + (264197, 'Head'), + (264198, 'Legs'), + (264199, 'Legs'), + (264200, 'Feet'), + (264201, 'Feet'), + (264202, 'Chest'), + (264203, 'Chest'), + (264204, 'Arms'), + (264205, 'Arms'), + (264206, 'Hands'), + (264207, 'Hands'), + (264208, 'Head'), + (264209, 'Head'), + (264211, 'Legs'), + (264212, 'Legs'), + (264213, 'Legs'), + (264214, 'Legs'), + (264215, 'Legs'), + (264216, 'Legs'), + (264217, 'Feet'), + (264218, 'Feet'), + (264219, 'Feet'), + (264220, 'Feet'), + (264221, 'Feet'), + (264222, 'Feet'), + (264223, 'Chest'), + (264224, 'Chest'), + (264225, 'Chest'), + (264226, 'Chest'), + (264227, 'Chest'), + (264228, 'Chest'), + (264229, 'Arms'), + (264230, 'Arms'), + (264231, 'Arms'), + (264232, 'Arms'), + (264233, 'Arms'), + (264234, 'Arms'), + (264235, 'Hands'), + (264236, 'Hands'), + (264237, 'Hands'), + (264238, 'Hands'), + (264239, 'Hands'), + (264240, 'Hands'), + (264241, 'Head'), + (264242, 'Head'), + (264243, 'Head'), + (264244, 'Head'), + (264245, 'Head'), + (264246, 'Head'), + (264247, 'Head'), + (264248, 'Head'), + (264249, 'Head'), + (264250, 'Head'), + (264251, 'Head'), + (264252, 'Head'), + (264253, 'Hands'), + (264254, 'Hands'), + (264255, 'Hands'), + (264256, 'Hands'), + (264257, 'Hands'), + (264258, 'Hands'), + (264259, 'Arms'), + (264260, 'Arms'), + (264261, 'Arms'), + (264262, 'Arms'), + (264263, 'Arms'), + (264264, 'Arms'), + (264265, 'Chest'), + (264266, 'Chest'), + (264267, 'Chest'), + (264268, 'Chest'), + (264269, 'Chest'), + (264270, 'Chest'), + (264271, 'Legs'), + (264272, 'Legs'), + (264273, 'Legs'), + (264274, 'Legs'), + (264275, 'Legs'), + (264276, 'Legs'), + (264277, 'Feet'), + (264278, 'Feet'), + (264279, 'Feet'), + (264280, 'Feet'), + (264281, 'Feet'), + (264282, 'Feet'), + (264283, 'Head'), + (264284, 'Head'), + (264285, 'Head'), + (264286, 'Head'), + (264287, 'Head'), + (264288, 'Head'), + (264289, 'Hands'), + (264290, 'Hands'), + (264291, 'Hands'), + (264292, 'Hands'), + (264293, 'Hands'), + (264294, 'Hands'), + (264295, 'Arms'), + (264296, 'Arms'), + (264297, 'Arms'), + (264298, 'Arms'), + (264299, 'Arms'), + (264300, 'Arms'), + (264301, 'Chest'), + (264302, 'Chest'), + (264303, 'Chest'), + (264304, 'Chest'), + (264305, 'Chest'), + (264306, 'Chest'), + (264307, 'Feet'), + (264308, 'Feet'), + (264309, 'Feet'), + (264310, 'Feet'), + (264311, 'Feet'), + (264312, 'Feet'), + (264313, 'Legs'), + (264314, 'Legs'), + (264315, 'Legs'), + (264316, 'Legs'), + (264317, 'Legs'), + (264318, 'Legs'), + (264319, 'Head'), + (264320, 'Head'), + (264321, 'Head'), + (264322, 'Head'), + (264323, 'Head'), + (264324, 'Head'), + (264325, 'Hands'), + (264326, 'Hands'), + (264327, 'Hands'), + (264328, 'Hands'), + (264329, 'Hands'), + (264330, 'Hands'), + (264331, 'Arms'), + (264332, 'Arms'), + (264333, 'Arms'), + (264334, 'Arms'), + (264335, 'Arms'), + (264336, 'Arms'), + (264337, 'Chest'), + (264338, 'Chest'), + (264339, 'Chest'), + (264340, 'Chest'), + (264341, 'Chest'), + (264342, 'Chest'), + (264343, 'Feet'), + (264344, 'Feet'), + (264345, 'Feet'), + (264346, 'Feet'), + (264347, 'Feet'), + (264348, 'Feet'), + (264349, 'Legs'), + (264350, 'Legs'), + (264351, 'Legs'), + (264352, 'Legs'), + (264353, 'Legs'), + (264354, 'Legs'), + (264355, 'Head'), + (264356, 'Head'), + (264357, 'Head'), + (264358, 'Head'), + (264359, 'Head'), + (264360, 'Head'), + (264361, 'Hands'), + (264362, 'Hands'), + (264363, 'Hands'), + (264364, 'Hands'), + (264365, 'Hands'), + (264366, 'Hands'), + (264367, 'Arms'), + (264368, 'Arms'), + (264369, 'Arms'), + (264370, 'Arms'), + (264371, 'Arms'), + (264372, 'Arms'), + (264373, 'Chest'), + (264374, 'Chest'), + (264375, 'Chest'), + (264376, 'Chest'), + (264377, 'Chest'), + (264378, 'Chest'), + (264379, 'Feet'), + (264380, 'Feet'), + (264381, 'Feet'), + (264382, 'Feet'), + (264383, 'Feet'), + (264384, 'Feet'), + (264385, 'Legs'), + (264386, 'Legs'), + (264387, 'Legs'), + (264388, 'Legs'), + (264389, 'Legs'), + (264390, 'Legs'), + (264391, 'Head'), + (264392, 'Head'), + (264393, 'Head'), + (264394, 'Head'), + (264395, 'Head'), + (264396, 'Head'), + (264397, 'Hands'), + (264398, 'Hands'), + (264399, 'Hands'), + (264400, 'Hands'), + (264401, 'Hands'), + (264402, 'Hands'), + (264403, 'Arms'), + (264404, 'Arms'), + (264405, 'Arms'), + (264406, 'Arms'), + (264407, 'Arms'), + (264408, 'Arms'), + (264409, 'Chest'), + (264410, 'Chest'), + (264411, 'Chest'), + (264412, 'Chest'), + (264413, 'Chest'), + (264414, 'Chest'), + (264415, 'Feet'), + (264416, 'Feet'), + (264417, 'Feet'), + (264418, 'Feet'), + (264419, 'Feet'), + (264420, 'Feet'), + (264421, 'Legs'), + (264422, 'Legs'), + (264423, 'Legs'), + (264424, 'Legs'), + (264425, 'Legs'), + (264426, 'Legs'), + (264427, 'Head'), + (264428, 'Head'), + (264429, 'Head'), + (264430, 'Head'), + (264431, 'Head'), + (264432, 'Head'), + (264433, 'Hands'), + (264434, 'Hands'), + (264435, 'Hands'), + (264436, 'Hands'), + (264437, 'Hands'), + (264438, 'Hands'), + (264439, 'Arms'), + (264440, 'Arms'), + (264441, 'Arms'), + (264442, 'Arms'), + (264443, 'Arms'), + (264444, 'Arms'), + (264445, 'Chest'), + (264446, 'Chest'), + (264447, 'Chest'), + (264448, 'Chest'), + (264449, 'Chest'), + (264450, 'Chest'), + (264451, 'Feet'), + (264452, 'Feet'), + (264453, 'Feet'), + (264454, 'Feet'), + (264455, 'Feet'), + (264456, 'Feet'), + (264457, 'Legs'), + (264458, 'Legs'), + (264459, 'Legs'), + (264460, 'Legs'), + (264461, 'Legs'), + (264462, 'Legs'), + (264463, 'Head'), + (264464, 'Head'), + (264465, 'Head'), + (264466, 'Head'), + (264467, 'Head'), + (264468, 'Head'), + (264469, 'Hands'), + (264470, 'Hands'), + (264471, 'Hands'), + (264472, 'Hands'), + (264473, 'Hands'), + (264474, 'Hands'), + (264475, 'Arms'), + (264476, 'Arms'), + (264477, 'Arms'), + (264478, 'Arms'), + (264479, 'Arms'), + (264480, 'Arms'), + (264481, 'Chest'), + (264482, 'Chest'), + (264483, 'Chest'), + (264484, 'Chest'), + (264485, 'Chest'), + (264486, 'Chest'), + (264487, 'Feet'), + (264488, 'Feet'), + (264489, 'Feet'), + (264490, 'Feet'), + (264491, 'Feet'), + (264492, 'Feet'), + (264493, 'Legs'), + (264494, 'Legs'), + (264495, 'Legs'), + (264496, 'Legs'), + (264497, 'Legs'), + (264498, 'Legs'), + (264499, 'Head'), + (264500, 'Head'), + (264501, 'Head'), + (264502, 'Head'), + (264503, 'Head'), + (264504, 'Head'), + (264505, 'Hands'), + (264506, 'Hands'), + (264507, 'Hands'), + (264508, 'Hands'), + (264509, 'Hands'), + (264510, 'Hands'), + (264511, 'Arms'), + (264512, 'Arms'), + (264513, 'Arms'), + (264514, 'Arms'), + (264515, 'Arms'), + (264516, 'Arms'), + (264517, 'Chest'), + (264518, 'Chest'), + (264519, 'Chest'), + (264520, 'Chest'), + (264521, 'Chest'), + (264522, 'Chest'), + (264523, 'Feet'), + (264524, 'Feet'), + (264525, 'Feet'), + (264526, 'Feet'), + (264527, 'Feet'), + (264528, 'Feet'), + (264529, 'Legs'), + (264530, 'Legs'), + (264531, 'Legs'), + (264532, 'Legs'), + (264533, 'Legs'), + (264534, 'Legs'), + (264535, 'Head'), + (264536, 'Head'), + (264537, 'Head'), + (264538, 'Head'), + (264539, 'Head'), + (264540, 'Head'), + (264541, 'Hands'), + (264542, 'Hands'), + (264543, 'Hands'), + (264544, 'Hands'), + (264545, 'Hands'), + (264546, 'Hands'), + (264547, 'Arms'), + (264548, 'Arms'), + (264549, 'Arms'), + (264550, 'Arms'), + (264551, 'Arms'), + (264552, 'Arms'), + (264553, 'Chest'), + (264554, 'Chest'), + (264555, 'Chest'), + (264556, 'Chest'), + (264557, 'Chest'), + (264558, 'Chest'), + (264559, 'Feet'), + (264560, 'Feet'), + (264561, 'Feet'), + (264562, 'Feet'), + (264563, 'Feet'), + (264564, 'Feet'), + (264565, 'Legs'), + (264566, 'Legs'), + (264567, 'Legs'), + (264568, 'Legs'), + (264569, 'Legs'), + (264570, 'Legs'), + (264571, 'Head'), + (264572, 'Head'), + (264573, 'Head'), + (264574, 'Head'), + (264575, 'Head'), + (264576, 'Head'), + (264577, 'Hands'), + (264578, 'Hands'), + (264579, 'Hands'), + (264580, 'Hands'), + (264581, 'Hands'), + (264582, 'Hands'), + (264583, 'Arms'), + (264584, 'Arms'), + (264585, 'Arms'), + (264586, 'Arms'), + (264590, 'Arms'), + (264591, 'Arms'), + (264592, 'Chest'), + (264593, 'Chest'), + (264594, 'Chest'), + (264595, 'Chest'), + (264596, 'Chest'), + (264597, 'Chest'), + (264598, 'Feet'), + (264599, 'Feet'), + (264600, 'Feet'), + (264601, 'Feet'), + (264602, 'Feet'), + (264603, 'Feet'), + (264604, 'Legs'), + (264605, 'Legs'), + (264606, 'Legs'), + (264607, 'Legs'), + (264608, 'Legs'), + (264609, 'Legs'), + (264610, 'Head'), + (264611, 'Head'), + (264612, 'Head'), + (264613, 'Head'), + (264614, 'Head'), + (264615, 'Head'), + (264616, 'Hands'), + (264617, 'Hands'), + (264618, 'Hands'), + (264619, 'Hands'), + (264620, 'Hands'), + (264621, 'Hands'), + (264622, 'Arms'), + (264623, 'Arms'), + (264624, 'Arms'), + (264625, 'Arms'), + (264626, 'Arms'), + (264627, 'Arms'), + (264628, 'Chest'), + (264629, 'Chest'), + (264630, 'Chest'), + (264631, 'Chest'), + (264632, 'Chest'), + (264633, 'Chest'), + (264634, 'Feet'), + (264635, 'Feet'), + (264636, 'Feet'), + (264637, 'Feet'), + (264638, 'Feet'), + (264639, 'Feet'), + (264640, 'Legs'), + (264641, 'Legs'), + (264642, 'Legs'), + (264643, 'Legs'), + (264644, 'Legs'), + (264645, 'Legs'), + (264646, 'Head'), + (264647, 'Head'), + (264648, 'Head'), + (264649, 'Head'), + (264650, 'Head'), + (264651, 'Head'), + (264652, 'Hands'), + (264653, 'Hands'), + (264654, 'Hands'), + (264655, 'Hands'), + (264656, 'Hands'), + (264657, 'Hands'), + (264658, 'Arms'), + (264659, 'Arms'), + (264660, 'Arms'), + (264661, 'Arms'), + (264662, 'Arms'), + (264663, 'Arms'), + (264664, 'Chest'), + (264665, 'Chest'), + (264666, 'Chest'), + (264667, 'Chest'), + (264668, 'Chest'), + (264669, 'Chest'), + (264670, 'Feet'), + (264671, 'Feet'), + (264672, 'Feet'), + (264673, 'Feet'), + (264674, 'Feet'), + (264675, 'Feet'), + (264676, 'Legs'), + (264677, 'Legs'), + (264678, 'Legs'), + (264679, 'Legs'), + (264680, 'Legs'), + (264681, 'Legs'), + (265380, 'Weapon'), + (265441, 'Nanoprogram'), + (265442, 'Nanoprogram'), + (265443, 'Nanoprogram'), + (265444, 'Nanoprogram'), + (265445, 'Nanoprogram'), + (265446, 'Nanoprogram'), + (265449, 'Nanoprogram'), + (265451, 'Nanoprogram'), + (265453, 'Nanoprogram'), + (265797, 'Wrists'), + (266337, 'Weapon'), + (266338, 'Weapon'), + (266339, 'Weapon'), + (266340, 'Weapon'), + (266341, 'Weapon'), + (266342, 'Weapon'), + (266343, 'Weapon'), + (266344, 'Weapon'), + (266345, 'Weapon'), + (266346, 'Weapon'), + (266347, 'Weapon'), + (266348, 'Weapon'), + (266349, 'Weapon'), + (266350, 'Weapon'), + (267015, 'Nanoprogram'), + (267022, 'Nanoprogram'), + (267106, 'Neck'), + (267108, 'Neck'), + (267124, 'Weapon'), + (267158, 'Weapon'), + (267164, 'Hud'), + (267165, 'Hud'), + (267166, 'Hud'), + (267167, 'Hud'), + (267168, 'Hud'), + (267255, 'Weapon'), + (267257, 'Weapon'), + (267258, 'Weapon'), + (267259, 'Hud'), + (267260, 'Hud'), + (267270, 'Nanoprogram'), + (267273, 'Nanoprogram'), + (267274, 'Nanoprogram'), + (267276, 'Nanoprogram'), + (267282, 'Nanoprogram'), + (267284, 'Nanoprogram'), + (267285, 'Hud'), + (267286, 'Hud'), + (267317, 'Back'), + (267351, 'Head'), + (267352, 'Head'), + (267353, 'Head'), + (267354, 'Head'), + (267356, 'Head'), + (267357, 'Head'), + (267363, 'Head'), + (267364, 'Head'), + (267365, 'Head'), + (267366, 'Head'), + (267367, 'Head'), + (267368, 'Head'), + (267369, 'Head'), + (267370, 'Head'), + (267371, 'Head'), + (267372, 'Head'), + (267373, 'Head'), + (267374, 'Head'), + (267375, 'Head'), + (267376, 'Head'), + (267377, 'Head'), + (267378, 'Head'), + (267379, 'Head'), + (267380, 'Head'), + (267381, 'Head'), + (267382, 'Head'), + (267383, 'Head'), + (267384, 'Head'), + (267509, 'Back'), + (267510, 'Back'), + (267511, 'Shoulders'), + (267512, 'Back'), + (267513, 'Back'), + (267514, 'Shoulders'), + (267515, 'Back'), + (267528, 'Util'), + (267528, 'Hud'), + (267530, 'Nanoprogram'), + (267532, 'Nanoprogram'), + (267534, 'Nanoprogram'), + (267537, 'Nanoprogram'), + (267539, 'Nanoprogram'), + (267560, 'Fingers'), + (267561, 'Fingers'), + (267562, 'Fingers'), + (267563, 'Fingers'), + (267564, 'Fingers'), + (267565, 'Fingers'), + (267566, 'Fingers'), + (267567, 'Fingers'), + (267568, 'Fingers'), + (267569, 'Fingers'), + (267570, 'Fingers'), + (267571, 'Fingers'), + (267572, 'Fingers'), + (267573, 'Fingers'), + (267574, 'Fingers'), + (267575, 'Fingers'), + (267576, 'Fingers'), + (267577, 'Fingers'), + (267578, 'Fingers'), + (267579, 'Fingers'), + (267580, 'Fingers'), + (267581, 'Fingers'), + (267582, 'Fingers'), + (267583, 'Fingers'), + (267618, 'Weapon'), + (267619, 'Weapon'), + (267625, 'Util'), + (267626, 'Util'), + (267627, 'Util'), + (267629, 'Nanoprogram'), + (267630, 'Nanoprogram'), + (267631, 'Nanoprogram'), + (267633, 'Nanoprogram'), + (267634, 'Nanoprogram'), + (267635, 'Nanoprogram'), + (267636, 'Nanoprogram'), + (267637, 'Nanoprogram'), + (267638, 'Nanoprogram'), + (267639, 'Nanoprogram'), + (267640, 'Nanoprogram'), + (267642, 'Nanoprogram'), + (267643, 'Nanoprogram'), + (267644, 'Nanoprogram'), + (267651, 'Util'), + (267652, 'Util'), + (267653, 'Util'), + (267656, 'Util'), + (267657, 'Head'), + (267657, 'Back'), + (267657, 'Chest'), + (267657, 'Hands'), + (267657, 'Legs'), + (267657, 'Feet'), + (267657, 'Shoulders'), + (267657, 'Arms'), + (267657, 'Wrists'), + (267657, 'Fingers'), + (267678, 'Util'), + (267682, 'Util'), + (267695, 'Util'), + (267696, 'Util'), + (267696, 'Hud'), + (267706, 'Util'), + (267707, 'Util'), + (267712, 'Util'), + (267720, 'Hud'), + (267721, 'Hud'), + (267722, 'Hud'), + (267723, 'Hud'), + (267724, 'Hud'), + (267752, 'Wrists'), + (267753, 'Wrists'), + (267754, 'Wrists'), + (267755, 'Wrists'), + (267756, 'Wrists'), + (267757, 'Wrists'), + (267760, 'Weapon'), + (267780, 'Wrists'), + (267789, 'Chest'), + (267790, 'Chest'), + (267796, 'Deck'), + (267797, 'Deck'), + (267798, 'Wrists'), + (267905, 'Fingers'), + (267906, 'Fingers'), + (267907, 'Fingers'), + (267909, 'Fingers'), + (267911, 'Fingers'), + (267912, 'Deck'), + (267913, 'Deck'), + (267930, 'Back'), + (267931, 'Back'), + (267932, 'Back'), + (267933, 'Back'), + (267934, 'Back'), + (267935, 'Back'), + (267936, 'Back'), + (267937, 'Back'), + (267938, 'Back'), + (267939, 'Back'), + (268003, 'Shoulders'), + (268004, 'Shoulders'), + (268005, 'Shoulders'), + (268006, 'Shoulders'), + (268081, 'Shoulders'), + (268186, 'Shoulders'), + (268305, 'Fingers'), + (268306, 'Fingers'), + (268307, 'Fingers'), + (268308, 'Fingers'), + (268467, 'Hud'), + (268468, 'Hud'), + (268469, 'Hud'), + (268470, 'Hud'), + (268471, 'Hud'), + (268472, 'Hud'), + (268473, 'Hud'), + (268495, 'Util'), + (268497, 'Util'), + (268498, 'Util'), + (268503, 'Back'), + (268504, 'Back'), + (268505, 'Back'), + (268506, 'Back'), + (268507, 'Back'), + (268518, 'Feet'), + (268519, 'Feet'), + (268520, 'Legs'), + (268521, 'Legs'), + (268522, 'Chest'), + (268523, 'Chest'), + (268524, 'Arms'), + (268525, 'Arms'), + (268526, 'Hands'), + (268527, 'Hands'), + (268833, 'Head'), + (268834, 'Head'), + (268836, 'Chest'), + (268837, 'Chest'), + (268838, 'Hands'), + (268839, 'Hands'), + (268840, 'Arms'), + (268841, 'Arms'), + (268842, 'Legs'), + (268843, 'Legs'), + (268844, 'Feet'), + (268845, 'Feet'), + (268848, 'Head'), + (268849, 'Head'), + (268850, 'Chest'), + (268851, 'Chest'), + (268852, 'Hands'), + (268853, 'Hands'), + (268854, 'Arms'), + (268855, 'Arms'), + (268856, 'Legs'), + (268857, 'Legs'), + (268858, 'Feet'), + (268859, 'Feet'), + (268860, 'Head'), + (268861, 'Head'), + (268862, 'Chest'), + (268863, 'Chest'), + (268864, 'Hands'), + (268865, 'Hands'), + (268866, 'Arms'), + (268867, 'Arms'), + (268868, 'Legs'), + (268869, 'Legs'), + (268870, 'Feet'), + (268871, 'Feet'), + (268872, 'Head'), + (268873, 'Head'), + (268874, 'Chest'), + (268875, 'Chest'), + (268876, 'Hands'), + (268877, 'Hands'), + (268878, 'Arms'), + (268879, 'Arms'), + (268880, 'Legs'), + (268881, 'Legs'), + (268882, 'Feet'), + (268883, 'Feet'), + (268884, 'Head'), + (268885, 'Head'), + (268886, 'Chest'), + (268887, 'Chest'), + (268888, 'Hands'), + (268889, 'Hands'), + (268890, 'Arms'), + (268891, 'Arms'), + (268892, 'Legs'), + (268893, 'Legs'), + (268894, 'Feet'), + (268895, 'Feet'), + (269184, 'Hud'), + (269185, 'Hud'), + (269186, 'Hud'), + (269187, 'Hud'), + (269188, 'Fingers'), + (269189, 'Fingers'), + (269190, 'Fingers'), + (269191, 'Fingers'), + (269192, 'Head'), + (269193, 'Head'), + (269194, 'Shoulders'), + (269195, 'Shoulders'), + (269196, 'Arms'), + (269197, 'Arms'), + (269198, 'Chest'), + (269199, 'Chest'), + (269200, 'Hands'), + (269201, 'Hands'), + (269202, 'Legs'), + (269203, 'Legs'), + (269204, 'Feet'), + (269205, 'Feet'), + (269401, 'Hud'), + (269402, 'Hud'), + (269403, 'Hud'), + (269404, 'Hud'), + (269405, 'Hud'), + (269406, 'Hud'), + (269407, 'Hud'), + (269408, 'Hud'), + (269409, 'Hud'), + (269410, 'Hud'), + (269411, 'Hud'), + (269412, 'Hud'), + (269413, 'Hud'), + (269414, 'Hud'), + (269415, 'Hud'), + (269416, 'Hud'), + (269417, 'Hud'), + (269418, 'Hud'), + (269425, 'Util'), + (269443, 'Nanoprogram'), + (269448, 'Nanoprogram'), + (269461, 'Nanoprogram'), + (269464, 'Nanoprogram'), + (269472, 'Nanoprogram'), + (269478, 'Arms'), + (269483, 'Nanoprogram'), + (269511, 'Arms'), + (269513, 'Weapon'), + (269827, 'Hud'), + (269896, 'Shoulders'), + (269897, 'Shoulders'), + (269898, 'Shoulders'), + (269899, 'Shoulders'), + (269900, 'Shoulders'), + (269901, 'Shoulders'), + (269902, 'Shoulders'), + (269903, 'Shoulders'), + (269985, 'Deck'), + (269986, 'Deck'), + (269987, 'Deck'), + (269990, 'Deck'), + (269993, 'Chest'), + (269994, 'Chest'), + (269996, 'Arms'), + (269997, 'Legs'), + (269999, 'Back'), + (270236, 'Nanoprogram'), + (270247, 'Nanoprogram'), + (270329, 'Back'), + (270330, 'Back'), + (270338, 'Back'), + (270339, 'Back'), + (270340, 'Back'), + (270341, 'Back'), + (270342, 'Back'), + (270343, 'Back'), + (270344, 'Back'), + (270345, 'Back'), + (270391, 'Hud'), + (270392, 'Feet'), + (270393, 'Hands'), + (270394, 'Hands'), + (270432, 'Nanoprogram'), + (270539, 'Nanoprogram'), + (270541, 'Nanoprogram'), + (270543, 'Nanoprogram'), + (270545, 'Nanoprogram'), + (270547, 'Nanoprogram'), + (270633, 'Nanoprogram'), + (270635, 'Nanoprogram'), + (270642, 'Nanoprogram'), + (270644, 'Nanoprogram'), + (270646, 'Nanoprogram'), + (270712, 'Nanoprogram'), + (270732, 'Nanoprogram'), + (270739, 'Nanoprogram'), + (270746, 'Util'), + (270746, 'Hud'), + (270750, 'Util'), + (270750, 'Hud'), + (270751, 'Util'), + (270751, 'Hud'), + (270752, 'Util'), + (270752, 'Hud'), + (270753, 'Util'), + (270753, 'Hud'), + (270755, 'Util'), + (270755, 'Hud'), + (270759, 'Util'), + (270759, 'Hud'), + (270761, 'Util'), + (270761, 'Hud'), + (270762, 'Util'), + (270762, 'Hud'), + (270763, 'Util'), + (270763, 'Hud'), + (270765, 'Nanoprogram'), + (270766, 'Util'), + (270766, 'Hud'), + (270767, 'Util'), + (270767, 'Hud'), + (270768, 'Util'), + (270768, 'Hud'), + (270769, 'Util'), + (270769, 'Hud'), + (270780, 'Nanoprogram'), + (270799, 'Nanoprogram'), + (270803, 'Nanoprogram'), + (270805, 'Nanoprogram'), + (270807, 'Nanoprogram'), + (270809, 'Nanoprogram'), + (270837, 'Nanoprogram'), + (270885, 'Nanoprogram'), + (270940, 'Nanoprogram'), + (270942, 'Nanoprogram'), + (270944, 'Nanoprogram'), + (270946, 'Nanoprogram'), + (270983, 'Nanoprogram'), + (270985, 'Nanoprogram'), + (270987, 'Nanoprogram'), + (270992, 'Nanoprogram'), + (270994, 'Nanoprogram'), + (270996, 'Nanoprogram'), + (271048, 'Weapon'), + (271049, 'Weapon'), + (271050, 'Weapon'), + (271051, 'Weapon'), + (271052, 'Weapon'), + (271053, 'Weapon'), + (271054, 'Weapon'), + (271055, 'Weapon'), + (271056, 'Weapon'), + (271057, 'Weapon'), + (271058, 'Weapon'), + (271059, 'Weapon'), + (271060, 'Weapon'), + (271061, 'Weapon'), + (271062, 'Weapon'), + (271063, 'Weapon'), + (271064, 'Weapon'), + (271065, 'Weapon'), + (271066, 'Weapon'), + (271067, 'Weapon'), + (271129, 'Weapon'), + (271130, 'Weapon'), + (271131, 'Weapon'), + (271132, 'Weapon'), + (271133, 'Weapon'), + (271134, 'Weapon'), + (271135, 'Weapon'), + (271136, 'Weapon'), + (271137, 'Weapon'), + (271138, 'Weapon'), + (271139, 'Weapon'), + (271140, 'Weapon'), + (271141, 'Weapon'), + (271142, 'Weapon'), + (271143, 'Weapon'), + (271144, 'Weapon'), + (271145, 'Weapon'), + (271146, 'Weapon'), + (271147, 'Weapon'), + (271148, 'Weapon'), + (271199, 'Weapon'), + (271200, 'Weapon'), + (271201, 'Weapon'), + (271202, 'Weapon'), + (271203, 'Weapon'), + (271204, 'Weapon'), + (271205, 'Weapon'), + (271206, 'Weapon'), + (271207, 'Weapon'), + (271208, 'Weapon'), + (271219, 'Weapon'), + (271220, 'Weapon'), + (271221, 'Weapon'), + (271222, 'Weapon'), + (271223, 'Weapon'), + (271224, 'Weapon'), + (271225, 'Weapon'), + (271226, 'Weapon'), + (271227, 'Weapon'), + (271228, 'Weapon'), + (271335, 'Weapon'), + (271336, 'Weapon'), + (271337, 'Weapon'), + (271338, 'Weapon'), + (271339, 'Weapon'), + (271340, 'Weapon'), + (271341, 'Weapon'), + (271342, 'Weapon'), + (271343, 'Weapon'), + (271344, 'Weapon'), + (271441, 'Weapon'), + (271442, 'Weapon'), + (271443, 'Weapon'), + (271444, 'Weapon'), + (271445, 'Weapon'), + (271446, 'Weapon'), + (271447, 'Weapon'), + (271448, 'Weapon'), + (271497, 'Weapon'), + (271498, 'Weapon'), + (271499, 'Weapon'), + (271500, 'Weapon'), + (271501, 'Weapon'), + (271502, 'Weapon'), + (271503, 'Weapon'), + (271504, 'Weapon'), + (271649, 'Weapon'), + (271650, 'Weapon'), + (271653, 'Weapon'), + (271654, 'Weapon'), + (271655, 'Weapon'), + (271656, 'Weapon'), + (271657, 'Weapon'), + (271658, 'Weapon'), + (271661, 'Weapon'), + (271662, 'Weapon'), + (271663, 'Weapon'), + (271664, 'Weapon'), + (271673, 'Weapon'), + (271674, 'Weapon'), + (271677, 'Weapon'), + (271678, 'Weapon'), + (271679, 'Weapon'), + (271680, 'Weapon'), + (271814, 'Weapon'), + (271815, 'Weapon'), + (271818, 'Weapon'), + (271819, 'Weapon'), + (271820, 'Weapon'), + (271821, 'Weapon'), + (271822, 'Weapon'), + (271823, 'Weapon'), + (271826, 'Weapon'), + (271827, 'Weapon'), + (271828, 'Weapon'), + (271829, 'Weapon'), + (271935, 'Weapon'), + (271936, 'Weapon'), + (271939, 'Weapon'), + (271940, 'Weapon'), + (271941, 'Weapon'), + (271942, 'Weapon'), + (271986, 'Nanoprogram'), + (272049, 'Nanoprogram'), + (272150, 'Weapon'), + (272151, 'Weapon'), + (272152, 'Weapon'), + (272153, 'Weapon'), + (272154, 'Weapon'), + (272155, 'Weapon'), + (272156, 'Weapon'), + (272157, 'Weapon'), + (272158, 'Weapon'), + (272159, 'Weapon'), + (272372, 'Nanoprogram'), + (272443, 'Legs'), + (272444, 'Chest'), + (272445, 'Feet'), + (272446, 'Arms'), + (272447, 'Hands'), + (272448, 'Head'), + (272449, 'Legs'), + (272450, 'Chest'), + (272451, 'Feet'), + (272452, 'Arms'), + (272453, 'Hands'), + (272454, 'Head'), + (273291, 'Nanoprogram'), + (273295, 'Nanoprogram'), + (273297, 'Nanoprogram'), + (273306, 'Weapon'), + (273323, 'Nanoprogram'), + (273347, 'Nanoprogram'), + (273350, 'Back'), + (273356, 'Nanoprogram'), + (273358, 'Nanoprogram'), + (273366, 'Nanoprogram'), + (273371, 'Nanoprogram'), + (273373, 'Nanoprogram'), + (273377, 'Weapon'), + (273380, 'Nanoprogram'), + (273381, 'Back'), + (273394, 'Nanoprogram'), + (273396, 'Nanoprogram'), + (273399, 'Nanoprogram'), + (273401, 'Nanoprogram'), + (273403, 'Nanoprogram'), + (273413, 'Nanoprogram'), + (273469, 'Nanoprogram'), + (273630, 'Nanoprogram'), + (274153, 'Neck'), + (274273, 'Nanoprogram'), + (274374, 'Nanoprogram'), + (274541, 'Wrists'), + (274542, 'Wrists'), + (274543, 'Wrists'), + (274544, 'Wrists'), + (274545, 'Wrists'), + (274546, 'Wrists'), + (274547, 'Wrists'), + (274548, 'Wrists'), + (274549, 'Wrists'), + (274550, 'Wrists'), + (274551, 'Wrists'), + (274553, 'Util'), + (274554, 'Util'), + (274555, 'Util'), + (274556, 'Util'), + (274557, 'Weapon'), + (274559, 'Weapon'), + (274560, 'Weapon'), + (274669, 'Back'), + (274693, 'Back'), + (274694, 'Back'), + (274695, 'Back'), + (274696, 'Back'), + (274697, 'Back'), + (274699, 'Back'), + (274700, 'Back'), + (274701, 'Back'), + (274702, 'Back'), + (274703, 'Back'), + (274704, 'Back'), + (274705, 'Back'), + (274706, 'Back'), + (274707, 'Back'), + (274708, 'Back'), + (274709, 'Back'), + (274710, 'Back'), + (274711, 'Back'), + (274712, 'Back'), + (274713, 'Back'), + (274714, 'Back'), + (274716, 'Back'), + (274717, 'Back'), + (274718, 'Back'), + (274719, 'Back'), + (274720, 'Back'), + (274721, 'Back'), + (274722, 'Back'), + (274955, 'Weapon'), + (274956, 'Back'), + (274957, 'Fingers'), + (274971, 'Deck'), + (274972, 'Deck'), + (274973, 'Weapon'), + (274974, 'Weapon'), + (274976, 'Feet'), + (274977, 'Weapon'), + (274978, 'Weapon'), + (274979, 'Weapon'), + (274987, 'Back'), + (275008, 'Nanoprogram'), + (275017, 'Nanoprogram'), + (275019, 'Weapon'), + (275019, 'Nanoprogram'), + (275028, 'Nanoprogram'), + (275134, 'Weapon'), + (275139, 'Back'), + (275334, 'Weapon'), + (275379, 'Neck'), + (275381, 'Back'), + (275412, 'Head'), + (275423, 'Shoulders'), + (275500, 'Nanoprogram'), + (275706, 'Nanoprogram'), + (275848, 'Weapon'), + (275851, 'Weapon'), + (275854, 'Nanoprogram'), + (277042, 'Deck'), + (277043, 'Deck'), + (277044, 'Deck'), + (277045, 'Deck'), + (277046, 'Deck'), + (277047, 'Deck'), + (277048, 'Deck'), + (277049, 'Deck'), + (277050, 'Deck'), + (277051, 'Deck'), + (277052, 'Deck'), + (277053, 'Deck'), + (277054, 'Deck'), + (277055, 'Deck'), + (277056, 'Deck'), + (277057, 'Deck'), + (277058, 'Deck'), + (277059, 'Deck'), + (277060, 'Deck'), + (277061, 'Deck'), + (277062, 'Deck'), + (277063, 'Deck'), + (277064, 'Deck'), + (277065, 'Deck'), + (277066, 'Deck'), + (277067, 'Deck'), + (277068, 'Deck'), + (277069, 'Deck'), + (277070, 'Deck'), + (277071, 'Deck'), + (277072, 'Deck'), + (277073, 'Deck'), + (277074, 'Deck'), + (277075, 'Deck'), + (277076, 'Deck'), + (277077, 'Deck'), + (277078, 'Deck'), + (277079, 'Deck'), + (277080, 'Deck'), + (277081, 'Deck'), + (277082, 'Deck'), + (277083, 'Deck'), + (277084, 'Deck'), + (277085, 'Deck'), + (277086, 'Deck'), + (277087, 'Deck'), + (277088, 'Deck'), + (277089, 'Deck'), + (277090, 'Deck'), + (277091, 'Deck'), + (277092, 'Deck'), + (277093, 'Deck'), + (277094, 'Deck'), + (277095, 'Deck'), + (277096, 'Deck'), + (277097, 'Deck'), + (277098, 'Deck'), + (277099, 'Deck'), + (277100, 'Deck'), + (277101, 'Deck'), + (277102, 'Deck'), + (277103, 'Deck'), + (277104, 'Deck'), + (277105, 'Deck'), + (277106, 'Deck'), + (277107, 'Deck'), + (277108, 'Deck'), + (277109, 'Deck'), + (277110, 'Deck'), + (277111, 'Deck'), + (277112, 'Deck'), + (277113, 'Deck'), + (277114, 'Deck'), + (277115, 'Deck'), + (277116, 'Deck'), + (277117, 'Deck'), + (277118, 'Deck'), + (277119, 'Deck'), + (277120, 'Deck'), + (277121, 'Deck'), + (277122, 'Deck'), + (277123, 'Deck'), + (277124, 'Deck'), + (277125, 'Deck'), + (277126, 'Deck'), + (277127, 'Deck'), + (277128, 'Deck'), + (277129, 'Deck'), + (277130, 'Deck'), + (277131, 'Deck'), + (277132, 'Deck'), + (277133, 'Deck'), + (277134, 'Deck'), + (277135, 'Deck'), + (277136, 'Deck'), + (277137, 'Deck'), + (277138, 'Deck'), + (277139, 'Deck'), + (277140, 'Deck'), + (277141, 'Deck'), + (277142, 'Deck'), + (277143, 'Deck'), + (277144, 'Deck'), + (277145, 'Deck'), + (277146, 'Deck'), + (277147, 'Deck'), + (277148, 'Deck'), + (277149, 'Deck'), + (277150, 'Deck'), + (277151, 'Deck'), + (277152, 'Deck'), + (277153, 'Deck'), + (277154, 'Deck'), + (277155, 'Deck'), + (277156, 'Deck'), + (277157, 'Deck'), + (277158, 'Deck'), + (277159, 'Deck'), + (277160, 'Deck'), + (277161, 'Deck'), + (277162, 'Deck'), + (277163, 'Deck'), + (277164, 'Deck'), + (277165, 'Deck'), + (277166, 'Deck'), + (277183, 'Deck'), + (277184, 'Deck'), + (277185, 'Deck'), + (277186, 'Deck'), + (277187, 'Deck'), + (277188, 'Deck'), + (277189, 'Deck'), + (277190, 'Deck'), + (277191, 'Deck'), + (277192, 'Deck'), + (277193, 'Deck'), + (277194, 'Deck'), + (277195, 'Deck'), + (277196, 'Deck'), + (277197, 'Deck'), + (277198, 'Deck'), + (277199, 'Deck'), + (277200, 'Deck'), + (277201, 'Deck'), + (277202, 'Deck'), + (277203, 'Deck'), + (277204, 'Deck'), + (277205, 'Deck'), + (277206, 'Deck'), + (277207, 'Deck'), + (277208, 'Deck'), + (277209, 'Deck'), + (277210, 'Deck'), + (277211, 'Deck'), + (277212, 'Deck'), + (277213, 'Deck'), + (277214, 'Deck'), + (277215, 'Deck'), + (277216, 'Deck'), + (277217, 'Deck'), + (277218, 'Deck'), + (277219, 'Deck'), + (277220, 'Deck'), + (277221, 'Deck'), + (277222, 'Deck'), + (277223, 'Deck'), + (277224, 'Deck'), + (277225, 'Deck'), + (277226, 'Deck'), + (277227, 'Deck'), + (277228, 'Deck'), + (277229, 'Deck'), + (277230, 'Deck'), + (277231, 'Deck'), + (277232, 'Deck'), + (277233, 'Deck'), + (277234, 'Deck'), + (277235, 'Deck'), + (277236, 'Deck'), + (277237, 'Deck'), + (277238, 'Deck'), + (277239, 'Deck'), + (277240, 'Deck'), + (277241, 'Deck'), + (277242, 'Deck'), + (277243, 'Deck'), + (277244, 'Deck'), + (277245, 'Deck'), + (277246, 'Deck'), + (277247, 'Deck'), + (277248, 'Deck'), + (277249, 'Deck'), + (277250, 'Deck'), + (277251, 'Deck'), + (277252, 'Deck'), + (277253, 'Deck'), + (277254, 'Deck'), + (277255, 'Deck'), + (277256, 'Deck'), + (277257, 'Deck'), + (277262, 'Deck'), + (277263, 'Deck'), + (277264, 'Deck'), + (277265, 'Deck'), + (277266, 'Deck'), + (277267, 'Deck'), + (277268, 'Deck'), + (277269, 'Deck'), + (277270, 'Deck'), + (277271, 'Deck'), + (277272, 'Deck'), + (277273, 'Deck'), + (277274, 'Deck'), + (277275, 'Deck'), + (277276, 'Deck'), + (277277, 'Deck'), + (277278, 'Deck'), + (277279, 'Deck'), + (277280, 'Deck'), + (277281, 'Deck'), + (277282, 'Deck'), + (277283, 'Deck'), + (277284, 'Deck'), + (277285, 'Deck'), + (277286, 'Deck'), + (277287, 'Deck'), + (277288, 'Deck'), + (277289, 'Deck'), + (277290, 'Deck'), + (277291, 'Deck'), + (277292, 'Deck'), + (277293, 'Deck'), + (277294, 'Deck'), + (277295, 'Deck'), + (277296, 'Deck'), + (277297, 'Deck'), + (277298, 'Deck'), + (277299, 'Deck'), + (277300, 'Deck'), + (277301, 'Deck'), + (277302, 'Deck'), + (277303, 'Deck'), + (277304, 'Deck'), + (277305, 'Deck'), + (277306, 'Deck'), + (277307, 'Deck'), + (277308, 'Deck'), + (277309, 'Deck'), + (277310, 'Deck'), + (277311, 'Deck'), + (277312, 'Deck'), + (277313, 'Deck'), + (277314, 'Deck'), + (277315, 'Deck'), + (277316, 'Deck'), + (277317, 'Deck'), + (277318, 'Deck'), + (277319, 'Deck'), + (277320, 'Deck'), + (277321, 'Deck'), + (277322, 'Deck'), + (277323, 'Deck'), + (277324, 'Deck'), + (277325, 'Deck'), + (277326, 'Deck'), + (277327, 'Deck'), + (277328, 'Deck'), + (277329, 'Deck'), + (277330, 'Deck'), + (277331, 'Deck'), + (277332, 'Deck'), + (277333, 'Deck'), + (277334, 'Deck'), + (277335, 'Deck'), + (277336, 'Deck'), + (277337, 'Deck'), + (277338, 'Deck'), + (277339, 'Deck'), + (277340, 'Deck'), + (277341, 'Deck'), + (277342, 'Deck'), + (277343, 'Deck'), + (277344, 'Deck'), + (277345, 'Deck'), + (277346, 'Deck'), + (277347, 'Deck'), + (277348, 'Deck'), + (277349, 'Deck'), + (277350, 'Deck'), + (277351, 'Deck'), + (277352, 'Deck'), + (277353, 'Deck'), + (277354, 'Deck'), + (277355, 'Deck'), + (277356, 'Deck'), + (277357, 'Deck'), + (277358, 'Deck'), + (277359, 'Deck'), + (277360, 'Deck'), + (277361, 'Deck'), + (277362, 'Deck'), + (277363, 'Deck'), + (277364, 'Deck'), + (277365, 'Deck'), + (277366, 'Deck'), + (277367, 'Deck'), + (277368, 'Deck'), + (277369, 'Deck'), + (277370, 'Deck'), + (277371, 'Deck'), + (277372, 'Deck'), + (277373, 'Deck'), + (277374, 'Deck'), + (277375, 'Deck'), + (277376, 'Deck'), + (277380, 'Back'), + (277425, 'Nanoprogram'), + (277432, 'Deck'), + (277433, 'Deck'), + (277434, 'Deck'), + (277435, 'Deck'), + (277436, 'Deck'), + (277502, 'Deck'), + (277503, 'Deck'), + (277504, 'Deck'), + (277505, 'Deck'), + (277506, 'Deck'), + (277507, 'Deck'), + (277508, 'Deck'), + (277509, 'Deck'), + (277510, 'Deck'), + (277511, 'Deck'), + (277512, 'Deck'), + (277513, 'Deck'), + (277514, 'Deck'), + (277515, 'Deck'), + (277516, 'Deck'), + (277517, 'Deck'), + (277518, 'Deck'), + (277519, 'Deck'), + (277520, 'Deck'), + (277521, 'Deck'), + (277522, 'Deck'), + (277523, 'Deck'), + (277524, 'Deck'), + (277525, 'Deck'), + (277526, 'Deck'), + (277527, 'Deck'), + (277528, 'Deck'), + (277529, 'Deck'), + (277530, 'Deck'), + (277531, 'Deck'), + (277532, 'Deck'), + (277533, 'Deck'), + (277534, 'Deck'), + (277535, 'Deck'), + (277536, 'Deck'), + (277541, 'Deck'), + (277542, 'Deck'), + (277543, 'Deck'), + (277544, 'Deck'), + (277545, 'Deck'), + (277546, 'Deck'), + (277547, 'Deck'), + (277548, 'Deck'), + (277549, 'Deck'), + (277550, 'Deck'), + (277552, 'Deck'), + (277553, 'Deck'), + (277554, 'Deck'), + (277555, 'Deck'), + (277556, 'Deck'), + (277557, 'Deck'), + (277558, 'Deck'), + (277559, 'Deck'), + (277560, 'Deck'), + (277561, 'Deck'), + (277562, 'Deck'), + (277563, 'Deck'), + (277564, 'Deck'), + (277565, 'Deck'), + (277566, 'Deck'), + (277567, 'Deck'), + (277568, 'Deck'), + (277569, 'Deck'), + (277570, 'Deck'), + (277571, 'Deck'), + (277572, 'Deck'), + (277573, 'Deck'), + (277574, 'Deck'), + (277575, 'Deck'), + (277576, 'Deck'), + (277577, 'Deck'), + (277578, 'Deck'), + (277579, 'Deck'), + (277580, 'Deck'), + (277581, 'Deck'), + (277582, 'Deck'), + (277583, 'Deck'), + (277584, 'Deck'), + (277585, 'Deck'), + (277586, 'Deck'), + (277587, 'Deck'), + (277588, 'Deck'), + (277589, 'Deck'), + (277590, 'Deck'), + (277591, 'Deck'), + (277592, 'Deck'), + (277593, 'Deck'), + (277594, 'Deck'), + (277595, 'Deck'), + (277596, 'Deck'), + (277597, 'Deck'), + (277598, 'Deck'), + (277599, 'Deck'), + (277600, 'Deck'), + (277601, 'Deck'), + (277602, 'Deck'), + (277603, 'Deck'), + (277604, 'Deck'), + (277605, 'Deck'), + (277606, 'Deck'), + (277607, 'Deck'), + (277608, 'Deck'), + (277609, 'Deck'), + (277610, 'Deck'), + (277611, 'Deck'), + (277612, 'Deck'), + (277613, 'Deck'), + (277614, 'Deck'), + (277615, 'Deck'), + (277616, 'Deck'), + (277617, 'Deck'), + (277618, 'Deck'), + (277619, 'Deck'), + (277620, 'Deck'), + (277621, 'Deck'), + (277622, 'Deck'), + (277623, 'Deck'), + (277624, 'Deck'), + (277625, 'Deck'), + (277626, 'Deck'), + (277627, 'Deck'), + (277628, 'Deck'), + (277629, 'Deck'), + (277630, 'Deck'), + (277631, 'Deck'), + (277632, 'Deck'), + (277633, 'Deck'), + (277634, 'Deck'), + (277635, 'Deck'), + (277636, 'Deck'), + (277637, 'Deck'), + (277638, 'Deck'), + (277639, 'Deck'), + (277640, 'Deck'), + (277641, 'Deck'), + (277642, 'Deck'), + (277643, 'Deck'), + (277644, 'Deck'), + (277645, 'Deck'), + (277646, 'Deck'), + (277647, 'Deck'), + (277648, 'Deck'), + (277649, 'Deck'), + (277650, 'Deck'), + (277651, 'Deck'), + (277652, 'Deck'), + (277653, 'Deck'), + (277654, 'Deck'), + (277655, 'Deck'), + (277656, 'Deck'), + (277657, 'Deck'), + (277658, 'Deck'), + (277659, 'Deck'), + (277660, 'Deck'), + (277661, 'Deck'), + (277662, 'Deck'), + (277663, 'Deck'), + (277664, 'Deck'), + (277665, 'Deck'), + (277666, 'Deck'), + (277667, 'Deck'), + (277668, 'Deck'), + (277669, 'Deck'), + (277670, 'Deck'), + (277671, 'Deck'), + (277672, 'Deck'), + (277673, 'Deck'), + (277674, 'Deck'), + (277675, 'Deck'), + (277676, 'Deck'), + (277677, 'Deck'), + (277678, 'Deck'), + (277679, 'Deck'), + (277680, 'Deck'), + (277681, 'Deck'), + (277682, 'Deck'), + (277683, 'Deck'), + (277684, 'Deck'), + (277685, 'Deck'), + (277686, 'Deck'), + (277687, 'Deck'), + (277688, 'Deck'), + (277689, 'Deck'), + (277690, 'Deck'), + (277691, 'Deck'), + (277692, 'Deck'), + (277693, 'Deck'), + (277694, 'Deck'), + (277695, 'Deck'), + (277696, 'Deck'), + (277697, 'Deck'), + (277698, 'Deck'), + (277699, 'Deck'), + (277700, 'Deck'), + (277701, 'Deck'), + (277702, 'Deck'), + (277703, 'Deck'), + (277704, 'Deck'), + (277705, 'Deck'), + (277706, 'Deck'), + (277707, 'Deck'), + (277708, 'Deck'), + (277709, 'Deck'), + (277710, 'Deck'), + (277711, 'Deck'), + (277713, 'Nanoprogram'), + (277714, 'Deck'), + (277715, 'Deck'), + (277716, 'Deck'), + (277717, 'Deck'), + (277718, 'Deck'), + (277719, 'Deck'), + (277720, 'Deck'), + (277721, 'Deck'), + (277722, 'Deck'), + (277723, 'Deck'), + (277724, 'Deck'), + (277725, 'Deck'), + (277726, 'Deck'), + (277727, 'Deck'), + (277728, 'Deck'), + (277729, 'Deck'), + (277730, 'Deck'), + (277731, 'Deck'), + (277732, 'Deck'), + (277733, 'Deck'), + (277734, 'Deck'), + (277735, 'Deck'), + (277736, 'Deck'), + (277737, 'Deck'), + (277738, 'Deck'), + (277739, 'Deck'), + (277740, 'Deck'), + (277741, 'Deck'), + (277742, 'Deck'), + (277743, 'Deck'), + (277744, 'Deck'), + (277745, 'Deck'), + (277746, 'Deck'), + (277747, 'Deck'), + (277748, 'Deck'), + (277749, 'Deck'), + (277750, 'Deck'), + (277751, 'Deck'), + (277752, 'Deck'), + (277753, 'Deck'), + (277754, 'Deck'), + (277755, 'Deck'), + (277756, 'Deck'), + (277757, 'Deck'), + (277758, 'Deck'), + (277759, 'Deck'), + (277760, 'Deck'), + (277761, 'Deck'), + (277762, 'Deck'), + (277763, 'Deck'), + (277764, 'Deck'), + (277765, 'Deck'), + (277766, 'Deck'), + (277767, 'Deck'), + (277768, 'Deck'), + (277769, 'Deck'), + (277770, 'Deck'), + (277771, 'Deck'), + (277772, 'Deck'), + (277773, 'Deck'), + (277774, 'Deck'), + (277775, 'Deck'), + (277776, 'Deck'), + (277777, 'Deck'), + (277778, 'Deck'), + (277779, 'Deck'), + (277780, 'Deck'), + (277781, 'Deck'), + (277782, 'Deck'), + (277783, 'Deck'), + (277784, 'Deck'), + (277785, 'Deck'), + (277786, 'Deck'), + (277787, 'Deck'), + (277788, 'Deck'), + (277789, 'Deck'), + (277790, 'Deck'), + (277791, 'Deck'), + (277792, 'Deck'), + (277793, 'Deck'), + (277794, 'Deck'), + (277795, 'Deck'), + (277796, 'Deck'), + (277797, 'Deck'), + (277798, 'Deck'), + (277799, 'Deck'), + (277800, 'Deck'), + (277801, 'Deck'), + (277802, 'Deck'), + (277803, 'Deck'), + (277804, 'Deck'), + (277805, 'Deck'), + (277806, 'Deck'), + (277807, 'Deck'), + (277808, 'Deck'), + (277809, 'Deck'), + (277810, 'Deck'), + (277811, 'Deck'), + (277812, 'Deck'), + (277813, 'Deck'), + (277814, 'Deck'), + (277815, 'Deck'), + (277816, 'Deck'), + (277817, 'Deck'), + (277818, 'Deck'), + (277819, 'Deck'), + (277820, 'Deck'), + (277821, 'Deck'), + (277822, 'Deck'), + (277823, 'Deck'), + (277933, 'Deck'), + (277934, 'Deck'), + (277935, 'Deck'), + (277936, 'Deck'), + (277937, 'Deck'), + (278007, 'Deck'), + (278008, 'Deck'), + (278009, 'Deck'), + (278010, 'Deck'), + (278011, 'Deck'), + (278012, 'Deck'), + (278013, 'Deck'), + (278014, 'Deck'), + (278015, 'Deck'), + (278016, 'Deck'), + (278017, 'Deck'), + (278018, 'Deck'), + (278019, 'Deck'), + (278020, 'Deck'), + (278021, 'Deck'), + (278022, 'Deck'), + (278023, 'Deck'), + (278024, 'Deck'), + (278025, 'Deck'), + (278026, 'Deck'), + (278027, 'Deck'), + (278028, 'Deck'), + (278029, 'Deck'), + (278030, 'Deck'), + (278031, 'Deck'), + (278040, 'Deck'), + (278041, 'Deck'), + (278042, 'Deck'), + (278043, 'Deck'), + (278044, 'Deck'), + (278045, 'Deck'), + (278046, 'Deck'), + (278047, 'Deck'), + (278048, 'Deck'), + (278049, 'Deck'), + (278050, 'Deck'), + (278051, 'Deck'), + (278052, 'Deck'), + (278053, 'Deck'), + (278054, 'Deck'), + (278055, 'Deck'), + (278056, 'Deck'), + (278057, 'Deck'), + (278058, 'Deck'), + (278059, 'Deck'), + (278060, 'Deck'), + (278061, 'Deck'), + (278062, 'Deck'), + (278063, 'Deck'), + (278064, 'Deck'), + (278065, 'Deck'), + (278066, 'Deck'), + (278067, 'Deck'), + (278068, 'Deck'), + (278069, 'Deck'), + (278070, 'Deck'), + (278071, 'Deck'), + (278072, 'Deck'), + (278073, 'Deck'), + (278074, 'Deck'), + (278075, 'Deck'), + (278076, 'Deck'), + (278077, 'Deck'), + (278078, 'Deck'), + (278079, 'Deck'), + (278080, 'Deck'), + (278081, 'Deck'), + (278082, 'Deck'), + (278083, 'Deck'), + (278084, 'Deck'), + (278085, 'Deck'), + (278086, 'Deck'), + (278087, 'Deck'), + (278088, 'Deck'), + (278089, 'Deck'), + (278090, 'Deck'), + (278091, 'Deck'), + (278092, 'Deck'), + (278093, 'Deck'), + (278094, 'Deck'), + (278095, 'Deck'), + (278096, 'Deck'), + (278097, 'Deck'), + (278098, 'Deck'), + (278099, 'Deck'), + (278100, 'Deck'), + (278101, 'Deck'), + (278102, 'Deck'), + (278103, 'Deck'), + (278104, 'Deck'), + (278105, 'Deck'), + (278106, 'Deck'), + (278107, 'Deck'), + (278108, 'Deck'), + (278109, 'Deck'), + (278110, 'Deck'), + (278111, 'Deck'), + (278112, 'Deck'), + (278113, 'Deck'), + (278114, 'Deck'), + (278115, 'Deck'), + (278116, 'Deck'), + (278117, 'Deck'), + (278118, 'Deck'), + (278119, 'Deck'), + (278120, 'Deck'), + (278121, 'Deck'), + (278122, 'Deck'), + (278123, 'Deck'), + (278124, 'Deck'), + (278125, 'Deck'), + (278126, 'Deck'), + (278127, 'Deck'), + (278128, 'Deck'), + (278129, 'Deck'), + (278130, 'Deck'), + (278131, 'Deck'), + (278132, 'Deck'), + (278133, 'Deck'), + (278134, 'Deck'), + (278135, 'Deck'), + (278136, 'Deck'), + (278137, 'Deck'), + (278138, 'Deck'), + (278139, 'Deck'), + (278140, 'Deck'), + (278141, 'Deck'), + (278142, 'Deck'), + (278143, 'Deck'), + (278144, 'Deck'), + (278145, 'Deck'), + (278146, 'Deck'), + (278147, 'Deck'), + (278148, 'Deck'), + (278149, 'Deck'), + (278150, 'Deck'), + (278151, 'Deck'), + (278152, 'Deck'), + (278153, 'Deck'), + (278154, 'Deck'), + (278155, 'Deck'), + (278156, 'Deck'), + (278157, 'Deck'), + (278158, 'Deck'), + (278159, 'Deck'), + (278160, 'Deck'), + (278161, 'Deck'), + (278162, 'Deck'), + (278163, 'Deck'), + (278164, 'Deck'), + (278165, 'Deck'), + (278166, 'Deck'), + (278167, 'Deck'), + (278168, 'Deck'), + (278169, 'Deck'), + (278170, 'Deck'), + (278171, 'Deck'), + (278172, 'Deck'), + (278173, 'Deck'), + (278174, 'Deck'), + (278175, 'Deck'), + (278176, 'Deck'), + (278177, 'Deck'), + (278178, 'Deck'), + (278179, 'Deck'), + (278180, 'Deck'), + (278181, 'Deck'), + (278182, 'Deck'), + (278183, 'Deck'), + (278184, 'Deck'), + (278185, 'Deck'), + (278186, 'Deck'), + (278187, 'Deck'), + (278188, 'Deck'), + (278189, 'Deck'), + (278190, 'Deck'), + (278191, 'Deck'), + (278192, 'Deck'), + (278193, 'Deck'), + (278194, 'Deck'), + (278195, 'Deck'), + (278196, 'Deck'), + (278197, 'Deck'), + (278198, 'Deck'), + (278199, 'Deck'), + (278200, 'Deck'), + (278201, 'Deck'), + (278202, 'Deck'), + (278203, 'Deck'), + (278204, 'Deck'), + (278205, 'Deck'), + (278206, 'Deck'), + (278207, 'Deck'), + (278208, 'Deck'), + (278209, 'Deck'), + (278210, 'Deck'), + (278211, 'Deck'), + (278212, 'Deck'), + (278213, 'Deck'), + (278214, 'Deck'), + (278215, 'Deck'), + (278216, 'Deck'), + (278217, 'Deck'), + (278218, 'Deck'), + (278219, 'Deck'), + (278220, 'Deck'), + (278221, 'Deck'), + (278222, 'Deck'), + (278223, 'Deck'), + (278224, 'Deck'), + (278225, 'Deck'), + (278226, 'Deck'), + (278227, 'Deck'), + (278228, 'Deck'), + (278229, 'Deck'), + (278230, 'Deck'), + (278231, 'Deck'), + (278232, 'Deck'), + (278233, 'Deck'), + (278234, 'Deck'), + (278235, 'Deck'), + (278236, 'Deck'), + (278237, 'Deck'), + (278238, 'Deck'), + (278239, 'Deck'), + (278240, 'Deck'), + (278241, 'Deck'), + (278242, 'Deck'), + (278243, 'Deck'), + (278244, 'Deck'), + (278245, 'Deck'), + (278246, 'Deck'), + (278247, 'Deck'), + (278248, 'Deck'), + (278249, 'Deck'), + (278250, 'Deck'), + (278251, 'Deck'), + (278252, 'Deck'), + (278253, 'Deck'), + (278254, 'Deck'), + (278255, 'Deck'), + (278256, 'Deck'), + (278257, 'Deck'), + (278258, 'Deck'), + (278259, 'Deck'), + (278260, 'Deck'), + (278261, 'Deck'), + (278262, 'Deck'), + (278263, 'Deck'), + (278264, 'Deck'), + (278265, 'Deck'), + (278266, 'Deck'), + (278267, 'Deck'), + (278268, 'Deck'), + (278269, 'Deck'), + (278270, 'Deck'), + (278271, 'Deck'), + (278272, 'Deck'), + (278273, 'Deck'), + (278274, 'Deck'), + (278275, 'Deck'), + (278276, 'Deck'), + (278277, 'Deck'), + (278278, 'Deck'), + (278279, 'Deck'), + (278280, 'Deck'), + (278281, 'Deck'), + (278282, 'Deck'), + (278283, 'Deck'), + (278284, 'Deck'), + (278285, 'Deck'), + (278286, 'Deck'), + (278287, 'Deck'), + (278288, 'Deck'), + (278289, 'Deck'), + (278290, 'Deck'), + (278291, 'Deck'), + (278292, 'Deck'), + (278293, 'Deck'), + (278294, 'Deck'), + (278295, 'Deck'), + (278296, 'Deck'), + (278297, 'Deck'), + (278298, 'Deck'), + (278299, 'Deck'), + (278300, 'Deck'), + (278301, 'Deck'), + (278302, 'Deck'), + (278303, 'Deck'), + (278304, 'Deck'), + (278305, 'Deck'), + (278306, 'Deck'), + (278307, 'Deck'), + (278308, 'Deck'), + (278309, 'Deck'), + (278310, 'Deck'), + (278311, 'Deck'), + (278312, 'Deck'), + (278313, 'Deck'), + (278314, 'Deck'), + (278315, 'Deck'), + (278316, 'Deck'), + (278317, 'Deck'), + (278318, 'Deck'), + (278319, 'Deck'), + (278320, 'Deck'), + (278321, 'Deck'), + (278322, 'Deck'), + (278323, 'Deck'), + (278324, 'Deck'), + (278325, 'Deck'), + (278326, 'Deck'), + (278327, 'Deck'), + (278328, 'Deck'), + (278329, 'Deck'), + (278330, 'Deck'), + (278331, 'Deck'), + (278332, 'Deck'), + (278333, 'Deck'), + (278334, 'Deck'), + (278335, 'Deck'), + (278336, 'Deck'), + (278337, 'Deck'), + (278338, 'Deck'), + (278339, 'Deck'), + (278340, 'Deck'), + (278341, 'Deck'), + (278342, 'Deck'), + (278343, 'Deck'), + (278344, 'Deck'), + (278345, 'Deck'), + (278346, 'Deck'), + (278347, 'Deck'), + (278348, 'Deck'), + (278349, 'Deck'), + (278350, 'Deck'), + (278351, 'Deck'), + (278352, 'Deck'), + (278353, 'Deck'), + (278354, 'Deck'), + (278355, 'Deck'), + (278356, 'Deck'), + (278357, 'Deck'), + (278358, 'Deck'), + (278359, 'Deck'), + (278360, 'Deck'), + (278361, 'Deck'), + (278362, 'Deck'), + (278363, 'Deck'), + (278364, 'Deck'), + (278365, 'Deck'), + (278366, 'Deck'), + (278367, 'Deck'), + (278368, 'Deck'), + (278369, 'Deck'), + (278370, 'Deck'), + (278371, 'Deck'), + (278372, 'Deck'), + (278373, 'Deck'), + (278374, 'Deck'), + (278375, 'Deck'), + (278376, 'Deck'), + (278377, 'Deck'), + (278378, 'Deck'), + (278379, 'Deck'), + (278380, 'Deck'), + (278381, 'Deck'), + (278382, 'Deck'), + (278383, 'Deck'), + (278384, 'Deck'), + (278385, 'Deck'), + (278386, 'Deck'), + (278387, 'Deck'), + (278388, 'Deck'), + (278389, 'Deck'), + (278390, 'Deck'), + (278391, 'Deck'), + (278392, 'Deck'), + (278393, 'Deck'), + (278394, 'Deck'), + (278395, 'Deck'), + (278396, 'Deck'), + (278397, 'Deck'), + (278398, 'Deck'), + (278399, 'Deck'), + (278400, 'Deck'), + (278401, 'Deck'), + (278402, 'Deck'), + (278403, 'Deck'), + (278404, 'Deck'), + (278405, 'Deck'), + (278406, 'Deck'), + (278407, 'Deck'), + (278408, 'Deck'), + (278409, 'Deck'), + (278410, 'Deck'), + (278411, 'Deck'), + (278412, 'Deck'), + (278413, 'Deck'), + (278414, 'Deck'), + (278415, 'Deck'), + (278416, 'Deck'), + (278417, 'Deck'), + (278418, 'Deck'), + (278419, 'Deck'), + (278420, 'Deck'), + (278421, 'Deck'), + (278422, 'Deck'), + (278423, 'Deck'), + (278424, 'Deck'), + (278425, 'Deck'), + (278426, 'Deck'), + (278427, 'Deck'), + (278428, 'Deck'), + (278429, 'Deck'), + (278430, 'Deck'), + (278431, 'Deck'), + (278432, 'Deck'), + (278433, 'Deck'), + (278434, 'Deck'), + (278435, 'Deck'), + (278436, 'Deck'), + (278437, 'Deck'), + (278438, 'Deck'), + (278439, 'Deck'), + (278440, 'Deck'), + (278441, 'Deck'), + (278442, 'Deck'), + (278443, 'Deck'), + (278444, 'Deck'), + (278445, 'Deck'), + (278446, 'Deck'), + (278447, 'Deck'), + (278448, 'Deck'), + (278449, 'Deck'), + (278450, 'Deck'), + (278451, 'Deck'), + (278452, 'Deck'), + (278453, 'Deck'), + (278454, 'Deck'), + (278455, 'Deck'), + (278456, 'Deck'), + (278457, 'Deck'), + (278458, 'Deck'), + (278459, 'Deck'), + (278460, 'Deck'), + (278461, 'Deck'), + (278462, 'Deck'), + (278463, 'Deck'), + (278464, 'Deck'), + (278465, 'Deck'), + (278466, 'Deck'), + (278467, 'Deck'), + (278468, 'Deck'), + (278469, 'Deck'), + (278470, 'Deck'), + (278471, 'Deck'), + (278472, 'Deck'), + (278473, 'Deck'), + (278474, 'Deck'), + (278475, 'Deck'), + (278476, 'Deck'), + (278477, 'Deck'), + (278478, 'Deck'), + (278479, 'Deck'), + (278480, 'Deck'), + (278481, 'Deck'), + (278482, 'Deck'), + (278483, 'Deck'), + (278484, 'Deck'), + (278485, 'Deck'), + (278486, 'Deck'), + (278487, 'Deck'), + (278488, 'Deck'), + (278489, 'Deck'), + (278753, 'Deck'), + (278754, 'Deck'), + (278755, 'Deck'), + (278756, 'Deck'), + (278757, 'Deck'), + (278758, 'Deck'), + (278759, 'Deck'), + (278760, 'Deck'), + (278761, 'Deck'), + (278762, 'Deck'), + (278763, 'Deck'), + (278764, 'Deck'), + (278765, 'Deck'), + (278766, 'Deck'), + (278767, 'Deck'), + (278768, 'Deck'), + (278769, 'Deck'), + (278770, 'Deck'), + (278771, 'Deck'), + (278772, 'Deck'), + (278773, 'Deck'), + (278774, 'Deck'), + (278775, 'Deck'), + (278776, 'Deck'), + (278777, 'Deck'), + (278778, 'Deck'), + (278779, 'Deck'), + (278780, 'Deck'), + (278781, 'Deck'), + (278782, 'Deck'), + (279380, 'Nanoprogram'), + (279436, 'Neck'), + (279437, 'Neck'), + (279438, 'Neck'), + (279439, 'Neck'), + (279440, 'Neck'), + (279441, 'Neck'), + (279449, 'Deck'), + (279450, 'Deck'), + (279451, 'Deck'), + (279452, 'Deck'), + (280531, 'Nanoprogram'), + (280717, 'Weapon'), + (280718, 'Weapon'), + (280719, 'Weapon'), + (280720, 'Weapon'), + (280721, 'Weapon'), + (280722, 'Weapon'), + (280723, 'Weapon'), + (280724, 'Weapon'), + (280725, 'Weapon'), + (280726, 'Weapon'), + (280727, 'Weapon'), + (280728, 'Weapon'), + (280729, 'Weapon'), + (280730, 'Weapon'), + (280756, 'Util'), + (280756, 'Hud'), + (280757, 'Util'), + (280757, 'Hud'), + (280758, 'Util'), + (280758, 'Hud'), + (280759, 'Util'), + (280759, 'Hud'), + (280760, 'Util'), + (280760, 'Hud'), + (280761, 'Util'), + (280761, 'Hud'), + (280762, 'Util'), + (280762, 'Hud'), + (280763, 'Util'), + (280763, 'Hud'), + (280764, 'Util'), + (280764, 'Hud'), + (280765, 'Util'), + (280765, 'Hud'), + (280766, 'Util'), + (280766, 'Hud'), + (280767, 'Util'), + (280767, 'Hud'), + (280768, 'Util'), + (280768, 'Hud'), + (280769, 'Util'), + (280769, 'Hud'), + (280770, 'Util'), + (280770, 'Hud'), + (280771, 'Util'), + (280771, 'Hud'), + (280772, 'Util'), + (280772, 'Hud'), + (280773, 'Util'), + (280773, 'Hud'), + (280774, 'Util'), + (280774, 'Hud'), + (280775, 'Util'), + (280775, 'Hud'), + (280776, 'Util'), + (280776, 'Hud'), + (280777, 'Util'), + (280777, 'Hud'), + (280778, 'Util'), + (280778, 'Hud'), + (280779, 'Util'), + (280779, 'Hud'), + (280780, 'Util'), + (280780, 'Hud'), + (280781, 'Util'), + (280781, 'Hud'), + (280782, 'Util'), + (280782, 'Hud'), + (280783, 'Util'), + (280783, 'Hud'), + (280787, 'Nanoprogram'), + (280788, 'Nanoprogram'), + (281045, 'Util'), + (281045, 'Hud'), + (281046, 'Util'), + (281046, 'Hud'), + (281047, 'Util'), + (281047, 'Hud'), + (281048, 'Util'), + (281048, 'Hud'), + (281049, 'Util'), + (281049, 'Hud'), + (281050, 'Util'), + (281050, 'Hud'), + (281051, 'Util'), + (281051, 'Hud'), + (281052, 'Util'), + (281052, 'Hud'), + (281053, 'Util'), + (281053, 'Hud'), + (281054, 'Util'), + (281054, 'Hud'), + (281055, 'Util'), + (281055, 'Hud'), + (281056, 'Util'), + (281056, 'Hud'), + (281057, 'Util'), + (281057, 'Hud'), + (281058, 'Util'), + (281058, 'Hud'), + (281194, 'Fingers'), + (281196, 'Fingers'), + (281197, 'Fingers'), + (281198, 'Fingers'), + (281199, 'Fingers'), + (281200, 'Fingers'), + (281201, 'Fingers'), + (281202, 'Fingers'), + (281203, 'Fingers'), + (281204, 'Fingers'), + (281205, 'Fingers'), + (281206, 'Fingers'), + (281207, 'Fingers'), + (281208, 'Fingers'), + (281267, 'Fingers'), + (281468, 'Back'), + (281503, 'Weapon'), + (281504, 'Weapon'), + (281505, 'Weapon'), + (281506, 'Weapon'), + (281507, 'Weapon'), + (281570, 'Nanoprogram'), + (281669, 'Nanoprogram'), + (281685, 'Nanoprogram'), + (281906, 'Nanoprogram'), + (281957, 'Nanoprogram'), + (281962, 'Weapon'), + (282113, 'Feet'), + (282116, 'Legs'), + (282117, 'Hands'), + (282118, 'Arms'), + (282119, 'Chest'), + (282120, 'Head'), + (283379, 'Weapon'), + (283380, 'Weapon'), + (284004, 'Nanoprogram'), + (284006, 'Nanoprogram'), + (284043, 'Weapon'), + (284062, 'Nanoprogram'), + (284599, 'Hud'), + (285055, 'Nanoprogram'), + (285445, 'Hud'), + (286232, 'Feet'), + (286233, 'Hud'), + (286234, 'Hud'), + (286303, 'Arms'), + (287041, 'Nanoprogram'), + (287043, 'Nanoprogram'), + (287045, 'Nanoprogram'), + (287047, 'Nanoprogram'), + (287060, 'Nanoprogram'), + (287061, 'Nanoprogram'), + (287062, 'Nanoprogram'), + (287063, 'Nanoprogram'), + (287064, 'Nanoprogram'), + (287065, 'Nanoprogram'), + (287066, 'Nanoprogram'), + (287067, 'Nanoprogram'), + (287068, 'Nanoprogram'), + (287286, 'Nanoprogram'), + (287556, 'Nanoprogram'), + (288084, 'Deck'), + (288106, 'Deck'), + (288107, 'Deck'), + (288125, 'Deck'), + (288126, 'Deck'), + (288128, 'Deck'), + (288129, 'Deck'), + (288132, 'Deck'), + (288134, 'Deck'), + (288139, 'Deck'), + (288140, 'Deck'), + (288203, 'Nanoprogram'), + (288204, 'Fingers'), + (288281, 'Util'), + (288435, 'Nanoprogram'), + (288471, 'Weapon'), + (288719, 'Deck'), + (288720, 'Deck'), + (288729, 'Nanoprogram'), + (288744, 'Fingers'), + (288745, 'Fingers'), + (288796, 'Nanoprogram'), + (288798, 'Nanoprogram'), + (288800, 'Nanoprogram'), + (288803, 'Nanoprogram'), + (288806, 'Nanoprogram'), + (288809, 'Nanoprogram'), + (288810, 'Nanoprogram'), + (288813, 'Nanoprogram'), + (288815, 'Nanoprogram'), + (288817, 'Nanoprogram'), + (288819, 'Nanoprogram'), + (289579, 'Nanoprogram'), + (289783, 'Fingers'), + (289784, 'Fingers'), + (289989, 'Hud'), + (290215, 'Hud'), + (290222, 'Head'), + (290223, 'Head'), + (290224, 'Shoulders'), + (290225, 'Shoulders'), + (290226, 'Arms'), + (290227, 'Arms'), + (290228, 'Chest'), + (290229, 'Chest'), + (290230, 'Hands'), + (290231, 'Hands'), + (290232, 'Legs'), + (290233, 'Legs'), + (290234, 'Feet'), + (290235, 'Feet'), + (290276, 'Back'), + (290277, 'Back'), + (290474, 'Nanoprogram'), + (290480, 'Fingers'), + (290583, 'Nanoprogram'), + (290619, 'Deck'), + (290625, 'Deck'), + (290626, 'Deck'), + (290627, 'Deck'), + (291931, 'Shoulders'), + (291932, 'Shoulders'), + (292152, 'Deck'), + (292153, 'Deck'), + (292154, 'Deck'), + (292155, 'Deck'), + (292157, 'Util'), + (292183, 'Deck'), + (292184, 'Deck'), + (292185, 'Deck'), + (292186, 'Deck'), + (292187, 'Deck'), + (292188, 'Deck'), + (292189, 'Deck'), + (292190, 'Deck'), + (292191, 'Head'), + (292194, 'Back'), + (292235, 'Head'), + (292263, 'Deck'), + (292564, 'Wrists'), + (292565, 'Wrists'), + (292566, 'Wrists'), + (292603, 'Util'), + (292604, 'Util'), + (292605, 'Util'), + (292606, 'Util'), + (292607, 'Util'), + (292608, 'Util'), + (293115, 'Back'), + (293270, 'Nanoprogram'), + (293398, 'Head'), + (293620, 'Nanoprogram'), + (293633, 'Back'), + (293634, 'Back'), + (293635, 'Back'), + (293636, 'Back'), + (293637, 'Back'), + (293641, 'Shoulders'), + (293642, 'Shoulders'), + (293644, 'Shoulders'), + (293645, 'Shoulders'), + (293646, 'Shoulders'), + (293648, 'Shoulders'), + (293649, 'Shoulders'), + (293650, 'Shoulders'), + (293651, 'Shoulders'), + (293652, 'Shoulders'), + (293693, 'Hud'), + (293699, 'Hud'), + (293701, 'Hud'), + (293726, 'Back'), + (293727, 'Back'), + (293728, 'Back'), + (293729, 'Back'), + (293730, 'Back'), + (293731, 'Back'), + (293732, 'Back'), + (293733, 'Back'), + (293734, 'Back'), + (293735, 'Back'), + (293736, 'Back'), + (293737, 'Back'), + (293738, 'Back'), + (293739, 'Back'), + (293740, 'Back'), + (293741, 'Back'), + (293742, 'Back'), + (293743, 'Back'), + (293744, 'Back'), + (293745, 'Back'), + (293746, 'Back'), + (293754, 'Shoulders'), + (293755, 'Shoulders'), + (293756, 'Shoulders'), + (293757, 'Shoulders'), + (293758, 'Shoulders'), + (293759, 'Shoulders'), + (293760, 'Shoulders'), + (293761, 'Shoulders'), + (293762, 'Shoulders'), + (293763, 'Shoulders'), + (293764, 'Shoulders'), + (293765, 'Shoulders'), + (293766, 'Shoulders'), + (293767, 'Shoulders'), + (293768, 'Shoulders'), + (293769, 'Shoulders'), + (293770, 'Shoulders'), + (293771, 'Shoulders'), + (293772, 'Shoulders'), + (293773, 'Shoulders'), + (293774, 'Shoulders'), + (293775, 'Shoulders'), + (293776, 'Shoulders'), + (293777, 'Shoulders'), + (293778, 'Shoulders'), + (293779, 'Shoulders'), + (293780, 'Shoulders'), + (293781, 'Shoulders'), + (293782, 'Shoulders'), + (293783, 'Shoulders'), + (293784, 'Shoulders'), + (293785, 'Shoulders'), + (293786, 'Shoulders'), + (293787, 'Shoulders'), + (293788, 'Shoulders'), + (293789, 'Shoulders'), + (293790, 'Shoulders'), + (293791, 'Shoulders'), + (293792, 'Shoulders'), + (293793, 'Shoulders'), + (293794, 'Shoulders'), + (293795, 'Shoulders'), + (293908, 'Nanoprogram'), + (293947, 'Nanoprogram'), + (293993, 'Weapon'), + (293995, 'Weapon'), + (293996, 'Weapon'), + (293997, 'Weapon'), + (293999, 'Weapon'), + (294000, 'Weapon'), + (294001, 'Weapon'), + (294045, 'Nanoprogram'), + (294432, 'Nanoprogram'), + (294472, 'Nanoprogram'), + (294844, 'Nanoprogram'), + (294978, 'Nanoprogram'), + (295111, 'Hud'), + (295112, 'Hud'), + (295557, 'Back'), + (295698, 'Back'), + (295699, 'Back'), + (295703, 'Back'), + (295705, 'Nanoprogram'), + (295756, 'Util'), + (295769, 'Deck'), + (296035, 'Nanoprogram'), + (296363, 'Neck'), + (296364, 'Neck'), + (296365, 'Neck'), + (296366, 'Neck'), + (296367, 'Neck'), + (296368, 'Neck'), + (296369, 'Neck'), + (296370, 'Neck'), + (296371, 'Neck'), + (296372, 'Neck'), + (296373, 'Neck'), + (296374, 'Neck'), + (296375, 'Neck'), + (296376, 'Neck'), + (296377, 'Neck'), + (296378, 'Neck'), + (296379, 'Neck'), + (296380, 'Neck'), + (296633, 'Nanoprogram'), + (296670, 'Nanoprogram'), + (296794, 'Nanoprogram'), + (296977, 'Back'), + (297650, 'Legs'), + (297651, 'Feet'), + (297652, 'Chest'), + (297653, 'Arms'), + (297654, 'Hands'), + (297655, 'Feet'), + (297656, 'Legs'), + (297657, 'Chest'), + (297658, 'Arms'), + (297659, 'Hands'), + (297660, 'Feet'), + (297661, 'Legs'), + (297662, 'Chest'), + (297663, 'Arms'), + (297664, 'Hands'), + (297665, 'Weapon'), + (297666, 'Weapon'), + (297667, 'Weapon'), + (300673, 'Head'), + (300674, 'Head'), + (300690, 'Back'), + (300691, 'Back'), + (300693, 'Legs'), + (300694, 'Legs'), + (300696, 'Chest'), + (300697, 'Chest'), + (300700, 'Arms'), + (300701, 'Arms'), + (300703, 'Hands'), + (300704, 'Hands'), + (300705, 'Feet'), + (300706, 'Feet'), + (300864, 'Shoulders'), + (300865, 'Shoulders'), + (300869, 'Fingers'), + (300870, 'Fingers'), + (300871, 'Fingers'), + (300872, 'Fingers'), + (300873, 'Fingers'), + (300874, 'Fingers'), + (300875, 'Fingers'), + (300876, 'Fingers'), + (300912, 'Nanoprogram'), + (300913, 'Nanoprogram'), + (301065, 'Shoulders'), + (301066, 'Shoulders'), + (301067, 'Shoulders'), + (301068, 'Shoulders'), + (301082, 'Nanoprogram'), + (301086, 'Nanoprogram'), + (301126, 'Hands'), + (301298, 'Nanoprogram'), + (301327, 'Shoulders'), + (301333, 'Back'), + (301594, 'Nanoprogram'), + (301601, 'Nanoprogram'), + (301656, 'Hands'), + (301668, 'Nanoprogram'), + (301671, 'Nanoprogram'), + (301673, 'Nanoprogram'), + (301678, 'Hands'), + (301679, 'Wrists'), + (301693, 'Shoulders'), + (301694, 'Shoulders'), + (301695, 'Shoulders'), + (301696, 'Shoulders'), + (301697, 'Shoulders'), + (301698, 'Shoulders'), + (301701, 'Nanoprogram'), + (301743, 'Weapon'), + (301744, 'Weapon'), + (301745, 'Weapon'), + (301763, 'Arms'), + (301764, 'Chest'), + (301765, 'Feet'), + (301766, 'Legs'), + (301839, 'Nanoprogram'), + (301854, 'Nanoprogram'), + (301879, 'Weapon'), + (301900, 'Nanoprogram'), + (301901, 'Weapon'), + (301934, 'Weapon'), + (301935, 'Weapon'), + (302065, 'Weapon'), + (302066, 'Weapon'), + (302141, 'Nanoprogram'), + (302145, 'Nanoprogram'), + (302146, 'Nanoprogram'), + (302147, 'Nanoprogram'), + (302149, 'Nanoprogram'), + (302151, 'Nanoprogram'), + (302153, 'Nanoprogram'), + (302155, 'Nanoprogram'), + (302159, 'Nanoprogram'), + (302163, 'Weapon'), + (302164, 'Weapon'), + (302189, 'Nanoprogram'), + (302258, 'Nanoprogram'), + (302275, 'Nanoprogram'), + (302291, 'Nanoprogram'), + (302354, 'Nanoprogram'), + (302355, 'Nanoprogram'), + (302359, 'Nanoprogram'), + (302362, 'Nanoprogram'), + (302374, 'Weapon'), + (302413, 'Nanoprogram'), + (302458, 'Weapon'), + (302531, 'Nanoprogram'), + (302533, 'Nanoprogram'), + (302536, 'Nanoprogram'), + (302537, 'Nanoprogram'), + (302539, 'Nanoprogram'), + (302541, 'Nanoprogram'), + (302543, 'Nanoprogram'), + (302545, 'Nanoprogram'), + (302602, 'Weapon'), + (302722, 'Hands'), + (302723, 'Arms'), + (302724, 'Arms'), + (302725, 'Shoulders'), + (302726, 'Feet'), + (302727, 'Legs'), + (302728, 'Head'), + (302729, 'Chest'), + (302730, 'Back'), + (302731, 'Neck'), + (302841, 'Weapon'), + (302866, 'Nanoprogram'), + (302867, 'Arms'), + (302868, 'Hands'), + (302869, 'Head'), + (302870, 'Legs'), + (302871, 'Legs'), + (302872, 'Chest'), + (302873, 'Chest'), + (302874, 'Feet'), + (302875, 'Feet'), + (302876, 'Shoulders'), + (302877, 'Shoulders'), + (302878, 'Shoulders'), + (302879, 'Shoulders'), + (302880, 'Arms'), + (302881, 'Hands'), + (302882, 'Head'), + (302912, 'Neck'), + (302913, 'Neck'), + (302914, 'Neck'), + (302915, 'Neck'), + (302921, 'Neck'), + (302922, 'Neck'), + (302923, 'Hud'), + (302924, 'Hud'), + (302925, 'Hud'), + (302930, 'Deck'), + (302931, 'Deck'), + (302933, 'Weapon'), + (302934, 'Weapon'), + (302935, 'Weapon'), + (302936, 'Weapon'), + (302938, 'Weapon'), + (302939, 'Weapon'), + (302940, 'Weapon'), + (302941, 'Weapon'), + (302942, 'Weapon'), + (302943, 'Weapon'), + (302944, 'Weapon'), + (302945, 'Weapon'), + (302946, 'Weapon'), + (302947, 'Weapon'), + (302948, 'Weapon'), + (302949, 'Weapon'), + (303000, 'Weapon'), + (303036, 'Arms'), + (303037, 'Arms'), + (303038, 'Hands'), + (303039, 'Hands'), + (303040, 'Legs'), + (303041, 'Legs'), + (303042, 'Chest'), + (303043, 'Chest'), + (303044, 'Feet'), + (303045, 'Feet'), + (303046, 'Shoulders'), + (303047, 'Shoulders'), + (303048, 'Back'), + (303049, 'Back'), + (303054, 'Neck'), + (303054, 'Head'), + (303054, 'Back'), + (303054, 'Hands'), + (303054, 'Feet'), + (303054, 'Shoulders'), + (303054, 'Arms'), + (303054, 'Wrists'), + (303054, 'Fingers'), + (303058, 'Weapon'), + (303061, 'Hands'), + (303062, 'Hud'), + (303064, 'Neck'), + (303065, 'Wrists'), + (303066, 'Hud'), + (303067, 'Hud'), + (303068, 'Hud'), + (303069, 'Head'), + (303070, 'Head'), + (303093, 'Weapon'), + (303094, 'Weapon'), + (303095, 'Weapon'), + (303097, 'Weapon'), + (303103, 'Arms'), + (303104, 'Chest'), + (303105, 'Feet'), + (303106, 'Hands'), + (303107, 'Legs'), + (303108, 'Back'), + (303174, 'Head'), + (303176, 'Weapon'), + (303188, 'Util'), + (303189, 'Util'), + (303192, 'Util'), + (303209, 'Nanoprogram'), + (303236, 'Back'), + (303247, 'Head'), + (303248, 'Head'), + (303249, 'Legs'), + (303250, 'Legs'), + (303251, 'Chest'), + (303252, 'Chest'), + (303253, 'Arms'), + (303254, 'Arms'), + (303255, 'Hands'), + (303256, 'Hands'), + (303257, 'Feet'), + (303258, 'Feet'), + (303259, 'Neck'), + (303260, 'Neck'), + (303278, 'Head'), + (303283, 'Back'), + (303284, 'Back'), + (303319, 'Weapon'), + (303322, 'Weapon'), + (303380, 'Nanoprogram'), + (303445, 'Back'), + (303446, 'Back'), + (303447, 'Head'), + (303448, 'Head'), + (303449, 'Legs'), + (303450, 'Legs'), + (303451, 'Chest'), + (303452, 'Chest'), + (303453, 'Arms'), + (303454, 'Arms'), + (303455, 'Hands'), + (303456, 'Hands'), + (303457, 'Feet'), + (303458, 'Feet'), + (303459, 'Neck'), + (303460, 'Neck'), + (303471, 'Feet'), + (303472, 'Feet'), + (303489, 'Head'), + (303490, 'Head'), + (303491, 'Shoulders'), + (303492, 'Shoulders'), + (303493, 'Legs'), + (303494, 'Legs'), + (303495, 'Chest'), + (303496, 'Chest'), + (303497, 'Arms'), + (303498, 'Arms'), + (303499, 'Hands'), + (303500, 'Hands'), + (303501, 'Feet'), + (303502, 'Feet'), + (303510, 'Weapon'), + (303548, 'Head'), + (303549, 'Head'), + (303550, 'Shoulders'), + (303551, 'Shoulders'), + (303552, 'Arms'), + (303553, 'Arms'), + (303554, 'Chest'), + (303555, 'Chest'), + (303556, 'Hands'), + (303557, 'Hands'), + (303558, 'Legs'), + (303559, 'Legs'), + (303560, 'Feet'), + (303561, 'Feet'), + (303562, 'Back'), + (303563, 'Back'), + (303580, 'Hud'), + (303592, 'Hands'), + (303593, 'Hands'), + (303594, 'Arms'), + (303595, 'Arms'), + (303596, 'Chest'), + (303597, 'Chest'), + (303598, 'Legs'), + (303599, 'Legs'), + (303600, 'Feet'), + (303601, 'Feet'), + (303602, 'Head'), + (303603, 'Head'), + (303638, 'Util'), + (303639, 'Weapon'), + (303684, 'Head'), + (303685, 'Head'), + (303686, 'Legs'), + (303687, 'Legs'), + (303688, 'Chest'), + (303689, 'Chest'), + (303690, 'Arms'), + (303691, 'Arms'), + (303692, 'Hands'), + (303693, 'Hands'), + (303694, 'Feet'), + (303695, 'Feet'), + (303699, 'Weapon'), + (303700, 'Weapon'), + (303701, 'Weapon'), + (303702, 'Weapon'), + (303703, 'Weapon'), + (303704, 'Weapon'), + (303705, 'Weapon'), + (303843, 'Nanoprogram'), + (303844, 'Nanoprogram'), + (303845, 'Nanoprogram'), + (303846, 'Nanoprogram'), + (303847, 'Nanoprogram'), + (303848, 'Nanoprogram'), + (303849, 'Nanoprogram'), + (303850, 'Nanoprogram'), + (303851, 'Nanoprogram'), + (303852, 'Nanoprogram'), + (303853, 'Nanoprogram'), + (303854, 'Nanoprogram'), + (303855, 'Nanoprogram'), + (303856, 'Nanoprogram'), + (303857, 'Nanoprogram'), + (303858, 'Nanoprogram'), + (303859, 'Nanoprogram'), + (303860, 'Nanoprogram'), + (303861, 'Nanoprogram'), + (303862, 'Nanoprogram'), + (303863, 'Nanoprogram'), + (303864, 'Nanoprogram'), + (303865, 'Nanoprogram'), + (303866, 'Nanoprogram'), + (303867, 'Nanoprogram'), + (303868, 'Nanoprogram'), + (303869, 'Nanoprogram'), + (303870, 'Nanoprogram'), + (303871, 'Nanoprogram'), + (303872, 'Nanoprogram'), + (303873, 'Nanoprogram'), + (303874, 'Nanoprogram'), + (303875, 'Nanoprogram'), + (303876, 'Nanoprogram'), + (303877, 'Nanoprogram'), + (303878, 'Nanoprogram'), + (303879, 'Nanoprogram'), + (303880, 'Nanoprogram'), + (303881, 'Nanoprogram'), + (303882, 'Nanoprogram'), + (303883, 'Nanoprogram'), + (303884, 'Nanoprogram'), + (303885, 'Nanoprogram'), + (303886, 'Nanoprogram'), + (303887, 'Nanoprogram'), + (303888, 'Nanoprogram'), + (303889, 'Nanoprogram'), + (303890, 'Nanoprogram'), + (303891, 'Nanoprogram'), + (303892, 'Nanoprogram'), + (303893, 'Nanoprogram'), + (303894, 'Nanoprogram'), + (303895, 'Nanoprogram'), + (303896, 'Nanoprogram'), + (303897, 'Nanoprogram'), + (303898, 'Nanoprogram'), + (303899, 'Nanoprogram'), + (303900, 'Nanoprogram'), + (303901, 'Nanoprogram'), + (303902, 'Nanoprogram'), + (303903, 'Nanoprogram'), + (303904, 'Nanoprogram'), + (303905, 'Nanoprogram'), + (303906, 'Nanoprogram'), + (303907, 'Nanoprogram'), + (303908, 'Nanoprogram'), + (303969, 'Nanoprogram'), + (303970, 'Nanoprogram'), + (303971, 'Nanoprogram'), + (303972, 'Nanoprogram'), + (303973, 'Nanoprogram'), + (303974, 'Nanoprogram'), + (303975, 'Nanoprogram'), + (303976, 'Nanoprogram'), + (303977, 'Nanoprogram'), + (303978, 'Nanoprogram'), + (303979, 'Nanoprogram'), + (303980, 'Nanoprogram'), + (303981, 'Nanoprogram'), + (303982, 'Nanoprogram'), + (303983, 'Nanoprogram'), + (303984, 'Nanoprogram'), + (303985, 'Nanoprogram'), + (303986, 'Nanoprogram'), + (303987, 'Deck'), + (303988, 'Deck'), + (303989, 'Deck'), + (303990, 'Deck'), + (303991, 'Deck'), + (303992, 'Deck'), + (303993, 'Deck'), + (303994, 'Deck'), + (303995, 'Deck'), + (303996, 'Deck'), + (303997, 'Deck'), + (303998, 'Deck'), + (304128, 'Chest'), + (304129, 'Legs'), + (304130, 'Back'), + (304143, 'Weapon'), + (304223, 'Weapon'), + (304224, 'Head'), + (304225, 'Head'), + (304226, 'Back'), + (304227, 'Back'), + (304228, 'Legs'), + (304229, 'Legs'), + (304230, 'Chest'), + (304231, 'Chest'), + (304232, 'Arms'), + (304233, 'Arms'), + (304234, 'Hands'), + (304235, 'Hands'), + (304236, 'Feet'), + (304237, 'Feet'), + (304238, 'Head'), + (304239, 'Head'), + (304240, 'Back'), + (304241, 'Back'), + (304242, 'Legs'), + (304243, 'Legs'), + (304244, 'Chest'), + (304245, 'Chest'), + (304246, 'Arms'), + (304247, 'Arms'), + (304248, 'Hands'), + (304249, 'Hands'), + (304250, 'Feet'), + (304251, 'Feet'), + (304363, 'Nanoprogram'), + (304444, 'Head'), + (304445, 'Head'), + (304446, 'Legs'), + (304447, 'Legs'), + (304448, 'Shoulders'), + (304449, 'Shoulders'), + (304450, 'Chest'), + (304451, 'Chest'), + (304452, 'Arms'), + (304453, 'Arms'), + (304454, 'Hands'), + (304455, 'Hands'), + (304456, 'Feet'), + (304457, 'Feet'), + (304458, 'Head'), + (304459, 'Head'), + (304460, 'Legs'), + (304461, 'Legs'), + (304462, 'Shoulders'), + (304463, 'Shoulders'), + (304464, 'Chest'), + (304465, 'Chest'), + (304466, 'Arms'), + (304467, 'Arms'), + (304468, 'Hands'), + (304469, 'Hands'), + (304470, 'Feet'), + (304471, 'Feet'), + (304472, 'Back'), + (304473, 'Back'), + (304474, 'Head'), + (304475, 'Head'), + (304476, 'Legs'), + (304477, 'Legs'), + (304478, 'Shoulders'), + (304479, 'Shoulders'), + (304480, 'Chest'), + (304481, 'Chest'), + (304482, 'Arms'), + (304483, 'Arms'), + (304484, 'Hands'), + (304485, 'Hands'), + (304486, 'Feet'), + (304487, 'Feet'), + (304488, 'Back'), + (304489, 'Back'), + (304497, 'Nanoprogram'), + (304503, 'Deck'), + (304504, 'Deck'), + (304505, 'Nanoprogram'), + (304506, 'Nanoprogram'), + (304507, 'Nanoprogram'), + (304508, 'Nanoprogram'), + (304509, 'Nanoprogram'), + (304510, 'Nanoprogram'), + (304511, 'Nanoprogram'), + (304512, 'Nanoprogram'), + (304513, 'Nanoprogram'), + (304514, 'Nanoprogram'), + (304515, 'Nanoprogram'), + (304516, 'Nanoprogram'), + (304517, 'Nanoprogram'), + (304518, 'Nanoprogram'), + (304519, 'Back'), + (304520, 'Back'), + (304521, 'Head'), + (304522, 'Head'), + (304523, 'Legs'), + (304524, 'Legs'), + (304525, 'Chest'), + (304526, 'Chest'), + (304527, 'Arms'), + (304528, 'Arms'), + (304529, 'Hands'), + (304530, 'Hands'), + (304531, 'Feet'), + (304532, 'Feet'), + (304533, 'Neck'), + (304534, 'Neck'), + (304586, 'Back'), + (304608, 'Nanoprogram'), + (304609, 'Arms'), + (304610, 'Hands'), + (304611, 'Head'), + (304612, 'Legs'), + (304613, 'Chest'), + (304614, 'Feet'), + (304615, 'Back'), + (304616, 'Weapon'), + (304617, 'Head'), + (304618, 'Wrists'), + (304619, 'Shoulders'), + (304620, 'Arms'), + (304621, 'Hands'), + (304622, 'Fingers'), + (304636, 'Head'), + (304637, 'Shoulders'), + (304660, 'Head'), + (304661, 'Head'), + (304662, 'Back'), + (304663, 'Back'), + (304664, 'Legs'), + (304665, 'Legs'), + (304666, 'Chest'), + (304667, 'Chest'), + (304668, 'Arms'), + (304669, 'Arms'), + (304670, 'Hands'), + (304671, 'Hands'), + (304672, 'Feet'), + (304673, 'Feet'), + (304818, 'Head'), + (304819, 'Weapon'), + (304820, 'Back'), + (304821, 'Head'), + (304822, 'Hud'), + (304900, 'Nanoprogram'), + (304916, 'Nanoprogram'), + (304923, 'Nanoprogram'), + (305017, 'Chest'), + (305018, 'Arms'), + (305019, 'Legs'), + (305020, 'Feet'), + (305021, 'Weapon'), + (305022, 'Hud'), + (305023, 'Head'), + (305024, 'Chest'), + (305025, 'Hud'), + (305026, 'Weapon'), + (305028, 'Fingers'), + (305029, 'Fingers'), + (305030, 'Weapon'), + (305031, 'Arms'), + (305032, 'Weapon'), + (305033, 'Back'), + (305034, 'Weapon'), + (305035, 'Weapon'), + (305037, 'Back'), + (305038, 'Shoulders'), + (305039, 'Hands'), + (305250, 'Nanoprogram'), + (305292, 'Nanoprogram'), + (305322, 'Nanoprogram'), + (305336, 'Nanoprogram'), + (305465, 'Back'), + (305466, 'Back'), + (305467, 'Back'), + (305468, 'Back'), + (305469, 'Back'), + (305470, 'Back'), + (305471, 'Head'), + (305472, 'Head'), + (305473, 'Head'), + (305474, 'Head'), + (305475, 'Head'), + (305476, 'Shoulders'), + (305478, 'Shoulders'), + (305480, 'Hands'), + (305481, 'Feet'), + (305482, 'Arms'), + (305483, 'Chest'), + (305484, 'Hands'), + (305485, 'Head'), + (305486, 'Legs'), + (305487, 'Hands'), + (305488, 'Fingers'), + (305489, 'Fingers'), + (305490, 'Fingers'), + (305491, 'Fingers'), + (305493, 'Fingers'), + (305495, 'Fingers'), + (305496, 'Fingers'), + (305498, 'Neck'), + (305498, 'Back'), + (305498, 'Shoulders'), + (305498, 'Arms'), + (305498, 'Wrists'), + (305498, 'Fingers'), + (305499, 'Neck'), + (305499, 'Back'), + (305499, 'Shoulders'), + (305499, 'Arms'), + (305499, 'Wrists'), + (305499, 'Fingers'), + (305500, 'Wrists'), + (305516, 'Deck'), + (305517, 'Deck'), + (305518, 'Deck'), + (305519, 'Deck'), + (305520, 'Weapon'), + (305521, 'Weapon'), + (305522, 'Weapon'), + (305523, 'Weapon'), + (305524, 'Weapon'), + (305530, 'Weapon'), + (305588, 'Head'), + (305589, 'Head'), + (305590, 'Shoulders'), + (305591, 'Shoulders'), + (305592, 'Arms'), + (305593, 'Arms'), + (305594, 'Chest'), + (305595, 'Chest'), + (305596, 'Hands'), + (305597, 'Hands'), + (305598, 'Legs'), + (305599, 'Legs'), + (305600, 'Feet'), + (305601, 'Feet'), + (305602, 'Back'), + (305603, 'Back'), + (305605, 'Weapon'), + (305768, 'Nanoprogram'), + (305772, 'Nanoprogram'), + (305780, 'Nanoprogram'), + (305807, 'Nanoprogram'), + (305962, 'Back'), + (305963, 'Chest'), + (305964, 'Arms'), + (305965, 'Weapon'), + (305967, 'Chest'), + (305968, 'Chest'), + (305969, 'Arms'), + (305970, 'Legs'), + (305971, 'Hands'), + (305972, 'Head'), + (305973, 'Feet'), + (305974, 'Hud'), + (305979, 'Head'), + (305980, 'Weapon'), + (305981, 'Util'), + (305982, 'Back'), + (305983, 'Chest'), + (305984, 'Util'), + (305984, 'Hud'), + (305986, 'Hud'), + (305987, 'Legs'), + (305988, 'Weapon'), + (305989, 'Util'), + (305990, 'Hands'), + (305993, 'Weapon'), + (305995, 'Feet'), + (305997, 'Back'), + (306001, 'Deck'), + (306002, 'Hud'), + (306003, 'Back'), + (306004, 'Weapon'), + (306026, 'Arms'), + (306080, 'Head'), + (306081, 'Head'), + (306082, 'Shoulders'), + (306083, 'Shoulders'), + (306084, 'Arms'), + (306085, 'Arms'), + (306086, 'Chest'), + (306087, 'Chest'), + (306088, 'Hands'), + (306089, 'Hands'), + (306090, 'Legs'), + (306091, 'Legs'), + (306092, 'Feet'), + (306093, 'Feet'), + (306094, 'Back'), + (306095, 'Back'), + (306172, 'Fingers'), + (306173, 'Fingers'), + (306174, 'Weapon'), + (306175, 'Weapon'), + (306176, 'Util'), + (306201, 'Weapon'); diff --git a/modules/standard/items/items_controller.py b/modules/standard/items/items_controller.py new file mode 100644 index 0000000..86c6b87 --- /dev/null +++ b/modules/standard/items/items_controller.py @@ -0,0 +1,232 @@ +import html + +from core.chat_blob import ChatBlob +from core.command_param_types import Int, Any, NamedParameters +from core.db import DB +from core.decorators import instance, command +from core.text import Text + + +@instance() +class ItemsController: + PAGE_SIZE = 30 + + def inject(self, registry): + self.db: DB = registry.get_instance("db") + self.text: Text = registry.get_instance("text") + self.command_alias_service = registry.get_instance("command_alias_service") + + def pre_start(self): + self.db.load_sql_file(self.module_dir + "/" + "aodb.sql", pre_optimized=True) + self.db.create_view("aodb") + + def start(self): + self.command_alias_service.add_alias("item", "items") + self.command_alias_service.add_alias("i", "items") + + @command(command="items", params=[Int("item_id")], access_level="member", + description="Search for an item by item id") + def items_id_cmd(self, _, item_id): + item = self.get_by_item_id(item_id) + if item: + return self.format_items_response(None, str(item_id), [item], 0, 1) + else: + return f"Could not find item with ID {item_id:d}." + + @command(command="items", + params=[Int("ql", is_optional=True), Any("search"), NamedParameters(["page"])], + access_level="member", + description="Search for an item") + def items_search_cmd(self, _, ql, search, named_params): + page = int(named_params.page or "1") + + search = html.unescape(search) + + offset = (page - 1) * self.PAGE_SIZE + + all_items = self.find_items(search, ql) + + return self.format_items_response(ql, search, all_items, offset, page) + + def format_items_response(self, ql, search, all_items, offset, page): + items = self.sort_items(search, all_items)[offset:offset + self.PAGE_SIZE] + cnt = len(items) + + if cnt == 0: + if ql: + return f"No QL {ql:d} items found matching {search}." + else: + return f"No items found matching {search}." + elif cnt == 1: + item = items[0] + return self.format_single_item([item], ql) + else: + blob = "" + # blob += "Version: %s\n" % "unknown" + if ql: + blob += f"Search: QL {ql:d} {search}\n" + else: + blob += f"Search: {search}\n" + blob += "\n" + + if page > 1: + blob += " " + self.text.make_chatcmd(f"<< Page {page - 1:d}", + self.get_chat_command(ql, search, page - 1)) + if offset + self.PAGE_SIZE < len(all_items): + blob += " Page " + str(page) + blob += " " + self.text.make_chatcmd(f"Page {page + 1:d} >>", + self.get_chat_command(ql, search, page + 1)) + if self.PAGE_SIZE < len(all_items): + blob += "\n" + blob += "\n" + + blob += self.format_items(items, ql) + # noinspection LongLine + blob += f"\nItem DB rips created using the {self.text.make_chatcmd('Budabot Items Extractor', '/start https://github.com/Budabot/ItemsExtractor')} tool." + + return ChatBlob( + f"Item Search Results ({offset + 1:d} - {min(offset + self.PAGE_SIZE, len(all_items)):d} " + f"of {len(all_items):d})", blob) + + def format_items(self, items, ql=None): + blob = "" + for item_group in ItemIter(items): + blob += "" + blob += self.text.make_image(item_group[0].icon) + "\n" + blob += self.format_single_item(item_group, ql) + blob += "\n\n" + + return blob + + def format_single_item(self, item_group, ql): + msg = "" + msg += item_group[0].name + + for item in reversed(item_group): + if ql: + if item.lowql != item.highql: + msg += f" {self.text.make_item(item.lowid, item.highid, ql, ql)}" + msg += f" [{self.text.make_item(item.lowid, item.highid, item.lowql, item.lowql)} - " \ + f"{self.text.make_item(item.lowid, item.highid, item.highql, item.highql)}]" + elif item.lowql == item.highql: + msg += f" [{self.text.make_item(item.lowid, item.highid, item.highql, item.highql)}]" + elif item.lowql == item.highql: + msg += f" [{self.text.make_item(item.lowid, item.highid, item.highql, item.highql)}]" + else: + msg += f" [{self.text.make_item(item.lowid, item.highid, item.lowql, item.lowql)} " \ + f"- {self.text.make_item(item.lowid, item.highid, item.highql, item.highql)}]" + + return msg + + def find_items(self, name, ql=None): + params = [name] + sql = "SELECT * FROM aodb WHERE name LIKE ? " + if ql: + sql += " AND lowql <= ? AND highql >= ?" + params.append(ql) + params.append(ql) + + sql += " UNION SELECT * FROM aodb WHERE name ?" % len(params) + params.append(name) + + if ql: + sql += " AND lowql <= ? AND highql >= ?" + params.append(ql) + params.append(ql) + + sql += " ORDER BY name ASC, highql DESC" + + return self.db.query(sql, params, extended_like=True) + + def sort_items(self, search, items): + search = search.lower() + search_parts = search.split(" ") + + # if item name matches search exactly (case-insensitive) then priority = 0 + # if item name contains every whole word from search (case-insensitive) then priority = 1 + # +1 priority for each whole word from search that item name does not contain + + for row in items: + row.priority = 0 + row_name = row.name.lower() + if row_name != search: + row.priority += 1 + row_parts = row_name.split(" ") + for search_part in search_parts: + if search_part not in row_parts: + row.priority += 1 + + items.sort(key=lambda x: x.priority, reverse=False) + + return items + + def get_by_item_id(self, item_id, ql=None): + if ql: + return self.db.query_single("SELECT * FROM aodb " + "WHERE (highid = ? OR lowid = ?) " + "AND (lowql <= ? AND highql >= ?) " + "ORDER BY highid = ? DESC " + "LIMIT 1", + [item_id, item_id, ql, ql, item_id]) + else: + return self.db.query_single("SELECT * FROM aodb " + "WHERE highid = ? OR lowid = ? " + "ORDER BY highid = ? DESC " + "LIMIT 1", [item_id, item_id, item_id]) + + def find_by_name(self, name, ql=None): + if ql: + return self.db.query_single("SELECT * FROM aodb " + "WHERE name = ? " + "AND lowql <= ? " + "AND highql >= ? " + "ORDER BY highid DESC " + "LIMIT 1", + [name, ql, ql]) + else: + return self.db.query_single("SELECT * FROM aodb " + "WHERE name = ? " + "ORDER BY highql DESC, " + "highid DESC " + "LIMIT 1", + [name]) + + def get_chat_command(self, ql, search, page): + if ql: + return f"/tell items {ql:d} {search} --page={page:d}" + else: + return f"/tell items {search} --page={page:d}" + + +class ItemIter: + """Iterator that groups items with the same name and icon together.""" + + def __init__(self, items): + self.items = items + self.current_index = 0 + + def __iter__(self): + return self + + def __next__(self): + num_items = len(self.items) + if self.current_index >= num_items: + raise StopIteration + else: + grouped = [] + + item = self.items[self.current_index] + self.current_index += 1 + grouped.append(item) + current_item = item + while self.current_index < num_items: + item = self.items[self.current_index] + if item.name != current_item.name \ + or item.icon != current_item.icon \ + or item.highql == current_item.highql: + break + current_item = item + grouped.append(item) + self.current_index += 1 + + return grouped diff --git a/modules/standard/items/skills.sql b/modules/standard/items/skills.sql new file mode 100644 index 0000000..c8dba6d --- /dev/null +++ b/modules/standard/items/skills.sql @@ -0,0 +1,155 @@ +# noinspection LongLineForFile + +DROP TABLE IF EXISTS skills; +CREATE TABLE IF NOT EXISTS skills +( + id INT NOT NULL PRIMARY KEY, + name VARCHAR(50) NOT NULL, + common_name VARCHAR(50) NOT NULL +); +INSERT INTO skills (id, name, common_name) +VALUES (318, '% Add. Nano Cost', ''), + (319, '% Add. Xp', ''), + (102, '1h Blunt', '1 handed blunt'), + (103, '1h Edged', '1 handed edged'), + (107, '2h Blunt', '2 handed blunt'), + (105, '2h Edged', '2 handed edged'), + (277, 'Add All Def.', ''), + (276, 'Add All Off.', ''), + (281, 'Add. Chem. Dam.', ''), + (311, 'Add. Cold Dam.', ''), + (280, 'Add. Energy Dam.', ''), + (316, 'Add. Fire Dam.', ''), + (279, 'Add. Melee Dam.', ''), + (315, 'Add. Nano Dam.', ''), + (317, 'Add. Poison Dam.', ''), + (278, 'Add. Proj. Dam.', ''), + (282, 'Add. Rad. Dam.', ''), + (137, 'Adventuring', ''), + (51, 'Aggdef', ''), + (201, 'Aggressiveness', ''), + (17, 'Agility', ''), + (151, 'Aimed Shot', ''), + (116, 'Assault Rif', 'Assault Rifle'), + (22, 'Attack rating', ''), + (128, 'Bio Metamor', 'Biological Metamorphosis'), + (152, 'Body Dev.', 'Body Development'), + (111, 'Bow', ''), + (121, 'Bow Spc Att', 'Bow Special Attack'), + (142, 'Brawling', ''), + (165, 'Break&Entry', 'Breaking and Entering'), + (148, 'Burst', ''), + (93, 'Chemical AC', ''), + (163, 'Chemistry', ''), + (95, 'Cold AC', ''), + (161, 'Comp. Liter', 'Computer Literacy'), + (164, 'Concealment', ''), + (391, 'Critical Decrease', ''), + (379, 'CriticalIncrease', ''), + (35, 'Damage to Pet', ''), + (39, 'Damage To Pet Damage Multiplier', ''), + (383, 'Decreased Nano-Interrupt Modifier %', ''), + (145, 'Deflect', ''), + (144, 'Dimach', ''), + (536, 'Direct Nano Damage Efficiency', ''), + (96, 'Disease AC', ''), + (154, 'Dodge-Rng', 'Dodge Range'), + (153, 'Duck-Exp', 'Duck Explosives'), + (126, 'Elec. Engi', 'Electrical Engineering'), + (92, 'Energy AC', ''), + (155, 'Evade-ClsC', 'Evade Close Combat'), + (147, 'Fast Attack', ''), + (97, 'Fire AC', ''), + (123, 'First Aid', ''), + (150, 'Fling Shot', ''), + (45, 'Free deck slot', ''), + (167, 'Full Auto', ''), + (109, 'Grenade', ''), + (689, 'Heal Reactivity', ''), + (343, 'HealDelta', ''), + (535, 'Healing Efficiency', ''), + (110, 'Heavy Weapons', ''), + (90, 'Imp/Proj AC', 'Projectile AC'), + (19, 'Intelligence', ''), + (100, 'Martial Arts', ''), + (127, 'Matt.Metam', 'Matter Metamorphosis'), + (130, 'Matter Crea', 'Matter Creation'), + (1, 'Max Health', ''), + (221, 'Max Nano', ''), + (181, 'Max NCU', ''), + (478, 'MaxReflectedChemicalDmg', ''), + (480, 'MaxReflectedColdDmg', ''), + (477, 'MaxReflectedEnergyDmg', ''), + (482, 'MaxReflectedFireDmg', ''), + (476, 'MaxReflectedMeleeDmg', ''), + (481, 'MaxReflectedNanoDmg', ''), + (483, 'MaxReflectedPoisonDmg', ''), + (475, 'MaxReflectedProjectileDmg', ''), + (479, 'MaxReflectedRadiationDmg', ''), + (125, 'Mech. Engi', 'Mechanical Engineering'), + (104, 'Melee Ener.', 'Melee Energy'), + (118, 'Melee. Init.', 'Melee Initiative'), + (91, 'Melee/ma AC', 'Melee/Martial Arts AC'), + (114, 'MG / SMG', ''), + (101, 'Mult. Melee', 'Multi Melee'), + (134, 'Multi Ranged', ''), + (132, 'Nano Pool', ''), + (160, 'Nano Progra', 'Nano Programming'), + (168, 'Nano Resist', ''), + (149, 'NanoC. Init.', 'Nano Cast Initiative'), + (364, 'NanoDelta', 'Nano Delta'), + (136, 'Perception', ''), + (159, 'Pharma Tech', ''), + (120, 'Physic. Init', 'Physical Initiative'), + (106, 'Piercing', ''), + (112, 'Pistol', ''), + (21, 'Psychic', ''), + (129, 'Psycho Modi', 'Pychological Modifications'), + (162, 'Psychology', ''), + (157, 'Quantum FT', ''), + (94, 'Radiation AC', ''), + (133, 'Ranged Ener', 'Ranged Energy'), + (119, 'Ranged. Init.', 'Ranged Initiative'), + (381, 'RangeInc. NF', 'Ranged Increase Nano'), + (380, 'RangeInc. Weapon', 'Ranged Increase Weapon'), + (208, 'ReflectChemicalAC', ''), + (217, 'ReflectColdAC', ''), + (207, 'ReflectEnergyAC', ''), + (219, 'ReflectFireAC', ''), + (206, 'ReflectMeleeAC', ''), + (218, 'ReflectNanoAC', ''), + (225, 'ReflectPoisonAC', ''), + (205, 'ReflectProjectileAC', ''), + (216, 'ReflectRadiationAC', ''), + (593, 'Regain XP Percentage', ''), + (113, 'Rifle', ''), + (143, 'Riposte', ''), + (156, 'Run Speed', ''), + (360, 'Scale', ''), + (20, 'Sense', ''), + (122, 'Sensory Impr', 'Sensory Improvement'), + (108, 'Sharp Obj', 'Sharp Objects'), + (229, 'ShieldChemicalAC', ''), + (231, 'ShieldColdAC', ''), + (228, 'ShieldEnergyAC', ''), + (233, 'ShieldFireAC', ''), + (227, 'ShieldMeleeAC', ''), + (232, 'ShieldNanoAC', ''), + (234, 'ShieldPoisonAC', ''), + (226, 'ShieldProjectileAC', ''), + (230, 'ShieldRadiationAC', ''), + (115, 'Shotgun', ''), + (382, 'SkillLockModifier', ''), + (146, 'Sneak Atck', 'Sneak Attack'), + (18, 'Stamina', ''), + (16, 'Strength', ''), + (138, 'Swimming', ''), + (131, 'Time&Space', ''), + (135, 'Trap Disarm.', ''), + (124, 'Treatment', ''), + (141, 'Tutoring', ''), + (180, 'Used NCU', ''), + (139, 'Vehicle Air', ''), + (166, 'Vehicle Ground', ''), + (117, 'Vehicle Water', ''), + (158, 'Weapon Smt', 'Weapon Smithing'); \ No newline at end of file diff --git a/modules/standard/items/what_buffs_controller.py b/modules/standard/items/what_buffs_controller.py new file mode 100644 index 0000000..51dc461 --- /dev/null +++ b/modules/standard/items/what_buffs_controller.py @@ -0,0 +1,144 @@ +from core.chat_blob import ChatBlob +from core.command_param_types import Any, Options +from core.db import DB +from core.decorators import instance, command +from core.text import Text + + +@instance() +class WhatBuffsController: + def inject(self, registry): + self.db: DB = registry.get_instance("db") + self.text: Text = registry.get_instance("text") + self.command_alias_service = registry.get_instance("command_alias_service") + + def pre_start(self): + self.db.load_sql_file(self.module_dir + "/" + "item_buffs.sql", pre_optimized=True) + self.db.create_view("item_buffs") + self.db.load_sql_file(self.module_dir + "/" + "item_types.sql", pre_optimized=True) + self.db.create_view("item_types") + self.db.load_sql_file(self.module_dir + "/" + "skills.sql", pre_optimized=True) + self.db.create_view("skills") + + def start(self): + self.command_alias_service.add_alias("buffs", "whatbuffs") + + @command(command="whatbuffs", params=[], access_level="member", + description="Find items or nanos that buff a skill (or ability)") + def whatbuffs_list_cmd(self, _): + data = self.db.query("SELECT name FROM skills ORDER BY name") + blob = "" + for row in data: + blob += self.text.make_tellcmd(row.name, f"whatbuffs {row.name}") + "\n" + + blob += self.get_footer() + return ChatBlob("Whatbuffs Skill List", blob) + + @command(command="whatbuffs", + params=[ + Any("skill"), + Options(["arms", "back", "chest", "deck", "feet", "fingers", + "hands", "head", "hud", "legs", "nanoprogram", + "neck", "shoulders", "unknown", "util", "weapon", "wrists", "all"])], + access_level="member", + description="Find items or nanos that buff a skill (or ability) for a particular item type") + def whatbuffs_detail_cmd(self, _, skill_name, item_type): + item_type = item_type.capitalize() + + return self.show_search_results(item_type, skill_name) + + @command(command="whatbuffs", params=[Any("skill")], access_level="member", + description="Find items or nanos that buff a skill (or ability)") + def whatbuffs_skill_cmd(self, _, skill_name): + skills = self.search_for_skill(skill_name) + if len(skills) == 0: + return "Could not find skill %s." % skill_name + elif len(skills) == 1: + skill = skills.pop() + + data = self.db.query("SELECT i.item_type, COUNT(1) AS cnt " + "FROM aodb " + "JOIN item_types i ON aodb.highid = i.item_id " + "JOIN item_buffs b ON aodb.highid = b.item_id " + "JOIN skills s ON b.attribute_id = s.id " + "WHERE s.id = ? " + "GROUP BY item_type " + "HAVING cnt > 0 " + "ORDER BY item_type", [skill.id]) + + blob = "" + total_count = 0 + for row in data: + total_count += row.cnt + for row in data: + blob += f'{self.text.zfill(row.cnt, total_count)} - ' \ + f'{self.text.make_tellcmd(row.item_type, f"whatbuffs {skill.name} {row.item_type}")}\n' + + blob += self.get_footer() + return ChatBlob(f"Whatbuffs {skill.name} - Choose Type", blob) + else: + blob = "Choose a skill:\n\n" + for skill in skills: + blob += self.text.make_tellcmd(skill.name, f"whatbuffs {skill.name}") + "\n" + + blob += self.get_footer() + return ChatBlob("Whatbuffs - Choose Skill", blob) + + def search_for_skill(self, skill_name): + skill_name = skill_name.lower() + + data = self.db.query( + "SELECT id, name FROM skills WHERE name ? OR common_name ?", + [skill_name, skill_name], extended_like=True) + + # check for exact match first, in order to disambiguate between Bow and Bot Special Attack + for row in data: + if row.name.lower() == skill_name: + return [row] + + return data + + def show_search_results(self, item_type, skill_name): + skills = self.search_for_skill(skill_name) + + if len(skills) == 0: + return "Could not find skill %s." % skill_name + elif len(skills) == 1: + skill = skills.pop() + return self.get_search_results(item_type, skill) + else: + blob = "" + for skill in skills: + blob += self.text.make_tellcmd(skill.name, "whatbuffs %s %s" % (skill.name, item_type)) + "\n" + + return ChatBlob("Whatbuffs - Choose Skill", blob) + + def get_search_results(self, item_type, skill): + data = self.db.query("SELECT aodb.*, b.amount, i.item_type " + "FROM aodb " + "JOIN item_types i ON aodb.highid = i.item_id " + "JOIN item_buffs b ON aodb.highid = b.item_id " + "JOIN skills s ON b.attribute_id = s.id " + "WHERE i.item_type LIKE ? AND s.id = ? " + "ORDER BY item_type, amount DESC", ["%" if item_type == "All" else item_type, skill.id]) + + if len(data) == 0: + return f"No items found of type {item_type} " \ + f"that buff {skill.name}." + else: + current_item_type = "" + blob = "" + + for row in data: + if current_item_type != row.item_type: + blob += f"\n\n{row.item_type}\n" + current_item_type = row.item_type + blob += f"{self.text.zfill(row.amount, data[0].amount)} - " \ + f"{self.text.make_item(row.lowid, row.highid, row.highql, row.name)}\n" + + blob += self.get_footer() + + return ChatBlob(f"Whatbuffs - {skill.name} {item_type} ({len(data):d})", blob) + + def get_footer(self): + return "\nItem DB Extraction Info provided by Unk" diff --git a/modules/standard/level/alien_level.sql b/modules/standard/level/alien_level.sql new file mode 100644 index 0000000..c51a843 --- /dev/null +++ b/modules/standard/level/alien_level.sql @@ -0,0 +1,43 @@ +# noinspection LongLineForFile + +# noinspection LongLineForFile + +DROP TABLE IF EXISTS alien_level; +CREATE TABLE IF NOT EXISTS alien_level +( + alien_level SMALLINT NOT NULL PRIMARY KEY, + axp INT NOT NULL, + defender_rank VARCHAR(30) NOT NULL, + min_level SMALLINT NOT NULL +); +INSERT INTO alien_level +VALUES (1, 1500, 'Fledgling', 5), + (2, 9000, 'Amateur', 15), + (3, 22500, 'Beginner', 25), + (4, 42000, 'Starter', 35), + (5, 67500, 'Newcomer', 45), + (6, 99000, 'Student', 55), + (7, 136500, 'Common', 65), + (8, 180000, 'Intermediate', 75), + (9, 229500, 'Mediocre', 85), + (10, 285000, 'Fair', 95), + (11, 346500, 'Able', 105), + (12, 414000, 'Accomplished', 110), + (13, 487500, 'Adept', 115), + (14, 567000, 'Qualified', 120), + (15, 697410, 'Competent', 125), + (16, 857814, 'Suited', 130), + (17, 1055112, 'Talented', 135), + (18, 1297787, 'Trustworthy', 140), + (19, 1596278, 'Supporter', 145), + (20, 1931497, 'Backer', 150), + (21, 2298481, 'Defender', 155), + (22, 2689223, 'Challenger', 160), + (23, 3092606, 'Patron', 165), + (24, 3494645, 'Protector', 170), + (25, 3879056, 'Medalist', 175), + (26, 4228171, 'Champ', 180), + (27, 4608707, 'Hero', 185), + (28, 5023490, 'Guardian', 190), + (29, 5475604, 'Vanquisher', 195), + (30, 5968409, 'Vindicator', 200); diff --git a/modules/standard/level/level.sql b/modules/standard/level/level.sql new file mode 100644 index 0000000..4c207e4 --- /dev/null +++ b/modules/standard/level/level.sql @@ -0,0 +1,242 @@ +# noinspection LongLineForFile + +# noinspection LongLineForFile + +DROP TABLE IF EXISTS level; +CREATE TABLE IF NOT EXISTS level +( + level SMALLINT NOT NULL PRIMARY KEY, + team_min SMALLINT NOT NULL, + team_max SMALLINT NOT NULL, + pvp_min SMALLINT NOT NULL, + pvp_max SMALLINT NOT NULL, + xpsk INT NOT NULL, + tokens SMALLINT NOT NULL, + daily_mission_xp SMALLINT NOT NULL, + missions TEXT NOT NULL, + max_ai_level SMALLINT NOT NULL, + max_le_level SMALLINT NOT NULL, + mob_min SMALLINT NOT NULL, + mob_max SMALLINT NOT NULL +); +INSERT INTO `level` +VALUES (1, 1, 7, 1, 5, 1450, 1, 100, '1,1,1,1,1,1,1,1,1,1,1', 0, 1, 1, 4), + (2, 1, 8, 1, 6, 2600, 1, 100, '1,1,1,1,1,2,2,2,2,3,3', 0, 1, 1, 5), + (3, 1, 9, 1, 7, 3100, 1, 100, '2,2,2,2,2,3,3,3,3,4,5', 0, 1, 1, 6), + (4, 1, 10, 1, 8, 4000, 1, 100, '2,3,3,3,3,4,4,4,5,6,7', 0, 1, 1, 7), + (5, 1, 11, 1, 9, 4500, 1, 100, '3,3,4,4,4,5,5,6,6,7,8', 1, 1, 1, 8), + (6, 1, 12, 2, 10, 5000, 1, 100, '4,4,4,5,5,6,6,7,7,9,10', 1, 1, 2, 9), + (7, 1, 13, 3, 11, 5500, 1, 100, '4,5,5,5,6,7,7,8,9,10,12', 1, 1, 3, 10), + (8, 2, 14, 4, 12, 6000, 1, 100, '5,6,6,6,7,8,8,9,10,12,14', 1, 1, 4, 11), + (9, 3, 15, 5, 13, 6500, 1, 100, '6,6,7,7,8,9,9,10,11,13,16', 1, 1, 5, 12), + (10, 4, 17, 6, 15, 7000, 1, 100, '7,7,8,8,9,10,11,12,13,15,17', 1, 1, 5, 13), + (11, 5, 18, 7, 16, 7700, 1, 100, '7,8,8,9,9,11,12,13,14,16,19', 1, 1, 6, 14), + (12, 6, 19, 8, 17, 8300, 1, 100, '8,9,9,10,10,12,13,14,15,18,21', 1, 1, 7, 15), + (13, 7, 20, 9, 18, 8900, 1, 100, '9,9,10,11,11,13,14,15,16,19,23', 1, 1, 8, 16), + (14, 8, 21, 10, 19, 9600, 1, 100, '9,10,11,11,12,14,15,16,18,21,25', 1, 1, 9, 17), + (15, 9, 24, 10, 21, 10400, 2, 100, '10,11,12,12,13,15,16,18,19,22,26', 2, 1, 9, 19), + (16, 10, 25, 11, 22, 11000, 2, 100, '11,12,12,13,14,16,17,19,20,24,28', 2, 1, 10, 20), + (17, 10, 26, 12, 23, 11900, 2, 100, '11,12,13,14,15,17,18,20,22,25,30', 2, 1, 11, 21), + (18, 11, 27, 13, 24, 12700, 2, 100, '12,13,14,15,16,18,19,21,23,27,32', 2, 1, 12, 22), + (19, 12, 28, 14, 25, 13700, 2, 100, '13,14,15,16,17,19,20,22,24,28,34', 2, 1, 13, 23), + (20, 13, 29, 15, 26, 15400, 2, 100, '14,15,16,17,18,20,22,24,26,30,35', 2, 1, 14, 24), + (21, 14, 30, 15, 27, 16400, 2, 100, '14,15,16,17,18,21,23,25,27,31,37', 2, 1, 15, 25), + (22, 15, 32, 16, 29, 17600, 2, 100, '15,16,17,18,19,22,24,26,28,33,39', 2, 1, 15, 27), + (23, 15, 33, 17, 30, 18800, 2, 100, '16,17,18,19,20,23,25,27,29,34,41', 2, 1, 16, 28), + (24, 15, 34, 18, 31, 20100, 2, 100, '16,18,19,20,21,24,26,28,31,36,42', 2, 1, 17, 29), + (25, 16, 35, 19, 32, 21500, 2, 100, '17,18,20,21,22,25,27,30,32,37,44', 3, 1, 18, 30), + (26, 17, 38, 20, 34, 22900, 2, 100, '18,19,20,22,23,26,28,31,33,39,46', 3, 1, 19, 32), + (27, 18, 39, 21, 35, 24500, 2, 100, '18,20,21,22,24,27,29,32,35,40,48', 3, 1, 20, 33), + (28, 19, 40, 22, 36, 26100, 2, 100, '19,21,22,23,25,28,30,33,36,42,50', 3, 1, 20, 34), + (29, 20, 41, 22, 37, 27800, 2, 100, '20,21,23,24,26,29,31,34,37,43,51', 3, 1, 21, 35), + (30, 21, 43, 23, 39, 30900, 2, 100, '21,22,24,25,27,30,33,36,39,45,53', 3, 1, 22, 36), + (31, 22, 44, 24, 40, 33000, 2, 100, '21,23,24,26,27,31,34,37,40,46,55', 3, 1, 23, 38), + (32, 22, 45, 25, 41, 35100, 2, 100, '22,24,25,27,28,32,35,38,41,48,57', 3, 1, 23, 39), + (33, 23, 46, 26, 42, 37400, 2, 100, '23,24,26,28,29,33,36,39,42,49,59', 3, 1, 24, 40), + (34, 24, 49, 26, 44, 39900, 2, 100, '23,25,27,28,30,34,37,40,44,51,60', 3, 1, 25, 41), + (35, 25, 50, 27, 45, 42400, 2, 100, '24,26,28,29,31,35,38,42,45,52,62', 4, 1, 26, 42), + (36, 26, 51, 28, 46, 45100, 2, 100, '25,27,28,30,32,36,39,43,46,54,64', 4, 1, 26, 44), + (37, 26, 52, 29, 47, 47900, 2, 100, '25,27,29,31,33,37,40,44,48,55,66', 4, 1, 27, 45), + (38, 26, 54, 30, 49, 50900, 2, 100, '26,28,30,32,34,38,41,45,49,57,68', 4, 1, 28, 46), + (39, 27, 55, 30, 50, 54000, 2, 100, '27,29,31,33,35,39,42,46,50,58,69', 4, 1, 29, 47), + (40, 28, 56, 31, 51, 57400, 2, 100, '28,30,32,34,36,40,44,48,52,60,71', 4, 1, 29, 48), + (41, 29, 57, 32, 52, 60900, 2, 100, '28,30,32,34,36,41,45,49,53,61,73', 4, 1, 30, 50), + (42, 30, 60, 33, 54, 64500, 2, 100, '29,31,33,35,37,42,46,50,54,63,75', 4, 1, 31, 51), + (43, 30, 61, 34, 55, 68400, 2, 100, '30,32,34,36,38,43,47,51,55,64,77', 4, 1, 32, 52), + (44, 31, 62, 34, 56, 76400, 2, 100, '30,33,35,37,39,44,48,52,57,66,78', 4, 1, 32, 53), + (45, 32, 63, 35, 57, 81000, 2, 100, '31,33,36,38,40,45,49,54,58,67,80', 5, 1, 33, 54), + (46, 33, 65, 36, 59, 85900, 2, 100, '32,34,36,39,41,46,50,55,59,69,82', 5, 1, 34, 56), + (47, 34, 66, 37, 60, 91000, 2, 100, '32,35,37,39,42,47,51,56,61,70,84', 5, 1, 35, 57), + (48, 34, 67, 38, 61, 96400, 2, 100, '33,36,38,40,43,48,52,57,62,72,85', 5, 1, 35, 58), + (49, 34, 68, 38, 62, 101900, 2, 100, '34,36,39,41,44,49,53,58,63,73,87', 5, 1, 36, 59), + (50, 35, 71, 39, 64, 108000, 3, 100, '35,37,40,42,45,50,55,60,65,75,89', 5, 2, 37, 60), + (51, 36, 72, 40, 65, 114300, 3, 100, '35,38,40,43,45,51,56,61,66,76,91', 5, 2, 37, 62), + (52, 37, 73, 41, 66, 120800, 3, 100, '36,39,41,44,46,52,57,62,67,78,93', 5, 2, 38, 63), + (53, 38, 74, 42, 67, 127700, 3, 100, '37,39,42,45,47,53,58,63,68,79,94', 5, 2, 39, 64), + (54, 38, 76, 42, 69, 135000, 3, 100, '37,40,43,45,48,54,59,64,70,81,96', 5, 2, 40, 65), + (55, 39, 77, 43, 70, 142600, 3, 100, '38,41,44,46,49,55,60,66,71,82,98', 6, 2, 40, 66), + (56, 40, 78, 44, 71, 150700, 3, 100, '39,42,44,47,50,56,61,67,72,84,100', 6, 2, 41, 68), + (57, 41, 79, 45, 72, 161900, 3, 100, '39,42,45,48,51,57,62,68,74,85,102', 6, 2, 42, 69), + (58, 42, 82, 46, 74, 167800, 3, 100, '40,43,46,49,52,58,63,69,75,87,103', 6, 2, 43, 70), + (59, 42, 83, 46, 75, 177100, 3, 100, '41,44,47,50,53,59,64,70,76,88,105', 6, 2, 43, 71), + (60, 42, 84, 47, 76, 203500, 3, 100, '42,45,48,51,54,60,66,72,78,90,107', 6, 2, 44, 72), + (61, 43, 85, 48, 77, 214700, 3, 100, '42,45,48,51,54,61,67,73,79,91,109', 6, 2, 45, 74), + (62, 44, 87, 49, 79, 226700, 3, 100, '43,46,49,52,55,62,68,74,80,93,111', 6, 2, 46, 75), + (63, 45, 88, 50, 80, 239100, 3, 100, '44,47,50,53,56,63,69,75,81,94,112', 6, 2, 46, 76), + (64, 46, 89, 50, 81, 251900, 3, 100, '44,48,51,54,57,64,70,76,83,96,114', 6, 2, 47, 77), + (65, 46, 90, 51, 82, 265700, 3, 100, '45,48,52,55,58,65,71,78,84,97,116', 7, 2, 48, 78), + (66, 47, 93, 52, 84, 280000, 3, 100, '46,49,52,56,59,66,72,79,85,99,118', 7, 2, 49, 80), + (67, 48, 94, 53, 85, 294800, 3, 100, '46,50,53,56,60,67,73,80,87,100,120', 7, 2, 49, 81), + (68, 49, 95, 54, 86, 310600, 3, 100, '47,51,54,57,61,68,74,81,88,102,121', 7, 2, 50, 82), + (69, 50, 96, 54, 87, 327000, 3, 100, '48,51,55,58,62,69,75,82,89,103,123', 7, 2, 51, 83), + (70, 50, 98, 55, 89, 344400, 3, 100, '49,52,56,59,63,70,77,84,91,105,125', 7, 2, 52, 84), + (71, 50, 99, 56, 90, 362300, 3, 100, '49,53,56,60,63,71,78,85,92,106,127', 7, 2, 52, 86), + (72, 51, 100, 57, 91, 381100, 3, 100, '50,54,57,61,64,72,79,86,93,108,128', 7, 2, 53, 87), + (73, 52, 101, 58, 92, 401000, 3, 100, '51,54,58,62,65,73,80,87,94,109,130', 7, 2, 54, 88), + (74, 53, 104, 58, 94, 421600, 3, 100, '51,55,59,62,66,74,81,88,96,111,132', 7, 2, 55, 89), + (75, 54, 105, 59, 95, 443300, 4, 100, '52,56,60,63,67,75,82,90,97,112,134', 8, 3, 55, 90), + (76, 54, 106, 60, 96, 508100, 4, 100, '53,57,60,64,68,76,83,91,98,114,136', 8, 3, 56, 92), + (77, 55, 107, 61, 97, 534200, 4, 100, '53,57,61,65,69,77,84,92,100,115,137', 8, 3, 57, 93), + (78, 56, 109, 62, 99, 561600, 4, 100, '54,58,62,66,70,78,85,93,101,117,139', 8, 3, 58, 94), + (79, 57, 110, 62, 100, 590200, 4, 100, '55,59,63,67,71,79,86,94,102,118,141', 8, 3, 58, 95), + (80, 58, 111, 63, 101, 620000, 4, 100, '56,60,64,68,72,80,88,96,104,120,143', 8, 3, 59, 96), + (81, 58, 112, 64, 102, 651000, 4, 100, '56,60,64,68,72,81,89,97,105,121,145', 8, 3, 60, 98), + (82, 58, 115, 65, 104, 683700, 4, 100, '57,61,65,69,73,82,90,98,106,123,146', 8, 3, 61, 99), + (83, 59, 116, 66, 105, 717900, 4, 100, '58,62,66,70,74,83,91,99,107,124,148', 8, 3, 61, 100), + (84, 60, 117, 66, 106, 753500, 4, 100, '58,63,67,71,75,84,92,100,109,126,150', 8, 3, 62, 101), + (85, 61, 118, 67, 107, 790800, 4, 100, '59,63,68,72,76,85,93,102,110,127,152', 9, 3, 63, 102), + (86, 62, 120, 68, 109, 829400, 4, 100, '60,64,68,73,77,86,94,103,111,129,154', 9, 3, 64, 104), + (87, 62, 121, 69, 110, 870000, 4, 100, '60,65,69,73,78,87,95,104,113,130,155', 9, 3, 64, 105), + (88, 63, 122, 70, 111, 912600, 4, 100, '61,66,70,74,79,88,96,105,114,132,157', 9, 3, 65, 106), + (89, 64, 123, 70, 112, 956800, 4, 100, '62,66,71,75,80,89,97,106,115,133,159', 9, 3, 66, 107), + (90, 65, 126, 71, 114, 1003000, 4, 100, '63,67,72,76,81,90,99,108,116,135,161', 9, 3, 67, 108), + (91, 66, 127, 72, 115, 1051300, 4, 100, '63,68,72,77,81,91,100,109,118,136,163', 9, 3, 67, 110), + (92, 66, 128, 73, 116, 1101500, 4, 100, '64,69,73,78,82,92,101,110,119,138,164', 9, 3, 68, 111), + (93, 66, 129, 74, 117, 1153900, 4, 100, '65,69,74,79,83,93,102,111,120,139,166', 9, 3, 69, 112), + (94, 67, 131, 74, 119, 1208800, 4, 100, '65,70,75,79,84,94,103,112,122,141,168', 9, 3, 70, 113), + (95, 68, 132, 75, 120, 1266000, 4, 100, '66,71,76,80,85,95,104,114,123,142,170', 10, 3, 70, 114), + (96, 69, 133, 76, 121, 1325500, 4, 100, '67,72,76,81,86,96,105,115,124,144,171', 10, 3, 71, 116), + (97, 70, 134, 77, 122, 1387700, 4, 100, '67,72,77,82,87,97,106,116,126,145,173', 10, 3, 72, 117), + (98, 70, 137, 78, 124, 1452300, 4, 100, '68,73,78,83,88,98,107,117,127,147,175', 10, 3, 73, 118), + (99, 71, 138, 78, 125, 1519900, 4, 100, '69,74,79,84,89,99,108,118,128,148,177', 10, 3, 73, 119), + (100, 72, 139, 79, 126, 1590300, 5, 100, '70,75,80,85,90,100,110,120,130,150,179', 10, 4, 74, 120), + (101, 73, 140, 80, 127, 1663500, 5, 99, '70,75,80,85,90,101,111,121,131,151,180', 10, 4, 75, 122), + (102, 74, 142, 81, 129, 1739900, 5, 98, '71,76,81,86,91,102,112,122,132,153,182', 10, 4, 75, 123), + (103, 74, 143, 82, 130, 1819600, 5, 97, '72,77,82,87,92,103,113,123,133,154,184', 10, 4, 76, 124), + (104, 74, 144, 82, 131, 1902200, 5, 96, '72,78,83,88,93,104,114,124,135,156,186', 10, 4, 77, 125), + (105, 75, 145, 83, 132, 1988900, 5, 95, '73,78,84,89,94,105,115,126,136,157,188', 11, 4, 78, 126), + (106, 76, 148, 84, 134, 2078600, 5, 94, '74,79,84,90,95,106,116,127,137,159,189', 11, 4, 78, 128), + (107, 77, 149, 85, 135, 2172100, 5, 93, '74,80,85,90,96,107,117,128,139,160,191', 11, 4, 79, 129), + (108, 78, 150, 86, 136, 2269800, 5, 92, '75,81,86,91,97,108,118,129,140,162,193', 11, 4, 80, 130), + (109, 78, 151, 86, 137, 2371100, 5, 91, '76,81,87,92,98,109,119,130,141,163,195', 11, 4, 81, 131), + (110, 79, 153, 87, 139, 2476600, 5, 90, '77,82,88,93,99,110,121,132,143,165,197', 12, 4, 81, 132), + (111, 80, 154, 88, 140, 2586600, 5, 89, '77,83,88,94,99,111,122,133,144,166,198', 12, 4, 82, 134), + (112, 81, 155, 89, 141, 2701000, 5, 88, '78,84,89,95,100,112,123,134,145,168,200', 12, 4, 83, 135), + (113, 82, 156, 90, 142, 2819800, 5, 87, '79,84,90,96,101,113,124,135,146,169,202', 12, 4, 84, 136), + (114, 82, 159, 90, 144, 2943600, 5, 86, '79,85,91,96,102,114,125,136,148,171,204', 12, 4, 84, 137), + (115, 82, 160, 91, 145, 3072400, 5, 85, '80,86,92,97,103,115,126,138,149,172,205', 13, 4, 85, 138), + (116, 83, 161, 92, 146, 3205800, 5, 84, '81,87,92,98,104,116,127,139,150,174,207', 13, 4, 86, 140), + (117, 84, 162, 93, 147, 3345200, 5, 83, '81,87,93,99,105,117,128,140,152,175,209', 13, 4, 87, 141), + (118, 85, 164, 94, 149, 3489700, 5, 82, '82,88,94,100,106,118,129,141,153,177,211', 13, 4, 87, 142), + (119, 86, 165, 94, 150, 3640200, 5, 81, '83,89,95,101,107,119,130,142,154,178,213', 13, 4, 88, 143), + (120, 86, 166, 95, 151, 3796500, 5, 80, '84,90,96,102,108,120,132,144,156,180,214', 14, 4, 89, 144), + (121, 87, 167, 96, 152, 3958900, 5, 79, '84,90,96,102,108,121,133,145,157,181,216', 14, 4, 90, 146), + (122, 88, 170, 97, 154, 4128000, 5, 78, '85,91,97,103,109,122,134,146,158,183,218', 14, 4, 90, 147), + (123, 89, 171, 98, 155, 4303400, 5, 77, '86,92,98,104,110,123,135,147,159,184,220', 14, 4, 91, 148), + (124, 90, 172, 98, 156, 4485700, 5, 76, '86,93,99,105,111,124,136,148,161,186,222', 14, 4, 92, 149), + (125, 90, 173, 99, 157, 4674800, 6, 75, '87,93,100,106,112,125,137,150,162,187,223', 15, 5, 93, 150), + (126, 90, 175, 100, 159, 4871700, 6, 74, '88,94,100,107,113,126,138,151,163,189,225', 15, 5, 93, 152), + (127, 91, 176, 101, 160, 5075700, 6, 73, '88,95,101,107,114,127,139,152,165,190,227', 15, 5, 94, 153), + (128, 92, 177, 102, 161, 5288100, 6, 72, '89,96,102,108,115,128,140,153,166,192,229', 15, 5, 95, 154), + (129, 93, 178, 102, 162, 5508200, 6, 71, '90,96,103,109,116,129,141,154,167,193,231', 15, 5, 96, 155), + (130, 94, 181, 103, 164, 5736800, 6, 70, '91,97,104,110,117,130,143,156,169,195,232', 16, 5, 96, 156), + (131, 94, 182, 104, 165, 5974600, 6, 69, '91,98,104,111,117,131,144,157,170,196,234', 16, 5, 97, 158), + (132, 95, 183, 105, 166, 6220700, 6, 68, '92,99,105,112,118,132,145,158,171,198,236', 16, 5, 98, 159), + (133, 96, 184, 106, 167, 6474500, 6, 67, '93,99,106,113,119,133,146,159,172,199,238', 16, 5, 99, 160), + (134, 97, 186, 106, 169, 6742200, 6, 66, '93,100,107,113,120,134,147,160,174,201,240', 16, 5, 99, 161), + (135, 98, 187, 107, 170, 7017500, 6, 65, '94,101,108,114,121,135,148,162,175,202,241', 17, 5, 100, 162), + (136, 98, 188, 108, 171, 7303700, 6, 64, '95,102,108,115,122,136,149,163,176,204,243', 17, 5, 101, 164), + (137, 98, 189, 109, 172, 7600100, 6, 63, '95,102,109,116,123,137,150,164,178,205,245', 17, 5, 102, 165), + (138, 99, 192, 110, 174, 7907600, 6, 62, '96,103,110,117,124,138,151,165,179,207,247', 17, 5, 102, 166), + (139, 100, 193, 110, 175, 8227000, 6, 61, '97,104,111,118,125,139,152,166,180,208,248', 17, 5, 103, 167), + (140, 101, 194, 111, 176, 8557700, 6, 60, '98,105,112,119,126,140,154,168,182,210,250', 18, 5, 104, 168), + (141, 102, 195, 112, 177, 8901000, 6, 59, '98,105,112,119,126,141,155,169,183,211,250', 18, 5, 105, 170), + (142, 102, 197, 113, 179, 9256800, 6, 58, '99,106,113,120,127,142,156,170,184,213,250', 18, 5, 105, 171), + (143, 103, 198, 114, 180, 9625800, 6, 57, '100,107,114,121,128,143,157,171,185,214,250', 18, 5, 106, 172), + (144, 104, 199, 114, 181, 10008600, 6, 56, '100,108,115,122,129,144,158,172,187,216,250', 18, 5, 107, 173), + (145, 105, 200, 115, 182, 10405300, 6, 55, '101,108,116,123,130,145,159,174,188,217,250', 19, 5, 108, 174), + (146, 106, 203, 116, 184, 10816600, 6, 54, '102,109,116,124,131,146,160,175,189,219,250', 19, 5, 108, 176), + (147, 106, 204, 117, 185, 11242500, 6, 53, '102,110,117,124,132,147,161,176,191,220,250', 19, 5, 109, 177), + (148, 106, 205, 118, 186, 11684300, 6, 52, '103,111,118,125,133,148,162,177,192,222,250', 19, 5, 110, 178), + (149, 107, 206, 118, 187, 12141900, 6, 51, '104,111,119,126,134,149,163,178,193,223,250', 19, 5, 111, 179), + (150, 108, 208, 119, 189, 12616200, 7, 50, '105,112,120,127,135,150,165,180,195,225,250', 20, 6, 111, 180), + (151, 109, 209, 120, 190, 13107200, 7, 49, '105,113,120,128,135,151,166,181,196,226,250', 20, 6, 112, 182), + (152, 110, 210, 121, 191, 13616100, 7, 48, '106,114,121,129,136,152,167,182,197,228,250', 20, 6, 113, 183), + (153, 110, 211, 122, 192, 14143600, 7, 47, '107,114,122,130,137,153,168,183,198,229,250', 20, 6, 113, 184), + (154, 111, 214, 122, 194, 14689700, 7, 46, '107,115,123,130,138,154,169,184,200,231,250', 20, 6, 114, 185), + (155, 112, 215, 123, 195, 15255300, 7, 45, '108,116,124,131,139,155,170,186,201,232,250', 21, 6, 115, 186), + (156, 113, 216, 124, 196, 15841000, 7, 44, '109,117,124,132,140,156,171,187,202,234,250', 21, 6, 116, 188), + (157, 114, 217, 125, 197, 16447900, 7, 43, '109,117,125,133,141,157,172,188,204,235,250', 21, 6, 116, 189), + (158, 114, 219, 126, 199, 17075800, 7, 42, '110,118,126,134,142,158,173,189,205,237,250', 21, 6, 117, 190), + (159, 114, 220, 126, 200, 17725900, 7, 41, '111,119,127,135,143,159,174,190,206,238,250', 21, 6, 118, 191), + (160, 115, 220, 127, 201, 18399400, 7, 40, '112,120,128,136,144,160,176,192,208,240,250', 22, 6, 119, 192), + (161, 116, 220, 128, 202, 19096100, 7, 39, '112,120,128,136,144,161,177,193,209,241,250', 22, 6, 119, 194), + (162, 117, 220, 129, 204, 19817500, 7, 38, '113,121,129,137,145,162,178,194,210,243,250', 22, 6, 120, 195), + (163, 118, 220, 130, 205, 20564100, 7, 37, '114,122,130,138,146,163,179,195,211,244,250', 22, 6, 121, 196), + (164, 118, 220, 130, 206, 21336600, 7, 36, '114,123,131,139,147,164,180,196,213,246,250', 22, 6, 122, 197), + (165, 119, 220, 131, 207, 22136100, 7, 35, '115,123,132,140,148,165,181,198,214,247,250', 23, 6, 122, 198), + (166, 120, 220, 132, 209, 22963600, 7, 34, '116,124,132,141,149,166,182,199,215,249,250', 23, 6, 123, 200), + (167, 121, 220, 133, 210, 23819700, 7, 33, '116,125,133,141,150,167,183,200,217,250,250', 23, 6, 124, 201), + (168, 122, 220, 134, 211, 24705200, 7, 32, '117,126,134,142,151,168,184,201,218,250,250', 23, 6, 125, 202), + (169, 122, 220, 134, 212, 25621100, 7, 31, '118,126,135,143,152,169,185,202,219,250,250', 23, 6, 125, 203), + (170, 122, 220, 135, 214, 26569000, 7, 30, '119,127,136,144,153,170,187,204,220,250,250', 24, 6, 126, 204), + (171, 123, 220, 136, 215, 27548800, 7, 30, '119,128,136,145,153,171,188,205,222,250,250', 24, 6, 127, 206), + (172, 124, 220, 137, 216, 28562900, 7, 30, '120,129,137,146,154,172,189,206,223,250,250', 24, 6, 128, 207), + (173, 125, 220, 138, 217, 29611100, 7, 30, '121,129,138,147,155,173,190,207,224,250,250', 24, 6, 128, 208), + (174, 126, 220, 138, 219, 30695300, 7, 30, '121,130,139,147,156,174,191,208,226,250,250', 24, 6, 129, 209), + (175, 126, 220, 139, 220, 31816300, 8, 30, '122,131,140,148,157,175,192,210,227,250,250', 25, 7, 130, 210), + (176, 127, 220, 140, 220, 32975100, 8, 30, '123,132,140,149,158,176,193,211,228,250,250', 25, 7, 131, 212), + (177, 128, 220, 141, 220, 34173500, 8, 30, '123,132,141,150,159,177,194,212,230,250,250', 25, 7, 131, 213), + (178, 129, 220, 142, 220, 35412500, 8, 30, '124,133,142,151,160,178,195,213,231,250,250', 25, 7, 132, 214), + (179, 130, 220, 142, 220, 36692500, 8, 30, '125,134,143,152,161,179,196,214,232,250,250', 25, 7, 133, 215), + (180, 130, 220, 143, 220, 38016500, 8, 30, '126,135,144,153,162,180,198,216,233,250,250', 26, 7, 134, 216), + (181, 130, 220, 144, 220, 39484400, 8, 30, '126,135,144,153,162,181,199,217,235,250,250', 26, 7, 134, 218), + (182, 131, 220, 145, 220, 40797700, 8, 30, '127,136,145,154,163,182,200,218,236,250,250', 26, 7, 135, 219), + (183, 132, 220, 146, 220, 42258500, 8, 30, '128,137,146,155,164,183,201,219,237,250,250', 26, 7, 136, 220), + (184, 133, 220, 146, 220, 43768300, 8, 30, '128,138,147,156,165,184,202,220,239,250,250', 26, 7, 137, 221), + (185, 134, 220, 147, 220, 45328100, 8, 30, '129,138,148,157,166,185,203,222,240,250,250', 27, 7, 137, 222), + (186, 134, 220, 148, 220, 46939900, 8, 30, '130,139,148,158,167,186,204,223,241,250,250', 27, 7, 138, 224), + (187, 135, 220, 149, 220, 48604900, 8, 30, '130,140,149,158,168,187,205,224,243,250,250', 27, 7, 139, 225), + (188, 136, 220, 150, 220, 50324600, 8, 30, '131,141,150,159,169,188,206,225,244,250,250', 27, 7, 140, 226), + (189, 137, 220, 150, 220, 52101200, 8, 30, '132,141,151,160,170,189,207,226,245,250,250', 27, 7, 140, 227), + (190, 138, 220, 151, 220, 53936300, 9, 30, '133,142,152,161,171,190,209,228,246,250,250', 28, 9, 141, 228), + (191, 138, 220, 152, 220, 55831600, 9, 30, '133,143,152,162,171,191,210,229,248,250,250', 28, 9, 142, 230), + (192, 138, 220, 153, 220, 57788700, 9, 30, '134,144,153,163,172,192,211,230,249,250,250', 28, 9, 143, 231), + (193, 139, 220, 154, 220, 59810000, 9, 30, '135,144,154,164,173,193,212,231,250,250,250', 28, 9, 143, 232), + (194, 140, 220, 154, 220, 61897000, 9, 30, '135,145,155,164,174,194,213,232,250,250,250', 28, 9, 144, 233), + (195, 141, 220, 155, 220, 64052200, 9, 30, '136,146,156,165,175,195,214,234,250,250,250', 29, 9, 145, 234), + (196, 142, 220, 156, 220, 66277200, 9, 30, '137,147,156,166,176,196,215,235,250,250,250', 29, 9, 146, 236), + (197, 142, 220, 157, 220, 68574400, 9, 30, '137,147,157,167,177,197,216,236,250,250,250', 29, 9, 146, 237), + (198, 143, 220, 158, 220, 70945700, 9, 30, '138,148,158,168,178,198,217,237,250,250,250', 29, 9, 147, 238), + (199, 144, 220, 158, 220, 73393900, 9, 30, '139,149,159,169,179,199,218,238,250,250,250', 29, 9, 148, 239), + (200, 145, 220, 159, 220, 80000, 9, 20, '140,150,160,170,180,200,220,240,250,250,250', 30, 10, 149, 240), + (201, 146, 220, 160, 220, 96000, 9, 19, '140,150,160,170,180,201,221,241,250,250,250', 30, 10, 161, 232), + (202, 146, 220, 161, 220, 115200, 9, 18, '141,151,161,171,181,202,222,242,250,250,250', 30, 10, 167, 229), + (203, 146, 220, 162, 220, 138240, 9, 17, '142,152,162,172,182,203,223,243,250,250,250', 30, 10, 173, 226), + (204, 147, 220, 162, 220, 165888, 9, 16, '142,153,163,173,183,204,224,244,250,250,250', 30, 10, 179, 223), + (205, 148, 220, 163, 220, 199066, 9, 15, '143,153,164,174,184,205,225,246,250,250,250', 30, 10, 183, 222), + (206, 149, 220, 164, 220, 238879, 9, 14, '144,154,164,175,185,206,226,247,250,250,250', 30, 10, 186, 221), + (207, 150, 220, 165, 220, 286654, 9, 13, '144,155,165,175,186,207,227,248,250,250,250', 30, 10, 187, 222), + (208, 150, 220, 166, 220, 343985, 9, 12, '145,156,166,176,187,208,228,249,250,250,250', 30, 10, 188, 223), + (209, 151, 220, 166, 220, 412782, 9, 11, '146,156,167,177,188,209,229,250,250,250,250', 30, 10, 189, 224), + (210, 152, 220, 167, 220, 495339, 9, 10, '147,157,168,178,189,210,231,250,250,250,250', 30, 10, 190, 225), + (211, 153, 220, 168, 220, 594407, 9, 9, '147,158,168,179,189,211,232,250,250,250,250', 30, 10, 191, 226), + (212, 154, 220, 169, 220, 713288, 9, 8, '148,159,169,180,190,212,233,250,250,250,250', 30, 10, 192, 227), + (213, 154, 220, 170, 220, 855946, 9, 7, '149,159,170,181,191,213,234,250,250,250,250', 30, 10, 193, 228), + (214, 154, 220, 170, 220, 1027135, 9, 6, '149,160,171,181,192,214,235,250,250,250,250', 30, 10, 194, 229), + (215, 155, 220, 171, 220, 1232562, 9, 5, '150,161,172,182,193,215,236,250,250,250,250', 30, 10, 195, 230), + (216, 156, 220, 172, 220, 1479074, 9, 5, '151,162,172,183,194,216,237,250,250,250,250', 30, 10, 195, 232), + (217, 157, 220, 173, 220, 1774889, 9, 5, '151,162,173,184,195,217,238,250,250,250,250', 30, 10, 195, 234), + (218, 158, 220, 174, 220, 2129867, 9, 5, '152,163,174,185,196,218,239,250,250,250,250', 30, 10, 195, 236), + (219, 158, 220, 174, 220, 2555840, 9, 5, '153,164,175,186,197,219,240,250,250,250,250', 30, 10, 195, 238), + (220, 159, 220, 175, 220, 0, 9, 5, '154,165,176,187,198,220,242,250,250,250,250', 30, 10, 195, 239); \ No newline at end of file diff --git a/modules/standard/level/level_controller.py b/modules/standard/level/level_controller.py new file mode 100644 index 0000000..fe83a81 --- /dev/null +++ b/modules/standard/level/level_controller.py @@ -0,0 +1,140 @@ +import math + +from core.chat_blob import ChatBlob +from core.command_param_types import Int +from core.db import DB +from core.decorators import instance, command + + +@instance() +class LevelController: + def inject(self, registry): + self.db: DB = registry.get_instance("db") + self.util = registry.get_instance("util") + self.text = registry.get_instance("text") + self.command_alias_service = registry.get_instance("command_alias_service") + + def pre_start(self): + self.db.load_sql_file(self.module_dir + "/" + "alien_level.sql", pre_optimized=True) + self.db.create_view("alien_level") + self.db.load_sql_file(self.module_dir + "/" + "level.sql", pre_optimized=True) + self.db.create_view("level") + + def start(self): + self.command_alias_service.add_alias("lvl", "level") + self.command_alias_service.add_alias("pvp", "level") + self.command_alias_service.add_alias("team", "level") + self.command_alias_service.add_alias("missions", "mission") + self.command_alias_service.add_alias("mish", "mission") + self.command_alias_service.add_alias("ailevel", "axp") + + @command(command="level", params=[Int("level")], access_level="member", + description="Show information about a character level") + def level_cmd(self, _, level): + row = self.get_level_info(level) + + if row: + msg = f"L {row.level:d}: " \ + f"Team {row.team_min:d}-{row.team_max:d} | " \ + f"PvP {row.pvp_min:d}-{row.pvp_max:d} | " \ + f"Missions {row.missions} | " \ + f"{row.tokens:d} token(s)" + return msg + else: + return "Level must be between 1 and 220." + + @command(command="mission", params=[Int("mission_level")], access_level="member", + description="Show what character levels can roll a specified mission level", + extended_description="Updated mission levels provided by Lucier") + def mission_cmd(self, _, level): + if 1 <= level <= 250: + levels = self.get_mission_levels(level) + + return f"QL {level:d} missions can be rolled from these levels: {' '.join(levels)}" + else: + return "Mission level must be between 1 and 250." + + @command(command="xp", params=[Int("start_level"), Int("end_level", is_optional=True)], access_level="member", + description="Show the amount of XP needed to reach a certain level") + def xp_range_cmd(self, _, start_level, end_level): + end_level = end_level or start_level + 1 + + if start_level == end_level: + return "Start level must be different than end level." + if start_level > end_level: + start_level, end_level = end_level, start_level + + if 1 <= start_level <= 220 and 1 <= end_level <= 220: + if end_level <= 200: + xp = self.db.query_single("SELECT SUM(xpsk) AS total_xp " + "FROM level WHERE level >= ? AND level < ?", + [start_level, end_level]) + needed = f"{self.util.format_number(xp.total_xp)} XP" + elif start_level >= 200: + sk = self.db.query_single("SELECT SUM(xpsk) AS total_sk " + "FROM level WHERE level >= ? AND level < ?", + [start_level, end_level]) + needed = f"{self.util.format_number(sk.total_sk)} SK" + else: + xp = self.db.query_single("SELECT SUM(xpsk) AS total_xp " + "FROM level WHERE level >= ? AND level < 200", + [start_level]) + sk = self.db.query_single("SELECT SUM(xpsk) AS total_sk " + "FROM level WHERE level >= 200 AND level < ?", + [end_level]) + needed = f"{self.util.format_number(xp.total_xp)} XP " \ + f"and {self.util.format_number(sk.total_sk)} SK" + + return f"From the beginning of level {start_level:d} " \ + f"you need {needed} to reach level {end_level:d}" + else: + return "Level must be between 1 and 219." + + @command(command="axp", params=[], access_level="member", + description="Show information about alien levels") + def axp_single_cmd(self, _): + data = self.db.query("SELECT * FROM alien_level ORDER BY alien_level") + + rows = [] + for row in data: + rows.append([f"{row.alien_level}", self.util.format_number(row.axp), + f"{row.defender_rank}", f"Min Level: {row.min_level}"]) + + display_table = self.text.pad_table(rows, " ") + + blob = "" + for cols in display_table: + blob += " ".join(cols) + "\n" + + return ChatBlob("Alien Levels", blob) + + def get_level_info(self, level): + return self.db.query_single("SELECT * FROM level WHERE level = ?", [level]) + + def get_mission_levels(self, level): + levels = [] + data = self.db.query("SELECT * FROM level") + str_level = str(level) + for row in data: + if str_level in row.missions.split(","): + levels.append(str(row.level)) + + return levels + + def get_mission_levels2(self, level): + mission_coefficients = [0.7001, 0.75, 0.8, 0.85, 0.9, 1.0, 1.1, 1.2, 1.3, 1.5, 1.7913] + mission_levels = set() + for i in mission_coefficients: + val = math.floor(level * i) + if val < 1: + val = 1 + elif val > 250: + val = 250 + + # I couldn't get 4 values to match with 1.3? + if i == 1.3 and (level == 90 or level == 170 or level == 180 or level == 190): + val -= 1 + + mission_levels.add(val) + + return ",".join(map(lambda x: str(x), sorted(mission_levels))) diff --git a/modules/standard/loot/auction_controller.py b/modules/standard/loot/auction_controller.py new file mode 100644 index 0000000..0c16c3f --- /dev/null +++ b/modules/standard/loot/auction_controller.py @@ -0,0 +1,139 @@ +import re + +from core.command_param_types import Const, Options, Int, Any, Time +from core.db import DB +from core.decorators import command, instance, setting +from core.setting_types import TimeSettingType +from core.tyrbot import Tyrbot +from modules.standard.loot.auction_strategy.auction_strategy import AuctionStrategy + + +@instance() +class AuctionController: + def __init__(self): + # noinspection PyTypeChecker + self.auction: AuctionStrategy = None + self.prepared = [] + + def inject(self, registry): + self.db: DB = registry.get_instance("db") + self.bot: Tyrbot = registry.get_instance("bot") + + def pre_start(self): + self.db.shared.exec("CREATE TABLE IF NOT EXISTS auction_log (" + "auction_id INT PRIMARY KEY AUTO_INCREMENT, " + "item_ref VARCHAR(255) NOT NULL, " + "item_name VARCHAR(255) NOT NULL, " + "winner_id BIGINT NOT NULL, " + "auctioneer_id BIGINT NOT NULL, " + "time INT NOT NULL, " + "winning_bid INT NOT NULL, " + "second_highest_bid INT NOT NULL)") + self.db.create_view("auction_log") + + @setting(name="auction_length", value="90s", description="Regular auction length in seconds") + def auction_length(self): + return TimeSettingType() + + @setting(name="auction_announce_interval", value="15s", description="Auction announce interval") + def auction_announce_interval(self): + return TimeSettingType() + + @command(command="auction", params=[], description="Show auction status", + access_level="guest") + def auction_cmd(self, _): + if not self.is_auction_running(): + return "No auction running." + + return self.auction.get_auction_list() + + @command(command="auction", + params=[Const("prepare"), Const("clear")], + description="Clear the list of prepared items", + access_level="moderator", sub_command="modify") + def auction_prepare_clear(self, _, _1, _2): + self.prepared = [] + return "The List has been cleared. Currently there are no prepared items." + + @command(command="auction", + params=[Const("prepare"), Any("items")], + description="Prepare items for an auction", + access_level="moderator", sub_command="modify") + def auction_prepare(self, _, _1, items): + items = items.replace("'", '"') + items2 = re.findall(r"(([^<]+)?([^<]+)([^<]+)?)", items) + if items2: + for item in items2: + self.prepared.append(item) + else: + self.prepared.append(items) + prep = "" + for item in self.prepared: + if prep == "": + if isinstance(item, tuple): + prep = item[0] + else: + prep = item + else: + if isinstance(item, tuple): + prep += ", " + item[0] + else: + prep += ", " + item + return "Currently prepared items: " + prep + + @command(command="auction", + params=[Const("start"), Time("duration", is_optional=True)], + description="Start an auction, with the items added by auction prepare", + access_level="moderator", sub_command="modify") + def auction_start_cmd(self, request, _, duration): + if self.is_auction_running(): + return "Auction already running." + if not self.prepared: + return "You prepared no items" + self.auction = AuctionStrategy() + for item in self.prepared: + if isinstance(item, tuple): + self.auction.add_item(item[0]) + else: + self.auction.add_item(item) + self.prepared = [] + + auction_length = duration or self.auction_length().get_value() + announce_interval = self.auction_announce_interval().get_value() + + return self.auction.start(request.sender, auction_length, announce_interval) + + @command(command="auction", params=[Options(["cancel"])], description="Cancel ongoing auction", + access_level="moderator", sub_command="modify") + def auction_cancel_cmd(self, request, _): + if not self.is_auction_running(): + return "No auction running." + + result = self.auction.cancel(request.sender) + self.auction = None + return result + + @command(command="auction", params=[Options(["end"])], description="end ongoing auction", + access_level="moderator", sub_command="modify") + def auction_cancel_cmd(self, request, _): + if not self.is_auction_running(): + return "No auction running." + + result = self.auction.cancel(request.sender) + self.auction = None + return result + + @command(command="auction", params=[Const("bid"), + Int("amount", is_optional=True), + Const("all", is_optional=True), + Int("item_index", is_optional=True)], + description="Bid on an item", access_level="guest") + def auction_bid_cmd(self, request, _, amount, all_amount, item_index): + if not self.is_auction_running(): + return "No auction running." + + self.bot.send_mass_message(request.sender.char_id, + self.auction.add_bid(request.sender, all_amount or amount, item_index, request)) + + def is_auction_running(self): + return self.auction and self.auction.is_running diff --git a/modules/standard/loot/auction_strategy/auction_strategy.py b/modules/standard/loot/auction_strategy/auction_strategy.py new file mode 100644 index 0000000..e173fdc --- /dev/null +++ b/modules/standard/loot/auction_strategy/auction_strategy.py @@ -0,0 +1,342 @@ +import re +import time + +from core.chat_blob import ChatBlob +from core.db import DB +from core.registry import Registry +from core.sender_obj import SenderObj +from core.text import Text +from modules.core.accounting.services.account_service import AccountService +from modules.raidbot.raid.raidbot_controller import Raider + + +class AuctionBid: + def __init__(self, sender: SenderObj, account, current_amount, max_amount): + self.sender = sender + self.account = account + self.current_amount = current_amount + self.max_amount = max_amount + + def __str__(self): + return self.__dict__.__str__() + + +class AuctionStrategy: + def __init__(self): + self.bot = Registry.get_instance("bot") + self.db: DB = Registry.get_instance("db") + self.text: Text = Registry.get_instance("text") + self.account_service: AccountService = Registry.get_instance("account_service") + self.job_scheduler = Registry.get_instance("job_scheduler") + self.raid_controller = None + self.raid_controller = Registry.get_instance("raidbot_controller", is_optional=True) + self.auction_start_time = None + self.auction_end_time = None + self.announce_interval = None + self.is_started = False + self.items = dict() + self.winning_bids = dict() + self.next_item_index = 1 + # noinspection PyTypeChecker + self.auctioneer: SenderObj = None + self.job_id = None + self.is_running = False + + def start(self, sender: SenderObj, duration, announce_interval): + if not self.items: + return "Could not find any items to start auction." + + self.is_started = True + self.auction_start_time = int(time.time()) + self.auctioneer = sender + self.auction_end_time = self.auction_start_time + duration + self.is_running = True + self.announce_interval = announce_interval + + if len(self.items) > 1: + items = "" + for i, item in self.items.items(): + winning = "" + if self.winning_bids.get(i, None): + winning = f"({self.winning_bids[i].current_amount})" + items += f"{i}. {item} {winning}\n" + msg = self.format_auction(f"{items}\n" + f"» {self.text.paginate_single(self.get_auction_list())}") + self.spam_raid_message(msg) + else: + item_index = list(self.items.keys())[0] + item = self.items[item_index] + sql = "SELECT winning_bid FROM auction_log WHERE item_name LIKE ? ORDER BY time DESC LIMIT 5" + bids = self.db.query(sql, [item]) + if bids: + avg_win_bid = int(sum(map(lambda x: x.winning_bid, bids)) / len(bids)) + else: + avg_win_bid = 0 + + bid_link = self.get_auction_list() + bid_link = self.text.paginate_single(ChatBlob("Click to bid", bid_link.msg)) + msg = self.format_auction(f"1. {item}\n" + f"Average winning bid: {avg_win_bid}\n" + f"» {bid_link}") + self.spam_raid_message(msg) + + self.create_next_announce_job() + + def cancel(self, _): + self.cancel_job() + self.is_running = False + return "The Auction got cancelled." + + def add_item(self, item): + self.items[self.next_item_index] = item + self.next_item_index += 1 + return self.next_item_index + + def remove_item(self, item_id): + del self.items[item_id] + del self.winning_bids[item_id] + + def add_bid(self, sender: SenderObj, bid_amount, item_index, request): + item_index = item_index or 1 + item = self.items.get(item_index, None) + if not item: + return "No item at given index." + if bid_amount == 0: + return "You tried to bid 0 points. seriously?" + + account = self.account_service.get_account(sender.char_id) + main = account.main + if self.raid_controller: + raider: Raider = self.raid_controller.is_in_raid(main) + if type(raider) == Raider: + if not raider.is_active: + self.bot.send_mass_message(request.sender.char_id, + "You are not participating in the raid, and cannot add to the loot.") + return + elif raider is None: + self.bot.send_mass_message(request.sender.char_id, + "You are not participating in the raid, and cannot add to the loot.") + return + if not account: + return "You do not have an active account with this bot." + elif account.disabled: + return "Your account has been frozen. Contact an admin." + + points_used = self.get_points_used(main, item_index) + points_available = account.points - points_used + + if points_available == 0: + return "You got 0 points... no bids for you." + + if not bid_amount: + return "You must specify an amount to bid." + + if isinstance(bid_amount, str) and bid_amount.lower() == "all": + bid_amount = points_available + + if bid_amount > points_available: + request.reply(f"You dont have enough points. Using {points_available:d} (All points you have)") + bid_amount = points_available + + current_amount = 0 + winning_bid = self.winning_bids.get(item_index, None) + if winning_bid: + if winning_bid.sender.char_id == sender.char_id: + return "You're already holding the highest bid." + if bid_amount <= winning_bid.current_amount: + return f"Your bid of {bid_amount:d} points was not enough. " \ + f"{winning_bid.sender.name} is currently winning with a " \ + f"bid of {winning_bid.current_amount:d}." + elif bid_amount <= winning_bid.max_amount: + winning_bid.current_amount = bid_amount + return f"Your bid of {bid_amount} points was not enough. " \ + f"{winning_bid.sender.name} is currently " \ + f"winning with a bid of {winning_bid.current_amount}." + else: + current_amount = winning_bid.max_amount + self.bot.send_private_message(winning_bid.sender.char_id, + f"Your bid on {item} has been " + f"overtaken by {sender.name}.") + + # increment 1 past current max bid + current_amount += 1 + self.winning_bids[item_index] = AuctionBid(sender, account, current_amount, bid_amount) + if self.auction_end_time - time.time() < 10: + self.auction_end_time += 10 + self.spam_raid_message( + f"{sender.name} now holds the leading " + f"bid for {item} with a bid of {current_amount:d}. [AS: +10 seconds]") + + else: + self.spam_raid_message( + f"{sender.name} now holds the leading bid for {item} " + f"with a bid of {current_amount:d}.") + + return f"Your max bid of {bid_amount:d} points for {item} has put you in the lead. " \ + f"You have {points_available - bid_amount:d} points left for bidding." + + def end(self): + self.cancel_job() + self.is_running = False + + blob = "" + t = int(time.time()) + # noinspection SqlInsertValues + sql = "INSERT INTO auction_log (" \ + "item_ref, item_name, winner_id, auctioneer_id, " \ + "time, winning_bid, second_highest_bid) " \ + "VALUES (?,?,?,?,?,?,?)" + items = "" + for i, item in self.items.items(): + winning_bid = self.winning_bids.get(i, None) + if winning_bid: + self.db.exec(sql, [item, item, winning_bid.sender.char_id, self.auctioneer.char_id, t, + winning_bid.current_amount, 0]) + items += f"{i}. {item} ({winning_bid.sender.name} » " \ + f"{winning_bid.current_amount}P)\n" + blob += "%d. %s, won by %s with %d points\n" % ( + i, item, winning_bid.sender.name, winning_bid.current_amount) + main_id = self.account_service.get_main(winning_bid.sender.char_id).char_id + self.account_service.rem_pts(main_id, + winning_bid.current_amount, + f"won {item}", + self.auctioneer.char_id) + else: + items += f"{i}. {item} (FFA)\n" + blob += "%d. %s, no bids made\n" % (i, item) + + result_blob = self.text.paginate_single(ChatBlob("The Auction results", blob)) + msg = self.format_auction(f"{items}" + f"» {result_blob}") + self.spam_raid_message(msg) + + def remove_bid(self, char_id, item_id): + pass + + def spam_raid_message(self, message): + self.bot.send_private_channel_message(message, fire_outgoing_event=False) + + def get_auction_list(self): + blob = "" + for i, item in self.items.items(): + if item[:2] == "": + item = re.findall(r"(([^<]+)?([^<]+)([^<]+)?)", + item) + img = "" + if isinstance(item[0], tuple): + imgid = self.db.query_single("SELECT icon from aodb where lowid=? and highid=?", + [item[0][2], item[0][3]]) + if imgid is not None: + img = self.text.make_image(imgid.get("icon")) + " - " + blob += "%d. %s%s" % (i, img, item[0][0]) + + else: + img = "" + blob += f"{i:d}. {img}{item}" + winning_bid = self.winning_bids.get(i, None) + if winning_bid: + blob += f"
{winning_bid.sender.name} has the " \ + f"winning bid of {winning_bid.current_amount:d}\n[" + blob += self.text.make_chatcmd("bid +1", f"/tell bid {winning_bid.current_amount + 1} {i}") + blob += "][" + blob += self.text.make_chatcmd("bid +10", f"/tell bid {winning_bid.current_amount + 10} {i}") + blob += "][" + blob += self.text.make_chatcmd("bid +25", f"/tell bid {winning_bid.current_amount + 25} {i}") + blob += "][" + blob += self.text.make_chatcmd("bid +100", f"/tell bid {winning_bid.current_amount + 100} {i}") + blob += "][" + blob += self.text.make_chatcmd("bid +500", f"/tell bid {winning_bid.current_amount + 500} {i}") + blob += "][" + blob += self.text.make_chatcmd("bid Max", f"/tell bid all {i}") + blob += "]\n────────────────────────────────\n" + else: + blob += "
No bidders\n[" + blob += self.text.make_chatcmd("bid 1", f"/tell bid 1 {i:d}") + blob += "][" + blob += self.text.make_chatcmd("bid 10", f"/tell bid 10 {i:d}") + blob += "][" + blob += self.text.make_chatcmd("bid 25", f"/tell bid 25 {i:d}") + blob += "][" + blob += self.text.make_chatcmd("bid 100", f"/tell bid 100 {i:d}") + blob += "][" + blob += self.text.make_chatcmd("bid 500", f"/tell bid 500 {i:d}") + blob += "][" + blob += self.text.make_chatcmd("bid Max", f"/tell bid all {i:d}") + blob += "]\n────────────────────────────────\n" + + return ChatBlob(f"The Auction list ({len(self.items):d})", blob) + + def get_points_used(self, main_id, item_index): + points_used = 0 + for index, bid in self.winning_bids.items(): + if index != item_index and bid.account.char_id == main_id: + points_used += bid.max_amount + + return points_used + + def auction_announce(self, _): + time_left = self.time_left() + if time_left <= 0: + self.end() + return + + item_count = len(self.items) + if item_count > 1: + items = "" + for i, item in self.items.items(): + winning = "" + if self.winning_bids.get(i, None): + winning = f"({self.winning_bids[i].sender.name} » " \ + f"{self.winning_bids[i].current_amount}P)" + items += f"{i}. {item} {winning}\n" + + msg = self.format_auction(f"{items}\n" + f"» {self.text.paginate_single(self.get_auction_list())}\n" + f"{time_left} seconds left") + + else: + item_index = list(self.items.keys())[0] + item = self.items[item_index] + winning_bid = self.winning_bids.get(item_index, None) + + if winning_bid: + winner = f"{winning_bid.sender.name} now holds the " \ + f"leading bid with a bid of {winning_bid.current_amount:d}." + else: + winner = "No bids made." + msg = self.format_auction(f"1. {item}\n" + f"{winner}\n" + f"» {self.text.paginate_single(self.get_auction_list())}\n" + f"{time_left} seconds left") + + self.spam_raid_message(msg) + self.create_next_announce_job() + + def time_left(self): + t = int(time.time()) + time_left = self.auction_end_time - t + if time_left < 0: + time_left = 0 + + return time_left + + def create_next_announce_job(self): + t = int(time.time()) + time_remaining = self.auction_end_time - t + mod = time_remaining % self.announce_interval + if mod == 0: + mod = self.announce_interval + + next_job_t = t + mod + self.job_id = self.job_scheduler.scheduled_job(self.auction_announce, next_job_t) + + def cancel_job(self): + if self.job_id: + self.job_scheduler.cancel_job(self.job_id) + self.job_id = None + + def format_auction(self, message): + return f"\n" \ + f"────────[ Auction ]────────\n" \ + f"{message}\n" \ + f"────────[ Auction ]────────" diff --git a/modules/standard/loot/item_types.py b/modules/standard/loot/item_types.py new file mode 100644 index 0000000..c028946 --- /dev/null +++ b/modules/standard/loot/item_types.py @@ -0,0 +1,31 @@ +from core.dict_object import DictObject +from core.registry import Registry + + +class LootItem: + def __init__(self, item, comment, count=1): + self.item = item + self.comment = comment + self.bidders = [] + self.count = count + + def get_item_str(self): + if isinstance(self.item, DictObject): + item_name = "%s (%s)" % (self.item.name, self.comment) if self.comment else self.item.name + text = Registry.get_instance("text") + return text.make_item(self.item.low_id, self.item.high_id, self.item.ql, item_name) + else: + item_name = "%s (%s)" % (self.item, self.comment) if self.comment else self.item + return item_name + + def __str__(self): + return "%s %d" % (self.get_item_str(), self.count) + + +class AuctionItem(LootItem): + def __init__(self, item, comment, auctioneer_id, count=1): + super().__init__(item, comment, count) + self.auctioneer_id = auctioneer_id + self.winner_id = None + self.winning_bid = 0 + self.second_highest = 0 diff --git a/modules/standard/loot/loot_controller.py b/modules/standard/loot/loot_controller.py new file mode 100644 index 0000000..71f1d7b --- /dev/null +++ b/modules/standard/loot/loot_controller.py @@ -0,0 +1,403 @@ +import re +import secrets +import time +from collections import OrderedDict + +from core.chat_blob import ChatBlob +from core.command_alias_service import CommandAliasService +from core.command_param_types import Const, Int, Any +from core.db import DB +from core.decorators import instance, command, timerevent +from core.setting_service import SettingService +from core.text import Text +from core.tyrbot import Tyrbot +from modules.core.accounting.services.account_service import AccountService +from modules.raidbot.raid.raidbot_controller import Raider +from modules.standard.items.items_controller import ItemsController +from modules.standard.loot.item_types import LootItem +from modules.standard.raid.leader_controller import LeaderController + + +@instance() +class LootController: + NOT_LEADER_MSG = "Error! You must be raid leader, or have higher access " \ + "level than the raid leader to use this command." + + def __init__(self): + self.loot_list = OrderedDict() + self.last_modify = None + + def inject(self, registry): + self.bot: Tyrbot = registry.get_instance("bot") + self.db: DB = registry.get_instance("db") + self.text: Text = registry.get_instance("text") + self.leader_controller: LeaderController = registry.get_instance("leader_controller", is_optional=True) + self.setting_service: SettingService = registry.get_instance("setting_service") + self.items_controller: ItemsController = registry.get_instance("items_controller") + self.raid_controller = None + self.raid_controller = registry.get_instance("raidbot_controller", is_optional=True) + self.account_service: AccountService = registry.get_instance("account_service") + self.alts_service: AccountService = registry.get_instance("account_service") + self.alias: CommandAliasService = registry.get_instance("command_alias_service") + + def pre_start(self): + self.db.load_sql_file(self.module_dir + "/raid_loot.sql", pre_optimized=True) + self.db.create_view("raid_loot") + self.alias.add_alias("add", "loot add") + self.alias.add_alias("rem", "loot rem") + self.alias.add_alias("remove", "loot remo") + self.alias.add_alias("flatroll", "loot roll") + self.alias.add_alias("result", "loot roll") + self.alias.add_alias("results", "loot roll") + self.alias.add_alias("win", "loot roll") + + @command(command="loot", params=[], description="Show the list of added items", access_level="member") + def loot_cmd(self, _): + if not self.loot_list: + return "Loot list is empty." + + return self.get_loot_list() + + @command(command="loot", params=[Const("edit")], description="Show the list of added items", access_level="leader", + sub_command="modify") + def loot_edit_cmd(self, _, _1): + if not self.loot_list: + return "Loot list is empty." + + return self.get_loot_list(edit=True) + + @command(command="loot", params=[Const("clear")], description="Clear all loot", access_level="leader", + sub_command="modify") + def loot_clear_cmd(self, request, _): + if not self.leader_controller.can_use_command(request.sender.char_id) if self.leader_controller else False: + return LeaderController.NOT_LEADER_MSG + + if self.loot_list: + self.loot_list.clear() + self.last_modify = None + self.bot.send_private_channel_message("Loot list cleared.") + else: + return "Loot list is already empty." + + @command(command="loot", params=[Const("remitem"), Int("item_index")], + description="Remove an existing loot item", access_level="leader", sub_command="modify") + def loot_rem_item_cmd(self, request, _, item_index: int): + if not self.leader_controller.can_use_command(request.sender.char_id) if self.leader_controller else False: + return LeaderController.NOT_LEADER_MSG + + if not self.loot_list: + return "Loot list is empty." + + try: + if self.loot_list[item_index]: + self.last_modify = int(time.time()) + self.bot.send_private_channel_message( + "Removed %s from loot list." % self.loot_list.pop(item_index).get_item_str()) + else: + return "Item error." + except KeyError: + return "Wrong index given." + + @command(command="loot", params=[Const("increase"), Int("item_index")], description="Increase item count", + access_level="leader", sub_command="modify") + def loot_increase_item_cmd(self, request, _, item_index: int): + if not self.leader_controller.can_use_command(request.sender.char_id) if self.leader_controller else False: + return LeaderController.NOT_LEADER_MSG + + if not self.loot_list: + return "Loot list is empty." + + try: + loot_item = self.loot_list[item_index] + + if loot_item: + loot_item.count += 1 + self.last_modify = int(time.time()) + self.bot.send_private_channel_message( + "Increased item count for %s to %d." % (loot_item.get_item_str(), loot_item.count)) + else: + return "Item error." + except KeyError: + return "Wrong index given." + + @command(command="loot", params=[Const("decrease"), Int("item_index")], description="Decrease item count", + access_level="leader", sub_command="modify") + def loot_decrease_item_cmd(self, request, _, item_index: int): + if not self.leader_controller.can_use_command(request.sender.char_id) if self.leader_controller else False: + return LeaderController.NOT_LEADER_MSG + + if not self.loot_list: + return "Loot list is empty." + + try: + loot_item = self.loot_list[item_index] + + if loot_item: + loot_item.count = loot_item.count - 1 if loot_item.count > 1 else 1 + self.last_modify = int(time.time()) + self.bot.send_private_channel_message( + "Decreased item count for %s to %d." % (loot_item.get_item_str(), loot_item.count)) + else: + return "Item error." + except KeyError: + return "Wrong index given." + + @command(command="loot", params=[Const("add"), Int("item_index")], description="Add yourself to item", + access_level="member") + def loot_add_to_cmd(self, request, _, item_index: int): + main = self.alts_service.get_account(request.sender.char_id) + if self.raid_controller: + raider: Raider = self.raid_controller.is_in_raid(main.char_id) + if type(raider) == Raider: + if not raider.is_active: + self.bot.send_mass_message(request.sender.char_id, + "You are not participating in the raid, and cannot add to the loot.") + return + elif raider is None: + self.bot.send_mass_message(request.sender.char_id, + "You are not participating in the raid, and cannot add to the loot.") + return + try: + loot_item = self.loot_list[item_index] + old_item = self.is_already_added(request.sender.name) + if old_item: + if old_item.get_item_str() == loot_item.get_item_str(): + name = "You have" if request.channel == "msg" else request.sender.name + self.bot.send_mass_message(request.sender.char_id, + "%s already added to %s." % (name, loot_item.get_item_str())) + old_item.bidders.remove(request.sender.name) + + loot_item.bidders.append(request.sender.name) + + self.last_modify = int(time.time()) + + if old_item is not None: + text = "moved from %s to %s." % (old_item.get_item_str(), loot_item.get_item_str()) + self.bot.send_mass_message(request.sender.char_id, "You have %s" % text) + self.bot.send_private_channel_message(request.sender.name + " " + text) + else: + text = "added to %s." % loot_item.get_item_str() + self.bot.send_mass_message(request.sender.char_id, "You have %s" % text) + self.bot.send_private_channel_message(request.sender.name + " " + text) + + except KeyError: + return "Wrong index given." + + @command(command="loot", params=[Const("rem")], description="Remove yourself from item", access_level="member") + def loot_rem_from_cmd(self, request, _): + try: + loot_item = self.is_already_added(request.sender.name) + + if loot_item is not None: + loot_item.bidders.remove(request.sender.name) + + self.last_modify = int(time.time()) + text = "removed from %s." % loot_item.get_item_str() + self.bot.send_private_message(request.sender.char_id, "You were %s" % text) + self.bot.send_private_channel_message(request.sender.name + " was " + text) + else: + return "You are not added to any loot." + except KeyError: + return "Wrong index given." + + @command(command="loot", params=[Const("roll")], description="Roll all loot", access_level="leader", + sub_command="modify") + def loot_roll_cmd(self, request, _): + if not self.leader_controller.can_use_command(request.sender.char_id) if self.leader_controller else False: + return LeaderController.NOT_LEADER_MSG + + if self.loot_list: + blob = "" + remove = [] + for i, loot_item in self.loot_list.items(): + winners = [] + + if loot_item.bidders: + if len(loot_item.bidders) <= loot_item.count: + winners = loot_item.bidders.copy() + loot_item.count -= len(loot_item.bidders) + loot_item.bidders = [] + else: + for j in range(0, loot_item.count): + winner = secrets.choice(loot_item.bidders) + + winners.append(winner) + loot_item.bidders.remove(winner) + loot_item.count = loot_item.count - 1 if loot_item.count > 0 else 0 + for user in winners: + self.account_service.add_log(self.account_service.character_service.resolve_char_to_id(user), + "loot", + f"{loot_item.get_item_str()}", + request.sender.char_id) + blob += "%d. %s\n" % (i, loot_item.get_item_str()) + blob += " | Winners: %s\n\n" % ', '.join(winners) + if loot_item.count == 0: + remove.append(i) + for i in remove: + self.loot_list.pop(i) + + msg = ChatBlob("Roll results", blob) + msg.page_prefix = "Time is up! " + self.bot.send_private_channel_message(msg if len(blob) > 0 else "No one was added to any loot") + if self.loot_list: + count = 1 + for key in sorted(list(self.loot_list.keys())): + if self.loot_list[key].count <= 0: + del self.loot_list[key] + else: + loot_item = self.loot_list[key] + del self.loot_list[key] + self.loot_list[count] = loot_item + count += 1 + else: + return "No loot to roll." + + @command(command="loot", params=[Const("addraiditem"), Int("raid_item_id"), Int("item_count")], + description="Add item from pre-defined raid to loot list", access_level="leader", sub_command="modify") + def loot_add_raid_item(self, request, _, raid_item_id: int, item_count: int): + if not self.leader_controller.can_use_command(request.sender.char_id) if self.leader_controller else False: + return LeaderController.NOT_LEADER_MSG + + sql = "SELECT r.name, r.comment, r.ql, a.lowid AS low_id, a.highid AS high_id FROM aodb a " \ + "LEFT JOIN raid_loot r ON (a.name = r.name AND a.highql >= r.ql) " \ + "WHERE r.id = ? LIMIT 1" + item = self.db.query_single(sql, [raid_item_id]) + + if item: + self.add_item_to_loot(item, item.comment, item_count) + + self.bot.send_private_channel_message("Added %s to loot list." % item.name) + else: + return "Failed to add item with ID %s." % raid_item_id + + @command(command="loot", params=[Const("addraid"), Any("raid"), Any("category")], + description="Add all loot from pre-defined raid", access_level="leader", sub_command="modify") + def loot_add_raid_loot(self, request, _, raid: str, category: str): + if not self.leader_controller.can_use_command(request.sender.char_id) if self.leader_controller else False: + return LeaderController.NOT_LEADER_MSG + + items = self.db.query( + "SELECT r.raid, r.category, r.id, r.ql, r.name, r.comment, r.multiloot, " + "a.lowid AS low_id, " + "a.highid AS high_id, a.icon " + "FROM raid_loot r " + "LEFT JOIN aodb a " + "ON (r.name = a.name AND r.ql <= a.highql) " + "WHERE r.raid = ? AND r.category = ? " + "ORDER BY r.name", + [raid, category] + ) + + if items: + for item in items: + self.add_item_to_loot(item, item.comment, item.multiloot) + + self.bot.send_private_channel_message("%s table was added to loot." % category) + else: + return "%s does not have any items registered in loot table." % category + + @command(command="loot", + params=[Const("additem", is_optional=True), Int("item"), Int("item_count", is_optional=True)], + description="Add an item to loot list by item id", access_level="leader", sub_command="modify") + def loot_add_item_id_cmd(self, request, _, item_id, item_count: int): + if not self.leader_controller.can_use_command(request.sender.char_id) if self.leader_controller else False: + return LeaderController.NOT_LEADER_MSG + + if item_count is None: + item_count = 1 + + item = self.items_controller.get_by_item_id(item_id) + if not item: + return "Could not find item with ID %d." % item_id + + self.add_item_to_loot(item, item_count=item_count) + + self.bot.send_private_channel_message("%s was added to loot list." % item.name) + + @command(command="loot", + params=[Const("additem", is_optional=True), Any("item"), Int("item_count", is_optional=True)], + description="Add an item to loot list", access_level="leader", sub_command="modify") + def loot_add_item_cmd(self, request, _, item, item_count: int): + if not self.leader_controller.can_use_command(request.sender.char_id) if self.leader_controller else False: + return LeaderController.NOT_LEADER_MSG + loot = "" + if item_count is None: + item_count = 1 + item = item.replace("'", "'") + items = re.findall(r"(([^<]+)?([^<]+)([^<]+)?)", item) + if items and item_count == 1: + for item in items: + item = self.text.make_item(int(item[2]), int(item[3]), int(item[4]), item[5]) + if loot != "": + loot += ", " + item + else: + loot += item + self.add_item_to_loot(item) + else: + loot += item + self.add_item_to_loot(item, item_count=item_count) + + self.bot.send_private_channel_message("%s was added to loot list." % loot) + + @timerevent(budatime="1h", + description="Periodically check when loot list was last modified, and clear it " + "if last modification was done 1+ hours ago") + def loot_clear_event(self, _1, _2): + if self.loot_list and self.last_modify: + if int(time.time()) - self.last_modify > 3600 and self.loot_list: + self.last_modify = None + self.loot_list = OrderedDict() + self.bot.send_org_message("Loot was last modified more than 1 hour ago, list has been cleared.") + self.bot.send_private_channel_message( + "Loot was last modified more than 1 hour ago, list has been cleared.") + + def is_already_added(self, name: str): + for i, loot_item in self.loot_list.items(): + if name in loot_item.bidders: + return loot_item + return None + + def add_item_to_loot(self, item, comment=None, item_count=1): + existing_item = next((loot_item for x, loot_item in self.loot_list.items() if loot_item.item == item), None) + if existing_item: + existing_item.count += 1 + else: + # this prevents loot items from being re-numbered when items are removed + end_index = list(self.loot_list.keys())[-1] + 1 if len(self.loot_list) > 0 else 1 + + self.loot_list[end_index] = LootItem(item, comment, item_count) + + self.last_modify = int(time.time()) + + def get_loot_list(self, edit=False): + blob = "" + remove = self.text.make_chatcmd("Remove from rolls", "/tell loot rem") + blob += f"[{remove}]\n\n" + for i, loot_item in self.loot_list.items(): + bidders = loot_item.bidders + img = "" + + if loot_item.get_item_str()[:2] == "": + item = re.findall(r"(([^<]+)?([^<]+)([^<]+)?)", + loot_item.get_item_str()) + imgid = self.db.query_single("SELECT icon from aodb where lowid=? or highid=?", + [item[0][2], item[0][3]]) + if imgid is not None: + img = self.text.make_image(imgid.get("icon")) + " - " + blob += "%d. %s%s " % (i, img, item[0][0]) + + else: + blob += "%d. %s " % (i, loot_item.get_item_str()) + blob += f"x{loot_item.count} [{self.text.make_chatcmd('Add', f'/tell loot add {i}')}]\n" + blob += " └ " + if edit: + blob += f"[ {self.text.make_tellcmd('+1', f'loot increase {i}')} | " \ + f"{self.text.make_tellcmd('-1', f'loot decrease {i}')} ]" \ + f"[ {self.text.make_tellcmd('REM', f'loot remitem {i}')} ]\n\n" + else: + if len(bidders) > 0: + blob += "%s\n\n" % ', '.join(bidders) + else: + blob += "None added\n\n" + + return ChatBlob("Loot (%d)" % len(self.loot_list), blob) diff --git a/modules/standard/loot/loot_lists_controller.py b/modules/standard/loot/loot_lists_controller.py new file mode 100644 index 0000000..7c16571 --- /dev/null +++ b/modules/standard/loot/loot_lists_controller.py @@ -0,0 +1,398 @@ +from core.chat_blob import ChatBlob +from core.command_param_types import Options +from core.db import DB +from core.decorators import instance, command, setting +from core.setting_service import SettingService +from core.setting_types import BooleanSettingType +from core.text import Text + + +@instance() +class LootListsController: + def __init__(self): + self.categories = { + "s7": "Sector 7", + "s13": "Sector 13", + "s28": "Sector 28", + "s35": "Sector 35", + "s42": "Sector 42", + "db": "DustBrigade", + "aquarius": "Aquarius", + "sagittarius": "Sagittarius", + "taurus": "Taurus", + "libra": "Libra", + "capricorn": "Capricorn", + "gemini": "Gemini", + "virgo": "Virgo", + "cancer": "Cancer", + "pisces": "Pisces", + "scorpio": "Scorpio", + "aries": "Aries", + "leo": "Leo", + "tnh": "The Night Heart", + "barmor": "Beast Armor", + "bweapons": "Beast Weapons", + "bstars": "Stars", + "sb": "Shadowbreeds", + "alba": "Albtraum", + "samples": "Samples", + "ancients": "Ancients", + "c&cm": "Crystals & Crystalised Memories", + "pbc": "Pocket Boss Crystals", + "r&pu": "Rings and Preservation Units", + "symbs": "Symbiants", + "spirits": "Spirits", + "pgems": "Profession Gems", + "gen": "General", + "db1": "DB1", + "db2": "DB2", + "db3": "DB3", + "ncu": "HUD/NCU", + "gaunt": "Bastion", + "mitaar": "Mitaar", + "12m": "12Man", + "vortexx": "Vortexx", + "dbarmor": "DB Armor", + "util": "Util", + "poh": "Pyramid of Home", + "totwh": "Temple of Three Winds (HL)", + "binyacht": "Binyacht the Faithful", + "guardian": "Guardian of the Three", + "summoner": "The Immortal Summoner", + "lien": "Lien the Memory-Devourer", + "loremaster": "The Loremaster", + "nematet": "Nematet the Subjugator of Time", + "aegis": "Aegis of Tomorrow", + "gartua": "Gartua the Gate Guardian", + "aztur": "Aztur the Immortal", + "khalum": "Khalum the Weaver of Flesh", + "uklesh": "Uklesh the Beguiling", + + "subh": "Condemned Subway (HL)", + "shiro": "Eliminator Shiro", + "eumen": "Eumenides", + "qets": "Queen of the Slums", + "psion": "The Psion", + "pbcr": "Primal Bloodcreeper", + "aneid": "Vergil Aeneid", + "abmouth": "Abmouth Supremus", + + } + + def inject(self, registry): + self.db: DB = registry.get_instance("db") + self.text: Text = registry.get_instance("text") + self.setting_service: SettingService = registry.get_instance("setting_service") + self.command_alias_service = registry.get_instance("command_alias_service") + + def start(self): + self.command_alias_service.add_alias("aries", "pande aries") + self.command_alias_service.add_alias("aquarius", "pande aquarius") + self.command_alias_service.add_alias("leo", "pande leo") + self.command_alias_service.add_alias("virgo", "pande virgo") + self.command_alias_service.add_alias("cancer", "pande cancer") + self.command_alias_service.add_alias("gemini", "pande gemini") + self.command_alias_service.add_alias("libra", "pande libra") + self.command_alias_service.add_alias("pisces", "pande pisces") + self.command_alias_service.add_alias("capricorn", "pande capricorn") + self.command_alias_service.add_alias("scorpio", "pande scorpio") + self.command_alias_service.add_alias("taurus", "pande taurus") + self.command_alias_service.add_alias("sagittarius", "pande sagittarius") + self.command_alias_service.add_alias("tnh", "pande tnh") + + self.command_alias_service.add_alias("s7", "apf s7") + self.command_alias_service.add_alias("s13", "apf s13") + self.command_alias_service.add_alias("s28", "apf s28") + self.command_alias_service.add_alias("s35", "apf s35") + self.command_alias_service.add_alias("s42", "apf s35") + + self.command_alias_service.add_alias("mitaar", "xan mitaar") + self.command_alias_service.add_alias("12m", "xan 12m") + self.command_alias_service.add_alias("vortexx", "xan vortexx") + + self.command_alias_service.add_alias("alba", "albtraum") + + self.command_alias_service.add_alias("lt", "loottables") + self.command_alias_service.add_alias("raids", "loottables") + self.command_alias_service.add_alias("ltables", "loottables") + self.command_alias_service.add_alias("loots", "loottables") + + @setting(name="use_item_icons", value="True", description="Use icons when building loot list") + def use_item_icons(self): + return BooleanSettingType() + + @command(command="loottables", params=[], description="Show all Loottables", access_level="member") + def loottables_cmd(self, _): + return ChatBlob("Loot Tables", self.build_overview()) + + # # + # APF # + # # + @command(command="apf", + params=[Options(["s7", "s13", "s28", "s35", "s42"])], + description="Get list of items from APF", access_level="member") + def apf_loot_cmd(self, _, category): + add_all = True if category not in ["s7", "s42"] else False + category = self.get_real_category_name(category) + + items = self.get_items("APF", category) + + if items: + return ChatBlob("%s loot table" % category, self.build_list(items, "APF", category, add_all)) + else: + return "No loot registered for %s." % category + + @command(command="apf", params=[], description="Get list of items from APF", access_level="member") + def apf_tables_cmd(self, _): + return ChatBlob("APF loot tables", self.build_overview("APF", "apf")) + + # # + # Albtraum # + # # + @command(command="albtraum", params=[], + description="Get list of items from Albtraum", access_level="member") + def albtraum_loot_cmd(self, _): + return ChatBlob("Albtraum loot tables", self.build_overview("Albtraum", "albtraum")) + + @command(command="albtraum", params=[Options(["c&cm", "pbc", "r&pu", "ancients", "samples"])], + description="Get list of items from Albtraum", access_level="member") + def albtraum_tables_cmd(self, _, category): + category = self.get_real_category_name(category) + + items = self.get_items("Albtraum", category) + + if items: + return ChatBlob("%s loot table" % category, self.build_list(items, "Albtraum", category)) + else: + return "No loot registered for %s." % category + + # # + # Pandemonium # + # # + @command(command="pande", + params=[Options(["bweapons", "barmor", "bstars", "aries", "aquarius", "leo", + "virgo", "cancer", "gemini", "libra", "pisces", "capricorn", + "scorpio", "taurus", "sagittarius", "tnh", "gaunt", "sb"])], + description="Get list of items from Pandemonium", access_level="member") + def pande_loot_cmd(self, _, category_name): + category = self.get_real_category_name(category_name) + + items = self.get_items("Pande", category) + + if items: + return ChatBlob("%s loot table" % category, self.build_list(items, "Pande", category)) + else: + return "No loot registered for %s." % category_name + + @command(command="pande", params=[], description="Get list of items from Pandemonium", access_level="member") + def pande_tables_cmd(self, _): + return ChatBlob("Pandemonium loot tables", self.build_overview("Pande", "pande")) + + # # + # Dust Brigade # + # # + @command(command="db", params=[Options(["db1", "db2", "db3", "dbarmor", "util"])], + description="Get list of items from DustBrigade", access_level="member") + def db_loot_cmd(self, _, category): + category = self.get_real_category_name(category) + items = self.get_items("DustBrigade", category) + if items: + return ChatBlob("%s loot table" % category, self.build_list(items, "DustBrigade", category)) + else: + return "No loot registered for %s." % category + + @command(command="db", params=[], description="Get list of items from DustBrigade", access_level="member") + def db_tables_cmd(self, _): + return ChatBlob("DustBrigade loot tables", self.build_overview("DustBrigade", "db")) + + # # + # Xan # + # # + @command(command="xan", params=[Options(["mitaar", "12m", "vortexx"]), + Options(["gen", "symbs", "spirits", "gem"], is_optional=True)], + description="Get list of items from Xan", access_level="member") + def xan_loot_cmd(self, _, category, sub): + category = self.get_real_category_name(category) + sub = self.get_real_category_name(sub) + blob = "" + if not sub: + blob += self.build_list(self.get_items(category, "General"), category, "General") + blob += self.build_list(self.get_items(category, "Symbiants"), category, "Symbiants") + blob += self.build_list(self.get_items(category, "Spirits"), category, "Spirits") + else: + blob += self.build_list(self.get_items(category, sub), category, sub) + + return ChatBlob("%s loot table" % category, blob) + + @command(command="xan", params=[], description="Get list of items from Xan", access_level="member") + def xan_tables_cmd(self, _): + blob = "" + raids = ["Mitaar", "Vortexx", "12Man"] + + for raid in raids: + show_loot = self.text.make_chatcmd( + "Loot table", "/tell xan %s" % self.get_real_category_name(raid, True)) + + sql = "SELECT COUNT(*) AS count FROM raid_loot WHERE raid = ?" + count = self.db.query_single(sql, [raid]).count + + blob += "%s - %s items\n" % (raid, count) + blob += " └ [%s]\n\n" % show_loot + + return ChatBlob("Xan loot tables", blob) + + # # + # Pyramid of Home# + # # + @command(command="poh", params=[Options(["gen", "ncu"])], + description="Get list of items from Pyramid of Home", access_level="member") + def poh_loot_cmd(self, _, category_name): + category = self.get_real_category_name(category_name) + items = self.get_items("Pyramid of Home", category) + if items: + return ChatBlob("%s loot table" % category, self.build_list(items, "poh", category)) + else: + return "No loot registered for %s." % category_name + + @command(command="poh", params=[], description="Get list of items from Pyramid of Home", access_level="member") + def poh_tables_cmd(self, _): + return ChatBlob("Pyramid of Home loot tables", self.build_overview("Pyramid of Home", "poh")) + + ######################################### + # Temple of Three Winds (Highlevel) # + ######################################### + + @command(command="totwh", params=[Options( + ["binyacht", "guardian", "summoner", "loremaster", "nematet", "aegis", "lien", "gartua", "aztur", "khalum", + "uklesh", "gen", "armor"])], + description="Get list of items from Temple of Three Winds", access_level="all") + def totwh_loot_cmd(self, _, category_name): + category = self.get_real_category_name(category_name) + items = self.get_items("Temple of Three Winds (HL)", category) + if items: + return ChatBlob("%s loot table" % category, self.build_list(items, "totwh", category)) + else: + return "No loot registered for %s." % category_name + + @command(command="totwh", params=[], description="Get list of items from Temple of Three Winds", access_level="all") + def totwh_tables_cmd(self, _): + return ChatBlob("Temple of Three Winds (HL) loot tables", + self.build_overview("Temple of Three Winds (HL)", "totwh")) + + ############################### + # Condemned Subway (raid) # + ############################### + + @command(command="subh", params=[Options(["shiro", "eumen", "qets", "psion", "pbcr", "aneid", "abmouth", "gen"])], + description="Get list of items from Condemned Subway (HL)", access_level="member") + def subh_loot_cmd(self, _, category_name): + category = self.get_real_category_name(category_name) + items = self.get_items("Condemned Subway (HL)", category) + if items: + return ChatBlob("%s loot table" % category, self.build_list(items, "subh", category)) + else: + return "No loot registered for %s." % category_name + + @command(command="subh", params=[], description="Get list of items from Condemned Subway (HL)", + access_level="member") + def subh_tables_cmd(self, _): + return ChatBlob("Condemned Subway (HL) loot tables", self.build_overview("Condemned Subway (HL)", "subh")) + + def build_overview(self, name=None, cmd=None): + blob = "" + if name and cmd: + sql = "SELECT category FROM raid_loot WHERE raid = ? GROUP BY category" + raids = self.db.query(sql, [name]) + for raid in raids: + show_loot = self.text.make_chatcmd( + "Loot table", "/tell %s %s" % (cmd, self.get_real_category_name(raid.category, True))) + + sql = "SELECT COUNT(*) AS count FROM raid_loot WHERE category = ? and raid=?" + count = self.db.query_single(sql, [raid.category, name]).count + + blob += "%s - %s items\n" % (raid.category, count) + blob += " └ [%s]\n\n" % show_loot + blob += "" + if not name and not cmd: + raids = [ + ("Condemned Subway (HL)", "subh"), + ("Temple of Three Winds (HL)", "totwh"), + ("12Man", "xan 12m"), + ("Vortexx", "xan vortexx"), + ("Mitaar", "xan mitaar"), + (("APF", "Sector 7"), "apf s7"), + (("APF", "Sector 13"), "apf s13"), + (("APF", "Sector 28"), "apf s28"), + (("APF", "Sector 35"), "apf s35"), + ("Albtraum", "albtraum"), + ("DustBrigade", "db"), + ("Pande", "pande"), + ("Pyramid of Home", "poh") + ] + for raid in raids: + title = raid[0][1] if isinstance(raid[0], tuple) else raid[0] + cmd = raid[1] + show_loot = self.text.make_chatcmd("Loot table", "/tell %s" % cmd) + blob += "%s\n" % title + blob += " └ [%s]\n\n" % show_loot + blob += "" + return blob + + # Raids available in AO: + # s7, s10, s13, s28, s35, s42, aquarius, virgo, sagittarius, beastweapons, beastarmor, + # beaststars, tnh, aries, leo, cancer, gemini, libra, pisces, taurus, + # capricorn, scorpio, tara, vortexx, mitaar, 12m, db1, db2, db3, poh, + # biodome, manex (collector), hollow islands, mercenaries + def build_list(self, items, raid=None, category=None, add_all=False): + blob = "" + + if add_all: + blob += "%s items to loot list\n\n" % self.text.make_chatcmd( + "Add all", "/tell loot addraid %s %s" % (raid, category)) + + blob += "%s\n" % category if category is not None else "" + + for item in items: + item.id = self.text.make_item(item.low_id, item.high_id, item.ql, item.name) + if item.multiloot > 1: + single_link = self.text.make_chatcmd("Add to loot", "/tell loot %s 1" % item.id) + single_link1 = self.text.make_chatcmd("Add to auction", "/tell auction prepare %s " % item.id) + multi_link = self.text.make_chatcmd( + "Add x%d to loot" % item.multiloot, "/tell loot %s %d" % (item.id, item.multiloot)) + multi_link2 = self.text.make_chatcmd( + "Add x%d to auction" % item.multiloot, "/tell auction prepare %s (ALL)" % item.id) + add_links = "└ [%s] [%s]
└ [%s] [%s (ALL) - One Winner]" % ( + single_link, multi_link, single_link1, multi_link2) + else: + add_links = "└ [%s]
└ [%s]" % ( + self.text.make_chatcmd("Add to loot", "/tell loot %s 1" % item.id), + self.text.make_chatcmd("Add to auction", "/tell auction prepare %s" % item.id)) + + comment = " (%s)" % item.comment if item.comment != "" else "" + + if self.setting_service.get("use_item_icons").get_value(): + item_link = self.text.make_item(item.low_id, item.high_id, item.ql, "" % item.icon) + blob += "%s%s%s\n %s\n\n" % (item_link, item.name, comment, add_links) + else: + item_link = self.text.make_item(item.low_id, item.high_id, item.ql, item.name) + blob += "%s%s\n %s\n\n" % (item_link, comment, add_links) + blob += "" + return blob + + def get_items(self, raid, category): + return self.db.query( + "SELECT r.raid, r.category, r.id, r.ql, r.name, r.comment, " + "r.multiloot, a.lowid AS low_id, a.highid AS high_id, a.icon " + "FROM raid_loot r " + "LEFT JOIN aodb a " + "ON (r.high_id = a.highid OR (r.high_id = 0 AND r.name = a.name AND r.ql <= a.highql)) " + "WHERE r.raid = ? AND r.category = ? " + "ORDER BY r.name", + [raid, category] + ) + + def get_real_category_name(self, category, reverse=False): + if reverse: + return next((name for name, real_name in self.categories.items() if real_name == category), None) + else: + return self.categories[category] if category in list(self.categories.keys()) else None diff --git a/modules/standard/loot/raid_loot.sql b/modules/standard/loot/raid_loot.sql new file mode 100644 index 0000000..6cacc7a --- /dev/null +++ b/modules/standard/loot/raid_loot.sql @@ -0,0 +1,585 @@ +# noinspection LongLineForFile + +# noinspection LongLineForFile + +# noinspection LongLineForFile + +DROP TABLE IF EXISTS raid_loot; +CREATE TABLE raid_loot +( + id INT PRIMARY KEY AUTO_INCREMENT, + raid VARCHAR(30) NOT NULL, + category VARCHAR(50) NOT NULL, + ql INT NOT NULL, + name VARCHAR(255) NOT NULL, + high_id int default 0, + comment VARCHAR(255) NOT NULL, + multiloot INT NOT NULL +); +INSERT INTO raid_loot (raid, category, ql, name, comment, multiloot) +VALUES ('Vortexx', 'General', 300, 'Base NCU - Type 00 (0/6)', '', 1), + ('Vortexx', 'General', 300, 'Nanodeck Activation Device', '', 1), + ('Vortexx', 'General', 1, 'Multi Colored Xan Belt Tuning Device', '', 1), + ('Vortexx', 'General', 1, 'Green Xan Belt Tuning Device', '', 1), + ('Vortexx', 'General', 300, 'Xan Weapon Upgrade Device', '', 1), + ('Vortexx', 'General', 1, 'Xan Defense Merit Board Base', '', 1), + ('Vortexx', 'General', 1, 'Xan Combat Merit Board Base', '', 1), + ('Vortexx', 'Symbiants', 300, 'Xan Waist Symbiant, Artillery Unit Beta', '', 1), + ('Vortexx', 'Symbiants', 300, 'Xan Waist Symbiant, Control Unit Beta', '', 1), + ('Vortexx', 'Symbiants', 300, 'Xan Waist Symbiant, Extermination Unit Beta', '', 1), + ('Vortexx', 'Symbiants', 300, 'Xan Waist Symbiant, Infantry Unit Beta', '', 1), + ('Vortexx', 'Symbiants', 300, 'Xan Waist Symbiant, Support Unit Beta', '', 1), + ('Vortexx', 'Symbiants', 300, 'Xan Left Arm Symbiant, Artillery Unit Beta', '', 1), + ('Vortexx', 'Symbiants', 300, 'Xan Left Arm Symbiant, Control Unit Beta', '', 1), + ('Vortexx', 'Symbiants', 300, 'Xan Left Arm Symbiant, Extermination Unit Beta', '', 1), + ('Vortexx', 'Symbiants', 300, 'Xan Left Arm Symbiant, Infantry Unit Beta', '', 1), + ('Vortexx', 'Symbiants', 300, 'Xan Left Arm Symbiant, Support Unit Beta', '', 1), + ('Vortexx', 'Symbiants', 300, 'Xan Right Wrist Symbiant, Artillery Unit Beta', '', 1), + ('Vortexx', 'Symbiants', 300, 'Xan Right Wrist Symbiant, Control Unit Beta', '', 1), + ('Vortexx', 'Symbiants', 300, 'Xan Right Wrist Symbiant, Extermination Unit Beta', '', 1), + ('Vortexx', 'Symbiants', 300, 'Xan Right Wrist Symbiant, Infantry Unit Beta', '', 1), + ('Vortexx', 'Symbiants', 300, 'Xan Right Wrist Symbiant, Support Unit Beta', '', 1), + ('Vortexx', 'Symbiants', 300, 'Xan Ocular Symbiant, Artillery Unit Beta', '', 1), + ('Vortexx', 'Symbiants', 300, 'Xan Ocular Symbiant, Control Unit Beta', '', 1), + ('Vortexx', 'Symbiants', 300, 'Xan Ocular Symbiant, Extermination Unit Beta', '', 1), + ('Vortexx', 'Symbiants', 300, 'Xan Ocular Symbiant, Infantry Unit Beta', '', 1), + ('Vortexx', 'Symbiants', 300, 'Xan Ocular Symbiant, Support Unit Beta', '', 1), + ('Vortexx', 'Spirits', 250, 'Xan Spirit of Right Wrist Offence - Beta', '', 1), + ('Vortexx', 'Spirits', 250, 'Xan Spirit of Right Wrist Weakness - Beta', '', 1), + ('Vortexx', 'Spirits', 250, 'Xan Left Limb Spirit of Essence - Beta', '', 1), + ('Vortexx', 'Spirits', 250, 'Xan Left Limb Spirit of Strength - Beta', '', 1), + ('Vortexx', 'Spirits', 250, 'Xan Left Limb Spirit of Understanding - Beta', '', 1), + ('Vortexx', 'Spirits', 250, 'Xan Left Limb Spirit of Weakness - Beta', '', 1), + ('Vortexx', 'Spirits', 250, 'Xan Midriff Spirit of Essence - Beta', '', 1), + ('Vortexx', 'Spirits', 250, 'Xan Midriff Spirit of Knowledge - Beta', '', 1), + ('Vortexx', 'Spirits', 250, 'Xan Midriff Spirit of Strength - Beta', '', 1), + ('Vortexx', 'Spirits', 250, 'Xan Midriff Spirit of Weakness - Beta', '', 1), + ('Vortexx', 'Spirits', 250, 'Xan Spirit of Essence - Beta', '', 1), + ('Vortexx', 'Spirits', 250, 'Xan Spirit of Discerning Weakness - Beta', '', 1), + ('Mitaar', 'General', 300, 'Base NCU - Type 00 (0/6)', '', 1), + ('Mitaar', 'General', 300, 'Nanodeck Activation Device', '', 1), + ('Mitaar', 'General', 1, 'Multi Colored Xan Belt Tuning Device', '', 1), + ('Mitaar', 'General', 1, 'Green Xan Belt Tuning Device', '', 1), + ('Mitaar', 'General', 300, 'Xan Weapon Upgrade Device', '', 1), + ('Mitaar', 'General', 1, 'Xan Defense Merit Board Base', '', 1), + ('Mitaar', 'General', 1, 'Xan Combat Merit Board Base', '', 1), + ('Mitaar', 'Symbiants', 300, 'Xan Brain Symbiant, Artillery Unit Beta', '', 1), + ('Mitaar', 'Symbiants', 300, 'Xan Brain Symbiant, Control Unit Beta', '', 1), + ('Mitaar', 'Symbiants', 300, 'Xan Brain Symbiant, Extermination Unit Beta', '', 1), + ('Mitaar', 'Symbiants', 300, 'Xan Brain Symbiant, Infantry Unit Beta', '', 1), + ('Mitaar', 'Symbiants', 300, 'Xan Brain Symbiant, Support Unit Beta', '', 1), + ('Mitaar', 'Symbiants', 300, 'Xan Chest Symbiant, Artillery Unit Beta', '', 1), + ('Mitaar', 'Symbiants', 300, 'Xan Chest Symbiant, Control Unit Beta', '', 1), + ('Mitaar', 'Symbiants', 300, 'Xan Chest Symbiant, Extermination Unit Beta', '', 1), + ('Mitaar', 'Symbiants', 300, 'Xan Chest Symbiant, Infantry Unit Beta', '', 1), + ('Mitaar', 'Symbiants', 300, 'Xan Chest Symbiant, Support Unit Beta', '', 1), + ('Mitaar', 'Symbiants', 300, 'Xan Left Hand Symbiant, Artillery Unit Beta', '', 1), + ('Mitaar', 'Symbiants', 300, 'Xan Left Hand Symbiant, Control Unit Beta', '', 1), + ('Mitaar', 'Symbiants', 300, 'Xan Left Hand Symbiant, Extermination Unit Beta', '', 1), + ('Mitaar', 'Symbiants', 300, 'Xan Left Hand Symbiant, Infantry Unit Beta', '', 1), + ('Mitaar', 'Symbiants', 300, 'Xan Left Hand Symbiant, Support Unit Beta', '', 1), + ('Mitaar', 'Symbiants', 300, 'Xan Left Wrist Symbiant, Artillery Unit Beta', '', 1), + ('Mitaar', 'Symbiants', 300, 'Xan Left Wrist Symbiant, Control Unit Beta', '', 1), + ('Mitaar', 'Symbiants', 300, 'Xan Left Wrist Symbiant, Extermination Unit Beta', '', 1), + ('Mitaar', 'Symbiants', 300, 'Xan Left Wrist Symbiant, Infantry Unit Beta', '', 1), + ('Mitaar', 'Symbiants', 300, 'Xan Left Wrist Symbiant, Support Unit Beta', '', 1), + ('Mitaar', 'Spirits', 250, 'Xan Brain Spirit of Computer Skill - Beta', '', 1), + ('Mitaar', 'Spirits', 250, 'Xan Brain Spirit of Offence - Beta', '', 1), + ('Mitaar', 'Spirits', 250, 'Xan Essence Brain Spirit - Beta', '', 1), + ('Mitaar', 'Spirits', 250, 'Xan Left Hand Spirit of Defence - Beta', '', 1), + ('Mitaar', 'Spirits', 250, 'Xan Left Hand Spirit of Strength - Beta', '', 1), + ('Mitaar', 'Spirits', 250, 'Xan Spirit of Left Wrist Defense - Beta', '', 1), + ('Mitaar', 'Spirits', 250, 'Xan Spirit of Left Wrist Strength - Beta', '', 1), + ('Mitaar', 'Spirits', 250, 'Xan Heart Spirit of Essence - Beta', '', 1), + ('Mitaar', 'Spirits', 250, 'Xan Heart Spirit of Knowledge - Beta', '', 1), + ('Mitaar', 'Spirits', 250, 'Xan Heart Spirit of Strength - Beta', '', 1), + ('Mitaar', 'Spirits', 250, 'Xan Heart Spirit of Weakness - Beta', '', 1), + ('Mitaar', 'Spirits', 250, 'Xan Spirit of Clear Thought - Beta', '', 1), + ('12Man', 'General', 1, 'Unknown Mixture', '', 1), + ('12Man', 'General', 1, 'A piece of cloth', '', 1), + ('12Man', 'General', 300, 'Base NCU - Type 00 (0/6)', '', 1), + ('12Man', 'General', 300, 'Nanodeck Activation Device', '', 1), + ('12Man', 'General', 1, 'Multi Colored Xan Belt Tuning Device', '', 1), + ('12Man', 'General', 1, 'Green Xan Belt Tuning Device', '', 1), + ('12Man', 'General', 300, 'Xan Weapon Upgrade Device', '', 1), + ('12Man', 'General', 1, 'Xan Defense Merit Board Base', '', 1), + ('12Man', 'General', 1, 'Xan Combat Merit Board Base', '', 1), + ('12Man', 'Symbiants', 300, 'Xan Ear Symbiant, Artillery Unit Beta', + 'NODROP, right click to change prof requirement', 1), + ('12Man', 'Symbiants', 300, 'Xan Thigh Symbiant, Artillery Unit Beta', + 'NODROP, right click to change prof requirement', 1), + ('12Man', 'Symbiants', 300, 'Xan Right Arm Symbiant, Artillery Unit Beta', '', 1), + ('12Man', 'Symbiants', 300, 'Xan Right Arm Symbiant, Control Unit Beta', '', 1), + ('12Man', 'Symbiants', 300, 'Xan Right Arm Symbiant, Extermination Unit Beta', '', 1), + ('12Man', 'Symbiants', 300, 'Xan Right Arm Symbiant, Infantry Unit Beta', '', 1), + ('12Man', 'Symbiants', 300, 'Xan Right Arm Symbiant, Support Unit Beta', '', 1), + ('12Man', 'Symbiants', 300, 'Xan Right Hand Symbiant, Artillery Unit Beta', '', 1), + ('12Man', 'Symbiants', 300, 'Xan Right Hand Symbiant, Control Unit Beta', '', 1), + ('12Man', 'Symbiants', 300, 'Xan Right Hand Symbiant, Extermination Unit Beta', '', 1), + ('12Man', 'Symbiants', 300, 'Xan Right Hand Symbiant, Infantry Unit Beta', '', 1), + ('12Man', 'Symbiants', 300, 'Xan Right Hand Symbiant, Support Unit Beta', '', 1), + ('12Man', 'Symbiants', 300, 'Xan Feet Symbiant, Artillery Unit Beta', '', 1), + ('12Man', 'Symbiants', 300, 'Xan Feet Symbiant, Control Unit Beta', '', 1), + ('12Man', 'Symbiants', 300, 'Xan Feet Symbiant, Extermination Unit Beta', '', 1), + ('12Man', 'Symbiants', 300, 'Xan Feet Symbiant, Infantry Unit Beta', '', 1), + ('12Man', 'Symbiants', 300, 'Xan Feet Symbiant, Support Unit Beta', '', 1), + ('12Man', 'Spirits', 250, 'Xan Right Limb Spirit of Essence - Beta', '', 1), + ('12Man', 'Spirits', 250, 'Xan Right Limb Spirit of Strength - Beta', '', 1), + ('12Man', 'Spirits', 250, 'Xan Right Limb Spirit of Weakness - Beta', '', 1), + ('12Man', 'Spirits', 250, 'Xan Right Hand Defensive Spirit - Beta', '', 1), + ('12Man', 'Spirits', 250, 'Xan Right Hand Strength Spirit - Beta', '', 1), + ('12Man', 'Spirits', 250, 'Xan Spirit of Insight - Right Hand - Beta', '', 1), + ('12Man', 'Spirits', 250, 'Xan Spirit of Feet Defense - Beta', '', 1), + ('12Man', 'Spirits', 250, 'Xan Spirit of Feet Strength - Beta', '', 1), + ('12Man', 'Spirits', 250, 'Xan Spirit of Defense - Beta', '', 1), + ('12Man', 'Spirits', 250, 'Xan Spirit of Essence - Beta', '', 1), + ('12Man', 'Spirits', 250, 'Xan Spirit of Essence Whispered - Beta', '', 1), + ('12Man', 'Spirits', 250, 'Xan Spirit of Knowledge Whispered - Beta', '', 1), + ('12Man', 'Spirits', 250, 'Xan Spirit of Strength Whispered - Beta', '', 1), + ('12Man', 'Profession Gems', 1, 'Brute''s Gem', 'Enf', 1), + ('12Man', 'Profession Gems', 1, 'Builder''s Gem', 'Eng', 1), + ('12Man', 'Profession Gems', 1, 'Dictator''s Gem', 'Crat', 1), + ('12Man', 'Profession Gems', 1, 'Explorer''s Gem', 'Adv', 1), + ('12Man', 'Profession Gems', 1, 'Hacker''s Gem', 'Fix', 1), + ('12Man', 'Profession Gems', 1, 'Healer''s Gem', 'Doc', 1), + ('12Man', 'Profession Gems', 1, 'Master''s Gem', 'MA', 1), + ('12Man', 'Profession Gems', 1, 'Merchant''s Gem', 'Trad', 1), + ('12Man', 'Profession Gems', 1, 'Protecter''s Gem', 'Keep', 1), + ('12Man', 'Profession Gems', 1, 'Sniper''s Gem', 'Agent', 1), + ('12Man', 'Profession Gems', 1, 'Spirit''s Gem', 'Shade', 1), + ('12Man', 'Profession Gems', 1, 'Techno Wizard''s Gem', 'NT', 1), + ('12Man', 'Profession Gems', 1, 'Warrior''s Gem', 'Sol', 1), + ('12Man', 'Profession Gems', 1, 'Worshipper''s Gem', 'MP', 1), + ('APF', 'Sector 7', 300, 'Cell Templates', '', 1), + ('APF', 'Sector 7', 300, 'Mitochondria Samples', '', 1), + ('APF', 'Sector 7', 300, 'Plasmid Cultures', '', 1), + ('APF', 'Sector 7', 1, 'Power Core Mainboard', '', 1), + ('APF', 'Sector 7', 1, 'Power Core Stabilizer', '', 1), + ('APF', 'Sector 7', 1, 'Inactive Power Core', '', 1), + ('APF', 'Sector 7', 200, 'Basic Belt', '', 1), + ('APF', 'Sector 7', 200, 'Viral Belt Control Component', '', 1), + ('APF', 'Sector 7', 200, 'Viral Belt NCU Slots', '', 1), + ('APF', 'Sector 7', 200, 'Viral Belt Nanobot Power Unit', '', 1), + ('APF', 'Sector 7', 200, 'Active Viral CPU Upgrade', '', 1), + ('APF', 'Sector 7', 200, 'Active Viral Computer Deck Range Increaser', '', 1), + ('APF', 'Sector 7', 200, 'Active Viral NCU Coolant Sink', '', 1), + ('APF', 'Sector 7', 150, 'Viral Memory Storage Unit (Damage)', '', 1), + ('APF', 'Sector 7', 200, 'Passive Viral CPU Upgrade', '', 1), + ('APF', 'Sector 7', 200, 'Passive Viral Computer Deck Range Increaser', '', 1), + ('APF', 'Sector 7', 200, 'Passive Viral NCU Coolant Sink', '', 1), + ('APF', 'Sector 7', 150, 'Viral Memory Storage Unit (XP)', '', 1), + ('APF', 'Sector 7', 150, 'Special Edition Kyr''Ozch Axe', '', 1), + ('APF', 'Sector 7', 150, 'Special Edition Kyr''Ozch Cannon', '', 1), + ('APF', 'Sector 7', 150, 'Special Edition Kyr''Ozch Carbine', '', 1), + ('APF', 'Sector 7', 150, 'Special Edition Kyr''Ozch Crossbow', '', 1), + ('APF', 'Sector 7', 150, 'Special Edition Kyr''Ozch Energy Pistol', '', 1), + ('APF', 'Sector 7', 150, 'Special Edition Kyr''Ozch Energy Rapier', '', 1), + ('APF', 'Sector 7', 150, 'Special Edition Kyr''Ozch Grenade Gun', '', 1), + ('APF', 'Sector 7', 150, 'Special Edition Kyr''Ozch Hammer', '', 1), + ('APF', 'Sector 7', 150, 'Special Edition Kyr''Ozch Nunchacko', '', 1), + ('APF', 'Sector 7', 150, 'Special Edition Kyr''Ozch Pistol', '', 1), + ('APF', 'Sector 7', 150, 'Special Edition Kyr''Ozch Rapier', '', 1), + ('APF', 'Sector 7', 150, 'Special Edition Kyr''Ozch Rifle', '', 1), + ('APF', 'Sector 7', 150, 'Special Edition Kyr''Ozch Shotgun', '', 1), + ('APF', 'Sector 7', 150, 'Special Edition Kyr''Ozch Sledgehammer', '', 1), + ('APF', 'Sector 7', 150, 'Special Edition Kyr''Ozch Submachine Gun', '', 1), + ('APF', 'Sector 7', 150, 'Special Edition Kyr''Ozch Sword', '', 1), + ('APF', 'Sector 7', 1, 'Kyr''Ozch Storage Box', '', 1), + ('APF', 'Sector 7', 1, 'Kyr''Ozch Storage Container', '', 1), + ('APF', 'Sector 7', 300, 'Arithmetic Lead Viralbots', '', 1), + ('APF', 'Sector 7', 300, 'Enduring Lead Viralbots', '', 1), + ('APF', 'Sector 7', 300, 'Observant Lead Viralbots', '', 1), + ('APF', 'Sector 7', 300, 'Strong Lead Viralbots', '', 1), + ('APF', 'Sector 7', 300, 'Supple Lead Viralbots', '', 1), + ('APF', 'Sector 13', 1, 'Gelatinous Lump', '', 3), + ('APF', 'Sector 13', 1, 'Biotech Matrix', '', 3), + ('APF', 'Sector 13', 250, 'Action Probability Estimator', '', 1), + ('APF', 'Sector 13', 250, 'Dynamic Gas Redistribution Valves', '', 1), + ('APF', 'Sector 13', 1, 'Kyr''Ozch Video Processing Unit', 'All Bounties', 1), + ('APF', 'Sector 13', 1, 'Hacker ICE-Breaker Source', 'All ICE', 1), + ('APF', 'Sector 13', 1, 'Kyr''Ozch Helmet', '2500 Token board', 1), + ('APF', 'Sector 28', 1, 'Crystalline Matrix', '', 3), + ('APF', 'Sector 28', 1, 'Kyr''ozch Circuitry', '', 3), + ('APF', 'Sector 28', 250, 'Inertial Adjustment Processing Unit', '', 1), + ('APF', 'Sector 28', 250, 'Notum Amplification Coil', '', 1), + ('APF', 'Sector 28', 1, 'Kyr''Ozch Video Processing Unit', 'All Bounties', 1), + ('APF', 'Sector 28', 1, 'Hacker ICE-Breaker Source', 'All ICE', 1), + ('APF', 'Sector 28', 1, 'Kyr''Ozch Helmet', '2500 Token board', 1), + ('APF', 'Sector 35', 1, 'Alpha Program Chip', '', 3), + ('APF', 'Sector 35', 1, 'Beta Program Chip', '', 3), + ('APF', 'Sector 35', 1, 'Odd Kyr''ozch Nanobots', '', 3), + ('APF', 'Sector 35', 1, 'Kyr''ozch Processing Unit', '', 3), + ('APF', 'Sector 35', 250, 'Energy Redistribution Unit', '', 1), + ('APF', 'Sector 35', 250, 'Visible Light Remodulation Device', '', 1), + ('APF', 'Sector 35', 1, 'Kyr''Ozch Video Processing Unit', 'All Bounties', 1), + ('APF', 'Sector 35', 1, 'Hacker ICE-Breaker Source', 'All ICE', 1), + ('APF', 'Sector 35', 1, 'Kyr''Ozch Helmet', '2500 Token board', 1), + ('Albtraum', 'Crystals & Crystalised Memories', 250, 'Inert Knowledge Crystal', '', 1), + ('Albtraum', 'Crystals & Crystalised Memories', 250, 'Energy Infused Crystal', '', 1), + ('Albtraum', 'Crystals & Crystalised Memories', 250, 'Crystalised Memories of a Sniper', '', 1), + ('Albtraum', 'Crystals & Crystalised Memories', 250, 'Crystalised Memories of a Defender', '', 1), + ('Albtraum', 'Crystals & Crystalised Memories', 250, 'Crystalised Memories of a Technician', '', 1), + ('Albtraum', 'Crystals & Crystalised Memories', 250, 'Crystalised Memories of a Mechanic', '', 1), + ('Albtraum', 'Crystals & Crystalised Memories', 250, 'Crystalised Memories of a Surgeon', '', 1), + ('Albtraum', 'Crystals & Crystalised Memories', 250, 'Crystalised Memories of a Engineer', '', 1), + ('Albtraum', 'Crystals & Crystalised Memories', 250, 'Crystalised Memories of an Instructor', '', 1), + ('Albtraum', 'Crystals & Crystalised Memories', 250, 'Crystalised Memories of a Doctor', '', 1), + ('Albtraum', 'Crystals & Crystalised Memories', 250, 'Crystalised Memories of a Warrior', '', 1), + ('Albtraum', 'Crystals & Crystalised Memories', 250, 'Crystalised Memories of an Archer', '', 1), + ('Albtraum', 'Crystals & Crystalised Memories', 250, 'Crystalised Memories of a Scientist', '', 1), + ('Albtraum', 'Samples', 250, 'Radioactive Gland Sample', '', 1), + ('Albtraum', 'Samples', 250, 'Venom Gland Sample', '', 1), + ('Albtraum', 'Samples', 250, 'Frost Gland Sample', '', 1), + ('Albtraum', 'Samples', 250, 'Acid Gland Sample', '', 1), + ('Albtraum', 'Samples', 250, 'Fire Gland Sample', '', 1), + ('Albtraum', 'Pocket Boss Crystals', 250, 'Xan Essence Crystal - Summoned Terror', '', 1), + ('Albtraum', 'Pocket Boss Crystals', 250, 'Xan Essence Crystal - Gruesome Misery', '', 1), + ('Albtraum', 'Pocket Boss Crystals', 250, 'Xan Essence Crystal - Sister Pestilence', '', 1), + ('Albtraum', 'Pocket Boss Crystals', 250, 'Xan Essence Crystal - Sister Merciless', '', 1), + ('Albtraum', 'Pocket Boss Crystals', 250, 'Xan Essence Crystal - Divided Loyalty', '', 1), + ('Albtraum', 'Rings and Preservation Units', 250, 'Ancient Speed Preservation Unit', '', 1), + ('Albtraum', 'Rings and Preservation Units', 250, 'Ancient Vision Preservation Unit', '', 1), + ('Albtraum', 'Rings and Preservation Units', 250, 'Ring of Divided Loyalty', '', 1), + ('Albtraum', 'Rings and Preservation Units', 250, 'Ring of Gruesome Misery', '', 1), + ('Albtraum', 'Rings and Preservation Units', 250, 'Ring of Sister Pestilence', '', 1), + ('Albtraum', 'Rings and Preservation Units', 250, 'Ring of Sister Merciless', '', 1), + ('Albtraum', 'Rings and Preservation Units', 250, 'Ring of Summoned Terror', '', 1), + ('Albtraum', 'Ancients', 250, 'Dormant Ancient Circuit', '', 1), + ('Albtraum', 'Ancients', 250, 'Empty Ancient Device', '', 1), + ('Albtraum', 'Ancients', 250, 'Inactive Ancient Bracer', '', 1), + ('Albtraum', 'Ancients', 250, 'Ancient Scrap of Spirit Knowledge', '', 1), + ('Albtraum', 'Ancients', 250, 'Ancient Scrap of Saturated Spirit Knowledge', '', 1), + ('Albtraum', 'Ancients', 250, 'Ancient Damage Generation Device', '', 1), + ('Albtraum', 'Ancients', 250, 'Inactive Ancient Medical Device', '', 1), + ('Albtraum', 'Ancients', 250, 'Inactive Ancient Engineering Device', '', 1), + ('DustBrigade', 'DB Armor', 200, 'Enhanced Dustbrigade Combat Chestpiece', '', 1), + ('DustBrigade', 'DB Armor', 200, 'Enhanced Dustbrigade Spirit-tech Chestpiece', '', 1), + ('DustBrigade', 'DB Armor', 200, 'Enhanced Dustbrigade Sleeves', '', 1), + ('DustBrigade', 'DB Armor', 200, 'Enhanced Dustbrigade Notum Gloves', '', 1), + ('DustBrigade', 'DB Armor', 200, 'Enhanced Dustbrigade Chemist Gloves', '', 1), + ('DustBrigade', 'DB Armor', 200, 'Enhanced Dustbrigade Covering', '', 1), + ('DustBrigade', 'DB Armor', 200, 'Enhanced Dustbrigade Flexible Boots', '', 1), + ('DustBrigade', 'DB1', 200, 'Enhanced Safeguarded NCU Memory Unit', '', 1), + ('DustBrigade', 'DB1', 200, 'Protected Safeguarded NCU Memory Unit', 'evades', 1), + ('DustBrigade', 'DB1', 250, 'Master Melee Program', 'Alappaa Pad Upgrade', 1), + ('DustBrigade', 'DB1', 250, 'Master Combat Program', 'Alappaa Pad Upgrade', 1), + ('DustBrigade', 'DB1', 250, 'Master Nano Technology Program', 'Alappaa Pad Upgrade', 1), + ('DustBrigade', 'DB2', 250, 'Basic Infused Dust Brigade Bracer', '', 1), + ('DustBrigade', 'DB2', 250, 'Dust Brigade Notum Infuser', 'DB Bracer/Alb Item Upgrade', 1), + ('DustBrigade', 'DB2', 250, 'White Molybdenum-Matrix of Xan', + 'All Molybdenum-Matrix of Xan (2 Black, 6 White Kegern/Jathos Upgrades)', 2), + ('DustBrigade', 'DB2', 300, 'Dust Brigade Engineer Pistol', '', 1), + ('DustBrigade', 'DB2', 250, 'Dust Brigade Solar Notum Infuser', 'Engineer Solar Pistol Upgrade', 1), + ('DustBrigade', 'DB3', 250, 'Dust Brigade Special Ops Helmet', '', 1), + ('DustBrigade', 'DB3', 250, 'Dust Brigade Bracer - First Edition', '', 1), + ('DustBrigade', 'DB3', 250, 'Advanced Dust Brigade Notum Infuser', 'Upgrades First Edition bracers', 1), + ('DustBrigade', 'Util', 250, 'Dust Brigade Barrier Module', '', 1), + ('DustBrigade', 'Util', 250, 'Dust Brigade Assault Module', '', 1), + ('DustBrigade', 'Util', 250, 'Dust Brigade Protector Module', '', 1), + ('DustBrigade', 'Util', 250, 'Dust Brigade Creator Module', '', 1), + ('DustBrigade', 'Util', 250, 'Dust Brigade Grunt Module', '', 1), + ('DustBrigade', 'Util', 250, 'Dust Brigade Escape Module', '', 1), + ('Pande', 'Beast Armor', 300, 'Sigil of Bahomet', '', 1), + ('Pande', 'Beast Armor', 300, 'Helmet of Hypocrisy', '', 1), + ('Pande', 'Beast Armor', 300, 'Burden of Competence', '', 1), + ('Pande', 'Beast Armor', 300, 'Shoulderplates of Sabotage', '', 1), + ('Pande', 'Beast Armor', 300, 'Cuirass of Obstinacy', '', 1), + ('Pande', 'Beast Armor', 300, 'Sleeves of Senseless Violence', '', 1), + ('Pande', 'Beast Armor', 300, 'Gauntlets of Deformation', '', 1), + ('Pande', 'Beast Armor', 300, 'Armplates of Elimination', '', 1), + ('Pande', 'Beast Armor', 300, 'Greaves of Malfeasance', '', 1), + ('Pande', 'Beast Armor', 300, 'Boots of Concourse', '', 1), + ('Pande', 'Beast Weapons', 300, 'Lord of Abandonment', '', 1), + ('Pande', 'Beast Weapons', 299, 'Lady of Abandonment', '', 1), + ('Pande', 'Beast Weapons', 300, 'Lord of Anger', '', 1), + ('Pande', 'Beast Weapons', 299, 'Lady of Anger', '', 1), + ('Pande', 'Beast Weapons', 300, 'Lord of Angst', '', 1), + ('Pande', 'Beast Weapons', 299, 'Lady of Angst', '', 1), + ('Pande', 'Beast Weapons', 300, 'Lord of Chaos', '', 1), + ('Pande', 'Beast Weapons', 299, 'Lady of Chaos', '', 1), + ('Pande', 'Beast Weapons', 300, 'Lord of Deceit', '', 1), + ('Pande', 'Beast Weapons', 299, 'Lady of Deceit', '', 1), + ('Pande', 'Beast Weapons', 300, 'Lord of Envy', '', 1), + ('Pande', 'Beast Weapons', 299, 'Lady of Envy', '', 1), + ('Pande', 'Beast Weapons', 300, 'Lord of Gluttony', '', 1), + ('Pande', 'Beast Weapons', 299, 'Lady of Gluttony', '', 1), + ('Pande', 'Beast Weapons', 300, 'Lord of Greed', '', 1), + ('Pande', 'Beast Weapons', 299, 'Lady of Greed', '', 1), + ('Pande', 'Beast Weapons', 300, 'Lord of Hatred', '', 1), + ('Pande', 'Beast Weapons', 299, 'Lady of Hatred', '', 1), + ('Pande', 'Beast Weapons', 300, 'Lord of Lust', '', 1), + ('Pande', 'Beast Weapons', 299, 'Lady of Lust', '', 1), + ('Pande', 'Beast Weapons', 300, 'Lord of Pride', '', 1), + ('Pande', 'Beast Weapons', 299, 'Lady of Pride', '', 1), + ('Pande', 'Beast Weapons', 300, 'Lord of Sloth', '', 1), + ('Pande', 'Beast Weapons', 299, 'Lady of Sloth', '', 1), + ('Pande', 'Beast Weapons', 200, 'Sunrise Hilt', '', 1), + ('Pande', 'Beast Weapons', 200, 'Sunset Hilt', '', 1), + ('Pande', 'Beast Weapons', 300, 'Lady of Wisdom', '', 1), + ('Pande', 'Beast Weapons', 300, 'Lord of Wisdom', '', 1), + ('Pande', 'Stars', 250, 'Star of Ardency', 'NT', 1), + ('Pande', 'Stars', 250, 'Star of Enterprice', 'Fix', 1), + ('Pande', 'Stars', 250, 'Star of Enticement', 'Shade', 1), + ('Pande', 'Stars', 250, 'Star of Equanimity', 'MA', 1), + ('Pande', 'Stars', 250, 'Star of Faith', 'Keep', 1), + ('Pande', 'Stars', 250, 'Star of Fidelity', 'Sol', 1), + ('Pande', 'Stars', 250, 'Star of Fortitude', 'End', 1), + ('Pande', 'Stars', 250, 'Star of Freedom', 'Adv', 1), + ('Pande', 'Stars', 250, 'Star of Ingenuity', 'Eng', 1), + ('Pande', 'Stars', 250, 'Star of Interchange', 'Trad', 1), + ('Pande', 'Stars', 250, 'Star of Management', 'Crat', 1), + ('Pande', 'Stars', 250, 'Star of Moral', 'MP', 1), + ('Pande', 'Stars', 250, 'Star of Recovery', 'Doc', 1), + ('Pande', 'Stars', 250, 'Star of Stealth', 'Agent', 1), + ('Pande', 'Shadowbreeds', 1, 'The Lighter Side', 'Clan SB', 1), + ('Pande', 'Shadowbreeds', 1, 'The Darker Side', 'Omni SB', 1), + ('Pande', 'Shadowbreeds', 1, 'The Unknown Path', 'Neutral SB', 1), + ('Pande', 'The Night Heart', 300, 'Maar''s Blue Belt of Double Prudence', '', 1), + ('Pande', 'The Night Heart', 300, 'Maar''s Red Belt of Double Power', '', 1), + ('Pande', 'The Night Heart', 300, 'Maar''s Yellow Belt of Double Speed', '', 1), + ('Pande', 'The Night Heart', 200, 'Notum Seed', '', 1), + ('Pande', 'The Night Heart', 200, 'Novictum Seed', '', 1), + ('Pande', 'Aries', 250, 'Dynamic Sleeve of Aries', '', 1), + ('Pande', 'Aries', 250, 'Aries'' Tiara of the Quick Witted', '', 1), + ('Pande', 'Aries', 250, 'Quick-Draw Holster of Aries', '', 1), + ('Pande', 'Aries', 250, 'Boon of Aries', '', 1), + ('Pande', 'Leo', 250, 'Enthusiastic Spirit Helper of the Leo', '', 1), + ('Pande', 'Leo', 250, 'Leo''s Faithful Boots of Ancient Gold', '', 1), + ('Pande', 'Leo', 250, 'Leo''s Grandiose Gold Armband of Plenty', '', 1), + ('Pande', 'Leo', 250, 'Leo''s Mellow Gold Pad of Auto-Support', '', 1), + ('Pande', 'Virgo', 250, 'Virgo''s Arrow Guide', '', 1), + ('Pande', 'Virgo', 250, 'Virgo''s Analytical Spirit Helper', '', 1), + ('Pande', 'Virgo', 250, 'Virgo''s Practical Spirit Helper', '', 1), + ('Pande', 'Virgo', 250, 'Virgo''s Modest Spirit of Faith', '', 1), + ('Pande', 'Aquarius', 250, 'Aquarius'' Boots of Small Steps', '', 1), + ('Pande', 'Aquarius', 250, 'Mediative Gloves of the Aquarius', '', 1), + ('Pande', 'Aquarius', 250, 'Intuitive Memory of the Aquarius', '', 1), + ('Pande', 'Aquarius', 250, 'Aquarius''s Multitask Calculator', '', 1), + ('Pande', 'Cancer', 250, 'Cancer''s Gloves of Automatic Knowledge', '', 1), + ('Pande', 'Cancer', 250, 'Cancer''s Silver Boots of the Autodidact', '', 1), + ('Pande', 'Cancer', 250, 'Cancer''s Ring of Circumspection', '', 1), + ('Pande', 'Cancer', 250, 'Cancer''s Time-Saving Memory', '', 1), + ('Pande', 'Gemini', 250, 'Collector Pants of Gemini', '', 1), + ('Pande', 'Gemini', 250, 'Gemini''s Double Band of Linked Information', '', 1), + ('Pande', 'Gemini', 250, 'Cross Dimensional Gyro of Gemini', '', 1), + ('Pande', 'Gemini', 250, 'Gemini''s Green Scope of Variety', '', 1), + ('Pande', 'Libra', 250, 'Libra''s Charming Assistant', '', 1), + ('Pande', 'Libra', 250, 'Urbane Pants of Libra', '', 1), + ('Pande', 'Libra', 250, 'Aim of Libra', '', 1), + ('Pande', 'Libra', 250, 'Well Balanced Spirit Helper of Libra', '', 1), + ('Pande', 'Libra', 1, 'Activation Code', '', 1), + ('Pande', 'Pisces', 250, 'Cosmic Guide of the Pisces', '', 1), + ('Pande', 'Pisces', 250, 'Octopus Contraption of the Pisces', '', 1), + ('Pande', 'Pisces', 250, 'Soul Mark of Pisces', '', 1), + ('Pande', 'Pisces', 250, 'Mystery of Pisces', '', 1), + ('Pande', 'Taurus', 250, 'Taurus'' Ring of the Heart', '', 1), + ('Pande', 'Taurus', 250, 'Taurus'' Spirit of Patience', '', 1), + ('Pande', 'Taurus', 250, 'Taurus'' Swordmaster Spirit', '', 1), + ('Pande', 'Taurus', 250, 'Taurus'' Spirit of Reflection', '', 1), + ('Pande', 'Capricorn', 250, 'Capricorn Bracer of Toxication', '', 1), + ('Pande', 'Capricorn', 250, 'Gloves of the Caring Capricorn', '', 1), + ('Pande', 'Capricorn', 250, 'Capricorn''s Reliable Memory', '', 1), + ('Pande', 'Capricorn', 250, 'Capricorn''s Guide to Alchemy', '', 1), + ('Pande', 'Sagittarius', 250, 'Comfort of the Sagittarius', '', 1), + ('Pande', 'Sagittarius', 250, 'First Creation of the Sagittarius', '', 1), + ('Pande', 'Sagittarius', 250, 'Sagittarius''s Hearty Spirit Helper', '', 1), + ('Pande', 'Sagittarius', 250, 'Strong Mittens of the Sagittarius', '', 1), + ('Pande', 'Scorpio', 250, 'Punters of the Scorpio', '', 1), + ('Pande', 'Scorpio', 250, 'Scorpio''s Shell of Change', '', 1), + ('Pande', 'Scorpio', 250, 'Scorpio''s Aim of Anger', '', 1), + ('Pande', 'Scorpio', 250, 'Sash of Scorpio Strength', '', 1), + ('Pande', 'Bastion', 1, 'SSC "Bastion" Back Armor - Inactive', '', 1), + ('Pande', 'Bastion', 1, 'SSC "Bastion" Left Shoulder Armor - Inactive', '', 1), + ('Pande', 'Bastion', 1, 'SSC "Bastion" Right Shoulder Armor - Inactive', '', 1), + ('Pande', 'Bastion', 250, 'NCU Infuser', '', 1), + ('Pande', 'Bastion', 1, 'Collatz Upgrade Plate', '', 1), + ('Pande', 'Bastion', 1, 'Fatou Upgrade Plate', '', 1), + ('Pande', 'Bastion', 1, 'Mandelbrot Upgrade Plate', '', 1), + ('Pande', 'Bastion', 1, 'A Single Strand of Glowing Dark Energy', '', 1), + ('Pande', 'Bastion', 1, 'Inert Bacteriophage', '', 1), + ('Pande', 'Bastion', 1, 'Pattern Conversion Device', '', 1), + ('Pande', 'Bastion', 1, 'Nickel-Cobalt Ferrous Alloy', '', 1), + ('Pande', 'Bastion', 1, 'Dacite Fiber', '', 1), + ('Pande', 'Bastion', 1, 'Sealed Packet of Bilayer Graphene Sheets', '', 1), + ('Pande', 'Bastion', 1, 'Mu-Negative Novictum Enriched Metamaterial', '', 1), + ('Pande', 'Bastion', 1, 'Compressed Silane', '', 1), + ('Pande', 'Bastion', 1, 'Potassium Nitrate', '', 1), + ('Pande', 'Bastion', 1, 'VLS Synthesis Catalyst', '', 1), + ('Pande', 'Bastion', 1, 'Bi-Isotropic Nano Media', '', 1), + ('Pande', 'Bastion', 1, 'Synchotronic Recombinator - Pocket Edition (Empty)', '', 1), + ('Pande', 'Bastion', 1, 'Red Data Crystal', '', 1), + ('Pande', 'Bastion', 1, 'Blue Data Crystal', '', 1), + ('Pande', 'Bastion', 1, 'Green Data Crystal', '', 1), + ('Pande', 'Bastion', 1, 'Virus Programming: Bacteriophage Phi X 3957', '', 1), + ('Pande', 'Bastion', 1, 'Virus Programming: Bacteriophage M73', '', 1), + ('Pande', 'Bastion', 1, 'Virus Programming: Bacteriophage F9', '', 1), + ('Pyramid of Home', 'General', 300, 'Inert Sigil of Alighieri', + 'Drops from Cybernetic Daemon, Azdaja the Joyous and Maiden', 1), + ('Pyramid of Home', 'General', 300, 'Inert Sigil of Machiavelli', 'Drops from Phobettor', 1), + ('Pyramid of Home', 'General', 300, 'Portable Notum Infusion Device', + 'Chance of dropping from Cybernetic Daemon, Azdaja the Joyous and Maiden. 100% drop rate from Phobettor.', 1), + ('Pyramid of Home', 'General', 1, 'Laughing Spirit Capsule', 'Cybernetic Daemon', 3), + ('Pyramid of Home', 'General', 1, 'Crying Spirit Capsule', 'Azdaja the Joyous', 3), + ('Pyramid of Home', 'General', 1, 'Screaming Spirit Capsule', 'Maiden', 3), + ('Pyramid of Home', 'HUD/NCU', 100, 'Ancient Resorative Fungus', '', 1), + ('Pyramid of Home', 'HUD/NCU', 300, 'Sluggish Notum Lens', '', 1), + ('Pyramid of Home', 'HUD/NCU', 100, 'Ancient Aggressive Webbing', '', 1), + ('Pyramid of Home', 'HUD/NCU', 300, 'Dense Nanite Aegis', '', 1), + ('Pyramid of Home', 'HUD/NCU', 100, 'Ancient Protective Drone', '', 1), + ('APF', 'Sector 42', 250, 'Inertial Adjustment Processing Unit', 'WEST', 1), + ('APF', 'Sector 42', 250, 'Notum Amplification Coil', 'WEST', 1), + ('APF', 'Sector 42', 250, 'Action Probability Estimator', 'WEST', 1), + ('APF', 'Sector 42', 250, 'Dynamic Gas Redistribution Valves', 'NORTH', 1), + ('APF', 'Sector 42', 250, 'Energy Redistribution Unit', 'EAST', 1), + ('APF', 'Sector 42', 250, 'Visible Light Remodulation Device', 'EAST', 1), + ('APF', 'Sector 42', 1, 'Hacker ICE-Breaker Source', 'All ICE', 1), + ('APF', 'Sector 42', 1, 'Kyr''Ozch Invasion Plan', 'ACDC - All Sides', 1), + ('APF', 'Sector 42', 1, 'Unlearning Device', 'IPR - All Sides', 4), + ('APF', 'Sector 42', 215, 'Alien Matrix Alpha Box', '3 per side', 3), + ('APF', 'Sector 42', 215, 'Alien Matrix Beta Box', '3 per side', 3), + ('Temple of Three Winds (HL)', 'Binyacht the Faithful', 300, 'Corrupted Edge', '', 1), + ('Temple of Three Winds (HL)', 'Binyacht the Faithful', 1, 'Purified Hood of the Faithful', '', 1), + ('Temple of Three Winds (HL)', 'Binyacht the Faithful', 1, 'Purified Robe of the Faithful', '', 1), + ('Temple of Three Winds (HL)', 'Binyacht the Faithful', 1, 'Tattered book: Sting of the Viper (section 5)', '', + 1), + ('Temple of Three Winds (HL)', 'Guardian of the Three', 1, 'Bloodthrall Ring', '', 1), + ('Temple of Three Winds (HL)', 'Guardian of the Three', 1, 'Ring of Purifying Flame', '', 1), + ('Temple of Three Winds (HL)', 'Guardian of the Three', 1, 'Sanguine Vambrace', '', 1), + ('Temple of Three Winds (HL)', 'Guardian of the Three', 1, 'Tattered book: Stampede of the Boar (section 1)', '', + 1), + ('Temple of Three Winds (HL)', 'Guardian of the Three', 1, 'Tattered book: Sting of the Viper (section 1)', '', + 1), + ('Temple of Three Winds (HL)', 'Guardian of the Three', 1, 'Tattered book: Sting of the Viper (section 5)', '', + 1), + ('Temple of Three Winds (HL)', 'The Immortal Summoner', 1, 'Bloodthrall Ring', '', 1), + ('Temple of Three Winds (HL)', 'The Immortal Summoner', 1, 'Bone Staff of The Immortal Summoner', '', 1), + ('Temple of Three Winds (HL)', 'The Immortal Summoner', 1, 'Ornate Funeral Urn', '', 1), + ('Temple of Three Winds (HL)', 'The Immortal Summoner', 1, 'Ring of Purifying Flame', '', 1), + ('Temple of Three Winds (HL)', 'The Immortal Summoner', 1, 'Tattered book: Stampede of the Boar (section 2)', '', + 1), + ('Temple of Three Winds (HL)', 'The Immortal Summoner', 1, 'Tattered book: Sting of the Viper (section 5)', '', + 1), + ('Temple of Three Winds (HL)', 'Lien the Memory-Devourer', 1, 'Lucid Nightmares', '', 1), + ('Temple of Three Winds (HL)', 'Lien the Memory-Devourer', 1, 'Memory of Future Events', '', 1), + ('Temple of Three Winds (HL)', 'Lien the Memory-Devourer', 1, 'Mnemonic Shard', '', 1), + ('Temple of Three Winds (HL)', 'Lien the Memory-Devourer', 1, 'Ring of the Coiled Serpent', '', 1), + ('Temple of Three Winds (HL)', 'Lien the Memory-Devourer', 1, 'Tattered book: Stampede of the Boar (section 4)', + '', 1), + ('Temple of Three Winds (HL)', 'The Loremaster', 1, 'Blessing of the Gripper', '', 1), + ('Temple of Three Winds (HL)', 'The Loremaster', 1, 'Bloodthrall Ring', '', 1), + ('Temple of Three Winds (HL)', 'The Loremaster', 1, 'Knowledge of the Immortal One', '', 1), + ('Temple of Three Winds (HL)', 'The Loremaster', 1, 'Mountain Razing Gauntlets', '', 1), + ('Temple of Three Winds (HL)', 'The Loremaster', 1, 'Sanguine Vambrace', '', 1), + ('Temple of Three Winds (HL)', 'The Loremaster', 1, 'Tattered book: Sting of the Viper (section 2)', '', 1), + ('Temple of Three Winds (HL)', 'Nematet the Subjugator of Time', 1, 'Ceremonial Blade', '', 1), + ('Temple of Three Winds (HL)', 'Nematet the Subjugator of Time', 1, 'Desecrated Flesh', '', 1), + ('Temple of Three Winds (HL)', 'Nematet the Subjugator of Time', 1, 'Envoy to Chaos', '', 1), + ('Temple of Three Winds (HL)', 'Nematet the Subjugator of Time', 1, 'Ethereal Embrace', '', 1), + ('Temple of Three Winds (HL)', 'Nematet the Subjugator of Time', 1, 'Grasp of the Immortal', '', 1), + ('Temple of Three Winds (HL)', 'Nematet the Subjugator of Time', 1, 'Nematet''s Third Eye', '', 1), + ('Temple of Three Winds (HL)', 'Nematet the Subjugator of Time', 1, 'Notum Graft', '', 1), + ('Temple of Three Winds (HL)', 'Nematet the Subjugator of Time', 1, 'Ring of Blighted Flesh', '', 1), + ('Temple of Three Winds (HL)', 'Nematet the Subjugator of Time', 1, 'Ring of Purifying Flame', '', 1), + ('Temple of Three Winds (HL)', 'Nematet the Subjugator of Time', 1, 'Sacred Chalice', '', 1), + ('Temple of Three Winds (HL)', 'Nematet the Subjugator of Time', 1, 'Strength of the Immortal', '', 1), + ('Temple of Three Winds (HL)', 'Nematet the Subjugator of Time', 1, + 'Tattered book: Stampede of the Boar (section 3)', '', 1), + ('Temple of Three Winds (HL)', 'Nematet the Subjugator of Time', 1, + 'Tattered book: Stampede of the Boar (section 5)', '', 1), + ('Temple of Three Winds (HL)', 'Nematet the Subjugator of Time', 1, 'Vision of the Heretic', '', 1), + ('Temple of Three Winds (HL)', 'Nematet the Subjugator of Time', 1, 'Wit of the Immortal', '', 1), + ('Temple of Three Winds (HL)', 'Aegis of Tomorrow', 1, 'Aegis Circuit Board', '', 1), + ('Temple of Three Winds (HL)', 'Aegis of Tomorrow', 1, 'Bloodthrall Ring', '', 1), + ('Temple of Three Winds (HL)', 'Aegis of Tomorrow', 1, 'Guardian Heavy Tank Armor', '', 1), + ('Temple of Three Winds (HL)', 'Aegis of Tomorrow', 1, 'Ring of Purifying Flame', '', 1), + ('Temple of Three Winds (HL)', 'Aegis of Tomorrow', 1, 'Sanguine Vambrace', '', 1), + ('Temple of Three Winds (HL)', 'Aegis of Tomorrow', 1, 'Tattered book: Sting of the Viper (section 5)', '', 1), + ('Temple of Three Winds (HL)', 'Gartua the Gate Guardian', 1, 'Gartua''s Second Coat', '', 1), + ('Temple of Three Winds (HL)', 'Gartua the Gate Guardian', 1, 'Inner Peace', '', 1), + ('Temple of Three Winds (HL)', 'Gartua the Gate Guardian', 1, 'Keeper''s Vigor', '', 1), + ('Temple of Three Winds (HL)', 'Gartua the Gate Guardian', 1, 'Ring of Purifying Flame', '', 1), + ('Temple of Three Winds (HL)', 'Gartua the Gate Guardian', 1, 'Tattered book: Sting of the Viper (section 5)', + '', 1), + ('Temple of Three Winds (HL)', 'Aztur the Immortal', 1, 'Bloodthrall Ring', '', 1), + ('Temple of Three Winds (HL)', 'Aztur the Immortal', 1, 'Ceremonial Blade', '', 1), + ('Temple of Three Winds (HL)', 'Aztur the Immortal', 1, 'Desecrated Flesh', '', 1), + ('Temple of Three Winds (HL)', 'Aztur the Immortal', 1, 'Envoy to Chaos', '', 1), + ('Temple of Three Winds (HL)', 'Aztur the Immortal', 1, 'Obsidian Desecrator', '', 1), + ('Temple of Three Winds (HL)', 'Aztur the Immortal', 1, 'Ring of Blighted Flesh', '', 1), + ('Temple of Three Winds (HL)', 'Aztur the Immortal', 1, 'Ring of Purifying Flame', '', 1), + ('Temple of Three Winds (HL)', 'Aztur the Immortal', 1, 'Sacred Chalice', '', 1), + ('Temple of Three Winds (HL)', 'Aztur the Immortal', 1, 'Sacred Text of the Immortal One', '', 1), + ('Temple of Three Winds (HL)', 'Aztur the Immortal', 1, 'Sanguine Vambrace', '', 1), + ('Temple of Three Winds (HL)', 'Aztur the Immortal', 1, 'Strength of the Immortal', '', 1), + ('Temple of Three Winds (HL)', 'Aztur the Immortal', 1, 'Tattered book: Stampede of the Boar (section 5)', '', + 1), + ('Temple of Three Winds (HL)', 'Aztur the Immortal', 1, 'Tattered book: Stampede of the Boar (section 6)', '', + 1), + ('Temple of Three Winds (HL)', 'Khalum the Weaver of Flesh', 1, 'Fist of Heavens', '', 1), + ('Temple of Three Winds (HL)', 'Khalum the Weaver of Flesh', 1, 'Summoner''s Staff of Dismissal', '', 1), + ('Temple of Three Winds (HL)', 'Khalum the Weaver of Flesh', 1, 'Tattered book: Sting of the Viper (section 6)', + '', 1), + ('Temple of Three Winds (HL)', 'Uklesh the Beguiling', 1, 'Fist of Heavens', '', 1), + ('Temple of Three Winds (HL)', 'Uklesh the Beguiling', 1, 'Uklesh''s Talon', '', 1), + ('Temple of Three Winds (HL)', 'General', 1, 'Rod of Dismissal', '', 1), + ('Temple of Three Winds (HL)', 'General', 1, 'Corrupted Bloodmark', '', 1), + ('Temple of Three Winds (HL)', 'General', 1, 'Corrupted Soulmark', '', 1), + ('Temple of Three Winds (HL)', 'General', 1, 'Twilight Entreatment Armor (Helmet)', '', 1), + ('Temple of Three Winds (HL)', 'General', 1, 'Twilight Entreatment Armor (Gloves)', '', 1), + ('Temple of Three Winds (HL)', 'General', 1, 'Twilight Entreatment Armor (Pants)', '', 1), + ('Temple of Three Winds (HL)', 'General', 1, 'Twilight Entreatment Armor (Sleeves)', '', 1), + ('Temple of Three Winds (HL)', 'General', 1, 'Twilight Entreatment Armor (Body)', '', 1), + ('Temple of Three Winds (HL)', 'General', 1, 'Twilight Entreatment Armor (Boots)', '', 1), + ('Condemned Subway (HL)', 'General', 1, 'Counterfeit fr00b T-shirt', '', 1), + ('Condemned Subway (HL)', 'General', 1, 'Fetid Vagabond Cloak', '', 1), + ('Condemned Subway (HL)', 'General', 1, 'Fortified Construction Sleeves', '', 1), + ('Condemned Subway (HL)', 'General', 1, 'Purification Stim', '', 1), + ('Condemned Subway (HL)', 'General', 1, 'Reinforced Bau Cyber Body Armor', '', 1), + ('Condemned Subway (HL)', 'General', 1, 'Reinforced Bau Cyber Female Body Armor', '', 1), + ('Condemned Subway (HL)', 'General', 1, 'Reinforced Bau Cyber Armor Helmet', '', 1), + ('Condemned Subway (HL)', 'General', 1, 'Reinforced Bau Cyber Armor Pants', '', 1), + ('Condemned Subway (HL)', 'General', 1, 'Reinforced Bau Cyber Armor Sleeves', '', 1), + ('Condemned Subway (HL)', 'General', 1, 'Reinforced Bau Cyber Armor Gloves', '', 1), + ('Condemned Subway (HL)', 'General', 1, 'Reinforced Bau Cyber Armor Boots', '', 1), + ('Condemned Subway (HL)', 'Eliminator Shiro', 1, 'Combat Assist Wen-Wen', '', 1), + ('Condemned Subway (HL)', 'Eliminator Shiro', 1, 'Distraction Rifle', '', 1), + ('Condemned Subway (HL)', 'Eliminator Shiro', 1, 'Notum-Infused Wool Balaclava Mask', '', 1), + ('Condemned Subway (HL)', 'Eliminator Shiro', 1, 'Unstable Damage Augmentation Device', '', 1), + ('Condemned Subway (HL)', 'Eumenides', 1, 'BBI Faithful 1000', '', 1), + ('Condemned Subway (HL)', 'Eumenides', 1, 'Eumenides''s Omni-Pol Forest Body Armor', '', 1), + ('Condemned Subway (HL)', 'Eumenides', 1, 'Superior Ring of the Nucleus Basalis', '', 1), + ('Condemned Subway (HL)', 'Eumenides', 1, 'Supreme Office Worker Suit', '', 1), + ('Condemned Subway (HL)', 'Eumenides', 1, 'Technical Guidance Personal Terminal', '', 1), + ('Condemned Subway (HL)', 'Queen of the Slums', 1, 'Amalgamated Research Attunement Device', '', 1), + ('Condemned Subway (HL)', 'Queen of the Slums', 1, 'Aspect of Paralyzing Fear', '', 1), + ('Condemned Subway (HL)', 'Queen of the Slums', 1, 'Illegally Augmented Ofab Mongoose', '', 1), + ('Condemned Subway (HL)', 'Queen of the Slums', 1, 'Survivalist Leather Armor Legwear', '', 1), + ('Condemned Subway (HL)', 'The Psion', 1, 'Aspect of Paralyzing Fear', '', 1), + ('Condemned Subway (HL)', 'The Psion', 1, 'Eye of The Psion', '', 1), + ('Condemned Subway (HL)', 'The Psion', 1, 'Illegally Modified Dreadloch Panther', '', 1), + ('Condemned Subway (HL)', 'The Psion', 1, 'Illegally-Modified Dreadloch Tigress', '', 1), + ('Condemned Subway (HL)', 'The Psion', 1, 'Symbiotic Nanite Gloves', '', 1), + ('Condemned Subway (HL)', 'Primal Bloodcreeper', 1, 'Mark of the Bloodless', '', 1), + ('Condemned Subway (HL)', 'Vergil Aeneid', 1, 'Boots of Gridspace Distortion', '', 1), + ('Condemned Subway (HL)', 'Vergil Aeneid', 1, 'Illegally Modified Dreadloch Remodulator', '', 1), + ('Condemned Subway (HL)', 'Vergil Aeneid', 1, 'Illegally Modified Dreadloch Thrasher', '', 1), + ('Condemned Subway (HL)', 'Vergil Aeneid', 1, 'Lost Blade of Elder Tsunayoshi', '', 1), + ('Condemned Subway (HL)', 'Vergil Aeneid', 1, 'Vergil''s Black Trenchcoat', '', 1), + ('Condemned Subway (HL)', 'Abmouth Supremus', 1, 'Aspect of Paralyzing Fear', '', 1), + ('Condemned Subway (HL)', 'Abmouth Supremus', 1, 'BBI Faithful 1000', '', 1), + ('Condemned Subway (HL)', 'Abmouth Supremus', 1, 'Belt of Great Justice', '', 1), + ('Condemned Subway (HL)', 'Abmouth Supremus', 1, 'Condemned Bulwark', '', 1), + ('Condemned Subway (HL)', 'Abmouth Supremus', 1, 'Eumenides''s Omni-Pol Forest Body Armor', '', 1), + ('Condemned Subway (HL)', 'Abmouth Supremus', 1, 'Eye of The Psion', '', 1), + ('Condemned Subway (HL)', 'Abmouth Supremus', 1, 'Illegally Modified Dreadloch Obliterator', '', 1), + ('Condemned Subway (HL)', 'Abmouth Supremus', 1, 'Illegally Modified Dreadloch Panther', '', 1), + ('Condemned Subway (HL)', 'Abmouth Supremus', 1, 'Illegally Modified Dreadloch Modified Shark', '', 1), + ('Condemned Subway (HL)', 'Abmouth Supremus', 1, 'Jester''s Gift', '', 1), + ('Condemned Subway (HL)', 'Abmouth Supremus', 1, 'Patchwork Defensive Drone', '', 1), + ('Condemned Subway (HL)', 'Abmouth Supremus', 1, 'Technical Guidance Personal Terminal', '', 1), + ('Condemned Subway (HL)', 'Abmouth Supremus', 1, 'Vergil''s Black Trenchcoat', '', 1), + ('Condemned Subway (HL)', 'Abmouth Supremus', 1, 'Vicious Support Beam of Malice', '', 1); +INSERT INTO raid_loot (raid, category, ql, name, high_id, comment, multiloot) +VALUES ('Temple of Three Winds (HL)', 'General', 1, 'Notum Ring of the Three', 305488, 'green', 1), + ('Temple of Three Winds (HL)', 'General', 1, 'Notum Ring of the Three', 305489, 'red', 1), + ('Temple of Three Winds (HL)', 'General', 1, 'Notum Ring of the Three', 305490, 'yellow', 1); \ No newline at end of file diff --git a/modules/standard/nano/nano_controller.py b/modules/standard/nano/nano_controller.py new file mode 100644 index 0000000..77b9e3d --- /dev/null +++ b/modules/standard/nano/nano_controller.py @@ -0,0 +1,229 @@ +from core.chat_blob import ChatBlob +from core.command_param_types import Any, Int, NamedParameters +from core.decorators import instance, command + + +# noinspection SqlCaseVsIf,SqlAggregates +@instance() +class NanoController: + def inject(self, registry): + self.db = registry.get_instance("db") + self.util = registry.get_instance("util") + self.text = registry.get_instance("text") + self.command_alias_service = registry.get_instance("command_alias_service") + + def pre_start(self): + self.db.load_sql_file(self.module_dir + "/" + "nanos.sql", pre_optimized=True) + self.db.create_view("nanos") + + def start(self): + self.command_alias_service.add_alias("nl", "nanolines") + self.command_alias_service.add_alias("nanoline", "nanolines") + + @command(command="nano", params=[Any("search"), NamedParameters(["page"])], access_level="member", + description="Search for a nano") + def nano_cmd(self, _, search, named_params): + page = int(named_params.page or "1") + page_size = 30 + offset = (page - 1) * page_size + + sql = "SELECT n.* " \ + "FROM nanos n " \ + "WHERE n.nano_name ? group by nano_id " \ + "ORDER BY n.profession, n.strain, n.ql DESC, n.crystal_name" + data = self.db.query(sql, [search], extended_like=True) + count = len(data) + paged_data = data[offset:offset + page_size] + + blob = "" + if count == 0: + return "No nanos found matching %s." % search + elif count == 1: + row = data[0] + nano = self.make_nano(row) + if nano: + return f"{nano} {row.strain.replace('_', ' ')}" + return f"No nanos found matching {search}." + elif count > page_size: + if page > 1 and len(paged_data) > 0: + blob += " " + self.text.make_chatcmd(f"<< Page {page - 1:d}", + self.get_chat_command(search, page - 1)) + if offset + page_size < len(data): + blob += " Page " + str(page) + blob += " " + self.text.make_chatcmd(f"Page {page + 1:d} >>", + self.get_chat_command(search, page + 1)) + blob += "\n\n" + + current_nanoline = [] + for row in paged_data: + if current_nanoline != [row.strain_id, row.profession]: + if row.strain: + nano = self.text.make_tellcmd(row.strain, f"nanolines {row.profession} {row.strain}") + blob += f"\n{row.profession} - {nano}\n" if nano else "" + else: + blob += "\nUnknown/General\n" + current_nanoline = [row.strain_id, row.profession] + nano = self.make_nano(row) + blob += nano + "\n" if nano else "" + blob += self.get_footer() + + return ChatBlob( + f"Nano Search Results for '{search}' ({offset + 1:d} - " + f"{min(offset + page_size, count):d} of {count:d})", + blob) + + def format_single_nano(self, row): + if str(row.crystal_name).startswith("Nano") \ + or str(row.crystal_name).startswith("Shadow") \ + or str(row.crystal_name).startswith("Alien") \ + or str(row.location).startswith("Arete"): + item = self.text.make_item(row.crystal_id, row.crystal_id, row.ql, str(row.crystal_name).replace('_', ' ')) + return f"QL {row.ql: >3} {item} {row.location}" + return "" + + @command(command="nanoloc", params=[], access_level="member", + description="Show all nano locations") + def nanoloc_list_cmd(self, _): + data = self.db.query( + "SELECT location, COUNT(location) AS cnt " + "FROM (SELECT * FROM nanos group by nano_id order by crystal_name) a " + "GROUP BY location " + "ORDER BY location") + + blob = "" + for row in data: + blob += "%s (%d)\n" % (self.text.make_tellcmd(row.location, "nanoloc %s" % row.location), row.cnt) + blob += self.get_footer() + + return ChatBlob("Nano Locations", blob) + + @command(command="nanoloc", params=[Any("location")], access_level="member", + description="Show nanos by location") + def nanoloc_show_cmd(self, _, location): + sql = "SELECT * " \ + "FROM nanos n " \ + "WHERE n.location LIKE ? " \ + "group by n.nano_id ORDER BY n.profession, n.crystal_name" + data = self.db.query(sql, [location]) + cnt = len(data) + + blob = "" + prof = "" + + for row in data: + if prof != row.profession: + if row.profession: + blob += f"\n{row.profession.replace('_', ' ')}\n" + else: + blob += "\nUnknown/General\n" + prof = row.profession + + blob += "QL %d %s\n" % (row.ql, self.make_nano(row)) + return ChatBlob("Nanos for Location '%s' (%d)" % (location, cnt), blob) + + @command(command="nanolines", params=[], access_level="member", + description="Show nanos by nanoline") + def nanolines_list_cmd(self, _): + data = self.db.query("SELECT DISTINCT profession FROM nanos ORDER BY profession") + + blob = "" + for row in data: + blob += self.text.make_tellcmd(row.profession, f"nanolines {row.profession}") + "\n" + blob += self.get_footer() + + return ChatBlob("Nanolines", blob) + + @command(command="nanolines", params=[Int("nanoline_id")], access_level="member", + description="Show nanos by nanoline id") + def nanolines_id_cmd(self, _, nanoline_id): + nanoline = self.db.query_single("SELECT * FROM nanos WHERE strain_id = ? LIMIT 1", [nanoline_id]) + + if not nanoline or nanoline_id == 0: + return f"Could not find nanoline with ID {nanoline_id:d}." + + data = self.db.query( + "SELECT n.crystal_id, n.ql, n.strain, n.crystal_name, n.location " + "FROM nanos n " + "where n.strain_id=? " + "group by n.nano_id " + "ORDER BY n.ql DESC, n.nano_name", + [nanoline_id]) + blob = "" + for row in data: + item = self.make_nano(row) + blob += item + "\n" if item else "" + blob += self.get_footer() + + return ChatBlob(f"{str(nanoline.strain).replace('_', ' ')} Nanos", blob) + + @command(command="nanolines", params=[Any("profession"), Any("nanoline")], access_level="member", + description="Show nanos by nanoline profession and line name") + def nanolines_prof_strain(self, _, prof, strain): + profession = self.util.get_profession(prof) + nanoline = self.db.query_single( + "SELECT * FROM nanos n WHERE n.strain LIKE ? AND profession =? and type='Crystal' LIMIT 1", + [strain, profession]) + + if not nanoline: + return f"Could not find nanoline with name {strain}." + + data = self.db.query( + "SELECT n.* FROM nanos n " + "where n.strain LIKE ? " + "and n.profession = ? " + "and type='Crystal' " + "group by nano_id " + "ORDER BY n.strain, n.ql DESC, n.nano_name", + ["%" + strain.replace(" ", "%") + "%", profession]) + blob = "" + strain = "" + for row in data: + if strain != row.strain: + if row.strain: + blob += f"\n{row.strain.replace('_', ' ')}\n" + else: + blob += "\nUnknown/General\n" + strain = row.strain + item = self.make_nano(row) + blob += item + "\n" if item else "" + blob += self.get_footer() + + return ChatBlob("%s %s Nanos" % (nanoline.profession, str(nanoline.strain).replace("_", " ")), blob) + + @command(command="nanolines", params=[Any("profession")], access_level="member", + description="Show nanolines by profession") + def nanolines_profession_cmd(self, _, prof_name): + profession = self.util.get_profession(prof_name) + if not profession: + return "Could not find profession %s." % prof_name + + data = self.db.query( + "SELECT CASE WHEN strain = 'Composite' THEN 'Composite' ELSE school END as school, strain, profession " + "FROM nanos WHERE Profession = ? " + "and location not like 'No%longer%drops' " + "and type not in ('Tainted', 'Misc') " + "GROUP by strain ORDER BY school, strain='Composite', strain", [profession]) + + blob = "" + school = "" + for row in data: + if school != row.school: + if row.strain: + blob += f"\n{row.school.replace('_', ' ')}\n" + else: + blob += "\nUnknown/General\n" + school = row.school + + blob += "" + self.text.make_tellcmd(row.strain, f"nanolines {row.profession} {row.strain}") + "\n" + blob += self.get_footer() + + return ChatBlob("%s Nanolines" % profession, blob) + + def get_footer(self): + return "\n\nNano-DB provided by AOIA+ 2019" + + def get_chat_command(self, search, page): + return "/tell nano %s --page=%d" % (search, page) + + def make_nano(self, row): + return f"QL {row.ql: >3} {row.crystal_name} {row.location}" diff --git a/modules/standard/nano/nanos.sql b/modules/standard/nano/nanos.sql new file mode 100644 index 0000000..cce9372 --- /dev/null +++ b/modules/standard/nano/nanos.sql @@ -0,0 +1,12678 @@ +# noinspection LongLineForFile + +DROP TABLE IF EXISTS nanos; +CREATE TABLE IF NOT EXISTS nanos +( + crystal_id INT DEFAULT NULL, + crystal_name VARCHAR(255) DEFAULT NULL, + crystal_icon INT DEFAULT NULL, + nano_id INT DEFAULT NULL, + nano_name VARCHAR(255) DEFAULT NULL, + nano_icon INT DEFAULT NULL, + disc_id INT DEFAULT NULL, + compiled_id INT DEFAULT NULL, + program_id INT DEFAULT NULL, + ql INT DEFAULT NULL, + type VARCHAR(16) DEFAULT NULL, + school VARCHAR(64) DEFAULT NULL, + strain VARCHAR(64) DEFAULT NULL, + strain_id INT DEFAULT NULL, + substrain VARCHAR(64) DEFAULT NULL, + substrain_id INT DEFAULT NULL, + fp INT DEFAULT NULL, + sl INT DEFAULT NULL, + sl_spec INT DEFAULT NULL, + nanodeck INT DEFAULT NULL, + profession VARCHAR(32) DEFAULT NULL, + location VARCHAR(64) DEFAULT NULL +); +INSERT INTO nanos (crystal_id, crystal_name, crystal_icon, nano_id, nano_name, nano_icon, disc_id, compiled_id, + program_id, ql, type, school, strain, strain_id, substrain, substrain_id, fp, sl, sl_spec, nanodeck, + profession, location) +VALUES (26015, 'Nano Crystal (Chemical Concoction)', 12259, 25984, 'Chemical Concoction', 16210, 146832, 145332, 148332, + 63, 'Crystal', 'Buffs', 'Chemistry/Pharm_Buffs', 196, '', 0, 0, 0, 0, 0, 'Agent', 'RK Store'), + (26017, 'Nano Crystal (Death''s Gaze)', 42449, 25980, 'Death''s Gaze', 16248, 146833, 145333, 148333, 142, + 'Crystal', 'Crowd_Control', 'Mezz', 147, '', 0, 0, 0, 0, 0, 'Agent', 'Mission Reward'), + (26019, 'Nano Crystal (Hostile Hatchling)', 300923, 25994, 'Hostile Hatchling', 295695, 146718, 145218, 148218, + 172, 'Crystal', 'Morphs', 'Pit_Lizard', 0, '', 0, 1, 0, 0, 0, 'Adventurer', 'Mission Reward'), + (26166, 'Nano Crystal (Eagle Eye)', 301586, 26107, 'Eagle Eye', 301584, 146734, 145234, 148234, 76, 'Crystal', + 'Buffs', 'Perception_Buffs', 191, '', 0, 1, 0, 0, 0, 'Adventurer', 'RK Store'), + (26206, 'Nano Crystal (Feline Grace)', 12259, 25989, 'Feline Grace', 16218, 146853, 145353, 148353, 53, + 'Crystal', 'Buffs', 'Agility_Buffs', 195, '', 0, 0, 0, 0, 0, 'Agent', 'RK Store'), + (26207, 'Nano Crystal (Enhanced Senses)', 12226, 25988, 'Enhanced Senses', 16317, 146839, 145339, 148339, 27, + 'Crystal', 'Buffs', 'Sense_Buffs', 192, '', 0, 0, 0, 0, 0, 'Agent', 'RK Store'), + (26245, 'Nano Crystal (Free Movement)', 296729, 26237, 'Free Movement', 296731, 146745, 145245, 148245, 43, + 'Crystal', 'Buffs', 'Runspeed_Buffs', 150, '', 0, 1, 0, 0, 0, 'Adventurer', 'RK Store'), + (26461, 'Nano Crystal (1H Blunt Weapon Proficiency)', 12226, 26339, '1H Blunt Weapon Proficiency', 16200, 0, 0, + 0, 4, 'Crystal', 'Buffs_-_Melee', '1H_Blunt_Buffs', 16, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (26462, 'Nano Crystal (1H Blunt Weapon Incompetence)', 12226, 26337, '1H Blunt Weapon Incompetence', 39045, 0, 0, + 0, 10, 'Crystal', 'DeBuffs_-_Melee', '1Hand_Blunt_DeBuffs', 17, '', 0, 0, 0, 0, 0, 'General', + 'No longer drops'), + (26463, 'Nano Crystal (1H Blunt Weapon Inexperience)', 12226, 26338, '1H Blunt Weapon Inexperience', 39045, 0, 0, + 0, 4, 'Crystal', 'DeBuffs_-_Melee', '1Hand_Blunt_DeBuffs', 17, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (26464, 'Nano Crystal (1H Blunt Weapon Expertise)', 12226, 26336, '1H Blunt Weapon Expertise', 16200, 0, 0, 0, + 10, 'Crystal', 'Buffs_-_Melee', '1H_Blunt_Buffs', 16, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (26467, 'Nano Crystal (Piercing Proficiency)', 12226, 26426, 'Piercing Proficiency', 16201, 0, 0, 0, 4, + 'Crystal', 'Buffs_-_Melee', 'Piercing_Buffs', 101, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (26469, 'Nano Crystal (Agility Boost)', 12228, 26342, 'Agility Boost', 16218, 0, 0, 0, 7, 'Crystal', + 'Buffs_-_Attributes', 'Agility_Buffs', 29, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (26470, 'Nano Crystal (Aimed Shot Expertise)', 12226, 26343, 'Aimed Shot Expertise', 16186, 0, 0, 0, 10, + 'Crystal', 'Buffs_-_Ranged_Special', 'Aimed_Shot_Buffs', 18, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (26471, 'Nano Crystal (Ranged Special Attacks Incompetence)', 297502, 26344, + 'Ranged Special Attacks Incompetence', 297504, 0, 0, 0, 14, 'Crystal', 'DeBuffs_-_Ranged_Special', + 'Aimed_Shot_DeBuffs', 19, '', 0, 0, 0, 0, 0, 'General', 'SL Loot'), + (26472, 'Nano Crystal (Aimed Shot Inexperience)', 12226, 26345, 'Aimed Shot Inexperience', 39031, 0, 0, 0, 7, + 'Crystal', 'DeBuffs_-_Ranged_Special', 'Aimed_Shot_DeBuffs', 19, '', 0, 0, 0, 0, 0, 'General', + 'No longer drops'), + (26473, 'Nano Crystal (Aimed Shot Proficiency)', 12226, 26346, 'Aimed Shot Proficiency', 16186, 0, 0, 0, 4, + 'Crystal', 'Buffs_-_Ranged_Special', 'Aimed_Shot_Buffs', 18, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (26478, 'Nano Crystal (Assault Rifle Expertise)', 12226, 26370, 'Assault Rifle Expertise', 16195, 0, 0, 0, 10, + 'Crystal', 'Buffs_-_Ranged', 'Assault_Rifle_Buffs', 27, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (26479, 'Nano Crystal (Assault Rifle Incompetence)', 12226, 26352, 'Assault Rifle Incompetence', 39040, 0, 0, 0, + 10, 'Crystal', 'DeBuffs_-_Ranged', 'Assault_Rifle_DeBuffs', 28, '', 0, 0, 0, 0, 0, 'General', + 'No longer drops'), + (26480, 'Nano Crystal (Assault Rifle Inexperience)', 12226, 26353, 'Assault Rifle Inexperience', 39040, 0, 0, 0, + 4, 'Crystal', 'DeBuffs_-_Ranged', 'Assault_Rifle_DeBuffs', 28, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (26481, 'Nano Crystal (Assault Rifle Proficiency)', 12226, 26354, 'Assault Rifle Proficiency', 16195, 0, 0, 0, 4, + 'Crystal', 'Buffs_-_Ranged', 'Assault_Rifle_Buffs', 27, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (26482, 'Nano Crystal (Augment Agility)', 12228, 26355, 'Augment Agility', 16218, 0, 0, 0, 4, 'Crystal', + 'Buffs_-_Attributes', 'Agility_Buffs', 29, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (26483, 'Nano Crystal (Augment Intelligence)', 12228, 26356, 'Augment Intelligence', 16251, 0, 0, 0, 4, + 'Crystal', 'Buffs_-_Attributes', 'Intelligence_Buffs', 30, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (26484, 'Nano Crystal (Augment Psychic)', 12228, 26357, 'Augment Psychic', 16315, 0, 0, 0, 4, 'Crystal', + 'Buffs_-_Attributes', 'Psychic_Buffs', 31, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (26485, 'Nano Crystal (Augment Sense)', 12228, 26358, 'Augment Sense', 16317, 0, 0, 0, 4, 'Crystal', + 'Buffs_-_Attributes', 'Sense_Buffs', 32, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (26486, 'Nano Crystal (Augment Stamina)', 12228, 26359, 'Augment Stamina', 16330, 0, 0, 0, 4, 'Crystal', + 'Buffs_-_Attributes', 'Stamina_Buffs', 33, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (26487, 'Nano Crystal (Augment Strength)', 12228, 26360, 'Augment Strength', 16324, 0, 0, 0, 4, 'Crystal', + 'Buffs_-_Attributes', 'Strength_Buffs', 34, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (26488, 'Nano Crystal (BioMet Expertise)', 12226, 26361, 'BioMet Expertise', 16199, 0, 0, 0, 10, 'Crystal', + 'Buffs_-_Nano', 'Biological_Metamorphosis_Buffs', 35, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (26489, 'Nano Crystal (Nano Skills Incompetence)', 297515, 26362, 'Nano Skills Incompetence', 297518, 0, 0, 0, + 10, 'Crystal', 'DeBuffs_-_Nano', 'BioMet_DeBuffs', 36, '', 0, 0, 0, 0, 0, 'General', 'SL Loot'), + (26490, 'Nano Crystal (BioMet Inexperience)', 12226, 26363, 'BioMet Inexperience', 39044, 0, 0, 0, 4, 'Crystal', + 'DeBuffs_-_Nano', 'BioMet_DeBuffs', 36, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (26491, 'Nano Crystal (BioMet Proficiency)', 12226, 26364, 'BioMet Proficiency', 16199, 0, 0, 0, 4, 'Crystal', + 'Buffs_-_Nano', 'Biological_Metamorphosis_Buffs', 35, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (26492, 'Nano Crystal (Bot Mass Migration)', 12228, 26365, 'Bot Mass Migration', 16303, 0, 0, 0, 4, 'Crystal', + 'Combat', 'Nano_Heal', 0, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (26493, 'Nano Crystal (Bot Migration)', 12228, 26366, 'Bot Migration', 16303, 0, 0, 0, 4, 'Crystal', 'Combat', + 'Nano_Heal', 0, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (26494, 'Nano Crystal (Bow Expertise)', 12226, 26367, 'Bow Expertise', 16208, 0, 0, 0, 10, 'Crystal', + 'Buffs_-_Ranged', 'Bow_Buffs', 37, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (26495, 'Nano Crystal (Bow Incompetence)', 12226, 26368, 'Bow Incompetence', 39047, 0, 0, 0, 10, 'Crystal', + 'DeBuffs_-_Ranged', 'Bow_DeBuffs', 38, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (26496, 'Nano Crystal (Bow Inexperience)', 12226, 26369, 'Bow Inexperience', 39047, 0, 0, 0, 4, 'Crystal', + 'DeBuffs_-_Ranged', 'Bow_DeBuffs', 38, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (26497, 'Nano Crystal (Bow Proficiency)', 12226, 26351, 'Bow Proficiency', 16208, 0, 0, 0, 4, 'Crystal', + 'Buffs_-_Ranged', 'Bow_Buffs', 37, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (26498, 'Nano Crystal (Bow Special Attack Expertise)', 12226, 26394, 'Bow Special Attack Expertise', 16203, 0, 0, + 0, 10, 'Crystal', 'Buffs_-_Ranged_Special', 'Bow_Special_Buffs', 39, '', 0, 0, 0, 0, 0, 'General', + 'No longer drops'), + (26499, 'Nano Crystal (Bow Special Attack Incompetence)', 12226, 26372, 'Bow Special Attack Incompetence', 39048, + 0, 0, 0, 14, 'Crystal', 'DeBuffs_-_Ranged_Special', 'Bow_Special_DeBuffs', 40, '', 0, 0, 0, 0, 0, 'General', + 'No longer drops'), + (26500, 'Nano Crystal (Bow Special Attack Inexperience)', 12226, 26373, 'Bow Special Attack Inexperience', 39048, + 0, 0, 0, 7, 'Crystal', 'DeBuffs_-_Ranged_Special', 'Bow_Special_DeBuffs', 40, '', 0, 0, 0, 0, 0, 'General', + 'No longer drops'), + (26501, 'Nano Crystal (Bow Special Attack Proficiency)', 12226, 26374, 'Bow Special Attack Proficiency', 16203, + 0, 0, 0, 4, 'Crystal', 'Buffs_-_Ranged_Special', 'Bow_Special_Buffs', 39, '', 0, 0, 0, 0, 0, 'General', + 'No longer drops'), + (26502, 'Nano Crystal (Brawl Expertise)', 12226, 26375, 'Brawl Expertise', 16204, 0, 0, 0, 10, 'Crystal', + 'Buffs_-_Melee_Special', 'Brawl_Buffs', 41, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (26503, 'Nano Crystal (Melee Special Attacks Incompetence)', 297520, 26376, 'Melee Special Attacks Incompetence', + 297522, 0, 0, 0, 14, 'Crystal', 'DeBuffs_-_Melee_Special', 'Brawl_DeBuffs', 42, '', 0, 0, 0, 0, 0, 'General', + 'RK Store'), + (26504, 'Nano Crystal (Brawl Inexperience)', 12226, 26377, 'Brawl Inexperience', 39049, 0, 0, 0, 7, 'Crystal', + 'DeBuffs_-_Melee_Special', 'Brawl_DeBuffs', 42, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (26505, 'Nano Crystal (Brawl Proficiency)', 12226, 26378, 'Brawl Proficiency', 16204, 0, 0, 0, 4, 'Crystal', + 'Buffs_-_Melee_Special', 'Brawl_Buffs', 41, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (26506, 'Nano Crystal (Breaking and Entering Expertise)', 12226, 26379, 'Breaking and Entering Expertise', 16205, + 0, 0, 0, 10, 'Crystal', 'Buffs_-_Tradeskill_Special', 'Break_Entry_Buffs', 43, '', 0, 0, 0, 0, 0, 'General', + 'No longer drops'), + (26507, 'Nano Crystal (Breaking and Entering Proficiency)', 12226, 26380, 'Breaking and Entering Proficiency', + 16205, 0, 0, 0, 4, 'Crystal', 'Buffs_-_Tradeskill_Special', 'Break_Entry_Buffs', 43, '', 0, 0, 0, 0, 0, + 'General', 'No longer drops'), + (26508, 'Nano Crystal (Burst Expertise)', 12226, 26381, 'Burst Expertise', 16206, 0, 0, 0, 10, 'Crystal', + 'Buffs_-_Ranged_Special', 'Burst_Buffs', 44, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (26509, 'Nano Crystal (Burst Incompetence)', 12226, 26382, 'Burst Incompetence', 39051, 0, 0, 0, 14, 'Crystal', + 'DeBuffs_-_Ranged_Special', 'Burst_DeBuffs', 45, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (26510, 'Nano Crystal (Burst Inexperience)', 12226, 26383, 'Burst Inexperience', 39051, 0, 0, 0, 7, 'Crystal', + 'DeBuffs_-_Ranged_Special', 'Burst_DeBuffs', 45, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (26511, 'Nano Crystal (Burst Proficiency)', 12226, 26384, 'Burst Proficiency', 16206, 0, 0, 0, 4, 'Crystal', + 'Buffs_-_Ranged_Special', 'Burst_Buffs', 44, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (26514, 'Nano Crystal (Chemistry Expertise)', 12226, 26387, 'Chemistry Expertise', 16210, 0, 0, 0, 10, 'Crystal', + 'Buffs_-_Tradeskill', 'Chemistry_Buffs', 47, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (26515, 'Nano Crystal (Chemistry Proficiency)', 12226, 26388, 'Chemistry Proficiency', 16210, 0, 0, 0, 4, + 'Crystal', 'Buffs_-_Tradeskill', 'Chemistry_Buffs', 47, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (26516, 'Nano Crystal (Adventuring Expertise)', 12226, 26389, 'Adventuring Expertise', 16211, 0, 0, 0, 10, + 'Crystal', 'Buffs', 'Climb_Buffs', 48, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (26522, 'Nano Crystal (Computer Literacy Expertise)', 12226, 26425, 'Computer Literacy Expertise', 16213, 0, 0, + 0, 10, 'Crystal', 'Buffs_-_Tradeskill_Special', 'Computer_Literacy_Buffs', 50, '', 0, 0, 0, 0, 0, 'General', + 'No longer drops'), + (26523, 'Nano Crystal (Computer Literacy Proficiency)', 12226, 26396, 'Computer Literacy Proficiency', 16213, 0, + 0, 0, 4, 'Crystal', 'Buffs_-_Tradeskill_Special', 'Computer_Literacy_Buffs', 50, '', 0, 0, 0, 0, 0, 'General', + 'Clan Starter Quest'), + (26524, 'Nano Crystal (Concealment Expertise)', 12226, 26397, 'Concealment Expertise', 16214, 0, 0, 0, 10, + 'Crystal', 'Buffs_-_Utility', 'Concealment_Buffs', 51, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (26525, 'Nano Crystal (Concealment Proficiency)', 12226, 26398, 'Concealment Proficiency', 16214, 0, 0, 0, 4, + 'Crystal', 'Buffs_-_Utility', 'Concealment_Buffs', 51, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (26526, 'Nano Crystal (Dimach Incompetence)', 12226, 26399, 'Dimach Incompetence', 39064, 0, 0, 0, 14, 'Crystal', + 'DeBuffs_-_Melee_Special', 'Dimach_DeBuffs', 52, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (26527, 'Nano Crystal (Dimach Inexperience)', 12226, 26400, 'Dimach Inexperience', 39064, 0, 0, 0, 7, 'Crystal', + 'DeBuffs_-_Melee_Special', 'Dimach_DeBuffs', 52, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (26528, 'Nano Crystal (Diminish Agility)', 12228, 26401, 'Diminish Agility', 39063, 0, 0, 0, 4, 'Crystal', + 'DeBuffs_-_Attributes', 'Agility_DeBuffs', 53, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (26529, 'Nano Crystal (Diminish Intelligence)', 12228, 26402, 'Diminish Intelligence', 39099, 0, 0, 0, 4, + 'Crystal', 'DeBuffs_-_Attributes', 'Intelligence_DeBuffs', 54, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (26530, 'Nano Crystal (Diminish Psychic)', 12228, 26403, 'Diminish Psychic', 39137, 0, 0, 0, 4, 'Crystal', + 'DeBuffs_-_Attributes', 'Psychic_DeBuffs', 55, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (26531, 'Nano Crystal (Diminish Sense)', 12228, 26404, 'Diminish Sense', 39145, 0, 0, 0, 4, 'Crystal', + 'DeBuffs_-_Attributes', 'Sense_DeBuffs', 56, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (26532, 'Nano Crystal (Diminish Stamina)', 12228, 26405, 'Diminish Stamina', 39152, 0, 0, 0, 4, 'Crystal', + 'DeBuffs_-_Attributes', 'Stamina_DeBuffs', 57, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (26533, 'Nano Crystal (Diminish Strength)', 12228, 26406, 'Diminish Strength', 39154, 0, 0, 0, 4, 'Crystal', + 'DeBuffs_-_Attributes', 'Strength_DeBuffs', 58, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (26534, 'Nano Crystal (Disarm Traps Expertise)', 12226, 26407, 'Disarm Traps Expertise', 16220, 0, 0, 0, 10, + 'Crystal', 'Buffs_-_Tradeskill_Special', 'Disarm_Traps_Buffs', 59, '', 0, 0, 0, 0, 0, 'General', + 'No longer drops'), + (26535, 'Nano Crystal (Disarm Traps Proficiency)', 12226, 26408, 'Disarm Traps Proficiency', 16220, 0, 0, 0, 4, + 'Crystal', 'Buffs_-_Tradeskill_Special', 'Disarm_Traps_Buffs', 59, '', 0, 0, 0, 0, 0, 'General', + 'No longer drops'), + (26539, 'Nano Crystal (Drain Agility)', 12228, 26412, 'Drain Agility', 39063, 0, 0, 0, 10, 'Crystal', + 'DeBuffs_-_Attributes', 'Agility_DeBuffs', 53, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (26540, 'Nano Crystal (Drain Intelligence)', 12228, 26413, 'Drain Intelligence', 39099, 0, 0, 0, 10, 'Crystal', + 'DeBuffs_-_Attributes', 'Intelligence_DeBuffs', 54, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (26541, 'Nano Crystal (Drain Abilities)', 297499, 26414, 'Drain Abilities', 297494, 0, 0, 0, 10, 'Crystal', + 'DeBuffs_-_Attributes', 'Psychic_DeBuffs', 55, '', 0, 0, 0, 0, 0, 'General', 'RK Store'), + (26542, 'Nano Crystal (Drain Sense)', 12228, 26415, 'Drain Sense', 39145, 0, 0, 0, 10, 'Crystal', + 'DeBuffs_-_Attributes', 'Sense_DeBuffs', 56, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (26543, 'Nano Crystal (Drain Stamina)', 12228, 26416, 'Drain Stamina', 39152, 0, 0, 0, 10, 'Crystal', + 'DeBuffs_-_Attributes', 'Stamina_DeBuffs', 57, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (26544, 'Nano Crystal (Drain Strength)', 12228, 26417, 'Drain Strength', 39154, 0, 0, 0, 10, 'Crystal', + 'DeBuffs_-_Attributes', 'Strength_DeBuffs', 58, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (26547, 'Nano Crystal (Electrical Engineering Expertise)', 12226, 26420, 'Electrical Engineering Expertise', + 16231, 0, 0, 0, 10, 'Crystal', 'Buffs_-_Tradeskill', 'Electrical_Engineering_Buffs', 60, '', 0, 0, 0, 0, 0, + 'General', 'No longer drops'), + (26549, 'Nano Crystal (Energy Melee Expertise)', 12226, 26422, 'Energy Melee Expertise', 20881, 0, 0, 0, 10, + 'Crystal', 'Buffs_-_Melee', 'Energy_Melee_Buffs', 61, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (26550, 'Nano Crystal (Energy Melee Incompetence)', 12226, 26423, 'Energy Melee Incompetence', 39077, 0, 0, 0, 4, + 'Crystal', 'DeBuffs_-_Melee', 'Energy_Melee_DeBuffs', 62, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (26551, 'Nano Crystal (Energy Melee Inexperience)', 12226, 26424, 'Energy Melee Inexperience', 39077, 0, 0, 0, + 10, 'Crystal', 'DeBuffs_-_Melee', 'Energy_Melee_DeBuffs', 62, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (26552, 'Nano Crystal (Energy Melee Proficiency)', 12226, 26395, 'Energy Melee Proficiency', 20881, 0, 0, 0, 4, + 'Crystal', 'Buffs_-_Melee', 'Energy_Melee_Buffs', 61, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (26555, 'Nano Crystal (LR Energy Weapon Expertise)', 12226, 26428, 'LR Energy Weapon Expertise', 20882, 0, 0, 0, + 10, 'Crystal', 'Buffs_-_Ranged', 'LR_Energy_Weapon_Buffs', 64, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (26556, 'Nano Crystal (LR Energy Weapon Incompetence)', 12226, 26429, 'LR Energy Weapon Incompetence', 39078, 0, + 0, 0, 10, 'Crystal', 'DeBuffs_-_Ranged', 'LR_Energy_Weapon_DeBuffs', 65, '', 0, 0, 0, 0, 0, 'General', + 'No longer drops'), + (26557, 'Nano Crystal (LR Energy Weapon Inexp)', 12226, 26430, 'LR Energy Weapon Inexp', 39078, 0, 0, 0, 4, + 'Crystal', 'DeBuffs_-_Ranged', 'LR_Energy_Weapon_DeBuffs', 65, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (26558, 'Nano Crystal (LR Energy Weapon Proficiency)', 12226, 26431, 'LR Energy Weapon Proficiency', 20882, 0, 0, + 0, 4, 'Crystal', 'Buffs_-_Ranged', 'LR_Energy_Weapon_Buffs', 64, '', 0, 0, 0, 0, 0, 'General', + 'No longer drops'), + (26559, 'Nano Crystal (Fast Attack Expertise)', 12226, 26432, 'Fast Attack Expertise', 16235, 0, 0, 0, 10, + 'Crystal', 'Buffs_-_Melee_Special', 'Fast_Attack_Buffs', 66, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (26560, 'Nano Crystal (Fast Attack Incompetence)', 12226, 26433, 'Fast Attack Incompetence', 39082, 0, 0, 0, 14, + 'Crystal', 'DeBuffs_-_Melee_Special', 'Fast_Attack_DeBuffs', 67, '', 0, 0, 0, 0, 0, 'General', + 'No longer drops'), + (26561, 'Nano Crystal (Fast Attack Inexperience)', 12226, 26434, 'Fast Attack Inexperience', 39082, 0, 0, 0, 7, + 'Crystal', 'DeBuffs_-_Melee_Special', 'Fast_Attack_DeBuffs', 67, '', 0, 0, 0, 0, 0, 'General', + 'No longer drops'), + (26562, 'Nano Crystal (Fast Attack Proficiency)', 12226, 26435, 'Fast Attack Proficiency', 16235, 0, 0, 0, 4, + 'Crystal', 'Buffs_-_Melee_Special', 'Fast_Attack_Buffs', 66, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (26564, 'Nano Crystal (Field Quantum Physics Expertise)', 12226, 26437, 'Field Quantum Physics Expertise', 16244, + 0, 0, 0, 10, 'Crystal', 'Buffs_-_Tradeskill', 'Field_Quantum_Physics_Buffs', 68, '', 0, 0, 0, 0, 0, 'General', + 'No longer drops'), + (26565, 'Nano Crystal (Field Quantum Physics Proficiency)', 12226, 26438, 'Field Quantum Physics Proficiency', + 16244, 0, 0, 0, 4, 'Crystal', 'Buffs_-_Tradeskill', 'Field_Quantum_Physics_Buffs', 68, '', 0, 0, 0, 0, 0, + 'General', 'No longer drops'), + (26568, 'Nano Crystal (First Aid Expertise)', 12226, 26441, 'First Aid Expertise', 16239, 0, 0, 0, 10, 'Crystal', + 'Buffs_-_Medical', 'First_Aid_Buffs', 70, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (26569, 'Nano Crystal (First Aid Proficiency)', 12226, 26442, 'First Aid Proficiency', 16239, 0, 0, 0, 4, + 'Crystal', 'Buffs_-_Medical', 'First_Aid_Buffs', 70, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (26570, 'Nano Crystal (Fling Shot Expertise)', 12226, 26443, 'Fling Shot Expertise', 16240, 0, 0, 0, 10, + 'Crystal', 'Buffs_-_Ranged_Special', 'Fling_Shot_Buffs', 71, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (26571, 'Nano Crystal (Fling Shot Incompetence)', 12226, 26444, 'Fling Shot Incompetence', 39087, 0, 0, 0, 14, + 'Crystal', 'DeBuffs_-_Ranged_Special', 'Fling_Shot_DeBuffs', 72, '', 0, 0, 0, 0, 0, 'General', + 'No longer drops'), + (26572, 'Nano Crystal (Fling Shot Inexperience)', 12226, 26445, 'Fling Shot Inexperience', 39087, 0, 0, 0, 7, + 'Crystal', 'DeBuffs_-_Ranged_Special', 'Fling_Shot_DeBuffs', 72, '', 0, 0, 0, 0, 0, 'General', + 'No longer drops'), + (26573, 'Nano Crystal (Fling Shot Proficiency)', 12226, 26446, 'Fling Shot Proficiency', 16240, 0, 0, 0, 4, + 'Crystal', 'Buffs_-_Ranged_Special', 'Fling_Shot_Buffs', 71, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (26574, 'Nano Crystal (Full Auto Expertise)', 12226, 26447, 'Full Auto Expertise', 16237, 0, 0, 0, 10, 'Crystal', + 'Buffs_-_Ranged_Special', 'Full_Auto_Buffs', 73, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (26575, 'Nano Crystal (Full Auto Incompetence)', 12226, 26448, 'Full Auto Incompetence', 39091, 0, 0, 0, 14, + 'Crystal', 'DeBuffs_-_Ranged_Special', 'Full_Auto_DeBuffs', 74, '', 0, 0, 0, 0, 0, 'General', + 'No longer drops'), + (26576, 'Nano Crystal (Full Auto Inexperience)', 12226, 26449, 'Full Auto Inexperience', 39091, 0, 0, 0, 7, + 'Crystal', 'DeBuffs_-_Ranged_Special', 'Full_Auto_DeBuffs', 74, '', 0, 0, 0, 0, 0, 'General', + 'No longer drops'), + (26577, 'Nano Crystal (Full Auto Proficiency)', 12226, 26450, 'Full Auto Proficiency', 16237, 0, 0, 0, 4, + 'Crystal', 'Buffs_-_Ranged_Special', 'Full_Auto_Buffs', 73, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (26578, 'Nano Crystal (Heavy Weapons Expertise)', 12226, 26451, 'Heavy Weapons Expertise', 16233, 0, 0, 0, 10, + 'Crystal', 'Buffs_-_Ranged', 'Thrown_Grappling_Buffs', 75, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (26580, 'Nano Crystal (Heavy Weapons Inexperience)', 12226, 26453, 'Heavy Weapons Inexperience', 39080, 0, 0, 0, + 4, 'Crystal', 'DeBuffs_-_Ranged', 'Thrown_Grappling_DeBuffs', 76, '', 0, 0, 0, 0, 0, 'General', + 'No longer drops'), + (26581, 'Nano Crystal (Heavy Weapons Proficiency)', 12226, 26454, 'Heavy Weapons Proficiency', 16233, 0, 0, 0, 4, + 'Crystal', 'Buffs_-_Ranged', 'Thrown_Grappling_Buffs', 75, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (26582, 'Nano Crystal (Piercing Expert)', 12226, 26455, 'Piercing Expert', 16201, 0, 0, 0, 10, 'Crystal', + 'Buffs_-_Melee', 'Piercing_Buffs', 101, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (26583, 'Nano Crystal (Piercing Incompetence)', 12226, 26456, 'Piercing Incompetence', 39043, 0, 0, 0, 10, + 'Crystal', 'DeBuffs_-_Melee', 'Piercing_DeBuffs', 102, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (26584, 'Nano Crystal (Piercing Inexperience)', 12226, 26457, 'Piercing Inexperience', 39043, 0, 0, 0, 4, + 'Crystal', 'DeBuffs_-_Melee', 'Piercing_DeBuffs', 102, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (26585, 'Nano Crystal (Adrenaline Pump)', 12228, 26350, 'Adrenaline Pump', 16300, 0, 0, 0, 10, 'Crystal', + 'Buffs_-_Utility', 'Runspeed_Buffs', 149, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (26680, 'Nano Crystal (Heavy Weapons Incompetence)', 12226, 26452, 'Heavy Weapons Incompetence', 39080, 0, 0, 0, + 10, 'Crystal', 'DeBuffs_-_Ranged', 'Thrown_Grappling_DeBuffs', 76, '', 0, 0, 0, 0, 0, 'General', + 'No longer drops'), + (26682, 'Nano Crystal (Adventuring Proficiency)', 12226, 26390, 'Adventuring Proficiency', 16211, 0, 0, 0, 4, + 'Crystal', 'Buffs', 'Climb_Buffs', 48, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (26683, 'Nano Crystal (Healing)', 12228, 26466, 'Healing', 16246, 0, 0, 0, 4, 'Crystal', 'Combat', 'Heal', 0, '', + 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (27197, 'Nano Crystal (Weapon Smithing Proficiency)', 12226, 27191, 'Weapon Smithing Proficiency', 16349, 0, 0, + 0, 4, 'Crystal', 'Buffs_-_Tradeskill', 'Weapon_Smithing_Buffs', 134, '', 0, 0, 0, 0, 0, 'General', + 'No longer drops'), + (27198, 'Nano Crystal (1H Edged Weapon Expertise)', 12226, 27068, '1H Edged Weapon Expertise', 16325, 0, 0, 0, + 10, 'Crystal', 'Buffs_-_Melee', '1H_Edged_Buffs', 21, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (27199, 'Nano Crystal (Melee Weapons Incompetence)', 297512, 27069, 'Melee Weapons Incompetence', 297511, 0, 0, + 0, 10, 'Crystal', 'DeBuffs_-_Melee', '1H_Edged_DeBuffs', 22, '', 0, 0, 0, 0, 0, 'General', 'RK Store'), + (27200, 'Nano Crystal (1H Edged Weapon Inexperience)', 12226, 27070, '1H Edged Weapon Inexperience', 39147, 0, 0, + 0, 4, 'Crystal', 'DeBuffs_-_Melee', '1H_Edged_DeBuffs', 22, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (27201, 'Nano Crystal (1H Edged Weapon Proficiency)', 12226, 27071, '1H Edged Weapon Proficiency', 16325, 0, 0, + 0, 4, 'Crystal', 'Buffs_-_Melee', '1H_Edged_Buffs', 21, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (27202, 'Nano Crystal (2H Blunt Weapon Expertise)', 12226, 27072, '2H Blunt Weapon Expertise', 20879, 0, 0, 0, + 10, 'Crystal', 'Buffs_-_Melee', '2H_Blunt_Buffs', 23, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (27203, 'Nano Crystal (2H Blunt Weapon Incompetence)', 12226, 27073, '2H Blunt Weapon Incompetence', 39146, 0, 0, + 0, 10, 'Crystal', 'DeBuffs_-_Melee', '2H_Blunt_DeBuffs', 24, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (27204, 'Nano Crystal (2H Blunt Weapon Inexperience)', 12226, 27074, '2H Blunt Weapon Inexperience', 39146, 0, 0, + 0, 4, 'Crystal', 'DeBuffs_-_Melee', '2H_Blunt_DeBuffs', 24, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (27205, 'Nano Crystal (2H Blunt Weapon Proficiency)', 12226, 27075, '2H Blunt Weapon Proficiency', 20879, 0, 0, + 0, 4, 'Crystal', 'Buffs_-_Melee', '2H_Blunt_Buffs', 23, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (27206, 'Nano Crystal (2H Edged Weapon Expertise)', 12226, 27076, '2H Edged Weapon Expertise', 16347, 0, 0, 0, + 10, 'Crystal', 'Buffs_-_Melee', '2H_Edged_Buffs', 25, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (27207, 'Nano Crystal (2H Edged Weapon Incompetence)', 12226, 27077, '2H Edged Weapon Incompetence', 39163, 0, 0, + 0, 10, 'Crystal', 'DeBuffs_-_Melee', '2H_Edged_DeBuffs', 26, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (27208, 'Nano Crystal (2H Edged Weapon Inexperience)', 12226, 27078, '2H Edged Weapon Inexperience', 39163, 0, 0, + 0, 4, 'Crystal', 'DeBuffs_-_Melee', '2H_Edged_DeBuffs', 26, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (27209, 'Nano Crystal (2H Edged Weapon Proficiency)', 12226, 27079, '2H Edged Weapon Proficiency', 16347, 0, 0, + 0, 4, 'Crystal', 'Buffs_-_Melee', '2H_Edged_Buffs', 25, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (27210, 'Nano Crystal (Grenade Expertise)', 12226, 27081, 'Grenade Expertise', 16252, 0, 0, 0, 10, 'Crystal', + 'Buffs_-_Ranged', 'Grenade_Buffs', 77, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (27211, 'Nano Crystal (Grenade Incompetence)', 12226, 26711, 'Grenade Incompetence', 39093, 0, 0, 0, 10, + 'Crystal', 'DeBuffs_-_Ranged', 'Grenade_DeBuffs', 78, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (27212, 'Nano Crystal (Grenade Inexperience)', 12226, 26710, 'Grenade Inexperience', 39093, 0, 0, 0, 4, + 'Crystal', 'DeBuffs_-_Ranged', 'Grenade_DeBuffs', 78, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (27213, 'Nano Crystal (Grenade Proficiency)', 12226, 27082, 'Grenade Proficiency', 16252, 0, 0, 0, 4, 'Crystal', + 'Buffs_-_Ranged', 'Grenade_Buffs', 77, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (27216, 'Nano Crystal (Improve Health)', 12228, 27085, 'Improve Health', 16758, 0, 0, 0, 7, 'Crystal', 'Buffs', + 'Max_Health_Buffs', 80, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (27217, 'Nano Crystal (Intelligence Boost)', 12228, 27086, 'Intelligence Boost', 16251, 0, 0, 0, 7, 'Crystal', + 'Buffs_-_Attributes', 'Intelligence_Buffs', 30, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (27218, 'Nano Crystal (Throwing Knife Expertise)', 12226, 27087, 'Throwing Knife Expertise', 16286, 0, 0, 0, 10, + 'Crystal', 'Buffs', 'Knife_Buffs', 81, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (27219, 'Nano Crystal (Throwing Knife Incompetence)', 12226, 26709, 'Throwing Knife Incompetence', 39107, 0, 0, + 0, 10, 'Crystal', 'DeBuffs', 'Knife_DeBuffs', 82, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (27220, 'Nano Crystal (Throwing Knife Inexperience)', 12226, 26708, 'Throwing Knife Inexperience', 39107, 0, 0, + 0, 4, 'Crystal', 'DeBuffs', 'Knife_DeBuffs', 82, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (27221, 'Nano Crystal (Throwing Knife Proficiency)', 12226, 27088, 'Throwing Knife Proficiency', 16286, 0, 0, 0, + 4, 'Crystal', 'Buffs', 'Knife_Buffs', 81, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (27225, 'Nano Crystal (Submachine Gun Expertise)', 12226, 27090, 'Submachine Gun Expertise', 16295, 0, 0, 0, 10, + 'Crystal', 'Buffs_-_Ranged', 'SMG_Buffs', 83, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (27226, 'Nano Crystal (Submachine Gun Incompetence)', 12226, 27091, 'Submachine Gun Incompetence', 39117, 0, 0, + 0, 10, 'Crystal', 'DeBuffs_-_Ranged', 'SMG_DeBuffs', 84, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (27227, 'Nano Crystal (Submachine Gun Inexperience)', 12226, 27092, 'Submachine Gun Inexperience', 39117, 0, 0, + 0, 4, 'Crystal', 'DeBuffs_-_Ranged', 'SMG_DeBuffs', 84, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (27228, 'Nano Crystal (Submachine Gun Proficiency)', 12226, 27093, 'Submachine Gun Proficiency', 16295, 0, 0, 0, + 4, 'Crystal', 'Buffs_-_Ranged', 'SMG_Buffs', 83, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (27229, 'Nano Crystal (Martial Arts Expertise)', 12226, 27094, 'Martial Arts Expertise', 16289, 0, 0, 0, 10, + 'Crystal', 'Buffs_-_Melee_Special', 'Martial_Arts_Buffs', 85, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (27230, 'Nano Crystal (Martial Arts Incompetence)', 12226, 27095, 'Martial Arts Incompetence', 39111, 0, 0, 0, + 10, 'Crystal', 'DeBuffs_-_Melee_Special', 'Martial_Arts_DeBuffs', 86, '', 0, 0, 0, 0, 0, 'General', + 'No longer drops'), + (27231, 'Nano Crystal (Martial Arts Inexperience)', 12226, 27096, 'Martial Arts Inexperience', 39111, 0, 0, 0, 4, + 'Crystal', 'DeBuffs_-_Melee_Special', 'Martial_Arts_DeBuffs', 86, '', 0, 0, 0, 0, 0, 'General', + 'No longer drops'), + (27232, 'Nano Crystal (Martial Arts Proficiency)', 12226, 27097, 'Martial Arts Proficiency', 16289, 0, 0, 0, 4, + 'Crystal', 'Buffs_-_Melee_Special', 'Martial_Arts_Buffs', 85, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (27233, 'Nano Crystal (MatCrea Expertise)', 12226, 27098, 'MatCrea Expertise', 16290, 0, 0, 0, 10, 'Crystal', + 'Buffs_-_Nano', 'Matter_Creation_Buffs', 87, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (27234, 'Nano Crystal (MatCrea Incompetence)', 12226, 27099, 'MatCrea Incompetence', 39112, 0, 0, 0, 10, + 'Crystal', 'DeBuffs_-_Nano', 'MatCrea_DeBuffs', 88, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (27235, 'Nano Crystal (MatCrea Inexperience)', 12226, 27100, 'MatCrea Inexperience', 39112, 0, 0, 0, 4, + 'Crystal', 'DeBuffs_-_Nano', 'MatCrea_DeBuffs', 88, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (27236, 'Nano Crystal (MatCrea Proficiency)', 12226, 27101, 'MatCrea Proficiency', 16290, 0, 0, 0, 4, 'Crystal', + 'Buffs_-_Nano', 'Matter_Creation_Buffs', 87, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (27237, 'Nano Crystal (SpaceTime Expertise)', 12226, 27102, 'SpaceTime Expertise', 16285, 0, 0, 0, 10, 'Crystal', + 'Buffs_-_Nano', 'Time_and_Space_Buffs', 89, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (27238, 'Nano Crystal (SpaceTime Incompetence)', 12226, 27103, 'SpaceTime Incompetence', 39113, 0, 0, 0, 10, + 'Crystal', 'DeBuffs_-_Nano', 'MatLoc_DeBuffs', 90, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (27239, 'Nano Crystal (SpaceTime Inexperience)', 12226, 27104, 'SpaceTime Inexperience', 39113, 0, 0, 0, 4, + 'Crystal', 'DeBuffs_-_Nano', 'MatLoc_DeBuffs', 90, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (27240, 'Nano Crystal (SpaceTime Proficiency)', 12226, 27105, 'SpaceTime Proficiency', 16285, 0, 0, 0, 4, + 'Crystal', 'Buffs_-_Nano', 'Time_and_Space_Buffs', 89, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (27241, 'Nano Crystal (MatMet Expertise)', 12226, 27106, 'MatMet Expertise', 16298, 0, 0, 0, 10, 'Crystal', + 'Buffs_-_Nano', 'Material_Metamorphosis_Buffs', 91, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (27242, 'Nano Crystal (MatMet Incompetence)', 12226, 27107, 'MatMet Incompetence', 39114, 0, 0, 0, 10, 'Crystal', + 'DeBuffs_-_Nano', 'MatMet_DeBuffs', 92, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (27243, 'Nano Crystal (MatMet Inexperience)', 12226, 27108, 'MatMet Inexperience', 39114, 0, 0, 0, 4, 'Crystal', + 'DeBuffs_-_Nano', 'MatMet_DeBuffs', 92, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (27244, 'Nano Crystal (MatMet Proficiency)', 12226, 27109, 'MatMet Proficiency', 16298, 0, 0, 0, 4, 'Crystal', + 'Buffs_-_Nano', 'Material_Metamorphosis_Buffs', 91, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (27245, 'Nano Crystal (Mechanical Engineering Expertise)', 12226, 27110, 'Mechanical Engineering Expertise', + 16293, 0, 0, 0, 10, 'Crystal', 'Buffs_-_Tradeskill', 'Mechanical_Engineering_Buffs', 93, '', 0, 0, 0, 0, 0, + 'General', 'No longer drops'), + (27246, 'Nano Crystal (Mechanical Engineering Proficiency)', 12226, 27111, 'Mechanical Engineering Proficiency', + 16293, 0, 0, 0, 4, 'Crystal', 'Buffs_-_Tradeskill', 'Mechanical_Engineering_Buffs', 93, '', 0, 0, 0, 0, 0, + 'General', 'No longer drops'), + (27250, 'Nano Crystal (Nano Programming Expertise)', 12226, 27115, 'Nano Programming Expertise', 16301, 0, 0, 0, + 10, 'Crystal', 'Buffs_-_Tradeskill_Special', 'Nano_Programming_Buffs', 95, '', 0, 0, 0, 0, 0, 'General', + 'No longer drops'), + (27251, 'Nano Crystal (Nano Programming Proficiency)', 12226, 27116, 'Nano Programming Proficiency', 16301, 0, 0, + 0, 4, 'Crystal', 'Buffs_-_Tradeskill_Special', 'Nano_Programming_Buffs', 95, '', 0, 0, 0, 0, 0, 'General', + 'No longer drops'), + (27253, 'Nano Crystal (Nano Restoration)', 12225, 27118, 'Nano Restoration', 16321, 0, 0, 0, 10, 'Crystal', + 'Buffs_-_Medical', 'NP_Regeneration', 97, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (27256, 'Nano Crystal (Parry Expertise)', 12226, 27121, 'Deflect Expertise', 16305, 0, 0, 0, 10, 'Crystal', + 'Buffs', 'Deflect_Buffs', 98, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (27257, 'Nano Crystal (Parry Incompetence)', 12226, 27122, 'Parry Incompetence', 39127, 0, 0, 0, 14, 'Crystal', + 'DeBuffs', 'Deflect_DeBuffs', 99, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (27258, 'Nano Crystal (Parry Inexperience)', 12226, 27123, 'Parry Inexperience', 39127, 0, 0, 0, 7, 'Crystal', + 'DeBuffs', 'Deflect_DeBuffs', 99, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (27259, 'Nano Crystal (Parry Proficiency)', 12226, 27124, 'Deflect Proficiency', 16305, 0, 0, 0, 4, 'Crystal', + 'Buffs', 'Deflect_Buffs', 98, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (27260, 'Nano Crystal (Pharmaceutical Expertise)', 12226, 27125, 'Pharmaceutical Expertise', 16316, 0, 0, 0, 10, + 'Crystal', 'Buffs_-_Tradeskill', 'Pharmaceutical_Buffs', 100, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (27261, 'Nano Crystal (Pharmaceutical Proficiency)', 12226, 27126, 'Pharmaceutical Proficiency', 16316, 0, 0, 0, + 4, 'Crystal', 'Buffs_-_Tradeskill', 'Pharmaceutical_Buffs', 100, '', 0, 0, 0, 0, 0, 'General', + 'No longer drops'), + (27262, 'Nano Crystal (Pistol Expertise)', 12226, 27127, 'Pistol Expertise', 16310, 0, 0, 0, 10, 'Crystal', + 'Buffs_-_Ranged', 'Pistol_Buffs', 103, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (27263, 'Nano Crystal (Ranged Weapons Incompetence)', 297531, 27128, 'Ranged Weapons Incompetence', 297529, 0, 0, + 0, 10, 'Crystal', 'DeBuffs_-_Ranged', 'Pisto_DeBuffs', 104, '', 0, 0, 0, 0, 0, 'General', 'RK Store'), + (27264, 'Nano Crystal (Pistol Inexperience)', 12226, 27129, 'Pistol Inexperience', 39132, 0, 0, 0, 4, 'Crystal', + 'DeBuffs_-_Ranged', 'Pisto_DeBuffs', 104, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (27265, 'Nano Crystal (Pistol Proficiency)', 12226, 27080, 'Pistol Proficiency', 16310, 0, 0, 0, 4, 'Crystal', + 'Buffs_-_Ranged', 'Pistol_Buffs', 103, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (27270, 'Nano Crystal (Psychic Boost)', 12228, 27134, 'Psychic Boost', 16315, 0, 0, 0, 7, 'Crystal', + 'Buffs_-_Attributes', 'Psychic_Buffs', 31, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (27271, 'Nano Crystal (Psychology Expertise)', 12226, 27135, 'Psychology Expertise', 16309, 0, 0, 0, 10, + 'Crystal', 'Buffs_-_Tradeskill_Special', 'Psychology_Buffs', 107, '', 0, 0, 0, 0, 0, 'General', + 'No longer drops'), + (27272, 'Nano Crystal (Psychology Proficiency)', 12226, 27136, 'Psychology Proficiency', 16309, 0, 0, 0, 4, + 'Crystal', 'Buffs_-_Tradeskill_Special', 'Psychology_Buffs', 107, '', 0, 0, 0, 0, 0, 'General', + 'No longer drops'), + (27273, 'Nano Crystal (PsyMod Expertise)', 12226, 27137, 'PsyMod Expertise', 16766, 0, 0, 0, 10, 'Crystal', + 'Buffs_-_Nano', 'Psychological_Modification_Buffs', 108, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (27274, 'Nano Crystal (PsyMod Incompetence)', 12226, 27138, 'PsyMod Incompetence', 39138, 0, 0, 0, 10, 'Crystal', + 'DeBuffs_-_Nano', 'PsyMod_DeBuffs', 109, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (27275, 'Nano Crystal (PsyMod Inexperience)', 12226, 27139, 'PsyMod Inexperience', 39138, 0, 0, 0, 4, 'Crystal', + 'DeBuffs_-_Nano', 'PsyMod_DeBuffs', 109, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (27276, 'Nano Crystal (PsyMod Proficiency)', 12226, 27140, 'PsyMod Proficiency', 16766, 0, 0, 0, 4, 'Crystal', + 'Buffs_-_Nano', 'Psychological_Modification_Buffs', 108, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (27277, 'Nano Crystal (Quickness)', 12226, 27141, 'Quickness', 16300, 0, 0, 0, 17, 'Crystal', 'Buffs_-_Utility', + 'Runspeed_Buffs', 149, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (27278, 'Nano Crystal (Radiation Shield)', 12227, 27142, 'Radiation Shield', 16318, 0, 0, 0, 1, 'Crystal', + 'Buffs', 'Radiation_AC_Buffs', 110, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (27279, 'Nano Crystal (Radiation Ward)', 12227, 27143, 'Radiation Ward', 16318, 0, 0, 0, 7, 'Crystal', 'Buffs', + 'Radiation_AC_Buffs', 110, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (27280, 'Nano Crystal (Regeneration)', 12228, 27144, 'Regeneration', 16321, 0, 0, 0, 14, 'Crystal', + 'Buffs_-_Medical', 'HP_Regeneration', 111, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (27282, 'Nano Crystal (Rifle Expertise)', 12226, 27146, 'Rifle Expertise', 16329, 0, 0, 0, 10, 'Crystal', + 'Buffs_-_Ranged', 'Rifle_Buffs', 112, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (27283, 'Nano Crystal (Rifle Incompetence)', 12226, 27147, 'Rifle Incompetence', 39151, 0, 0, 0, 10, 'Crystal', + 'DeBuffs_-_Ranged', 'Rifle_DeBuffs', 113, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (27284, 'Nano Crystal (Rifle Inexperience)', 12226, 27148, 'Rifle Inexperience', 39151, 0, 0, 0, 4, 'Crystal', + 'DeBuffs_-_Ranged', 'Rifle_DeBuffs', 113, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (27285, 'Nano Crystal (Rifle Proficiency)', 12226, 27149, 'Rifle Proficiency', 16329, 0, 0, 0, 4, 'Crystal', + 'Buffs_-_Ranged', 'Rifle_Buffs', 112, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (27286, 'Nano Crystal (Riposte Expertise)', 12226, 27150, 'Riposte Expertise', 16322, 0, 0, 0, 10, 'Crystal', + 'Buffs', 'Riposte_Buffs', 114, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (27287, 'Nano Crystal (Riposte Incompetence)', 12226, 27151, 'Riposte Incompetence', 39144, 0, 0, 0, 14, + 'Crystal', 'DeBuffs', 'Riposte_DeBuffs', 115, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (27288, 'Nano Crystal (Riposte Inexperience)', 12226, 27152, 'Riposte Inexperience', 39144, 0, 0, 0, 7, + 'Crystal', 'DeBuffs', 'Riposte_DeBuffs', 115, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (27289, 'Nano Crystal (Riposte Proficiency)', 12226, 27153, 'Riposte Proficiency', 16322, 0, 0, 0, 4, 'Crystal', + 'Buffs', 'Riposte_Buffs', 114, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (27290, 'Nano Crystal (Sense Boost)', 12228, 27154, 'Sense Boost', 16317, 0, 0, 0, 7, 'Crystal', + 'Buffs_-_Attributes', 'Sense_Buffs', 32, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (27291, 'Nano Crystal (Sense Imp Expertise)', 12226, 27155, 'Sense Imp Expertise', 16332, 0, 0, 0, 10, 'Crystal', + 'Buffs_-_Nano', 'Sensory_Improvement_Buffs', 116, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (27292, 'Nano Crystal (Sense Imp Incomp)', 12226, 27156, 'Sense Imp Incomp', 39029, 0, 0, 0, 10, 'Crystal', + 'DeBuffs_-_Nano', 'SenseImp_DeBuffs', 117, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (27293, 'Nano Crystal (Sense Imp Inexperience)', 12226, 27157, 'Sense Imp Inexperience', 39029, 0, 0, 0, 4, + 'Crystal', 'DeBuffs_-_Nano', 'SenseImp_DeBuffs', 117, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (27294, 'Nano Crystal (Sense Imp Proficiency)', 12226, 27158, 'Sense Imp Proficiency', 16332, 0, 0, 0, 4, + 'Crystal', 'Buffs_-_Nano', 'Sensory_Improvement_Buffs', 116, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (27295, 'Nano Crystal (Shotgun Expertise)', 12226, 27159, 'Shotgun Expertise', 16326, 0, 0, 0, 10, 'Crystal', + 'Buffs_-_Ranged', 'Shotgun_Buffs', 118, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (27296, 'Nano Crystal (Shotgun Incompetence)', 12226, 27160, 'Shotgun Incompetence', 39148, 0, 0, 0, 10, + 'Crystal', 'DeBuffs_-_Ranged', 'Shotgun_DeBuffs', 119, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (27297, 'Nano Crystal (Shotgun Inexperience)', 12226, 27161, 'Shotgun Inexperience', 39148, 0, 0, 0, 4, + 'Crystal', 'DeBuffs_-_Ranged', 'Shotgun_DeBuffs', 119, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (27298, 'Nano Crystal (Shotgun Proficiency)', 12226, 27162, 'Shotgun Proficiency', 16326, 0, 0, 0, 4, 'Crystal', + 'Buffs_-_Ranged', 'Shotgun_Buffs', 118, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (27300, 'Nano Crystal (Sneak Attack Expertise)', 12226, 27164, 'Sneak Attack Expertise', 16328, 0, 0, 0, 10, + 'Crystal', 'Buffs_-_Melee_Special', 'Sneak_Attack_Buffs', 120, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (27301, 'Nano Crystal (Sneak Attack Incompetence)', 12226, 27165, 'Sneak Attack Incompetence', 39150, 0, 0, 0, + 14, 'Crystal', 'DeBuffs_-_Melee_Special', 'Sneak_Attack_DeBuffs', 121, '', 0, 0, 0, 0, 0, 'General', + 'No longer drops'), + (27302, 'Nano Crystal (Sneak Attack Inexperience)', 12226, 27166, 'Sneak Attack Inexperience', 39150, 0, 0, 0, 7, + 'Crystal', 'DeBuffs_-_Melee_Special', 'Sneak_Attack_DeBuffs', 121, '', 0, 0, 0, 0, 0, 'General', + 'No longer drops'), + (27303, 'Nano Crystal (Sneak Attack Proficiency)', 12226, 27167, 'Sneak Attack Proficiency', 16328, 0, 0, 0, 4, + 'Crystal', 'Buffs_-_Melee_Special', 'Sneak_Attack_Buffs', 120, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (27304, 'Nano Crystal (Stamina Boost)', 12228, 27168, 'Stamina Boost', 16330, 0, 0, 0, 7, 'Crystal', + 'Buffs_-_Attributes', 'Stamina_Buffs', 33, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (27305, 'Nano Crystal (Strength Boost)', 12228, 27169, 'Strength Boost', 16324, 0, 0, 0, 7, 'Crystal', + 'Buffs_-_Attributes', 'Strength_Buffs', 34, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (27308, 'Nano Crystal (Swiftness)', 12226, 27172, 'Swiftness', 16300, 0, 0, 0, 4, 'Crystal', 'Buffs_-_Utility', + 'Runspeed_Buffs', 149, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (27311, 'Nano Crystal (Treatment Expertise)', 12226, 27175, 'Treatment Expertise', 16342, 0, 0, 0, 10, 'Crystal', + 'Buffs_-_Medical', 'Treatment_Buffs', 125, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (27312, 'Nano Crystal (Treatment Proficiency)', 12226, 27176, 'Treatment Proficiency', 16342, 0, 0, 0, 4, + 'Crystal', 'Buffs_-_Medical', 'Treatment_Buffs', 125, '', 0, 0, 0, 0, 0, 'General', 'Omni Starter Quest'), + (27313, 'Nano Crystal (Tutoring Expertise)', 12226, 27177, 'Tutoring Expertise', 16343, 0, 0, 0, 10, 'Crystal', + 'Buffs_-_Tradeskill_Special', 'Tutoring_Buffs', 126, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (27314, 'Nano Crystal (Tutoring Proficiency)', 12226, 27178, 'Tutoring Proficiency', 16343, 0, 0, 0, 4, + 'Crystal', 'Buffs_-_Tradeskill_Special', 'Tutoring_Buffs', 126, '', 0, 0, 0, 0, 0, 'General', + 'No longer drops'), + (27324, 'Nano Crystal (Weapon Augmentation)', 12225, 27188, 'Weapon Augmentation', 16350, 0, 0, 0, 7, 'Crystal', + 'Buffs', 'Damage_Buffs_-_Line_A', 4, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (27325, 'Nano Crystal (Weapon Enhancement)', 12225, 27189, 'Weapon Enhancement', 16350, 0, 0, 0, 17, 'Crystal', + 'Buffs', 'Damage_Buffs_-_Line_A', 4, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (27326, 'Nano Crystal (Weapon Smithing Expertise)', 12226, 27190, 'Weapon Smithing Expertise', 16349, 0, 0, 0, + 10, 'Crystal', 'Buffs_-_Tradeskill', 'Weapon_Smithing_Buffs', 134, '', 0, 0, 0, 0, 0, 'General', + 'No longer drops'), + (27708, 'Nano Crystal (Electrical Engineering Proficiency)', 12226, 27707, 'Electrical Engineering Proficiency', + 16231, 0, 0, 0, 4, 'Crystal', 'Buffs_-_Tradeskill', 'Electrical_Engineering_Buffs', 60, '', 0, 0, 0, 0, 0, + 'General', 'No longer drops'), + (27805, 'Nano Crystal (Blood Circle)', 12228, 27804, 'Blood Circle', 38953, 147092, 145592, 148592, 24, + 'Crystal', 'Combat', 'Team_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'RK Store'), + (28742, 'Adventurer: Startup Crystal - Quick Heal', 12228, 26695, 'Quick Heal', 16246, 0, 0, 0, 1, 'Crystal', + 'Combat', 'Single_Target_Healing', 951, '', 0, 1, 0, 0, 0, 'Adventurer', 'Arete Nano Container'), + (28743, 'Nano Crystal (Robust Treatment)', 42451, 26703, 'Robust Treatment', 16342, 146794, 145294, 148294, 136, + 'Crystal', 'Buffs', 'First_Aid_And_Treatment_Buffs', 190, '', 0, 1, 0, 0, 0, 'Adventurer', 'Mission Reward'), + (28744, 'Nano Crystal (Survival Aid)', 12226, 26704, 'Survival Aid', 16239, 146804, 145304, 148304, 33, + 'Crystal', 'Buffs', 'First_Aid_And_Treatment_Buffs', 190, '', 0, 1, 0, 0, 0, 'Adventurer', 'RK Store'), + (28745, 'Nano Crystal (Precision of the Hunter)', 301578, 26702, 'Precision of the Hunter', 301579, 146807, + 145307, 148307, 113, 'Crystal', 'Buffs', 'Aimed_Shot_Buffs', 198, '', 0, 1, 0, 0, 0, 'Adventurer', 'RK Store'), + (28749, 'Nano Crystal (Team Free Movement)', 296729, 26698, 'Team Free Movement', 296731, 146808, 145308, 148308, + 66, 'Crystal', 'Buffs', 'Team_Run_Speed_Buffs', 1034, '', 0, 1, 0, 0, 0, 'Adventurer', 'RK Store'), + (28751, 'Nano Crystal (Team Quick Heal)', 12228, 26696, 'Team Quick Heal', 38953, 146810, 145310, 148310, 4, + 'Crystal', 'Combat', 'Team_Healing', 952, '', 0, 1, 0, 0, 0, 'Adventurer', 'RK Store'), + (28752, 'Nano Crystal (Terrain Knowledge)', 296729, 26705, 'Terrain Knowledge', 296731, 146814, 145314, 148314, + 10, 'Crystal', 'Buffs', 'Runspeed_Buffs', 150, '', 0, 1, 0, 0, 0, 'Adventurer', 'RK Store'), + (28753, 'Nano Crystal (Bind Wounds)', 12228, 28681, 'Bind Wounds', 44229, 147086, 145586, 148586, 24, 'Crystal', + 'Combat', 'Target_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'RK Store'), + (28754, 'Nano Crystal (Biotoxin MK I)', 12224, 28641, 'Biotoxin MK I', 16225, 147088, 145588, 148588, 27, + 'Crystal', 'Combat', 'DOT_-_Line_A', 6, '', 0, 1, 0, 0, 0, 'Doctor', 'RK Store'), + (28755, 'Nano Crystal (Biotoxin MK II)', 12224, 28642, 'Biotoxin MK II', 16225, 147089, 145589, 148589, 43, + 'Crystal', 'Combat', 'DOT_-_Line_A', 6, '', 0, 1, 0, 0, 0, 'Doctor', 'RK Store'), + (28756, 'Nano Crystal (Biotoxin MK III)', 12257, 28643, 'Biotoxin MK III', 16226, 147090, 145590, 148590, 73, + 'Crystal', 'Combat', 'DOT_-_Line_A', 6, '', 0, 1, 0, 0, 0, 'Doctor', 'RK Store'), + (28757, 'Nano Crystal (Biotoxin MK IV)', 12257, 28644, 'Biotoxin MK IV', 16222, 147091, 145591, 148591, 93, + 'Crystal', 'Combat', 'DOT_-_Line_A', 6, '', 0, 1, 0, 0, 0, 'Doctor', 'RK Store'), + (28758, 'Nano Crystal (Bloom of Health)', 42448, 28645, 'Bloom of Health', 44233, 147093, 145593, 148593, 129, + 'Crystal', 'Combat', 'Target_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'Mission Reward'), + (28761, 'Nano Crystal (Close Wounds)', 12256, 28648, 'Close Wounds', 44232, 147104, 145604, 148604, 90, + 'Crystal', 'Combat', 'Target_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'RK Store'), + (28762, 'Nano Crystal (Colossal Health)', 42448, 28649, 'Colossal Health', 38905, 147105, 145605, 148605, 116, + 'Crystal', 'Buffs', 'Doctor_HP_Buffs', 184, '', 0, 1, 0, 0, 0, 'Doctor', 'RK Store'), + (28763, 'Nano Crystal (Complete Healing)', 301570, 28650, 'Complete Healing', 301568, 147107, 145607, 148607, + 169, 'Crystal', 'Combat', 'Complete_Healing_Line', 282, '', 0, 1, 0, 0, 0, 'Doctor', 'Mission Reward'), + (28764, 'Nano Crystal (Cellular Restoration)', 301187, 28651, 'Cellular Restoration', 301174, 147115, 145615, + 148615, 146, 'Crystal', 'Buffs', 'Heal_Delta_Buffs', 203, '', 0, 1, 0, 0, 0, 'Doctor', 'Mission Reward'), + (28767, 'Nano Crystal (Doctor''s Grace)', 12228, 28654, 'Doctor''s Grace', 16246, 147129, 145629, 148629, 7, + 'Crystal', 'Combat', 'Target_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'RK Store'), + (28770, 'Nano Crystal (Enhanced First Aid)', 12226, 28657, 'Enhanced First Aid', 16239, 147138, 145638, 148638, + 14, 'Crystal', 'Buffs', 'First_Aid_And_Treatment_Buffs', 190, '', 0, 1, 0, 0, 0, 'Doctor', 'RK Store'), + (28771, 'Nano Crystal (Enlarge)', 12228, 28658, 'Enlarge', 16324, 147140, 145640, 148640, 37, 'Crystal', 'Buffs', + 'Strength_Buffs', 156, '', 0, 1, 0, 0, 0, 'Doctor', 'RK Store'), + (28772, 'Nano Crystal (Epsilon Purge)', 301150, 28659, 'Epsilon Purge', 301151, 0, 0, 0, 149, 'Crystal', + 'Combat', 'DOT_Removal', 825, '', 0, 1, 0, 0, 0, 'Doctor', 'Mission Reward'), + (28773, 'Nano Crystal (Exaggerated Health)', 12256, 28660, 'Exaggerated Health', 38905, 147141, 145641, 148641, + 80, 'Crystal', 'Buffs', 'Doctor_HP_Buffs', 184, '', 0, 1, 0, 0, 0, 'Doctor', 'RK Store'), + (28775, 'Nano Crystal (Gargantuan Health)', 42448, 28662, 'Gargantuan Health', 38905, 147148, 145648, 148648, + 165, 'Crystal', 'Buffs', 'Doctor_HP_Buffs', 184, '', 0, 1, 0, 0, 0, 'Doctor', 'Mission Reward'), + (28776, 'Nano Crystal (Natural Healing)', 301187, 28663, 'Natural Healing', 301174, 147167, 145667, 148667, 76, + 'Crystal', 'Buffs', 'Heal_Delta_Buffs', 203, '', 0, 1, 0, 0, 0, 'Doctor', 'RK Store'), + (28778, 'Doctor: Startup Crystal - Improved Healing', 12228, 28665, 'Improved Healing', 16246, 0, 0, 0, 1, + 'Crystal', 'Combat', 'Target_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'Starter equipment'), + (28780, 'Nano Crystal (Inflict Harm)', 12224, 28667, 'Inflict Harm', 39808, 147173, 145673, 148673, 7, 'Crystal', + 'Combat', 'Nuke', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'RK Store'), + (28782, 'Nano Crystal (Instinctive Control)', 301239, 28669, 'Instinctive Control', 301235, 147175, 0, 0, 90, + 'Crystal', 'Buffs', 'Initiative_Buffs', 152, '', 0, 1, 0, 0, 0, 'Doctor', 'RK Store'), + (28784, 'Nano Crystal (Nano Repulsor)', 296691, 28671, 'Nano Repulsor', 295518, 147208, 0, 0, 99, 'Crystal', + 'Buffs', 'Nano_Resistance_Buffs', 204, '', 0, 1, 0, 0, 0, 'Doctor', 'Mission Reward'), + (28785, 'Nano Crystal (Premium Cover)', 12228, 28672, 'Premium Cover', 44230, 147218, 145718, 148718, 37, + 'Crystal', 'Combat', 'Target_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'RK Store'), + (28787, 'Nano Crystal (Specialist Treatment)', 12226, 28674, 'Specialist Treatment', 16342, 147238, 145738, + 148738, 33, 'Crystal', 'Buffs', 'First_Aid_And_Treatment_Buffs', 190, '', 0, 1, 0, 0, 0, 'Doctor', 'RK Store'), + (28788, 'Nano Crystal (Superior First Aid)', 42451, 28675, 'Superior First Aid', 16239, 147243, 145743, 148743, + 119, 'Crystal', 'Buffs', 'First_Aid_And_Treatment_Buffs', 190, '', 0, 1, 0, 0, 0, 'Doctor', 'RK Store'), + (28789, 'Nano Crystal (Superior Healing)', 12228, 28676, 'Superior Healing', 44229, 147244, 145744, 148744, 30, + 'Crystal', 'Combat', 'Target_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'RK Store'), + (28790, 'Nano Crystal (Surgeon''s Touch)', 12256, 28677, 'Surgeon''s Touch', 44230, 147252, 145752, 148752, 53, + 'Crystal', 'Combat', 'Target_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'RK Store'), + (28794, 'Nano Crystal (Wrack and Ruin)', 42449, 28640, 'Wrack and Ruin', 16222, 147271, 145771, 148771, 179, + 'Crystal', 'Combat', 'DOT_-_Line_A', 6, '', 0, 1, 0, 0, 0, 'Doctor', 'Mission Reward'), + (28795, 'Nano Crystal (Abyssal Flames)', 12224, 28639, 'Abyssal Flames', 45179, 147652, 146152, 149152, 33, + 'Crystal', 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'RK Store'), + (28796, 'Nano Crystal (Barrage of Fire)', 42449, 28593, 'Barrage of Fire', 39783, 147668, 146168, 149168, 109, + 'Crystal', 'Nukes', 'AoE_Nuke', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'RK Store'), + (28797, 'Nano Crystal (Blaze of Hephaestos)', 42449, 28594, 'Blaze of Hephaestos', 45156, 147674, 146174, 149174, + 169, 'Crystal', 'Nukes', 'AoE_Nuke', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'Mission Reward'), + (28798, 'Nano Crystal (Blight)', 12224, 28595, 'Blight', 16226, 147675, 146175, 149175, 33, 'Crystal', 'Combat', + 'Nano-Technician_DOT_-_Strain_A', 8, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'RK Store'), + (28799, 'Nano Crystal (Boil Blood)', 42449, 28596, 'Boil Blood', 49681, 147676, 146176, 149176, 152, 'Crystal', + 'Combat', 'Nano-Technician_DOT_-_Strain_A', 8, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'Mission Reward'), + (28800, 'Nano Crystal (Burning Bones)', 42449, 28597, 'Burning Bones', 45181, 147683, 146183, 149183, 182, + 'Crystal', 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'Mission Reward'), + (28801, 'Nano Crystal (Chaos Lights)', 42449, 28598, 'Chaos Lights', 39793, 147689, 146189, 149189, 139, + 'Crystal', 'Nukes', 'Fast_1s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'Mission Reward'), + (28802, 'Nano Crystal (Circle of Winter)', 12224, 28599, 'Circle of Winter', 39772, 147694, 146194, 149194, 50, + 'Crystal', 'Nukes', 'AoE_Nuke', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'RK Store'), + (28803, 'Nano Crystal (Compacted Neutron Missile)', 42449, 28600, 'Compacted Neutron Missile', 45183, 147702, + 146202, 149202, 165, 'Crystal', 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', + 'Mission Reward'), + (28804, 'Nano Crystal (Corrosive Spray)', 12224, 28601, 'Corrosive Spray', 45167, 147711, 146211, 149211, 10, + 'Crystal', 'Nukes', 'Fast_1s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'RK Store'), + (28805, 'Nano Crystal (Corruption)', 12224, 28602, 'Corruption', 16225, 147713, 146213, 149213, 4, 'Crystal', + 'Combat', 'Nano-Technician_DOT_-_Strain_A', 8, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'RK Store'), + (28806, 'Nano Crystal (Dark Movement)', 12259, 28603, 'Dark Movement', 16234, 147720, 146220, 149220, 90, + 'Crystal', 'Buffs', 'Major_Evasion_Buffs', 144, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'RK Store'), + (28807, 'Nano Crystal (Electrifying Containment)', 42449, 28604, 'Electrifying Containment', 45178, 147732, + 146232, 149232, 185, 'Crystal', 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', + 'Mission Reward'), + (28808, 'Nano Crystal (Energy Projectile)', 12257, 28605, 'Energy Projectile', 39802, 147736, 146236, 149236, 53, + 'Crystal', 'Nukes', 'Long_5s~4s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'RK Store'), + (28809, 'Nano Crystal (Eye of Light)', 42449, 28606, 'Eye of Light', 49683, 147745, 146245, 149245, 169, + 'Crystal', 'Combat', 'Nano-Technician_DOT_-_Strain_A', 8, '', 0, 1, 0, 0, 0, 'Nano-Technician', + 'Mission Reward'), + (28810, 'Nano Crystal (Fire Snake)', 12224, 28607, 'Fire Snake', 45179, 147754, 146254, 149254, 27, 'Crystal', + 'Nukes', 'Medium_3s~2s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'RK Store'), + (28811, 'Nano Crystal (Fire Stream)', 12224, 28608, 'Fire Stream', 45179, 147755, 146255, 149255, 7, 'Crystal', + 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'RK Store'), + (28812, 'Nano Crystal (Freezing Surge)', 12257, 28609, 'Freezing Surge', 39797, 147760, 146260, 149260, 96, + 'Crystal', 'Nukes', 'Fast_1s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'RK Store'), + (28813, 'Nano Crystal (Furious Assault)', 12257, 28610, 'Furious Assault', 39812, 147764, 146264, 149264, 83, + 'Crystal', 'Nukes', 'Long_8s~1s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'RK Store'), + (28814, 'Nano Crystal (Hot Feet)', 12224, 28611, 'Hot Foot', 45179, 147782, 146282, 149282, 14, 'Crystal', + 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'RK Store'), + (28815, 'Nanotechnician: Startup Crystal - Ice Flechette', 12224, 28612, 'Ice Flechette', 45170, 0, 0, 0, 1, + 'Crystal', 'Nukes', 'Fast_1s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'Starter equipment'), + (28816, 'Nano Crystal (Internal Combustion)', 42449, 28613, 'Internal Combustion', 45180, 147786, 146286, 149286, + 162, 'Crystal', 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'Mission Reward'), + (28817, 'Nano Crystal (Invasive Presence)', 12257, 28614, 'Invasive Presence', 39799, 147787, 146287, 149287, 70, + 'Crystal', 'Nukes', 'Medium_3s~2s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'RK Store'), + (28819, 'Nano Crystal (Izgimmer''s Enveloping Flame)', 42449, 28616, 'Izgimmer''s Enveloping Flame', 16280, + 147791, 146291, 149291, 182, 'Crystal', 'Nukes', 'Long_8s~1s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', + 'Mission Reward'), + (28821, 'Nano Crystal (Izgimmer''s Last Word)', 42449, 28618, 'Izgimmer''s Last Word', 16282, 147792, 146292, + 149292, 212, 'Crystal', 'Nukes', 'Long_8s~1s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'RK Mob'), + (28822, 'Nano Crystal (Izgimmer''s Little Nuke)', 42449, 28619, 'Izgimmer''s Little Nuke', 16283, 147793, 146293, + 149293, 185, 'Crystal', 'Nukes', 'Long_8s~1s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'RK Mob'), + (28823, 'Nano Crystal (Kel''s Neutronium Plaything)', 42449, 28620, 'Kel''s Neutronium Plaything', 16283, 147796, + 146296, 149296, 212, 'Crystal', 'Nukes', 'AoE_Nuke', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'RK Mob'), + (28824, 'Nano Crystal (Lightning Strike)', 12257, 28621, 'Lightning Strike', 39803, 147804, 146304, 149304, 80, + 'Crystal', 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'RK Store'), + (28825, 'Nano Crystal (Microblade Whirlwind)', 12224, 28622, 'Microblade Whirlwind', 49684, 147819, 146319, + 149319, 47, 'Crystal', 'Combat', 'Nano-Technician_DOT_-_Strain_A', 8, '', 0, 1, 0, 0, 0, 'Nano-Technician', + 'RK Store'), + (28826, 'Nano Crystal (Molecular Deconstruction)', 42449, 28623, 'Molecular Deconstruction', 45175, 147824, + 146324, 149324, 185, 'Crystal', 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', + 'Mission Reward'), + (28828, 'Nano Crystal (Neural Stunner)', 42449, 28625, 'Neural Stunner', 16248, 147831, 146331, 149331, 152, + 'Crystal', 'Crowd_Control', 'Mezz', 147, 'Stun', 0, 1, 0, 0, 0, 'Nano-Technician', 'Mission Reward'), + (28829, 'Nano Crystal (Particle Accelerator)', 42449, 28626, 'Particle Accelerator', 39793, 147837, 146337, + 149337, 123, 'Crystal', 'Nukes', 'Fast_1s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'Mission Reward'), + (28830, 'Nano Crystal (Phoenix Swarm)', 12224, 28627, 'Phoenix Swarm', 45179, 147843, 146343, 149343, 37, + 'Crystal', 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'RK Store'), + (28831, 'Nano Crystal (Plasma Lights)', 12224, 28628, 'Plasma Lights', 39802, 147846, 146346, 149346, 50, + 'Crystal', 'Nukes', 'Fast_1s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'RK Store'), + (28832, 'Nano Crystal (Plasma Swirl)', 12257, 28629, 'Plasma Swirl', 39778, 147847, 146347, 149347, 76, + 'Crystal', 'Nukes', 'AoE_Nuke', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'RK Store'), + (28833, 'Nano Crystal (Poison Missile)', 12224, 28630, 'Poison Missile', 45173, 147848, 146348, 149348, 30, + 'Crystal', 'Nukes', 'Fast_1s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'RK Store'), + (28834, 'Nano Crystal (Radiation Pulse)', 12224, 28631, 'Radiation Pulse', 45164, 147854, 146354, 149354, 4, + 'Crystal', 'Nukes', 'AoE_Nuke', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'RK Store'), + (28835, 'Nano Crystal (Radioactive Cloud)', 12257, 28632, 'Radioactive Cloud', 39815, 147856, 146356, 149356, 99, + 'Crystal', 'Nukes', 'Medium_3s~2s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'RK Store'), + (28836, 'Nano Crystal (Shockball)', 12224, 28633, 'Shockball', 45152, 147864, 146364, 149364, 14, 'Crystal', + 'Nukes', 'AoE_Nuke', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'RK Store'), + (28837, 'Nano Crystal (Shockwave Slash)', 12257, 28634, 'Shockwave Slash', 39808, 147865, 146365, 149365, 66, + 'Crystal', 'Nukes', 'Fast_1s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'RK Store'), + (28838, 'Nano Crystal (Shrapnel Burst)', 42449, 28635, 'Shrapnel Burst', 39789, 147867, 146367, 149367, 123, + 'Crystal', 'Nukes', 'AoE_Nuke', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'Mission Reward'), + (28839, 'Nano Crystal (Slime Cascade)', 12257, 28636, 'Slime Cascade', 49685, 147870, 146370, 149370, 93, + 'Crystal', 'Combat', 'Nano-Technician_DOT_-_Strain_A', 8, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'RK Store'), + (28840, 'Nano Crystal (Tremor)', 42449, 28637, 'Tremor', 16344, 147888, 146388, 149388, 175, 'Crystal', 'Nukes', + 'AoE_Nuke', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'Mission Reward'), + (28841, 'Nano Crystal (Volcanic Eruption)', 42449, 28638, 'Volcanic Eruption', 16345, 147894, 146394, 149394, + 182, 'Crystal', 'Nukes', 'AoE_Nuke', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'Mission Reward'), + (28842, 'Nano Crystal (Vulcan Flechette)', 42449, 28592, 'Vulcan Flechette', 39813, 147895, 146395, 149395, 113, + 'Crystal', 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'RK Store'), + (28913, 'Nano Crystal (Velocity)', 12259, 28862, 'Velocity', 16300, 147647, 146147, 149147, 60, 'Crystal', + 'Buffs', 'Runspeed_Buffs', 150, '', 0, 1, 0, 0, 0, 'Martial Artist', 'RK Store'), + (28917, 'Nano Crystal (Bad Blood)', 12226, 28866, 'Bad Blood', 16230, 147567, 146067, 149067, 24, 'Crystal', + 'Crowd_Control', 'Taunt', 0, '', 0, 1, 0, 0, 0, 'Martial Artist', 'RK Store'), + (28919, 'Nano Crystal (Cohort)', 42452, 28868, 'Cohort', 16242, 147569, 146069, 149069, 132, 'Crystal', 'Buffs', + 'Armor_Buff', 0, 'Team', 0, 1, 0, 0, 0, 'Martial Artist', 'Mission Reward'), + (28920, 'Nano Crystal (Diamond Skin)', 42452, 28869, 'Diamond Skin', 101001, 147572, 146072, 149072, 142, + 'Crystal', 'Buffs', 'Armor_Buffs', 3, '', 0, 1, 0, 0, 0, 'Martial Artist', 'Mission Reward'), + (28921, 'Nano Crystal (Dirty Fighter)', 12226, 28870, 'Dirty Fighter', 16204, 147573, 146073, 149073, 33, + 'Crystal', 'Buffs', 'Brawl_Buffs', 154, '', 0, 1, 0, 0, 0, 'Martial Artist', 'RK Store'), + (28923, 'Nano Crystal (Elusive Target)', 12226, 28872, 'Elusive Target', 16234, 147575, 146075, 149075, 37, + 'Crystal', 'Buffs', 'Major_Evasion_Buffs', 144, 'Normal', 0, 1, 0, 0, 0, 'Martial Artist', 'RK Store'), + (28926, 'Nano Crystal (First Strike)', 12259, 28875, 'First Strike', 16250, 147580, 146080, 149080, 96, + 'Crystal', 'Buffs', 'Initiative_Buffs', 152, '', 0, 1, 0, 0, 0, 'Martial Artist', 'RK Store'), + (28927, 'Nano Crystal (Fists of Fire)', 12258, 28876, 'Fists of Fire', 39168, 147581, 146081, 149081, 66, + 'Crystal', 'Buffs', 'Damage_Buffs_-_Line_A', 4, '', 0, 1, 0, 0, 0, 'Martial Artist', 'RK Store'), + (28929, 'Nano Crystal (Fleet Foot)', 12259, 28878, 'Fleet Foot', 16234, 147588, 146088, 149088, 83, 'Crystal', + 'Buffs', 'Major_Evasion_Buffs', 144, 'Normal', 0, 1, 0, 0, 0, 'Martial Artist', 'RK Store'), + (28930, 'Nano Crystal (Form of Tessai)', 42452, 28879, 'Form of Tessai', 101002, 147589, 146089, 149089, 165, + 'Crystal', 'Buffs', 'Armor_Buffs', 3, '', 0, 1, 0, 0, 0, 'Martial Artist', 'Mission Reward'), + (28931, 'Nano Crystal (Four Fists of Kali)', 42451, 28880, 'Four Fists of Kali', 16243, 147590, 146090, 149090, + 169, 'Crystal', 'Buffs', 'Martial_Arts_Buffs', 209, '', 0, 1, 0, 0, 0, 'Martial Artist', 'SL Loot'), + (28932, 'Nano Crystal (Give Energy: 10)', 12228, 28881, 'Give Energy: 10', 16303, 147591, 146091, 149091, 7, + 'Crystal', 'Combat', 'Give_Energy', 0, '', 0, 1, 0, 0, 0, 'Martial Artist', 'RK Store'), + (28933, 'Nano Crystal (Give Energy: 100)', 12256, 28882, 'Give Energy: 100', 16303, 147592, 146092, 149092, 53, + 'Crystal', 'Combat', 'Give_Energy', 0, '', 0, 1, 0, 0, 0, 'Martial Artist', 'RK Store'), + (28934, 'Nano Crystal (Give Energy: 25)', 12228, 28883, 'Give Energy: 25', 16303, 147593, 146093, 149093, 14, + 'Crystal', 'Combat', 'Give_Energy', 0, '', 0, 1, 0, 0, 0, 'Martial Artist', 'RK Store'), + (28935, 'Nano Crystal (Give Energy: 50)', 12228, 28884, 'Give Energy: 50', 16303, 147594, 146094, 149094, 27, + 'Crystal', 'Combat', 'Give_Energy', 0, '', 0, 1, 0, 0, 0, 'Martial Artist', 'RK Store'), + (28936, 'Nano Crystal (Give Life: 10)', 12228, 28885, 'Give Life: 10', 16246, 147595, 146095, 149095, 7, + 'Crystal', 'Combat', 'Give_Life', 0, '', 0, 1, 0, 0, 0, 'Martial Artist', 'RK Store'), + (28937, 'Nano Crystal (Give Life: 100)', 12228, 28886, 'Give Life: 100', 16246, 147596, 146096, 149096, 50, + 'Crystal', 'Combat', 'Give_Life', 0, '', 0, 1, 0, 0, 0, 'Martial Artist', 'RK Store'), + (28938, 'Nano Crystal (Give Life: 25)', 12228, 28887, 'Give Life: 25', 16246, 147597, 146097, 149097, 14, + 'Crystal', 'Combat', 'Give_Life', 0, '', 0, 1, 0, 0, 0, 'Martial Artist', 'RK Store'), + (28939, 'Nano Crystal (Give Life: 50)', 12228, 28888, 'Give Life: 50', 16246, 147598, 146098, 149098, 27, + 'Crystal', 'Combat', 'Give_Life', 0, '', 0, 1, 0, 0, 0, 'Martial Artist', 'RK Store'), + (28941, 'Nano Crystal (Horde)', 42451, 28890, 'Horde', 16242, 147610, 146110, 149110, 149, 'Crystal', 'Buffs', + 'Damage_and_Martial_Arts_Buff', 0, 'Team', 0, 1, 0, 0, 0, 'Martial Artist', 'Mission Reward'), + (28943, 'Nano Crystal (Iron Fist)', 12225, 28892, 'Iron Fist', 16350, 147612, 146112, 149112, 4, 'Crystal', + 'Buffs', 'Damage_Buffs_-_Line_A', 4, '', 0, 1, 0, 0, 0, 'Martial Artist', 'RK Store'), + (28945, 'Nano Crystal (Limbo Mastery)', 12226, 28894, 'Limbo Mastery', 16234, 147616, 146116, 149116, 17, + 'Crystal', 'Buffs', 'Evade_Duck-Exp_Buff', 0, 'Self', 0, 1, 0, 0, 0, 'Martial Artist', 'RK Store'), + (28946, 'Nano Crystal (Martial Arts Mastery)', 12226, 28895, 'Martial Arts Mastery', 16289, 147619, 146119, + 149119, 50, 'Crystal', 'Buffs', 'Martial_Arts_Buffs', 209, '', 0, 1, 0, 0, 0, 'Martial Artist', 'RK Store'), + (28949, 'Nano Crystal (Muscle Booster)', 12256, 28898, 'Muscle Booster', 16324, 147623, 146123, 149123, 70, + 'Crystal', 'Buffs', 'Strength_Buffs', 156, '', 0, 1, 0, 0, 0, 'Martial Artist', 'RK Store'), + (28950, 'Nano Crystal (Muscle Stim)', 12228, 28899, 'Muscle Stim', 16324, 147624, 146124, 149124, 20, 'Crystal', + 'Buffs', 'Strength_Buffs', 156, '', 0, 1, 0, 0, 0, 'Martial Artist', 'RK Store'), + (28952, 'Nano Crystal (Spiritual Harmony)', 301447, 28901, 'Spiritual Harmony', 292052, 147626, 146126, 149126, + 4, 'Crystal', 'Combat', 'Single_Target_Healing', 951, '', 0, 1, 0, 0, 0, 'Martial Artist', + 'Arete Nano Container'), + (28954, 'Nano Crystal (Reduce Inertia)', 42451, 28903, 'Reduce Inertia', 16234, 147627, 146127, 149127, 136, + 'Crystal', 'Buffs', 'Major_Evasion_Buffs', 144, 'Normal', 0, 1, 0, 0, 0, 'Martial Artist', 'Mission Reward'), + (28955, 'Nano Crystal (Return Attack)', 42451, 28904, 'Return Attack', 16322, 147629, 146129, 149129, 146, + 'Crystal', 'Buffs', 'Riposte_Buffs', 155, '', 0, 1, 0, 0, 0, 'Martial Artist', 'Mission Reward'), + (28956, 'Nano Crystal (Rubber Skin)', 12227, 28905, 'Rubber Skin', 16294, 147630, 146130, 149130, 24, 'Crystal', + 'Buffs', 'Armor_Buffs', 3, '', 0, 1, 0, 0, 0, 'Martial Artist', 'RK Store'), + (28958, 'Nano Crystal (Steel Skin)', 12260, 28907, 'Steel Skin', 39116, 147634, 146134, 149134, 76, 'Crystal', + 'Buffs', 'Armor_Buffs', 3, '', 0, 1, 0, 0, 0, 'Martial Artist', 'RK Store'), + (29092, 'Soldier: Startup Crystal - Body Boost', 12228, 29091, 'Body Boost', 16758, 0, 0, 0, 1, 'Crystal', + 'Buffs', 'HP_Buffs', 151, '', 0, 1, 0, 0, 0, 'Soldier', 'Arete Nano Container'), + (29102, 'Nano Crystal (Apprentice: Weapon Smithing)', 12226, 29100, 'Apprentice: Weapon Smithing', 16349, 147996, + 146496, 149496, 33, 'Crystal', 'Buffs:_Tradeskills', 'Weapon_Smithing_Buffs', 176, '', 0, 1, 0, 0, 0, 'Trader', + 'RK Store'), + (29103, 'Nano Crystal (Apprentice: Pharmaceuticals)', 12226, 29101, 'Apprentice: Pharmaceuticals', 16316, 147995, + 146495, 149495, 33, 'Crystal', 'Buffs:_Tradeskills', 'Pharmaceuticals_Buffs', 175, '', 0, 1, 0, 0, 0, 'Trader', + 'RK Store'), + (29191, 'Agent: Startup Crystal - Shadow Veil', 12226, 29153, 'Shadow Veil', 16214, 0, 0, 0, 1, 'Crystal', + 'Buffs', 'Concealment_Buffs', 193, 'Target', 0, 0, 0, 0, 0, 'Agent', 'Arete Nano Container'), + (29192, 'Nano Crystal (Symbol Helper)', 12226, 29113, 'Symbol Helper', 16301, 145064, 144937, 145191, 10, + 'Crystal', 'Buffs', 'Nano_Programming_Buffs', 210, '', 0, 1, 0, 0, 0, 'Meta-Physicist', 'RK Store'), + (29193, 'Meta-Physicist: Startup Crystal - Mind Pain', 12224, 29114, 'Mind Pain', 45176, 0, 0, 0, 1, 'Crystal', + 'Combat', 'Metaphysicist_Mind_Damage_Nano_DeBuffs', 221, '', 0, 1, 0, 0, 0, 'Meta-Physicist', + 'Arete Nano Container'), + (29194, 'Engineer: Startup Crystal - Swift Weapon', 12225, 29188, 'Swift Weapon', 16250, 147482, 145982, 148982, + 1, 'Crystal', 'Buffs', 'Initiative_Buffs', 152, '', 0, 1, 0, 0, 0, 'Engineer', 'Arete Nano Container'), + (29195, 'Nano Crystal (Crowbar Subtlety)', 12226, 29189, 'Crowbar Subtlety', 16205, 147375, 145875, 148875, 20, + 'Crystal', 'Buffs', 'Breaking_&_Entry/Disarm_Traps_Buffs', 206, '', 0, 1, 0, 0, 0, 'Engineer', 'RK Store'), + (29201, 'Nano Crystal (Tight Embrace)', 42449, 29199, 'Tight Embrace', 16248, 0, 0, 0, 159, 'Crystal', + 'Crowd_Control', 'Mezz', 147, 'Stun', 0, 1, 0, 0, 0, 'Bureaucrat', 'Mission Reward'), + (29202, 'Nano Crystal (Nano Growth)', 301178, 29200, 'Nano Growth', 301080, 146928, 145428, 148428, 37, + 'Crystal', 'Buffs', 'Nano_Delta_Buffs', 201, '', 0, 1, 0, 0, 0, 'Bureaucrat', 'RK Store'), + (29329, 'Nano Crystal (Total Focus)', 42451, 29255, 'Total Focus', 39180, 147973, 146473, 149473, 136, 'Crystal', + 'Buffs', 'Total_Focus', 769, '', 0, 1, 0, 0, 0, 'Soldier', 'Mission Reward'), + (29330, 'Nano Crystal (Aggressive Captivation)', 12259, 29218, 'Aggressive Captivation', 16230, 147906, 146406, + 149406, 90, 'Crystal', 'Crowd_Control', 'Taunt_(normal)', 0, '', 0, 1, 0, 0, 0, 'Soldier', 'RK Store'), + (29332, 'Nano Crystal (Assault Rifle Mastery)', 12226, 29220, 'Assault Rifle Mastery', 16195, 147908, 146408, + 149408, 50, 'Crystal', 'Buffs', 'Assault_Rifle_Buffs', 212, '', 0, 1, 0, 0, 0, 'Soldier', 'RK Store'), + (29333, 'Nano Crystal (Attack Booster)', 12226, 29221, 'Attack Booster', 16194, 147909, 146409, 149409, 27, + 'Crystal', 'Buffs', 'Initiative_Buffs', 152, '', 0, 1, 0, 0, 0, 'Soldier', 'RK Store'), + (29334, 'Nano Crystal (Automatic Targeting)', 301598, 29222, 'Automatic Targeting', 301599, 147910, 146410, + 149410, 106, 'Crystal', 'Buffs', 'Add_All_Offence_Buffs', 836, '', 0, 1, 0, 0, 0, 'Soldier', 'RK Store'), + (29337, 'Nano Crystal (Damage Amplifier)', 12225, 29225, 'Damage Amplifier', 39168, 147915, 146415, 149415, 40, + 'Crystal', 'Buffs', 'Soldier_Damage_Base', 770, 'Target', 0, 1, 0, 0, 0, 'Soldier', 'RK Store'), + (29338, 'Nano Crystal (Damage Multiplier)', 12225, 29226, 'Damage Multiplier', 16350, 147916, 146416, 149416, 7, + 'Crystal', 'Buffs', 'Soldier_Damage_Base', 770, 'Target', 0, 1, 0, 0, 0, 'Soldier', 'No longer drops'), + (29340, 'Nano Crystal (Ego Taunt)', 12226, 29228, 'Ego Taunt', 16230, 147920, 146420, 149420, 4, 'Crystal', + 'Crowd_Control', 'Taunt_(normal)', 0, '', 0, 1, 0, 0, 0, 'Soldier', 'No longer drops'), + (29342, 'Nano Crystal (LR Energy Weapon Mastery)', 12259, 29230, 'Ranged Energy Weapon Mastery', 20882, 147921, + 146421, 149421, 63, 'Crystal', 'Buffs', 'Ranged_Energy_Weapon_Buffs', 213, '', 0, 1, 0, 0, 0, 'Soldier', + 'RK Store'), + (29344, 'Nano Crystal (Helepolis of the Besieger)', 42450, 29232, 'Helepolis of the Besieger', 117954, 147929, + 146429, 149429, 139, 'Crystal', 'Buffs', 'Soldier_Damage_Base', 770, 'Target', 0, 1, 0, 0, 0, 'Soldier', + 'Mission Reward'), + (29352, 'Nano Crystal (Offensive Steamroller)', 42451, 29240, 'Offensive Steamroller', 16194, 147947, 146447, + 149447, 156, 'Crystal', 'Buffs', 'Initiative_Buffs', 152, '', 0, 1, 0, 0, 0, 'Soldier', 'Mission Reward'), + (29353, 'Nano Crystal (Don''t Fear the Reaper)', 301164, 29241, 'Don''t Fear the Reaper', 301168, 147948, 146448, + 149448, 76, 'Crystal', 'Combat', 'Drain_Heal', 1051, '', 0, 0, 0, 0, 0, 'Soldier', 'RK Store'), + (29354, 'Nano Crystal (Only You, Only Me)', 42451, 29242, 'Only You, Only Me', 16230, 147949, 146449, 149449, + 152, 'Crystal', 'Crowd_Control', 'Taunt_(normal)', 0, '', 0, 1, 0, 0, 0, 'Soldier', 'Mission Reward'), + (29355, 'Nano Crystal (Persistent Damage Amplifier)', 12258, 29243, 'Persistent Damage Amplifier', 39308, 147956, + 146456, 149456, 57, 'Crystal', 'Buffs', 'Soldier_Damage_Base', 770, 'Target', 0, 1, 0, 0, 0, 'Soldier', + 'RK Store'), + (29356, 'Nano Crystal (Persistent Damage Multiplier)', 12225, 29244, 'Persistent Damage Multiplier', 39028, + 147957, 146457, 149457, 17, 'Crystal', 'Buffs', 'Soldier_Damage_Base', 770, 'Target', 0, 1, 0, 0, 0, 'Soldier', + 'RK Store'), + (29357, 'Nano Crystal (Phalanx)', 42452, 29245, 'Phalanx', 16242, 0, 0, 0, 142, 'Crystal', 'Buffs', + 'Team_AC_Buff', 0, '', 0, 1, 0, 0, 0, 'Soldier', 'Mission Reward'), + (29358, 'Nano Crystal (Pistol Mastery)', 12226, 29246, 'Pistol Mastery', 16310, 147958, 146458, 149458, 24, + 'Crystal', 'Buffs', 'Pistol_Buffs', 199, '', 0, 1, 0, 0, 0, 'Bureaucrat', 'RK Store'), + (29359, 'Nano Crystal (Precognition)', 12226, 29247, 'Precognition', 16234, 147959, 146459, 149459, 43, + 'Crystal', 'Buffs', 'Major_Evasion_Buffs', 144, '', 0, 1, 0, 0, 0, 'Soldier', 'RK Store'), + (29360, 'Nano Crystal (Quickshot)', 12226, 29248, 'Quickshot', 16250, 147960, 146460, 149460, 17, 'Crystal', + 'Buffs', 'Initiative_Buffs', 152, '', 0, 1, 0, 0, 0, 'Soldier', 'RK Store'), + (29362, 'Nano Crystal (Rifle Mastery)', 12226, 29250, 'Rifle Mastery', 16329, 147967, 146467, 149467, 37, + 'Crystal', 'Buffs', 'Rifle_Buffs', 194, '', 0, 1, 0, 0, 0, 'Soldier', 'RK Store'), + (29363, 'Nano Crystal (Riot Control)', 42450, 29251, 'Riot Control', 16206, 147968, 146468, 149468, 126, + 'Crystal', 'Buffs', 'Burst_Buffs', 214, '', 0, 1, 0, 0, 0, 'Soldier', 'Mission Reward'), + (29366, 'Nano Crystal (Titan Physique)', 42448, 29254, 'Titan Physique', 39186, 147972, 146472, 149472, 113, + 'Crystal', 'Buffs', 'HP_Buffs', 151, '', 0, 1, 0, 0, 0, 'Soldier', 'RK Store'), + (29367, 'Nano Crystal (Absorption Shield)', 12260, 29223, 'Absorption Shield', 38996, 147903, 146403, 149403, 66, + 'Crystal', 'Buffs', 'Armor_Buffs', 3, '', 0, 1, 0, 0, 0, 'Soldier', 'Mission Reward'), + (29369, 'Nano Crystal (Anticipation of Retaliation)', 12226, 29272, 'Anticipation of Retaliation', 16234, 144956, + 144829, 145083, 50, 'Crystal', 'Buffs', 'Major_Evasion_Buffs', 144, '', 0, 1, 0, 0, 0, 'Meta-Physicist', + 'RK Store'), + (29372, 'Nano Crystal (BioMet Mastery)', 12226, 29275, 'BioMet Mastery', 16199, 144957, 144830, 145084, 37, + 'Crystal', 'Buffs', 'Biological_Metamorphosis_Buffs', 163, '', 0, 1, 0, 0, 0, 'Meta-Physicist', 'RK Store'), + (29382, 'Nano Crystal (Curse of Chronos)', 42450, 29285, 'Curse of Chronos', 16248, 144969, 144842, 145096, 169, + 'Crystal', 'Crowd_Control', 'Mezz', 147, '', 0, 1, 0, 0, 0, 'Meta-Physicist', 'Mission Reward'), + (29383, 'Nano Crystal (Dominate: BioMet)', 42451, 29286, 'Dominate: BioMet', 39044, 144971, 144844, 145098, 142, + 'Crystal', 'DeBuffs', 'Biological_Metamorphosis_DeBuffs', 164, '', 0, 1, 0, 0, 0, 'Meta-Physicist', + 'Mission Reward'), + (29384, 'Nano Crystal (Dominate: MatCrea)', 42451, 29287, 'Dominate: MatCrea', 39112, 144972, 144845, 145099, + 142, 'Crystal', 'DeBuffs', 'Matter_Creation_DeBuffs', 160, '', 0, 1, 0, 0, 0, 'Meta-Physicist', + 'Mission Reward'), + (29385, 'Nano Crystal (Dominate: SpaceTime)', 42451, 29288, 'Dominate: SpaceTime', 39113, 144973, 144846, 145100, + 139, 'Crystal', 'DeBuffs', 'Time_and_Space_DeBuffs', 162, '', 0, 1, 0, 0, 0, 'Meta-Physicist', + 'Mission Reward'), + (29386, 'Nano Crystal (Dominate: MatMet)', 42451, 29289, 'Dominate: MatMet', 39114, 144974, 144847, 145101, 139, + 'Crystal', 'DeBuffs', 'Material_Metamorphosis_DeBuffs', 158, '', 0, 1, 0, 0, 0, 'Meta-Physicist', + 'Mission Reward'), + (29387, 'Nano Crystal (Dominate: PsyMod)', 42451, 29290, 'Dominate: PsyMod', 39138, 144975, 144848, 145102, 142, + 'Crystal', 'DeBuffs', 'PsyMod_DeBuffs', 168, '', 0, 1, 0, 0, 0, 'Meta-Physicist', 'Mission Reward'), + (29388, 'Nano Crystal (Dominate: SenseImp)', 42451, 29291, 'Dominate: SenseImp', 39029, 144976, 144849, 145103, + 142, 'Crystal', 'DeBuffs', 'Sensory_Improvement_DeBuffs', 166, '', 0, 1, 0, 0, 0, 'Meta-Physicist', + 'Mission Reward'), + (29391, 'Nano Crystal (MatCrea Mastery)', 12226, 29294, 'MatCrea Mastery', 16290, 145016, 144889, 145143, 43, + 'Crystal', 'Buffs', 'Matter_Creation_Buffs', 159, '', 0, 1, 0, 0, 0, 'Meta-Physicist', 'RK Store'), + (29392, 'Nano Crystal (SpaceTime Mastery)', 12226, 29295, 'SpaceTime Mastery', 16285, 145017, 144890, 145144, 40, + 'Crystal', 'Buffs', 'Time_and_Space_Buffs', 161, '', 0, 1, 0, 0, 0, 'Meta-Physicist', 'RK Store'), + (29393, 'Nano Crystal (MatMet Mastery)', 12226, 29296, 'MatMet Mastery', 16298, 145018, 144891, 145145, 50, + 'Crystal', 'Buffs', 'Material_Metamorphosis_Buffs', 157, '', 0, 1, 0, 0, 0, 'Meta-Physicist', 'RK Store'), + (29394, 'Nano Crystal (Mind Banshee)', 42449, 29297, 'Mind Banshee', 39793, 145019, 144892, 145146, 146, + 'Crystal', 'Combat', 'Metaphysicist_Mind_Damage_Nano_DeBuffs', 221, '', 0, 1, 0, 0, 0, 'Meta-Physicist', + 'Mission Reward'), + (29395, 'Nano Crystal (Mind Scream)', 12224, 29298, 'Mind Scream', 39802, 145023, 144896, 145150, 37, 'Crystal', + 'Combat', 'Metaphysicist_Mind_Damage_Nano_DeBuffs', 221, '', 0, 1, 0, 0, 0, 'Meta-Physicist', 'RK Store'), + (29396, 'Nano Crystal (Mocham''s Gift: BioMet)', 42451, 29299, 'Mocham''s Gift: BioMet', 16308, 145024, 144897, + 145151, 165, 'Crystal', 'Buffs', 'Biological_Metamorphosis_Buffs', 163, '', 0, 1, 0, 0, 0, 'Meta-Physicist', + 'Mission Reward'), + (29397, 'Nano Crystal (Mocham''s Gift: MatCrea)', 42451, 29300, 'Mocham''s Gift: MatCrea', 16308, 145025, 144898, + 145152, 165, 'Crystal', 'Buffs', 'Matter_Creation_Buffs', 159, '', 0, 1, 0, 0, 0, 'Meta-Physicist', + 'Mission Reward'), + (29398, 'Nano Crystal (Mocham''s Gift: SpaceTime)', 42451, 29301, 'Mocham''s Gift: SpaceTime', 16308, 145026, + 144899, 145153, 162, 'Crystal', 'Buffs', 'Time_and_Space_Buffs', 161, '', 0, 1, 0, 0, 0, 'Meta-Physicist', + 'Mission Reward'), + (29399, 'Nano Crystal (Mocham''s Gift: MatMet)', 42451, 29302, 'Mocham''s Gift: MatMet', 16308, 145027, 144900, + 145154, 162, 'Crystal', 'Buffs', 'Material_Metamorphosis_Buffs', 157, '', 0, 1, 0, 0, 0, 'Meta-Physicist', + 'Mission Reward'), + (29400, 'Nano Crystal (Mocham''s Gift: PsyMod)', 42451, 29303, 'Mocham''s Gift: PsyMod', 16308, 145028, 144901, + 145155, 169, 'Crystal', 'Buffs', 'Psychological_Modification_Buffs', 167, '', 0, 1, 0, 0, 0, 'Meta-Physicist', + 'Mission Reward'), + (29401, 'Nano Crystal (Mocham''s Gift: SenseImp)', 42451, 29304, 'Mocham''s Gift: SenseImp', 16308, 145029, + 144902, 145156, 165, 'Crystal', 'Buffs', 'Sensory_Improvement_Buffs', 165, '', 0, 1, 0, 0, 0, 'Meta-Physicist', + 'Mission Reward'), + (29403, 'Nano Crystal (Nano Shutdown)', 300508, 29306, 'Nano Shutdown', 300509, 145031, 144904, 145158, 162, + 'Crystal', 'DeBuffs', 'Nano_Shutdown_DeBuffs', 239, '', 0, 1, 0, 0, 0, 'Meta-Physicist', 'Mission Reward'), + (29404, 'Nano Crystal (Neuron-Notum Interface)', 42448, 29307, 'Neuron-Notum Interface', 16303, 145032, 144905, + 145159, 129, 'Crystal', 'Buffs', 'Nano_Point_Cost_Buffs', 148, '', 0, 1, 0, 0, 0, 'Meta-Physicist', + 'Mission Reward'), + (29405, 'Nano Crystal (Notum Rejection)', 42450, 29308, 'Notum Rejection', 39125, 145034, 144907, 145161, 149, + 'Crystal', 'Buffs', 'Nano_Point_Cost_Buffs', 148, '', 0, 1, 0, 0, 0, 'Meta-Physicist', 'Mission Reward'), + (29406, 'Nano Crystal (Odin''s Missing Eye)', 300514, 29309, 'Odin''s Missing Eye', 300516, 145035, 144908, + 145162, 165, 'Crystal', 'Buffs', 'Psychic_and_Intelligence/Nano_Skills_Buffs', 576, '', 0, 1, 0, 0, 0, + 'Meta-Physicist', 'Mission Reward'), + (29409, 'Nano Crystal (PsyMod Mastery)', 12226, 29312, 'PsyMod Mastery', 16766, 145037, 144910, 145164, 47, + 'Crystal', 'Buffs', 'Psychological_Modification_Buffs', 167, '', 0, 1, 0, 0, 0, 'Meta-Physicist', 'RK Store'), + (29412, 'Nano Crystal (Sense Imp Mastery)', 12226, 29315, 'Sense Imp Mastery', 16332, 145045, 144918, 145172, 43, + 'Crystal', 'Buffs', 'Sensory_Improvement_Buffs', 165, '', 0, 1, 0, 0, 0, 'Meta-Physicist', 'RK Store'), + (29415, 'Nano Crystal (Summon Demon)', 295585, 29318, 'Summon Demon', 295584, 145049, 144922, 145176, 189, + 'Crystal', 'Pet', 'Attack_Pet_Summon', 0, '', 0, 0, 0, 0, 0, 'Meta-Physicist', 'SL Static (as Shadow Crystal)'), + (29416, 'Nano Crystal (Summon Lemur)', 295585, 29319, 'Summon Lemur', 295584, 145051, 144924, 145178, 179, + 'Crystal', 'Pet', 'Attack_Pet_Summon', 0, '', 0, 0, 0, 0, 0, 'Meta-Physicist', 'SL Static (as Shadow Crystal)'), + (29418, 'Nano Crystal (Unmake: BioMet)', 12259, 29321, 'Unmake: BioMet', 39044, 145072, 144945, 145199, 73, + 'Crystal', 'DeBuffs', 'Biological_Metamorphosis_DeBuffs', 164, '', 0, 1, 0, 0, 0, 'Meta-Physicist', 'RK Store'), + (29419, 'Nano Crystal (Unmake: MatCrea)', 12259, 29322, 'Unmake: MatCrea', 39112, 145073, 144946, 145200, 73, + 'Crystal', 'DeBuffs', 'Matter_Creation_DeBuffs', 160, '', 0, 1, 0, 0, 0, 'Meta-Physicist', 'RK Store'), + (29420, 'Nano Crystal (Unmake: SpaceTime)', 12259, 29323, 'Unmake: SpaceTime', 39113, 145074, 144947, 145201, 66, + 'Crystal', 'DeBuffs', 'Time_and_Space_DeBuffs', 162, '', 0, 1, 0, 0, 0, 'Meta-Physicist', 'RK Store'), + (29421, 'Nano Crystal (Unmake: MatMet)', 12259, 29324, 'Unmake: MatMet', 39114, 145075, 144948, 145202, 63, + 'Crystal', 'DeBuffs', 'Material_Metamorphosis_DeBuffs', 158, '', 0, 1, 0, 0, 0, 'Meta-Physicist', 'RK Store'), + (29422, 'Nano Crystal (Unmake: PsyMod)', 12259, 29325, 'Unmake: PsyMod', 39138, 145076, 144949, 145203, 70, + 'Crystal', 'DeBuffs', 'PsyMod_DeBuffs', 168, '', 0, 1, 0, 0, 0, 'Meta-Physicist', 'RK Store'), + (29423, 'Nano Crystal (Unmake: SenseImp)', 12259, 29326, 'Unmake: SenseImp', 39029, 145077, 144950, 145204, 66, + 'Crystal', 'DeBuffs', 'Sensory_Improvement_DeBuffs', 166, '', 0, 1, 0, 0, 0, 'Meta-Physicist', 'RK Store'), + (29424, 'Nano Crystal (Advanced Symbol Manipulation)', 12259, 29327, 'Advanced Symbol Manipulation', 16301, + 144954, 144827, 145081, 93, 'Crystal', 'Buffs', 'Nano_Programming_Buffs', 210, '', 0, 1, 0, 0, 0, + 'Meta-Physicist', 'RK Store'), + (29625, 'Bureaucrat: Startup Crystal - Winter''s Bite', 12224, 29618, 'Winter''s Bite', 39796, 0, 0, 0, 1, + 'Crystal', 'Nukes', 'Normal', 0, '', 0, 1, 0, 0, 0, 'Bureaucrat', 'Arete Nano Container'), + (29792, 'Nano Crystal (Brutal Thug)', 12259, 29630, 'Brutal Thug', 16200, 147287, 145787, 148787, 76, 'Crystal', + 'Buffs', 'Melee_Weapon_Buffs_Line', 180, '1H_Blunt_and_2H_Blunt_Buffs', 0, 1, 0, 0, 0, 'Enforcer', 'RK Store'), + (29803, 'Nano Crystal (Focused Anger)', 12259, 29641, 'Focused Anger', 16194, 147312, 145812, 148812, 60, + 'Crystal', 'Buffs', 'Initiative_Buffs', 152, '', 0, 1, 0, 0, 0, 'Enforcer', 'RK Store'), + (29804, 'Nano Crystal (Glowing Retribution)', 12227, 29642, 'Glowing Retribution', 16221, 147316, 145816, 148816, + 27, 'Crystal', 'Buffs', 'Damage_Shields', 1, '', 0, 1, 0, 0, 0, 'Enforcer', 'RK Store'), + (29806, 'Nano Crystal (Headcracker)', 12226, 29644, 'Headcracker', 16200, 147317, 145817, 148817, 30, 'Crystal', + 'Buffs', 'Melee_Weapon_Buffs_Line', 180, '1H_Blunt_and_2H_Blunt_Buffs', 0, 1, 0, 0, 0, 'Enforcer', 'RK Store'), + (29807, 'Nano Crystal (Immolation Shield)', 12260, 29645, 'Immolation Shield', 16221, 147318, 145818, 148818, 63, + 'Crystal', 'Buffs', 'Damage_Shields', 1, '', 0, 1, 0, 0, 0, 'Enforcer', 'RK Store'), + (29808, 'Nano Crystal (Lick of Fire)', 42452, 29646, 'Lick of Fire', 16221, 147321, 145821, 148821, 136, + 'Crystal', 'Buffs', 'Damage_Shields', 1, '', 0, 1, 0, 0, 0, 'Enforcer', 'Mission Reward'), + (29811, 'Nano Crystal (Physical Dominance)', 42451, 29649, 'Physical Dominance', 16250, 147334, 145834, 148834, + 113, 'Crystal', 'Buffs', 'Initiative_Buffs', 152, '', 0, 1, 0, 0, 0, 'Enforcer', 'RK Store'), + (29814, 'Nano Crystal (Prodigious Strength)', 42448, 29652, 'Prodigious Strength', 16324, 147337, 145837, 148837, + 136, 'Crystal', 'Buffs', 'Strength_Buffs', 156, '', 0, 1, 0, 0, 0, 'Enforcer', 'Mission Reward'), + (29820, 'Nano Crystal (Toxic Barrier)', 42452, 29658, 'Toxic Barrier', 16221, 147346, 145846, 148846, 126, + 'Crystal', 'Buffs', 'Damage_Shields', 1, '', 0, 1, 0, 0, 0, 'Enforcer', 'Mission Reward'), + (29823, 'Nano Crystal (Armor Megaboost)', 12227, 29743, 'Armor Megaboost', 16197, 147361, 145861, 148861, 1, + 'Crystal', 'Buffs', 'Armor_Buffs', 3, '', 0, 1, 0, 0, 0, 'Engineer', 'RK Store'), + (29838, 'Nano Crystal (Energy Spike)', 12225, 29758, 'Energy Spike', 39028, 147381, 145881, 148881, 37, + 'Crystal', 'Buffs', 'Damage_Buffs_-_Line_A', 4, '', 0, 1, 0, 0, 0, 'Engineer', 'RK Store'), + (29840, 'Nano Crystal (Entropy Weapon)', 42450, 29760, 'Entropy Weapon', 39308, 147382, 145882, 148882, 149, + 'Crystal', 'Buffs', 'Damage_Buffs_-_Line_A', 4, '', 0, 1, 0, 0, 0, 'Engineer', 'Mission Reward'), + (29842, 'Nano Crystal (Extreme Prejudice)', 42451, 29762, 'Extreme Prejudice', 16252, 147383, 145883, 148883, + 139, 'Crystal', 'Buffs', 'Grenade_Buffs', 207, '', 0, 1, 0, 0, 0, 'Engineer', 'Mission Reward'), + (29843, 'Nano Crystal (Fortress of Spikes)', 42452, 29763, 'Fortress of Spikes', 16221, 147402, 145902, 148902, + 175, 'Crystal', 'Buffs', 'Damage_Shields', 1, '', 0, 1, 0, 0, 0, 'Engineer', 'Mission Reward'), + (29844, 'Nano Crystal (Gun Enhancement)', 12225, 29764, 'Gun Enhancement', 16350, 147408, 145908, 148908, 10, + 'Crystal', 'Buffs', 'Damage_Buffs_-_Line_A', 4, '', 0, 1, 0, 0, 0, 'Engineer', 'RK Store'), + (29852, 'Nano Crystal (Philosopher''s Stone)', 12259, 29772, 'Philosopher''s Stone', 16210, 147450, 145950, + 148950, 53, 'Crystal', 'Buffs', 'Chemistry/Pharm_Buffs', 196, '', 0, 1, 0, 0, 0, 'Engineer', 'RK Store'), + (29853, 'Nano Crystal (Pillar of Spikes)', 12260, 29773, 'Pillar of Spikes', 16221, 147451, 145951, 148951, 93, + 'Crystal', 'Buffs', 'Damage_Shields', 1, '', 0, 1, 0, 0, 0, 'Engineer', 'RK Store'), + (29854, 'Nano Crystal (Plasma Shield)', 42452, 29774, 'Plasma Shield', 16221, 147452, 145952, 148952, 185, + 'Crystal', 'Buffs', 'Damage_Shields', 1, '', 0, 1, 0, 0, 0, 'Engineer', 'Mission Reward'), + (29858, 'Nano Crystal (Quick Weapon)', 12226, 29778, 'Quick Weapon', 16250, 147455, 145955, 148955, 40, + 'Crystal', 'Buffs', 'Initiative_Buffs', 152, '', 0, 1, 0, 0, 0, 'Engineer', 'RK Store'), + (29859, 'Nano Crystal (Rapid Weapon)', 42451, 29779, 'Rapid Weapon', 16250, 147456, 145956, 148956, 129, + 'Crystal', 'Buffs', 'Initiative_Buffs', 152, '', 0, 1, 0, 0, 0, 'Engineer', 'Mission Reward'), + (29861, 'Nano Crystal (Spike Armor)', 12260, 29781, 'Spike Armor', 16221, 147476, 145976, 148976, 53, 'Crystal', + 'Buffs', 'Damage_Shields', 1, '', 0, 1, 0, 0, 0, 'Engineer', 'RK Store'), + (29862, 'Nano Crystal (Spike Shield)', 12227, 29782, 'Spike Shield', 16221, 147477, 145977, 148977, 7, 'Crystal', + 'Buffs', 'Damage_Shields', 1, '', 0, 1, 0, 0, 0, 'Engineer', 'RK Store'), + (29865, 'Nano Crystal (Trap Artifice)', 12259, 29785, 'Trap Artifice', 16220, 147483, 145983, 148983, 73, + 'Crystal', 'Buffs', 'Disarm_Trap_Buffs', 235, '', 0, 1, 0, 0, 0, 'Engineer', 'RK Store'), + (29868, 'Nano Crystal (Ultimate Force Field)', 42452, 29788, 'Ultimate Force Field', 100996, 147484, 145984, + 148984, 189, 'Crystal', 'Buffs', 'Armor_Buffs', 3, '', 0, 1, 0, 0, 0, 'Engineer', 'Mission Reward'), + (29869, 'Nano Crystal (Aegis Barrier)', 42452, 29789, 'Aegis Barrier', 100996, 147359, 145859, 148859, 189, + 'Crystal', 'Buffs', 'Armor_Buffs', 3, '', 0, 1, 0, 0, 0, 'Engineer', 'Mission Reward'), + (30101, 'Nano Crystal (Anger Addlement)', 12224, 30056, 'Anger Addlement', 46283, 146912, 145412, 148412, 27, + 'Crystal', 'Crowd_Control', 'Mezz', 147, 'Target', 0, 1, 0, 0, 0, 'Bureaucrat', 'RK Store'), + (30102, 'Nano Crystal (Authority Figure)', 12226, 30057, 'Authority Figure', 16309, 146913, 145413, 148413, 43, + 'Crystal', 'Buffs', 'Psychology_Buffs', 200, '', 0, 1, 0, 0, 0, 'Bureaucrat', 'RK Store'), + (30105, 'Nano Crystal (Chains of Iron)', 42449, 30060, 'Chains of Iron', 16248, 146933, 145433, 148433, 165, + 'Crystal', 'Crowd_Control', 'Mezz', 147, 'Stun', 0, 1, 0, 0, 0, 'Bureaucrat', 'Mission Reward'), + (30109, 'Nano Crystal (Cut Red Tape)', 301181, 30064, 'Cut Red Tape', 301182, 146937, 0, 0, 159, 'Crystal', + 'Protection', 'Critical_Decrease_Buff', 1052, '', 0, 1, 0, 0, 0, 'Bureaucrat', 'Mission Reward'), + (30110, 'Nano Crystal (Distracted Gaze)', 12224, 30065, 'Distracted Gaze', 46283, 146953, 145453, 148453, 10, + 'Crystal', 'Crowd_Control', 'Mezz', 147, 'Target', 0, 1, 0, 0, 0, 'Bureaucrat', 'RK Store'), + (30113, 'Nano Crystal (Drill Missile)', 12224, 30068, 'Drill Missile', 45185, 146955, 145455, 148455, 37, + 'Crystal', 'Nukes', 'Normal', 0, '', 0, 1, 0, 0, 0, 'Bureaucrat', 'RK Store'), + (30116, 'Nano Crystal (Droid Overhaul)', 42448, 30071, 'Droid Overhaul', 44229, 146956, 145456, 148456, 136, + 'Crystal', 'Pet_Buffs', 'Heal', 0, '', 0, 1, 0, 0, 0, 'Bureaucrat', 'Mission Reward'), + (30117, 'Nano Crystal (Droid Repair)', 12256, 30072, 'Droid Repair', 16246, 146957, 145457, 148457, 70, + 'Crystal', 'Pet_Buffs', 'Heal', 0, '', 0, 1, 0, 0, 0, 'Bureaucrat', 'RK Store'), + (30119, 'Nano Crystal (Face in the Crowd)', 12259, 30074, 'Face in the Crowd', 16214, 146973, 145473, 148473, 57, + 'Crystal', 'Buffs', 'Concealment_Buffs', 193, '', 0, 1, 0, 0, 0, 'Bureaucrat', 'RK Store'), + (30122, 'Nano Crystal (Gunslinger)', 12226, 30077, 'Gunslinger', 16310, 146992, 145492, 148492, 14, 'Crystal', + 'Buffs', 'Pistol_Buffs', 199, '', 0, 1, 0, 0, 0, 'Bureaucrat', 'RK Store'), + (30124, 'Nano Crystal (Living Embalming)', 42449, 30079, 'Living Embalming', 16248, 147018, 145518, 148518, 175, + 'Crystal', 'Crowd_Control', 'Mezz', 147, 'Stun', 0, 1, 0, 0, 0, 'Bureaucrat', 'Mission Reward'), + (30127, 'Nano Crystal (Monofilament Cat-O''Nine-Tails)', 42449, 30082, 'Monofilament Cat-O''Nine-Tails', 45183, + 0, 0, 0, 169, 'Crystal', 'Nukes', 'Special', 0, '', 0, 1, 0, 0, 0, 'Bureaucrat', 'Mission Reward'), + (30128, 'Nano Crystal (Monofilament Whip)', 12224, 30083, 'Monofilament Whip', 39808, 147023, 145523, 148523, 50, + 'Crystal', 'Nukes', 'Normal', 0, '', 0, 1, 0, 0, 0, 'Bureaucrat', 'RK Store'), + (30131, 'Nano Crystal (Pheromone Control)', 12259, 30086, 'Pheromone Control', 39137, 147029, 145529, 148529, 76, + 'Crystal', 'Crowd_Control', 'Charm_Other', 202, 'Short', 0, 1, 0, 0, 0, 'Bureaucrat', 'RK Store'), + (30135, 'Nano Crystal (Red Tape)', 301075, 30090, 'Red Tape', 301072, 147034, 145534, 148534, 116, 'Crystal', + 'DeBuffs', 'Skill_Lock_Modifier_DeBuffs', 847, '', 0, 1, 0, 0, 0, 'Bureaucrat', 'RK Store'), + (30136, 'Nano Crystal (Remembered Pain)', 42449, 30091, 'Remembered Pain', 39810, 147035, 145535, 148535, 109, + 'Crystal', 'Nukes', 'Normal', 0, '', 0, 1, 0, 0, 0, 'Bureaucrat', 'RK Store'), + (30137, 'Nano Crystal (Siren Call)', 42451, 30092, 'Siren Call', 39137, 147042, 145542, 148542, 123, 'Crystal', + 'Crowd_Control', 'Charm_Other', 202, 'Short', 0, 1, 0, 0, 0, 'Bureaucrat', 'Mission Reward'), + (30138, 'Nano Crystal (Sleep)', 12224, 30093, 'Sleep', 46269, 147043, 145543, 148543, 43, 'Crystal', + 'Crowd_Control', 'Mezz', 147, 'Target', 0, 1, 0, 0, 0, 'Bureaucrat', 'RK Store'), + (30139, 'Nano Crystal (Sneaking Terror)', 12259, 30094, 'Sneaking Terror', 39145, 147044, 145544, 148544, 70, + 'Crystal', 'Crowd_Control', 'Fear', 256, '', 0, 1, 0, 0, 0, 'Bureaucrat', 'Mission Reward'), + (30140, 'Nano Crystal (Nano Restoration Escalation)', 301178, 30095, 'Nano Restoration Escalation', 301080, + 147047, 145547, 148547, 90, 'Crystal', 'Buffs', 'Nano_Delta_Buffs', 201, '', 0, 1, 0, 0, 0, 'Bureaucrat', + 'RK Store'), + (30143, 'Nano Crystal (Terror Blast)', 12259, 30098, 'Terror Blast', 39145, 147064, 145564, 148564, 90, + 'Crystal', 'Crowd_Control', 'Fear', 256, '', 0, 1, 0, 0, 0, 'Bureaucrat', 'RK Store'), + (30266, 'Nano Crystal (Lend Nano: 100)', 12228, 30265, 'Lend Nano: 100', 16303, 148071, 146571, 149571, 24, + 'Crystal', 'Transfer', 'Nano_Point_Buffs', 178, '', 0, 1, 0, 0, 0, 'Trader', 'RK Store'), + (30757, 'Nano Crystal (Trading Mogul)', 42451, 30706, 'Trading Mogul', 16309, 148201, 146701, 149701, 165, + 'Crystal', 'Buffs:_Tradeskills', 'Computer_Literacy_Buffs', 177, '', 0, 1, 0, 0, 0, 'Trader', 'Mission Reward'), + (30758, 'Nano Crystal (Apprentice: Field Quantum Physics)', 12226, 30707, 'Apprentice: Field Quantum Physics', + 16244, 147992, 146492, 149492, 27, 'Crystal', 'Buffs:_Tradeskills', 'Field_Quantum_Physics_Buffs', 173, '', 0, + 1, 0, 0, 0, 'Trader', 'RK Store'), + (30759, 'Nano Crystal (Apprentice: Mechanical Engineering)', 12226, 30708, 'Apprentice: Mechanical Engineering', + 16293, 147994, 146494, 149494, 30, 'Crystal', 'Buffs:_Tradeskills', 'Mechanical_Engineering_Buffs', 174, '', 0, + 1, 0, 0, 0, 'Trader', 'RK Store'), + (30764, 'Nano Crystal (Balanced Striker)', 12225, 30713, 'Balanced Striker', 16350, 147998, 146498, 149498, 7, + 'Crystal', 'Buffs', 'Damage', 0, 'Target', 0, 1, 0, 0, 0, 'Trader', 'No longer drops'), + (30766, 'Nano Crystal (Bulk Trader)', 12259, 30715, 'Bulk Trader', 16309, 148002, 146502, 149502, 96, 'Crystal', + 'Buffs:_Tradeskills', 'Computer_Literacy_Buffs', 177, '', 0, 1, 0, 0, 0, 'Trader', 'RK Store'), + (30769, 'Nano Crystal (Fine Tuning)', 42450, 30718, 'Fine Tuning', 39308, 148042, 146542, 149542, 126, 'Crystal', + 'Buffs', 'Damage', 0, 'Target', 0, 1, 0, 0, 0, 'Trader', 'Mission Reward'), + (30770, 'Nano Crystal (Flow of Time)', 42449, 30719, 'Flow of Time', 46274, 148043, 146543, 149543, 132, + 'Crystal', 'Crowd_Control', 'Root', 146, 'Area', 0, 1, 0, 0, 0, 'Trader', 'Mission Reward'), + (30771, 'Nano Crystal (Frequent Customer)', 12226, 30720, 'Frequent Customer', 16213, 148045, 146545, 149545, 20, + 'Crystal', 'Buffs:_Tradeskills', 'Computer_Literacy_Buffs', 177, '', 0, 1, 0, 0, 0, 'Trader', 'RK Store'), + (30772, 'Nano Crystal (Guard Convoy)', 42450, 30721, 'Guard Convoy', 118030, 148056, 146556, 149556, 149, + 'Crystal', 'Buffs', 'Damage', 0, 'Team', 0, 1, 0, 0, 0, 'Trader', 'Mission Reward'), + (30773, 'Nano Crystal (Hostile Takeover)', 12258, 30722, 'Hostile Takeover', 39137, 148061, 146561, 149561, 90, + 'Crystal', 'Drain', 'Nano_Drain_-_Line_A', 215, '', 0, 1, 0, 0, 0, 'Trader', 'RK Store'), + (30775, 'Nano Crystal (Journeyman: Electrical Engineering)', 12259, 30724, 'Journeyman: Electrical Engineering', + 16231, 148066, 146566, 149566, 80, 'Crystal', 'Buffs:_Tradeskills', 'Electrical_Engineering_Buffs', 172, '', 0, + 1, 0, 0, 0, 'Trader', 'RK Store'), + (30776, 'Nano Crystal (Journeyman: Field Quantum Physics)', 12259, 30725, 'Journeyman: Field Quantum Physics', + 16244, 148067, 146567, 149567, 80, 'Crystal', 'Buffs:_Tradeskills', 'Field_Quantum_Physics_Buffs', 173, '', 0, + 1, 0, 0, 0, 'Trader', 'RK Store'), + (30777, 'Nano Crystal (Journeyman: Mechanical Engineer)', 12259, 30726, 'Journeyman: Mechanical Engineer', 16293, + 148068, 146568, 149568, 83, 'Crystal', 'Buffs:_Tradeskills', 'Mechanical_Engineering_Buffs', 174, '', 0, 1, 0, + 0, 0, 'Trader', 'RK Store'), + (30778, 'Nano Crystal (Journeyman: Pharmaceutical)', 12259, 30727, 'Journeyman: Pharmaceutical', 16316, 148069, + 146569, 149569, 86, 'Crystal', 'Buffs:_Tradeskills', 'Pharmaceuticals_Buffs', 175, '', 0, 1, 0, 0, 0, 'Trader', + 'RK Store'), + (30779, 'Nano Crystal (Journeyman: Weapon Smithing)', 12259, 30728, 'Journeyman: Weapon Smithing', 16349, 148070, + 146570, 149570, 86, 'Crystal', 'Buffs:_Tradeskills', 'Weapon_Smithing_Buffs', 176, '', 0, 1, 0, 0, 0, 'Trader', + 'RK Store'), + (30780, 'Nano Crystal (Lend Nano: 250)', 12256, 30729, 'Lend Nano: 250', 16303, 148072, 146572, 149572, 53, + 'Crystal', 'Transfer', 'Nano_Point_Buffs', 178, '', 0, 1, 0, 0, 0, 'Trader', 'RK Store'), + (30781, 'Nano Crystal (Lend Nano: 50)', 12228, 30730, 'Lend Nano: 50', 16303, 148073, 146573, 149573, 10, + 'Crystal', 'Transfer', 'Nano_Point_Buffs', 178, '', 0, 1, 0, 0, 0, 'Trader', 'RK Store'), + (30782, 'Nano Crystal (Lend Nano: 500)', 42448, 30731, 'Lend Nano: 500', 16303, 148074, 146574, 149574, 116, + 'Crystal', 'Transfer', 'Nano_Point_Buffs', 178, '', 0, 1, 0, 0, 0, 'Trader', 'RK Store'), + (30783, 'Nano Crystal (Lend Nano: 1000)', 42448, 30732, 'Lend Nano: 1000', 16303, 148075, 146575, 149575, 172, + 'Crystal', 'Transfer', 'Nano_Point_Buffs', 178, '', 0, 1, 0, 0, 0, 'Trader', 'Mission Reward'), + (30784, 'Nano Crystal (Liquidation)', 42450, 30733, 'Liquidation', 39137, 148083, 146583, 149583, 156, 'Crystal', + 'Drain', 'Nano_Drain_-_Line_A', 215, '', 0, 1, 0, 0, 0, 'Trader', 'Mission Reward'), + (30785, 'Nano Crystal (Maestro: Electrical Engineering)', 42451, 30734, 'Maestro: Electrical Engineering', 16231, + 148088, 146588, 149588, 152, 'Crystal', 'Buffs:_Tradeskills', 'Electrical_Engineering_Buffs', 172, '', 0, 1, 0, + 0, 0, 'Trader', 'Mission Reward'), + (30786, 'Nano Crystal (Maestro: Field Quantum Physics)', 42451, 30735, 'Maestro: Field Quantum Physics', 16244, + 148089, 146589, 149589, 152, 'Crystal', 'Buffs:_Tradeskills', 'Field_Quantum_Physics_Buffs', 173, '', 0, 1, 0, + 0, 0, 'Trader', 'Mission Reward'), + (30787, 'Nano Crystal (Maestro: Mechanical Engineering)', 42451, 30736, 'Maestro: Mechanical Engineering', 16293, + 148090, 146590, 149590, 152, 'Crystal', 'Buffs:_Tradeskills', 'Mechanical_Engineering_Buffs', 174, '', 0, 1, 0, + 0, 0, 'Trader', 'Mission Reward'), + (30788, 'Nano Crystal (Maestro: Pharmaceutical)', 42451, 30737, 'Maestro: Pharmaceutical', 16316, 148091, 146591, + 149591, 156, 'Crystal', 'Buffs:_Tradeskills', 'Pharmaceuticals_Buffs', 175, '', 0, 1, 0, 0, 0, 'Trader', + 'Mission Reward'), + (30789, 'Nano Crystal (Maestro: Weapon Smithing)', 42451, 30738, 'Maestro: Weapon Smithing', 16349, 148092, + 146592, 149592, 156, 'Crystal', 'Buffs:_Tradeskills', 'Weapon_Smithing_Buffs', 176, '', 0, 1, 0, 0, 0, 'Trader', + 'Mission Reward'), + (30790, 'Nano Crystal (Margin Call)', 12225, 30739, 'Margin Call', 39137, 148098, 146598, 149598, 14, 'Crystal', + 'Drain', 'Nano_Drain_-_Line_A', 215, '', 0, 1, 0, 0, 0, 'Trader', 'RK Store'), + (30796, 'Nano Crystal (Quantum Uncertainty)', 42451, 30745, 'Quantum Uncertainty', 16234, 148132, 146632, 149632, + 139, 'Crystal', 'Buffs', 'Evasion', 0, '', 0, 1, 0, 0, 0, 'Trader', 'Mission Reward'), + (30797, 'Nano Crystal (Relentless Slayer)', 42450, 30746, 'Relentless Slayer', 117896, 148148, 146648, 149648, + 159, 'Crystal', 'Buffs', 'Damage', 0, 'Target', 0, 1, 0, 0, 0, 'Trader', 'Mission Reward'), + (30798, 'Nano Crystal (Riding Shotgun)', 12258, 30747, 'Riding Shotgun', 118028, 148149, 146649, 149649, 80, + 'Crystal', 'Buffs', 'Damage', 0, 'Team', 0, 1, 0, 0, 0, 'Trader', 'RK Store'), + (30799, 'Nano Crystal (Sticky Ground)', 12224, 30748, 'Sticky Ground', 46272, 148180, 146680, 149680, 24, + 'Crystal', 'Crowd_Control', 'Root', 146, 'Area', 0, 1, 0, 0, 0, 'Trader', 'RK Store'), + (30804, 'Nano Crystal (Apprentice: Electrical Engineering)', 12226, 30753, 'Apprentice: Electrical Engineering', + 16231, 147991, 146491, 149491, 24, 'Crystal', 'Buffs:_Tradeskills', 'Electrical_Engineering_Buffs', 172, '', 0, + 1, 0, 0, 0, 'Trader', 'RK Store'), + (31415, 'Nano Crystal (Blood Makes Noise)', 301586, 31380, 'Blood Makes Noise', 301584, 147502, 146002, 149002, + 116, 'Crystal', 'Buffs', 'Perception_Buffs', 191, '', 0, 1, 0, 0, 0, 'Fixer', 'RK Store'), + (31419, 'Nano Crystal (Contact Poison)', 12225, 31384, 'Contact Poison', 16350, 147503, 146003, 149003, 27, + 'Crystal', 'Buffs', 'Damage_Buffs_-_Line_A', 4, '', 0, 1, 0, 0, 0, 'Fixer', 'Mission Reward'), + (31420, 'Nano Crystal (Cracker''s Luck)', 301585, 31385, 'Cracker''s Luck', 301583, 147504, 146004, 149004, 14, + 'Crystal', 'Buffs', 'Break_&_Entry_Buffs', 171, '', 0, 1, 0, 0, 0, 'Fixer', 'RK Store'), + (31422, 'Nano Crystal (Embrace of Shadows)', 12226, 31387, 'Embrace of Shadows', 16214, 147507, 146007, 149007, + 27, 'Crystal', 'Buffs', 'Concealment_Buffs', 193, '', 0, 1, 0, 0, 0, 'Fixer', 'RK Store'), + (31423, 'Nano Crystal (Grid Phreak)', 296542, 31388, 'Grid Phreak', 296540, 147520, 146020, 149020, 20, + 'Crystal', 'Teleport', 'Self_Grid', 0, '', 0, 1, 0, 0, 0, 'Fixer', 'RK Store'), + (31425, 'Nano Crystal (Karma Harvest)', 301585, 31390, 'Karma Harvest', 301583, 147531, 146031, 149031, 152, + 'Crystal', 'Buffs', 'Break_&_Entry_Buffs', 171, '', 0, 1, 0, 0, 0, 'Fixer', 'Mission Reward'), + (31427, 'Nano Crystal (Luck''s Fickle Fate)', 12259, 31392, 'Luck''s Fickle Fate', 39081, 147539, 146039, 149039, + 83, 'Crystal', 'DeBuffs', 'Evasion_DeBuffs', 197, '', 0, 1, 0, 0, 0, 'Fixer', 'RK Store'), + (31436, 'Nano Crystal (Poison Modification)', 12225, 31401, 'Poison Modification', 16350, 147552, 146052, 149052, + 1, 'Crystal', 'Buffs', 'Damage_Buffs_-_Line_A', 4, '', 0, 1, 0, 0, 0, 'Fixer', 'RK Store'), + (31441, 'Nano Crystal (Stack the Odds)', 301585, 31406, 'Stack the Odds', 301583, 147563, 146063, 149063, 70, + 'Crystal', 'Buffs', 'Break_&_Entry_Buffs', 171, '', 0, 1, 0, 0, 0, 'Fixer', 'SL Loot'), + (31443, 'Nano Crystal (Backpain)', 301590, 31409, 'Back Pain', 301588, 147499, 145999, 148999, 57, 'Crystal', + 'Buffs', 'Sneak_Attack_Buffs', 208, '', 0, 1, 0, 0, 0, 'Fixer', 'RK Store'), + (31446, 'Nano Crystal (Venom Modification)', 12258, 31411, 'Venom Modification', 39028, 147566, 146066, 149066, + 60, 'Crystal', 'Buffs', 'Damage_Buffs_-_Line_A', 4, '', 0, 1, 0, 0, 0, 'Fixer', 'RK Store'), + (31449, 'Nano Crystal (Lifebane Modification)', 12258, 31448, 'Lifebane Modification', 39168, 147537, 146037, + 149037, 90, 'Crystal', 'Buffs', 'Damage_Buffs_-_Line_A', 4, '', 0, 1, 0, 0, 0, 'Fixer', 'RK Store'), + (31594, 'Nano Crystal (Slayerdroid Transference)', 42450, 31593, 'Slayerdroid Transference', 39274, 147473, + 145973, 148973, 185, 'Crystal', 'Buffs', 'Transference', 0, '', 0, 1, 0, 0, 0, 'Engineer', 'Mission Reward'), + (32071, 'Nano Crystal (False Profession: Adventurer)', 12226, 32030, 'False Profession: Adventurer', 16775, + 146842, 145342, 148342, 17, 'Crystal', 'False_Professions', 'False_Profession', 218, 'Adventurer', 0, 1, 0, 0, + 0, 'Agent', 'RK Store'), + (32073, 'Nano Crystal (False Profession: Bureaucrat)', 12226, 32032, 'False Profession: Bureaucrat', 16775, + 146843, 145343, 148343, 33, 'Crystal', 'False_Professions', 'False_Profession', 218, 'Bureaucrat', 0, 1, 0, 0, + 0, 'Agent', 'RK Store'), + (32074, 'Nano Crystal (False Profession: Doctor)', 12226, 32033, 'False Profession: Doctor', 16775, 146844, + 145344, 148344, 30, 'Crystal', 'False_Professions', 'False_Profession', 218, 'Doctor', 0, 1, 0, 0, 0, 'Agent', + 'RK Store'), + (32075, 'Nano Crystal (False Profession: Engineer)', 12226, 32034, 'False Profession: Engineer', 16775, 146845, + 145345, 148345, 20, 'Crystal', 'False_Professions', 'False_Profession', 218, 'Engineer', 0, 1, 0, 0, 0, 'Agent', + 'RK Store'), + (32076, 'Nano Crystal (False Profession: Martial Artist)', 12226, 32035, 'False Profession: Martial Artist', + 16775, 146846, 145346, 148346, 14, 'Crystal', 'False_Professions', 'False_Profession', 218, 'Martial_Artist', 0, + 1, 0, 0, 0, 'Agent', 'RK Store'), + (32077, 'Nano Crystal (False Profession: Meta-Physicist)', 12226, 32036, 'False Profession: Meta-Physicist', + 16775, 146847, 145347, 148347, 37, 'Crystal', 'False_Professions', 'False_Profession', 218, 'Meta-Physicist', 0, + 1, 0, 0, 0, 'Agent', 'RK Store'), + (32078, 'Nano Crystal (False Profession: Nanotechnician)', 12226, 32037, 'False Profession: Nanotechnician', + 16775, 146848, 145348, 148348, 40, 'Crystal', 'False_Professions', 'False_Profession', 218, 'Nano-Technician', + 0, 1, 0, 0, 0, 'Agent', 'RK Store'), + (32079, 'Nano Crystal (False Profession: Soldier)', 12226, 32038, 'False Profession: Soldier', 16775, 146849, + 145349, 148349, 14, 'Crystal', 'False_Professions', 'False_Profession', 218, 'Soldier', 0, 1, 0, 0, 0, 'Agent', + 'RK Store'), + (32080, 'Nano Crystal (False Profession: Fixer)', 12226, 32039, 'False Profession: Fixer', 16775, 146850, 145350, + 148350, 24, 'Crystal', 'False_Professions', 'False_Profession', 218, 'Fixer', 0, 1, 0, 0, 0, 'Agent', + 'RK Store'), + (32081, 'Nano Crystal (False Profession: Trader)', 12226, 32040, 'False Profession: Trader', 16775, 146851, + 145351, 148351, 27, 'Crystal', 'False_Professions', 'False_Profession', 218, 'Trader', 0, 1, 0, 0, 0, 'Agent', + 'RK Store'), + (32082, 'Nano Crystal (False Profession: Enforcer)', 12226, 32041, 'False Profession: Enforcer', 16775, 146852, + 145352, 148352, 10, 'Crystal', 'False_Professions', 'False_Profession', 218, 'Enforcer', 0, 1, 0, 0, 0, 'Agent', + 'RK Store'), + (32099, 'Nano Crystal (Projectile Magnet)', 12259, 32058, 'Projectile Magnet', 39081, 146892, 145392, 148392, 73, + 'Crystal', 'DeBuffs', 'Evasion_DeBuffs_(Agent)', 868, '', 0, 0, 0, 0, 0, 'Agent', 'RK Store'), + (32100, 'Nano Crystal (Ruse of Taren - Phase 1)', 301259, 32059, 'Ruse of Taren - Phase 1', 301251, 146894, + 145394, 148394, 40, 'Crystal', 'Buffs', 'Concealment_Buffs', 193, 'Self', 0, 0, 0, 0, 0, 'Agent', 'RK Store'), + (32101, 'Nano Crystal (Ruse of Taren - Phase 2)', 301260, 32060, 'Ruse of Taren - Phase 2', 301252, 146895, + 145395, 148395, 96, 'Crystal', 'Buffs', 'Concealment_Buffs', 193, 'Self', 0, 0, 0, 0, 0, 'Agent', 'RK Store'), + (32102, 'Nano Crystal (Ruse of Taren - Phase 3)', 301261, 32061, 'Ruse of Taren - Phase 3', 301253, 146896, + 145396, 148396, 162, 'Crystal', 'Buffs', 'Concealment_Buffs', 193, 'Self', 0, 0, 0, 0, 0, 'Agent', + 'Mission Reward'), + (32103, 'Nano Crystal (Shadow Crown)', 12226, 32062, 'Shadow Crown', 16214, 146897, 145397, 148397, 20, + 'Crystal', 'Buffs', 'Concealment_Buffs', 193, 'Target', 0, 0, 0, 0, 0, 'Agent', 'RK Store'), + (32105, 'Nano Crystal (Sniper''s Bliss)', 301577, 32064, 'Sniper''s Bliss', 301575, 146898, 145398, 148398, 43, + 'Crystal', 'Buffs', 'Rifle_Buffs', 194, '', 0, 0, 0, 0, 0, 'Agent', 'RK Store'), + (32106, 'Nano Crystal (Take The Shot)', 301578, 32065, 'Take the Shot', 301579, 146900, 145400, 148400, 152, + 'Crystal', 'Buffs', 'Aimed_Shot_Buffs', 198, '', 0, 0, 0, 0, 0, 'Agent', 'SL Loot'), + (32108, 'Nano Crystal (Unexpected Attack)', 301577, 32067, 'Unexpected Attack', 301575, 146901, 145401, 148401, + 136, 'Crystal', 'Buffs', 'Rifle_Buffs', 194, '', 0, 0, 0, 0, 0, 'Agent', 'SL Loot'), + (38531, 'Nano Crystal (Team Terrain Knowledge)', 296729, 32126, 'Team Terrain Knowledge', 296731, 146813, 145313, + 148313, 24, 'Crystal', 'Buffs', 'Team_Run_Speed_Buffs', 1034, '', 0, 1, 0, 0, 0, 'Adventurer', 'RK Store'), + (42111, 'Nanotechnician: Startup Crystal - Malaise of Movement', 12224, 42110, 'Malaise of Movement', 16248, 0, + 0, 0, 1, 'Crystal', 'Crowd_Control', 'Root', 146, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'RK Store'), + (42410, 'Nano Crystal (Cleanse Wounds)', 12256, 42395, 'Cleanse Wounds', 44247, 147103, 145603, 148603, 96, + 'Crystal', 'Combat', 'Team_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'RK Store'), + (42411, 'Nano Crystal (Cycle of Life)', 42448, 42396, 'Cycle of Life', 44232, 147119, 145619, 148619, 149, + 'Crystal', 'Buffs', 'Heal_Over_Time', 12, '', 0, 1, 0, 0, 0, 'Doctor', 'Mission Reward'), + (42412, 'Nano Crystal (Enhance Team Health)', 12228, 42397, 'Enhance Team Health', 38905, 147137, 145637, 148637, + 1, 'Crystal', 'Buffs', 'Doctor_HP_Buffs', 184, '', 0, 1, 0, 0, 0, 'Doctor', 'RK Store'), + (42413, 'Nano Crystal (Greater Team Healing)', 12256, 42398, 'Greater Team Healing', 44246, 147156, 145656, + 148656, 76, 'Crystal', 'Combat', 'Team_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'RK Store'), + (42414, 'Nano Crystal (Health Pump)', 12256, 42399, 'Health Pump', 44229, 147165, 145665, 148665, 60, 'Crystal', + 'Buffs', 'Heal_Over_Time', 12, '', 0, 1, 0, 0, 0, 'Doctor', 'RK Store'), + (42415, 'Nano Crystal (Iron Circle)', 12256, 42400, 'Iron Circle', 39014, 147178, 145678, 148678, 83, 'Crystal', + 'Buffs', 'Strength_Buffs', 156, '', 0, 1, 0, 0, 0, 'Doctor', 'RK Store'), + (42416, 'Nano Crystal (Lasting Heal)', 12228, 42401, 'Lasting Heal', 16246, 147179, 145679, 148679, 14, + 'Crystal', 'Buffs', 'Heal_Over_Time', 12, '', 0, 1, 0, 0, 0, 'Doctor', 'RK Store'), + (42417, 'Nano Crystal (Medic''s Call)', 12256, 42402, 'Medic''s Call', 44246, 147195, 145695, 148695, 57, + 'Crystal', 'Combat', 'Team_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'RK Store'), + (42418, 'Nano Crystal (Minor Team Healing)', 12228, 42403, 'Minor Team Healing', 38953, 147201, 145701, 148701, + 7, 'Crystal', 'Combat', 'Team_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'No longer drops'), + (42419, 'Nano Crystal (Radiant Heal)', 42448, 42404, 'Radiant Heal', 44248, 147223, 145723, 148723, 123, + 'Crystal', 'Combat', 'Team_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'Mission Reward'), + (42420, 'Nano Crystal (Team Healing)', 12228, 42405, 'Team Healing', 44245, 147260, 145760, 148760, 40, + 'Crystal', 'Combat', 'Team_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'RK Store'), + (42423, 'Nano Crystal (Weak Team Heal)', 12228, 42408, 'Weak Team Heal', 38953, 147270, 145770, 148770, 4, + 'Crystal', 'Combat', 'Team_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'RK Store'), + (42424, 'Nano Crystal (Alpha & Omega)', 301571, 42409, 'Alpha and Omega', 301569, 147082, 145582, 148582, 185, + 'Crystal', 'Combat', 'Complete_Healing_Line', 282, '', 0, 1, 0, 0, 0, 'Doctor', 'Mission Reward'), + (42544, 'Nano Crystal (Halon Cloud)', 12224, 42543, 'Halon Cloud', 45170, 147780, 146280, 149280, 20, 'Crystal', + 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'RK Store'), + (42545, 'Nano Crystal (Deep Slash)', 12224, 42541, 'Deep Slash', 45182, 147722, 146222, 149222, 17, 'Crystal', + 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'RK Store'), + (42546, 'Nano Crystal (Molecule Lance)', 12224, 42540, 'Molecule Lance', 45185, 147826, 146326, 149326, 17, + 'Crystal', 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'RK Store'), + (42547, 'Nano Crystal (Acidic Projection)', 12224, 42539, 'Acidic Projection', 45167, 147656, 146156, 149156, 7, + 'Crystal', 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'No longer drops'), + (42548, 'Nano Crystal (Bacterial Invasion)', 12224, 42542, 'Bacterial Invasion', 45173, 147664, 146164, 149164, + 10, 'Crystal', 'Nukes', 'Long_5s~4s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'No longer drops'), + (43329, 'Engineer: Startup Crystal - Feeble Automaton', 12225, 43325, 'Feeble Automaton', 16307, 147385, 145885, + 148885, 1, 'Crystal', 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'Starter equipment'), + (43330, 'Nano Crystal (Summon Anger Manifestation)', 295576, 43324, 'Summon Anger Manifestation', 295577, 0, 0, + 0, 1, 'Crystal', 'Pet', 'Attack_Pet_Summon', 0, '', 0, 1, 0, 0, 0, 'Meta-Physicist', 'RK Store'), + (43378, 'Trader: Startup Crystal - Weak Delayed Health Payment', 12228, 43374, 'Weak Delayed Health Payment', + 38953, 0, 0, 0, 1, 'Crystal', 'Transfer', 'Health', 0, 'Team', 0, 1, 0, 0, 0, 'Trader', 'Arete Nano Container'), + (43379, 'Enforcer: Startup Crystal - Thug''s Delight', 12226, 43371, 'Thug''s Delight', 16200, 0, 0, 0, 1, + 'Crystal', 'Buffs', '1H_Blunt_Buffs', 179, '', 0, 1, 0, 0, 0, 'Enforcer', 'Arete Nano Container'), + (43380, 'Fixer: Startup Crystal - Minor Suppressor', 12226, 43370, 'Minor Suppressor', 16295, 0, 0, 0, 1, + 'Crystal', 'Buffs', 'Fixer_Suppressor_Buffs', 253, '', 0, 1, 0, 0, 0, 'Fixer', 'Arete Nano Container'), + (43381, 'Bureaucrat: Startup Crystal - Momentary Daze', 12224, 43368, 'Momentary Daze', 46272, 0, 0, 0, 1, + 'Crystal', 'Crowd_Control', 'Root', 146, 'Target', 0, 1, 0, 0, 0, 'Bureaucrat', 'Arete Nano Container'), + (43382, 'Martial Artist: Startup Crystal - Lesser Controlled Rage', 12226, 43369, 'Lesser Controlled Rage', + 16289, 0, 0, 0, 1, 'Crystal', 'Buffs', 'Controlled_Rage_Buffs', 246, '', 0, 1, 0, 0, 0, 'Martial Artist', + 'RK Store'), + (43383, 'Agent: Startup Crystal - Minor Nano Augmentation', 12225, 43367, 'Minor Nano Augmentation', 16350, 0, 0, + 0, 1, 'Crystal', 'Buffs', 'Damage_Buffs_-_Line_A', 4, '', 0, 0, 0, 0, 0, 'Agent', 'No longer drops'), + (43384, 'Doctor: Startup Crystal - Prototype Biotoxin', 12224, 43376, 'Prototype Biotoxin', 16225, 0, 0, 0, 1, + 'Crystal', 'Combat', 'DOT_-_Line_A', 6, '', 0, 1, 0, 0, 0, 'Doctor', 'Arete Nano Container'), + (43758, 'Nano Crystal (Wrath Incarnation)', 295576, 43714, 'Wrath Incarnation', 295577, 145080, 144953, 145207, + 86, 'Crystal', 'Pet', 'Attack_Pet', 0, '', 0, 1, 0, 0, 0, 'Meta-Physicist', 'SL Static (as Shadow Crystal)'), + (43759, 'Nano Crystal (Supreme Enmity Personification)', 295596, 43746, 'Supreme Enmity Personification', 295597, + 145059, 144932, 145186, 172, 'Crystal', 'Pet', 'Attack_Pet', 0, '', 0, 0, 0, 0, 0, 'Meta-Physicist', + 'SL Static (as Shadow Crystal)'), + (43760, 'Nano Crystal (Supreme Wrath Incarnation)', 295576, 43750, 'Supreme Wrath Incarnation', 295577, 145063, + 144936, 145190, 96, 'Crystal', 'Pet', 'Attack_Pet', 0, '', 0, 1, 0, 0, 0, 'Meta-Physicist', + 'SL Static (as Shadow Crystal)'), + (43761, 'Nano Crystal (Inferior Wrath Incarnation)', 295576, 43730, 'Inferior Wrath Incarnation', 295577, 145000, + 144873, 145127, 83, 'Crystal', 'Pet', 'Attack_Pet', 0, '', 0, 1, 0, 0, 0, 'Meta-Physicist', + 'SL Static (as Shadow Crystal)'), + (43762, 'Nano Crystal (Transcendent Frenzy Embodiment)', 295576, 43753, 'Transcendent Frenzy Embodiment', 295577, + 145068, 144941, 145195, 152, 'Crystal', 'Pet', 'Attack_Pet', 0, '', 0, 1, 0, 0, 0, 'Meta-Physicist', + 'SL Static (as Shadow Crystal)'), + (43763, 'Nano Crystal (Transcendent Wrath Incarnation)', 295576, 43756, 'Transcendent Wrath Incarnation', 295577, + 145071, 144944, 145198, 106, 'Crystal', 'Pet', 'Attack_Pet', 0, '', 0, 1, 0, 0, 0, 'Meta-Physicist', + 'RK Store'), + (43764, 'Nano Crystal (Supreme Rage Materialization)', 295576, 43749, 'Supreme Rage Materialization', 295577, + 145062, 144935, 145189, 60, 'Crystal', 'Pet', 'Attack_Pet', 0, '', 0, 1, 0, 0, 0, 'Meta-Physicist', + 'SL Static (as Shadow Crystal)'), + (43765, 'Nano Crystal (Transcendent Anger Manifestation)', 295576, 43751, 'Transcendent Anger Manifestation', + 295577, 145066, 144939, 145193, 10, 'Crystal', 'Pet', 'Attack_Pet', 0, '', 0, 1, 0, 0, 0, 'Meta-Physicist', + 'SL Static (as Shadow Crystal)'), + (43766, 'Nano Crystal (Supreme Frenzy Embodiment)', 295576, 43747, 'Supreme Frenzy Embodiment', 295577, 145060, + 144933, 145187, 149, 'Crystal', 'Pet', 'Attack_Pet', 0, '', 0, 1, 0, 0, 0, 'Meta-Physicist', + 'SL Static (as Shadow Crystal)'), + (43767, 'Nano Crystal (Supreme Fury Externalization)', 295576, 43748, 'Supreme Fury Externalization', 295577, + 145061, 144934, 145188, 30, 'Crystal', 'Pet', 'Attack_Pet', 0, '', 0, 1, 0, 0, 0, 'Meta-Physicist', + 'SL Static (as Shadow Crystal)'), + (43768, 'Nano Crystal (Superior Wrath Incarnation)', 295576, 43744, 'Superior Wrath Incarnation', 295577, 145057, + 144930, 145184, 90, 'Crystal', 'Pet', 'Attack_Pet', 0, '', 0, 1, 0, 0, 0, 'Meta-Physicist', + 'SL Static (as Shadow Crystal)'), + (43769, 'Nano Crystal (Supreme Anger Manifestation)', 295576, 43745, 'Supreme Anger Manifestation', 295577, + 145058, 144931, 145185, 7, 'Crystal', 'Pet', 'Attack_Pet', 0, '', 0, 1, 0, 0, 0, 'Meta-Physicist', + 'SL Static (as Shadow Crystal)'), + (43770, 'Nano Crystal (Superior Frenzy Embodiment)', 295576, 43741, 'Superior Frenzy Embodiment', 295577, 145054, + 144927, 145181, 139, 'Crystal', 'Pet', 'Attack_Pet', 0, '', 0, 1, 0, 0, 0, 'Meta-Physicist', + 'SL Static (as Shadow Crystal)'), + (43771, 'Nano Crystal (Superior Fury Externalization)', 295576, 43742, 'Superior Fury Externalization', 295577, + 145055, 144928, 145182, 24, 'Crystal', 'Pet', 'Attack_Pet', 0, '', 0, 1, 0, 0, 0, 'Meta-Physicist', + 'SL Static (as Shadow Crystal)'), + (43772, 'Nano Crystal (Superior Rage Materialization)', 295576, 43743, 'Superior Rage Materialization', 295577, + 145056, 144929, 145183, 50, 'Crystal', 'Pet', 'Attack_Pet', 0, '', 0, 1, 0, 0, 0, 'Meta-Physicist', + 'SL Static (as Shadow Crystal)'), + (43773, 'Nano Crystal (Superior Enmity Personification)', 295596, 43740, 'Superior Enmity Personification', + 295597, 145053, 144926, 145180, 162, 'Crystal', 'Pet', 'Attack_Pet', 0, '', 0, 0, 0, 0, 0, 'Meta-Physicist', + 'SL Static (as Shadow Crystal)'), + (43774, 'Nano Crystal (Rage Materialization)', 295576, 43736, 'Rage Materialization', 295577, 145043, 144916, + 145170, 47, 'Crystal', 'Pet', 'Attack_Pet', 0, '', 0, 1, 0, 0, 0, 'Meta-Physicist', + 'SL Static (as Shadow Crystal)'), + (43775, 'Nano Crystal (Summon Fiend)', 295585, 43738, 'Summon Fiend', 295584, 145050, 144923, 145177, 182, + 'Crystal', 'Pet', 'Attack_Pet_Summon', 0, '', 0, 0, 0, 0, 0, 'Meta-Physicist', 'SL Static (as Shadow Crystal)'), + (43776, 'Nano Crystal (Superior Anger Manifestation)', 295576, 43739, 'Superior Anger Manifestation', 295577, + 145052, 144925, 145179, 4, 'Crystal', 'Pet', 'Attack_Pet', 0, '', 0, 1, 0, 0, 0, 'Meta-Physicist', + 'SL Static (as Shadow Crystal)'), + (43777, 'Nano Crystal (Summon Rage Materialization)', 295576, 43734, 'Summon Rage Materialization', 295577, + 145013, 144886, 145140, 37, 'Crystal', 'Pet', 'Attack_Pet_Summon', 0, '', 0, 1, 0, 0, 0, 'Meta-Physicist', + 'RK Store'), + (43778, 'Nano Crystal (Summon Wrath Incarnation)', 295576, 43735, 'Summon Wrath Incarnation', 295577, 145014, + 144887, 145141, 76, 'Crystal', 'Pet', 'Attack_Pet_Summon', 0, '', 0, 1, 0, 0, 0, 'Meta-Physicist', 'RK Store'), + (43779, 'Nano Crystal (Summon Frenzy Embodiment)', 295576, 43732, 'Summon Frenzy Embodiment', 295577, 145011, + 144884, 145138, 113, 'Crystal', 'Pet', 'Attack_Pet_Summon', 0, '', 0, 1, 0, 0, 0, 'Meta-Physicist', 'RK Store'), + (43780, 'Nano Crystal (Summon Fury Externalization)', 295576, 43733, 'Summon Fury Externalization', 295577, + 145012, 144885, 145139, 14, 'Crystal', 'Pet', 'Attack_Pet_Summon', 0, '', 0, 1, 0, 0, 0, 'Meta-Physicist', + 'RK Store'), + (43781, 'Nano Crystal (Inferior Fury Externalization)', 295576, 43728, 'Inferior Fury Externalization', 295577, + 144998, 144871, 145125, 17, 'Crystal', 'Pet', 'Attack_Pet', 0, '', 0, 1, 0, 0, 0, 'Meta-Physicist', + 'SL Static (as Shadow Crystal)'), + (43782, 'Nano Crystal (Inferior Rage Materialization)', 295576, 43729, 'Inferior Rage Materialization', 295577, + 144999, 144872, 145126, 40, 'Crystal', 'Pet', 'Attack_Pet', 0, '', 0, 1, 0, 0, 0, 'Meta-Physicist', + 'SL Static (as Shadow Crystal)'), + (43783, 'Nano Crystal (Summon Enmity Personification)', 295596, 43731, 'Summon Enmity Personification', 295597, + 145010, 144883, 145137, 156, 'Crystal', 'Pet', 'Attack_Pet_Summon', 0, '', 0, 1, 0, 0, 0, 'Meta-Physicist', + 'Mission Reward'), + (43784, 'Nano Crystal (Inferior Anger Manifestation)', 295576, 43725, 'Inferior Anger Manifestation', 295577, + 144995, 144868, 145122, 1, 'Crystal', 'Pet', 'Attack_Pet', 0, '', 0, 1, 0, 0, 0, 'Meta-Physicist', + 'SL Static (as Shadow Crystal)'), + (43785, 'Nano Crystal (Inferior Enmity Personification)', 295596, 43726, 'Inferior Enmity Personification', + 295597, 144996, 144869, 145123, 159, 'Crystal', 'Pet', 'Attack_Pet', 0, '', 0, 0, 0, 0, 0, 'Meta-Physicist', + 'SL Static (as Shadow Crystal)'), + (43786, 'Nano Crystal (Greater Fury Externalization)', 295576, 43722, 'Greater Fury Externalization', 295577, + 144989, 144862, 145116, 27, 'Crystal', 'Pet', 'Attack_Pet', 0, '', 0, 1, 0, 0, 0, 'Meta-Physicist', + 'SL Static (as Shadow Crystal)'), + (43787, 'Nano Crystal (Greater Rage Materialization)', 295576, 43723, 'Greater Rage Materialization', 295577, + 144990, 144863, 145117, 53, 'Crystal', 'Pet', 'Attack_Pet', 0, '', 0, 1, 0, 0, 0, 'Meta-Physicist', + 'SL Static (as Shadow Crystal)'), + (43788, 'Nano Crystal (Greater Wrath Incarnation)', 295576, 43724, 'Greater Wrath Incarnation', 295577, 144991, + 144864, 145118, 93, 'Crystal', 'Pet', 'Attack_Pet', 0, '', 0, 1, 0, 0, 0, 'Meta-Physicist', + 'SL Static (as Shadow Crystal)'), + (43789, 'Nano Crystal (Greater Anger Manifestation)', 295576, 43719, 'Greater Anger Manifestation', 295577, + 144986, 144859, 145113, 7, 'Crystal', 'Pet', 'Attack_Pet', 0, '', 0, 1, 0, 0, 0, 'Meta-Physicist', + 'SL Static (as Shadow Crystal)'), + (43790, 'Nano Crystal (Greater Enmity Personification)', 295596, 43720, 'Greater Enmity Personification', 295597, + 144987, 144860, 145114, 165, 'Crystal', 'Pet', 'Attack_Pet', 0, '', 0, 0, 0, 0, 0, 'Meta-Physicist', + 'SL Static (as Shadow Crystal)'), + (43791, 'Nano Crystal (Greater Frenzy Embodiment)', 295576, 43721, 'Greater Frenzy Embodiment', 295577, 144988, + 144861, 145115, 146, 'Crystal', 'Pet', 'Attack_Pet', 0, '', 0, 1, 0, 0, 0, 'Meta-Physicist', + 'SL Static (as Shadow Crystal)'), + (43792, 'Nano Crystal (Enmity Personification)', 295596, 43716, 'Enmity Personification', 295597, 144980, 144853, + 145107, 159, 'Crystal', 'Pet', 'Attack_Pet', 0, '', 0, 0, 0, 0, 0, 'Meta-Physicist', + 'SL Static (as Shadow Crystal)'), + (43793, 'Nano Crystal (Frenzy Embodiment)', 295576, 43717, 'Frenzy Embodiment', 295577, 144981, 144854, 145108, + 129, 'Crystal', 'Pet', 'Attack_Pet', 0, '', 0, 1, 0, 0, 0, 'Meta-Physicist', 'SL Static (as Shadow Crystal)'), + (43794, 'Nano Crystal (Fury Externalization)', 295576, 43718, 'Fury Externalization', 295577, 144984, 144857, + 145111, 20, 'Crystal', 'Pet', 'Attack_Pet', 0, '', 0, 1, 0, 0, 0, 'Meta-Physicist', + 'SL Static (as Shadow Crystal)'), + (43795, 'Nano Crystal (Anger Manifestation)', 295576, 43715, 'Anger Manifestation', 295577, 144955, 144828, + 145082, 4, 'Crystal', 'Pet', 'Attack_Pet', 0, '', 0, 1, 0, 0, 0, 'Meta-Physicist', + 'SL Static (as Shadow Crystal)'), + (43796, 'Nano Crystal (Inferior Frenzy Embodiment)', 295576, 43727, 'Inferior Frenzy Embodiment', 295577, 144997, + 144870, 145124, 123, 'Crystal', 'Pet', 'Attack_Pet', 0, '', 0, 1, 0, 0, 0, 'Meta-Physicist', + 'SL Static (as Shadow Crystal)'), + (43797, 'Nano Crystal (Summon Demon)', 295585, 43737, 'Summon Demon', 295584, 145048, 144921, 145175, 189, + 'Crystal', 'Pet', 'Attack_Pet_Summon', 0, '', 0, 1, 0, 0, 0, 'Meta-Physicist', 'Mission Reward'), + (43921, 'Nano Crystal (Transcendent Enmity Personification)', 295596, 43918, + 'Transcendent Enmity Personification', 295597, 145067, 144940, 145194, 175, 'Crystal', 'Pet', 'Attack_Pet', 0, + '', 0, 0, 0, 0, 0, 'Meta-Physicist', 'SL Static (as Shadow Crystal)'), + (43922, 'Nano Crystal (Transcendent Fury Externalization)', 295576, 43919, 'Transcendent Fury Externalization', + 295577, 145069, 144942, 145196, 33, 'Crystal', 'Pet', 'Attack_Pet', 0, '', 0, 1, 0, 0, 0, 'Meta-Physicist', + 'SL Static (as Shadow Crystal)'), + (43923, 'Nano Crystal (Transcendent Rage Materialization)', 295576, 43920, 'Transcendent Rage Materialization', + 295577, 145070, 144943, 145197, 70, 'Crystal', 'Pet', 'Attack_Pet', 0, '', 0, 1, 0, 0, 0, 'Meta-Physicist', + 'SL Static (as Shadow Crystal)'), + (43924, 'Nano Crystal (Superior Wound Bindings)', 12256, 43822, 'Superior Wound Bindings', 44231, 147251, 145751, + 148751, 80, 'Crystal', 'Combat', 'Target_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'RK Store'), + (43925, 'Nano Crystal (Syndicated Healing)', 12256, 43908, 'Syndicated Healing', 44247, 147254, 145754, 148754, + 86, 'Crystal', 'Combat', 'Team_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'RK Store'), + (43926, 'Nano Crystal (Tailored Cure)', 12256, 43823, 'Tailored Cure', 44231, 147255, 145755, 148755, 57, + 'Crystal', 'Combat', 'Target_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'RK Store'), + (43927, 'Nano Crystal (Team Cellular Rebuild)', 12256, 43909, 'Team Cellular Rebuild', 44246, 147256, 145756, + 148756, 60, 'Crystal', 'Combat', 'Team_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'RK Store'), + (43928, 'Nano Crystal (Team Checkup)', 12256, 43910, 'Team Checkup', 44246, 147257, 145757, 148757, 70, + 'Crystal', 'Combat', 'Team_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'RK Store'), + (43929, 'Nano Crystal (Team Compress Wounds)', 42448, 43896, 'Team Compress Wounds', 44250, 147258, 145758, + 148758, 159, 'Crystal', 'Combat', 'Team_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'Mission Reward'), + (43930, 'Nano Crystal (Team Field Dressings)', 12228, 43916, 'Team Field Dressings', 38953, 147259, 145759, + 148759, 20, 'Crystal', 'Combat', 'Team_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'RK Store'), + (43931, 'Nano Crystal (Team Nano Bandage)', 42448, 43905, 'Team Nano Bandage', 44248, 147261, 145761, 148761, + 113, 'Crystal', 'Combat', 'Team_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'RK Store'), + (43932, 'Nano Crystal (Team Purification)', 42448, 43898, 'Team Purification', 44249, 147262, 145762, 148762, + 156, 'Crystal', 'Combat', 'Team_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'Mission Reward'), + (43933, 'Nano Crystal (Team Tissue Repair)', 42448, 43903, 'Team Tissue Repair', 44248, 147263, 145763, 148763, + 139, 'Crystal', 'Combat', 'Team_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'Mission Reward'), + (43934, 'Nano Crystal (Thorough Examination)', 12256, 43824, 'Thorough Examination', 44231, 147265, 145765, + 148765, 83, 'Crystal', 'Combat', 'Target_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'RK Store'), + (43935, 'Nano Crystal (Tissue Repair)', 42448, 43825, 'Tissue Repair', 44232, 147267, 145767, 148767, 113, + 'Crystal', 'Combat', 'Target_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'RK Store'), + (43936, 'Nano Crystal (Professional Care)', 12256, 43907, 'Professional Care', 44247, 147221, 145721, 148721, 93, + 'Crystal', 'Combat', 'Team_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'RK Store'), + (43937, 'Nano Crystal (Recuperative Respite)', 301449, 43881, 'Recuperative Respite', 292054, 147226, 145726, + 148726, 162, 'Crystal', 'Combat', 'Single_Target_Healing', 951, '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (43938, 'Nano Crystal (Recurrent Remedy)', 12228, 43882, 'Recurrent Remedy', 44229, 147227, 145727, 148727, 40, + 'Crystal', 'Buffs', 'Heal_Over_Time', 12, '', 0, 1, 0, 0, 0, 'Doctor', 'RK Store'), + (43939, 'Nano Crystal (Relief From Pain)', 12228, 43837, 'Relief from Pain', 44229, 147229, 145729, 148729, 20, + 'Crystal', 'Combat', 'Target_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'RK Store'), + (43940, 'Nano Crystal (Remedy Dissemination)', 42448, 43897, 'Remedy Dissemination', 44250, 147230, 145730, + 148730, 159, 'Crystal', 'Combat', 'Team_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'Mission Reward'), + (43941, 'Nano Crystal (Restorative Boost)', 12228, 43838, 'Restorative Boost', 44230, 147232, 145732, 148732, 40, + 'Crystal', 'Combat', 'Target_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'RK Store'), + (43942, 'Nano Crystal (Spreading Health)', 12228, 43915, 'Spreading Health', 38953, 147239, 145739, 148739, 27, + 'Crystal', 'Combat', 'Team_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'RK Store'), + (43943, 'Nano Crystal (Superior Dress Wounds)', 12256, 43821, 'Superior Dress Wounds', 44232, 147242, 145742, + 148742, 96, 'Crystal', 'Combat', 'Target_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'RK Store'), + (43944, 'Nano Crystal (Superior Health Pump)', 42448, 43873, 'Superior Health Pump', 44233, 147246, 145746, + 148746, 162, 'Crystal', 'Buffs', 'Heal_Over_Time', 12, '', 0, 1, 0, 0, 0, 'Doctor', 'Mission Reward'), + (43945, 'Nano Crystal (Superior Nano Bandage)', 42448, 43811, 'Superior Nano Bandage', 44233, 147249, 145749, + 148749, 142, 'Crystal', 'Combat', 'Target_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'Mission Reward'), + (43946, 'Nano Crystal (Lifegiving Elixir)', 301449, 43878, 'Lifegiving Elixir', 292054, 147190, 145690, 148690, + 165, 'Crystal', 'Combat', 'Single_Target_Healing', 951, '', 0, 1, 0, 0, 0, 'Doctor', 'Mission Reward'), + (43947, 'Nano Crystal (Medical Response)', 42448, 43810, 'Medical Response', 44233, 147193, 145693, 148693, 132, + 'Crystal', 'Combat', 'Target_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'Mission Reward'), + (43948, 'Nano Crystal (Medical Sequencer)', 12256, 43879, 'Medical Sequencer', 44229, 147194, 145694, 148694, 70, + 'Crystal', 'Buffs', 'Heal_Over_Time', 12, '', 0, 1, 0, 0, 0, 'Doctor', 'RK Store'), + (43949, 'Nano Crystal (Minor Balm)', 12228, 43835, 'Minor Balm', 44230, 147199, 145699, 148699, 40, 'Crystal', + 'Combat', 'Target_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'RK Store'), + (43950, 'Nano Crystal (Minor Team Purification)', 12228, 43914, 'Minor Team Purification', 44245, 147202, 145702, + 148702, 33, 'Crystal', 'Combat', 'Team_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'RK Store'), + (43951, 'Nano Crystal (Molecular Rejuvenation)', 42448, 43871, 'Molecular Rejuvenation', 44233, 147203, 145703, + 148703, 156, 'Crystal', 'Buffs', 'Heal_Over_Time', 12, '', 0, 1, 0, 0, 0, 'Doctor', 'Mission Reward'), + (43952, 'Nano Crystal (Nano Bandage)', 12256, 43819, 'Nano Bandage', 44231, 147206, 145706, 148706, 73, + 'Crystal', 'Combat', 'Target_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'RK Store'), + (43953, 'Nano Crystal (Nano Surgery)', 12256, 43820, 'Nano Surgery', 44232, 147209, 145709, 148709, 93, + 'Crystal', 'Combat', 'Target_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'RK Store'), + (43954, 'Nano Crystal (Periodic Checkup)', 12228, 43880, 'Periodic Checkup', 16246, 147212, 145712, 148712, 27, + 'Crystal', 'Buffs', 'Heal_Over_Time', 12, '', 0, 1, 0, 0, 0, 'Doctor', 'RK Store'), + (43955, 'Nano Crystal (Physician''s Skill)', 12228, 43836, 'Physician''s Skill', 44229, 147215, 145715, 148715, + 33, 'Crystal', 'Combat', 'Target_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'RK Store'), + (43956, 'Nano Crystal (Positive Life Reinforcement)', 42448, 43872, 'Positive Life Reinforcement', 44234, 147216, + 145716, 148716, 169, 'Crystal', 'Buffs', 'Heal_Over_Time', 12, '', 0, 1, 0, 0, 0, 'Doctor', 'Mission Reward'), + (43957, 'Nano Crystal (Inferior Wound Bindings)', 12228, 43831, 'Inferior Wound Bindings', 16246, 147172, 145672, + 148672, 4, 'Crystal', 'Combat', 'Target_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'No longer drops'), + (43958, 'Nano Crystal (Internal Renewal)', 42448, 43890, 'Internal Renewal', 44234, 147177, 145677, 148677, 156, + 'Crystal', 'Combat', 'Target_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'Mission Reward'), + (43959, 'Nano Crystal (Lesser Bloom of Health)', 12256, 43818, 'Lesser Bloom of Health', 44231, 147180, 145680, + 148680, 63, 'Crystal', 'Combat', 'Target_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'RK Store'), + (43960, 'Nano Crystal (Lesser Cellular Grafting)', 12228, 43832, 'Lesser Cellular Grafting', 16246, 147181, + 145681, 148681, 1, 'Crystal', 'Combat', 'Target_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', + 'Arete Nano Container'), + (43961, 'Nano Crystal (Lesser Circle of Renewal)', 12228, 43913, 'Lesser Circle of Renewal', 44245, 147182, + 145682, 148682, 47, 'Crystal', 'Combat', 'Team_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'RK Store'), + (43962, 'Nano Crystal (Lesser Nano Bandage)', 12228, 43833, 'Lesser Nano Bandage', 44229, 147184, 145684, 148684, + 17, 'Crystal', 'Combat', 'Target_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'RK Store'), + (43963, 'Nano Crystal (Lesser Nano Surgery)', 12228, 43834, 'Lesser Nano Surgery', 44229, 147185, 145685, 148685, + 24, 'Crystal', 'Combat', 'Target_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'RK Store'), + (43964, 'Nano Crystal (Lesser Policy Payout)', 42448, 43877, 'Lesser Policy Payout', 44231, 147186, 145686, + 148686, 109, 'Crystal', 'Buffs', 'Heal_Over_Time', 12, '', 0, 1, 0, 0, 0, 'Doctor', 'RK Store'), + (43965, 'Nano Crystal (Life Balm)', 42448, 43808, 'Life Balm', 44234, 147187, 145687, 148687, 152, 'Crystal', + 'Combat', 'Target_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'Mission Reward'), + (43966, 'Nano Crystal (Greater Field Dressings)', 42448, 43888, 'Greater Field Dressings', 44234, 147152, 145652, + 148652, 149, 'Crystal', 'Combat', 'Target_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'Mission Reward'), + (43967, 'Nano Crystal (Greater Lasting heal)', 12256, 43876, 'Greater Lasting Heal', 44230, 147153, 145653, + 148653, 93, 'Crystal', 'Buffs', 'Heal_Over_Time', 12, '', 0, 1, 0, 0, 0, 'Doctor', 'RK Store'), + (43968, 'Nano Crystal (Greater Periodic Checkup)', 42448, 43869, 'Greater Periodic Checkup', 44232, 147154, + 145654, 148654, 142, 'Crystal', 'Buffs', 'Heal_Over_Time', 12, '', 0, 1, 0, 0, 0, 'Doctor', 'Mission Reward'), + (43969, 'Nano Crystal (Greater Policy Payout)', 42448, 43870, 'Greater Policy Payout', 44231, 147155, 145655, + 148655, 172, 'Crystal', 'Buffs', 'Heal_Over_Time', 12, '', 0, 1, 0, 0, 0, 'Doctor', 'Mission Reward'), + (43970, 'Nano Crystal (Hale and Hearty)', 42448, 43889, 'Hale and Hearty', 44234, 147157, 145657, 148657, 146, + 'Crystal', 'Combat', 'Target_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'Mission Reward'), + (43971, 'Nano Crystal (Halo of Health)', 42448, 43893, 'Halo of Health', 44251, 147158, 145658, 148658, 172, + 'Crystal', 'Combat', 'Team_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'Mission Reward'), + (43972, 'Nano Crystal (Healer''s Hands)', 42448, 43816, 'Healer''s Hands', 44233, 147159, 145659, 148659, 123, + 'Crystal', 'Combat', 'Target_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'Mission Reward'), + (43973, 'Nano Crystal (Healing Light)', 42448, 43817, 'Healing Light', 44233, 147160, 145660, 148660, 116, + 'Crystal', 'Combat', 'Target_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'RK Store'), + (43974, 'Nano Crystal (Health Cartel)', 42448, 43895, 'Health Cartel', 44250, 147163, 145663, 148663, 165, + 'Crystal', 'Combat', 'Team_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'Mission Reward'), + (43975, 'Nano Crystal (Inferior Cleanse Wounds)', 12228, 43917, 'Inferior Cleanse Wounds', 38953, 147171, 145671, + 148671, 14, 'Crystal', 'Combat', 'Team_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'RK Store'), + (43976, 'Nano Crystal (Easing Touch)', 12228, 43911, 'Easing Touch', 44245, 147131, 145631, 148631, 50, + 'Crystal', 'Combat', 'Team_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'RK Store'), + (43977, 'Nano Crystal (Emergency Medical Response)', 301449, 43886, 'Emergency Medical Response', 292054, 147133, + 145633, 148633, 162, 'Crystal', 'Combat', 'Single_Target_Healing', 951, '', 0, 1, 0, 0, 0, 'Doctor', + 'Mission Reward'), + (43978, 'Nano Crystal (Emergency Stitching)', 12228, 43829, 'Emergency Stitching', 16246, 147134, 145634, 148634, + 4, 'Crystal', 'Combat', 'Target_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'RK Store'), + (43979, 'Nano Crystal (Experimental Panacea)', 42448, 43814, 'Experimental Panacea', 44232, 147143, 145643, + 148643, 103, 'Crystal', 'Combat', 'Target_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'RK Store'), + (43980, 'Nano Crystal (Fast Team Tissue Repair)', 12256, 43906, 'Fast Team Tissue Repair', 44246, 147144, 145644, + 148644, 80, 'Crystal', 'Combat', 'Team_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'RK Store'), + (43981, 'Nano Crystal (Field Dressings)', 12228, 43830, 'Field Dressings', 16246, 147146, 145646, 148646, 10, + 'Crystal', 'Combat', 'Target_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'No longer drops'), + (43982, 'Nano Crystal (Greater Bloom of Health)', 42448, 43887, 'Greater Bloom of Health', 44235, 147150, 145650, + 148650, 156, 'Crystal', 'Combat', 'Target_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'Mission Reward'), + (43983, 'Nano Crystal (Greater Cellular Grafting)', 42448, 43815, 'Greater Cellular Grafting', 44232, 147151, + 145651, 148651, 109, 'Crystal', 'Combat', 'Target_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'RK Store'), + (43984, 'Nano Crystal (Continuous Cellular Reconditioning)', 42448, 43867, 'Continuous Cellular Reconditioning', + 44231, 147114, 145614, 148614, 126, 'Crystal', 'Buffs', 'Heal_Over_Time', 12, '', 0, 1, 0, 0, 0, 'Doctor', + 'Mission Reward'), + (43985, 'Nano Crystal (Counteract Damage)', 12228, 43813, 'Counteract Damage', 44230, 147116, 145616, 148616, 50, + 'Crystal', 'Combat', 'Target_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'RK Store'), + (43986, 'Nano Crystal (Course of Treatment)', 12256, 43875, 'Course of Treatment', 44230, 147117, 145617, 148617, + 86, 'Crystal', 'Buffs', 'Heal_Over_Time', 12, '', 0, 1, 0, 0, 0, 'Doctor', 'RK Store'), + (43987, 'Nano Crystal (Cursory Examination)', 12228, 43827, 'Cursory Examination', 44229, 147118, 145618, 148618, + 30, 'Crystal', 'Combat', 'Target_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'RK Store'), + (43988, 'Nano Crystal (Cycle of Reconstruction)', 42448, 43868, 'Cycle of Reconstruction', 44235, 147120, 145620, + 148620, 179, 'Crystal', 'Buffs', 'Heal_Over_Time', 12, '', 0, 1, 0, 0, 0, 'Doctor', 'Mission Reward'), + (43989, 'Nano Crystal (Deathless Blessing)', 42448, 43852, 'Deathless Blessing', 44235, 147122, 145622, 148622, + 182, 'Crystal', 'Buffs', 'Heal_Over_Time', 12, '', 0, 1, 0, 0, 0, 'Doctor', 'Mission Reward'), + (43990, 'Nano Crystal (Deep Tissue Repair)', 42448, 43885, 'Deep Tissue Repair', 44235, 147124, 145624, 148624, + 159, 'Crystal', 'Combat', 'Target_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'Mission Reward'), + (43991, 'Nano Crystal (Deep Wounds Cleanser)', 42448, 43894, 'Deep Wound Cleanser', 44250, 147125, 145625, + 148625, 169, 'Crystal', 'Combat', 'Team_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'Mission Reward'), + (43992, 'Nano Crystal (Distributed Care)', 42448, 43892, 'Distributed Care', 44251, 147128, 145628, 148628, 175, + 'Crystal', 'Combat', 'Team_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'Mission Reward'), + (43993, 'Nano Crystal (Dress Wounds)', 12228, 43828, 'Dress Wounds', 16246, 147130, 145630, 148630, 10, + 'Crystal', 'Combat', 'Target_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'RK Store'), + (43994, 'Nano Crystal (Bodily Purification)', 42448, 43883, 'Bodily Purification', 44234, 147095, 145595, 148595, + 146, 'Crystal', 'Combat', 'Target_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'Mission Reward'), + (43995, 'Nano Crystal (Cellular Grafting)', 12228, 43826, 'Cellular Grafting', 44230, 147099, 145599, 148599, 47, + 'Crystal', 'Combat', 'Target_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'RK Store'), + (43996, 'Nano Crystal (Cellular Rebuild)', 12256, 43812, 'Cellular Rebuild', 44231, 147100, 145600, 148600, 86, + 'Crystal', 'Combat', 'Target_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'RK Store'), + (43997, 'Nano Crystal (Circle of Renewal)', 42448, 43900, 'Circle of Renewal', 44249, 147101, 145601, 148601, + 149, 'Crystal', 'Combat', 'Team_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'Mission Reward'), + (43998, 'Nano Crystal (Circulate Health)', 42448, 43902, 'Circulate Health', 44248, 147102, 145602, 148602, 129, + 'Crystal', 'Combat', 'Team_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'Mission Reward'), + (43999, 'Nano Crystal (Company Policy)', 12228, 43912, 'Company Policy', 44245, 147106, 145606, 148606, 37, + 'Crystal', 'Combat', 'Team_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'RK Store'), + (44000, 'Nano Crystal (Compress Wounds)', 42448, 43884, 'Compress Wounds', 44234, 147109, 145609, 148609, 152, + 'Crystal', 'Combat', 'Target_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'Mission Reward'), + (44001, 'Nano Crystal (Conglomerate Health Plan)', 42448, 43891, 'Conglomerate Health Plan', 44251, 147110, + 145610, 148610, 182, 'Crystal', 'Combat', 'Team_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'Mission Reward'), + (44002, 'Nano Crystal (Consummate Carer)', 42448, 43904, 'Consummate Carer', 44247, 147113, 145613, 148613, 106, + 'Crystal', 'Combat', 'Team_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'RK Store'), + (44003, 'Nano Crystal (Accumulate Scars)', 42448, 43899, 'Accumulate Scars', 44249, 147074, 145574, 148574, 152, + 'Crystal', 'Combat', 'Team_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'Mission Reward'), + (44004, 'Nano Crystal (Active Remedy)', 12228, 43874, 'Active Remedy', 16246, 147076, 145576, 148576, 33, + 'Crystal', 'Buffs', 'Heal_Over_Time', 12, '', 0, 1, 0, 0, 0, 'Doctor', 'RK Store'), + (44005, 'Nano Crystal (Advanced Cellular Rebuild)', 42448, 43809, 'Advanced Cellular Rebuild', 44233, 147078, + 145578, 148578, 136, 'Crystal', 'Combat', 'Target_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'Mission Reward'), + (44006, 'Nano Crystal (Bestow Healing)', 42448, 43901, 'Bestow Healing', 44249, 147085, 145585, 148585, 146, + 'Crystal', 'Combat', 'Team_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'Mission Reward'), + (44178, 'Nano Crystal (Active Viral Agent)', 12257, 44176, 'Active Viral Agent', 16226, 147077, 145577, 148577, + 53, 'Crystal', 'Combat', 'DOT_-_Line_A', 6, '', 0, 1, 0, 0, 0, 'Doctor', 'RK Store'), + (44179, 'Nano Crystal (Advanced Nano Gorger)', 12257, 44174, 'Advanced Nano Gorger', 16226, 147080, 145580, + 148580, 93, 'Crystal', 'Combat', 'DOT_-_Line_B', 7, '', 0, 1, 0, 0, 0, 'Doctor', 'RK Store'), + (44180, 'Nano Crystal (All-Consuming Toxin)', 42449, 44175, 'All-Consuming Toxin', 16222, 147081, 145581, 148581, + 159, 'Crystal', 'Combat', 'DOT_-_Line_A', 6, '', 0, 1, 0, 0, 0, 'Doctor', 'Mission Reward'), + (44181, 'Nano Crystal (Autonomous Viral Agent)', 42449, 44173, 'Autonomous Viral Agent', 16222, 147083, 145583, + 148583, 146, 'Crystal', 'Combat', 'DOT_-_Line_B', 7, '', 0, 1, 0, 0, 0, 'Doctor', 'Mission Reward'), + (44182, 'Nano Crystal (Cellular Dismantlement)', 42449, 44172, 'Cellular Dismantlement', 16222, 147098, 145598, + 148598, 156, 'Crystal', 'Combat', 'DOT_-_Line_B', 7, '', 0, 1, 0, 0, 0, 'Doctor', 'Mission Reward'), + (44183, 'Nano Crystal (Consuming Toxin)', 42449, 44170, 'Consuming Toxin', 16226, 147112, 145612, 148612, 106, + 'Crystal', 'Combat', 'DOT_-_Line_A', 6, '', 0, 1, 0, 0, 0, 'Doctor', 'RK Store'), + (44184, 'Nano Crystal (Complex Nano Contagion)', 42449, 44169, 'Complex Nano Contagion', 16222, 147108, 145608, + 148608, 146, 'Crystal', 'Combat', 'DOT_-_Line_B', 7, '', 0, 1, 0, 0, 0, 'Doctor', 'Mission Reward'), + (44185, 'Nano Crystal (Elementary Nano Contagion)', 12224, 44168, 'Elementary Nano Contagion', 16225, 147132, + 145632, 148632, 14, 'Crystal', 'Combat', 'DOT_-_Line_B', 7, '', 0, 1, 0, 0, 0, 'Doctor', 'RK Store'), + (44186, 'Nano Crystal (Dissolve Molecular Bonding)', 12224, 44167, 'Dissolve Molecular Bonding', 16225, 147127, + 145627, 148627, 10, 'Crystal', 'Combat', 'DOT_-_Line_A', 6, '', 0, 1, 0, 0, 0, 'Doctor', 'RK Store'), + (44187, 'Nano Crystal (Incandescent Venom)', 42449, 44164, 'Incandescent Venom', 16226, 147168, 145668, 148668, + 126, 'Crystal', 'Combat', 'DOT_-_Line_A', 6, '', 0, 1, 0, 0, 0, 'Doctor', 'Mission Reward'), + (44188, 'Nano Crystal (Infected Wounds)', 12224, 44165, 'Infected Wounds', 16225, 147170, 145670, 148670, 30, + 'Crystal', 'Combat', 'DOT_-_Line_A', 6, '', 0, 1, 0, 0, 0, 'Doctor', 'RK Store'), + (44189, 'Nano Crystal (Limited Nano Reaper)', 12224, 44163, 'Limited Nano Reaper', 16225, 147191, 145691, 148691, + 7, 'Crystal', 'Combat', 'DOT_-_Line_B', 7, '', 0, 1, 0, 0, 0, 'Doctor', 'RK Store'), + (44190, 'Nano Crystal (Metabolic Disassembly)', 42449, 44160, 'Metabolic Disassembly', 16226, 147197, 145697, + 148697, 119, 'Crystal', 'Combat', 'DOT_-_Line_B', 7, '', 0, 1, 0, 0, 0, 'Doctor', 'RK Store'), + (44191, 'Nano Crystal (Morgue Longings)', 42449, 44158, 'Morgue Longings', 16222, 147204, 145704, 148704, 172, + 'Crystal', 'Combat', 'DOT_-_Line_A', 6, '', 0, 1, 0, 0, 0, 'Doctor', 'Mission Reward'), + (44192, 'Nano Crystal (Nano Reaper)', 12257, 44159, 'Nano Reaper', 16226, 147207, 145707, 148707, 99, 'Crystal', + 'Combat', 'DOT_-_Line_B', 7, '', 0, 1, 0, 0, 0, 'Doctor', 'RK Store'), + (44193, 'Nano Crystal (Parasitic Affliction)', 12224, 44156, 'Parasitic Affliction', 16225, 147210, 145710, + 148710, 40, 'Crystal', 'Combat', 'DOT_-_Line_B', 7, '', 0, 1, 0, 0, 0, 'Doctor', 'RK Store'), + (44194, 'Nano Crystal (Perpetuating Nano Reaper)', 42449, 44154, 'Perpetuating Nano Reaper', 16222, 147213, + 145713, 148713, 136, 'Crystal', 'Combat', 'DOT_-_Line_B', 7, '', 0, 1, 0, 0, 0, 'Doctor', 'Mission Reward'), + (44195, 'Nano Crystal (Protein Breakdown)', 12224, 44153, 'Protein Breakdown', 16225, 147222, 145722, 148722, 17, + 'Crystal', 'Combat', 'DOT_-_Line_A', 6, '', 0, 1, 0, 0, 0, 'Doctor', 'RK Store'), + (44196, 'Nano Crystal (Repeated Cellular Trauma)', 42449, 44147, 'Repeated Cellular Trauma', 16222, 147231, + 145731, 148731, 142, 'Crystal', 'Combat', 'DOT_-_Line_B', 7, '', 0, 1, 0, 0, 0, 'Doctor', 'Mission Reward'), + (44197, 'Nano Crystal (Seethe With Germs)', 12257, 44145, 'Seethe with Germs', 16226, 147235, 145735, 148735, 60, + 'Crystal', 'Combat', 'DOT_-_Line_A', 6, '', 0, 1, 0, 0, 0, 'Doctor', 'RK Store'), + (44198, 'Nano Crystal (Cancerous Burrower)', 12224, 44171, 'Cancerous Burrower', 16225, 147097, 145597, 148597, + 33, 'Crystal', 'Combat', 'DOT_-_Line_B', 7, '', 0, 1, 0, 0, 0, 'Doctor', 'RK Store'), + (44199, 'Nano Crystal (Parasitic Horde)', 42449, 44157, 'Parasitic Horde', 16222, 147211, 145711, 148711, 152, + 'Crystal', 'Combat', 'DOT_-_Line_B', 7, '', 0, 1, 0, 0, 0, 'Doctor', 'Mission Reward'), + (44200, 'Nano Crystal (Scythe B Virus)', 42449, 44149, 'Scythe B Virus', 16222, 147234, 145734, 148734, 182, + 'Crystal', 'Combat', 'DOT_-_Line_A', 6, '', 0, 1, 0, 0, 0, 'Doctor', 'Mission Reward'), + (44201, 'Nano Crystal (Dark Venom)', 12224, 44166, 'Dark Venom', 16226, 147121, 145621, 148621, 47, 'Crystal', + 'Combat', 'DOT_-_Line_A', 6, '', 0, 1, 0, 0, 0, 'Doctor', 'RK Store'), + (44202, 'Nano Crystal (Internal Decomposition)', 42449, 44162, 'Internal Decomposition', 16222, 147176, 145676, + 148676, 175, 'Crystal', 'Combat', 'DOT_-_Line_A', 6, '', 0, 1, 0, 0, 0, 'Doctor', 'Mission Reward'), + (44203, 'Nano Crystal (Minor Consuming Toxin)', 12224, 44161, 'Minor Consuming Toxin', 16225, 147200, 145700, + 148700, 37, 'Crystal', 'Combat', 'DOT_-_Line_A', 6, '', 0, 1, 0, 0, 0, 'Doctor', 'RK Store'), + (44204, 'Nano Crystal (Primitive Nano Gorger)', 12224, 44155, 'Primitive Nano Gorger', 16225, 147219, 145719, + 148719, 20, 'Crystal', 'Combat', 'DOT_-_Line_B', 7, '', 0, 1, 0, 0, 0, 'Doctor', 'RK Store'), + (44205, 'Nano Crystal (Primitive Viral Agent)', 12224, 44152, 'Primitive Viral Agent', 16225, 147220, 145720, + 148720, 4, 'Crystal', 'Combat', 'DOT_-_Line_A', 6, '', 0, 1, 0, 0, 0, 'Doctor', 'No longer drops'), + (44206, 'Nano Crystal (Rampant Decay)', 42449, 44150, 'Rampant Decay', 16222, 147224, 145724, 148724, 165, + 'Crystal', 'Combat', 'DOT_-_Line_A', 6, '', 0, 1, 0, 0, 0, 'Doctor', 'Mission Reward'), + (44207, 'Nano Crystal (Refined Nano Contagion)', 12257, 44151, 'Refined Nano Contagion', 16226, 147228, 145728, + 148728, 66, 'Crystal', 'Combat', 'DOT_-_Line_B', 7, '', 0, 1, 0, 0, 0, 'Doctor', 'RK Store'), + (44208, 'Nano Crystal (Scythe A Virus)', 12257, 44148, 'Scythe A Virus', 16226, 147233, 145733, 148733, 86, + 'Crystal', 'Combat', 'DOT_-_Line_A', 6, '', 0, 1, 0, 0, 0, 'Doctor', 'RK Store'), + (44209, 'Nano Crystal (Sentient Nano Gorger)', 42449, 44146, 'Sentient Nano Gorger', 16222, 147236, 145736, + 148736, 185, 'Crystal', 'Combat', 'DOT_-_Line_B', 7, '', 0, 1, 0, 0, 0, 'Doctor', 'Mission Reward'), + (44210, 'Nano Crystal (Abscess Explosion)', 12257, 44144, 'Abscess Explosion', 16226, 147073, 145573, 148573, 80, + 'Crystal', 'Combat', 'DOT_-_Line_A', 6, '', 0, 1, 0, 0, 0, 'Doctor', 'RK Store'), + (45325, 'Nano Crystal (Warmth of the Grave)', 42449, 45192, 'Warmth of the Grave', 45172, 147896, 146396, 149396, + 189, 'Crystal', 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'Mission Reward'), + (45326, 'Nano Crystal (Weak Chemical Liquefaction)', 12257, 45193, 'Weak Chemical Liquefaction', 39804, 147897, + 146397, 149397, 57, 'Crystal', 'Nukes', 'Long_5s~4s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'RK Store'), + (45327, 'Nano Crystal (Weak Gravity Collapse)', 12224, 45194, 'Weak Gravity Collapse', 45182, 147898, 146398, + 149398, 33, 'Crystal', 'Nukes', 'Long_8s~1s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'RK Store'), + (45328, 'Nano Crystal (Searing Circle)', 42449, 45213, 'Searing Circle', 45180, 147862, 146362, 149362, 152, + 'Crystal', 'Nukes', 'Long_8s~1s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'Mission Reward'), + (45329, 'Nano Crystal (Searing Stream)', 42449, 45195, 'Searing Stream', 45168, 147863, 146363, 149363, 159, + 'Crystal', 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'Mission Reward'), + (45330, 'Nano Crystal (Stinging Missile)', 12257, 45196, 'Stinging Missile', 39811, 147875, 146375, 149375, 63, + 'Crystal', 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'RK Store'), + (45331, 'Nano Crystal (Stinging Missile Swarm)', 42449, 45197, 'Stinging Missile Swarm', 45187, 147876, 146376, + 149376, 179, 'Crystal', 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'Mission Reward'), + (45332, 'Nano Crystal (Sudden Affliction)', 42449, 45198, 'Sudden Affliction', 45174, 147877, 146377, 149377, + 162, 'Crystal', 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'Mission Reward'), + (45333, 'Nano Crystal (Superior Malign Devourer)', 42449, 45199, 'Superior Malign Devourer', 45175, 147880, + 146380, 149380, 172, 'Crystal', 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', + 'Mission Reward'), + (45334, 'Nano Crystal (Tear Flesh)', 42449, 45200, 'Tear Flesh', 39810, 147882, 146382, 149382, 116, 'Crystal', + 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'RK Store'), + (45335, 'Nano Crystal (Thunderclap)', 12257, 45201, 'Thunderclap', 39808, 147883, 146383, 149383, 60, 'Crystal', + 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'RK Store'), + (45336, 'Nano Crystal (Thunderous Blow)', 12224, 45202, 'Thunderous Blow', 39808, 147884, 146384, 149384, 43, + 'Crystal', 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'RK Store'), + (45337, 'Nano Crystal (Unstable Hadron String)', 42449, 45203, 'Unstable Hadron String', 39816, 147890, 146390, + 149390, 119, 'Crystal', 'Nukes', 'Long_8s~1s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'RK Store'), + (45338, 'Nano Crystal (Viral Assault)', 12257, 45204, 'Viral Assault', 39799, 147891, 146391, 149391, 66, + 'Crystal', 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'RK Store'), + (45339, 'Nano Crystal (Void Warmth)', 12257, 45191, 'Void Warmth', 39797, 147893, 146393, 149393, 86, 'Crystal', + 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'RK Store'), + (45340, 'Nano Crystal (Neutron Spiral)', 12257, 45221, 'Neutron Spiral', 39814, 147832, 146332, 149332, 66, + 'Crystal', 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'RK Store'), + (45341, 'Nano Crystal (Ol'' Faithful)', 12257, 45205, 'Ol'' Faithful', 39812, 147834, 146334, 149334, 96, + 'Crystal', 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'RK Store'), + (45342, 'Nano Crystal (Particle Flare)', 42449, 45206, 'Particle Flare', 39816, 147838, 146338, 149338, 129, + 'Crystal', 'Nukes', 'Long_5s~4s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'Mission Reward'), + (45343, 'Nano Crystal (Particle Shower)', 12257, 45207, 'Particle Shower', 39815, 147839, 146339, 149339, 90, + 'Crystal', 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'RK Store'), + (45344, 'Nano Crystal (Phosphor Torch)', 12257, 45208, 'Phosphor Torch', 39806, 147844, 146344, 149344, 83, + 'Crystal', 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'RK Store'), + (45345, 'Nano Crystal (Positron Stream)', 12257, 45209, 'Positron Stream', 39803, 147850, 146350, 149350, 96, + 'Crystal', 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'RK Store'), + (45346, 'Nano Crystal (Quark Collapse)', 42449, 45210, 'Quark Collapse', 45190, 147853, 146353, 149353, 182, + 'Crystal', 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'Mission Reward'), + (45347, 'Nano Crystal (Radiation Scour)', 12257, 45211, 'Radiation Scour', 39815, 147855, 146355, 149355, 76, + 'Crystal', 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'RK Store'), + (45348, 'Nano Crystal (Rend Flesh)', 42449, 45212, 'Rend Flesh', 39810, 147857, 146357, 149357, 129, 'Crystal', + 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'Mission Reward'), + (45349, 'Nano Crystal (Localized Dimensional Inversion)', 42449, 45226, 'Localized Dimensional Inversion', 45184, + 147808, 146308, 149308, 189, 'Crystal', 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', + 'Mission Reward'), + (45350, 'Nano Crystal (Major Chemical Burn)', 42449, 45214, 'Major Chemical Burn', 45168, 147809, 146309, 149309, + 146, 'Crystal', 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'Mission Reward'), + (45351, 'Nano Crystal (Malign Devourer)', 42449, 45215, 'Malign Devourer', 45174, 147810, 146310, 149310, 149, + 'Crystal', 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'Mission Reward'), + (45352, 'Nano Crystal (Mephitic Ichor)', 42449, 45140, 'Mephitic Ichor', 39801, 147814, 146314, 149314, 123, + 'Crystal', 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'Mission Reward'), + (45353, 'Nano Crystal (Meson Blast)', 42449, 44538, 'Meson Blast', 39803, 147815, 146315, 149315, 103, 'Crystal', + 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'RK Store'), + (45354, 'Nano Crystal (Meta-Dioxin Spray)', 42449, 45216, 'Meta-Dioxin Spray', 39795, 147816, 146316, 149316, + 136, 'Crystal', 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'Mission Reward'), + (45355, 'Nano Crystal (Molecular Flechettes)', 42449, 45217, 'Molecular Flechettes', 45186, 147825, 146325, + 149325, 165, 'Crystal', 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'Mission Reward'), + (45356, 'Nano Crystal (Momentum Impaler)', 42449, 45218, 'Momentum Impaler', 39813, 147827, 146327, 149327, 123, + 'Crystal', 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'Mission Reward'), + (45357, 'Nano Crystal (Nano Contagion)', 12257, 45219, 'Nano Contagion', 39799, 147829, 146329, 149329, 53, + 'Crystal', 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'RK Store'), + (45358, 'Nano Crystal (Nanoblade Cloud)', 42449, 45220, 'Nanoblade Cloud', 45183, 147830, 146330, 149330, 142, + 'Crystal', 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'Mission Reward'), + (45359, 'Nano Crystal (Greater Viral Assault)', 42449, 45236, 'Greater Viral Assault', 45175, 147779, 146279, + 149279, 179, 'Crystal', 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'Mission Reward'), + (45360, 'Nano Crystal (Hoary Seep)', 12257, 45323, 'Hoary Seep', 39796, 147781, 146281, 149281, 57, 'Crystal', + 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'RK Store'), + (45361, 'Nano Crystal (Impaling Tracer)', 42449, 45222, 'Impaling Tracer', 45186, 147785, 146285, 149285, 139, + 'Crystal', 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'Mission Reward'), + (45362, 'Nano Crystal (Isotope Deluge)', 12224, 45223, 'Isotope Deluge', 39814, 147789, 146289, 149289, 50, + 'Crystal', 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'RK Store'), + (45363, 'Nano Crystal (Lesser Coronet of Frost)', 42449, 45224, 'Lesser Coronet of Frost', 39798, 147800, 146300, + 149300, 109, 'Crystal', 'Nukes', 'Halo_Nano_DeBuffs', 11, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'RK Store'), + (45364, 'Nano Crystal (Linear Acceleration)', 42449, 45225, 'Linear Acceleration', 45186, 147806, 146306, 149306, + 159, 'Crystal', 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'Mission Reward'), + (45365, 'Nano Crystal (Energized Collapse)', 42449, 45242, 'Energized Collapse', 39816, 147735, 146235, 149235, + 113, 'Crystal', 'Nukes', 'Long_8s~1s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'RK Store'), + (45366, 'Nano Crystal (Entropy Beam)', 12224, 45243, 'Entropy Beam', 45176, 147740, 146240, 149240, 30, + 'Crystal', 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'RK Store'), + (45367, 'Nano Crystal (Feeble Gravitational Anomaly)', 12257, 45227, 'Feeble Gravitational Anomaly', 39809, + 147748, 146248, 149248, 90, 'Crystal', 'Nukes', 'Long_8s~1s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', + 'RK Store'), + (45368, 'Nano Crystal (Focused Ray)', 42449, 45228, 'Focused Ray', 39793, 147757, 146257, 149257, 116, 'Crystal', + 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'RK Store'), + (45369, 'Nano Crystal (Frosty Welcome)', 12224, 45229, 'Frosty Welcome', 39796, 147762, 146262, 149262, 43, + 'Crystal', 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'RK Store'), + (45370, 'Nano Crystal (Full-body Acid Coating)', 42449, 45230, 'Full-Body Acid Coating', 45169, 147763, 146263, + 149263, 185, 'Crystal', 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'Mission Reward'), + (45371, 'Nano Crystal (Gaping Puncture)', 12224, 45231, 'Gaping Puncture', 39811, 147766, 146266, 149266, 37, + 'Crystal', 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'RK Store'), + (45372, 'Nano Crystal (Glacial Advance)', 12224, 45232, 'Glacial Advance', 39796, 147767, 146267, 149267, 50, + 'Crystal', 'Nukes', 'Long_8s~1s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'RK Store'), + (45373, 'Nano Crystal (Glacial Finality)', 42449, 45233, 'Glacial Finality', 45172, 147768, 146268, 149268, 175, + 'Crystal', 'Nukes', 'Long_5s~4s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'Mission Reward'), + (45374, 'Nano Crystal (Gravitational Anomaly)', 42449, 45234, 'Gravitational Anomaly', 45184, 147770, 146270, + 149270, 169, 'Crystal', 'Nukes', 'Long_5s~4s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'Mission Reward'), + (45375, 'Nano Crystal (Greater Searing Stream)', 42449, 45235, 'Greater Searing Stream', 45169, 147776, 146276, + 149276, 172, 'Crystal', 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'Mission Reward'), + (45376, 'Nano Crystal (Chemical Liquefaction)', 42449, 45250, 'Chemical Liquefaction', 39794, 147692, 146192, + 149192, 103, 'Crystal', 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'RK Store'), + (45377, 'Nano Crystal (Coherent Positron Stream)', 42449, 45251, 'Coherent Positron Stream', 45177, 147698, + 146198, 149198, 142, 'Crystal', 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', + 'Mission Reward'), + (45378, 'Nano Crystal (Collapsing Hadron String)', 42449, 45252, 'Collapsing Hadron String', 45189, 147701, + 146201, 149201, 149, 'Crystal', 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', + 'Mission Reward'), + (45379, 'Nano Crystal (Compressed Shockwave)', 12257, 45253, 'Compressed Shockwave', 39809, 147703, 146203, + 149203, 70, 'Crystal', 'Nukes', 'Long_8s~1s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'RK Store'), + (45380, 'Nano Crystal (Conduction Stream)', 42449, 45254, 'Conduction Stream', 45177, 147706, 146206, 149206, + 156, 'Crystal', 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'Mission Reward'), + (45381, 'Nano Crystal (Contained Plasma Sphere)', 42449, 45237, 'Contained Plasma Sphere', 39807, 147707, 146207, + 149207, 136, 'Crystal', 'Nukes', 'Long_8s~1s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'Mission Reward'), + (45382, 'Nano Crystal (Coronet of Frost)', 42449, 45238, 'Coronet of Frost', 39798, 147710, 146210, 149210, 132, + 'Crystal', 'Nukes', 'Halo_Nano_DeBuffs', 11, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'Mission Reward'), + (45383, 'Nano Crystal (Corrupt Molecular Integrity)', 42449, 45138, 'Corrupt Molecular Integrity', 39800, 147712, + 146212, 149212, 103, 'Crystal', 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'RK Store'), + (45384, 'Nano Crystal (Crown of Frost)', 42449, 45239, 'Crown of Frost', 45171, 147714, 146214, 149214, 156, + 'Crystal', 'Nukes', 'Halo_Nano_DeBuffs', 11, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'Mission Reward'), + (45385, 'Nano Crystal (Deep Chemical Burn)', 12257, 45240, 'Deep Chemical Burn', 39794, 147721, 146221, 149221, + 76, 'Crystal', 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'RK Store'), + (45386, 'Nano Crystal (Dispersed Nanoblade Cloud)', 42449, 45241, 'Dispersed Nanoblade Cloud', 39810, 147727, + 146227, 149227, 106, 'Crystal', 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'RK Store'), + (45387, 'Nano Crystal (Arctic Welcome)', 12257, 45259, 'Arctic Welcome', 39797, 147661, 146161, 149161, 73, + 'Crystal', 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'RK Store'), + (45388, 'Nano Crystal (Atomic Collapse)', 42449, 45260, 'Atomic Collapse', 45189, 147662, 146162, 149162, 159, + 'Crystal', 'Nukes', 'Long_8s~1s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'Mission Reward'), + (45389, 'Nano Crystal (Bio-Acid Spray)', 42449, 45261, 'Bio-Acid Spray', 39795, 147672, 146172, 149172, 119, + 'Crystal', 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'RK Store'), + (45390, 'Nano Crystal (Burning Orb)', 12257, 45244, 'Burning Orb', 39805, 147684, 146184, 149184, 57, 'Crystal', + 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'RK Store'), + (45391, 'Nano Crystal (Burning Quartet)', 42449, 45245, 'Burning Quartet', 39807, 147685, 146185, 149185, 126, + 'Crystal', 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'Mission Reward'), + (45392, 'Nano Crystal (Burning Triumvirate)', 12257, 45246, 'Burning Triumvirate', 39806, 147686, 146186, 149186, + 93, 'Crystal', 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'RK Store'), + (45393, 'Nano Crystal (Cascade of the Storm)', 42449, 45247, 'Cascade of the Storm', 45178, 147687, 146187, + 149187, 175, 'Crystal', 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'Mission Reward'), + (45394, 'Nano Crystal (Cellular Decay)', 12224, 45139, 'Cellular Decay', 39799, 147688, 146188, 149188, 40, + 'Crystal', 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'RK Store'), + (45395, 'Nano Crystal (Chaotic Entropy)', 12224, 45248, 'Chaotic Entropy', 39802, 147690, 146190, 149190, 47, + 'Crystal', 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'RK Store'), + (45396, 'Nano Crystal (Chemical Burn)', 12224, 45249, 'Chemical Burn', 45167, 147691, 146191, 149191, 24, + 'Crystal', 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'RK Store'), + (45397, 'Nano Crystal (Accelerated Decay)', 12224, 45255, 'Accelerated Decay', 45188, 147653, 146153, 149153, 24, + 'Crystal', 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'RK Store'), + (45398, 'Nano Crystal (Accelerated Titanium Pellet)', 12224, 45256, 'Accelerated Titanium Pellet', 45185, 147654, + 146154, 149154, 24, 'Crystal', 'Nukes', 'Long_8s~1s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'RK Store'), + (45399, 'Nano Crystal (Acidic Conversion)', 12224, 45257, 'Acidic Conversion', 45167, 147655, 146155, 149155, 27, + 'Crystal', 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'RK Store'), + (45400, 'Nano Crystal (Aggressive Mutagen)', 12224, 45137, 'Aggressive Mutagen', 45173, 147659, 146159, 149159, + 30, 'Crystal', 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'RK Store'), + (45401, 'Nano Crystal (Annihilating Hadron String)', 42449, 45258, 'Annihilating Hadron String', 45190, 147660, + 146160, 149160, 165, 'Crystal', 'Nukes', 'Long_8s~1s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', + 'Mission Reward'), + (45402, 'Nano Crystal (Acidic Lesions)', 42449, 45324, 'Acidic Lesions', 16222, 147075, 145575, 148575, 149, + 'Crystal', 'Combat', 'DOT_-_Line_A', 6, '', 0, 1, 0, 0, 0, 'Doctor', 'Mission Reward'), + (45944, 'Nano Crystal (Weak Smiting Missile)', 12224, 45879, 'Weak Smiting Missile', 45185, 147900, 146400, + 149400, 1, 'Crystal', 'Nukes', 'Medium_3s~2s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'No longer drops'), + (45945, 'Nano Crystal (Wind Blade)', 12224, 45880, 'Wind Blade', 45182, 147902, 146402, 149402, 27, 'Crystal', + 'Nukes', 'Fast_1s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'RK Store'), + (45946, 'Nano Crystal (Shower With Sludge)', 12224, 45887, 'Shower With Sludge', 39804, 147866, 146366, 149366, + 40, 'Crystal', 'Nukes', 'Fast_1s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'RK Store'), + (45947, 'Nano Crystal (Smiting Missile)', 12224, 45888, 'Smiting Missile', 45185, 147871, 146371, 149371, 24, + 'Crystal', 'Nukes', 'Medium_3s~2s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'RK Store'), + (45948, 'Nano Crystal (Smiting Missile Mk II)', 12257, 45889, 'Smiting Missile Mk II', 39811, 147872, 146372, + 149372, 57, 'Crystal', 'Nukes', 'Medium_3s~2s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'RK Store'), + (45949, 'Nano Crystal (Solar Wind)', 42449, 45890, 'Solar Wind', 45189, 147873, 146373, 149373, 152, 'Crystal', + 'Nukes', 'Medium_3s~2s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'Mission Reward'), + (45950, 'Nano Crystal (Stargasp)', 42449, 45891, 'Stargasp', 45177, 147874, 146374, 149374, 156, 'Crystal', + 'Nukes', 'Medium_3s~2s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'Mission Reward'), + (45951, 'Nano Crystal (Sudden Chill)', 12224, 45881, 'Sudden Chill', 45170, 147878, 146378, 149378, 24, + 'Crystal', 'Nukes', 'Fast_1s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'RK Store'), + (45952, 'Nano Crystal (Toxic Field)', 12224, 45882, 'Toxic Field', 39804, 147885, 146385, 149385, 37, 'Crystal', + 'Nukes', 'Medium_3s~2s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'RK Store'), + (45953, 'Nano Crystal (Toxic Sphere)', 42449, 45883, 'Toxic Sphere', 39795, 147886, 146386, 149386, 126, + 'Crystal', 'Nukes', 'Fast_1s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'Mission Reward'), + (45954, 'Nano Crystal (Toxic Spill)', 42449, 45884, 'Toxic Spill', 39771, 147887, 146387, 149387, 132, 'Crystal', + 'Nukes', 'AoE_Nuke', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'Mission Reward'), + (45955, 'Nano Crystal (Tri-Ion Stream)', 42449, 45885, 'Tri-Ion Stream', 39816, 147889, 146389, 149389, 109, + 'Crystal', 'Nukes', 'Fast_1s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'RK Store'), + (45956, 'Nano Crystal (Open Wound)', 12224, 45892, 'Open Wound', 45182, 147836, 146336, 149336, 7, 'Crystal', + 'Nukes', 'Fast_1s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'RK Store'), + (45957, 'Nano Crystal (Pellet of Fire)', 12257, 45893, 'Pellet of Fire', 39806, 147841, 146341, 149341, 83, + 'Crystal', 'Nukes', 'Fast_1s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'RK Store'), + (45958, 'Nano Crystal (RNA Reaper)', 12257, 45886, 'RNA Reaper', 39814, 147858, 146358, 149358, 63, 'Crystal', + 'Nukes', 'Medium_3s~2s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'RK Store'), + (45959, 'Nano Crystal (Limited Shrapnel Spray)', 12257, 45900, 'Limited Shrapnel Spray', 39788, 147805, 146305, + 149305, 83, 'Crystal', 'Nukes', 'AoE_Nuke', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'RK Store'), + (45960, 'Nano Crystal (Liquefying Sphere)', 42449, 45901, 'Liquefying Sphere', 39795, 147807, 146307, 149307, + 132, 'Crystal', 'Nukes', 'Medium_3s~2s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'Mission Reward'), + (45961, 'Nano Crystal (Micro Flechette)', 12224, 45902, 'Micro Flechette', 45185, 147817, 146317, 149317, 17, + 'Crystal', 'Nukes', 'Fast_1s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'RK Store'), + (45962, 'Nano Crystal (Micro Flechette Swarm)', 42449, 45903, 'Micro Flechette Swarm', 39813, 147818, 146318, + 149318, 116, 'Crystal', 'Nukes', 'Fast_1s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'RK Store'), + (45963, 'Nano Crystal (Mild Toxic Spill)', 12224, 45894, 'Mild Toxic Spill', 45143, 147820, 146320, 149320, 37, + 'Crystal', 'Nukes', 'AoE_Nuke', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'RK Store'), + (45964, 'Nano Crystal (Minor Bane)', 12257, 45895, 'Minor Bane', 39799, 147821, 146321, 149321, 57, 'Crystal', + 'Nukes', 'Fast_1s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'RK Store'), + (45965, 'Nano Crystal (Minor Toxic Barb)', 12224, 45896, 'Minor Toxic Barb', 45173, 147822, 146322, 149322, 1, + 'Crystal', 'Nukes', 'Fast_1s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'RK Store'), + (45966, 'Nano Crystal (Minor Toxic Field)', 12224, 45897, 'Minor Toxic Field', 45167, 147823, 146323, 149323, 10, + 'Crystal', 'Nukes', 'Medium_3s~2s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'RK Store'), + (45967, 'Nano Crystal (Greater Toxic Field)', 12257, 45914, 'Greater Toxic Field', 39794, 147778, 146278, 149278, + 83, 'Crystal', 'Nukes', 'Medium_3s~2s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'RK Store'), + (45968, 'Nano Crystal (Impactor Missile)', 42449, 45904, 'Impactor Missile', 39813, 147784, 146284, 149284, 123, + 'Crystal', 'Nukes', 'Medium_3s~2s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'Mission Reward'), + (45969, 'Nano Crystal (Ion Stream)', 12224, 45905, 'Ion Stream', 45188, 147788, 146288, 149288, 14, 'Crystal', + 'Nukes', 'Fast_1s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'RK Store'), + (45970, 'Nano Crystal (Isotope Waves)', 42449, 45906, 'Isotope Waves', 39792, 147790, 146290, 149290, 146, + 'Crystal', 'Nukes', 'AoE_Nuke', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'Mission Reward'), + (45971, 'Nano Crystal (Lesser Bane of the Living)', 12224, 45907, 'Lesser Bane of the Living', 39799, 147799, + 146299, 149299, 40, 'Crystal', 'Nukes', 'Medium_3s~2s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'RK Store'), + (45972, 'Nano Crystal (Lesser Encircle With Blades)', 12224, 45898, 'Lesser Encircle With Blades', 39808, 147801, + 146301, 149301, 47, 'Crystal', 'Nukes', 'Medium_3s~2s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'RK Store'), + (45973, 'Nano Crystal (Lesser RNA Reaper)', 12224, 45899, 'Lesser RNA Reaper', 45188, 147803, 146303, 149303, 14, + 'Crystal', 'Nukes', 'Medium_3s~2s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'RK Store'), + (45974, 'Nano Crystal (Fiery Blast)', 42449, 45920, 'Fiery Blast', 39807, 147753, 146253, 149253, 142, 'Crystal', + 'Nukes', 'Fast_1s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'Mission Reward'), + (45975, 'Nano Crystal (Foul Bane)', 12257, 45921, 'Foul Bane', 39800, 147758, 146258, 149258, 90, 'Crystal', + 'Nukes', 'Fast_1s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'RK Store'), + (45976, 'Nano Crystal (Frigid Landscape)', 42449, 45922, 'Frigid Landscape', 45147, 147761, 146261, 149261, 159, + 'Crystal', 'Nukes', 'AoE_Nuke', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'Mission Reward'), + (45977, 'Nano Crystal (Furious Wind Blade)', 42449, 45908, 'Furious Wind Blade', 39810, 147765, 146265, 149265, + 103, 'Crystal', 'Nukes', 'Fast_1s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'RK Store'), + (45978, 'Nano Crystal (Greater Blade Chaos)', 42449, 45909, 'Greater Blade Chaos', 39810, 147772, 146272, 149272, + 119, 'Crystal', 'Nukes', 'Medium_3s~2s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'RK Store'), + (45979, 'Nano Crystal (Greater Chilling Stream)', 12257, 45910, 'Greater Chilling Stream', 39796, 147773, 146273, + 149273, 70, 'Crystal', 'Nukes', 'Fast_1s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'RK Store'), + (45980, 'Nano Crystal (Greater Crystalizing Ray)', 42449, 45911, 'Greater Crystalizing Ray', 39798, 147774, + 146274, 149274, 139, 'Crystal', 'Nukes', 'Medium_3s~2s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', + 'Mission Reward'), + (45981, 'Nano Crystal (Greater RNA Reaper)', 42449, 45912, 'Greater RNA Reaper', 39816, 147775, 146275, 149275, + 129, 'Crystal', 'Nukes', 'Medium_3s~2s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'Mission Reward'), + (45982, 'Nano Crystal (Greater Shower With Sludge)', 42449, 45913, 'Greater Shower with Sludge', 39795, 147777, + 146277, 149277, 132, 'Crystal', 'Nukes', 'Fast_1s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', + 'Mission Reward'), + (45983, 'Nano Crystal (Dense Matter Missile)', 12224, 45923, 'Dense Matter Missile', 39811, 147723, 146223, + 149223, 43, 'Crystal', 'Nukes', 'Fast_1s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'RK Store'), + (45984, 'Nano Crystal (Dense Matter Missile MK II)', 12257, 45924, 'Dense Matter Missile MK II', 39812, 147724, + 146224, 149224, 86, 'Crystal', 'Nukes', 'Fast_1s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'RK Store'), + (45985, 'Nano Crystal (Dense Poison Fog)', 42449, 45925, 'Dense Poison Fog', 39776, 147725, 146225, 149225, 103, + 'Crystal', 'Nukes', 'AoE_Nuke', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'RK Store'), + (45986, 'Nano Crystal (Dissolving Sphere)', 42449, 45926, 'Dissolving Sphere', 39795, 147728, 146228, 149228, + 109, 'Crystal', 'Nukes', 'Medium_3s~2s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'RK Store'), + (45987, 'Nano Crystal (Dual Energized Beams)', 12224, 45927, 'Dual Energized Beams', 45176, 147729, 146229, + 149229, 20, 'Crystal', 'Nukes', 'Medium_3s~2s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'Mission Reward'), + (45988, 'Nano Crystal (Dual Ion Stream)', 12257, 45928, 'Dual Ion Stream', 39814, 147730, 146230, 149230, 60, + 'Crystal', 'Nukes', 'Fast_1s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'RK Store'), + (45989, 'Nano Crystal (Encircle with Blades)', 42449, 45929, 'Encircle With Blades', 45183, 147733, 146233, + 149233, 142, 'Crystal', 'Nukes', 'Medium_3s~2s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'Mission Reward'), + (45990, 'Nano Crystal (Energized Beam)', 12224, 45930, 'Energized Beam', 45176, 147734, 146234, 149234, 4, + 'Crystal', 'Nukes', 'Medium_3s~2s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'Arete Nano Container'), + (45991, 'Nano Crystal (Engulf in Flame)', 42449, 45915, 'Engulf in Flame', 45180, 147737, 146237, 149237, 149, + 'Crystal', 'Nukes', 'Medium_3s~2s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'Mission Reward'), + (45992, 'Nano Crystal (Eroding Spray)', 12257, 45916, 'Eroding Spray', 39794, 147742, 146242, 149242, 76, + 'Crystal', 'Nukes', 'Fast_1s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'RK Store'), + (45993, 'Nano Crystal (Expanding Neutron Pulse)', 12257, 45917, 'Expanding Neutron Pulse', 39790, 147744, 146244, + 149244, 70, 'Crystal', 'Nukes', 'AoE_Nuke', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'RK Store'), + (45994, 'Nano Crystal (Feeble Blade Chaos)', 12224, 45918, 'Feeble Blade Chaos', 45182, 147747, 146247, 149247, + 7, 'Crystal', 'Nukes', 'Medium_3s~2s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'RK Store'), + (45995, 'Nano Crystal (Ferocious Impactor Missile)', 42449, 45919, 'Ferocious Impactor Missile', 45186, 147752, + 146252, 149252, 162, 'Crystal', 'Nukes', 'Medium_3s~2s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', + 'Mission Reward'), + (45996, 'Nano Crystal (Chilling Stream)', 12224, 45936, 'Chilling Stream', 45170, 147693, 146193, 149193, 33, + 'Crystal', 'Nukes', 'Fast_1s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'RK Store'), + (45997, 'Nano Crystal (Circle Scythe)', 12257, 45937, 'Circle Scythe', 39784, 147695, 146195, 149195, 60, + 'Crystal', 'Nukes', 'AoE_Nuke', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'RK Store'), + (45998, 'Nano Crystal (Condensed Halon Jet)', 12224, 45931, 'Condensed Halon Jet', 45170, 147704, 146204, 149204, + 30, 'Crystal', 'Nukes', 'Medium_3s~2s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'RK Store'), + (45999, 'Nano Crystal (Condensed Pellet of Fire)', 12257, 45932, 'Condensed Pellet of Fire', 39806, 147705, + 146205, 149205, 99, 'Crystal', 'Nukes', 'Fast_1s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'RK Store'), + (46000, 'Nano Crystal (Convergent Energy Beam)', 12257, 45933, 'Convergent Energy Beam', 39803, 147708, 146208, + 149208, 76, 'Crystal', 'Nukes', 'Medium_3s~2s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'RK Store'), + (46001, 'Nano Crystal (Crystalizing Ray)', 42449, 45934, 'Crystalizing Ray', 39797, 147718, 146218, 149218, 103, + 'Crystal', 'Nukes', 'Medium_3s~2s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'RK Store'), + (46002, 'Nano Crystal (Augmented Energized Beam)', 12224, 45938, 'Augmented Energized Beam', 39802, 147663, + 146163, 149163, 50, 'Crystal', 'Nukes', 'Medium_3s~2s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'RK Store'), + (46003, 'Nano Crystal (Bane of the Living)', 42449, 45939, 'Bane of the Living', 39801, 147666, 146166, 149166, + 113, 'Crystal', 'Nukes', 'Medium_3s~2s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'RK Store'), + (46004, 'Nano Crystal (Barrage of Blades)', 12257, 45940, 'Barrage of Blades', 39785, 147667, 146167, 149167, 96, + 'Crystal', 'Nukes', 'AoE_Nuke', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'RK Store'), + (46005, 'Nano Crystal (Basic Crystalizing Ray)', 12257, 45941, 'Basic Crystalizing Ray', 39797, 147669, 146169, + 149169, 73, 'Crystal', 'Nukes', 'Medium_3s~2s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'RK Store'), + (46006, 'Nano Crystal (Blade Chaos)', 12257, 45942, 'Blade Chaos', 39809, 147673, 146173, 149173, 86, 'Crystal', + 'Nukes', 'Medium_3s~2s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'RK Store'), + (46007, 'Nano Crystal (Brief Poison Fog)', 12224, 45943, 'Brief Poison Fog', 45149, 147679, 146179, 149179, 24, + 'Crystal', 'Nukes', 'AoE_Nuke', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'RK Store'), + (46008, 'Nano Crystal (Burn from Within)', 12257, 45935, 'Burn From Within', 39806, 147682, 146182, 149182, 93, + 'Crystal', 'Nukes', 'Medium_3s~2s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'RK Store'), + (46009, 'Nano Crystal (Upgraded Android)', 12225, 45675, 'Upgraded Android', 16307, 147485, 145985, 148985, 37, + 'Crystal', 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'RK Store'), + (46010, 'Nano Crystal (Upgraded Automaton)', 12225, 45676, 'Upgraded Automaton', 16307, 147486, 145986, 148986, + 10, 'Crystal', 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'RK Store'), + (46011, 'Nano Crystal (Upgraded Gladiatorbot)', 12258, 45664, 'Upgraded Gladiatorbot', 44139, 147487, 145987, + 148987, 76, 'Crystal', 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'RK Store'), + (46012, 'Nano Crystal (Upgraded Guardbot)', 42450, 45665, 'Upgraded Guardbot', 44140, 147488, 145988, 148988, + 113, 'Crystal', 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'RK Store'), + (46013, 'Nano Crystal (Upgraded Warbot)', 42450, 45666, 'Upgraded Warbot', 44140, 147489, 145989, 148989, 149, + 'Crystal', 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'Mission Reward'), + (46014, 'Nano Crystal (Upgraded Warmachine)', 42450, 45667, 'Upgraded Warmachine', 44135, 147490, 145990, 148990, + 169, 'Crystal', 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'Mission Reward'), + (46015, 'Nano Crystal (Warbot)', 42450, 45668, 'Warbot', 44140, 147491, 145991, 148991, 149, 'Crystal', 'Pet', + 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'Mission Reward'), + (46016, 'Nano Crystal (Warmachine)', 42450, 45669, 'Warmachine', 44135, 147492, 145992, 148992, 165, 'Crystal', + 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'Mission Reward'), + (46017, 'Nano Crystal (Reactivated Wardroid)', 42450, 45679, 'Reactivated Wardroid', 44135, 147457, 145957, + 148957, 182, 'Crystal', 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'Mission Reward'), + (46018, 'Nano Crystal (Semi-Sentient Android)', 12225, 45680, 'Semi-Sentient Android', 44139, 147462, 145962, + 148962, 43, 'Crystal', 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'RK Store'), + (46019, 'Nano Crystal (Semi-Sentient Automaton)', 12225, 45681, 'Semi-Sentient Automaton', 16307, 147463, 145963, + 148963, 17, 'Crystal', 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'RK Store'), + (46020, 'Nano Crystal (Semi-Sentient Gladiatorbot)', 12258, 45682, 'Semi-Sentient Gladiatorbot', 44139, 147464, + 145964, 148964, 86, 'Crystal', 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'RK Store'), + (46021, 'Nano Crystal (Semi-Sentient Guardbot)', 42450, 45683, 'Semi-Sentient Guardbot', 44140, 147465, 145965, + 148965, 123, 'Crystal', 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'Mission Reward'), + (46022, 'Nano Crystal (Semi-Sentient Warbot)', 42450, 45684, 'Semi-Sentient Warbot', 44140, 147466, 145966, + 148966, 156, 'Crystal', 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'Mission Reward'), + (46023, 'Nano Crystal (Semi-Sentient Wardroid)', 42450, 45685, 'Semi-Sentient Wardroid', 44135, 147467, 145967, + 148967, 182, 'Crystal', 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'Mission Reward'), + (46024, 'Nano Crystal (Semi-Sentient Warmachine)', 42450, 45670, 'Semi-Sentient Warmachine', 44135, 147468, + 145968, 148968, 175, 'Crystal', 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'Mission Reward'), + (46025, 'Nano Crystal (Slayerdroid Guardian)', 42450, 45671, 'Slayerdroid Guardian', 44135, 147470, 145970, + 148970, 189, 'Crystal', 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'Mission Reward'), + (46026, 'Nano Crystal (Slayerdroid Protector)', 42450, 45672, 'Slayerdroid Protector', 44135, 147471, 145971, + 148971, 185, 'Crystal', 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'Mission Reward'), + (46027, 'Nano Crystal (Slayerdroid Sentinel)', 42450, 45673, 'Slayerdroid Sentinel', 44135, 147472, 145972, + 148972, 189, 'Crystal', 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'Mission Reward'), + (46028, 'Nano Crystal (Slayerdroid Warden)', 42450, 45674, 'Slayerdroid Warden', 44135, 147474, 145974, 148974, + 185, 'Crystal', 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'Mission Reward'), + (46029, 'Nano Crystal (Lesser Warbot)', 42450, 45687, 'Lesser Warbot', 44140, 147428, 145928, 148928, 136, + 'Crystal', 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'Mission Reward'), + (46030, 'Nano Crystal (Lesser Warmachine)', 42450, 45688, 'Lesser Warmachine', 44140, 147429, 145929, 148929, + 159, 'Crystal', 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'Mission Reward'), + (46031, 'Nano Crystal (Military-Grade Warbot)', 42450, 45689, 'Military-Grade Warbot', 44140, 147430, 145930, + 148930, 156, 'Crystal', 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'Mission Reward'), + (46032, 'Nano Crystal (Military-Grade Warmachine)', 42450, 45690, 'Military-Grade Warmachine', 44135, 147431, + 145931, 148931, 175, 'Crystal', 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'Mission Reward'), + (46033, 'Nano Crystal (Patchwork Android)', 12225, 45691, 'Patchwork Android', 16307, 147434, 145934, 148934, 20, + 'Crystal', 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'RK Store'), + (46034, 'Nano Crystal (Patchwork Automaton)', 12225, 45692, 'Patchwork Automaton', 16307, 147435, 145935, 148935, + 1, 'Crystal', 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'Arete Nano Container'), + (46035, 'Nano Crystal (Patchwork Gladiatorbot)', 12225, 45693, 'Patchwork Gladiatorbot', 44139, 147436, 145936, + 148936, 50, 'Crystal', 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'RK Store'), + (46036, 'Nano Crystal (Patchwork Guardbot)', 12258, 45694, 'Patchwork Guardbot', 44139, 147437, 145937, 148937, + 90, 'Crystal', 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'RK Store'), + (46037, 'Nano Crystal (Patchwork Warbot)', 42450, 45695, 'Patchwork Warbot', 44140, 147438, 145938, 148938, 132, + 'Crystal', 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'Mission Reward'), + (46038, 'Nano Crystal (Patchwork Warmachine)', 42450, 45696, 'Patchwork Warmachine', 44140, 147439, 145939, + 148939, 159, 'Crystal', 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'Mission Reward'), + (46039, 'Nano Crystal (Perfect Android)', 12225, 45697, 'Perfected Android', 44139, 147441, 145941, 148941, 40, + 'Crystal', 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'RK Store'), + (46040, 'Nano Crystal (Perfected Automaton)', 12225, 45698, 'Perfected Automaton', 16307, 147442, 145942, 148942, + 14, 'Crystal', 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'RK Store'), + (46041, 'Nano Crystal (Perfected Gladiatorbot)', 12258, 45699, 'Perfected Gladiatorbot', 44139, 147444, 145944, + 148944, 83, 'Crystal', 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'RK Store'), + (46042, 'Nano Crystal (Perfected Guardbot)', 42450, 45700, 'Perfected Guardbot', 44140, 147445, 145945, 148945, + 119, 'Crystal', 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'RK Store'), + (46043, 'Nano Crystal (Perfected Warbot)', 42450, 45677, 'Perfected Warbot', 44140, 147448, 145948, 148948, 152, + 'Crystal', 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'Mission Reward'), + (46044, 'Nano Crystal (Perfected Warmachine)', 42450, 45678, 'Perfected Warmachine', 44135, 147449, 145949, + 148949, 172, 'Crystal', 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'Mission Reward'), + (46045, 'Nano Crystal (Flawed Automaton)', 12225, 45718, 'Flawed Automaton', 16307, 147392, 145892, 148892, 4, + 'Crystal', 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'Arete Nano Container'), + (46046, 'Nano Crystal (Flawed Gladiatorbot)', 12258, 45719, 'Flawed Gladiatorbot', 44139, 147395, 145895, 148895, + 63, 'Crystal', 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'RK Store'), + (46047, 'Nano Crystal (Flawed Guardbot)', 12258, 45720, 'Flawed Guardbot', 44139, 147396, 145896, 148896, 99, + 'Crystal', 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'RK Store'), + (46048, 'Nano Crystal (Flawed Warbot)', 42450, 45721, 'Flawed Warbot', 44140, 147399, 145899, 148899, 146, + 'Crystal', 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'Mission Reward'), + (46049, 'Nano Crystal (Flawed Warmachine)', 42450, 45722, 'Flawed Warmachine', 44135, 147400, 145900, 148900, + 162, 'Crystal', 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'Mission Reward'), + (46050, 'Nano Crystal (Gladiatorbot)', 12258, 45701, 'Gladiatorbot', 44139, 147403, 145903, 148903, 70, + 'Crystal', 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'RK Store'), + (46051, 'Nano Crystal (Guardbot)', 42450, 45702, 'Guardbot', 44139, 147407, 145907, 148907, 109, 'Crystal', + 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'RK Store'), + (46052, 'Nano Crystal (Inferior Android)', 12225, 45703, 'Inferior Android', 16307, 147411, 145911, 148911, 24, + 'Crystal', 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'RK Store'), + (46053, 'Nano Crystal (Inferior Automaton)', 12225, 45704, 'Inferior Automaton', 16307, 147412, 145912, 148912, + 4, 'Crystal', 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'SL Static (as Shadow Crystal)'), + (46054, 'Nano Crystal (Inferior Gladiatorbot)', 12258, 45705, 'Inferior Gladiatorbot', 44139, 147413, 145913, + 148913, 57, 'Crystal', 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'RK Store'), + (46055, 'Nano Crystal (Inferior Guardbot)', 12258, 45706, 'Inferior Guardbot', 44139, 147414, 145914, 148914, 96, + 'Crystal', 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'RK Store'), + (46056, 'Nano Crystal (Inferior Warbot)', 42450, 45707, 'Inferior Warbot', 44140, 147415, 145915, 148915, 139, + 'Crystal', 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'Mission Reward'), + (46057, 'Nano Crystal (Inferior Warmachine)', 42450, 45708, 'Inferior Warmachine', 44135, 147416, 145916, 148916, + 162, 'Crystal', 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'Mission Reward'), + (46058, 'Nano Crystal (Lesser Android)', 12225, 45709, 'Lesser Android', 16307, 147418, 145918, 148918, 24, + 'Crystal', 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'RK Store'), + (46059, 'Nano Crystal (Lesser Automaton)', 12225, 45710, 'Lesser Automaton', 16307, 147419, 145919, 148919, 4, + 'Crystal', 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'RK Store'), + (46060, 'Nano Crystal (Lesser Gladiatorbot)', 12258, 45711, 'Lesser Gladiatorbot', 44139, 147422, 145922, 148922, + 53, 'Crystal', 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'RK Store'), + (46061, 'Nano Crystal (Lesser Guardbot)', 12258, 45686, 'Lesser Guardbot', 44139, 147423, 145923, 148923, 93, + 'Crystal', 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'RK Store'), + (46062, 'Nano Crystal (Decommissioned Wardroid)', 42450, 45729, 'Decommissioned Wardroid', 44135, 147376, 145876, + 148876, 179, 'Crystal', 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'Mission Reward'), + (46063, 'Nano Crystal (Feeble Android)', 12225, 45712, 'Feeble Android', 16307, 147384, 145884, 148884, 20, + 'Crystal', 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'RK Store'), + (46064, 'Nano Crystal (Feeble Gladiatorbot)', 12225, 45713, 'Feeble Gladiatorbot', 44139, 147386, 145886, 148886, + 47, 'Crystal', 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'RK Store'), + (46065, 'Nano Crystal (Feeble Guardbot)', 12258, 45714, 'Feeble Guardbot', 44139, 147387, 145887, 148887, 90, + 'Crystal', 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'RK Store'), + (46066, 'Nano Crystal (Feeble Warbot)', 42450, 45715, 'Feeble Warbot', 44140, 147388, 145888, 148888, 129, + 'Crystal', 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'Mission Reward'), + (46067, 'Nano Crystal (Feeble Warmachine)', 42450, 45716, 'Feeble Warmachine', 44140, 147389, 145889, 148889, + 156, 'Crystal', 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'Mission Reward'), + (46068, 'Nano Crystal (Flawed Android)', 12225, 45717, 'Flawed Android', 16307, 147391, 145891, 148891, 27, + 'Crystal', 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'RK Store'), + (46069, 'Nano Crystal (Advanced Gladiatorbot)', 12258, 45732, 'Advanced Gladiatorbot', 44139, 147353, 145853, + 148853, 80, 'Crystal', 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'RK Store'), + (46070, 'Nano Crystal (Advanced Guardbot)', 42450, 45733, 'Advanced Guardbot', 44140, 147354, 145854, 148854, + 116, 'Crystal', 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'RK Store'), + (46071, 'Nano Crystal (Advanced Warbot)', 42450, 45734, 'Advanced Warbot', 44140, 147357, 145857, 148857, 152, + 'Crystal', 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'Mission Reward'), + (46072, 'Nano Crystal (Advanced Warmachine)', 42450, 45735, 'Advanced Warmachine', 44135, 147358, 145858, 148858, + 169, 'Crystal', 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'Mission Reward'), + (46073, 'Nano Crystal (Android)', 12225, 45736, 'Android', 16307, 147360, 145860, 148860, 33, 'Crystal', 'Pet', + 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'RK Store'), + (46074, 'Nano Crystal (Automaton)', 12225, 45737, 'Automaton', 16307, 147362, 145862, 148862, 7, 'Crystal', + 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'RK Store'), + (46075, 'Nano Crystal (Common Android)', 12225, 45723, 'Common Android', 16307, 147368, 145868, 148868, 30, + 'Crystal', 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'RK Store'), + (46076, 'Nano Crystal (Common Automaton)', 12225, 45724, 'Common Automaton', 16307, 147369, 145869, 148869, 7, + 'Crystal', 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'SL Static (as Shadow Crystal)'), + (46077, 'Nano Crystal (Common Gladiatorbot)', 12258, 45725, 'Common Gladiatorbot', 44139, 147370, 145870, 148870, + 66, 'Crystal', 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'RK Store'), + (46078, 'Nano Crystal (Common Guardbot)', 42450, 45726, 'Common Guardbot', 44139, 147371, 145871, 148871, 103, + 'Crystal', 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'RK Store'), + (46079, 'Nano Crystal (Common Warbot)', 42450, 45727, 'Common Warbot', 44140, 147372, 145872, 148872, 146, + 'Crystal', 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'Mission Reward'), + (46080, 'Nano Crystal (Common Warmachine)', 42450, 45728, 'Common Warmachine', 44135, 147373, 145873, 148873, + 165, 'Crystal', 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'Mission Reward'), + (46081, 'Nano Crystal (Advanced Android)', 12225, 45730, 'Advanced Android', 16307, 147349, 145849, 148849, 40, + 'Crystal', 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'RK Store'), + (46082, 'Nano Crystal (Advanced Automaton)', 12225, 45731, 'Advanced Automaton', 16307, 147350, 145850, 148850, + 14, 'Crystal', 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'RK Store'), + (46413, 'Nano Crystal (Supervisor-Grade Worker-Droid)', 12225, 46351, 'Supervisor-Grade Worker-Droid', 16307, + 147061, 145561, 148561, 7, 'Crystal', 'Pets', 'Robot', 0, '', 0, 0, 0, 0, 0, 'Bureaucrat', + 'SL Static (as Shadow Crystal)'), + (46414, 'Nano Crystal (Supervisor-Grade Administrator-Droid)', 42450, 46352, + 'Supervisor-Grade Administrator-Droid', 44140, 147053, 145553, 148553, 136, 'Crystal', 'Pets', 'Robot', 0, '', + 0, 0, 0, 0, 0, 'Bureaucrat', 'Mission Reward'), + (46415, 'Nano Crystal (Supervisor-Grade Aide-Droid)', 12258, 46353, 'Supervisor-Grade Aide-Droid', 44140, 147054, + 145554, 148554, 83, 'Crystal', 'Pets', 'Robot', 0, '', 0, 0, 0, 0, 0, 'Bureaucrat', 'RK Store'), + (46416, 'Nano Crystal (Supervisor-Grade Assistant-Droid)', 12258, 46354, 'Supervisor-Grade Assistant-Droid', + 44139, 147055, 145555, 148555, 60, 'Crystal', 'Pets', 'Robot', 0, '', 0, 0, 0, 0, 0, 'Bureaucrat', 'RK Store'), + (46417, 'Nano Crystal (Supervisor-Grade Attendant-Droid)', 12225, 46355, 'Supervisor-Grade Attendant-Droid', + 44139, 147056, 145556, 148556, 37, 'Crystal', 'Pets', 'Robot', 0, '', 0, 0, 0, 0, 0, 'Bureaucrat', 'RK Store'), + (46418, 'Nano Crystal (Supervisor-Grade Bodyguard)', 42450, 46356, 'Supervisor-Grade Bodyguard', 44135, 147057, + 145557, 148557, 165, 'Crystal', 'Pets', 'Robot', 0, '', 0, 0, 0, 0, 0, 'Bureaucrat', 'Mission Reward'), + (46419, 'Nano Crystal (Supervisor-Grade Helper-Droid)', 12225, 46357, 'Supervisor-Grade Helper-Droid', 16307, + 147058, 145558, 148558, 20, 'Crystal', 'Pets', 'Robot', 0, '', 0, 0, 0, 0, 0, 'Bureaucrat', 'RK Store'), + (46420, 'Nano Crystal (Supervisor-Grade Minion)', 42450, 46358, 'Supervisor-Grade Minion', 44135, 147059, 145559, + 148559, 152, 'Crystal', 'Pets', 'Robot', 0, '', 0, 0, 0, 0, 0, 'Bureaucrat', 'Mission Reward'), + (46421, 'Nano Crystal (Supervisor-Grade Secretary-Droid)', 42450, 46350, 'Supervisor-Grade Secretary-Droid', + 44140, 147060, 145560, 148560, 113, 'Crystal', 'Pets', 'Robot', 0, '', 0, 0, 0, 0, 0, 'Bureaucrat', 'RK Store'), + (46422, 'Nano Crystal (Limited Administrator-Droid)', 42450, 46364, 'Limited Administrator-Droid', 44140, 147009, + 145509, 148509, 132, 'Crystal', 'Pets', 'Robot', 0, '', 0, 0, 0, 0, 0, 'Bureaucrat', 'Mission Reward'), + (46423, 'Nano Crystal (Limited Aide-Droid)', 12258, 46365, 'Limited Aide-Droid', 44139, 147010, 145510, 148510, + 73, 'Crystal', 'Pets', 'Robot', 0, '', 0, 0, 0, 0, 0, 'Bureaucrat', 'RK Store'), + (46424, 'Nano Crystal (Limited Assistant-Droid)', 12225, 46366, 'Limited Assistant-Droid', 44139, 147011, 145511, + 148511, 50, 'Crystal', 'Pets', 'Robot', 0, '', 0, 0, 0, 0, 0, 'Bureaucrat', 'RK Store'), + (46425, 'Nano Crystal (Limited Attendant-Droid)', 12225, 46367, 'Limited Attendant-Droid', 16307, 147012, 145512, + 148512, 30, 'Crystal', 'Pets', 'Robot', 0, '', 0, 0, 0, 0, 0, 'Bureaucrat', 'RK Store'), + (46426, 'Nano Crystal (Limited Bodyguard)', 42450, 46368, 'Limited Bodyguard', 44135, 147013, 145513, 148513, + 162, 'Crystal', 'Pets', 'Robot', 0, '', 0, 0, 0, 0, 0, 'Bureaucrat', 'Mission Reward'), + (46427, 'Nano Crystal (Limited Helper-bot)', 12225, 46359, 'Limited Helper-Bot', 16307, 147014, 145514, 148514, + 17, 'Crystal', 'Pets', 'Robot', 0, '', 0, 0, 0, 0, 0, 'Bureaucrat', 'RK Store'), + (46428, 'Nano Crystal (Limited Minion)', 42450, 46360, 'Limited Minion', 44135, 147015, 145515, 148515, 146, + 'Crystal', 'Pets', 'Robot', 0, '', 0, 0, 0, 0, 0, 'Bureaucrat', 'Mission Reward'), + (46429, 'Nano Crystal (Limited Secretary-Droid)', 12258, 46361, 'Limited Secretary-Droid', 44140, 147016, 145516, + 148516, 99, 'Crystal', 'Pets', 'Robot', 0, '', 0, 0, 0, 0, 0, 'Bureaucrat', 'RK Store'), + (46430, 'Nano Crystal (Limited Worker-Droid)', 12225, 46362, 'Limited Worker-Droid', 16307, 147017, 145517, + 148517, 1, 'Crystal', 'Pets', 'Robot', 0, '', 0, 0, 0, 0, 0, 'Bureaucrat', 'Arete Nano Container'), + (46431, 'Nano Crystal (Faithful Aide-Droid)', 12258, 46370, 'Faithful Aide-Droid', 44139, 146975, 145475, 148475, + 76, 'Crystal', 'Pets', 'Robot', 0, '', 0, 0, 0, 0, 0, 'Bureaucrat', 'RK Store'), + (46432, 'Nano Crystal (Faithful Assistant-Droid)', 12258, 46371, 'Faithful Assistant-Droid', 44139, 146976, + 145476, 148476, 53, 'Crystal', 'Pets', 'Robot', 0, '', 0, 0, 0, 0, 0, 'Bureaucrat', 'RK Store'), + (46433, 'Nano Crystal (Faithful Attendant-Droid)', 12225, 46372, 'Faithful Attendant-Droid', 44139, 146977, + 145477, 148477, 33, 'Crystal', 'Pets', 'Robot', 0, '', 0, 0, 0, 0, 0, 'Bureaucrat', 'RK Store'), + (46434, 'Nano Crystal (Faithful Bodyguard)', 42450, 46373, 'Faithful Bodyguard', 44135, 146978, 145478, 148478, + 162, 'Crystal', 'Pets', 'Robot', 0, '', 0, 0, 0, 0, 0, 'Bureaucrat', 'Mission Reward'), + (46435, 'Nano Crystal (Faithful Helper-Droid)', 12225, 46374, 'Faithful Helper-Droid', 16307, 146979, 145479, + 148479, 17, 'Crystal', 'Pets', 'Robot', 0, '', 0, 0, 0, 0, 0, 'Bureaucrat', 'RK Store'), + (46436, 'Nano Crystal (Faithful Minion)', 42450, 46375, 'Faithful Minion', 44135, 146980, 145480, 148480, 146, + 'Crystal', 'Pets', 'Robot', 0, '', 0, 0, 0, 0, 0, 'Bureaucrat', 'Mission Reward'), + (46437, 'Nano Crystal (Faithful Secretary-Droid)', 42450, 46376, 'Faithful Secretary-Droid', 44140, 146981, + 145481, 148481, 106, 'Crystal', 'Pets', 'Robot', 0, '', 0, 0, 0, 0, 0, 'Bureaucrat', 'RK Store'), + (46438, 'Nano Crystal (Faithful Worker-Droid)', 12225, 46363, 'Faithful Worker-Droid', 16307, 146982, 145482, + 148482, 4, 'Crystal', 'Pets', 'Robot', 0, '', 0, 0, 0, 0, 0, 'Bureaucrat', 'Arete Nano Container'), + (46439, 'Nano Crystal (Executive-Grade Administrator-Droid)', 42450, 46377, + 'Executive-Grade Administrator-Droid', 44140, 146964, 145464, 148464, 139, 'Crystal', 'Pets', 'Robot', 0, '', 0, + 0, 0, 0, 0, 'Bureaucrat', 'Mission Reward'), + (46440, 'Nano Crystal (Executive-Grade Aide-Droid)', 12258, 46378, 'Executive-Grade Aide-Droid', 44140, 146965, + 145465, 148465, 86, 'Crystal', 'Pets', 'Robot', 0, '', 0, 0, 0, 0, 0, 'Bureaucrat', 'RK Store'), + (46441, 'Nano Crystal (Executive-Grade Assistant-Droid)', 12258, 46379, 'Executive-Grade Assistant-Droid', 44139, + 146966, 145466, 148466, 63, 'Crystal', 'Pets', 'Robot', 0, '', 0, 0, 0, 0, 0, 'Bureaucrat', 'RK Store'), + (46442, 'Nano Crystal (Executive-Grade Attendant-Droid)', 12225, 46380, 'Executive-Grade Attendant-Droid', 44139, + 146967, 145467, 148467, 40, 'Crystal', 'Pets', 'Robot', 0, '', 0, 0, 0, 0, 0, 'Bureaucrat', 'RK Store'), + (46443, 'Nano Crystal (Executive-Grade Bodyguard)', 42450, 46381, 'Executive-Grade Bodyguard', 44135, 146968, + 145468, 148468, 169, 'Crystal', 'Pets', 'Robot', 0, '', 0, 0, 0, 0, 0, 'Bureaucrat', 'Mission Reward'), + (46444, 'Nano Crystal (Executive-Grade Helper-Droid)', 12225, 46382, 'Executive-Grade Helper-Droid', 16307, + 146969, 145469, 148469, 24, 'Crystal', 'Pets', 'Robot', 0, '', 0, 0, 0, 0, 0, 'Bureaucrat', 'RK Store'), + (46445, 'Nano Crystal (Executive-Grade Minion)', 42450, 46383, 'Executive-Grade Minion', 44135, 146970, 145470, + 148470, 152, 'Crystal', 'Pets', 'Robot', 0, '', 0, 0, 0, 0, 0, 'Bureaucrat', 'Mission Reward'), + (46446, 'Nano Crystal (Executive-Grade Secretary-Droid)', 42450, 46384, 'Executive-Grade Secretary-Droid', 44140, + 146971, 145471, 148471, 119, 'Crystal', 'Pets', 'Robot', 0, '', 0, 0, 0, 0, 0, 'Bureaucrat', 'RK Store'), + (46447, 'Nano Crystal (Executive-Grade Worker-Droid)', 12225, 46385, 'Executive-Grade Worker-Droid', 16307, + 146972, 145472, 148472, 10, 'Crystal', 'Pets', 'Robot', 0, '', 0, 0, 0, 0, 0, 'Bureaucrat', + 'SL Static (as Shadow Crystal)'), + (46448, 'Nano Crystal (Faithful Administrator-Droid)', 42450, 46369, 'Faithful Administrator-Droid', 44140, + 146974, 145474, 148474, 132, 'Crystal', 'Pets', 'Robot', 0, '', 0, 0, 0, 0, 0, 'Bureaucrat', 'Mission Reward'), + (46449, 'Nano Crystal (Director-Grade Attendant-Droid)', 12225, 46390, 'Director-Grade Attendant-Droid', 44139, + 146942, 145442, 148442, 43, 'Crystal', 'Pets', 'Robot', 0, '', 0, 0, 0, 0, 0, 'Bureaucrat', 'RK Store'), + (46450, 'Nano Crystal (Director-Grade Bodyguard)', 42450, 46391, 'Director-Grade Bodyguard', 44135, 146943, + 145443, 148443, 169, 'Crystal', 'Pets', 'Robot', 0, '', 0, 0, 0, 0, 0, 'Bureaucrat', 'Mission Reward'), + (46451, 'Nano Crystal (Director-Grade Helper-Droid)', 12225, 46392, 'Director-Grade Helper-Droid', 16307, 146944, + 145444, 148444, 27, 'Crystal', 'Pets', 'Robot', 0, '', 0, 0, 0, 0, 0, 'Bureaucrat', 'RK Store'), + (46452, 'Nano Crystal (Director-Grade Minion)', 42450, 46393, 'Director-Grade Minion', 44135, 146945, 145445, + 148445, 156, 'Crystal', 'Pets', 'Robot', 0, '', 0, 0, 0, 0, 0, 'Bureaucrat', 'Mission Reward'), + (46453, 'Nano Crystal (Director-Grade Secretary-Droid)', 42450, 46394, 'Director-Grade Secretary-Droid', 44140, + 146946, 145446, 148446, 123, 'Crystal', 'Pets', 'Robot', 0, '', 0, 0, 0, 0, 0, 'Bureaucrat', 'Mission Reward'), + (46454, 'Nano Crystal (Director-Grade Worker-Droid)', 12225, 46386, 'Director-Grade Worker-Droid', 16307, 146947, + 145447, 148447, 14, 'Crystal', 'Pets', 'Robot', 0, '', 0, 0, 0, 0, 0, 'Bureaucrat', 'RK Store'), + (46455, 'Nano Crystal (Basic Secretary-Droid)', 12258, 46396, 'Basic Secretary-Droid', 44140, 146921, 145421, + 148421, 96, 'Crystal', 'Pets', 'Robot', 0, '', 0, 0, 0, 0, 0, 'Bureaucrat', 'RK Store'), + (46456, 'Nano Crystal (Basic Worker-Droid)', 12225, 46397, 'Basic Worker-Droid', 16307, 146922, 145422, 148422, + 1, 'Crystal', 'Pets', 'Robot', 0, '', 0, 0, 0, 0, 0, 'Bureaucrat', 'RK Store'), + (46457, 'Nano Crystal (Director-Grade Administrator-Droid)', 42450, 46387, 'Director-Grade Administrator-Droid', + 44135, 146939, 145439, 148439, 142, 'Crystal', 'Pets', 'Robot', 0, '', 0, 0, 0, 0, 0, 'Bureaucrat', + 'Mission Reward'), + (46458, 'Nano Crystal (Director-Grade Aide-Droid)', 12258, 46388, 'Director-Grade Aide-Droid', 44140, 146940, + 145440, 148440, 90, 'Crystal', 'Pets', 'Robot', 0, '', 0, 0, 0, 0, 0, 'Bureaucrat', 'RK Store'), + (46459, 'Nano Crystal (Director-Grade Assistant-Droid)', 12258, 46389, 'Director-Grade Assistant-Droid', 44139, + 146941, 145441, 148441, 66, 'Crystal', 'Pets', 'Robot', 0, '', 0, 0, 0, 0, 0, 'Bureaucrat', 'RK Store'), + (46460, 'Nano Crystal (Advanced Minion)', 42450, 46412, 'Advanced Minion', 44135, 146908, 145408, 148408, 149, + 'Crystal', 'Pets', 'Robot', 0, '', 0, 0, 0, 0, 0, 'Bureaucrat', 'Mission Reward'), + (46461, 'Nano Crystal (Advanced Secretary-Droid)', 42450, 46398, 'Advanced Secretary-Droid', 44140, 146909, + 145409, 148409, 109, 'Crystal', 'Pets', 'Robot', 0, '', 0, 0, 0, 0, 0, 'Bureaucrat', 'RK Store'), + (46462, 'Nano Crystal (Advanced Worker)', 12225, 46399, 'Advanced Worker', 16307, 146910, 145410, 148410, 7, + 'Crystal', 'Pets', 'Robot', 0, '', 0, 0, 0, 0, 0, 'Bureaucrat', 'RK Store'), + (46463, 'Nano Crystal (Basic Administrator)', 42450, 46400, 'Basic Administrator', 44140, 146914, 145414, 148414, + 129, 'Crystal', 'Pets', 'Robot', 0, '', 0, 0, 0, 0, 0, 'Bureaucrat', 'Mission Reward'), + (46464, 'Nano Crystal (Basic Aide-Droid)', 12258, 46401, 'Basic Aide-Droid', 44139, 146915, 145415, 148415, 70, + 'Crystal', 'Pets', 'Robot', 0, '', 0, 0, 0, 0, 0, 'Bureaucrat', 'RK Store'), + (46465, 'Nano Crystal (Basic Assistant-Droid)', 12225, 46402, 'Basic Assistant-Droid', 44139, 146916, 145416, + 148416, 47, 'Crystal', 'Pets', 'Robot', 0, '', 0, 0, 0, 0, 0, 'Bureaucrat', 'RK Store'), + (46466, 'Nano Crystal (Basic Attendant-Droid)', 12225, 46403, 'Basic Attendant-Droid', 16307, 146917, 145417, + 148417, 27, 'Crystal', 'Pets', 'Robot', 0, '', 0, 0, 0, 0, 0, 'Bureaucrat', 'RK Store'), + (46467, 'Nano Crystal (Basic Bodyguard)', 42450, 46404, 'Basic Bodyguard', 44135, 146918, 145418, 148418, 159, + 'Crystal', 'Pets', 'Robot', 0, '', 0, 0, 0, 0, 0, 'Bureaucrat', 'Mission Reward'), + (46468, 'Nano Crystal (Basic Helper-Droid)', 12225, 46405, 'Basic Helper-Droid', 16307, 146919, 145419, 148419, + 14, 'Crystal', 'Pets', 'Robot', 0, '', 0, 0, 0, 0, 0, 'Bureaucrat', 'RK Store'), + (46469, 'Nano Crystal (Basic Minion)', 42450, 46395, 'Basic Minion', 44135, 146920, 145420, 148420, 142, + 'Crystal', 'Pets', 'Robot', 0, '', 0, 0, 0, 0, 0, 'Bureaucrat', 'Mission Reward'), + (46470, 'Nano Crystal (Advanced Administrator-Droid)', 42450, 46406, 'Advanced Administrator-Droid', 44140, + 146902, 145402, 148402, 136, 'Crystal', 'Pets', 'Robot', 0, '', 0, 0, 0, 0, 0, 'Bureaucrat', 'Mission Reward'), + (46471, 'Nano Crystal (Advanced Aide-Droid)', 12258, 46407, 'Advanced Aide-Droid', 44139, 146903, 145403, 148403, + 80, 'Crystal', 'Pets', 'Robot', 0, '', 0, 0, 0, 0, 0, 'Bureaucrat', 'RK Store'), + (46472, 'Nano Crystal (Advanced Assistant-Droid)', 12258, 46408, 'Advanced Assistant-Droid', 44139, 146904, + 145404, 148404, 57, 'Crystal', 'Pets', 'Robot', 0, '', 0, 0, 0, 0, 0, 'Bureaucrat', 'RK Store'), + (46473, 'Nano Crystal (Advanced Attendant-Droid)', 12225, 46409, 'Advanced Attendant-Droid', 44139, 146905, + 145405, 148405, 37, 'Crystal', 'Pets', 'Robot', 0, '', 0, 0, 0, 0, 0, 'Bureaucrat', 'RK Store'), + (46474, 'Nano Crystal (Advanced Bodyguard)', 42450, 46410, 'Advanced Bodyguard', 44135, 146906, 145406, 148406, + 165, 'Crystal', 'Pets', 'Robot', 0, '', 0, 0, 0, 0, 0, 'Bureaucrat', 'Mission Reward'), + (46475, 'Nano Crystal (Advanced Helper)', 12225, 46411, 'Advanced Helper', 16307, 146907, 145407, 148407, 20, + 'Crystal', 'Pets', 'Robot', 0, '', 0, 0, 0, 0, 0, 'Bureaucrat', 'RK Store'), + (49812, 'Nano Crystal (Mighty Challenger to Titan)', 12258, 49748, 'Mighty Challenger to Titan', 38947, 147329, + 145829, 148829, 53, 'Crystal', 'Buffs', 'Challenger', 5, '', 0, 1, 0, 0, 0, 'Enforcer', 'RK Store'), + (49813, 'Nano Crystal (Mighty Challenger to Cyclops)', 12225, 49744, 'Mighty Challenger to Cyclops', 16241, + 147326, 145826, 148826, 24, 'Crystal', 'Buffs', 'Challenger', 5, '', 0, 1, 0, 0, 0, 'Enforcer', 'RK Store'), + (49814, 'Nano Crystal (Mighty Challenger to Gargantua)', 12258, 49751, 'Mighty Challenger to Gargantua', 39088, + 147327, 145827, 148827, 90, 'Crystal', 'Buffs', 'Challenger', 5, '', 0, 1, 0, 0, 0, 'Enforcer', 'RK Store'), + (49815, 'Nano Crystal (Mighty Challenger to Leviathan)', 42450, 49756, 'Mighty Challenger to Leviathan', 117925, + 147328, 145828, 148828, 136, 'Crystal', 'Buffs', 'Challenger', 5, '', 0, 1, 0, 0, 0, 'Enforcer', + 'Mission Reward'), + (49816, 'Nano Crystal (Mighty Challenger to Behemoth)', 42450, 49759, 'Mighty Challenger to Behemoth', 117926, + 147324, 145824, 148824, 149, 'Crystal', 'Buffs', 'Challenger', 5, '', 0, 1, 0, 0, 0, 'Enforcer', + 'Mission Reward'), + (49817, 'Nano Crystal (Mighty Challenger to Colossus)', 42450, 49753, 'Mighty Challenger to Colossus', 39228, + 147325, 145825, 148825, 129, 'Crystal', 'Buffs', 'Challenger', 5, '', 0, 1, 0, 0, 0, 'Enforcer', + 'Mission Reward'), + (49818, 'Nano Crystal (Challenger to Leviathan)', 42450, 49755, 'Challenger to Leviathan', 117925, 147293, + 145793, 148793, 132, 'Crystal', 'Buffs', 'Challenger', 5, '', 0, 1, 0, 0, 0, 'Enforcer', 'Mission Reward'), + (49819, 'Nano Crystal (Challenger to Titan)', 12225, 49746, 'Challenger to Titan', 38947, 147294, 145794, 148794, + 33, 'Crystal', 'Buffs', 'Challenger', 5, '', 0, 1, 0, 0, 0, 'Enforcer', 'RK Store'), + (49820, 'Nano Crystal (Challenger to Colossus)', 42450, 49750, 'Challenger to Colossus', 39228, 147290, 145790, + 148790, 103, 'Crystal', 'Buffs', 'Challenger', 5, '', 0, 1, 0, 0, 0, 'Enforcer', 'RK Store'), + (49821, 'Nano Crystal (Challenger to Cyclops)', 12225, 49742, 'Challenger to Cyclops', 16241, 147291, 145791, + 148791, 4, 'Crystal', 'Buffs', 'Challenger', 5, '', 0, 1, 0, 0, 0, 'Enforcer', 'RK Store'), + (49822, 'Nano Crystal (Challenger to Gargantua)', 12258, 49747, 'Challenger to Gargantua', 39088, 147292, 145792, + 148792, 66, 'Crystal', 'Buffs', 'Challenger', 5, '', 0, 1, 0, 0, 0, 'Enforcer', 'RK Store'), + (49823, 'Nano Crystal (Brave Challenger to Cyclops)', 12225, 49743, 'Brave Challenger to Cyclops', 16241, 147284, + 145784, 148784, 14, 'Crystal', 'Buffs', 'Challenger', 5, '', 0, 1, 0, 0, 0, 'Enforcer', 'RK Store'), + (49824, 'Nano Crystal (Challenger to Behemoth)', 42450, 49758, 'Challenger to Behemoth', 117926, 147289, 145789, + 148789, 139, 'Crystal', 'Buffs', 'Challenger', 5, '', 0, 1, 0, 0, 0, 'Enforcer', 'Mission Reward'), + (49825, 'Nano Crystal (Brave Challenger to Gargantua)', 12258, 49749, 'Brave Challenger to Gargantua', 39088, + 147281, 145781, 148781, 76, 'Crystal', 'Buffs', 'Challenger', 5, '', 0, 1, 0, 0, 0, 'Enforcer', 'RK Store'), + (49826, 'Nano Crystal (Brave Challenger to Leviathan)', 42450, 49754, 'Brave Challenger to Leviathan', 117925, + 147282, 145782, 148782, 132, 'Crystal', 'Buffs', 'Challenger', 5, '', 0, 1, 0, 0, 0, 'Enforcer', + 'Mission Reward'), + (49827, 'Nano Crystal (Brave Challenger to Titan)', 12225, 49745, 'Brave Challenger to Titan', 38947, 147283, + 145783, 148783, 40, 'Crystal', 'Buffs', 'Challenger', 5, '', 0, 1, 0, 0, 0, 'Enforcer', 'RK Store'), + (49828, 'Nano Crystal (Brave Challenger to Colossus)', 42450, 49752, 'Brave Challenger to Colossus', 39228, + 147280, 145780, 148780, 119, 'Crystal', 'Buffs', 'Challenger', 5, '', 0, 1, 0, 0, 0, 'Enforcer', 'RK Store'), + (49829, 'Nano Crystal (Brave Challenger to Behemoth)', 42450, 49757, 'Brave Challenger to Behemoth', 117926, + 147279, 145779, 148779, 142, 'Crystal', 'Buffs', 'Challenger', 5, '', 0, 1, 0, 0, 0, 'Enforcer', + 'Mission Reward'), + (55752, 'Nano Crystal (Coruscating Screen)', 42452, 55751, 'Coruscating Screen', 16221, 147295, 145795, 148795, + 146, 'Crystal', 'Buffs', 'Damage_Shields', 1, '', 0, 1, 0, 0, 0, 'Enforcer', 'Mission Reward'), + (55753, 'Nano Crystal (Screen of Blades)', 42452, 55750, 'Screen of Blades', 16221, 147340, 145840, 148840, 139, + 'Crystal', 'Buffs', 'Damage_Shields', 1, '', 0, 1, 0, 0, 0, 'Enforcer', 'Mission Reward'), + (55754, 'Nano Crystal (Lightning Shield)', 42452, 55749, 'Lightning Shield', 16221, 147322, 145822, 148822, 106, + 'Crystal', 'Buffs', 'Damage_Shields', 1, '', 0, 1, 0, 0, 0, 'Enforcer', 'RK Store'), + (55755, 'Nano Crystal (Barbaric Blades)', 12260, 55747, 'Barbaric Blades', 16221, 147277, 145777, 148777, 83, + 'Crystal', 'Buffs', 'Damage_Shields', 1, '', 0, 1, 0, 0, 0, 'Enforcer', 'RK Store'), + (55756, 'Nano Crystal (Glacial Cloak)', 42452, 55748, 'Glacial Cloak', 16221, 147315, 145815, 148815, 132, + 'Crystal', 'Buffs', 'Damage_Shields', 1, '', 0, 1, 0, 0, 0, 'Enforcer', 'Mission Reward'), + (55757, 'Nano Crystal (Poison Stingers)', 12227, 55746, 'Poison Stingers', 16221, 147335, 145835, 148835, 47, + 'Crystal', 'Buffs', 'Damage_Shields', 1, '', 0, 1, 0, 0, 0, 'Enforcer', 'RK Store'), + (55758, 'Nano Crystal (Bristling Guard)', 12260, 55745, 'Bristling Guard', 16221, 147285, 145785, 148785, 73, + 'Crystal', 'Buffs', 'Damage_Shields', 1, '', 0, 1, 0, 0, 0, 'Enforcer', 'RK Store'), + (55759, 'Nano Crystal (Field of Sparks)', 12227, 55744, 'Field of Sparks', 16221, 147311, 145811, 148811, 20, + 'Crystal', 'Buffs', 'Damage_Shields', 1, '', 0, 1, 0, 0, 0, 'Enforcer', 'RK Store'), + (55760, 'Nano Crystal (Arctic Cloak)', 12227, 55743, 'Arctic Cloak', 16221, 147274, 145774, 148774, 37, + 'Crystal', 'Buffs', 'Damage_Shields', 1, '', 0, 1, 0, 0, 0, 'Enforcer', 'RK Store'), + (55761, 'Nano Crystal (Bristling Shield)', 12227, 55742, 'Bristling Shield', 16221, 147286, 145786, 148786, 10, + 'Crystal', 'Buffs', 'Damage_Shields', 1, '', 0, 1, 0, 0, 0, 'Enforcer', 'RK Store'), + (55762, 'Nano Crystal (Avenging Shield)', 12227, 55741, 'Avenging Shield', 16221, 147275, 145775, 148775, 4, + 'Crystal', 'Buffs', 'Damage_Shields', 1, '', 0, 1, 0, 0, 0, 'Enforcer', 'RK Store'), + (55775, 'Nano Crystal (Electrical Chastiser)', 12227, 55774, 'Electrical Chastiser', 16221, 147378, 145878, + 148878, 24, 'Crystal', 'Buffs', 'Damage_Shields', 1, '', 0, 1, 0, 0, 0, 'Engineer', 'RK Store'), + (55776, 'Nano Crystal (Lesser Retaliatory Barrier)', 12227, 55773, 'Lesser Retaliatory Barrier', 16221, 147426, + 145926, 148926, 37, 'Crystal', 'Buffs', 'Damage_Shields', 1, '', 0, 1, 0, 0, 0, 'Engineer', 'RK Store'), + (55777, 'Nano Crystal (Electrical Discharge Field)', 12260, 55772, 'Electrical Discharge Field', 16221, 147379, + 145879, 148879, 76, 'Crystal', 'Buffs', 'Damage_Shields', 1, '', 0, 1, 0, 0, 0, 'Engineer', 'RK Store'), + (55778, 'Nano Crystal (Retaliatory Barrier)', 42452, 55771, 'Retaliatory Barrier', 16221, 147461, 145961, 148961, + 132, 'Crystal', 'Buffs', 'Damage_Shields', 1, '', 0, 1, 0, 0, 0, 'Engineer', 'Mission Reward'), + (55779, 'Nano Crystal (Energy Cocoon)', 42452, 55770, 'Energy Cocoon', 16221, 147380, 145880, 148880, 113, + 'Crystal', 'Buffs', 'Damage_Shields', 1, '', 0, 1, 0, 0, 0, 'Engineer', 'RK Store'), + (55780, 'Nano Crystal (Citadel of Spikes)', 42452, 55769, 'Citadel of Spikes', 16221, 147367, 145867, 148867, + 149, 'Crystal', 'Buffs', 'Damage_Shields', 1, '', 0, 1, 0, 0, 0, 'Engineer', 'Mission Reward'), + (55781, 'Nano Crystal (Sparkling Field Array)', 42452, 55768, 'Sparkling Field Array', 16221, 147475, 145975, + 148975, 159, 'Crystal', 'Buffs', 'Damage_Shields', 1, '', 0, 1, 0, 0, 0, 'Engineer', 'Mission Reward'), + (55782, 'Nano Crystal (Greater Retaliatory Barrier)', 42452, 55767, 'Greater Retaliatory Barrier', 16221, 147406, + 145906, 148906, 165, 'Crystal', 'Buffs', 'Damage_Shields', 1, '', 0, 1, 0, 0, 0, 'Engineer', 'Mission Reward'), + (55838, 'Nano Crystal (Frost With Snow)', 12227, 55836, 'Frost With Snow', 16221, 146746, 145246, 148246, 7, + 'Crystal', 'Buffs', 'Damage_Shields', 1, 'Target', 0, 1, 0, 0, 0, 'Adventurer', 'RK Store'), + (55839, 'Nano Crystal (Retribution of the Aesir)', 42452, 55837, 'Retribution of the Aesir', 16221, 146792, + 145292, 148292, 169, 'Crystal', 'Buffs', 'Damage_Shields', 1, 'Target', 0, 1, 0, 0, 0, 'Adventurer', + 'Mission Reward'), + (55840, 'Nano Crystal (Jacket of Blades)', 12227, 55835, 'Jacket of Blades', 16221, 146761, 145261, 148261, 17, + 'Crystal', 'Buffs', 'Damage_Shields', 1, 'Target', 0, 1, 0, 0, 0, 'Adventurer', 'RK Store'), + (55841, 'Nano Crystal (Firefly''s Fury)', 12227, 55834, 'Firefly''s Fury', 16221, 146740, 145240, 148240, 30, + 'Crystal', 'Buffs', 'Damage_Shields', 1, 'Target', 0, 1, 0, 0, 0, 'Adventurer', 'RK Store'), + (55842, 'Nano Crystal (Enshroud with Barbs)', 12227, 55833, 'Enshroud with Barbs', 16221, 146736, 145236, 148236, + 24, 'Crystal', 'Buffs', 'Damage_Shields', 1, 'Target', 0, 1, 0, 0, 0, 'Adventurer', 'RK Store'), + (55843, 'Nano Crystal (Cloak of Fire)', 12227, 55831, 'Cloak of Fire', 16221, 146731, 145231, 148231, 37, + 'Crystal', 'Buffs', 'Damage_Shields', 1, 'Target', 0, 1, 0, 0, 0, 'Adventurer', 'RK Store'), + (55844, 'Nano Crystal (Sparking Touch)', 12227, 55832, 'Sparking Touch', 16221, 146799, 145299, 148299, 47, + 'Crystal', 'Buffs', 'Damage_Shields', 1, 'Target', 0, 1, 0, 0, 0, 'Adventurer', 'RK Store'), + (55845, 'Nano Crystal (Porcupine Barrier)', 12260, 55830, 'Porcupine Barrier', 16221, 146780, 145280, 148280, 53, + 'Crystal', 'Buffs', 'Damage_Shields', 1, 'Target', 0, 1, 0, 0, 0, 'Adventurer', 'RK Store'), + (55846, 'Nano Crystal (Fiery Wrap)', 12260, 55829, 'Fiery Wrap', 16221, 146739, 145239, 148239, 63, 'Crystal', + 'Buffs', 'Damage_Shields', 1, 'Target', 0, 1, 0, 0, 0, 'Adventurer', 'RK Store'), + (55847, 'Nano Crystal (Skin of the Toad)', 12260, 55828, 'Skin of the Toad', 16221, 146797, 145297, 148297, 73, + 'Crystal', 'Buffs', 'Damage_Shields', 1, 'Target', 0, 1, 0, 0, 0, 'Adventurer', 'RK Store'), + (55848, 'Nano Crystal (Guard of the Grizzly)', 12260, 55827, 'Guard of the Grizzly', 16221, 146756, 145256, + 148256, 90, 'Crystal', 'Buffs', 'Damage_Shields', 1, 'Target', 0, 1, 0, 0, 0, 'Adventurer', 'RK Store'), + (55849, 'Nano Crystal (Arctic Gale)', 12260, 55826, 'Arctic Gale', 16221, 146716, 145216, 148216, 83, 'Crystal', + 'Buffs', 'Damage_Shields', 1, 'Target', 0, 1, 0, 0, 0, 'Adventurer', 'RK Store'), + (55850, 'Nano Crystal (Magma Coating)', 42452, 55824, 'Magma Coating', 16221, 146765, 145265, 148265, 109, + 'Crystal', 'Buffs', 'Damage_Shields', 1, 'Target', 0, 1, 0, 0, 0, 'Adventurer', 'RK Store'), + (55851, 'Nano Crystal (Nest of Vipers)', 12260, 55825, 'Nest of Vipers', 16221, 146773, 145273, 148273, 99, + 'Crystal', 'Buffs', 'Damage_Shields', 1, 'Target', 0, 1, 0, 0, 0, 'Adventurer', 'RK Store'), + (55852, 'Nano Crystal (Protection of the Storm)', 42452, 55823, 'Protection of the Storm', 16221, 146784, 145284, + 148284, 116, 'Crystal', 'Buffs', 'Damage_Shields', 1, 'Target', 0, 1, 0, 0, 0, 'Adventurer', 'RK Store'), + (55853, 'Nano Crystal (Corrosive Barrier)', 42452, 55822, 'Corrosive Barrier', 16221, 146733, 145233, 148233, + 132, 'Crystal', 'Buffs', 'Damage_Shields', 1, 'Target', 0, 1, 0, 0, 0, 'Adventurer', 'Mission Reward'), + (55854, 'Nano Crystal (Biting Blades)', 42452, 55821, 'Biting Blades', 16221, 146717, 145217, 148217, 126, + 'Crystal', 'Buffs', 'Damage_Shields', 1, 'Target', 0, 1, 0, 0, 0, 'Adventurer', 'Mission Reward'), + (55855, 'Nano Crystal (Razor Barrier)', 42452, 55820, 'Razor Barrier', 16221, 146785, 145285, 148285, 139, + 'Crystal', 'Buffs', 'Damage_Shields', 1, 'Target', 0, 1, 0, 0, 0, 'Adventurer', 'Mission Reward'), + (55856, 'Nano Crystal (Fiery Vengeance)', 42452, 55819, 'Fiery Vengeance', 16221, 146738, 145238, 148238, 136, + 'Crystal', 'Buffs', 'Damage_Shields', 1, 'Target', 0, 1, 0, 0, 0, 'Adventurer', 'Mission Reward'), + (55857, 'Nano Crystal (Personal Blizzard)', 42452, 55818, 'Personal Blizzard', 16221, 146776, 145276, 148276, + 149, 'Crystal', 'Buffs', 'Damage_Shields', 1, 'Target', 0, 1, 0, 0, 0, 'Adventurer', 'Mission Reward'), + (55858, 'Nano Crystal (Lightning''s Child)', 42452, 55817, 'Lightning''s Child', 16221, 146764, 145264, 148264, + 152, 'Crystal', 'Buffs', 'Damage_Shields', 1, 'Target', 0, 1, 0, 0, 0, 'Adventurer', 'Mission Reward'), + (55859, 'Nano Crystal (Interlocking Barbs)', 42452, 55816, 'Interlocking Barbs', 16221, 146759, 145259, 148259, + 142, 'Crystal', 'Buffs', 'Damage_Shields', 1, 'Target', 0, 1, 0, 0, 0, 'Adventurer', 'Mission Reward'), + (55860, 'Nano Crystal (Wings of the Phoenix)', 42452, 55815, 'Wings of the Phoenix', 16221, 146816, 145316, + 148316, 162, 'Crystal', 'Buffs', 'Damage_Shields', 1, 'Target', 0, 1, 0, 0, 0, 'Adventurer', 'Mission Reward'), + (55861, 'Nano Crystal (Retaliatory Venom Spit)', 42452, 55814, 'Retaliatory Venom Spit', 16221, 146791, 145291, + 148291, 159, 'Crystal', 'Buffs', 'Damage_Shields', 1, 'Target', 0, 1, 0, 0, 0, 'Adventurer', 'Mission Reward'), + (55862, 'Nano Crystal (Revenge of the Valkyrie)', 42452, 55813, 'Revenge of the Valkyrie', 16221, 146793, 145293, + 148293, 165, 'Crystal', 'Buffs', 'Damage_Shields', 1, 'Target', 0, 1, 0, 0, 0, 'Adventurer', 'Mission Reward'), + (55863, 'Nano Crystal (Coat of Barbs)', 12227, 55812, 'Coat of Barbs', 16221, 146732, 145232, 148232, 1, + 'Crystal', 'Buffs', 'Damage_Shields', 1, 'Target', 0, 1, 0, 0, 0, 'Adventurer', 'RK Store'), + (56002, 'Nano Crystal (Total Musculature Command)', 42449, 55980, 'Total Musculature Command', 46275, 147067, + 145567, 148567, 175, 'Crystal', 'Crowd_Control', 'Root', 146, 'Target', 0, 1, 0, 0, 0, 'Bureaucrat', + 'Mission Reward'), + (56003, 'Nano Crystal (Lesser Illusory Paralysis)', 12224, 55992, 'Lesser Illusory Paralysis', 46272, 147004, + 145504, 148504, 4, 'Crystal', 'Crowd_Control', 'Root', 146, 'Target', 0, 1, 0, 0, 0, 'Bureaucrat', 'RK Store'), + (56004, 'Nano Crystal (Lesser Musculature Command)', 12224, 55990, 'Lesser Musculature Command', 46273, 147005, + 145505, 148505, 33, 'Crystal', 'Crowd_Control', 'Root', 146, 'Target', 0, 1, 0, 0, 0, 'Bureaucrat', 'RK Store'), + (56005, 'Nano Crystal (Restrict Movement)', 12224, 55991, 'Restrict Movement', 46272, 147036, 145536, 148536, 24, + 'Crystal', 'Crowd_Control', 'Root', 146, 'Target', 0, 1, 0, 0, 0, 'Bureaucrat', 'RK Store'), + (56006, 'Nano Crystal (Revoke Movement License)', 12224, 55989, 'Revoke Movement License', 46273, 147037, 145537, + 148537, 47, 'Crystal', 'Crowd_Control', 'Root', 146, 'Target', 0, 1, 0, 0, 0, 'Bureaucrat', 'RK Store'), + (56007, 'Nano Crystal (Illusory Paralysis)', 12257, 55988, 'Illusory Paralysis', 46273, 146994, 145494, 148494, + 80, 'Crystal', 'Crowd_Control', 'Root', 146, 'Target', 0, 1, 0, 0, 0, 'Bureaucrat', 'RK Store'), + (56008, 'Nano Crystal (Enforce Rest Break)', 12257, 55987, 'Enforce Rest Break', 46273, 146959, 145459, 148459, + 63, 'Crystal', 'Crowd_Control', 'Root', 146, 'Target', 0, 1, 0, 0, 0, 'Bureaucrat', 'RK Store'), + (56009, 'Nano Crystal (Greater Restrict Movement)', 12257, 55986, 'Greater Restrict Movement', 46274, 146990, + 145490, 148490, 99, 'Crystal', 'Crowd_Control', 'Root', 146, 'Target', 0, 1, 0, 0, 0, 'Bureaucrat', 'RK Store'), + (56010, 'Nano Crystal (Musculature Command)', 42449, 55985, 'Musculature Command', 46274, 147025, 145525, 148525, + 116, 'Crystal', 'Crowd_Control', 'Root', 146, 'Target', 0, 1, 0, 0, 0, 'Bureaucrat', 'RK Store'), + (56011, 'Nano Crystal (Inhibit Motion)', 42449, 55984, 'Inhibit Motion', 46274, 146996, 145496, 148496, 132, + 'Crystal', 'Crowd_Control', 'Root', 146, 'Target', 0, 1, 0, 0, 0, 'Bureaucrat', 'Mission Reward'), + (56012, 'Nano Crystal (Greater Illusory Paralysis)', 42449, 55983, 'Greater Illusory Paralysis', 46274, 146987, + 145487, 148487, 146, 'Crystal', 'Crowd_Control', 'Root', 146, 'Target', 0, 1, 0, 0, 0, 'Bureaucrat', + 'Mission Reward'), + (56013, 'Nano Crystal (Captivating Speech)', 42449, 55982, 'Captivating Speech', 46275, 146931, 145431, 148431, + 152, 'Crystal', 'Crowd_Control', 'Root', 146, 'Target', 0, 1, 0, 0, 0, 'Bureaucrat', 'Mission Reward'), + (56014, 'Nano Crystal (Greater Musculature Command)', 42449, 55981, 'Greater Musculature Command', 46275, 146989, + 145489, 148489, 162, 'Crystal', 'Crowd_Control', 'Root', 146, 'Target', 0, 1, 0, 0, 0, 'Bureaucrat', + 'Mission Reward'), + (56015, 'Nano Crystal (Void Inertia)', 42449, 55993, 'Void Inertia', 46275, 147069, 145569, 148569, 182, + 'Crystal', 'Crowd_Control', 'Root', 146, 'Target', 0, 1, 0, 0, 0, 'Bureaucrat', 'Mission Reward'), + (56173, 'Nano Crystal (Feet of Lead)', 42449, 56022, 'Feet of Lead', 46275, 147750, 146250, 149250, 165, + 'Crystal', 'Crowd_Control', 'Root', 146, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'Mission Reward'), + (56174, 'Nano Crystal (Ball and Chain)', 42449, 56024, 'Ball and Chain', 46274, 147665, 146165, 149165, 106, + 'Crystal', 'Crowd_Control', 'Root', 146, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'RK Store'), + (56175, 'Nano Crystal (Gravity Pull)', 42449, 56023, 'Gravity Pull', 46274, 147771, 146271, 149271, 149, + 'Crystal', 'Crowd_Control', 'Root', 146, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'Mission Reward'), + (56176, 'Nano Crystal (Feet of Iron)', 12257, 56025, 'Feet of Iron', 46273, 147749, 146249, 149249, 73, + 'Crystal', 'Crowd_Control', 'Root', 146, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'RK Store'), + (56177, 'Nano Crystal (Weak Gravity Pull)', 12224, 56026, 'Weak Gravity Pull', 46273, 147899, 146399, 149399, 40, + 'Crystal', 'Crowd_Control', 'Root', 146, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'RK Store'), + (56178, 'Nano Crystal (Feet of Stone)', 12224, 56027, 'Feet of Stone', 46272, 147751, 146251, 149251, 14, + 'Crystal', 'Crowd_Control', 'Root', 146, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'RK Store'), + (56179, 'Nano Crystal (Burden of Atlas)', 42449, 56028, 'Burden of Atlas', 46275, 147681, 146181, 149181, 189, + 'Crystal', 'Crowd_Control', 'Root', 146, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'Mission Reward'), + (56238, 'Nano Crystal (Detain Suspect)', 12224, 56218, 'Detain Suspect', 46272, 146838, 145338, 148338, 1, + 'Crystal', 'Crowd_Control', 'Root', 146, '', 0, 0, 0, 0, 0, 'Agent', 'RK Store'), + (56239, 'Nano Crystal (Lesser Paralyze with Indecision)', 12224, 56217, 'Lesser Paralyze with Indecision', 46272, + 146874, 145374, 148374, 33, 'Crystal', 'Crowd_Control', 'Root', 146, '', 0, 0, 0, 0, 0, 'Agent', 'RK Store'), + (56240, 'Nano Crystal (Brief Interrogation)', 12224, 56215, 'Brief Interrogation', 46273, 146831, 145331, 148331, + 47, 'Crystal', 'Crowd_Control', 'Root', 146, '', 0, 0, 0, 0, 0, 'Agent', 'RK Store'), + (56241, 'Nano Crystal (Lesser Hold Victim)', 12224, 56216, 'Lesser Hold Victim', 46272, 146872, 145372, 148372, + 17, 'Crystal', 'Crowd_Control', 'Root', 146, '', 0, 0, 0, 0, 0, 'Agent', 'RK Store'), + (56242, 'Nano Crystal (Greater Detain Suspect)', 12257, 56214, 'Greater Detain Suspect', 46273, 146858, 145358, + 148358, 66, 'Crystal', 'Crowd_Control', 'Root', 146, '', 0, 0, 0, 0, 0, 'Agent', 'RK Store'), + (56243, 'Nano Crystal (Greater Hold Victim)', 42449, 56213, 'Greater Hold Victim', 46274, 146859, 145359, 148359, + 132, 'Crystal', 'Crowd_Control', 'Root', 146, '', 0, 0, 0, 0, 0, 'Agent', 'Mission Reward'), + (56244, 'Nano Crystal (Paralyze with Indecision)', 12257, 56212, 'Paralyze with Indecision', 46274, 146890, + 145390, 148390, 99, 'Crystal', 'Crowd_Control', 'Root', 146, '', 0, 0, 0, 0, 0, 'Agent', 'RK Store'), + (56245, 'Nano Crystal (Prolonged Interrogation)', 42449, 56211, 'Prolonged Interrogation', 46274, 146893, 145393, + 148393, 119, 'Crystal', 'Crowd_Control', 'Root', 146, '', 0, 0, 0, 0, 0, 'Agent', 'RK Store'), + (56246, 'Nano Crystal (Hold Victim)', 12257, 56210, 'Hold Victim', 46273, 146864, 145364, 148364, 83, 'Crystal', + 'Crowd_Control', 'Root', 146, '', 0, 0, 0, 0, 0, 'Agent', 'RK Store'), + (56247, 'Nano Crystal (Entrap Victim)', 42449, 56209, 'Entrap Victim', 46275, 146840, 145340, 148340, 142, + 'Crystal', 'Crowd_Control', 'Root', 146, '', 0, 0, 0, 0, 0, 'Agent', 'Mission Reward'), + (56248, 'Nano Crystal (Greater Paralyze with Indecision)', 42449, 56208, 'Greater Paralyze with Indecision', + 46275, 146861, 145361, 148361, 149, 'Crystal', 'Crowd_Control', 'Root', 146, '', 0, 0, 0, 0, 0, 'Agent', + 'Mission Reward'), + (56249, 'Nano Crystal (Leisurely Interrogation)', 42449, 56207, 'Leisurely Interrogation', 46275, 146867, 145367, + 148367, 165, 'Crystal', 'Crowd_Control', 'Root', 146, '', 0, 0, 0, 0, 0, 'Agent', 'Mission Reward'), + (56250, 'Nano Crystal (Halt Flight)', 12224, 56226, 'Halt Flight', 46272, 147525, 146025, 149025, 4, 'Crystal', + 'Crowd_Control', 'Root', 146, '', 0, 1, 0, 0, 0, 'Fixer', 'RK Store'), + (56251, 'Nano Crystal (Lesser Prolong Encounter)', 12224, 56224, 'Lesser Prolong Encounter', 46273, 147536, + 146036, 149036, 27, 'Crystal', 'Crowd_Control', 'Root', 146, '', 0, 1, 0, 0, 0, 'Fixer', 'RK Store'), + (56252, 'Nano Crystal (No Escape Possible)', 12224, 56225, 'No Escape Possible', 46272, 147547, 146047, 149047, + 14, 'Crystal', 'Crowd_Control', 'Root', 146, '', 0, 1, 0, 0, 0, 'Fixer', 'RK Store'), + (56253, 'Nano Crystal (Greater Halt Flight)', 12257, 56223, 'Greater Halt Flight', 46274, 147513, 146013, 149013, + 90, 'Crystal', 'Crowd_Control', 'Root', 146, '', 0, 1, 0, 0, 0, 'Fixer', 'RK Store'), + (56254, 'Nano Crystal (Delay Retreat)', 12257, 56222, 'Delay Retreat', 46273, 147505, 146005, 149005, 60, + 'Crystal', 'Crowd_Control', 'Root', 146, '', 0, 1, 0, 0, 0, 'Fixer', 'RK Store'), + (56255, 'Nano Crystal (Greater Delay Retreat)', 42449, 56220, 'Greater Delay Retreat', 46275, 147512, 146012, + 149012, 139, 'Crystal', 'Crowd_Control', 'Root', 146, '', 0, 1, 0, 0, 0, 'Fixer', 'Mission Reward'), + (56256, 'Nano Crystal (Prolong Encounter)', 42449, 56221, 'Prolong Encounter', 46274, 147554, 146054, 149054, + 123, 'Crystal', 'Crowd_Control', 'Root', 146, '', 0, 1, 0, 0, 0, 'Fixer', 'Mission Reward'), + (56257, 'Nano Crystal (Greater Prolong Encounter)', 42449, 56219, 'Greater Prolong Encounter', 46275, 147517, + 146017, 149017, 152, 'Crystal', 'Crowd_Control', 'Root', 146, '', 0, 1, 0, 0, 0, 'Fixer', 'Mission Reward'), + (56258, 'Nano Crystal (Entrepreneurial Thrall)', 42449, 56235, 'Entrepreneurial Thrall', 46275, 148037, 146537, + 149537, 182, 'Crystal', 'Crowd_Control', 'Root', 146, 'Target', 0, 1, 0, 0, 0, 'Trader', 'Mission Reward'), + (56259, 'Nano Crystal (Lesser Detain Customer)', 12224, 56234, 'Lesser Detain Customer', 46272, 148077, 146577, + 149577, 1, 'Crystal', 'Crowd_Control', 'Root', 146, 'Target', 0, 1, 0, 0, 0, 'Trader', 'RK Store'), + (56260, 'Nano Crystal (Profiteer''s Grip)', 12224, 56233, 'Profiteer''s Grip', 46272, 148128, 146628, 149628, 37, + 'Crystal', 'Crowd_Control', 'Root', 146, 'Target', 0, 1, 0, 0, 0, 'Trader', 'RK Store'), + (56261, 'Nano Crystal (Embrace of Greed)', 12257, 56232, 'Embrace of Greed', 46273, 148035, 146535, 149535, 76, + 'Crystal', 'Crowd_Control', 'Root', 146, 'Target', 0, 1, 0, 0, 0, 'Trader', 'RK Store'), + (56262, 'Nano Crystal (Detain Customer)', 42449, 56231, 'Detain Customer', 46273, 148015, 146515, 149515, 109, + 'Crystal', 'Crowd_Control', 'Root', 146, 'Target', 0, 1, 0, 0, 0, 'Trader', 'RK Store'), + (56263, 'Nano Crystal (Greater Embrace of Greed)', 42449, 56230, 'Greater Embrace of Greed', 46274, 148050, + 146550, 149550, 149, 'Crystal', 'Crowd_Control', 'Root', 146, 'Target', 0, 1, 0, 0, 0, 'Trader', + 'Mission Reward'), + (56264, 'Nano Crystal (Profit Preoccupation)', 42449, 56229, 'Profit Preoccupation', 46274, 148127, 146627, + 149627, 159, 'Crystal', 'Crowd_Control', 'Root', 146, 'Target', 0, 1, 0, 0, 0, 'Trader', 'Mission Reward'), + (56265, 'Nano Crystal (Greater Detain Customer)', 42449, 56228, 'Greater Detain Customer', 46275, 148049, 146549, + 149549, 169, 'Crystal', 'Crowd_Control', 'Root', 146, 'Target', 0, 1, 0, 0, 0, 'Trader', 'Mission Reward'), + (56266, 'Nano Crystal (Lesser Embrace of Greed)', 12224, 56227, 'Lesser Embrace of Greed', 46272, 148078, 146578, + 149578, 14, 'Crystal', 'Crowd_Control', 'Root', 146, 'Target', 0, 1, 0, 0, 0, 'Trader', 'RK Store'), + (70383, 'Nano Crystal (Deflection Shield)', 12227, 70337, 'Deflection Shield', 39001, 147917, 146417, 149417, 33, + 'Crystal', 'Buffs', 'Shadowland_Reflect_Base', 694, 'Target', 0, 1, 0, 0, 0, 'Soldier', 'RK Store'), + (70384, 'Nano Crystal (Deflection Shield (Extended))', 12227, 70336, 'Deflection Shield (Extended)', 39001, + 147918, 146418, 149418, 37, 'Crystal', 'Buffs', 'Shadowland_Reflect_Base', 694, 'Target', 0, 1, 0, 0, 0, + 'Soldier', 'RK Store'), + (70385, 'Nano Crystal (Greater Deflection Shield)', 12227, 70334, 'Greater Deflection Shield', 39001, 147923, + 146423, 149423, 50, 'Crystal', 'Buffs', 'Shadowland_Reflect_Base', 694, 'Target', 0, 1, 0, 0, 0, 'Soldier', + 'RK Store'), + (70386, 'Nano Crystal (Greater Deflection Shield (Extended))', 12260, 70335, + 'Greater Deflection Shield (Extended)', 39001, 147924, 146424, 149424, 57, 'Crystal', 'Buffs', + 'Shadowland_Reflect_Base', 694, 'Target', 0, 1, 0, 0, 0, 'Soldier', 'RK Store'), + (70387, 'Nano Crystal (Greater Reflective Field)', 42452, 70332, 'Greater Reflective Field', 101017, 147925, + 146425, 149425, 129, 'Crystal', 'Buffs', 'Shadowland_Reflect_Base', 694, 'Target', 0, 1, 0, 0, 0, 'Soldier', + 'Mission Reward'), + (70388, 'Nano Crystal (Greater Reflective Field (Extended))', 42452, 70333, + 'Greater Reflective Field (Extended)', 101017, 147926, 146426, 149426, 132, 'Crystal', 'Buffs', + 'Shadowland_Reflect_Base', 694, 'Target', 0, 1, 0, 0, 0, 'Soldier', 'Mission Reward'), + (70389, 'Nano Crystal (Lesser Deflection Shield (Extended))', 12227, 70331, + 'Lesser Deflection Shield (Extended)', 39001, 147934, 146434, 149434, 30, 'Crystal', 'Buffs', + 'Shadowland_Reflect_Base', 694, 'Target', 0, 1, 0, 0, 0, 'Soldier', 'RK Store'), + (70390, 'Nano Crystal (Lesser Deflection Shield)', 12227, 70330, 'Lesser Deflection Shield', 16319, 147933, + 146433, 149433, 24, 'Crystal', 'Buffs', 'Shadowland_Reflect_Base', 694, 'Target', 0, 1, 0, 0, 0, 'Soldier', + 'RK Store'), + (70391, 'Nano Crystal (Lesser Reflective Field (Extended))', 42452, 70329, 'Lesser Reflective Field (Extended)', + 39281, 147936, 146436, 149436, 123, 'Crystal', 'Buffs', 'Shadowland_Reflect_Base', 694, 'Target', 0, 1, 0, 0, 0, + 'Soldier', 'Mission Reward'), + (70392, 'Nano Crystal (Lesser Reflective Field)', 42452, 70328, 'Lesser Reflective Field', 39281, 147935, 146435, + 149435, 123, 'Crystal', 'Buffs', 'Shadowland_Reflect_Base', 694, 'Target', 0, 1, 0, 0, 0, 'Soldier', + 'Mission Reward'), + (70393, 'Nano Crystal (Major Deflection Shield)', 12260, 70326, 'Major Deflection Shield', 39141, 147937, 146437, + 149437, 63, 'Crystal', 'Buffs', 'Shadowland_Reflect_Base', 694, 'Target', 0, 1, 0, 0, 0, 'Soldier', 'RK Store'), + (70394, 'Nano Crystal (Major Deflection Shield (Extended))', 12260, 70327, 'Major Deflection Shield (Extended)', + 39141, 147938, 146438, 149438, 70, 'Crystal', 'Buffs', 'Shadowland_Reflect_Base', 694, 'Target', 0, 1, 0, 0, 0, + 'Soldier', 'RK Store'), + (70395, 'Nano Crystal (Major Reflective Field)', 42452, 70324, 'Major Reflective Field', 101018, 147939, 146439, + 149439, 136, 'Crystal', 'Buffs', 'Shadowland_Reflect_Base', 694, 'Target', 0, 1, 0, 0, 0, 'Soldier', + 'Mission Reward'), + (70396, 'Nano Crystal (Major Reflective Field (Extended))', 42452, 70325, 'Major Reflective Field (Extended)', + 101018, 147940, 146440, 149440, 139, 'Crystal', 'Buffs', 'Shadowland_Reflect_Base', 694, 'Target', 0, 1, 0, 0, + 0, 'Soldier', 'Mission Reward'), + (70397, 'Nano Crystal (Minor Deflection Shield)', 12227, 70323, 'Minor Deflection Shield', 16319, 147943, 146443, + 149443, 14, 'Crystal', 'Buffs', 'Shadowland_Reflect_Base', 694, 'Target', 0, 1, 0, 0, 0, 'Soldier', 'RK Store'), + (70398, 'Nano Crystal (Minor Deflection Shield (Extended))', 12227, 70321, 'Minor Deflection Shield (Extended)', + 16319, 147944, 146444, 149444, 17, 'Crystal', 'Buffs', 'Shadowland_Reflect_Base', 694, 'Target', 0, 1, 0, 0, 0, + 'Soldier', 'RK Store'), + (70399, 'Nano Crystal (Minor Reflective Field)', 42452, 70322, 'Minor Reflective Field', 39281, 147945, 146445, + 149445, 113, 'Crystal', 'Buffs', 'Shadowland_Reflect_Base', 694, 'Target', 0, 1, 0, 0, 0, 'Soldier', + 'RK Store'), + (70400, 'Nano Crystal (Minor Reflective Field (Extended))', 42452, 70319, 'Minor Reflective Field (Extended)', + 39281, 147946, 146446, 149446, 119, 'Crystal', 'Buffs', 'Shadowland_Reflect_Base', 694, 'Target', 0, 1, 0, 0, 0, + 'Soldier', 'RK Store'), + (70401, 'Nano Crystal (Partial Deflection Shield)', 12227, 70320, 'Partial Deflection Shield', 16319, 147950, + 146450, 149450, 1, 'Crystal', 'Buffs', 'Shadowland_Reflect_Base', 694, 'Target', 0, 1, 0, 0, 0, 'Soldier', + 'RK Store'), + (70402, 'Nano Crystal (Partial Reflective Field)', 12260, 70318, 'Partial Reflective Field', 39141, 147952, + 146452, 149452, 96, 'Crystal', 'Buffs', 'Shadowland_Reflect_Base', 694, 'Target', 0, 1, 0, 0, 0, 'Soldier', + 'RK Store'), + (70403, 'Nano Crystal (Partial Deflection Shield (Extended))', 12227, 70317, + 'Partial Deflection Shield (Extended)', 16319, 147951, 146451, 149451, 7, 'Crystal', 'Buffs', + 'Shadowland_Reflect_Base', 694, 'Target', 0, 1, 0, 0, 0, 'Soldier', 'RK Store'), + (70404, 'Nano Crystal (Reactive Deflection Shield)', 12260, 70316, 'Reactive Deflection Shield', 39141, 147961, + 146461, 149461, 76, 'Crystal', 'Buffs', 'Shadowland_Reflect_Base', 694, 'Target', 0, 1, 0, 0, 0, 'Soldier', + 'RK Store'), + (70405, 'Nano Crystal (Partial Reflective Field (Extended))', 12260, 70315, + 'Partial Reflective Field (Extended)', 39281, 147953, 146453, 149453, 99, 'Crystal', 'Buffs', + 'Shadowland_Reflect_Base', 694, 'Target', 0, 1, 0, 0, 0, 'Soldier', 'RK Store'), + (70406, 'Nano Crystal (Reactive Deflection Shield (Extended))', 12260, 70313, + 'Reactive Deflection Shield (Extended)', 39141, 147962, 146462, 149462, 83, 'Crystal', 'Buffs', + 'Shadowland_Reflect_Base', 694, 'Target', 0, 1, 0, 0, 0, 'Soldier', 'RK Store'), + (70407, 'Nano Crystal (Reactive Reflective Field)', 42452, 70314, 'Reactive Reflective Field', 101018, 147963, + 146463, 149463, 142, 'Crystal', 'Buffs', 'Shadowland_Reflect_Base', 694, 'Target', 0, 1, 0, 0, 0, 'Soldier', + 'Mission Reward'), + (70408, 'Nano Crystal (Reactive Reflective Field (Extended))', 42452, 70311, + 'Reactive Reflective Field (Extended)', 101018, 147964, 146464, 149464, 142, 'Crystal', 'Buffs', + 'Shadowland_Reflect_Base', 694, 'Target', 0, 1, 0, 0, 0, 'Soldier', 'Mission Reward'), + (70409, 'Nano Crystal (Reflective Field)', 42452, 70312, 'Reflective Field', 101017, 147965, 146465, 149465, 126, + 'Crystal', 'Buffs', 'Shadowland_Reflect_Base', 694, 'Target', 0, 1, 0, 0, 0, 'Soldier', 'Mission Reward'), + (70410, 'Nano Crystal (Reflective Field (Extended))', 42452, 70310, 'Reflective Field (Extended)', 101017, + 147966, 146466, 149466, 126, 'Crystal', 'Buffs', 'Shadowland_Reflect_Base', 694, 'Target', 0, 1, 0, 0, 0, + 'Soldier', 'Mission Reward'), + (70411, 'Nano Crystal (Total Mirror Shield Mk I)', 12227, 70308, 'Total Mirror Shield Mk I', 16319, 147974, + 146474, 149474, 10, 'Crystal', 'Buffs', 'Shadowland_Reflect_Base', 694, 'Self', 0, 1, 0, 0, 0, 'Soldier', + 'RK Store'), + (70412, 'Nano Crystal (Total Mirror Shield Mk II)', 12227, 70309, 'Total Mirror Shield Mk II', 16319, 147975, + 146475, 149475, 27, 'Crystal', 'Buffs', 'Shadowland_Reflect_Base', 694, 'Self', 0, 1, 0, 0, 0, 'Soldier', + 'RK Store'), + (70413, 'Nano Crystal (Total Mirror Shield Mk III)', 12227, 70306, 'Total Mirror Shield Mk III', 39001, 147976, + 146476, 149476, 47, 'Crystal', 'Buffs', 'Shadowland_Reflect_Base', 694, 'Self', 0, 1, 0, 0, 0, 'Soldier', + 'RK Store'), + (70414, 'Nano Crystal (Total Mirror Shield Mk IV)', 12260, 70307, 'Total Mirror Shield Mk IV', 39001, 147977, + 146477, 149477, 60, 'Crystal', 'Buffs', 'Shadowland_Reflect_Base', 694, 'Self', 0, 1, 0, 0, 0, 'Soldier', + 'RK Store'), + (70415, 'Nano Crystal (Total Mirror Shield Mk IX)', 42452, 70305, 'Total Mirror Shield Mk IX', 101018, 147978, + 146478, 149478, 132, 'Crystal', 'Buffs', 'Shadowland_Reflect_Base', 694, 'Self', 0, 1, 0, 0, 0, 'Soldier', + 'Mission Reward'), + (70416, 'Nano Crystal (Total Mirror Shield Mk V)', 12260, 70303, 'Total Mirror Shield Mk V', 39141, 147979, + 146479, 149479, 86, 'Crystal', 'Buffs', 'Shadowland_Reflect_Base', 694, 'Self', 0, 1, 0, 0, 0, 'Soldier', + 'RK Store'), + (70417, 'Nano Crystal (Total Mirror Shield Mk VI)', 42452, 70304, 'Total Mirror Shield Mk VI', 39281, 147980, + 146480, 149480, 106, 'Crystal', 'Buffs', 'Shadowland_Reflect_Base', 694, 'Self', 0, 1, 0, 0, 0, 'Soldier', + 'RK Store'), + (70418, 'Nano Crystal (Total Mirror Shield Mk VII)', 42452, 70301, 'Total Mirror Shield Mk VII', 101017, 147981, + 146481, 149481, 126, 'Crystal', 'Buffs', 'Shadowland_Reflect_Base', 694, 'Self', 0, 1, 0, 0, 0, 'Soldier', + 'Mission Reward'), + (70419, 'Nano Crystal (Total Mirror Shield Mk VIII)', 42452, 70302, 'Total Mirror Shield Mk VIII', 101017, + 147982, 146482, 149482, 129, 'Crystal', 'Buffs', 'Shadowland_Reflect_Base', 694, 'Self', 0, 1, 0, 0, 0, + 'Soldier', 'Mission Reward'), + (70420, 'Nano Crystal (Greater Harmonic Cocoon)', 42452, 70299, 'Greater Harmonic Cocoon', 101017, 147405, + 145905, 148905, 159, 'Crystal', 'Buffs', 'Reflect_Shield', 2, '', 0, 1, 0, 0, 0, 'Engineer', 'Mission Reward'), + (70421, 'Nano Crystal (Total Mirror Shield Mk X)', 42452, 70300, 'Total Mirror Shield Mk X', 101018, 147983, + 146483, 149483, 146, 'Crystal', 'Buffs', 'Shadowland_Reflect_Base', 694, 'Self', 0, 1, 0, 0, 0, 'Soldier', + 'Mission Reward'), + (70422, 'Nano Crystal (Lesser Harmonic Cocoon)', 12260, 70297, 'Lesser Harmonic Cocoon', 39141, 147424, 145924, + 148924, 96, 'Crystal', 'Buffs', 'Reflect_Shield', 2, '', 0, 1, 0, 0, 0, 'Engineer', 'RK Store'), + (70423, 'Nano Crystal (Minor Harmonic Cocoon)', 12260, 70298, 'Minor Harmonic Cocoon', 39001, 147432, 145932, + 148932, 66, 'Crystal', 'Buffs', 'Reflect_Shield', 2, '', 0, 1, 0, 0, 0, 'Engineer', 'RK Store'), + (70424, 'Nano Crystal (Harmonic Cocoon)', 42452, 70296, 'Harmonic Cocoon', 39281, 147409, 145909, 148909, 139, + 'Crystal', 'Buffs', 'Reflect_Shield', 2, '', 0, 1, 0, 0, 0, 'Engineer', 'Mission Reward'), + (70425, 'Nano Crystal (Reactive Harmonic Cocoon)', 42452, 70295, 'Reactive Harmonic Cocoon', 101018, 147458, + 145958, 148958, 179, 'Crystal', 'Buffs', 'Reflect_Shield', 2, '', 0, 1, 0, 0, 0, 'Engineer', 'Mission Reward'), + (70426, 'Nano Crystal (Partial Harmonic Cocoon)', 12227, 70294, 'Partial Harmonic Cocoon', 16319, 147433, 145933, + 148933, 30, 'Crystal', 'Buffs', 'Reflect_Shield', 2, '', 0, 1, 0, 0, 0, 'Engineer', 'RK Store'), + (70570, 'Nano Crystal (Heavy Assault Force Field)', 42452, 70557, 'Heavy Assault Force Field', 100996, 147410, + 145910, 148910, 185, 'Crystal', 'Buffs', 'Armor_Buffs', 3, '', 0, 1, 0, 0, 0, 'Engineer', 'Mission Reward'), + (70571, 'Nano Crystal (Lesser Defensive Screen)', 12260, 70555, 'Lesser Defensive Screen', 38898, 147420, 145920, + 148920, 57, 'Crystal', 'Buffs', 'Armor_Buffs', 3, '', 0, 1, 0, 0, 0, 'Engineer', 'RK Store'), + (70572, 'Nano Crystal (Lesser Protective Field)', 12227, 70556, 'Lesser Protective Field', 38898, 147425, 145925, + 148925, 50, 'Crystal', 'Buffs', 'Armor_Buffs', 3, '', 0, 1, 0, 0, 0, 'Engineer', 'RK Store'), + (70573, 'Nano Crystal (Shielding Barrier)', 12260, 70554, 'Shielding Barrier', 38898, 147469, 145969, 148969, 63, + 'Crystal', 'Buffs', 'Armor_Buffs', 3, '', 0, 1, 0, 0, 0, 'Engineer', 'RK Store'), + (70574, 'Nano Crystal (Defensive Screen)', 12260, 70551, 'Defensive Screen', 39039, 147377, 145877, 148877, 83, + 'Crystal', 'Buffs', 'Armor_Buffs', 3, '', 0, 1, 0, 0, 0, 'Engineer', 'RK Store'), + (70575, 'Nano Crystal (Protective Field)', 12260, 70553, 'Protective Field', 39039, 147453, 145953, 148953, 73, + 'Crystal', 'Buffs', 'Armor_Buffs', 3, '', 0, 1, 0, 0, 0, 'Engineer', 'RK Store'), + (70576, 'Nano Crystal (Superior Shielding Barrier)', 12260, 70552, 'Superior Shielding Barrier', 39039, 147481, + 145981, 148981, 86, 'Crystal', 'Buffs', 'Armor_Buffs', 3, '', 0, 1, 0, 0, 0, 'Engineer', 'RK Store'), + (70577, 'Nano Crystal (Greater Armor Megaboost)', 12227, 70548, 'Greater Armor Megaboost', 16197, 147404, 145904, + 148904, 4, 'Crystal', 'Buffs', 'Armor_Buffs', 3, '', 0, 1, 0, 0, 0, 'Engineer', 'RK Store'), + (70578, 'Nano Crystal (Superior Defensive Screen)', 42452, 70549, 'Superior Defensive Screen', 39039, 147478, + 145978, 148978, 103, 'Crystal', 'Buffs', 'Armor_Buffs', 3, '', 0, 1, 0, 0, 0, 'Engineer', 'RK Store'), + (70579, 'Nano Crystal (Superior Protective Field)', 12260, 70550, 'Superior Protective Field', 39039, 147480, + 145980, 148980, 96, 'Crystal', 'Buffs', 'Armor_Buffs', 3, '', 0, 1, 0, 0, 0, 'Engineer', 'RK Store'), + (70580, 'Nano Crystal (Advanced Shielding Barrier)', 42452, 70547, 'Advanced Shielding Barrier', 39179, 147356, + 145856, 148856, 109, 'Crystal', 'Buffs', 'Armor_Buffs', 3, '', 0, 1, 0, 0, 0, 'Engineer', 'RK Store'), + (70581, 'Nano Crystal (Flawed Protective Field)', 12227, 70545, 'Flawed Protective Field', 16197, 147397, 145897, + 148897, 14, 'Crystal', 'Buffs', 'Armor_Buffs', 3, '', 0, 1, 0, 0, 0, 'Engineer', 'RK Store'), + (70582, 'Nano Crystal (Flawed Shielding Barrier)', 12227, 70546, 'Flawed Shielding Barrier', 16197, 147398, + 145898, 148898, 7, 'Crystal', 'Buffs', 'Armor_Buffs', 3, '', 0, 1, 0, 0, 0, 'Engineer', 'RK Store'), + (70583, 'Nano Crystal (Basic Protective Field)', 12227, 70542, 'Basic Protective Field', 38898, 147365, 145865, + 148865, 33, 'Crystal', 'Buffs', 'Armor_Buffs', 3, '', 0, 1, 0, 0, 0, 'Engineer', 'RK Store'), + (70584, 'Nano Crystal (Basic Shielding Barrier)', 12227, 70543, 'Basic Shielding Barrier', 16197, 147366, 145866, + 148866, 27, 'Crystal', 'Buffs', 'Armor_Buffs', 3, '', 0, 1, 0, 0, 0, 'Engineer', 'RK Store'), + (70585, 'Nano Crystal (Flawed Defensive Screen)', 12227, 70544, 'Flawed Defensive Screen', 16197, 147393, 145893, + 148893, 20, 'Crystal', 'Buffs', 'Armor_Buffs', 3, '', 0, 1, 0, 0, 0, 'Engineer', 'RK Store'), + (70586, 'Nano Crystal (Basic Defensive Screen)', 12227, 70541, 'Basic Defensive Screen', 38898, 147363, 145863, + 148863, 37, 'Crystal', 'Buffs', 'Armor_Buffs', 3, '', 0, 1, 0, 0, 0, 'Engineer', 'RK Store'), + (70587, 'Nano Crystal (Lesser Shielding Barrier)', 12227, 70540, 'Lesser Shielding Barrier', 38898, 147427, + 145927, 148927, 43, 'Crystal', 'Buffs', 'Armor_Buffs', 3, '', 0, 1, 0, 0, 0, 'Engineer', 'RK Store'), + (70588, 'Nano Crystal (Advanced Defensive Screen)', 42452, 70538, 'Advanced Defensive Screen', 39179, 147351, + 145851, 148851, 126, 'Crystal', 'Buffs', 'Armor_Buffs', 3, '', 0, 1, 0, 0, 0, 'Engineer', 'Mission Reward'), + (70589, 'Nano Crystal (Advanced Protective Field)', 42452, 70539, 'Advanced Protective Field', 39179, 147355, + 145855, 148855, 119, 'Crystal', 'Buffs', 'Armor_Buffs', 3, '', 0, 1, 0, 0, 0, 'Engineer', 'RK Store'), + (70590, 'Nano Crystal (Perfected Shielding Barrier)', 42452, 70537, 'Perfected Shielding Barrier', 39179, 147447, + 145947, 148947, 139, 'Crystal', 'Buffs', 'Armor_Buffs', 3, '', 0, 1, 0, 0, 0, 'Engineer', 'Mission Reward'), + (70591, 'Nano Crystal (Flawed Force Field)', 42452, 70534, 'Flawed Force Field', 100995, 147394, 145894, 148894, + 156, 'Crystal', 'Buffs', 'Armor_Buffs', 3, '', 0, 1, 0, 0, 0, 'Engineer', 'Mission Reward'), + (70592, 'Nano Crystal (Perfected Defensive Screen)', 42452, 70535, 'Perfected Defensive Screen', 100995, 147443, + 145943, 148943, 149, 'Crystal', 'Buffs', 'Armor_Buffs', 3, '', 0, 1, 0, 0, 0, 'Engineer', 'Mission Reward'), + (70593, 'Nano Crystal (Perfected Protective Field)', 42452, 70536, 'Perfected Protective Field', 39179, 147446, + 145946, 148946, 146, 'Crystal', 'Buffs', 'Armor_Buffs', 3, '', 0, 1, 0, 0, 0, 'Engineer', 'Mission Reward'), + (70594, 'Nano Crystal (Basic Force Field)', 42452, 70533, 'Basic Force Field', 100995, 147364, 145864, 148864, + 159, 'Crystal', 'Buffs', 'Armor_Buffs', 3, '', 0, 1, 0, 0, 0, 'Engineer', 'Mission Reward'), + (70595, 'Nano Crystal (Lesser Force Field)', 42452, 70532, 'Lesser Force Field', 100995, 147421, 145921, 148921, + 162, 'Crystal', 'Buffs', 'Armor_Buffs', 3, '', 0, 1, 0, 0, 0, 'Engineer', 'Mission Reward'), + (70596, 'Nano Crystal (Force Field)', 42452, 70531, 'Force Field', 100995, 147401, 145901, 148901, 169, + 'Crystal', 'Buffs', 'Armor_Buffs', 3, '', 0, 1, 0, 0, 0, 'Engineer', 'Mission Reward'), + (70597, 'Nano Crystal (Superior Force Field)', 42452, 70530, 'Superior Force Field', 100996, 147479, 145979, + 148979, 172, 'Crystal', 'Buffs', 'Armor_Buffs', 3, '', 0, 1, 0, 0, 0, 'Engineer', 'Mission Reward'), + (70598, 'Nano Crystal (Advanced Force Field)', 42452, 70529, 'Advanced Force Field', 100996, 147352, 145852, + 148852, 179, 'Crystal', 'Buffs', 'Armor_Buffs', 3, '', 0, 1, 0, 0, 0, 'Engineer', 'Mission Reward'), + (70630, 'Nano Crystal (Searing Agony)', 12257, 70629, 'Searing Agony', 49684, 147861, 146361, 149361, 80, + 'Crystal', 'Combat', 'Nano-Technician_DOT_-_Strain_A', 8, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'RK Store'), + (70631, 'Nano Crystal (Boil From Within)', 42449, 70628, 'Boil from Within', 49686, 147677, 146177, 149177, 126, + 'Crystal', 'Combat', 'Nano-Technician_DOT_-_Strain_A', 8, '', 0, 1, 0, 0, 0, 'Nano-Technician', + 'Mission Reward'), + (75352, 'Nano Crystal (Transcendent Shen Protection)', 42452, 75351, 'Transcendent Shen Protection', 101002, + 147645, 146145, 149145, 159, 'Crystal', 'Buffs', 'Armor_Buffs', 3, '', 0, 1, 0, 0, 0, 'Martial Artist', + 'Mission Reward'), + (75353, 'Nano Crystal (Minor Shen Protection)', 12227, 75349, 'Minor Shen Protection', 16294, 147621, 146121, + 149121, 7, 'Crystal', 'Buffs', 'Armor_Buffs', 3, '', 0, 1, 0, 0, 0, 'Martial Artist', 'No longer drops'), + (75354, 'Nano Crystal (Toughen Skin)', 12227, 75350, 'Toughen Skin', 16294, 147644, 146144, 149144, 1, 'Crystal', + 'Buffs', 'Armor_Buffs', 3, '', 0, 1, 0, 0, 0, 'Martial Artist', 'RK Store'), + (75355, 'Nano Crystal (Harden Skin)', 12227, 75348, 'Harden Skin', 16294, 147607, 146107, 149107, 14, 'Crystal', + 'Buffs', 'Armor_Buffs', 3, '', 0, 1, 0, 0, 0, 'Martial Artist', 'RK Store'), + (75356, 'Nano Crystal (Lesser Shen Protection)', 12227, 75346, 'Lesser Shen Protection', 38976, 147615, 146115, + 149115, 33, 'Crystal', 'Buffs', 'Armor_Buffs', 3, '', 0, 1, 0, 0, 0, 'Martial Artist', 'RK Store'), + (75357, 'Nano Crystal (Wooden Skin)', 12227, 75347, 'Wooden Skin', 38976, 147651, 146151, 149151, 43, 'Crystal', + 'Buffs', 'Armor_Buffs', 3, '', 0, 1, 0, 0, 0, 'Martial Artist', 'RK Store'), + (75358, 'Nano Crystal (Greater Wooden Skin)', 12260, 75345, 'Greater Wooden Skin', 38976, 147606, 146106, 149106, + 53, 'Crystal', 'Buffs', 'Armor_Buffs', 3, '', 0, 1, 0, 0, 0, 'Martial Artist', 'RK Store'), + (75359, 'Nano Crystal (Greater Steel Skin)', 12260, 75343, 'Greater Steel Skin', 39116, 147602, 146102, 149102, + 86, 'Crystal', 'Buffs', 'Armor_Buffs', 3, '', 0, 1, 0, 0, 0, 'Martial Artist', 'RK Store'), + (75360, 'Nano Crystal (Shen Protection)', 12260, 75344, 'Shen Protection', 38976, 147633, 146133, 149133, 66, + 'Crystal', 'Buffs', 'Armor_Buffs', 3, '', 0, 1, 0, 0, 0, 'Martial Artist', 'RK Store'), + (75361, 'Nano Crystal (Titanium Skin)', 42452, 75342, 'Titanium Skin', 39256, 147643, 146143, 149143, 109, + 'Crystal', 'Buffs', 'Armor_Buffs', 3, '', 0, 1, 0, 0, 0, 'Martial Artist', 'RK Store'), + (75362, 'Nano Crystal (Greater Titanium Skin)', 42452, 75340, 'Greater Titanium Skin', 39256, 147605, 146105, + 149105, 123, 'Crystal', 'Buffs', 'Armor_Buffs', 3, '', 0, 1, 0, 0, 0, 'Martial Artist', 'Mission Reward'), + (75363, 'Nano Crystal (Major Shen Protection)', 12260, 75341, 'Major Shen Protection', 39116, 147618, 146118, + 149118, 99, 'Crystal', 'Buffs', 'Armor_Buffs', 3, '', 0, 1, 0, 0, 0, 'Martial Artist', 'RK Store'), + (75364, 'Nano Crystal (Greater Shen Protection)', 42452, 75339, 'Greater Shen Protection', 39256, 147601, 146101, + 149101, 132, 'Crystal', 'Buffs', 'Armor_Buffs', 3, '', 0, 1, 0, 0, 0, 'Martial Artist', 'Mission Reward'), + (75365, 'Nano Crystal (Supreme Shen Protection)', 42452, 75338, 'Supreme Shen Protection', 101001, 147638, + 146138, 149138, 146, 'Crystal', 'Buffs', 'Armor_Buffs', 3, '', 0, 1, 0, 0, 0, 'Martial Artist', + 'Mission Reward'), + (75366, 'Nano Crystal (Partial Diamond Skin)', 42452, 75337, 'Partial Diamond Skin', 101001, 147625, 146125, + 149125, 136, 'Crystal', 'Buffs', 'Armor_Buffs', 3, '', 0, 1, 0, 0, 0, 'Martial Artist', 'Mission Reward'), + (75367, 'Nano Crystal (Monomolecular Skin)', 42452, 75336, 'Monomolecular Skin', 101002, 147622, 146122, 149122, + 152, 'Crystal', 'Buffs', 'Armor_Buffs', 3, '', 0, 1, 0, 0, 0, 'Martial Artist', 'Mission Reward'), + (75368, 'Nano Crystal (Minor Wilderness Protection)', 12227, 74178, 'Minor Wilderness Protection', 16314, 146768, + 145268, 148268, 4, 'Crystal', 'Buffs', 'Armor_Buffs', 3, '', 0, 1, 0, 0, 0, 'Adventurer', 'No longer drops'), + (75369, 'Nano Crystal (Lesser Wilderness Protection)', 12227, 74177, 'Lesser Wilderness Protection', 38996, + 146763, 145263, 148263, 20, 'Crystal', 'Buffs', 'Armor_Buffs', 3, '', 0, 1, 0, 0, 0, 'Adventurer', 'RK Store'), + (75370, 'Nano Crystal (Wilderness Protection)', 12227, 74176, 'Wilderness Protection', 39136, 146815, 145315, + 148315, 43, 'Crystal', 'Buffs', 'Armor_Buffs', 3, '', 0, 1, 0, 0, 0, 'Adventurer', 'RK Store'), + (75371, 'Nano Crystal (Major Wilderness Protection)', 12260, 74175, 'Major Wilderness Protection', 39276, 146766, + 145266, 148266, 70, 'Crystal', 'Buffs', 'Armor_Buffs', 3, '', 0, 1, 0, 0, 0, 'Adventurer', 'RK Store'), + (75372, 'Nano Crystal (Greater Wilderness Protection)', 12260, 74174, 'Greater Wilderness Protection', 101015, + 146752, 145252, 148252, 96, 'Crystal', 'Buffs', 'Armor_Buffs', 3, '', 0, 1, 0, 0, 0, 'Adventurer', 'RK Store'), + (75373, 'Nano Crystal (Supreme Wilderness Protection)', 296699, 74173, 'Supreme Wilderness Protection', 295525, + 146803, 145303, 148303, 123, 'Crystal', 'Buffs', 'Armor_Buffs', 3, '', 0, 1, 0, 0, 0, 'Adventurer', + 'Mission Reward'), + (75415, 'Nano Crystal (Minor Combat Barrier)', 12227, 75413, 'Minor Combat Barrier', 16314, 147942, 146442, + 149442, 4, 'Crystal', 'Buffs', 'Armor_Buffs', 3, '', 0, 1, 0, 0, 0, 'Soldier', 'RK Store'), + (75416, 'Nano Crystal (Minor Absorption Shield)', 12227, 75412, 'Minor Absorption Shield', 16314, 147941, 146441, + 149441, 14, 'Crystal', 'Buffs', 'Armor_Buffs', 3, '', 0, 1, 0, 0, 0, 'Soldier', 'RK Store'), + (75417, 'Nano Crystal (Lesser Combat Barrier)', 12227, 75411, 'Lesser Combat Barrier', 16314, 147932, 146432, + 149432, 20, 'Crystal', 'Buffs', 'Armor_Buffs', 3, '', 0, 1, 0, 0, 0, 'Soldier', 'RK Store'), + (75418, 'Nano Crystal (Combat Barrier)', 12227, 75409, 'Combat Barrier', 38996, 147913, 146413, 149413, 50, + 'Crystal', 'Buffs', 'Armor_Buffs', 3, '', 0, 1, 0, 0, 0, 'Soldier', 'RK Store'), + (75419, 'Nano Crystal (Lesser Absorption Shield)', 12227, 75410, 'Lesser Absorption Shield', 38996, 147931, + 146431, 149431, 37, 'Crystal', 'Buffs', 'Armor_Buffs', 3, '', 0, 1, 0, 0, 0, 'Soldier', 'RK Store'), + (75420, 'Nano Crystal (Superior Combat Barrier)', 12260, 75408, 'Superior Combat Barrier', 39136, 147970, 146470, + 149470, 83, 'Crystal', 'Buffs', 'Armor_Buffs', 3, '', 0, 1, 0, 0, 0, 'Soldier', 'RK Store'), + (75421, 'Nano Crystal (Advanced Combat Barrier)', 42452, 75406, 'Advanced Combat Barrier', 39276, 147905, 146405, + 149405, 119, 'Crystal', 'Buffs', 'Armor_Buffs', 3, '', 0, 1, 0, 0, 0, 'Soldier', 'RK Store'), + (75422, 'Nano Crystal (Superior Absorption Shield)', 12260, 75407, 'Superior Absorption Shield', 39136, 147969, + 146469, 149469, 99, 'Crystal', 'Buffs', 'Armor_Buffs', 3, '', 0, 1, 0, 0, 0, 'Soldier', 'RK Store'), + (75423, 'Nano Crystal (Advanced Absorption Shield)', 42452, 75405, 'Advanced Absorption Shield', 39276, 147904, + 146404, 149404, 132, 'Crystal', 'Buffs', 'Armor_Buffs', 3, '', 0, 1, 0, 0, 0, 'Soldier', 'Mission Reward'), + (75424, 'Nano Crystal (Perfected Absorption Shield)', 42452, 75403, 'Perfected Absorption Shield', 101015, + 147954, 146454, 149454, 142, 'Crystal', 'Buffs', 'Armor_Buffs', 3, '', 0, 1, 0, 0, 0, 'Soldier', + 'Mission Reward'), + (75425, 'Nano Crystal (Perfected Combat Barrier)', 42452, 75404, 'Perfected Combat Barrier', 101015, 147955, + 146455, 149455, 139, 'Crystal', 'Buffs', 'Armor_Buffs', 3, '', 0, 1, 0, 0, 0, 'Soldier', 'Mission Reward'), + (75426, 'Nano Crystal (Heavy Assault Combat Barrier)', 42452, 75402, 'Heavy Assault Combat Barrier', 101016, + 147928, 146428, 149428, 152, 'Crystal', 'Buffs', 'Armor_Buffs', 3, '', 0, 1, 0, 0, 0, 'Soldier', + 'Mission Reward'), + (75427, 'Nano Crystal (Heavy Assault Absorption Shield)', 42452, 75401, 'Heavy Assault Absorption Shield', + 101016, 147927, 146427, 149427, 159, 'Crystal', 'Buffs', 'Armor_Buffs', 3, '', 0, 1, 0, 0, 0, 'Soldier', + 'Mission Reward'), + (78415, 'Nano Crystal (Sophisticated Health Plunder)', 42448, 77195, 'Sophisticated Health Plunder', 117914, + 148179, 146679, 149679, 182, 'Crystal', 'Drain', 'Health', 0, '', 0, 1, 0, 0, 0, 'Trader', 'Mission Reward'), + (78416, 'Nano Crystal (Patchy Health Funnel)', 12228, 76732, 'Patchy Health Funnel', 117905, 148110, 146610, + 149610, 4, 'Crystal', 'Drain', 'Health', 0, '', 0, 1, 0, 0, 0, 'Trader', 'No longer drops'), + (78417, 'Startup Crystal: Nano Crystal (Weak Health Funnel)', 12228, 76742, 'Weak Health Funnel', 117905, 0, 0, + 0, 1, 'Crystal', 'Drain', 'Health', 0, '', 0, 1, 0, 0, 0, 'Trader', 'Starter equipment'), + (78418, 'Nano Crystal (Lossy Health Funnel)', 12228, 76727, 'Average Health Funnel', 117906, 148086, 146586, + 149586, 10, 'Crystal', 'Drain', 'Health', 0, '', 0, 1, 0, 0, 0, 'Trader', 'RK Store'), + (78419, 'Nano Crystal (Minor Health Funnel)', 12228, 76729, 'Minor Health Funnel', 117905, 148103, 146603, + 149603, 7, 'Crystal', 'Drain', 'Health', 0, '', 0, 1, 0, 0, 0, 'Trader', 'No longer drops'), + (78420, 'Nano Crystal (Lesser Health Funnel)', 12228, 76724, 'Lesser Health Funnel', 117906, 148080, 146580, + 149580, 17, 'Crystal', 'Drain', 'Health', 0, '', 0, 1, 0, 0, 0, 'Trader', 'RK Store'), + (78421, 'Nano Crystal (Health Funnel)', 12228, 76722, 'Health Funnel', 117906, 148058, 146558, 149558, 20, + 'Crystal', 'Drain', 'Health', 0, '', 0, 1, 0, 0, 0, 'Trader', 'RK Store'), + (78422, 'Nano Crystal (Major Health Funnel)', 12228, 76720, 'Major Health Funnel', 117907, 148096, 146596, + 149596, 24, 'Crystal', 'Drain', 'Health', 0, '', 0, 1, 0, 0, 0, 'Trader', 'RK Store'), + (78423, 'Nano Crystal (Greater Health Funnel)', 12228, 76717, 'Greater Health Funnel', 117907, 148052, 146552, + 149552, 33, 'Crystal', 'Drain', 'Health', 0, '', 0, 1, 0, 0, 0, 'Trader', 'RK Store'), + (78424, 'Nano Crystal (Advanced Health Funnel)', 12228, 76715, 'Advanced Health Funnel', 117907, 147988, 146488, + 149488, 30, 'Crystal', 'Drain', 'Health', 0, '', 0, 1, 0, 0, 0, 'Trader', 'RK Store'), + (78425, 'Nano Crystal (Weak Health Freeloader)', 12228, 76691, 'Weak Health Freeloader', 117908, 148212, 146712, + 149712, 47, 'Crystal', 'Drain', 'Health', 0, '', 0, 1, 0, 0, 0, 'Trader', 'RK Store'), + (78426, 'Nano Crystal (Patchy Health Freeloader)', 12228, 76686, 'Patchy Health Freeloader', 117908, 148109, + 146609, 149609, 50, 'Crystal', 'Drain', 'Health', 0, '', 0, 1, 0, 0, 0, 'Trader', 'RK Store'), + (78427, 'Nano Crystal (Sophisticated Health Funnel)', 12228, 76688, 'Sophisticated Health Funnel', 117908, + 148178, 146678, 149678, 40, 'Crystal', 'Drain', 'Health', 0, '', 0, 1, 0, 0, 0, 'Trader', 'RK Store'), + (78428, 'Nano Crystal (Lossy Health Freeloader)', 12256, 76681, 'Average Health Freeloader', 117909, 148085, + 146585, 149585, 70, 'Crystal', 'Drain', 'Health', 0, '', 0, 1, 0, 0, 0, 'Trader', 'RK Store'), + (78429, 'Nano Crystal (Minor Health Freeloader)', 12256, 76684, 'Minor Health Freeloader', 117909, 148102, + 146602, 149602, 60, 'Crystal', 'Drain', 'Health', 0, '', 0, 1, 0, 0, 0, 'Trader', 'RK Store'), + (78430, 'Nano Crystal (Lesser Health Freeloader)', 12256, 76679, 'Lesser Health Freeloader', 117909, 148079, + 146579, 149579, 80, 'Crystal', 'Drain', 'Health', 0, '', 0, 1, 0, 0, 0, 'Trader', 'RK Store'), + (78431, 'Nano Crystal (Major Health Freeloader)', 12256, 76656, 'Major Health Freeloader', 117910, 148095, + 146595, 149595, 93, 'Crystal', 'Drain', 'Health', 0, '', 0, 1, 0, 0, 0, 'Trader', 'RK Store'), + (78432, 'Nano Crystal (Health Freeloader)', 12256, 76653, 'Health Freeloader', 117910, 148057, 146557, 149557, + 86, 'Crystal', 'Drain', 'Health', 0, '', 0, 1, 0, 0, 0, 'Trader', 'RK Store'), + (78433, 'Nano Crystal (Greater Health Freeloader)', 42448, 76651, 'Greater Health Freeloader', 117911, 148051, + 146551, 149551, 113, 'Crystal', 'Drain', 'Health', 0, '', 0, 1, 0, 0, 0, 'Trader', 'RK Store'), + (78434, 'Nano Crystal (Advanced Health Freeloader)', 42448, 76614, 'Advanced Health Freeloader', 117910, 147987, + 146487, 149487, 103, 'Crystal', 'Drain', 'Health', 0, '', 0, 1, 0, 0, 0, 'Trader', 'RK Store'), + (78435, 'Nano Crystal (Weak Health Plunder)', 42448, 76571, 'Weak Health Plunder', 117911, 148213, 146713, + 149713, 132, 'Crystal', 'Drain', 'Health', 0, '', 0, 1, 0, 0, 0, 'Trader', 'Mission Reward'), + (78436, 'Nano Crystal (Patchy Health Plunder)', 42448, 76499, 'Patchy Health Plunder', 117912, 148111, 146611, + 149611, 142, 'Crystal', 'Drain', 'Health', 0, '', 0, 1, 0, 0, 0, 'Trader', 'Mission Reward'), + (78437, 'Nano Crystal (Sophisticated Health Freeloader)', 42448, 76503, 'Sophisticated Health Freeloader', + 117911, 148177, 146677, 149677, 123, 'Crystal', 'Drain', 'Health', 0, '', 0, 1, 0, 0, 0, 'Trader', + 'Mission Reward'), + (78438, 'Nano Crystal (Minor Health Plunder)', 42448, 76494, 'Minor Health Plunder', 117912, 148104, 146604, + 149604, 146, 'Crystal', 'Drain', 'Health', 0, '', 0, 1, 0, 0, 0, 'Trader', 'Mission Reward'), + (78439, 'Nano Crystal (Lossy Health Plunder)', 42448, 76491, 'Average Health Plunder', 117912, 148087, 146587, + 149587, 149, 'Crystal', 'Drain', 'Health', 0, '', 0, 1, 0, 0, 0, 'Trader', 'Mission Reward'), + (78440, 'Nano Crystal (Major Health Plunder)', 42448, 76487, 'Major Health Plunder', 117913, 148097, 146597, + 149597, 162, 'Crystal', 'Drain', 'Health', 0, '', 0, 1, 0, 0, 0, 'Trader', 'Mission Reward'), + (78441, 'Nano Crystal (Lesser Health Plunder)', 42448, 76484, 'Lesser Health Plunder', 117913, 148081, 146581, + 149581, 156, 'Crystal', 'Drain', 'Health', 0, '', 0, 1, 0, 0, 0, 'Trader', 'Mission Reward'), + (78442, 'Nano Crystal (Health Plunder)', 42448, 76481, 'Health Plunder', 117913, 148059, 146559, 149559, 159, + 'Crystal', 'Drain', 'Health', 0, '', 0, 1, 0, 0, 0, 'Trader', 'Mission Reward'), + (78443, 'Nano Crystal (Advanced Health Plunder)', 42448, 76475, 'Advanced Health Plunder', 117914, 147989, + 146489, 149489, 169, 'Crystal', 'Drain', 'Health', 0, '', 0, 1, 0, 0, 0, 'Trader', 'Mission Reward'), + (78444, 'Nano Crystal (Rule of One)', 42449, 78400, 'Rule of One', 45178, 147039, 145539, 148539, 179, 'Crystal', + 'Nukes', 'Special', 0, '', 0, 1, 0, 0, 0, 'Bureaucrat', 'Mission Reward'), + (78445, 'Nano Crystal (Searing Bolt)', 12257, 78399, 'Searing Bolt', 39802, 147040, 145540, 148540, 93, + 'Crystal', 'Nukes', 'Normal', 0, '', 0, 1, 0, 0, 0, 'Bureaucrat', 'RK Store'), + (78446, 'Nano Crystal (Punishing Blade)', 12224, 78398, 'Punishing Blade', 45182, 147033, 145533, 148533, 10, + 'Crystal', 'Nukes', 'Normal', 0, '', 0, 1, 0, 0, 0, 'Bureaucrat', 'RK Store'), + (78447, 'Nano Crystal (Erratic Laser)', 42449, 78396, 'Erratic Laser', 39803, 146963, 145463, 148463, 142, + 'Crystal', 'Nukes', 'Normal', 0, '', 0, 1, 0, 0, 0, 'Bureaucrat', 'Mission Reward'), + (78448, 'Nano Crystal (Splinter Missile)', 42449, 78397, 'Splinter Missile', 39812, 147048, 145548, 148548, 123, + 'Crystal', 'Nukes', 'Normal', 0, '', 0, 1, 0, 0, 0, 'Bureaucrat', 'Mission Reward'), + (78449, 'Nano Crystal (Monofilament Scourger)', 42449, 78395, 'Monofilament Scourger', 39810, 147022, 145522, + 148522, 152, 'Crystal', 'Nukes', 'Special', 0, '', 0, 1, 0, 0, 0, 'Bureaucrat', 'Mission Reward'), + (78450, 'Nano Crystal (Erasing Ray)', 42449, 78394, 'Erasing Ray', 39793, 146962, 145462, 148462, 162, 'Crystal', + 'Nukes', 'Special', 0, '', 0, 1, 0, 0, 0, 'Bureaucrat', 'Mission Reward'), + (78451, 'Nano Crystal (Greater Health Plunder)', 42448, 76478, 'Greater Health Plunder', 117914, 148053, 146553, + 149553, 175, 'Crystal', 'Drain', 'Health', 0, '', 0, 1, 0, 0, 0, 'Trader', 'Mission Reward'), + (81832, 'Nano Crystal (Wind-blown Blossom)', 12258, 81813, 'Wind-Blown Blossom', 39028, 147650, 146150, 149150, + 57, 'Crystal', 'Buffs', 'Controlled_Destruction_Buffs', 222, '', 0, 1, 0, 0, 0, 'Martial Artist', 'RK Store'), + (81833, 'Nano Crystal (Waiting Panda)', 42450, 81814, 'Waiting Panda', 117954, 147649, 146149, 149149, 132, + 'Crystal', 'Buffs', 'Controlled_Destruction_Buffs', 222, '', 0, 1, 0, 0, 0, 'Martial Artist', 'Mission Reward'), + (81834, 'Nano Crystal (Sway of Bamboo)', 42450, 81815, 'Sway of Bamboo', 39308, 147639, 146139, 149139, 113, + 'Crystal', 'Buffs', 'Controlled_Destruction_Buffs', 222, '', 0, 1, 0, 0, 0, 'Martial Artist', 'RK Store'), + (81835, 'Nano Crystal (Sunrise over Pond)', 12258, 81816, 'Sunrise over Pond', 39168, 147637, 146137, 149137, 93, + 'Crystal', 'Buffs', 'Controlled_Destruction_Buffs', 222, '', 0, 1, 0, 0, 0, 'Martial Artist', 'RK Store'), + (81836, 'Nano Crystal (Summer Rain)', 42450, 81817, 'Summer Rain', 117896, 147636, 146136, 149136, 152, + 'Crystal', 'Buffs', 'Controlled_Destruction_Buffs', 222, '', 0, 1, 0, 0, 0, 'Martial Artist', 'Mission Reward'), + (81837, 'Nano Crystal (Sadness of the Willow)', 12258, 81818, 'Sadness of the Willow', 39168, 147631, 146131, + 149131, 76, 'Crystal', 'Buffs', 'Controlled_Destruction_Buffs', 222, '', 0, 1, 0, 0, 0, 'Martial Artist', + 'RK Store'), + (81838, 'Nano Crystal (Meditate on an Autumn Leaf)', 12225, 81819, 'Meditate on an Autumn Leaf', 39028, 147620, + 146120, 149120, 40, 'Crystal', 'Buffs', 'Controlled_Destruction_Buffs', 222, '', 0, 1, 0, 0, 0, + 'Martial Artist', 'RK Store'), + (81839, 'Nano Crystal (Lotus on Water)', 12225, 81820, 'Lotus on Water', 16350, 147617, 146117, 149117, 27, + 'Crystal', 'Buffs', 'Controlled_Destruction_Buffs', 222, '', 0, 1, 0, 0, 0, 'Martial Artist', 'RK Store'), + (81840, 'Nano Crystal (Inner Peace, Outward Rage)', 42450, 81821, 'Inner Peace, Outward Rage', 117896, 147611, + 146111, 149111, 169, 'Crystal', 'Buffs', 'Controlled_Destruction_Buffs', 222, '', 0, 1, 0, 0, 0, + 'Martial Artist', 'Mission Reward'), + (81841, 'Nano Crystal (Fists of the Sorrowful Toad)', 42450, 81822, 'Fists of the Sorrowful Toad', 39308, 147587, + 146087, 149087, 126, 'Crystal', 'Buffs', 'Damage_Buffs_-_Line_A', 4, '', 0, 1, 0, 0, 0, 'Martial Artist', + 'Mission Reward'), + (81842, 'Nano Crystal (Fists of the Polar Star)', 42450, 81824, 'Fists of the Polar Star', 39308, 147586, 146086, + 149086, 106, 'Crystal', 'Buffs', 'Damage_Buffs_-_Line_A', 4, '', 0, 1, 0, 0, 0, 'Martial Artist', 'RK Store'), + (81843, 'Nano Crystal (Fists of the Maelstrom)', 12258, 81823, 'Fists of the Maelstrom', 39168, 147585, 146085, + 149085, 86, 'Crystal', 'Buffs', 'Damage_Buffs_-_Line_A', 4, '', 0, 1, 0, 0, 0, 'Martial Artist', 'RK Store'), + (81844, 'Nano Crystal (Fists of the Lightning Crane)', 42450, 81825, 'Fists of the Lightning Crane', 117954, + 147584, 146084, 149084, 146, 'Crystal', 'Buffs', 'Damage_Buffs_-_Line_A', 4, '', 0, 1, 0, 0, 0, + 'Martial Artist', 'Mission Reward'), + (81845, 'Nano Crystal (Fists of Stellar Harmony)', 42450, 81827, 'Fists of Stellar Harmony', 117896, 147583, + 146083, 149083, 165, 'Crystal', 'Buffs', 'Damage_Buffs_-_Line_A', 4, '', 0, 1, 0, 0, 0, 'Martial Artist', + 'Mission Reward'), + (81846, 'Nano Crystal (Fists of Shocking Touch)', 12225, 81826, 'Fists of Shocking Touch', 39028, 147582, 146082, + 149082, 47, 'Crystal', 'Buffs', 'Damage_Buffs_-_Line_A', 4, '', 0, 1, 0, 0, 0, 'Martial Artist', 'RK Store'), + (81847, 'Nano Crystal (Energized Fists)', 12225, 81829, 'Energized Fists', 16350, 147577, 146077, 149077, 20, + 'Crystal', 'Buffs', 'Damage_Buffs_-_Line_A', 4, '', 0, 1, 0, 0, 0, 'Martial Artist', 'RK Store'), + (81848, 'Nano Crystal (Crash of Thunder)', 12225, 81828, 'Crash of Thunder', 16350, 147571, 146071, 149071, 10, + 'Crystal', 'Buffs', 'Controlled_Destruction_Buffs', 222, '', 0, 1, 0, 0, 0, 'Martial Artist', 'RK Store'), + (81849, 'Nano Crystal (Corrosive Fists)', 12225, 81830, 'Corrosive Fists', 39028, 147570, 146070, 149070, 37, + 'Crystal', 'Buffs', 'Damage_Buffs_-_Line_A', 4, '', 0, 1, 0, 0, 0, 'Martial Artist', 'RK Store'), + (81850, 'Nano Crystal (Chirp of the Mournful Cricket)', 42450, 81831, 'Chirp of the Mournful Cricket', 117954, + 147568, 146068, 149068, 142, 'Crystal', 'Buffs', 'Controlled_Destruction_Buffs', 222, '', 0, 1, 0, 0, 0, + 'Martial Artist', 'Mission Reward'), + (81888, 'Nano Crystal (Targeted Augmentation Cloud)', 42450, 81881, 'Targeted Augmentation Cloud', 117954, + 147564, 146064, 149064, 149, 'Crystal', 'Buffs', 'Damage_Buffs_-_Line_A', 4, '', 0, 1, 0, 0, 0, 'Fixer', + 'Mission Reward'), + (81889, 'Nano Crystal (Semi-Sentient Augmentation Cloud)', 42450, 81879, 'Semi-Sentient Augmentation Cloud', + 117896, 147560, 146060, 149060, 169, 'Crystal', 'Buffs', 'Damage_Buffs_-_Line_A', 4, '', 0, 1, 0, 0, 0, 'Fixer', + 'Mission Reward'), + (81890, 'Nano Crystal (Neural Interfaced Augmentation Cloud)', 42450, 81880, + 'Neural Interfaced Augmentation Cloud', 117896, 147546, 146046, 149046, 159, 'Crystal', 'Buffs', + 'Damage_Buffs_-_Line_A', 4, '', 0, 1, 0, 0, 0, 'Fixer', 'Mission Reward'), + (81891, 'Nano Crystal (Nano Boost)', 12258, 81885, 'Nano Boost', 39168, 147543, 146043, 149043, 80, 'Crystal', + 'Buffs', 'Damage_Buffs_-_Line_A', 4, '', 0, 1, 0, 0, 0, 'Fixer', 'RK Store'), + (81892, 'Nano Crystal (Lesser Nano Boost)', 12225, 81887, 'Lesser Nano Boost', 16350, 147533, 146033, 149033, 10, + 'Crystal', 'Buffs', 'Damage_Buffs_-_Line_A', 4, '', 0, 1, 0, 0, 0, 'Fixer', 'RK Store'), + (81893, 'Nano Crystal (Hasty Augmentation Cloud)', 12225, 81886, 'Hasty Augmentation Cloud', 39028, 147526, + 146026, 149026, 43, 'Crystal', 'Buffs', 'Damage_Buffs_-_Line_A', 4, '', 0, 1, 0, 0, 0, 'Fixer', 'RK Store'), + (81894, 'Nano Crystal (Greater Nano Boost)', 42450, 81883, 'Greater Nano Boost', 39308, 147514, 146014, 149014, + 136, 'Crystal', 'Buffs', 'Damage_Buffs_-_Line_A', 4, '', 0, 1, 0, 0, 0, 'Fixer', 'Mission Reward'), + (81895, 'Nano Crystal (Augmentation Cloud)', 42450, 81884, 'Augmentation Cloud', 39308, 147498, 145998, 148998, + 106, 'Crystal', 'Buffs', 'Damage_Buffs_-_Line_A', 4, '', 0, 1, 0, 0, 0, 'Fixer', 'RK Store'), + (81896, 'Nano Crystal (Advanced Augmentation Cloud)', 42450, 81882, 'Advanced Augmentation Cloud', 117954, + 147495, 145995, 148995, 142, 'Crystal', 'Buffs', 'Damage_Buffs_-_Line_A', 4, '', 0, 1, 0, 0, 0, 'Fixer', + 'Mission Reward'), + (81897, 'Nano Crystal (Nano Augmentation)', 12225, 81854, 'Nano Augmentation', 39028, 146889, 145389, 148389, 24, + 'Crystal', 'Buffs', 'Damage_Buffs_-_Line_A', 4, '', 0, 0, 0, 0, 0, 'Agent', 'RK Store'), + (81898, 'Nano Crystal (Major Nano Augmentation)', 12258, 81852, 'Major Nano Augmentation', 39308, 146876, 145376, + 148376, 80, 'Crystal', 'Buffs', 'Damage_Buffs_-_Line_A', 4, '', 0, 0, 0, 0, 0, 'Agent', 'RK Store'), + (81899, 'Nano Crystal (Lesser Anatomy Lesson)', 12225, 81855, 'Lesser Anatomy Lesson', 16350, 146868, 145368, + 148368, 10, 'Crystal', 'Buffs', 'Damage_Buffs_-_Line_A', 4, '', 0, 0, 0, 0, 0, 'Agent', 'No longer drops'), + (81900, 'Nano Crystal (Greater Anatomy Lesson)', 42450, 81851, 'Greater Anatomy Lesson', 117954, 146854, 145354, + 148354, 106, 'Crystal', 'Buffs', 'Damage_Buffs_-_Line_A', 4, '', 0, 0, 0, 0, 0, 'Agent', 'RK Store'), + (81901, 'Nano Crystal (Assassin''s Grin)', 42450, 81856, 'Assassin''s Grin', 117896, 146819, 145319, 148319, 139, + 'Crystal', 'Buffs', 'Damage_Buffs_-_Line_A', 4, '', 0, 0, 0, 0, 0, 'Agent', 'Mission Reward'), + (81902, 'Nano Crystal (Anatomy Lesson)', 12225, 81853, 'Anatomy Lesson', 39168, 146818, 145318, 148318, 40, + 'Crystal', 'Buffs', 'Damage_Buffs_-_Line_A', 4, '', 0, 0, 0, 0, 0, 'Agent', 'RK Store'), + (81923, 'Nano Crystal (Controlled Energy Overload)', 12258, 81922, 'Controlled Energy Overload', 39168, 147374, + 145874, 148874, 99, 'Crystal', 'Buffs', 'Damage_Buffs_-_Line_A', 4, '', 0, 1, 0, 0, 0, 'Engineer', 'RK Store'), + (81929, 'Nano Crystal (Hired Hands)', 12225, 81928, 'Hired Hands', 118027, 148060, 146560, 149560, 30, 'Crystal', + 'Buffs', 'Damage', 0, 'Team', 0, 1, 0, 0, 0, 'Trader', 'RK Store'), + (81950, 'Nano Crystal (Suspicious Death)', 12224, 81938, 'Suspicious Death', 16226, 146899, 145399, 148399, 47, + 'Crystal', 'Combat', 'DOT_Agent_Strain_A', 9, '', 0, 0, 0, 0, 0, 'Agent', 'RK Store'), + (81951, 'Nano Crystal (Mysterious Causes)', 12257, 81936, 'Mysterious Causes', 16222, 146888, 145388, 148388, 83, + 'Crystal', 'Combat', 'DOT_Agent_Strain_A', 9, '', 0, 0, 0, 0, 0, 'Agent', 'RK Store'), + (81952, 'Nano Crystal (Lesser Suspicious Death)', 12224, 81942, 'Lesser Suspicious Death', 16225, 146875, 145375, + 148375, 4, 'Crystal', 'Combat', 'DOT_Agent_Strain_A', 9, '', 0, 0, 0, 0, 0, 'Agent', 'RK Store'), + (81953, 'Nano Crystal (Lesser Mysterious Causes)', 12224, 81940, 'Lesser Mysterious Causes', 16225, 146873, + 145373, 148373, 27, 'Crystal', 'Combat', 'DOT_Agent_Strain_A', 9, '', 0, 0, 0, 0, 0, 'Agent', 'RK Store'), + (81954, 'Nano Crystal (Lesser Death''s Knocking)', 12257, 81935, 'Lesser Death''s Knocking', 49684, 146869, + 145369, 148369, 93, 'Crystal', 'Combat', 'DOT_Agent_Strain_A', 9, '', 0, 0, 0, 0, 0, 'Agent', 'RK Store'), + (81955, 'Nano Crystal (Inject Venom)', 12257, 81937, 'Inject Venom', 16226, 146866, 145366, 148366, 66, + 'Crystal', 'Combat', 'DOT_Agent_Strain_A', 9, '', 0, 0, 0, 0, 0, 'Agent', 'RK Store'), + (81956, 'Nano Crystal (Inject Poison)', 12224, 81941, 'Inject Poison', 16225, 146865, 145365, 148365, 14, + 'Crystal', 'Combat', 'DOT_Agent_Strain_A', 9, '', 0, 0, 0, 0, 0, 'Agent', 'RK Store'), + (81957, 'Nano Crystal (Hidden Killer)', 12224, 81939, 'Hidden Killer', 16226, 146863, 145363, 148363, 40, + 'Crystal', 'Combat', 'DOT_Agent_Strain_A', 9, '', 0, 0, 0, 0, 0, 'Agent', 'RK Store'), + (81958, 'Nano Crystal (Greater Suspicious Death)', 42449, 81934, 'Greater Suspicious Death', 49684, 146862, + 145362, 148362, 116, 'Crystal', 'Combat', 'DOT_Agent_Strain_A', 9, '', 0, 0, 0, 0, 0, 'Agent', 'RK Store'), + (81959, 'Nano Crystal (Greater Mysterious Causes)', 42449, 81932, 'Greater Mysterious Causes', 49685, 146860, + 145360, 148360, 146, 'Crystal', 'Combat', 'DOT_Agent_Strain_A', 9, '', 0, 0, 0, 0, 0, 'Agent', + 'Mission Reward'), + (81960, 'Nano Crystal (Greater Death''s Knocking)', 42449, 81931, 'Greater Death''s Knocking', 49686, 146855, + 145355, 148355, 149, 'Crystal', 'Combat', 'DOT_Agent_Strain_A', 9, '', 0, 0, 0, 0, 0, 'Agent', + 'Mission Reward'), + (81961, 'Nano Crystal (Delayed Assassin)', 42449, 81930, 'Delayed Assassin', 49686, 146837, 145337, 148337, 169, + 'Crystal', 'Combat', 'DOT_Agent_Strain_A', 9, '', 0, 0, 0, 0, 0, 'Agent', 'Mission Reward'), + (81962, 'Nano Crystal (Death''s Knocking)', 42449, 81933, 'Death''s Knocking', 49685, 146834, 145334, 148334, + 136, 'Crystal', 'Combat', 'DOT_Agent_Strain_A', 9, '', 0, 0, 0, 0, 0, 'Agent', 'Mission Reward'), + (82002, 'Nano Crystal (Disciplinary Action)', 42449, 82000, 'Disciplinary Action', 39793, 146948, 145448, 148448, + 149, 'Crystal', 'Nukes', 'Normal', 0, '', 0, 1, 0, 0, 0, 'Bureaucrat', 'Mission Reward'), + (82003, 'Nano Crystal (Subsonic Blast)', 12224, 81998, 'Subsonic Blast', 39808, 147051, 145551, 148551, 20, + 'Crystal', 'Nukes', 'Normal', 0, '', 0, 1, 0, 0, 0, 'Bureaucrat', 'RK Store'), + (82004, 'Nano Crystal (Stinging Reminder)', 12257, 81996, 'Stinging Reminder', 39813, 147049, 145549, 148549, 63, + 'Crystal', 'Nukes', 'Normal', 0, '', 0, 1, 0, 0, 0, 'Bureaucrat', 'RK Store'), + (82005, 'Nano Crystal (Performance Review)', 12224, 81997, 'Performance Review', 39798, 147027, 145527, 148527, + 43, 'Crystal', 'Nukes', 'Normal', 0, '', 0, 1, 0, 0, 0, 'Bureaucrat', 'RK Store'), + (82006, 'Nano Crystal (Energized Bolt)', 12224, 81999, 'Energized Bolt', 39802, 146958, 145458, 148458, 4, + 'Crystal', 'Nukes', 'Normal', 0, '', 0, 1, 0, 0, 0, 'Bureaucrat', 'No longer drops'), + (82010, 'Nano Crystal (First-Degree Burns)', 42449, 82009, 'First-Degree Burns', 39807, 147147, 145647, 148647, + 116, 'Crystal', 'Combat', 'Nuke', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'RK Store'), + (82011, 'Nano Crystal (Shatter Bone)', 12224, 82007, 'Shatter Bone', 39809, 147237, 145737, 148737, 37, + 'Crystal', 'Combat', 'Nuke', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'RK Store'), + (82012, 'Nano Crystal (Gouge Flesh)', 12257, 82008, 'Gouge Flesh', 39810, 147149, 145649, 148649, 70, 'Crystal', + 'Combat', 'Nuke', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'RK Store'), + (82065, 'Nano Crystal (Team Restore Essence)', 301484, 82050, 'Team Restore Essence', 301478, 147642, 146142, + 149142, 17, 'Crystal', 'Combat', 'Team_Healing', 952, '', 0, 1, 0, 0, 0, 'Martial Artist', 'RK Store'), + (82066, 'Nano Crystal (Team Healing Touch)', 301484, 82049, 'Team Healing Touch', 301478, 147641, 146141, 149141, + 40, 'Crystal', 'Combat', 'Team_Healing', 952, '', 0, 1, 0, 0, 0, 'Martial Artist', 'RK Store'), + (82067, 'Nano Crystal (Team Healing Aura)', 301485, 82048, 'Team Healing Aura', 301479, 147640, 146140, 149140, + 70, 'Crystal', 'Combat', 'Team_Healing', 952, '', 0, 1, 0, 0, 0, 'Martial Artist', 'RK Store'), + (82068, 'Nano Crystal (Greater Team Restore Essence)', 301486, 82046, 'Greater Team Restore Essence', 301480, + 147604, 146104, 149104, 132, 'Crystal', 'Combat', 'Team_Healing', 952, '', 0, 1, 0, 0, 0, 'Martial Artist', + 'Mission Reward'), + (82069, 'Nano Crystal (Greater Team Healing Touch)', 301485, 82047, 'Greater Team Healing Touch', 301479, 147603, + 146103, 149103, 106, 'Crystal', 'Combat', 'Team_Healing', 952, '', 0, 1, 0, 0, 0, 'Martial Artist', 'RK Store'), + (82070, 'Nano Crystal (Restore Essence)', 301447, 82033, 'Restore Essence', 292052, 147628, 146128, 149128, 20, + 'Crystal', 'Combat', 'Single_Target_Healing', 951, '', 0, 1, 0, 0, 0, 'Martial Artist', 'RK Store'), + (82071, 'Nano Crystal (Lesser Healing Touch)', 301447, 82034, 'Lesser Healing Touch', 292052, 147614, 146114, + 149114, 10, 'Crystal', 'Combat', 'Single_Target_Healing', 951, '', 0, 1, 0, 0, 0, 'Martial Artist', 'RK Store'), + (82072, 'Nano Crystal (Healing Touch)', 301448, 82035, 'Healing Touch', 292053, 147609, 146109, 149109, 43, + 'Crystal', 'Combat', 'Single_Target_Healing', 951, '', 0, 1, 0, 0, 0, 'Martial Artist', 'RK Store'), + (82073, 'Nano Crystal (Healing Aura)', 301448, 82036, 'Healing Aura', 292053, 147608, 146108, 149108, 73, + 'Crystal', 'Combat', 'Single_Target_Healing', 951, '', 0, 1, 0, 0, 0, 'Martial Artist', 'RK Store'), + (82074, 'Nano Crystal (Greater Restore Essence)', 301449, 82031, 'Greater Restore Essence', 292054, 147600, + 146100, 149100, 129, 'Crystal', 'Combat', 'Single_Target_Healing', 951, '', 0, 1, 0, 0, 0, 'Martial Artist', + 'Mission Reward'), + (82075, 'Nano Crystal (Greater Healing Touch)', 301448, 82032, 'Greater Healing Touch', 292053, 147599, 146099, + 149099, 99, 'Crystal', 'Combat', 'Single_Target_Healing', 951, '', 0, 1, 0, 0, 0, 'Martial Artist', 'RK Store'), + (82076, 'Nano Crystal (Enlightened Aura of Healing)', 301449, 82030, 'Enlightened Aura of Healing', 292054, + 147578, 146078, 149078, 142, 'Crystal', 'Combat', 'Single_Target_Healing', 951, '', 0, 1, 0, 0, 0, + 'Martial Artist', 'Mission Reward'), + (82077, 'Nano Crystal (Team Survival Technique)', 12228, 82057, 'Team Survival Technique', 44245, 146812, 145312, + 148312, 33, 'Crystal', 'Combat', 'Team_Healing', 952, '', 0, 1, 0, 0, 0, 'Adventurer', 'RK Store'), + (82078, 'Nano Crystal (Team Rough Stitching)', 12228, 82058, 'Team Rough Stitching', 38953, 146811, 145311, + 148311, 17, 'Crystal', 'Combat', 'Team_Healing', 952, '', 0, 1, 0, 0, 0, 'Adventurer', 'RK Store'), + (82079, 'Nano Crystal (Team Practiced Stitching)', 42448, 82054, 'Team Practiced Stitching', 44246, 146809, + 145309, 148309, 116, 'Crystal', 'Combat', 'Team_Healing', 952, '', 0, 1, 0, 0, 0, 'Adventurer', 'RK Store'), + (82080, 'Nano Crystal (Survival Technique)', 12228, 82063, 'Survival Technique', 44229, 146806, 145306, 148306, + 27, 'Crystal', 'Combat', 'Single_Target_Healing', 951, '', 0, 1, 0, 0, 0, 'Adventurer', 'RK Store'), + (82081, 'Nano Crystal (Seed Life)', 42448, 82051, 'Seed Life', 44248, 146796, 145296, 148296, 169, 'Crystal', + 'Combat', 'Team_Healing', 952, '', 0, 1, 0, 0, 0, 'Adventurer', 'Mission Reward'), + (82082, 'Nano Crystal (Rough Stitching)', 12228, 82064, 'Rough Stitching', 16246, 146795, 145295, 148295, 7, + 'Crystal', 'Combat', 'Single_Target_Healing', 951, '', 0, 1, 0, 0, 0, 'Adventurer', 'No longer drops'), + (82083, 'Nano Crystal (Practiced Stitching)', 12256, 82061, 'Practiced Stitching', 44230, 146781, 145281, 148281, + 93, 'Crystal', 'Combat', 'Single_Target_Healing', 951, '', 0, 1, 0, 0, 0, 'Adventurer', 'RK Store'), + (82084, 'Nano Crystal (Nature''s Blessing)', 42448, 82059, 'Nature''s Blessing', 44231, 146772, 145272, 148272, + 162, 'Crystal', 'Combat', 'Single_Target_Healing', 951, '', 0, 1, 0, 0, 0, 'Adventurer', 'Mission Reward'), + (82085, 'Nano Crystal (Healing Rays of Sunrise)', 42448, 82052, 'Healing Rays of Sunrise', 44247, 146757, 145257, + 148257, 156, 'Crystal', 'Combat', 'Team_Healing', 952, '', 0, 1, 0, 0, 0, 'Adventurer', 'Mission Reward'), + (82086, 'Nano Crystal (Greater Team Quick Heal)', 12256, 82056, 'Greater Team Quick Heal', 44245, 146751, 145251, + 148251, 57, 'Crystal', 'Combat', 'Team_Healing', 952, '', 0, 1, 0, 0, 0, 'Adventurer', 'RK Store'), + (82087, 'Nano Crystal (Greater Quick Heal)', 12228, 82062, 'Greater Quick Heal', 44229, 146749, 145249, 148249, + 43, 'Crystal', 'Combat', 'Single_Target_Healing', 951, '', 0, 1, 0, 0, 0, 'Adventurer', 'RK Store'), + (82088, 'Nano Crystal (Greater Encourage Regrowth)', 42448, 82053, 'Greater Encourage Regrowth', 44247, 146748, + 145248, 148248, 142, 'Crystal', 'Combat', 'Team_Healing', 952, '', 0, 1, 0, 0, 0, 'Adventurer', + 'Mission Reward'), + (82089, 'Nano Crystal (Encourage Regrowth)', 12256, 82055, 'Encourage Regrowth', 44246, 146735, 145235, 148235, + 86, 'Crystal', 'Combat', 'Team_Healing', 952, '', 0, 1, 0, 0, 0, 'Adventurer', 'RK Store'), + (82090, 'Nano Crystal (Advanced Survival Technique)', 42448, 82060, 'Advanced Survival Technique', 44230, 146714, + 145214, 148214, 146, 'Crystal', 'Combat', 'Single_Target_Healing', 951, '', 0, 1, 0, 0, 0, 'Adventurer', + 'Mission Reward'), + (82186, 'Nano Crystal (Rigid Stance)', 12257, 82160, 'Rigid Stance', 46273, 147038, 145538, 148538, 93, + 'Crystal', 'Crowd_Control', 'Root', 146, 'Area', 0, 1, 0, 0, 0, 'Bureaucrat', 'RK Store'), + (82187, 'Nano Crystal (Mass Illusory Paralysis)', 12224, 82157, 'Mass Illusory Paralysis', 46272, 147020, 145520, + 148520, 27, 'Crystal', 'Crowd_Control', 'Root', 146, 'Area', 0, 1, 0, 0, 0, 'Bureaucrat', 'RK Store'), + (82188, 'Nano Crystal (Mass Daze)', 12224, 82156, 'Mass Daze', 46272, 147019, 145519, 148519, 10, 'Crystal', + 'Crowd_Control', 'Root', 146, 'Area', 0, 1, 0, 0, 0, 'Bureaucrat', 'RK Store'), + (82189, 'Nano Crystal (Lesser Fear of Attention)', 42449, 82163, 'Lesser Fear of Attention', 46274, 147003, + 145503, 148503, 149, 'Crystal', 'Crowd_Control', 'Root', 146, 'Area', 0, 1, 0, 0, 0, 'Bureaucrat', + 'Mission Reward'), + (82190, 'Nano Crystal (Greater Mass Illusory Paralysis)', 42449, 82161, 'Greater Mass Illusory Paralysis', 46273, + 146988, 145488, 148488, 126, 'Crystal', 'Crowd_Control', 'Root', 146, 'Area', 0, 1, 0, 0, 0, 'Bureaucrat', + 'Mission Reward'), + (82191, 'Nano Crystal (Greater Fear of Attention)', 42449, 82166, 'Greater Fear of Attention', 46274, 146986, + 145486, 148486, 179, 'Crystal', 'Crowd_Control', 'Root', 146, 'Area', 0, 1, 0, 0, 0, 'Bureaucrat', + 'Mission Reward'), + (82192, 'Nano Crystal (Fear of Attention)', 42449, 82164, 'Fear of Attention', 46274, 146983, 145483, 148483, + 169, 'Crystal', 'Crowd_Control', 'Root', 146, 'Area', 0, 1, 0, 0, 0, 'Bureaucrat', 'Mission Reward'), + (82193, 'Nano Crystal (Capture Attention)', 12224, 82158, 'Capture Attention', 46272, 146932, 145432, 148432, 40, + 'Crystal', 'Crowd_Control', 'Root', 146, 'Area', 0, 1, 0, 0, 0, 'Bureaucrat', 'RK Store'), + (82194, 'Nano Crystal (Captivate Crowd)', 12257, 82159, 'Captivate Crowd', 46273, 146929, 145429, 148429, 66, + 'Crystal', 'Crowd_Control', 'Root', 146, 'Area', 0, 1, 0, 0, 0, 'Bureaucrat', 'RK Store'), + (82243, 'Nano Crystal (Pyramid Marketing)', 12257, 82242, 'Pyramid Marketing', 46273, 148130, 146630, 149630, 83, + 'Crystal', 'Crowd_Control', 'Root', 146, 'Area', 0, 1, 0, 0, 0, 'Trader', 'RK Store'), + (82800, 'Nano Crystal (Passive Micro Entanglement)', 12224, 82518, 'Passive Micro Entanglement', 46272, 147551, + 146051, 149051, 4, 'Crystal', 'Crowd_Control', 'Snare', 145, 'Target', 0, 1, 0, 0, 0, 'Fixer', 'RK Store'), + (82801, 'Nano Crystal (Nano Net)', 12224, 82510, 'Nano Net', 46277, 147544, 146044, 149044, 37, 'Crystal', + 'Crowd_Control', 'Snare', 145, 'Target', 0, 1, 0, 0, 0, 'Fixer', 'RK Store'), + (82802, 'Nano Crystal (Lesser Nano Net)', 12224, 82515, 'Lesser Nano Net', 46272, 147534, 146034, 149034, 10, + 'Crystal', 'Crowd_Control', 'Snare', 145, 'Target', 0, 1, 0, 0, 0, 'Fixer', 'RK Store'), + (82803, 'Nano Crystal (Invasive Micro Entanglement)', 12257, 82507, 'Invasive Micro Entanglement', 46278, 147530, + 146030, 149030, 73, 'Crystal', 'Crowd_Control', 'Snare', 145, 'Target', 0, 1, 0, 0, 0, 'Fixer', 'RK Store'), + (82804, 'Nano Crystal (Greater Nano Net)', 42449, 82504, 'Greater Nano Net', 46274, 147515, 146015, 149015, 103, + 'Crystal', 'Crowd_Control', 'Snare', 145, 'Target', 0, 1, 0, 0, 0, 'Fixer', 'RK Store'), + (82805, 'Nano Crystal (Gravity Bindings)', 42449, 82502, 'Gravity Bindings', 46279, 147511, 146011, 149011, 126, + 'Crystal', 'Crowd_Control', 'Snare', 145, 'Target', 0, 1, 0, 0, 0, 'Fixer', 'Mission Reward'), + (82806, 'Nano Crystal (Active Micro Entanglement)', 12224, 82513, 'Active Micro Entanglement', 46277, 147494, + 145994, 148994, 20, 'Crystal', 'Crowd_Control', 'Snare', 145, 'Target', 0, 1, 0, 0, 0, 'Fixer', 'RK Store'), + (82807, 'Nano Crystal (Postpone Encounter)', 12224, 82537, 'Postpone Encounter', 46276, 146891, 145391, 148391, + 14, 'Crystal', 'Crowd_Control', 'Snare', 145, 'Target', 0, 0, 0, 0, 0, 'Agent', 'RK Store'), + (82808, 'Nano Crystal (Lesser Delay the Inevitable)', 12224, 82542, 'Lesser Delay the Inevitable', 46272, 146871, + 145371, 148371, 37, 'Crystal', 'Crowd_Control', 'Snare', 145, 'Target', 0, 0, 0, 0, 0, 'Agent', 'RK Store'), + (82809, 'Nano Crystal (Greater Delay the Inevitable)', 12257, 82545, 'Greater Delay the Inevitable', 46274, + 146857, 145357, 148357, 90, 'Crystal', 'Crowd_Control', 'Snare', 145, 'Target', 0, 0, 0, 0, 0, 'Agent', + 'RK Store'), + (82810, 'Nano Crystal (Delay the Inevitable)', 12257, 82539, 'Delay the Inevitable', 46273, 146836, 145336, + 148336, 63, 'Crystal', 'Crowd_Control', 'Snare', 145, 'Target', 0, 0, 0, 0, 0, 'Agent', 'RK Store'), + (82811, 'Nano Crystal (Weight of the Guilty)', 12224, 82482, 'Weight of the Guilty', 46276, 147071, 145571, + 148571, 17, 'Crystal', 'Crowd_Control', 'Snare', 145, 'Target', 0, 1, 0, 0, 0, 'Bureaucrat', 'RK Store'), + (82812, 'Nano Crystal (Stumbling Steps)', 12224, 82480, 'Stumbling Steps', 46273, 147050, 145550, 148550, 30, + 'Crystal', 'Crowd_Control', 'Snare', 145, 'Target', 0, 1, 0, 0, 0, 'Bureaucrat', 'RK Store'), + (82813, 'Nano Crystal (Shackles of Obedience)', 42449, 82463, 'Shackles of Obedience', 46275, 147041, 145541, + 148541, 172, 'Crystal', 'Crowd_Control', 'Snare', 145, 'Target', 0, 1, 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (82814, 'Nano Crystal (Powerful Blizzard of Red Tape)', 42449, 82469, 'Powerful Blizzard of Red Tape', 46278, + 147030, 145530, 148530, 136, 'Crystal', 'Crowd_Control', 'Snare', 145, 'Target', 0, 1, 0, 0, 0, 'Bureaucrat', + 'Mission Reward'), + (82815, 'Nano Crystal (Oppressive Weight of the Guilty)', 42449, 82466, 'Oppressive Weight of the Guilty', 46275, + 147026, 145526, 148526, 152, 'Crystal', 'Crowd_Control', 'Snare', 145, 'Target', 0, 1, 0, 0, 0, 'Bureaucrat', + 'Mission Reward'), + (82816, 'Nano Crystal (Lesser Stumbling Steps)', 12224, 82528, 'Lesser Stumbling Steps', 46276, 147007, 145507, + 148507, 4, 'Crystal', 'Crowd_Control', 'Snare', 145, 'Target', 0, 1, 0, 0, 0, 'Bureaucrat', 'RK Store'), + (82817, 'Nano Crystal (Lesser Blizzard of Red Tape)', 12224, 82531, 'Lesser Blizzard of Red Tape', 46276, 147000, + 145500, 148500, 7, 'Crystal', 'Crowd_Control', 'Snare', 145, 'Target', 0, 1, 0, 0, 0, 'Bureaucrat', + 'No longer drops'), + (82818, 'Nano Crystal (Greater Stumbling Steps)', 42449, 82472, 'Greater Stumbling Steps', 46274, 146991, 145491, + 148491, 106, 'Crystal', 'Crowd_Control', 'Snare', 145, 'Target', 0, 1, 0, 0, 0, 'Bureaucrat', 'RK Store'), + (82819, 'Nano Crystal (Great Weight of the Guilty)', 12257, 82474, 'Great Weight of the Guilty', 46277, 146984, + 145484, 148484, 80, 'Crystal', 'Crowd_Control', 'Snare', 145, 'Target', 0, 1, 0, 0, 0, 'Bureaucrat', + 'RK Store'), + (82820, 'Nano Crystal (Blizzard of Red Tape)', 12224, 82477, 'Blizzard of Red Tape', 46277, 146927, 145427, + 148427, 50, 'Crystal', 'Crowd_Control', 'Snare', 145, 'Target', 0, 1, 0, 0, 0, 'Bureaucrat', 'RK Store'), + (82838, 'Nano Crystal (Pronouncement of Greatness)', 296678, 82834, 'Pronouncement of Greatness', 296675, 146782, + 145282, 148282, 20, 'Crystal', 'Morphs', 'Leet', 0, '', 0, 1, 0, 0, 0, 'Adventurer', 'RK Store'), + (82839, 'Nano Crystal (Sparrow Flight)', 300901, 82835, 'Sparrow Flight', 300900, 146800, 145300, 148300, 24, + 'Crystal', 'Morphs', 'Polymorph', 223, '', 0, 1, 0, 0, 0, 'Adventurer', 'RK Store'), + (83965, 'Nano Crystal (Wild Eye Gouger)', 12226, 83963, 'Wild Eye Gouger', 38845, 147901, 146401, 149401, 37, + 'Crystal', 'DeBuffs', 'Add_All_Offence_DeBuffs', 13, 'Area', 0, 1, 0, 0, 0, 'Nano-Technician', 'RK Store'), + (83966, 'Nano Crystal (Mass Pronounce Blindness)', 42451, 83960, 'Mass Pronounce Blindness', 38845, 147813, + 146313, 149313, 132, 'Crystal', 'DeBuffs', 'Add_All_Offence_DeBuffs', 13, 'Area', 0, 1, 0, 0, 0, + 'Nano-Technician', 'Mission Reward'), + (83967, 'Nano Crystal (Mass Cornea Attack)', 42451, 83961, 'Mass Cornea Attack', 38845, 147812, 146312, 149312, + 109, 'Crystal', 'DeBuffs', 'Add_All_Offence_DeBuffs', 13, 'Area', 0, 1, 0, 0, 0, 'Nano-Technician', 'RK Store'), + (83968, 'Nano Crystal (Mass Claw Eyes)', 12226, 83964, 'Mass Claw Eyes', 38845, 147811, 146311, 149311, 20, + 'Crystal', 'DeBuffs', 'Add_All_Offence_DeBuffs', 13, 'Area', 0, 1, 0, 0, 0, 'Nano-Technician', 'RK Store'), + (83969, 'Nano Crystal (Legions of the Eyeblighter)', 42451, 83959, 'Legions of the Eyeblighter', 38845, 147798, + 146298, 149298, 162, 'Crystal', 'DeBuffs', 'Add_All_Offence_DeBuffs', 13, 'Area', 0, 1, 0, 0, 0, + 'Nano-Technician', 'Mission Reward'), + (83970, 'Nano Crystal (Enveloping Darkness)', 12259, 83962, 'Enveloping Darkness', 38845, 147741, 146241, 149241, + 57, 'Crystal', 'DeBuffs', 'Add_All_Offence_DeBuffs', 13, 'Area', 0, 1, 0, 0, 0, 'Nano-Technician', 'RK Store'), + (83971, 'Nano Crystal (Visions of the Void)', 42451, 83947, 'Visions of the Void', 39126, 147892, 146392, 149392, + 189, 'Crystal', 'DeBuffs', 'Add_All_Offence_DeBuffs', 13, 'Target', 0, 1, 0, 0, 0, 'Nano-Technician', + 'Mission Reward'), + (83972, 'Nano Crystal (Shroud of the Grave)', 42451, 83948, 'Shroud of the Grave', 39126, 147869, 146369, 149369, + 182, 'Crystal', 'DeBuffs', 'Add_All_Offence_DeBuffs', 13, 'Target', 0, 1, 0, 0, 0, 'Nano-Technician', + 'Mission Reward'), + (83973, 'Nano Crystal (Shroud of Darkness)', 12259, 83957, 'Shroud of Darkness', 39126, 147868, 146368, 149368, + 66, 'Crystal', 'DeBuffs', 'Add_All_Offence_DeBuffs', 13, 'Target', 0, 1, 0, 0, 0, 'Nano-Technician', + 'RK Store'), + (83974, 'Nano Crystal (Pronounce Blindness)', 42451, 83954, 'Pronounce Blindness', 39126, 147852, 146352, 149352, + 119, 'Crystal', 'DeBuffs', 'Add_All_Offence_DeBuffs', 13, 'Target', 0, 1, 0, 0, 0, 'Nano-Technician', + 'RK Store'), + (83975, 'Nano Crystal (Poke Eyes)', 12226, 83944, 'Poke Eyes', 39126, 147849, 146349, 149349, 4, 'Crystal', + 'DeBuffs', 'Add_All_Offence_DeBuffs', 13, 'Target', 0, 1, 0, 0, 0, 'Nano-Technician', 'RK Store'), + (83976, 'Nano Crystal (Photon Deflector)', 42451, 83949, 'Photon Deflector', 39126, 147845, 146345, 149345, 172, + 'Crystal', 'DeBuffs', 'Add_All_Offence_DeBuffs', 13, 'Target', 0, 1, 0, 0, 0, 'Nano-Technician', + 'Mission Reward'), + (83977, 'Nano Crystal (Lesser Eyeblighter)', 12259, 83956, 'Lesser Eyeblighter', 39126, 147802, 146302, 149302, + 86, 'Crystal', 'DeBuffs', 'Add_All_Offence_DeBuffs', 13, 'Target', 0, 1, 0, 0, 0, 'Nano-Technician', + 'RK Store'), + (83978, 'Nano Crystal (Gouge Eyes)', 12226, 83942, 'Gouge Eyes', 39126, 147769, 146269, 149269, 27, 'Crystal', + 'DeBuffs', 'Add_All_Offence_DeBuffs', 13, 'Target', 0, 1, 0, 0, 0, 'Nano-Technician', 'RK Store'), + (83979, 'Nano Crystal (Foul Eyeblighter)', 42451, 83950, 'Foul Eyeblighter', 39126, 147759, 146259, 149259, 162, + 'Crystal', 'DeBuffs', 'Add_All_Offence_DeBuffs', 13, 'Target', 0, 1, 0, 0, 0, 'Nano-Technician', + 'Mission Reward'), + (83980, 'Nano Crystal (Eyeblighter)', 42451, 83953, 'Eyeblighter', 39126, 147746, 146246, 149246, 139, 'Crystal', + 'DeBuffs', 'Add_All_Offence_DeBuffs', 13, 'Target', 0, 1, 0, 0, 0, 'Nano-Technician', 'Mission Reward'), + (83981, 'Nano Crystal (Eviscerate Eyes)', 42451, 83952, 'Eviscerate Eyes', 39126, 147743, 146243, 149243, 152, + 'Crystal', 'DeBuffs', 'Add_All_Offence_DeBuffs', 13, 'Target', 0, 1, 0, 0, 0, 'Nano-Technician', + 'Mission Reward'), + (83982, 'Nano Crystal (Curtain of Darkness)', 12226, 83958, 'Curtain of Darkness', 39126, 147719, 146219, 149219, + 47, 'Crystal', 'DeBuffs', 'Add_All_Offence_DeBuffs', 13, 'Target', 0, 1, 0, 0, 0, 'Nano-Technician', + 'RK Store'), + (83983, 'Nano Crystal (Cornea Attack)', 12259, 83955, 'Cornea Attack', 39126, 147709, 146209, 149209, 96, + 'Crystal', 'DeBuffs', 'Add_All_Offence_DeBuffs', 13, 'Target', 0, 1, 0, 0, 0, 'Nano-Technician', 'RK Store'), + (83984, 'Nano Crystal (Claw Eyes)', 12226, 83943, 'Claw Eyes', 39126, 147696, 146196, 149196, 7, 'Crystal', + 'DeBuffs', 'Add_All_Offence_DeBuffs', 13, 'Target', 0, 1, 0, 0, 0, 'Nano-Technician', 'RK Store'), + (83985, 'Nano Crystal (Brutal Cornea Attack)', 42451, 83951, 'Brutal Cornea Attack', 39126, 147680, 146180, + 149180, 159, 'Crystal', 'DeBuffs', 'Add_All_Offence_DeBuffs', 13, 'Target', 0, 1, 0, 0, 0, 'Nano-Technician', + 'Mission Reward'), + (85142, 'Nano Crystal (Grinning Hunter)', 300914, 85070, 'Grinning Hunter', 300915, 146753, 145253, 148253, 83, + 'Crystal', 'Morphs', 'Sabretooth', 0, '', 0, 1, 0, 0, 0, 'Adventurer', 'RK Store'), + (85145, 'Nano Crystal (Playful Cub)', 300903, 85062, 'Playful Cub', 300904, 146777, 145277, 148277, 47, + 'Crystal', 'Morphs', 'Wolf', 0, '', 0, 1, 0, 0, 0, 'Adventurer', 'RK Store'), + (85263, 'Nano Crystal (Invasive Distributed Entanglement)', 12257, 85217, 'Invasive Distributed Entanglement', + 84284, 147529, 146029, 149029, 63, 'Crystal', 'Crowd_Control', 'Snare', 145, 'Area', 0, 1, 0, 0, 0, 'Fixer', + 'RK Store'), + (85264, 'Nano Crystal (Lesser Net Cast Wide)', 12224, 85218, 'Lesser Net Cast Wide', 84283, 147535, 146035, + 149035, 20, 'Crystal', 'Crowd_Control', 'Snare', 145, 'Area', 0, 1, 0, 0, 0, 'Fixer', 'RK Store'), + (85265, 'Nano Crystal (Flawless Medical Claim)', 42448, 85227, 'Flawless Medical Claim', 44232, 147510, 146010, + 149010, 129, 'Crystal', 'Buffs', 'Fixer_Short_Heal_Over_Time', 12, '', 0, 1, 0, 0, 0, 'Fixer', + 'Mission Reward'), + (85266, 'Nano Crystal (Greater Net Cast Wide)', 42449, 85224, 'Greater Net Cast Wide', 84285, 147516, 146016, + 149016, 119, 'Crystal', 'Crowd_Control', 'Snare', 145, 'Area', 0, 1, 0, 0, 0, 'Fixer', 'RK Store'), + (85267, 'Nano Crystal (Insurance Hack)', 12228, 85232, 'Insurance Hack', 44229, 147528, 146028, 149028, 47, + 'Crystal', 'Buffs', 'Fixer_Short_Heal_Over_Time', 12, '', 0, 1, 0, 0, 0, 'Fixer', 'RK Store'), + (85268, 'Nano Crystal (Basic Policy Skim)', 12256, 85231, 'Basic Policy Skim', 44230, 147501, 146001, 149001, 66, + 'Crystal', 'Buffs', 'Fixer_Short_Heal_Over_Time', 12, '', 0, 1, 0, 0, 0, 'Fixer', 'RK Store'), + (85269, 'Nano Crystal (Detailed Medical Claim)', 12256, 85230, 'Detailed Medical Claim', 44230, 147506, 146006, + 149006, 73, 'Crystal', 'Buffs', 'Fixer_Short_Heal_Over_Time', 12, '', 0, 1, 0, 0, 0, 'Fixer', 'RK Store'), + (85270, 'Nano Crystal (Falsify Medical Records)', 12228, 85233, 'Falsify Medical Records', 44229, 147509, 146009, + 149009, 30, 'Crystal', 'Buffs', 'Fixer_Short_Heal_Over_Time', 12, '', 0, 1, 0, 0, 0, 'Fixer', 'RK Store'), + (85271, 'Nano Crystal (Advanced Insurance Hack)', 42448, 85228, 'Advanced Insurance Hack', 44231, 147496, 145996, + 148996, 103, 'Crystal', 'Buffs', 'Fixer_Short_Heal_Over_Time', 12, '', 0, 1, 0, 0, 0, 'Fixer', 'RK Store'), + (85272, 'Nano Crystal (Advanced Policy Skim)', 42448, 85225, 'Advanced Policy Skim', 44232, 147497, 145997, + 148997, 142, 'Crystal', 'Buffs', 'Fixer_Short_Heal_Over_Time', 12, '', 0, 1, 0, 0, 0, 'Fixer', + 'Mission Reward'), + (85273, 'Nano Crystal (Basic Insurance Hack)', 12228, 85215, 'Basic Insurance Hack', 16246, 147500, 146000, + 149000, 4, 'Crystal', 'Buffs', 'Fixer_Short_Heal_Over_Time', 12, '', 0, 1, 0, 0, 0, 'Fixer', 'RK Store'), + (85274, 'Nano Crystal (Active Distributed Entanglement)', 12224, 85222, 'Active Distributed Entanglement', 84284, + 147493, 145993, 148993, 33, 'Crystal', 'Crowd_Control', 'Snare', 145, 'Area', 0, 1, 0, 0, 0, 'Fixer', + 'RK Store'), + (85275, 'Nano Crystal (Spin Nanoweb)', 42449, 85216, 'Spin Nanoweb', 84286, 147561, 146061, 149061, 156, + 'Crystal', 'Crowd_Control', 'Snare', 145, 'Area', 0, 1, 0, 0, 0, 'Fixer', 'Mission Reward'), + (85276, 'Nano Crystal (Spin Weak Nanoweb)', 12257, 85223, 'Spin Weak Nanoweb', 84285, 147562, 146062, 149062, 96, + 'Crystal', 'Crowd_Control', 'Snare', 145, 'Area', 0, 1, 0, 0, 0, 'Fixer', 'RK Store'), + (85277, 'Nano Crystal (Net Cast Wide)', 12224, 85220, 'Net Cast Wide', 84284, 147545, 146045, 149045, 43, + 'Crystal', 'Crowd_Control', 'Snare', 145, 'Area', 0, 1, 0, 0, 0, 'Fixer', 'RK Store'), + (85278, 'Nano Crystal (Omni-Med Incursion)', 42448, 85226, 'Omni-Med Incursion', 44233, 147548, 146048, 149048, + 149, 'Crystal', 'Buffs', 'Fixer_Short_Heal_Over_Time', 12, '', 0, 1, 0, 0, 0, 'Fixer', 'Mission Reward'), + (85279, 'Nano Crystal (Passive Distributed Entanglement)', 12224, 85219, 'Passive Distributed Entanglement', + 84283, 147550, 146050, 149050, 7, 'Crystal', 'Crowd_Control', 'Snare', 145, 'Area', 0, 1, 0, 0, 0, 'Fixer', + 'RK Store'), + (85280, 'Nano Crystal (Policy Skim)', 42448, 85229, 'Policy Skim', 44231, 147553, 146053, 149053, 119, 'Crystal', + 'Buffs', 'Fixer_Short_Heal_Over_Time', 12, '', 0, 1, 0, 0, 0, 'Fixer', 'RK Store'), + (85281, 'Nano Crystal (Mass Gravity Bindings)', 42449, 85221, 'Mass Gravity Bindings', 84286, 147540, 146040, + 149040, 136, 'Crystal', 'Crowd_Control', 'Snare', 145, 'Area', 0, 1, 0, 0, 0, 'Fixer', 'Mission Reward'), + (85282, 'Nano Crystal (Medical Claim)', 12228, 85234, 'Medical Claim', 16246, 147541, 146041, 149041, 17, + 'Crystal', 'Buffs', 'Fixer_Short_Heal_Over_Time', 12, '', 0, 1, 0, 0, 0, 'Fixer', 'RK Store'), + (85319, 'Nano Crystal (Lesser Weighty Announcement)', 12224, 85315, 'Lesser Weighty Announcement', 46276, 147008, + 145508, 148508, 37, 'Crystal', 'Crowd_Control', 'Snare', 145, 'Area', 0, 1, 0, 0, 0, 'Bureaucrat', 'RK Store'), + (85320, 'Nano Crystal (Lesser Enforced Sloth)', 12224, 85313, 'Lesser Enforced Sloth', 46276, 147002, 145502, + 148502, 14, 'Crystal', 'Crowd_Control', 'Snare', 145, 'Area', 0, 1, 0, 0, 0, 'Bureaucrat', 'RK Store'), + (85321, 'Nano Crystal (Enforced Sloth)', 12257, 85314, 'Enforced Sloth', 46277, 146960, 145460, 148460, 60, + 'Crystal', 'Crowd_Control', 'Snare', 145, 'Area', 0, 1, 0, 0, 0, 'Bureaucrat', 'RK Store'), + (85322, 'Nano Crystal (Lesser Delay Pursuers)', 12224, 85318, 'Lesser Delay Pursuers', 46276, 146870, 145370, + 148370, 27, 'Crystal', 'Crowd_Control', 'Snare', 145, 'Area', 0, 0, 0, 0, 0, 'Agent', 'RK Store'), + (85323, 'Nano Crystal (Delay Pursuers)', 12257, 85317, 'Delay Pursuers', 46277, 146835, 145335, 148335, 57, + 'Crystal', 'Crowd_Control', 'Snare', 145, 'Area', 0, 0, 0, 0, 0, 'Agent', 'RK Store'), + (85324, 'Nano Crystal (Greater Delay Pursuers)', 42449, 85316, 'Greater Delay Pursuers', 46278, 146856, 145356, + 148356, 109, 'Crystal', 'Crowd_Control', 'Snare', 145, 'Area', 0, 0, 0, 0, 0, 'Agent', 'RK Store'), + (85873, 'Nano Crystal (Ransack Skills (Weak))', 301398, 85871, 'Ransack Skills (Weak)', 301402, 148139, 0, 0, 10, + 'Crystal', 'Drain', 'Skill_Transfer_Target_DeBuffs', 136, 'Ransack', 0, 1, 0, 0, 0, 'Trader', 'RK Store'), + (85874, 'Nano Crystal (Ransack Skills (Minor))', 301398, 85869, 'Ransack Skills (Minor)', 301402, 148138, 0, 0, + 20, 'Crystal', 'Drain', 'Skill_Transfer_Target_DeBuffs', 136, 'Ransack', 0, 1, 0, 0, 0, 'Trader', 'RK Store'), + (85875, 'Nano Crystal (Ransack Skills (Average))', 301398, 85867, 'Ransack Skills (Average)', 301402, 148136, 0, + 0, 30, 'Crystal', 'Drain', 'Skill_Transfer_Target_DeBuffs', 136, 'Ransack', 0, 1, 0, 0, 0, 'Trader', + 'RK Store'), + (85876, 'Nano Crystal (Ransack Skills (Major))', 301398, 85861, 'Ransack Skills (Major)', 301402, 148137, 0, 0, + 70, 'Crystal', 'Drain', 'Skill_Transfer_Target_DeBuffs', 136, 'Ransack', 0, 1, 0, 0, 0, 'Trader', 'RK Store'), + (85877, 'Nano Crystal (Ransack Skills (Lesser))', 301398, 85865, 'Ransack Skills (Lesser)', 301402, 148135, 0, 0, + 40, 'Crystal', 'Drain', 'Skill_Transfer_Target_DeBuffs', 136, 'Ransack', 0, 1, 0, 0, 0, 'Trader', 'RK Store'), + (85878, 'Nano Crystal (Ransack Skills (Advanced))', 301398, 85859, 'Ransack Skills (Advanced)', 301402, 148134, + 0, 0, 86, 'Crystal', 'Drain', 'Skill_Transfer_Target_DeBuffs', 136, 'Ransack', 0, 1, 0, 0, 0, 'Trader', + 'RK Store'), + (85879, 'Nano Crystal (Plunder Skills (Weak))', 301398, 85857, 'Plunder Skills (Weak)', 301402, 148121, 0, 0, + 103, 'Crystal', 'Drain', 'Skill_Transfer_Target_DeBuffs', 136, 'Ransack', 0, 1, 0, 0, 0, 'Trader', 'RK Store'), + (85880, 'Nano Crystal (Ransack Skills)', 301398, 85863, 'Ransack Skills', 301402, 148133, 0, 0, 50, 'Crystal', + 'Drain', 'Skill_Transfer_Target_DeBuffs', 136, 'Ransack', 0, 1, 0, 0, 0, 'Trader', 'RK Store'), + (85881, 'Nano Crystal (Plunder Skills (Minor))', 301398, 85855, 'Plunder Skills (Minor)', 301402, 148120, 0, 0, + 123, 'Crystal', 'Drain', 'Skill_Transfer_Target_DeBuffs', 136, 'Ransack', 0, 1, 0, 0, 0, 'Trader', + 'Mission Reward'), + (85882, 'Nano Crystal (Plunder Skills (Average))', 301398, 85853, 'Plunder Skills (Average)', 301402, 148118, 0, + 0, 146, 'Crystal', 'Drain', 'Skill_Transfer_Target_DeBuffs', 136, 'Ransack', 0, 1, 0, 0, 0, 'Trader', + 'Mission Reward'), + (85883, 'Nano Crystal (Plunder Skills (Major))', 301398, 85847, 'Plunder Skills (Major)', 301402, 148119, 0, 0, + 172, 'Crystal', 'Drain', 'Skill_Transfer_Target_DeBuffs', 136, 'Ransack', 0, 1, 0, 0, 0, 'Trader', + 'Mission Reward'), + (85884, 'Nano Crystal (Plunder Skills (Lesser))', 301398, 85851, 'Plunder Skills (Lesser)', 301402, 148117, 0, 0, + 152, 'Crystal', 'Drain', 'Skill_Transfer_Target_DeBuffs', 136, 'Ransack', 0, 1, 0, 0, 0, 'Trader', + 'Mission Reward'), + (85885, 'Nano Crystal (Plunder Skills)', 301398, 85849, 'Plunder Skills', 301402, 148115, 0, 0, 162, 'Crystal', + 'Drain', 'Skill_Transfer_Target_DeBuffs', 136, 'Ransack', 0, 1, 0, 0, 0, 'Trader', 'Mission Reward'), + (85886, 'Nano Crystal (Plunder Skills (Advanced))', 301398, 85845, 'Plunder Skills (Advanced)', 301402, 148116, + 0, 0, 185, 'Crystal', 'Drain', 'Skill_Transfer_Target_DeBuffs', 136, 'Ransack', 0, 1, 0, 0, 0, 'Trader', + 'Mission Reward'), + (85887, 'Nano Crystal (Divest Skills (Weak))', 301397, 85858, 'Divest Skills (Weak)', 301400, 148025, 0, 0, 93, + 'Crystal', 'Drain', 'Skill_Transfer_Target_DeBuffs', 135, 'Deprive', 0, 1, 0, 0, 0, 'Trader', 'RK Store'), + (85888, 'Nano Crystal (Divest Skills (Minor))', 301397, 85856, 'Divest Skills (Minor)', 301400, 148024, 0, 0, + 113, 'Crystal', 'Drain', 'Skill_Transfer_Target_DeBuffs', 135, 'Deprive', 0, 1, 0, 0, 0, 'Trader', 'RK Store'), + (85889, 'Nano Crystal (Divest Skills (Average))', 301397, 85854, 'Divest Skills (Average)', 301400, 148022, 0, 0, + 132, 'Crystal', 'Drain', 'Skill_Transfer_Target_DeBuffs', 135, 'Deprive', 0, 1, 0, 0, 0, 'Trader', + 'Mission Reward'), + (85890, 'Nano Crystal (Divest Skills (Major))', 301397, 85848, 'Divest Skills (Major)', 301400, 148023, 0, 0, + 165, 'Crystal', 'Drain', 'Skill_Transfer_Target_DeBuffs', 135, 'Deprive', 0, 1, 0, 0, 0, 'Trader', + 'Mission Reward'), + (85891, 'Nano Crystal (Divest Skills (Lesser))', 301397, 85852, 'Divest Skills (Lesser)', 301400, 148021, 0, 0, + 149, 'Crystal', 'Drain', 'Skill_Transfer_Target_DeBuffs', 135, 'Deprive', 0, 1, 0, 0, 0, 'Trader', + 'Mission Reward'), + (85892, 'Nano Crystal (Divest Skills)', 301397, 85850, 'Divest Skills', 301400, 148019, 0, 0, 156, 'Crystal', + 'Drain', 'Skill_Transfer_Target_DeBuffs', 135, 'Deprive', 0, 1, 0, 0, 0, 'Trader', 'Mission Reward'), + (85893, 'Nano Crystal (Divest Skills (Advanced))', 301397, 85846, 'Divest Skills (Advanced)', 301400, 148020, 0, + 0, 179, 'Crystal', 'Drain', 'Skill_Transfer_Target_DeBuffs', 135, 'Deprive', 0, 1, 0, 0, 0, 'Trader', + 'Mission Reward'), + (85894, 'Nano Crystal (Deprive Skills (Weak))', 301397, 85872, 'Deprive Skills (Weak)', 301400, 148014, 0, 0, 4, + 'Crystal', 'Drain', 'Skill_Transfer_Target_DeBuffs', 135, 'Deprive', 0, 1, 0, 0, 0, 'Trader', 'RK Store'), + (85895, 'Nano Crystal (Deprive Skills (Minor))', 301397, 85870, 'Deprive Skills (Minor)', 301400, 148013, 0, 0, + 14, 'Crystal', 'Drain', 'Skill_Transfer_Target_DeBuffs', 135, 'Deprive', 0, 1, 0, 0, 0, 'Trader', 'RK Store'), + (85896, 'Nano Crystal (Deprive Skills (Average))', 301397, 85868, 'Deprive Skills (Average)', 301400, 148011, 0, + 0, 24, 'Crystal', 'Drain', 'Skill_Transfer_Target_DeBuffs', 135, 'Deprive', 0, 1, 0, 0, 0, 'Trader', + 'RK Store'), + (85897, 'Nano Crystal (Deprive Skills (Major))', 301397, 85862, 'Deprive Skills (Major)', 301400, 148012, 0, 0, + 57, 'Crystal', 'Drain', 'Skill_Transfer_Target_DeBuffs', 135, 'Deprive', 0, 1, 0, 0, 0, 'Trader', 'RK Store'), + (85898, 'Nano Crystal (Deprive Skills (Lesser))', 301397, 85866, 'Deprive Skills (Lesser)', 301400, 148010, 0, 0, + 33, 'Crystal', 'Drain', 'Skill_Transfer_Target_DeBuffs', 135, 'Deprive', 0, 1, 0, 0, 0, 'Trader', 'RK Store'), + (85899, 'Nano Crystal (Deprive Skills (Advanced))', 301397, 85860, 'Deprive Skills (Advanced)', 301400, 148009, + 0, 0, 80, 'Crystal', 'Drain', 'Skill_Transfer_Target_DeBuffs', 135, 'Deprive', 0, 1, 0, 0, 0, 'Trader', + 'RK Store'), + (85900, 'Nano Crystal (Deprive Skills)', 301397, 85864, 'Deprive Skills', 301400, 148008, 0, 0, 43, 'Crystal', + 'Drain', 'Skill_Transfer_Target_DeBuffs', 135, 'Deprive', 0, 1, 0, 0, 0, 'Trader', 'RK Store'), + (90407, 'Nano Crystal (Basic Humidity Extractor)', 12225, 90405, 'Basic Humidity Extractor', 38844, 147670, + 146170, 149170, 17, 'Crystal', 'Buffs', 'Nano_Over_Time_-_Line_A', 14, '', 0, 1, 0, 0, 0, 'Nano-Technician', + 'RK Store'), + (90408, 'Nano Crystal (Superior Humidity Extractor)', 12258, 90402, 'Superior Humidity Extractor', 38844, 147879, + 146379, 149379, 99, 'Crystal', 'Buffs', 'Nano_Over_Time_-_Line_A', 14, '', 0, 1, 0, 0, 0, 'Nano-Technician', + 'RK Store'), + (90409, 'Nano Crystal (Rudimentary Humidity Extractor)', 12225, 90400, 'Rudimentary Humidity Extractor', 38844, + 147859, 146359, 149359, 1, 'Crystal', 'Buffs', 'Nano_Over_Time_-_Line_A', 14, '', 0, 1, 0, 0, 0, + 'Nano-Technician', 'RK Store'), + (90410, 'Nano Crystal (Humidity Extractor)', 12225, 90404, 'Humidity Extractor', 38844, 147783, 146283, 149283, + 40, 'Crystal', 'Buffs', 'Nano_Over_Time_-_Line_A', 14, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'RK Store'), + (90411, 'Nano Crystal (Efficient Humidity Extractor)', 12258, 90403, 'Efficient Humidity Extractor', 38844, + 147731, 146231, 149231, 80, 'Crystal', 'Buffs', 'Nano_Over_Time_-_Line_A', 14, '', 0, 1, 0, 0, 0, + 'Nano-Technician', 'RK Store'), + (90412, 'Nano Crystal (Boundless Humidity Extractor)', 42450, 90401, 'Boundless Humidity Extractor', 38844, + 147678, 146178, 149178, 149, 'Crystal', 'Buffs', 'Nano_Over_Time_-_Line_A', 14, '', 0, 1, 0, 0, 0, + 'Nano-Technician', 'Mission Reward'), + (90413, 'Nano Crystal (Personal Notum Harvester)', 42450, 90406, 'Personal Notum Harvester', 38844, 147842, + 146342, 149342, 169, 'Crystal', 'Buffs', 'Nano_Over_Time_-_Line_A', 14, '', 0, 1, 0, 0, 0, 'Nano-Technician', + 'Mission Reward'), + (90451, 'Nano Crystal (Baton of Leadership (Team))', 296549, 90449, 'Baton of Leadership (Team)', 296548, 146925, + 145425, 148425, 99, 'Crystal', 'Buffs', 'Experience_Constructs_-_XP_Bonus', 959, '', 0, 1, 0, 0, 0, + 'Bureaucrat', 'RK Store'), + (90452, 'Nano Crystal (Baton of Command (Team))', 296549, 90448, 'Baton of Command (Team)', 296548, 146924, + 145424, 148424, 162, 'Crystal', 'Buffs', 'Experience_Constructs_-_XP_Bonus', 959, '', 0, 1, 0, 0, 0, + 'Bureaucrat', 'Mission Reward'), + (90453, 'Nano Crystal (Baton of Authority (Team))', 296549, 90450, 'Baton of Authority (Team)', 296548, 146923, + 145423, 148423, 17, 'Crystal', 'Buffs', 'Experience_Constructs_-_XP_Bonus', 959, '', 0, 1, 0, 0, 0, + 'Bureaucrat', 'RK Store'), + (91378, 'Nano Crystal (Siphon AC (Minor))', 42452, 91332, 'Siphon AC (Minor)', 117900, 148157, 146657, 149657, + 103, 'Crystal', 'Drain', 'AC_Transfer_Target_DeBuffs', 139, 'Siphon', 0, 1, 0, 0, 0, 'Trader', 'RK Store'), + (91381, 'Nano Crystal (Siphon AC (Weak))', 12260, 91335, 'Siphon AC (Weak)', 117900, 148158, 146658, 149658, 86, + 'Crystal', 'Drain', 'AC_Transfer_Target_DeBuffs', 139, 'Siphon', 0, 1, 0, 0, 0, 'Trader', 'RK Store'), + (91382, 'Nano Crystal (Siphon AC (Greater))', 42452, 91320, 'Siphon AC (Greater)', 117903, 148154, 146654, + 149654, 162, 'Crystal', 'Drain', 'AC_Transfer_Target_DeBuffs', 139, 'Siphon', 0, 1, 0, 0, 0, 'Trader', + 'Mission Reward'), + (91384, 'Nano Crystal (Siphon AC (Invasive))', 42452, 91317, 'Siphon AC (Invasive)', 117904, 148155, 146655, + 149655, 172, 'Crystal', 'Drain', 'AC_Transfer_Target_DeBuffs', 139, 'Siphon', 0, 1, 0, 0, 0, 'Trader', + 'Mission Reward'), + (91386, 'Nano Crystal (Siphon AC (Major))', 42452, 91326, 'Siphon AC (Major)', 117902, 148156, 146656, 149656, + 146, 'Crystal', 'Drain', 'AC_Transfer_Target_DeBuffs', 139, 'Siphon', 0, 1, 0, 0, 0, 'Trader', + 'Mission Reward'), + (91387, 'Nano Crystal (Siphon AC)', 42452, 91329, 'Siphon AC', 117901, 148152, 146652, 149652, 123, 'Crystal', + 'Drain', 'AC_Transfer_Target_DeBuffs', 139, 'Siphon', 0, 1, 0, 0, 0, 'Trader', 'Mission Reward'), + (91389, 'Nano Crystal (Siphon AC (Advanced))', 42452, 91325, 'Siphon AC (Advanced)', 117902, 148153, 146653, + 149653, 152, 'Crystal', 'Drain', 'AC_Transfer_Target_DeBuffs', 139, 'Siphon', 0, 1, 0, 0, 0, 'Trader', + 'Mission Reward'), + (91390, 'Nano Crystal (Draw AC (Weak))', 12260, 91334, 'Draw AC (Weak)', 117900, 148032, 146532, 149532, 93, + 'Crystal', 'Drain', 'AC_Transfer_Target_DeBuffs', 140, 'Draw', 0, 1, 0, 0, 0, 'Trader', 'RK Store'), + (91392, 'Nano Crystal (Pawnbroker''s Armor)', 42452, 91314, 'Pawnbroker''s Armor', 117904, 148112, 146612, + 149612, 185, 'Crystal', 'Drain', 'AC_Transfer_Target_DeBuffs', 139, 'Siphon', 0, 1, 0, 0, 0, 'Trader', + 'Mission Reward'), + (91394, 'Nano Crystal (Draw AC (Major))', 42452, 91323, 'Draw AC (Major)', 117902, 148030, 146530, 149530, 149, + 'Crystal', 'Drain', 'AC_Transfer_Target_DeBuffs', 140, 'Draw', 0, 1, 0, 0, 0, 'Trader', 'Mission Reward'), + (91395, 'Nano Crystal (Draw AC (Minor))', 42452, 91331, 'Draw AC (Minor)', 117901, 148031, 146531, 149531, 113, + 'Crystal', 'Drain', 'AC_Transfer_Target_DeBuffs', 140, 'Draw', 0, 1, 0, 0, 0, 'Trader', 'RK Store'), + (91397, 'Nano Crystal (Draw AC (Greater))', 42452, 91319, 'Draw AC (Greater)', 117903, 148028, 146528, 149528, + 165, 'Crystal', 'Drain', 'AC_Transfer_Target_DeBuffs', 140, 'Draw', 0, 1, 0, 0, 0, 'Trader', 'Mission Reward'), + (91399, 'Nano Crystal (Draw AC (Invasive))', 42452, 91316, 'Draw AC (Invasive)', 117904, 148029, 146529, 149529, + 179, 'Crystal', 'Drain', 'AC_Transfer_Target_DeBuffs', 140, 'Draw', 0, 1, 0, 0, 0, 'Trader', 'Mission Reward'), + (91401, 'Nano Crystal (Draw AC)', 42452, 91328, 'Draw AC', 117901, 148026, 146526, 149526, 136, 'Crystal', + 'Drain', 'AC_Transfer_Target_DeBuffs', 140, 'Draw', 0, 1, 0, 0, 0, 'Trader', 'Mission Reward'), + (91403, 'Nano Crystal (Draw AC (Advanced))', 42452, 91322, 'Draw AC (Advanced)', 117903, 148027, 146527, 149527, + 159, 'Crystal', 'Drain', 'AC_Transfer_Target_DeBuffs', 140, 'Draw', 0, 1, 0, 0, 0, 'Trader', 'Mission Reward'), + (92182, 'Nano Crystal (Traffic AC (Weak))', 12260, 92142, 'Traffic AC (Weak)', 117969, 148208, 146708, 149708, + 96, 'Crystal', 'Transfer', 'AC_Transfer_Target_Buffs', 143, 'Team', 0, 1, 0, 0, 0, 'Trader', 'RK Store'), + (92183, 'Nano Crystal (Traffic AC (Major))', 42452, 92139, 'Traffic AC (Major)', 117971, 148206, 146706, 149706, + 159, 'Crystal', 'Transfer', 'AC_Transfer_Target_Buffs', 143, 'Team', 0, 1, 0, 0, 0, 'Trader', 'Mission Reward'), + (92185, 'Nano Crystal (Traffic AC (Minor))', 42452, 92141, 'Traffic AC (Minor)', 117969, 148207, 146707, 149707, + 119, 'Crystal', 'Transfer', 'AC_Transfer_Target_Buffs', 143, 'Team', 0, 1, 0, 0, 0, 'Trader', 'RK Store'), + (92186, 'Nano Crystal (Traffic AC (Greater))', 42452, 92135, 'Traffic AC (Greater)', 117972, 148204, 146704, + 149704, 182, 'Crystal', 'Transfer', 'AC_Transfer_Target_Buffs', 143, 'Team', 0, 1, 0, 0, 0, 'Trader', + 'Mission Reward'), + (92188, 'Nano Crystal (Traffic AC (Lesser))', 42452, 92138, 'Traffic AC (Lesser)', 117970, 148205, 146705, + 149705, 139, 'Crystal', 'Transfer', 'AC_Transfer_Target_Buffs', 143, 'Team', 0, 1, 0, 0, 0, 'Trader', + 'Mission Reward'), + (92189, 'Nano Crystal (Redeem AC (Weak))', 12260, 92153, 'Redeem AC (Weak)', 118031, 148146, 146646, 149646, 90, + 'Crystal', 'Transfer', 'AC_Transfer_Target_Buffs', 143, 'Target', 0, 1, 0, 0, 0, 'Trader', 'RK Store'), + (92191, 'Nano Crystal (Traffic AC)', 42452, 92136, 'Traffic AC', 117970, 148202, 146702, 149702, 152, 'Crystal', + 'Transfer', 'AC_Transfer_Target_Buffs', 143, 'Team', 0, 1, 0, 0, 0, 'Trader', 'Mission Reward'), + (92193, 'Nano Crystal (Traffic AC (Advanced))', 42452, 92133, 'Traffic AC (Advanced)', 117971, 148203, 146703, + 149703, 172, 'Crystal', 'Transfer', 'AC_Transfer_Target_Buffs', 143, 'Team', 0, 1, 0, 0, 0, 'Trader', + 'Mission Reward'), + (92194, 'Nano Crystal (Redeem AC (Lesser))', 42452, 92150, 'Redeem AC (Lesser)', 118032, 148143, 146643, 149643, + 129, 'Crystal', 'Transfer', 'AC_Transfer_Target_Buffs', 143, 'Target', 0, 1, 0, 0, 0, 'Trader', + 'Mission Reward'), + (92196, 'Nano Crystal (Redeem AC (Major))', 42452, 92147, 'Redeem AC (Major)', 118033, 148144, 146644, 149644, + 156, 'Crystal', 'Transfer', 'AC_Transfer_Target_Buffs', 143, 'Target', 0, 1, 0, 0, 0, 'Trader', + 'Mission Reward'), + (92197, 'Nano Crystal (Redeem AC (Minor))', 42452, 92151, 'Redeem AC (Minor)', 118031, 148145, 146645, 149645, + 106, 'Crystal', 'Transfer', 'AC_Transfer_Target_Buffs', 143, 'Target', 0, 1, 0, 0, 0, 'Trader', 'RK Store'), + (92199, 'Nano Crystal (Redeem AC)', 42452, 92148, 'Redeem AC', 118032, 148140, 146640, 149640, 149, 'Crystal', + 'Transfer', 'AC_Transfer_Target_Buffs', 143, 'Target', 0, 1, 0, 0, 0, 'Trader', 'Mission Reward'), + (92201, 'Nano Crystal (Redeem AC (Advanced))', 42452, 92144, 'Redeem AC (Advanced)', 118033, 148141, 146641, + 149641, 165, 'Crystal', 'Transfer', 'AC_Transfer_Target_Buffs', 143, 'Target', 0, 1, 0, 0, 0, 'Trader', + 'Mission Reward'), + (92203, 'Nano Crystal (Redeem AC (Greater))', 42452, 92145, 'Redeem AC (Greater)', 118034, 148142, 146642, + 149642, 175, 'Crystal', 'Transfer', 'AC_Transfer_Target_Buffs', 143, 'Target', 0, 1, 0, 0, 0, 'Trader', + 'Mission Reward'), + (92205, 'Nano Crystal (Armor Trade-In)', 42452, 92130, 'Armor Trade-In', 118035, 147997, 146497, 149497, 185, + 'Crystal', 'Transfer', 'AC_Transfer_Target_Buffs', 143, 'Target', 0, 1, 0, 0, 0, 'Trader', 'Mission Reward'), + (92207, 'Nano Crystal (Major Armor Distributor)', 42452, 92132, 'Major Armor Distributor', 117973, 148093, + 146593, 149593, 189, 'Crystal', 'Transfer', 'AC_Transfer_Target_Buffs', 143, 'Team', 0, 1, 0, 0, 0, 'Trader', + 'Mission Reward'), + (93133, 'Nano Crystal (Grid Phase Accelerator)', 42450, 93126, 'Grid Phase Accelerator', 16300, 147519, 146019, + 149019, 136, 'Crystal', 'Buffs', 'Major_Evasion_Buffs', 144, '', 0, 1, 0, 0, 0, 'Fixer', 'Mission Reward'), + (93134, 'Nano Crystal (Partial Grid Jump)', 42450, 93127, 'Partial Grid Jump', 16300, 147549, 146049, 149049, + 113, 'Crystal', 'Buffs', 'Major_Evasion_Buffs', 144, '', 0, 1, 0, 0, 0, 'Fixer', 'RK Store'), + (93135, 'Nano Crystal (Gridspace Freedom)', 42450, 93132, 'Gridspace Freedom', 16300, 147523, 146023, 149023, + 156, 'Crystal', 'Buffs', 'Major_Evasion_Buffs', 144, '', 0, 1, 0, 0, 0, 'Fixer', 'Mission Reward'), + (93136, 'Nano Crystal (Hack Grid Vector)', 12225, 93131, 'Hack Grid Vector', 16300, 147524, 146024, 149024, 30, + 'Crystal', 'Buffs', 'Major_Evasion_Buffs', 144, '', 0, 1, 0, 0, 0, 'Fixer', 'RK Store'), + (93137, 'Nano Crystal (Leech Grid Vector)', 12258, 93129, 'Leech Grid Vector', 16300, 147532, 146032, 149032, 63, + 'Crystal', 'Buffs', 'Major_Evasion_Buffs', 144, '', 0, 1, 0, 0, 0, 'Fixer', 'RK Store'), + (93138, 'Nano Crystal (Grid Runner)', 12225, 93130, 'Grid Runner', 16300, 147521, 146021, 149021, 43, 'Crystal', + 'Buffs', 'Major_Evasion_Buffs', 144, '', 0, 1, 0, 0, 0, 'Fixer', 'RK Store'), + (93139, 'Nano Crystal (Grid Surfer)', 12258, 93128, 'Grid Surfer', 16300, 147522, 146022, 149022, 83, 'Crystal', + 'Buffs', 'Major_Evasion_Buffs', 144, '', 0, 1, 0, 0, 0, 'Fixer', 'RK Store'), + (93140, 'Nano Crystal (Limited Grid Jump)', 12225, 93125, 'Limited Grid Jump', 16300, 147538, 146038, 149038, 17, + 'Crystal', 'Buffs', 'Major_Evasion_Buffs', 144, '', 0, 1, 0, 0, 0, 'Fixer', 'RK Store'), + (95385, 'Nano Crystal (Greater Enforced Sloth)', 42449, 95382, 'Greater Enforced Sloth', 46278, 146985, 145485, + 148485, 146, 'Crystal', 'Crowd_Control', 'Snare', 145, 'Area', 0, 1, 0, 0, 0, 'Bureaucrat', 'Mission Reward'), + (95386, 'Nano Crystal (Weighty Announcement)', 12257, 95383, 'Weighty Announcement', 46277, 147072, 145572, + 148572, 83, 'Crystal', 'Crowd_Control', 'Snare', 145, 'Area', 0, 1, 0, 0, 0, 'Bureaucrat', 'RK Store'), + (95418, 'Nano Crystal (Ease of Execution)', 12228, 95410, 'Ease of Execution', 16303, 144978, 144851, 145105, 24, + 'Crystal', 'Buffs', 'Nano_Point_Cost_Buffs', 148, '', 0, 1, 0, 0, 0, 'Meta-Physicist', 'RK Store'), + (95419, 'Nano Crystal (Jobe Nano Libraries)', 42448, 95413, 'Jobe Nano Libraries', 16303, 147795, 146295, 149295, + 152, 'Crystal', 'Buffs', 'Nano_Point_Cost_Buffs', 148, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'Mission Reward'), + (95420, 'Nano Crystal (On-The-Fly Compression)', 12256, 95414, 'On-The-Fly Compression', 16303, 147835, 146335, + 149335, 73, 'Crystal', 'Buffs', 'Nano_Point_Cost_Buffs', 148, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'RK Store'), + (95421, 'Nano Crystal (Run-Time Recompiler)', 12228, 95416, 'Run-Time Recompiler', 16303, 147860, 146360, 149360, + 33, 'Crystal', 'Buffs', 'Nano_Point_Cost_Buffs', 148, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'RK Store'), + (95422, 'Nano Crystal (CrunchCom Nano Compressor)', 12228, 95415, 'CrunchCom Nano Compressor', 16303, 147716, + 146216, 149216, 47, 'Crystal', 'Buffs', 'Nano_Point_Cost_Buffs', 148, '', 0, 1, 0, 0, 0, 'Nano-Technician', + 'RK Store'), + (95423, 'Nano Crystal (CrunchCom Nano Compressor Pro)', 42448, 95412, 'CrunchCom Nano Compressor Pro', 16303, + 147717, 146217, 149217, 123, 'Crystal', 'Buffs', 'Nano_Point_Cost_Buffs', 148, '', 0, 1, 0, 0, 0, + 'Nano-Technician', 'Mission Reward'), + (95424, 'Nano Crystal (Izgimmer''s Obfuscated Recompiler)', 42448, 95417, 'Izgimmer''s Obfuscated Recompiler', + 16303, 147794, 146294, 149294, 179, 'Crystal', 'Buffs', 'Nano_Point_Cost_Buffs', 148, '', 0, 1, 0, 0, 0, + 'Nano-Technician', 'Mission Reward'), + (95425, 'Nano Crystal (Mocham''s Neural Interface-Web)', 42448, 95409, 'Mocham''s Neural Interface-Web', 16303, + 145030, 144903, 145157, 159, 'Crystal', 'Buffs', 'Nano_Point_Cost_Buffs', 148, '', 0, 1, 0, 0, 0, + 'Meta-Physicist', 'Mission Reward'), + (95426, 'Nano Crystal (Notum Attunement)', 12256, 95408, 'Notum Attunement', 16303, 145033, 144906, 145160, 60, + 'Crystal', 'Buffs', 'Nano_Point_Cost_Buffs', 148, '', 0, 1, 0, 0, 0, 'Meta-Physicist', 'RK Store'), + (95427, 'Nano Crystal (CrunchCom Code Sieve)', 12228, 95407, 'CrunchCom Code Sieve', 16303, 147715, 146215, + 149215, 10, 'Crystal', 'Buffs', 'Nano_Point_Cost_Buffs', 148, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'RK Store'), + (95428, 'Nano Crystal (Coherent Notum Web)', 12256, 95411, 'Coherent Notum Web', 16303, 144968, 144841, 145095, + 90, 'Crystal', 'Buffs', 'Nano_Point_Cost_Buffs', 148, '', 0, 1, 0, 0, 0, 'Meta-Physicist', 'RK Store'), + (95449, 'Nano Crystal (Cohesion Amplifier)', 12258, 95445, 'Cohesion Amplifier', 16202, 147699, 146199, 149199, + 63, 'Crystal', 'Buffs', 'Nano_Formula_Range_Buffs', 181, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'RK Store'), + (95450, 'Nano Crystal (Nano Cloud Supplement)', 42450, 95442, 'Nano Cloud Supplement', 16202, 147828, 146328, + 149328, 149, 'Crystal', 'Buffs', 'Nano_Formula_Range_Buffs', 181, '', 0, 1, 0, 0, 0, 'Nano-Technician', + 'Mission Reward'), + (95451, 'Nano Crystal (Notum Overload)', 42450, 95443, 'Notum Overload', 16202, 147833, 146333, 149333, 175, + 'Crystal', 'Buffs', 'Nano_Formula_Range_Buffs', 181, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'Mission Reward'), + (95452, 'Nano Crystal (Enhance Nano Communication)', 12225, 95448, 'Enhance Nano Communication', 16202, 147739, + 146239, 149239, 4, 'Crystal', 'Buffs', 'Nano_Formula_Range_Buffs', 181, '', 0, 1, 0, 0, 0, 'Nano-Technician', + 'RK Store'), + (95453, 'Nano Crystal (Enhance Nano Cohesion)', 12225, 95447, 'Enhance Nano Cohesion', 16202, 147738, 146238, + 149238, 20, 'Crystal', 'Buffs', 'Nano_Formula_Range_Buffs', 181, '', 0, 1, 0, 0, 0, 'Nano-Technician', + 'RK Store'), + (95454, 'Nano Crystal (Coherent Nano Pathway)', 12225, 95444, 'Coherent Nano Pathway', 16202, 147697, 146197, + 149197, 40, 'Crystal', 'Buffs', 'Nano_Formula_Range_Buffs', 181, '', 0, 1, 0, 0, 0, 'Nano-Technician', + 'RK Store'), + (95455, 'Nano Crystal (Superior Nano Command)', 12258, 95446, 'Superior Nano Command', 16202, 147881, 146381, + 149381, 93, 'Crystal', 'Buffs', 'Nano_Formula_Range_Buffs', 181, '', 0, 1, 0, 0, 0, 'Nano-Technician', + 'RK Store'), + (95530, 'Nano Crystal (Dedication of Thought)', 42451, 95525, 'Dedication of Thought', 16309, 144970, 144843, + 145097, 146, 'Crystal', 'Buffs', 'Interrupt_Modifier', 183, '', 0, 1, 0, 0, 0, 'Meta-Physicist', + 'Mission Reward'), + (95531, 'Nano Crystal (Universal Vulnerability Compendium)', 301587, 95527, 'Universal Vulnerability Compendium', + 291164, 147646, 146146, 149146, 169, 'Crystal', 'Buffs', 'Critical_Increase_Buffs', 182, 'Self', 0, 0, 0, 0, 0, + 'Martial Artist', 'Mission Reward'), + (95532, 'Nano Crystal (Subconscious Guidance)', 301587, 95526, 'Subconscious Guidance', 291164, 0, 0, 0, 30, + 'Crystal', 'Buffs', 'Critical_Increase_Buffs', 182, 'Self', 0, 0, 0, 0, 0, 'Martial Artist', 'RK Store'), + (95533, 'Nano Crystal (Last Minute Adjustments)', 301587, 95528, 'Last Minute Adjustments', 291164, 147613, + 146113, 149113, 139, 'Crystal', 'Buffs', 'Critical_Increase_Buffs', 182, 'Self', 0, 0, 0, 0, 0, + 'Martial Artist', 'Mission Reward'), + (95534, 'Nano Crystal (One Mind, One Purpose)', 42451, 95522, 'One Mind, One Purpose', 16309, 145036, 144909, + 145163, 162, 'Crystal', 'Buffs', 'Interrupt_Modifier', 183, '', 0, 1, 0, 0, 0, 'Meta-Physicist', + 'Mission Reward'), + (95535, 'Nano Crystal (Ignore External Events)', 12259, 95524, 'Ignore External Events', 16309, 144994, 144867, + 145121, 90, 'Crystal', 'Buffs', 'Interrupt_Modifier', 183, '', 0, 1, 0, 0, 0, 'Meta-Physicist', 'RK Store'), + (95536, 'Nano Crystal (Internal Focus)', 12226, 95521, 'Internal Focus', 16309, 145008, 144881, 145135, 14, + 'Crystal', 'Buffs', 'Interrupt_Modifier', 183, '', 0, 1, 0, 0, 0, 'Meta-Physicist', 'RK Store'), + (95537, 'Nano Crystal (Engrossing Activity)', 12226, 95523, 'Engrossing Activity', 16309, 144979, 144852, 145106, + 47, 'Crystal', 'Buffs', 'Interrupt_Modifier', 183, '', 0, 1, 0, 0, 0, 'Meta-Physicist', 'RK Store'), + (95538, 'Nano Crystal (Vulnerability Seeker)', 301587, 95529, 'Vulnerability Seeker', 291164, 147648, 146148, + 149148, 90, 'Crystal', 'Buffs', 'Critical_Increase_Buffs', 182, 'Self', 0, 0, 0, 0, 0, 'Martial Artist', + 'SL Loot'), + (95723, 'Nano Crystal (Combat Hardening)', 12228, 95695, 'Combat Hardening', 38905, 147914, 146414, 149414, 33, + 'Crystal', 'Buffs', 'HP_Buffs', 151, '', 0, 1, 0, 0, 0, 'Soldier', 'RK Store'), + (95724, 'Nano Crystal (Survivor''s Resilience)', 42448, 95693, 'Survivor''s Resilience', 100997, 147971, 146471, + 149471, 139, 'Crystal', 'Buffs', 'HP_Buffs', 151, '', 0, 1, 0, 0, 0, 'Soldier', 'Mission Reward'), + (95725, 'Nano Crystal (Tough as Nails)', 12256, 95694, 'Tough as Nails', 39046, 147984, 146484, 149484, 63, + 'Crystal', 'Buffs', 'HP_Buffs', 151, '', 0, 1, 0, 0, 0, 'Soldier', 'RK Store'), + (95726, 'Nano Crystal (Battlefield Endurance)', 42448, 95697, 'Battlefield Endurance', 100998, 147911, 146411, + 149411, 152, 'Crystal', 'Buffs', 'HP_Buffs', 151, '', 0, 1, 0, 0, 0, 'Soldier', 'Mission Reward'), + (95727, 'Nano Crystal (Boot Camp Toughness)', 12228, 95696, 'Boot Camp Toughness', 16758, 147912, 146412, 149412, + 17, 'Crystal', 'Buffs', 'HP_Buffs', 151, '', 0, 1, 0, 0, 0, 'Soldier', 'RK Store'), + (95728, 'Nano Crystal (Essence of Vitality)', 12228, 95707, 'Essence of Vitality', 16758, 147307, 145807, 148807, + 14, 'Crystal', 'Buffs', 'HP_Buffs', 151, 'Target', 0, 1, 0, 0, 0, 'Enforcer', 'RK Store'), + (95729, 'Nano Crystal (Mongo''s Troll)', 301276, 95698, 'Mongo''s Troll', 301275, 147323, 145823, 148823, 4, + 'Crystal', 'Buffs', 'HP_Buffs', 151, 'Self', 0, 1, 0, 0, 0, 'Enforcer', 'RK Store'), + (95730, 'Nano Crystal (Mongo''s Cyclops)', 301276, 95703, 'Mongo''s Cyclops', 301275, 147304, 145804, 148804, 93, + 'Crystal', 'Buffs', 'HP_Buffs', 151, 'Self', 0, 1, 0, 0, 0, 'Enforcer', 'RK Store'), + (95731, 'Nano Crystal (Essence of Might)', 12228, 95706, 'Essence of Might', 38905, 147305, 145805, 148805, 24, + 'Crystal', 'Buffs', 'HP_Buffs', 151, 'Target', 0, 1, 0, 0, 0, 'Enforcer', 'RK Store'), + (95732, 'Nano Crystal (Mongo''s Golem)', 301276, 95705, 'Mongo''s Golem', 301275, 147306, 145806, 148806, 43, + 'Crystal', 'Buffs', 'HP_Buffs', 151, 'Self', 0, 1, 0, 0, 0, 'Enforcer', 'RK Store'), + (95733, 'Nano Crystal (Essence of Cyclops)', 12256, 95702, 'Essence of Cyclops', 39046, 147301, 145801, 148801, + 57, 'Crystal', 'Buffs', 'HP_Buffs', 151, 'Target', 0, 1, 0, 0, 0, 'Enforcer', 'RK Store'), + (95734, 'Nano Crystal (Essence of Gargantua)', 42448, 95701, 'Essence of Gargantua', 39186, 147302, 145802, + 148802, 123, 'Crystal', 'Buffs', 'HP_Buffs', 151, 'Target', 0, 1, 0, 0, 0, 'Enforcer', 'Mission Reward'), + (95735, 'Nano Crystal (Mongo''s Titan)', 301276, 95699, 'Mongo''s Titan', 301275, 147303, 145803, 148803, 142, + 'Crystal', 'Buffs', 'HP_Buffs', 151, 'Self', 0, 1, 0, 0, 0, 'Enforcer', 'Mission Reward'), + (95736, 'Nano Crystal (Essence of Behemoth)', 42448, 95708, 'Essence of Behemoth', 100998, 147298, 145798, + 148798, 152, 'Crystal', 'Buffs', 'HP_Buffs', 151, 'Target', 0, 1, 0, 0, 0, 'Enforcer', 'Mission Reward'), + (95737, 'Nano Crystal (Essence of Boundless Health)', 12228, 95704, 'Essence of Boundless Health', 38905, 147299, + 145799, 148799, 33, 'Crystal', 'Buffs', 'HP_Buffs', 151, 'Target', 0, 1, 0, 0, 0, 'Enforcer', 'RK Store'), + (95738, 'Nano Crystal (Essence of Colossus)', 42448, 95700, 'Essence of Colossus', 100997, 147300, 145800, + 148800, 132, 'Crystal', 'Buffs', 'HP_Buffs', 151, 'Target', 0, 1, 0, 0, 0, 'Enforcer', 'Mission Reward'), + (95739, 'Nano Crystal (Superior Bodily Reinforcement)', 12256, 95715, 'Superior Bodily Reinforcement', 38905, + 147241, 145741, 148741, 57, 'Crystal', 'Buffs', 'Doctor_HP_Buffs', 184, '', 0, 1, 0, 0, 0, 'Doctor', + 'RK Store'), + (95740, 'Nano Crystal (Superior Metabolism Booster)', 42448, 95712, 'Superior Metabolism Booster', 38905, 147248, + 145748, 148748, 152, 'Crystal', 'Buffs', 'Doctor_HP_Buffs', 184, '', 0, 1, 0, 0, 0, 'Doctor', 'Mission Reward'), + (95741, 'Nano Crystal (Superior Omni-Med Enhancement)', 42448, 95709, 'Superior Omni-Med Enhancement', 38905, + 147250, 145750, 148750, 179, 'Crystal', 'Buffs', 'Doctor_HP_Buffs', 184, '', 0, 1, 0, 0, 0, 'Doctor', + 'Mission Reward'), + (95742, 'Nano Crystal (Metabolism Booster)', 12228, 95718, 'Metabolism Booster', 38905, 147198, 145698, 148698, + 33, 'Crystal', 'Buffs', 'Doctor_HP_Buffs', 184, '', 0, 1, 0, 0, 0, 'Doctor', 'RK Store'), + (95743, 'Nano Crystal (Pre-Combat Conditioning)', 42448, 95711, 'Pre-Combat Conditioning', 38905, 147217, 145717, + 148717, 139, 'Crystal', 'Buffs', 'Doctor_HP_Buffs', 184, '', 0, 1, 0, 0, 0, 'Doctor', 'Mission Reward'), + (95744, 'Nano Crystal (Infuse With Life)', 42448, 95720, 'Infuse with Life', 38905, 147174, 145674, 148674, 156, + 'Crystal', 'Buffs', 'Doctor_HP_Buffs', 184, '', 0, 1, 0, 0, 0, 'Doctor', 'Mission Reward'), + (95745, 'Nano Crystal (Major Health Graft)', 12256, 95713, 'Major Health Graft', 38905, 147192, 145692, 148692, + 93, 'Crystal', 'Buffs', 'Doctor_HP_Buffs', 184, '', 0, 1, 0, 0, 0, 'Doctor', 'RK Store'), + (95746, 'Nano Crystal (Medic''s Respite)', 12228, 95714, 'Medic''s Respite', 38905, 147196, 145696, 148696, 47, + 'Crystal', 'Buffs', 'Doctor_HP_Buffs', 184, '', 0, 1, 0, 0, 0, 'Doctor', 'RK Store'), + (95747, 'Nano Crystal (Bodily Reinforcement)', 12228, 95719, 'Bodily Reinforcement', 38905, 147096, 145596, + 148596, 10, 'Crystal', 'Buffs', 'Doctor_HP_Buffs', 184, '', 0, 1, 0, 0, 0, 'Doctor', 'No longer drops'), + (95748, 'Nano Crystal (Enhance Constitution)', 12228, 95716, 'Enhance Constitution', 38905, 147136, 145636, + 148636, 27, 'Crystal', 'Buffs', 'Doctor_HP_Buffs', 184, '', 0, 1, 0, 0, 0, 'Doctor', 'RK Store'), + (95749, 'Nano Crystal (Health Graft)', 12228, 95717, 'Health Graft', 38905, 147164, 145664, 148664, 17, + 'Crystal', 'Buffs', 'Doctor_HP_Buffs', 184, '', 0, 1, 0, 0, 0, 'Doctor', 'RK Store'), + (95750, 'Nano Crystal (Basic Omni-Med Enhancement)', 42448, 95710, 'Basic Omni-Med Enhancement', 38905, 147084, + 145584, 148584, 149, 'Crystal', 'Buffs', 'Doctor_HP_Buffs', 184, '', 0, 1, 0, 0, 0, 'Doctor', 'Mission Reward'), + (97447, 'Nano Crystal (Temporary Cellular Enhancement)', 12256, 96255, 'Temporary Cellular Enhancement', 39152, + 147264, 145764, 148764, 90, 'Crystal', 'Buffs', 'Doctor_Short_HP_Buffs', 185, '', 0, 1, 0, 0, 0, 'Doctor', + 'RK Store'), + (97449, 'Nano Crystal (Survivability Booster)', 12228, 96249, 'Survivability Booster', 16330, 147253, 145753, + 148753, 14, 'Crystal', 'Buffs', 'Doctor_Short_HP_Buffs', 185, '', 0, 1, 0, 0, 0, 'Doctor', 'RK Store'), + (97450, 'Nano Crystal (Superior Life Reinforcement)', 42448, 96259, 'Superior Life Reinforcement', 39292, 147247, + 145747, 148747, 169, 'Crystal', 'Buffs', 'Doctor_Short_HP_Buffs', 185, '', 0, 1, 0, 0, 0, 'Doctor', + 'Mission Reward'), + (97452, 'Nano Crystal (Superior Health Augmentation)', 12256, 96254, 'Superior Health Augmentation', 39012, + 147245, 145745, 148745, 83, 'Crystal', 'Buffs', 'Doctor_Short_HP_Buffs', 185, '', 0, 1, 0, 0, 0, 'Doctor', + 'RK Store'), + (97453, 'Nano Crystal (Strengthen Resolve)', 12256, 96253, 'Strengthen Resolve', 39012, 147240, 145740, 148740, + 66, 'Crystal', 'Buffs', 'Doctor_Short_HP_Buffs', 185, '', 0, 1, 0, 0, 0, 'Doctor', 'RK Store'), + (97455, 'Nano Crystal (Life Reinforcement)', 12228, 96252, 'Life Reinforcement', 39012, 147189, 145689, 148689, + 50, 'Crystal', 'Buffs', 'Doctor_Short_HP_Buffs', 185, '', 0, 1, 0, 0, 0, 'Doctor', 'RK Store'), + (97456, 'Nano Crystal (Life Channeler)', 42448, 96247, 'Life Channeler', 39292, 147188, 145688, 148688, 182, + 'Crystal', 'Buffs', 'Doctor_Short_HP_Buffs', 185, '', 0, 1, 0, 0, 0, 'Doctor', 'Mission Reward'), + (97458, 'Nano Crystal (Health Surge)', 12228, 96250, 'Health Surge', 16330, 147166, 145666, 148666, 30, + 'Crystal', 'Buffs', 'Doctor_Short_HP_Buffs', 185, '', 0, 1, 0, 0, 0, 'Doctor', 'RK Store'), + (97459, 'Nano Crystal (Health Augmentation)', 12228, 96248, 'Health Augmentation', 16330, 147162, 145662, 148662, + 4, 'Crystal', 'Buffs', 'Doctor_Short_HP_Buffs', 185, '', 0, 1, 0, 0, 0, 'Doctor', 'RK Store'), + (97461, 'Nano Crystal (Health Assembler)', 42448, 96258, 'Health Assembler', 39292, 147161, 145661, 148661, 156, + 'Crystal', 'Buffs', 'Doctor_Short_HP_Buffs', 185, '', 0, 1, 0, 0, 0, 'Doctor', 'Mission Reward'), + (97462, 'Nano Crystal (Enhanced Health Surge)', 42448, 96257, 'Enhanced Health Surge', 39152, 147139, 145639, + 148639, 132, 'Crystal', 'Buffs', 'Doctor_Short_HP_Buffs', 185, '', 0, 1, 0, 0, 0, 'Doctor', 'Mission Reward'), + (97464, 'Nano Crystal (Bodily Amplification)', 12228, 96251, 'Bodily Amplification', 16330, 147094, 145594, + 148594, 43, 'Crystal', 'Buffs', 'Doctor_Short_HP_Buffs', 185, '', 0, 1, 0, 0, 0, 'Doctor', 'RK Store'), + (97465, 'Nano Crystal (Constitution Magnification)', 42448, 96256, 'Constitution Magnification', 39152, 147111, + 145611, 148611, 146, 'Crystal', 'Buffs', 'Doctor_Short_HP_Buffs', 185, '', 0, 1, 0, 0, 0, 'Doctor', + 'Mission Reward'), + (99129, 'Nano Crystal (Wrath Abatement)', 42451, 99113, 'Wrath Abatement', 39168, 145078, 144951, 145205, 179, + 'Crystal', 'DeBuffs', 'Meta-Physicist_Initiatives/Damage_DeBuffs', 187, '', 0, 1, 0, 0, 0, 'Meta-Physicist', + 'Mission Reward'), + (99130, 'Nano Crystal (Wrath Ebb)', 42451, 99114, 'Wrath Ebb', 39168, 145079, 144952, 145206, 149, 'Crystal', + 'DeBuffs', 'Meta-Physicist_Initiatives/Damage_DeBuffs', 187, '', 0, 1, 0, 0, 0, 'Meta-Physicist', + 'Mission Reward'), + (99131, 'Nano Crystal (Temper Wrath)', 42451, 99116, 'Temper Wrath', 39168, 145065, 144938, 145192, 136, + 'Crystal', 'DeBuffs', 'Meta-Physicist_Initiatives/Damage_DeBuffs', 187, '', 0, 1, 0, 0, 0, 'Meta-Physicist', + 'Mission Reward'), + (99132, 'Nano Crystal (Stifle Rage)', 12259, 99119, 'Stifle Rage', 39168, 145047, 144920, 145174, 53, 'Crystal', + 'DeBuffs', 'Meta-Physicist_Initiatives/Damage_DeBuffs', 187, '', 0, 1, 0, 0, 0, 'Meta-Physicist', 'RK Store'), + (99133, 'Nano Crystal (Shed Anger)', 12226, 99112, 'Shed Anger', 39168, 145046, 144919, 145173, 7, 'Crystal', + 'DeBuffs', 'Meta-Physicist_Initiatives/Damage_DeBuffs', 187, '', 0, 1, 0, 0, 0, 'Meta-Physicist', 'RK Store'), + (99134, 'Nano Crystal (Rage Eradication)', 42451, 99115, 'Rage Eradication', 39168, 145042, 144915, 145169, 116, + 'Crystal', 'DeBuffs', 'Meta-Physicist_Initiatives/Damage_DeBuffs', 187, '', 0, 1, 0, 0, 0, 'Meta-Physicist', + 'RK Store'), + (99135, 'Nano Crystal (Rage Suppression)', 12259, 99118, 'Rage Suppression', 39168, 145044, 144917, 145171, 76, + 'Crystal', 'DeBuffs', 'Meta-Physicist_Initiatives/Damage_DeBuffs', 187, '', 0, 1, 0, 0, 0, 'Meta-Physicist', + 'RK Store'), + (99136, 'Nano Crystal (Rage Abolishment)', 12259, 99117, 'Rage Abolishment', 39168, 145041, 144914, 145168, 93, + 'Crystal', 'DeBuffs', 'Meta-Physicist_Initiatives/Damage_DeBuffs', 187, '', 0, 1, 0, 0, 0, 'Meta-Physicist', + 'RK Store'), + (99137, 'Nano Crystal (Quench Anger)', 12226, 99120, 'Quench Anger', 39168, 145040, 144913, 145167, 40, + 'Crystal', 'DeBuffs', 'Meta-Physicist_Initiatives/Damage_DeBuffs', 187, '', 0, 1, 0, 0, 0, 'Meta-Physicist', + 'RK Store'), + (99138, 'Nano Crystal (Quell Anger)', 12226, 99122, 'Quell Anger', 39168, 145039, 144912, 145166, 30, 'Crystal', + 'DeBuffs', 'Meta-Physicist_Initiatives/Damage_DeBuffs', 187, '', 0, 1, 0, 0, 0, 'Meta-Physicist', 'RK Store'), + (99139, 'Nano Crystal (Douse Anger)', 12226, 99121, 'Douse Anger', 39168, 144977, 144850, 145104, 14, 'Crystal', + 'DeBuffs', 'Meta-Physicist_Initiatives/Damage_DeBuffs', 187, '', 0, 1, 0, 0, 0, 'Meta-Physicist', 'RK Store'), + (99140, 'Nano Crystal (Lull Wrath)', 42451, 99123, 'Lull Wrath', 39168, 145015, 144888, 145142, 162, 'Crystal', + 'DeBuffs', 'Meta-Physicist_Initiatives/Damage_DeBuffs', 187, '', 0, 1, 0, 0, 0, 'Meta-Physicist', + 'Mission Reward'), + (99210, 'Nano Crystal (Total Mental Domination)', 42451, 99192, 'Total Mental Domination', 39137, 147066, 145566, + 148566, 179, 'Crystal', 'Crowd_Control', 'Charm_Other', 202, 'Long', 0, 1, 0, 0, 0, 'Bureaucrat', + 'Mission Reward'), + (99211, 'Nano Crystal (Temporary Allegiance)', 42451, 99196, 'Temporary Allegiance', 39137, 147062, 145562, + 148562, 159, 'Crystal', 'Crowd_Control', 'Charm_Other', 202, 'Short', 0, 1, 0, 0, 0, 'Bureaucrat', + 'Mission Reward'), + (99212, 'Nano Crystal (Temporary Glamor)', 12226, 99208, 'Temporary Glamor', 39137, 147063, 145563, 148563, 20, + 'Crystal', 'Crowd_Control', 'Charm_Other', 202, 'Long', 0, 1, 0, 0, 0, 'Bureaucrat', 'RK Store'), + (99213, 'Nano Crystal (Solicit Support)', 12259, 99202, 'Solicit Support', 39137, 147046, 145546, 148546, 63, + 'Crystal', 'Crowd_Control', 'Charm_Other', 202, 'Long', 0, 1, 0, 0, 0, 'Bureaucrat', 'RK Store'), + (99214, 'Nano Crystal (Soft Siren Call)', 12226, 99205, 'Soft Siren Call', 39137, 147045, 145545, 148545, 40, + 'Crystal', 'Crowd_Control', 'Charm_Other', 202, 'Short', 0, 1, 0, 0, 0, 'Bureaucrat', 'RK Store'), + (99215, 'Nano Crystal (Personal Magnetism)', 12259, 99203, 'Personal Magnetism', 39137, 147028, 145528, 148528, + 53, 'Crystal', 'Crowd_Control', 'Charm_Other', 202, 'Short', 0, 1, 0, 0, 0, 'Bureaucrat', 'RK Store'), + (99216, 'Nano Crystal (Lesser Charismatic Rapture)', 12259, 99200, 'Lesser Charismatic Rapture', 39137, 147001, + 145501, 148501, 96, 'Crystal', 'Crowd_Control', 'Charm_Other', 202, 'Short', 0, 1, 0, 0, 0, 'Bureaucrat', + 'RK Store'), + (99217, 'Nano Crystal (Lesser Pheromone Control)', 12226, 99207, 'Lesser Pheromone Control', 39137, 147006, + 145506, 148506, 27, 'Crystal', 'Crowd_Control', 'Charm_Other', 202, 'Short', 0, 1, 0, 0, 0, 'Bureaucrat', + 'RK Store'), + (99218, 'Nano Crystal (Inveigle Support)', 42451, 99194, 'Inveigle Support', 39137, 146999, 145499, 148499, 162, + 'Crystal', 'Crowd_Control', 'Charm_Other', 202, 'Long', 0, 1, 0, 0, 0, 'Bureaucrat', 'Mission Reward'), + (99219, 'Nano Crystal (Insidious Beguilement)', 42451, 99195, 'Insidious Beguilement', 39137, 146997, 145497, + 148497, 152, 'Crystal', 'Crowd_Control', 'Charm_Other', 202, 'Long', 0, 1, 0, 0, 0, 'Bureaucrat', + 'Mission Reward'), + (99220, 'Nano Crystal (Impose Will)', 12259, 99201, 'Impose Will', 39137, 146995, 145495, 148495, 86, 'Crystal', + 'Crowd_Control', 'Charm_Other', 202, 'Long', 0, 1, 0, 0, 0, 'Bureaucrat', 'RK Store'), + (99221, 'Nano Crystal (Dominate Psyche)', 12226, 99204, 'Dominate Psyche', 39137, 146954, 145454, 148454, 47, + 'Crystal', 'Crowd_Control', 'Charm_Other', 202, 'Long', 0, 1, 0, 0, 0, 'Bureaucrat', 'RK Store'), + (99222, 'Nano Crystal (Enrapturing Bondage)', 42451, 99197, 'Enrapturing Bondage', 39137, 146961, 145461, 148461, + 149, 'Crystal', 'Crowd_Control', 'Charm_Other', 202, 'Short', 0, 1, 0, 0, 0, 'Bureaucrat', 'Mission Reward'), + (99223, 'Nano Crystal (Displace Thought Patterns)', 42451, 99209, 'Displace Thought Patterns', 39137, 146951, + 145451, 148451, 189, 'Crystal', 'Crowd_Control', 'Charm_Other', 202, 'Short', 0, 1, 0, 0, 0, 'Bureaucrat', + 'Mission Reward'), + (99224, 'Nano Crystal (Charismatic Rapture)', 42451, 99193, 'Charismatic Rapture', 39137, 146934, 145434, 148434, + 169, 'Crystal', 'Crowd_Control', 'Charm_Other', 202, 'Short', 0, 1, 0, 0, 0, 'Bureaucrat', 'Mission Reward'), + (99225, 'Nano Crystal (Captivated Thoughts)', 42451, 99199, 'Captivated Thoughts', 39137, 146930, 145430, 148430, + 109, 'Crystal', 'Crowd_Control', 'Charm_Other', 202, 'Long', 0, 1, 0, 0, 0, 'Bureaucrat', 'RK Store'), + (99226, 'Nano Crystal (Bend Will)', 12226, 99206, 'Bend Will', 39137, 146926, 145426, 148426, 33, 'Crystal', + 'Crowd_Control', 'Charm_Other', 202, 'Long', 0, 1, 0, 0, 0, 'Bureaucrat', 'RK Store'), + (99227, 'Nano Crystal (Allure of Servitude)', 42451, 99198, 'Allure of Servitude', 39137, 146911, 145411, 148411, + 136, 'Crystal', 'Crowd_Control', 'Charm_Other', 202, 'Long', 0, 1, 0, 0, 0, 'Bureaucrat', 'Mission Reward'), + (99587, 'Nano Crystal (Uncontrollable Body Tremors)', 301085, 99577, 'Uncontrollable Body Tremors', 291160, + 147268, 145768, 148768, 185, 'Crystal', 'DeBuffs', 'Initiative_DeBuffs', 186, 'Unbreakable', 0, 1, 0, 0, 0, + 'Doctor', 'SL Loot'), + (99589, 'Nano Crystal (Tired Limbs)', 301093, 99578, 'Tired Limbs', 301097, 147266, 145766, 148766, 7, 'Crystal', + 'DeBuffs', 'Initiative_DeBuffs', 186, 'Breakable', 0, 1, 0, 0, 0, 'Doctor', 'RK Store'), + (99593, 'Nano Crystal (Induce Muscle Spasms)', 301085, 99583, 'Induce Muscle Spasms', 291160, 147169, 145669, + 148669, 126, 'Crystal', 'DeBuffs', 'Initiative_DeBuffs', 186, 'Unbreakable', 0, 1, 0, 0, 0, 'Doctor', + 'Mission Reward'), + (99594, 'Nano Crystal (Muscle Atrophy)', 301085, 99582, 'Muscle Atrophy', 291160, 147183, 145683, 148683, 17, + 'Crystal', 'DeBuffs', 'Initiative_DeBuffs', 186, 'Unbreakable', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (99618, 'Nano Crystal (Unfriendly Merger)', 12225, 99604, 'Unfriendly Merger', 39137, 148210, 146710, 149710, 17, + 'Crystal', 'Drain', 'Nano_Drain_-_Line_A', 215, '', 0, 1, 0, 0, 0, 'Trader', 'RK Store'), + (99619, 'Nano Crystal (Strip Assets)', 12225, 99605, 'Strip Assets', 39137, 148181, 146681, 149681, 33, + 'Crystal', 'Drain', 'Nano_Drain_-_Line_A', 215, '', 0, 1, 0, 0, 0, 'Trader', 'RK Store'), + (99620, 'Nano Crystal (Shady Acquisition)', 12258, 99606, 'Shady Acquisition', 39137, 148150, 146650, 149650, 63, + 'Crystal', 'Drain', 'Nano_Drain_-_Line_A', 215, '', 0, 1, 0, 0, 0, 'Trader', 'RK Store'), + (99621, 'Nano Crystal (Pay the Pauper)', 42450, 99607, 'Pay the Pauper', 39137, 148113, 146613, 149613, 169, + 'Crystal', 'Drain', 'Nano_Drain_-_Line_A', 215, '', 0, 1, 0, 0, 0, 'Trader', 'Mission Reward'), + (99622, 'Nano Crystal (Overdraught)', 12225, 99608, 'Overdraught', 39137, 148107, 146607, 149607, 24, 'Crystal', + 'Drain', 'Nano_Drain_-_Line_A', 215, '', 0, 1, 0, 0, 0, 'Trader', 'RK Store'), + (99623, 'Nano Crystal (Line of Credit)', 12225, 99609, 'Line of Credit', 39137, 148082, 146582, 149582, 7, + 'Crystal', 'Drain', 'Nano_Drain_-_Line_A', 215, '', 0, 1, 0, 0, 0, 'Trader', 'RK Store'), + (99624, 'Nano Crystal (Insolvency)', 42450, 99610, 'Insolvency', 39137, 148064, 146564, 149564, 123, 'Crystal', + 'Drain', 'Nano_Drain_-_Line_A', 215, '', 0, 1, 0, 0, 0, 'Trader', 'Mission Reward'), + (99625, 'Nano Crystal (Impoverish Accounts)', 42450, 99611, 'Impoverish Accounts', 39137, 148063, 146563, 149563, + 146, 'Crystal', 'Drain', 'Nano_Drain_-_Line_A', 215, '', 0, 1, 0, 0, 0, 'Trader', 'Mission Reward'), + (99626, 'Nano Crystal (Greater Strip Assets)', 12258, 99612, 'Greater Strip Assets', 39137, 148054, 146554, + 149554, 80, 'Crystal', 'Drain', 'Nano_Drain_-_Line_A', 215, '', 0, 1, 0, 0, 0, 'Trader', 'RK Store'), + (99627, 'Nano Crystal (Forced Bankruptcy)', 42450, 99613, 'Forced Bankruptcy', 39137, 148044, 146544, 149544, + 185, 'Crystal', 'Drain', 'Nano_Drain_-_Line_A', 215, '', 0, 1, 0, 0, 0, 'Trader', 'Mission Reward'), + (99628, 'Nano Crystal (Extended Line of Credit)', 12225, 99614, 'Extended Line of Credit', 39137, 148040, 146540, + 149540, 50, 'Crystal', 'Drain', 'Nano_Drain_-_Line_A', 215, '', 0, 1, 0, 0, 0, 'Trader', 'RK Store'), + (99629, 'Nano Crystal (Enforced Loan)', 12225, 99615, 'Enforced Loan', 39137, 148036, 146536, 149536, 40, + 'Crystal', 'Drain', 'Nano_Drain_-_Line_A', 215, '', 0, 1, 0, 0, 0, 'Trader', 'RK Store'), + (99630, 'Nano Crystal (Dubious Accounting)', 12258, 99616, 'Dubious Accounting', 39137, 148033, 146533, 149533, + 99, 'Crystal', 'Drain', 'Nano_Drain_-_Line_A', 215, '', 0, 1, 0, 0, 0, 'Trader', 'RK Store'), + (100201, 'Nano Crystal (Mongo Bash!)', 301272, 100200, 'Mongo Bash!', 301263, 147330, 0, 0, 66, 'Crystal', + 'Crowd_Control', 'Mongo_Buffs', 188, '', 0, 1, 0, 0, 0, 'Enforcer', 'RK Store'), + (100202, 'Nano Crystal (Mongo Slam!)', 301272, 100198, 'Mongo Slam!', 301263, 147332, 0, 0, 17, 'Crystal', + 'Crowd_Control', 'Mongo_Buffs', 188, '', 0, 1, 0, 0, 0, 'Enforcer', 'RK Store'), + (100203, 'Nano Crystal (Mongo Crush!)', 301272, 100199, 'Mongo Crush!', 301263, 147331, 0, 0, 149, 'Crystal', + 'Crowd_Control', 'Mongo_Buffs', 188, '', 0, 1, 0, 0, 0, 'Enforcer', 'Mission Reward'), + (100204, 'Nano Crystal (Mongo Smash!)', 301272, 100197, 'Mongo Smash!', 301263, 147333, 0, 0, 132, 'Crystal', + 'Crowd_Control', 'Mongo_Buffs', 188, '', 0, 1, 0, 0, 0, 'Enforcer', 'Mission Reward'), + (100218, 'Nano Crystal (Eternal Enmity)', 42451, 100214, 'Eternal Enmity', 16230, 147579, 146079, 149079, 162, + 'Crystal', 'Crowd_Control', 'Taunt', 0, '', 0, 1, 0, 0, 0, 'Martial Artist', 'Mission Reward'), + (100219, 'Nano Crystal (Seething Resentment)', 42451, 100216, 'Seething Resentment', 16230, 147632, 146132, + 149132, 136, 'Crystal', 'Crowd_Control', 'Taunt', 0, '', 0, 1, 0, 0, 0, 'Martial Artist', 'Mission Reward'), + (100220, 'Nano Crystal (Distracting Nuisance)', 12259, 100217, 'Distracting Nuisance', 16230, 147574, 146074, + 149074, 53, 'Crystal', 'Crowd_Control', 'Taunt', 0, '', 0, 1, 0, 0, 0, 'Martial Artist', 'RK Store'), + (100221, 'Nano Crystal (Encourage Hatred)', 12259, 100215, 'Encourage Hatred', 16230, 147576, 146076, 149076, 86, + 'Crystal', 'Crowd_Control', 'Taunt', 0, '', 0, 1, 0, 0, 0, 'Martial Artist', 'RK Store'), + (100222, 'Nano Crystal (Roar of Aggression)', 42451, 100210, 'Roar of Aggression', 16230, 147339, 145839, 148839, + 116, 'Crystal', 'Crowd_Control', 'Taunt_Target', 0, '', 0, 1, 0, 0, 0, 'Enforcer', 'RK Store'), + (100223, 'Nano Crystal (Taunting Glare)', 12226, 100213, 'Taunting Glare', 16230, 147344, 145844, 148844, 7, + 'Crystal', 'Crowd_Control', 'Taunt_Target', 0, '', 0, 1, 0, 0, 0, 'Enforcer', 'No longer drops'), + (100224, 'Nano Crystal (Aggressive Instincts)', 12226, 100211, 'Aggressive Instincts', 16230, 147273, 145773, + 148773, 27, 'Crystal', 'Crowd_Control', 'Taunt_Target', 0, '', 0, 1, 0, 0, 0, 'Enforcer', 'RK Store'), + (100225, 'Nano Crystal (Baleful Stare)', 12259, 100212, 'Baleful Stare', 16230, 147276, 145776, 148776, 57, + 'Crystal', 'Crowd_Control', 'Taunt_Target', 0, '', 0, 1, 0, 0, 0, 'Enforcer', 'RK Store'), + (100226, 'Nano Crystal (Primal Hatred)', 42451, 100209, 'Primal Hatred', 16230, 147336, 145836, 148836, 139, + 'Crystal', 'Crowd_Control', 'Taunt_Target', 0, '', 0, 1, 0, 0, 0, 'Enforcer', 'Mission Reward'), + (100227, 'Nano Crystal (Id Assault)', 42451, 100207, 'Id Assault', 16230, 147930, 146430, 149430, 132, 'Crystal', + 'Crowd_Control', 'Taunt_(normal)', 0, '', 0, 1, 0, 0, 0, 'Soldier', 'Mission Reward'), + (100228, 'Nano Crystal (Draw Attention)', 12226, 100208, 'Draw Attention', 16230, 147919, 146419, 149419, 14, + 'Crystal', 'Crowd_Control', 'Taunt_(normal)', 0, '', 0, 1, 0, 0, 0, 'Soldier', 'RK Store'), + (100229, 'Nano Crystal (Enraged Mind)', 12226, 100206, 'Enraged Mind', 16230, 147922, 146422, 149422, 30, + 'Crystal', 'Crowd_Control', 'Taunt_(normal)', 0, '', 0, 1, 0, 0, 0, 'Soldier', 'RK Store'), + (100230, 'Nano Crystal (Annoying Presence)', 12259, 100205, 'Annoying Presence', 16230, 147907, 146407, 149407, + 70, 'Crystal', 'Crowd_Control', 'Taunt_(normal)', 0, '', 0, 1, 0, 0, 0, 'Soldier', 'RK Store'), + (100260, 'Nano Crystal (Incandescent Rage)', 301297, 100251, 'Incandescent Rage', 301294, 147319, 0, 0, 132, + 'Crystal', 'Buffs', 'Rage', 189, '', 0, 1, 0, 0, 0, 'Enforcer', 'Mission Reward'), + (100261, 'Nano Crystal (Infernal Rage)', 301297, 100254, 'Infernal Rage', 301294, 147320, 0, 0, 139, 'Crystal', + 'Buffs', 'Rage', 189, '', 0, 1, 0, 0, 0, 'Enforcer', 'Mission Reward'), + (100262, 'Nano Crystal (Burning Rage)', 301297, 100253, 'Burning Rage', 301294, 147288, 0, 0, 80, 'Crystal', + 'Buffs', 'Rage', 189, '', 0, 1, 0, 0, 0, 'Enforcer', 'RK Store'), + (100263, 'Nano Crystal (Fell Rage)', 301297, 100252, 'Fell Rage', 301294, 147310, 0, 0, 50, 'Crystal', 'Buffs', + 'Rage', 189, '', 0, 1, 0, 0, 0, 'Enforcer', 'RK Store'), + (100264, 'Nano Crystal (Berserk Rage)', 301297, 100250, 'Berserk Rage', 301294, 147278, 0, 0, 30, 'Crystal', + 'Buffs', 'Rage', 189, '', 0, 1, 0, 0, 0, 'Enforcer', 'RK Store'), + (100444, 'Nano Crystal (Cubicle Dweller)', 42449, 100431, 'Cubicle Dweller', 46270, 146936, 145436, 148436, 103, + 'Crystal', 'Crowd_Control', 'Mezz', 147, 'Target', 0, 1, 0, 0, 0, 'Bureaucrat', 'RK Store'), + (100445, 'Nano Crystal (Peaceful Intentions)', 42449, 100443, 'Peaceful Intentions', 46271, 147840, 146340, + 149340, 159, 'Crystal', 'Crowd_Control', 'Mezz', 147, 'Calm', 0, 1, 0, 0, 0, 'Nano-Technician', + 'Mission Reward'), + (100446, 'Nano Crystal (Discourage Involvement)', 42449, 100441, 'Discourage Involvement', 46270, 147726, 146226, + 149226, 129, 'Crystal', 'Crowd_Control', 'Mezz', 147, 'Calm', 0, 1, 0, 0, 0, 'Nano-Technician', + 'Mission Reward'), + (100447, 'Nano Crystal (Bewilder)', 12224, 100440, 'Bewilder', 46283, 147671, 146171, 149171, 30, 'Crystal', + 'Crowd_Control', 'Mezz', 147, 'Calm', 0, 1, 0, 0, 0, 'Nano-Technician', 'RK Store'), + (100448, 'Nano Crystal (Trinkets and Toys)', 12257, 100436, 'Trinkets and Toys', 46269, 148209, 146709, 149709, + 63, 'Crystal', 'Crowd_Control', 'Mezz', 147, '', 0, 1, 0, 0, 0, 'Trader', 'RK Store'), + (100449, 'Nano Crystal (Simple Mind, Simple Pleasures)', 42449, 100439, 'Simple Mind, Simple Pleasures', 46271, + 148151, 146651, 149651, 162, 'Crystal', 'Crowd_Control', 'Mezz', 147, '', 0, 1, 0, 0, 0, 'Trader', + 'Mission Reward'), + (100450, 'Nano Crystal (Imaginary Distractions)', 42449, 100434, 'Imaginary Distractions', 46270, 148062, 146562, + 149562, 146, 'Crystal', 'Crowd_Control', 'Mezz', 147, '', 0, 1, 0, 0, 0, 'Trader', 'Mission Reward'), + (100451, 'Nano Crystal (Glittering Plaything)', 42449, 100435, 'Glittering Plaything', 46270, 148047, 146547, + 149547, 106, 'Crystal', 'Crowd_Control', 'Mezz', 147, '', 0, 1, 0, 0, 0, 'Trader', 'RK Store'), + (100452, 'Nano Crystal (Distract with Trinkets)', 12224, 100433, 'Distract with Trinkets', 46283, 148017, 146517, + 149517, 20, 'Crystal', 'Crowd_Control', 'Mezz', 147, '', 0, 1, 0, 0, 0, 'Trader', 'RK Store'), + (100453, 'Nano Crystal (Distracting Baubles)', 12224, 100437, 'Distracting Baubles', 46269, 148018, 146518, + 149518, 47, 'Crystal', 'Crowd_Control', 'Mezz', 147, '', 0, 1, 0, 0, 0, 'Trader', 'RK Store'), + (100454, 'Nano Crystal (Bright Shiny Sparkling Thing)', 12224, 100438, 'Bright Shiny Sparkling Thing', 46283, + 148001, 146501, 149501, 33, 'Crystal', 'Crowd_Control', 'Mezz', 147, '', 0, 1, 0, 0, 0, 'Trader', 'RK Store'), + (100455, 'Nano Crystal (Wandering Mind)', 42449, 100429, 'Wandering Mind', 46271, 147070, 145570, 148570, 156, + 'Crystal', 'Crowd_Control', 'Mezz', 147, 'Target', 0, 1, 0, 0, 0, 'Bureaucrat', 'Mission Reward'), + (100456, 'Nano Crystal (Muddled Psyche)', 42449, 100426, 'Muddled Psyche', 84276, 147024, 145524, 148524, 126, + 'Crystal', 'Crowd_Control', 'Mezz', 147, 'Area', 0, 1, 0, 0, 0, 'Bureaucrat', 'Mission Reward'), + (100457, 'Nano Crystal (Introspective Engagement)', 42449, 100430, 'Introspective Engagement', 46270, 146998, + 145498, 148498, 132, 'Crystal', 'Crowd_Control', 'Mezz', 147, 'Target', 0, 1, 0, 0, 0, 'Bureaucrat', + 'Mission Reward'), + (100458, 'Nano Crystal (Disjointed Psyche)', 42449, 100424, 'Disjointed Psyche', 84277, 146950, 145450, 148450, + 162, 'Crystal', 'Crowd_Control', 'Mezz', 147, 'Area', 0, 1, 0, 0, 0, 'Bureaucrat', 'Mission Reward'), + (100459, 'Nano Crystal (Disrupted Psyche)', 42449, 100422, 'Disrupted Psyche', 84278, 146952, 145452, 148452, + 185, 'Crystal', 'Crowd_Control', 'Mezz', 147, 'Area', 0, 1, 0, 0, 0, 'Bureaucrat', 'Mission Reward'), + (100460, 'Nano Crystal (Disjointed From Reality)', 42449, 100428, 'Disjointed From Reality', 46271, 146949, + 145449, 148449, 175, 'Crystal', 'Crowd_Control', 'Mezz', 147, 'Target', 0, 1, 0, 0, 0, 'Bureaucrat', + 'Mission Reward'), + (100461, 'Nano Crystal (Demotivate)', 12257, 100432, 'Demotivate', 46269, 146938, 145438, 148438, 80, 'Crystal', + 'Crowd_Control', 'Mezz', 147, 'Target', 0, 1, 0, 0, 0, 'Bureaucrat', 'RK Store'), + (100462, 'Nano Crystal (Project Calm)', 12257, 100442, 'Project Calm', 46269, 147851, 146351, 149351, 60, + 'Crystal', 'Crowd_Control', 'Mezz', 147, 'Calm', 0, 1, 0, 0, 0, 'Nano-Technician', 'RK Store'), + (116799, 'Nano Crystal (Recondition Parts)', 12228, 116797, 'Recondition Parts', 44230, 147460, 145960, 148960, + 50, 'Crystal', 'Pet_Combat', 'Pet_Heal', 0, '', 0, 1, 0, 0, 0, 'Engineer', 'Mission Reward'), + (116800, 'Nano Crystal (Quick Fix)', 12228, 116793, 'Quick Fix', 16246, 147454, 145954, 148954, 14, 'Crystal', + 'Pet_Combat', 'Pet_Heal', 0, '', 0, 1, 0, 0, 0, 'Engineer', 'Mission Reward'), + (116801, 'Nano Crystal (Patchy Repairs)', 12228, 116794, 'Patchy Repairs', 44229, 147440, 145940, 148940, 34, + 'Crystal', 'Pet_Combat', 'Pet_Heal', 0, '', 0, 1, 0, 0, 0, 'Engineer', 'Mission Reward'), + (116802, 'Nano Crystal (Intricate Repairs)', 42448, 116795, 'Intricate Repairs', 44233, 147417, 145917, 148917, + 156, 'Crystal', 'Pet_Combat', 'Pet_Heal', 0, '', 0, 1, 0, 0, 0, 'Engineer', 'Mission Reward'), + (116803, 'Nano Crystal (Field Workshop)', 42448, 116796, 'Field Workshop', 44232, 147390, 145890, 148890, 120, + 'Crystal', 'Pet_Combat', 'Pet_Heal', 0, '', 0, 1, 0, 0, 0, 'Engineer', 'Mission Reward'), + (116804, 'Nano Crystal (A Maker''s Touch)', 42448, 116791, 'A Maker''s Touch', 44234, 147348, 145848, 148848, + 179, 'Crystal', 'Pet_Combat', 'Pet_Heal', 0, '', 0, 1, 0, 0, 0, 'Engineer', 'Mission Reward'), + (116805, 'Nano Crystal (Thorough Overhaul)', 42448, 116798, 'Thorough Overhaul', 44230, 147065, 145565, 148565, + 166, 'Crystal', 'Pet_Buffs', 'Heal', 0, '', 0, 1, 0, 0, 0, 'Bureaucrat', 'Mission Reward'), + (116806, 'Nano Crystal (Rebuild Casing)', 12256, 116792, 'Rebuild Casing', 44231, 147459, 145959, 148959, 84, + 'Crystal', 'Pet_Combat', 'Pet_Heal', 0, '', 0, 1, 0, 0, 0, 'Engineer', 'Mission Reward'), + (116822, 'Nano Crystal (Chant of Effortless Strikes)', 300520, 116811, 'Chant of Effortless Strikes', 300518, + 144965, 144838, 145092, 130, 'Crystal', 'Pet_Buffs', 'Meta-Physicist_Pet_Initiative_Buffs', 217, '', 0, 1, 0, 0, + 0, 'Meta-Physicist', 'Mission Reward'), + (116823, 'Nano Crystal (Instill With Righteous Frenzy)', 42448, 116812, 'Instill With Righteous Frenzy', 16207, + 145006, 144879, 145133, 150, 'Crystal', 'Pet_Buffs', 'Meta-Physicist_Pet_Damage_Buffs', 216, '', 0, 1, 0, 0, 0, + 'Meta-Physicist', 'Mission Reward'), + (116824, 'Nano Crystal (Instill With Rage)', 12228, 116813, 'Instill With Rage', 16207, 145005, 144878, 145132, + 21, 'Crystal', 'Pet_Buffs', 'Meta-Physicist_Pet_Damage_Buffs', 216, '', 0, 1, 0, 0, 0, 'Meta-Physicist', + 'RK Store'), + (116825, 'Nano Crystal (Instill With Malign Intent)', 42448, 116814, 'Instill With Malign Intent', 16207, 145004, + 144877, 145131, 189, 'Crystal', 'Pet_Buffs', 'Meta-Physicist_Pet_Damage_Buffs', 216, '', 0, 1, 0, 0, 0, + 'Meta-Physicist', 'Mission Reward'), + (116826, 'Nano Crystal (Instill With Fury)', 12228, 116815, 'Instill With Fury', 16207, 145003, 144876, 145130, + 41, 'Crystal', 'Pet_Buffs', 'Meta-Physicist_Pet_Damage_Buffs', 216, '', 0, 1, 0, 0, 0, 'Meta-Physicist', + 'RK Store'), + (116827, 'Nano Crystal (Instill With Ferocious Purpose)', 42448, 116816, 'Instill With Ferocious Purpose', 16207, + 145002, 144875, 145129, 113, 'Crystal', 'Pet_Buffs', 'Meta-Physicist_Pet_Damage_Buffs', 216, '', 0, 1, 0, 0, 0, + 'Meta-Physicist', 'RK Store'), + (116828, 'Nano Crystal (Instill With Enduring Wrath)', 42448, 116817, 'Instill With Enduring Wrath', 16207, + 145001, 144874, 145128, 166, 'Crystal', 'Pet_Buffs', 'Meta-Physicist_Pet_Damage_Buffs', 216, '', 0, 1, 0, 0, 0, + 'Meta-Physicist', 'Mission Reward'), + (116829, 'Nano Crystal (High Chant of Frenzied Blows)', 300520, 116818, 'High Chant of Frenzied Blows', 300518, + 144993, 144866, 145120, 156, 'Crystal', 'Pet_Buffs', 'Meta-Physicist_Pet_Initiative_Buffs', 217, '', 0, 1, 0, 0, + 0, 'Meta-Physicist', 'Mission Reward'), + (116830, 'Nano Crystal (High Chant of Effortless Strikes)', 300520, 116819, 'High Chant of Effortless Strikes', + 300518, 144992, 144865, 145119, 182, 'Crystal', 'Pet_Buffs', 'Meta-Physicist_Pet_Initiative_Buffs', 217, '', 0, + 1, 0, 0, 0, 'Meta-Physicist', 'Mission Reward'), + (116831, 'Nano Crystal (Chant of Frenzied Blows)', 300520, 116820, 'Chant of Frenzied Blows', 300518, 144966, + 144839, 145093, 87, 'Crystal', 'Pet_Buffs', 'Meta-Physicist_Pet_Initiative_Buffs', 217, '', 0, 1, 0, 0, 0, + 'Meta-Physicist', 'RK Store'), + (116832, 'Nano Crystal (Instill With Terrible Anger)', 12256, 116821, 'Instill With Terrible Anger', 16207, + 145007, 144880, 145134, 74, 'Crystal', 'Pet_Buffs', 'Meta-Physicist_Pet_Damage_Buffs', 216, '', 0, 1, 0, 0, 0, + 'Meta-Physicist', 'RK Store'), + (116857, 'Nano Crystal (Advanced Face Graft)', 42448, 116856, 'Advanced Face Graft', 39158, 146817, 145317, + 148317, 150, 'Crystal', 'Disguise', '', 0, '', 0, 0, 0, 0, 0, 'Agent', 'Mission Reward'), + (116858, 'Nano Crystal (Face Graft)', 12256, 116855, 'Face Graft', 39158, 146841, 145341, 148341, 77, 'Crystal', + 'Disguise', '', 0, '', 0, 0, 0, 0, 0, 'Agent', 'RK Store'), + (117231, 'Nano Crystal (Mimic Profession: Trader)', 42451, 117211, 'Mimic Profession: Trader', 16775, 146886, + 145386, 148386, 162, 'Crystal', 'False_Professions', 'False_Profession', 218, 'Trader', 0, 1, 0, 0, 0, 'Agent', + 'Mission Reward'), + (117232, 'Nano Crystal (Mimic Profession: Meta-Physicist)', 42451, 117208, 'Mimic Profession: Meta-Physicist', + 16775, 146887, 145387, 148387, 165, 'Crystal', 'False_Professions', 'False_Profession', 218, 'Meta-Physicist', + 0, 1, 0, 0, 0, 'Agent', 'Mission Reward'), + (117233, 'Nano Crystal (Mimic Profession: Martial Artist)', 42451, 117215, 'Mimic Profession: Martial Artist', + 16775, 146883, 145383, 148383, 149, 'Crystal', 'False_Professions', 'False_Profession', 218, 'Martial_Artist', + 0, 1, 0, 0, 0, 'Agent', 'Mission Reward'), + (117234, 'Nano Crystal (Mimic Profession: Nanotechnician)', 42451, 117207, 'Mimic Profession: Nanotechnician', + 16775, 146884, 145384, 148384, 169, 'Crystal', 'False_Professions', 'False_Profession', 218, 'Nano-Technician', + 0, 1, 0, 0, 0, 'Agent', 'Mission Reward'), + (117235, 'Nano Crystal (Mimic Profession: Soldier)', 42451, 117216, 'Mimic Profession: Soldier', 16775, 146885, + 145385, 148385, 146, 'Crystal', 'False_Professions', 'False_Profession', 218, 'Soldier', 0, 1, 0, 0, 0, 'Agent', + 'Mission Reward'), + (117236, 'Nano Crystal (Mimic Profession: Enforcer)', 42451, 117217, 'Mimic Profession: Enforcer', 16775, 146880, + 145380, 148380, 146, 'Crystal', 'False_Professions', 'False_Profession', 218, 'Enforcer', 0, 1, 0, 0, 0, + 'Agent', 'Mission Reward'), + (117237, 'Nano Crystal (Mimic Profession: Engineer)', 42451, 117213, 'Mimic Profession: Engineer', 16775, 146881, + 145381, 148381, 156, 'Crystal', 'False_Professions', 'False_Profession', 218, 'Engineer', 0, 1, 0, 0, 0, + 'Agent', 'Mission Reward'), + (117238, 'Nano Crystal (Mimic Profession: Fixer)', 42451, 117212, 'Mimic Profession: Fixer', 16775, 146882, + 145382, 148382, 159, 'Crystal', 'False_Professions', 'False_Profession', 218, 'Fixer', 0, 1, 0, 0, 0, 'Agent', + 'Mission Reward'), + (117239, 'Nano Crystal (Mimic Profession: Adventurer)', 42451, 117214, 'Mimic Profession: Adventurer', 16775, + 146877, 145377, 148377, 152, 'Crystal', 'False_Professions', 'False_Profession', 218, 'Adventurer', 0, 1, 0, 0, + 0, 'Agent', 'Mission Reward'), + (117240, 'Nano Crystal (Mimic Profession: Bureaucrat)', 42451, 117209, 'Mimic Profession: Bureaucrat', 16775, + 146878, 145378, 148378, 165, 'Crystal', 'False_Professions', 'False_Profession', 218, 'Bureaucrat', 0, 1, 0, 0, + 0, 'Agent', 'Mission Reward'), + (117241, 'Nano Crystal (Mimic Profession: Doctor)', 42451, 117210, 'Mimic Profession: Doctor', 16775, 146879, + 145379, 148379, 162, 'Crystal', 'False_Professions', 'False_Profession', 218, 'Doctor', 0, 1, 0, 0, 0, 'Agent', + 'Mission Reward'), + (117242, 'Nano Crystal (Assume Profession: Soldier)', 12259, 117227, 'Assume Profession: Soldier', 16775, 146829, + 145329, 148329, 80, 'Crystal', 'False_Professions', 'False_Profession', 218, 'Soldier', 0, 1, 0, 0, 0, 'Agent', + 'RK Store'), + (117243, 'Nano Crystal (Assume Profession: Trader)', 12259, 117222, 'Assume Profession: Trader', 16775, 146830, + 145330, 148330, 99, 'Crystal', 'False_Professions', 'False_Profession', 218, 'Trader', 0, 1, 0, 0, 0, 'Agent', + 'RK Store'), + (117244, 'Nano Crystal (Assume Profession: Martial Artist)', 12259, 117226, 'Assume Profession: Martial Artist', + 16775, 146826, 145326, 148326, 83, 'Crystal', 'False_Professions', 'False_Profession', 218, 'Martial_Artist', 0, + 1, 0, 0, 0, 'Agent', 'RK Store'), + (117245, 'Nano Crystal (Assume Profession: Meta-Physicist)', 42451, 117219, 'Assume Profession: Meta-Physicist', + 16775, 146827, 145327, 148327, 113, 'Crystal', 'False_Professions', 'False_Profession', 218, 'Meta-Physicist', + 0, 1, 0, 0, 0, 'Agent', 'RK Store'), + (117246, 'Nano Crystal (Assume Profession: Nanotechnician)', 42451, 117218, 'Assume Profession: Nanotechnician', + 16775, 146828, 145328, 148328, 119, 'Crystal', 'False_Professions', 'False_Profession', 218, 'Nano-Technician', + 0, 1, 0, 0, 0, 'Agent', 'RK Store'), + (117247, 'Nano Crystal (Assume Profession: Enforcer)', 12259, 117228, 'Assume Profession: Enforcer', 16775, + 146823, 145323, 148323, 76, 'Crystal', 'False_Professions', 'False_Profession', 218, 'Enforcer', 0, 1, 0, 0, 0, + 'Agent', 'RK Store'), + (117248, 'Nano Crystal (Assume Profession: Engineer)', 12259, 117224, 'Assume Profession: Engineer', 16775, + 146824, 145324, 148324, 90, 'Crystal', 'False_Professions', 'False_Profession', 218, 'Engineer', 0, 1, 0, 0, 0, + 'Agent', 'RK Store'), + (117249, 'Nano Crystal (Assume Profession: Fixer)', 12259, 117223, 'Assume Profession: Fixer', 16775, 146825, + 145325, 148325, 96, 'Crystal', 'False_Professions', 'False_Profession', 218, 'Fixer', 0, 1, 0, 0, 0, 'Agent', + 'RK Store'), + (117250, 'Nano Crystal (Assume Profession: Adventurer)', 12259, 117225, 'Assume Profession: Adventurer', 16775, + 146820, 145320, 148320, 86, 'Crystal', 'False_Professions', 'False_Profession', 218, 'Adventurer', 0, 1, 0, 0, + 0, 'Agent', 'RK Store'), + (117251, 'Nano Crystal (Assume Profession: Bureaucrat)', 42451, 117220, 'Assume Profession: Bureaucrat', 16775, + 146821, 145321, 148321, 109, 'Crystal', 'False_Professions', 'False_Profession', 218, 'Bureaucrat', 0, 1, 0, 0, + 0, 'Agent', 'RK Store'), + (117252, 'Nano Crystal (Assume Profession: Doctor)', 42451, 117221, 'Assume Profession: Doctor', 16775, 146822, + 145322, 148322, 103, 'Crystal', 'False_Professions', 'False_Profession', 218, 'Doctor', 0, 1, 0, 0, 0, 'Agent', + 'RK Store'), + (118110, 'Nano Crystal (Absorb Punishment)', 42452, 117688, 'Absorb Punishment', 100995, 147272, 145772, 148772, + 140, 'Crystal', 'Buffs', 'Absorb_AC_Buffs', 219, '', 0, 1, 0, 0, 0, 'Enforcer', 'Mission Reward'), + (118111, 'Nano Crystal (Fleeting Immunity)', 42452, 117676, 'Fleeting Immunity', 100995, 147756, 146256, 149256, + 182, 'Crystal', 'Buffs', 'Absorb_AC_Buffs', 219, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'Mission Reward'), + (118112, 'Nano Crystal (Collapsing Barrier)', 42452, 117677, 'Collapsing Barrier', 39039, 147700, 146200, 149200, + 146, 'Crystal', 'Buffs', 'Absorb_AC_Buffs', 219, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'Mission Reward'), + (118113, 'Nano Crystal (Advanced Layered Protection)', 42452, 117678, 'Advanced Layered Protection', 38898, + 147658, 146158, 149158, 107, 'Crystal', 'Buffs', 'Absorb_AC_Buffs', 219, '', 0, 1, 0, 0, 0, 'Nano-Technician', + 'RK Store'), + (118114, 'Nano Crystal (Ward from Harm)', 12260, 117680, 'Ward from Harm', 38898, 147347, 145847, 148847, 54, + 'Crystal', 'Buffs', 'Absorb_AC_Buffs', 219, '', 0, 1, 0, 0, 0, 'Enforcer', 'RK Store'), + (118115, 'Nano Crystal (Advanced Collapsing Barrier)', 42452, 117675, 'Advanced Collapsing Barrier', 39179, + 147657, 146157, 149157, 163, 'Crystal', 'Buffs', 'Absorb_AC_Buffs', 219, '', 0, 1, 0, 0, 0, 'Nano-Technician', + 'Mission Reward'), + (118116, 'Nano Crystal (Shrug Off Blows)', 42452, 117682, 'Shrug Off Blows', 39179, 147342, 145842, 148842, 136, + 'Crystal', 'Buffs', 'Absorb_AC_Buffs', 219, '', 0, 1, 0, 0, 0, 'Enforcer', 'Mission Reward'), + (118117, 'Nano Crystal (Thicken Skin)', 12227, 117681, 'Thicken Skin', 16197, 147345, 145845, 148845, 37, + 'Crystal', 'Buffs', 'Absorb_AC_Buffs', 219, '', 0, 1, 0, 0, 0, 'Enforcer', 'RK Store'), + (118118, 'Nano Crystal (Shock Absorber)', 12260, 117683, 'Shock Absorber', 38898, 147341, 145841, 148841, 70, + 'Crystal', 'Buffs', 'Absorb_AC_Buffs', 219, '', 0, 1, 0, 0, 0, 'Enforcer', 'RK Store'), + (118119, 'Nano Crystal (Gird For Punishment)', 12260, 117684, 'Gird for Punishment', 39039, 147314, 145814, + 148814, 90, 'Crystal', 'Buffs', 'Absorb_AC_Buffs', 219, '', 0, 1, 0, 0, 0, 'Enforcer', 'RK Store'), + (118120, 'Nano Crystal (Fortify)', 42452, 117685, 'Fortify', 39039, 147313, 145813, 148813, 120, 'Crystal', + 'Buffs', 'Absorb_AC_Buffs', 219, '', 0, 1, 0, 0, 0, 'Enforcer', 'RK Store'), + (118121, 'Nano Crystal (Failing Impregnability)', 42452, 117686, 'Failing Impregnability', 100996, 147308, + 145808, 148808, 150, 'Crystal', 'Buffs', 'Absorb_AC_Buffs', 219, '', 0, 1, 0, 0, 0, 'Enforcer', + 'Mission Reward'), + (118122, 'Nano Crystal (Deaden Pain)', 42452, 117687, 'Deaden Pain', 39179, 147296, 145796, 148796, 133, + 'Crystal', 'Buffs', 'Absorb_AC_Buffs', 219, '', 0, 1, 0, 0, 0, 'Enforcer', 'Mission Reward'), + (118123, 'Nano Crystal (Layered Protection)', 12260, 117679, 'Layered Protection', 16197, 147797, 146297, 149297, + 80, 'Crystal', 'Buffs', 'Absorb_AC_Buffs', 219, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'RK Store'), + (118246, 'Nano Crystal (Premium Delayed Health Payment)', 42448, 118245, 'Premium Delayed Health Payment', 44251, + 148124, 146624, 149624, 182, 'Crystal', 'Transfer', 'Health', 0, 'Team', 0, 1, 0, 0, 0, 'Trader', + 'Mission Reward'), + (118247, 'Nano Crystal (Quality Delayed Health Payment)', 12256, 118238, 'Quality Delayed Health Payment', 44248, + 148131, 146631, 149631, 87, 'Crystal', 'Transfer', 'Health', 0, 'Team', 0, 1, 0, 0, 0, 'Trader', 'RK Store'), + (118248, 'Nano Crystal (Sophisticated Delayed Health Payment)', 42448, 118232, + 'Sophisticated Delayed Health Payment', 44250, 148176, 146676, 149676, 156, 'Crystal', 'Transfer', 'Health', 0, + 'Team', 0, 1, 0, 0, 0, 'Trader', 'Mission Reward'), + (118249, 'Nano Crystal (Major Delayed Health Payment)', 12256, 118234, 'Major Delayed Health Payment', 44248, + 148094, 146594, 149594, 100, 'Crystal', 'Transfer', 'Health', 0, 'Team', 0, 1, 0, 0, 0, 'Trader', 'RK Store'), + (118250, 'Nano Crystal (Minor Delayed Health Payment)', 12228, 118243, 'Minor Delayed Health Payment', 44245, + 148101, 146601, 149601, 21, 'Crystal', 'Transfer', 'Health', 0, 'Team', 0, 1, 0, 0, 0, 'Trader', 'RK Store'), + (118251, 'Nano Crystal (Patchy Delayed Health Payment)', 12228, 118244, 'Patchy Delayed Health Payment', 38953, + 148108, 146608, 149608, 14, 'Crystal', 'Transfer', 'Health', 0, 'Team', 0, 1, 0, 0, 0, 'Trader', + 'No longer drops'), + (118252, 'Nano Crystal (Greater Delayed Health Payment)', 42448, 118231, 'Greater Delayed Health Payment', 44250, + 148048, 146548, 149548, 149, 'Crystal', 'Transfer', 'Health', 0, 'Team', 0, 1, 0, 0, 0, 'Trader', + 'Mission Reward'), + (118253, 'Nano Crystal (Lesser Delayed Health Payment)', 12256, 118237, 'Lesser Delayed Health Payment', 44247, + 148076, 146576, 149576, 57, 'Crystal', 'Transfer', 'Health', 0, 'Team', 0, 1, 0, 0, 0, 'Trader', 'RK Store'), + (118254, 'Nano Crystal (Average Delayed Health Payment)', 12228, 118241, 'Average Delayed Health Payment', 44246, + 148084, 146584, 149584, 44, 'Crystal', 'Transfer', 'Health', 0, 'Team', 0, 1, 0, 0, 0, 'Trader', 'RK Store'), + (118255, 'Nano Crystal (Elementary Delayed Health Payment)', 12228, 118240, 'Elementary Delayed Health Payment', + 44245, 148034, 146534, 149534, 31, 'Crystal', 'Transfer', 'Health', 0, 'Team', 0, 1, 0, 0, 0, 'Trader', + 'RK Store'), + (118256, 'Nano Crystal (Exceptional Delayed Health Payment)', 42448, 118230, + 'Exceptional Delayed Health Payment', 44251, 148038, 146538, 149538, 169, 'Crystal', 'Transfer', 'Health', 0, + 'Team', 0, 1, 0, 0, 0, 'Trader', 'Mission Reward'), + (118257, 'Nano Crystal (Feeble Delayed Health Payment)', 12228, 118242, 'Feeble Delayed Health Payment', 38953, + 148041, 146541, 149541, 8, 'Crystal', 'Transfer', 'Health', 0, 'Team', 0, 1, 0, 0, 0, 'Trader', + 'No longer drops'), + (118258, 'Nano Crystal (Advanced Delayed Health Payment)', 42448, 118233, 'Advanced Delayed Health Payment', + 44249, 147986, 146486, 149486, 123, 'Crystal', 'Transfer', 'Health', 0, 'Team', 0, 1, 0, 0, 0, 'Trader', + 'Mission Reward'), + (118259, 'Nano Crystal (Commonplace Delayed Health Payment)', 12228, 118239, + 'Commonplace Delayed Health Payment', 44246, 148004, 146504, 149504, 37, 'Crystal', 'Transfer', 'Health', 0, + 'Team', 0, 1, 0, 0, 0, 'Trader', 'RK Store'), + (118260, 'Nano Crystal (Delayed Health Payment)', 12256, 118236, 'Delayed Health Payment', 44247, 148007, 146507, + 149507, 70, 'Crystal', 'Transfer', 'Health', 0, 'Team', 0, 1, 0, 0, 0, 'Trader', 'Mission Reward'), + (118261, 'Nano Crystal (Superior Delayed Health Payment)', 42448, 118235, 'Superior Delayed Health Payment', + 44249, 148183, 146683, 149683, 140, 'Crystal', 'Transfer', 'Health', 0, 'Team', 0, 1, 0, 0, 0, 'Trader', + 'Mission Reward'), + (120500, 'NanoCrystal (Quantum Wings)', 42450, 120499, 'Quantum Wings', 16348, 145038, 144911, 145165, 103, + 'Crystal', 'Vehicle', 'Air', 0, '', 0, 1, 0, 0, 0, 'Meta-Physicist', 'RK Store'), + (121142, 'Nano Crystal (Dominate Foe)', 42451, 121135, 'Dominate Foe', 39145, 147297, 145797, 148797, 150, + 'Crystal', 'Crowd_Control', 'Fear', 256, '', 0, 1, 0, 0, 0, 'Enforcer', 'Mission Reward'), + (121143, 'Nano Crystal (Sudden Scare)', 12226, 121136, 'Sudden Scare', 39145, 147052, 145552, 148552, 37, + 'Crystal', 'Crowd_Control', 'Fear', 256, '', 0, 1, 0, 0, 0, 'Bureaucrat', 'RK Store'), + (121144, 'Nano Crystal (Visions of a Doomed Future)', 42451, 121139, 'Visions of a Doomed Future', 39145, 147068, + 145568, 148568, 130, 'Crystal', 'Crowd_Control', 'Fear', 256, '', 0, 1, 0, 0, 0, 'Bureaucrat', + 'Mission Reward'), + (121145, 'Nano Crystal (Prey On Fear)', 12259, 121141, 'Prey On Fear', 39145, 147031, 145531, 148531, 57, + 'Crystal', 'Crowd_Control', 'Fear', 256, '', 0, 1, 0, 0, 0, 'Bureaucrat', 'RK Store'), + (121146, 'Nano Crystal (Primal Fear)', 42451, 121138, 'Primal Fear', 39145, 147032, 145532, 148532, 159, + 'Crystal', 'Crowd_Control', 'Fear', 256, '', 0, 1, 0, 0, 0, 'Bureaucrat', 'Mission Reward'), + (121147, 'Nano Crystal (Horror From The Darkest Pit)', 42451, 121137, 'Horror From The Darkest Pit', 39145, + 146993, 145493, 148493, 179, 'Crystal', 'Crowd_Control', 'Fear', 256, '', 0, 1, 0, 0, 0, 'Bureaucrat', + 'Mission Reward'), + (121148, 'Nano Crystal (Crush Bravery)', 42451, 121140, 'Crush Bravery', 39145, 146935, 145435, 148435, 110, + 'Crystal', 'Crowd_Control', 'Fear', 256, '', 0, 1, 0, 0, 0, 'Bureaucrat', 'RK Store'), + (121149, 'Nano Crystal (Quivering Wreck)', 12259, 121133, 'Quivering Wreck', 39145, 147338, 145838, 148838, 70, + 'Crystal', 'Crowd_Control', 'Fear', 256, '', 0, 1, 0, 0, 0, 'Enforcer', 'RK Store'), + (121150, 'Nano Crystal (Spine of Jelly)', 42451, 121134, 'Spine of Jelly', 39145, 147343, 145843, 148843, 130, + 'Crystal', 'Crowd_Control', 'Fear', 256, '', 0, 1, 0, 0, 0, 'Enforcer', 'Mission Reward'), + (121151, 'Nano Crystal (Fearsome Shout)', 12226, 121132, 'Fearsome Shout', 39145, 147309, 145809, 148809, 37, + 'Crystal', 'Crowd_Control', 'Fear', 256, '', 0, 1, 0, 0, 0, 'Enforcer', 'RK Store'), + (121347, 'Nano Crystal (Team Skill Wrangler (Superior))', 42451, 121319, 'Team Skill Wrangler (Superior)', + 117989, 148197, 146697, 149697, 140, 'Crystal', 'Transfer', 'Wrangle', 0, 'Team', 0, 1, 0, 0, 0, 'Trader', + 'Mission Reward'), + (121348, 'Nano Crystal (Team Skill Wrangler (Weak))', 12226, 121317, 'Team Skill Wrangler (Weak)', 117984, + 148198, 146698, 149698, 18, 'Crystal', 'Transfer', 'Wrangle', 0, 'Team', 0, 1, 0, 0, 0, 'Trader', 'RK Store'), + (121349, 'Nano Crystal (Team Skill Wrangler (Premium))', 42451, 121320, 'Team Skill Wrangler (Premium)', 117993, + 148195, 146695, 149695, 189, 'Crystal', 'Transfer', 'Wrangle', 0, 'Team', 0, 1, 0, 0, 0, 'Trader', + 'Mission Reward'), + (121350, 'Nano Crystal (Team Skill Wrangler (Sophisticated))', 42451, 121318, + 'Team Skill Wrangler (Sophisticated)', 117991, 148196, 146696, 149696, 159, 'Crystal', 'Transfer', 'Wrangle', 0, + 'Team', 0, 1, 0, 0, 0, 'Trader', 'Mission Reward'), + (121351, 'Nano Crystal (Team Skill Wrangler (Patchy))', 12226, 121322, 'Team Skill Wrangler (Patchy)', 117984, + 148194, 146694, 149694, 27, 'Crystal', 'Transfer', 'Wrangle', 0, 'Team', 0, 1, 0, 0, 0, 'Trader', 'RK Store'), + (121352, 'Nano Crystal (Team Skill Wrangler (Major))', 42451, 121323, 'Team Skill Wrangler (Major)', 117987, + 148192, 146692, 149692, 107, 'Crystal', 'Transfer', 'Wrangle', 0, 'Team', 0, 1, 0, 0, 0, 'Trader', 'RK Store'), + (121353, 'Nano Crystal (Team Skill Wrangler (Minor))', 12226, 121321, 'Team Skill Wrangler (Minor)', 117985, + 148193, 146693, 149693, 37, 'Crystal', 'Transfer', 'Wrangle', 0, 'Team', 0, 1, 0, 0, 0, 'Trader', 'RK Store'), + (121354, 'Nano Crystal (Team Skill Wrangler (Lossy))', 12259, 121325, 'Team Skill Wrangler (Lossy)', 117986, + 148191, 146691, 149691, 60, 'Crystal', 'Transfer', 'Wrangle', 0, 'Team', 0, 1, 0, 0, 0, 'Trader', 'RK Store'), + (121355, 'Nano Crystal (Team Skill Wrangler (Greater))', 42451, 121326, 'Team Skill Wrangler (Greater)', 117990, + 148189, 146689, 149689, 153, 'Crystal', 'Transfer', 'Wrangle', 0, 'Team', 0, 1, 0, 0, 0, 'Trader', + 'Mission Reward'), + (121356, 'Nano Crystal (Team Skill Wrangler (Lesser))', 12259, 121324, 'Team Skill Wrangler (Lesser)', 117986, + 148190, 146690, 149690, 77, 'Crystal', 'Transfer', 'Wrangle', 0, 'Team', 0, 1, 0, 0, 0, 'Trader', 'RK Store'), + (121357, 'Nano Crystal (Team Skill Wrangler (Exceptional))', 42451, 121328, 'Team Skill Wrangler (Exceptional)', + 117992, 148188, 146688, 149688, 169, 'Crystal', 'Transfer', 'Wrangle', 0, 'Team', 0, 1, 0, 0, 0, 'Trader', + 'Mission Reward'), + (121358, 'Nano Crystal (Team Skill Wrangler (Advanced))', 42451, 121329, 'Team Skill Wrangler (Advanced)', + 117988, 148186, 146686, 149686, 123, 'Crystal', 'Transfer', 'Wrangle', 0, 'Team', 0, 1, 0, 0, 0, 'Trader', + 'Mission Reward'), + (121359, 'Nano Crystal (Team Skill Wrangler (Commonplace))', 12226, 121327, 'Team Skill Wrangler (Commonplace)', + 117985, 148187, 146687, 149687, 47, 'Crystal', 'Transfer', 'Wrangle', 0, 'Team', 0, 1, 0, 0, 0, 'Trader', + 'RK Store'), + (121360, 'Nano Crystal (Skill Wrangler (Weak))', 12226, 121330, 'Skill Wrangler (Weak)', 118046, 148174, 146674, + 149674, 8, 'Crystal', 'Transfer', 'Wrangle', 0, 'Target', 0, 1, 0, 0, 0, 'Trader', 'RK Store'), + (121361, 'Nano Crystal (Team Skill Wrangler)', 12259, 121331, 'Team Skill Wrangler', 117987, 148185, 146685, + 149685, 93, 'Crystal', 'Transfer', 'Wrangle', 0, 'Team', 0, 1, 0, 0, 0, 'Trader', 'RK Store'), + (121362, 'Nano Crystal (Skill Wrangler (Superior))', 42451, 121332, 'Skill Wrangler (Superior)', 118052, 148173, + 146673, 149673, 126, 'Crystal', 'Transfer', 'Wrangle', 0, 'Target', 0, 1, 0, 0, 0, 'Trader', 'Mission Reward'), + (121363, 'Nano Crystal (Skill Wrangler (Sophisticated))', 42451, 121334, 'Skill Wrangler (Sophisticated)', + 118053, 148171, 146671, 149671, 156, 'Crystal', 'Transfer', 'Wrangle', 0, 'Target', 0, 1, 0, 0, 0, 'Trader', + 'Mission Reward'), + (121364, 'Nano Crystal (Skill Wrangler (Superb))', 42451, 121333, 'Skill Wrangler (Superb)', 118054, 148172, + 146672, 149672, 163, 'Crystal', 'Transfer', 'Wrangle', 0, 'Target', 0, 1, 0, 0, 0, 'Trader', 'Mission Reward'), + (121365, 'Nano Crystal (Skill Wrangler (Premium))', 42451, 121335, 'Skill Wrangler (Premium)', 118056, 148170, + 146670, 149670, 189, 'Crystal', 'Transfer', 'Wrangle', 0, 'Target', 0, 1, 0, 0, 0, 'Trader', 'Mission Reward'), + (121366, 'Nano Crystal (Skill Wrangler (Minor))', 12226, 121337, 'Skill Wrangler (Minor)', 118047, 148168, + 146668, 149668, 21, 'Crystal', 'Transfer', 'Wrangle', 0, 'Target', 0, 1, 0, 0, 0, 'Trader', 'RK Store'), + (121367, 'Nano Crystal (Skill Wrangler (Patchy))', 12226, 121336, 'Skill Wrangler (Patchy)', 118046, 148169, + 146669, 149669, 14, 'Crystal', 'Transfer', 'Wrangle', 0, 'Target', 0, 1, 0, 0, 0, 'Trader', 'RK Store'), + (121368, 'Nano Crystal (Skill Wrangler (Major))', 12259, 121338, 'Skill Wrangler (Major)', 118051, 148167, + 146667, 149667, 97, 'Crystal', 'Transfer', 'Wrangle', 0, 'Target', 0, 1, 0, 0, 0, 'Trader', 'RK Store'), + (121369, 'Nano Crystal (Skill Wrangler Lesser)', 12259, 121340, 'Skill Wrangler Lesser', 118048, 148165, 146665, + 149665, 54, 'Crystal', 'Transfer', 'Wrangle', 0, 'Target', 0, 1, 0, 0, 0, 'Trader', 'RK Store'), + (121370, 'Nano Crystal (Skill Wrangler (Lossy))', 12226, 121339, 'Skill Wrangler (Lossy)', 118048, 148166, + 146666, 149666, 41, 'Crystal', 'Transfer', 'Wrangle', 0, 'Target', 0, 1, 0, 0, 0, 'Trader', 'RK Store'), + (121371, 'Nano Crystal (Skill Wrangler (Greater))', 42451, 121342, 'Skill Wrangler (Greater)', 118052, 148163, + 146663, 149663, 150, 'Crystal', 'Transfer', 'Wrangle', 0, 'Target', 0, 1, 0, 0, 0, 'Trader', 'Mission Reward'), + (121372, 'Nano Crystal (Skill Wrangler (Inferior))', 12259, 121341, 'Skill Wrangler (Inferior)', 118049, 148164, + 146664, 149664, 70, 'Crystal', 'Transfer', 'Wrangle', 0, 'Target', 0, 1, 0, 0, 0, 'Trader', 'RK Store'), + (121373, 'Nano Crystal (Skill Wrangler (Exceptional))', 42451, 121343, 'Skill Wrangler (Exceptional)', 118055, + 148162, 146662, 149662, 176, 'Crystal', 'Transfer', 'Wrangle', 0, 'Target', 0, 1, 0, 0, 0, 'Trader', + 'Mission Reward'), + (121374, 'Nano Crystal (Skill Wrangler (Advanced))', 42451, 121345, 'Skill Wrangler (Advanced)', 118051, 148160, + 146660, 149660, 113, 'Crystal', 'Transfer', 'Wrangle', 0, 'Target', 0, 1, 0, 0, 0, 'Trader', 'RK Store'), + (121375, 'Nano Crystal (Skill Wrangler (Commonplace))', 12226, 121344, 'Skill Wrangler (Commonplace)', 118047, + 148161, 146661, 149661, 34, 'Crystal', 'Transfer', 'Wrangle', 0, 'Target', 0, 1, 0, 0, 0, 'Trader', 'RK Store'), + (121376, 'Nano Crystal (Skill Wrangler)', 12259, 121346, 'Skill Wrangler', 118049, 148159, 146659, 149659, 84, + 'Crystal', 'Transfer', 'Wrangle', 0, 'Target', 0, 1, 0, 0, 0, 'Trader', 'RK Store'), + (121507, 'Nano Crystal (Accomplished Health Haggler)', 12256, 121492, 'Accomplished Health Haggler', 44232, + 147985, 146485, 149485, 74, 'Crystal', 'Transfer', 'Health', 0, 'Target', 0, 1, 0, 0, 0, 'Trader', 'RK Store'), + (121508, 'Nano Crystal (Professional Health Haggler)', 12256, 121495, 'Professional Health Haggler', 44232, + 148125, 146625, 149625, 87, 'Crystal', 'Transfer', 'Health', 0, 'Target', 0, 1, 0, 0, 0, 'Trader', 'RK Store'), + (121509, 'Nano Crystal (Proficient Health Haggler)', 12228, 121493, 'Proficient Health Haggler', 44230, 148126, + 146626, 149626, 41, 'Crystal', 'Transfer', 'Health', 0, 'Target', 0, 1, 0, 0, 0, 'Trader', 'RK Store'), + (121510, 'Nano Crystal (Skilled Health Haggler)', 12228, 121494, 'Skilled Health Haggler', 44231, 148175, 146675, + 149675, 47, 'Crystal', 'Transfer', 'Health', 0, 'Target', 0, 1, 0, 0, 0, 'Trader', 'RK Store'), + (121511, 'Nano Crystal (Practiced Health Haggler)', 12228, 121498, 'Practiced Health Haggler', 44229, 148122, + 146622, 149622, 27, 'Crystal', 'Transfer', 'Health', 0, 'Target', 0, 1, 0, 0, 0, 'Trader', 'RK Store'), + (121512, 'Nano Crystal (Preeminent Health Haggler)', 42448, 121496, 'Preeminent Health Haggler', 44235, 148123, + 146623, 149623, 159, 'Crystal', 'Transfer', 'Health', 0, 'Target', 0, 1, 0, 0, 0, 'Trader', 'Mission Reward'), + (121513, 'Nano Crystal (Irresistible Health Haggler)', 42448, 121500, 'Irresistible Health Haggler', 44234, + 148065, 146565, 149565, 149, 'Crystal', 'Transfer', 'Health', 0, 'Target', 0, 1, 0, 0, 0, 'Trader', + 'Mission Reward'), + (121514, 'Nano Crystal (Masterly Health Haggler)', 42448, 121499, 'Masterly Health Haggler', 44233, 148099, + 146599, 149599, 116, 'Crystal', 'Transfer', 'Health', 0, 'Target', 0, 1, 0, 0, 0, 'Trader', 'RK Store'), + (121515, 'Nano Crystal (Novice Health Haggler)', 12228, 121497, 'Novice Health Haggler', 16246, 148106, 146606, + 149606, 11, 'Crystal', 'Transfer', 'Health', 0, 'Target', 0, 1, 0, 0, 0, 'Trader', 'RK Store'), + (121516, 'Nano Crystal (Expert Health Haggler)', 12256, 121502, 'Expert Health Haggler', 44233, 148039, 146539, + 149539, 97, 'Crystal', 'Transfer', 'Health', 0, 'Target', 0, 1, 0, 0, 0, 'Trader', 'RK Store'), + (121517, 'Nano Crystal (Glib Health Haggler)', 42448, 121501, 'Glib Health Haggler', 44234, 148046, 146546, + 149546, 136, 'Crystal', 'Transfer', 'Health', 0, 'Target', 0, 1, 0, 0, 0, 'Trader', 'Mission Reward'), + (121518, 'Nano Crystal (Amateur Health Haggler)', 12228, 121505, 'Amateur Health Haggler', 16246, 147990, 146490, + 149490, 4, 'Crystal', 'Transfer', 'Health', 0, 'Target', 0, 1, 0, 0, 0, 'Trader', 'RK Store'), + (121519, 'Nano Crystal (Apprentice Health Haggler)', 12228, 121503, 'Apprentice Health Haggler', 44229, 147993, + 146493, 149493, 17, 'Crystal', 'Transfer', 'Health', 0, 'Target', 0, 1, 0, 0, 0, 'Trader', 'RK Store'), + (121520, 'Nano Crystal (Capable Health Haggler)', 12228, 121504, 'Capable Health Haggler', 44230, 148003, 146503, + 149503, 34, 'Crystal', 'Transfer', 'Health', 0, 'Target', 0, 1, 0, 0, 0, 'Trader', 'RK Store'), + (121521, 'Nano Crystal (Successful Health Haggler)', 12256, 121506, 'Successful Health Haggler', 44231, 148182, + 146682, 149682, 54, 'Crystal', 'Transfer', 'Health', 0, 'Target', 0, 1, 0, 0, 0, 'Trader', 'RK Store'), + (125747, 'Nano Crystal (Calling of Curatem The Grand)', 295566, 125739, 'Calling of Curatem The Grand', 295568, + 144958, 144831, 145085, 169, 'Crystal', 'Pet', 'Heal_Pet', 0, '', 0, 1, 0, 0, 0, 'Meta-Physicist', + 'Mission Reward'), + (125748, 'Nano Crystal (Calling of Salvinous)', 295566, 125745, 'Calling of Salvinous', 295568, 144961, 144834, + 145088, 37, 'Crystal', 'Pet', 'Heal_Pet', 0, '', 0, 1, 0, 0, 0, 'Meta-Physicist', 'RK Store'), + (125749, 'Nano Crystal (Calling of Sanoo)', 295566, 125743, 'Calling of Sanoo', 295568, 144962, 144835, 145089, + 87, 'Crystal', 'Pet', 'Heal_Pet', 0, '', 0, 1, 0, 0, 0, 'Meta-Physicist', 'RK Store'), + (125750, 'Nano Crystal (Calling of The Vivificator)', 295566, 125741, 'Calling of The Vivificator', 295568, + 144963, 144836, 145090, 143, 'Crystal', 'Pet', 'Heal_Pet', 0, '', 0, 1, 0, 0, 0, 'Meta-Physicist', + 'Mission Reward'), + (125751, 'Nano Crystal (Calling of Medinos)', 295566, 125738, 'Calling of Medinos', 295568, 144959, 144832, + 145086, 17, 'Crystal', 'Pet', 'Heal_Pet', 0, '', 0, 1, 0, 0, 0, 'Meta-Physicist', 'RK Store'), + (125752, 'Nano Crystal (Calling of Restite)', 295566, 125742, 'Calling of Restite', 295568, 144960, 144833, + 145087, 113, 'Crystal', 'Pet', 'Heal_Pet', 0, '', 0, 1, 0, 0, 0, 'Meta-Physicist', 'RK Store'), + (125753, 'Nano Crystal (Calling of Altumus)', 295566, 125740, 'Calling of Altumus', 295568, 144818, 144816, + 144820, 156, 'Crystal', 'Pet', 'Heal_Pet', 0, '', 0, 1, 0, 0, 0, 'Meta-Physicist', 'Mission Reward'), + (125754, 'Nano Crystal (Calling of Belamorte)', 295566, 125746, 'Calling of Belamorte', 295568, 144819, 144817, + 144821, 186, 'Crystal', 'Pet', 'Heal_Pet', 0, '', 0, 1, 0, 0, 0, 'Meta-Physicist', 'Mission Reward'), + (125755, 'Nano Crystal (Calling of Valentyia)', 295566, 125744, 'Calling of Valentyia', 295568, 144964, 144837, + 145091, 57, 'Crystal', 'Pet', 'Heal_Pet', 0, '', 0, 1, 0, 0, 0, 'Meta-Physicist', 'RK Store'), + (125766, 'Nano Crystal (Frigid Blast)', 12257, 125765, 'Frigid Blast', 39796, 144982, 144855, 145109, 64, + 'Crystal', 'Combat', 'Nuke_Normal', 0, '', 0, 1, 0, 0, 0, 'Meta-Physicist', 'SL Loot'), + (125767, 'Nano Crystal (Mind Howl)', 12257, 125762, 'Mind Howl', 39803, 145020, 144893, 145147, 87, 'Crystal', + 'Combat', 'Metaphysicist_Mind_Damage_Nano_DeBuffs', 221, '', 0, 1, 0, 0, 0, 'Meta-Physicist', 'RK Store'), + (125768, 'Nano Crystal (Mind Quake)', 42449, 125761, 'Mind Quake', 45177, 145022, 144895, 145149, 173, 'Crystal', + 'Combat', 'Metaphysicist_Mind_Damage_Nano_DeBuffs', 221, '', 0, 1, 0, 0, 0, 'Meta-Physicist', 'Mission Reward'), + (125769, 'Nano Crystal (Glacial Lance)', 42449, 125763, 'Glacial Lance', 39798, 144985, 144858, 145112, 159, + 'Crystal', 'Combat', 'Nuke_Normal', 0, '', 0, 1, 0, 0, 0, 'Meta-Physicist', 'SL Loot'), + (125770, 'Nano Crystal (Frost Slivers)', 12224, 125764, 'Frost Slivers', 45170, 144983, 144856, 145110, 17, + 'Crystal', 'Combat', 'Nuke_Normal', 0, '', 0, 1, 0, 0, 0, 'Meta-Physicist', 'SL Loot'), + (125771, 'Nano Crystal (Chill Spear)', 42449, 125760, 'Chill Spear', 39797, 144967, 144840, 145094, 116, + 'Crystal', 'Combat', 'Nuke_Normal', 0, '', 0, 1, 0, 0, 0, 'Meta-Physicist', 'RK Store'), + (129715, 'Nano Crystal (Restock Ammo (Level OP-I))', 12225, 129714, 'Restock Ammo (Level OP-I)', 117929, 147557, + 146057, 149057, 10, 'Crystal', 'Creation', 'Ammo', 0, '', 0, 1, 0, 0, 0, 'Fixer', 'Mission Reward'), + (136690, 'Nano Crystal (Slipshod Bandaging)', 12228, 136687, 'Slipshod Bandaging', 16246, 146798, 145298, 148298, + 14, 'Crystal', 'Combat', 'Single_Target_Healing', 951, '', 0, 1, 0, 0, 0, 'Adventurer', 'RK Store'), + (136691, 'Nano Crystal (Survival of the Fittest)', 42448, 136679, 'Survival of the Fittest', 44230, 146805, + 145305, 148305, 116, 'Crystal', 'Combat', 'Single_Target_Healing', 951, '', 0, 1, 0, 0, 0, 'Adventurer', + 'RK Store'), + (136692, 'Nano Crystal (Patch Wounds)', 12228, 136686, 'Patch Wounds', 16246, 146775, 145275, 148275, 41, + 'Crystal', 'Combat', 'Single_Target_Healing', 951, '', 0, 1, 0, 0, 0, 'Adventurer', 'RK Store'), + (136693, 'Nano Crystal (Restore to Health)', 12256, 136684, 'Restore to Health', 44229, 146789, 145289, 148289, + 64, 'Crystal', 'Combat', 'Single_Target_Healing', 951, '', 0, 1, 0, 0, 0, 'Adventurer', 'RK Store'), + (136694, 'Nano Crystal (Restore Vitality)', 42448, 136682, 'Restore Vitality', 44230, 146790, 145290, 148290, + 107, 'Crystal', 'Combat', 'Single_Target_Healing', 951, '', 0, 1, 0, 0, 0, 'Adventurer', 'RK Store'), + (136695, 'Nano Crystal (Natural Remedy)', 12256, 136681, 'Natural Remedy', 44229, 146771, 145271, 148271, 90, + 'Crystal', 'Combat', 'Single_Target_Healing', 951, '', 0, 1, 0, 0, 0, 'Adventurer', 'RK Store'), + (136696, 'Nano Crystal (One With Nature)', 42448, 136674, 'One With Nature', 44231, 146774, 145274, 148274, 182, + 'Crystal', 'Combat', 'Single_Target_Healing', 951, '', 0, 1, 0, 0, 0, 'Adventurer', 'Mission Reward'), + (136697, 'Nano Crystal (Makeshift Bandaging)', 12256, 136683, 'Makeshift Bandaging', 44229, 146767, 145267, + 148267, 74, 'Crystal', 'Combat', 'Single_Target_Healing', 951, '', 0, 1, 0, 0, 0, 'Adventurer', 'RK Store'), + (136698, 'Nano Crystal (Moonbeam)', 42448, 136673, 'Moonbeam', 44231, 146769, 145269, 148269, 176, 'Crystal', + 'Combat', 'Single_Target_Healing', 951, '', 0, 1, 0, 0, 0, 'Adventurer', 'Mission Reward'), + (136699, 'Nano Crystal (Natural Cure)', 12228, 136689, 'Natural Cure', 16246, 146770, 145270, 148270, 34, + 'Crystal', 'Combat', 'Single_Target_Healing', 951, '', 0, 1, 0, 0, 0, 'Adventurer', 'RK Store'), + (136700, 'Nano Crystal (Invocation of the Phoenix)', 42448, 136672, 'Invocation of the Phoenix', 44231, 146760, + 145260, 148260, 159, 'Crystal', 'Combat', 'Complete_Healing_Line', 282, '', 0, 1, 0, 0, 0, 'Adventurer', + 'Mission Reward'), + (136701, 'Nano Crystal (Lesser Restore to Health)', 12228, 136688, 'Lesser Restore to Health', 16246, 146762, + 145262, 148262, 21, 'Crystal', 'Combat', 'Single_Target_Healing', 951, '', 0, 1, 0, 0, 0, 'Adventurer', + 'RK Store'), + (136702, 'Nano Crystal (Glorious Healing)', 42448, 136675, 'Glorious Healing', 44231, 146747, 145247, 148247, + 156, 'Crystal', 'Combat', 'Single_Target_Healing', 951, '', 0, 1, 0, 0, 0, 'Adventurer', 'Mission Reward'), + (136703, 'Nano Crystal (Greater Restore Health)', 42448, 136678, 'Greater Restore Health', 44230, 146750, 145250, + 148250, 130, 'Crystal', 'Combat', 'Single_Target_Healing', 951, '', 0, 1, 0, 0, 0, 'Adventurer', + 'Mission Reward'), + (136704, 'Nano Crystal (Implacability of Life)', 42448, 136676, 'Implacability of Life', 44231, 146758, 145258, + 148258, 153, 'Crystal', 'Combat', 'Single_Target_Healing', 951, '', 0, 1, 0, 0, 0, 'Adventurer', + 'Mission Reward'), + (136705, 'Nano Crystal (Cellular Reformation)', 12256, 136680, 'Cellular Reformation', 44229, 146730, 145230, + 148230, 83, 'Crystal', 'Combat', 'Single_Target_Healing', 951, '', 0, 1, 0, 0, 0, 'Adventurer', 'RK Store'), + (136706, 'Nano Crystal (Flawless Stitching)', 42448, 136677, 'Flawless Stitching', 44230, 146741, 145241, 148241, + 143, 'Crystal', 'Combat', 'Single_Target_Healing', 951, '', 0, 1, 0, 0, 0, 'Adventurer', 'Mission Reward'), + (136707, 'Nano Crystal (Alleviate Pain)', 12228, 136685, 'Alleviate Pain', 44229, 146715, 145215, 148215, 50, + 'Crystal', 'Combat', 'Single_Target_Healing', 951, '', 0, 1, 0, 0, 0, 'Adventurer', 'RK Store'), + (142715, 'Nano Crystal (Grid Excursion)', 42450, 142710, 'Grid Excursion', 117952, 147518, 146018, 149018, 123, + 'Crystal', 'Teleport', 'Team_Grid', 0, '', 0, 1, 0, 0, 0, 'Fixer', 'Mission Reward'), + (142716, 'Nano Crystal (Team Grid Phreak)', 12258, 142714, 'Team Grid Phreak', 117952, 147565, 146065, 149065, + 57, 'Crystal', 'Teleport', 'Team_Grid', 0, '', 0, 1, 0, 0, 0, 'Fixer', 'RK Store'), + (142717, 'Nano Crystal (Re-Matrix Grid Vector)', 300947, 142707, 'Re-Matrix Grid Vector', 300948, 147556, 146056, + 149056, 169, 'Crystal', 'Teleport', 'Team_Grid', 0, '', 0, 1, 0, 0, 0, 'Fixer', 'Mission Reward'), + (142719, 'Nano Crystal (Instantaneous Encoding)', 300953, 142712, 'Instantaneous Encoding', 300955, 147527, + 146027, 149027, 74, 'Crystal', 'Teleport', 'Team_Grid', 0, '', 0, 1, 0, 0, 0, 'Fixer', 'RK Store'), + (142721, 'Nano Crystal (Reckless Digitization)', 300952, 142713, 'Reckless Digitization', 300954, 147555, 146055, + 149055, 47, 'Crystal', 'Teleport', 'Self_Grid', 0, '', 0, 1, 0, 0, 0, 'Fixer', 'SL Loot'), + (142741, 'Nano Crystal (Digitizing Sequencer)', 300947, 142736, 'Digitizing Sequencer', 300948, 147126, 145626, + 148626, 140, 'Crystal', 'Combat', 'Grid_Warp', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'Mission Reward'), + (142742, 'Nano Crystal (Grid Gateway)', 300947, 142737, 'Grid Gateway', 300948, 148055, 146555, 149555, 166, + 'Crystal', 'Teleport', 'Team', 0, '', 0, 1, 0, 0, 0, 'Trader', 'Mission Reward'), + (142743, 'Nano Crystal (Personal Grid Beacon)', 296542, 142738, 'Personal Grid Beacon', 296540, 148114, 146614, + 149614, 100, 'Crystal', 'Teleport', 'Self', 0, '', 0, 1, 0, 0, 0, 'Trader', 'RK Store'), + (142745, 'Nano Crystal (Encode DNA Sequence)', 296542, 142735, 'Encode DNA Sequence', 296540, 147135, 145635, + 148635, 80, 'Crystal', 'Combat', 'Grid_Warp', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'RK Store'), + (142772, 'Nano Crystal (Brain Swap)', 12226, 142768, 'Brain Swap', 46283, 148000, 146500, 149500, 50, 'Crystal', + 'Crowd_Control', 'Charm_Other', 202, '', 0, 1, 0, 0, 0, 'Trader', 'RK Store'), + (142773, 'Nano Crystal (Swap Psyche)', 12226, 142766, 'Swap Psyche', 46283, 148184, 146684, 149684, 4, 'Crystal', + 'Crowd_Control', 'Charm_Other', 202, '', 0, 1, 0, 0, 0, 'Trader', 'RK Store'), + (142774, 'Nano Crystal (Mental Switcheroo)', 12226, 142769, 'Mental Switcheroo', 46283, 148100, 146600, 149600, + 34, 'Crystal', 'Crowd_Control', 'Charm_Other', 202, '', 0, 1, 0, 0, 0, 'Trader', 'RK Store'), + (142775, 'Nano Crystal (Deep Thought)', 12259, 142771, 'Deep Thought', 46269, 148006, 146506, 149506, 74, + 'Crystal', 'Crowd_Control', 'Charm_Other', 202, '', 0, 1, 0, 0, 0, 'Trader', 'RK Store'), + (142776, 'Nano Crystal (Brain Bender)', 12259, 142767, 'Brain Bender', 46269, 147999, 146499, 149499, 97, + 'Crystal', 'Crowd_Control', 'Charm_Other', 202, '', 0, 1, 0, 0, 0, 'Trader', 'RK Store'), + (142777, 'Nano Crystal (Project Thought Patterns)', 12226, 142770, 'Project Thought Patterns', 46283, 148129, + 146629, 149629, 17, 'Crystal', 'Crowd_Control', 'Charm_Other', 202, '', 0, 1, 0, 0, 0, 'Trader', 'RK Store'), + (143899, 'Nano Crystal (Control Ends and Means)', 42451, 143894, 'Control Ends and Means', 46271, 148005, 146505, + 149505, 176, 'Crystal', 'Crowd_Control', 'Charm_Other', 202, '', 0, 1, 0, 0, 0, 'Trader', 'Mission Reward'), + (143900, 'Nano Crystal (Thought Controller)', 42451, 143897, 'Thought Controller', 46270, 148199, 146699, 149699, + 126, 'Crystal', 'Crowd_Control', 'Charm_Other', 202, '', 0, 1, 0, 0, 0, 'Trader', 'Mission Reward'), + (143901, 'Nano Crystal (Redirect Neural Signals)', 42451, 143896, 'Redirect Neural Signals', 46270, 148147, + 146647, 149647, 149, 'Crystal', 'Crowd_Control', 'Charm_Other', 202, '', 0, 1, 0, 0, 0, 'Trader', + 'Mission Reward'), + (143902, 'Nano Crystal (My Brain For Your Brain)', 42451, 143898, 'My Brain For Your Brain', 46271, 148105, + 146605, 149605, 186, 'Crystal', 'Crowd_Control', 'Charm_Other', 202, '', 0, 1, 0, 0, 0, 'Trader', + 'Mission Reward'), + (143903, 'Nano Crystal (Thought Juggler)', 42451, 143895, 'Thought Juggler', 46270, 148200, 146700, 149700, 159, + 'Crystal', 'Crowd_Control', 'Charm_Other', 202, '', 0, 1, 0, 0, 0, 'Trader', 'Mission Reward'), + (143909, 'Nano Crystal (Essence of Life)', 42448, 143908, 'Essence of Life', 44231, 146737, 145237, 148237, 169, + 'Crystal', 'Combat', 'Single_Target_Healing', 951, '', 0, 1, 0, 0, 0, 'Adventurer', 'Mission Reward'), + (150310, 'Nano Crystal (Summoning of Tumulten)', 295572, 150309, 'Summoning of Tumulten', 295574, 156178, 156162, + 156194, 189, 'Crystal', 'Pet', 'Mezz_Pet', 0, '', 0, 0, 0, 0, 0, 'Meta-Physicist', 'Mission Reward'), + (150351, 'Nano Crystal (Warp Time and Space: Capital City)', 301108, 150346, 'Warp Time and Space: Capital City', + 301110, 150400, 150376, 150424, 87, 'Crystal', 'Combat', 'Teleport', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', + 'Mission Reward'), + (150357, 'Nano Crystal (Team Warp Time and Space: Capital City)', 301112, 150334, + 'Team Warp Time and Space: Capital City', 301111, 150406, 150382, 150430, 97, 'Crystal', 'Combat', 'Teleport', + 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'Mission Reward'), + (150503, 'Nano Crystal (Nullity Sphere MK II)', 301538, 150502, 'Nullity Sphere MK II', 301540, 150534, 150532, + 150536, 159, 'Crystal', 'Buffs', 'Nullity_Sphere_Nano', 824, '', 0, 1, 0, 0, 0, 'Nano-Technician', + 'Ljotur the Lunatic'), + (150504, 'Nano Crystal (Nullity Sphere)', 301538, 150501, 'Nullity Sphere', 301540, 150533, 150531, 150535, 90, + 'Crystal', 'Buffs', 'Nullity_Sphere_Nano', 824, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'RK Store'), + (150632, 'Nano Crystal (Izgimmer''s Mockery)', 42452, 150631, 'Izgimmer''s Mockery', 118081, 150667, 150655, + 150679, 182, 'Crystal', 'Buffs', 'Fortify', 224, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'RK Dyna'), + (150633, 'Nano Crystal (Enfraam''s Trivial Fortification)', 12227, 150620, 'Enfraam''s Trivial Fortification', + 118435, 150657, 150645, 150669, 14, 'Crystal', 'Buffs', 'Fortify', 224, '', 0, 1, 0, 0, 0, 'Nano-Technician', + 'Mission Reward'), + (150634, 'Nano Crystal (Enfraam''s Supreme Fortification)', 42452, 150624, 'Enfraam''s Supreme Fortification', + 118079, 150658, 150646, 150670, 113, 'Crystal', 'Buffs', 'Fortify', 224, '', 0, 1, 0, 0, 0, 'Nano-Technician', + 'Mission Reward'), + (150635, 'Nano Crystal (Enfraam''s Superior Fortification)', 12260, 150627, 'Enfraam''s Superior Fortification', + 118078, 150659, 150647, 150671, 60, 'Crystal', 'Buffs', 'Fortify', 224, '', 0, 1, 0, 0, 0, 'Nano-Technician', + 'Mission Reward'), + (150636, 'Nano Crystal (Enfraam''s Perfected Fortification)', 42452, 150621, + 'Enfraam''s Perfected Fortification', 118081, 150660, 150648, 150672, 166, 'Crystal', 'Buffs', 'Fortify', 224, + '', 0, 1, 0, 0, 0, 'Nano-Technician', 'Mission Reward'), + (150637, 'Nano Crystal (Enfraam''s Minor Fortification)', 12227, 150630, 'Enfraam''s Minor Fortification', + 118435, 150661, 150649, 150673, 24, 'Crystal', 'Buffs', 'Fortify', 224, '', 0, 1, 0, 0, 0, 'Nano-Technician', + 'Mission Reward'), + (150638, 'Nano Crystal (Enfraam''s Major Fortification)', 12260, 150626, 'Enfraam''s Major Fortification', + 118078, 150662, 150650, 150674, 80, 'Crystal', 'Buffs', 'Fortify', 224, '', 0, 1, 0, 0, 0, 'Nano-Technician', + 'Mission Reward'), + (150639, 'Nano Crystal (Enfraam''s Lesser Fortification)', 12227, 150629, 'Enfraam''s Lesser Fortification', + 118077, 150663, 150651, 150675, 37, 'Crystal', 'Buffs', 'Fortify', 224, '', 0, 1, 0, 0, 0, 'Nano-Technician', + 'Mission Reward'), + (150640, 'Nano Crystal (Enfraam''s Greater Fortification)', 12260, 150625, 'Enfraam''s Greater Fortification', + 118079, 150664, 150652, 150676, 93, 'Crystal', 'Buffs', 'Fortify', 224, '', 0, 1, 0, 0, 0, 'Nano-Technician', + 'Mission Reward'), + (150641, 'Nano Crystal (Enfraam''s Glorious Fortification)', 42452, 150623, 'Enfraam''s Glorious Fortification', + 118080, 150665, 150653, 150677, 140, 'Crystal', 'Buffs', 'Fortify', 224, '', 0, 1, 0, 0, 0, 'Nano-Technician', + 'Mission Reward'), + (150642, 'Nano Crystal (Enfraam''s Fortification)', 12227, 150628, 'Enfraam''s Fortification', 118077, 150666, + 150654, 150678, 47, 'Crystal', 'Buffs', 'Fortify', 224, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'Mission Reward'), + (150643, 'Nano Crystal (Enfraam''s Augmented Fortification)', 42452, 150622, + 'Enfraam''s Augmented Fortification', 118080, 150656, 150644, 150668, 156, 'Crystal', 'Buffs', 'Fortify', 224, + '', 0, 1, 0, 0, 0, 'Nano-Technician', 'Mission Reward'), + (151769, 'Nano Crystal (Infuse With Knowledge: Sensory Improvement)', 42451, 151757, + 'Infuse With Knowledge: Sensory Improvement', 16332, 151804, 151781, 151816, 133, 'Crystal', 'Buffs', + 'Sensory_Improvement_Buffs', 165, '', 0, 1, 0, 0, 0, 'Meta-Physicist', 'Mission Reward'), + (151770, 'Nano Crystal (Infuse With Knowledge: Material Metamorphose)', 42451, 151759, + 'Infuse With Knowledge: Material Metamorphose', 16298, 151795, 151783, 151807, 126, 'Crystal', 'Buffs', + 'Material_Metamorphosis_Buffs', 157, '', 0, 1, 0, 0, 0, 'Meta-Physicist', 'Mission Reward'), + (151771, 'Nano Crystal (Infuse With Knowledge: Psychological Modification)', 42451, 151760, + 'Infuse With Knowledge: Psychological Modification', 16766, 151794, 151782, 151806, 136, 'Crystal', 'Buffs', + 'Psychological_Modification_Buffs', 167, '', 0, 1, 0, 0, 0, 'Meta-Physicist', 'Mission Reward'), + (151772, 'Nano Crystal (Infuse With Knowledge: Biological Metamorphose)', 42451, 151761, + 'Infuse With Knowledge: Biological Metamorphose', 16199, 151798, 151786, 151810, 123, 'Crystal', 'Buffs', + 'Biological_Metamorphosis_Buffs', 163, '', 0, 1, 0, 0, 0, 'Meta-Physicist', 'Mission Reward'), + (151773, 'Nano Crystal (Infuse With Knowledge: Material Creation)', 42451, 151762, + 'Infuse With Knowledge: Material Creation', 16290, 151797, 151785, 151809, 130, 'Crystal', 'Buffs', + 'Matter_Creation_Buffs', 159, '', 0, 1, 0, 0, 0, 'Meta-Physicist', 'Mission Reward'), + (151774, 'Nano Crystal (Infuse With Knowledge: Time and Space)', 42451, 151758, + 'Infuse With Knowledge: Time and Space', 16285, 151796, 151784, 151808, 130, 'Crystal', 'Buffs', + 'Time_and_Space_Buffs', 161, '', 0, 1, 0, 0, 0, 'Meta-Physicist', 'Mission Reward'), + (151775, 'Nano Crystal (Teachings of Material Metamorphose)', 12226, 151767, + 'Teachings of Material Metamorphose', 16298, 151801, 151789, 151813, 17, 'Crystal', 'Buffs', + 'Material_Metamorphosis_Buffs', 157, '', 0, 1, 0, 0, 0, 'Meta-Physicist', 'RK Store'), + (151776, 'Nano Crystal (Teachings of Psychological Modification)', 12226, 151763, + 'Teachings of Psychological Modification', 16766, 151800, 151788, 151812, 24, 'Crystal', 'Buffs', + 'Psychological_Modification_Buffs', 167, '', 0, 1, 0, 0, 0, 'Meta-Physicist', 'RK Store'), + (151777, 'Nano Crystal (Teachings of Sensory Improvement)', 12226, 151764, 'Teachings of Sensory Improvement', + 16332, 151799, 151787, 151811, 21, 'Crystal', 'Buffs', 'Sensory_Improvement_Buffs', 165, '', 0, 1, 0, 0, 0, + 'Meta-Physicist', 'RK Store'), + (151778, 'Nano Crystal (Teachings of Material Creation)', 12226, 151765, 'Teachings of Material Creation', 16290, + 151803, 151791, 151815, 21, 'Crystal', 'Buffs', 'Matter_Creation_Buffs', 159, '', 0, 1, 0, 0, 0, + 'Meta-Physicist', 'RK Store'), + (151779, 'Nano Crystal (Teachings of Time and Space)', 12226, 151766, 'Teachings of Time and Space', 16285, + 151802, 151790, 151814, 21, 'Crystal', 'Buffs', 'Time_and_Space_Buffs', 161, '', 0, 1, 0, 0, 0, + 'Meta-Physicist', 'RK Store'), + (151780, 'Nano Crystal (Teachings of Biological Metamorphose)', 12226, 151768, + 'Teachings of Biological Metamorphose', 16199, 151793, 151792, 151805, 18, 'Crystal', 'Buffs', + 'Biological_Metamorphosis_Buffs', 163, '', 0, 1, 0, 0, 0, 'Meta-Physicist', 'RK Store'), + (151832, 'Nano Crystal (Anima of Fathomless Rage)', 42448, 151830, 'Anima of Fathomless Rage', 16280, 151851, + 151846, 151862, 110, 'Crystal', 'Pet_Buffs', 'Pet_Short_Term_Damage_Buffs', 225, 'Anima', 0, 1, 0, 0, 0, + 'Meta-Physicist', 'Mission Reward'), + (151833, 'Nano Crystal (Anima of Unleashed Malice)', 12228, 151825, 'Anima of Unleashed Malice', 16280, 151858, + 151844, 151860, 37, 'Crystal', 'Pet_Buffs', 'Pet_Short_Term_Damage_Buffs', 225, 'Anima', 0, 1, 0, 0, 0, + 'Meta-Physicist', 'Mission Reward'), + (151834, 'Nano Crystal (Anima of Unrestrained Ferocity)', 12228, 151831, 'Anima of Unrestrained Ferocity', 16280, + 151852, 151845, 151861, 14, 'Crystal', 'Pet_Buffs', 'Pet_Short_Term_Damage_Buffs', 225, 'Anima', 0, 1, 0, 0, 0, + 'Meta-Physicist', 'Mission Reward'), + (151835, 'Nano Crystal (Anima of Pure Malevolence)', 42448, 151829, 'Anima of Pure Malevolence', 16280, 151855, + 151849, 151865, 212, 'Crystal', 'Pet_Buffs', 'Pet_Short_Term_Damage_Buffs', 225, 'Anima', 0, 1, 0, 0, 0, + 'Meta-Physicist', 'Mission Reward'), + (151836, 'Nano Crystal (Anima of Relentless Fury)', 12256, 151826, 'Anima of Relentless Fury', 16280, 151856, + 151843, 151859, 67, 'Crystal', 'Pet_Buffs', 'Pet_Short_Term_Damage_Buffs', 225, 'Anima', 0, 1, 0, 0, 0, + 'Meta-Physicist', 'Mission Reward'), + (151837, 'Nano Crystal (Anima of Implacable Hatred)', 42448, 151824, 'Anima of Implacable Hatred', 16280, 151853, + 151847, 151863, 156, 'Crystal', 'Pet_Buffs', 'Pet_Short_Term_Damage_Buffs', 225, 'Anima', 0, 1, 0, 0, 0, + 'Meta-Physicist', 'Mission Reward'), + (151838, 'Nano Crystal (Anima of Maddening Wrath)', 42448, 151828, 'Anima of Maddening Wrath', 16280, 151854, + 151848, 151864, 189, 'Crystal', 'Pet_Buffs', 'Pet_Short_Term_Damage_Buffs', 225, 'Anima', 0, 1, 0, 0, 0, + 'Meta-Physicist', 'Mission Reward'), + (151839, 'Nano Crystal (Anima of The Abomination)', 42448, 151827, 'Anima of The Abomination', 16280, 151857, + 151850, 151866, 239, 'Crystal', 'Pet_Buffs', 'Pet_Short_Term_Damage_Buffs', 225, 'Anima', 0, 1, 0, 0, 0, + 'Meta-Physicist', 'Mission Reward'), + (152184, 'Nano Crystal (Restock Ammo (Level OP-CC))', 42450, 152183, 'Restock Ammo (Level OP-CC)', 117931, + 152199, 152194, 152204, 107, 'Crystal', 'Creation', 'Ammo', 0, '', 0, 1, 0, 0, 0, 'Fixer', 'Mission Reward'), + (152185, 'Nano Crystal (Restock Ammo (Level OP-X))', 12258, 152182, 'Restock Ammo (Level OP-X)', 117930, 152197, + 152192, 152202, 60, 'Crystal', 'Creation', 'Ammo', 0, '', 0, 1, 0, 0, 0, 'Fixer', 'Mission Reward'), + (152186, 'Nano Crystal (Restock Ammo (Level OP-XX))', 12258, 152179, 'Restock Ammo (Level OP-XX)', 117930, + 152196, 152191, 152201, 74, 'Crystal', 'Creation', 'Ammo', 0, '', 0, 1, 0, 0, 0, 'Fixer', 'Mission Reward'), + (152187, 'Nano Crystal (Restock Ammo (Level OP-II))', 12225, 152180, 'Restock Ammo (Level OP-II)', 117929, + 152198, 152193, 152203, 18, 'Crystal', 'Creation', 'Ammo', 0, '', 0, 1, 0, 0, 0, 'Fixer', 'Mission Reward'), + (152188, 'Nano Crystal (Restock Ammo (Level OP-C))', 42450, 152181, 'Restock Ammo (Level OP-C)', 117931, 152195, + 152190, 152200, 107, 'Crystal', 'Creation', 'Ammo', 0, '', 0, 1, 0, 0, 0, 'Fixer', 'Mission Reward'), + (154573, 'Nano Crystal (Sympathetic Shielding Barrier)', 295528, 154566, 'Sympathetic Shielding Barrier', 295526, + 154613, 154598, 154628, 70, 'Crystal', 'Buffs', 'Engineer_Auras', 227, 'Armor', 0, 1, 0, 0, 0, 'Engineer', + 'Mission Reward'), + (154574, 'Nano Crystal (Sympathetic Retaliatory Barrier)', 295529, 154559, 'Sympathetic Retaliatory Barrier', + 295532, 154614, 154599, 154629, 93, 'Crystal', 'Buffs', 'Engineer_Auras', 227, 'Damage_Shield', 0, 1, 0, 0, 0, + 'Engineer', 'Mission Reward'), + (154575, 'Nano Crystal (Sympathetic Reactive Field)', 295537, 154551, 'Sympathetic Reactive Field', 295533, + 154615, 154600, 154630, 159, 'Crystal', 'Buffs', 'Engineer_Auras', 227, 'Reflect_Damage', 0, 1, 0, 0, 0, + 'Engineer', 'Mission Reward'), + (154576, 'Nano Crystal (Sympathetic Reactive Cocoon)', 295537, 154550, 'Sympathetic Reactive Cocoon', 295533, + 154616, 154601, 154631, 186, 'Crystal', 'Buffs', 'Engineer_Auras', 227, 'Reflect_Damage', 0, 1, 0, 0, 0, + 'Engineer', 'Mission Reward'), + (154577, 'Nano Crystal (Sympathetic Protective Field)', 295528, 154565, 'Sympathetic Protective Field', 295526, + 154617, 154602, 154632, 97, 'Crystal', 'Buffs', 'Engineer_Auras', 227, 'Armor', 0, 1, 0, 0, 0, 'Engineer', + 'Mission Reward'), + (154578, 'Nano Crystal (Sympathetic Plasma Shielding)', 295529, 154557, 'Sympathetic Plasma Shielding', 295532, + 154618, 154603, 154633, 189, 'Crystal', 'Buffs', 'Engineer_Auras', 227, 'Damage_Shield', 0, 1, 0, 0, 0, + 'Engineer', 'Mission Reward'), + (154579, 'Nano Crystal (Sympathetic Harmonic Field)', 295537, 154553, 'Sympathetic Harmonic Field', 295533, + 154619, 154604, 154634, 90, 'Crystal', 'Buffs', 'Engineer_Auras', 227, 'Reflect_Damage', 0, 1, 0, 0, 0, + 'Engineer', 'Mission Reward'), + (154580, 'Nano Crystal (Sympathetic Harmonic Cocoon)', 295537, 154552, 'Sympathetic Harmonic Cocoon', 295533, + 154620, 154605, 154635, 116, 'Crystal', 'Buffs', 'Engineer_Auras', 227, 'Reflect_Damage', 0, 1, 0, 0, 0, + 'Engineer', 'Mission Reward'), + (154581, 'Nano Crystal (Sympathetic Fortress Screen)', 295528, 154562, 'Sympathetic Fortress Screen', 295526, + 154621, 154606, 154636, 189, 'Crystal', 'Buffs', 'Engineer_Auras', 227, 'Armor', 0, 1, 0, 0, 0, 'Engineer', + 'Mission Reward'), + (154582, 'Nano Crystal (Sympathetic Force Field)', 295528, 154563, 'Sympathetic Force Field', 295526, 154622, + 154607, 154637, 163, 'Crystal', 'Buffs', 'Engineer_Auras', 227, 'Armor', 0, 1, 0, 0, 0, 'Engineer', + 'Mission Reward'), + (154583, 'Nano Crystal (Sympathetic Entropy Infusion)', 295539, 154560, 'Sympathetic Entropy Infusion', 295541, + 154623, 154608, 154638, 176, 'Crystal', 'Buffs', 'Engineer_Auras', 227, 'Damage', 0, 1, 0, 0, 0, 'Engineer', + 'Mission Reward'), + (154584, 'Nano Crystal (Sympathetic Energy Cocoon)', 295529, 154558, 'Sympathetic Energy Cocoon', 295532, 154624, + 154609, 154639, 153, 'Crystal', 'Buffs', 'Engineer_Auras', 227, 'Damage_Shield', 0, 1, 0, 0, 0, 'Engineer', + 'Mission Reward'), + (154585, 'Nano Crystal (Sympathetic Defensive Screen)', 295528, 154564, 'Sympathetic Defensive Screen', 295526, + 154625, 154610, 154640, 146, 'Crystal', 'Buffs', 'Engineer_Auras', 227, 'Armor', 0, 1, 0, 0, 0, 'Engineer', + 'Mission Reward'), + (154586, 'Nano Crystal (Sympathetic Arms Enhancement)', 295539, 154561, 'Sympathetic Arms Enhancement', 295541, + 154626, 154611, 154641, 80, 'Crystal', 'Buffs', 'Engineer_Auras', 227, 'Damage', 0, 1, 0, 0, 0, 'Engineer', + 'Mission Reward'), + (154587, 'Nano Crystal (Sympathetic Armor Boost)', 295528, 154567, 'Sympathetic Armor Boost', 295526, 154627, + 154612, 154642, 34, 'Crystal', 'Buffs', 'Engineer_Auras', 227, 'Armor', 0, 1, 0, 0, 0, 'Engineer', + 'Mission Reward'), + (154729, 'Nano Crystal (Null Space Disruptor)', 42452, 154725, 'Null Space Disruptor', 118034, 154757, 154743, + 154775, 189, 'Crystal', 'DeBuffs', 'Engineer_DeBuffs_Auras', 236, 'Reflect_AC', 0, 1, 0, 0, 0, 'Engineer', + 'Mission Reward'), + (154730, 'Nano Crystal (Disruptive Void Projector)', 42450, 154715, 'Disruptive Void Projector', 117957, 154758, + 154744, 154772, 166, 'Crystal', 'DeBuffs', 'Engineer_DeBuffs_Auras', 236, 'Add_All_Offensive', 0, 1, 0, 0, 0, + 'Engineer', 'Mission Reward'), + (154731, 'Nano Crystal (Disruptive Shielding Negator)', 12260, 154723, 'Disruptive Shielding Negator', 118037, + 154759, 154745, 154773, 57, 'Crystal', 'DeBuffs', 'Engineer_DeBuffs_Auras', 236, 'Shield_AC', 0, 1, 0, 0, 0, + 'Engineer', 'Mission Reward'), + (154732, 'Nano Crystal (Disruptive Retributive Negator)', 42452, 154720, 'Disruptive Retributive Negator', + 118040, 154760, 154746, 154774, 182, 'Crystal', 'DeBuffs', 'Engineer_DeBuffs_Auras', 236, 'Shield_AC', 0, 1, 0, + 0, 0, 'Engineer', 'Mission Reward'), + (154733, 'Nano Crystal (Disruptive Retaliatory Negator)', 42452, 154721, 'Disruptive Retaliatory Negator', + 118039, 154761, 154747, 154771, 153, 'Crystal', 'DeBuffs', 'Engineer_DeBuffs_Auras', 236, 'Shield_AC', 0, 1, 0, + 0, 0, 'Engineer', 'Mission Reward'), + (154734, 'Nano Crystal (Disruptive Photon Devourer)', 42450, 154717, 'Disruptive Photon Devourer', 117956, + 154762, 154748, 154776, 120, 'Crystal', 'DeBuffs', 'Engineer_DeBuffs_Auras', 236, 'Add_All_Offensive', 0, 1, 0, + 0, 0, 'Engineer', 'Mission Reward'), + (154735, 'Nano Crystal (Disruptive Photon Deflector)', 12225, 154719, 'Disruptive Photon Deflector', 117955, + 154763, 154749, 154777, 41, 'Crystal', 'DeBuffs', 'Engineer_DeBuffs_Auras', 236, 'Add_All_Offensive', 0, 1, 0, + 0, 0, 'Engineer', 'Mission Reward'), + (154736, 'Nano Crystal (Disruptive Photon Annihilator)', 42450, 154716, 'Disruptive Photon Annihilator', 117956, + 154764, 154750, 154778, 149, 'Crystal', 'DeBuffs', 'Engineer_DeBuffs_Auras', 236, 'Add_All_Offensive', 0, 1, 0, + 0, 0, 'Engineer', 'Mission Reward'), + (154737, 'Nano Crystal (Disruptive Photon Absorber)', 12258, 154718, 'Disruptive Photon Absorber', 117955, + 154765, 154751, 154779, 83, 'Crystal', 'DeBuffs', 'Engineer_DeBuffs_Auras', 236, 'Add_All_Offensive', 0, 1, 0, + 0, 0, 'Engineer', 'Mission Reward'), + (154738, 'Nano Crystal (Disruptive Phase Harmonics)', 42452, 154726, 'Disruptive Phase Harmonics', 118033, + 154766, 154752, 154780, 156, 'Crystal', 'DeBuffs', 'Engineer_DeBuffs_Auras', 236, 'Reflect_AC', 0, 1, 0, 0, 0, + 'Engineer', 'Mission Reward'), + (154739, 'Nano Crystal (Disruptive Field Negator)', 12227, 154724, 'Disruptive Field Negator', 118036, 154767, + 154753, 154781, 17, 'Crystal', 'DeBuffs', 'Engineer_DeBuffs_Auras', 236, 'Shield_AC', 0, 1, 0, 0, 0, 'Engineer', + 'Mission Reward'), + (154740, 'Nano Crystal (Disruptive Field Harmonics)', 12227, 154728, 'Disruptive Field Harmonics', 118031, + 154768, 154754, 154782, 41, 'Crystal', 'DeBuffs', 'Engineer_DeBuffs_Auras', 236, 'Reflect_AC', 0, 1, 0, 0, 0, + 'Engineer', 'Mission Reward'), + (154741, 'Nano Crystal (Disruptive Cocoon Harmonics)', 42452, 154727, 'Disruptive Cocoon Harmonics', 118032, + 154769, 154755, 154783, 107, 'Crystal', 'DeBuffs', 'Engineer_DeBuffs_Auras', 236, 'Reflect_AC', 0, 1, 0, 0, 0, + 'Engineer', 'Mission Reward'), + (154742, 'Nano Crystal (Disruptive Barrier Negator)', 42452, 154722, 'Disruptive Barrier Negator', 118038, + 154770, 154756, 154784, 113, 'Crystal', 'DeBuffs', 'Engineer_DeBuffs_Auras', 236, 'Shield_AC', 0, 1, 0, 0, 0, + 'Engineer', 'Mission Reward'), + (154915, 'Nano Crystal (Beacon Warp)', 12258, 154914, 'Beacon Warp', 16340, 154919, 154917, 154921, 90, + 'Crystal', 'Combat', 'Beacon_Warp', 293, '', 0, 0, 0, 0, 0, 'Engineer', 'Mission Reward'), + (154916, 'Nano Crystal (Team Beacon Warp)', 42450, 154913, 'Team Beacon Warp', 16340, 154920, 154918, 154922, + 159, 'Crystal', 'Combat', 'Beacon_Warp', 293, '', 0, 0, 0, 0, 0, 'Engineer', + 'Ljotur the Lunatic / Polymorphed Lunatic'), + (154985, 'Nano Crystal (Creation: Shield of Asmodian)', 42450, 154971, 'Creation: Shield of Asmodian', 117943, + 155026, 155003, 155043, 205, 'Crystal', 'Creation', 'Shield_Weapons', 0, '', 0, 0, 0, 0, 0, 'Meta-Physicist', + 'RK Mob'), + (154986, 'Nano Crystal (Creation: Wave Breaker)', 42450, 154975, 'Creation: Wave Breaker', 117943, 155021, + 155004, 155038, 129, 'Crystal', 'Creation', 'Shield_Weapons', 0, '', 0, 0, 0, 0, 0, 'Meta-Physicist', + 'Mission Reward'), + (154987, 'Nano Crystal (Creation: Vital Buckler)', 12258, 154970, 'Creation: Vital Buckler', 117943, 0, 0, 0, 59, + 'Crystal', 'Creation', 'Shield_Weapons', 0, '', 0, 0, 0, 0, 0, 'Meta-Physicist', 'Mission Reward'), + (154988, 'Nano Crystal (Creation: Viper Staff)', 12258, 154984, 'Creation: Viper Staff', 117943, 155023, 155006, + 155040, 66, 'Crystal', 'Creation', '2H_Blunt_Weapons', 0, '', 0, 0, 0, 0, 0, 'Meta-Physicist', + 'Mission Reward'), + (154989, 'Nano Crystal (Creation: The Crotalus)', 12258, 154980, 'Creation: The Crotalus', 117943, 155024, + 155007, 155041, 48, 'Crystal', 'Creation', '1H_Blunt_Weapons', 0, '', 0, 0, 0, 0, 0, 'Meta-Physicist', + 'Mission Reward'), + (154990, 'Nano Crystal (Creation: Solar Guard)', 42450, 154973, 'Creation: Solar Guard', 117943, 155025, 155008, + 155042, 85, 'Crystal', 'Creation', 'Shield_Weapons', 0, '', 0, 0, 0, 0, 0, 'Meta-Physicist', 'Mission Reward'), + (154991, 'Nano Crystal (Creation: Wixel''s Notum Python)', 42450, 154982, 'Creation: Wixel''s Notum Python', + 117943, 155029, 155009, 155045, 160, 'Crystal', 'Creation', '2H_Blunt_Weapons', 0, '', 0, 0, 0, 0, 0, + 'Meta-Physicist', 'Mission Reward'), + (154992, 'Nano Crystal (Creation: Notum Defender)', 12258, 154976, 'Creation: Notum Defender', 117943, 155027, + 155010, 155044, 72, 'Crystal', 'Creation', 'Shield_Weapons', 0, '', 0, 0, 0, 0, 0, 'Meta-Physicist', + 'Mission Reward'), + (154993, 'Nano Crystal (Creation: Mocham''s Guard)', 42450, 154974, 'Creation: Mocham''s Guard', 117943, 155028, + 155011, 155037, 187, 'Crystal', 'Creation', 'Shield_Weapons', 0, '', 0, 0, 0, 0, 0, 'Meta-Physicist', + 'Mission Reward'), + (154994, 'Nano Crystal (Creation: Living Shield of Evernan)', 42450, 154969, + 'Creation: Living Shield of Evernan', 117943, 155020, 155012, 155046, 112, 'Crystal', 'Creation', + 'Shield_Weapons', 0, '', 0, 0, 0, 0, 0, 'Meta-Physicist', 'Mission Reward'), + (154995, 'Nano Crystal (Creation: Coplan''s Hand Taipan)', 42450, 154979, 'Creation: Coplan''s Hand Taipan', + 117943, 155030, 155013, 155047, 90, 'Crystal', 'Creation', '1H_Blunt_Weapons', 0, '', 0, 0, 0, 0, 0, + 'Meta-Physicist', 'Mission Reward'), + (154996, 'Nano Crystal (Creation: Gold Acantophis)', 42450, 154977, 'Creation: Gold Acantophis', 117943, 155031, + 155014, 155048, 190, 'Crystal', 'Creation', '1H_Blunt_Weapons', 0, '', 0, 0, 0, 0, 0, 'Meta-Physicist', + 'RK Mob'), + (154997, 'Nano Crystal (Creation: Death Ward)', 42450, 154972, 'Creation: Death Ward', 117943, 155032, 155015, + 155049, 177, 'Crystal', 'Creation', 'Shield_Weapons', 0, '', 0, 0, 0, 0, 0, 'Meta-Physicist', 'Mission Reward'), + (154998, 'Nano Crystal (Creation: Bitis Striker)', 42450, 154978, 'Creation: Bitis Striker', 117943, 155033, + 155016, 155050, 136, 'Crystal', 'Creation', '1H_Blunt_Weapons', 0, '', 0, 0, 0, 0, 0, 'Meta-Physicist', + 'Mission Reward'), + (154999, 'Nano Crystal (Creation: Belthior''s Flame Ward)', 42450, 154968, 'Creation: Belthior''s Flame Ward', + 117943, 155034, 155017, 155051, 147, 'Crystal', 'Creation', 'Shield_Weapons', 0, '', 0, 0, 0, 0, 0, + 'Meta-Physicist', 'Mission Reward'), + (155000, 'Nano Crystal (Creation: Azure Cobra of Orma)', 42450, 154981, 'Creation: Azure Cobra of Orma', 117943, + 155035, 155018, 155052, 215, 'Crystal', 'Creation', '2H_Blunt_Weapons', 0, '', 0, 0, 0, 0, 0, 'Meta-Physicist', + 'RK Mob'), + (155001, 'Nano Crystal (Creation: Asp of Semol)', 42450, 154983, 'Creation: Asp of Semol', 117943, 155036, + 155019, 155053, 116, 'Crystal', 'Creation', '2H_Blunt_Weapons', 0, '', 0, 0, 0, 0, 0, 'Meta-Physicist', + 'Mission Reward'), + (155190, 'Nano Crystal (Summon Grid Armor Mk I)', 301135, 155186, 'Summon Grid Armor Mk I', 301134, 155198, + 155194, 155202, 60, 'Crystal', 'Creation', 'Grid_Armor', 0, '', 0, 0, 0, 0, 0, 'Fixer', 'RK Mob'), + (155191, 'Nano Crystal (Summon Grid Armor Mk III)', 301135, 155187, 'Summon Grid Armor Mk III', 301134, 155199, + 155195, 155203, 116, 'Crystal', 'Creation', 'Grid_Armor', 0, '', 0, 0, 0, 0, 0, 'Fixer', 'RK Mob'), + (155192, 'Nano Crystal (Summon Grid Armor Mk II)', 301135, 155188, 'Summon Grid Armor Mk II', 301134, 155200, + 155196, 155204, 93, 'Crystal', 'Creation', 'Grid_Armor', 0, '', 0, 0, 0, 0, 0, 'Fixer', 'RK Mob'), + (155193, 'Nano Crystal (Summon Grid Armor Mk IV)', 301135, 155189, 'Summon Grid Armor Mk IV', 301134, 155201, + 155197, 155205, 140, 'Crystal', 'Creation', 'Grid_Armor', 0, '', 0, 0, 0, 0, 0, 'Fixer', 'RK Mob'), + (155360, 'Nano Crystal (Smuggler Shipment (OP-CC))', 42450, 155330, 'Smuggler Shipment (OP-CC)', 117934, 155423, + 155393, 155453, 120, 'Crystal', 'Creation', 'Armor', 0, '', 0, 1, 0, 0, 0, 'Fixer', 'Mission Reward'), + (155361, 'Nano Crystal (Smuggler Shipment (OP-CLXXX))', 42450, 155331, 'Smuggler Shipment (OP-CLXXX)', 117934, + 155424, 155394, 155454, 113, 'Crystal', 'Creation', 'Armor', 0, '', 0, 1, 0, 0, 0, 'Fixer', 'Mission Reward'), + (155362, 'Nano Crystal (Smuggler Shipment (OP-CLX))', 42450, 155332, 'Smuggler Shipment (OP-CLX)', 117934, + 155425, 155395, 155455, 107, 'Crystal', 'Creation', 'Armor', 0, '', 0, 1, 0, 0, 0, 'Fixer', 'Mission Reward'), + (155363, 'Nano Crystal (Smuggler Shipment (OP-CXL))', 42450, 155333, 'Smuggler Shipment (OP-CXL)', 117933, + 155426, 155396, 155456, 103, 'Crystal', 'Creation', 'Armor', 0, '', 0, 1, 0, 0, 0, 'Fixer', 'Mission Reward'), + (155364, 'Nano Crystal (Smuggler Shipment (OP-CXX))', 12258, 155334, 'Smuggler Shipment (OP-CXX)', 117933, + 155427, 155397, 155457, 90, 'Crystal', 'Creation', 'Armor', 0, '', 0, 1, 0, 0, 0, 'Fixer', 'Mission Reward'), + (155365, 'Nano Crystal (Smuggler Shipment (OP-C))', 12258, 155335, 'Smuggler Shipment (OP-C)', 117933, 155428, + 155398, 155458, 70, 'Crystal', 'Creation', 'Armor', 0, '', 0, 1, 0, 0, 0, 'Fixer', 'Mission Reward'), + (155366, 'Nano Crystal (Smuggler Shipment (OP-LXXX))', 12258, 155336, 'Smuggler Shipment (OP-LXXX)', 117932, + 155429, 155399, 155459, 54, 'Crystal', 'Creation', 'Armor', 0, '', 0, 1, 0, 0, 0, 'Fixer', 'Mission Reward'), + (155367, 'Nano Crystal (Smuggler Shipment (OP-LX))', 12225, 155337, 'Smuggler Shipment (OP-LX)', 117932, 155430, + 155400, 155460, 34, 'Crystal', 'Creation', 'Armor', 0, '', 0, 1, 0, 0, 0, 'Fixer', 'Mission Reward'), + (155368, 'Nano Crystal (Smuggler Shipment (OP-XL))', 12225, 155338, 'Smuggler Shipment (OP-XL)', 117932, 155431, + 155401, 155461, 24, 'Crystal', 'Creation', 'Armor', 0, '', 0, 1, 0, 0, 0, 'Fixer', 'Mission Reward'), + (155369, 'Nano Crystal (Smuggler Shipment (OP-XX))', 12225, 155339, 'Smuggler Shipment (OP-XX)', 117932, 155432, + 155402, 155462, 8, 'Crystal', 'Creation', 'Armor', 0, '', 0, 1, 0, 0, 0, 'Fixer', 'Mission Reward'), + (155370, 'Nano Crystal (Bootleg Blades ''n Blunts (OP-CC))', 42450, 155350, 'Bootleg Blades ''n Blunts (OP-CC)', + 117944, 155433, 155403, 155463, 120, 'Crystal', 'Creation', 'Melee_Weapon', 0, '', 0, 1, 0, 0, 0, 'Fixer', + 'Mission Reward'), + (155371, 'Nano Crystal (Bootleg Blades ''n Blunts (OP-CLXXX))', 42450, 155351, + 'Bootleg Blades ''n Blunts (OP-CLXXX)', 117944, 155434, 155404, 155464, 113, 'Crystal', 'Creation', + 'Melee_Weapon', 0, '', 0, 1, 0, 0, 0, 'Fixer', 'Mission Reward'), + (155372, 'Nano Crystal (Bootleg Blades ''n Blunts (OP-CLX))', 42450, 155352, + 'Bootleg Blades ''n Blunts (OP-CLX)', 117944, 155435, 155405, 155465, 107, 'Crystal', 'Creation', + 'Melee_Weapon', 0, '', 0, 1, 0, 0, 0, 'Fixer', 'Mission Reward'), + (155373, 'Nano Crystal (Bootleg Blades ''n Blunts (OP-CXL))', 42450, 155353, + 'Bootleg Blades ''n Blunts (OP-CXL)', 117943, 155436, 155406, 155466, 103, 'Crystal', 'Creation', + 'Melee_Weapon', 0, '', 0, 1, 0, 0, 0, 'Fixer', 'Mission Reward'), + (155374, 'Nano Crystal (Bootleg Blades ''n Blunts (OP-CXX))', 12258, 155354, + 'Bootleg Blades ''n Blunts (OP-CXX)', 117943, 155437, 155407, 155467, 90, 'Crystal', 'Creation', 'Melee_Weapon', + 0, '', 0, 1, 0, 0, 0, 'Fixer', 'Mission Reward'), + (155375, 'Nano Crystal (Bootleg Blades ''n Blunts (OP-C))', 12258, 155355, 'Bootleg Blades ''n Blunts (OP-C)', + 117943, 155438, 155408, 155468, 67, 'Crystal', 'Creation', 'Melee_Weapon', 0, '', 0, 1, 0, 0, 0, 'Fixer', + 'Mission Reward'), + (155376, 'Nano Crystal (Bootleg Blades ''n Blunts (OP-LXXX))', 12258, 155356, + 'Bootleg Blades ''n Blunts (OP-LXXX)', 117942, 155439, 155409, 155469, 54, 'Crystal', 'Creation', + 'Melee_Weapon', 0, '', 0, 1, 0, 0, 0, 'Fixer', 'Mission Reward'), + (155377, 'Nano Crystal (Bootleg Blades ''n Blunts (OP-LX))', 12225, 155357, 'Bootleg Blades ''n Blunts (OP-LX)', + 117942, 155440, 155410, 155470, 34, 'Crystal', 'Creation', 'Melee_Weapon', 0, '', 0, 1, 0, 0, 0, 'Fixer', + 'Mission Reward'), + (155378, 'Nano Crystal (Bootleg Blades ''n Blunts (OP-XL))', 12225, 155358, 'Bootleg Blades ''n Blunts (OP-XL)', + 117942, 155441, 155411, 155471, 21, 'Crystal', 'Creation', 'Melee_Weapon', 0, '', 0, 1, 0, 0, 0, 'Fixer', + 'Mission Reward'), + (155379, 'Nano Crystal (Bootleg Blades ''n Blunts (OP-XX))', 12225, 155359, 'Bootleg Blades ''n Blunts (OP-XX)', + 117942, 155442, 155412, 155472, 8, 'Crystal', 'Creation', 'Melee_Weapon', 0, '', 0, 1, 0, 0, 0, 'Fixer', + 'Mission Reward'), + (155380, 'Nano Crystal (Bootleg Beamers ''n Bolters (OP-CC))', 42450, 155340, + 'Bootleg Beamers ''n Bolters (OP-CC)', 117947, 155443, 155413, 155473, 120, 'Crystal', 'Creation', + 'Ranged_Weapon', 0, '', 0, 1, 0, 0, 0, 'Fixer', 'Mission Reward'), + (155384, 'Nano Crystal (Bootleg Beamers ''n Bolters (OP-CLXXX))', 42450, 155341, + 'Bootleg Beamers ''n Bolters (OP-CLXXX)', 117947, 155444, 155414, 155474, 113, 'Crystal', 'Creation', + 'Ranged_Weapon', 0, '', 0, 1, 0, 0, 0, 'Fixer', 'Mission Reward'), + (155385, 'Nano Crystal (Bootleg Beamers ''n Bolters (OP-CLX))', 42450, 155342, + 'Bootleg Beamers ''n Bolters (OP-CLX)', 117947, 155445, 155415, 155475, 107, 'Crystal', 'Creation', + 'Ranged_Weapon', 0, '', 0, 1, 0, 0, 0, 'Fixer', 'Mission Reward'), + (155386, 'Nano Crystal (Bootleg Beamers ''n Bolters (OP-CXL))', 42450, 155343, + 'Bootleg Beamers ''n Bolters (OP-CXL)', 117946, 155446, 155416, 155476, 103, 'Crystal', 'Creation', + 'Ranged_Weapon', 0, '', 0, 1, 0, 0, 0, 'Fixer', 'Mission Reward'), + (155387, 'Nano Crystal (Bootleg Beamers ''n Bolters (OP-CXX))', 12258, 155344, + 'Bootleg Beamers ''n Bolters (OP-CXX)', 117946, 155447, 155417, 155477, 90, 'Crystal', 'Creation', + 'Ranged_Weapon', 0, '', 0, 1, 0, 0, 0, 'Fixer', 'Mission Reward'), + (155388, 'Nano Crystal (Bootleg Beamers ''n Bolters (OP-C))', 12258, 155345, + 'Bootleg Beamers ''n Bolters (OP-C)', 117946, 155448, 155418, 155478, 67, 'Crystal', 'Creation', + 'Ranged_Weapon', 0, '', 0, 1, 0, 0, 0, 'Fixer', 'Mission Reward'), + (155389, 'Nano Crystal (Bootleg Beamers ''n Bolters (OP-LXXX))', 12258, 155346, + 'Bootleg Beamers ''n Bolters (OP-LXXX)', 117945, 155449, 155419, 155479, 54, 'Crystal', 'Creation', + 'Ranged_Weapon', 0, '', 0, 1, 0, 0, 0, 'Fixer', 'Mission Reward'), + (155390, 'Nano Crystal (Bootleg Beamers ''n Bolters (OP-LX))', 12225, 155347, + 'Bootleg Beamers ''n Bolters (OP-LX)', 117945, 155450, 155420, 155480, 34, 'Crystal', 'Creation', + 'Ranged_Weapon', 0, '', 0, 1, 0, 0, 0, 'Fixer', 'Mission Reward'), + (155391, 'Nano Crystal (Bootleg Beamers ''n Bolters (OP-XL))', 12225, 155348, + 'Bootleg Beamers ''n Bolters (OP-XL)', 117945, 155451, 155421, 155481, 21, 'Crystal', 'Creation', + 'Ranged_Weapon', 0, '', 0, 1, 0, 0, 0, 'Fixer', 'Mission Reward'), + (155392, 'Nano Crystal (Bootleg Beamers ''n Bolters (OP-XX))', 12225, 155349, + 'Bootleg Beamers ''n Bolters (OP-XX)', 117945, 155452, 155422, 155482, 8, 'Crystal', 'Creation', + 'Ranged_Weapon', 0, '', 0, 1, 0, 0, 0, 'Fixer', 'Mission Reward'), + (155578, 'Nano Crystal (Contemplation)', 42449, 155577, 'Contemplation', 46271, 155580, 155579, 155581, 189, + 'Crystal', 'Crowd_Control', 'Mezz', 147, 'Target', 0, 1, 0, 0, 0, 'Bureaucrat', 'Mission Reward'), + (155618, 'Nano Crystal (Mud Slinger)', 12226, 155615, 'Mud Slinger', 16309, 155624, 155622, 155627, 44, + 'Crystal', 'Pet_Buffs', 'Pet_Taunt_Buffs', 232, '', 0, 1, 0, 0, 0, 'Bureaucrat', 'Mission Reward'), + (155619, 'Nano Crystal (Defamation 101)', 42451, 155616, 'Defamation 101', 16309, 155625, 155621, 155628, 130, + 'Crystal', 'Pet_Buffs', 'Pet_Taunt_Buffs', 232, '', 0, 1, 0, 0, 0, 'Bureaucrat', 'Mission Reward'), + (155620, 'Nano Crystal (Character Assassin)', 42451, 155617, 'Character Assassin', 16309, 155626, 155623, 155629, + 173, 'Crystal', 'Pet_Buffs', 'Pet_Taunt_Buffs', 232, '', 0, 1, 0, 0, 0, 'Bureaucrat', 'Mission Reward'), + (155810, 'Nano Crystal (Motivational Speech: Bravery Overcomes)', 295508, 155809, + 'Motivational Speech: Bravery Overcomes', 295510, 155820, 155815, 155825, 83, 'Crystal', 'Buffs', + 'Motivational_SpeechEffect', 234, 'Add_All_Offensive_&_Defensive_Buffs', 0, 0, 0, 0, 0, 'Bureaucrat', + 'Mission Reward'), + (155811, 'Nano Crystal (Motivational Speech: Lead From The Front)', 295508, 155808, + 'Motivational Speech: Lead From The Front', 295510, 155821, 155816, 155826, 37, 'Crystal', 'Buffs', + 'Motivational_SpeechEffect', 234, 'Add_All_Offensive_&_Defensive_Buffs', 0, 0, 0, 0, 0, 'Bureaucrat', + 'Mission Reward'), + (155812, 'Nano Crystal (Motivational Speech: Heroic Measures)', 295508, 155807, + 'Motivational Speech: Heroic Measures', 295510, 155822, 155817, 155827, 186, 'Crystal', 'Buffs', + 'Motivational_SpeechEffect', 234, 'Add_All_Offensive_&_Defensive_Buffs', 0, 0, 0, 0, 0, 'Bureaucrat', + 'Mission Reward'), + (155813, 'Nano Crystal (Motivational Speech: Glorious Leader)', 295508, 155806, + 'Motivational Speech: Glorious Leader', 295510, 155823, 155818, 155828, 156, 'Crystal', 'Buffs', + 'Motivational_SpeechEffect', 234, 'Add_All_Offensive_&_Defensive_Buffs', 0, 0, 0, 0, 0, 'Bureaucrat', + 'Mission Reward'), + (155814, 'Nano Crystal (Motivational Speech: Triumphant Pose)', 295508, 155805, + 'Motivational Speech: Triumphant Pose', 295510, 155824, 155819, 155829, 130, 'Crystal', 'Buffs', + 'Motivational_SpeechEffect', 234, 'Add_All_Offensive_&_Defensive_Buffs', 0, 0, 0, 0, 0, 'Bureaucrat', + 'Mission Reward'), + (156132, 'Nano Crystal (Deranged Mindreaver)', 295572, 156123, 'Deranged Mindreaver', 295574, 156163, 156147, + 156179, 41, 'Crystal', 'Pet', 'Mezz_Pet', 0, '', 0, 0, 0, 0, 0, 'Meta-Physicist', 'Mission Reward'), + (156133, 'Nano Crystal (Supreme Distracting Sphere)', 295572, 156117, 'Supreme Distracting Sphere', 295574, + 156164, 156148, 156180, 24, 'Crystal', 'Pet', 'Mezz_Pet', 0, '', 0, 0, 0, 0, 0, 'Meta-Physicist', + 'Mission Reward'), + (156134, 'Nano Crystal (Supreme Deranged Mindreaver)', 295572, 156130, 'Supreme Deranged Mindreaver', 295574, + 156165, 156149, 156181, 67, 'Crystal', 'Pet', 'Mezz_Pet', 0, '', 0, 0, 0, 0, 0, 'Meta-Physicist', + 'Mission Reward'), + (156135, 'Nano Crystal (Summoning of Ignatus Mind-Clouder)', 295572, 156122, 'Summoning of Ignatus Mind-Clouder', + 295574, 156166, 156150, 156182, 100, 'Crystal', 'Pet', 'Mezz_Pet', 0, '', 0, 0, 0, 0, 0, 'Meta-Physicist', + 'Mission Reward'), + (156136, 'Nano Crystal (Summoning of Duoco)', 295572, 156120, 'Summoning of Duoco', 295574, 156167, 156151, + 156183, 153, 'Crystal', 'Pet', 'Mezz_Pet', 0, '', 0, 0, 0, 0, 0, 'Meta-Physicist', 'Mission Reward'), + (156137, 'Nano Crystal (Summoning of Distral)', 295572, 156119, 'Summoning of Distral', 295574, 156168, 156152, + 156184, 159, 'Crystal', 'Pet', 'Mezz_Pet', 0, '', 0, 0, 0, 0, 0, 'Meta-Physicist', 'Mission Reward'), + (156138, 'Nano Crystal (Summoning of Demenus)', 295572, 156121, 'Summoning of Demenus', 295574, 156169, 156153, + 156185, 120, 'Crystal', 'Pet', 'Mezz_Pet', 0, '', 0, 0, 0, 0, 0, 'Meta-Physicist', 'Mission Reward'), + (156139, 'Nano Crystal (Summoning of Confane)', 295572, 156118, 'Summoning of Confane', 295574, 156170, 156154, + 156186, 166, 'Crystal', 'Pet', 'Mezz_Pet', 0, '', 0, 0, 0, 0, 0, 'Meta-Physicist', 'Mission Reward'), + (156140, 'Nano Crystal (Summoning of Balbuto the Gibberer)', 295572, 156131, 'Summoning of Balbuto the Gibberer', + 295574, 156171, 156155, 156187, 176, 'Crystal', 'Pet', 'Mezz_Pet', 0, '', 0, 0, 0, 0, 0, 'Meta-Physicist', + 'Mission Reward'), + (156141, 'Nano Crystal (Summoning of Absuum)', 295572, 156129, 'Summoning of Absuum', 295574, 156172, 156156, + 156188, 83, 'Crystal', 'Pet', 'Mezz_Pet', 0, '', 0, 0, 0, 0, 0, 'Meta-Physicist', 'Mission Reward'), + (156142, 'Nano Crystal (Lesser Distracting Sphere)', 295572, 156128, 'Lesser Distracting Sphere', 295574, 156173, + 156157, 156189, 4, 'Crystal', 'Pet', 'Mezz_Pet', 0, '', 0, 0, 0, 0, 0, 'Meta-Physicist', 'Mission Reward'), + (156143, 'Nano Crystal (Lesser Deranged Mindreaver)', 295572, 156127, 'Lesser Deranged Mindreaver', 295574, + 156174, 156158, 156190, 34, 'Crystal', 'Pet', 'Mezz_Pet', 0, '', 0, 0, 0, 0, 0, 'Meta-Physicist', + 'Mission Reward'), + (156144, 'Nano Crystal (Greater Distracting Sphere)', 295572, 156126, 'Greater Distracting Sphere', 295574, + 156175, 156159, 156191, 17, 'Crystal', 'Pet', 'Mezz_Pet', 0, '', 0, 0, 0, 0, 0, 'Meta-Physicist', + 'Mission Reward'), + (156145, 'Nano Crystal (Greater Deranged Mindreaver)', 295572, 156125, 'Greater Deranged Mindreaver', 295574, + 156176, 156160, 156192, 50, 'Crystal', 'Pet', 'Mezz_Pet', 0, '', 0, 0, 0, 0, 0, 'Meta-Physicist', + 'Mission Reward'), + (156146, 'Nano Crystal (Distracting Sphere)', 295572, 156124, 'Distracting Sphere', 295574, 156177, 156161, + 156193, 11, 'Crystal', 'Pet', 'Mezz_Pet', 0, '', 0, 0, 0, 0, 0, 'Meta-Physicist', 'Mission Reward'), + (156257, 'Nano Crystal (Emergency XP Loss Reducer: 30)', 12228, 156255, 'Emergency XP Loss Reducer: 30', 16313, + 0, 0, 0, 47, 'Crystal', 'Buffs', 'Experience_Constructs_-_XP_Bonus', 959, '', 0, 0, 0, 0, 0, 'Bureaucrat', + 'SL Loot'), + (157536, 'Nano Crystal (Demotivational Speech: 10 Thumbs)', 42451, 157529, 'Demotivational Speech: 10 Thumbs', + 39041, 157573, 157555, 157591, 113, 'Crystal', 'DeBuffs', 'Demotivational_Speeches', 238, 'Critical_DeBuffs', 0, + 0, 0, 0, 0, 'Bureaucrat', 'Mission Reward'), + (157537, 'Nano Crystal (Motivational Speech: Opportunity Knocks)', 295520, 157499, + 'Motivational Speech: Opportunity Knocks', 295521, 157574, 157556, 157592, 87, 'Crystal', 'Buffs', + 'Motivational_SpeechEffect', 234, 'Critical_Buffs', 0, 1, 0, 0, 0, 'Bureaucrat', 'Mission Reward'), + (157538, 'Nano Crystal (Motivational Speech: Only the Paranoid Will Survive!)', 295515, 157502, + 'Motivational Speech: Only the Paranoid Will Survive!', 295517, 157575, 157557, 157593, 50, 'Crystal', 'Buffs', + 'Motivational_SpeechEffect', 234, 'Resistance_Buffs', 0, 1, 0, 0, 0, 'Bureaucrat', 'Mission Reward'), + (157539, 'Nano Crystal (Motivational Speech: Improvise and Adapt)', 295515, 157504, + 'Motivational Speech: Improvise and Adapt', 295517, 157576, 157558, 157594, 149, 'Crystal', 'Buffs', + 'Motivational_SpeechEffect', 234, 'Resistance_Buffs', 0, 0, 0, 0, 0, 'Bureaucrat', 'Mission Reward'), + (157540, 'Nano Crystal (Motivational Speech: Implement Through Iteration)', 295515, 157500, + 'Motivational Speech: Implement Through Iteration', 295517, 157577, 157559, 157595, 149, 'Crystal', 'Buffs', + 'Motivational_SpeechEffect', 234, 'Resistance_Buffs', 0, 1, 0, 0, 0, 'Bureaucrat', 'Mission Reward'), + (157541, 'Nano Crystal (Motivational Speech: Assassin''s Focus)', 295520, 157503, + 'Motivational Speech: Assassin''s Focus', 295521, 157578, 157560, 157596, 156, 'Crystal', 'Buffs', + 'Motivational_SpeechEffect', 234, 'Critical_Buffs', 0, 0, 0, 0, 0, 'Bureaucrat', 'Mission Reward'), + (157542, 'Nano Crystal (Demotivational Speech: Who Writes the Minutes?)', 42451, 157526, + 'Demotivational Speech: Who Writes the Minutes?', 39124, 157579, 157561, 157597, 153, 'Crystal', 'DeBuffs', + 'Demotivational_Speeches', 238, 'Nano_Resist_DeBuffs', 0, 0, 0, 0, 0, 'Bureaucrat', 'Mission Reward'), + (157543, 'Nano Crystal (Demotivational Speech: Swapdisk Mayhem)', 42451, 157534, + 'Demotivational Speech: Swapdisk Mayhem', 39125, 157580, 157562, 157598, 159, 'Crystal', 'DeBuffs', + 'Demotivational_Speeches', 238, 'Max_Nano_DeBuffs', 0, 0, 0, 0, 0, 'Bureaucrat', 'Mission Reward'), + (157544, 'Nano Crystal (Demotivational Speech: Surge in the System)', 42451, 157533, + 'Demotivational Speech: Surge in the System', 39125, 157581, 157563, 157599, 126, 'Crystal', 'DeBuffs', + 'Demotivational_Speeches', 238, 'Max_Nano_DeBuffs', 0, 0, 0, 0, 0, 'Bureaucrat', 'Mission Reward'), + (157545, 'Nano Crystal (Demotivational Speech: Retreat to Glory)', 42451, 157524, + 'Demotivational Speech: Retreat to Glory', 39125, 157582, 157564, 157600, 182, 'Crystal', 'DeBuffs', + 'Demotivational_Speeches', 238, 'Max_Nano_DeBuffs', 0, 0, 0, 0, 0, 'Bureaucrat', 'Mission Reward'), + (157546, 'Nano Crystal (Demotivational Speech: That is not on the Agenda)', 12259, 157525, + 'Demotivational Speech: That is not on the Agenda', 39124, 157583, 157565, 157601, 100, 'Crystal', 'DeBuffs', + 'Demotivational_Speeches', 238, 'Nano_Resist_DeBuffs', 0, 0, 0, 0, 0, 'Bureaucrat', 'Mission Reward'), + (157547, 'Nano Crystal (Demotivational Speech: Mourner''s March)', 42451, 157527, + 'Demotivational Speech: Mourner''s March', 39124, 157584, 157566, 157602, 186, 'Crystal', 'DeBuffs', + 'Demotivational_Speeches', 238, 'Nano_Resist_DeBuffs', 0, 0, 0, 0, 0, 'Bureaucrat', 'Mission Reward'), + (157548, 'Nano Crystal (Demotivational Speech: Let''s Make a Committee)', 12226, 157535, + 'Demotivational Speech: Let''s Make a Committee', 39124, 157585, 157567, 157603, 44, 'Crystal', 'DeBuffs', + 'Demotivational_Speeches', 238, 'Nano_Resist_DeBuffs', 0, 0, 0, 0, 0, 'Bureaucrat', 'Mission Reward'), + (157549, 'Nano Crystal (Demotivational Speech: Fumble Fingers)', 12226, 157528, + 'Demotivational Speech: Fumble Fingers', 39041, 157586, 157568, 157604, 21, 'Crystal', 'DeBuffs', + 'Demotivational_Speeches', 238, 'Critical_DeBuffs', 0, 0, 0, 0, 0, 'Bureaucrat', 'Mission Reward'), + (157550, 'Nano Crystal (Demotivational Speech: Factory Recall)', 12226, 157531, + 'Demotivational Speech: Factory Recall', 39125, 157587, 157569, 157605, 34, 'Crystal', 'DeBuffs', + 'Demotivational_Speeches', 238, 'Max_Nano_DeBuffs', 0, 0, 0, 0, 0, 'Bureaucrat', 'Mission Reward'), + (157551, 'Nano Crystal (Demotivational Speech: Certainty of Defeat)', 42451, 157530, + 'Demotivational Speech: Certainty of Defeat', 39041, 157588, 157570, 157606, 179, 'Crystal', 'DeBuffs', + 'Demotivational_Speeches', 238, 'Critical_DeBuffs', 0, 0, 0, 0, 0, 'Bureaucrat', 'Mission Reward'), + (157552, 'Nano Crystal (Demotivational Speech: Administrative Error)', 12259, 157532, + 'Demotivational Speech: Administrative Error', 39125, 157589, 157571, 157607, 83, 'Crystal', 'DeBuffs', + 'Demotivational_Speeches', 238, 'Max_Nano_DeBuffs', 0, 0, 0, 0, 0, 'Bureaucrat', 'Mission Reward'), + (157553, 'Nano Crystal (Motivational Speech: Organizational Opportunities)', 295515, 157501, + 'Motivational Speech: Organizational Opportunities', 295517, 0, 0, 0, 97, 'Crystal', 'Buffs', + 'Motivational_SpeechEffect', 234, 'Resistance_Buffs', 0, 1, 0, 0, 0, 'Bureaucrat', 'Mission Reward'), + (160577, 'Nano Crystal (Mark of Peril)', 301587, 160574, 'Mark of Peril', 291164, 160625, 160626, 160627, 159, + 'Crystal', 'Buffs', 'Critical_Increase_Buffs', 182, 'Other', 0, 1, 0, 0, 0, 'Martial Artist', 'SL Loot'), + (160578, 'Nano Crystal (Mark of Danger)', 301587, 160575, 'Mark of Danger', 291164, 160622, 160623, 160624, 126, + 'Crystal', 'Buffs', 'Critical_Increase_Buffs', 182, 'Other', 0, 1, 0, 0, 0, 'Martial Artist', 'Mission Reward'), + (160579, 'Nano Crystal (Mark of Risk)', 301587, 160576, 'Mark of Risk', 291164, 160619, 160620, 160621, 57, + 'Crystal', 'Buffs', 'Critical_Increase_Buffs', 182, 'Other', 0, 1, 0, 0, 0, 'Martial Artist', 'SL Loot'), + (160704, 'Nano Crystal (Total Concentration)', 300564, 160701, 'Total Concentration', 300563, 160834, 160835, + 160836, 24, 'Crystal', 'Buffs', 'Concentration_Critical_Line', 240, '', 0, 0, 0, 0, 0, 'Agent', 'RK Store'), + (160711, 'Nano Crystal (Utter Concentration)', 300564, 160710, 'Utter Concentration', 300563, 160837, 160838, + 160839, 73, 'Crystal', 'Buffs', 'Concentration_Critical_Line', 240, '', 0, 0, 0, 0, 0, 'Agent', 'RK Dyna'), + (160713, 'Nano Crystal (Absolute Concentration)', 300564, 160712, 'Absolute Concentration', 300563, 160840, + 160841, 160842, 142, 'Crystal', 'Buffs', 'Concentration_Critical_Line', 240, '', 0, 0, 0, 0, 0, 'Agent', + 'RK Dyna'), + (160788, 'Nano Crystal (Sureshot)', 301587, 160787, 'Sureshot', 291164, 160843, 160844, 160845, 40, 'Crystal', + 'Buffs', 'Critical_Increase_Buffs', 182, '', 0, 0, 0, 0, 0, 'Agent', 'RK Store'), + (160790, 'Nano Crystal (Trueshot)', 301587, 160789, 'Trueshot', 291164, 160846, 160847, 160848, 76, 'Crystal', + 'Buffs', 'Critical_Increase_Buffs', 182, '', 0, 0, 0, 0, 0, 'Agent', 'RK Dyna'), + (160792, 'Nano Crystal (Enhanced Sureshot)', 301587, 160791, 'Enhanced Sureshot', 291164, 160849, 160850, 160851, + 126, 'Crystal', 'Buffs', 'Critical_Increase_Buffs', 182, '', 0, 0, 0, 0, 0, 'Agent', 'RK Dyna'), + (160794, 'Nano Crystal (Enhanced Trueshot)', 301587, 160793, 'Enhanced Trueshot', 291164, 160852, 160853, 160854, + 146, 'Crystal', 'Buffs', 'Critical_Increase_Buffs', 182, '', 0, 0, 0, 0, 0, 'Agent', 'RK Dyna'), + (160796, 'Nano Crystal (Steady Nerves)', 301578, 160795, 'Steady Nerves', 301579, 160855, 160856, 160857, 169, + 'Crystal', 'Buffs', 'Aimed_Shot_Buffs', 198, '', 0, 0, 0, 0, 0, 'Agent', 'RK Dyna'), + (160821, 'NanoCrystal (Training of The Executioner)', 12258, 160820, 'Training of The Executioner', 39028, + 160858, 160859, 160860, 53, 'Crystal', 'Buffs', 'Executioner_Buffs', 242, '', 0, 0, 0, 0, 0, 'Agent', + 'RK Store'), + (160823, 'NanoCrystal (Guidance of The Executioner)', 12258, 160822, 'Guidance of The Executioner', 39168, + 160861, 160862, 160863, 93, 'Crystal', 'Buffs', 'Executioner_Buffs', 242, '', 0, 0, 0, 0, 0, 'Agent', + 'RK Dyna'), + (160825, 'NanoCrystal (Steps of The Executioner)', 42450, 160824, 'Steps of The Executioner', 39308, 160864, + 160865, 160866, 132, 'Crystal', 'Buffs', 'Executioner_Buffs', 242, '', 0, 0, 0, 0, 0, 'Agent', 'RK Dyna'), + (160827, 'NanoCrystal (Path of The Executioner)', 42450, 160826, 'Path of The Executioner', 117954, 160867, + 160868, 160869, 149, 'Crystal', 'Buffs', 'Executioner_Buffs', 242, '', 0, 0, 0, 0, 0, 'Agent', 'RK Dyna'), + (160829, 'NanoCrystal (Form of The Executioner)', 42450, 160828, 'Form of The Executioner', 117896, 160870, + 160871, 160872, 179, 'Crystal', 'Buffs', 'Executioner_Buffs', 242, '', 0, 0, 0, 0, 0, 'Agent', 'RK Dyna'), + (160896, 'NanoCrystal (Cloak of Night)', 42451, 160895, 'Cloak of Night', 16214, 161386, 161387, 161388, 129, + 'Crystal', 'Buffs', 'Concealment_Buffs', 193, 'Team', 0, 0, 0, 0, 0, 'Agent', 'RK Dyna'), + (160898, 'NanoCrystal (Meld With Background)', 42451, 160897, 'Meld With Background', 16214, 161383, 161384, + 161385, 169, 'Crystal', 'Buffs', 'Concealment_Buffs', 193, 'Team', 0, 0, 0, 0, 0, 'Agent', 'RK Dyna'), + (160900, 'NanoCrystal (Shadow Filter)', 12226, 160899, 'Shadow Filter', 16214, 161389, 161390, 161391, 17, + 'Crystal', 'Buffs', 'Concealment_Buffs', 193, 'Team', 0, 0, 0, 0, 0, 'Agent', 'RK Store'), + (160910, 'NanoCrystal (Blanket of Shadows)', 12259, 160901, 'Blanket of Shadows', 16214, 161392, 161393, 161394, + 66, 'Crystal', 'Buffs', 'Concealment_Buffs', 193, 'Team', 0, 0, 0, 0, 0, 'Agent', 'RK Dyna'), + (160980, 'Nano Crystal (Hack Grid Data Stream)', 300949, 160979, 'Hack Grid Data Stream', 296799, 0, 0, 0, 1, + 'Crystal', 'Teleport', 'Fixer_Grid', 0, '', 0, 0, 0, 0, 0, 'Fixer', 'Fixer Grid Quest Part I'), + (160983, 'Nano Crystal (Hack Grid Data Stream (Team))', 300951, 160982, 'Hack Grid Data Stream (Team)', 300950, + 0, 0, 0, 1, 'Crystal', 'Teleport', 'Fixer_Grid', 0, '', 0, 0, 0, 0, 0, 'Fixer', 'Fixer Grid Quest Part II'), + (161091, 'NanoCrystal (Thorn of the Rose)', 42452, 161090, 'Thorn of the Rose', 39201, 161395, 161396, 161397, + 142, 'Crystal', 'Buffs', 'Damage_Shield_Upgrades', 243, '', 0, 0, 0, 0, 0, 'Adventurer', 'RK Dyna'), + (161093, 'NanoCrystal (Vengeance of Nature)', 42452, 161092, 'Vengeance of Nature', 39201, 161398, 161399, + 161400, 169, 'Crystal', 'Buffs', 'Damage_Shield_Upgrades', 243, '', 0, 0, 0, 0, 0, 'Adventurer', 'RK Dyna'), + (161095, 'NanoCrystal (Lure of the Pincushion)', 12260, 161094, 'Lure of the Pincushion', 39201, 161401, 161402, + 161403, 57, 'Crystal', 'Buffs', 'Damage_Shield_Upgrades', 243, '', 0, 0, 0, 0, 0, 'Adventurer', 'RK Store'), + (161097, 'NanoCrystal (Anger of the Porcupine)', 42452, 161096, 'Anger of the Porcupine', 39201, 161404, 161405, + 161406, 103, 'Crystal', 'Buffs', 'Damage_Shield_Upgrades', 243, '', 0, 0, 0, 0, 0, 'Adventurer', 'RK Dyna'), + (161146, 'NanoCrystal (Wind Slicer)', 12226, 161145, 'Wind Slicer', 39287, 161407, 161408, 161409, 47, 'Crystal', + 'Buffs', '1H_Edged_Buffs', 244, '', 0, 1, 0, 0, 0, 'Adventurer', 'RK Store'), + (161148, 'NanoCrystal (Bite of the Wind)', 42451, 161147, 'Bite of the Wind', 39287, 161410, 161411, 161412, 103, + 'Crystal', 'Buffs', '1H_Edged_Buffs', 244, '', 0, 1, 0, 0, 0, 'Adventurer', 'RK Dyna'), + (161150, 'NanoCrystal (Stormedge)', 42451, 161149, 'Stormedge', 39287, 161413, 161414, 161415, 142, 'Crystal', + 'Buffs', '1H_Edged_Buffs', 244, '', 0, 1, 0, 0, 0, 'Adventurer', 'RK Dyna'), + (161152, 'NanoCrystal (Division of the Winds)', 42451, 161151, 'Division of the Winds', 39287, 161416, 161417, + 161418, 169, 'Crystal', 'Buffs', '1H_Edged_Buffs', 244, '', 0, 1, 0, 0, 0, 'Adventurer', 'RK Dyna'), + (161154, 'NanoCrystal (Ballad of Smoke)', 12226, 161153, 'Ballad of Smoke', 39272, 161419, 161420, 161421, 47, + 'Crystal', 'Buffs', 'Pistol_Buffs', 199, '', 0, 1, 0, 0, 0, 'Adventurer', 'RK Store'), + (161156, 'NanoCrystal (Ballad of the Desperado)', 12259, 161155, 'Ballad of the Desperado', 39272, 161422, + 161423, 161424, 99, 'Crystal', 'Buffs', 'Pistol_Buffs', 199, '', 0, 1, 0, 0, 0, 'Adventurer', 'RK Dyna'), + (161158, 'NanoCrystal (Ballad of the Pistolero)', 42451, 161157, 'Ballad of the Pistolero', 39272, 161425, + 161426, 161427, 142, 'Crystal', 'Buffs', 'Pistol_Buffs', 199, '', 0, 1, 0, 0, 0, 'Adventurer', 'RK Dyna'), + (161160, 'NanoCrystal (Ballad of the Plains Wanderer)', 42451, 161159, 'Ballad of the Plains Wanderer', 39272, + 161428, 161429, 161430, 169, 'Crystal', 'Buffs', 'Pistol_Buffs', 199, '', 0, 1, 0, 0, 0, 'Adventurer', + 'RK Dyna'), + (161162, 'NanoCrystal (Strength of the Hummingbird)', 12226, 161161, 'Strength of the Hummingbird', 39247, + 161431, 161432, 161433, 40, 'Crystal', 'Buffs', 'Multiwield_Buffs', 245, '', 0, 1, 0, 0, 0, 'Adventurer', + 'RK Store'), + (161164, 'NanoCrystal (Fangs of the Snake)', 12259, 161163, 'Fangs of the Snake', 39247, 161434, 161435, 161436, + 93, 'Crystal', 'Buffs', 'Multiwield_Buffs', 245, '', 0, 1, 0, 0, 0, 'Adventurer', 'RK Dyna'), + (161166, 'NanoCrystal (Dichotomy of Nature)', 42451, 161165, 'Dichotomy of Nature', 39247, 161437, 161438, + 161439, 139, 'Crystal', 'Buffs', 'Multiwield_Buffs', 245, '', 0, 1, 0, 0, 0, 'Adventurer', 'RK Dyna'), + (161168, 'NanoCrystal (Dance of the Dervish)', 42451, 161167, 'Dance of the Dervish', 39247, 161440, 161441, + 161442, 165, 'Crystal', 'Buffs', 'Multiwield_Buffs', 245, '', 0, 1, 0, 0, 0, 'Adventurer', 'RK Dyna'), + (161498, 'NanoCrystal (Cyclic Arctic Gale)', 12260, 161497, 'Cyclic Arctic Gale', 39201, 0, 0, 0, 83, 'Crystal', + 'Buffs', 'Damage_Shields', 1, 'Self', 0, 0, 1, 1, 0, 'Adventurer', 'SL Mob'), + (161500, 'NanoCrystal (Cyclic Biting Blades)', 42452, 161499, 'Cyclic Biting Blades', 39201, 0, 0, 0, 126, + 'Crystal', 'Buffs', 'Damage_Shields', 1, 'Self', 0, 0, 1, 2, 0, 'Adventurer', 'SL Mob'), + (161502, 'NanoCrystal (Cyclic Cloak of Fire)', 12227, 161501, 'Cyclic Cloak of Fire', 39201, 0, 0, 0, 40, + 'Crystal', 'Buffs', 'Damage_Shields', 1, 'Self', 0, 0, 1, 0, 0, 'Adventurer', 'SL Mob'), + (161504, 'NanoCrystal (Cyclic Coat of Barbs)', 12227, 161503, 'Cyclic Coat of Barbs', 39201, 0, 0, 0, 1, + 'Crystal', 'Buffs', 'Damage_Shields', 1, 'Self', 0, 0, 0, 0, 0, 'Adventurer', 'RK Store'), + (161506, 'NanoCrystal (Cyclic Corrosive Barrier)', 42452, 161505, 'Cyclic Corrosive Barrier', 39201, 0, 0, 0, + 132, 'Crystal', 'Buffs', 'Damage_Shields', 1, 'Self', 0, 0, 1, 2, 0, 'Adventurer', 'SL Mob'), + (161516, 'NanoCrystal (Cyclic Enshroud with Barbs)', 12227, 161507, 'Cyclic Enshroud with Barbs', 39201, 0, 0, 0, + 24, 'Crystal', 'Buffs', 'Damage_Shields', 1, 'Self', 0, 0, 1, 0, 0, 'Adventurer', 'SL Mob'), + (161518, 'NanoCrystal (Cyclic Fiery Vengeance)', 42452, 161517, 'Cyclic Fiery Vengeance', 39201, 0, 0, 0, 136, + 'Crystal', 'Buffs', 'Damage_Shields', 1, 'Self', 0, 0, 1, 2, 0, 'Adventurer', 'SL Mob'), + (161520, 'NanoCrystal (Cyclic Fiery Wrap)', 12260, 161519, 'Cyclic Fiery Wrap', 39201, 0, 0, 0, 66, 'Crystal', + 'Buffs', 'Damage_Shields', 1, 'Self', 0, 0, 1, 1, 0, 'Adventurer', 'SL Mob'), + (161522, 'NanoCrystal (Cyclic Firefly''s Fury)', 12227, 161521, 'Cyclic Firefly''s Fury', 39201, 0, 0, 0, 30, + 'Crystal', 'Buffs', 'Damage_Shields', 1, 'Self', 0, 0, 1, 0, 0, 'Adventurer', 'SL Mob'), + (161532, 'NanoCrystal (Cyclic Frost With Snow)', 12227, 161523, 'Cyclic Frost With Snow', 39201, 0, 0, 0, 10, + 'Crystal', 'Buffs', 'Damage_Shields', 1, 'Self', 0, 0, 1, 0, 0, 'Adventurer', 'SL Mob'), + (161534, 'NanoCrystal (Cyclic Guard of the Grizzly)', 12260, 161533, 'Cyclic Guard of the Grizzly', 39201, 0, 0, + 0, 90, 'Crystal', 'Buffs', 'Damage_Shields', 1, 'Self', 0, 0, 1, 1, 0, 'Adventurer', 'SL Mob'), + (161536, 'NanoCrystal (Cyclic Interlocking Barbs)', 42452, 161535, 'Cyclic Interlocking Barbs', 39201, 0, 0, 0, + 142, 'Crystal', 'Buffs', 'Damage_Shields', 1, 'Self', 0, 0, 1, 3, 0, 'Adventurer', 'SL Mob'), + (161538, 'NanoCrystal (Cyclic Jacket of Blades)', 12227, 161537, 'Cyclic Jacket of Blades', 39201, 0, 0, 0, 17, + 'Crystal', 'Buffs', 'Damage_Shields', 1, 'Self', 0, 0, 1, 0, 0, 'Adventurer', 'SL Mob'), + (161548, 'NanoCrystal (Cyclic Lightning''s Child)', 42452, 161539, 'Cyclic Lightning''s Child', 39201, 0, 0, 0, + 152, 'Crystal', 'Buffs', 'Damage_Shields', 1, 'Self', 0, 0, 1, 3, 0, 'Adventurer', 'SL Mob'), + (161550, 'NanoCrystal (Cyclic Magma Coating)', 42452, 161549, 'Cyclic Magma Coating', 39201, 0, 0, 0, 109, + 'Crystal', 'Buffs', 'Damage_Shields', 1, 'Self', 0, 0, 1, 2, 0, 'Adventurer', 'SL Mob'), + (161552, 'NanoCrystal (Cyclic Nest of Vipers)', 12260, 161551, 'Cyclic Nest of Vipers', 39201, 0, 0, 0, 99, + 'Crystal', 'Buffs', 'Damage_Shields', 1, 'Self', 0, 0, 1, 2, 0, 'Adventurer', 'SL Mob'), + (161554, 'NanoCrystal (Cyclic Personal Blizzard)', 42452, 161553, 'Cyclic Personal Blizzard', 39201, 0, 0, 0, + 149, 'Crystal', 'Buffs', 'Damage_Shields', 1, 'Self', 0, 0, 1, 3, 0, 'Adventurer', 'SL Mob'), + (161564, 'NanoCrystal (Cyclic Porcupine Barrier)', 12260, 161555, 'Cyclic Porcupine Barrier', 39201, 0, 0, 0, 57, + 'Crystal', 'Buffs', 'Damage_Shields', 1, 'Self', 0, 0, 1, 1, 0, 'Adventurer', 'SL Mob'), + (161566, 'NanoCrystal (Cyclic Protection of the Storm)', 42452, 161565, 'Cyclic Protection of the Storm', 39201, + 0, 0, 0, 119, 'Crystal', 'Buffs', 'Damage_Shields', 1, 'Self', 0, 0, 1, 2, 0, 'Adventurer', 'SL Mob'), + (161568, 'NanoCrystal (Cyclic Razor Barrier)', 42452, 161567, 'Cyclic Razor Barrier', 39201, 0, 0, 0, 139, + 'Crystal', 'Buffs', 'Damage_Shields', 1, 'Self', 0, 0, 1, 2, 0, 'Adventurer', 'SL Mob'), + (161570, 'NanoCrystal (Cyclic Retaliatory Venom Spit)', 42452, 161569, 'Cyclic Retaliatory Venom Spit', 39201, 0, + 0, 0, 159, 'Crystal', 'Buffs', 'Damage_Shields', 1, 'Self', 0, 0, 1, 3, 0, 'Adventurer', 'SL Mob'), + (161588, 'NanoCrystal (Cyclic Retribution of the Aesir)', 42452, 161571, 'Cyclic Retribution of the Aesir', + 39201, 0, 0, 0, 169, 'Crystal', 'Buffs', 'Damage_Shields', 1, 'Self', 0, 0, 1, 3, 0, 'Adventurer', 'SL Mob'), + (161590, 'NanoCrystal (Cyclic Revenge of the Valkyrie)', 42452, 161589, 'Cyclic Revenge of the Valkyrie', 39201, + 0, 0, 0, 165, 'Crystal', 'Buffs', 'Damage_Shields', 1, 'Self', 0, 0, 1, 3, 0, 'Adventurer', 'SL Mob'), + (161592, 'NanoCrystal (Cyclic Skin of the Toad)', 12260, 161591, 'Cyclic Skin of the Toad', 39201, 0, 0, 0, 73, + 'Crystal', 'Buffs', 'Damage_Shields', 1, 'Self', 0, 0, 1, 1, 0, 'Adventurer', 'SL Mob'), + (161594, 'NanoCrystal (Cyclic Sparking Touch)', 12227, 161593, 'Cyclic Sparking Touch', 39201, 0, 0, 0, 47, + 'Crystal', 'Buffs', 'Damage_Shields', 1, 'Self', 0, 0, 1, 1, 0, 'Adventurer', 'SL Mob'), + (161596, 'NanoCrystal (Cyclic Wings of the Phoenix)', 42452, 161595, 'Cyclic Wings of the Phoenix', 39201, 0, 0, + 0, 162, 'Crystal', 'Buffs', 'Damage_Shields', 1, 'Self', 0, 0, 1, 3, 0, 'Adventurer', 'SL Mob'), + (161675, 'NanoCrystal (Leet Friend)', 12226, 161674, 'Leet Friend', 84203, 161882, 161883, 161884, 30, 'Crystal', + 'Crowd_Control', 'Leet_Charm', 0, '', 0, 0, 0, 0, 0, 'Adventurer', 'RK Store'), + (161677, 'NanoCrystal (Eleet Friend)', 12259, 161676, 'Eleet Friend', 84203, 161885, 161886, 161887, 60, + 'Crystal', 'Crowd_Control', 'Leet_Charm', 0, '', 0, 0, 0, 0, 0, 'Adventurer', 'RK Dyna'), + (161679, 'NanoCrystal (Leetas Friend)', 42451, 161678, 'Leetas Friend', 84203, 161888, 161889, 161890, 106, + 'Crystal', 'Crowd_Control', 'Leet_Charm', 0, '', 0, 0, 0, 0, 0, 'Adventurer', 'RK Dyna'), + (161681, 'NanoCrystal (Soleet Friend)', 42451, 161680, 'Soleet Friend', 84203, 161891, 161892, 161893, 152, + 'Crystal', 'Crowd_Control', 'Leet_Charm', 0, '', 0, 0, 0, 0, 0, 'Adventurer', 'RK Dyna'), + (161691, 'Nano Crystal (Practice Incineration)', 300938, 161690, 'Practice Incineration', 300937, 161894, 161895, + 161896, 172, 'Crystal', 'Crowd_Control', 'Taunt', 1037, '', 0, 1, 0, 0, 0, 'Adventurer', 'RK Dyna'), + (161693, 'Nano Crystal (Corrosive Cloud)', 300940, 161692, 'Corrosive Cloud', 300941, 161897, 161898, 161899, + 179, 'Crystal', 'Crowd_Control', 'AOE_Taunt_DOT', 1038, '', 0, 0, 0, 0, 0, 'Adventurer', 'RK Dyna'), + (161921, 'Nano Crystal (Scale Reconstruction)', 300928, 161920, 'Scale Reconstruction', 300924, 161932, 161933, + 161934, 149, 'Crystal', 'Combat', 'Morph_Heal', 248, '', 0, 1, 0, 0, 0, 'Adventurer', 'RK Dyna'), + (162118, 'Nano Crystal (Maek Ouch!)', 300910, 162117, 'Maek Ouch!', 300909, 162126, 162127, 162128, 66, + 'Crystal', 'Buffs', 'Adventurer_Morph_Buffs', 251, '', 0, 1, 0, 0, 0, 'Adventurer', 'RK Store'), + (162120, 'Nano Crystal (Maek Painz!)', 300910, 162119, 'Maek Painz!', 300909, 162129, 162130, 162131, 126, + 'Crystal', 'Buffs', 'Adventurer_Morph_Buffs', 251, '', 0, 1, 0, 0, 0, 'Adventurer', 'RK Dyna'), + (162122, 'Nano Crystal (Maek 0wz!', 300910, 162121, 'Maek 0wz!', 300909, 162132, 162133, 162134, 152, 'Crystal', + 'Buffs', 'Adventurer_Morph_Buffs', 251, '', 0, 1, 0, 0, 0, 'Adventurer', 'RK Dyna'), + (162255, 'Nano Crystal (Hide of the Puppy)', 300908, 162254, 'Hide of the Puppy', 300907, 162323, 162324, 162325, + 53, 'Crystal', 'Buffs', 'Adventurer_Morph_Buffs', 251, '', 0, 1, 0, 0, 0, 'Adventurer', 'RK Store'), + (162257, 'Nano Crystal (Hide of the Dog)', 300908, 162256, 'Hide of the Dog', 300907, 162326, 162327, 162328, + 103, 'Crystal', 'Buffs', 'Adventurer_Morph_Buffs', 251, '', 0, 1, 0, 0, 0, 'Adventurer', 'RK Dyna'), + (162259, 'Nano Crystal (Hide of the Fox)', 300908, 162258, 'Hide of the Fox', 300907, 162329, 162330, 162331, + 139, 'Crystal', 'Buffs', 'Adventurer_Morph_Buffs', 251, '', 0, 0, 0, 0, 0, 'Adventurer', 'RK Dyna'), + (162261, 'Nano Crystal (Hide of the Wolf)', 300908, 162260, 'Hide of the Wolf', 300907, 162332, 162333, 162334, + 162, 'Crystal', 'Buffs', 'Adventurer_Morph_Buffs', 251, '', 0, 0, 0, 0, 0, 'Adventurer', 'RK Dyna'), + (162314, 'Nano Crystal (Sharpen Claws)', 300921, 162313, 'Sharpen Claws', 300922, 162335, 162336, 162337, 80, + 'Crystal', 'Buffs', 'Adventurer_Morph_Buffs', 251, '', 0, 1, 0, 0, 0, 'Adventurer', 'RK Store'), + (162316, 'Nano Crystal (Toothy Grin)', 300921, 162315, 'Toothy Grin', 300922, 162338, 162339, 162340, 116, + 'Crystal', 'Buffs', 'Adventurer_Morph_Buffs', 251, '', 0, 1, 0, 0, 0, 'Adventurer', 'RK Dyna'), + (162318, 'Nano Crystal (Feline Rage)', 300921, 162317, 'Feline Rage', 300922, 162341, 162342, 162343, 146, + 'Crystal', 'Buffs', 'Adventurer_Morph_Buffs', 251, '', 0, 1, 0, 0, 0, 'Adventurer', 'RK Dyna'), + (162320, 'Nano Crystal (Blur of Claws)', 300921, 162319, 'Blur of Claws', 300922, 162344, 162345, 162346, 159, + 'Crystal', 'Buffs', 'Adventurer_Morph_Buffs', 251, '', 0, 1, 0, 0, 0, 'Adventurer', 'RK Dyna'), + (162322, 'NanoCrystal (Frenzy of Fur)', 300921, 162321, 'Frenzy of Fur', 300922, 162347, 162348, 162349, 179, + 'Crystal', 'Buffs', 'Adventurer_Morph_Buffs', 251, '', 0, 1, 0, 0, 0, 'Adventurer', 'RK Dyna'), + (162485, 'NanoCrystal (Suppressor)', 12226, 162484, 'Suppressor', 39257, 162498, 162499, 162500, 33, 'Crystal', + 'Buffs', 'Fixer_Suppressor_Buffs', 253, '', 0, 0, 0, 0, 0, 'Fixer', 'RK Store'), + (162487, 'NanoCrystal (Major Suppressor)', 12259, 162486, 'Major Suppressor', 39257, 162501, 162502, 162503, 73, + 'Crystal', 'Buffs', 'Fixer_Suppressor_Buffs', 253, '', 0, 0, 0, 0, 0, 'Fixer', 'RK Dyna'), + (162489, 'NanoCrystal (Supreme Suppressor)', 42451, 162488, 'Supreme Suppressor', 39257, 162504, 162505, 162506, + 106, 'Crystal', 'Buffs', 'Fixer_Suppressor_Buffs', 253, '', 0, 0, 0, 0, 0, 'Fixer', 'RK Dyna'), + (162491, 'NanoCrystal (Spray With Lead)', 42451, 162490, 'Spray With Lead', 39257, 162507, 162508, 162509, 136, + 'Crystal', 'Buffs', 'Fixer_Suppressor_Buffs', 253, '', 0, 0, 0, 0, 0, 'Fixer', 'RK Dyna'), + (162493, 'NanoCrystal (Shower With Lead)', 42451, 162492, 'Shower With Lead', 39257, 162510, 162511, 162512, 156, + 'Crystal', 'Buffs', 'Fixer_Suppressor_Buffs', 253, '', 0, 0, 0, 0, 0, 'Fixer', 'RK Dyna'), + (162495, 'NanoCrystal (Frenzy of Shells)', 42451, 162494, 'Frenzy of Shells', 39257, 162513, 162514, 162515, 169, + 'Crystal', 'Buffs', 'Fixer_Suppressor_Buffs', 253, '', 0, 0, 0, 0, 0, 'Fixer', 'RK Dyna'), + (162497, 'NanoCrystal (Lesser Suppressor)', 12226, 162496, 'Lesser Suppressor', 39257, 162516, 162517, 162518, + 14, 'Crystal', 'Buffs', 'Fixer_Suppressor_Buffs', 253, '', 0, 0, 0, 0, 0, 'Fixer', 'RK Store'), + (162590, 'NanoCrystal (Grid Phase Accelerator (Team))', 42450, 162589, 'Grid Phase Accelerator (Team)', 118012, + 162605, 162606, 162607, 132, 'Crystal', 'Buffs', 'Runspeed_Buffs', 150, '', 0, 0, 0, 0, 0, 'Fixer', 'RK Dyna'), + (162592, 'NanoCrystal (Grid Runner (Team))', 12225, 162591, 'Grid Runner (Team)', 118009, 162608, 162609, 162610, + 40, 'Crystal', 'Buffs', 'Runspeed_Buffs', 150, '', 0, 0, 0, 0, 0, 'Fixer', 'RK Dyna'), + (162594, 'NanoCrystal (Grid Surfer (Team))', 12258, 162593, 'Grid Surfer (Team)', 118010, 162611, 162612, 162613, + 76, 'Crystal', 'Buffs', 'Runspeed_Buffs', 150, '', 0, 0, 0, 0, 0, 'Fixer', 'RK Dyna'), + (162596, 'NanoCrystal (Gridspace Freedom (Team))', 42450, 162595, 'Gridspace Freedom (Team)', 118013, 162614, + 162615, 162616, 156, 'Crystal', 'Buffs', 'Runspeed_Buffs', 150, '', 0, 0, 0, 0, 0, 'Fixer', 'RK Dyna'), + (162598, 'NanoCrystal (Hack Grid Vector (Team))', 12225, 162597, 'Hack Grid Vector (Team)', 118410, 162617, + 162618, 162619, 27, 'Crystal', 'Buffs', 'Runspeed_Buffs', 150, '', 0, 0, 0, 0, 0, 'Fixer', 'RK Store'), + (162600, 'NanoCrystal (Leech Grid Vector (Team))', 12258, 162599, 'Leech Grid Vector (Team)', 118009, 162620, + 162621, 162622, 57, 'Crystal', 'Buffs', 'Runspeed_Buffs', 150, '', 0, 0, 0, 0, 0, 'Fixer', 'RK Dyna'), + (162602, 'NanoCrystal (Limited Grid Jump (Team))', 12225, 162601, 'Limited Grid Jump (Team)', 118410, 162623, + 162624, 162625, 14, 'Crystal', 'Buffs', 'Runspeed_Buffs', 150, '', 0, 0, 0, 0, 0, 'Fixer', 'RK Store'), + (162604, 'NanoCrystal (Partial Grid Jump (Team))', 42450, 162603, 'Partial Grid Jump (Team)', 118011, 162626, + 162627, 162628, 106, 'Crystal', 'Buffs', 'Runspeed_Buffs', 150, '', 0, 0, 0, 0, 0, 'Fixer', 'RK Dyna'), + (162715, 'NanoCrystal (Relieving Salve)', 12228, 162714, 'Relieving Salve', 44229, 162736, 162737, 162738, 7, + 'Crystal', 'Buffs', 'Fixer_Long_Heal_Over_Time', 255, '', 0, 0, 0, 0, 0, 'Fixer', 'RK Store'), + (162717, 'NanoCrystal (Rebinding Sutures)', 12228, 162716, 'Rebinding Sutures', 44229, 162739, 162740, 162741, + 24, 'Crystal', 'Buffs', 'Fixer_Long_Heal_Over_Time', 255, '', 0, 0, 0, 0, 0, 'Fixer', 'RK Store'), + (162719, 'NanoCrystal (Hacked Diagnosis)', 12228, 162718, 'Hacked Diagnosis', 44230, 162742, 162743, 162744, 37, + 'Crystal', 'Buffs', 'Fixer_Long_Heal_Over_Time', 255, '', 0, 0, 0, 0, 0, 'Fixer', 'RK Store'), + (162721, 'NanoCrystal (Kitchen-sink Surgery)', 12256, 162720, 'Kitchen-sink Surgery', 44230, 162745, 162746, + 162747, 53, 'Crystal', 'Buffs', 'Fixer_Long_Heal_Over_Time', 255, '', 0, 0, 0, 0, 0, 'Fixer', 'RK Dyna'), + (162723, 'NanoCrystal (Blackmarket Prescription)', 12256, 162722, 'Blackmarket Prescription', 44231, 162748, + 162749, 162750, 70, 'Crystal', 'Buffs', 'Fixer_Long_Heal_Over_Time', 255, '', 0, 0, 0, 0, 0, 'Fixer', + 'RK Dyna'), + (162725, 'NanoCrystal (Biosign Rejuvenator)', 12256, 162724, 'Biosign Rejuvenator', 44231, 162751, 162752, + 162753, 93, 'Crystal', 'Buffs', 'Fixer_Long_Heal_Over_Time', 255, '', 0, 0, 0, 0, 0, 'Fixer', 'RK Dyna'), + (162727, 'NanoCrystal (Nano Cauterization)', 42448, 162726, 'Nano Cauterization', 44232, 162754, 162755, 162756, + 109, 'Crystal', 'Buffs', 'Fixer_Long_Heal_Over_Time', 255, '', 0, 0, 0, 0, 0, 'Fixer', 'RK Dyna'), + (162729, 'NanoCrystal (Systolic Equalizer)', 42448, 162728, 'Systolic Equalizer', 44232, 162757, 162758, 162759, + 123, 'Crystal', 'Buffs', 'Fixer_Long_Heal_Over_Time', 255, '', 0, 0, 0, 0, 0, 'Fixer', 'RK Dyna'), + (162731, 'NanoCrystal (Backyard Revitalization)', 42448, 162730, 'Backyard Revitalization', 44233, 162760, + 162761, 162762, 132, 'Crystal', 'Buffs', 'Fixer_Long_Heal_Over_Time', 255, '', 0, 0, 0, 0, 0, 'Fixer', + 'RK Dyna'), + (162733, 'NanoCrystal (Cellular Crashcart)', 42448, 162732, 'Cellular Crashcart', 44234, 162763, 162764, 162765, + 146, 'Crystal', 'Buffs', 'Fixer_Long_Heal_Over_Time', 255, '', 0, 0, 0, 0, 0, 'Fixer', 'RK Dyna'), + (162735, 'NanoCrystal (Dr Hack ''n Quack)', 42448, 162734, 'Dr Hack ''n Quack', 44235, 162766, 162767, 162768, + 152, 'Crystal', 'Buffs', 'Fixer_Long_Heal_Over_Time', 255, '', 0, 0, 0, 0, 0, 'Fixer', 'RK Dyna'), + (162838, 'NanoCrystal (Presence of the Master)', 12226, 162837, 'Presence of the Master', 38864, 163120, 163121, + 163122, 43, 'Crystal', 'Crowd_Control', 'Fear', 256, '', 0, 0, 0, 0, 0, 'Martial Artist', 'RK Dyna'), + (162840, 'NanoCrystal (Presence of the Overlord)', 42451, 162839, 'Presence of the Overlord', 38864, 163123, + 163124, 163125, 113, 'Crystal', 'Crowd_Control', 'Fear', 256, '', 0, 0, 0, 0, 0, 'Martial Artist', 'RK Dyna'), + (162842, 'NanoCrystal (Presence of the Dominator)', 42451, 162841, 'Presence of the Dominator', 38864, 163126, + 163127, 163128, 152, 'Crystal', 'Crowd_Control', 'Fear', 256, '', 0, 0, 0, 0, 0, 'Martial Artist', 'RK Dyna'), + (162996, 'NanoCrystal (NCU Compressor)', 12225, 162995, 'NCU Compressor', 38917, 163098, 163099, 163100, 20, + 'Crystal', 'Buffs', 'Fixer_NCU_Buffs', 257, '', 0, 1, 0, 0, 0, 'Fixer', 'RK Store'), + (163080, 'NanoCrystal (Retool NCU)', 12225, 163079, 'Retool NCU', 38917, 163101, 163102, 163103, 40, 'Crystal', + 'Buffs', 'Fixer_NCU_Buffs', 257, '', 0, 1, 0, 0, 0, 'Fixer', 'RK Store'), + (163082, 'NanoCrystal (Jury-rigged NCU Analyzer)', 12258, 163081, 'Jury-rigged NCU Analyzer', 38917, 163104, + 163105, 163106, 63, 'Crystal', 'Buffs', 'Fixer_NCU_Buffs', 257, '', 0, 1, 0, 0, 0, 'Fixer', 'RK Dyna'), + (163084, 'NanoCrystal (Deck Recoder)', 12258, 163083, 'Deck Recoder', 38917, 163107, 163108, 163109, 93, + 'Crystal', 'Buffs', 'Fixer_NCU_Buffs', 257, '', 0, 1, 0, 0, 0, 'Fixer', 'RK Dyna'), + (163086, 'NanoCrystal (Recompiling Memory Analyzer)', 42450, 163085, 'Recompiling Memory Analyzer', 38917, + 163110, 163111, 163112, 123, 'Crystal', 'Buffs', 'Fixer_NCU_Buffs', 257, '', 0, 0, 0, 0, 0, 'Fixer', 'RK Dyna'), + (163088, 'NanoCrystal (QuarkStor NCU Core)', 42450, 163087, 'QuarkStor NCU Core', 38917, 163113, 163114, 163115, + 132, 'Crystal', 'Buffs', 'Fixer_NCU_Buffs', 257, '', 0, 0, 0, 0, 0, 'Fixer', 'RK Dyna'), + (163096, 'NanoCrystal (Sentient Viral Recoder)', 42450, 163095, 'Sentient Viral Recoder', 38917, 163116, 163117, + 163118, 162, 'Crystal', 'Buffs', 'Fixer_NCU_Buffs', 257, '', 0, 0, 0, 0, 0, 'Fixer', 'RK Dyna'), + (163097, 'NanoCrystal (Active Viral Compressor)', 42450, 163094, 'Active Viral Compressor', 38917, 163130, + 163131, 163132, 149, 'Crystal', 'Buffs', 'Fixer_NCU_Buffs', 257, '', 0, 0, 0, 0, 0, 'Fixer', 'RK Dyna'), + (163389, 'Nano Crystal (Pr0n0unc3m3nt 0f L4z1n3ss)', 301156, 163388, 'Pr0n0unc3m3nt 0f L4z1n3ss', 297374, 163401, + 163402, 163403, 24, 'Crystal', 'Crowd_Control', 'Mezz', 147, '', 0, 0, 0, 0, 0, 'Adventurer', 'RK Store'), + (163395, 'Nano Crystal (Pr0n0unc3m3nt 0f Dr0ws1n3ss)', 301156, 163394, 'Pr0n0unc3m3nt 0f Dr0ws1n3ss', 297374, + 163410, 163411, 163412, 139, 'Crystal', 'Crowd_Control', 'Mezz', 147, '', 0, 0, 0, 0, 0, 'Adventurer', + 'RK Dyna'), + (163397, 'Nano Crystal (Pr0n0unc3m3nt 0f Sl33p1n3ss)', 301156, 163396, 'Pr0n0unc3m3nt 0f Sl33p1n3ss', 297374, + 163413, 163414, 163415, 172, 'Crystal', 'Crowd_Control', 'Mezz', 147, '', 0, 0, 0, 0, 0, 'Adventurer', + 'RK Dyna'), + (201522, 'NanoCrystal (Enfraam''s Toolkit)', 12259, 201521, 'Enfraam''s Toolkit', 39263, 205162, 205163, 205164, + 80, 'Crystal', 'Buffs', 'Nano_Programming_Buffs', 210, '', 0, 0, 0, 0, 0, 'Nano-Technician', 'RK Dyna'), + (201524, 'NanoCrystal (Living Codex of Izgimmer)', 42451, 201523, 'Living Codex of Izgimmer', 39263, 205165, + 205166, 205167, 166, 'Crystal', 'Buffs', 'Nano_Programming_Buffs', 210, '', 0, 0, 0, 0, 0, 'Nano-Technician', + 'RK Dyna'), + (201934, 'NanoCrystal (Corruption of The Pest)', 42449, 201933, 'Corruption of The Pest', 45169, 0, 0, 0, 190, + 'Crystal', 'Nukes', 'Long_8s~1s', 0, '', 0, 0, 0, 0, 0, 'Nano-Technician', 'The Pest'), + (201936, 'NanoCrystal (Resonance Blast)', 42449, 201935, 'Resonance Blast', 45190, 0, 0, 0, 200, 'Crystal', + 'Nukes', 'Long_8s~1s', 0, '', 0, 0, 0, 0, 0, 'Nano-Technician', 'Special Agent Lamb'), + (201938, 'NanoCrystal (Lick of the Pest)', 42452, 201937, 'Lick of the Pest', 84514, 0, 0, 0, 193, 'Crystal', + 'Combat', 'General_Chemical_AC_Debuff', 0, '', 0, 0, 0, 0, 0, 'Nano-Technician', 'The Pest'), + (202261, 'NanoCrystal (Shield of the Obedient Servant)', 42452, 202260, 'Shield of the Obedient Servant', 20880, + 0, 0, 0, 192, 'Crystal', 'Pet_Buffs', 'Shield_of_the_Obedient_Servant', 831, '', 0, 0, 0, 0, 0, 'Engineer', + 'Obediency Enforcer'), + (202263, 'NanoCrystal (Candycane)', 42449, 202262, 'Candycane', 45172, 0, 0, 0, 195, 'Crystal', 'Nukes', + 'Long_8s~1s', 0, '', 0, 0, 0, 0, 0, 'Nano-Technician', 'Ljotur the Lunatic'), + (202724, 'NanoCrystal (Edge of Steel)', 12226, 202776, 'Edge of Steel', 16325, 0, 0, 0, 8, 'Crystal', 'Buffs', + 'Melee_Weapon_Buffs_Line', 180, '1H_Edged_Buffs', 0, 0, 0, 0, 0, 'Enforcer', 'RK Store'), + (202740, 'NanoCrystal (Edge of the Barber)', 12226, 202739, 'Edge of the Barber', 16325, 0, 0, 0, 30, 'Crystal', + 'Buffs', 'Melee_Weapon_Buffs_Line', 180, '1H_Edged_Buffs', 0, 0, 0, 0, 0, 'Enforcer', 'RK Store'), + (202775, 'NanoCrystal (Edge of the Buccaneer)', 12259, 202774, 'Edge of the Buccaneer', 16325, 202777, 202778, + 202779, 59, 'Crystal', 'Buffs', 'Melee_Weapon_Buffs_Line', 180, '1H_Edged_Buffs', 0, 0, 0, 0, 0, 'Enforcer', + 'RK Store'), + (202792, 'NanoCrystal (Edge of Molybdenum)', 12259, 202791, 'Edge of Molybdenum', 16325, 202798, 202799, 202800, + 89, 'Crystal', 'Buffs', 'Melee_Weapon_Buffs_Line', 180, '1H_Edged_Buffs', 0, 0, 0, 0, 0, 'Enforcer', 'RK Dyna'), + (202794, 'NanoCrystal (Edge of Titanium)', 42451, 202793, 'Edge of Titanium', 16325, 202795, 202796, 202797, 133, + 'Crystal', 'Buffs', 'Melee_Weapon_Buffs_Line', 180, '1H_Edged_Buffs', 0, 0, 0, 0, 0, 'Enforcer', 'RK Dyna'), + (202817, 'NanoCrystal (Edge of Diamond)', 42451, 202816, 'Edge of Diamond', 16325, 202823, 202824, 202825, 173, + 'Crystal', 'Buffs', 'Melee_Weapon_Buffs_Line', 180, '1H_Edged_Buffs', 0, 0, 0, 0, 0, 'Enforcer', 'RK Dyna'), + (202819, 'NanoCrystal (Rampage of the Berserker)', 42451, 202818, 'Rampage of the Berserker', 16325, 202820, + 202821, 202822, 197, 'Crystal', 'Buffs', 'Melee_Weapon_Buffs_Line', 180, '1H_Edged_Buffs', 0, 0, 0, 0, 0, + 'Enforcer', 'RK Dyna'), + (202827, 'NanoCrystal (Skill of the Butcher)', 12226, 202826, 'Skill of the Butcher', 16325, 0, 0, 0, 8, + 'Crystal', 'Buffs', 'Melee_Weapon_Buffs_Line', 180, '2H_Edged_Buffs', 0, 0, 0, 0, 0, 'Enforcer', 'RK Store'), + (202829, 'NanoCrystal (Skill of the Savage)', 12226, 202828, 'Skill of the Savage', 16325, 0, 0, 0, 30, + 'Crystal', 'Buffs', 'Melee_Weapon_Buffs_Line', 180, '2H_Edged_Buffs', 0, 0, 0, 0, 0, 'Enforcer', 'RK Store'), + (202831, 'NanoCrystal (Skill of the Viking)', 12259, 202830, 'Skill of the Viking', 16325, 0, 0, 0, 59, + 'Crystal', 'Buffs', 'Melee_Weapon_Buffs_Line', 180, '2H_Edged_Buffs', 0, 0, 0, 0, 0, 'Enforcer', 'RK Store'), + (202833, 'NanoCrystal (Skill of the Highlander)', 12259, 202832, 'Skill of the Highlander', 16325, 202872, + 202873, 202874, 89, 'Crystal', 'Buffs', 'Melee_Weapon_Buffs_Line', 180, '2H_Edged_Buffs', 0, 0, 0, 0, 0, + 'Enforcer', 'RK Dyna'), + (202835, 'NanoCrystal (Skill of the Guardian)', 42451, 202834, 'Skill of the Guardian', 16288, 202875, 202876, + 202877, 133, 'Crystal', 'Buffs', 'Melee_Weapon_Buffs_Line', 180, '2H_Edged_Buffs', 0, 0, 0, 0, 0, 'Enforcer', + 'RK Dyna'), + (202837, 'NanoCrystal (Skill of the Reaper)', 42451, 202836, 'Skill of the Reaper', 16288, 202878, 202879, + 202880, 173, 'Crystal', 'Buffs', 'Melee_Weapon_Buffs_Line', 180, '2H_Edged_Buffs', 0, 0, 0, 0, 0, 'Enforcer', + 'RK Dyna'), + (202839, 'NanoCrystal (Skill of the Guillotine)', 42451, 202838, 'Skill of the Guillotine', 16288, 202881, + 202882, 202883, 197, 'Crystal', 'Buffs', 'Melee_Weapon_Buffs_Line', 180, '2H_Edged_Buffs', 0, 0, 0, 0, 0, + 'Enforcer', 'RK Dyna'), + (202841, 'NanoCrystal (Thugs Joy)', 12259, 202840, 'Thugs Joy', 16200, 0, 0, 0, 59, 'Crystal', 'Buffs', + 'Melee_Weapon_Buffs_Line', 180, '1H_Blunt_Buffs', 0, 0, 0, 0, 0, 'Enforcer', 'RK Store'), + (202843, 'NanoCrystal (Thugs Glory)', 42451, 202842, 'Thugs Glory', 16200, 202884, 202885, 202886, 133, + 'Crystal', 'Buffs', 'Melee_Weapon_Buffs_Line', 180, '1H_Blunt_Buffs', 0, 0, 0, 0, 0, 'Enforcer', 'RK Dyna'), + (202845, 'NanoCrystal (Thugs Jubilation)', 42451, 202844, 'Thugs Jubilation', 16200, 202887, 202888, 202889, 173, + 'Crystal', 'Buffs', 'Melee_Weapon_Buffs_Line', 180, '1H_Blunt_Buffs', 0, 0, 0, 0, 0, 'Enforcer', 'RK Dyna'), + (202847, 'NanoCrystal (Calling of Thor)', 42451, 202846, 'Calling of Thor', 16200, 202890, 202891, 202892, 197, + 'Crystal', 'Buffs', 'Melee_Weapon_Buffs_Line', 180, '1H_Blunt_Buffs', 0, 0, 0, 0, 0, 'Enforcer', 'RK Dyna'), + (202849, 'NanoCrystal (Threat of the Bully)', 12226, 202848, 'Threat of the Bully', 20879, 0, 0, 0, 8, 'Crystal', + 'Buffs', 'Melee_Weapon_Buffs_Line', 180, '2H_Blunt_Buffs', 0, 0, 0, 0, 0, 'Enforcer', 'No longer drops'), + (202851, 'NanoCrystal (Bone Crusher)', 12259, 202850, 'Bone Crusher', 20879, 0, 0, 0, 59, 'Crystal', 'Buffs', + 'Melee_Weapon_Buffs_Line', 180, '2H_Blunt_Buffs', 0, 0, 0, 0, 0, 'Enforcer', 'RK Store'), + (202853, 'NanoCrystal (Anvils Bane)', 42451, 202852, 'Anvils Bane', 20879, 202893, 202894, 202895, 133, + 'Crystal', 'Buffs', 'Melee_Weapon_Buffs_Line', 180, '2H_Blunt_Buffs', 0, 0, 0, 0, 0, 'Enforcer', 'RK Dyna'), + (202855, 'NanoCrystal (Wrecking Ball)', 42451, 202854, 'Wrecking Ball', 20879, 202896, 202897, 202898, 173, + 'Crystal', 'Buffs', 'Melee_Weapon_Buffs_Line', 180, '2H_Blunt_Buffs', 0, 0, 0, 0, 0, 'Enforcer', 'RK Dyna'), + (202857, 'NanoCrystal (Rampage of Juggernaut)', 42451, 202856, 'Rampage of Juggernaut', 20879, 202899, 202900, + 202901, 197, 'Crystal', 'Buffs', 'Melee_Weapon_Buffs_Line', 180, '2H_Blunt_Buffs', 0, 0, 0, 0, 0, 'Enforcer', + 'RK Dyna'), + (202859, 'NanoCrystal (Vlad''s Revenge)', 42451, 202858, 'Vlad''s Revenge', 16201, 202902, 202903, 202904, 197, + 'Crystal', 'Buffs', 'Enforcer_Piercing_Buffs', 278, '', 0, 0, 0, 0, 0, 'Enforcer', 'RK Dyna'), + (202861, 'NanoCrystal (Talon of the Dragon)', 42451, 202860, 'Talon of the Dragon', 16201, 202905, 202906, + 202907, 174, 'Crystal', 'Buffs', 'Enforcer_Piercing_Buffs', 278, '', 0, 0, 0, 0, 0, 'Enforcer', 'RK Dyna'), + (202863, 'NanoCrystal (Talon of the Roc)', 42451, 202862, 'Talon of the Roc', 16201, 202908, 202909, 202910, 129, + 'Crystal', 'Buffs', 'Enforcer_Piercing_Buffs', 278, '', 0, 0, 0, 0, 0, 'Enforcer', 'RK Dyna'), + (202865, 'NanoCrystal (Talon of the Anun)', 12259, 202864, 'Talon of the Anun', 16201, 202911, 202912, 202913, + 93, 'Crystal', 'Buffs', 'Enforcer_Piercing_Buffs', 278, '', 0, 0, 0, 0, 0, 'Enforcer', 'RK Dyna'), + (202867, 'NanoCrystal (Talon of the Gryphon)', 12259, 202866, 'Talon of the Gryphon', 16201, 0, 0, 0, 56, + 'Crystal', 'Buffs', 'Enforcer_Piercing_Buffs', 278, '', 0, 0, 0, 0, 0, 'Enforcer', 'RK Store'), + (202869, 'NanoCrystal (Talon of the Eagle)', 12226, 202868, 'Talon of the Eagle', 16201, 0, 0, 0, 35, 'Crystal', + 'Buffs', 'Enforcer_Piercing_Buffs', 278, '', 0, 0, 0, 0, 0, 'Enforcer', 'RK Store'), + (202871, 'NanoCrystal (Talon of the Hawk)', 12226, 202870, 'Talon of the Hawk', 16201, 0, 0, 0, 10, 'Crystal', + 'Buffs', 'Enforcer_Piercing_Buffs', 278, '', 0, 0, 0, 0, 0, 'Enforcer', 'RK Store'), + (203120, 'NanoCrystal (Art of peace)', 42451, 203119, 'Art of Peace', 16195, 0, 0, 0, 161, 'Crystal', 'Buffs', + 'Assault_Rifle_Buffs', 212, '', 0, 0, 0, 0, 0, 'Soldier', 'RK Dyna'), + (203122, 'NanoCrystal (A Sergeant''s Knowledge)', 12226, 203121, 'A Sergeant''s Knowledge', 16195, 0, 0, 0, 30, + 'Crystal', 'Buffs', 'Assault_Rifle_Buffs', 212, '', 0, 0, 0, 0, 0, 'Soldier', 'RK Store'), + (203124, 'NanoCrystal (Alleysweeper)', 12226, 203123, 'Alleysweeper', 16326, 0, 0, 0, 36, 'Crystal', 'Buffs', + 'Soldier_Shotgun_Buffs', 280, '', 0, 0, 0, 0, 0, 'Soldier', 'RK Store'), + (203126, 'NanoCrystal (Crowd Disperser)', 12259, 203125, 'Crowd Disperser', 16326, 203165, 203166, 203167, 68, + 'Crystal', 'Buffs', 'Soldier_Shotgun_Buffs', 280, '', 0, 0, 0, 0, 0, 'Soldier', 'RK Dyna'), + (203128, 'NanoCrystal (Swiss Cheese)', 42451, 203127, 'Swiss Cheese', 16326, 203168, 203169, 203170, 178, + 'Crystal', 'Buffs', 'Soldier_Shotgun_Buffs', 280, '', 0, 0, 0, 0, 0, 'Soldier', 'RK Dyna'), + (203130, 'NanoCrystal (The Power of Three)', 12259, 203129, 'The Power of Three', 16206, 203171, 203172, 203173, + 88, 'Crystal', 'Buffs', 'Burst_Buffs', 214, '', 0, 0, 0, 0, 0, 'Soldier', 'RK Dyna'), + (203132, 'NanoCrystal (Power Burst)', 12259, 203131, 'Power Burst', 16206, 203174, 203175, 203176, 64, 'Crystal', + 'Buffs', 'Burst_Buffs', 214, '', 0, 0, 0, 0, 0, 'Soldier', 'RK Dyna'), + (203134, 'NanoCrystal (Power Volley)', 12226, 203133, 'Power Volley', 16206, 0, 0, 0, 38, 'Crystal', 'Buffs', + 'Burst_Buffs', 214, '', 0, 0, 0, 0, 0, 'Soldier', 'RK Store'), + (203136, 'NanoCrystal (Laser Surgery)', 12226, 203135, 'Laser Surgery', 20882, 0, 0, 0, 33, 'Crystal', 'Buffs', + 'Ranged_Energy_Weapon_Buffs', 213, '', 0, 0, 0, 0, 0, 'Soldier', 'RK Store'), + (203138, 'NanoCrystal (Soldier Clip Junkie)', 42451, 203137, 'Soldier Clip Junkie', 16237, 203177, 203178, + 203179, 200, 'Crystal', 'Buffs', 'Soldier_Full_Auto_Buffs', 281, '', 0, 0, 0, 0, 0, 'Soldier', 'RK Dyna'), + (203140, 'NanoCrystal (Metal Barrage)', 42451, 203139, 'Metal Barrage', 16237, 203180, 203181, 203182, 170, + 'Crystal', 'Buffs', 'Soldier_Full_Auto_Buffs', 281, '', 0, 0, 0, 0, 0, 'Soldier', 'RK Dyna'), + (203142, 'NanoCrystal (Metal Strike)', 42451, 203141, 'Metal Strike', 16237, 203183, 203184, 203185, 140, + 'Crystal', 'Buffs', 'Soldier_Full_Auto_Buffs', 281, '', 0, 0, 0, 0, 0, 'Soldier', 'RK Dyna'), + (203144, 'NanoCrystal (Metal Storm)', 42451, 203143, 'Metal Storm', 16237, 203186, 203187, 203188, 106, + 'Crystal', 'Buffs', 'Soldier_Full_Auto_Buffs', 281, '', 0, 0, 0, 0, 0, 'Soldier', 'RK Dyna'), + (203146, 'NanoCrystal (Hail of Metal)', 12259, 203145, 'Hail of Metal', 16237, 203189, 203190, 203191, 80, + 'Crystal', 'Buffs', 'Soldier_Full_Auto_Buffs', 281, '', 0, 0, 0, 0, 0, 'Soldier', 'RK Dyna'), + (203148, 'NanoCrystal (Metal Rain)', 12259, 203147, 'Metal Rain', 16237, 0, 0, 0, 56, 'Crystal', 'Buffs', + 'Soldier_Full_Auto_Buffs', 281, '', 0, 0, 0, 0, 0, 'Soldier', 'RK Store'), + (203150, 'NanoCrystal (Metal Stream)', 12226, 203149, 'Metal Stream', 16237, 0, 0, 0, 31, 'Crystal', 'Buffs', + 'Soldier_Full_Auto_Buffs', 281, '', 0, 0, 0, 0, 0, 'Soldier', 'RK Store'), + (203206, 'NanoCrystal (Call of the Maelstorm)', 42451, 203215, 'Call of the Maelstorm', 20881, 203217, 203218, + 203219, 199, 'Crystal', 'Buffs', 'Enforcer_Melee_Energy_Buffs', 279, '', 0, 0, 0, 0, 0, 'Enforcer', 'RK Dyna'), + (203208, 'NanoCrystal (Power of the Thunderhead)', 42451, 203207, 'Power of the Thunderhead', 20881, 203220, + 203221, 203222, 163, 'Crystal', 'Buffs', 'Enforcer_Melee_Energy_Buffs', 279, '', 0, 0, 0, 0, 0, 'Enforcer', + 'RK Dyna'), + (203210, 'NanoCrystal (Imminent Storm)', 42451, 203209, 'Imminent Storm', 20881, 203223, 203224, 203225, 121, + 'Crystal', 'Buffs', 'Enforcer_Melee_Energy_Buffs', 279, '', 0, 0, 0, 0, 0, 'Enforcer', 'RK Dyna'), + (203212, 'NanoCrystal (Force of the Thunderclap)', 12259, 203211, 'Force of the Thunderclap', 20881, 203226, + 203227, 203228, 63, 'Crystal', 'Buffs', 'Enforcer_Melee_Energy_Buffs', 279, '', 0, 0, 0, 0, 0, 'Enforcer', + 'RK Dyna'), + (203214, 'NanoCrystal (Harnessed Lightning)', 12226, 203213, 'Harnessed Lightning', 20881, 0, 0, 0, 20, + 'Crystal', 'Buffs', 'Enforcer_Melee_Energy_Buffs', 279, '', 0, 0, 0, 0, 0, 'Enforcer', 'RK Store'), + (203594, 'NanoCrystal (Scatter Bonds)', 12225, 203593, 'Scatter Bonds', 16216, 203682, 203683, 203684, 10, + 'Crystal', 'Anti_Crowd_Control', 'Self_Snare_Removal', 0, '', 0, 0, 0, 0, 0, 'Fixer', 'RK Store'), + (203596, 'NanoCrystal (Shatter Bonds)', 12258, 203595, 'Shatter Bonds', 16216, 203685, 203686, 203687, 90, + 'Crystal', 'Anti_Crowd_Control', 'Self_Snare_Removal', 0, '', 0, 0, 0, 0, 0, 'Fixer', 'RK Dyna'), + (203598, 'NanoCrystal (Burst Bonds)', 12258, 203597, 'Burst Bonds', 16216, 203688, 203689, 203690, 53, 'Crystal', + 'Anti_Crowd_Control', 'Self_Snare_Removal', 0, '', 0, 0, 0, 0, 0, 'Fixer', 'RK Store'), + (203600, 'NanoCrystal (Rend Bonds)', 42450, 203599, 'Rend Bonds', 16216, 203691, 203692, 203693, 133, 'Crystal', + 'Anti_Crowd_Control', 'Self_Snare_Removal', 0, '', 0, 0, 0, 0, 0, 'Fixer', 'RK Dyna'), + (203602, 'NanoCrystal (Bargain with Fate)', 42450, 203601, 'Bargain with Fate', 16216, 203694, 203695, 203696, + 168, 'Crystal', 'Anti_Crowd_Control', 'Self_Snare_Removal', 0, '', 0, 0, 0, 0, 0, 'Fixer', 'RK Dyna'), + (203604, 'NanoCrystal (Luck''s Lost Twin)', 42450, 203603, 'Luck''s Lost Twin', 16216, 203697, 203698, 203699, + 200, 'Crystal', 'Anti_Crowd_Control', 'Self_Snare_Removal', 0, '', 0, 0, 0, 0, 0, 'Fixer', 'RK Dyna'), + (203606, 'NanoCrystal (Fluctuate Manifestation)', 12258, 203605, 'Fluctuate Manifestation', 16216, 203715, + 203716, 203717, 88, 'Crystal', 'Pet', 'Pet_Root/Snare_Reduction', 0, '', 0, 0, 0, 0, 0, 'Meta-Physicist', + 'RK Store'), + (203608, 'NanoCrystal (Modulate Manifestation)', 42450, 203607, 'Modulate Manifestation', 16216, 203718, 203719, + 203720, 120, 'Crystal', 'Pet', 'Pet_Root/Snare_Reduction', 0, '', 0, 0, 0, 0, 0, 'Meta-Physicist', 'RK Dyna'), + (203610, 'NanoCrystal (Succor of Expediuum)', 42450, 203609, 'Succor of Expediuum', 16216, 203721, 203722, + 203723, 163, 'Crystal', 'Pet', 'Pet_Root/Snare_Reduction', 0, '', 0, 0, 0, 0, 0, 'Meta-Physicist', 'RK Dyna'), + (203658, 'NanoCrystal (Sidestep the Blame)', 12225, 203657, 'Sidestep the Blame', 16216, 203700, 203701, 203702, + 22, 'Crystal', 'Anti_Crowd_Control', 'Self_Snare_Reduction', 0, '', 0, 0, 0, 0, 0, 'Bureaucrat', 'RK Store'), + (203660, 'NanoCrystal (Bypass Limitations)', 12258, 203659, 'Bypass Limitations', 16216, 203703, 203704, 203705, + 62, 'Crystal', 'Anti_Crowd_Control', 'Self_Snare_Reduction', 0, '', 0, 0, 0, 0, 0, 'Bureaucrat', 'RK Dyna'), + (203662, 'NanoCrystal (Circumvent Restrictions)', 42450, 203661, 'Circumvent Restrictions', 16216, 203706, + 203707, 203708, 109, 'Crystal', 'Anti_Crowd_Control', 'Self_Snare_Reduction', 0, '', 0, 0, 0, 0, 0, + 'Bureaucrat', 'RK Dyna'), + (203664, 'NanoCrystal (Evade Responsibility)', 42450, 203663, 'Evade Responsibility', 16216, 203709, 203710, + 203711, 146, 'Crystal', 'Anti_Crowd_Control', 'Self_Snare_Reduction', 0, '', 0, 0, 0, 0, 0, 'Bureaucrat', + 'RK Dyna'), + (203666, 'NanoCrystal (Guile of the Snake Oil Seller)', 42450, 203665, 'Guile of the Snake Oil Seller', 16216, + 203712, 203713, 203714, 200, 'Crystal', 'Anti_Crowd_Control', 'Self_Snare_Reduction', 0, '', 0, 0, 0, 0, 0, + 'Bureaucrat', 'RK Dyna'), + (203668, 'NanoCrystal (Dodge Pursuers)', 12258, 203667, 'Dodge Pursuers', 16216, 0, 0, 0, 57, 'Crystal', + 'Anti_Crowd_Control', 'Snare_Removal', 0, '', 0, 0, 0, 0, 0, 'Agent', 'RK Store'), + (203670, 'NanoCrystal (Evade the Chase)', 42450, 203669, 'Evade the Chase', 16216, 203676, 203677, 203678, 110, + 'Crystal', 'Anti_Crowd_Control', 'Snare_Removal', 0, '', 0, 0, 0, 0, 0, 'Agent', 'RK Dyna'), + (203672, 'NanoCrystal (Close Escape)', 42450, 203671, 'Close Escape', 16216, 203679, 203680, 203681, 164, + 'Crystal', 'Anti_Crowd_Control', 'Snare_Removal', 0, '', 0, 0, 0, 0, 0, 'Agent', 'RK Dyna'), + (203785, 'NanoCrystal (Writ of Mobility)', 12225, 203784, 'Writ of Mobility', 16216, 203933, 203934, 203935, 40, + 'Crystal', 'Anti_Crowd_Control', 'Root_Duration_Reduction', 0, 'Self', 0, 0, 0, 0, 0, 'Trader', 'RK Store'), + (203787, 'NanoCrystal (Bought Freedom)', 12258, 203786, 'Bought Freedom', 16216, 203936, 203937, 203938, 80, + 'Crystal', 'Anti_Crowd_Control', 'Root_Duration_Reduction', 0, 'Self', 0, 0, 0, 0, 0, 'Trader', 'RK Dyna'), + (203789, 'NanoCrystal (Writ of Passage)', 42450, 203788, 'Writ of Passage', 16216, 203939, 203940, 203941, 120, + 'Crystal', 'Anti_Crowd_Control', 'Root_Duration_Reduction', 0, 'Self', 0, 0, 0, 0, 0, 'Trader', 'RK Dyna'), + (203791, 'NanoCrystal (Bought Indulgence)', 42450, 203790, 'Bought Indulgence', 16216, 203942, 203943, 203944, + 160, 'Crystal', 'Anti_Crowd_Control', 'Root_Duration_Reduction', 0, 'Self', 0, 0, 0, 0, 0, 'Trader', 'RK Dyna'), + (203793, 'NanoCrystal (Writ of the Errant Salesman)', 42450, 203792, 'Writ of the Errant Salesman', 16216, + 203945, 203946, 203947, 200, 'Crystal', 'Anti_Crowd_Control', 'Root_Duration_Reduction', 0, 'Self', 0, 0, 0, 0, + 0, 'Trader', 'RK Dyna'), + (203798, 'NanoCrystal (Break Chains)', 12258, 203797, 'Break Chains', 16216, 204013, 204014, 204015, 52, + 'Crystal', 'Anti_Crowd_Control', 'Root_Removal', 0, 'Self', 0, 0, 0, 0, 0, 'Agent', 'RK Store'), + (203800, 'NanoCrystal (Shatter Chains)', 42450, 203799, 'Shatter Chains', 16216, 204016, 204017, 204018, 103, + 'Crystal', 'Anti_Crowd_Control', 'Root_Removal', 0, 'Self', 0, 0, 0, 0, 0, 'Agent', 'RK Dyna'), + (203802, 'NanoCrystal (Demolish Shackles)', 42450, 203801, 'Demolish Shackles', 16216, 204019, 204020, 204021, + 154, 'Crystal', 'Anti_Crowd_Control', 'Root_Removal', 0, 'Self', 0, 0, 0, 0, 0, 'Agent', 'RK Dyna'), + (203804, 'NanoCrystal (Jail Break)', 42450, 203803, 'Jail Break', 16216, 204022, 204023, 204024, 200, 'Crystal', + 'Anti_Crowd_Control', 'Root_Removal', 0, 'Self', 0, 0, 0, 0, 0, 'Agent', 'RK Dyna'), + (203806, 'NanoCrystal (Tear Constraints)', 12258, 203805, 'Tear Constraints', 16216, 204493, 204494, 204495, 68, + 'Crystal', 'Combat', 'Root_Reduction', 0, '', 0, 0, 0, 0, 0, 'Nano-Technician', 'RK Store'), + (203808, 'NanoCrystal (Rend Constraints)', 42450, 203807, 'Rend Constraints', 16216, 204496, 204497, 204498, 139, + 'Crystal', 'Buffs', 'Root_Reduction', 2, '', 0, 0, 0, 0, 0, 'Nano-Technician', 'RK Dyna'), + (203810, 'NanoCrystal (Sunder Constraints)', 42450, 203809, 'Sunder Constraints', 16216, 204499, 204500, 204501, + 180, 'Crystal', 'Buffs', 'Root_Reduction', 2, '', 0, 0, 0, 0, 0, 'Nano-Technician', 'RK Dyna'), + (203812, 'NanoCrystal (Escape Captivation)', 12258, 203811, 'Escape Captivation', 16216, 204036, 204037, 204038, + 73, 'Crystal', 'Anti_Crowd_Control', 'Self_Root_Removal', 0, '', 0, 0, 0, 0, 0, 'Fixer', 'RK Store'), + (203814, 'NanoCrystal (Master Escapologist)', 42450, 203813, 'Master Escapologist', 16216, 204039, 204040, + 204041, 169, 'Crystal', 'Anti_Crowd_Control', 'Self_Root_Removal', 0, '', 0, 0, 0, 0, 0, 'Fixer', 'RK Dyna'), + (203833, 'NanoCrystal (Beg for Freedom)', 12225, 203831, 'Beg for Freedom', 16216, 203890, 203891, 203892, 24, + 'Crystal', 'Anti_Crowd_Control', 'Self_Root_Reduction', 0, '', 0, 0, 0, 0, 0, 'Bureaucrat', 'RK Store'), + (203836, 'NanoCrystal (Pursuade for Freedom)', 12225, 203835, 'Pursuade for Freedom', 16216, 0, 0, 0, 49, + 'Crystal', 'Anti_Crowd_Control', 'Self_Root_Reduction', 0, '', 0, 0, 0, 0, 0, 'Bureaucrat', 'RK Store'), + (203838, 'NanoCrystal (Appeal for Freedom)', 12258, 203837, 'Appeal for Freedom', 16216, 203896, 203897, 203898, + 74, 'Crystal', 'Anti_Crowd_Control', 'Self_Root_Reduction', 0, '', 0, 0, 0, 0, 0, 'Bureaucrat', 'RK Dyna'), + (203840, 'NanoCrystal (Negotiate for Freedom)', 42450, 203839, 'Negotiate for Freedom', 16216, 203899, 203900, + 203901, 101, 'Crystal', 'Anti_Crowd_Control', 'Self_Root_Reduction', 0, '', 0, 0, 0, 0, 0, 'Bureaucrat', + 'RK Dyna'), + (203843, 'NanoCrystal (Bribe for Freedom)', 42450, 203842, 'Bribe for Freedom', 16216, 203902, 203903, 203904, + 149, 'Crystal', 'Anti_Crowd_Control', 'Self_Root_Reduction', 0, '', 0, 0, 0, 0, 0, 'Bureaucrat', 'RK Dyna'), + (203845, 'NanoCrystal (Subpoena for Freedom)', 42450, 203844, 'Subpoena for Freedom', 16216, 203905, 203906, + 203907, 174, 'Crystal', 'Anti_Crowd_Control', 'Self_Root_Reduction', 0, '', 0, 0, 0, 0, 0, 'Bureaucrat', + 'RK Dyna'), + (203847, 'NanoCrystal (Pay Bail)', 42450, 203846, 'Pay Bail', 16216, 203908, 203909, 203910, 199, 'Crystal', + 'Anti_Crowd_Control', 'Self_Root_Reduction', 0, '', 0, 0, 0, 0, 0, 'Bureaucrat', 'RK Dyna'), + (203851, 'NanoCrystal (Minor Exoskeleton Pulse)', 12225, 203850, 'Minor Exoskeleton Pulse', 16216, 203875, + 203876, 203877, 36, 'Crystal', 'Anti_Crowd_Control', 'Pet_Reduction', 0, '', 0, 0, 0, 0, 0, 'Bureaucrat', + 'RK Store'), + (203853, 'NanoCrystal (Lesser Exoskeleton Pulse)', 12258, 203852, 'Lesser Exoskeleton Pulse', 16216, 203878, + 203879, 203880, 71, 'Crystal', 'Anti_Crowd_Control', 'Pet_Reduction', 0, '', 0, 0, 0, 0, 0, 'Bureaucrat', + 'RK Dyna'), + (203856, 'NanoCrystal (Exoskeleton Pulse)', 42450, 203855, 'Exoskeleton Pulse', 16216, 203881, 203882, 203883, + 107, 'Crystal', 'Anti_Crowd_Control', 'Pet_Reduction', 0, '', 0, 0, 0, 0, 0, 'Bureaucrat', 'RK Dyna'), + (203858, 'NanoCrystal (Superior Exoskeleton Pulse)', 42450, 203857, 'Superior Exoskeleton Pulse', 16216, 203884, + 203885, 203886, 150, 'Crystal', 'Anti_Crowd_Control', 'Pet_Reduction', 0, '', 0, 0, 0, 0, 0, 'Bureaucrat', + 'RK Dyna'), + (203860, 'NanoCrystal (Greater Exoskeleton Pulse)', 42450, 203859, 'Greater Exoskeleton Pulse', 16216, 203887, + 203888, 203889, 192, 'Crystal', 'Anti_Crowd_Control', 'Pet_Reduction', 0, '', 0, 0, 0, 0, 0, 'Bureaucrat', + 'RK Dyna'), + (203862, 'NanoCrystal (Lesser Conductive Spike)', 42450, 203861, 'Lesser Conductive Spike', 16216, 203912, + 203913, 203914, 102, 'Crystal', 'Pet_Combat', 'RootSnareReduction', 0, '', 0, 0, 0, 0, 0, 'Engineer', + 'RK Dyna'), + (203864, 'NanoCrystal (Conductive Spike)', 42450, 203863, 'Conductive Spike', 16216, 203915, 203916, 203917, 128, + 'Crystal', 'Pet_Combat', 'RootSnareReduction', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'RK Dyna'), + (203866, 'NanoCrystal (Greater Conductive Spike)', 42450, 203865, 'Greater Conductive Spike', 16216, 203918, + 203919, 203920, 154, 'Crystal', 'Pet_Combat', 'RootSnareReduction', 0, '', 0, 0, 0, 0, 0, 'Engineer', + 'RK Dyna'), + (203868, 'NanoCrystal (Energized Casing of the Faithful Servant)', 42450, 203867, + 'Energized Casing of the Faithful Servant', 16216, 203921, 203922, 203923, 197, 'Crystal', 'Pet_Combat', + 'RootSnareReduction', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'RK Dyna'), + (203870, 'NanoCrystal (Lesser Energize Shell)', 12225, 203869, 'Lesser Energize Shell', 16216, 203924, 203925, + 203926, 14, 'Crystal', 'Pet_Combat', 'RootSnareReduction', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'RK Store'), + (203872, 'NanoCrystal (Energize Shell)', 12225, 203871, 'Energize Shell', 16216, 203927, 203928, 203929, 40, + 'Crystal', 'Pet_Combat', 'RootSnareReduction', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'RK Store'), + (203874, 'NanoCrystal (Greater Energize Shell)', 12258, 203873, 'Greater Energize Shell', 16216, 203930, 203931, + 203932, 76, 'Crystal', 'Pet_Combat', 'RootSnareReduction', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'RK Dyna'), + (203949, 'NanoCrystal (Request Freedom)', 12225, 203948, 'Request Freedom', 16216, 203986, 203987, 203988, 36, + 'Crystal', 'Anti_Crowd_Control', 'Other_Root_Reduction', 0, '', 0, 0, 0, 0, 0, 'Bureaucrat', 'RK Store'), + (203951, 'NanoCrystal (Beseech Freedom)', 12258, 203950, 'Beseech Freedom', 16216, 203989, 203990, 203991, 78, + 'Crystal', 'Anti_Crowd_Control', 'Other_Root_Reduction', 0, '', 0, 0, 0, 0, 0, 'Bureaucrat', 'RK Dyna'), + (203953, 'NanoCrystal (Petition Freedom)', 42450, 203952, 'Petition Freedom', 16216, 203992, 203993, 203994, 124, + 'Crystal', 'Anti_Crowd_Control', 'Other_Root_Reduction', 0, '', 0, 0, 0, 0, 0, 'Bureaucrat', 'RK Dyna'), + (203955, 'NanoCrystal (Demand Freedom)', 42450, 203954, 'Demand Freedom', 16216, 203995, 203996, 203997, 169, + 'Crystal', 'Anti_Crowd_Control', 'Other_Root_Reduction', 0, '', 0, 0, 0, 0, 0, 'Bureaucrat', 'RK Dyna'), + (203957, 'NanoCrystal (Solicit Freedom)', 42450, 203956, 'Solicit Freedom', 16216, 203998, 203999, 204000, 200, + 'Crystal', 'Anti_Crowd_Control', 'Other_Root_Reduction', 0, '', 0, 0, 0, 0, 0, 'Bureaucrat', 'RK Dyna'), + (203959, 'NanoCrystal (The Claim to Freedom)', 12225, 203958, 'The Claim to Freedom', 16216, 204001, 204002, + 204003, 42, 'Crystal', 'Anti_Crowd_Control', 'Other_Snare_Reduction', 0, '', 0, 0, 0, 0, 0, 'Bureaucrat', + 'RK Store'), + (203961, 'NanoCrystal (The Right to Movement)', 12258, 203960, 'The Right to Movement', 16216, 204004, 204005, + 204006, 94, 'Crystal', 'Anti_Crowd_Control', 'Other_Snare_Reduction', 0, '', 0, 0, 0, 0, 0, 'Bureaucrat', + 'RK Dyna'), + (203963, 'NanoCrystal (The Prerogative of Mobility)', 42450, 203962, 'The Prerogative of Mobility', 16216, + 204007, 204008, 204009, 137, 'Crystal', 'Anti_Crowd_Control', 'Other_Snare_Reduction', 0, '', 0, 0, 0, 0, 0, + 'Bureaucrat', 'RK Dyna'), + (203965, 'NanoCrystal (The Privilege of Speed)', 42450, 203964, 'The Privilege of Speed', 16216, 204010, 204011, + 204012, 180, 'Crystal', 'Anti_Crowd_Control', 'Other_Snare_Reduction', 0, '', 0, 0, 0, 0, 0, 'Bureaucrat', + 'RK Dyna'), + (203967, 'NanoCrystal (Passage for One)', 12258, 203966, 'Passage for One', 16216, 204054, 204055, 204056, 67, + 'Crystal', 'Anti_Crowd_Control', 'Root_Duration_Reduction', 0, 'Target', 0, 0, 0, 0, 0, 'Trader', 'RK Store'), + (203969, 'NanoCrystal (Reroute Impediments)', 42450, 203968, 'Reroute Impediments', 16216, 204057, 204058, + 204059, 118, 'Crystal', 'Anti_Crowd_Control', 'Root_Duration_Reduction', 0, 'Target', 0, 0, 0, 0, 0, 'Trader', + 'RK Dyna'), + (203971, 'NanoCrystal (Gift of the Travelling Salesman)', 42450, 203970, 'Gift of the Travelling Salesman', + 16216, 204060, 204061, 204062, 170, 'Crystal', 'Anti_Crowd_Control', 'Root_Duration_Reduction', 0, 'Target', 0, + 0, 0, 0, 0, 'Trader', 'RK Dyna'), + (203973, 'NanoCrystal (Grim Circumstance)', 12258, 203972, 'Grim Circumstance', 16216, 204025, 204026, 204027, + 94, 'Crystal', 'Anti_Crowd_Control', 'Root_Removal', 0, 'Target', 0, 0, 0, 0, 0, 'Agent', 'RK Store'), + (203975, 'NanoCrystal (Dire Circumstance)', 42450, 203974, 'Dire Circumstance', 16216, 204028, 204029, 204030, + 166, 'Crystal', 'Anti_Crowd_Control', 'Root_Removal', 0, 'Target', 0, 0, 0, 0, 0, 'Agent', 'RK Dyna'), + (203977, 'NanoCrystal (Scatter Bonds (Other))', 12225, 203976, 'Scatter Bonds (Other)', 16216, 204033, 204034, + 204035, 21, 'Crystal', 'Anti_Crowd_Control', 'Target_Snare_Removal', 0, '', 0, 0, 0, 0, 0, 'Fixer', 'RK Store'), + (203979, 'NanoCrystal (Burst Bonds (Other))', 12258, 203978, 'Burst Bonds (Other)', 16216, 204042, 204043, + 204044, 63, 'Crystal', 'Anti_Crowd_Control', 'Target_Snare_Removal', 0, '', 0, 0, 0, 0, 0, 'Fixer', 'RK Dyna'), + (203981, 'NanoCrystal (Shatter Bonds (Other))', 42450, 203980, 'Shatter Bonds (Other)', 16216, 204045, 204046, + 204047, 107, 'Crystal', 'Anti_Crowd_Control', 'Target_Snare_Removal', 0, '', 0, 0, 0, 0, 0, 'Fixer', 'RK Dyna'), + (203983, 'NanoCrystal (Rend Bonds (Other))', 42450, 203982, 'Rend Bonds (Other)', 16216, 204048, 204049, 204050, + 152, 'Crystal', 'Anti_Crowd_Control', 'Target_Snare_Removal', 0, '', 0, 0, 0, 0, 0, 'Fixer', 'RK Dyna'), + (203985, 'NanoCrystal (Fortune''s Smile)', 42450, 203984, 'Fortune''s Smile', 16216, 204051, 204052, 204053, 198, + 'Crystal', 'Anti_Crowd_Control', 'Target_Snare_Removal', 0, '', 0, 0, 0, 0, 0, 'Fixer', 'RK Dyna'), + (204304, 'NanoCrystal (Feelings of Mortality)', 12256, 204303, 'Feelings of Mortality', 44245, 204529, 204530, + 204531, 90, 'Crystal', 'DeBuffs', 'Complete_Healing_Line', 282, '', 0, 0, 0, 0, 0, 'Soldier', 'RK Dyna'), + (204306, 'NanoCrystal (One Foot in the Grave)', 42448, 204305, 'One Foot in the Grave', 44245, 204532, 204533, + 204534, 180, 'Crystal', 'DeBuffs', 'Complete_Healing_Line', 282, '', 0, 0, 0, 0, 0, 'Soldier', 'RK Dyna'), + (204309, 'NanoCrystal (Freedom of the Forester)', 12260, 204308, 'Freedom of the Forester', 118436, 0, 0, 0, 58, + 'Crystal', 'Buffs', 'Self_Root/Snare_Resist_Buffs', 283, '', 0, 1, 0, 0, 0, 'Adventurer', 'RK Store'), + (204311, 'NanoCrystal (Freedom of the Ranger)', 42452, 204310, 'Freedom of the Ranger', 118082, 0, 0, 0, 116, + 'Crystal', 'Buffs', 'Self_Root/Snare_Resist_Buffs', 283, '', 0, 1, 0, 0, 0, 'Adventurer', 'RK Dyna'), + (204313, 'NanoCrystal (Freedom of the Wanderer)', 42452, 204312, 'Freedom of the Wanderer', 118083, 0, 0, 0, 179, + 'Crystal', 'Buffs', 'Self_Root/Snare_Resist_Buffs', 283, '', 0, 0, 0, 0, 0, 'Adventurer', 'RK Dyna'), + (204315, 'NanoCrystal (Boon of the Forester)', 12260, 204314, 'Boon of the Forester', 38841, 0, 0, 0, 80, + 'Crystal', 'Buffs', 'Other_Root/Snare_Resist_Buffs', 284, '', 0, 1, 0, 0, 0, 'Adventurer', 'RK Store'), + (204317, 'NanoCrystal (Boon of the Ranger)', 42452, 204316, 'Boon of the Ranger', 38982, 0, 0, 0, 136, 'Crystal', + 'Buffs', 'Other_Root/Snare_Resist_Buffs', 284, '', 0, 1, 0, 0, 0, 'Adventurer', 'RK Dyna'), + (204319, 'NanoCrystal (Boon of the Wanderer)', 42452, 204318, 'Boon of the Wanderer', 39122, 0, 0, 0, 188, + 'Crystal', 'Buffs', 'Other_Root/Snare_Resist_Buffs', 284, '', 0, 1, 0, 0, 0, 'Adventurer', 'RK Dyna'), + (204336, 'NanoCrystal (Polarized Screening)', 12260, 204335, 'Polarized Screening', 38898, 204433, 204434, + 204435, 84, 'Crystal', 'Pet_Buffs', 'Pet_Snare/Root_Resistance_Buffs', 285, '', 0, 0, 0, 0, 0, 'Engineer', + 'RK Dyna'), + (204338, 'NanoCrystal (Superior Polarized Screening)', 42452, 204337, 'Superior Polarized Screening', 39039, + 204436, 204437, 204438, 118, 'Crystal', 'Pet_Buffs', 'Pet_Snare/Root_Resistance_Buffs', 285, '', 0, 0, 0, 0, 0, + 'Engineer', 'RK Dyna'), + (204340, 'NanoCrystal (Lesser Polarized Screening)', 12260, 204339, 'Lesser Polarized Screening', 38758, 204439, + 204440, 204441, 52, 'Crystal', 'Pet_Buffs', 'Pet_Snare/Root_Resistance_Buffs', 285, '', 0, 0, 0, 0, 0, + 'Engineer', 'RK Store'), + (204342, 'NanoCrystal (Greater Polarized Screening)', 42452, 204341, 'Greater Polarized Screening', 39179, + 204442, 204443, 204444, 149, 'Crystal', 'Pet_Buffs', 'Pet_Snare/Root_Resistance_Buffs', 285, '', 0, 0, 0, 0, 0, + 'Engineer', 'RK Dyna'), + (204344, 'NanoCrystal (Coherent Polarized Screening)', 42452, 204343, 'Coherent Polarized Screening', 100995, + 204445, 204446, 204447, 193, 'Crystal', 'Pet_Buffs', 'Pet_Snare/Root_Resistance_Buffs', 285, '', 0, 0, 0, 0, 0, + 'Engineer', 'RK Dyna'), + (204346, 'NanoCrystal (Sloughing Protective Barrier)', 12260, 204345, 'Sloughing Protective Barrier', 39170, + 204448, 204449, 204450, 72, 'Crystal', 'Buffs', 'Engineer_Special_Attack_Absorber', 286, 'Self', 0, 0, 0, 0, 0, + 'Engineer', 'RK Store'), + (204348, 'NanoCrystal (Coherent Sloughing Protective Barrier)', 12260, 204347, + 'Coherent Sloughing Protective Barrier', 39170, 204451, 204452, 204453, 83, 'Crystal', 'Buffs', + 'Engineer_Special_Attack_Absorber', 286, 'Self', 0, 0, 0, 0, 0, 'Engineer', 'RK Dyna'), + (204350, 'NanoCrystal (Sloughing Defensive Shield)', 42452, 204349, 'Sloughing Defensive Shield', 39170, 204454, + 204455, 204456, 107, 'Crystal', 'Buffs', 'Engineer_Special_Attack_Absorber', 286, 'Self', 0, 0, 0, 0, 0, + 'Engineer', 'RK Dyna'), + (204352, 'NanoCrystal (Coherent Sloughing Defensive Shield)', 42452, 204351, + 'Coherent Sloughing Defensive Shield', 39170, 204457, 204458, 204459, 133, 'Crystal', 'Buffs', + 'Engineer_Special_Attack_Absorber', 286, 'Self', 0, 0, 0, 0, 0, 'Engineer', 'RK Dyna'), + (204354, 'NanoCrystal (Sloughing Assault Shield)', 42452, 204353, 'Sloughing Assault Shield', 39170, 204460, + 204461, 204462, 181, 'Crystal', 'Buffs', 'Engineer_Special_Attack_Absorber', 286, 'Self', 0, 0, 0, 0, 0, + 'Engineer', 'RK Dyna'), + (204356, 'NanoCrystal (Coherent Sloughing Assault Shield)', 42452, 204355, 'Coherent Sloughing Assault Shield', + 39170, 204463, 204464, 204465, 193, 'Crystal', 'Buffs', 'Engineer_Special_Attack_Absorber', 286, 'Self', 0, 0, + 0, 0, 0, 'Engineer', 'RK Dyna'), + (204363, 'NanoCrystal (Intrusive Aura of Entanglement)', 12257, 204362, 'Intrusive Aura of Entanglement', 46276, + 204466, 204467, 204468, 60, 'Crystal', 'Pet_Buffs', 'Engineer_Pet_AOE_Snare_Buffs', 288, '', 0, 0, 0, 0, 0, + 'Engineer', 'RK Store'), + (204365, 'NanoCrystal (Intrusive Aura of Binding)', 12257, 204364, 'Intrusive Aura of Binding', 46276, 204469, + 204470, 204471, 97, 'Crystal', 'Pet_Buffs', 'Engineer_Pet_AOE_Snare_Buffs', 288, '', 0, 0, 0, 0, 0, 'Engineer', + 'RK Dyna'), + (204367, 'NanoCrystal (Intrusive Aura of Malaise)', 42449, 204366, 'Intrusive Aura of Malaise', 46277, 204472, + 204473, 204474, 132, 'Crystal', 'Pet_Buffs', 'Engineer_Pet_AOE_Snare_Buffs', 288, '', 0, 0, 0, 0, 0, 'Engineer', + 'Adonis Garden / RK Dyna'), + (204369, 'NanoCrystal (Intrusive Aura of Sloth)', 42449, 204368, 'Intrusive Aura of Sloth', 46277, 204475, + 204476, 204477, 166, 'Crystal', 'Pet_Buffs', 'Engineer_Pet_AOE_Snare_Buffs', 288, '', 0, 0, 0, 0, 0, 'Engineer', + 'RK Dyna'), + (204371, 'NanoCrystal (Intrusive Aura of the Humble Servant)', 42449, 204370, + 'Intrusive Aura of the Humble Servant', 46278, 204478, 204479, 204480, 199, 'Crystal', 'Pet_Buffs', + 'Engineer_Pet_AOE_Snare_Buffs', 288, '', 0, 0, 0, 0, 0, 'Engineer', 'RK Dyna'), + (204373, 'NanoCrystal (Intrusive Aura Cancellation)', 12258, 204372, 'Intrusive Aura Cancellation', 16216, + 204481, 204482, 204483, 60, 'Crystal', 'Pet_Combat', 'AuraCancellation', 0, '', 0, 0, 0, 0, 0, 'Engineer', + 'RK Store'), + (204419, 'NanoCrystal (Sloughing Protective Field)', 12260, 204418, 'Sloughing Protective Field', 38889, 204484, + 204485, 204486, 93, 'Crystal', 'Buffs', 'Engineer_Special_Attack_Absorber', 286, 'Team', 0, 0, 0, 0, 0, + 'Engineer', 'RK Store'), + (204421, 'NanoCrystal (Sloughing Shielding Field)', 42452, 204420, 'Sloughing Shielding Field', 38889, 204487, + 204488, 204489, 141, 'Crystal', 'Buffs', 'Engineer_Special_Attack_Absorber', 286, 'Team', 0, 0, 0, 0, 0, + 'Engineer', 'RK Dyna'), + (204423, 'NanoCrystal (Sloughing Combat Field)', 42452, 204422, 'Sloughing Combat Field', 38889, 204490, 204491, + 204492, 196, 'Crystal', 'Buffs', 'Engineer_Special_Attack_Absorber', 286, 'Team', 0, 0, 0, 0, 0, 'Engineer', + 'RK Dyna'), + (204426, 'NanoCrystal (Vaccine of Ransacking)', 12259, 204425, 'Vaccine of Ransacking', 39271, 204517, 204518, + 204519, 77, 'Crystal', 'Buffs', 'Ransack/Deprive_Resist_Buffs', 287, '', 0, 0, 0, 0, 0, 'Doctor', 'RK Store'), + (204428, 'NanoCrystal (Vaccine of Deprivation)', 42451, 204427, 'Vaccine of Deprivation', 39271, 204520, 204521, + 204522, 119, 'Crystal', 'Buffs', 'Ransack/Deprive_Resist_Buffs', 287, '', 0, 0, 0, 0, 0, 'Doctor', 'RK Dyna'), + (204430, 'NanoCrystal (Vaccine of Plundering)', 42451, 204429, 'Vaccine of Plundering', 39271, 204523, 204524, + 204525, 164, 'Crystal', 'Buffs', 'Ransack/Deprive_Resist_Buffs', 287, '', 0, 0, 0, 0, 0, 'Doctor', 'RK Dyna'), + (204432, 'NanoCrystal (Vaccine of Divestiture)', 42451, 204431, 'Vaccine of Divestiture', 39271, 204526, 204527, + 204528, 197, 'Crystal', 'Buffs', 'Ransack/Deprive_Resist_Buffs', 287, '', 0, 0, 0, 0, 0, 'Doctor', 'RK Dyna'), + (204829, 'Nano Crystal (Lien''s Crystalizer)', 295591, 204828, 'Lien''s Crystalizer', 295595, 0, 0, 0, 390, + 'Crystal', 'Pet', 'Attack_Pet_Crystalizer', 0, '', 0, 0, 0, 0, 0, 'Meta-Physicist', + 'Temple of the Three Winds Loot'), + (205184, 'Nano Crystal (Evocation of Fathomless Rage)', 12256, 205183, 'Evocation of Fathomless Rage', 16280, + 205199, 205200, 205201, 85, 'Crystal', 'Pet_Buffs', 'Pet_Short_Term_Damage_Buffs', 225, 'Evocation', 0, 0, 0, 0, + 0, 'Meta-Physicist', 'RK Store'), + (205186, 'Nano Crystal (Evocation of Implacable Hatred)', 42448, 205185, 'Evocation of Implacable Hatred', 16280, + 205202, 205203, 205204, 115, 'Crystal', 'Pet_Buffs', 'Pet_Short_Term_Damage_Buffs', 225, 'Evocation', 0, 0, 0, + 0, 0, 'Meta-Physicist', 'RK Store'), + (205188, 'Nano Crystal (Evocation of Maddening Wrath)', 42448, 205187, 'Evocation of Maddening Wrath', 16280, + 205205, 205206, 205207, 140, 'Crystal', 'Pet_Buffs', 'Pet_Short_Term_Damage_Buffs', 225, 'Evocation', 0, 0, 0, + 0, 0, 'Meta-Physicist', 'RK Dyna'), + (205190, 'Nano Crystal (Evocation of Pure Malevolence)', 42448, 205189, 'Evocation of Pure Malevolence', 16280, + 205208, 205209, 205210, 177, 'Crystal', 'Pet_Buffs', 'Pet_Short_Term_Damage_Buffs', 225, 'Evocation', 0, 0, 0, + 0, 0, 'Meta-Physicist', 'RK Dyna'), + (205192, 'Nano Crystal (Evocation of Relentless Fury)', 12256, 205191, 'Evocation of Relentless Fury', 16280, + 205211, 205212, 205213, 58, 'Crystal', 'Pet_Buffs', 'Pet_Short_Term_Damage_Buffs', 225, 'Evocation', 0, 0, 0, 0, + 0, 'Meta-Physicist', 'RK Store'), + (205194, 'Nano Crystal (Evocation of The Abomination)', 42448, 205193, 'Evocation of The Abomination', 16280, + 205214, 205215, 205216, 200, 'Crystal', 'Pet_Buffs', 'Pet_Short_Term_Damage_Buffs', 225, 'Evocation', 0, 0, 0, + 0, 0, 'Meta-Physicist', 'RK Dyna'), + (205196, 'Nano Crystal (Evocation of Unleashed Malice)', 12228, 205195, 'Evocation of Unleashed Malice', 16280, + 205217, 205218, 205219, 34, 'Crystal', 'Pet_Buffs', 'Pet_Short_Term_Damage_Buffs', 225, 'Evocation', 0, 0, 0, 0, + 0, 'Meta-Physicist', 'RK Store'), + (205198, 'Nano Crystal (Evocation of Unrestrained Ferocity)', 12228, 205197, + 'Evocation of Unrestrained Ferocity', 16280, 205220, 205221, 205222, 16, 'Crystal', 'Pet_Buffs', + 'Pet_Short_Term_Damage_Buffs', 225, 'Evocation', 0, 0, 0, 0, 0, 'Meta-Physicist', 'RK Store'), + (205230, 'Nano Crystal (Assist Combat Array)', 12228, 205229, 'Assist Combat Array', 16299, 205254, 205255, + 205256, 15, 'Crystal', 'Pet_Buffs', 'Pet_Short_Term_Damage_Buffs', 225, '', 0, 0, 0, 0, 0, 'Engineer', + 'RK Store'), + (205232, 'Nano Crystal (Monitor Combat Array)', 12228, 205231, 'Monitor Combat Array', 16299, 205257, 205258, + 205259, 37, 'Crystal', 'Pet_Buffs', 'Pet_Short_Term_Damage_Buffs', 225, '', 0, 0, 0, 0, 0, 'Engineer', + 'RK Store'), + (205234, 'Nano Crystal (Enhance Combat Array)', 12256, 205233, 'Enhance Combat Array', 16299, 205260, 205261, + 205262, 56, 'Crystal', 'Pet_Buffs', 'Pet_Short_Term_Damage_Buffs', 225, '', 0, 0, 0, 0, 0, 'Engineer', + 'RK Store'), + (205236, 'Nano Crystal (Boost Combat Array)', 12256, 205235, 'Boost Combat Array', 16299, 205263, 205264, 205265, + 77, 'Crystal', 'Pet_Buffs', 'Pet_Short_Term_Damage_Buffs', 225, '', 0, 0, 0, 0, 0, 'Engineer', 'RK Store'), + (205238, 'Nano Crystal (Overdrive Combat Array)', 12256, 205237, 'Overdrive Combat Array', 16299, 205266, 205267, + 205268, 96, 'Crystal', 'Pet_Buffs', 'Pet_Short_Term_Damage_Buffs', 225, '', 0, 0, 0, 0, 0, 'Engineer', + 'RK Store'), + (205240, 'Nano Crystal (Assist Aggression Subsystem)', 42448, 205239, 'Assist Aggression Subsystem', 16299, + 205269, 205270, 205271, 117, 'Crystal', 'Pet_Buffs', 'Pet_Short_Term_Damage_Buffs', 225, '', 0, 0, 0, 0, 0, + 'Engineer', 'RK Store'), + (205242, 'Nano Crystal (Monitor Aggression Subsystem)', 42448, 205241, 'Monitor Aggression Subsystem', 16299, + 205272, 205273, 205274, 136, 'Crystal', 'Pet_Buffs', 'Pet_Short_Term_Damage_Buffs', 225, '', 0, 0, 0, 0, 0, + 'Engineer', 'RK Dyna'), + (205244, 'Nano Crystal (Enhance Aggression Subsystem)', 42448, 205243, 'Enhance Aggression Subsystem', 16299, + 205275, 205276, 205277, 158, 'Crystal', 'Pet_Buffs', 'Pet_Short_Term_Damage_Buffs', 225, '', 0, 0, 0, 0, 0, + 'Engineer', 'RK Dyna'), + (205246, 'Nano Crystal (Boost Aggression Subsystem)', 42448, 205245, 'Boost Aggression Subsystem', 16299, 205278, + 205279, 205280, 174, 'Crystal', 'Pet_Buffs', 'Pet_Short_Term_Damage_Buffs', 225, '', 0, 0, 0, 0, 0, 'Engineer', + 'RK Dyna'), + (205248, 'Nano Crystal (Overdrive Aggression Subsystem)', 42448, 205247, 'Overdrive Aggression Subsystem', 16299, + 205281, 205282, 205283, 193, 'Crystal', 'Pet_Buffs', 'Pet_Short_Term_Damage_Buffs', 225, '', 0, 0, 0, 0, 0, + 'Engineer', 'RK Dyna'), + (205250, 'Nano Crystal (Omni-Pol Pacification Logic System)', 42448, 205249, + 'Omni-Pol Pacification Logic System', 16299, 205284, 205285, 205286, 200, 'Crystal', 'Pet_Buffs', + 'Pet_Short_Term_Damage_Buffs', 225, '', 0, 0, 0, 0, 0, 'Engineer', 'RK Dyna'), + (205288, 'Nano Crystal (Gallant Hero: The Enraged Drone)', 12228, 205287, 'Gallant Hero: The Enraged Drone', + 16299, 205305, 205306, 205307, 30, 'Crystal', 'Pet_Buffs', 'Pet_Short_Term_Damage_Buffs', 225, 'Damage_Robot', + 0, 0, 0, 0, 0, 'Bureaucrat', 'RK Store'), + (205290, 'Nano Crystal (Gallant Hero: The Infuriated Minion)', 12256, 205289, + 'Gallant Hero: The Infuriated Minion', 16299, 205308, 205309, 205310, 52, 'Crystal', 'Pet_Buffs', + 'Pet_Short_Term_Damage_Buffs', 225, 'Damage_Robot', 0, 0, 0, 0, 0, 'Bureaucrat', 'RK Store'), + (205292, 'Nano Crystal (Gallant Hero: The Aggravated Servant)', 12256, 205291, + 'Gallant Hero: The Aggravated Servant', 16299, 205311, 205312, 205313, 71, 'Crystal', 'Pet_Buffs', + 'Pet_Short_Term_Damage_Buffs', 225, 'Damage_Robot', 0, 0, 0, 0, 0, 'Bureaucrat', 'RK Store'), + (205294, 'Nano Crystal (Gallant Hero: The Indignant Flunky)', 12256, 205293, + 'Gallant Hero: The Indignant Flunky', 16299, 205314, 205315, 205316, 92, 'Crystal', 'Pet_Buffs', + 'Pet_Short_Term_Damage_Buffs', 225, 'Damage_Robot', 0, 0, 0, 0, 0, 'Bureaucrat', 'RK Store'), + (205296, 'Nano Crystal (Gallant Hero: The Angry Servitor)', 42448, 205295, 'Gallant Hero: The Angry Servitor', + 16299, 205317, 205318, 205319, 110, 'Crystal', 'Pet_Buffs', 'Pet_Short_Term_Damage_Buffs', 225, 'Damage_Robot', + 0, 0, 0, 0, 0, 'Bureaucrat', 'RK Store'), + (205298, 'Nano Crystal (Gallant Hero: The Bitter Clerk)', 42448, 205297, 'Gallant Hero: The Bitter Clerk', 16299, + 205320, 205321, 205322, 131, 'Crystal', 'Pet_Buffs', 'Pet_Short_Term_Damage_Buffs', 225, 'Damage_Robot', 0, 0, + 0, 0, 0, 'Bureaucrat', 'RK Dyna'), + (205300, 'Nano Crystal (Gallant Hero: The Irate Attache)', 42448, 205299, 'Gallant Hero: The Irate Attache', + 16299, 205323, 205324, 205325, 152, 'Crystal', 'Pet_Buffs', 'Pet_Short_Term_Damage_Buffs', 225, 'Damage_Robot', + 0, 0, 0, 0, 0, 'Bureaucrat', 'RK Dyna'), + (205302, 'Nano Crystal (Gallant Hero: The Incensed Retainer)', 42448, 205301, + 'Gallant Hero: The Incensed Retainer', 16299, 205326, 205327, 205328, 173, 'Crystal', 'Pet_Buffs', + 'Pet_Short_Term_Damage_Buffs', 225, 'Damage_Robot', 0, 0, 0, 0, 0, 'Bureaucrat', 'RK Dyna'), + (205304, 'Nano Crystal (Gallant Hero: The Vengeful Butler)', 42448, 205303, 'Gallant Hero: The Vengeful Butler', + 16299, 205329, 205330, 205331, 199, 'Crystal', 'Pet_Buffs', 'Pet_Short_Term_Damage_Buffs', 225, 'Damage_Robot', + 0, 0, 0, 0, 0, 'Bureaucrat', 'RK Dyna'), + (205434, 'Nano Crystal (Corporate Leadership: Dispensation)', 12258, 205433, + 'Corporate Leadership: Dispensation', 38925, 0, 0, 0, 70, 'Crystal', 'Anti_Crowd_Control', + 'Corporate_Leadership', 0, '', 0, 0, 0, 0, 0, 'Bureaucrat', 'RK Store'), + (205436, 'Nano Crystal (Corporate Leadership: Clemency)', 42450, 205435, 'Corporate Leadership: Clemency', 38925, + 0, 0, 0, 119, 'Crystal', 'Anti_Crowd_Control', 'Corporate_Leadership', 0, '', 0, 0, 0, 0, 0, 'Bureaucrat', + 'RK Store'), + (205438, 'Nano Crystal (Corporate Leadership: Impunity)', 42450, 205437, 'Corporate Leadership: Impunity', 38925, + 0, 0, 0, 161, 'Crystal', 'Anti_Crowd_Control', 'Corporate_Leadership', 0, '', 0, 0, 0, 0, 0, 'Bureaucrat', + 'RK Dyna'), + (205440, 'Nano Crystal (Corporate Leadership: Exoneration)', 42450, 205439, 'Corporate Leadership: Exoneration', + 38925, 0, 0, 0, 194, 'Crystal', 'Anti_Crowd_Control', 'Corporate_Leadership', 0, '', 0, 0, 0, 0, 0, + 'Bureaucrat', 'RK Dyna'), + (205442, 'Nano Crystal (Enfraam''s Inverted Restrainer)', 12258, 205441, 'Enfraam''s Inverted Restrainer', 38925, + 0, 0, 0, 93, 'Crystal', 'Buffs', 'Root_Reduction', 2, '', 0, 0, 0, 0, 0, 'Nano-Technician', 'RK Store'), + (205444, 'Nano Crystal (Izgimmer''s Transposed Restraints)', 42450, 205443, 'Izgimmer''s Transposed Restraints', + 38925, 0, 0, 0, 161, 'Crystal', 'Buffs', 'Root_Reduction', 2, '', 0, 0, 0, 0, 0, 'Nano-Technician', 'RK Dyna'), + (206753, 'Nano Crystal (Saemus'' Crystalizer)', 295591, 206752, 'Saemus'' Crystalizer', 295595, 0, 0, 0, 390, + 'Crystal', 'Pet', 'Attack_Pet_Crystalizer', 0, '', 0, 0, 0, 0, 0, 'Meta-Physicist', 'Inner Sanctum Loot'), + (209489, 'Nano Crystal (Pet Warp)', 297537, 209488, 'Pet Warp', 297538, 0, 0, 0, 4, 'Crystal', 'Pets', + 'Pet_Warp', 0, '', 0, 0, 0, 0, 0, 'General', 'RK Store'), + (210298, 'Nano Crystal (Keeper''s Edge)', 12226, 210297, 'Keeper''s Edge', 16288, 0, 0, 0, 1, 'Crystal', 'Buffs', + '2H_Edged_Buffs', 153, '', 0, 0, 0, 0, 0, 'Keeper', 'Arete Nano Container'), + (210300, 'Nano Crystal (Impartiality of the Blade)', 12226, 210299, 'Impartiality of the Blade', 16288, 0, 0, 0, + 20, 'Crystal', 'Buffs', '2H_Edged_Buffs', 153, '', 0, 0, 0, 0, 0, 'Keeper', 'RK Store'), + (210302, 'Nano Crystal (Decision Maker)', 12226, 210301, 'Decision Maker', 16288, 0, 0, 0, 48, 'Crystal', + 'Buffs', '2H_Edged_Buffs', 153, '', 0, 0, 0, 0, 0, 'Keeper', 'RK Store'), + (210304, 'Nano Crystal (Judgement Bringer)', 12259, 210303, 'Judgement Bringer', 16288, 0, 0, 0, 83, 'Crystal', + 'Buffs', '2H_Edged_Buffs', 153, '', 0, 0, 0, 0, 0, 'Keeper', 'SL Loot'), + (210306, 'Nano Crystal (The Adjudicator''s Blade)', 42451, 210305, 'The Adjudicator''s Blade', 16288, 0, 0, 0, + 119, 'Crystal', 'Buffs', '2H_Edged_Buffs', 153, '', 0, 0, 0, 0, 0, 'Keeper', 'SL Loot'), + (210308, 'Nano Crystal (Finality''s Edge)', 42451, 210307, 'Finality''s Edge', 16288, 0, 0, 0, 164, 'Crystal', + 'Buffs', '2H_Edged_Buffs', 153, '', 0, 0, 0, 0, 0, 'Keeper', 'Mission Reward'), + (210310, 'Nano Crystal (Colossus of Swords)', 42451, 210309, 'Colossus of Swords', 16288, 0, 0, 0, 200, + 'Crystal', 'Buffs', '2H_Edged_Buffs', 153, '', 0, 0, 0, 0, 0, 'Keeper', 'Mission Reward'), + (210312, 'Nano Crystal (Defender''s Poise)', 12226, 210311, 'Defender''s Poise', 16305, 0, 0, 0, 27, 'Crystal', + 'Buffs', 'Deflect/Riposte_Buffs', 518, '', 0, 0, 0, 0, 0, 'Keeper', 'SL Loot'), + (210314, 'Nano Crystal (Warden''s Resolve)', 12259, 210313, 'Warden''s Resolve', 16305, 0, 0, 0, 60, 'Crystal', + 'Buffs', 'Deflect/Riposte_Buffs', 518, '', 0, 0, 0, 0, 0, 'Keeper', 'RK Store'), + (210316, 'Nano Crystal (Guardian''s Balance)', 42451, 210315, 'Guardian''s Balance', 16305, 0, 0, 0, 112, + 'Crystal', 'Buffs', 'Deflect/Riposte_Buffs', 518, '', 0, 0, 0, 0, 0, 'Keeper', 'RK Store'), + (210318, 'Nano Crystal (Grace of the Samurai)', 42451, 210317, 'Grace of the Samurai', 16305, 0, 0, 0, 155, + 'Crystal', 'Buffs', 'Deflect/Riposte_Buffs', 518, '', 0, 0, 0, 0, 0, 'Keeper', 'Mission Reward'), + (210320, 'Nano Crystal (Discipline of the Vindicator)', 42451, 210319, 'Discipline of the Vindicator', 16305, 0, + 0, 0, 199, 'Crystal', 'Buffs', 'Deflect/Riposte_Buffs', 518, '', 0, 0, 0, 0, 0, 'Keeper', 'Mission Reward'), + (210322, 'Nano Crystal (Fervor of the Henchman)', 301597, 210321, 'Fervor of the Henchman', 301595, 0, 0, 0, 14, + 'Crystal', 'Buffs', 'Fast_Attack_Buffs', 519, '', 0, 0, 0, 0, 0, 'Enforcer', 'SL Loot'), + (210324, 'Nano Crystal (Fervor of the Devotee)', 301597, 210323, 'Fervor of the Devotee', 301595, 0, 0, 0, 57, + 'Crystal', 'Buffs', 'Fast_Attack_Buffs', 519, '', 0, 0, 0, 0, 0, 'Enforcer', 'SL Loot'), + (210326, 'Nano Crystal (Fervor of the Minion)', 301597, 210325, 'Fervor of the Minion', 301595, 0, 0, 0, 97, + 'Crystal', 'Buffs', 'Fast_Attack_Buffs', 519, '', 0, 0, 0, 0, 0, 'Enforcer', 'SL Loot'), + (210328, 'Nano Crystal (Fervor of the Disciple)', 301597, 210327, 'Fervor of the Disciple', 301595, 0, 0, 0, 144, + 'Crystal', 'Buffs', 'Fast_Attack_Buffs', 519, '', 0, 0, 0, 0, 0, 'Enforcer', 'RK Dyna'), + (210330, 'Nano Crystal (Fervor of the Fanatic)', 301597, 210329, 'Fervor of the Fanatic', 301595, 0, 0, 0, 171, + 'Crystal', 'Buffs', 'Fast_Attack_Buffs', 519, '', 0, 0, 0, 0, 0, 'Enforcer', 'RK Dyna'), + (210332, 'Nano Crystal (Fervor of the Zealot)', 301597, 210331, 'Fervor of the Zealot', 301595, 0, 0, 0, 196, + 'Crystal', 'Buffs', 'Fast_Attack_Buffs', 519, '', 0, 0, 0, 0, 0, 'Enforcer', 'RK Dyna'), + (210354, 'Nano Crystal (Ritualistic Touch)', 12225, 210353, 'Ritualistic Touch', 84198, 0, 0, 0, 4, 'Crystal', + 'Proc', 'Shade_Proc_Buffs', 521, 'Damage', 0, 0, 0, 0, 0, 'Shade', 'RK Store'), + (210356, 'Nano Crystal (Ritualistic Blow)', 12225, 210355, 'Ritualistic Blow', 84198, 0, 0, 0, 17, 'Crystal', + 'Proc', 'Shade_Proc_Buffs', 521, 'Damage', 0, 0, 0, 0, 0, 'Shade', 'RK Store'), + (210358, 'Nano Crystal (Ritualistic Grasp)', 12225, 210357, 'Ritualistic Grasp', 84198, 0, 0, 0, 34, 'Crystal', + 'Proc', 'Shade_Proc_Buffs', 521, 'Damage', 0, 0, 1, 1, 0, 'Shade', 'Elysium Garden'), + (210360, 'Nano Crystal (Ritualistic Caress)', 12258, 210359, 'Ritualistic Caress', 84198, 0, 0, 0, 52, 'Crystal', + 'Proc', 'Shade_Proc_Buffs', 521, 'Damage', 0, 0, 1, 1, 0, 'Shade', 'Elysium Sanctuary'), + (210362, 'Nano Crystal (Ritualistic Embrace)', 12258, 210361, 'Ritualistic Embrace', 84198, 0, 0, 0, 80, + 'Crystal', 'Proc', 'Shade_Proc_Buffs', 521, 'Damage', 0, 0, 1, 1, 0, 'Shade', 'Scheol Sanctuary'), + (210364, 'Nano Crystal (Sacrificial Touch)', 42450, 210363, 'Sacrificial Touch', 84198, 0, 0, 0, 102, 'Crystal', + 'Proc', 'Shade_Proc_Buffs', 521, 'Damage', 0, 0, 1, 2, 0, 'Shade', 'Adonis Garden'), + (210366, 'Nano Crystal (Sacrificial Blow)', 42450, 210365, 'Sacrificial Blow', 84198, 0, 0, 0, 138, 'Crystal', + 'Proc', 'Shade_Proc_Buffs', 521, 'Damage', 0, 0, 1, 2, 0, 'Shade', 'Adonis Sanctuary'), + (210368, 'Nano Crystal (Sacrificial Grasp)', 42450, 210367, 'Sacrificial Grasp', 84198, 0, 0, 0, 165, 'Crystal', + 'Proc', 'Shade_Proc_Buffs', 521, 'Damage', 0, 0, 1, 3, 0, 'Shade', 'Penumbra Sanctuary'), + (210370, 'Nano Crystal (Sacrificial Caress)', 42450, 210369, 'Sacrificial Caress', 84198, 0, 0, 0, 183, + 'Crystal', 'Proc', 'Shade_Proc_Buffs', 521, 'Damage', 0, 0, 1, 3, 0, 'Shade', 'Inferno Garden'), + (210372, 'Nano Crystal (Sacrificial Embrace)', 42450, 210371, 'Sacrificial Embrace', 84198, 0, 0, 0, 199, + 'Crystal', 'Proc', 'Shade_Proc_Buffs', 521, 'Damage', 0, 0, 1, 3, 0, 'Shade', 'Inferno Garden'), + (210377, 'Nano Crystal (Quintessence of Incapacitation)', 12225, 210376, 'Quintessence of Incapacitation', 84197, + 0, 0, 0, 43, 'Crystal', 'Proc', 'Shade_Proc_Buffs', 521, 'Stun', 0, 0, 1, 1, 0, 'Shade', 'Elysium Sanctuary'), + (210379, 'Nano Crystal (Quintessence of Paralyzation)', 42450, 210378, 'Quintessence of Paralyzation', 84197, 0, + 0, 0, 111, 'Crystal', 'Proc', 'Shade_Proc_Buffs', 521, 'Stun', 0, 0, 1, 2, 0, 'Shade', 'Adonis Garden'), + (210381, 'Nano Crystal (Quintessence of Petrification)', 42450, 210380, 'Quintessence of Petrification', 84197, + 0, 0, 0, 197, 'Crystal', 'Proc', 'Shade_Proc_Buffs', 521, 'Stun', 0, 0, 1, 3, 0, 'Shade', 'Inferno Garden'), + (210388, 'Nano Crystal (Rudimentary Dissipation)', 12225, 210387, 'Rudimentary Dissipation', 84196, 0, 0, 0, 21, + 'Crystal', 'Proc', 'Shade_Proc_Buffs', 521, 'Dot', 0, 0, 0, 0, 0, 'Shade', 'RK Store'), + (210390, 'Nano Crystal (Primitive Dissipation)', 12258, 210389, 'Primitive Dissipation', 84196, 0, 0, 0, 61, + 'Crystal', 'Proc', 'Shade_Proc_Buffs', 521, 'Dot', 0, 0, 1, 1, 0, 'Shade', 'Scheol Garden'), + (210392, 'Nano Crystal (Intrinsic Dissipation)', 42450, 210391, 'Intrinsic Dissipation', 84196, 0, 0, 0, 110, + 'Crystal', 'Proc', 'Shade_Proc_Buffs', 521, 'Dot', 0, 0, 1, 2, 0, 'Shade', 'Adonis Garden'), + (210394, 'Nano Crystal (Elemental Dissipation)', 42450, 210393, 'Elemental Dissipation', 84196, 0, 0, 0, 162, + 'Crystal', 'Proc', 'Shade_Proc_Buffs', 521, 'Dot', 0, 0, 1, 3, 0, 'Shade', 'Penumbra Sanctuary'), + (210396, 'Nano Crystal (Primordial Dissipation)', 42450, 210395, 'Primordial Dissipation', 84196, 0, 0, 0, 196, + 'Crystal', 'Proc', 'Shade_Proc_Buffs', 521, 'Dot', 0, 0, 1, 3, 0, 'Shade', 'Inferno Garden'), + (210402, 'Nano Crystal (Degeneration of Rapidity)', 301089, 210401, 'Degeneration of Rapidity', 301087, 0, 0, 0, + 38, 'Crystal', 'Proc', 'Shade_Proc_Buffs', 521, 'Inits', 0, 0, 1, 1, 0, 'Shade', 'Elysium Garden'), + (210408, 'Nano Crystal (Degeneration of Celerity)', 301089, 210407, 'Degeneration of Celerity', 301087, 0, 0, 0, + 190, 'Crystal', 'Proc', 'Shade_Proc_Buffs', 521, 'Inits', 0, 0, 1, 3, 0, 'Shade', 'Inferno Garden'), + (210485, 'Nano Crystal (Sanctifier)', 12225, 210484, 'Sanctifier', 84197, 0, 0, 0, 20, 'Crystal', 'Buffs', + 'Proc_Buffs', 526, 'Sanctifier', 0, 0, 0, 0, 0, 'Keeper', 'RK Store'), + (210487, 'Nano Crystal (Honored Sanctifier)', 12258, 210486, 'Honored Sanctifier', 84197, 0, 0, 0, 62, 'Crystal', + 'Buffs', 'Proc_Buffs', 526, 'Sanctifier', 0, 0, 0, 0, 0, 'Keeper', 'RK Store'), + (210489, 'Nano Crystal (Exalted Sanctifier)', 12258, 210488, 'Exalted Sanctifier', 84197, 0, 0, 0, 84, 'Crystal', + 'Buffs', 'Proc_Buffs', 526, 'Sanctifier', 0, 0, 0, 0, 0, 'Keeper', 'RK Store'), + (210491, 'Nano Crystal (Glorious Sanctifier)', 42450, 210490, 'Glorious Sanctifier', 84197, 0, 0, 0, 124, + 'Crystal', 'Buffs', 'Proc_Buffs', 526, 'Sanctifier', 0, 0, 0, 0, 0, 'Keeper', 'RK Store'), + (210493, 'Nano Crystal (Venerated Sanctifier)', 42450, 210492, 'Venerated Sanctifier', 84197, 0, 0, 0, 163, + 'Crystal', 'Buffs', 'Proc_Buffs', 526, 'Sanctifier', 0, 0, 0, 0, 0, 'Keeper', 'RK Dyna'), + (210495, 'Nano Crystal (Reverential Sanctifier)', 42450, 210494, 'Reverential Sanctifier', 84197, 0, 0, 0, 197, + 'Crystal', 'Buffs', 'Proc_Buffs', 526, 'Sanctifier', 0, 0, 0, 0, 0, 'Keeper', 'RK Dyna'), + (210501, 'Nano Crystal (Reaper)', 12258, 210500, 'Reaper', 84198, 0, 0, 0, 75, 'Crystal', 'Buffs', 'Proc_Buffs', + 526, 'Reaper', 0, 0, 1, 1, 0, 'Keeper', 'Scheol Garden'), + (210503, 'Nano Crystal (Havoc Reaper)', 42450, 210502, 'Havoc Reaper', 84198, 0, 0, 0, 127, 'Crystal', 'Buffs', + 'Proc_Buffs', 526, 'Reaper', 0, 0, 1, 2, 0, 'Keeper', 'Adonis Sanctuary'), + (210505, 'Nano Crystal (Carnage Reaper)', 42450, 210504, 'Carnage Reaper', 84198, 0, 0, 0, 168, 'Crystal', + 'Buffs', 'Proc_Buffs', 526, 'Reaper', 0, 0, 1, 3, 0, 'Keeper', 'Penumbra Sanctuary'), + (210507, 'Nano Crystal (Crusader Reaper)', 42450, 210506, 'Crusader Reaper', 84198, 0, 0, 0, 200, 'Crystal', + 'Buffs', 'Proc_Buffs', 526, 'Reaper', 0, 0, 1, 3, 0, 'Keeper', 'Inferno Sanctuary'), + (210513, 'Nano Crystal (Ward)', 12227, 210512, 'Ward', 117961, 0, 0, 0, 39, 'Crystal', 'Buffs', 'Fortify', 224, + '', 0, 0, 1, 1, 0, 'Keeper', 'Elysium Garden'), + (210515, 'Nano Crystal (Benevolent Ward)', 12260, 210514, 'Benevolent Ward', 117961, 0, 0, 0, 76, 'Crystal', + 'Buffs', 'Fortify', 224, '', 0, 0, 1, 1, 0, 'Keeper', 'Scheol Garden'), + (210517, 'Nano Crystal (Guardian Ward)', 42452, 210516, 'Guardian Ward', 117961, 0, 0, 0, 134, 'Crystal', + 'Buffs', 'Fortify', 224, '', 0, 0, 1, 2, 0, 'Keeper', 'Adonis Sanctuary'), + (210519, 'Nano Crystal (Sentinel Ward)', 42452, 210518, 'Sentinel Ward', 117961, 0, 0, 0, 199, 'Crystal', + 'Buffs', 'Fortify', 224, '', 0, 0, 1, 3, 0, 'Keeper', 'Inferno Garden'), + (210529, 'Nano Crystal (Adaptive Ambient Restoration)', 297600, 210528, 'Adaptive Ambient Restoration', 297592, + 0, 0, 0, 1, 'Crystal', 'Buffs', 'Aura_HP_and_NP_Regeneration_Buffs', 527, 'Health', 0, 0, 0, 0, 0, 'Keeper', + 'RK Store'), + (210531, 'Nano Crystal (Ambient Alleviation)', 12228, 210530, 'Ambient Alleviation', 44245, 0, 0, 0, 26, + 'Crystal', 'Buffs', 'Aura_HP_and_NP_Regeneration_Buffs', 527, 'Health', 0, 0, 0, 0, 0, 'Keeper', + 'No longer drops'), + (210533, 'Nano Crystal (Ambient Rehabilitation)', 12256, 210532, 'Ambient Rehabilitation', 44245, 0, 0, 0, 61, + 'Crystal', 'Buffs', 'Aura_HP_and_NP_Regeneration_Buffs', 527, 'Health', 0, 0, 0, 0, 0, 'Keeper', + 'No longer drops'), + (210535, 'Nano Crystal (Ambient Rejuvenation)', 12256, 210534, 'Ambient Rejuvenation', 44245, 0, 0, 0, 94, + 'Crystal', 'Buffs', 'Aura_HP_and_NP_Regeneration_Buffs', 527, 'Health', 0, 0, 0, 0, 0, 'Keeper', + 'No longer drops'), + (210537, 'Nano Crystal (Adaptive Ambient Regeneration)', 300458, 210536, 'Adaptive Ambient Regeneration', 297593, + 0, 0, 0, 129, 'Crystal', 'Buffs', 'Aura_HP_and_NP_Regeneration_Buffs', 527, 'Health', 0, 0, 1, 2, 0, 'Keeper', + 'Mission Reward'), + (210539, 'Nano Crystal (Ambient Regeneration)', 42448, 210538, 'Ambient Regeneration', 44245, 0, 0, 0, 156, + 'Crystal', 'Buffs', 'Aura_HP_and_NP_Regeneration_Buffs', 527, 'Health', 0, 0, 0, 0, 0, 'Keeper', + 'No longer drops'), + (210541, 'Nano Crystal (Ambient Amelioration)', 42448, 210540, 'Ambient Amelioration', 44245, 0, 0, 0, 177, + 'Crystal', 'Buffs', 'Aura_HP_and_NP_Regeneration_Buffs', 527, 'Health', 0, 0, 0, 0, 0, 'Keeper', + 'No longer drops'), + (210543, 'Nano Crystal (Ambient Revitalization)', 42448, 210542, 'Ambient Revitalization', 44245, 0, 0, 0, 187, + 'Crystal', 'Buffs', 'Aura_HP_and_NP_Regeneration_Buffs', 527, 'Health', 0, 0, 0, 0, 0, 'Keeper', + 'No longer drops'), + (210590, 'Nano Crystal (Adaptive Tone of Clarity)', 300461, 210589, 'Adaptive Tone of Clarity', 300465, 0, 0, 0, + 2, 'Crystal', 'Buffs', 'Aura_HP_and_NP_Regeneration_Buffs', 527, 'Health_and_Nano', 527, 0, 0, 0, 0, 'Keeper', + 'SL Loot'), + (210592, 'Nano Crystal (Tone of Accord)', 12228, 210591, 'Tone of Accord', 38985, 0, 0, 0, 24, 'Crystal', + 'Buffs', 'Aura_HP_and_NP_Regeneration_Buffs', 527, 'Nano', 0, 0, 0, 0, 0, 'Keeper', 'No longer drops'), + (210594, 'Nano Crystal (Tone of Purity)', 12256, 210593, 'Tone of Purity', 38985, 0, 0, 0, 58, 'Crystal', + 'Buffs', 'Aura_HP_and_NP_Regeneration_Buffs', 527, 'Nano', 0, 0, 0, 0, 0, 'Keeper', 'No longer drops'), + (210596, 'Nano Crystal (Tone of Tranquility)', 12256, 210595, 'Tone of Tranquility', 38985, 0, 0, 0, 92, + 'Crystal', 'Buffs', 'Aura_HP_and_NP_Regeneration_Buffs', 527, 'Nano', 0, 0, 0, 0, 0, 'Keeper', + 'No longer drops'), + (210598, 'Nano Crystal (Adaptive Tone of Harmony)', 300462, 210597, 'Adaptive Tone of Harmony', 300466, 0, 0, 0, + 126, 'Crystal', 'Buffs', 'Aura_HP_and_NP_Regeneration_Buffs', 527, 'Health_and_Nano', 527, 0, 1, 2, 0, 'Keeper', + 'Mission Reward'), + (210600, 'Nano Crystal (Tone of Rapport)', 42448, 210599, 'Tone of Rapport', 38985, 0, 0, 0, 151, 'Crystal', + 'Buffs', 'Aura_HP_and_NP_Regeneration_Buffs', 527, 'Nano', 0, 0, 0, 0, 0, 'Keeper', 'No longer drops'), + (210602, 'Nano Crystal (Tone of Benevolence)', 42448, 210601, 'Tone of Benevolence', 38985, 0, 0, 0, 175, + 'Crystal', 'Buffs', 'Aura_HP_and_NP_Regeneration_Buffs', 527, 'Nano', 0, 0, 0, 0, 0, 'Keeper', + 'No longer drops'), + (210604, 'Nano Crystal (Tone of Unity)', 42448, 210603, 'Tone of Unity', 38985, 0, 0, 0, 193, 'Crystal', 'Buffs', + 'Aura_HP_and_NP_Regeneration_Buffs', 527, 'Nano', 0, 0, 0, 0, 0, 'Keeper', 'No longer drops'), + (210612, 'Nano Crystal (Vengeance of the Loyal)', 12225, 210611, 'Vengeance of the Loyal', 39028, 0, 0, 0, 8, + 'Crystal', 'Buffs', 'Aura_Damage/Snare_Reduction_Buffs', 529, 'Vengance', 0, 0, 0, 0, 0, 'Keeper', 'RK Store'), + (210614, 'Nano Crystal (Vengeance of the Steadfast)', 12225, 210613, 'Vengeance of the Steadfast', 39028, 0, 0, + 0, 35, 'Crystal', 'Buffs', 'Aura_Damage/Snare_Reduction_Buffs', 529, 'Vengance', 0, 0, 0, 0, 0, 'Keeper', + 'RK Store'), + (210616, 'Nano Crystal (Vengeance of the Resolute)', 12258, 210615, 'Vengeance of the Resolute', 39028, 0, 0, 0, + 72, 'Crystal', 'Buffs', 'Aura_Damage/Snare_Reduction_Buffs', 529, 'Vengance', 0, 0, 0, 0, 0, 'Keeper', + 'RK Store'), + (210618, 'Nano Crystal (Vengeance of the Virtuous)', 42450, 210617, 'Vengeance of the Virtuous', 39028, 0, 0, 0, + 115, 'Crystal', 'Buffs', 'Aura_Damage/Snare_Reduction_Buffs', 529, 'Vengance', 0, 0, 0, 0, 0, 'Keeper', + 'RK Store'), + (210620, 'Nano Crystal (Vengeance of the Pure)', 42450, 210619, 'Vengeance of the Pure', 39028, 0, 0, 0, 203, + 'Crystal', 'Buffs', 'Aura_Damage/Snare_Reduction_Buffs', 529, 'Vengance', 0, 0, 1, 4, 0, 'Keeper', 'RK Dyna'), + (210622, 'Nano Crystal (Vengeance of the Immaculate)', 42450, 210621, 'Vengeance of the Immaculate', 39028, 0, 0, + 0, 214, 'Crystal', 'Buffs', 'Aura_Damage/Snare_Reduction_Buffs', 529, 'Vengance', 0, 0, 1, 4, 0, 'Keeper', + 'RK Dyna'), + (210672, 'Nano Crystal (Imminence of Scrimmage)', 12226, 210671, 'Imminence of Scrimmage', 38900, 0, 0, 0, 31, + 'Crystal', 'Buffs', 'Aura_Absorb/Reflect/AMS_Buffs', 528, 'Imminence', 0, 0, 0, 0, 0, 'Keeper', 'RK Store'), + (210674, 'Nano Crystal (Imminence of Conflict)', 12259, 210673, 'Imminence of Conflict', 38900, 0, 0, 0, 64, + 'Crystal', 'Buffs', 'Aura_Absorb/Reflect/AMS_Buffs', 528, 'Imminence', 0, 0, 0, 0, 0, 'Keeper', 'RK Store'), + (210676, 'Nano Crystal (Imminence of Battle)', 12259, 210675, 'Imminence of Battle', 38900, 0, 0, 0, 87, + 'Crystal', 'Buffs', 'Aura_Absorb/Reflect/AMS_Buffs', 528, 'Imminence', 0, 0, 0, 0, 0, 'Keeper', 'RK Store'), + (210678, 'Nano Crystal (Imminence of Havoc)', 42451, 210677, 'Imminence of Havoc', 38900, 0, 0, 0, 118, + 'Crystal', 'Buffs', 'Aura_Absorb/Reflect/AMS_Buffs', 528, 'Imminence', 0, 0, 0, 0, 0, 'Keeper', 'RK Store'), + (210680, 'Nano Crystal (Imminence of Warfare)', 42451, 210679, 'Imminence of Warfare', 38900, 0, 0, 0, 146, + 'Crystal', 'Buffs', 'Aura_Absorb/Reflect/AMS_Buffs', 528, 'Imminence', 0, 0, 0, 0, 0, 'Keeper', + 'Mission Reward'), + (210682, 'Nano Crystal (Imminence of Carnage)', 42451, 210681, 'Imminence of Carnage', 38900, 0, 0, 0, 213, + 'Crystal', 'Buffs', 'Aura_Absorb/Reflect/AMS_Buffs', 528, 'Imminence', 0, 0, 1, 4, 0, 'Keeper', 'RK Dyna'), + (210690, 'Nano Crystal (Barrier of the Loyal)', 12260, 210689, 'Barrier of the Loyal', 118419, 0, 0, 0, 66, + 'Crystal', 'Buffs', 'Aura_Absorb/Reflect/AMS_Buffs', 528, 'Barrier', 0, 0, 0, 0, 0, 'Keeper', 'RK Store'), + (210692, 'Nano Crystal (Barrier of the Staunch)', 12260, 210691, 'Barrier of the Staunch', 118019, 0, 0, 0, 88, + 'Crystal', 'Buffs', 'Aura_Absorb/Reflect/AMS_Buffs', 528, 'Barrier', 0, 0, 0, 0, 0, 'Keeper', 'RK Store'), + (210694, 'Nano Crystal (Barrier of the Devoted)', 42452, 210693, 'Barrier of the Devoted', 118020, 0, 0, 0, 105, + 'Crystal', 'Buffs', 'Aura_Absorb/Reflect/AMS_Buffs', 528, 'Barrier', 0, 0, 0, 0, 0, 'Keeper', 'RK Store'), + (210696, 'Nano Crystal (Barrier of the Veracious)', 42452, 210695, 'Barrier of the Veracious', 118021, 0, 0, 0, + 131, 'Crystal', 'Buffs', 'Aura_Absorb/Reflect/AMS_Buffs', 528, 'Barrier', 0, 0, 0, 0, 0, 'Keeper', + 'Mission Reward'), + (210698, 'Nano Crystal (Barrier of the Resolute)', 42452, 210697, 'Barrier of the Resolute', 118022, 0, 0, 0, + 166, 'Crystal', 'Buffs', 'Aura_Absorb/Reflect/AMS_Buffs', 528, 'Barrier', 0, 0, 0, 0, 0, 'Keeper', + 'Mission Reward'), + (210700, 'Nano Crystal (Barrier of the Righteous)', 42452, 210699, 'Barrier of the Righteous', 118023, 0, 0, 0, + 198, 'Crystal', 'Buffs', 'Aura_Absorb/Reflect/AMS_Buffs', 528, 'Barrier', 0, 0, 0, 0, 0, 'Keeper', + 'Mission Reward'), + (210708, 'Nano Crystal (Enervate Bonds)', 12225, 210707, 'Enervate Bonds', 38911, 0, 0, 0, 41, 'Crystal', + 'Buffs', 'Aura_Damage/Snare_Reduction_Buffs', 529, 'Enervate', 0, 0, 0, 0, 0, 'Keeper', 'RK Store'), + (210710, 'Nano Crystal (Enervate Constraints)', 12258, 210709, 'Enervate Constraints', 38911, 0, 0, 0, 71, + 'Crystal', 'Buffs', 'Aura_Damage/Snare_Reduction_Buffs', 529, 'Enervate', 0, 0, 0, 0, 0, 'Keeper', 'RK Store'), + (210712, 'Nano Crystal (Enervate Impediments)', 42450, 210711, 'Enervate Impediments', 38911, 0, 0, 0, 109, + 'Crystal', 'Buffs', 'Aura_Damage/Snare_Reduction_Buffs', 529, 'Enervate', 0, 0, 0, 0, 0, 'Keeper', 'RK Store'), + (210714, 'Nano Crystal (Enervate Shackles)', 42450, 210713, 'Enervate Shackles', 38911, 0, 0, 0, 141, 'Crystal', + 'Buffs', 'Aura_Damage/Snare_Reduction_Buffs', 529, 'Enervate', 0, 0, 0, 0, 0, 'Keeper', 'Mission Reward'), + (210716, 'Nano Crystal (Enervate Bindings)', 42450, 210715, 'Enervate Bindings', 38911, 0, 0, 0, 162, 'Crystal', + 'Buffs', 'Aura_Damage/Snare_Reduction_Buffs', 529, 'Enervate', 0, 0, 0, 0, 0, 'Keeper', 'Mission Reward'), + (210718, 'Nano Crystal (Enervate Imprisonment)', 42450, 210717, 'Enervate Imprisonment', 38911, 0, 0, 0, 194, + 'Crystal', 'Buffs', 'Aura_Damage/Snare_Reduction_Buffs', 529, 'Enervate', 0, 0, 0, 0, 0, 'Keeper', + 'Mission Reward'), + (210729, 'Nano Crystal (Fury)', 12226, 210730, 'Fury', 39250, 0, 0, 0, 50, 'Crystal', 'Combat', 'Fury', 735, '', + 0, 0, 1, 1, 0, 'Keeper', 'SL Mob'), + (210733, 'Nano Crystal (Slap of the Zombie)', 12226, 210732, 'Slap of the Zombie', 39204, 0, 0, 0, 5, 'Crystal', + 'Buffs', 'Martial_Arts_Buffs', 209, '', 0, 0, 0, 0, 0, 'Shade', 'RK Store'), + (210735, 'Nano Crystal (Knock of the Poltergeist)', 12226, 210734, 'Knock of the Poltergeist', 39204, 0, 0, 0, + 29, 'Crystal', 'Buffs', 'Martial_Arts_Buffs', 209, '', 0, 0, 0, 0, 0, 'Shade', 'RK Store'), + (210737, 'Nano Crystal (Kick of the Phantom)', 12259, 210736, 'Kick of the Phantom', 39204, 0, 0, 0, 71, + 'Crystal', 'Buffs', 'Martial_Arts_Buffs', 209, '', 0, 0, 0, 0, 0, 'Shade', 'RK Store'), + (210739, 'Nano Crystal (Hand of the Shadow)', 42451, 210738, 'Hand of the Shadow', 39204, 0, 0, 0, 106, + 'Crystal', 'Buffs', 'Martial_Arts_Buffs', 209, '', 0, 0, 0, 0, 0, 'Shade', 'RK Store'), + (210741, 'Nano Crystal (Touch of the Specter)', 42451, 210740, 'Touch of the Specter', 39204, 0, 0, 0, 143, + 'Crystal', 'Buffs', 'Martial_Arts_Buffs', 209, '', 0, 0, 0, 0, 0, 'Shade', 'Mission Reward'), + (210743, 'Nano Crystal (Voice of the Banshee)', 42451, 210742, 'Voice of the Banshee', 39204, 0, 0, 0, 174, + 'Crystal', 'Buffs', 'Martial_Arts_Buffs', 209, '', 0, 0, 0, 0, 0, 'Shade', 'Mission Reward'), + (210745, 'Nano Crystal (Kiss of the Vampire)', 42451, 210744, 'Kiss of the Vampire', 39204, 0, 0, 0, 200, + 'Crystal', 'Buffs', 'Martial_Arts_Buffs', 209, '', 0, 0, 0, 0, 0, 'Shade', 'Mission Reward'), + (210747, 'Nano Crystal (Sneak)', 12226, 210746, 'Sneak', 39221, 0, 0, 0, 36, 'Crystal', 'Buffs', 'Agility_Buffs', + 195, '', 0, 0, 0, 0, 0, 'Shade', 'SL Loot'), + (210749, 'Nano Crystal (Mugger)', 12259, 210748, 'Mugger', 39221, 0, 0, 0, 82, 'Crystal', 'Buffs', + 'Agility_Buffs', 195, '', 0, 0, 0, 0, 0, 'Shade', 'RK Store'), + (210751, 'Nano Crystal (Scrounger)', 42451, 210750, 'Scrounger', 39221, 0, 0, 0, 135, 'Crystal', 'Buffs', + 'Agility_Buffs', 195, '', 0, 0, 0, 0, 0, 'Shade', 'Mission Reward'), + (210753, 'Nano Crystal (Prowler)', 42451, 210752, 'Prowler', 39221, 0, 0, 0, 188, 'Crystal', 'Buffs', + 'Agility_Buffs', 195, '', 0, 0, 0, 0, 0, 'Shade', 'Mission Reward'), + (210788, 'Nano Crystal (Footpad Apprentice)', 301590, 210787, 'Footpad Apprentice', 301588, 0, 0, 0, 22, + 'Crystal', 'Buffs', 'Sneak_Attack_Buffs', 208, '', 0, 0, 0, 0, 0, 'Adventurer', 'SL Loot'), + (210790, 'Nano Crystal (Silent Dagger)', 301590, 210789, 'Silent Dagger', 301588, 0, 0, 0, 66, 'Crystal', + 'Buffs', 'Sneak_Attack_Buffs', 208, '', 0, 0, 0, 0, 0, 'Adventurer', 'SL Loot'), + (210792, 'Nano Crystal (Dagger in the Back)', 301590, 210791, 'Dagger in the Back', 301588, 0, 0, 0, 108, + 'Crystal', 'Buffs', 'Sneak_Attack_Buffs', 208, '', 0, 0, 0, 0, 0, 'Adventurer', 'SL Loot'), + (210794, 'Nano Crystal (Backpiercer)', 301590, 210793, 'Backpiercer', 301588, 0, 0, 0, 154, 'Crystal', 'Buffs', + 'Sneak_Attack_Buffs', 208, '', 0, 0, 0, 0, 0, 'Adventurer', 'Mission Reward'), + (210796, 'Nano Crystal (Shuffle of the Rogue)', 301590, 210795, 'Shuffle of the Rogue', 301588, 0, 0, 0, 180, + 'Crystal', 'Buffs', 'Sneak_Attack_Buffs', 208, '', 0, 0, 0, 0, 0, 'Adventurer', 'Mission Reward'), + (210798, 'Nano Crystal (Backstabber)', 301590, 210797, 'Backstabber', 301588, 0, 0, 0, 196, 'Crystal', 'Buffs', + 'Sneak_Attack_Buffs', 208, '', 0, 0, 0, 0, 0, 'Adventurer', 'Mission Reward'), + (210805, 'Nano Crystal (Dual Defender)', 12226, 210804, 'Dual Defender', 39267, 0, 0, 0, 14, 'Crystal', 'Buffs', + 'Multiwield_Buffs', 245, '', 0, 0, 0, 0, 0, 'Shade', 'RK Store'), + (210807, 'Nano Crystal (Double Cover)', 12226, 210806, 'Double Cover', 39267, 0, 0, 0, 44, 'Crystal', 'Buffs', + 'Multiwield_Buffs', 245, '', 0, 0, 0, 0, 0, 'Shade', 'RK Store'), + (210809, 'Nano Crystal (Twice the Shield)', 12259, 210808, 'Twice the Shield', 39267, 0, 0, 0, 97, 'Crystal', + 'Buffs', 'Multiwield_Buffs', 245, '', 0, 0, 0, 0, 0, 'Shade', 'RK Store'), + (210811, 'Nano Crystal (Double Fence)', 42451, 210810, 'Double Fence', 39267, 0, 0, 0, 148, 'Crystal', 'Buffs', + 'Multiwield_Buffs', 245, '', 0, 0, 0, 0, 0, 'Shade', 'Mission Reward'), + (210813, 'Nano Crystal (Duplex Wall)', 42451, 210812, 'Duplex Wall', 39267, 0, 0, 0, 195, 'Crystal', 'Buffs', + 'Multiwield_Buffs', 245, '', 0, 0, 0, 0, 0, 'Shade', 'Mission Reward'), + (211143, 'Nano Crystal (Puncture of the Tarasque)', 42451, 211142, 'Puncture of the Tarasque', 39247, 0, 0, 0, + 198, 'Crystal', 'Buffs', 'Shade_Piercing_Buffs', 546, '', 0, 0, 0, 0, 0, 'Shade', 'Mission Reward'), + (211145, 'Nano Crystal (Master Piercer)', 42451, 211144, 'Master Piercer', 39247, 0, 0, 0, 163, 'Crystal', + 'Buffs', 'Shade_Piercing_Buffs', 546, '', 0, 0, 0, 0, 0, 'Shade', 'Mission Reward'), + (211147, 'Nano Crystal (Probe of Death)', 42451, 211146, 'Probe of Death', 39247, 0, 0, 0, 122, 'Crystal', + 'Buffs', 'Shade_Piercing_Buffs', 546, '', 0, 0, 0, 0, 0, 'Shade', 'RK Store'), + (211149, 'Nano Crystal (Piercing Gash)', 12259, 211148, 'Piercing Gash', 39247, 0, 0, 0, 87, 'Crystal', 'Buffs', + 'Shade_Piercing_Buffs', 546, '', 0, 0, 0, 0, 0, 'Shade', 'RK Store'), + (211151, 'Nano Crystal (Piercing Tooth)', 12226, 211150, 'Piercing Tooth', 39247, 0, 0, 0, 49, 'Crystal', + 'Buffs', 'Shade_Piercing_Buffs', 546, '', 0, 0, 0, 0, 0, 'Shade', 'RK Store'), + (211153, 'Nano Crystal (Sharpen Dagger)', 12226, 211152, 'Sharpen Dagger', 39247, 0, 0, 0, 19, 'Crystal', + 'Buffs', 'Shade_Piercing_Buffs', 546, '', 0, 0, 0, 0, 0, 'Shade', 'RK Store'), + (211155, 'Nano Crystal (Whetstone Effect)', 12226, 211154, 'Whetstone Effect', 39247, 0, 0, 0, 1, 'Crystal', + 'Buffs', 'Shade_Piercing_Buffs', 546, '', 0, 0, 0, 0, 0, 'Shade', 'Starter equipment'), + (211159, 'Nano Crystal (Transfuse Vigor)', 12259, 211158, 'Transfuse Vigor', 39228, 0, 0, 0, 55, 'Crystal', + 'Buffs', 'Strength/Stamina/Agility_Buffs', 539, '', 0, 0, 0, 0, 0, 'Keeper', 'RK Store'), + (211161, 'Nano Crystal (A Keeper''s Physique)', 42451, 211160, 'A Keeper''s Physique', 39228, 0, 0, 0, 116, + 'Crystal', 'Buffs', 'Strength/Stamina/Agility_Buffs', 539, '', 0, 0, 0, 0, 0, 'Keeper', 'RK Store'), + (211163, 'Nano Crystal (Guardian of Might)', 42451, 211162, 'Guardian of Might', 39228, 0, 0, 0, 170, 'Crystal', + 'Buffs', 'Strength/Stamina/Agility_Buffs', 539, '', 0, 0, 0, 0, 0, 'Keeper', 'RK Dyna'), + (211165, 'Nano Crystal (Sidestep)', 12226, 211164, 'Sidestep', 39221, 0, 0, 0, 40, 'Crystal', 'Buffs', + 'Evade/Dodge/Duck_Buffs', 545, '', 0, 0, 0, 0, 0, 'Keeper', 'RK Store'), + (211167, 'Nano Crystal (Quicken Reflexes)', 12259, 211166, 'Quicken Reflexes', 39221, 0, 0, 0, 80, 'Crystal', + 'Buffs', 'Evade/Dodge/Duck_Buffs', 545, '', 0, 0, 0, 0, 0, 'Keeper', 'RK Store'), + (211169, 'Nano Crystal (Sharpen Instincts)', 42451, 211168, 'Sharpen Instincts', 39221, 0, 0, 0, 135, 'Crystal', + 'Buffs', 'Evade/Dodge/Duck_Buffs', 545, '', 0, 0, 0, 0, 0, 'Keeper', 'RK Dyna'), + (211171, 'Nano Crystal (Elude Pain)', 42451, 211170, 'Elude Pain', 39221, 0, 0, 0, 190, 'Crystal', 'Buffs', + 'Evade/Dodge/Duck_Buffs', 545, '', 0, 0, 0, 0, 0, 'Keeper', 'RK Dyna'), + (215265, 'Nano Crystal (Composite Physical Special Expertise)', 297521, 215264, + 'Composite Physical Special Expertise', 297523, 0, 0, 0, 25, 'Crystal', 'Buffs_-_Melee_Special', 'Composite', 0, + '', 0, 0, 0, 0, 0, 'General', 'RK Store'), + (216699, 'Nano Crystal (Rumble of Distant Thunder)', 12258, 216698, 'Rumble of Distant Thunder', 16350, 0, 0, 0, + 77, 'Crystal', 'Buffs', 'Controlled_Destruction_Buffs', 222, '', 0, 0, 1, 1, 0, 'Martial Artist', + 'Scheol Garden'), + (217040, 'Nano Crystal (Intense Micro Entanglement)', 12224, 217039, 'Intense Micro Entanglement', 46279, 0, 0, + 0, 26, 'Crystal', 'Crowd_Control', 'Snare', 145, 'Target', 0, 0, 1, 1, 0, 'Fixer', 'Elysium Garden'), + (217671, 'Nano Crystal (Aggressive Reptile)', 300923, 217670, 'Aggressive Reptile', 295695, 0, 0, 0, 220, + 'Crystal', 'Morphs', 'Pit_Lizard', 0, '', 0, 0, 1, 4, 0, 'Adventurer', 'Pandemonium Garden'), + (217681, 'Nano Crystal (Growling Predator)', 300918, 217680, 'Growling Predator', 300917, 0, 0, 0, 219, + 'Crystal', 'Morphs', 'Polymorph', 223, '', 0, 0, 1, 4, 0, 'Adventurer', 'Pandemonium Garden'), + (218061, 'Nano Crystal (Fake Out)', 12226, 218060, 'Fake Out', 16234, 0, 0, 0, 47, 'Crystal', 'Buffs', + 'Major_Evasion_Buffs', 144, 'Percent', 0, 0, 1, 1, 0, 'Martial Artist', 'Elysium Sanctuary'), + (218063, 'Nano Crystal (Misleading Conduct)', 42451, 218062, 'Misleading Conduct', 16234, 0, 0, 0, 128, + 'Crystal', 'Buffs', 'Major_Evasion_Buffs', 144, 'Percent', 0, 0, 1, 2, 0, 'Martial Artist', 'Adonis Sanctuary'), + (218065, 'Nano Crystal (Ward Blow)', 42451, 218064, 'Ward Blow', 16234, 0, 0, 0, 181, 'Crystal', 'Buffs', + 'Major_Evasion_Buffs', 144, 'Percent', 0, 0, 1, 3, 0, 'Martial Artist', 'Inferno Garden'), + (218067, 'Nano Crystal (Shuffle Step)', 42451, 218066, 'Shuffle Step', 16234, 0, 0, 0, 205, 'Crystal', 'Buffs', + 'Major_Evasion_Buffs', 144, 'Percent', 0, 0, 1, 4, 0, 'Martial Artist', 'Inferno Sanctuary'), + (218069, 'Nano Crystal (Elude Step)', 42451, 218068, 'Elude Step', 16234, 0, 0, 0, 214, 'Crystal', 'Buffs', + 'Major_Evasion_Buffs', 144, 'Percent', 0, 0, 1, 4, 0, 'Martial Artist', 'Pandemonium Garden'), + (218071, 'Nano Crystal (Stutter Step)', 42451, 218070, 'Stutter Step', 16234, 0, 0, 0, 220, 'Crystal', 'Buffs', + 'Major_Evasion_Buffs', 144, 'Percent', 0, 0, 1, 4, 0, 'Martial Artist', 'Pandemonium Garden'), + (218073, 'Nano Crystal (Aegis of Stone)', 42451, 218072, 'Aegis of Stone', 16302, 0, 0, 0, 103, 'Crystal', + 'Buffs', 'Nano_Resist_Buffs_', 835, '', 0, 1, 1, 1, 0, 'Martial Artist', 'Adonis Garden'), + (218075, 'Nano Crystal (Aegis of Metal)', 42451, 218074, 'Aegis of Metal', 16302, 0, 0, 0, 198, 'Crystal', + 'Buffs', 'Nano_Resist_Buffs_', 835, '', 0, 1, 1, 3, 0, 'Martial Artist', 'Inferno Garden'), + (218077, 'Nano Crystal (Aegis of Notum)', 42451, 218076, 'Aegis of Notum', 16302, 0, 0, 0, 217, 'Crystal', + 'Buffs', 'Nano_Resist_Buffs_', 835, '', 0, 0, 1, 4, 0, 'Martial Artist', 'Pandemonium Garden'), + (218079, 'Nano Crystal (Petals on Water)', 42450, 218078, 'Petals on Water', 16350, 0, 0, 0, 152, 'Crystal', + 'Buffs', 'Controlled_Destruction_Buffs', 222, '', 0, 0, 1, 2, 0, 'Martial Artist', 'Penumbra Garden'), + (218081, 'Nano Crystal (Dragon Stance)', 42450, 218080, 'Dragon Stance', 16350, 0, 0, 0, 191, 'Crystal', 'Buffs', + 'Controlled_Destruction_Buffs', 222, '', 0, 0, 1, 3, 0, 'Martial Artist', 'Inferno Garden'), + (218083, 'Nano Crystal (Smell of Approaching Rain)', 42450, 218082, 'Smell of Approaching Rain', 16350, 0, 0, 0, + 203, 'Crystal', 'Buffs', 'Controlled_Destruction_Buffs', 222, '', 0, 0, 1, 4, 0, 'Martial Artist', + 'Inferno Sanctuary'), + (218085, 'Nano Crystal (Grace of the Emperor Crane)', 42450, 218084, 'Grace of the Emperor Crane', 16350, 0, 0, + 0, 209, 'Crystal', 'Buffs', 'Controlled_Destruction_Buffs', 222, '', 0, 0, 1, 4, 0, 'Martial Artist', + 'Inferno Sanctuary'), + (218087, 'Nano Crystal (Peaceful Midnight Sky)', 42450, 218086, 'Peaceful Midnight Sky', 16350, 0, 0, 0, 213, + 'Crystal', 'Buffs', 'Controlled_Destruction_Buffs', 222, '', 0, 0, 1, 4, 0, 'Martial Artist', + 'Pandemonium Garden'), + (218089, 'Nano Crystal (Ripples on the Calm Pond)', 42450, 218088, 'Ripples on the Calm Pond', 16350, 0, 0, 0, + 216, 'Crystal', 'Buffs', 'Controlled_Destruction_Buffs', 222, '', 0, 0, 1, 4, 0, 'Martial Artist', + 'Pandemonium Garden'), + (218091, 'Nano Crystal (Autumn Leaves)', 42450, 218090, 'Autumn Leaves', 16350, 0, 0, 0, 219, 'Crystal', 'Buffs', + 'Controlled_Destruction_Buffs', 222, '', 0, 0, 1, 4, 0, 'Martial Artist', 'Pandemonium Garden'), + (218093, 'Nano Crystal (Spark Shower)', 12224, 218092, 'Spark Shower', 39803, 0, 0, 0, 50, 'Crystal', 'Nukes', + 'Shadowlands', 0, '', 0, 0, 1, 1, 0, 'Nano-Technician', 'Elysium Sanctuary'), + (218095, 'Nano Crystal (Chilled Touch)', 12257, 218094, 'Chilled Touch', 39806, 0, 0, 0, 55, 'Crystal', 'Nukes', + 'Shadowlands', 0, '', 0, 0, 1, 1, 0, 'Nano-Technician', 'Elysium Sanctuary'), + (218097, 'Nano Crystal (Caring Needle)', 12257, 218096, 'Caring Needle', 39800, 0, 0, 0, 60, 'Crystal', 'Nukes', + 'Shadowlands', 0, '', 0, 0, 1, 1, 0, 'Nano-Technician', 'Scheol Garden'), + (218099, 'Nano Crystal (Astinus''s Stellar Pulse)', 12257, 218098, 'Astinus''s Stellar Pulse', 39815, 0, 0, 0, + 75, 'Crystal', 'Nukes', 'Shadowlands', 0, '', 0, 0, 1, 1, 0, 'Nano-Technician', 'Scheol Garden'), + (218101, 'Nano Crystal (Ziana''s Energy Wave)', 12257, 218100, 'Ziana''s Energy Wave', 39793, 0, 0, 0, 83, + 'Crystal', 'Nukes', 'Shadowlands', 0, '', 0, 0, 1, 1, 0, 'Nano-Technician', 'Scheol Sanctuary'), + (218103, 'Nano Crystal (Ariu''s Neutron Annihilator)', 12257, 218102, 'Ariu''s Neutron Annihilator', 39815, 0, 0, + 0, 95, 'Crystal', 'Nukes', 'Shadowlands', 0, '', 0, 0, 1, 1, 0, 'Nano-Technician', 'Scheol Sanctuary'), + (218105, 'Nano Crystal (Blood of Hephaestos)', 12257, 218104, 'Blood of Hephaestos', 39806, 0, 0, 0, 100, + 'Crystal', 'Nukes', 'Shadowlands', 0, '', 0, 0, 1, 1, 0, 'Nano-Technician', 'Adonis Garden'), + (218107, 'Nano Crystal (Vital Corruptor)', 12257, 218106, 'Vital Corruptor', 39801, 0, 0, 0, 75, 'Crystal', + 'Nukes', 'Shadowlands', 0, '', 0, 0, 1, 2, 0, 'Nano-Technician', 'Scheol Garden'), + (218109, 'Nano Crystal (Positronic Fluctuation)', 12257, 218108, 'Positronic Fluctuation', 39793, 0, 0, 0, 84, + 'Crystal', 'Nukes', 'Shadowlands', 0, '', 0, 0, 1, 2, 0, 'Nano-Technician', 'Scheol Sanctuary'), + (218111, 'Nano Crystal (Conator''s Collapsing Hadron String)', 12257, 218110, + 'Conator''s Collapsing Hadron String', 39816, 0, 0, 0, 93, 'Crystal', 'Nukes', 'Shadowlands', 0, '', 0, 0, 1, 2, + 0, 'Nano-Technician', 'Scheol Sanctuary'), + (218113, 'Nano Crystal (Combustive Envelopment)', 42449, 218112, 'Combustive Envelopment', 39807, 0, 0, 0, 102, + 'Crystal', 'Nukes', 'Shadowlands', 0, '', 0, 0, 1, 2, 0, 'Nano-Technician', 'Adonis Garden'), + (218115, 'Nano Crystal (Searing Dioxin Shower)', 42449, 218114, 'Searing Dioxin Shower', 39795, 0, 0, 0, 111, + 'Crystal', 'Nukes', 'Shadowlands', 0, '', 0, 0, 1, 2, 0, 'Nano-Technician', 'Adonis Garden'), + (218117, 'Nano Crystal (The Spider''s Secret)', 42449, 218116, 'The Spider''s Secret', 39801, 0, 0, 0, 120, + 'Crystal', 'Nukes', 'Shadowlands', 0, '', 0, 0, 1, 2, 0, 'Nano-Technician', 'Adonis Sanctuary'), + (218119, 'Nano Crystal (Acidic Droplets)', 42449, 218118, 'Acidic Droplets', 39795, 0, 0, 0, 129, 'Crystal', + 'Nukes', 'Shadowlands', 0, '', 0, 0, 1, 2, 0, 'Nano-Technician', 'Adonis Sanctuary'), + (218121, 'Nano Crystal (Slithering Flames)', 42449, 218120, 'Slithering Flames', 39807, 0, 0, 0, 138, 'Crystal', + 'Nukes', 'Shadowlands', 0, '', 0, 0, 1, 2, 0, 'Nano-Technician', 'Adonis Sanctuary'), + (218123, 'Nano Crystal (Chilling Presence)', 42449, 218122, 'Chilling Presence', 39798, 0, 0, 0, 147, 'Crystal', + 'Nukes', 'Shadowlands', 0, '', 0, 0, 1, 2, 0, 'Nano-Technician', 'Penumbra Garden'), + (218125, 'Nano Crystal (Entropy''s Advance)', 42449, 218124, 'Entropy''s Advance', 39816, 0, 0, 0, 156, + 'Crystal', 'Nukes', 'Shadowlands', 0, '', 0, 0, 1, 2, 0, 'Nano-Technician', 'Penumbra Garden'), + (218127, 'Nano Crystal (Enfraam''s Blistering Blast)', 42449, 218126, 'Enfraam''s Blistering Blast', 45168, 0, 0, + 0, 125, 'Crystal', 'Nukes', 'Shadowlands', 0, '', 0, 0, 1, 3, 0, 'Nano-Technician', 'Adonis Sanctuary'), + (218129, 'Nano Crystal (Pestilential Stream)', 42449, 218128, 'Pestilential Stream', 45174, 0, 0, 0, 137, + 'Crystal', 'Nukes', 'Shadowlands', 0, '', 0, 0, 1, 2, 0, 'Nano-Technician', 'Adonis Sanctuary'), + (218131, 'Nano Crystal (Enfraam''s Glacial Encasement)', 42449, 218130, 'Enfraam''s Glacial Encasement', 45171, + 0, 0, 0, 149, 'Crystal', 'Nukes', 'Shadowlands', 0, '', 0, 0, 1, 3, 0, 'Nano-Technician', 'Penumbra Garden'), + (218133, 'Nano Crystal (Biomolecular Corrosion)', 42449, 218132, 'Biomolecular Corrosion', 45168, 0, 0, 0, 161, + 'Crystal', 'Nukes', 'Shadowlands', 0, '', 0, 0, 1, 3, 0, 'Nano-Technician', 'Penumbra Sanctuary'), + (218135, 'Nano Crystal (Touch of the Pyre)', 42449, 218134, 'Touch of the Pyre', 45180, 0, 0, 0, 173, 'Crystal', + 'Nukes', 'Shadowlands', 0, '', 0, 0, 1, 3, 0, 'Nano-Technician', 'Penumbra Sanctuary'), + (218137, 'Nano Crystal (Enfraam''s Ultimate Destroyer)', 42449, 218136, 'Enfraam''s Ultimate Destroyer', 45189, + 0, 0, 0, 185, 'Crystal', 'Nukes', 'Shadowlands', 0, '', 0, 0, 1, 3, 0, 'Nano-Technician', 'Inferno Garden'), + (218139, 'Nano Crystal (Implacability of the Second Law)', 42449, 218138, 'Implacability of the Second Law', + 45189, 0, 0, 0, 197, 'Crystal', 'Nukes', 'Shadowlands', 0, '', 0, 0, 1, 3, 0, 'Nano-Technician', + 'Inferno Garden'), + (218141, 'Nano Crystal (Izgimmer''s Frosty Welcome)', 42449, 218140, 'Izgimmer''s Frosty Welcome', 45172, 0, 0, + 0, 201, 'Crystal', 'Nukes', 'Shadowlands', 0, '', 0, 0, 1, 4, 0, 'Nano-Technician', 'Inferno Sanctuary'), + (218143, 'Nano Crystal (Izgimmer''s Celestial Fury)', 42449, 218142, 'Izgimmer''s Celestial Fury', 45190, 0, 0, + 0, 203, 'Crystal', 'Nukes', 'Shadowlands', 0, '', 0, 0, 1, 4, 0, 'Nano-Technician', 'Inferno Sanctuary'), + (218145, 'Nano Crystal (Izgimmer''s Infinite Slicer)', 42449, 218144, 'Izgimmer''s Infinite Slicer', 45184, 0, 0, + 0, 205, 'Crystal', 'Nukes', 'Shadowlands', 0, '', 0, 0, 1, 4, 0, 'Nano-Technician', 'Inferno Sanctuary'), + (218147, 'Nano Crystal (Izgimmer''s Interstellar Chill)', 42449, 218146, 'Izgimmer''s Interstellar Chill', 45172, + 0, 0, 0, 207, 'Crystal', 'Nukes', 'Shadowlands', 0, '', 0, 0, 1, 4, 0, 'Nano-Technician', 'Inferno Sanctuary'), + (218149, 'Nano Crystal (Izgimmer''s Positronic Annihilation)', 42449, 218148, + 'Izgimmer''s Positronic Annihilation', 45190, 0, 0, 0, 209, 'Crystal', 'Nukes', 'Shadowlands', 0, '', 0, 0, 1, + 4, 0, 'Nano-Technician', 'Inferno Sanctuary'), + (218151, 'Nano Crystal (Izgimmer''s Defilement of Being)', 42449, 218150, 'Izgimmer''s Defilement of Being', + 45175, 0, 0, 0, 211, 'Crystal', 'Nukes', 'Shadowlands', 0, '', 0, 0, 1, 4, 0, 'Nano-Technician', + 'Pandemonium Garden'), + (218153, 'Nano Crystal (Izgimmer''s Celestial Implosion)', 42449, 218152, 'Izgimmer''s Celestial Implosion', + 45190, 0, 0, 0, 212, 'Crystal', 'Nukes', 'Shadowlands', 0, '', 0, 0, 1, 4, 0, 'Nano-Technician', + 'Pandemonium Garden'), + (218155, 'Nano Crystal (Izgimmer''s Contagion)', 42449, 218154, 'Izgimmer''s Contagion', 45190, 0, 0, 0, 213, + 'Crystal', 'Nukes', 'Shadowlands', 0, '', 0, 0, 1, 4, 0, 'Nano-Technician', 'Pandemonium Garden'), + (218157, 'Nano Crystal (Izgimmer''s Quasar Flicker)', 42449, 218156, 'Izgimmer''s Quasar Flicker', 45178, 0, 0, + 0, 214, 'Crystal', 'Nukes', 'Shadowlands', 0, '', 0, 0, 1, 4, 0, 'Nano-Technician', 'Pandemonium Garden'), + (218159, 'Nano Crystal (Izgimmer''s Corrosive Tear)', 42449, 218158, 'Izgimmer''s Corrosive Tear', 45175, 0, 0, + 0, 215, 'Crystal', 'Nukes', 'Shadowlands', 0, '', 0, 0, 1, 4, 0, 'Nano-Technician', 'Pandemonium Garden'), + (218161, 'Nano Crystal (Izgimmer''s Inferno)', 42449, 218160, 'Izgimmer''s Inferno', 45181, 0, 0, 0, 216, + 'Crystal', 'Nukes', 'Shadowlands', 0, '', 0, 0, 1, 4, 0, 'Nano-Technician', 'Pandemonium Garden'), + (218163, 'Nano Crystal (Izgimmer''s Malignant Declaration)', 42449, 218162, 'Izgimmer''s Malignant Declaration', + 45175, 0, 0, 0, 217, 'Crystal', 'Nukes', 'Shadowlands', 0, '', 0, 0, 1, 4, 0, 'Nano-Technician', + 'Pandemonium Garden'), + (218165, 'Nano Crystal (Izgimmer''s Gelid Caress)', 42449, 218164, 'Izgimmer''s Gelid Caress', 45172, 0, 0, 0, + 218, 'Crystal', 'Nukes', 'Shadowlands', 0, '', 0, 0, 1, 4, 0, 'Nano-Technician', 'Pandemonium Garden'), + (218167, 'Nano Crystal (NT: Mastablasta''s Cataclysm)', 42449, 266293, 'Mastablasta''s Cataclysm', 45190, 0, 0, + 0, 220, 'Crystal', 'Nukes', 'AoE_Nuke', 0, '', 0, 0, 0, 4, 0, 'Nano-Technician', 'OFAB Store'), + (218169, 'Nano Crystal (Izgimmer''s Ultimatum)', 42449, 218168, 'Izgimmer''s Ultimatum', 45190, 0, 0, 0, 220, + 'Crystal', 'Nukes', 'Shadowlands', 0, '', 0, 0, 1, 4, 0, 'Nano-Technician', 'Pandemonium Garden'), + (219021, 'Nano Crystal (Empowered Distracted Gaze)', 12224, 219020, 'Empowered Distracted Gaze', 46271, 0, 0, 0, + 26, 'Crystal', 'Crowd_Control', 'Mezz', 147, 'Shadowlands', 0, 1, 1, 1, 0, 'Bureaucrat', 'Elysium Garden'), + (220332, 'Nano Crystal (Composite Teachings)', 12226, 220331, 'Composite Teachings', 16308, 0, 0, 0, 25, + 'Crystal', 'Buffs', 'Composite_Nano_Buffs', 0, '', 0, 1, 1, 1, 0, 'Meta-Physicist', 'Nascense Garden'), + (220334, 'Nano Crystal (Composite Mastery)', 12226, 220333, 'Composite Mastery', 16308, 0, 0, 0, 50, 'Crystal', + 'Buffs', 'Composite_Nano_Buffs', 0, '', 0, 1, 1, 1, 0, 'Meta-Physicist', 'Elysium Sanctuary'), + (220336, 'Nano Crystal (Composite Infuse With Knowledge)', 12259, 220335, 'Composite Infuse With Knowledge', + 16308, 0, 0, 0, 100, 'Crystal', 'Buffs', 'Composite_Nano_Buffs', 0, '', 0, 0, 1, 1, 0, 'Meta-Physicist', + 'Adonis Garden'), + (220338, 'Nano Crystal (Composite Mochams (1 hour))', 42451, 220337, 'Composite Mochams (1 hour)', 16308, 0, 0, + 0, 190, 'Crystal', 'Buffs', 'Composite_Nano_Buffs', 0, '', 0, 0, 1, 3, 0, 'Meta-Physicist', 'Inferno Garden'), + (220340, 'Nano Crystal (Composite Mochams (2 hours))', 42451, 220339, 'Composite Mochams (2 hours)', 16308, 0, 0, + 0, 205, 'Crystal', 'Buffs', 'Composite_Nano_Buffs', 0, '', 0, 0, 1, 4, 0, 'Meta-Physicist', + 'Inferno Sanctuary'), + (220342, 'Nano Crystal (Composite Mochams (4 hours))', 42451, 220341, 'Composite Mochams (4 hours)', 16308, 0, 0, + 0, 215, 'Crystal', 'Buffs', 'Composite_Nano_Buffs', 0, '', 0, 0, 1, 4, 0, 'Meta-Physicist', + 'Pandemonium Garden'), + (220344, 'Nano Crystal (Composite Mochams (8 hours))', 42451, 220343, 'Composite Mochams (8 hours)', 16308, 0, 0, + 0, 219, 'Crystal', 'Buffs', 'Composite_Nano_Buffs', 0, '', 0, 0, 1, 4, 0, 'Meta-Physicist', + 'Pandemonium Garden'), + (220346, 'Nano Crystal (Neuronal Stimulator)', 301243, 220345, 'Neuronal Stimulator', 296431, 0, 0, 0, 28, + 'Crystal', 'DeBuffs', 'Psy/Int_Buffs', 576, '', 0, 0, 1, 1, 0, 'Bureaucrat', 'Elysium Garden'), + (220348, 'Nano Crystal (Enfraam''s Cortex Accelerator)', 301243, 220347, 'Enfraam''s Cortex Accelerator', 296431, + 0, 0, 0, 150, 'Crystal', 'Buffs', 'Psychic_and_Intelligence/Nano_Skills_Buffs', 576, 'Self', 0, 0, 1, 2, 0, + 'Nano-Technician', 'Penumbra Garden'), + (220350, 'Nano Crystal (Izgimmer''s Hippocampal Augmentor)', 301243, 220349, 'Izgimmer''s Hippocampal Augmentor', + 296431, 0, 0, 0, 202, 'Crystal', 'Buffs', 'Psychic_and_Intelligence/Nano_Skills_Buffs', 576, 'Self', 0, 0, 1, 3, + 0, 'Nano-Technician', 'Inferno Sanctuary'), + (220409, 'Badly Corroded Crystal (1H Edged Weapon Inexperience)', 220425, 27070, '1H Edged Weapon Inexperience', + 39147, NULL, NULL, NULL, 4, 'Tainted', 'DeBuffs_-_Melee', '1H_Edged_DeBuffs', 22, '', 0, 0, 0, 0, 0, 'General', + 'SL Loot'), + (220438, 'Hacked Corroded Crystal (Projectile Magnet)', 220432, 32058, 'Projectile Magnet', 39081, NULL, NULL, + NULL, 73, 'Tainted', 'DeBuffs', 'Evasion_DeBuffs_(Agent)', 868, '', 0, 0, 0, 0, 0, 'Agent', 'SL Loot'), + (220439, 'Badly Eroded Crystal (Slipshod Bandaging)', 220422, 136687, 'Slipshod Bandaging', 16246, NULL, NULL, + NULL, 14, 'Tainted', 'Combat', 'Single_Target_Healing', 951, '', 0, 1, 0, 0, 0, 'Adventurer', 'SL Loot'), + (220440, 'Dirty Money Shadow Crystal (Cubicle Dweller)', 220437, 100431, 'Cubicle Dweller', 46270, NULL, NULL, + NULL, 103, 'Tainted', 'Crowd_Control', 'Mezz', 147, 'Target', 0, 1, 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (220442, 'Severly Corroded Shadow Crystal (Team Skill Wrangler (Superior))', 220412, 121319, + 'Team Skill Wrangler (Superior)', 117989, NULL, NULL, NULL, 140, 'Tainted', 'Transfer', 'Wrangle', 0, 'Team', 0, + 1, 0, 0, 0, 'Trader', 'SL Loot'), + (220443, 'Overcharged Corroded Nano Crystal (Advanced Layered Protection)', 220413, 117678, + 'Advanced Layered Protection', 38898, NULL, NULL, NULL, 107, 'Tainted', 'Buffs', 'Absorb_AC_Buffs', 219, '', 0, + 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (220444, 'Cracked Crystal (Essence of Vitality)', 220422, 95707, 'Essence of Vitality', 16758, 147307, 145807, + 148807, 14, 'Misc', 'Buffs', 'HP_Buffs', 151, 'Target', 0, 1, 0, 0, 0, 'Enforcer', 'SL Loot'), + (220445, 'Dirty Money Shadow Crystal (Sleep)', 220423, 30093, 'Sleep', 46269, NULL, NULL, NULL, 43, 'Tainted', + 'Crowd_Control', 'Mezz', 147, 'Target', 0, 1, 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (220446, 'Snow Crashed Shadow Crystal (Grid Phreak)', 220424, 31388, 'Grid Phreak', 296540, NULL, NULL, NULL, 20, + 'Tainted', 'Teleport', 'Self_Grid', 0, '', 0, 1, 0, 0, 0, 'Fixer', 'SL Loot'), + (220447, 'Tainted Shadow Crystal (Calling of The Vivificator)', 220411, 125741, 'Calling of The Vivificator', + 295568, NULL, NULL, NULL, 143, 'Tainted', 'Pet', 'Heal_Pet', 0, '', 0, 1, 0, 0, 0, 'Meta-Physicist', 'SL Loot'), + (220448, 'Dirty Money Shadow Crystal (Inveigle Support)', 220412, 99194, 'Inveigle Support', 39137, NULL, NULL, + NULL, 162, 'Tainted', 'Crowd_Control', 'Charm_Other', 202, 'Long', 0, 1, 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (220449, 'Badly Eroded Crystal (Team Eagle Eye)', 220412, 26702, 'Precision of the Hunter', 301579, NULL, NULL, + NULL, 113, 'Tainted', 'Buffs', 'Aimed_Shot_Buffs', 198, '', 0, 1, 0, 0, 0, 'Adventurer', 'SL Loot'), + (220450, 'Severly Corroded Shadow Crystal (Elementary Delayed Health Payment)', 220422, 118240, + 'Elementary Delayed Health Payment', 44245, NULL, NULL, NULL, 31, 'Tainted', 'Transfer', 'Health', 0, 'Team', 0, + 1, 0, 0, 0, 'Trader', 'SL Loot'), + (220451, 'Corroded Crystal with Bullet Holes (Draw Attention)', 220425, 100208, 'Draw Attention', 16230, NULL, + NULL, NULL, 14, 'Tainted', 'Crowd_Control', 'Taunt_(normal)', 0, '', 0, 1, 0, 0, 0, 'Soldier', 'SL Loot'), + (220452, 'Badly Corroded Crystal (Seething Resentment)', 220412, 100216, 'Seething Resentment', 16230, NULL, + NULL, NULL, 136, 'Tainted', 'Crowd_Control', 'Taunt', 0, '', 0, 1, 0, 0, 0, 'Martial Artist', 'SL Loot'), + (220453, 'Severly Corroded Shadow Crystal (Superior Delayed Health Payment)', 220436, 118235, + 'Superior Delayed Health Payment', 44249, NULL, NULL, NULL, 140, 'Tainted', 'Transfer', 'Health', 0, 'Team', 0, + 1, 0, 0, 0, 'Trader', 'SL Loot'), + (220454, 'Cracked Crystal (Quivering Wreck)', 220432, 121133, 'Quivering Wreck', 39145, 147338, 145838, 148838, + 70, 'Misc', 'Crowd_Control', 'Fear', 256, '', 0, 1, 0, 0, 0, 'Enforcer', 'SL Loot'), + (220455, 'Tainted Shadow Crystal (Quench Anger)', 220425, 99120, 'Quench Anger', 39168, NULL, NULL, NULL, 40, + 'Tainted', 'DeBuffs', 'Meta-Physicist_Initiatives/Damage_DeBuffs', 187, '', 0, 1, 0, 0, 0, 'Meta-Physicist', + 'SL Loot'), + (220456, 'Severly Corroded Shadow Crystal (Accomplished Health Haggler)', 220429, 121492, + 'Accomplished Health Haggler', 44232, NULL, NULL, NULL, 74, 'Tainted', 'Transfer', 'Health', 0, 'Target', 0, 1, + 0, 0, 0, 'Trader', 'SL Loot'), + (220457, 'Severly Corroded Shadow Crystal (Team Skill Wrangler (Minor))', 220425, 121321, + 'Team Skill Wrangler (Minor)', 117985, NULL, NULL, NULL, 37, 'Tainted', 'Transfer', 'Wrangle', 0, 'Team', 0, 1, + 0, 0, 0, 'Trader', 'SL Loot'), + (220458, 'Hacked Corroded Crystal (Mimic Profession: Bureaucrat)', 220412, 117209, + 'Mimic Profession: Bureaucrat', 16775, NULL, NULL, NULL, 165, 'Tainted', 'False_Professions', + 'False_Profession', 218, 'Bureaucrat', 0, 1, 0, 0, 0, 'Agent', 'SL Loot'), + (220459, 'Cracked Crystal (Fearsome Shout)', 220425, 121132, 'Fearsome Shout', 39145, 147309, 145809, 148809, 37, + 'Misc', 'Crowd_Control', 'Fear', 256, '', 0, 1, 0, 0, 0, 'Enforcer', 'SL Loot'), + (220460, 'Blood Stained and Corroded Crystal (Superior Health Augmentation)', 220429, 96254, + 'Superior Health Augmentation', 39012, NULL, NULL, NULL, 83, 'Tainted', 'Buffs', 'Doctor_Short_HP_Buffs', 185, + '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (220461, 'Severly Corroded Shadow Crystal (Team Skill Wrangler (Commonplace))', 220425, 121327, + 'Team Skill Wrangler (Commonplace)', 117985, NULL, NULL, NULL, 47, 'Tainted', 'Transfer', 'Wrangle', 0, 'Team', + 0, 1, 0, 0, 0, 'Trader', 'SL Loot'), + (220462, 'Dirty Money Shadow Crystal (Personal Magnetism)', 220432, 99203, 'Personal Magnetism', 39137, NULL, + NULL, NULL, 53, 'Tainted', 'Crowd_Control', 'Charm_Other', 202, 'Short', 0, 1, 0, 0, 0, 'Bureaucrat', + 'SL Loot'), + (220463, 'Severly Corroded Shadow Crystal (Team Skill Wrangler (Advanced))', 220412, 121329, + 'Team Skill Wrangler (Advanced)', 117988, NULL, NULL, NULL, 123, 'Tainted', 'Transfer', 'Wrangle', 0, 'Team', 0, + 1, 0, 0, 0, 'Trader', 'SL Loot'), + (220464, 'Badly Corroded Crystal (Return Attack)', 220412, 28904, 'Return Attack', 16322, NULL, NULL, NULL, 146, + 'Tainted', 'Buffs', 'Riposte_Buffs', 155, '', 0, 1, 0, 0, 0, 'Martial Artist', 'SL Loot'), + (220465, 'Severly Corroded Shadow Crystal (Bright Shiny Sparkling Thing)', 220423, 100438, + 'Bright Shiny Sparkling Thing', 46283, NULL, NULL, NULL, 33, 'Tainted', 'Crowd_Control', 'Mezz', 147, '', 0, 1, + 0, 0, 0, 'Trader', 'SL Loot'), + (220466, 'Badly Eroded Crystal (Flawless Stitching)', 220436, 136677, 'Flawless Stitching', 44230, NULL, NULL, + NULL, 143, 'Tainted', 'Combat', 'Single_Target_Healing', 951, '', 0, 1, 0, 0, 0, 'Adventurer', 'SL Loot'), + (220467, 'Blood Stained and Corroded Crystal (Major Health Graft)', 220429, 95713, 'Major Health Graft', 38905, + NULL, NULL, NULL, 93, 'Tainted', 'Buffs', 'Doctor_HP_Buffs', 184, '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (220468, 'Hacked Corroded Crystal (Mimic Profession: Engineer)', 220412, 117213, 'Mimic Profession: Engineer', + 16775, NULL, NULL, NULL, 156, 'Tainted', 'False_Professions', 'False_Profession', 218, 'Engineer', 0, 1, 0, 0, + 0, 'Agent', 'SL Loot'), + (220470, 'Cracked Crystal (Essence of Behemoth)', 220436, 95708, 'Essence of Behemoth', 100998, 147298, 145798, + 148798, 152, 'Misc', 'Buffs', 'HP_Buffs', 151, 'Target', 0, 1, 0, 0, 0, 'Enforcer', 'SL Loot'), + (220471, 'Severly Corroded Shadow Crystal (Skill Wrangler (Commonplace))', 220425, 121344, + 'Skill Wrangler (Commonplace)', 118047, NULL, NULL, NULL, 34, 'Tainted', 'Transfer', 'Wrangle', 0, 'Target', 0, + 1, 0, 0, 0, 'Trader', 'SL Loot'), + (220472, 'Dirty Money Shadow Crystal (Sneaking Terror)', 220432, 30094, 'Sneaking Terror', 39145, NULL, NULL, + NULL, 70, 'Tainted', 'Crowd_Control', 'Fear', 256, '', 0, 1, 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (220473, 'Severly Corroded Shadow Crystal (Skill Wrangler (Weak))', 220425, 121330, 'Skill Wrangler (Weak)', + 118046, NULL, NULL, NULL, 8, 'Tainted', 'Transfer', 'Wrangle', 0, 'Target', 0, 1, 0, 0, 0, 'Trader', 'SL Loot'), + (220474, 'Overcharged Corroded Nano Crystal (Project Calm)', 220430, 100442, 'Project Calm', 46269, NULL, NULL, + NULL, 60, 'Tainted', 'Crowd_Control', 'Mezz', 147, 'Calm', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (220475, 'Hacked Corroded Crystal (False Profession: Martial Artist)', 220425, 32035, + 'False Profession: Martial Artist', 16775, NULL, NULL, NULL, 14, 'Tainted', 'False_Professions', + 'False_Profession', 218, 'Martial_Artist', 0, 1, 0, 0, 0, 'Agent', 'SL Loot'), + (220476, 'Tainted Shadow Crystal (Wrath Ebb)', 220412, 99114, 'Wrath Ebb', 39168, NULL, NULL, NULL, 149, + 'Tainted', 'DeBuffs', 'Meta-Physicist_Initiatives/Damage_DeBuffs', 187, '', 0, 1, 0, 0, 0, 'Meta-Physicist', + 'SL Loot'), + (220477, 'Dirty Money Shadow Crystal (Dominate Psyche)', 220425, 99204, 'Dominate Psyche', 39137, NULL, NULL, + NULL, 47, 'Tainted', 'Crowd_Control', 'Charm_Other', 202, 'Long', 0, 1, 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (220478, 'Corroded Crystal with Bullet Holes (Boot Camp Toughness)', 220422, 95696, 'Boot Camp Toughness', 16758, + NULL, NULL, NULL, 17, 'Tainted', 'Buffs', 'HP_Buffs', 151, '', 0, 1, 0, 0, 0, 'Soldier', 'SL Loot'), + (220479, 'Blood Stained and Corroded Crystal (Basic Omni-Med Enhancement)', 220436, 95710, + 'Basic Omni-Med Enhancement', 38905, NULL, NULL, NULL, 149, 'Tainted', 'Buffs', 'Doctor_HP_Buffs', 184, '', 0, + 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (220480, 'Severly Corroded Shadow Crystal (Preeminent Health Haggler)', 220436, 121496, + 'Preeminent Health Haggler', 44235, NULL, NULL, NULL, 159, 'Tainted', 'Transfer', 'Health', 0, 'Target', 0, 1, + 0, 0, 0, 'Trader', 'SL Loot'), + (220481, 'Hacked Corroded Crystal (Mimic Profession: Nanotechnician)', 220412, 117207, + 'Mimic Profession: Nanotechnician', 16775, NULL, NULL, NULL, 169, 'Tainted', 'False_Professions', + 'False_Profession', 218, 'Nano-Technician', 0, 1, 0, 0, 0, 'Agent', 'SL Loot'), + (220482, 'Cracked Crystal (Fortify)', 220413, 117685, 'Fortify', 39039, 147313, 145813, 148813, 120, 'Misc', + 'Buffs', 'Absorb_AC_Buffs', 219, '', 0, 1, 0, 0, 0, 'Enforcer', 'SL Loot'), + (220483, 'Badly Corroded Crystal (Muscle Booster)', 220429, 28898, 'Muscle Booster', 16324, NULL, NULL, NULL, 70, + 'Tainted', 'Buffs', 'Strength_Buffs', 156, '', 0, 1, 0, 0, 0, 'Martial Artist', 'SL Loot'), + (220484, 'Corroded Crystal with Bullet Holes (Battlefield Endurance)', 220436, 95697, 'Battlefield Endurance', + 100998, NULL, NULL, NULL, 152, 'Tainted', 'Buffs', 'HP_Buffs', 151, '', 0, 1, 0, 0, 0, 'Soldier', 'SL Loot'), + (220485, 'Hacked Corroded Crystal (Assume Profession: Adventurer)', 220432, 117225, + 'Assume Profession: Adventurer', 16775, NULL, NULL, NULL, 86, 'Tainted', 'False_Professions', + 'False_Profession', 218, 'Adventurer', 0, 1, 0, 0, 0, 'Agent', 'SL Loot'), + (220486, 'Badly Eroded Crystal (Patch Wounds)', 220422, 136686, 'Patch Wounds', 16246, NULL, NULL, NULL, 41, + 'Tainted', 'Combat', 'Single_Target_Healing', 951, '', 0, 1, 0, 0, 0, 'Adventurer', 'SL Loot'), + (220487, 'Hacked Corroded Crystal (False Profession: Engineer)', 220425, 32034, 'False Profession: Engineer', + 16775, NULL, NULL, NULL, 20, 'Tainted', 'False_Professions', 'False_Profession', 218, 'Engineer', 0, 1, 0, 0, 0, + 'Agent', 'SL Loot'), + (220488, 'Corroded Crystal with Bullet Holes (Automatic Targeting)', 220411, 29222, 'Automatic Targeting', + 301599, NULL, NULL, NULL, 106, 'Tainted', 'Buffs', 'Add_All_Offence_Buffs', 836, '', 0, 1, 0, 0, 0, 'Soldier', + 'SL Loot'), + (220489, 'Dirty Money Shadow Crystal (Insidious Beguilement)', 220412, 99195, 'Insidious Beguilement', 39137, + NULL, NULL, NULL, 152, 'Tainted', 'Crowd_Control', 'Charm_Other', 202, 'Long', 0, 1, 0, 0, 0, 'Bureaucrat', + 'SL Loot'), + (220490, 'Tainted Shadow Crystal (Calling of Valentyia)', 220431, 125744, 'Calling of Valentyia', 295568, NULL, + NULL, NULL, 57, 'Tainted', 'Pet', 'Heal_Pet', 0, '', 0, 1, 0, 0, 0, 'Meta-Physicist', 'SL Loot'), + (220491, 'Dirty Money Shadow Crystal (Droid Repair)', 220429, 30072, 'Droid Repair', 16246, NULL, NULL, NULL, 70, + 'Tainted', 'Pet_Buffs', 'Heal', 0, '', 0, 1, 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (220493, 'Dirty Money Shadow Crystal (Captivated Thoughts)', 220412, 99199, 'Captivated Thoughts', 39137, NULL, + NULL, NULL, 109, 'Tainted', 'Crowd_Control', 'Charm_Other', 202, 'Long', 0, 1, 0, 0, 0, 'Bureaucrat', + 'SL Loot'), + (220494, 'Hacked Corroded Crystal (Assume Profession: Bureaucrat)', 220412, 117220, + 'Assume Profession: Bureaucrat', 16775, NULL, NULL, NULL, 109, 'Tainted', 'False_Professions', + 'False_Profession', 218, 'Bureaucrat', 0, 1, 0, 0, 0, 'Agent', 'SL Loot'), + (220495, 'Severly Corroded Shadow Crystal (Shady Acquisition)', 220431, 99606, 'Shady Acquisition', 39137, NULL, + NULL, NULL, 63, 'Tainted', 'Drain', 'Nano_Drain_-_Line_A', 215, '', 0, 1, 0, 0, 0, 'Trader', 'SL Loot'), + (220496, 'Badly Eroded Crystal (Survival of the Fittest)', 220436, 136679, 'Survival of the Fittest', 44230, + NULL, NULL, NULL, 116, 'Tainted', 'Combat', 'Single_Target_Healing', 951, '', 0, 1, 0, 0, 0, 'Adventurer', + 'SL Loot'), + (220497, 'Tainted Shadow Crystal (High Chant of Effortless Strikes)', 220436, 116819, + 'High Chant of Effortless Strikes', 300518, NULL, NULL, NULL, 182, 'Tainted', 'Pet_Buffs', + 'Meta-Physicist_Pet_Initiative_Buffs', 217, '', 0, 1, 0, 0, 0, 'Meta-Physicist', 'SL Loot'), + (220498, 'Dirty Money Shadow Crystal (Temporary Glamor)', 220425, 99208, 'Temporary Glamor', 39137, NULL, NULL, + NULL, 20, 'Tainted', 'Crowd_Control', 'Charm_Other', 202, 'Long', 0, 1, 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (220499, 'Severly Corroded Shadow Crystal (Skill Wrangler (Major))', 220432, 121338, 'Skill Wrangler (Major)', + 118051, NULL, NULL, NULL, 97, 'Tainted', 'Transfer', 'Wrangle', 0, 'Target', 0, 1, 0, 0, 0, 'Trader', + 'SL Loot'), + (220500, 'Severly Corroded Shadow Crystal (Advanced Delayed Health Payment)', 220436, 118233, + 'Advanced Delayed Health Payment', 44249, NULL, NULL, NULL, 123, 'Tainted', 'Transfer', 'Health', 0, 'Team', 0, + 1, 0, 0, 0, 'Trader', 'SL Loot'), + (220501, 'Blood Stained and Corroded Crystal (Medic''s Respite)', 220422, 95714, 'Medic''s Respite', 38905, NULL, + NULL, NULL, 47, 'Tainted', 'Buffs', 'Doctor_HP_Buffs', 184, '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (220502, 'Severly Corroded Shadow Crystal (Team Skill Wrangler (Lossy))', 220432, 121325, + 'Team Skill Wrangler (Lossy)', 117986, NULL, NULL, NULL, 60, 'Tainted', 'Transfer', 'Wrangle', 0, 'Team', 0, 1, + 0, 0, 0, 'Trader', 'SL Loot'), + (220503, 'Severly Corroded Shadow Crystal (Journeyman: Pharmaceutical)', 220432, 30727, + 'Journeyman: Pharmaceutical', 16316, NULL, NULL, NULL, 86, 'Tainted', 'Buffs:_Tradeskills', + 'Pharmaceuticals_Buffs', 175, '', 0, 1, 0, 0, 0, 'Trader', 'SL Loot'), + (220504, 'Severly Corroded Shadow Crystal (Skill Wrangler (Greater))', 220412, 121342, + 'Skill Wrangler (Greater)', 118052, NULL, NULL, NULL, 150, 'Tainted', 'Transfer', 'Wrangle', 0, 'Target', 0, 1, + 0, 0, 0, 'Trader', 'SL Loot'), + (220506, 'Badly Eroded Crystal (Restore to Health)', 220429, 136684, 'Restore to Health', 44229, NULL, NULL, + NULL, 64, 'Tainted', 'Combat', 'Single_Target_Healing', 951, '', 0, 1, 0, 0, 0, 'Adventurer', 'SL Loot'), + (220507, 'Hacked Corroded Crystal (Mimic Profession: Enforcer)', 220412, 117217, 'Mimic Profession: Enforcer', + 16775, NULL, NULL, NULL, 146, 'Tainted', 'False_Professions', 'False_Profession', 218, 'Enforcer', 0, 1, 0, 0, + 0, 'Agent', 'SL Loot'), + (220508, 'Severly Corroded Shadow Crystal (Overdraught)', 220424, 99608, 'Overdraught', 39137, NULL, NULL, NULL, + 24, 'Tainted', 'Drain', 'Nano_Drain_-_Line_A', 215, '', 0, 1, 0, 0, 0, 'Trader', 'SL Loot'), + (220510, 'Cracked Crystal (Spine of Jelly)', 220412, 121134, 'Spine of Jelly', 39145, 147343, 145843, 148843, + 130, 'Misc', 'Crowd_Control', 'Fear', 256, '', 0, 1, 0, 0, 0, 'Enforcer', 'SL Loot'), + (220512, 'Dirty Money Shadow Crystal (Primal Fear)', 220412, 121138, 'Primal Fear', 39145, NULL, NULL, NULL, 159, + 'Tainted', 'Crowd_Control', 'Fear', 256, '', 0, 1, 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (220513, 'Hacked Corroded Crystal (Assume Profession: Fixer)', 220432, 117223, 'Assume Profession: Fixer', 16775, + NULL, NULL, NULL, 96, 'Tainted', 'False_Professions', 'False_Profession', 218, 'Fixer', 0, 1, 0, 0, 0, 'Agent', + 'SL Loot'), + (220514, 'Hacked Corroded Crystal (Enhanced Senses)', 220425, 25988, 'Enhanced Senses', 16317, NULL, NULL, NULL, + 27, 'Tainted', 'Buffs', 'Sense_Buffs', 192, '', 0, 0, 0, 0, 0, 'Agent', 'SL Loot'), + (220515, 'Severly Corroded Shadow Crystal (Dubious Accounting)', 220431, 99616, 'Dubious Accounting', 39137, + NULL, NULL, NULL, 99, 'Tainted', 'Drain', 'Nano_Drain_-_Line_A', 215, '', 0, 1, 0, 0, 0, 'Trader', 'SL Loot'), + (220516, 'Cracked Crystal (Essence of Boundless Health)', 220422, 95704, 'Essence of Boundless Health', 38905, + 147299, 145799, 148799, 33, 'Misc', 'Buffs', 'HP_Buffs', 151, 'Target', 0, 1, 0, 0, 0, 'Enforcer', 'SL Loot'), + (220517, 'Dirty Money Shadow Crystal (Charismatic Rapture)', 220412, 99193, 'Charismatic Rapture', 39137, NULL, + NULL, NULL, 169, 'Tainted', 'Crowd_Control', 'Charm_Other', 202, 'Short', 0, 1, 0, 0, 0, 'Bureaucrat', + 'SL Loot'), + (220518, 'Severly Corroded Shadow Crystal (Team Skill Wrangler (Sophisticated))', 220412, 121318, + 'Team Skill Wrangler (Sophisticated)', 117991, NULL, NULL, NULL, 159, 'Tainted', 'Transfer', 'Wrangle', 0, + 'Team', 0, 1, 0, 0, 0, 'Trader', 'SL Loot'), + (220519, 'Cracked Crystal (Shock Absorber)', 220433, 117683, 'Shock Absorber', 38898, 147341, 145841, 148841, 70, + 'Misc', 'Buffs', 'Absorb_AC_Buffs', 219, '', 0, 1, 0, 0, 0, 'Enforcer', 'SL Loot'), + (220520, 'Cracked Crystal (Primal Hatred)', 220412, 100209, 'Primal Hatred', 16230, 147336, 145836, 148836, 139, + 'Misc', 'Crowd_Control', 'Taunt_Target', 0, '', 0, 1, 0, 0, 0, 'Enforcer', 'SL Loot'), + (220521, 'Tainted Shadow Crystal (Chant of Frenzied Blows)', 220429, 116820, 'Chant of Frenzied Blows', 300518, + NULL, NULL, NULL, 87, 'Tainted', 'Pet_Buffs', 'Meta-Physicist_Pet_Initiative_Buffs', 217, '', 0, 1, 0, 0, 0, + 'Meta-Physicist', 'SL Loot'), + (220522, 'Hacked Corroded Crystal (Assume Profession: Meta-Physicist)', 220412, 117219, + 'Assume Profession: Meta-Physicist', 16775, NULL, NULL, NULL, 113, 'Tainted', 'False_Professions', + 'False_Profession', 218, 'Meta-Physicist', 0, 1, 0, 0, 0, 'Agent', 'SL Loot'), + (220523, 'Dirty Money Shadow Crystal (Siren Call)', 220412, 30092, 'Siren Call', 39137, NULL, NULL, NULL, 123, + 'Tainted', 'Crowd_Control', 'Charm_Other', 202, 'Short', 0, 1, 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (220524, 'Severly Corroded Shadow Crystal (Capable Health Haggler)', 220422, 121504, 'Capable Health Haggler', + 44230, NULL, NULL, NULL, 34, 'Tainted', 'Transfer', 'Health', 0, 'Target', 0, 1, 0, 0, 0, 'Trader', 'SL Loot'), + (220525, 'Tainted Shadow Crystal (Instill With Terrible Anger)', 220429, 116821, 'Instill With Terrible Anger', + 16207, NULL, NULL, NULL, 74, 'Tainted', 'Pet_Buffs', 'Meta-Physicist_Pet_Damage_Buffs', 216, '', 0, 1, 0, 0, 0, + 'Meta-Physicist', 'SL Loot'), + (220526, 'Severly Corroded Shadow Crystal (Team Skill Wrangler (Patchy))', 220425, 121322, + 'Team Skill Wrangler (Patchy)', 117984, NULL, NULL, NULL, 27, 'Tainted', 'Transfer', 'Wrangle', 0, 'Team', 0, 1, + 0, 0, 0, 'Trader', 'SL Loot'), + (220527, 'Severly Corroded Shadow Crystal (Skill Wrangler (Sophisticated))', 220412, 121334, + 'Skill Wrangler (Sophisticated)', 118053, NULL, NULL, NULL, 156, 'Tainted', 'Transfer', 'Wrangle', 0, 'Target', + 0, 1, 0, 0, 0, 'Trader', 'SL Loot'), + (220528, 'Severly Corroded Shadow Crystal (Glittering Plaything)', 220437, 100435, 'Glittering Plaything', 46270, + NULL, NULL, NULL, 106, 'Tainted', 'Crowd_Control', 'Mezz', 147, '', 0, 1, 0, 0, 0, 'Trader', 'SL Loot'), + (220529, 'Dirty Money Shadow Crystal (Demotivate)', 220430, 100432, 'Demotivate', 46269, NULL, NULL, NULL, 80, + 'Tainted', 'Crowd_Control', 'Mezz', 147, 'Target', 0, 1, 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (220531, 'Failed Repaired Crystal (Rebuild Casing)', 220429, 116792, 'Rebuild Casing', 44231, NULL, NULL, NULL, + 84, 'Tainted', 'Pet_Combat', 'Pet_Heal', 0, '', 0, 1, 0, 0, 0, 'Engineer', 'SL Loot'), + (220532, 'Blood Stained and Corroded Crystal (Superior Bodily Reinforcement)', 220429, 95715, + 'Superior Bodily Reinforcement', 38905, NULL, NULL, NULL, 57, 'Tainted', 'Buffs', 'Doctor_HP_Buffs', 184, '', 0, + 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (220534, 'Tainted Shadow Crystal (Notum Rejection)', 220411, 29308, 'Notum Rejection', 39125, NULL, NULL, NULL, + 149, 'Tainted', 'Buffs', 'Nano_Point_Cost_Buffs', 148, '', 0, 1, 0, 0, 0, 'Meta-Physicist', 'SL Loot'), + (220535, 'Hacked Corroded Crystal (Assume Profession: Doctor)', 220412, 117221, 'Assume Profession: Doctor', + 16775, NULL, NULL, NULL, 103, 'Tainted', 'False_Professions', 'False_Profession', 218, 'Doctor', 0, 1, 0, 0, 0, + 'Agent', 'SL Loot'), + (220538, 'Hacked Corroded Crystal (Chemical Concoction)', 220432, 25984, 'Chemical Concoction', 16210, NULL, + NULL, NULL, 63, 'Tainted', 'Buffs', 'Chemistry/Pharm_Buffs', 196, '', 0, 0, 0, 0, 0, 'Agent', 'SL Loot'), + (220539, 'Severly Corroded Shadow Crystal (Lend Nano: 1000)', 220436, 30732, 'Lend Nano: 1000', 16303, NULL, + NULL, NULL, 172, 'Tainted', 'Transfer', 'Nano_Point_Buffs', 178, '', 0, 1, 0, 0, 0, 'Trader', 'SL Loot'), + (220540, 'Overcharged Corroded Nano Crystal (Boil Blood)', 220437, 28596, 'Boil Blood', 49681, NULL, NULL, NULL, + 152, 'Tainted', 'Combat', 'Nano-Technician_DOT_-_Strain_A', 8, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (220541, 'Snow Crashed Shadow Crystal (Partial Grid Jump)', 220411, 93127, 'Partial Grid Jump', 16300, NULL, + NULL, NULL, 113, 'Tainted', 'Buffs', 'Major_Evasion_Buffs', 144, '', 0, 1, 0, 0, 0, 'Fixer', 'SL Loot'), + (220542, 'Blood Stained and Corroded Crystal (Compress Wounds)', 220436, 43884, 'Compress Wounds', 44234, NULL, + NULL, NULL, 152, 'Tainted', 'Combat', 'Target_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (220543, 'Snow Crashed Shadow Crystal (Lesser Prolong Encounter)', 220423, 56224, 'Lesser Prolong Encounter', + 46273, NULL, NULL, NULL, 27, 'Tainted', 'Crowd_Control', 'Root', 146, '', 0, 1, 0, 0, 0, 'Fixer', 'SL Loot'), + (220544, 'Tainted Shadow Crystal (Supreme Anger Manifestation)', 220424, 43745, 'Supreme Anger Manifestation', + 295577, NULL, NULL, NULL, 7, 'Tainted', 'Pet', 'Attack_Pet', 0, '', 0, 1, 0, 0, 0, 'Meta-Physicist', 'SL Loot'), + (220545, 'Tainted Shadow Crystal (Instill With Ferocious Purpose)', 220436, 116816, + 'Instill With Ferocious Purpose', 16207, NULL, NULL, NULL, 113, 'Tainted', 'Pet_Buffs', + 'Meta-Physicist_Pet_Damage_Buffs', 216, '', 0, 1, 0, 0, 0, 'Meta-Physicist', 'SL Loot'), + (220547, 'Dirty Money Shadow Crystal (Monofilament Scourger)', 220437, 78395, 'Monofilament Scourger', 39810, + NULL, NULL, NULL, 152, 'Tainted', 'Nukes', 'Special', 0, '', 0, 1, 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (220548, 'Badly Eroded Crystal (Minor Wilderness Protection)', 220426, 74178, 'Minor Wilderness Protection', + 16314, NULL, NULL, NULL, 4, 'Tainted', 'Buffs', 'Armor_Buffs', 3, '', 0, 1, 0, 0, 0, 'Adventurer', 'SL Loot'), + (220550, 'Failed Repaired Crystal (Lesser Gladiatorbot)', 220431, 45711, 'Lesser Gladiatorbot', 44139, NULL, + NULL, NULL, 53, 'Tainted', 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'SL Loot'), + (220551, 'Dirty Money Shadow Crystal (Lesser Weighty Announcement)', 220423, 85315, + 'Lesser Weighty Announcement', 46276, NULL, NULL, NULL, 37, 'Tainted', 'Crowd_Control', 'Snare', 145, 'Area', 0, + 1, 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (220552, 'Failed Repaired Crystal (Energy Spike)', 220424, 29758, 'Energy Spike', 39028, NULL, NULL, NULL, 37, + 'Tainted', 'Buffs', 'Damage_Buffs_-_Line_A', 4, '', 0, 1, 0, 0, 0, 'Engineer', 'SL Loot'), + (220553, 'Badly Eroded Crystal (Robust Treatment)', 220412, 26703, 'Robust Treatment', 16342, NULL, NULL, NULL, + 136, 'Tainted', 'Buffs', 'First_Aid_And_Treatment_Buffs', 190, '', 0, 1, 0, 0, 0, 'Adventurer', 'SL Loot'), + (220556, 'Cracked Crystal (Gird For Punishment)', 220433, 117684, 'Gird for Punishment', 39039, 147314, 145814, + 148814, 90, 'Misc', 'Buffs', 'Absorb_AC_Buffs', 219, '', 0, 1, 0, 0, 0, 'Enforcer', 'SL Loot'), + (220557, 'Blood Stained and Corroded Crystal (Cursory Examination)', 220422, 43827, 'Cursory Examination', 44229, + NULL, NULL, NULL, 30, 'Tainted', 'Combat', 'Target_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (220558, 'Hacked Corroded Crystal (Shadow Crown)', 220425, 32062, 'Shadow Crown', 16214, NULL, NULL, NULL, 20, + 'Tainted', 'Buffs', 'Concealment_Buffs', 193, 'Target', 0, 0, 0, 0, 0, 'Agent', 'SL Loot'), + (220559, 'Hacked Corroded Crystal (Sniper''s Bliss)', 220425, 32064, 'Sniper''s Bliss', 301575, NULL, NULL, NULL, + 43, 'Tainted', 'Buffs', 'Rifle_Buffs', 194, '', 0, 0, 0, 0, 0, 'Agent', 'SL Loot'), + (220561, 'Dirty Money Shadow Crystal (Supervisor-Grade Administrator-Droid)', 220411, 46352, + 'Supervisor-Grade Administrator-Droid', 44140, NULL, NULL, NULL, 136, 'Tainted', 'Pets', 'Robot', 0, '', 0, 0, + 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (220562, 'Badly Eroded Crystal (Terrain Knowledge)', 220425, 26705, 'Terrain Knowledge', 296731, NULL, NULL, + NULL, 10, 'Tainted', 'Buffs', 'Runspeed_Buffs', 150, '', 0, 1, 0, 0, 0, 'Adventurer', 'SL Loot'), + (220563, 'Hacked Corroded Crystal (Take The Shot)', 220412, 32065, 'Take the Shot', 301579, NULL, NULL, NULL, + 152, 'Tainted', 'Buffs', 'Aimed_Shot_Buffs', 198, '', 0, 0, 0, 0, 0, 'Agent', 'SL Loot'), + (220564, 'Hacked Corroded Crystal (Unexpected Attack)', 220412, 32067, 'Unexpected Attack', 301575, NULL, NULL, + NULL, 136, 'Tainted', 'Buffs', 'Rifle_Buffs', 194, '', 0, 0, 0, 0, 0, 'Agent', 'SL Loot'), + (220565, 'Cracked Crystal (Brave Challenger to Leviathan)', 220411, 49754, 'Brave Challenger to Leviathan', + 117925, 147282, 145782, 148782, 132, 'Misc', 'Buffs', 'Challenger', 5, '', 0, 1, 0, 0, 0, 'Enforcer', + 'SL Loot'), + (220566, 'Cracked Crystal (Shrug Off Blows)', 220413, 117682, 'Shrug Off Blows', 39179, 147342, 145842, 148842, + 136, 'Misc', 'Buffs', 'Absorb_AC_Buffs', 219, '', 0, 1, 0, 0, 0, 'Enforcer', 'SL Loot'), + (220567, 'Overcharged Corroded Nano Crystal (Condensed Halon Jet)', 220423, 45931, 'Condensed Halon Jet', 45170, + NULL, NULL, NULL, 30, 'Tainted', 'Nukes', 'Medium_3s~2s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (220568, 'Overcharged Corroded Nano Crystal (Linear Acceleration)', 220437, 45225, 'Linear Acceleration', 45186, + NULL, NULL, NULL, 159, 'Tainted', 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (220569, 'Dirty Money Shadow Crystal (Advanced Aide-Droid)', 220431, 46407, 'Advanced Aide-Droid', 44139, NULL, + NULL, NULL, 80, 'Tainted', 'Pets', 'Robot', 0, '', 0, 0, 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (220571, 'Severly Corroded Shadow Crystal (Skill Wrangler (Patchy))', 220425, 121336, 'Skill Wrangler (Patchy)', + 118046, NULL, NULL, NULL, 14, 'Tainted', 'Transfer', 'Wrangle', 0, 'Target', 0, 1, 0, 0, 0, 'Trader', + 'SL Loot'), + (220572, 'Blood Stained and Corroded Crystal (Lesser Muscle Atrophy)', 220424, 99582, 'Muscle Atrophy', 291160, + NULL, NULL, NULL, 17, 'Tainted', 'DeBuffs', 'Initiative_DeBuffs', 186, 'Unbreakable', 0, 1, 0, 0, 0, 'Doctor', + 'SL Loot'), + (220573, 'Cracked Crystal (Absorb Punishment)', 220413, 117688, 'Absorb Punishment', 100995, 147272, 145772, + 148772, 140, 'Misc', 'Buffs', 'Absorb_AC_Buffs', 219, '', 0, 1, 0, 0, 0, 'Enforcer', 'SL Loot'), + (220574, 'Badly Eroded Crystal (Corrosive Barrier)', 220413, 55822, 'Corrosive Barrier', 16221, NULL, NULL, NULL, + 132, 'Tainted', 'Buffs', 'Damage_Shields', 1, 'Target', 0, 1, 0, 0, 0, 'Adventurer', 'SL Loot'), + (220575, 'Cracked Crystal (Brave Challenger to Cyclops)', 220424, 49743, 'Brave Challenger to Cyclops', 16241, + 147284, 145784, 148784, 14, 'Misc', 'Buffs', 'Challenger', 5, '', 0, 1, 0, 0, 0, 'Enforcer', 'SL Loot'), + (220576, 'Dirty Money Shadow Crystal (Stumbling Steps)', 220423, 82480, 'Stumbling Steps', 46273, NULL, NULL, + NULL, 30, 'Tainted', 'Crowd_Control', 'Snare', 145, 'Target', 0, 1, 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (220577, 'Overcharged Corroded Nano Crystal (Gravity Pull)', 220437, 56023, 'Gravity Pull', 46274, NULL, NULL, + NULL, 149, 'Tainted', 'Crowd_Control', 'Root', 146, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (220578, 'Dirty Money Shadow Crystal (Greater Restrict Movement)', 220430, 55986, 'Greater Restrict Movement', + 46274, NULL, NULL, NULL, 99, 'Tainted', 'Crowd_Control', 'Root', 146, 'Target', 0, 1, 0, 0, 0, 'Bureaucrat', + 'SL Loot'), + (220579, 'Corroded Crystal with Bullet Holes (Total Mirror Shield Mk VIII)', 220413, 70302, + 'Total Mirror Shield Mk VIII', 101017, NULL, NULL, NULL, 129, 'Tainted', 'Buffs', 'Shadowland_Reflect_Base', + 694, 'Self', 0, 1, 0, 0, 0, 'Soldier', 'SL Loot'), + (220580, 'Overcharged Corroded Nano Crystal (Stinging Missile)', 220430, 45196, 'Stinging Missile', 39811, NULL, + NULL, NULL, 63, 'Tainted', 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (220581, 'Dirty Money Shadow Crystal (Authority Figure)', 220425, 30057, 'Authority Figure', 16309, NULL, NULL, + NULL, 43, 'Tainted', 'Buffs', 'Psychology_Buffs', 200, '', 0, 1, 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (220582, 'Corroded Crystal with Bullet Holes (Combat Hardening)', 220422, 95695, 'Combat Hardening', 38905, NULL, + NULL, NULL, 33, 'Tainted', 'Buffs', 'HP_Buffs', 151, '', 0, 1, 0, 0, 0, 'Soldier', 'SL Loot'), + (220583, 'Overcharged Corroded Nano Crystal (Weak Gravity Pull)', 220423, 56026, 'Weak Gravity Pull', 46273, + NULL, NULL, NULL, 40, 'Tainted', 'Crowd_Control', 'Root', 146, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (220584, 'Cracked Crystal (Glacial Cloak)', 220413, 55748, 'Glacial Cloak', 16221, 147315, 145815, 148815, 132, + 'Misc', 'Buffs', 'Damage_Shields', 1, '', 0, 1, 0, 0, 0, 'Enforcer', 'SL Loot'), + (220585, 'Blood Stained and Corroded Crystal (Distributed Care)', 220436, 43892, 'Distributed Care', 44251, NULL, + NULL, NULL, 175, 'Tainted', 'Combat', 'Team_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (220586, 'Dirty Money Shadow Crystal (Chains of Iron)', 220437, 30060, 'Chains of Iron', 16248, NULL, NULL, NULL, + 165, 'Tainted', 'Crowd_Control', 'Mezz', 147, 'Stun', 0, 1, 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (220587, 'Weird Looking Nano Crystal (Cut Red Tape)', 301180, 222695, 'Improved Cut Red Tape', 301183, 0, 0, 0, + 159, 'Crystal', 'Protection', 'Critical_Decrease_Buff', 1052, '', 0, 1, 0, 0, 0, 'Bureaucrat', + 'Greedy Shade / SL Static'), + (220588, 'Dirty Money Shadow Crystal (Drill Missile)', 220423, 30068, 'Drill Missile', 45185, NULL, NULL, NULL, + 37, 'Tainted', 'Nukes', 'Normal', 0, '', 0, 1, 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (220589, 'Overcharged Corroded Nano Crystal (Tri-Ion Stream)', 220437, 45885, 'Tri-Ion Stream', 39816, NULL, + NULL, NULL, 109, 'Tainted', 'Nukes', 'Fast_1s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (220591, 'Blood Stained and Corroded Crystal (Team Field Dressings)', 220422, 43916, 'Team Field Dressings', + 38953, NULL, NULL, NULL, 20, 'Tainted', 'Combat', 'Team_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (220592, 'Blood Stained and Corroded Crystal (Scythe B Virus)', 220437, 44149, 'Scythe B Virus', 16222, NULL, + NULL, NULL, 182, 'Tainted', 'Combat', 'DOT_-_Line_A', 6, '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (220593, 'Severly Corroded Shadow Crystal (Advanced Health Funnel)', 220422, 76715, 'Advanced Health Funnel', + 117907, NULL, NULL, NULL, 30, 'Tainted', 'Drain', 'Health', 0, '', 0, 1, 0, 0, 0, 'Trader', 'SL Loot'), + (220594, 'Dirty Money Shadow Crystal (Face in the Crowd)', 220432, 30074, 'Face in the Crowd', 16214, NULL, NULL, + NULL, 57, 'Tainted', 'Buffs', 'Concealment_Buffs', 193, '', 0, 1, 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (220595, 'Overcharged Corroded Nano Crystal (Full-body Acid Coating)', 220437, 45230, 'Full-Body Acid Coating', + 45169, NULL, NULL, NULL, 185, 'Tainted', 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', + 'SL Loot'), + (220596, 'Cracked Crystal (Challenger to Gargantua)', 220431, 49747, 'Challenger to Gargantua', 39088, 147292, + 145792, 148792, 66, 'Misc', 'Buffs', 'Challenger', 5, '', 0, 1, 0, 0, 0, 'Enforcer', 'SL Loot'), + (220597, 'Overcharged Corroded Nano Crystal (Stargasp)', 220437, 45891, 'Stargasp', 45177, NULL, NULL, NULL, 156, + 'Tainted', 'Nukes', 'Medium_3s~2s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (220598, 'Tainted Shadow Crystal (Instill With Righteous Frenzy)', 220436, 116812, + 'Instill With Righteous Frenzy', 16207, NULL, NULL, NULL, 150, 'Tainted', 'Pet_Buffs', + 'Meta-Physicist_Pet_Damage_Buffs', 216, '', 0, 1, 0, 0, 0, 'Meta-Physicist', 'SL Loot'), + (220599, 'Dirty Money Shadow Crystal (Gunslinger)', 220425, 30077, 'Gunslinger', 16310, NULL, NULL, NULL, 14, + 'Tainted', 'Buffs', 'Pistol_Buffs', 199, '', 0, 1, 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (220600, 'Badly Eroded Crystal (Practiced Stitching)', 220429, 82061, 'Practiced Stitching', 44230, NULL, NULL, + NULL, 93, 'Tainted', 'Combat', 'Single_Target_Healing', 951, '', 0, 1, 0, 0, 0, 'Adventurer', 'SL Loot'), + (220601, 'Overcharged Corroded Nano Crystal (Deep Slash)', 220423, 42541, 'Deep Slash', 45182, NULL, NULL, NULL, + 17, 'Tainted', 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (220603, 'Dirty Money Shadow Crystal (Solicit Support)', 220432, 99202, 'Solicit Support', 39137, NULL, NULL, + NULL, 63, 'Tainted', 'Crowd_Control', 'Charm_Other', 202, 'Long', 0, 1, 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (220604, 'Weird Looking Nano Crystal (Augmentation Cloud)', 301242, 222835, 'Improved Augmentation Cloud', + 291157, 0, 0, 0, 106, 'Crystal', 'Buffs', 'Damage_Buffs_-_Line_A', 4, '', 0, 0, 0, 0, 0, 'Agent', + 'Greedy Shade / SL Static'), + (220605, 'Dirty Money Shadow Crystal (Living Embalming)', 220437, 30079, 'Living Embalming', 16248, NULL, NULL, + NULL, 175, 'Tainted', 'Crowd_Control', 'Mezz', 147, 'Stun', 0, 1, 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (220606, 'Severly Corroded Shadow Crystal (Sticky Ground)', 220423, 30748, 'Sticky Ground', 46272, NULL, NULL, + NULL, 24, 'Tainted', 'Crowd_Control', 'Root', 146, 'Area', 0, 1, 0, 0, 0, 'Trader', 'SL Loot'), + (220607, 'Hacked Corroded Crystal (Mimic Profession: Adventurer)', 220412, 117214, + 'Mimic Profession: Adventurer', 16775, NULL, NULL, NULL, 152, 'Tainted', 'False_Professions', + 'False_Profession', 218, 'Adventurer', 0, 1, 0, 0, 0, 'Agent', 'SL Loot'), + (220608, 'Overcharged Corroded Nano Crystal (Circle Scythe)', 220430, 45937, 'Circle Scythe', 39784, NULL, NULL, + NULL, 60, 'Tainted', 'Nukes', 'AoE_Nuke', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (220609, 'Dirty Money Shadow Crystal (Monofilament Whip)', 220423, 30083, 'Monofilament Whip', 39808, NULL, NULL, + NULL, 50, 'Tainted', 'Nukes', 'Normal', 0, '', 0, 1, 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (220611, 'Tainted Shadow Crystal (Lesser Enmity Personification)', 220411, 43731, + 'Summon Enmity Personification', 295597, NULL, NULL, NULL, 156, 'Tainted', 'Pet', 'Attack_Pet_Summon', 0, '', 0, + 1, 0, 0, 0, 'Meta-Physicist', 'SL Loot'), + (220612, 'Tainted Shadow Crystal (Superior Enmity Personification)', 220411, 43740, + 'Superior Enmity Personification', 295597, NULL, NULL, NULL, 162, 'Tainted', 'Pet', 'Attack_Pet', 0, '', 0, 0, + 0, 0, 0, 'Meta-Physicist', 'SL Loot'), + (220613, 'Badly Eroded Crystal (Team Survival Technique)', 220422, 82057, 'Team Survival Technique', 44245, NULL, + NULL, NULL, 33, 'Tainted', 'Combat', 'Team_Healing', 952, '', 0, 1, 0, 0, 0, 'Adventurer', 'SL Loot'), + (220614, 'Dirty Money Shadow Crystal (Executive-Grade Assistant-Droid)', 220431, 46379, + 'Executive-Grade Assistant-Droid', 44139, NULL, NULL, NULL, 63, 'Tainted', 'Pets', 'Robot', 0, '', 0, 0, 0, 0, + 0, 'Bureaucrat', 'SL Loot'), + (220615, 'Overcharged Corroded Nano Crystal (Toxic Spill)', 220437, 45884, 'Toxic Spill', 39771, NULL, NULL, + NULL, 132, 'Tainted', 'Nukes', 'AoE_Nuke', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (220616, 'Overcharged Corroded Nano Crystal (Frosty Welcome)', 220423, 45229, 'Frosty Welcome', 39796, NULL, + NULL, NULL, 43, 'Tainted', 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (220617, 'Weird Looking Nano Crystal (Bot Reproduction)', 301078, 222857, 'Bot Reproduction', 301080, 0, 0, 0, + 37, 'Crystal', 'Buffs', 'Nano_Delta_Buffs', 201, '', 0, 0, 0, 0, 0, 'Bureaucrat', 'Greedy Shade / SL Static'), + (220618, 'Overcharged Corroded Nano Crystal (Ball and Chain)', 220437, 56024, 'Ball and Chain', 46274, NULL, + NULL, NULL, 106, 'Tainted', 'Crowd_Control', 'Root', 146, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (220619, 'Cracked Crystal (Essence of Gargantua)', 220436, 95701, 'Essence of Gargantua', 39186, 147302, 145802, + 148802, 123, 'Misc', 'Buffs', 'HP_Buffs', 151, 'Target', 0, 1, 0, 0, 0, 'Enforcer', 'SL Loot'), + (220620, 'Severly Corroded Shadow Crystal (Advanced Health Freeloader)', 220436, 76614, + 'Advanced Health Freeloader', 117910, NULL, NULL, NULL, 103, 'Tainted', 'Drain', 'Health', 0, '', 0, 1, 0, 0, 0, + 'Trader', 'SL Loot'), + (220621, 'Dirty Money Shadow Crystal (Remembered Pain)', 220437, 30091, 'Remembered Pain', 39810, NULL, NULL, + NULL, 109, 'Tainted', 'Nukes', 'Normal', 0, '', 0, 1, 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (220622, 'Nano Crystal (Bur: Improved Red Tape)', 301075, 267311, 'Improved Red Tape', 301072, 0, 0, 0, 116, + 'Crystal', 'DeBuffs', 'Skill_Lock_Modifier_DeBuffs', 847, '', 0, 1, 0, 0, 0, 'Bureaucrat', 'OFAB Store'), + (220623, 'Dirty Money Shadow Crystal (Introspective Engagement)', 220437, 100430, 'Introspective Engagement', + 46270, NULL, NULL, NULL, 132, 'Tainted', 'Crowd_Control', 'Mezz', 147, 'Target', 0, 1, 0, 0, 0, 'Bureaucrat', + 'SL Loot'), + (220624, 'Blood Stained and Corroded Crystal (Internal Decomposition)', 220437, 44162, 'Internal Decomposition', + 16222, NULL, NULL, NULL, 175, 'Tainted', 'Combat', 'DOT_-_Line_A', 6, '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (220625, 'Weird Looking Nano Crystal (Soothing Calm)', 301078, 222853, 'Soothing Calm', 301080, 0, 0, 0, 90, + 'Crystal', 'Buffs', 'Nano_Delta_Buffs', 201, '', 0, 0, 0, 0, 0, 'Bureaucrat', 'Greedy Shade / SL Static'), + (220626, 'Overcharged Corroded Nano Crystal (Rend Flesh)', 220437, 45212, 'Rend Flesh', 39810, NULL, NULL, NULL, + 129, 'Tainted', 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (220627, 'Badly Eroded Crystal (Moonbeam)', 220436, 136673, 'Moonbeam', 44231, NULL, NULL, NULL, 176, 'Tainted', + 'Combat', 'Single_Target_Healing', 951, '', 0, 1, 0, 0, 0, 'Adventurer', 'SL Loot'), + (220628, 'Dirty Money Shadow Crystal (Executive-Grade Worker-Droid)', 220424, 46385, + 'Executive-Grade Worker-Droid', 16307, NULL, NULL, NULL, 10, 'Tainted', 'Pets', 'Robot', 0, '', 0, 0, 0, 0, 0, + 'Bureaucrat', 'SL Loot'), + (220629, 'Severly Corroded Shadow Crystal (Skill Wrangler (Minor))', 220425, 121337, 'Skill Wrangler (Minor)', + 118047, NULL, NULL, NULL, 21, 'Tainted', 'Transfer', 'Wrangle', 0, 'Target', 0, 1, 0, 0, 0, 'Trader', + 'SL Loot'), + (220630, 'Tainted Shadow Crystal (Chant of Effortless Strikes)', 220436, 116811, 'Chant of Effortless Strikes', + 300518, NULL, NULL, NULL, 130, 'Tainted', 'Pet_Buffs', 'Meta-Physicist_Pet_Initiative_Buffs', 217, '', 0, 1, 0, + 0, 0, 'Meta-Physicist', 'SL Loot'), + (220631, 'Tainted Shadow Crystal (Calling of Sanoo)', 220431, 125743, 'Calling of Sanoo', 295568, NULL, NULL, + NULL, 87, 'Tainted', 'Pet', 'Heal_Pet', 0, '', 0, 1, 0, 0, 0, 'Meta-Physicist', 'SL Loot'), + (220632, 'Dirty Money Shadow Crystal (Terror Blast)', 220432, 30098, 'Terror Blast', 39145, NULL, NULL, NULL, 90, + 'Tainted', 'Crowd_Control', 'Fear', 256, '', 0, 1, 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (220633, 'Blood Stained and Corroded Crystal (Parasitic Horde)', 220437, 44157, 'Parasitic Horde', 16222, NULL, + NULL, NULL, 152, 'Tainted', 'Combat', 'DOT_-_Line_B', 7, '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (220635, 'Hacked Corroded Crystal (Lesser Delay the Inevitable)', 220423, 82542, 'Lesser Delay the Inevitable', + 46272, NULL, NULL, NULL, 37, 'Tainted', 'Crowd_Control', 'Snare', 145, 'Target', 0, 0, 0, 0, 0, 'Agent', + 'SL Loot'), + (220637, 'Badly Eroded Crystal (Wilderness Protection)', 220426, 74176, 'Wilderness Protection', 39136, NULL, + NULL, NULL, 43, 'Tainted', 'Buffs', 'Armor_Buffs', 3, '', 0, 1, 0, 0, 0, 'Adventurer', 'SL Loot'), + (220638, 'Failed Repaired Crystal (Pillar of Spikes)', 220433, 29773, 'Pillar of Spikes', 16221, NULL, NULL, + NULL, 93, 'Tainted', 'Buffs', 'Damage_Shields', 1, '', 0, 1, 0, 0, 0, 'Engineer', 'SL Loot'), + (220639, 'Tainted Shadow Crystal (Neuron-Notum Interface)', 220436, 29307, 'Neuron-Notum Interface', 16303, NULL, + NULL, NULL, 129, 'Tainted', 'Buffs', 'Nano_Point_Cost_Buffs', 148, '', 0, 1, 0, 0, 0, 'Meta-Physicist', + 'SL Loot'), + (220640, 'Hacked Corroded Crystal (Entrap Victim)', 220437, 56209, 'Entrap Victim', 46275, NULL, NULL, NULL, 142, + 'Tainted', 'Crowd_Control', 'Root', 146, '', 0, 0, 0, 0, 0, 'Agent', 'SL Loot'), + (220641, 'Overcharged Corroded Nano Crystal (Notum Overload)', 220411, 95443, 'Notum Overload', 16202, NULL, + NULL, NULL, 175, 'Tainted', 'Buffs', 'Nano_Formula_Range_Buffs', 181, '', 0, 1, 0, 0, 0, 'Nano-Technician', + 'SL Loot'), + (220642, 'Blood Stained and Corroded Crystal (Course of Treatment)', 220429, 43875, 'Course of Treatment', 44230, + NULL, NULL, NULL, 86, 'Tainted', 'Buffs', 'Heal_Over_Time', 12, '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (220643, 'Blood Stained and Corroded Crystal (Bodily Reinforcement)', 220422, 95719, 'Bodily Reinforcement', + 38905, NULL, NULL, NULL, 10, 'Tainted', 'Buffs', 'Doctor_HP_Buffs', 184, '', 0, 1, 0, 0, 0, 'Doctor', + 'SL Loot'), + (220644, 'Corroded Crystal with Bullet Holes (Damage Multiplier)', 220424, 29226, 'Damage Multiplier', 16350, + NULL, NULL, NULL, 7, 'Tainted', 'Buffs', 'Soldier_Damage_Base', 770, 'Target', 0, 1, 0, 0, 0, 'Soldier', + 'SL Loot'), + (220645, 'Tainted Shadow Crystal (Mocham''s Neural Interface-Web)', 220436, 95409, + 'Mocham''s Neural Interface-Web', 16303, NULL, NULL, NULL, 159, 'Tainted', 'Buffs', 'Nano_Point_Cost_Buffs', + 148, '', 0, 1, 0, 0, 0, 'Meta-Physicist', 'SL Loot'), + (220647, 'Overcharged Corroded Nano Crystal (Smiting Missile Mk II)', 220430, 45889, 'Smiting Missile Mk II', + 39811, NULL, NULL, NULL, 57, 'Tainted', 'Nukes', 'Medium_3s~2s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', + 'SL Loot'), + (220648, 'Failed Repaired Crystal (Flawed Warmachine)', 220411, 45722, 'Flawed Warmachine', 44135, NULL, NULL, + NULL, 162, 'Tainted', 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'SL Loot'), + (220649, 'Tainted Shadow Crystal (Frenzy Embodiment)', 220411, 43717, 'Frenzy Embodiment', 295577, NULL, NULL, + NULL, 129, 'Tainted', 'Pet', 'Attack_Pet', 0, '', 0, 1, 0, 0, 0, 'Meta-Physicist', 'SL Loot'), + (220650, 'Overcharged Corroded Nano Crystal (Wind Blade)', 220423, 45880, 'Wind Blade', 45182, NULL, NULL, NULL, + 27, 'Tainted', 'Nukes', 'Fast_1s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (220651, 'Tainted Shadow Crystal (Inferior Enmity Personification)', 220411, 43726, + 'Inferior Enmity Personification', 295597, NULL, NULL, NULL, 159, 'Tainted', 'Pet', 'Attack_Pet', 0, '', 0, 0, + 0, 0, 0, 'Meta-Physicist', 'SL Loot'), + (220652, 'Blood Stained and Corroded Crystal (Cellular Rebuild)', 220429, 43812, 'Cellular Rebuild', 44231, NULL, + NULL, NULL, 86, 'Tainted', 'Combat', 'Target_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (220653, 'Severly Corroded Shadow Crystal (Redeem AC (Major))', 220413, 92147, 'Redeem AC (Major)', 118033, NULL, + NULL, NULL, 156, 'Tainted', 'Transfer', 'AC_Transfer_Target_Buffs', 143, 'Target', 0, 1, 0, 0, 0, 'Trader', + 'SL Loot'), + (220654, 'Overcharged Corroded Nano Crystal (Bane of the Living)', 220437, 45939, 'Bane of the Living', 39801, + NULL, NULL, NULL, 113, 'Tainted', 'Nukes', 'Medium_3s~2s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (220655, 'Dirty Money Shadow Crystal (Baton of Leadership)', 220432, 90449, 'Baton of Leadership (Team)', 296548, + NULL, NULL, NULL, 99, 'Tainted', 'Buffs', 'Experience_Constructs_-_XP_Bonus', 959, '', 0, 1, 0, 0, 0, + 'Bureaucrat', 'SL Loot'), + (220656, 'Blood Stained and Corroded Crystal (Dissolve Molecular Bonding)', 220423, 44167, + 'Dissolve Molecular Bonding', 16225, NULL, NULL, NULL, 10, 'Tainted', 'Combat', 'DOT_-_Line_A', 6, '', 0, 1, 0, + 0, 0, 'Doctor', 'SL Loot'), + (220657, 'Tainted Shadow Crystal (High Chant of Frenzied Blows)', 220436, 116818, 'High Chant of Frenzied Blows', + 300518, NULL, NULL, NULL, 156, 'Tainted', 'Pet_Buffs', 'Meta-Physicist_Pet_Initiative_Buffs', 217, '', 0, 1, 0, + 0, 0, 'Meta-Physicist', 'SL Loot'), + (220658, 'Corroded Crystal with Bullet Holes (Persistent Damage Multiplier)', 220424, 29244, + 'Persistent Damage Multiplier', 39028, NULL, NULL, NULL, 17, 'Tainted', 'Buffs', 'Soldier_Damage_Base', 770, + 'Target', 0, 1, 0, 0, 0, 'Soldier', 'SL Loot'), + (220659, 'Overcharged Corroded Nano Crystal (Basic Humidity Extractor)', 220424, 90405, + 'Basic Humidity Extractor', 38844, NULL, NULL, NULL, 17, 'Tainted', 'Buffs', 'Nano_Over_Time_-_Line_A', 14, '', + 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (220660, 'Overcharged Corroded Nano Crystal (Superior Humidity Extractor)', 220431, 90402, + 'Superior Humidity Extractor', 38844, NULL, NULL, NULL, 99, 'Tainted', 'Buffs', 'Nano_Over_Time_-_Line_A', 14, + '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (220661, 'Dirty Money Shadow Crystal (Splinter Missile)', 220437, 78397, 'Splinter Missile', 39812, NULL, NULL, + NULL, 123, 'Tainted', 'Nukes', 'Normal', 0, '', 0, 1, 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (220662, 'Blood Stained and Corroded Crystal (Experimental Panacea)', 220436, 43814, 'Experimental Panacea', + 44232, NULL, NULL, NULL, 103, 'Tainted', 'Combat', 'Target_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (220663, 'Severly Corroded Shadow Crystal (Draw AC (Advanced))', 220413, 91322, 'Draw AC (Advanced)', 117903, + NULL, NULL, NULL, 159, 'Tainted', 'Drain', 'AC_Transfer_Target_DeBuffs', 140, 'Draw', 0, 1, 0, 0, 0, 'Trader', + 'SL Loot'), + (220664, 'Badly Eroded Crystal (Seed Life)', 220436, 82051, 'Seed Life', 44248, NULL, NULL, NULL, 169, 'Tainted', + 'Combat', 'Team_Healing', 952, '', 0, 1, 0, 0, 0, 'Adventurer', 'SL Loot'), + (220665, 'Corroded Crystal with Bullet Holes (Only You, Only Me)', 220412, 29242, 'Only You, Only Me', 16230, + NULL, NULL, NULL, 152, 'Tainted', 'Crowd_Control', 'Taunt_(normal)', 0, '', 0, 1, 0, 0, 0, 'Soldier', + 'SL Loot'), + (220666, 'Badly Corroded Crystal (Distracting Nuisance)', 220432, 100217, 'Distracting Nuisance', 16230, NULL, + NULL, NULL, 53, 'Tainted', 'Crowd_Control', 'Taunt', 0, '', 0, 1, 0, 0, 0, 'Martial Artist', 'SL Loot'), + (220667, 'Corroded Crystal with Bullet Holes (Major Reflective Field (Extended))', 220413, 70325, + 'Major Reflective Field (Extended)', 101018, NULL, NULL, NULL, 139, 'Tainted', 'Buffs', + 'Shadowland_Reflect_Base', 694, 'Target', 0, 1, 0, 0, 0, 'Soldier', 'SL Loot'), + (220668, 'Overcharged Corroded Nano Crystal (Impactor Missile)', 220437, 45904, 'Impactor Missile', 39813, NULL, + NULL, NULL, 123, 'Tainted', 'Nukes', 'Medium_3s~2s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (220669, 'Failed Repaired Crystal (Controlled Energy Overload)', 220431, 81922, 'Controlled Energy Overload', + 39168, NULL, NULL, NULL, 99, 'Tainted', 'Buffs', 'Damage_Buffs_-_Line_A', 4, '', 0, 1, 0, 0, 0, 'Engineer', + 'SL Loot'), + (220670, 'Hacked Corroded Crystal (Greater Suspicious Death)', 220437, 81934, 'Greater Suspicious Death', 49684, + NULL, NULL, NULL, 116, 'Tainted', 'Combat', 'DOT_Agent_Strain_A', 9, '', 0, 0, 0, 0, 0, 'Agent', 'SL Loot'), + (220671, 'Overcharged Corroded Nano Crystal (Boundless Humidity Extractor)', 220411, 90401, + 'Boundless Humidity Extractor', 38844, NULL, NULL, NULL, 149, 'Tainted', 'Buffs', 'Nano_Over_Time_-_Line_A', 14, + '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (220672, 'Badly Corroded Crystal (Summer Rain)', 220411, 81817, 'Summer Rain', 117896, NULL, NULL, NULL, 152, + 'Tainted', 'Buffs', 'Controlled_Destruction_Buffs', 222, '', 0, 1, 0, 0, 0, 'Martial Artist', 'SL Loot'), + (220673, 'Badly Eroded Crystal (Supreme Wilderness Protection)', 220413, 74173, 'Supreme Wilderness Protection', + 295525, NULL, NULL, NULL, 123, 'Tainted', 'Buffs', 'Armor_Buffs', 3, '', 0, 1, 0, 0, 0, 'Adventurer', + 'SL Loot'), + (220674, 'Blood Stained and Corroded Crystal (Superior Metabolism Booster)', 220436, 95712, + 'Superior Metabolism Booster', 38905, NULL, NULL, NULL, 152, 'Tainted', 'Buffs', 'Doctor_HP_Buffs', 184, '', 0, + 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (220675, 'Blood Stained and Corroded Crystal (Tissue Repair)', 220436, 43825, 'Tissue Repair', 44232, NULL, NULL, + NULL, 113, 'Tainted', 'Combat', 'Target_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (220676, 'Overcharged Corroded Nano Crystal (Nanoblade Cloud)', 220437, 45220, 'Nanoblade Cloud', 45183, NULL, + NULL, NULL, 142, 'Tainted', 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (220677, 'Severly Corroded Shadow Crystal (Minor Health Funnel)', 220422, 76729, 'Minor Health Funnel', 117905, + NULL, NULL, NULL, 7, 'Tainted', 'Drain', 'Health', 0, '', 0, 1, 0, 0, 0, 'Trader', 'SL Loot'), + (220679, 'Badly Eroded Crystal (Survival Technique)', 220422, 82063, 'Survival Technique', 44229, NULL, NULL, + NULL, 27, 'Tainted', 'Combat', 'Single_Target_Healing', 951, '', 0, 1, 0, 0, 0, 'Adventurer', 'SL Loot'), + (220680, 'Dirty Money Shadow Crystal (Basic Minion)', 220411, 46395, 'Basic Minion', 44135, NULL, NULL, NULL, + 142, 'Tainted', 'Pets', 'Robot', 0, '', 0, 0, 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (220681, 'Tainted Shadow Crystal (Summon Fiend)', 220411, 43738, 'Summon Fiend', 295584, NULL, NULL, NULL, 182, + 'Tainted', 'Pet', 'Attack_Pet_Summon', 0, '', 0, 0, 0, 0, 0, 'Meta-Physicist', 'SL Loot'), + (220682, 'Failed Repaired Crystal (Inferior Gladiatorbot)', 220431, 45705, 'Inferior Gladiatorbot', 44139, NULL, + NULL, NULL, 57, 'Tainted', 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'SL Loot'), + (220683, 'Severly Corroded Shadow Crystal (Major Delayed Health Payment)', 220429, 118234, + 'Major Delayed Health Payment', 44248, NULL, NULL, NULL, 100, 'Tainted', 'Transfer', 'Health', 0, 'Team', 0, 1, + 0, 0, 0, 'Trader', 'SL Loot'), + (220684, 'Blood Stained and Corroded Crystal (Emergency Stitching)', 220422, 43829, 'Emergency Stitching', 16246, + NULL, NULL, NULL, 4, 'Tainted', 'Combat', 'Target_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (220685, 'Badly Eroded Crystal (Frost With Snow)', 220426, 55836, 'Frost With Snow', 16221, NULL, NULL, NULL, 7, + 'Tainted', 'Buffs', 'Damage_Shields', 1, 'Target', 0, 1, 0, 0, 0, 'Adventurer', 'SL Loot'), + (220686, 'Corroded Crystal with Bullet Holes (Greater Deflection Shield (Extended))', 220433, 70335, + 'Greater Deflection Shield (Extended)', 39001, NULL, NULL, NULL, 57, 'Tainted', 'Buffs', + 'Shadowland_Reflect_Base', 694, 'Target', 0, 1, 0, 0, 0, 'Soldier', 'SL Loot'), + (220687, 'Dirty Money Shadow Crystal (Basic Assistant-Droid)', 220424, 46402, 'Basic Assistant-Droid', 44139, + NULL, NULL, NULL, 47, 'Tainted', 'Pets', 'Robot', 0, '', 0, 0, 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (220688, 'Cracked Crystal (Mighty Challenger to Gargantua)', 220431, 49751, 'Mighty Challenger to Gargantua', + 39088, 147327, 145827, 148827, 90, 'Misc', 'Buffs', 'Challenger', 5, '', 0, 1, 0, 0, 0, 'Enforcer', 'SL Loot'), + (220689, 'Corroded Crystal with Bullet Holes (Deflection Shield)', 220426, 70337, 'Deflection Shield', 39001, + NULL, NULL, NULL, 33, 'Tainted', 'Buffs', 'Shadowland_Reflect_Base', 694, 'Target', 0, 1, 0, 0, 0, 'Soldier', + 'SL Loot'), + (220690, 'Badly Eroded Crystal (Lesser Restore to Health)', 220422, 136688, 'Lesser Restore to Health', 16246, + NULL, NULL, NULL, 21, 'Tainted', 'Combat', 'Single_Target_Healing', 951, '', 0, 1, 0, 0, 0, 'Adventurer', + 'SL Loot'), + (220691, 'Dirty Money Shadow Crystal (Disjointed Psyche)', 220437, 100424, 'Disjointed Psyche', 84277, NULL, + NULL, NULL, 162, 'Tainted', 'Crowd_Control', 'Mezz', 147, 'Area', 0, 1, 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (220692, 'Severly Corroded Shadow Crystal (Lesser Health Freeloader)', 220429, 76679, 'Lesser Health Freeloader', + 117909, NULL, NULL, NULL, 80, 'Tainted', 'Drain', 'Health', 0, '', 0, 1, 0, 0, 0, 'Trader', 'SL Loot'), + (220693, 'Severly Corroded Shadow Crystal (Siphon AC (Major))', 220413, 91326, 'Siphon AC (Major)', 117902, NULL, + NULL, NULL, 146, 'Tainted', 'Drain', 'AC_Transfer_Target_DeBuffs', 139, 'Siphon', 0, 1, 0, 0, 0, 'Trader', + 'SL Loot'), + (220694, 'Dirty Money Shadow Crystal (Crush Bravery)', 220412, 121140, 'Crush Bravery', 39145, NULL, NULL, NULL, + 110, 'Tainted', 'Crowd_Control', 'Fear', 256, '', 0, 1, 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (220695, 'Failed Repaired Crystal (Patchy Repairs)', 220422, 116794, 'Patchy Repairs', 44229, NULL, NULL, NULL, + 34, 'Tainted', 'Pet_Combat', 'Pet_Heal', 0, '', 0, 1, 0, 0, 0, 'Engineer', 'SL Loot'), + (220696, 'Blood Stained and Corroded Crystal (Survivability Booster)', 220422, 96249, 'Survivability Booster', + 16330, NULL, NULL, NULL, 14, 'Tainted', 'Buffs', 'Doctor_Short_HP_Buffs', 185, '', 0, 1, 0, 0, 0, 'Doctor', + 'SL Loot'), + (220697, 'Severly Corroded Shadow Crystal (Skill Wrangler (Exceptional))', 220412, 121343, + 'Skill Wrangler (Exceptional)', 118055, NULL, NULL, NULL, 176, 'Tainted', 'Transfer', 'Wrangle', 0, 'Target', 0, + 1, 0, 0, 0, 'Trader', 'SL Loot'), + (220698, 'Corroded Crystal with Bullet Holes (Id Assault)', 220412, 100207, 'Id Assault', 16230, NULL, NULL, + NULL, 132, 'Tainted', 'Crowd_Control', 'Taunt_(normal)', 0, '', 0, 1, 0, 0, 0, 'Soldier', 'SL Loot'), + (220699, 'Overcharged Corroded Nano Crystal (Layered Protection)', 220433, 117679, 'Layered Protection', 16197, + NULL, NULL, NULL, 80, 'Tainted', 'Buffs', 'Absorb_AC_Buffs', 219, '', 0, 1, 0, 0, 0, 'Nano-Technician', + 'SL Loot'), + (220700, 'Corroded Crystal with Bullet Holes (Survivor''s Resilience)', 220436, 95693, 'Survivor''s Resilience', + 100997, NULL, NULL, NULL, 139, 'Tainted', 'Buffs', 'HP_Buffs', 151, '', 0, 1, 0, 0, 0, 'Soldier', 'SL Loot'), + (220701, 'Blood Stained and Corroded Crystal (Blood Circle)', 220422, 27804, 'Blood Circle', 38953, NULL, NULL, + NULL, 24, 'Tainted', 'Combat', 'Team_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (220702, 'Severly Corroded Shadow Crystal (Lend Nano: 500)', 220436, 30731, 'Lend Nano: 500', 16303, NULL, NULL, + NULL, 116, 'Tainted', 'Transfer', 'Nano_Point_Buffs', 178, '', 0, 1, 0, 0, 0, 'Trader', 'SL Loot'), + (220703, 'Blood Stained and Corroded Crystal (Bloom of Health)', 220436, 28645, 'Bloom of Health', 44233, NULL, + NULL, NULL, 129, 'Tainted', 'Combat', 'Target_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (220704, 'Blood Stained and Corroded Crystal (Bind Wounds)', 220422, 28681, 'Bind Wounds', 44229, NULL, NULL, + NULL, 24, 'Tainted', 'Combat', 'Target_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (220705, 'Hacked Corroded Crystal (Assume Profession: Engineer)', 220432, 117224, 'Assume Profession: Engineer', + 16775, NULL, NULL, NULL, 90, 'Tainted', 'False_Professions', 'False_Profession', 218, 'Engineer', 0, 1, 0, 0, 0, + 'Agent', 'SL Loot'), + (220706, 'Blood Stained and Corroded Crystal (Colossal Health)', 220436, 28649, 'Colossal Health', 38905, NULL, + NULL, NULL, 116, 'Tainted', 'Buffs', 'Doctor_HP_Buffs', 184, '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (220707, 'Blood Stained and Corroded Crystal (Close Wounds)', 220429, 28648, 'Close Wounds', 44232, NULL, NULL, + NULL, 90, 'Tainted', 'Combat', 'Target_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (220708, 'Blood Stained and Corroded Crystal (Healer''s Hands)', 220436, 43816, 'Healer''s Hands', 44233, NULL, + NULL, NULL, 123, 'Tainted', 'Combat', 'Target_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (220709, 'Blood Stained and Corroded Crystal (Complete Healing)', 220436, 28650, 'Complete Healing', 301568, + NULL, NULL, NULL, 169, 'Tainted', 'Combat', 'Complete_Healing_Line', 282, '', 0, 1, 0, 0, 0, 'Doctor', + 'SL Loot'), + (220710, 'Weird Looking Nano Crystal (Continuous Reconstruction)', 301188, 222824, 'Continuous Reconstruction', + 301174, 0, 0, 0, 146, 'Crystal', 'Buffs', 'Heal_Delta_Buffs', 203, '', 0, 1, 0, 0, 0, 'Doctor', + 'Greedy Shade / SL Static'), + (220711, 'Dirty Money Shadow Crystal (Temporary Allegiance)', 220412, 99196, 'Temporary Allegiance', 39137, NULL, + NULL, NULL, 159, 'Tainted', 'Crowd_Control', 'Charm_Other', 202, 'Short', 0, 1, 0, 0, 0, 'Bureaucrat', + 'SL Loot'), + (220712, 'Blood Stained and Corroded Crystal (Doctor''s Grace)', 220422, 28654, 'Doctor''s Grace', 16246, NULL, + NULL, NULL, 7, 'Tainted', 'Combat', 'Target_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (220713, 'Overcharged Corroded Nano Crystal (Dissolving Sphere)', 220437, 45926, 'Dissolving Sphere', 39795, + NULL, NULL, NULL, 109, 'Tainted', 'Nukes', 'Medium_3s~2s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (220714, 'Badly Corroded Crystal (Crash of Thunder)', 220424, 81828, 'Crash of Thunder', 16350, NULL, NULL, NULL, + 10, 'Tainted', 'Buffs', 'Controlled_Destruction_Buffs', 222, '', 0, 1, 0, 0, 0, 'Martial Artist', 'SL Loot'), + (220715, 'Blood Stained and Corroded Crystal (Enhanced First Aid)', 220425, 28657, 'Enhanced First Aid', 16239, + NULL, NULL, NULL, 14, 'Tainted', 'Buffs', 'First_Aid_And_Treatment_Buffs', 190, '', 0, 1, 0, 0, 0, 'Doctor', + 'SL Loot'), + (220716, 'Blood Stained and Corroded Crystal (Enlarge)', 220422, 28658, 'Enlarge', 16324, NULL, NULL, NULL, 37, + 'Tainted', 'Buffs', 'Strength_Buffs', 156, '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (220717, 'Badly Corroded Crystal (Steel Skin)', 220433, 28907, 'Steel Skin', 39116, NULL, NULL, NULL, 76, + 'Tainted', 'Buffs', 'Armor_Buffs', 3, '', 0, 1, 0, 0, 0, 'Martial Artist', 'SL Loot'), + (220718, 'Overcharged Corroded Nano Crystal (Localized Dimensional Inversion)', 220437, 45226, + 'Localized Dimensional Inversion', 45184, NULL, NULL, NULL, 189, 'Tainted', 'Nukes', 'Medium_4s~3s', 0, '', 0, + 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (220719, 'Blood Stained and Corroded Crystal (Premium Cover)', 220422, 28672, 'Premium Cover', 44230, NULL, NULL, + NULL, 37, 'Tainted', 'Combat', 'Target_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (220720, 'Corroded Crystal with Bullet Holes (Reactive Deflection Shield)', 220433, 70316, + 'Reactive Deflection Shield', 39141, NULL, NULL, NULL, 76, 'Tainted', 'Buffs', 'Shadowland_Reflect_Base', 694, + 'Target', 0, 1, 0, 0, 0, 'Soldier', 'SL Loot'), + (220721, 'Badly Corroded Crystal (Shen Protection)', 220433, 75344, 'Shen Protection', 38976, NULL, NULL, NULL, + 66, 'Tainted', 'Buffs', 'Armor_Buffs', 3, '', 0, 1, 0, 0, 0, 'Martial Artist', 'SL Loot'), + (220722, 'Overcharged Corroded Nano Crystal (Solar Wind)', 220437, 45890, 'Solar Wind', 45189, NULL, NULL, NULL, + 152, 'Tainted', 'Nukes', 'Medium_3s~2s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (220723, 'Blood Stained and Corroded Crystal (Exaggerated Health)', 220429, 28660, 'Exaggerated Health', 38905, + NULL, NULL, NULL, 80, 'Tainted', 'Buffs', 'Doctor_HP_Buffs', 184, '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (220724, 'Corroded Crystal with Bullet Holes (Persistent Damage Amplifier)', 220431, 29243, + 'Persistent Damage Amplifier', 39308, NULL, NULL, NULL, 57, 'Tainted', 'Buffs', 'Soldier_Damage_Base', 770, + 'Target', 0, 1, 0, 0, 0, 'Soldier', 'SL Loot'), + (220726, 'Blood Stained and Corroded Crystal (Gargantuan Health)', 220436, 28662, 'Gargantuan Health', 38905, + NULL, NULL, NULL, 165, 'Tainted', 'Buffs', 'Doctor_HP_Buffs', 184, '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (220727, 'Tainted Shadow Crystal (Coherent Notum Web)', 220429, 95411, 'Coherent Notum Web', 16303, NULL, NULL, + NULL, 90, 'Tainted', 'Buffs', 'Nano_Point_Cost_Buffs', 148, '', 0, 1, 0, 0, 0, 'Meta-Physicist', 'SL Loot'), + (220728, 'Dirty Money Shadow Crystal (Supervisor-Grade Assistant-Droid)', 220431, 46354, + 'Supervisor-Grade Assistant-Droid', 44139, NULL, NULL, NULL, 60, 'Tainted', 'Pets', 'Robot', 0, '', 0, 0, 0, 0, + 0, 'Bureaucrat', 'SL Loot'), + (220729, 'Tainted Shadow Crystal (Inferior Frenzy Embodiment)', 220411, 43727, 'Inferior Frenzy Embodiment', + 295577, NULL, NULL, NULL, 123, 'Tainted', 'Pet', 'Attack_Pet', 0, '', 0, 1, 0, 0, 0, 'Meta-Physicist', + 'SL Loot'), + (220730, 'Weird Looking Nano Crystal (Hearty Constitution)', 301188, 222855, 'Hearty Constitution', 301174, 0, 0, + 0, 76, 'Crystal', 'Buffs', 'Heal_Delta_Buffs', 203, '', 0, 1, 0, 0, 0, 'Doctor', 'Greedy Shade / SL Static'), + (220731, 'Blood Stained and Corroded Crystal (Cellular Dismantlement)', 220437, 44172, 'Cellular Dismantlement', + 16222, NULL, NULL, NULL, 156, 'Tainted', 'Combat', 'DOT_-_Line_B', 7, '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (220732, 'Dirty Money Shadow Crystal (Energized Bolt)', 220423, 81999, 'Energized Bolt', 39802, NULL, NULL, NULL, + 4, 'Tainted', 'Nukes', 'Normal', 0, '', 0, 1, 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (220733, 'Weird Looking Nano Crystal (Improved Instinctive Control)', 301186, 222856, + 'Improved Instinctive Control', 301235, 0, 0, 0, 90, 'Crystal', 'Buffs', 'Initiative_Buffs', 152, '', 0, 1, 1, + 0, 0, 'Doctor', 'Greedy Shade / SL Static'), + (220734, 'Cracked Crystal (Barbaric Blades)', 220433, 55747, 'Barbaric Blades', 16221, 147277, 145777, 148777, + 83, 'Misc', 'Buffs', 'Damage_Shields', 1, '', 0, 1, 0, 0, 0, 'Enforcer', 'SL Loot'), + (220735, 'Overcharged Corroded Nano Crystal (Claw Eyes)', 220425, 83943, 'Claw Eyes', 39126, NULL, NULL, NULL, 7, + 'Tainted', 'DeBuffs', 'Add_All_Offence_DeBuffs', 13, 'Target', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (220736, 'Tainted Shadow Crystal (Frost Slivers)', 220423, 125764, 'Frost Slivers', 45170, NULL, NULL, NULL, 17, + 'Tainted', 'Combat', 'Nuke_Normal', 0, '', 0, 1, 0, 0, 0, 'Meta-Physicist', 'SL Loot'), + (220737, 'Blood Stained and Corroded Crystal (Superior Health Pump)', 220436, 43873, 'Superior Health Pump', + 44233, NULL, NULL, NULL, 162, 'Tainted', 'Buffs', 'Heal_Over_Time', 12, '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (220738, 'Overcharged Corroded Nano Crystal (Unstable Hadron String)', 220437, 45203, 'Unstable Hadron String', + 39816, NULL, NULL, NULL, 119, 'Tainted', 'Nukes', 'Long_8s~1s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', + 'SL Loot'), + (220739, 'Overcharged Corroded Nano Crystal (Tear Flesh)', 220437, 45200, 'Tear Flesh', 39810, NULL, NULL, NULL, + 116, 'Tainted', 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (220740, 'Dirty Money Shadow Crystal (Faithful Administrator-Droid)', 220411, 46369, + 'Faithful Administrator-Droid', 44140, NULL, NULL, NULL, 132, 'Tainted', 'Pets', 'Robot', 0, '', 0, 0, 0, 0, 0, + 'Bureaucrat', 'SL Loot'), + (220741, 'Failed Repaired Crystal (Perfected Gladiatorbot)', 220431, 45699, 'Perfected Gladiatorbot', 44139, + NULL, NULL, NULL, 83, 'Tainted', 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'SL Loot'), + (220742, 'Dirty Money Shadow Crystal (Greater Musculature Command)', 220437, 55981, + 'Greater Musculature Command', 46275, NULL, NULL, NULL, 162, 'Tainted', 'Crowd_Control', 'Root', 146, 'Target', + 0, 1, 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (220743, 'Weird Looking Nano Crystal (Nano Repulsor)', 301189, 222823, 'Improved Nano Repulsor', 295518, 0, 0, 0, + 99, 'Crystal', 'Buffs', 'Nano_Resistance_Buffs', 204, '', 0, 1, 0, 0, 0, 'Doctor', 'Greedy Shade / SL Static'), + (220744, 'Failed Repaired Crystal (Semi-Sentient Android)', 220424, 45680, 'Semi-Sentient Android', 44139, NULL, + NULL, NULL, 43, 'Tainted', 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'SL Loot'), + (220745, 'Snow Crashed Shadow Crystal (No Escape Possible)', 220423, 56225, 'No Escape Possible', 46272, NULL, + NULL, NULL, 14, 'Tainted', 'Crowd_Control', 'Root', 146, '', 0, 1, 0, 0, 0, 'Fixer', 'SL Loot'), + (220746, 'Badly Eroded Crystal (Team Free Movement)', 220432, 26698, 'Team Free Movement', 296731, NULL, NULL, + NULL, 66, 'Tainted', 'Buffs', 'Team_Run_Speed_Buffs', 1034, '', 0, 1, 0, 0, 0, 'Adventurer', 'SL Loot'), + (220747, 'Corroded Crystal with Bullet Holes (Advanced Absorption Shield)', 220413, 75405, + 'Advanced Absorption Shield', 39276, NULL, NULL, NULL, 132, 'Tainted', 'Buffs', 'Armor_Buffs', 3, '', 0, 1, 0, + 0, 0, 'Soldier', 'SL Loot'), + (220748, 'Blood Stained and Corroded Crystal (Inflict Harm)', 220423, 28667, 'Inflict Harm', 39808, NULL, NULL, + NULL, 7, 'Tainted', 'Combat', 'Nuke', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (220749, 'Hacked Corroded Crystal (Mimic Profession: Soldier)', 220412, 117216, 'Mimic Profession: Soldier', + 16775, NULL, NULL, NULL, 146, 'Tainted', 'False_Professions', 'False_Profession', 218, 'Soldier', 0, 1, 0, 0, 0, + 'Agent', 'SL Loot'), + (220750, 'Severly Corroded Shadow Crystal (Irresistible Health Haggler)', 220436, 121500, + 'Irresistible Health Haggler', 44234, NULL, NULL, NULL, 149, 'Tainted', 'Transfer', 'Health', 0, 'Target', 0, 1, + 0, 0, 0, 'Trader', 'SL Loot'), + (220751, 'Badly Eroded Crystal (Restore Vitality)', 220436, 136682, 'Restore Vitality', 44230, NULL, NULL, NULL, + 107, 'Tainted', 'Combat', 'Single_Target_Healing', 951, '', 0, 1, 0, 0, 0, 'Adventurer', 'SL Loot'), + (220752, 'Blood Stained and Corroded Crystal (Superior First Aid)', 220412, 28675, 'Superior First Aid', 16239, + NULL, NULL, NULL, 119, 'Tainted', 'Buffs', 'First_Aid_And_Treatment_Buffs', 190, '', 0, 1, 0, 0, 0, 'Doctor', + 'SL Loot'), + (220753, 'Cracked Crystal (Thicken Skin)', 220426, 117681, 'Thicken Skin', 16197, 147345, 145845, 148845, 37, + 'Misc', 'Buffs', 'Absorb_AC_Buffs', 219, '', 0, 1, 0, 0, 0, 'Enforcer', 'SL Loot'), + (220754, 'Blood Stained and Corroded Crystal (Physician''s Skill)', 220422, 43836, 'Physician''s Skill', 44229, + NULL, NULL, NULL, 33, 'Tainted', 'Combat', 'Target_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (220755, 'Cracked Crystal (Headcracker)', 220425, 29644, 'Headcracker', 16200, 147317, 145817, 148817, 30, + 'Misc', 'Buffs', 'Melee_Weapon_Buffs_Line', 180, '1H_Blunt_and_2H_Blunt_Buffs', 0, 1, 0, 0, 0, 'Enforcer', + 'SL Loot'), + (220756, 'Severly Corroded Shadow Crystal (Sophisticated Delayed Health Payment)', 220436, 118232, + 'Sophisticated Delayed Health Payment', 44250, NULL, NULL, NULL, 156, 'Tainted', 'Transfer', 'Health', 0, + 'Team', 0, 1, 0, 0, 0, 'Trader', 'SL Loot'), + (220757, 'Overcharged Corroded Nano Crystal (Searing Circle)', 220437, 45213, 'Searing Circle', 45180, NULL, + NULL, NULL, 152, 'Tainted', 'Nukes', 'Long_8s~1s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (220758, 'Tainted Shadow Crystal (Greater Anger Manifestation)', 220424, 43719, 'Greater Anger Manifestation', + 295577, NULL, NULL, NULL, 7, 'Tainted', 'Pet', 'Attack_Pet', 0, '', 0, 1, 0, 0, 0, 'Meta-Physicist', 'SL Loot'), + (220759, 'Overcharged Corroded Nano Crystal (Micro Flechette)', 220423, 45902, 'Micro Flechette', 45185, NULL, + NULL, NULL, 17, 'Tainted', 'Nukes', 'Fast_1s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (220760, 'Blood Stained and Corroded Crystal (Specialist Treatment)', 220425, 28674, 'Specialist Treatment', + 16342, NULL, NULL, NULL, 33, 'Tainted', 'Buffs', 'First_Aid_And_Treatment_Buffs', 190, '', 0, 1, 0, 0, 0, + 'Doctor', 'SL Loot'), + (220761, 'Blood Stained and Corroded Crystal (Superior Healing)', 220422, 28676, 'Superior Healing', 44229, NULL, + NULL, NULL, 30, 'Tainted', 'Combat', 'Target_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (220762, 'Blood Stained and Corroded Crystal (Surgeon''s Touch)', 220429, 28677, 'Surgeon''s Touch', 44230, NULL, + NULL, NULL, 53, 'Tainted', 'Combat', 'Target_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (220763, 'Overcharged Corroded Nano Crystal (Frigid Landscape)', 220437, 45922, 'Frigid Landscape', 45147, NULL, + NULL, NULL, 159, 'Tainted', 'Nukes', 'AoE_Nuke', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (220764, 'Severly Corroded Shadow Crystal (Guard Convoy)', 220411, 30721, 'Guard Convoy', 118030, NULL, NULL, + NULL, 149, 'Tainted', 'Buffs', 'Damage', 0, 'Team', 0, 1, 0, 0, 0, 'Trader', 'SL Loot'), + (220765, 'Severly Corroded Shadow Crystal (Major Health Freeloader)', 220429, 76656, 'Major Health Freeloader', + 117910, NULL, NULL, NULL, 93, 'Tainted', 'Drain', 'Health', 0, '', 0, 1, 0, 0, 0, 'Trader', 'SL Loot'), + (220766, 'Overcharged Corroded Nano Crystal (Dual Ion Stream)', 220430, 45928, 'Dual Ion Stream', 39814, NULL, + NULL, NULL, 60, 'Tainted', 'Nukes', 'Fast_1s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (220767, 'Overcharged Corroded Nano Crystal (Feet of Lead)', 220437, 56022, 'Feet of Lead', 46275, NULL, NULL, + NULL, 165, 'Tainted', 'Crowd_Control', 'Root', 146, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (220768, 'Blood Stained and Corroded Crystal (Wrack and Ruin)', 220437, 28640, 'Wrack and Ruin', 16222, NULL, + NULL, NULL, 179, 'Tainted', 'Combat', 'DOT_-_Line_A', 6, '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (220769, 'Tainted Shadow Crystal (Transcendent Frenzy Embodiment)', 220411, 43753, + 'Transcendent Frenzy Embodiment', 295577, NULL, NULL, NULL, 152, 'Tainted', 'Pet', 'Attack_Pet', 0, '', 0, 1, 0, + 0, 0, 'Meta-Physicist', 'SL Loot'), + (220770, 'Failed Repaired Crystal (Advanced Force Field)', 220413, 70529, 'Advanced Force Field', 100996, NULL, + NULL, NULL, 179, 'Tainted', 'Buffs', 'Armor_Buffs', 3, '', 0, 1, 0, 0, 0, 'Engineer', 'SL Loot'), + (220771, 'Blood Stained and Corroded Crystal (Radiant Heal)', 220436, 42404, 'Radiant Heal', 44248, NULL, NULL, + NULL, 123, 'Tainted', 'Combat', 'Team_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (220772, 'Blood Stained and Corroded Crystal (Enhance Constitution)', 220422, 95716, 'Enhance Constitution', + 38905, NULL, NULL, NULL, 27, 'Tainted', 'Buffs', 'Doctor_HP_Buffs', 184, '', 0, 1, 0, 0, 0, 'Doctor', + 'SL Loot'), + (220773, 'Tainted Shadow Crystal (Nano Shutdown)', 220436, 29306, 'Nano Shutdown', 300509, NULL, NULL, NULL, 162, + 'Tainted', 'DeBuffs', 'Nano_Shutdown_DeBuffs', 239, '', 0, 1, 0, 0, 0, 'Meta-Physicist', 'SL Loot'), + (220774, 'Badly Corroded Crystal (Encourage Hatred)', 220432, 100215, 'Encourage Hatred', 16230, NULL, NULL, + NULL, 86, 'Tainted', 'Crowd_Control', 'Taunt', 0, '', 0, 1, 0, 0, 0, 'Martial Artist', 'SL Loot'), + (220775, 'Cracked Crystal (Aggressive Instincts)', 220425, 100211, 'Aggressive Instincts', 16230, 147273, 145773, + 148773, 27, 'Misc', 'Crowd_Control', 'Taunt_Target', 0, '', 0, 1, 0, 0, 0, 'Enforcer', 'SL Loot'), + (220776, 'Hacked Corroded Crystal (Mimic Profession: Doctor)', 220412, 117210, 'Mimic Profession: Doctor', 16775, + NULL, NULL, NULL, 162, 'Tainted', 'False_Professions', 'False_Profession', 218, 'Doctor', 0, 1, 0, 0, 0, + 'Agent', 'SL Loot'), + (220777, 'Failed Repaired Crystal (Aegis Barrier)', 220413, 29789, 'Aegis Barrier', 100996, NULL, NULL, NULL, + 189, 'Tainted', 'Buffs', 'Armor_Buffs', 3, '', 0, 1, 0, 0, 0, 'Engineer', 'SL Loot'), + (220778, 'Hacked Corroded Crystal (Lesser Paralyze with Indecision)', 220423, 56217, + 'Lesser Paralyze with Indecision', 46272, NULL, NULL, NULL, 33, 'Tainted', 'Crowd_Control', 'Root', 146, '', 0, + 0, 0, 0, 0, 'Agent', 'SL Loot'), + (220779, 'Failed Repaired Crystal (Armor Megaboost)', 220426, 29743, 'Armor Megaboost', 16197, NULL, NULL, NULL, + 1, 'Tainted', 'Buffs', 'Armor_Buffs', 3, '', 0, 1, 0, 0, 0, 'Engineer', 'SL Loot'), + (220780, 'Cracked Crystal (Brutal Thug)', 220432, 29630, 'Brutal Thug', 16200, 147287, 145787, 148787, 76, + 'Misc', 'Buffs', 'Melee_Weapon_Buffs_Line', 180, '1H_Blunt_and_2H_Blunt_Buffs', 0, 1, 0, 0, 0, 'Enforcer', + 'SL Loot'), + (220781, 'Failed Repaired Crystal (Slayerdroid Warden)', 220411, 45674, 'Slayerdroid Warden', 44135, NULL, NULL, + NULL, 185, 'Tainted', 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'SL Loot'), + (220782, 'Overcharged Corroded Nano Crystal (Dark Movement)', 220432, 28603, 'Dark Movement', 16234, NULL, NULL, + NULL, 90, 'Tainted', 'Buffs', 'Major_Evasion_Buffs', 144, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (220783, 'Failed Repaired Crystal (Extreme Prejudice)', 220412, 29762, 'Extreme Prejudice', 16252, NULL, NULL, + NULL, 139, 'Tainted', 'Buffs', 'Grenade_Buffs', 207, '', 0, 1, 0, 0, 0, 'Engineer', 'SL Loot'), + (220784, 'Badly Eroded Crystal (Lightning''s Child)', 220413, 55817, 'Lightning''s Child', 16221, NULL, NULL, + NULL, 152, 'Tainted', 'Buffs', 'Damage_Shields', 1, 'Target', 0, 1, 0, 0, 0, 'Adventurer', 'SL Loot'), + (220785, 'Cracked Crystal (Focused Anger)', 220432, 29641, 'Focused Anger', 16194, 147312, 145812, 148812, 60, + 'Misc', 'Buffs', 'Initiative_Buffs', 152, '', 0, 1, 0, 0, 0, 'Enforcer', 'SL Loot'), + (220786, 'Tainted Shadow Crystal (Calling of Medinos)', 220424, 125738, 'Calling of Medinos', 295568, NULL, NULL, + NULL, 17, 'Tainted', 'Pet', 'Heal_Pet', 0, '', 0, 1, 0, 0, 0, 'Meta-Physicist', 'SL Loot'), + (220787, 'Severly Corroded Shadow Crystal (Practiced Health Haggler)', 220422, 121498, + 'Practiced Health Haggler', 44229, NULL, NULL, NULL, 27, 'Tainted', 'Transfer', 'Health', 0, 'Target', 0, 1, 0, + 0, 0, 'Trader', 'SL Loot'), + (220788, 'Hacked Corroded Crystal (Hidden Killer)', 220423, 81939, 'Hidden Killer', 16226, NULL, NULL, NULL, 40, + 'Tainted', 'Combat', 'DOT_Agent_Strain_A', 9, '', 0, 0, 0, 0, 0, 'Agent', 'SL Loot'), + (220789, 'Overcharged Corroded Nano Crystal (Acidic Conversion)', 220423, 45257, 'Acidic Conversion', 45167, + NULL, NULL, NULL, 27, 'Tainted', 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (220790, 'Failed Repaired Crystal (Basic Shielding Barrier)', 220426, 70543, 'Basic Shielding Barrier', 16197, + NULL, NULL, NULL, 27, 'Tainted', 'Buffs', 'Armor_Buffs', 3, '', 0, 1, 0, 0, 0, 'Engineer', 'SL Loot'), + (220791, 'Overcharged Corroded Nano Crystal (Acidic Projection)', 220423, 42539, 'Acidic Projection', 45167, + NULL, NULL, NULL, 7, 'Tainted', 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (220792, 'Blood Stained and Corroded Crystal (Complex Nano Contagion)', 220437, 44169, 'Complex Nano Contagion', + 16222, NULL, NULL, NULL, 146, 'Tainted', 'Combat', 'DOT_-_Line_B', 7, '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (220793, 'Blood Stained and Corroded Crystal (Refined Nano Contagion)', 220430, 44151, 'Refined Nano Contagion', + 16226, NULL, NULL, NULL, 66, 'Tainted', 'Combat', 'DOT_-_Line_B', 7, '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (220794, 'Severly Corroded Shadow Crystal (Team Skill Wrangler (Premium))', 220412, 121320, + 'Team Skill Wrangler (Premium)', 117993, NULL, NULL, NULL, 189, 'Tainted', 'Transfer', 'Wrangle', 0, 'Team', 0, + 1, 0, 0, 0, 'Trader', 'SL Loot'), + (220795, 'Severly Corroded Shadow Crystal (Draw AC (Minor))', 220413, 91331, 'Draw AC (Minor)', 117901, NULL, + NULL, NULL, 113, 'Tainted', 'Drain', 'AC_Transfer_Target_DeBuffs', 140, 'Draw', 0, 1, 0, 0, 0, 'Trader', + 'SL Loot'), + (220796, 'Overcharged Corroded Nano Crystal (Dual Energized Beams)', 220423, 45927, 'Dual Energized Beams', + 45176, NULL, NULL, NULL, 20, 'Tainted', 'Nukes', 'Medium_3s~2s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', + 'SL Loot'), + (220797, 'Snow Crashed Shadow Crystal (Karma Harvest)', 220412, 31390, 'Karma Harvest', 301583, NULL, NULL, NULL, + 152, 'Tainted', 'Buffs', 'Break_&_Entry_Buffs', 171, '', 0, 1, 0, 0, 0, 'Fixer', 'SL Loot'), + (220798, 'Badly Eroded Crystal (Biting Blades)', 220413, 55821, 'Biting Blades', 16221, NULL, NULL, NULL, 126, + 'Tainted', 'Buffs', 'Damage_Shields', 1, 'Target', 0, 1, 0, 0, 0, 'Adventurer', 'SL Loot'), + (220799, 'Severly Corroded Shadow Crystal (Advanced Health Plunder)', 220436, 76475, 'Advanced Health Plunder', + 117914, NULL, NULL, NULL, 169, 'Tainted', 'Drain', 'Health', 0, '', 0, 1, 0, 0, 0, 'Trader', 'SL Loot'), + (220800, 'Overcharged Corroded Nano Crystal (Lesser Encircle With Blades)', 220423, 45898, + 'Lesser Encircle With Blades', 39808, NULL, NULL, NULL, 47, 'Tainted', 'Nukes', 'Medium_3s~2s', 0, '', 0, 1, 0, + 0, 0, 'Nano-Technician', 'SL Loot'), + (220801, 'Snow Crashed Shadow Crystal (Grid Phase Accelerator)', 220411, 93126, 'Grid Phase Accelerator', 16300, + NULL, NULL, NULL, 136, 'Tainted', 'Buffs', 'Major_Evasion_Buffs', 144, '', 0, 1, 0, 0, 0, 'Fixer', 'SL Loot'), + (220802, 'Overcharged Corroded Nano Crystal (Warmth of the Grave)', 220437, 45192, 'Warmth of the Grave', 45172, + NULL, NULL, NULL, 189, 'Tainted', 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (220803, 'Failed Repaired Crystal (Crowbar Subtlety)', 220425, 29189, 'Crowbar Subtlety', 16205, NULL, NULL, + NULL, 20, 'Tainted', 'Buffs', 'Breaking_&_Entry/Disarm_Traps_Buffs', 206, '', 0, 1, 0, 0, 0, 'Engineer', + 'SL Loot'), + (220804, 'Blood Stained and Corroded Crystal (Minor Consuming Toxin)', 220423, 44161, 'Minor Consuming Toxin', + 16225, NULL, NULL, NULL, 37, 'Tainted', 'Combat', 'DOT_-_Line_A', 6, '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (220805, 'Severly Corroded Shadow Crystal (Balanced Striker)', 220424, 30713, 'Balanced Striker', 16350, NULL, + NULL, NULL, 7, 'Tainted', 'Buffs', 'Damage', 0, 'Target', 0, 1, 0, 0, 0, 'Trader', 'SL Loot'), + (220806, 'Hacked Corroded Crystal (Inject Venom)', 220430, 81937, 'Inject Venom', 16226, NULL, NULL, NULL, 66, + 'Tainted', 'Combat', 'DOT_Agent_Strain_A', 9, '', 0, 0, 0, 0, 0, 'Agent', 'SL Loot'), + (220807, 'Hacked Corroded Crystal (Major Nano Augmentation)', 220431, 81852, 'Major Nano Augmentation', 39308, + NULL, NULL, NULL, 80, 'Tainted', 'Buffs', 'Damage_Buffs_-_Line_A', 4, '', 0, 0, 0, 0, 0, 'Agent', 'SL Loot'), + (220810, 'Failed Repaired Crystal (Philosopher''s Stone)', 220432, 29772, 'Philosopher''s Stone', 16210, NULL, + NULL, NULL, 53, 'Tainted', 'Buffs', 'Chemistry/Pharm_Buffs', 196, '', 0, 1, 0, 0, 0, 'Engineer', 'SL Loot'), + (220811, 'Cracked Crystal (Physical Dominance)', 220412, 29649, 'Physical Dominance', 16250, 147334, 145834, + 148834, 113, 'Misc', 'Buffs', 'Initiative_Buffs', 152, '', 0, 1, 0, 0, 0, 'Enforcer', 'SL Loot'), + (220812, 'Hacked Corroded Crystal (False Profession: Fixer)', 220425, 32039, 'False Profession: Fixer', 16775, + NULL, NULL, NULL, 24, 'Tainted', 'False_Professions', 'False_Profession', 218, 'Fixer', 0, 1, 0, 0, 0, 'Agent', + 'SL Loot'), + (220813, 'Blood Stained and Corroded Crystal (Spreading Health)', 220422, 43915, 'Spreading Health', 38953, NULL, + NULL, NULL, 27, 'Tainted', 'Combat', 'Team_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (220814, 'Cracked Crystal (Prodigious Strength)', 220436, 29652, 'Prodigious Strength', 16324, 147337, 145837, + 148837, 136, 'Misc', 'Buffs', 'Strength_Buffs', 156, '', 0, 1, 0, 0, 0, 'Enforcer', 'SL Loot'), + (220815, 'Hacked Corroded Crystal (Anatomy Lesson)', 220424, 81853, 'Anatomy Lesson', 39168, NULL, NULL, NULL, + 40, 'Tainted', 'Buffs', 'Damage_Buffs_-_Line_A', 4, '', 0, 0, 0, 0, 0, 'Agent', 'SL Loot'), + (220816, 'Failed Repaired Crystal (Quick Weapon)', 220425, 29778, 'Quick Weapon', 16250, NULL, NULL, NULL, 40, + 'Tainted', 'Buffs', 'Initiative_Buffs', 152, '', 0, 1, 0, 0, 0, 'Engineer', 'SL Loot'), + (220817, 'Failed Repaired Crystal (Rapid Weapon)', 220412, 29779, 'Rapid Weapon', 16250, NULL, NULL, NULL, 129, + 'Tainted', 'Buffs', 'Initiative_Buffs', 152, '', 0, 1, 0, 0, 0, 'Engineer', 'SL Loot'), + (220818, 'Dirty Money Shadow Crystal (Restrict Movement)', 220423, 55991, 'Restrict Movement', 46272, NULL, NULL, + NULL, 24, 'Tainted', 'Crowd_Control', 'Root', 146, 'Target', 0, 1, 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (220819, 'Failed Repaired Crystal (Common Warbot)', 220411, 45727, 'Common Warbot', 44140, NULL, NULL, NULL, 146, + 'Tainted', 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'SL Loot'), + (220820, 'Badly Corroded Crystal (Greater Wooden Skin)', 220433, 75345, 'Greater Wooden Skin', 38976, NULL, NULL, + NULL, 53, 'Tainted', 'Buffs', 'Armor_Buffs', 3, '', 0, 1, 0, 0, 0, 'Martial Artist', 'SL Loot'), + (220821, 'Failed Repaired Crystal (Slayerdroid Transference)', 220411, 31593, 'Slayerdroid Transference', 39274, + NULL, NULL, NULL, 185, 'Tainted', 'Buffs', 'Transference', 0, '', 0, 1, 0, 0, 0, 'Engineer', 'SL Loot'), + (220822, 'Cracked Crystal (Lick of Fire)', 220413, 29646, 'Lick of Fire', 16221, 147321, 145821, 148821, 136, + 'Misc', 'Buffs', 'Damage_Shields', 1, '', 0, 1, 0, 0, 0, 'Enforcer', 'SL Loot'), + (220823, 'Cracked Crystal (Coruscating Screen)', 220413, 55751, 'Coruscating Screen', 16221, 147295, 145795, + 148795, 146, 'Misc', 'Buffs', 'Damage_Shields', 1, '', 0, 1, 0, 0, 0, 'Enforcer', 'SL Loot'), + (220824, 'Badly Corroded Crystal (Chirp of the Mournful Cricket)', 220411, 81831, + 'Chirp of the Mournful Cricket', 117954, NULL, NULL, NULL, 142, 'Tainted', 'Buffs', + 'Controlled_Destruction_Buffs', 222, '', 0, 1, 0, 0, 0, 'Martial Artist', 'SL Loot'), + (220825, 'Badly Corroded Crystal (2H Blunt Weapon Proficiency)', 220425, 27075, '2H Blunt Weapon Proficiency', + 20879, NULL, NULL, NULL, 4, 'Tainted', 'Buffs_-_Melee', '2H_Blunt_Buffs', 23, '', 0, 0, 0, 0, 0, 'General', + 'SL Loot'), + (220826, 'Severly Corroded Shadow Crystal (Health Funnel)', 220422, 76722, 'Health Funnel', 117906, NULL, NULL, + NULL, 20, 'Tainted', 'Drain', 'Health', 0, '', 0, 1, 0, 0, 0, 'Trader', 'SL Loot'), + (220827, 'Failed Repaired Crystal (Trap Artifice)', 220432, 29785, 'Trap Artifice', 16220, NULL, NULL, NULL, 73, + 'Tainted', 'Buffs', 'Disarm_Trap_Buffs', 235, '', 0, 1, 0, 0, 0, 'Engineer', 'SL Loot'), + (220829, 'Failed Repaired Crystal (Ultimate Force Field)', 220413, 29788, 'Ultimate Force Field', 100996, NULL, + NULL, NULL, 189, 'Tainted', 'Buffs', 'Armor_Buffs', 3, '', 0, 1, 0, 0, 0, 'Engineer', 'SL Loot'), + (220830, 'Snow Crashed Shadow Crystal (Advanced Policy Skim)', 220436, 85225, 'Advanced Policy Skim', 44232, + NULL, NULL, NULL, 142, 'Tainted', 'Buffs', 'Fixer_Short_Heal_Over_Time', 12, '', 0, 1, 0, 0, 0, 'Fixer', + 'SL Loot'), + (220831, 'Overcharged Corroded Nano Crystal (Barrage of Blades)', 220430, 45940, 'Barrage of Blades', 39785, + NULL, NULL, NULL, 96, 'Tainted', 'Nukes', 'AoE_Nuke', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (220832, 'Blood Stained and Corroded Crystal (Greater Periodic Checkup)', 220436, 43869, + 'Greater Periodic Checkup', 44232, NULL, NULL, NULL, 142, 'Tainted', 'Buffs', 'Heal_Over_Time', 12, '', 0, 1, 0, + 0, 0, 'Doctor', 'SL Loot'), + (220833, 'Dirty Money Shadow Crystal (Enforce Rest Break)', 220430, 55987, 'Enforce Rest Break', 46273, NULL, + NULL, NULL, 63, 'Tainted', 'Crowd_Control', 'Root', 146, 'Target', 0, 1, 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (220834, 'Blood Stained and Corroded Crystal (Limited Nano Reaper)', 220423, 44163, 'Limited Nano Reaper', 16225, + NULL, NULL, NULL, 7, 'Tainted', 'Combat', 'DOT_-_Line_B', 7, '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (220835, 'Overcharged Corroded Nano Crystal (Impaling Tracer)', 220437, 45222, 'Impaling Tracer', 45186, NULL, + NULL, NULL, 139, 'Tainted', 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (220836, 'Severly Corroded Shadow Crystal (Weak Health Freeloader)', 220422, 76691, 'Weak Health Freeloader', + 117908, NULL, NULL, NULL, 47, 'Tainted', 'Drain', 'Health', 0, '', 0, 1, 0, 0, 0, 'Trader', 'SL Loot'), + (220837, 'Severly Corroded Shadow Crystal (Redeem AC)', 220413, 92148, 'Redeem AC', 118032, NULL, NULL, NULL, + 149, 'Tainted', 'Transfer', 'AC_Transfer_Target_Buffs', 143, 'Target', 0, 1, 0, 0, 0, 'Trader', 'SL Loot'), + (220838, 'Corroded Crystal with Bullet Holes (Perfected Absorption Shield)', 220413, 75403, + 'Perfected Absorption Shield', 101015, NULL, NULL, NULL, 142, 'Tainted', 'Buffs', 'Armor_Buffs', 3, '', 0, 1, 0, + 0, 0, 'Soldier', 'SL Loot'), + (220839, 'Severly Corroded Shadow Crystal (Draw AC (Invasive))', 220413, 91316, 'Draw AC (Invasive)', 117904, + NULL, NULL, NULL, 179, 'Tainted', 'Drain', 'AC_Transfer_Target_DeBuffs', 140, 'Draw', 0, 1, 0, 0, 0, 'Trader', + 'SL Loot'), + (220840, 'Badly Corroded Crystal (Subconscious Guidance)', 220425, 95526, 'Subconscious Guidance', 291164, NULL, + NULL, NULL, 30, 'Tainted', 'Buffs', 'Critical_Increase_Buffs', 182, 'Self', 0, 0, 0, 0, 0, 'Martial Artist', + 'SL Loot'), + (220841, 'Corroded Crystal with Bullet Holes (Total Mirror Shield Mk X)', 220413, 70300, + 'Total Mirror Shield Mk X', 101018, NULL, NULL, NULL, 146, 'Tainted', 'Buffs', 'Shadowland_Reflect_Base', 694, + 'Self', 0, 1, 0, 0, 0, 'Soldier', 'SL Loot'), + (220842, 'Hacked Corroded Crystal (Prolonged Interrogation)', 220437, 56211, 'Prolonged Interrogation', 46274, + NULL, NULL, NULL, 119, 'Tainted', 'Crowd_Control', 'Root', 146, '', 0, 0, 0, 0, 0, 'Agent', 'SL Loot'), + (220843, 'Corroded Crystal with Bullet Holes (Total Mirror Shield Mk II)', 220426, 70309, + 'Total Mirror Shield Mk II', 16319, NULL, NULL, NULL, 27, 'Tainted', 'Buffs', 'Shadowland_Reflect_Base', 694, + 'Self', 0, 1, 0, 0, 0, 'Soldier', 'SL Loot'), + (220844, 'Failed Repaired Crystal (Patchwork Warmachine)', 220411, 45696, 'Patchwork Warmachine', 44140, NULL, + NULL, NULL, 159, 'Tainted', 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'SL Loot'), + (220845, 'Severly Corroded Shadow Crystal (Profit Preoccupation)', 220437, 56229, 'Profit Preoccupation', 46274, + NULL, NULL, NULL, 159, 'Tainted', 'Crowd_Control', 'Root', 146, 'Target', 0, 1, 0, 0, 0, 'Trader', 'SL Loot'), + (220846, 'Overcharged Corroded Nano Crystal (Shower With Sludge)', 220423, 45887, 'Shower With Sludge', 39804, + NULL, NULL, NULL, 40, 'Tainted', 'Nukes', 'Fast_1s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (220847, 'Failed Repaired Crystal (Warbot)', 220411, 45668, 'Warbot', 44140, NULL, NULL, NULL, 149, 'Tainted', + 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'SL Loot'), + (220848, 'Blood Stained and Corroded Crystal (Greater Cellular Grafting)', 220436, 43815, + 'Greater Cellular Grafting', 44232, NULL, NULL, NULL, 109, 'Tainted', 'Combat', 'Target_Healing', 0, '', 0, 1, + 0, 0, 0, 'Doctor', 'SL Loot'), + (220849, 'Severly Corroded Shadow Crystal (Unfriendly Merger)', 220424, 99604, 'Unfriendly Merger', 39137, NULL, + NULL, NULL, 17, 'Tainted', 'Drain', 'Nano_Drain_-_Line_A', 215, '', 0, 1, 0, 0, 0, 'Trader', 'SL Loot'), + (220850, 'Blood Stained and Corroded Crystal (Health Assembler)', 220436, 96258, 'Health Assembler', 39292, NULL, + NULL, NULL, 156, 'Tainted', 'Buffs', 'Doctor_Short_HP_Buffs', 185, '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (220851, 'Cracked Crystal (Avenging Shield)', 220426, 55741, 'Avenging Shield', 16221, 147275, 145775, 148775, 4, + 'Misc', 'Buffs', 'Damage_Shields', 1, '', 0, 1, 0, 0, 0, 'Enforcer', 'SL Loot'), + (220852, 'Snow Crashed Shadow Crystal (Backpain)', 220432, 31409, 'Back Pain', 301588, NULL, NULL, NULL, 57, + 'Tainted', 'Buffs', 'Sneak_Attack_Buffs', 208, '', 0, 1, 0, 0, 0, 'Fixer', 'SL Loot'), + (220853, 'Snow Crashed Shadow Crystal (Blood Makes Noise)', 220412, 31380, 'Blood Makes Noise', 301584, NULL, + NULL, NULL, 116, 'Tainted', 'Buffs', 'Perception_Buffs', 191, '', 0, 1, 0, 0, 0, 'Fixer', 'SL Loot'), + (220854, 'Dirty Money Shadow Crystal (Capture Attention)', 220423, 82158, 'Capture Attention', 46272, NULL, NULL, + NULL, 40, 'Tainted', 'Crowd_Control', 'Root', 146, 'Area', 0, 1, 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (220855, 'Severly Corroded Shadow Crystal (Skilled Health Haggler)', 220422, 121494, 'Skilled Health Haggler', + 44231, NULL, NULL, NULL, 47, 'Tainted', 'Transfer', 'Health', 0, 'Target', 0, 1, 0, 0, 0, 'Trader', 'SL Loot'), + (220856, 'Badly Eroded Crystal (Enshroud with Barbs)', 220426, 55833, 'Enshroud with Barbs', 16221, NULL, NULL, + NULL, 24, 'Tainted', 'Buffs', 'Damage_Shields', 1, 'Target', 0, 1, 0, 0, 0, 'Adventurer', 'SL Loot'), + (220858, 'Snow Crashed Shadow Crystal (Cracker''s Luck)', 220425, 31385, 'Cracker''s Luck', 301583, NULL, NULL, + NULL, 14, 'Tainted', 'Buffs', 'Break_&_Entry_Buffs', 171, '', 0, 1, 0, 0, 0, 'Fixer', 'SL Loot'), + (220859, 'Badly Eroded Crystal (Razor Barrier)', 220413, 55820, 'Razor Barrier', 16221, NULL, NULL, NULL, 139, + 'Tainted', 'Buffs', 'Damage_Shields', 1, 'Target', 0, 1, 0, 0, 0, 'Adventurer', 'SL Loot'), + (220860, 'Blood Stained and Corroded Crystal (Infected Wounds)', 220423, 44165, 'Infected Wounds', 16225, NULL, + NULL, NULL, 30, 'Tainted', 'Combat', 'DOT_-_Line_A', 6, '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (220862, 'Blood Stained and Corroded Crystal (Lasting Heal)', 220422, 42401, 'Lasting Heal', 16246, NULL, NULL, + NULL, 14, 'Tainted', 'Buffs', 'Heal_Over_Time', 12, '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (220863, 'Corroded Crystal with Bullet Holes (Aggressive Captivation)', 220432, 29218, 'Aggressive Captivation', + 16230, NULL, NULL, NULL, 90, 'Tainted', 'Crowd_Control', 'Taunt_(normal)', 0, '', 0, 1, 0, 0, 0, 'Soldier', + 'SL Loot'), + (220864, 'Snow Crashed Shadow Crystal (Embrace of Shadows)', 220425, 31387, 'Embrace of Shadows', 16214, NULL, + NULL, NULL, 27, 'Tainted', 'Buffs', 'Concealment_Buffs', 193, '', 0, 1, 0, 0, 0, 'Fixer', 'SL Loot'), + (220865, 'Dirty Money Shadow Crystal (Musculature Command)', 220437, 55985, 'Musculature Command', 46274, NULL, + NULL, NULL, 116, 'Tainted', 'Crowd_Control', 'Root', 146, 'Target', 0, 1, 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (220866, 'Dirty Money Shadow Crystal (Basic Worker-Droid)', 220424, 46397, 'Basic Worker-Droid', 16307, NULL, + NULL, NULL, 1, 'Tainted', 'Pets', 'Robot', 0, '', 0, 0, 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (220867, 'Failed Repaired Crystal (Lesser Protective Field)', 220426, 70556, 'Lesser Protective Field', 38898, + NULL, NULL, NULL, 50, 'Tainted', 'Buffs', 'Armor_Buffs', 3, '', 0, 1, 0, 0, 0, 'Engineer', 'SL Loot'), + (220868, 'Overcharged Corroded Nano Crystal (Cohesion Amplifier)', 220431, 95445, 'Cohesion Amplifier', 16202, + NULL, NULL, NULL, 63, 'Tainted', 'Buffs', 'Nano_Formula_Range_Buffs', 181, '', 0, 1, 0, 0, 0, 'Nano-Technician', + 'SL Loot'), + (220869, 'Overcharged Corroded Nano Crystal (Thunderous Blow)', 220423, 45202, 'Thunderous Blow', 39808, NULL, + NULL, NULL, 43, 'Tainted', 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (220870, 'Hacked Corroded Crystal (Lesser Mysterious Causes)', 220423, 81940, 'Lesser Mysterious Causes', 16225, + NULL, NULL, NULL, 27, 'Tainted', 'Combat', 'DOT_Agent_Strain_A', 9, '', 0, 0, 0, 0, 0, 'Agent', 'SL Loot'), + (220871, 'Failed Repaired Crystal (Plasma Shield)', 220413, 29774, 'Plasma Shield', 16221, NULL, NULL, NULL, 185, + 'Tainted', 'Buffs', 'Damage_Shields', 1, '', 0, 1, 0, 0, 0, 'Engineer', 'SL Loot'), + (220872, 'Corroded Crystal with Bullet Holes (Reflective Field)', 220413, 70312, 'Reflective Field', 101017, + NULL, NULL, NULL, 126, 'Tainted', 'Buffs', 'Shadowland_Reflect_Base', 694, 'Target', 0, 1, 0, 0, 0, 'Soldier', + 'SL Loot'), + (220873, 'Overcharged Corroded Nano Crystal (Personal Notum Harvester)', 220411, 90406, + 'Personal Notum Harvester', 38844, NULL, NULL, NULL, 169, 'Tainted', 'Buffs', 'Nano_Over_Time_-_Line_A', 14, '', + 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (220875, 'Snow Crashed Shadow Crystal (Luck''s Fickle Fate)', 220432, 31392, 'Luck''s Fickle Fate', 39081, NULL, + NULL, NULL, 83, 'Tainted', 'DeBuffs', 'Evasion_DeBuffs', 197, '', 0, 1, 0, 0, 0, 'Fixer', 'SL Loot'), + (220876, 'Overcharged Corroded Nano Crystal (Mass Claw Eyes)', 220425, 83964, 'Mass Claw Eyes', 38845, NULL, + NULL, NULL, 20, 'Tainted', 'DeBuffs', 'Add_All_Offence_DeBuffs', 13, 'Area', 0, 1, 0, 0, 0, 'Nano-Technician', + 'SL Loot'), + (220878, 'Snow Crashed Shadow Crystal (Passive Micro Entanglement)', 220423, 82518, 'Passive Micro Entanglement', + 46272, NULL, NULL, NULL, 4, 'Tainted', 'Crowd_Control', 'Snare', 145, 'Target', 0, 1, 0, 0, 0, 'Fixer', + 'SL Loot'), + (220879, 'Blood Stained and Corroded Crystal (All-Consuming Toxin)', 220437, 44175, 'All-Consuming Toxin', 16222, + NULL, NULL, NULL, 159, 'Tainted', 'Combat', 'DOT_-_Line_A', 6, '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (220880, 'Snow Crashed Shadow Crystal (Stack the Odds)', 220432, 31406, 'Stack the Odds', 301583, NULL, NULL, + NULL, 70, 'Tainted', 'Buffs', 'Break_&_Entry_Buffs', 171, '', 0, 1, 0, 0, 0, 'Fixer', 'SL Loot'), + (220881, 'Overcharged Corroded Nano Crystal (Coherent Nano Pathway)', 220424, 95444, 'Coherent Nano Pathway', + 16202, NULL, NULL, NULL, 40, 'Tainted', 'Buffs', 'Nano_Formula_Range_Buffs', 181, '', 0, 1, 0, 0, 0, + 'Nano-Technician', 'SL Loot'), + (220882, 'Blood Stained and Corroded Crystal (Health Augmentation)', 220422, 96248, 'Health Augmentation', 16330, + NULL, NULL, NULL, 4, 'Tainted', 'Buffs', 'Doctor_Short_HP_Buffs', 185, '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (220883, 'Blood Stained and Corroded Crystal (Biotoxin MK I)', 220423, 28641, 'Biotoxin MK I', 16225, NULL, NULL, + NULL, 27, 'Tainted', 'Combat', 'DOT_-_Line_A', 6, '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (220884, 'Badly Corroded Crystal (Universal Vulnerability Compendium)', 220412, 95527, + 'Universal Vulnerability Compendium', 291164, NULL, NULL, NULL, 169, 'Tainted', 'Buffs', + 'Critical_Increase_Buffs', 182, 'Self', 0, 0, 0, 0, 0, 'Martial Artist', 'SL Loot'), + (220885, 'Overcharged Corroded Nano Crystal (Brutal Cornea Attack)', 220412, 83951, 'Brutal Cornea Attack', + 39126, NULL, NULL, NULL, 159, 'Tainted', 'DeBuffs', 'Add_All_Offence_DeBuffs', 13, 'Target', 0, 1, 0, 0, 0, + 'Nano-Technician', 'SL Loot'), + (220886, 'Severly Corroded Shadow Crystal (Minor Delayed Health Payment)', 220422, 118243, + 'Minor Delayed Health Payment', 44245, NULL, NULL, NULL, 21, 'Tainted', 'Transfer', 'Health', 0, 'Team', 0, 1, + 0, 0, 0, 'Trader', 'SL Loot'), + (220887, 'Overcharged Corroded Nano Crystal (Augmented Energized Beam)', 220423, 45938, + 'Augmented Energized Beam', 39802, NULL, NULL, NULL, 50, 'Tainted', 'Nukes', 'Medium_3s~2s', 0, '', 0, 1, 0, 0, + 0, 'Nano-Technician', 'SL Loot'), + (220888, 'Tainted Shadow Crystal (Notum Attunement)', 220429, 95408, 'Notum Attunement', 16303, NULL, NULL, NULL, + 60, 'Tainted', 'Buffs', 'Nano_Point_Cost_Buffs', 148, '', 0, 1, 0, 0, 0, 'Meta-Physicist', 'SL Loot'), + (220889, 'Dirty Money Shadow Crystal (Rigid Stance)', 220430, 82160, 'Rigid Stance', 46273, NULL, NULL, NULL, 93, + 'Tainted', 'Crowd_Control', 'Root', 146, 'Area', 0, 1, 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (220890, 'Overcharged Corroded Nano Crystal (Malign Devourer)', 220437, 45215, 'Malign Devourer', 45174, NULL, + NULL, NULL, 149, 'Tainted', 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (220891, 'Dirty Money Shadow Crystal (Disciplinary Action)', 220437, 82000, 'Disciplinary Action', 39793, NULL, + NULL, NULL, 149, 'Tainted', 'Nukes', 'Normal', 0, '', 0, 1, 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (220893, 'Failed Repaired Crystal (Advanced Gladiatorbot)', 220431, 45732, 'Advanced Gladiatorbot', 44139, NULL, + NULL, NULL, 80, 'Tainted', 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'SL Loot'), + (220894, 'Blood Stained and Corroded Crystal (Nano Reaper)', 220430, 44159, 'Nano Reaper', 16226, NULL, NULL, + NULL, 99, 'Tainted', 'Combat', 'DOT_-_Line_B', 7, '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (220895, 'Severly Corroded Shadow Crystal (Redeem AC (Advanced))', 220413, 92144, 'Redeem AC (Advanced)', 118033, + NULL, NULL, NULL, 165, 'Tainted', 'Transfer', 'AC_Transfer_Target_Buffs', 143, 'Target', 0, 1, 0, 0, 0, + 'Trader', 'SL Loot'), + (220896, 'Corroded Crystal with Bullet Holes (Minor Absorption Shield)', 220426, 75412, + 'Minor Absorption Shield', 16314, NULL, NULL, NULL, 14, 'Tainted', 'Buffs', 'Armor_Buffs', 3, '', 0, 1, 0, 0, 0, + 'Soldier', 'SL Loot'), + (220897, 'Failed Repaired Crystal (Perfected Shielding Barrier)', 220413, 70537, 'Perfected Shielding Barrier', + 39179, NULL, NULL, NULL, 139, 'Tainted', 'Buffs', 'Armor_Buffs', 3, '', 0, 1, 0, 0, 0, 'Engineer', 'SL Loot'), + (220898, 'Blood Stained and Corroded Crystal (Advanced Cellular Rebuild)', 220436, 43809, + 'Advanced Cellular Rebuild', 44233, NULL, NULL, NULL, 136, 'Tainted', 'Combat', 'Target_Healing', 0, '', 0, 1, + 0, 0, 0, 'Doctor', 'SL Loot'), + (220899, 'Dirty Money Shadow Crystal (Weighty Announcement)', 220430, 95383, 'Weighty Announcement', 46277, NULL, + NULL, NULL, 83, 'Tainted', 'Crowd_Control', 'Snare', 145, 'Area', 0, 1, 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (220900, 'Severly Corroded Shadow Crystal (Pay the Pauper)', 220411, 99607, 'Pay the Pauper', 39137, NULL, NULL, + NULL, 169, 'Tainted', 'Drain', 'Nano_Drain_-_Line_A', 215, '', 0, 1, 0, 0, 0, 'Trader', 'SL Loot'), + (220901, 'Hacked Corroded Crystal (False Profession: Trader)', 220425, 32040, 'False Profession: Trader', 16775, + NULL, NULL, NULL, 27, 'Tainted', 'False_Professions', 'False_Profession', 218, 'Trader', 0, 1, 0, 0, 0, 'Agent', + 'SL Loot'), + (220903, 'Failed Repaired Crystal (Superior Force Field)', 220413, 70530, 'Superior Force Field', 100996, NULL, + NULL, NULL, 172, 'Tainted', 'Buffs', 'Armor_Buffs', 3, '', 0, 1, 0, 0, 0, 'Engineer', 'SL Loot'), + (220904, 'Failed Repaired Crystal (Semi-Sentient Warmachine)', 220411, 45670, 'Semi-Sentient Warmachine', 44135, + NULL, NULL, NULL, 175, 'Tainted', 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'SL Loot'), + (220905, 'Snow Crashed Shadow Crystal (Hack Grid Vector)', 220424, 93131, 'Hack Grid Vector', 16300, NULL, NULL, + NULL, 30, 'Tainted', 'Buffs', 'Major_Evasion_Buffs', 144, '', 0, 1, 0, 0, 0, 'Fixer', 'SL Loot'), + (220906, 'Dirty Money Shadow Crystal (Fear of Attention)', 220437, 82164, 'Fear of Attention', 46274, NULL, NULL, + NULL, 169, 'Tainted', 'Crowd_Control', 'Root', 146, 'Area', 0, 1, 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (220907, 'Badly Eroded Crystal (Invocation of the Phoenix)', 220436, 136672, 'Invocation of the Phoenix', 44231, + NULL, NULL, NULL, 159, 'Tainted', 'Combat', 'Complete_Healing_Line', 282, '', 0, 1, 0, 0, 0, 'Adventurer', + 'SL Loot'), + (220908, 'Overcharged Corroded Nano Crystal (Basic Crystalizing Ray)', 220430, 45941, 'Basic Crystalizing Ray', + 39797, NULL, NULL, NULL, 73, 'Tainted', 'Nukes', 'Medium_3s~2s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', + 'SL Loot'), + (220909, 'Blood Stained and Corroded Crystal (Greater Lasting heal)', 220429, 43876, 'Greater Lasting Heal', + 44230, NULL, NULL, NULL, 93, 'Tainted', 'Buffs', 'Heal_Over_Time', 12, '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (220911, 'Badly Eroded Crystal (Sparking Touch)', 220426, 55832, 'Sparking Touch', 16221, NULL, NULL, NULL, 47, + 'Tainted', 'Buffs', 'Damage_Shields', 1, 'Target', 0, 1, 0, 0, 0, 'Adventurer', 'SL Loot'), + (220913, 'Blood Stained and Corroded Crystal (Pre-Combat Conditioning)', 220436, 95711, + 'Pre-Combat Conditioning', 38905, NULL, NULL, NULL, 139, 'Tainted', 'Buffs', 'Doctor_HP_Buffs', 184, '', 0, 1, + 0, 0, 0, 'Doctor', 'SL Loot'), + (220914, 'Badly Eroded Crystal (Alleviate Pain)', 220422, 136685, 'Alleviate Pain', 44229, NULL, NULL, NULL, 50, + 'Tainted', 'Combat', 'Single_Target_Healing', 951, '', 0, 1, 0, 0, 0, 'Adventurer', 'SL Loot'), + (220915, 'Failed Repaired Crystal (Field Workshop)', 220436, 116796, 'Field Workshop', 44232, NULL, NULL, NULL, + 120, 'Tainted', 'Pet_Combat', 'Pet_Heal', 0, '', 0, 1, 0, 0, 0, 'Engineer', 'SL Loot'), + (220916, 'Snow Crashed Shadow Crystal (Policy Skim)', 220436, 85229, 'Policy Skim', 44231, NULL, NULL, NULL, 119, + 'Tainted', 'Buffs', 'Fixer_Short_Heal_Over_Time', 12, '', 0, 1, 0, 0, 0, 'Fixer', 'SL Loot'), + (220917, 'Failed Repaired Crystal (Upgraded Warbot)', 220411, 45666, 'Upgraded Warbot', 44140, NULL, NULL, NULL, + 149, 'Tainted', 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'SL Loot'), + (220918, 'Corroded Crystal with Bullet Holes (Total Mirror Shield Mk V)', 220433, 70303, + 'Total Mirror Shield Mk V', 39141, NULL, NULL, NULL, 86, 'Tainted', 'Buffs', 'Shadowland_Reflect_Base', 694, + 'Self', 0, 1, 0, 0, 0, 'Soldier', 'SL Loot'), + (220919, 'Overcharged Corroded Nano Crystal (Blade Chaos)', 220430, 45942, 'Blade Chaos', 39809, NULL, NULL, + NULL, 86, 'Tainted', 'Nukes', 'Medium_3s~2s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (220920, 'Snow Crashed Shadow Crystal (Detailed Medical Claim)', 220429, 85230, 'Detailed Medical Claim', 44230, + NULL, NULL, NULL, 73, 'Tainted', 'Buffs', 'Fixer_Short_Heal_Over_Time', 12, '', 0, 1, 0, 0, 0, 'Fixer', + 'SL Loot'), + (220921, 'Corroded Crystal with Bullet Holes (Minor Deflection Shield (Extended))', 220426, 70321, + 'Minor Deflection Shield (Extended)', 16319, NULL, NULL, NULL, 17, 'Tainted', 'Buffs', + 'Shadowland_Reflect_Base', 694, 'Target', 0, 1, 0, 0, 0, 'Soldier', 'SL Loot'), + (220923, 'Badly Eroded Crystal (Team Rough Stitching)', 220422, 82058, 'Team Rough Stitching', 38953, NULL, NULL, + NULL, 17, 'Tainted', 'Combat', 'Team_Healing', 952, '', 0, 1, 0, 0, 0, 'Adventurer', 'SL Loot'), + (220925, 'Cracked Crystal (Toxic Barrier)', 220413, 29658, 'Toxic Barrier', 16221, 147346, 145846, 148846, 126, + 'Misc', 'Buffs', 'Damage_Shields', 1, '', 0, 1, 0, 0, 0, 'Enforcer', 'SL Loot'), + (220926, 'Badly Corroded Crystal (Wind-blown Blossom)', 220431, 81813, 'Wind-Blown Blossom', 39028, NULL, NULL, + NULL, 57, 'Tainted', 'Buffs', 'Controlled_Destruction_Buffs', 222, '', 0, 1, 0, 0, 0, 'Martial Artist', + 'SL Loot'), + (220927, 'Corroded Crystal with Bullet Holes (Perfected Combat Barrier)', 220413, 75404, + 'Perfected Combat Barrier', 101015, NULL, NULL, NULL, 139, 'Tainted', 'Buffs', 'Armor_Buffs', 3, '', 0, 1, 0, 0, + 0, 'Soldier', 'SL Loot'), + (220928, 'Blood Stained and Corroded Crystal (Life Channeler)', 220436, 96247, 'Life Channeler', 39292, NULL, + NULL, NULL, 182, 'Tainted', 'Buffs', 'Doctor_Short_HP_Buffs', 185, '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (220929, 'Severly Corroded Shadow Crystal (Major Health Plunder)', 220436, 76487, 'Major Health Plunder', 117913, + NULL, NULL, NULL, 162, 'Tainted', 'Drain', 'Health', 0, '', 0, 1, 0, 0, 0, 'Trader', 'SL Loot'), + (220930, 'Failed Repaired Crystal (Flawed Defensive Screen)', 220426, 70544, 'Flawed Defensive Screen', 16197, + NULL, NULL, NULL, 20, 'Tainted', 'Buffs', 'Armor_Buffs', 3, '', 0, 1, 0, 0, 0, 'Engineer', 'SL Loot'), + (220931, 'Blood Stained and Corroded Crystal (Lesser Nano Surgery)', 220422, 43834, 'Lesser Nano Surgery', 44229, + NULL, NULL, NULL, 24, 'Tainted', 'Combat', 'Target_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (220932, 'Overcharged Corroded Nano Crystal (Greater Crystalizing Ray)', 220437, 45911, + 'Greater Crystalizing Ray', 39798, NULL, NULL, NULL, 139, 'Tainted', 'Nukes', 'Medium_3s~2s', 0, '', 0, 1, 0, 0, + 0, 'Nano-Technician', 'SL Loot'), + (220933, 'Severly Corroded Shadow Crystal (Draw AC)', 220413, 91328, 'Draw AC', 117901, NULL, NULL, NULL, 136, + 'Tainted', 'Drain', 'AC_Transfer_Target_DeBuffs', 140, 'Draw', 0, 1, 0, 0, 0, 'Trader', 'SL Loot'), + (220934, 'Badly Corroded Crystal (1H Edged Weapon Expertise)', 220425, 27068, '1H Edged Weapon Expertise', 16325, + NULL, NULL, NULL, 10, 'Tainted', 'Buffs_-_Melee', '1H_Edged_Buffs', 21, '', 0, 0, 0, 0, 0, 'General', + 'SL Loot'), + (220935, 'Severly Corroded Shadow Crystal (Premium Delayed Health Payment)', 220436, 118245, + 'Premium Delayed Health Payment', 44251, NULL, NULL, NULL, 182, 'Tainted', 'Transfer', 'Health', 0, 'Team', 0, + 1, 0, 0, 0, 'Trader', 'SL Loot'), + (220936, 'Overcharged Corroded Nano Crystal (Eroding Spray)', 220430, 45916, 'Eroding Spray', 39794, NULL, NULL, + NULL, 76, 'Tainted', 'Nukes', 'Fast_1s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (220937, 'Failed Repaired Crystal (Lesser Harmonic Cocoon)', 220433, 70297, 'Lesser Harmonic Cocoon', 39141, + NULL, NULL, NULL, 96, 'Tainted', 'Buffs', 'Reflect_Shield', 2, '', 0, 1, 0, 0, 0, 'Engineer', 'SL Loot'), + (220938, 'Overcharged Corroded Nano Crystal (Minor Toxic Field)', 220423, 45897, 'Minor Toxic Field', 45167, + NULL, NULL, NULL, 10, 'Tainted', 'Nukes', 'Medium_3s~2s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (220939, 'Blood Stained and Corroded Crystal (Remedy Dissemination)', 220436, 43897, 'Remedy Dissemination', + 44250, NULL, NULL, NULL, 159, 'Tainted', 'Combat', 'Team_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (220941, 'Dirty Money Shadow Crystal (Erasing Ray)', 220437, 78394, 'Erasing Ray', 39793, NULL, NULL, NULL, 162, + 'Tainted', 'Nukes', 'Special', 0, '', 0, 1, 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (220942, 'Overcharged Corroded Nano Crystal (Dense Matter Missile)', 220423, 45923, 'Dense Matter Missile', + 39811, NULL, NULL, NULL, 43, 'Tainted', 'Nukes', 'Fast_1s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', + 'SL Loot'), + (220943, 'Overcharged Corroded Nano Crystal (Lesser Eyeblighter)', 220432, 83956, 'Lesser Eyeblighter', 39126, + NULL, NULL, NULL, 86, 'Tainted', 'DeBuffs', 'Add_All_Offence_DeBuffs', 13, 'Target', 0, 1, 0, 0, 0, + 'Nano-Technician', 'SL Loot'), + (220944, 'Dirty Money Shadow Crystal (Executive-Grade Minion)', 220411, 46383, 'Executive-Grade Minion', 44135, + NULL, NULL, NULL, 152, 'Tainted', 'Pets', 'Robot', 0, '', 0, 0, 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (220945, 'Severly Corroded Shadow Crystal (Major Armor Distributor)', 220413, 92132, 'Major Armor Distributor', + 117973, NULL, NULL, NULL, 189, 'Tainted', 'Transfer', 'AC_Transfer_Target_Buffs', 143, 'Team', 0, 1, 0, 0, 0, + 'Trader', 'SL Loot'), + (220946, 'Failed Repaired Crystal (Superior Defensive Screen)', 220413, 70549, 'Superior Defensive Screen', + 39039, NULL, NULL, NULL, 103, 'Tainted', 'Buffs', 'Armor_Buffs', 3, '', 0, 1, 0, 0, 0, 'Engineer', 'SL Loot'), + (220947, 'Blood Stained and Corroded Crystal (Periodic Checkup)', 220422, 43880, 'Periodic Checkup', 16246, NULL, + NULL, NULL, 27, 'Tainted', 'Buffs', 'Heal_Over_Time', 12, '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (220948, 'Severly Corroded Shadow Crystal (Insolvency)', 220411, 99610, 'Insolvency', 39137, NULL, NULL, NULL, + 123, 'Tainted', 'Drain', 'Nano_Drain_-_Line_A', 215, '', 0, 1, 0, 0, 0, 'Trader', 'SL Loot'), + (220950, 'Tainted Shadow Crystal (Ease of Execution)', 220422, 95410, 'Ease of Execution', 16303, NULL, NULL, + NULL, 24, 'Tainted', 'Buffs', 'Nano_Point_Cost_Buffs', 148, '', 0, 1, 0, 0, 0, 'Meta-Physicist', 'SL Loot'), + (220951, 'Severly Corroded Shadow Crystal (Patchy Delayed Health Payment)', 220422, 118244, + 'Patchy Delayed Health Payment', 38953, NULL, NULL, NULL, 14, 'Tainted', 'Transfer', 'Health', 0, 'Team', 0, 1, + 0, 0, 0, 'Trader', 'SL Loot'), + (220952, 'Badly Eroded Crystal (Revenge of the Valkyrie)', 220413, 55813, 'Revenge of the Valkyrie', 16221, NULL, + NULL, NULL, 165, 'Tainted', 'Buffs', 'Damage_Shields', 1, 'Target', 0, 1, 0, 0, 0, 'Adventurer', 'SL Loot'), + (220953, 'Cracked Crystal (Challenger to Colossus)', 220411, 49750, 'Challenger to Colossus', 39228, 147290, + 145790, 148790, 103, 'Misc', 'Buffs', 'Challenger', 5, '', 0, 1, 0, 0, 0, 'Enforcer', 'SL Loot'), + (220954, 'Failed Repaired Crystal (Upgraded Warmachine)', 220411, 45667, 'Upgraded Warmachine', 44135, NULL, + NULL, NULL, 169, 'Tainted', 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'SL Loot'), + (220955, 'Severly Corroded Shadow Crystal (Sophisticated Health Funnel)', 220422, 76688, + 'Sophisticated Health Funnel', 117908, NULL, NULL, NULL, 40, 'Tainted', 'Drain', 'Health', 0, '', 0, 1, 0, 0, 0, + 'Trader', 'SL Loot'), + (220956, 'Blood Stained and Corroded Crystal (Accumulate Scars)', 220436, 43899, 'Accumulate Scars', 44249, NULL, + NULL, NULL, 152, 'Tainted', 'Combat', 'Team_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (220957, 'Badly Corroded Crystal (2H Blunt Weapon Incompetence)', 220425, 27073, '2H Blunt Weapon Incompetence', + 39146, NULL, NULL, NULL, 10, 'Tainted', 'DeBuffs_-_Melee', '2H_Blunt_DeBuffs', 24, '', 0, 0, 0, 0, 0, 'General', + 'SL Loot'), + (220958, 'Corroded Crystal with Bullet Holes (Reactive Deflection Shield (Extended))', 220433, 70313, + 'Reactive Deflection Shield (Extended)', 39141, NULL, NULL, NULL, 83, 'Tainted', 'Buffs', + 'Shadowland_Reflect_Base', 694, 'Target', 0, 1, 0, 0, 0, 'Soldier', 'SL Loot'), + (220959, 'Dirty Money Shadow Crystal (Supervisor-Grade Attendant-Droid)', 220424, 46355, + 'Supervisor-Grade Attendant-Droid', 44139, NULL, NULL, NULL, 37, 'Tainted', 'Pets', 'Robot', 0, '', 0, 0, 0, 0, + 0, 'Bureaucrat', 'SL Loot'), + (220960, 'Dirty Money Shadow Crystal (Monofilament Cat-O''Nine-Tails)', 220437, 30082, + 'Monofilament Cat-O''Nine-Tails', 45183, NULL, NULL, NULL, 169, 'Tainted', 'Nukes', 'Special', 0, '', 0, 1, 0, + 0, 0, 'Bureaucrat', 'SL Loot'), + (220961, 'Tainted Shadow Crystal (Instill With Malign Intent)', 220436, 116814, 'Instill With Malign Intent', + 16207, NULL, NULL, NULL, 189, 'Tainted', 'Pet_Buffs', 'Meta-Physicist_Pet_Damage_Buffs', 216, '', 0, 1, 0, 0, 0, + 'Meta-Physicist', 'SL Loot'), + (220962, 'Snow Crashed Shadow Crystal (Leech Grid Vector)', 220431, 93129, 'Leech Grid Vector', 16300, NULL, + NULL, NULL, 63, 'Tainted', 'Buffs', 'Major_Evasion_Buffs', 144, '', 0, 1, 0, 0, 0, 'Fixer', 'SL Loot'), + (220963, 'Tainted Shadow Crystal (Mind Quake)', 220437, 125761, 'Mind Quake', 45177, NULL, NULL, NULL, 173, + 'Tainted', 'Combat', 'Metaphysicist_Mind_Damage_Nano_DeBuffs', 221, '', 0, 1, 0, 0, 0, 'Meta-Physicist', + 'SL Loot'), + (220964, 'Badly Corroded Crystal (Bad Blood)', 220425, 28866, 'Bad Blood', 16230, NULL, NULL, NULL, 24, + 'Tainted', 'Crowd_Control', 'Taunt', 0, '', 0, 1, 0, 0, 0, 'Martial Artist', 'SL Loot'), + (220965, 'Tainted Shadow Crystal (Chill Spear)', 220437, 125760, 'Chill Spear', 39797, NULL, NULL, NULL, 116, + 'Tainted', 'Combat', 'Nuke_Normal', 0, '', 0, 1, 0, 0, 0, 'Meta-Physicist', 'SL Loot'), + (220966, 'Blood Stained and Corroded Crystal (Deep Tissue Repair)', 220436, 43885, 'Deep Tissue Repair', 44235, + NULL, NULL, NULL, 159, 'Tainted', 'Combat', 'Target_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (220967, 'Severly Corroded Shadow Crystal (Traffic AC (Major))', 220413, 92139, 'Traffic AC (Major)', 117971, + NULL, NULL, NULL, 159, 'Tainted', 'Transfer', 'AC_Transfer_Target_Buffs', 143, 'Team', 0, 1, 0, 0, 0, 'Trader', + 'SL Loot'), + (220968, 'Hacked Corroded Crystal (Assume Profession: Soldier)', 220432, 117227, 'Assume Profession: Soldier', + 16775, NULL, NULL, NULL, 80, 'Tainted', 'False_Professions', 'False_Profession', 218, 'Soldier', 0, 1, 0, 0, 0, + 'Agent', 'SL Loot'), + (220969, 'Overcharged Corroded Nano Crystal (Arctic Welcome)', 220430, 45259, 'Arctic Welcome', 39797, NULL, + NULL, NULL, 73, 'Tainted', 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (220970, 'Corroded Crystal with Bullet Holes (Lesser Reflective Field (Extended))', 220413, 70329, + 'Lesser Reflective Field (Extended)', 39281, NULL, NULL, NULL, 123, 'Tainted', 'Buffs', + 'Shadowland_Reflect_Base', 694, 'Target', 0, 1, 0, 0, 0, 'Soldier', 'SL Loot'), + (220971, 'Badly Corroded Crystal (Fists of Fire)', 220431, 28876, 'Fists of Fire', 39168, NULL, NULL, NULL, 66, + 'Tainted', 'Buffs', 'Damage_Buffs_-_Line_A', 4, '', 0, 1, 0, 0, 0, 'Martial Artist', 'SL Loot'), + (220972, 'Failed Repaired Crystal (Electrical Discharge Field)', 220433, 55772, 'Electrical Discharge Field', + 16221, NULL, NULL, NULL, 76, 'Tainted', 'Buffs', 'Damage_Shields', 1, '', 0, 1, 0, 0, 0, 'Engineer', 'SL Loot'), + (220973, 'Badly Eroded Crystal (Eagle Eye)', 220432, 26107, 'Eagle Eye', 301584, NULL, NULL, NULL, 76, 'Tainted', + 'Buffs', 'Perception_Buffs', 191, '', 0, 1, 0, 0, 0, 'Adventurer', 'SL Loot'), + (220975, 'Corroded Crystal with Bullet Holes (Minor Reflective Field)', 220413, 70322, 'Minor Reflective Field', + 39281, NULL, NULL, NULL, 113, 'Tainted', 'Buffs', 'Shadowland_Reflect_Base', 694, 'Target', 0, 1, 0, 0, 0, + 'Soldier', 'SL Loot'), + (220976, 'Overcharged Corroded Nano Crystal (Compressed Shockwave)', 220430, 45253, 'Compressed Shockwave', + 39809, NULL, NULL, NULL, 70, 'Tainted', 'Nukes', 'Long_8s~1s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', + 'SL Loot'), + (220977, 'Badly Corroded Crystal (Supreme Shen Protection)', 220413, 75338, 'Supreme Shen Protection', 101001, + NULL, NULL, NULL, 146, 'Tainted', 'Buffs', 'Armor_Buffs', 3, '', 0, 1, 0, 0, 0, 'Martial Artist', 'SL Loot'), + (220978, 'Severly Corroded Shadow Crystal (Lossy Health Funnel)', 220422, 76727, 'Average Health Funnel', 117906, + NULL, NULL, NULL, 10, 'Tainted', 'Drain', 'Health', 0, '', 0, 1, 0, 0, 0, 'Trader', 'SL Loot'), + (220979, 'Failed Repaired Crystal (Inferior Android)', 220424, 45703, 'Inferior Android', 16307, NULL, NULL, + NULL, 24, 'Tainted', 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'SL Loot'), + (220980, 'Overcharged Corroded Nano Crystal (Energized Beam)', 220423, 45930, 'Energized Beam', 45176, NULL, + NULL, NULL, 4, 'Tainted', 'Nukes', 'Medium_3s~2s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (220981, 'Tainted Shadow Crystal (Transcendent Fury Externalization)', 220424, 43919, + 'Transcendent Fury Externalization', 295577, NULL, NULL, NULL, 33, 'Tainted', 'Pet', 'Attack_Pet', 0, '', 0, 1, + 0, 0, 0, 'Meta-Physicist', 'SL Loot'), + (220982, 'Severly Corroded Shadow Crystal (Armor Trade-In)', 220413, 92130, 'Armor Trade-In', 118035, NULL, NULL, + NULL, 185, 'Tainted', 'Transfer', 'AC_Transfer_Target_Buffs', 143, 'Target', 0, 1, 0, 0, 0, 'Trader', + 'SL Loot'), + (220983, 'Failed Repaired Crystal (Reactivated Wardroid)', 220411, 45679, 'Reactivated Wardroid', 44135, NULL, + NULL, NULL, 182, 'Tainted', 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'SL Loot'), + (220984, 'Severly Corroded Shadow Crystal (Redeem AC (Lesser))', 220413, 92150, 'Redeem AC (Lesser)', 118032, + NULL, NULL, NULL, 129, 'Tainted', 'Transfer', 'AC_Transfer_Target_Buffs', 143, 'Target', 0, 1, 0, 0, 0, + 'Trader', 'SL Loot'), + (220985, 'Overcharged Corroded Nano Crystal (Superior Nano Command)', 220431, 95446, 'Superior Nano Command', + 16202, NULL, NULL, NULL, 93, 'Tainted', 'Buffs', 'Nano_Formula_Range_Buffs', 181, '', 0, 1, 0, 0, 0, + 'Nano-Technician', 'SL Loot'), + (220986, 'Failed Repaired Crystal (Retaliatory Barrier)', 220413, 55771, 'Retaliatory Barrier', 16221, NULL, + NULL, NULL, 132, 'Tainted', 'Buffs', 'Damage_Shields', 1, '', 0, 1, 0, 0, 0, 'Engineer', 'SL Loot'), + (220987, 'Tainted Shadow Crystal (Lesser Rage Materialization)', 220424, 43734, 'Summon Rage Materialization', + 295577, NULL, NULL, NULL, 37, 'Tainted', 'Pet', 'Attack_Pet_Summon', 0, '', 0, 1, 0, 0, 0, 'Meta-Physicist', + 'SL Loot'), + (220988, 'Overcharged Corroded Nano Crystal (Mild Toxic Spill)', 220423, 45894, 'Mild Toxic Spill', 45143, NULL, + NULL, NULL, 37, 'Tainted', 'Nukes', 'AoE_Nuke', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (220989, 'Blood Stained and Corroded Crystal (Bestow Healing)', 220436, 43901, 'Bestow Healing', 44249, NULL, + NULL, NULL, 146, 'Tainted', 'Combat', 'Team_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (220990, 'Severly Corroded Shadow Crystal (Greater Health Freeloader)', 220436, 76651, + 'Greater Health Freeloader', 117911, NULL, NULL, NULL, 113, 'Tainted', 'Drain', 'Health', 0, '', 0, 1, 0, 0, 0, + 'Trader', 'SL Loot'), + (220991, 'Failed Repaired Crystal (Greater Harmonic Cocoon)', 220413, 70299, 'Greater Harmonic Cocoon', 101017, + NULL, NULL, NULL, 159, 'Tainted', 'Buffs', 'Reflect_Shield', 2, '', 0, 1, 0, 0, 0, 'Engineer', 'SL Loot'), + (220993, 'Failed Repaired Crystal (Patchwork Gladiatorbot)', 220424, 45693, 'Patchwork Gladiatorbot', 44139, + NULL, NULL, NULL, 50, 'Tainted', 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'SL Loot'), + (220994, 'Dirty Money Shadow Crystal (Faithful Bodyguard)', 220411, 46373, 'Faithful Bodyguard', 44135, NULL, + NULL, NULL, 162, 'Tainted', 'Pets', 'Robot', 0, '', 0, 0, 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (220995, 'Severly Corroded Shadow Crystal (Hired Hands)', 220424, 81928, 'Hired Hands', 118027, NULL, NULL, NULL, + 30, 'Tainted', 'Buffs', 'Damage', 0, 'Team', 0, 1, 0, 0, 0, 'Trader', 'SL Loot'), + (220996, 'Snow Crashed Shadow Crystal (Lesser Net Cast Wide)', 220423, 85218, 'Lesser Net Cast Wide', 84283, + NULL, NULL, NULL, 20, 'Tainted', 'Crowd_Control', 'Snare', 145, 'Area', 0, 1, 0, 0, 0, 'Fixer', 'SL Loot'), + (220997, 'Corroded Crystal with Bullet Holes (Major Reflective Field)', 220413, 70324, 'Major Reflective Field', + 101018, NULL, NULL, NULL, 136, 'Tainted', 'Buffs', 'Shadowland_Reflect_Base', 694, 'Target', 0, 1, 0, 0, 0, + 'Soldier', 'SL Loot'), + (220998, 'Dirty Money Shadow Crystal (Prey On Fear)', 220432, 121141, 'Prey On Fear', 39145, NULL, NULL, NULL, + 57, 'Tainted', 'Crowd_Control', 'Fear', 256, '', 0, 1, 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (220999, 'Overcharged Corroded Nano Crystal (Neutron Spiral)', 220430, 45221, 'Neutron Spiral', 39814, NULL, + NULL, NULL, 66, 'Tainted', 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (221001, 'Overcharged Corroded Nano Crystal (Pronounce Blindness)', 220412, 83954, 'Pronounce Blindness', 39126, + NULL, NULL, NULL, 119, 'Tainted', 'DeBuffs', 'Add_All_Offence_DeBuffs', 13, 'Target', 0, 1, 0, 0, 0, + 'Nano-Technician', 'SL Loot'), + (221003, 'Overcharged Corroded Nano Crystal (CrunchCom Nano Compressor Pro)', 220436, 95412, + 'CrunchCom Nano Compressor Pro', 16303, NULL, NULL, NULL, 123, 'Tainted', 'Buffs', 'Nano_Point_Cost_Buffs', 148, + '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (221004, 'Failed Repaired Crystal (Common Gladiatorbot)', 220431, 45725, 'Common Gladiatorbot', 44139, NULL, + NULL, NULL, 66, 'Tainted', 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'SL Loot'), + (221005, 'Tainted Shadow Crystal (Inferior Wrath Incarnation)', 220431, 43730, 'Inferior Wrath Incarnation', + 295577, NULL, NULL, NULL, 83, 'Tainted', 'Pet', 'Attack_Pet', 0, '', 0, 1, 0, 0, 0, 'Meta-Physicist', + 'SL Loot'), + (221006, 'Dirty Money Shadow Crystal (Total Mental Domination)', 220412, 99192, 'Total Mental Domination', 39137, + NULL, NULL, NULL, 179, 'Tainted', 'Crowd_Control', 'Charm_Other', 202, 'Long', 0, 1, 0, 0, 0, 'Bureaucrat', + 'SL Loot'), + (221007, 'Failed Repaired Crystal (Heavy Assault Force Field)', 220413, 70557, 'Heavy Assault Force Field', + 100996, NULL, NULL, NULL, 185, 'Tainted', 'Buffs', 'Armor_Buffs', 3, '', 0, 1, 0, 0, 0, 'Engineer', 'SL Loot'), + (221008, 'Severly Corroded Shadow Crystal (Weak Health Plunder)', 220436, 76571, 'Weak Health Plunder', 117911, + NULL, NULL, NULL, 132, 'Tainted', 'Drain', 'Health', 0, '', 0, 1, 0, 0, 0, 'Trader', 'SL Loot'), + (221009, 'Hacked Corroded Crystal (Lesser Death''s Knocking)', 220430, 81935, 'Lesser Death''s Knocking', 49684, + NULL, NULL, NULL, 93, 'Tainted', 'Combat', 'DOT_Agent_Strain_A', 9, '', 0, 0, 0, 0, 0, 'Agent', 'SL Loot'), + (221011, 'Snow Crashed Shadow Crystal (Insurance Hack)', 220422, 85232, 'Insurance Hack', 44229, NULL, NULL, + NULL, 47, 'Tainted', 'Buffs', 'Fixer_Short_Heal_Over_Time', 12, '', 0, 1, 0, 0, 0, 'Fixer', 'SL Loot'), + (221012, 'Snow Crashed Shadow Crystal (Gridspace Freedom)', 220411, 93132, 'Gridspace Freedom', 16300, NULL, + NULL, NULL, 156, 'Tainted', 'Buffs', 'Major_Evasion_Buffs', 144, '', 0, 1, 0, 0, 0, 'Fixer', 'SL Loot'), + (221013, 'Failed Repaired Crystal (Decommissioned Wardroid)', 220411, 45729, 'Decommissioned Wardroid', 44135, + NULL, NULL, NULL, 179, 'Tainted', 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'SL Loot'), + (221014, 'Hacked Corroded Crystal (Greater Delay the Inevitable)', 220430, 82545, 'Greater Delay the Inevitable', + 46274, NULL, NULL, NULL, 90, 'Tainted', 'Crowd_Control', 'Snare', 145, 'Target', 0, 0, 0, 0, 0, 'Agent', + 'SL Loot'), + (221015, 'Overcharged Corroded Nano Crystal (Nano Contagion)', 220430, 45219, 'Nano Contagion', 39799, NULL, + NULL, NULL, 53, 'Tainted', 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (221016, 'Hacked Corroded Crystal (False Profession: Nanotechnician)', 220425, 32037, + 'False Profession: Nanotechnician', 16775, NULL, NULL, NULL, 40, 'Tainted', 'False_Professions', + 'False_Profession', 218, 'Nano-Technician', 0, 1, 0, 0, 0, 'Agent', 'SL Loot'), + (221017, 'Hacked Corroded Crystal (Greater Delay Pursuers)', 220437, 85316, 'Greater Delay Pursuers', 46278, + NULL, NULL, NULL, 109, 'Tainted', 'Crowd_Control', 'Snare', 145, 'Area', 0, 0, 0, 0, 0, 'Agent', 'SL Loot'), + (221019, 'Snow Crashed Shadow Crystal (Greater Net Cast Wide)', 220437, 85224, 'Greater Net Cast Wide', 84285, + NULL, NULL, NULL, 119, 'Tainted', 'Crowd_Control', 'Snare', 145, 'Area', 0, 1, 0, 0, 0, 'Fixer', 'SL Loot'), + (221020, 'Dirty Money Shadow Crystal (Executive-Grade Administrator-Droid)', 220411, 46377, + 'Executive-Grade Administrator-Droid', 44140, NULL, NULL, NULL, 139, 'Tainted', 'Pets', 'Robot', 0, '', 0, 0, 0, + 0, 0, 'Bureaucrat', 'SL Loot'), + (221021, 'Blood Stained and Corroded Crystal (Elementary Nano Contagion)', 220423, 44168, + 'Elementary Nano Contagion', 16225, NULL, NULL, NULL, 14, 'Tainted', 'Combat', 'DOT_-_Line_B', 7, '', 0, 1, 0, + 0, 0, 'Doctor', 'SL Loot'), + (221022, 'Overcharged Corroded Nano Crystal (CrunchCom Nano Compressor)', 220422, 95415, + 'CrunchCom Nano Compressor', 16303, NULL, NULL, NULL, 47, 'Tainted', 'Buffs', 'Nano_Point_Cost_Buffs', 148, '', + 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (221023, 'Hacked Corroded Crystal (Brief Interrogation)', 220423, 56215, 'Brief Interrogation', 46273, NULL, + NULL, NULL, 47, 'Tainted', 'Crowd_Control', 'Root', 146, '', 0, 0, 0, 0, 0, 'Agent', 'SL Loot'), + (221024, 'Corroded Crystal with Bullet Holes (Total Mirror Shield Mk IV)', 220433, 70307, + 'Total Mirror Shield Mk IV', 39001, NULL, NULL, NULL, 60, 'Tainted', 'Buffs', 'Shadowland_Reflect_Base', 694, + 'Self', 0, 1, 0, 0, 0, 'Soldier', 'SL Loot'), + (221025, 'Badly Corroded Crystal (Minor Shen Protection)', 220426, 75349, 'Minor Shen Protection', 16294, NULL, + NULL, NULL, 7, 'Tainted', 'Buffs', 'Armor_Buffs', 3, '', 0, 1, 0, 0, 0, 'Martial Artist', 'SL Loot'), + (221026, 'Blood Stained and Corroded Crystal (Metabolism Booster)', 220422, 95718, 'Metabolism Booster', 38905, + NULL, NULL, NULL, 33, 'Tainted', 'Buffs', 'Doctor_HP_Buffs', 184, '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (221027, 'Failed Repaired Crystal (Flawed Android)', 220424, 45717, 'Flawed Android', 16307, NULL, NULL, NULL, + 27, 'Tainted', 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'SL Loot'), + (221028, 'Failed Repaired Crystal (Basic Force Field)', 220413, 70533, 'Basic Force Field', 100995, NULL, NULL, + NULL, 159, 'Tainted', 'Buffs', 'Armor_Buffs', 3, '', 0, 1, 0, 0, 0, 'Engineer', 'SL Loot'), + (221029, 'Overcharged Corroded Nano Crystal (Isotope Waves)', 220437, 45906, 'Isotope Waves', 39792, NULL, NULL, + NULL, 146, 'Tainted', 'Nukes', 'AoE_Nuke', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (221030, 'Blood Stained and Corroded Crystal (Iron Circle)', 220429, 42400, 'Iron Circle', 39014, NULL, NULL, + NULL, 83, 'Tainted', 'Buffs', 'Strength_Buffs', 156, '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (221032, 'Overcharged Corroded Nano Crystal (Mass Pronounce Blindness)', 220412, 83960, + 'Mass Pronounce Blindness', 38845, NULL, NULL, NULL, 132, 'Tainted', 'DeBuffs', 'Add_All_Offence_DeBuffs', 13, + 'Area', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (221033, 'Overcharged Corroded Nano Crystal (Furious Wind Blade)', 220437, 45908, 'Furious Wind Blade', 39810, + NULL, NULL, NULL, 103, 'Tainted', 'Nukes', 'Fast_1s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (221034, 'Blood Stained and Corroded Crystal (Infuse With Life)', 220436, 95720, 'Infuse with Life', 38905, NULL, + NULL, NULL, 156, 'Tainted', 'Buffs', 'Doctor_HP_Buffs', 184, '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (221035, 'Hacked Corroded Crystal (Postpone Encounter)', 220423, 82537, 'Postpone Encounter', 46276, NULL, NULL, + NULL, 14, 'Tainted', 'Crowd_Control', 'Snare', 145, 'Target', 0, 0, 0, 0, 0, 'Agent', 'SL Loot'), + (221036, 'Hacked Corroded Crystal (False Profession: Soldier)', 220425, 32038, 'False Profession: Soldier', + 16775, NULL, NULL, NULL, 14, 'Tainted', 'False_Professions', 'False_Profession', 218, 'Soldier', 0, 1, 0, 0, 0, + 'Agent', 'SL Loot'), + (221037, 'Dirty Money Shadow Crystal (Limited Assistant-Droid)', 220424, 46366, 'Limited Assistant-Droid', 44139, + NULL, NULL, NULL, 50, 'Tainted', 'Pets', 'Robot', 0, '', 0, 0, 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (221038, 'Dirty Money Shadow Crystal (Executive-Grade Helper-Droid)', 220424, 46382, + 'Executive-Grade Helper-Droid', 16307, NULL, NULL, NULL, 24, 'Tainted', 'Pets', 'Robot', 0, '', 0, 0, 0, 0, 0, + 'Bureaucrat', 'SL Loot'), + (221039, 'Tainted Shadow Crystal (Mind Howl)', 220430, 125762, 'Mind Howl', 39803, NULL, NULL, NULL, 87, + 'Tainted', 'Combat', 'Metaphysicist_Mind_Damage_Nano_DeBuffs', 221, '', 0, 1, 0, 0, 0, 'Meta-Physicist', + 'SL Loot'), + (221040, 'Overcharged Corroded Nano Crystal (Gouge Eyes)', 220425, 83942, 'Gouge Eyes', 39126, NULL, NULL, NULL, + 27, 'Tainted', 'DeBuffs', 'Add_All_Offence_DeBuffs', 13, 'Target', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (221041, 'Badly Eroded Crystal (Arctic Gale)', 220433, 55826, 'Arctic Gale', 16221, NULL, NULL, NULL, 83, + 'Tainted', 'Buffs', 'Damage_Shields', 1, 'Target', 0, 1, 0, 0, 0, 'Adventurer', 'SL Loot'), + (221042, 'Dirty Money Shadow Crystal (Erratic Laser)', 220437, 78396, 'Erratic Laser', 39803, NULL, NULL, NULL, + 142, 'Tainted', 'Nukes', 'Normal', 0, '', 0, 1, 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (221043, 'Dirty Money Shadow Crystal (Void Inertia)', 220437, 55993, 'Void Inertia', 46275, NULL, NULL, NULL, + 182, 'Tainted', 'Crowd_Control', 'Root', 146, 'Target', 0, 1, 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (221044, 'Failed Repaired Crystal (Slayerdroid Guardian)', 220411, 45671, 'Slayerdroid Guardian', 44135, NULL, + NULL, NULL, 189, 'Tainted', 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'SL Loot'), + (221045, 'Tainted Shadow Crystal (Lull Wrath)', 220412, 99123, 'Lull Wrath', 39168, NULL, NULL, NULL, 162, + 'Tainted', 'DeBuffs', 'Meta-Physicist_Initiatives/Damage_DeBuffs', 187, '', 0, 1, 0, 0, 0, 'Meta-Physicist', + 'SL Loot'), + (221046, 'Failed Repaired Crystal (Patchwork Guardbot)', 220431, 45694, 'Patchwork Guardbot', 44139, NULL, NULL, + NULL, 90, 'Tainted', 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'SL Loot'), + (221048, 'Badly Corroded Crystal (Major Shen Protection)', 220433, 75341, 'Major Shen Protection', 39116, NULL, + NULL, NULL, 99, 'Tainted', 'Buffs', 'Armor_Buffs', 3, '', 0, 1, 0, 0, 0, 'Martial Artist', 'SL Loot'), + (221049, 'Severly Corroded Shadow Crystal (Traffic AC (Advanced))', 220413, 92133, 'Traffic AC (Advanced)', + 117971, NULL, NULL, NULL, 172, 'Tainted', 'Transfer', 'AC_Transfer_Target_Buffs', 143, 'Team', 0, 1, 0, 0, 0, + 'Trader', 'SL Loot'), + (221051, 'Overcharged Corroded Nano Crystal (Atomic Collapse)', 220437, 45260, 'Atomic Collapse', 45189, NULL, + NULL, NULL, 159, 'Tainted', 'Nukes', 'Long_8s~1s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (221052, 'Failed Repaired Crystal (Spike Shield)', 220426, 29782, 'Spike Shield', 16221, NULL, NULL, NULL, 7, + 'Tainted', 'Buffs', 'Damage_Shields', 1, '', 0, 1, 0, 0, 0, 'Engineer', 'SL Loot'), + (221053, 'Blood Stained and Corroded Crystal (Perpetuating Nano Reaper)', 220437, 44154, + 'Perpetuating Nano Reaper', 16222, NULL, NULL, NULL, 136, 'Tainted', 'Combat', 'DOT_-_Line_B', 7, '', 0, 1, 0, + 0, 0, 'Doctor', 'SL Loot'), + (221054, 'Dirty Money Shadow Crystal (Baton of Authority)', 220425, 90450, 'Baton of Authority (Team)', 296548, + NULL, NULL, NULL, 17, 'Tainted', 'Buffs', 'Experience_Constructs_-_XP_Bonus', 959, '', 0, 1, 0, 0, 0, + 'Bureaucrat', 'SL Loot'), + (221055, 'Severly Corroded Shadow Crystal (Riding Shotgun)', 220431, 30747, 'Riding Shotgun', 118028, NULL, NULL, + NULL, 80, 'Tainted', 'Buffs', 'Damage', 0, 'Team', 0, 1, 0, 0, 0, 'Trader', 'SL Loot'), + (221056, 'Badly Eroded Crystal (Retaliatory Venom Spit)', 220413, 55814, 'Retaliatory Venom Spit', 16221, NULL, + NULL, NULL, 159, 'Tainted', 'Buffs', 'Damage_Shields', 1, 'Target', 0, 1, 0, 0, 0, 'Adventurer', 'SL Loot'), + (221057, 'Failed Repaired Crystal (Patchwork Automaton)', 220424, 45692, 'Patchwork Automaton', 16307, NULL, + NULL, NULL, 1, 'Tainted', 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'SL Loot'), + (221058, 'Failed Repaired Crystal (Flawed Force Field)', 220413, 70534, 'Flawed Force Field', 100995, NULL, NULL, + NULL, 156, 'Tainted', 'Buffs', 'Armor_Buffs', 3, '', 0, 1, 0, 0, 0, 'Engineer', 'SL Loot'), + (221059, 'Severly Corroded Shadow Crystal (Siphon AC (Minor))', 220413, 91332, 'Siphon AC (Minor)', 117900, NULL, + NULL, NULL, 103, 'Tainted', 'Drain', 'AC_Transfer_Target_DeBuffs', 139, 'Siphon', 0, 1, 0, 0, 0, 'Trader', + 'SL Loot'), + (221060, 'Severly Corroded Shadow Crystal (Lesser Health Funnel)', 220422, 76724, 'Lesser Health Funnel', 117906, + NULL, NULL, NULL, 17, 'Tainted', 'Drain', 'Health', 0, '', 0, 1, 0, 0, 0, 'Trader', 'SL Loot'), + (221061, 'Overcharged Corroded Nano Crystal (Positron Stream)', 220430, 45209, 'Positron Stream', 39803, NULL, + NULL, NULL, 96, 'Tainted', 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (221062, 'Severly Corroded Shadow Crystal (Entrepreneurial Thrall)', 220437, 56235, 'Entrepreneurial Thrall', + 46275, NULL, NULL, NULL, 182, 'Tainted', 'Crowd_Control', 'Root', 146, 'Target', 0, 1, 0, 0, 0, 'Trader', + 'SL Loot'), + (221063, 'Severly Corroded Shadow Crystal (Traffic AC (Weak))', 220433, 92142, 'Traffic AC (Weak)', 117969, NULL, + NULL, NULL, 96, 'Tainted', 'Transfer', 'AC_Transfer_Target_Buffs', 143, 'Team', 0, 1, 0, 0, 0, 'Trader', + 'SL Loot'), + (221064, 'Overcharged Corroded Nano Crystal (Eviscerate Eyes)', 220412, 83952, 'Eviscerate Eyes', 39126, NULL, + NULL, NULL, 152, 'Tainted', 'DeBuffs', 'Add_All_Offence_DeBuffs', 13, 'Target', 0, 1, 0, 0, 0, + 'Nano-Technician', 'SL Loot'), + (221065, 'Corroded Crystal with Bullet Holes (Ego Taunt)', 220425, 29228, 'Ego Taunt', 16230, NULL, NULL, NULL, + 4, 'Tainted', 'Crowd_Control', 'Taunt_(normal)', 0, '', 0, 1, 0, 0, 0, 'Soldier', 'SL Loot'), + (221066, 'Overcharged Corroded Nano Crystal (Micro Flechette Swarm)', 220437, 45903, 'Micro Flechette Swarm', + 39813, NULL, NULL, NULL, 116, 'Tainted', 'Nukes', 'Fast_1s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', + 'SL Loot'), + (221067, 'Overcharged Corroded Nano Crystal (Cellular Decay)', 220423, 45139, 'Cellular Decay', 39799, NULL, + NULL, NULL, 40, 'Tainted', 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (221068, 'Failed Repaired Crystal (Harmonic Cocoon)', 220413, 70296, 'Harmonic Cocoon', 39281, NULL, NULL, NULL, + 139, 'Tainted', 'Buffs', 'Reflect_Shield', 2, '', 0, 1, 0, 0, 0, 'Engineer', 'SL Loot'), + (221070, 'Overcharged Corroded Nano Crystal (Burn from Within)', 220430, 45935, 'Burn From Within', 39806, NULL, + NULL, NULL, 93, 'Tainted', 'Nukes', 'Medium_3s~2s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (221071, 'Corroded Crystal with Bullet Holes (Total Mirror Shield Mk I)', 220426, 70308, + 'Total Mirror Shield Mk I', 16319, NULL, NULL, NULL, 10, 'Tainted', 'Buffs', 'Shadowland_Reflect_Base', 694, + 'Self', 0, 1, 0, 0, 0, 'Soldier', 'SL Loot'), + (221072, 'Failed Repaired Crystal (Warmachine)', 220411, 45669, 'Warmachine', 44135, NULL, NULL, NULL, 165, + 'Tainted', 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'SL Loot'), + (221073, 'Severly Corroded Shadow Crystal (Lend Nano: 50)', 220422, 30730, 'Lend Nano: 50', 16303, NULL, NULL, + NULL, 10, 'Tainted', 'Transfer', 'Nano_Point_Buffs', 178, '', 0, 1, 0, 0, 0, 'Trader', 'SL Loot'), + (221075, 'Blood Stained and Corroded Crystal (Field Dressings)', 220422, 43830, 'Field Dressings', 16246, NULL, + NULL, NULL, 10, 'Tainted', 'Combat', 'Target_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (221076, 'Badly Corroded Crystal (Wooden Skin)', 220426, 75347, 'Wooden Skin', 38976, NULL, NULL, NULL, 43, + 'Tainted', 'Buffs', 'Armor_Buffs', 3, '', 0, 1, 0, 0, 0, 'Martial Artist', 'SL Loot'), + (221077, 'Dirty Money Shadow Crystal (Director-Grade Assistant-Droid)', 220431, 46389, + 'Director-Grade Assistant-Droid', 44139, NULL, NULL, NULL, 66, 'Tainted', 'Pets', 'Robot', 0, '', 0, 0, 0, 0, 0, + 'Bureaucrat', 'SL Loot'), + (221078, 'Blood Stained and Corroded Crystal (Minor Team Healing)', 220422, 42403, 'Minor Team Healing', 38953, + NULL, NULL, NULL, 7, 'Tainted', 'Combat', 'Team_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (221079, 'Corroded Crystal with Bullet Holes (Greater Reflective Field)', 220413, 70332, + 'Greater Reflective Field', 101017, NULL, NULL, NULL, 129, 'Tainted', 'Buffs', 'Shadowland_Reflect_Base', 694, + 'Target', 0, 1, 0, 0, 0, 'Soldier', 'SL Loot'), + (221080, 'Blood Stained and Corroded Crystal (Emergency Medical Response)', 220436, 43886, + 'Emergency Medical Response', 292054, NULL, NULL, NULL, 162, 'Tainted', 'Combat', 'Single_Target_Healing', 951, + '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (221081, 'Severly Corroded Shadow Crystal (Lossy Health Plunder)', 220436, 76491, 'Average Health Plunder', + 117912, NULL, NULL, NULL, 149, 'Tainted', 'Drain', 'Health', 0, '', 0, 1, 0, 0, 0, 'Trader', 'SL Loot'), + (221082, 'Dirty Money Shadow Crystal (Greater Stumbling Steps)', 220437, 82472, 'Greater Stumbling Steps', 46274, + NULL, NULL, NULL, 106, 'Tainted', 'Crowd_Control', 'Snare', 145, 'Target', 0, 1, 0, 0, 0, 'Bureaucrat', + 'SL Loot'), + (221083, 'Badly Corroded Crystal (Greater Shen Protection)', 220413, 75339, 'Greater Shen Protection', 39256, + NULL, NULL, NULL, 132, 'Tainted', 'Buffs', 'Armor_Buffs', 3, '', 0, 1, 0, 0, 0, 'Martial Artist', 'SL Loot'), + (221084, 'Overcharged Corroded Nano Crystal (Collapsing Barrier)', 220413, 117677, 'Collapsing Barrier', 39039, + NULL, NULL, NULL, 146, 'Tainted', 'Buffs', 'Absorb_AC_Buffs', 219, '', 0, 1, 0, 0, 0, 'Nano-Technician', + 'SL Loot'), + (221085, 'Overcharged Corroded Nano Crystal (Greater Viral Assault)', 220437, 45236, 'Greater Viral Assault', + 45175, NULL, NULL, NULL, 179, 'Tainted', 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', + 'SL Loot'), + (221087, 'Tainted Shadow Crystal (Supreme Fury Externalization)', 220424, 43748, 'Supreme Fury Externalization', + 295577, NULL, NULL, NULL, 30, 'Tainted', 'Pet', 'Attack_Pet', 0, '', 0, 1, 0, 0, 0, 'Meta-Physicist', + 'SL Loot'), + (221088, 'Hacked Corroded Crystal (Nano Augmentation)', 220424, 81854, 'Nano Augmentation', 39028, NULL, NULL, + NULL, 24, 'Tainted', 'Buffs', 'Damage_Buffs_-_Line_A', 4, '', 0, 0, 0, 0, 0, 'Agent', 'SL Loot'), + (221089, 'Badly Corroded Crystal (Monomolecular Skin)', 220413, 75336, 'Monomolecular Skin', 101002, NULL, NULL, + NULL, 152, 'Tainted', 'Buffs', 'Armor_Buffs', 3, '', 0, 1, 0, 0, 0, 'Martial Artist', 'SL Loot'), + (221090, 'Severly Corroded Shadow Crystal (Extended Line of Credit)', 220424, 99614, 'Extended Line of Credit', + 39137, NULL, NULL, NULL, 50, 'Tainted', 'Drain', 'Nano_Drain_-_Line_A', 215, '', 0, 1, 0, 0, 0, 'Trader', + 'SL Loot'), + (221091, 'Badly Eroded Crystal (Greater Quick Heal)', 220422, 82062, 'Greater Quick Heal', 44229, NULL, NULL, + NULL, 43, 'Tainted', 'Combat', 'Single_Target_Healing', 951, '', 0, 1, 0, 0, 0, 'Adventurer', 'SL Loot'), + (221092, 'Blood Stained and Corroded Crystal (Company Policy)', 220422, 43912, 'Company Policy', 44245, NULL, + NULL, NULL, 37, 'Tainted', 'Combat', 'Team_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (221093, 'Blood Stained and Corroded Crystal (Superior Nano Bandage)', 220436, 43811, 'Superior Nano Bandage', + 44233, NULL, NULL, NULL, 142, 'Tainted', 'Combat', 'Target_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (221094, 'Severly Corroded Shadow Crystal (Redeem AC (Greater))', 220413, 92145, 'Redeem AC (Greater)', 118034, + NULL, NULL, NULL, 175, 'Tainted', 'Transfer', 'AC_Transfer_Target_Buffs', 143, 'Target', 0, 1, 0, 0, 0, + 'Trader', 'SL Loot'), + (221095, 'Badly Corroded Crystal (2H Edged Weapon Proficiency)', 220425, 27079, '2H Edged Weapon Proficiency', + 16347, NULL, NULL, NULL, 4, 'Tainted', 'Buffs_-_Melee', '2H_Edged_Buffs', 25, '', 0, 0, 0, 0, 0, 'General', + 'SL Loot'), + (221096, 'Overcharged Corroded Nano Crystal (Greater Blade Chaos)', 220437, 45909, 'Greater Blade Chaos', 39810, + NULL, NULL, NULL, 119, 'Tainted', 'Nukes', 'Medium_3s~2s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (221097, 'Badly Eroded Crystal (Nest of Vipers)', 220433, 55825, 'Nest of Vipers', 16221, NULL, NULL, NULL, 99, + 'Tainted', 'Buffs', 'Damage_Shields', 1, 'Target', 0, 1, 0, 0, 0, 'Adventurer', 'SL Loot'), + (221098, 'Dirty Money Shadow Crystal (Powerful Blizzard of Red Tape)', 220437, 82469, + 'Powerful Blizzard of Red Tape', 46278, NULL, NULL, NULL, 136, 'Tainted', 'Crowd_Control', 'Snare', 145, + 'Target', 0, 1, 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (221099, 'Overcharged Corroded Nano Crystal (Chemical Burn)', 220423, 45249, 'Chemical Burn', 45167, NULL, NULL, + NULL, 24, 'Tainted', 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (221100, 'Badly Eroded Crystal (Cellular Reformation)', 220429, 136680, 'Cellular Reformation', 44229, NULL, + NULL, NULL, 83, 'Tainted', 'Combat', 'Single_Target_Healing', 951, '', 0, 1, 0, 0, 0, 'Adventurer', 'SL Loot'), + (221101, 'Failed Repaired Crystal (Lesser Defensive Screen)', 220433, 70555, 'Lesser Defensive Screen', 38898, + NULL, NULL, NULL, 57, 'Tainted', 'Buffs', 'Armor_Buffs', 3, '', 0, 1, 0, 0, 0, 'Engineer', 'SL Loot'), + (221102, 'Corroded Crystal with Bullet Holes (Major Deflection Shield)', 220433, 70326, + 'Major Deflection Shield', 39141, NULL, NULL, NULL, 63, 'Tainted', 'Buffs', 'Shadowland_Reflect_Base', 694, + 'Target', 0, 1, 0, 0, 0, 'Soldier', 'SL Loot'), + (221103, 'Badly Corroded Crystal (Transcendent Shen Protection)', 220413, 75351, 'Transcendent Shen Protection', + 101002, NULL, NULL, NULL, 159, 'Tainted', 'Buffs', 'Armor_Buffs', 3, '', 0, 1, 0, 0, 0, 'Martial Artist', + 'SL Loot'), + (221104, 'Dirty Money Shadow Crystal (Supervisor-Grade Bodyguard)', 220411, 46356, 'Supervisor-Grade Bodyguard', + 44135, NULL, NULL, NULL, 165, 'Tainted', 'Pets', 'Robot', 0, '', 0, 0, 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (221105, 'Dirty Money Shadow Crystal (Faithful Helper-Droid)', 220424, 46374, 'Faithful Helper-Droid', 16307, + NULL, NULL, NULL, 17, 'Tainted', 'Pets', 'Robot', 0, '', 0, 0, 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (221106, 'Failed Repaired Crystal (Perfect Android)', 220424, 45697, 'Perfected Android', 44139, NULL, NULL, + NULL, 40, 'Tainted', 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'SL Loot'), + (221107, 'Badly Corroded Crystal (Vulnerability Seeker)', 220432, 95529, 'Vulnerability Seeker', 291164, NULL, + NULL, NULL, 90, 'Tainted', 'Buffs', 'Critical_Increase_Buffs', 182, 'Self', 0, 0, 0, 0, 0, 'Martial Artist', + 'SL Loot'), + (221108, 'Dirty Money Shadow Crystal (Searing Bolt)', 220430, 78399, 'Searing Bolt', 39802, NULL, NULL, NULL, 93, + 'Tainted', 'Nukes', 'Normal', 0, '', 0, 1, 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (221109, 'Blood Stained and Corroded Crystal (Thorough Examination)', 220429, 43824, 'Thorough Examination', + 44231, NULL, NULL, NULL, 83, 'Tainted', 'Combat', 'Target_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (221110, 'Overcharged Corroded Nano Crystal (Boil From Within)', 220437, 70628, 'Boil from Within', 49686, NULL, + NULL, NULL, 126, 'Tainted', 'Combat', 'Nano-Technician_DOT_-_Strain_A', 8, '', 0, 1, 0, 0, 0, 'Nano-Technician', + 'SL Loot'), + (221111, 'Corroded Crystal with Bullet Holes (Partial Reflective Field (Extended))', 220433, 70315, + 'Partial Reflective Field (Extended)', 39281, NULL, NULL, NULL, 99, 'Tainted', 'Buffs', + 'Shadowland_Reflect_Base', 694, 'Target', 0, 1, 0, 0, 0, 'Soldier', 'SL Loot'), + (221112, 'Corroded Crystal with Bullet Holes (Annoying Presence)', 220432, 100205, 'Annoying Presence', 16230, + NULL, NULL, NULL, 70, 'Tainted', 'Crowd_Control', 'Taunt_(normal)', 0, '', 0, 1, 0, 0, 0, 'Soldier', 'SL Loot'), + (221114, 'Cracked Crystal (Dominate Foe)', 220412, 121135, 'Dominate Foe', 39145, 147297, 145797, 148797, 150, + 'Misc', 'Crowd_Control', 'Fear', 256, '', 0, 1, 0, 0, 0, 'Enforcer', 'SL Loot'), + (221115, 'Corroded Crystal with Bullet Holes (Lesser Combat Barrier)', 220426, 75411, 'Lesser Combat Barrier', + 16314, NULL, NULL, NULL, 20, 'Tainted', 'Buffs', 'Armor_Buffs', 3, '', 0, 1, 0, 0, 0, 'Soldier', 'SL Loot'), + (221116, 'Snow Crashed Shadow Crystal (Basic Policy Skim)', 220429, 85231, 'Basic Policy Skim', 44230, NULL, + NULL, NULL, 66, 'Tainted', 'Buffs', 'Fixer_Short_Heal_Over_Time', 12, '', 0, 1, 0, 0, 0, 'Fixer', 'SL Loot'), + (221117, 'Severly Corroded Shadow Crystal (Greater Detain Customer)', 220437, 56228, 'Greater Detain Customer', + 46275, NULL, NULL, NULL, 169, 'Tainted', 'Crowd_Control', 'Root', 146, 'Target', 0, 1, 0, 0, 0, 'Trader', + 'SL Loot'), + (221118, 'Severly Corroded Shadow Crystal (Skill Wrangler (Inferior))', 220432, 121341, + 'Skill Wrangler (Inferior)', 118049, NULL, NULL, NULL, 70, 'Tainted', 'Transfer', 'Wrangle', 0, 'Target', 0, 1, + 0, 0, 0, 'Trader', 'SL Loot'), + (221119, 'Dirty Money Shadow Crystal (Greater Enforced Sloth)', 220437, 95382, 'Greater Enforced Sloth', 46278, + NULL, NULL, NULL, 146, 'Tainted', 'Crowd_Control', 'Snare', 145, 'Area', 0, 1, 0, 0, 0, 'Bureaucrat', + 'SL Loot'), + (221120, 'Cracked Crystal (Deaden Pain)', 220413, 117687, 'Deaden Pain', 39179, 147296, 145796, 148796, 133, + 'Misc', 'Buffs', 'Absorb_AC_Buffs', 219, '', 0, 1, 0, 0, 0, 'Enforcer', 'SL Loot'), + (221121, 'Corroded Crystal with Bullet Holes (Lesser Deflection Shield)', 220426, 70330, + 'Lesser Deflection Shield', 16319, NULL, NULL, NULL, 24, 'Tainted', 'Buffs', 'Shadowland_Reflect_Base', 694, + 'Target', 0, 1, 0, 0, 0, 'Soldier', 'SL Loot'), + (221122, 'Overcharged Corroded Nano Crystal (Toxic Field)', 220423, 45882, 'Toxic Field', 39804, NULL, NULL, + NULL, 37, 'Tainted', 'Nukes', 'Medium_3s~2s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (221123, 'Hacked Corroded Crystal (Face Graft)', 220429, 116855, 'Face Graft', 39158, NULL, NULL, NULL, 77, + 'Tainted', 'Disguise', '', 0, '', 0, 0, 0, 0, 0, 'Agent', 'SL Loot'), + (221124, 'Failed Repaired Crystal (Flawed Shielding Barrier)', 220426, 70546, 'Flawed Shielding Barrier', 16197, + NULL, NULL, NULL, 7, 'Tainted', 'Buffs', 'Armor_Buffs', 3, '', 0, 1, 0, 0, 0, 'Engineer', 'SL Loot'), + (221126, 'Badly Eroded Crystal (Skin of the Toad)', 220433, 55828, 'Skin of the Toad', 16221, NULL, NULL, NULL, + 73, 'Tainted', 'Buffs', 'Damage_Shields', 1, 'Target', 0, 1, 0, 0, 0, 'Adventurer', 'SL Loot'), + (221127, 'Blood Stained and Corroded Crystal (Team Healing)', 220422, 42405, 'Team Healing', 44245, NULL, NULL, + NULL, 40, 'Tainted', 'Combat', 'Team_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (221128, 'Severly Corroded Shadow Crystal (Siphon AC (Greater))', 220413, 91320, 'Siphon AC (Greater)', 117903, + NULL, NULL, NULL, 162, 'Tainted', 'Drain', 'AC_Transfer_Target_DeBuffs', 139, 'Siphon', 0, 1, 0, 0, 0, 'Trader', + 'SL Loot'), + (221129, 'Weird Looking Nano Crystal (Hasty Augmentation Cloud)', 301242, 222833, + 'Improved Hasty Augmentation Cloud', 291157, 0, 0, 0, 43, 'Crystal', 'Buffs', 'Damage_Buffs_-_Line_A', 4, '', 0, + 0, 0, 0, 0, 'Agent', 'Greedy Shade / SL Static'), + (221130, 'Failed Repaired Crystal (Common Android)', 220424, 45723, 'Common Android', 16307, NULL, NULL, NULL, + 30, 'Tainted', 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'SL Loot'), + (221131, 'Severly Corroded Shadow Crystal (Strip Assets)', 220424, 99605, 'Strip Assets', 39137, NULL, NULL, + NULL, 33, 'Tainted', 'Drain', 'Nano_Drain_-_Line_A', 215, '', 0, 1, 0, 0, 0, 'Trader', 'SL Loot'), + (221132, 'Tainted Shadow Crystal (Rage Eradication)', 220412, 99115, 'Rage Eradication', 39168, NULL, NULL, NULL, + 116, 'Tainted', 'DeBuffs', 'Meta-Physicist_Initiatives/Damage_DeBuffs', 187, '', 0, 1, 0, 0, 0, + 'Meta-Physicist', 'SL Loot'), + (221133, 'Overcharged Corroded Nano Crystal (Discourage Involvement)', 220437, 100441, 'Discourage Involvement', + 46270, NULL, NULL, NULL, 129, 'Tainted', 'Crowd_Control', 'Mezz', 147, 'Calm', 0, 1, 0, 0, 0, 'Nano-Technician', + 'SL Loot'), + (221134, 'Severly Corroded Shadow Crystal (Impoverish Accounts)', 220411, 99611, 'Impoverish Accounts', 39137, + NULL, NULL, NULL, 146, 'Tainted', 'Drain', 'Nano_Drain_-_Line_A', 215, '', 0, 1, 0, 0, 0, 'Trader', 'SL Loot'), + (221135, 'Corroded Crystal with Bullet Holes (Heavy Assault Combat Barrier)', 220413, 75402, + 'Heavy Assault Combat Barrier', 101016, NULL, NULL, NULL, 152, 'Tainted', 'Buffs', 'Armor_Buffs', 3, '', 0, 1, + 0, 0, 0, 'Soldier', 'SL Loot'), + (221136, 'Severly Corroded Shadow Crystal (Greater Health Plunder)', 220436, 76478, 'Greater Health Plunder', + 117914, NULL, NULL, NULL, 175, 'Tainted', 'Drain', 'Health', 0, '', 0, 1, 0, 0, 0, 'Trader', 'SL Loot'), + (221137, 'Overcharged Corroded Nano Crystal (Pellet of Fire)', 220430, 45893, 'Pellet of Fire', 39806, NULL, + NULL, NULL, 83, 'Tainted', 'Nukes', 'Fast_1s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (221138, 'Dirty Money Shadow Crystal (Revoke Movement License)', 220423, 55989, 'Revoke Movement License', 46273, + NULL, NULL, NULL, 47, 'Tainted', 'Crowd_Control', 'Root', 146, 'Target', 0, 1, 0, 0, 0, 'Bureaucrat', + 'SL Loot'), + (221139, 'Failed Repaired Crystal (Common Automaton)', 220424, 45724, 'Common Automaton', 16307, NULL, NULL, + NULL, 7, 'Tainted', 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'SL Loot'), + (221141, 'Failed Repaired Crystal (Feeble Warmachine)', 220411, 45716, 'Feeble Warmachine', 44140, NULL, NULL, + NULL, 156, 'Tainted', 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'SL Loot'), + (221142, 'Blood Stained and Corroded Crystal (Constitution Magnification)', 220436, 96256, + 'Constitution Magnification', 39152, NULL, NULL, NULL, 146, 'Tainted', 'Buffs', 'Doctor_Short_HP_Buffs', 185, + '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (221143, 'Failed Repaired Crystal (Lesser Warmachine)', 220411, 45688, 'Lesser Warmachine', 44140, NULL, NULL, + NULL, 159, 'Tainted', 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'SL Loot'), + (221144, 'Tainted Shadow Crystal (Inferior Anger Manifestation)', 220424, 43725, 'Inferior Anger Manifestation', + 295577, NULL, NULL, NULL, 1, 'Tainted', 'Pet', 'Attack_Pet', 0, '', 0, 1, 0, 0, 0, 'Meta-Physicist', 'SL Loot'), + (221145, 'Overcharged Corroded Nano Crystal (Eye of Light)', 220437, 28606, 'Eye of Light', 49683, NULL, NULL, + NULL, 169, 'Tainted', 'Combat', 'Nano-Technician_DOT_-_Strain_A', 8, '', 0, 1, 0, 0, 0, 'Nano-Technician', + 'SL Loot'), + (221146, 'Dirty Money Shadow Crystal (Weight of the Guilty)', 220423, 82482, 'Weight of the Guilty', 46276, NULL, + NULL, NULL, 17, 'Tainted', 'Crowd_Control', 'Snare', 145, 'Target', 0, 1, 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (221147, 'Badly Corroded Crystal (Greater Steel Skin)', 220433, 75343, 'Greater Steel Skin', 39116, NULL, NULL, + NULL, 86, 'Tainted', 'Buffs', 'Armor_Buffs', 3, '', 0, 1, 0, 0, 0, 'Martial Artist', 'SL Loot'), + (221148, 'Blood Stained and Corroded Crystal (Professional Care)', 220429, 43907, 'Professional Care', 44247, + NULL, NULL, NULL, 93, 'Tainted', 'Combat', 'Team_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (221149, 'Severly Corroded Shadow Crystal (Lesser Health Plunder)', 220436, 76484, 'Lesser Health Plunder', + 117913, NULL, NULL, NULL, 156, 'Tainted', 'Drain', 'Health', 0, '', 0, 1, 0, 0, 0, 'Trader', 'SL Loot'), + (221150, 'Failed Repaired Crystal (Patchwork Android)', 220424, 45691, 'Patchwork Android', 16307, NULL, NULL, + NULL, 20, 'Tainted', 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'SL Loot'), + (221151, 'Dirty Money Shadow Crystal (Executive-Grade Aide-Droid)', 220431, 46378, 'Executive-Grade Aide-Droid', + 44140, NULL, NULL, NULL, 86, 'Tainted', 'Pets', 'Robot', 0, '', 0, 0, 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (221152, 'Failed Repaired Crystal (Partial Harmonic Cocoon)', 220426, 70294, 'Partial Harmonic Cocoon', 16319, + NULL, NULL, NULL, 30, 'Tainted', 'Buffs', 'Reflect_Shield', 2, '', 0, 1, 0, 0, 0, 'Engineer', 'SL Loot'), + (221153, 'Overcharged Corroded Nano Crystal (Burning Triumvirate)', 220430, 45246, 'Burning Triumvirate', 39806, + NULL, NULL, NULL, 93, 'Tainted', 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (221154, 'Corroded Crystal with Bullet Holes (Damage Amplifier)', 220424, 29225, 'Damage Amplifier', 39168, NULL, + NULL, NULL, 40, 'Tainted', 'Buffs', 'Soldier_Damage_Base', 770, 'Target', 0, 1, 0, 0, 0, 'Soldier', 'SL Loot'), + (221155, 'Failed Repaired Crystal (Common Warmachine)', 220411, 45728, 'Common Warmachine', 44135, NULL, NULL, + NULL, 165, 'Tainted', 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'SL Loot'), + (221156, 'Dirty Money Shadow Crystal (Basic Aide-Droid)', 220431, 46401, 'Basic Aide-Droid', 44139, NULL, NULL, + NULL, 70, 'Tainted', 'Pets', 'Robot', 0, '', 0, 0, 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (221157, 'Badly Corroded Crystal (2H Blunt Weapon Expertise)', 220425, 27072, '2H Blunt Weapon Expertise', 20879, + NULL, NULL, NULL, 10, 'Tainted', 'Buffs_-_Melee', '2H_Blunt_Buffs', 23, '', 0, 0, 0, 0, 0, 'General', + 'SL Loot'), + (221159, 'Tainted Shadow Crystal (Glacial Lance)', 220437, 125763, 'Glacial Lance', 39798, NULL, NULL, NULL, 159, + 'Tainted', 'Combat', 'Nuke_Normal', 0, '', 0, 1, 0, 0, 0, 'Meta-Physicist', 'SL Loot'), + (221161, 'Badly Corroded Crystal (Fists of the Sorrowful Toad)', 220411, 81822, 'Fists of the Sorrowful Toad', + 39308, NULL, NULL, NULL, 126, 'Tainted', 'Buffs', 'Damage_Buffs_-_Line_A', 4, '', 0, 1, 0, 0, 0, + 'Martial Artist', 'SL Loot'), + (221162, 'Blood Stained and Corroded Crystal (Scythe A Virus)', 220430, 44148, 'Scythe A Virus', 16226, NULL, + NULL, NULL, 86, 'Tainted', 'Combat', 'DOT_-_Line_A', 6, '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (221163, 'Blood Stained and Corroded Crystal (Team Nano Bandage)', 220436, 43905, 'Team Nano Bandage', 44248, + NULL, NULL, NULL, 113, 'Tainted', 'Combat', 'Team_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (221164, 'Dirty Money Shadow Crystal (Director-Grade Helper-Droid)', 220424, 46392, + 'Director-Grade Helper-Droid', 16307, NULL, NULL, NULL, 27, 'Tainted', 'Pets', 'Robot', 0, '', 0, 0, 0, 0, 0, + 'Bureaucrat', 'SL Loot'), + (221165, 'Overcharged Corroded Nano Crystal (Greater Shower With Sludge)', 220437, 45913, + 'Greater Shower with Sludge', 39795, NULL, NULL, NULL, 132, 'Tainted', 'Nukes', 'Fast_1s~3s', 0, '', 0, 1, 0, 0, + 0, 'Nano-Technician', 'SL Loot'), + (221166, 'Badly Eroded Crystal (Greater Team Quick Heal)', 220429, 82056, 'Greater Team Quick Heal', 44245, NULL, + NULL, NULL, 57, 'Tainted', 'Combat', 'Team_Healing', 952, '', 0, 1, 0, 0, 0, 'Adventurer', 'SL Loot'), + (221167, 'Blood Stained and Corroded Crystal (Cleanse Wounds)', 220429, 42395, 'Cleanse Wounds', 44247, NULL, + NULL, NULL, 96, 'Tainted', 'Combat', 'Team_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (221168, 'Overcharged Corroded Nano Crystal (Corrupt Molecular Integrity)', 220437, 45138, + 'Corrupt Molecular Integrity', 39800, NULL, NULL, NULL, 103, 'Tainted', 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, + 0, 0, 'Nano-Technician', 'SL Loot'), + (221169, 'Overcharged Corroded Nano Crystal (Energized Collapse)', 220437, 45242, 'Energized Collapse', 39816, + NULL, NULL, NULL, 113, 'Tainted', 'Nukes', 'Long_8s~1s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (221170, 'Snow Crashed Shadow Crystal (Greater Prolong Encounter)', 220437, 56219, 'Greater Prolong Encounter', + 46275, NULL, NULL, NULL, 152, 'Tainted', 'Crowd_Control', 'Root', 146, '', 0, 1, 0, 0, 0, 'Fixer', 'SL Loot'), + (221171, 'Blood Stained and Corroded Crystal (Sentient Nano Gorger)', 220437, 44146, 'Sentient Nano Gorger', + 16222, NULL, NULL, NULL, 185, 'Tainted', 'Combat', 'DOT_-_Line_B', 7, '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (221172, 'Failed Repaired Crystal (Recondition Parts)', 220422, 116797, 'Recondition Parts', 44230, NULL, NULL, + NULL, 50, 'Tainted', 'Pet_Combat', 'Pet_Heal', 0, '', 0, 1, 0, 0, 0, 'Engineer', 'SL Loot'), + (221173, 'Snow Crashed Shadow Crystal (Gravity Bindings)', 220437, 82502, 'Gravity Bindings', 46279, NULL, NULL, + NULL, 126, 'Tainted', 'Crowd_Control', 'Snare', 145, 'Target', 0, 1, 0, 0, 0, 'Fixer', 'SL Loot'), + (221175, 'Tainted Shadow Crystal (Instill With Enduring Wrath)', 220436, 116817, 'Instill With Enduring Wrath', + 16207, NULL, NULL, NULL, 166, 'Tainted', 'Pet_Buffs', 'Meta-Physicist_Pet_Damage_Buffs', 216, '', 0, 1, 0, 0, 0, + 'Meta-Physicist', 'SL Loot'), + (221176, 'Badly Eroded Crystal (Makeshift Bandaging)', 220429, 136683, 'Makeshift Bandaging', 44229, NULL, NULL, + NULL, 74, 'Tainted', 'Combat', 'Single_Target_Healing', 951, '', 0, 1, 0, 0, 0, 'Adventurer', 'SL Loot'), + (221177, 'Tainted Shadow Crystal (Calling of Curatem The Grand)', 220411, 125739, 'Calling of Curatem The Grand', + 295568, NULL, NULL, NULL, 169, 'Tainted', 'Pet', 'Heal_Pet', 0, '', 0, 1, 0, 0, 0, 'Meta-Physicist', 'SL Loot'), + (221178, 'Overcharged Corroded Nano Crystal (Shroud of the Grave)', 220412, 83948, 'Shroud of the Grave', 39126, + NULL, NULL, NULL, 182, 'Tainted', 'DeBuffs', 'Add_All_Offence_DeBuffs', 13, 'Target', 0, 1, 0, 0, 0, + 'Nano-Technician', 'SL Loot'), + (221179, 'Cracked Crystal (Brave Challenger to Colossus)', 220411, 49752, 'Brave Challenger to Colossus', 39228, + 147280, 145780, 148780, 119, 'Misc', 'Buffs', 'Challenger', 5, '', 0, 1, 0, 0, 0, 'Enforcer', 'SL Loot'), + (221180, 'Badly Eroded Crystal (Porcupine Barrier)', 220433, 55830, 'Porcupine Barrier', 16221, NULL, NULL, NULL, + 53, 'Tainted', 'Buffs', 'Damage_Shields', 1, 'Target', 0, 1, 0, 0, 0, 'Adventurer', 'SL Loot'), + (221181, 'Corroded Crystal with Bullet Holes (Combat Barrier)', 220426, 75409, 'Combat Barrier', 38996, NULL, + NULL, NULL, 50, 'Tainted', 'Buffs', 'Armor_Buffs', 3, '', 0, 1, 0, 0, 0, 'Soldier', 'SL Loot'), + (221182, 'Overcharged Corroded Nano Crystal (Dispersed Nanoblade Cloud)', 220437, 45241, + 'Dispersed Nanoblade Cloud', 39810, NULL, NULL, NULL, 106, 'Tainted', 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, + 0, 0, 'Nano-Technician', 'SL Loot'), + (221183, 'Weird Looking Nano Crystal (Semi-Sentient Augmentation Cloud)', 301242, 222838, + 'Improved Semi-Sentient Augmentation Cloud', 291157, 0, 0, 0, 169, 'Crystal', 'Buffs', 'Damage_Buffs_-_Line_A', + 4, '', 0, 0, 0, 0, 0, 'Agent', 'Greedy Shade / SL Static'), + (221184, 'Overcharged Corroded Nano Crystal (Lesser Coronet of Frost)', 220437, 45224, 'Lesser Coronet of Frost', + 39798, NULL, NULL, NULL, 109, 'Tainted', 'Nukes', 'Halo_Nano_DeBuffs', 11, '', 0, 1, 0, 0, 0, 'Nano-Technician', + 'SL Loot'), + (221185, 'Severly Corroded Shadow Crystal (Skill Wrangler (Superb))', 220412, 121333, 'Skill Wrangler (Superb)', + 118054, NULL, NULL, NULL, 163, 'Tainted', 'Transfer', 'Wrangle', 0, 'Target', 0, 1, 0, 0, 0, 'Trader', + 'SL Loot'), + (221186, 'Severly Corroded Shadow Crystal (Minor Health Freeloader)', 220429, 76684, 'Minor Health Freeloader', + 117909, NULL, NULL, NULL, 60, 'Tainted', 'Drain', 'Health', 0, '', 0, 1, 0, 0, 0, 'Trader', 'SL Loot'), + (221187, 'Dirty Money Shadow Crystal (Lesser Enforced Sloth)', 220423, 85313, 'Lesser Enforced Sloth', 46276, + NULL, NULL, NULL, 14, 'Tainted', 'Crowd_Control', 'Snare', 145, 'Area', 0, 1, 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (221188, 'Tainted Shadow Crystal (Instill With Rage)', 220422, 116813, 'Instill With Rage', 16207, NULL, NULL, + NULL, 21, 'Tainted', 'Pet_Buffs', 'Meta-Physicist_Pet_Damage_Buffs', 216, '', 0, 1, 0, 0, 0, 'Meta-Physicist', + 'SL Loot'), + (221189, 'Overcharged Corroded Nano Crystal (Burden of Atlas)', 220437, 56028, 'Burden of Atlas', 46275, NULL, + NULL, NULL, 189, 'Tainted', 'Crowd_Control', 'Root', 146, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (221190, 'Dirty Money Shadow Crystal (Baton of Command)', 220412, 90448, 'Baton of Command (Team)', 296548, NULL, + NULL, NULL, 162, 'Tainted', 'Buffs', 'Experience_Constructs_-_XP_Bonus', 959, '', 0, 1, 0, 0, 0, 'Bureaucrat', + 'SL Loot'), + (221191, 'Badly Corroded Crystal (Titanium Skin)', 220413, 75342, 'Titanium Skin', 39256, NULL, NULL, NULL, 109, + 'Tainted', 'Buffs', 'Armor_Buffs', 3, '', 0, 1, 0, 0, 0, 'Martial Artist', 'SL Loot'), + (221192, 'Dirty Money Shadow Crystal (Sudden Scare)', 220425, 121136, 'Sudden Scare', 39145, NULL, NULL, NULL, + 37, 'Tainted', 'Crowd_Control', 'Fear', 256, '', 0, 1, 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (221193, 'Dirty Money Shadow Crystal (Bend Will)', 220425, 99206, 'Bend Will', 39137, NULL, NULL, NULL, 33, + 'Tainted', 'Crowd_Control', 'Charm_Other', 202, 'Long', 0, 1, 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (221194, 'Tainted Shadow Crystal (Summon Demon)', 220411, 29318, 'Summon Demon', 295584, NULL, NULL, NULL, 189, + 'Tainted', 'Pet', 'Attack_Pet_Summon', 0, '', 0, 0, 0, 0, 0, 'Meta-Physicist', 'SL Loot'), + (221195, 'Failed Repaired Crystal (Slayerdroid Protector)', 220411, 45672, 'Slayerdroid Protector', 44135, NULL, + NULL, NULL, 185, 'Tainted', 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'SL Loot'), + (221196, 'Severly Corroded Shadow Crystal (Lesser Embrace of Greed)', 220423, 56227, 'Lesser Embrace of Greed', + 46272, NULL, NULL, NULL, 14, 'Tainted', 'Crowd_Control', 'Root', 146, 'Target', 0, 1, 0, 0, 0, 'Trader', + 'SL Loot'), + (221197, 'Corroded Crystal with Bullet Holes (Superior Combat Barrier)', 220433, 75408, + 'Superior Combat Barrier', 39136, NULL, NULL, NULL, 83, 'Tainted', 'Buffs', 'Armor_Buffs', 3, '', 0, 1, 0, 0, 0, + 'Soldier', 'SL Loot'), + (221198, 'Severly Corroded Shadow Crystal (Team Skill Wrangler (Greater))', 220412, 121326, + 'Team Skill Wrangler (Greater)', 117990, NULL, NULL, NULL, 153, 'Tainted', 'Transfer', 'Wrangle', 0, 'Team', 0, + 1, 0, 0, 0, 'Trader', 'SL Loot'), + (221199, 'Badly Eroded Crystal (Greater Encourage Regrowth)', 220436, 82053, 'Greater Encourage Regrowth', 44247, + NULL, NULL, NULL, 142, 'Tainted', 'Combat', 'Team_Healing', 952, '', 0, 1, 0, 0, 0, 'Adventurer', 'SL Loot'), + (221200, 'Tainted Shadow Crystal (Supreme Frenzy Embodiment)', 220411, 43747, 'Supreme Frenzy Embodiment', + 295577, NULL, NULL, NULL, 149, 'Tainted', 'Pet', 'Attack_Pet', 0, '', 0, 1, 0, 0, 0, 'Meta-Physicist', + 'SL Loot'), + (221201, 'Overcharged Corroded Nano Crystal (Minor Bane)', 220430, 45895, 'Minor Bane', 39799, NULL, NULL, NULL, + 57, 'Tainted', 'Nukes', 'Fast_1s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (221202, 'Badly Eroded Crystal (Glorious Healing)', 220436, 136675, 'Glorious Healing', 44231, NULL, NULL, NULL, + 156, 'Tainted', 'Combat', 'Single_Target_Healing', 951, '', 0, 1, 0, 0, 0, 'Adventurer', 'SL Loot'), + (221203, 'Tainted Shadow Crystal (Frigid Blast)', 220430, 125765, 'Frigid Blast', 39796, NULL, NULL, NULL, 64, + 'Tainted', 'Combat', 'Nuke_Normal', 0, '', 0, 1, 0, 0, 0, 'Meta-Physicist', 'SL Loot'), + (221204, 'Severly Corroded Shadow Crystal (Distract with Trinkets)', 220423, 100433, 'Distract with Trinkets', + 46283, NULL, NULL, NULL, 20, 'Tainted', 'Crowd_Control', 'Mezz', 147, '', 0, 1, 0, 0, 0, 'Trader', 'SL Loot'), + (221206, 'Snow Crashed Shadow Crystal (Falsify Medical Records)', 220422, 85233, 'Falsify Medical Records', + 44229, NULL, NULL, NULL, 30, 'Tainted', 'Buffs', 'Fixer_Short_Heal_Over_Time', 12, '', 0, 1, 0, 0, 0, 'Fixer', + 'SL Loot'), + (221207, 'Failed Repaired Crystal (Gladiatorbot)', 220431, 45701, 'Gladiatorbot', 44139, NULL, NULL, NULL, 70, + 'Tainted', 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'SL Loot'), + (221208, 'Blood Stained and Corroded Crystal (Hale and Hearty)', 220436, 43889, 'Hale and Hearty', 44234, NULL, + NULL, NULL, 146, 'Tainted', 'Combat', 'Target_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (221209, 'Badly Eroded Crystal (Retribution of the Aesir)', 220413, 55837, 'Retribution of the Aesir', 16221, + NULL, NULL, NULL, 169, 'Tainted', 'Buffs', 'Damage_Shields', 1, 'Target', 0, 1, 0, 0, 0, 'Adventurer', + 'SL Loot'), + (221210, 'Badly Corroded Crystal (Fists of Shocking Touch)', 220424, 81826, 'Fists of Shocking Touch', 39028, + NULL, NULL, NULL, 47, 'Tainted', 'Buffs', 'Damage_Buffs_-_Line_A', 4, '', 0, 1, 0, 0, 0, 'Martial Artist', + 'SL Loot'), + (221211, 'Severly Corroded Shadow Crystal (Greater Health Funnel)', 220422, 76717, 'Greater Health Funnel', + 117907, NULL, NULL, NULL, 33, 'Tainted', 'Drain', 'Health', 0, '', 0, 1, 0, 0, 0, 'Trader', 'SL Loot'), + (221212, 'Failed Repaired Crystal (Defensive Screen)', 220433, 70551, 'Defensive Screen', 39039, NULL, NULL, + NULL, 83, 'Tainted', 'Buffs', 'Armor_Buffs', 3, '', 0, 1, 0, 0, 0, 'Engineer', 'SL Loot'), + (221213, 'Dirty Money Shadow Crystal (Director-Grade Attendant-Droid)', 220424, 46390, + 'Director-Grade Attendant-Droid', 44139, NULL, NULL, NULL, 43, 'Tainted', 'Pets', 'Robot', 0, '', 0, 0, 0, 0, 0, + 'Bureaucrat', 'SL Loot'), + (221214, 'Dirty Money Shadow Crystal (Limited Worker-Droid)', 220424, 46362, 'Limited Worker-Droid', 16307, NULL, + NULL, NULL, 1, 'Tainted', 'Pets', 'Robot', 0, '', 0, 0, 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (221215, 'Overcharged Corroded Nano Crystal (Liquefying Sphere)', 220437, 45901, 'Liquefying Sphere', 39795, + NULL, NULL, NULL, 132, 'Tainted', 'Nukes', 'Medium_3s~2s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (221216, 'Blood Stained and Corroded Crystal (Acidic Lesions)', 220437, 45324, 'Acidic Lesions', 16222, NULL, + NULL, NULL, 149, 'Tainted', 'Combat', 'DOT_-_Line_A', 6, '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (221217, 'Severly Corroded Shadow Crystal (Fine Tuning)', 220411, 30718, 'Fine Tuning', 39308, NULL, NULL, NULL, + 126, 'Tainted', 'Buffs', 'Damage', 0, 'Target', 0, 1, 0, 0, 0, 'Trader', 'SL Loot'), + (221218, 'Severly Corroded Shadow Crystal (Trinkets and Toys)', 220430, 100436, 'Trinkets and Toys', 46269, NULL, + NULL, NULL, 63, 'Tainted', 'Crowd_Control', 'Mezz', 147, '', 0, 1, 0, 0, 0, 'Trader', 'SL Loot'), + (221219, 'Blood Stained and Corroded Crystal (Bodily Amplification)', 220422, 96251, 'Bodily Amplification', + 16330, NULL, NULL, NULL, 43, 'Tainted', 'Buffs', 'Doctor_Short_HP_Buffs', 185, '', 0, 1, 0, 0, 0, 'Doctor', + 'SL Loot'), + (221220, 'Failed Repaired Crystal (Lesser Force Field)', 220413, 70532, 'Lesser Force Field', 100995, NULL, NULL, + NULL, 162, 'Tainted', 'Buffs', 'Armor_Buffs', 3, '', 0, 1, 0, 0, 0, 'Engineer', 'SL Loot'), + (221221, 'Badly Eroded Crystal (Free Movement)', 220425, 26237, 'Free Movement', 296731, NULL, NULL, NULL, 43, + 'Tainted', 'Buffs', 'Runspeed_Buffs', 150, '', 0, 1, 0, 0, 0, 'Adventurer', 'SL Loot'), + (221222, 'Tainted Shadow Crystal (Anticipation of Retaliation)', 220425, 29272, 'Anticipation of Retaliation', + 16234, NULL, NULL, NULL, 50, 'Tainted', 'Buffs', 'Major_Evasion_Buffs', 144, '', 0, 1, 0, 0, 0, + 'Meta-Physicist', 'SL Loot'), + (221223, 'Tainted Shadow Crystal (Advanced Symbol Manipulation)', 220432, 29327, 'Advanced Symbol Manipulation', + 16301, NULL, NULL, NULL, 93, 'Tainted', 'Buffs', 'Nano_Programming_Buffs', 210, '', 0, 1, 0, 0, 0, + 'Meta-Physicist', 'SL Loot'), + (221224, 'Blood Stained and Corroded Crystal (Parasitic Affliction)', 220423, 44156, 'Parasitic Affliction', + 16225, NULL, NULL, NULL, 40, 'Tainted', 'Combat', 'DOT_-_Line_B', 7, '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (221225, 'Tainted Shadow Crystal (BioMet Mastery)', 220425, 29275, 'BioMet Mastery', 16199, NULL, NULL, NULL, 37, + 'Tainted', 'Buffs', 'Biological_Metamorphosis_Buffs', 163, '', 0, 1, 0, 0, 0, 'Meta-Physicist', 'SL Loot'), + (221226, 'Badly Corroded Crystal (Inner Peace, Outward Rage)', 220411, 81821, 'Inner Peace, Outward Rage', + 117896, NULL, NULL, NULL, 169, 'Tainted', 'Buffs', 'Controlled_Destruction_Buffs', 222, '', 0, 1, 0, 0, 0, + 'Martial Artist', 'SL Loot'), + (221227, 'Dirty Money Shadow Crystal (Director-Grade Aide-Droid)', 220431, 46388, 'Director-Grade Aide-Droid', + 44140, NULL, NULL, NULL, 90, 'Tainted', 'Pets', 'Robot', 0, '', 0, 0, 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (221228, 'Badly Corroded Crystal (Cohort)', 220413, 28868, 'Cohort', 16242, NULL, NULL, NULL, 132, 'Tainted', + 'Buffs', 'Armor_Buff', 0, 'Team', 0, 1, 0, 0, 0, 'Martial Artist', 'SL Loot'), + (221229, 'Tainted Shadow Crystal (Curse of Chronos)', 220411, 29285, 'Curse of Chronos', 16248, NULL, NULL, NULL, + 169, 'Tainted', 'Crowd_Control', 'Mezz', 147, '', 0, 1, 0, 0, 0, 'Meta-Physicist', 'SL Loot'), + (221230, 'Blood Stained and Corroded Crystal (Easing Touch)', 220422, 43911, 'Easing Touch', 44245, NULL, NULL, + NULL, 50, 'Tainted', 'Combat', 'Team_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (221231, 'Tainted Shadow Crystal (Dominate: BioMet)', 220412, 29286, 'Dominate: BioMet', 39044, NULL, NULL, NULL, + 142, 'Tainted', 'DeBuffs', 'Biological_Metamorphosis_DeBuffs', 164, '', 0, 1, 0, 0, 0, 'Meta-Physicist', + 'SL Loot'), + (221232, 'Hacked Corroded Crystal (Hold Victim)', 220430, 56210, 'Hold Victim', 46273, NULL, NULL, NULL, 83, + 'Tainted', 'Crowd_Control', 'Root', 146, '', 0, 0, 0, 0, 0, 'Agent', 'SL Loot'), + (221233, 'Badly Corroded Crystal (Dirty Fighter)', 220425, 28870, 'Dirty Fighter', 16204, NULL, NULL, NULL, 33, + 'Tainted', 'Buffs', 'Brawl_Buffs', 154, '', 0, 1, 0, 0, 0, 'Martial Artist', 'SL Loot'), + (221234, 'Overcharged Corroded Nano Crystal (Feet of Iron)', 220430, 56025, 'Feet of Iron', 46273, NULL, NULL, + NULL, 73, 'Tainted', 'Crowd_Control', 'Root', 146, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (221235, 'Tainted Shadow Crystal (Dominate: MatCrea)', 220412, 29287, 'Dominate: MatCrea', 39112, NULL, NULL, + NULL, 142, 'Tainted', 'DeBuffs', 'Matter_Creation_DeBuffs', 160, '', 0, 1, 0, 0, 0, 'Meta-Physicist', + 'SL Loot'), + (221236, 'Tainted Shadow Crystal (Dominate: MatMet)', 220412, 29289, 'Dominate: MatMet', 39114, NULL, NULL, NULL, + 139, 'Tainted', 'DeBuffs', 'Material_Metamorphosis_DeBuffs', 158, '', 0, 1, 0, 0, 0, 'Meta-Physicist', + 'SL Loot'), + (221237, 'Tainted Shadow Crystal (Dominate: PsyMod)', 220412, 29290, 'Dominate: PsyMod', 39138, NULL, NULL, NULL, + 142, 'Tainted', 'DeBuffs', 'PsyMod_DeBuffs', 168, '', 0, 1, 0, 0, 0, 'Meta-Physicist', 'SL Loot'), + (221238, 'Tainted Shadow Crystal (Dominate: SenseImp)', 220412, 29291, 'Dominate: SenseImp', 39029, NULL, NULL, + NULL, 142, 'Tainted', 'DeBuffs', 'Sensory_Improvement_DeBuffs', 166, '', 0, 1, 0, 0, 0, 'Meta-Physicist', + 'SL Loot'), + (221239, 'Badly Corroded Crystal (Diamond Skin)', 220413, 28869, 'Diamond Skin', 101001, NULL, NULL, NULL, 142, + 'Tainted', 'Buffs', 'Armor_Buffs', 3, '', 0, 1, 0, 0, 0, 'Martial Artist', 'SL Loot'), + (221240, 'Tainted Shadow Crystal (Dominate: SpaceTime)', 220412, 29288, 'Dominate: SpaceTime', 39113, NULL, NULL, + NULL, 139, 'Tainted', 'DeBuffs', 'Time_and_Space_DeBuffs', 162, '', 0, 1, 0, 0, 0, 'Meta-Physicist', 'SL Loot'), + (221241, 'Snow Crashed Shadow Crystal (Basic Insurance Hack)', 220422, 85215, 'Basic Insurance Hack', 16246, + NULL, NULL, NULL, 4, 'Tainted', 'Buffs', 'Fixer_Short_Heal_Over_Time', 12, '', 0, 1, 0, 0, 0, 'Fixer', + 'SL Loot'), + (221242, 'Overcharged Corroded Nano Crystal (Annihilating Hadron String)', 220437, 45258, + 'Annihilating Hadron String', 45190, NULL, NULL, NULL, 165, 'Tainted', 'Nukes', 'Long_8s~1s', 0, '', 0, 1, 0, 0, + 0, 'Nano-Technician', 'SL Loot'), + (221243, 'Badly Corroded Crystal (Elusive Target)', 220425, 28872, 'Elusive Target', 16234, NULL, NULL, NULL, 37, + 'Tainted', 'Buffs', 'Major_Evasion_Buffs', 144, 'Normal', 0, 1, 0, 0, 0, 'Martial Artist', 'SL Loot'), + (221244, 'Hacked Corroded Crystal (Greater Hold Victim)', 220437, 56213, 'Greater Hold Victim', 46274, NULL, + NULL, NULL, 132, 'Tainted', 'Crowd_Control', 'Root', 146, '', 0, 0, 0, 0, 0, 'Agent', 'SL Loot'), + (221245, 'Blood Stained and Corroded Crystal (Restorative Boost)', 220422, 43838, 'Restorative Boost', 44230, + NULL, NULL, NULL, 40, 'Tainted', 'Combat', 'Target_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (221246, 'Badly Corroded Crystal (Four Fists of Kali)', 220412, 28880, 'Four Fists of Kali', 16243, NULL, NULL, + NULL, 169, 'Tainted', 'Buffs', 'Martial_Arts_Buffs', 209, '', 0, 1, 0, 0, 0, 'Martial Artist', 'SL Loot'), + (221248, 'Overcharged Corroded Nano Crystal (Izgimmer''s Obfuscated Recompiler)', 220436, 95417, + 'Izgimmer''s Obfuscated Recompiler', 16303, NULL, NULL, NULL, 179, 'Tainted', 'Buffs', 'Nano_Point_Cost_Buffs', + 148, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (221249, 'Dirty Money Shadow Crystal (Great Weight of the Guilty)', 220430, 82474, 'Great Weight of the Guilty', + 46277, NULL, NULL, NULL, 80, 'Tainted', 'Crowd_Control', 'Snare', 145, 'Target', 0, 1, 0, 0, 0, 'Bureaucrat', + 'SL Loot'), + (221250, 'Badly Corroded Crystal (First Strike)', 220432, 28875, 'First Strike', 16250, NULL, NULL, NULL, 96, + 'Tainted', 'Buffs', 'Initiative_Buffs', 152, '', 0, 1, 0, 0, 0, 'Martial Artist', 'SL Loot'), + (221251, 'Badly Corroded Crystal (Fleet Foot)', 220432, 28878, 'Fleet Foot', 16234, NULL, NULL, NULL, 83, + 'Tainted', 'Buffs', 'Major_Evasion_Buffs', 144, 'Normal', 0, 1, 0, 0, 0, 'Martial Artist', 'SL Loot'), + (221252, 'Failed Repaired Crystal (A Maker''s Touch)', 220436, 116791, 'A Maker''s Touch', 44234, NULL, NULL, + NULL, 179, 'Tainted', 'Pet_Combat', 'Pet_Heal', 0, '', 0, 1, 0, 0, 0, 'Engineer', 'SL Loot'), + (221253, 'Badly Corroded Crystal (Form of Tessai)', 220413, 28879, 'Form of Tessai', 101002, NULL, NULL, NULL, + 165, 'Tainted', 'Buffs', 'Armor_Buffs', 3, '', 0, 1, 0, 0, 0, 'Martial Artist', 'SL Loot'), + (221254, 'Failed Repaired Crystal (Entropy Weapon)', 220411, 29760, 'Entropy Weapon', 39308, NULL, NULL, NULL, + 149, 'Tainted', 'Buffs', 'Damage_Buffs_-_Line_A', 4, '', 0, 1, 0, 0, 0, 'Engineer', 'SL Loot'), + (221255, 'Tainted Shadow Crystal (Mocham''s Gift: BioMet)', 220412, 29299, 'Mocham''s Gift: BioMet', 16308, NULL, + NULL, NULL, 165, 'Tainted', 'Buffs', 'Biological_Metamorphosis_Buffs', 163, '', 0, 1, 0, 0, 0, 'Meta-Physicist', + 'SL Loot'), + (221256, 'Badly Corroded Crystal (Give Energy: 10)', 220422, 28881, 'Give Energy: 10', 16303, NULL, NULL, NULL, + 7, 'Tainted', 'Combat', 'Give_Energy', 0, '', 0, 1, 0, 0, 0, 'Martial Artist', 'SL Loot'), + (221257, 'Badly Corroded Crystal (Give Energy: 25)', 220422, 28883, 'Give Energy: 25', 16303, NULL, NULL, NULL, + 14, 'Tainted', 'Combat', 'Give_Energy', 0, '', 0, 1, 0, 0, 0, 'Martial Artist', 'SL Loot'), + (221258, 'Badly Corroded Crystal (Give Energy: 50)', 220422, 28884, 'Give Energy: 50', 16303, NULL, NULL, NULL, + 27, 'Tainted', 'Combat', 'Give_Energy', 0, '', 0, 1, 0, 0, 0, 'Martial Artist', 'SL Loot'), + (221259, 'Badly Corroded Crystal (Give Energy: 100)', 220429, 28882, 'Give Energy: 100', 16303, NULL, NULL, NULL, + 53, 'Tainted', 'Combat', 'Give_Energy', 0, '', 0, 1, 0, 0, 0, 'Martial Artist', 'SL Loot'), + (221260, 'Overcharged Corroded Nano Crystal (Searing Agony)', 220430, 70629, 'Searing Agony', 49684, NULL, NULL, + NULL, 80, 'Tainted', 'Combat', 'Nano-Technician_DOT_-_Strain_A', 8, '', 0, 1, 0, 0, 0, 'Nano-Technician', + 'SL Loot'), + (221261, 'Badly Corroded Crystal (Give Life: 10)', 220422, 28885, 'Give Life: 10', 16246, NULL, NULL, NULL, 7, + 'Tainted', 'Combat', 'Give_Life', 0, '', 0, 1, 0, 0, 0, 'Martial Artist', 'SL Loot'), + (221262, 'Badly Corroded Crystal (Give Life: 25)', 220422, 28887, 'Give Life: 25', 16246, NULL, NULL, NULL, 14, + 'Tainted', 'Combat', 'Give_Life', 0, '', 0, 1, 0, 0, 0, 'Martial Artist', 'SL Loot'), + (221263, 'Badly Corroded Crystal (Give Life: 50)', 220422, 28888, 'Give Life: 50', 16246, NULL, NULL, NULL, 27, + 'Tainted', 'Combat', 'Give_Life', 0, '', 0, 1, 0, 0, 0, 'Martial Artist', 'SL Loot'), + (221264, 'Badly Corroded Crystal (Give Life: 100)', 220422, 28886, 'Give Life: 100', 16246, NULL, NULL, NULL, 50, + 'Tainted', 'Combat', 'Give_Life', 0, '', 0, 1, 0, 0, 0, 'Martial Artist', 'SL Loot'), + (221265, 'Tainted Shadow Crystal (Mocham''s Gift: MatCrea)', 220412, 29300, 'Mocham''s Gift: MatCrea', 16308, + NULL, NULL, NULL, 165, 'Tainted', 'Buffs', 'Matter_Creation_Buffs', 159, '', 0, 1, 0, 0, 0, 'Meta-Physicist', + 'SL Loot'), + (221266, 'Tainted Shadow Crystal (Mocham''s Gift: MatMet)', 220412, 29302, 'Mocham''s Gift: MatMet', 16308, NULL, + NULL, NULL, 162, 'Tainted', 'Buffs', 'Material_Metamorphosis_Buffs', 157, '', 0, 1, 0, 0, 0, 'Meta-Physicist', + 'SL Loot'), + (221267, 'Tainted Shadow Crystal (Mocham''s Gift: PsyMod)', 220412, 29303, 'Mocham''s Gift: PsyMod', 16308, NULL, + NULL, NULL, 169, 'Tainted', 'Buffs', 'Psychological_Modification_Buffs', 167, '', 0, 1, 0, 0, 0, + 'Meta-Physicist', 'SL Loot'), + (221268, 'Tainted Shadow Crystal (Mocham''s Gift: SenseImp)', 220412, 29304, 'Mocham''s Gift: SenseImp', 16308, + NULL, NULL, NULL, 165, 'Tainted', 'Buffs', 'Sensory_Improvement_Buffs', 165, '', 0, 1, 0, 0, 0, + 'Meta-Physicist', 'SL Loot'), + (221269, 'Tainted Shadow Crystal (Mocham''s Gift: SpaceTime)', 220412, 29301, 'Mocham''s Gift: SpaceTime', 16308, + NULL, NULL, NULL, 162, 'Tainted', 'Buffs', 'Time_and_Space_Buffs', 161, '', 0, 1, 0, 0, 0, 'Meta-Physicist', + 'SL Loot'), + (221270, 'Severly Corroded Shadow Crystal (Health Plunder)', 220436, 76481, 'Health Plunder', 117913, NULL, NULL, + NULL, 159, 'Tainted', 'Drain', 'Health', 0, '', 0, 1, 0, 0, 0, 'Trader', 'SL Loot'), + (221271, 'Overcharged Corroded Nano Crystal (Ferocious Impactor Missile)', 220437, 45919, + 'Ferocious Impactor Missile', 45186, NULL, NULL, NULL, 162, 'Tainted', 'Nukes', 'Medium_3s~2s', 0, '', 0, 1, 0, + 0, 0, 'Nano-Technician', 'SL Loot'), + (221272, 'Failed Repaired Crystal (Reactive Harmonic Cocoon)', 220413, 70295, 'Reactive Harmonic Cocoon', 101018, + NULL, NULL, NULL, 179, 'Tainted', 'Buffs', 'Reflect_Shield', 2, '', 0, 1, 0, 0, 0, 'Engineer', 'SL Loot'), + (221273, 'Badly Eroded Crystal (Personal Blizzard)', 220413, 55818, 'Personal Blizzard', 16221, NULL, NULL, NULL, + 149, 'Tainted', 'Buffs', 'Damage_Shields', 1, 'Target', 0, 1, 0, 0, 0, 'Adventurer', 'SL Loot'), + (221274, 'Badly Corroded Crystal (Horde)', 220412, 28890, 'Horde', 16242, NULL, NULL, NULL, 149, 'Tainted', + 'Buffs', 'Damage_and_Martial_Arts_Buff', 0, 'Team', 0, 1, 0, 0, 0, 'Martial Artist', 'SL Loot'), + (221275, 'Badly Corroded Crystal (Iron Fist)', 220424, 28892, 'Iron Fist', 16350, NULL, NULL, NULL, 4, 'Tainted', + 'Buffs', 'Damage_Buffs_-_Line_A', 4, '', 0, 1, 0, 0, 0, 'Martial Artist', 'SL Loot'), + (221276, 'Failed Repaired Crystal (Advanced Android)', 220424, 45730, 'Advanced Android', 16307, NULL, NULL, + NULL, 40, 'Tainted', 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'SL Loot'), + (221277, 'Severly Corroded Shadow Crystal (Draw AC (Greater))', 220413, 91319, 'Draw AC (Greater)', 117903, NULL, + NULL, NULL, 165, 'Tainted', 'Drain', 'AC_Transfer_Target_DeBuffs', 140, 'Draw', 0, 1, 0, 0, 0, 'Trader', + 'SL Loot'), + (221278, 'Tainted Shadow Crystal (PsyMod Mastery)', 220425, 29312, 'PsyMod Mastery', 16766, NULL, NULL, NULL, 47, + 'Tainted', 'Buffs', 'Psychological_Modification_Buffs', 167, '', 0, 1, 0, 0, 0, 'Meta-Physicist', 'SL Loot'), + (221279, 'Corroded Crystal with Bullet Holes (Minor Combat Barrier)', 220426, 75413, 'Minor Combat Barrier', + 16314, NULL, NULL, NULL, 4, 'Tainted', 'Buffs', 'Armor_Buffs', 3, '', 0, 1, 0, 0, 0, 'Soldier', 'SL Loot'), + (221280, 'Tainted Shadow Crystal (Symbol Helper)', 220425, 29113, 'Symbol Helper', 16301, NULL, NULL, NULL, 10, + 'Tainted', 'Buffs', 'Nano_Programming_Buffs', 210, '', 0, 1, 0, 0, 0, 'Meta-Physicist', 'SL Loot'), + (221282, 'Blood Stained and Corroded Crystal (Inferior Wound Bindings)', 220422, 43831, + 'Inferior Wound Bindings', 16246, NULL, NULL, NULL, 4, 'Tainted', 'Combat', 'Target_Healing', 0, '', 0, 1, 0, 0, + 0, 'Doctor', 'SL Loot'), + (221283, 'Badly Corroded Crystal (Rubber Skin)', 220426, 28905, 'Rubber Skin', 16294, NULL, NULL, NULL, 24, + 'Tainted', 'Buffs', 'Armor_Buffs', 3, '', 0, 1, 0, 0, 0, 'Martial Artist', 'SL Loot'), + (221284, 'Badly Corroded Crystal (Reduce Inertia)', 220412, 28903, 'Reduce Inertia', 16234, NULL, NULL, NULL, + 136, 'Tainted', 'Buffs', 'Major_Evasion_Buffs', 144, 'Normal', 0, 1, 0, 0, 0, 'Martial Artist', 'SL Loot'), + (221286, 'Badly Corroded Crystal (Limbo Mastery)', 220425, 28894, 'Limbo Mastery', 16234, NULL, NULL, NULL, 17, + 'Tainted', 'Buffs', 'Evade_Duck-Exp_Buff', 0, 'Self', 0, 1, 0, 0, 0, 'Martial Artist', 'SL Loot'), + (221287, 'Badly Corroded Crystal (Martial Arts Mastery)', 220425, 28895, 'Martial Arts Mastery', 16289, NULL, + NULL, NULL, 50, 'Tainted', 'Buffs', 'Martial_Arts_Buffs', 209, '', 0, 1, 0, 0, 0, 'Martial Artist', 'SL Loot'), + (221288, 'Failed Repaired Crystal (Automaton)', 220424, 45737, 'Automaton', 16307, NULL, NULL, NULL, 7, + 'Tainted', 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'SL Loot'), + (221289, 'Blood Stained and Corroded Crystal (Consummate Carer)', 220436, 43904, 'Consummate Carer', 44247, NULL, + NULL, NULL, 106, 'Tainted', 'Combat', 'Team_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (221290, 'Tainted Shadow Crystal (Mind Banshee)', 220437, 29297, 'Mind Banshee', 39793, NULL, NULL, NULL, 146, + 'Tainted', 'Combat', 'Metaphysicist_Mind_Damage_Nano_DeBuffs', 221, '', 0, 1, 0, 0, 0, 'Meta-Physicist', + 'SL Loot'), + (221291, 'Tainted Shadow Crystal (MatCrea Mastery)', 220425, 29294, 'MatCrea Mastery', 16290, NULL, NULL, NULL, + 43, 'Tainted', 'Buffs', 'Matter_Creation_Buffs', 159, '', 0, 1, 0, 0, 0, 'Meta-Physicist', 'SL Loot'), + (221292, 'Dirty Money Shadow Crystal (Advanced Attendant-Droid)', 220424, 46409, 'Advanced Attendant-Droid', + 44139, NULL, NULL, NULL, 37, 'Tainted', 'Pets', 'Robot', 0, '', 0, 0, 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (221293, 'Tainted Shadow Crystal (MatMet Mastery)', 220425, 29296, 'MatMet Mastery', 16298, NULL, NULL, NULL, 50, + 'Tainted', 'Buffs', 'Material_Metamorphosis_Buffs', 157, '', 0, 1, 0, 0, 0, 'Meta-Physicist', 'SL Loot'), + (221294, 'Badly Corroded Crystal (Muscle Stim)', 220422, 28899, 'Muscle Stim', 16324, NULL, NULL, NULL, 20, + 'Tainted', 'Buffs', 'Strength_Buffs', 156, '', 0, 1, 0, 0, 0, 'Martial Artist', 'SL Loot'), + (221296, 'Dirty Money Shadow Crystal (Shackles of Obediance)', 220437, 82463, 'Shackles of Obedience', 46275, + NULL, NULL, NULL, 172, 'Tainted', 'Crowd_Control', 'Snare', 145, 'Target', 0, 1, 0, 0, 0, 'Bureaucrat', + 'SL Loot'), + (221298, 'Failed Repaired Crystal (Advanced Guardbot)', 220411, 45733, 'Advanced Guardbot', 44140, NULL, NULL, + NULL, 116, 'Tainted', 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'SL Loot'), + (221299, 'Blood Stained and Corroded Crystal (Active Viral Agent)', 220430, 44176, 'Active Viral Agent', 16226, + NULL, NULL, NULL, 53, 'Tainted', 'Combat', 'DOT_-_Line_A', 6, '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (221300, 'Tainted Shadow Crystal (Sense Imp Mastery)', 220425, 29315, 'Sense Imp Mastery', 16332, NULL, NULL, + NULL, 43, 'Tainted', 'Buffs', 'Sensory_Improvement_Buffs', 165, '', 0, 1, 0, 0, 0, 'Meta-Physicist', 'SL Loot'), + (221301, 'Failed Repaired Crystal (Military-Grade Warmachine)', 220411, 45690, 'Military-Grade Warmachine', + 44135, NULL, NULL, NULL, 175, 'Tainted', 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'SL Loot'), + (221302, 'Tainted Shadow Crystal (SpaceTime Mastery)', 220425, 29295, 'SpaceTime Mastery', 16285, NULL, NULL, + NULL, 40, 'Tainted', 'Buffs', 'Time_and_Space_Buffs', 161, '', 0, 1, 0, 0, 0, 'Meta-Physicist', 'SL Loot'), + (221303, 'Dirty Money Shadow Crystal (Stinging Reminder)', 220430, 81996, 'Stinging Reminder', 39813, NULL, NULL, + NULL, 63, 'Tainted', 'Nukes', 'Normal', 0, '', 0, 1, 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (221304, 'Tainted Shadow Crystal (Dedication of Thought)', 220412, 95525, 'Dedication of Thought', 16309, NULL, + NULL, NULL, 146, 'Tainted', 'Buffs', 'Interrupt_Modifier', 183, '', 0, 1, 0, 0, 0, 'Meta-Physicist', 'SL Loot'), + (221305, 'Overcharged Corroded Nano Crystal (Meta-Dioxin Spray)', 220437, 45216, 'Meta-Dioxin Spray', 39795, + NULL, NULL, NULL, 136, 'Tainted', 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (221306, 'Tainted Shadow Crystal (Unmake: BioMet)', 220432, 29321, 'Unmake: BioMet', 39044, NULL, NULL, NULL, 73, + 'Tainted', 'DeBuffs', 'Biological_Metamorphosis_DeBuffs', 164, '', 0, 1, 0, 0, 0, 'Meta-Physicist', 'SL Loot'), + (221307, 'Tainted Shadow Crystal (Unmake: MatCrea)', 220432, 29322, 'Unmake: MatCrea', 39112, NULL, NULL, NULL, + 73, 'Tainted', 'DeBuffs', 'Matter_Creation_DeBuffs', 160, '', 0, 1, 0, 0, 0, 'Meta-Physicist', 'SL Loot'), + (221308, 'Tainted Shadow Crystal (Unmake: MatMet)', 220432, 29324, 'Unmake: MatMet', 39114, NULL, NULL, NULL, 63, + 'Tainted', 'DeBuffs', 'Material_Metamorphosis_DeBuffs', 158, '', 0, 1, 0, 0, 0, 'Meta-Physicist', 'SL Loot'), + (221309, 'Tainted Shadow Crystal (Unmake: PsyMod)', 220432, 29325, 'Unmake: PsyMod', 39138, NULL, NULL, NULL, 70, + 'Tainted', 'DeBuffs', 'PsyMod_DeBuffs', 168, '', 0, 1, 0, 0, 0, 'Meta-Physicist', 'SL Loot'), + (221310, 'Tainted Shadow Crystal (Unmake: SenseImp)', 220432, 29326, 'Unmake: SenseImp', 39029, NULL, NULL, NULL, + 66, 'Tainted', 'DeBuffs', 'Sensory_Improvement_DeBuffs', 166, '', 0, 1, 0, 0, 0, 'Meta-Physicist', 'SL Loot'), + (221311, 'Tainted Shadow Crystal (Unmake: SpaceTime)', 220432, 29323, 'Unmake: SpaceTime', 39113, NULL, NULL, + NULL, 66, 'Tainted', 'DeBuffs', 'Time_and_Space_DeBuffs', 162, '', 0, 1, 0, 0, 0, 'Meta-Physicist', 'SL Loot'), + (221313, 'Badly Corroded Crystal (Velocity)', 220432, 28862, 'Velocity', 16300, NULL, NULL, NULL, 60, 'Tainted', + 'Buffs', 'Runspeed_Buffs', 150, '', 0, 1, 0, 0, 0, 'Martial Artist', 'SL Loot'), + (221314, 'Tainted Shadow Crystal (Transcendent Rage Materialization)', 220431, 43920, + 'Transcendent Rage Materialization', 295577, NULL, NULL, NULL, 70, 'Tainted', 'Pet', 'Attack_Pet', 0, '', 0, 1, + 0, 0, 0, 'Meta-Physicist', 'SL Loot'), + (221315, 'Badly Corroded Crystal (Harden Skin)', 220426, 75348, 'Harden Skin', 16294, NULL, NULL, NULL, 14, + 'Tainted', 'Buffs', 'Armor_Buffs', 3, '', 0, 1, 0, 0, 0, 'Martial Artist', 'SL Loot'), + (221316, 'Failed Repaired Crystal (Android)', 220424, 45736, 'Android', 16307, NULL, NULL, NULL, 33, 'Tainted', + 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'SL Loot'), + (221318, 'Overcharged Corroded Nano Crystal (Nano Cloud Supplement)', 220411, 95442, 'Nano Cloud Supplement', + 16202, NULL, NULL, NULL, 149, 'Tainted', 'Buffs', 'Nano_Formula_Range_Buffs', 181, '', 0, 1, 0, 0, 0, + 'Nano-Technician', 'SL Loot'), + (221319, 'Blood Stained and Corroded Crystal (Superior Wound Bindings)', 220429, 43822, + 'Superior Wound Bindings', 44231, NULL, NULL, NULL, 80, 'Tainted', 'Combat', 'Target_Healing', 0, '', 0, 1, 0, + 0, 0, 'Doctor', 'SL Loot'), + (221320, 'Cracked Crystal (Screen of Blades)', 220413, 55750, 'Screen of Blades', 16221, 147340, 145840, 148840, + 139, 'Misc', 'Buffs', 'Damage_Shields', 1, '', 0, 1, 0, 0, 0, 'Enforcer', 'SL Loot'), + (221321, 'Overcharged Corroded Nano Crystal (Void Warmth)', 220430, 45191, 'Void Warmth', 39797, NULL, NULL, + NULL, 86, 'Tainted', 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (221322, 'Badly Corroded Crystal (Augment Psychic)', 220422, 26357, 'Augment Psychic', 16315, NULL, NULL, NULL, + 4, 'Tainted', 'Buffs_-_Attributes', 'Psychic_Buffs', 31, '', 0, 0, 0, 0, 0, 'General', 'SL Loot'), + (221323, 'Badly Corroded Crystal (BioMet Inexperience)', 220425, 26363, 'BioMet Inexperience', 39044, NULL, NULL, + NULL, 4, 'Tainted', 'DeBuffs_-_Nano', 'BioMet_DeBuffs', 36, '', 0, 0, 0, 0, 0, 'General', 'SL Loot'), + (221324, 'Badly Corroded Crystal (BioMet Expertise)', 220425, 26361, 'BioMet Expertise', 16199, NULL, NULL, NULL, + 10, 'Tainted', 'Buffs_-_Nano', 'Biological_Metamorphosis_Buffs', 35, '', 0, 0, 0, 0, 0, 'General', 'SL Loot'), + (221325, 'Badly Corroded Crystal (1H Blunt Weapon Incompetence)', 220425, 26337, '1H Blunt Weapon Incompetence', + 39045, NULL, NULL, NULL, 10, 'Tainted', 'DeBuffs_-_Melee', '1Hand_Blunt_DeBuffs', 17, '', 0, 0, 0, 0, 0, + 'General', 'SL Loot'), + (221326, 'Badly Corroded Crystal (BioMet Incompetence)', 220425, 26362, 'Nano Skills Incompetence', 297518, NULL, + NULL, NULL, 10, 'Tainted', 'DeBuffs_-_Nano', 'BioMet_DeBuffs', 36, '', 0, 0, 0, 0, 0, 'General', 'SL Loot'), + (221327, 'Badly Corroded Crystal (Strength Boost)', 220422, 27169, 'Strength Boost', 16324, NULL, NULL, NULL, 7, + 'Tainted', 'Buffs_-_Attributes', 'Strength_Buffs', 34, '', 0, 0, 0, 0, 0, 'General', 'SL Loot'), + (221328, 'Badly Corroded Crystal (1H Blunt Weapon Proficiency)', 220425, 26339, '1H Blunt Weapon Proficiency', + 16200, NULL, NULL, NULL, 4, 'Tainted', 'Buffs_-_Melee', '1H_Blunt_Buffs', 16, '', 0, 0, 0, 0, 0, 'General', + 'SL Loot'), + (221329, 'Badly Corroded Crystal (BioMet Proficiency)', 220425, 26364, 'BioMet Proficiency', 16199, NULL, NULL, + NULL, 4, 'Tainted', 'Buffs_-_Nano', 'Biological_Metamorphosis_Buffs', 35, '', 0, 0, 0, 0, 0, 'General', + 'SL Loot'), + (221330, 'Badly Corroded Crystal (1H Blunt Weapon Inexperience)', 220425, 26338, '1H Blunt Weapon Inexperience', + 39045, NULL, NULL, NULL, 4, 'Tainted', 'DeBuffs_-_Melee', '1Hand_Blunt_DeBuffs', 17, '', 0, 0, 0, 0, 0, + 'General', 'SL Loot'), + (221331, 'Badly Corroded Crystal (MatCrea Incompetence)', 220425, 27099, 'MatCrea Incompetence', 39112, NULL, + NULL, NULL, 10, 'Tainted', 'DeBuffs_-_Nano', 'MatCrea_DeBuffs', 88, '', 0, 0, 0, 0, 0, 'General', 'SL Loot'), + (221332, 'Badly Corroded Crystal (MatCrea Inexperience)', 220425, 27100, 'MatCrea Inexperience', 39112, NULL, + NULL, NULL, 4, 'Tainted', 'DeBuffs_-_Nano', 'MatCrea_DeBuffs', 88, '', 0, 0, 0, 0, 0, 'General', 'SL Loot'), + (221333, 'Badly Corroded Crystal (Chemistry Expertise)', 220425, 26387, 'Chemistry Expertise', 16210, NULL, NULL, + NULL, 10, 'Tainted', 'Buffs_-_Tradeskill', 'Chemistry_Buffs', 47, '', 0, 0, 0, 0, 0, 'General', 'SL Loot'), + (221334, 'Badly Corroded Crystal (MatCrea Expertise)', 220425, 27098, 'MatCrea Expertise', 16290, NULL, NULL, + NULL, 10, 'Tainted', 'Buffs_-_Nano', 'Matter_Creation_Buffs', 87, '', 0, 0, 0, 0, 0, 'General', 'SL Loot'), + (221335, 'Badly Corroded Crystal (Chemistry Proficiency)', 220425, 26388, 'Chemistry Proficiency', 16210, NULL, + NULL, NULL, 4, 'Tainted', 'Buffs_-_Tradeskill', 'Chemistry_Buffs', 47, '', 0, 0, 0, 0, 0, 'General', 'SL Loot'), + (221336, 'Badly Corroded Crystal (MatCrea Proficiency)', 220425, 27101, 'MatCrea Proficiency', 16290, NULL, NULL, + NULL, 4, 'Tainted', 'Buffs_-_Nano', 'Matter_Creation_Buffs', 87, '', 0, 0, 0, 0, 0, 'General', 'SL Loot'), + (221337, 'Badly Corroded Crystal (Adventuring Expertise)', 220425, 26389, 'Adventuring Expertise', 16211, NULL, + NULL, NULL, 10, 'Tainted', 'Buffs', 'Climb_Buffs', 48, '', 0, 0, 0, 0, 0, 'General', 'SL Loot'), + (221338, 'Badly Corroded Crystal (Diminish Agility)', 220422, 26401, 'Diminish Agility', 39063, NULL, NULL, NULL, + 4, 'Tainted', 'DeBuffs_-_Attributes', 'Agility_DeBuffs', 53, '', 0, 0, 0, 0, 0, 'General', 'SL Loot'), + (221339, 'Badly Corroded Crystal (Drain Stamina)', 220422, 26416, 'Drain Stamina', 39152, NULL, NULL, NULL, 10, + 'Tainted', 'DeBuffs_-_Attributes', 'Stamina_DeBuffs', 57, '', 0, 0, 0, 0, 0, 'General', 'SL Loot'), + (221340, 'Badly Corroded Crystal (Drain Sense)', 220422, 26415, 'Drain Sense', 39145, NULL, NULL, NULL, 10, + 'Tainted', 'DeBuffs_-_Attributes', 'Sense_DeBuffs', 56, '', 0, 0, 0, 0, 0, 'General', 'SL Loot'), + (221341, 'Badly Corroded Crystal (Drain Agility)', 220422, 26412, 'Drain Agility', 39063, NULL, NULL, NULL, 10, + 'Tainted', 'DeBuffs_-_Attributes', 'Agility_DeBuffs', 53, '', 0, 0, 0, 0, 0, 'General', 'SL Loot'), + (221342, 'Badly Corroded Crystal (Dimach Incompetence)', 220425, 26399, 'Dimach Incompetence', 39064, NULL, NULL, + NULL, 14, 'Tainted', 'DeBuffs_-_Melee_Special', 'Dimach_DeBuffs', 52, '', 0, 0, 0, 0, 0, 'General', 'SL Loot'), + (221343, 'Badly Corroded Crystal (Diminish Stamina)', 220422, 26405, 'Diminish Stamina', 39152, NULL, NULL, NULL, + 4, 'Tainted', 'DeBuffs_-_Attributes', 'Stamina_DeBuffs', 57, '', 0, 0, 0, 0, 0, 'General', 'SL Loot'), + (221344, 'Badly Corroded Crystal (Diminish Intelligence)', 220422, 26402, 'Diminish Intelligence', 39099, NULL, + NULL, NULL, 4, 'Tainted', 'DeBuffs_-_Attributes', 'Intelligence_DeBuffs', 54, '', 0, 0, 0, 0, 0, 'General', + 'SL Loot'), + (221345, 'Badly Corroded Crystal (Diminish Psychic)', 220422, 26403, 'Diminish Psychic', 39137, NULL, NULL, NULL, + 4, 'Tainted', 'DeBuffs_-_Attributes', 'Psychic_DeBuffs', 55, '', 0, 0, 0, 0, 0, 'General', 'SL Loot'), + (221346, 'Badly Corroded Crystal (Diminish Strength)', 220422, 26406, 'Diminish Strength', 39154, NULL, NULL, + NULL, 4, 'Tainted', 'DeBuffs_-_Attributes', 'Strength_DeBuffs', 58, '', 0, 0, 0, 0, 0, 'General', 'SL Loot'), + (221347, 'Badly Corroded Crystal (Diminish Sense)', 220422, 26404, 'Diminish Sense', 39145, NULL, NULL, NULL, 4, + 'Tainted', 'DeBuffs_-_Attributes', 'Sense_DeBuffs', 56, '', 0, 0, 0, 0, 0, 'General', 'SL Loot'), + (221348, 'Badly Corroded Crystal (Drain Intelligence)', 220422, 26413, 'Drain Intelligence', 39099, NULL, NULL, + NULL, 10, 'Tainted', 'DeBuffs_-_Attributes', 'Intelligence_DeBuffs', 54, '', 0, 0, 0, 0, 0, 'General', + 'SL Loot'), + (221349, 'Badly Corroded Crystal (Dimach Inexperience)', 220425, 26400, 'Dimach Inexperience', 39064, NULL, NULL, + NULL, 7, 'Tainted', 'DeBuffs_-_Melee_Special', 'Dimach_DeBuffs', 52, '', 0, 0, 0, 0, 0, 'General', 'SL Loot'), + (221350, 'Badly Corroded Crystal (Drain Psychic)', 220422, 26414, 'Drain Abilities', 297494, NULL, NULL, NULL, + 10, 'Tainted', 'DeBuffs_-_Attributes', 'Psychic_DeBuffs', 55, '', 0, 0, 0, 0, 0, 'General', 'SL Loot'), + (221351, 'Badly Corroded Crystal (MatMet Incompetence)', 220425, 27107, 'MatMet Incompetence', 39114, NULL, NULL, + NULL, 10, 'Tainted', 'DeBuffs_-_Nano', 'MatMet_DeBuffs', 92, '', 0, 0, 0, 0, 0, 'General', 'SL Loot'), + (221352, 'Badly Corroded Crystal (Breaking and Entering Expertise)', 220425, 26379, + 'Breaking and Entering Expertise', 16205, NULL, NULL, NULL, 10, 'Tainted', 'Buffs_-_Tradeskill_Special', + 'Break_Entry_Buffs', 43, '', 0, 0, 0, 0, 0, 'General', 'SL Loot'), + (221353, 'Badly Corroded Crystal (MatMet Expertise)', 220425, 27106, 'MatMet Expertise', 16298, NULL, NULL, NULL, + 10, 'Tainted', 'Buffs_-_Nano', 'Material_Metamorphosis_Buffs', 91, '', 0, 0, 0, 0, 0, 'General', 'SL Loot'), + (221354, 'Badly Corroded Crystal (Breaking and Entering Proficiency)', 220425, 26380, + 'Breaking and Entering Proficiency', 16205, NULL, NULL, NULL, 4, 'Tainted', 'Buffs_-_Tradeskill_Special', + 'Break_Entry_Buffs', 43, '', 0, 0, 0, 0, 0, 'General', 'SL Loot'), + (221355, 'Badly Corroded Crystal (MatMet Inexperience)', 220425, 27108, 'MatMet Inexperience', 39114, NULL, NULL, + NULL, 4, 'Tainted', 'DeBuffs_-_Nano', 'MatMet_DeBuffs', 92, '', 0, 0, 0, 0, 0, 'General', 'SL Loot'), + (221356, 'Badly Corroded Crystal (MatMet Proficiency)', 220425, 27109, 'MatMet Proficiency', 16298, NULL, NULL, + NULL, 4, 'Tainted', 'Buffs_-_Nano', 'Material_Metamorphosis_Buffs', 91, '', 0, 0, 0, 0, 0, 'General', + 'SL Loot'), + (221357, 'Badly Corroded Crystal (First Aid Expertise)', 220425, 26441, 'First Aid Expertise', 16239, NULL, NULL, + NULL, 10, 'Tainted', 'Buffs_-_Medical', 'First_Aid_Buffs', 70, '', 0, 0, 0, 0, 0, 'General', 'SL Loot'), + (221358, 'Badly Corroded Crystal (Fast Attack Expertise)', 220425, 26432, 'Fast Attack Expertise', 16235, NULL, + NULL, NULL, 10, 'Tainted', 'Buffs_-_Melee_Special', 'Fast_Attack_Buffs', 66, '', 0, 0, 0, 0, 0, 'General', + 'SL Loot'), + (221359, 'Badly Corroded Crystal (Fast Attack Incompetence)', 220425, 26433, 'Fast Attack Incompetence', 39082, + NULL, NULL, NULL, 14, 'Tainted', 'DeBuffs_-_Melee_Special', 'Fast_Attack_DeBuffs', 67, '', 0, 0, 0, 0, 0, + 'General', 'SL Loot'), + (221360, 'Badly Corroded Crystal (Fling Shot Expertise)', 220425, 26443, 'Fling Shot Expertise', 16240, NULL, + NULL, NULL, 10, 'Tainted', 'Buffs_-_Ranged_Special', 'Fling_Shot_Buffs', 71, '', 0, 0, 0, 0, 0, 'General', + 'SL Loot'), + (221361, 'Badly Corroded Crystal (Full Auto Incompetence)', 220425, 26448, 'Full Auto Incompetence', 39091, NULL, + NULL, NULL, 14, 'Tainted', 'DeBuffs_-_Ranged_Special', 'Full_Auto_DeBuffs', 74, '', 0, 0, 0, 0, 0, 'General', + 'SL Loot'), + (221362, 'Hacked Corroded Crystal (Mimic Profession: Meta-Physicist)', 220412, 117208, + 'Mimic Profession: Meta-Physicist', 16775, NULL, NULL, NULL, 165, 'Tainted', 'False_Professions', + 'False_Profession', 218, 'Meta-Physicist', 0, 1, 0, 0, 0, 'Agent', 'SL Loot'), + (221364, 'Dirty Money Shadow Crystal (Pheromone Control)', 220432, 30086, 'Pheromone Control', 39137, NULL, NULL, + NULL, 76, 'Tainted', 'Crowd_Control', 'Charm_Other', 202, 'Short', 0, 1, 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (221365, 'Blood Stained and Corroded Crystal (Temporary Cellular Enhancement)', 220429, 96255, + 'Temporary Cellular Enhancement', 39152, NULL, NULL, NULL, 90, 'Tainted', 'Buffs', 'Doctor_Short_HP_Buffs', 185, + '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (221366, 'Badly Eroded Crystal (One With Nature)', 220436, 136674, 'One With Nature', 44231, NULL, NULL, NULL, + 182, 'Tainted', 'Combat', 'Single_Target_Healing', 951, '', 0, 1, 0, 0, 0, 'Adventurer', 'SL Loot'), + (221367, 'Severly Corroded Shadow Crystal (Journeyman: Electrical Engineering)', 220432, 30724, + 'Journeyman: Electrical Engineering', 16231, NULL, NULL, NULL, 80, 'Tainted', 'Buffs:_Tradeskills', + 'Electrical_Engineering_Buffs', 172, '', 0, 1, 0, 0, 0, 'Trader', 'SL Loot'), + (221368, 'Overcharged Corroded Nano Crystal (Abyssal Flames)', 220423, 28639, 'Abyssal Flames', 45179, NULL, + NULL, NULL, 33, 'Tainted', 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (221369, 'Hacked Corroded Crystal (Feline Grace)', 220432, 25989, 'Feline Grace', 16218, NULL, NULL, NULL, 53, + 'Tainted', 'Buffs', 'Agility_Buffs', 195, '', 0, 0, 0, 0, 0, 'Agent', 'SL Loot'), + (221370, 'Hacked Corroded Crystal (Death''s Gaze)', 220437, 25980, 'Death''s Gaze', 16248, NULL, NULL, NULL, 142, + 'Tainted', 'Crowd_Control', 'Mezz', 147, '', 0, 0, 0, 0, 0, 'Agent', 'SL Loot'), + (221371, 'Overcharged Corroded Nano Crystal (Fire Stream)', 220423, 28608, 'Fire Stream', 45179, NULL, NULL, + NULL, 7, 'Tainted', 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (221372, 'Corroded Crystal with Bullet Holes (Total Mirror Shield Mk III)', 220426, 70306, + 'Total Mirror Shield Mk III', 39001, NULL, NULL, NULL, 47, 'Tainted', 'Buffs', 'Shadowland_Reflect_Base', 694, + 'Self', 0, 1, 0, 0, 0, 'Soldier', 'SL Loot'), + (221373, 'Overcharged Corroded Nano Crystal (Slime Cascade)', 220430, 28636, 'Slime Cascade', 49685, NULL, NULL, + NULL, 93, 'Tainted', 'Combat', 'Nano-Technician_DOT_-_Strain_A', 8, '', 0, 1, 0, 0, 0, 'Nano-Technician', + 'SL Loot'), + (221374, 'Overcharged Corroded Nano Crystal (Barrage of Fire)', 220437, 28593, 'Barrage of Fire', 39783, NULL, + NULL, NULL, 109, 'Tainted', 'Nukes', 'AoE_Nuke', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (221375, 'Badly Corroded Crystal (1H Blunt Weapon Expertise)', 220425, 26336, '1H Blunt Weapon Expertise', 16200, + NULL, NULL, NULL, 10, 'Tainted', 'Buffs_-_Melee', '1H_Blunt_Buffs', 16, '', 0, 0, 0, 0, 0, 'General', + 'SL Loot'), + (221376, 'Badly Corroded Crystal (Agility Boost)', 220422, 26342, 'Agility Boost', 16218, NULL, NULL, NULL, 7, + 'Tainted', 'Buffs_-_Attributes', 'Agility_Buffs', 29, '', 0, 0, 0, 0, 0, 'General', 'SL Loot'), + (221377, 'Badly Corroded Crystal (Aimed Shot Expertise)', 220425, 26343, 'Aimed Shot Expertise', 16186, NULL, + NULL, NULL, 10, 'Tainted', 'Buffs_-_Ranged_Special', 'Aimed_Shot_Buffs', 18, '', 0, 0, 0, 0, 0, 'General', + 'SL Loot'), + (221378, 'Badly Corroded Crystal (Augment Strength)', 220422, 26360, 'Augment Strength', 16324, NULL, NULL, NULL, + 4, 'Tainted', 'Buffs_-_Attributes', 'Strength_Buffs', 34, '', 0, 0, 0, 0, 0, 'General', 'SL Loot'), + (221379, 'Badly Corroded Crystal (Aimed Shot Incompetence)', 220425, 26344, + 'Ranged Special Attacks Incompetence', 297504, NULL, NULL, NULL, 14, 'Tainted', 'DeBuffs_-_Ranged_Special', + 'Aimed_Shot_DeBuffs', 19, '', 0, 0, 0, 0, 0, 'General', 'SL Loot'), + (221380, 'Badly Corroded Crystal (Augment Stamina)', 220422, 26359, 'Augment Stamina', 16330, NULL, NULL, NULL, + 4, 'Tainted', 'Buffs_-_Attributes', 'Stamina_Buffs', 33, '', 0, 0, 0, 0, 0, 'General', 'SL Loot'), + (221381, 'Badly Corroded Crystal (Augment Intelligence)', 220422, 26356, 'Augment Intelligence', 16251, NULL, + NULL, NULL, 4, 'Tainted', 'Buffs_-_Attributes', 'Intelligence_Buffs', 30, '', 0, 0, 0, 0, 0, 'General', + 'SL Loot'), + (221382, 'Badly Corroded Crystal (Adrenaline Pump)', 220422, 26350, 'Adrenaline Pump', 16300, NULL, NULL, NULL, + 10, 'Tainted', 'Buffs_-_Utility', 'Runspeed_Buffs', 149, '', 0, 0, 0, 0, 0, 'General', 'SL Loot'), + (221383, 'Badly Corroded Crystal (Aimed Shot Proficiency)', 220425, 26346, 'Aimed Shot Proficiency', 16186, NULL, + NULL, NULL, 4, 'Tainted', 'Buffs_-_Ranged_Special', 'Aimed_Shot_Buffs', 18, '', 0, 0, 0, 0, 0, 'General', + 'SL Loot'), + (221384, 'Badly Corroded Crystal (Augment Sense)', 220422, 26358, 'Augment Sense', 16317, NULL, NULL, NULL, 4, + 'Tainted', 'Buffs_-_Attributes', 'Sense_Buffs', 32, '', 0, 0, 0, 0, 0, 'General', 'SL Loot'), + (221385, 'Badly Corroded Crystal (Aimed Shot Inexperience)', 220425, 26345, 'Aimed Shot Inexperience', 39031, + NULL, NULL, NULL, 7, 'Tainted', 'DeBuffs_-_Ranged_Special', 'Aimed_Shot_DeBuffs', 19, '', 0, 0, 0, 0, 0, + 'General', 'SL Loot'), + (221386, 'Badly Corroded Crystal (Fling Shot Inexperience)', 220425, 26445, 'Fling Shot Inexperience', 39087, + NULL, NULL, NULL, 7, 'Tainted', 'DeBuffs_-_Ranged_Special', 'Fling_Shot_DeBuffs', 72, '', 0, 0, 0, 0, 0, + 'General', 'SL Loot'), + (221387, 'Badly Corroded Crystal (Fling Shot Proficiency)', 220425, 26446, 'Fling Shot Proficiency', 16240, NULL, + NULL, NULL, 4, 'Tainted', 'Buffs_-_Ranged_Special', 'Fling_Shot_Buffs', 71, '', 0, 0, 0, 0, 0, 'General', + 'SL Loot'), + (221388, 'Badly Corroded Crystal (Fast Attack Proficiency)', 220425, 26435, 'Fast Attack Proficiency', 16235, + NULL, NULL, NULL, 4, 'Tainted', 'Buffs_-_Melee_Special', 'Fast_Attack_Buffs', 66, '', 0, 0, 0, 0, 0, 'General', + 'SL Loot'), + (221389, 'Badly Corroded Crystal (Full Auto Expertise)', 220425, 26447, 'Full Auto Expertise', 16237, NULL, NULL, + NULL, 10, 'Tainted', 'Buffs_-_Ranged_Special', 'Full_Auto_Buffs', 73, '', 0, 0, 0, 0, 0, 'General', 'SL Loot'), + (221390, 'Badly Corroded Crystal (Fast Attack Inexperience)', 220425, 26434, 'Fast Attack Inexperience', 39082, + NULL, NULL, NULL, 7, 'Tainted', 'DeBuffs_-_Melee_Special', 'Fast_Attack_DeBuffs', 67, '', 0, 0, 0, 0, 0, + 'General', 'SL Loot'), + (221391, 'Badly Corroded Crystal (First Aid Proficiency)', 220425, 26442, 'First Aid Proficiency', 16239, NULL, + NULL, NULL, 4, 'Tainted', 'Buffs_-_Medical', 'First_Aid_Buffs', 70, '', 0, 0, 0, 0, 0, 'General', 'SL Loot'), + (221392, 'Badly Corroded Crystal (Mechanical Engineering Proficiency)', 220425, 27111, + 'Mechanical Engineering Proficiency', 16293, NULL, NULL, NULL, 4, 'Tainted', 'Buffs_-_Tradeskill', + 'Mechanical_Engineering_Buffs', 93, '', 0, 0, 0, 0, 0, 'General', 'SL Loot'), + (221393, 'Badly Corroded Crystal (Mechanical Engineering Expertise)', 220425, 27110, + 'Mechanical Engineering Expertise', 16293, NULL, NULL, NULL, 10, 'Tainted', 'Buffs_-_Tradeskill', + 'Mechanical_Engineering_Buffs', 93, '', 0, 0, 0, 0, 0, 'General', 'SL Loot'), + (221394, 'Badly Corroded Crystal (Electrical Engineering Expertise)', 220425, 26420, + 'Electrical Engineering Expertise', 16231, NULL, NULL, NULL, 10, 'Tainted', 'Buffs_-_Tradeskill', + 'Electrical_Engineering_Buffs', 60, '', 0, 0, 0, 0, 0, 'General', 'SL Loot'), + (221395, 'Badly Corroded Crystal (Grenade Incompetence)', 220425, 26711, 'Grenade Incompetence', 39093, NULL, + NULL, NULL, 10, 'Tainted', 'DeBuffs_-_Ranged', 'Grenade_DeBuffs', 78, '', 0, 0, 0, 0, 0, 'General', 'SL Loot'), + (221396, 'Badly Corroded Crystal (Grenade Proficiency)', 220425, 27082, 'Grenade Proficiency', 16252, NULL, NULL, + NULL, 4, 'Tainted', 'Buffs_-_Ranged', 'Grenade_Buffs', 77, '', 0, 0, 0, 0, 0, 'General', 'SL Loot'), + (221397, 'Badly Corroded Crystal (Grenade Expertise)', 220425, 27081, 'Grenade Expertise', 16252, NULL, NULL, + NULL, 10, 'Tainted', 'Buffs_-_Ranged', 'Grenade_Buffs', 77, '', 0, 0, 0, 0, 0, 'General', 'SL Loot'), + (221398, 'Badly Corroded Crystal (Fling Shot Incompetence)', 220425, 26444, 'Fling Shot Incompetence', 39087, + NULL, NULL, NULL, 14, 'Tainted', 'DeBuffs_-_Ranged_Special', 'Fling_Shot_DeBuffs', 72, '', 0, 0, 0, 0, 0, + 'General', 'SL Loot'), + (221399, 'Badly Corroded Crystal (Drain Strength)', 220422, 26417, 'Drain Strength', 39154, NULL, NULL, NULL, 10, + 'Tainted', 'DeBuffs_-_Attributes', 'Strength_DeBuffs', 58, '', 0, 0, 0, 0, 0, 'General', 'SL Loot'), + (221400, 'Badly Corroded Crystal (Grenade Inexperience)', 220425, 26710, 'Grenade Inexperience', 39093, NULL, + NULL, NULL, 4, 'Tainted', 'DeBuffs_-_Ranged', 'Grenade_DeBuffs', 78, '', 0, 0, 0, 0, 0, 'General', 'SL Loot'), + (221401, 'Badly Corroded Crystal (Concealment Expertise)', 220425, 26397, 'Concealment Expertise', 16214, NULL, + NULL, NULL, 10, 'Tainted', 'Buffs_-_Utility', 'Concealment_Buffs', 51, '', 0, 0, 0, 0, 0, 'General', 'SL Loot'), + (221402, 'Badly Corroded Crystal (Shotgun Inexperience)', 220425, 27161, 'Shotgun Inexperience', 39148, NULL, + NULL, NULL, 4, 'Tainted', 'DeBuffs_-_Ranged', 'Shotgun_DeBuffs', 119, '', 0, 0, 0, 0, 0, 'General', 'SL Loot'), + (221403, 'Badly Corroded Crystal (Healing)', 220422, 26466, 'Healing', 16246, NULL, NULL, NULL, 4, 'Tainted', + 'Combat', 'Heal', 0, '', 0, 0, 0, 0, 0, 'General', 'SL Loot'), + (221404, 'Badly Corroded Crystal (Shotgun Proficiency)', 220425, 27162, 'Shotgun Proficiency', 16326, NULL, NULL, + NULL, 4, 'Tainted', 'Buffs_-_Ranged', 'Shotgun_Buffs', 118, '', 0, 0, 0, 0, 0, 'General', 'SL Loot'), + (221405, 'Badly Corroded Crystal (Concealment Proficiency)', 220425, 26398, 'Concealment Proficiency', 16214, + NULL, NULL, NULL, 4, 'Tainted', 'Buffs_-_Utility', 'Concealment_Buffs', 51, '', 0, 0, 0, 0, 0, 'General', + 'SL Loot'), + (221406, 'Badly Corroded Crystal (Shotgun Incompetence)', 220425, 27160, 'Shotgun Incompetence', 39148, NULL, + NULL, NULL, 10, 'Tainted', 'DeBuffs_-_Ranged', 'Shotgun_DeBuffs', 119, '', 0, 0, 0, 0, 0, 'General', 'SL Loot'), + (221407, 'Badly Corroded Crystal (Intelligence Boost)', 220422, 27086, 'Intelligence Boost', 16251, NULL, NULL, + NULL, 7, 'Tainted', 'Buffs_-_Attributes', 'Intelligence_Buffs', 30, '', 0, 0, 0, 0, 0, 'General', 'SL Loot'), + (221408, 'Badly Corroded Crystal (Rifle Inexperience)', 220425, 27148, 'Rifle Inexperience', 39151, NULL, NULL, + NULL, 4, 'Tainted', 'DeBuffs_-_Ranged', 'Rifle_DeBuffs', 113, '', 0, 0, 0, 0, 0, 'General', 'SL Loot'), + (221409, 'Badly Corroded Crystal (Improve Health)', 220422, 27085, 'Improve Health', 16758, NULL, NULL, NULL, 7, + 'Tainted', 'Buffs', 'Max_Health_Buffs', 80, '', 0, 0, 0, 0, 0, 'General', 'SL Loot'), + (221410, 'Badly Corroded Crystal (Rifle Incompetence)', 220425, 27147, 'Rifle Incompetence', 39151, NULL, NULL, + NULL, 10, 'Tainted', 'DeBuffs_-_Ranged', 'Rifle_DeBuffs', 113, '', 0, 0, 0, 0, 0, 'General', 'SL Loot'), + (221411, 'Badly Corroded Crystal (Rifle Proficiency)', 220425, 27149, 'Rifle Proficiency', 16329, NULL, NULL, + NULL, 4, 'Tainted', 'Buffs_-_Ranged', 'Rifle_Buffs', 112, '', 0, 0, 0, 0, 0, 'General', 'SL Loot'), + (221412, 'Badly Corroded Crystal (Rifle Expertise)', 220425, 27146, 'Rifle Expertise', 16329, NULL, NULL, NULL, + 10, 'Tainted', 'Buffs_-_Ranged', 'Rifle_Buffs', 112, '', 0, 0, 0, 0, 0, 'General', 'SL Loot'), + (221413, 'Badly Corroded Crystal (Throwing Knife Expertise)', 220425, 27087, 'Throwing Knife Expertise', 16286, + NULL, NULL, NULL, 10, 'Tainted', 'Buffs', 'Knife_Buffs', 81, '', 0, 0, 0, 0, 0, 'General', 'SL Loot'), + (221414, 'Badly Corroded Crystal (Throwing Knife Incompetence)', 220425, 26709, 'Throwing Knife Incompetence', + 39107, NULL, NULL, NULL, 10, 'Tainted', 'DeBuffs', 'Knife_DeBuffs', 82, '', 0, 0, 0, 0, 0, 'General', + 'SL Loot'), + (221415, 'Badly Corroded Crystal (Throwing Knife Proficiency)', 220425, 27088, 'Throwing Knife Proficiency', + 16286, NULL, NULL, NULL, 4, 'Tainted', 'Buffs', 'Knife_Buffs', 81, '', 0, 0, 0, 0, 0, 'General', 'SL Loot'), + (221416, 'Badly Corroded Crystal (Throwing Knife Inexperience)', 220425, 26708, 'Throwing Knife Inexperience', + 39107, NULL, NULL, NULL, 4, 'Tainted', 'DeBuffs', 'Knife_DeBuffs', 82, '', 0, 0, 0, 0, 0, 'General', 'SL Loot'), + (221417, 'Badly Corroded Crystal (SpaceTime Incompetence)', 220425, 27103, 'SpaceTime Incompetence', 39113, NULL, + NULL, NULL, 10, 'Tainted', 'DeBuffs_-_Nano', 'MatLoc_DeBuffs', 90, '', 0, 0, 0, 0, 0, 'General', 'SL Loot'), + (221418, 'Badly Corroded Crystal (Computer Literacy Expertise)', 220425, 26425, 'Computer Literacy Expertise', + 16213, NULL, NULL, NULL, 10, 'Tainted', 'Buffs_-_Tradeskill_Special', 'Computer_Literacy_Buffs', 50, '', 0, 0, + 0, 0, 0, 'General', 'SL Loot'), + (221421, 'Badly Corroded Crystal (LR Energy Weapon Incompetence)', 220425, 26429, + 'LR Energy Weapon Incompetence', 39078, NULL, NULL, NULL, 10, 'Tainted', 'DeBuffs_-_Ranged', + 'LR_Energy_Weapon_DeBuffs', 65, '', 0, 0, 0, 0, 0, 'General', 'SL Loot'), + (221422, 'Badly Corroded Crystal (SpaceTime Proficiency)', 220425, 27105, 'SpaceTime Proficiency', 16285, NULL, + NULL, NULL, 4, 'Tainted', 'Buffs_-_Nano', 'Time_and_Space_Buffs', 89, '', 0, 0, 0, 0, 0, 'General', 'SL Loot'), + (221423, 'Badly Corroded Crystal (SpaceTime Expertise)', 220425, 27102, 'SpaceTime Expertise', 16285, NULL, NULL, + NULL, 10, 'Tainted', 'Buffs_-_Nano', 'Time_and_Space_Buffs', 89, '', 0, 0, 0, 0, 0, 'General', 'SL Loot'), + (221424, 'Badly Corroded Crystal (Computer Literacy Proficiency)', 220425, 26396, + 'Computer Literacy Proficiency', 16213, NULL, NULL, NULL, 4, 'Tainted', 'Buffs_-_Tradeskill_Special', + 'Computer_Literacy_Buffs', 50, '', 0, 0, 0, 0, 0, 'General', 'SL Loot'), + (221425, 'Badly Corroded Crystal (LR Energy Weapon Expertise)', 220425, 26428, 'LR Energy Weapon Expertise', + 20882, NULL, NULL, NULL, 10, 'Tainted', 'Buffs_-_Ranged', 'LR_Energy_Weapon_Buffs', 64, '', 0, 0, 0, 0, 0, + 'General', 'SL Loot'), + (221426, 'Badly Corroded Crystal (SpaceTime Inexperience)', 220425, 27104, 'SpaceTime Inexperience', 39113, NULL, + NULL, NULL, 4, 'Tainted', 'DeBuffs_-_Nano', 'MatLoc_DeBuffs', 90, '', 0, 0, 0, 0, 0, 'General', 'SL Loot'), + (221427, 'Badly Corroded Crystal (LR Energy Weapon Inexp)', 220425, 26430, 'LR Energy Weapon Inexp', 39078, NULL, + NULL, NULL, 4, 'Tainted', 'DeBuffs_-_Ranged', 'LR_Energy_Weapon_DeBuffs', 65, '', 0, 0, 0, 0, 0, 'General', + 'SL Loot'), + (221428, 'Badly Corroded Crystal (LR Energy Weapon Proficiency)', 220425, 26431, 'LR Energy Weapon Proficiency', + 20882, NULL, NULL, NULL, 4, 'Tainted', 'Buffs_-_Ranged', 'LR_Energy_Weapon_Buffs', 64, '', 0, 0, 0, 0, 0, + 'General', 'SL Loot'), + (221429, 'Badly Corroded Crystal (Martial Arts Expertise)', 220425, 27094, 'Martial Arts Expertise', 16289, NULL, + NULL, NULL, 10, 'Tainted', 'Buffs_-_Melee_Special', 'Martial_Arts_Buffs', 85, '', 0, 0, 0, 0, 0, 'General', + 'SL Loot'), + (221430, 'Badly Corroded Crystal (Martial Arts Inexperience)', 220425, 27096, 'Martial Arts Inexperience', 39111, + NULL, NULL, NULL, 4, 'Tainted', 'DeBuffs_-_Melee_Special', 'Martial_Arts_DeBuffs', 86, '', 0, 0, 0, 0, 0, + 'General', 'SL Loot'), + (221432, 'Badly Corroded Crystal (Bot Migration)', 220422, 26366, 'Bot Migration', 16303, NULL, NULL, NULL, 4, + 'Tainted', 'Combat', 'Nano_Heal', 0, '', 0, 0, 0, 0, 0, 'General', 'SL Loot'), + (221433, 'Badly Corroded Crystal (Bot Mass Migration)', 220422, 26365, 'Bot Mass Migration', 16303, NULL, NULL, + NULL, 4, 'Tainted', 'Combat', 'Nano_Heal', 0, '', 0, 0, 0, 0, 0, 'General', 'SL Loot'), + (221434, 'Badly Corroded Crystal (Martial Arts Incompetence)', 220425, 27095, 'Martial Arts Incompetence', 39111, + NULL, NULL, NULL, 10, 'Tainted', 'DeBuffs_-_Melee_Special', 'Martial_Arts_DeBuffs', 86, '', 0, 0, 0, 0, 0, + 'General', 'SL Loot'), + (221435, 'Badly Corroded Crystal (Martial Arts Proficiency)', 220425, 27097, 'Martial Arts Proficiency', 16289, + NULL, NULL, NULL, 4, 'Tainted', 'Buffs_-_Melee_Special', 'Martial_Arts_Buffs', 85, '', 0, 0, 0, 0, 0, 'General', + 'SL Loot'), + (221436, 'Badly Corroded Crystal (Nano Programming Expertise)', 220425, 27115, 'Nano Programming Expertise', + 16301, NULL, NULL, NULL, 10, 'Tainted', 'Buffs_-_Tradeskill_Special', 'Nano_Programming_Buffs', 95, '', 0, 0, 0, + 0, 0, 'General', 'SL Loot'), + (221437, 'Badly Corroded Crystal (Nano Programming Proficiency)', 220425, 27116, 'Nano Programming Proficiency', + 16301, NULL, NULL, NULL, 4, 'Tainted', 'Buffs_-_Tradeskill_Special', 'Nano_Programming_Buffs', 95, '', 0, 0, 0, + 0, 0, 'General', 'SL Loot'), + (221438, 'Badly Corroded Crystal (Electrical Engineering Proficiency)', 220425, 27707, + 'Electrical Engineering Proficiency', 16231, NULL, NULL, NULL, 4, 'Tainted', 'Buffs_-_Tradeskill', + 'Electrical_Engineering_Buffs', 60, '', 0, 0, 0, 0, 0, 'General', 'SL Loot'), + (221439, 'Badly Corroded Crystal (Nano Restoration)', 220424, 27118, 'Nano Restoration', 16321, NULL, NULL, NULL, + 10, 'Tainted', 'Buffs_-_Medical', 'NP_Regeneration', 97, '', 0, 0, 0, 0, 0, 'General', 'SL Loot'), + (221440, 'Badly Corroded Crystal (Bow Expertise)', 220425, 26367, 'Bow Expertise', 16208, NULL, NULL, NULL, 10, + 'Tainted', 'Buffs_-_Ranged', 'Bow_Buffs', 37, '', 0, 0, 0, 0, 0, 'General', 'SL Loot'), + (221441, 'Badly Corroded Crystal (Bow Incompetence)', 220425, 26368, 'Bow Incompetence', 39047, NULL, NULL, NULL, + 10, 'Tainted', 'DeBuffs_-_Ranged', 'Bow_DeBuffs', 38, '', 0, 0, 0, 0, 0, 'General', 'SL Loot'), + (221442, 'Badly Corroded Crystal (Bow Proficiency)', 220425, 26351, 'Bow Proficiency', 16208, NULL, NULL, NULL, + 4, 'Tainted', 'Buffs_-_Ranged', 'Bow_Buffs', 37, '', 0, 0, 0, 0, 0, 'General', 'SL Loot'), + (221443, 'Badly Corroded Crystal (Bow Inexperience)', 220425, 26369, 'Bow Inexperience', 39047, NULL, NULL, NULL, + 4, 'Tainted', 'DeBuffs_-_Ranged', 'Bow_DeBuffs', 38, '', 0, 0, 0, 0, 0, 'General', 'SL Loot'), + (221444, 'Badly Corroded Crystal (Parry Expertise)', 220425, 27121, 'Deflect Expertise', 16305, NULL, NULL, NULL, + 10, 'Tainted', 'Buffs', 'Deflect_Buffs', 98, '', 0, 0, 0, 0, 0, 'General', 'SL Loot'), + (221445, 'Badly Corroded Crystal (Piercing Expert)', 220425, 26455, 'Piercing Expert', 16201, NULL, NULL, NULL, + 10, 'Tainted', 'Buffs_-_Melee', 'Piercing_Buffs', 101, '', 0, 0, 0, 0, 0, 'General', 'SL Loot'), + (221446, 'Badly Corroded Crystal (Pharmaceutical Expertise)', 220425, 27125, 'Pharmaceutical Expertise', 16316, + NULL, NULL, NULL, 10, 'Tainted', 'Buffs_-_Tradeskill', 'Pharmaceutical_Buffs', 100, '', 0, 0, 0, 0, 0, + 'General', 'SL Loot'), + (221447, 'Badly Corroded Crystal (Piercing Incompetence)', 220425, 26456, 'Piercing Incompetence', 39043, NULL, + NULL, NULL, 10, 'Tainted', 'DeBuffs_-_Melee', 'Piercing_DeBuffs', 102, '', 0, 0, 0, 0, 0, 'General', 'SL Loot'), + (221448, 'Badly Corroded Crystal (Pistol Inexperience)', 220425, 27129, 'Pistol Inexperience', 39132, NULL, NULL, + NULL, 4, 'Tainted', 'DeBuffs_-_Ranged', 'Pisto_DeBuffs', 104, '', 0, 0, 0, 0, 0, 'General', 'SL Loot'), + (221449, 'Badly Corroded Crystal (Pharmaceutical Proficiency)', 220425, 27126, 'Pharmaceutical Proficiency', + 16316, NULL, NULL, NULL, 4, 'Tainted', 'Buffs_-_Tradeskill', 'Pharmaceutical_Buffs', 100, '', 0, 0, 0, 0, 0, + 'General', 'SL Loot'), + (221450, 'Badly Corroded Crystal (Parry Proficiency)', 220425, 27124, 'Deflect Proficiency', 16305, NULL, NULL, + NULL, 4, 'Tainted', 'Buffs', 'Deflect_Buffs', 98, '', 0, 0, 0, 0, 0, 'General', 'SL Loot'), + (221452, 'Badly Corroded Crystal (Piercing Proficiency)', 220425, 26426, 'Piercing Proficiency', 16201, NULL, + NULL, NULL, 4, 'Tainted', 'Buffs_-_Melee', 'Piercing_Buffs', 101, '', 0, 0, 0, 0, 0, 'General', 'SL Loot'), + (221454, 'Badly Corroded Crystal (Parry Incompetence)', 220425, 27122, 'Parry Incompetence', 39127, NULL, NULL, + NULL, 14, 'Tainted', 'DeBuffs', 'Deflect_DeBuffs', 99, '', 0, 0, 0, 0, 0, 'General', 'SL Loot'), + (221455, 'Badly Corroded Crystal (Pistol Expertise)', 220425, 27127, 'Pistol Expertise', 16310, NULL, NULL, NULL, + 10, 'Tainted', 'Buffs_-_Ranged', 'Pistol_Buffs', 103, '', 0, 0, 0, 0, 0, 'General', 'SL Loot'), + (221458, 'Badly Corroded Crystal (Pistol Incompetence)', 220425, 27128, 'Ranged Weapons Incompetence', 297529, + NULL, NULL, NULL, 10, 'Tainted', 'DeBuffs_-_Ranged', 'Pisto_DeBuffs', 104, '', 0, 0, 0, 0, 0, 'General', + 'SL Loot'), + (221459, 'Badly Corroded Crystal (Piercing Inexperience)', 220425, 26457, 'Piercing Inexperience', 39043, NULL, + NULL, NULL, 4, 'Tainted', 'DeBuffs_-_Melee', 'Piercing_DeBuffs', 102, '', 0, 0, 0, 0, 0, 'General', 'SL Loot'), + (221460, 'Badly Corroded Crystal (Parry Inexperience)', 220425, 27123, 'Parry Inexperience', 39127, NULL, NULL, + NULL, 7, 'Tainted', 'DeBuffs', 'Deflect_DeBuffs', 99, '', 0, 0, 0, 0, 0, 'General', 'SL Loot'), + (221461, 'Badly Corroded Crystal (Pistol Proficiency)', 220425, 27080, 'Pistol Proficiency', 16310, NULL, NULL, + NULL, 4, 'Tainted', 'Buffs_-_Ranged', 'Pistol_Buffs', 103, '', 0, 0, 0, 0, 0, 'General', 'SL Loot'), + (221464, 'Badly Corroded Crystal (Field Quantum Physics Expertise)', 220425, 26437, + 'Field Quantum Physics Expertise', 16244, NULL, NULL, NULL, 10, 'Tainted', 'Buffs_-_Tradeskill', + 'Field_Quantum_Physics_Buffs', 68, '', 0, 0, 0, 0, 0, 'General', 'SL Loot'), + (221465, 'Badly Corroded Crystal (Field Quantum Physics Proficiency)', 220425, 26438, + 'Field Quantum Physics Proficiency', 16244, NULL, NULL, NULL, 4, 'Tainted', 'Buffs_-_Tradeskill', + 'Field_Quantum_Physics_Buffs', 68, '', 0, 0, 0, 0, 0, 'General', 'SL Loot'), + (221466, 'Badly Corroded Crystal (Quickness)', 220425, 27141, 'Quickness', 16300, NULL, NULL, NULL, 17, + 'Tainted', 'Buffs_-_Utility', 'Runspeed_Buffs', 149, '', 0, 0, 0, 0, 0, 'General', 'SL Loot'), + (221468, 'Badly Corroded Crystal (Riposte Inexperience)', 220425, 27152, 'Riposte Inexperience', 39144, NULL, + NULL, NULL, 7, 'Tainted', 'DeBuffs', 'Riposte_DeBuffs', 115, '', 0, 0, 0, 0, 0, 'General', 'SL Loot'), + (221470, 'Badly Corroded Crystal (Assault Rifle Expertise)', 220425, 26370, 'Assault Rifle Expertise', 16195, + NULL, NULL, NULL, 10, 'Tainted', 'Buffs_-_Ranged', 'Assault_Rifle_Buffs', 27, '', 0, 0, 0, 0, 0, 'General', + 'SL Loot'), + (221473, 'Badly Corroded Crystal (Regeneration)', 220422, 27144, 'Regeneration', 16321, NULL, NULL, NULL, 14, + 'Tainted', 'Buffs_-_Medical', 'HP_Regeneration', 111, '', 0, 0, 0, 0, 0, 'General', 'SL Loot'), + (221474, 'Badly Corroded Crystal (Assault Rifle Incompetence)', 220425, 26352, 'Assault Rifle Incompetence', + 39040, NULL, NULL, NULL, 10, 'Tainted', 'DeBuffs_-_Ranged', 'Assault_Rifle_DeBuffs', 28, '', 0, 0, 0, 0, 0, + 'General', 'SL Loot'), + (221475, 'Badly Corroded Crystal (Riposte Expertise)', 220425, 27150, 'Riposte Expertise', 16322, NULL, NULL, + NULL, 10, 'Tainted', 'Buffs', 'Riposte_Buffs', 114, '', 0, 0, 0, 0, 0, 'General', 'SL Loot'), + (221476, 'Badly Corroded Crystal (Assault Rifle Proficiency)', 220425, 26354, 'Assault Rifle Proficiency', 16195, + NULL, NULL, NULL, 4, 'Tainted', 'Buffs_-_Ranged', 'Assault_Rifle_Buffs', 27, '', 0, 0, 0, 0, 0, 'General', + 'SL Loot'), + (221479, 'Badly Corroded Crystal (Riposte Incompetence)', 220425, 27151, 'Riposte Incompetence', 39144, NULL, + NULL, NULL, 14, 'Tainted', 'DeBuffs', 'Riposte_DeBuffs', 115, '', 0, 0, 0, 0, 0, 'General', 'SL Loot'), + (221480, 'Badly Corroded Crystal (Radiation Shield)', 220426, 27142, 'Radiation Shield', 16318, NULL, NULL, NULL, + 1, 'Tainted', 'Buffs', 'Radiation_AC_Buffs', 110, '', 0, 0, 0, 0, 0, 'General', 'SL Loot'), + (221481, 'Badly Corroded Crystal (Radiation Ward)', 220426, 27143, 'Radiation Ward', 16318, NULL, NULL, NULL, 7, + 'Tainted', 'Buffs', 'Radiation_AC_Buffs', 110, '', 0, 0, 0, 0, 0, 'General', 'SL Loot'), + (221482, 'Badly Corroded Crystal (Assault Rifle Inexperience)', 220425, 26353, 'Assault Rifle Inexperience', + 39040, NULL, NULL, NULL, 4, 'Tainted', 'DeBuffs_-_Ranged', 'Assault_Rifle_DeBuffs', 28, '', 0, 0, 0, 0, 0, + 'General', 'SL Loot'), + (221485, 'Badly Corroded Crystal (Riposte Proficiency)', 220425, 27153, 'Riposte Proficiency', 16322, NULL, NULL, + NULL, 4, 'Tainted', 'Buffs', 'Riposte_Buffs', 114, '', 0, 0, 0, 0, 0, 'General', 'SL Loot'), + (221488, 'Badly Corroded Crystal (Sneak Attack Expertise)', 220425, 27164, 'Sneak Attack Expertise', 16328, NULL, + NULL, NULL, 10, 'Tainted', 'Buffs_-_Melee_Special', 'Sneak_Attack_Buffs', 120, '', 0, 0, 0, 0, 0, 'General', + 'SL Loot'), + (221489, 'Badly Corroded Crystal (Sense Boost)', 220422, 27154, 'Sense Boost', 16317, NULL, NULL, NULL, 7, + 'Tainted', 'Buffs_-_Attributes', 'Sense_Buffs', 32, '', 0, 0, 0, 0, 0, 'General', 'SL Loot'), + (221490, 'Badly Corroded Crystal (Sneak Attack Inexperience)', 220425, 27166, 'Sneak Attack Inexperience', 39150, + NULL, NULL, NULL, 7, 'Tainted', 'DeBuffs_-_Melee_Special', 'Sneak_Attack_DeBuffs', 121, '', 0, 0, 0, 0, 0, + 'General', 'SL Loot'), + (221491, 'Failed Repaired Crystal (Upgraded Automaton)', 220424, 45676, 'Upgraded Automaton', 16307, NULL, NULL, + NULL, 10, 'Tainted', 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'SL Loot'), + (221492, 'Badly Corroded Crystal (Bow Special Attack Expertise)', 220425, 26394, 'Bow Special Attack Expertise', + 16203, NULL, NULL, NULL, 10, 'Tainted', 'Buffs_-_Ranged_Special', 'Bow_Special_Buffs', 39, '', 0, 0, 0, 0, 0, + 'General', 'SL Loot'), + (221493, 'Badly Corroded Crystal (Shotgun Expertise)', 220425, 27159, 'Shotgun Expertise', 16326, NULL, NULL, + NULL, 10, 'Tainted', 'Buffs_-_Ranged', 'Shotgun_Buffs', 118, '', 0, 0, 0, 0, 0, 'General', 'SL Loot'), + (221494, 'Badly Corroded Crystal (Bow Special Attack Incompetence)', 220425, 26372, + 'Bow Special Attack Incompetence', 39048, NULL, NULL, NULL, 14, 'Tainted', 'DeBuffs_-_Ranged_Special', + 'Bow_Special_DeBuffs', 40, '', 0, 0, 0, 0, 0, 'General', 'SL Loot'), + (221495, 'Badly Corroded Crystal (Sneak Attack Proficiency)', 220425, 27167, 'Sneak Attack Proficiency', 16328, + NULL, NULL, NULL, 4, 'Tainted', 'Buffs_-_Melee_Special', 'Sneak_Attack_Buffs', 120, '', 0, 0, 0, 0, 0, + 'General', 'SL Loot'), + (221497, 'Badly Corroded Crystal (Sense Imp Inexperience)', 220425, 27157, 'Sense Imp Inexperience', 39029, NULL, + NULL, NULL, 4, 'Tainted', 'DeBuffs_-_Nano', 'SenseImp_DeBuffs', 117, '', 0, 0, 0, 0, 0, 'General', 'SL Loot'), + (221498, 'Badly Corroded Crystal (Sense Imp Expertise)', 220425, 27155, 'Sense Imp Expertise', 16332, NULL, NULL, + NULL, 10, 'Tainted', 'Buffs_-_Nano', 'Sensory_Improvement_Buffs', 116, '', 0, 0, 0, 0, 0, 'General', 'SL Loot'), + (221499, 'Badly Corroded Crystal (Stamina Boost)', 220422, 27168, 'Stamina Boost', 16330, NULL, NULL, NULL, 7, + 'Tainted', 'Buffs_-_Attributes', 'Stamina_Buffs', 33, '', 0, 0, 0, 0, 0, 'General', 'SL Loot'), + (221500, 'Badly Corroded Crystal (Bow Special Attack Proficiency)', 220425, 26374, + 'Bow Special Attack Proficiency', 16203, NULL, NULL, NULL, 4, 'Tainted', 'Buffs_-_Ranged_Special', + 'Bow_Special_Buffs', 39, '', 0, 0, 0, 0, 0, 'General', 'SL Loot'), + (221501, 'Badly Corroded Crystal (Sense Imp Proficiency)', 220425, 27158, 'Sense Imp Proficiency', 16332, NULL, + NULL, NULL, 4, 'Tainted', 'Buffs_-_Nano', 'Sensory_Improvement_Buffs', 116, '', 0, 0, 0, 0, 0, 'General', + 'SL Loot'), + (221502, 'Badly Corroded Crystal (Sense Imp Incomp)', 220425, 27156, 'Sense Imp Incomp', 39029, NULL, NULL, NULL, + 10, 'Tainted', 'DeBuffs_-_Nano', 'SenseImp_DeBuffs', 117, '', 0, 0, 0, 0, 0, 'General', 'SL Loot'), + (221503, 'Badly Corroded Crystal (Sneak Attack Incompetence)', 220425, 27165, 'Sneak Attack Incompetence', 39150, + NULL, NULL, NULL, 14, 'Tainted', 'DeBuffs_-_Melee_Special', 'Sneak_Attack_DeBuffs', 121, '', 0, 0, 0, 0, 0, + 'General', 'SL Loot'), + (221504, 'Badly Corroded Crystal (Swiftness)', 220425, 27172, 'Swiftness', 16300, NULL, NULL, NULL, 4, 'Tainted', + 'Buffs_-_Utility', 'Runspeed_Buffs', 149, '', 0, 0, 0, 0, 0, 'General', 'SL Loot'), + (221505, 'Badly Corroded Crystal (Bow Special Attack Inexperience)', 220425, 26373, + 'Bow Special Attack Inexperience', 39048, NULL, NULL, NULL, 7, 'Tainted', 'DeBuffs_-_Ranged_Special', + 'Bow_Special_DeBuffs', 40, '', 0, 0, 0, 0, 0, 'General', 'SL Loot'), + (221506, 'Badly Corroded Crystal (Treatment Expertise)', 220425, 27175, 'Treatment Expertise', 16342, NULL, NULL, + NULL, 10, 'Tainted', 'Buffs_-_Medical', 'Treatment_Buffs', 125, '', 0, 0, 0, 0, 0, 'General', 'SL Loot'), + (221507, 'Badly Corroded Crystal (Heavy Weapons Incompetence)', 220425, 26452, 'Heavy Weapons Incompetence', + 39080, NULL, NULL, NULL, 10, 'Tainted', 'DeBuffs_-_Ranged', 'Thrown_Grappling_DeBuffs', 76, '', 0, 0, 0, 0, 0, + 'General', 'SL Loot'), + (221508, 'Badly Corroded Crystal (Disarm Traps Expertise)', 220425, 26407, 'Disarm Traps Expertise', 16220, NULL, + NULL, NULL, 10, 'Tainted', 'Buffs_-_Tradeskill_Special', 'Disarm_Traps_Buffs', 59, '', 0, 0, 0, 0, 0, 'General', + 'SL Loot'), + (221509, 'Badly Corroded Crystal (Heavy Weapons Expertise)', 220425, 26451, 'Heavy Weapons Expertise', 16233, + NULL, NULL, NULL, 10, 'Tainted', 'Buffs_-_Ranged', 'Thrown_Grappling_Buffs', 75, '', 0, 0, 0, 0, 0, 'General', + 'SL Loot'), + (221510, 'Badly Corroded Crystal (Tutoring Proficiency)', 220425, 27178, 'Tutoring Proficiency', 16343, NULL, + NULL, NULL, 4, 'Tainted', 'Buffs_-_Tradeskill_Special', 'Tutoring_Buffs', 126, '', 0, 0, 0, 0, 0, 'General', + 'SL Loot'), + (221511, 'Badly Corroded Crystal (Disarm Traps Proficiency)', 220425, 26408, 'Disarm Traps Proficiency', 16220, + NULL, NULL, NULL, 4, 'Tainted', 'Buffs_-_Tradeskill_Special', 'Disarm_Traps_Buffs', 59, '', 0, 0, 0, 0, 0, + 'General', 'SL Loot'), + (221512, 'Badly Corroded Crystal (Treatment Proficiency)', 220425, 27176, 'Treatment Proficiency', 16342, NULL, + NULL, NULL, 4, 'Tainted', 'Buffs_-_Medical', 'Treatment_Buffs', 125, '', 0, 0, 0, 0, 0, 'General', 'SL Loot'), + (221513, 'Badly Corroded Crystal (Tutoring Expertise)', 220425, 27177, 'Tutoring Expertise', 16343, NULL, NULL, + NULL, 10, 'Tainted', 'Buffs_-_Tradeskill_Special', 'Tutoring_Buffs', 126, '', 0, 0, 0, 0, 0, 'General', + 'SL Loot'), + (221514, 'Badly Corroded Crystal (Heavy Weapons Proficiency)', 220425, 26454, 'Heavy Weapons Proficiency', 16233, + NULL, NULL, NULL, 4, 'Tainted', 'Buffs_-_Ranged', 'Thrown_Grappling_Buffs', 75, '', 0, 0, 0, 0, 0, 'General', + 'SL Loot'), + (221515, 'Badly Corroded Crystal (Heavy Weapons Inexperience)', 220425, 26453, 'Heavy Weapons Inexperience', + 39080, NULL, NULL, NULL, 4, 'Tainted', 'DeBuffs_-_Ranged', 'Thrown_Grappling_DeBuffs', 76, '', 0, 0, 0, 0, 0, + 'General', 'SL Loot'), + (221516, 'Badly Corroded Crystal (Submachine Gun Proficiency)', 220425, 27093, 'Submachine Gun Proficiency', + 16295, NULL, NULL, NULL, 4, 'Tainted', 'Buffs_-_Ranged', 'SMG_Buffs', 83, '', 0, 0, 0, 0, 0, 'General', + 'SL Loot'), + (221517, 'Badly Corroded Crystal (Burst Expertise)', 220425, 26381, 'Burst Expertise', 16206, NULL, NULL, NULL, + 10, 'Tainted', 'Buffs_-_Ranged_Special', 'Burst_Buffs', 44, '', 0, 0, 0, 0, 0, 'General', 'SL Loot'), + (221518, 'Badly Corroded Crystal (Burst Incompetence)', 220425, 26382, 'Burst Incompetence', 39051, NULL, NULL, + NULL, 14, 'Tainted', 'DeBuffs_-_Ranged_Special', 'Burst_DeBuffs', 45, '', 0, 0, 0, 0, 0, 'General', 'SL Loot'), + (221519, 'Badly Corroded Crystal (Submachine Gun Expertise)', 220425, 27090, 'Submachine Gun Expertise', 16295, + NULL, NULL, NULL, 10, 'Tainted', 'Buffs_-_Ranged', 'SMG_Buffs', 83, '', 0, 0, 0, 0, 0, 'General', 'SL Loot'), + (221520, 'Badly Corroded Crystal (Full Auto Inexperience)', 220425, 26449, 'Full Auto Inexperience', 39091, NULL, + NULL, NULL, 7, 'Tainted', 'DeBuffs_-_Ranged_Special', 'Full_Auto_DeBuffs', 74, '', 0, 0, 0, 0, 0, 'General', + 'SL Loot'), + (221521, 'Badly Corroded Crystal (Burst Proficiency)', 220425, 26384, 'Burst Proficiency', 16206, NULL, NULL, + NULL, 4, 'Tainted', 'Buffs_-_Ranged_Special', 'Burst_Buffs', 44, '', 0, 0, 0, 0, 0, 'General', 'SL Loot'), + (221522, 'Badly Corroded Crystal (Submachine Gun Incompetence)', 220425, 27091, 'Submachine Gun Incompetence', + 39117, NULL, NULL, NULL, 10, 'Tainted', 'DeBuffs_-_Ranged', 'SMG_DeBuffs', 84, '', 0, 0, 0, 0, 0, 'General', + 'SL Loot'), + (221523, 'Badly Corroded Crystal (Submachine Gun Inexperience)', 220425, 27092, 'Submachine Gun Inexperience', + 39117, NULL, NULL, NULL, 4, 'Tainted', 'DeBuffs_-_Ranged', 'SMG_DeBuffs', 84, '', 0, 0, 0, 0, 0, 'General', + 'SL Loot'), + (221524, 'Badly Corroded Crystal (Burst Inexperience)', 220425, 26383, 'Burst Inexperience', 39051, NULL, NULL, + NULL, 7, 'Tainted', 'DeBuffs_-_Ranged_Special', 'Burst_DeBuffs', 45, '', 0, 0, 0, 0, 0, 'General', 'SL Loot'), + (221525, 'Badly Corroded Crystal (Full Auto Proficiency)', 220425, 26450, 'Full Auto Proficiency', 16237, NULL, + NULL, NULL, 4, 'Tainted', 'Buffs_-_Ranged_Special', 'Full_Auto_Buffs', 73, '', 0, 0, 0, 0, 0, 'General', + 'SL Loot'), + (221526, 'Badly Corroded Crystal (Weapon Augmentation)', 220424, 27188, 'Weapon Augmentation', 16350, NULL, NULL, + NULL, 7, 'Tainted', 'Buffs', 'Damage_Buffs_-_Line_A', 4, '', 0, 0, 0, 0, 0, 'General', 'SL Loot'), + (221527, 'Badly Corroded Crystal (Brawl Expertise)', 220425, 26375, 'Brawl Expertise', 16204, NULL, NULL, NULL, + 10, 'Tainted', 'Buffs_-_Melee_Special', 'Brawl_Buffs', 41, '', 0, 0, 0, 0, 0, 'General', 'SL Loot'), + (221531, 'Badly Corroded Crystal (Weapon Enhancement)', 220424, 27189, 'Weapon Enhancement', 16350, NULL, NULL, + NULL, 17, 'Tainted', 'Buffs', 'Damage_Buffs_-_Line_A', 4, '', 0, 0, 0, 0, 0, 'General', 'SL Loot'), + (221532, 'Badly Corroded Crystal (Brawl Incompetence)', 220425, 26376, 'Melee Special Attacks Incompetence', + 297522, NULL, NULL, NULL, 14, 'Tainted', 'DeBuffs_-_Melee_Special', 'Brawl_DeBuffs', 42, '', 0, 0, 0, 0, 0, + 'General', 'SL Loot'), + (221533, 'Badly Corroded Crystal (Weapon Smithing Expertise)', 220425, 27190, 'Weapon Smithing Expertise', 16349, + NULL, NULL, NULL, 10, 'Tainted', 'Buffs_-_Tradeskill', 'Weapon_Smithing_Buffs', 134, '', 0, 0, 0, 0, 0, + 'General', 'SL Loot'), + (221534, 'Badly Corroded Crystal (Brawl Proficiency)', 220425, 26378, 'Brawl Proficiency', 16204, NULL, NULL, + NULL, 4, 'Tainted', 'Buffs_-_Melee_Special', 'Brawl_Buffs', 41, '', 0, 0, 0, 0, 0, 'General', 'SL Loot'), + (221535, 'Badly Corroded Crystal (Weapon Smithing Proficiency)', 220425, 27191, 'Weapon Smithing Proficiency', + 16349, NULL, NULL, NULL, 4, 'Tainted', 'Buffs_-_Tradeskill', 'Weapon_Smithing_Buffs', 134, '', 0, 0, 0, 0, 0, + 'General', 'SL Loot'), + (221538, 'Badly Corroded Crystal (Brawl Inexperience)', 220425, 26377, 'Brawl Inexperience', 39049, NULL, NULL, + NULL, 7, 'Tainted', 'DeBuffs_-_Melee_Special', 'Brawl_DeBuffs', 42, '', 0, 0, 0, 0, 0, 'General', 'SL Loot'), + (221539, 'Badly Corroded Crystal (Psychic Boost)', 220422, 27134, 'Psychic Boost', 16315, NULL, NULL, NULL, 7, + 'Tainted', 'Buffs_-_Attributes', 'Psychic_Buffs', 31, '', 0, 0, 0, 0, 0, 'General', 'SL Loot'), + (221540, 'Badly Corroded Crystal (PsyMod Incompetence)', 220425, 27138, 'PsyMod Incompetence', 39138, NULL, NULL, + NULL, 10, 'Tainted', 'DeBuffs_-_Nano', 'PsyMod_DeBuffs', 109, '', 0, 0, 0, 0, 0, 'General', 'SL Loot'), + (221541, 'Badly Corroded Crystal (Energy Melee Expertise)', 220425, 26422, 'Energy Melee Expertise', 20881, NULL, + NULL, NULL, 10, 'Tainted', 'Buffs_-_Melee', 'Energy_Melee_Buffs', 61, '', 0, 0, 0, 0, 0, 'General', 'SL Loot'), + (221542, 'Badly Corroded Crystal (PsyMod Expertise)', 220425, 27137, 'PsyMod Expertise', 16766, NULL, NULL, NULL, + 10, 'Tainted', 'Buffs_-_Nano', 'Psychological_Modification_Buffs', 108, '', 0, 0, 0, 0, 0, 'General', + 'SL Loot'), + (221543, 'Badly Corroded Crystal (PsyMod Inexperience)', 220425, 27139, 'PsyMod Inexperience', 39138, NULL, NULL, + NULL, 4, 'Tainted', 'DeBuffs_-_Nano', 'PsyMod_DeBuffs', 109, '', 0, 0, 0, 0, 0, 'General', 'SL Loot'), + (221544, 'Badly Corroded Crystal (Energy Melee Proficiency)', 220425, 26395, 'Energy Melee Proficiency', 20881, + NULL, NULL, NULL, 4, 'Tainted', 'Buffs_-_Melee', 'Energy_Melee_Buffs', 61, '', 0, 0, 0, 0, 0, 'General', + 'SL Loot'), + (221545, 'Badly Corroded Crystal (Psychology Proficiency)', 220425, 27136, 'Psychology Proficiency', 16309, NULL, + NULL, NULL, 4, 'Tainted', 'Buffs_-_Tradeskill_Special', 'Psychology_Buffs', 107, '', 0, 0, 0, 0, 0, 'General', + 'SL Loot'), + (221546, 'Badly Corroded Crystal (Psychology Expertise)', 220425, 27135, 'Psychology Expertise', 16309, NULL, + NULL, NULL, 10, 'Tainted', 'Buffs_-_Tradeskill_Special', 'Psychology_Buffs', 107, '', 0, 0, 0, 0, 0, 'General', + 'SL Loot'), + (221547, 'Badly Corroded Crystal (Energy Melee Inexperience)', 220425, 26424, 'Energy Melee Inexperience', 39077, + NULL, NULL, NULL, 10, 'Tainted', 'DeBuffs_-_Melee', 'Energy_Melee_DeBuffs', 62, '', 0, 0, 0, 0, 0, 'General', + 'SL Loot'), + (221548, 'Badly Corroded Crystal (PsyMod Proficiency)', 220425, 27140, 'PsyMod Proficiency', 16766, NULL, NULL, + NULL, 4, 'Tainted', 'Buffs_-_Nano', 'Psychological_Modification_Buffs', 108, '', 0, 0, 0, 0, 0, 'General', + 'SL Loot'), + (221549, 'Badly Corroded Crystal (Augment Agility)', 220422, 26355, 'Augment Agility', 16218, NULL, NULL, NULL, + 4, 'Tainted', 'Buffs_-_Attributes', 'Agility_Buffs', 29, '', 0, 0, 0, 0, 0, 'General', 'SL Loot'), + (221551, 'Severly Corroded Shadow Crystal (Traffic AC)', 220413, 92136, 'Traffic AC', 117970, NULL, NULL, NULL, + 152, 'Tainted', 'Transfer', 'AC_Transfer_Target_Buffs', 143, 'Team', 0, 1, 0, 0, 0, 'Trader', 'SL Loot'), + (221552, 'Badly Eroded Crystal (Rough Stitching)', 220422, 82064, 'Rough Stitching', 16246, NULL, NULL, NULL, 7, + 'Tainted', 'Combat', 'Single_Target_Healing', 951, '', 0, 1, 0, 0, 0, 'Adventurer', 'SL Loot'), + (221553, 'Hacked Corroded Crystal (Delayed Assassin)', 220437, 81930, 'Delayed Assassin', 49686, NULL, NULL, + NULL, 169, 'Tainted', 'Combat', 'DOT_Agent_Strain_A', 9, '', 0, 0, 0, 0, 0, 'Agent', 'SL Loot'), + (221554, 'Failed Repaired Crystal (Electrical Chastiser)', 220426, 55774, 'Electrical Chastiser', 16221, NULL, + NULL, NULL, 24, 'Tainted', 'Buffs', 'Damage_Shields', 1, '', 0, 1, 0, 0, 0, 'Engineer', 'SL Loot'), + (221555, 'Dirty Money Shadow Crystal (Disjointed From Reality)', 220437, 100428, 'Disjointed From Reality', + 46271, NULL, NULL, NULL, 175, 'Tainted', 'Crowd_Control', 'Mezz', 147, 'Target', 0, 1, 0, 0, 0, 'Bureaucrat', + 'SL Loot'), + (221556, 'Snow Crashed Shadow Crystal (Delay Retreat)', 220430, 56222, 'Delay Retreat', 46273, NULL, NULL, NULL, + 60, 'Tainted', 'Crowd_Control', 'Root', 146, '', 0, 1, 0, 0, 0, 'Fixer', 'SL Loot'), + (221557, 'Snow Crashed Shadow Crystal (Prolong Encounter)', 220437, 56221, 'Prolong Encounter', 46274, NULL, + NULL, NULL, 123, 'Tainted', 'Crowd_Control', 'Root', 146, '', 0, 1, 0, 0, 0, 'Fixer', 'SL Loot'), + (221559, 'Failed Repaired Crystal (Force Field)', 220413, 70531, 'Force Field', 100995, NULL, NULL, NULL, 169, + 'Tainted', 'Buffs', 'Armor_Buffs', 3, '', 0, 1, 0, 0, 0, 'Engineer', 'SL Loot'), + (221560, 'Dirty Money Shadow Crystal (Executive-Grade Bodyguard)', 220411, 46381, 'Executive-Grade Bodyguard', + 44135, NULL, NULL, NULL, 169, 'Tainted', 'Pets', 'Robot', 0, '', 0, 0, 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (221561, 'Failed Repaired Crystal (Protective Field)', 220433, 70553, 'Protective Field', 39039, NULL, NULL, + NULL, 73, 'Tainted', 'Buffs', 'Armor_Buffs', 3, '', 0, 1, 0, 0, 0, 'Engineer', 'SL Loot'), + (221562, 'Hacked Corroded Crystal (False Profession: Adventurer)', 220425, 32030, 'False Profession: Adventurer', + 16775, NULL, NULL, NULL, 17, 'Tainted', 'False_Professions', 'False_Profession', 218, 'Adventurer', 0, 1, 0, 0, + 0, 'Agent', 'SL Loot'), + (221564, 'Hacked Corroded Crystal (Lesser Delay Pursuers)', 220423, 85318, 'Lesser Delay Pursuers', 46276, NULL, + NULL, NULL, 27, 'Tainted', 'Crowd_Control', 'Snare', 145, 'Area', 0, 0, 0, 0, 0, 'Agent', 'SL Loot'), + (221565, 'Failed Repaired Crystal (Flawed Automaton)', 220424, 45718, 'Flawed Automaton', 16307, NULL, NULL, + NULL, 4, 'Tainted', 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'SL Loot'), + (221566, 'Blood Stained and Corroded Crystal (Advanced Nano Gorger)', 220430, 44174, 'Advanced Nano Gorger', + 16226, NULL, NULL, NULL, 93, 'Tainted', 'Combat', 'DOT_-_Line_B', 7, '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (221567, 'Badly Corroded Crystal (1H Edged Weapon Incompetence)', 220425, 27069, 'Melee Weapons Incompetence', + 297511, NULL, NULL, NULL, 10, 'Tainted', 'DeBuffs_-_Melee', '1H_Edged_DeBuffs', 22, '', 0, 0, 0, 0, 0, + 'General', 'SL Loot'), + (221571, 'Cracked Crystal (Arctic Cloak)', 220426, 55743, 'Arctic Cloak', 16221, 147274, 145774, 148774, 37, + 'Misc', 'Buffs', 'Damage_Shields', 1, '', 0, 1, 0, 0, 0, 'Enforcer', 'SL Loot'), + (221572, 'Overcharged Corroded Nano Crystal (Tremor)', 220437, 28637, 'Tremor', 16344, NULL, NULL, NULL, 175, + 'Tainted', 'Nukes', 'AoE_Nuke', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (221573, 'Tainted Shadow Crystal (Greater Rage Materialization)', 220431, 43723, 'Greater Rage Materialization', + 295577, NULL, NULL, NULL, 53, 'Tainted', 'Pet', 'Attack_Pet', 0, '', 0, 1, 0, 0, 0, 'Meta-Physicist', + 'SL Loot'), + (221574, 'Dirty Money Shadow Crystal (Basic Administrator)', 220411, 46400, 'Basic Administrator', 44140, NULL, + NULL, NULL, 129, 'Tainted', 'Pets', 'Robot', 0, '', 0, 0, 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (221575, 'Failed Repaired Crystal (Perfected Protective Field)', 220413, 70536, 'Perfected Protective Field', + 39179, NULL, NULL, NULL, 146, 'Tainted', 'Buffs', 'Armor_Buffs', 3, '', 0, 1, 0, 0, 0, 'Engineer', 'SL Loot'), + (221577, 'Snow Crashed Shadow Crystal (Invasive Micro Entanglement)', 220430, 82507, + 'Invasive Micro Entanglement', 46278, NULL, NULL, NULL, 73, 'Tainted', 'Crowd_Control', 'Snare', 145, 'Target', + 0, 1, 0, 0, 0, 'Fixer', 'SL Loot'), + (221578, 'Blood Stained and Corroded Crystal (Internal Renewal)', 220436, 43890, 'Internal Renewal', 44234, NULL, + NULL, NULL, 156, 'Tainted', 'Combat', 'Target_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (221579, 'Dirty Money Shadow Crystal (Basic Helper-Droid)', 220424, 46405, 'Basic Helper-Droid', 16307, NULL, + NULL, NULL, 14, 'Tainted', 'Pets', 'Robot', 0, '', 0, 0, 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (221580, 'Tainted Shadow Crystal (Wrath Abatement)', 220412, 99113, 'Wrath Abatement', 39168, NULL, NULL, NULL, + 179, 'Tainted', 'DeBuffs', 'Meta-Physicist_Initiatives/Damage_DeBuffs', 187, '', 0, 1, 0, 0, 0, + 'Meta-Physicist', 'SL Loot'), + (221581, 'Dirty Money Shadow Crystal (Basic Secretary-Droid)', 220431, 46396, 'Basic Secretary-Droid', 44140, + NULL, NULL, NULL, 96, 'Tainted', 'Pets', 'Robot', 0, '', 0, 0, 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (221582, 'Tainted Shadow Crystal (Greater Frenzy Embodiment)', 220411, 43721, 'Greater Frenzy Embodiment', + 295577, NULL, NULL, NULL, 146, 'Tainted', 'Pet', 'Attack_Pet', 0, '', 0, 1, 0, 0, 0, 'Meta-Physicist', + 'SL Loot'), + (221583, 'Snow Crashed Shadow Crystal (Net Cast Wide)', 220423, 85220, 'Net Cast Wide', 84284, NULL, NULL, NULL, + 43, 'Tainted', 'Crowd_Control', 'Snare', 145, 'Area', 0, 1, 0, 0, 0, 'Fixer', 'SL Loot'), + (221584, 'Snow Crashed Shadow Crystal (Nano Net)', 220423, 82510, 'Nano Net', 46277, NULL, NULL, NULL, 37, + 'Tainted', 'Crowd_Control', 'Snare', 145, 'Target', 0, 1, 0, 0, 0, 'Fixer', 'SL Loot'), + (221585, 'Failed Repaired Crystal (Perfected Warmachine)', 220411, 45678, 'Perfected Warmachine', 44135, NULL, + NULL, NULL, 172, 'Tainted', 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'SL Loot'), + (221586, 'Severly Corroded Shadow Crystal (Flow of Time)', 220437, 30719, 'Flow of Time', 46274, NULL, NULL, + NULL, 132, 'Tainted', 'Crowd_Control', 'Root', 146, 'Area', 0, 1, 0, 0, 0, 'Trader', 'SL Loot'), + (221587, 'Failed Repaired Crystal (Lesser Warbot)', 220411, 45687, 'Lesser Warbot', 44140, NULL, NULL, NULL, 136, + 'Tainted', 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'SL Loot'), + (221588, 'Overcharged Corroded Nano Crystal (Burning Bones)', 220437, 28597, 'Burning Bones', 45181, NULL, NULL, + NULL, 182, 'Tainted', 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (221589, 'Overcharged Corroded Nano Crystal (Blaze of Hephaestos)', 220437, 28594, 'Blaze of Hephaestos', 45156, + NULL, NULL, NULL, 169, 'Tainted', 'Nukes', 'AoE_Nuke', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (221590, 'Overcharged Corroded Nano Crystal (Chaos Lights)', 220437, 28598, 'Chaos Lights', 39793, NULL, NULL, + NULL, 139, 'Tainted', 'Nukes', 'Fast_1s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (221591, 'Overcharged Corroded Nano Crystal (Compacted Neutron Missile)', 220437, 28600, + 'Compacted Neutron Missile', 45183, NULL, NULL, NULL, 165, 'Tainted', 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, + 0, 0, 'Nano-Technician', 'SL Loot'), + (221592, 'Overcharged Corroded Nano Crystal (Corrosive Spray)', 220423, 28601, 'Corrosive Spray', 45167, NULL, + NULL, NULL, 10, 'Tainted', 'Nukes', 'Fast_1s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (221593, 'Overcharged Corroded Nano Crystal (Circle of Winter)', 220423, 28599, 'Circle of Winter', 39772, NULL, + NULL, NULL, 50, 'Tainted', 'Nukes', 'AoE_Nuke', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (221594, 'Overcharged Corroded Nano Crystal (Electrifying Containment)', 220437, 28604, + 'Electrifying Containment', 45178, NULL, NULL, NULL, 185, 'Tainted', 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, 0, + 0, 'Nano-Technician', 'SL Loot'), + (221595, 'Overcharged Corroded Nano Crystal (Energy Projectile)', 220430, 28605, 'Energy Projectile', 39802, + NULL, NULL, NULL, 53, 'Tainted', 'Nukes', 'Long_5s~4s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (221596, 'Overcharged Corroded Nano Crystal (Furious Assault)', 220430, 28610, 'Furious Assault', 39812, NULL, + NULL, NULL, 83, 'Tainted', 'Nukes', 'Long_8s~1s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (221597, 'Overcharged Corroded Nano Crystal (Fire Snake)', 220423, 28607, 'Fire Snake', 45179, NULL, NULL, NULL, + 27, 'Tainted', 'Nukes', 'Medium_3s~2s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (221598, 'Overcharged Corroded Nano Crystal (Freezing Surge)', 220430, 28609, 'Freezing Surge', 39797, NULL, + NULL, NULL, 96, 'Tainted', 'Nukes', 'Fast_1s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (221599, 'Overcharged Corroded Nano Crystal (Hot Feet)', 220423, 28611, 'Hot Foot', 45179, NULL, NULL, NULL, 14, + 'Tainted', 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (221600, 'Overcharged Corroded Nano Crystal (Internal Combustion)', 220437, 28613, 'Internal Combustion', 45180, + NULL, NULL, NULL, 162, 'Tainted', 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (221601, 'Overcharged Corroded Nano Crystal (Invasive Presence)', 220430, 28614, 'Invasive Presence', 39799, + NULL, NULL, NULL, 70, 'Tainted', 'Nukes', 'Medium_3s~2s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (221602, 'Overcharged Corroded Nano Crystal (Izgimmer''s Enveloping Flame)', 220437, 28616, + 'Izgimmer''s Enveloping Flame', 16280, NULL, NULL, NULL, 182, 'Tainted', 'Nukes', 'Long_8s~1s', 0, '', 0, 1, 0, + 0, 0, 'Nano-Technician', 'SL Loot'), + (221603, 'Overcharged Corroded Nano Crystal (Lightning Strike)', 220430, 28621, 'Lightning Strike', 39803, NULL, + NULL, NULL, 80, 'Tainted', 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (221604, 'Overcharged Corroded Nano Crystal (Molecular Deconstruction)', 220437, 28623, + 'Molecular Deconstruction', 45175, NULL, NULL, NULL, 185, 'Tainted', 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, 0, + 0, 'Nano-Technician', 'SL Loot'), + (221605, 'Overcharged Corroded Nano Crystal (Neural Stunner)', 220437, 28625, 'Neural Stunner', 16248, NULL, + NULL, NULL, 152, 'Tainted', 'Crowd_Control', 'Mezz', 147, 'Stun', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (221606, 'Tainted Shadow Crystal (Rage Suppression)', 220432, 99118, 'Rage Suppression', 39168, NULL, NULL, NULL, + 76, 'Tainted', 'DeBuffs', 'Meta-Physicist_Initiatives/Damage_DeBuffs', 187, '', 0, 1, 0, 0, 0, 'Meta-Physicist', + 'SL Loot'), + (221607, 'Overcharged Corroded Nano Crystal (Particle Accelerator)', 220437, 28626, 'Particle Accelerator', + 39793, NULL, NULL, NULL, 123, 'Tainted', 'Nukes', 'Fast_1s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', + 'SL Loot'), + (221608, 'Overcharged Corroded Nano Crystal (Plasma Lights)', 220423, 28628, 'Plasma Lights', 39802, NULL, NULL, + NULL, 50, 'Tainted', 'Nukes', 'Fast_1s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (221609, 'Overcharged Corroded Nano Crystal (Poison Missile)', 220423, 28630, 'Poison Missile', 45173, NULL, + NULL, NULL, 30, 'Tainted', 'Nukes', 'Fast_1s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (221610, 'Overcharged Corroded Nano Crystal (Phoenix Swarm)', 220423, 28627, 'Phoenix Swarm', 45179, NULL, NULL, + NULL, 37, 'Tainted', 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (221611, 'Overcharged Corroded Nano Crystal (Plasma Swirl)', 220430, 28629, 'Plasma Swirl', 39778, NULL, NULL, + NULL, 76, 'Tainted', 'Nukes', 'AoE_Nuke', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (221612, 'Overcharged Corroded Nano Crystal (Radioactive Cloud)', 220430, 28632, 'Radioactive Cloud', 39815, + NULL, NULL, NULL, 99, 'Tainted', 'Nukes', 'Medium_3s~2s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (221613, 'Overcharged Corroded Nano Crystal (Radiation Pulse)', 220423, 28631, 'Radiation Pulse', 45164, NULL, + NULL, NULL, 4, 'Tainted', 'Nukes', 'AoE_Nuke', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (221614, 'Overcharged Corroded Nano Crystal (Shockball)', 220423, 28633, 'Shockball', 45152, NULL, NULL, NULL, + 14, 'Tainted', 'Nukes', 'AoE_Nuke', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (221615, 'Overcharged Corroded Nano Crystal (Shockwave Slash)', 220430, 28634, 'Shockwave Slash', 39808, NULL, + NULL, NULL, 66, 'Tainted', 'Nukes', 'Fast_1s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (221616, 'Overcharged Corroded Nano Crystal (Shrapnel Burst)', 220437, 28635, 'Shrapnel Burst', 39789, NULL, + NULL, NULL, 123, 'Tainted', 'Nukes', 'AoE_Nuke', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (221617, 'Badly Corroded Crystal (Energized Fists)', 220424, 81829, 'Energized Fists', 16350, NULL, NULL, NULL, + 20, 'Tainted', 'Buffs', 'Damage_Buffs_-_Line_A', 4, '', 0, 1, 0, 0, 0, 'Martial Artist', 'SL Loot'), + (221618, 'Overcharged Corroded Nano Crystal (Vulcan Flechette)', 220437, 28592, 'Vulcan Flechette', 39813, NULL, + NULL, NULL, 113, 'Tainted', 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (221619, 'Overcharged Corroded Nano Crystal (Volcanic Eruption)', 220437, 28638, 'Volcanic Eruption', 16345, + NULL, NULL, NULL, 182, 'Tainted', 'Nukes', 'AoE_Nuke', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (221620, 'Blood Stained and Corroded Crystal (Primitive Viral Agent)', 220423, 44152, 'Primitive Viral Agent', + 16225, NULL, NULL, NULL, 4, 'Tainted', 'Combat', 'DOT_-_Line_A', 6, '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (221621, 'Badly Corroded Crystal (2H Edged Weapon Incompetence)', 220425, 27077, '2H Edged Weapon Incompetence', + 39163, NULL, NULL, NULL, 10, 'Tainted', 'DeBuffs_-_Melee', '2H_Edged_DeBuffs', 26, '', 0, 0, 0, 0, 0, 'General', + 'SL Loot'), + (221622, 'Severly Corroded Shadow Crystal (Traffic AC (Lesser))', 220413, 92138, 'Traffic AC (Lesser)', 117970, + NULL, NULL, NULL, 139, 'Tainted', 'Transfer', 'AC_Transfer_Target_Buffs', 143, 'Team', 0, 1, 0, 0, 0, 'Trader', + 'SL Loot'), + (221623, 'Blood Stained and Corroded Crystal (Halo of Health)', 220436, 43893, 'Halo of Health', 44251, NULL, + NULL, NULL, 172, 'Tainted', 'Combat', 'Team_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (221624, 'Blood Stained and Corroded Crystal (Induce Muscle Spasms)', 220411, 99583, 'Induce Muscle Spasms', + 291160, NULL, NULL, NULL, 126, 'Tainted', 'DeBuffs', 'Initiative_DeBuffs', 186, 'Unbreakable', 0, 1, 0, 0, 0, + 'Doctor', 'SL Loot'), + (221625, 'Tainted Shadow Crystal (Lesser Wrath Incarnation)', 220431, 43735, 'Summon Wrath Incarnation', 295577, + NULL, NULL, NULL, 76, 'Tainted', 'Pet', 'Attack_Pet_Summon', 0, '', 0, 1, 0, 0, 0, 'Meta-Physicist', 'SL Loot'), + (221626, 'Overcharged Corroded Nano Crystal (Fiery Blast)', 220437, 45920, 'Fiery Blast', 39807, NULL, NULL, + NULL, 142, 'Tainted', 'Nukes', 'Fast_1s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (221627, 'Cracked Crystal (Failing Impregnability)', 220413, 117686, 'Failing Impregnability', 100996, 147308, + 145808, 148808, 150, 'Misc', 'Buffs', 'Absorb_AC_Buffs', 219, '', 0, 1, 0, 0, 0, 'Enforcer', 'SL Loot'), + (221628, 'Severly Corroded Shadow Crystal (Imaginary Distractions)', 220437, 100434, 'Imaginary Distractions', + 46270, NULL, NULL, NULL, 146, 'Tainted', 'Crowd_Control', 'Mezz', 147, '', 0, 1, 0, 0, 0, 'Trader', 'SL Loot'), + (221629, 'Severly Corroded Shadow Crystal (Skill Wrangler Lesser)', 220432, 121340, 'Skill Wrangler Lesser', + 118048, NULL, NULL, NULL, 54, 'Tainted', 'Transfer', 'Wrangle', 0, 'Target', 0, 1, 0, 0, 0, 'Trader', + 'SL Loot'), + (221630, 'Dirty Money Shadow Crystal (Anger Addlement)', 220423, 30056, 'Anger Addlement', 46283, NULL, NULL, + NULL, 27, 'Tainted', 'Crowd_Control', 'Mezz', 147, 'Target', 0, 1, 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (221631, 'Hacked Corroded Crystal (False Profession: Enforcer)', 220425, 32041, 'False Profession: Enforcer', + 16775, NULL, NULL, NULL, 10, 'Tainted', 'False_Professions', 'False_Profession', 218, 'Enforcer', 0, 1, 0, 0, 0, + 'Agent', 'SL Loot'), + (221632, 'Hacked Corroded Crystal (False Profession: Bureaucrat)', 220425, 32032, 'False Profession: Bureaucrat', + 16775, NULL, NULL, NULL, 33, 'Tainted', 'False_Professions', 'False_Profession', 218, 'Bureaucrat', 0, 1, 0, 0, + 0, 'Agent', 'SL Loot'), + (221634, 'Tainted Shadow Crystal (Calling of Belamorte)', 220411, 125746, 'Calling of Belamorte', 295568, NULL, + NULL, NULL, 186, 'Tainted', 'Pet', 'Heal_Pet', 0, '', 0, 1, 0, 0, 0, 'Meta-Physicist', 'SL Loot'), + (221635, 'Dirty Money Shadow Crystal (Horror From The Darkest Pit)', 220412, 121137, + 'Horror From The Darkest Pit', 39145, NULL, NULL, NULL, 179, 'Tainted', 'Crowd_Control', 'Fear', 256, '', 0, 1, + 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (221636, 'Severly Corroded Shadow Crystal (Skill Wrangler (Lossy))', 220425, 121339, 'Skill Wrangler (Lossy)', + 118048, NULL, NULL, NULL, 41, 'Tainted', 'Transfer', 'Wrangle', 0, 'Target', 0, 1, 0, 0, 0, 'Trader', + 'SL Loot'), + (221637, 'Blood Stained and Corroded Crystal (Greater Policy Payout)', 220436, 43870, 'Greater Policy Payout', + 44231, NULL, NULL, NULL, 172, 'Tainted', 'Buffs', 'Heal_Over_Time', 12, '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (221638, 'Severly Corroded Shadow Crystal (Lesser Detain Customer)', 220423, 56234, 'Lesser Detain Customer', + 46272, NULL, NULL, NULL, 1, 'Tainted', 'Crowd_Control', 'Root', 146, 'Target', 0, 1, 0, 0, 0, 'Trader', + 'SL Loot'), + (221639, 'Severly Corroded Shadow Crystal (Enforced Loan)', 220424, 99615, 'Enforced Loan', 39137, NULL, NULL, + NULL, 40, 'Tainted', 'Drain', 'Nano_Drain_-_Line_A', 215, '', 0, 1, 0, 0, 0, 'Trader', 'SL Loot'), + (221640, 'Dirty Money Shadow Crystal (Director-Grade Administrator-Droid)', 220411, 46387, + 'Director-Grade Administrator-Droid', 44135, NULL, NULL, NULL, 142, 'Tainted', 'Pets', 'Robot', 0, '', 0, 0, 0, + 0, 0, 'Bureaucrat', 'SL Loot'), + (221642, 'Failed Repaired Crystal (Upgraded Guardbot)', 220411, 45665, 'Upgraded Guardbot', 44140, NULL, NULL, + NULL, 113, 'Tainted', 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'SL Loot'), + (221643, 'Overcharged Corroded Nano Crystal (Expanding Neutron Pulse)', 220430, 45917, 'Expanding Neutron Pulse', + 39790, NULL, NULL, NULL, 70, 'Tainted', 'Nukes', 'AoE_Nuke', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', + 'SL Loot'), + (221644, 'Blood Stained and Corroded Crystal (Active Remedy)', 220422, 43874, 'Active Remedy', 16246, NULL, NULL, + NULL, 33, 'Tainted', 'Buffs', 'Heal_Over_Time', 12, '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (221645, 'Hacked Corroded Crystal (Greater Detain Suspect)', 220430, 56214, 'Greater Detain Suspect', 46273, + NULL, NULL, NULL, 66, 'Tainted', 'Crowd_Control', 'Root', 146, '', 0, 0, 0, 0, 0, 'Agent', 'SL Loot'), + (221646, 'Badly Corroded Crystal (Fists of Stellar Harmony)', 220411, 81827, 'Fists of Stellar Harmony', 117896, + NULL, NULL, NULL, 165, 'Tainted', 'Buffs', 'Damage_Buffs_-_Line_A', 4, '', 0, 1, 0, 0, 0, 'Martial Artist', + 'SL Loot'), + (221647, 'Dirty Money Shadow Crystal (Total Musculature Command)', 220437, 55980, 'Total Musculature Command', + 46275, NULL, NULL, NULL, 175, 'Tainted', 'Crowd_Control', 'Root', 146, 'Target', 0, 1, 0, 0, 0, 'Bureaucrat', + 'SL Loot'), + (221648, 'Dirty Money Shadow Crystal (Supervisor-Grade Aide-Droid)', 220431, 46353, + 'Supervisor-Grade Aide-Droid', 44140, NULL, NULL, NULL, 83, 'Tainted', 'Pets', 'Robot', 0, '', 0, 0, 0, 0, 0, + 'Bureaucrat', 'SL Loot'), + (221649, 'Severly Corroded Shadow Crystal (Lossy Health Freeloader)', 220429, 76681, 'Average Health Freeloader', + 117909, NULL, NULL, NULL, 70, 'Tainted', 'Drain', 'Health', 0, '', 0, 1, 0, 0, 0, 'Trader', 'SL Loot'), + (221650, 'Dirty Money Shadow Crystal (Advanced Assistant-Droid)', 220431, 46408, 'Advanced Assistant-Droid', + 44139, NULL, NULL, NULL, 57, 'Tainted', 'Pets', 'Robot', 0, '', 0, 0, 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (221651, 'Overcharged Corroded Nano Crystal (Advanced Collapsing Barrier)', 220413, 117675, + 'Advanced Collapsing Barrier', 39179, NULL, NULL, NULL, 163, 'Tainted', 'Buffs', 'Absorb_AC_Buffs', 219, '', 0, + 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (221652, 'Badly Eroded Crystal (Nature''s Blessing)', 220436, 82059, 'Nature''s Blessing', 44231, NULL, NULL, + NULL, 162, 'Tainted', 'Combat', 'Single_Target_Healing', 951, '', 0, 1, 0, 0, 0, 'Adventurer', 'SL Loot'), + (221653, 'Severly Corroded Shadow Crystal (Siphon AC (Invasive))', 220413, 91317, 'Siphon AC (Invasive)', 117904, + NULL, NULL, NULL, 172, 'Tainted', 'Drain', 'AC_Transfer_Target_DeBuffs', 139, 'Siphon', 0, 1, 0, 0, 0, 'Trader', + 'SL Loot'), + (221655, 'Failed Repaired Crystal (Sparkling Field Array)', 220413, 55768, 'Sparkling Field Array', 16221, NULL, + NULL, NULL, 159, 'Tainted', 'Buffs', 'Damage_Shields', 1, '', 0, 1, 0, 0, 0, 'Engineer', 'SL Loot'), + (221656, 'Blood Stained and Corroded Crystal (Bodily Purification)', 220436, 43883, 'Bodily Purification', 44234, + NULL, NULL, NULL, 146, 'Tainted', 'Combat', 'Target_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (221657, 'Dirty Money Shadow Crystal (Basic Bodyguard)', 220411, 46404, 'Basic Bodyguard', 44135, NULL, NULL, + NULL, 159, 'Tainted', 'Pets', 'Robot', 0, '', 0, 0, 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (221658, 'Cracked Crystal (Field of Sparks)', 220426, 55744, 'Field of Sparks', 16221, 147311, 145811, 148811, + 20, 'Misc', 'Buffs', 'Damage_Shields', 1, '', 0, 1, 0, 0, 0, 'Enforcer', 'SL Loot'), + (221659, 'Badly Eroded Crystal (Guard of the Grizzly)', 220433, 55827, 'Guard of the Grizzly', 16221, NULL, NULL, + NULL, 90, 'Tainted', 'Buffs', 'Damage_Shields', 1, 'Target', 0, 1, 0, 0, 0, 'Adventurer', 'SL Loot'), + (221660, 'Overcharged Corroded Nano Crystal (Molecule Lance)', 220423, 42540, 'Molecule Lance', 45185, NULL, + NULL, NULL, 17, 'Tainted', 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (221661, 'Dirty Money Shadow Crystal (Limited Administrator-Droid)', 220411, 46364, + 'Limited Administrator-Droid', 44140, NULL, NULL, NULL, 132, 'Tainted', 'Pets', 'Robot', 0, '', 0, 0, 0, 0, 0, + 'Bureaucrat', 'SL Loot'), + (221662, 'Badly Eroded Crystal (Jacket of Blades)', 220426, 55835, 'Jacket of Blades', 16221, NULL, NULL, NULL, + 17, 'Tainted', 'Buffs', 'Damage_Shields', 1, 'Target', 0, 1, 0, 0, 0, 'Adventurer', 'SL Loot'), + (221663, 'Hacked Corroded Crystal (Greater Death''s Knocking)', 220437, 81931, 'Greater Death''s Knocking', + 49686, NULL, NULL, NULL, 149, 'Tainted', 'Combat', 'DOT_Agent_Strain_A', 9, '', 0, 0, 0, 0, 0, 'Agent', + 'SL Loot'), + (221665, 'Snow Crashed Shadow Crystal (Restock Ammo (Level OP-I))', 220424, 129714, 'Restock Ammo (Level OP-I)', + 117929, NULL, NULL, NULL, 10, 'Tainted', 'Creation', 'Ammo', 0, '', 0, 1, 0, 0, 0, 'Fixer', 'SL Loot'), + (221667, 'Overcharged Corroded Nano Crystal (Dense Poison Fog)', 220437, 45925, 'Dense Poison Fog', 39776, NULL, + NULL, NULL, 103, 'Tainted', 'Nukes', 'AoE_Nuke', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (221668, 'Hacked Corroded Crystal (Greater Mysterious Causes)', 220437, 81932, 'Greater Mysterious Causes', + 49685, NULL, NULL, NULL, 146, 'Tainted', 'Combat', 'DOT_Agent_Strain_A', 9, '', 0, 0, 0, 0, 0, 'Agent', + 'SL Loot'), + (221669, 'Blood Stained and Corroded Crystal (Medical Sequencer)', 220429, 43879, 'Medical Sequencer', 44229, + NULL, NULL, NULL, 70, 'Tainted', 'Buffs', 'Heal_Over_Time', 12, '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (221670, 'Badly Eroded Crystal (Advanced Survival Technique)', 220436, 82060, 'Advanced Survival Technique', + 44230, NULL, NULL, NULL, 146, 'Tainted', 'Combat', 'Single_Target_Healing', 951, '', 0, 1, 0, 0, 0, + 'Adventurer', 'SL Loot'), + (221671, 'Dirty Money Shadow Crystal (Limited Attendant-Droid)', 220424, 46367, 'Limited Attendant-Droid', 16307, + NULL, NULL, NULL, 30, 'Tainted', 'Pets', 'Robot', 0, '', 0, 0, 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (221672, 'Corroded Crystal with Bullet Holes (Helepolis of the Besieger)', 220411, 29232, + 'Helepolis of the Besieger', 117954, NULL, NULL, NULL, 139, 'Tainted', 'Buffs', 'Soldier_Damage_Base', 770, + 'Target', 0, 1, 0, 0, 0, 'Soldier', 'SL Loot'), + (221673, 'Badly Eroded Crystal (Natural Cure)', 220422, 136689, 'Natural Cure', 16246, NULL, NULL, NULL, 34, + 'Tainted', 'Combat', 'Single_Target_Healing', 951, '', 0, 1, 0, 0, 0, 'Adventurer', 'SL Loot'), + (221674, 'Tainted Shadow Crystal (Supreme Enmity Personification)', 220411, 43746, + 'Supreme Enmity Personification', 295597, NULL, NULL, NULL, 172, 'Tainted', 'Pet', 'Attack_Pet', 0, '', 0, 0, 0, + 0, 0, 'Meta-Physicist', 'SL Loot'), + (221675, 'Overcharged Corroded Nano Crystal (Superior Malign Devourer)', 220437, 45199, + 'Superior Malign Devourer', 45175, NULL, NULL, NULL, 172, 'Tainted', 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, 0, + 0, 'Nano-Technician', 'SL Loot'), + (221676, 'Hacked Corroded Crystal (Advanced Face Graft)', 220436, 116856, 'Advanced Face Graft', 39158, NULL, + NULL, NULL, 150, 'Tainted', 'Disguise', '', 0, '', 0, 0, 0, 0, 0, 'Agent', 'SL Loot'), + (221677, 'Dirty Money Shadow Crystal (Supervisor-Grade Minion)', 220411, 46358, 'Supervisor-Grade Minion', 44135, + NULL, NULL, NULL, 152, 'Tainted', 'Pets', 'Robot', 0, '', 0, 0, 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (221678, 'Overcharged Corroded Nano Crystal (Feeble Blade Chaos)', 220423, 45918, 'Feeble Blade Chaos', 45182, + NULL, NULL, NULL, 7, 'Tainted', 'Nukes', 'Medium_3s~2s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (221679, 'Blood Stained and Corroded Crystal (Counteract Damage)', 220422, 43813, 'Counteract Damage', 44230, + NULL, NULL, NULL, 50, 'Tainted', 'Combat', 'Target_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (221680, 'Overcharged Corroded Nano Crystal (Smiting Missile)', 220423, 45888, 'Smiting Missile', 45185, NULL, + NULL, NULL, 24, 'Tainted', 'Nukes', 'Medium_3s~2s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (221681, 'Overcharged Corroded Nano Crystal (Halon Cloud)', 220423, 42543, 'Halon Cloud', 45170, NULL, NULL, + NULL, 20, 'Tainted', 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (221682, 'Severly Corroded Shadow Crystal (Apprentice Health Haggler)', 220422, 121503, + 'Apprentice Health Haggler', 44229, NULL, NULL, NULL, 17, 'Tainted', 'Transfer', 'Health', 0, 'Target', 0, 1, 0, + 0, 0, 'Trader', 'SL Loot'), + (221684, 'Hacked Corroded Crystal (False Profession: Doctor)', 220425, 32033, 'False Profession: Doctor', 16775, + NULL, NULL, NULL, 30, 'Tainted', 'False_Professions', 'False_Profession', 218, 'Doctor', 0, 1, 0, 0, 0, 'Agent', + 'SL Loot'), + (221685, 'Severly Corroded Shadow Crystal (Health Freeloader)', 220429, 76653, 'Health Freeloader', 117910, NULL, + NULL, NULL, 86, 'Tainted', 'Drain', 'Health', 0, '', 0, 1, 0, 0, 0, 'Trader', 'SL Loot'), + (221686, 'Failed Repaired Crystal (Lesser Android)', 220424, 45709, 'Lesser Android', 16307, NULL, NULL, NULL, + 24, 'Tainted', 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'SL Loot'), + (221687, 'Dirty Money Shadow Crystal (Blizzard of Red Tape)', 220423, 82477, 'Blizzard of Red Tape', 46277, NULL, + NULL, NULL, 50, 'Tainted', 'Crowd_Control', 'Snare', 145, 'Target', 0, 1, 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (221688, 'Corroded Crystal with Bullet Holes (Greater Reflective Field (Extended))', 220413, 70333, + 'Greater Reflective Field (Extended)', 101017, NULL, NULL, NULL, 132, 'Tainted', 'Buffs', + 'Shadowland_Reflect_Base', 694, 'Target', 0, 1, 0, 0, 0, 'Soldier', 'SL Loot'), + (221689, 'Blood Stained and Corroded Crystal (Syndicated Healing)', 220429, 43908, 'Syndicated Healing', 44247, + NULL, NULL, NULL, 86, 'Tainted', 'Combat', 'Team_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (221690, 'Badly Eroded Crystal (Protection of the Storm)', 220413, 55823, 'Protection of the Storm', 16221, NULL, + NULL, NULL, 116, 'Tainted', 'Buffs', 'Damage_Shields', 1, 'Target', 0, 1, 0, 0, 0, 'Adventurer', 'SL Loot'), + (221691, 'Blood Stained and Corroded Crystal (Biotoxin MK IV)', 220430, 28644, 'Biotoxin MK IV', 16222, NULL, + NULL, NULL, 93, 'Tainted', 'Combat', 'DOT_-_Line_A', 6, '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (221692, 'Blood Stained and Corroded Crystal (Seethe With Germs)', 220430, 44145, 'Seethe with Germs', 16226, + NULL, NULL, NULL, 60, 'Tainted', 'Combat', 'DOT_-_Line_A', 6, '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (221693, 'Snow Crashed Shadow Crystal (Greater Nano Net)', 220437, 82504, 'Greater Nano Net', 46274, NULL, NULL, + NULL, 103, 'Tainted', 'Crowd_Control', 'Snare', 145, 'Target', 0, 1, 0, 0, 0, 'Fixer', 'SL Loot'), + (221694, 'Dirty Money Shadow Crystal (Thorough Overhaul)', 220436, 116798, 'Thorough Overhaul', 44230, NULL, + NULL, NULL, 166, 'Tainted', 'Pet_Buffs', 'Heal', 0, '', 0, 1, 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (221695, 'Overcharged Corroded Nano Crystal (Dense Matter Missile MK II)', 220430, 45924, + 'Dense Matter Missile MK II', 39812, NULL, NULL, NULL, 86, 'Tainted', 'Nukes', 'Fast_1s~3s', 0, '', 0, 1, 0, 0, + 0, 'Nano-Technician', 'SL Loot'), + (221696, 'Tainted Shadow Crystal (Summon Lemur)', 220411, 29319, 'Summon Lemur', 295584, NULL, NULL, NULL, 179, + 'Tainted', 'Pet', 'Attack_Pet_Summon', 0, '', 0, 0, 0, 0, 0, 'Meta-Physicist', 'SL Loot'), + (221697, 'Dirty Money Shadow Crystal (Supervisor-Grade Worker-Droid)', 220424, 46351, + 'Supervisor-Grade Worker-Droid', 16307, NULL, NULL, NULL, 7, 'Tainted', 'Pets', 'Robot', 0, '', 0, 0, 0, 0, 0, + 'Bureaucrat', 'SL Loot'), + (221698, 'Cracked Crystal (Bristling Shield)', 220426, 55742, 'Bristling Shield', 16221, 147286, 145786, 148786, + 10, 'Misc', 'Buffs', 'Damage_Shields', 1, '', 0, 1, 0, 0, 0, 'Enforcer', 'SL Loot'), + (221699, 'Snow Crashed Shadow Crystal (Mass Gravity Bindings)', 220437, 85221, 'Mass Gravity Bindings', 84286, + NULL, NULL, NULL, 136, 'Tainted', 'Crowd_Control', 'Snare', 145, 'Area', 0, 1, 0, 0, 0, 'Fixer', 'SL Loot'), + (221700, 'Failed Repaired Crystal (Quick Fix)', 220422, 116793, 'Quick Fix', 16246, NULL, NULL, NULL, 14, + 'Tainted', 'Pet_Combat', 'Pet_Heal', 0, '', 0, 1, 0, 0, 0, 'Engineer', 'SL Loot'), + (221701, 'Overcharged Corroded Nano Crystal (Toxic Sphere)', 220437, 45883, 'Toxic Sphere', 39795, NULL, NULL, + NULL, 126, 'Tainted', 'Nukes', 'Fast_1s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (221702, 'Dirty Money Shadow Crystal (Faithful Attendant-Droid)', 220424, 46372, 'Faithful Attendant-Droid', + 44139, NULL, NULL, NULL, 33, 'Tainted', 'Pets', 'Robot', 0, '', 0, 0, 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (221704, 'Hacked Corroded Crystal (Lesser Suspicious Death)', 220423, 81942, 'Lesser Suspicious Death', 16225, + NULL, NULL, NULL, 4, 'Tainted', 'Combat', 'DOT_Agent_Strain_A', 9, '', 0, 0, 0, 0, 0, 'Agent', 'SL Loot'), + (221705, 'Blood Stained and Corroded Crystal (Biotoxin MK III)', 220430, 28643, 'Biotoxin MK III', 16226, NULL, + NULL, NULL, 73, 'Tainted', 'Combat', 'DOT_-_Line_A', 6, '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (221706, 'Overcharged Corroded Nano Crystal (CrunchCom Code Sieve)', 220422, 95407, 'CrunchCom Code Sieve', + 16303, NULL, NULL, NULL, 10, 'Tainted', 'Buffs', 'Nano_Point_Cost_Buffs', 148, '', 0, 1, 0, 0, 0, + 'Nano-Technician', 'SL Loot'), + (221707, 'Tainted Shadow Crystal (Supreme Wrath Incarnation)', 220431, 43750, 'Supreme Wrath Incarnation', + 295577, NULL, NULL, NULL, 96, 'Tainted', 'Pet', 'Attack_Pet', 0, '', 0, 1, 0, 0, 0, 'Meta-Physicist', + 'SL Loot'), + (221708, 'Tainted Shadow Crystal (Ignore External Events)', 220432, 95524, 'Ignore External Events', 16309, NULL, + NULL, NULL, 90, 'Tainted', 'Buffs', 'Interrupt_Modifier', 183, '', 0, 1, 0, 0, 0, 'Meta-Physicist', 'SL Loot'), + (221709, 'Blood Stained and Corroded Crystal (Primitive Nano Gorger)', 220423, 44155, 'Primitive Nano Gorger', + 16225, NULL, NULL, NULL, 20, 'Tainted', 'Combat', 'DOT_-_Line_B', 7, '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (221710, 'Cracked Crystal (Challenger to Leviathan)', 220411, 49755, 'Challenger to Leviathan', 117925, 147293, + 145793, 148793, 132, 'Misc', 'Buffs', 'Challenger', 5, '', 0, 1, 0, 0, 0, 'Enforcer', 'SL Loot'), + (221711, 'Overcharged Corroded Nano Crystal (Cascade of the Storm)', 220437, 45247, 'Cascade of the Storm', + 45178, NULL, NULL, NULL, 175, 'Tainted', 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', + 'SL Loot'), + (221712, 'Tainted Shadow Crystal (Anger Manifestation)', 220424, 43715, 'Anger Manifestation', 295577, NULL, + NULL, NULL, 4, 'Tainted', 'Pet', 'Attack_Pet', 0, '', 0, 1, 0, 0, 0, 'Meta-Physicist', 'SL Loot'), + (221713, 'Dirty Money Shadow Crystal (Captivating Speech)', 220437, 55982, 'Captivating Speech', 46275, NULL, + NULL, NULL, 152, 'Tainted', 'Crowd_Control', 'Root', 146, 'Target', 0, 1, 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (221714, 'Corroded Crystal with Bullet Holes (Total Mirror Shield Mk VI)', 220413, 70304, + 'Total Mirror Shield Mk VI', 39281, NULL, NULL, NULL, 106, 'Tainted', 'Buffs', 'Shadowland_Reflect_Base', 694, + 'Self', 0, 1, 0, 0, 0, 'Soldier', 'SL Loot'), + (221715, 'Overcharged Corroded Nano Crystal (Ion Stream)', 220423, 45905, 'Ion Stream', 45188, NULL, NULL, NULL, + 14, 'Tainted', 'Nukes', 'Fast_1s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (221716, 'Overcharged Corroded Nano Crystal (Brief Poison Fog)', 220423, 45943, 'Brief Poison Fog', 45149, NULL, + NULL, NULL, 24, 'Tainted', 'Nukes', 'AoE_Nuke', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (221717, 'Tainted Shadow Crystal (Quell Anger)', 220425, 99122, 'Quell Anger', 39168, NULL, NULL, NULL, 30, + 'Tainted', 'DeBuffs', 'Meta-Physicist_Initiatives/Damage_DeBuffs', 187, '', 0, 1, 0, 0, 0, 'Meta-Physicist', + 'SL Loot'), + (221718, 'Blood Stained and Corroded Crystal (Dress Wounds)', 220422, 43828, 'Dress Wounds', 16246, NULL, NULL, + NULL, 10, 'Tainted', 'Combat', 'Target_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (221719, 'Hacked Corroded Crystal (Assume Profession: Enforcer)', 220432, 117228, 'Assume Profession: Enforcer', + 16775, NULL, NULL, NULL, 76, 'Tainted', 'False_Professions', 'False_Profession', 218, 'Enforcer', 0, 1, 0, 0, 0, + 'Agent', 'SL Loot'), + (221720, 'Overcharged Corroded Nano Crystal (Lesser RNA Reaper)', 220423, 45899, 'Lesser RNA Reaper', 45188, + NULL, NULL, NULL, 14, 'Tainted', 'Nukes', 'Medium_3s~2s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (221721, 'Blood Stained and Corroded Crystal (Gouge Flesh)', 220430, 82008, 'Gouge Flesh', 39810, NULL, NULL, + NULL, 70, 'Tainted', 'Combat', 'Nuke', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (221722, 'Cracked Crystal (Ward from Harm)', 220433, 117680, 'Ward from Harm', 38898, 147347, 145847, 148847, 54, + 'Misc', 'Buffs', 'Absorb_AC_Buffs', 219, '', 0, 1, 0, 0, 0, 'Enforcer', 'SL Loot'), + (221723, 'Blood Stained and Corroded Crystal (Relief From Pain)', 220422, 43837, 'Relief from Pain', 44229, NULL, + NULL, NULL, 20, 'Tainted', 'Combat', 'Target_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (221724, 'Failed Repaired Crystal (Military-Grade Warbot)', 220411, 45689, 'Military-Grade Warbot', 44140, NULL, + NULL, NULL, 156, 'Tainted', 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'SL Loot'), + (221725, 'Badly Eroded Crystal (Fiery Vengeance)', 220413, 55819, 'Fiery Vengeance', 16221, NULL, NULL, NULL, + 136, 'Tainted', 'Buffs', 'Damage_Shields', 1, 'Target', 0, 1, 0, 0, 0, 'Adventurer', 'SL Loot'), + (221726, 'Tainted Shadow Crystal (Transcendent Anger Manifestation)', 220424, 43751, + 'Transcendent Anger Manifestation', 295577, NULL, NULL, NULL, 10, 'Tainted', 'Pet', 'Attack_Pet', 0, '', 0, 1, + 0, 0, 0, 'Meta-Physicist', 'SL Loot'), + (221727, 'Tainted Shadow Crystal (Fury Externalization)', 220424, 43718, 'Fury Externalization', 295577, NULL, + NULL, NULL, 20, 'Tainted', 'Pet', 'Attack_Pet', 0, '', 0, 1, 0, 0, 0, 'Meta-Physicist', 'SL Loot'), + (221728, 'Blood Stained and Corroded Crystal (Superior Omni-Med Enhancement)', 220436, 95709, + 'Superior Omni-Med Enhancement', 38905, NULL, NULL, NULL, 179, 'Tainted', 'Buffs', 'Doctor_HP_Buffs', 184, '', + 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (221729, 'Overcharged Corroded Nano Crystal (Contained Plasma Sphere)', 220437, 45237, 'Contained Plasma Sphere', + 39807, NULL, NULL, NULL, 136, 'Tainted', 'Nukes', 'Long_8s~1s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', + 'SL Loot'), + (221730, 'Severly Corroded Shadow Crystal (Minor Health Plunder)', 220436, 76494, 'Minor Health Plunder', 117912, + NULL, NULL, NULL, 146, 'Tainted', 'Drain', 'Health', 0, '', 0, 1, 0, 0, 0, 'Trader', 'SL Loot'), + (221731, 'Badly Corroded Crystal (1H Edged Weapon Proficiency)', 220425, 27071, '1H Edged Weapon Proficiency', + 16325, NULL, NULL, NULL, 4, 'Tainted', 'Buffs_-_Melee', '1H_Edged_Buffs', 21, '', 0, 0, 0, 0, 0, 'General', + 'SL Loot'), + (221732, 'Severly Corroded Shadow Crystal (Skill Wrangler (Advanced))', 220412, 121345, + 'Skill Wrangler (Advanced)', 118051, NULL, NULL, NULL, 113, 'Tainted', 'Transfer', 'Wrangle', 0, 'Target', 0, 1, + 0, 0, 0, 'Trader', 'SL Loot'), + (221733, 'Blood Stained and Corroded Crystal (Lesser Policy Payout)', 220436, 43877, 'Lesser Policy Payout', + 44231, NULL, NULL, NULL, 109, 'Tainted', 'Buffs', 'Heal_Over_Time', 12, '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (221734, 'Failed Repaired Crystal (Common Guardbot)', 220411, 45726, 'Common Guardbot', 44139, NULL, NULL, NULL, + 103, 'Tainted', 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'SL Loot'), + (221735, 'Failed Repaired Crystal (Flawed Guardbot)', 220431, 45720, 'Flawed Guardbot', 44139, NULL, NULL, NULL, + 99, 'Tainted', 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'SL Loot'), + (221736, 'Overcharged Corroded Nano Crystal (Sudden Chill)', 220423, 45881, 'Sudden Chill', 45170, NULL, NULL, + NULL, 24, 'Tainted', 'Nukes', 'Fast_1s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (221737, 'Failed Repaired Crystal (Semi-Sentient Guardbot)', 220411, 45683, 'Semi-Sentient Guardbot', 44140, + NULL, NULL, NULL, 123, 'Tainted', 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'SL Loot'), + (221738, 'Blood Stained and Corroded Crystal (Health Surge)', 220422, 96250, 'Health Surge', 16330, NULL, NULL, + NULL, 30, 'Tainted', 'Buffs', 'Doctor_Short_HP_Buffs', 185, '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (221739, 'Cracked Crystal (Taunting Glare)', 220425, 100213, 'Taunting Glare', 16230, 147344, 145844, 148844, 7, + 'Misc', 'Crowd_Control', 'Taunt_Target', 0, '', 0, 1, 0, 0, 0, 'Enforcer', 'SL Loot'), + (221740, 'Severly Corroded Shadow Crystal (Novice Health Haggler)', 220422, 121497, 'Novice Health Haggler', + 16246, NULL, NULL, NULL, 11, 'Tainted', 'Transfer', 'Health', 0, 'Target', 0, 1, 0, 0, 0, 'Trader', 'SL Loot'), + (221741, 'Tainted Shadow Crystal (Douse Anger)', 220425, 99121, 'Douse Anger', 39168, NULL, NULL, NULL, 14, + 'Tainted', 'DeBuffs', 'Meta-Physicist_Initiatives/Damage_DeBuffs', 187, '', 0, 1, 0, 0, 0, 'Meta-Physicist', + 'SL Loot'), + (221742, 'Dirty Money Shadow Crystal (Displace Thought Patterns)', 220412, 99209, 'Displace Thought Patterns', + 39137, NULL, NULL, NULL, 189, 'Tainted', 'Crowd_Control', 'Charm_Other', 202, 'Short', 0, 1, 0, 0, 0, + 'Bureaucrat', 'SL Loot'), + (221743, 'Dirty Money Shadow Crystal (Enrapturing Bondage)', 220412, 99197, 'Enrapturing Bondage', 39137, NULL, + NULL, NULL, 149, 'Tainted', 'Crowd_Control', 'Charm_Other', 202, 'Short', 0, 1, 0, 0, 0, 'Bureaucrat', + 'SL Loot'), + (221744, 'Hacked Corroded Crystal (Assume Profession: Martial Artist)', 220432, 117226, + 'Assume Profession: Martial Artist', 16775, NULL, NULL, NULL, 83, 'Tainted', 'False_Professions', + 'False_Profession', 218, 'Martial_Artist', 0, 1, 0, 0, 0, 'Agent', 'SL Loot'), + (221745, 'Failed Repaired Crystal (Perfected Warbot)', 220411, 45677, 'Perfected Warbot', 44140, NULL, NULL, + NULL, 152, 'Tainted', 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'SL Loot'), + (221746, 'Overcharged Corroded Nano Crystal (Meson Blast)', 220437, 44538, 'Meson Blast', 39803, NULL, NULL, + NULL, 103, 'Tainted', 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (221747, 'Overcharged Corroded Nano Crystal (Cornea Attack)', 220432, 83955, 'Cornea Attack', 39126, NULL, NULL, + NULL, 96, 'Tainted', 'DeBuffs', 'Add_All_Offence_DeBuffs', 13, 'Target', 0, 1, 0, 0, 0, 'Nano-Technician', + 'SL Loot'), + (221748, 'Severly Corroded Shadow Crystal (Line of Credit)', 220424, 99609, 'Line of Credit', 39137, NULL, NULL, + NULL, 7, 'Tainted', 'Drain', 'Nano_Drain_-_Line_A', 215, '', 0, 1, 0, 0, 0, 'Trader', 'SL Loot'), + (221750, 'Tainted Shadow Crystal (Superior Rage Materialization)', 220424, 43743, + 'Superior Rage Materialization', 295577, NULL, NULL, NULL, 50, 'Tainted', 'Pet', 'Attack_Pet', 0, '', 0, 1, 0, + 0, 0, 'Meta-Physicist', 'SL Loot'), + (221751, 'Badly Corroded Crystal (Fists of the Polar Star)', 220411, 81824, 'Fists of the Polar Star', 39308, + NULL, NULL, NULL, 106, 'Tainted', 'Buffs', 'Damage_Buffs_-_Line_A', 4, '', 0, 1, 0, 0, 0, 'Martial Artist', + 'SL Loot'), + (221752, 'Snow Crashed Shadow Crystal (Spin Weak Nanoweb)', 220430, 85223, 'Spin Weak Nanoweb', 84285, NULL, + NULL, NULL, 96, 'Tainted', 'Crowd_Control', 'Snare', 145, 'Area', 0, 1, 0, 0, 0, 'Fixer', 'SL Loot'), + (221753, 'Blood Stained and Corroded Crystal (First-Degree Burns)', 220437, 82009, 'First-Degree Burns', 39807, + NULL, NULL, NULL, 116, 'Tainted', 'Combat', 'Nuke', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (221754, 'Blood Stained and Corroded Crystal (Deathless Blessing)', 220436, 43852, 'Deathless Blessing', 44235, + NULL, NULL, NULL, 182, 'Tainted', 'Buffs', 'Heal_Over_Time', 12, '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (221756, 'Failed Repaired Crystal (Spike Armor)', 220433, 29781, 'Spike Armor', 16221, NULL, NULL, NULL, 53, + 'Tainted', 'Buffs', 'Damage_Shields', 1, '', 0, 1, 0, 0, 0, 'Engineer', 'SL Loot'), + (221757, 'Severly Corroded Shadow Crystal (Siphon AC (Advanced))', 220413, 91325, 'Siphon AC (Advanced)', 117902, + NULL, NULL, NULL, 152, 'Tainted', 'Drain', 'AC_Transfer_Target_DeBuffs', 139, 'Siphon', 0, 1, 0, 0, 0, 'Trader', + 'SL Loot'), + (221758, 'Dirty Money Shadow Crystal (Soft Siren Call)', 220425, 99205, 'Soft Siren Call', 39137, NULL, NULL, + NULL, 40, 'Tainted', 'Crowd_Control', 'Charm_Other', 202, 'Short', 0, 1, 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (221759, 'Weird Looking Nano Crystal (Neural Interfaced Augmentation Cloud)', 301242, 222837, + 'Improved Neural Interfaced Augmentation Cloud', 291157, 0, 0, 0, 159, 'Crystal', 'Buffs', + 'Damage_Buffs_-_Line_A', 4, '', 0, 0, 0, 0, 0, 'Agent', 'Greedy Shade / SL Static'), + (221760, 'Overcharged Corroded Nano Crystal (Legions of the Eyeblighter)', 220412, 83959, + 'Legions of the Eyeblighter', 38845, NULL, NULL, NULL, 162, 'Tainted', 'DeBuffs', 'Add_All_Offence_DeBuffs', 13, + 'Area', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (221761, 'Overcharged Corroded Nano Crystal (Run-Time Recompiler)', 220422, 95416, 'Run-Time Recompiler', 16303, + NULL, NULL, NULL, 33, 'Tainted', 'Buffs', 'Nano_Point_Cost_Buffs', 148, '', 0, 1, 0, 0, 0, 'Nano-Technician', + 'SL Loot'), + (221763, 'Dirty Money Shadow Crystal (Captivate Crowd)', 220430, 82159, 'Captivate Crowd', 46273, NULL, NULL, + NULL, 66, 'Tainted', 'Crowd_Control', 'Root', 146, 'Area', 0, 1, 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (221764, 'Overcharged Corroded Nano Crystal (Glacial Advance)', 220423, 45232, 'Glacial Advance', 39796, NULL, + NULL, NULL, 50, 'Tainted', 'Nukes', 'Long_8s~1s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (221765, 'Dirty Money Shadow Crystal (Performance Review)', 220423, 81997, 'Performance Review', 39798, NULL, + NULL, NULL, 43, 'Tainted', 'Nukes', 'Normal', 0, '', 0, 1, 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (221766, 'Corroded Crystal with Bullet Holes (Reactive Reflective Field)', 220413, 70314, + 'Reactive Reflective Field', 101018, NULL, NULL, NULL, 142, 'Tainted', 'Buffs', 'Shadowland_Reflect_Base', 694, + 'Target', 0, 1, 0, 0, 0, 'Soldier', 'SL Loot'), + (221768, 'Severly Corroded Shadow Crystal (Greater Delayed Health Payment)', 220436, 118231, + 'Greater Delayed Health Payment', 44250, NULL, NULL, NULL, 149, 'Tainted', 'Transfer', 'Health', 0, 'Team', 0, + 1, 0, 0, 0, 'Trader', 'SL Loot'), + (221769, 'Overcharged Corroded Nano Crystal (Deep Chemical Burn)', 220430, 45240, 'Deep Chemical Burn', 39794, + NULL, NULL, NULL, 76, 'Tainted', 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (221770, 'Hacked Corroded Crystal (Delay the Inevitable)', 220430, 82539, 'Delay the Inevitable', 46273, NULL, + NULL, NULL, 63, 'Tainted', 'Crowd_Control', 'Snare', 145, 'Target', 0, 0, 0, 0, 0, 'Agent', 'SL Loot'), + (221771, 'Hacked Corroded Crystal (False Profession: Meta-Physicist)', 220425, 32036, + 'False Profession: Meta-Physicist', 16775, NULL, NULL, NULL, 37, 'Tainted', 'False_Professions', + 'False_Profession', 218, 'Meta-Physicist', 0, 1, 0, 0, 0, 'Agent', 'SL Loot'), + (221772, 'Failed Repaired Crystal (Patchwork Warbot)', 220411, 45695, 'Patchwork Warbot', 44140, NULL, NULL, + NULL, 132, 'Tainted', 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'SL Loot'), + (221773, 'Blood Stained and Corroded Crystal (Rampant Decay)', 220437, 44150, 'Rampant Decay', 16222, NULL, NULL, + NULL, 165, 'Tainted', 'Combat', 'DOT_-_Line_A', 6, '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (221774, 'Badly Corroded Crystal (2H Blunt Weapon Inexperience)', 220425, 27074, '2H Blunt Weapon Inexperience', + 39146, NULL, NULL, NULL, 4, 'Tainted', 'DeBuffs_-_Melee', '2H_Blunt_DeBuffs', 24, '', 0, 0, 0, 0, 0, 'General', + 'SL Loot'), + (221775, 'Overcharged Corroded Nano Crystal (Curtain of Darkness)', 220425, 83958, 'Curtain of Darkness', 39126, + NULL, NULL, NULL, 47, 'Tainted', 'DeBuffs', 'Add_All_Offence_DeBuffs', 13, 'Target', 0, 1, 0, 0, 0, + 'Nano-Technician', 'SL Loot'), + (221776, 'Blood Stained and Corroded Crystal (Nano Surgery)', 220429, 43820, 'Nano Surgery', 44232, NULL, NULL, + NULL, 93, 'Tainted', 'Combat', 'Target_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (221777, 'Tainted Shadow Crystal (Inferior Fury Externalization)', 220424, 43728, + 'Inferior Fury Externalization', 295577, NULL, NULL, NULL, 17, 'Tainted', 'Pet', 'Attack_Pet', 0, '', 0, 1, 0, + 0, 0, 'Meta-Physicist', 'SL Loot'), + (221778, 'Dirty Money Shadow Crystal (Wandering Mind)', 220437, 100429, 'Wandering Mind', 46271, NULL, NULL, + NULL, 156, 'Tainted', 'Crowd_Control', 'Mezz', 147, 'Target', 0, 1, 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (221779, 'Severly Corroded Shadow Crystal (Feeble Delayed Health Payment)', 220422, 118242, + 'Feeble Delayed Health Payment', 38953, NULL, NULL, NULL, 8, 'Tainted', 'Transfer', 'Health', 0, 'Team', 0, 1, + 0, 0, 0, 'Trader', 'SL Loot'), + (221780, 'Overcharged Corroded Nano Crystal (Humidity Extractor)', 220424, 90404, 'Humidity Extractor', 38844, + NULL, NULL, NULL, 40, 'Tainted', 'Buffs', 'Nano_Over_Time_-_Line_A', 14, '', 0, 1, 0, 0, 0, 'Nano-Technician', + 'SL Loot'), + (221781, 'Badly Corroded Crystal (Fists of the Maelstrom)', 220431, 81823, 'Fists of the Maelstrom', 39168, NULL, + NULL, NULL, 86, 'Tainted', 'Buffs', 'Damage_Buffs_-_Line_A', 4, '', 0, 1, 0, 0, 0, 'Martial Artist', 'SL Loot'), + (221782, 'Overcharged Corroded Nano Crystal (Corruption)', 220423, 28602, 'Corruption', 16225, NULL, NULL, NULL, + 4, 'Tainted', 'Combat', 'Nano-Technician_DOT_-_Strain_A', 8, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (221783, 'Overcharged Corroded Nano Crystal (Weak Smiting Missile)', 220423, 45879, 'Weak Smiting Missile', + 45185, NULL, NULL, NULL, 1, 'Tainted', 'Nukes', 'Medium_3s~2s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', + 'SL Loot'), + (221786, 'Badly Eroded Crystal (Wings of the Phoenix)', 220413, 55815, 'Wings of the Phoenix', 16221, NULL, NULL, + NULL, 162, 'Tainted', 'Buffs', 'Damage_Shields', 1, 'Target', 0, 1, 0, 0, 0, 'Adventurer', 'SL Loot'), + (221787, 'Badly Eroded Crystal (Greater Restore Health)', 220436, 136678, 'Greater Restore Health', 44230, NULL, + NULL, NULL, 130, 'Tainted', 'Combat', 'Single_Target_Healing', 951, '', 0, 1, 0, 0, 0, 'Adventurer', 'SL Loot'), + (221788, 'Corroded Crystal with Bullet Holes (Tough as Nails)', 220429, 95694, 'Tough as Nails', 39046, NULL, + NULL, NULL, 63, 'Tainted', 'Buffs', 'HP_Buffs', 151, '', 0, 1, 0, 0, 0, 'Soldier', 'SL Loot'), + (221789, 'Tainted Shadow Crystal (Engrossing Activity)', 220425, 95523, 'Engrossing Activity', 16309, NULL, NULL, + NULL, 47, 'Tainted', 'Buffs', 'Interrupt_Modifier', 183, '', 0, 1, 0, 0, 0, 'Meta-Physicist', 'SL Loot'), + (221790, 'Tainted Shadow Crystal (Stifle Rage)', 220432, 99119, 'Stifle Rage', 39168, NULL, NULL, NULL, 53, + 'Tainted', 'DeBuffs', 'Meta-Physicist_Initiatives/Damage_DeBuffs', 187, '', 0, 1, 0, 0, 0, 'Meta-Physicist', + 'SL Loot'), + (221792, 'Dirty Money Shadow Crystal (Advanced Administrator-Droid)', 220411, 46406, + 'Advanced Administrator-Droid', 44140, NULL, NULL, NULL, 136, 'Tainted', 'Pets', 'Robot', 0, '', 0, 0, 0, 0, 0, + 'Bureaucrat', 'SL Loot'), + (221794, 'Severly Corroded Shadow Crystal (Pawnbroker''s Armor)', 220413, 91314, 'Pawnbroker''s Armor', 117904, + NULL, NULL, NULL, 185, 'Tainted', 'Drain', 'AC_Transfer_Target_DeBuffs', 139, 'Siphon', 0, 1, 0, 0, 0, 'Trader', + 'SL Loot'), + (221795, 'Overcharged Corroded Nano Crystal (Weak Gravity Collapse)', 220423, 45194, 'Weak Gravity Collapse', + 45182, NULL, NULL, NULL, 33, 'Tainted', 'Nukes', 'Long_8s~1s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', + 'SL Loot'), + (221796, 'Blood Stained and Corroded Crystal (Health Cartel)', 220436, 43895, 'Health Cartel', 44250, NULL, NULL, + NULL, 165, 'Tainted', 'Combat', 'Team_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (221797, 'Hacked Corroded Crystal (Greater Paralyze with Indecision)', 220437, 56208, + 'Greater Paralyze with Indecision', 46275, NULL, NULL, NULL, 149, 'Tainted', 'Crowd_Control', 'Root', 146, '', + 0, 0, 0, 0, 0, 'Agent', 'SL Loot'), + (221798, 'Badly Eroded Crystal (Lesser Wilderness Protection)', 220426, 74177, 'Lesser Wilderness Protection', + 38996, NULL, NULL, NULL, 20, 'Tainted', 'Buffs', 'Armor_Buffs', 3, '', 0, 1, 0, 0, 0, 'Adventurer', 'SL Loot'), + (221799, 'Dirty Money Shadow Crystal (Mass Daze)', 220423, 82156, 'Mass Daze', 46272, NULL, NULL, NULL, 10, + 'Tainted', 'Crowd_Control', 'Root', 146, 'Area', 0, 1, 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (221800, 'Failed Repaired Crystal (Semi-Sentient Warbot)', 220411, 45684, 'Semi-Sentient Warbot', 44140, NULL, + NULL, NULL, 156, 'Tainted', 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'SL Loot'), + (221801, 'Corroded Crystal with Bullet Holes (Superior Absorption Shield)', 220433, 75407, + 'Superior Absorption Shield', 39136, NULL, NULL, NULL, 99, 'Tainted', 'Buffs', 'Armor_Buffs', 3, '', 0, 1, 0, 0, + 0, 'Soldier', 'SL Loot'), + (221802, 'Blood Stained and Corroded Crystal (Lesser Cellular Grafting)', 220422, 43832, + 'Lesser Cellular Grafting', 16246, NULL, NULL, NULL, 1, 'Tainted', 'Combat', 'Target_Healing', 0, '', 0, 1, 0, + 0, 0, 'Doctor', 'SL Loot'), + (221803, 'Cracked Crystal (Brave Challenger to Titan)', 220424, 49745, 'Brave Challenger to Titan', 38947, + 147283, 145783, 148783, 40, 'Misc', 'Buffs', 'Challenger', 5, '', 0, 1, 0, 0, 0, 'Enforcer', 'SL Loot'), + (221804, 'Blood Stained and Corroded Crystal (Morgue Longings)', 220437, 44158, 'Morgue Longings', 16222, NULL, + NULL, NULL, 172, 'Tainted', 'Combat', 'DOT_-_Line_A', 6, '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (221805, 'Blood Stained and Corroded Crystal (Abscess Explosion)', 220430, 44144, 'Abscess Explosion', 16226, + NULL, NULL, NULL, 80, 'Tainted', 'Combat', 'DOT_-_Line_A', 6, '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (221806, 'Failed Repaired Crystal (Lesser Retaliatory Barrier)', 220426, 55773, 'Lesser Retaliatory Barrier', + 16221, NULL, NULL, NULL, 37, 'Tainted', 'Buffs', 'Damage_Shields', 1, '', 0, 1, 0, 0, 0, 'Engineer', 'SL Loot'), + (221807, 'Badly Eroded Crystal (Cloak of Fire)', 220426, 55831, 'Cloak of Fire', 16221, NULL, NULL, NULL, 37, + 'Tainted', 'Buffs', 'Damage_Shields', 1, 'Target', 0, 1, 0, 0, 0, 'Adventurer', 'SL Loot'), + (221809, 'Tainted Shadow Crystal (Rage Abolishment)', 220432, 99117, 'Rage Abolishment', 39168, NULL, NULL, NULL, + 93, 'Tainted', 'DeBuffs', 'Meta-Physicist_Initiatives/Damage_DeBuffs', 187, '', 0, 1, 0, 0, 0, 'Meta-Physicist', + 'SL Loot'), + (221811, 'Blood Stained and Corroded Crystal (Dark Venom)', 220423, 44166, 'Dark Venom', 16226, NULL, NULL, NULL, + 47, 'Tainted', 'Combat', 'DOT_-_Line_A', 6, '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (221812, 'Overcharged Corroded Nano Crystal (Burning Orb)', 220430, 45244, 'Burning Orb', 39805, NULL, NULL, + NULL, 57, 'Tainted', 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (221813, 'Overcharged Corroded Nano Crystal (Entropy Beam)', 220423, 45243, 'Entropy Beam', 45176, NULL, NULL, + NULL, 30, 'Tainted', 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (221814, 'Overcharged Corroded Nano Crystal (Eyeblighter)', 220412, 83953, 'Eyeblighter', 39126, NULL, NULL, + NULL, 139, 'Tainted', 'DeBuffs', 'Add_All_Offence_DeBuffs', 13, 'Target', 0, 1, 0, 0, 0, 'Nano-Technician', + 'SL Loot'), + (221815, 'Blood Stained and Corroded Crystal (Lifegiving Elixir)', 220436, 43878, 'Lifegiving Elixir', 292054, + NULL, NULL, NULL, 165, 'Tainted', 'Combat', 'Single_Target_Healing', 951, '', 0, 1, 0, 0, 0, 'Doctor', + 'SL Loot'), + (221816, 'Overcharged Corroded Nano Crystal (Efficient Humidity Extractor)', 220431, 90403, + 'Efficient Humidity Extractor', 38844, NULL, NULL, NULL, 80, 'Tainted', 'Buffs', 'Nano_Over_Time_-_Line_A', 14, + '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (221817, 'Overcharged Corroded Nano Crystal (Quark Collapse)', 220437, 45210, 'Quark Collapse', 45190, NULL, + NULL, NULL, 182, 'Tainted', 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (221818, 'Severly Corroded Shadow Crystal (Siphon AC)', 220413, 91329, 'Siphon AC', 117901, NULL, NULL, NULL, + 123, 'Tainted', 'Drain', 'AC_Transfer_Target_DeBuffs', 139, 'Siphon', 0, 1, 0, 0, 0, 'Trader', 'SL Loot'), + (221819, 'Hacked Corroded Crystal (Detain Suspect)', 220423, 56218, 'Detain Suspect', 46272, NULL, NULL, NULL, 1, + 'Tainted', 'Crowd_Control', 'Root', 146, '', 0, 0, 0, 0, 0, 'Agent', 'SL Loot'), + (221820, 'Blood Stained and Corroded Crystal (Molecular Rejuvenation)', 220436, 43871, 'Molecular Rejuvenation', + 44233, NULL, NULL, NULL, 156, 'Tainted', 'Buffs', 'Heal_Over_Time', 12, '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (221821, 'Blood Stained and Corroded Crystal (Consuming Toxin)', 220437, 44170, 'Consuming Toxin', 16226, NULL, + NULL, NULL, 106, 'Tainted', 'Combat', 'DOT_-_Line_A', 6, '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (221822, 'Badly Eroded Crystal (Team Terrain Knowledge)', 220425, 32126, 'Team Terrain Knowledge', 296731, NULL, + NULL, NULL, 24, 'Tainted', 'Buffs', 'Team_Run_Speed_Buffs', 1034, '', 0, 1, 0, 0, 0, 'Adventurer', 'SL Loot'), + (221824, 'Hacked Corroded Crystal (Leisurely Interrogation)', 220437, 56207, 'Leisurely Interrogation', 46275, + NULL, NULL, NULL, 165, 'Tainted', 'Crowd_Control', 'Root', 146, '', 0, 0, 0, 0, 0, 'Agent', 'SL Loot'), + (221826, 'Corroded Crystal with Bullet Holes (Partial Deflection Shield (Extended))', 220426, 70317, + 'Partial Deflection Shield (Extended)', 16319, NULL, NULL, NULL, 7, 'Tainted', 'Buffs', + 'Shadowland_Reflect_Base', 694, 'Target', 0, 1, 0, 0, 0, 'Soldier', 'SL Loot'), + (221827, 'Overcharged Corroded Nano Crystal (Foul Eyeblighter)', 220412, 83950, 'Foul Eyeblighter', 39126, NULL, + NULL, NULL, 162, 'Tainted', 'DeBuffs', 'Add_All_Offence_DeBuffs', 13, 'Target', 0, 1, 0, 0, 0, + 'Nano-Technician', 'SL Loot'), + (221828, 'Overcharged Corroded Nano Crystal (Engulf in Flame)', 220437, 45915, 'Engulf in Flame', 45180, NULL, + NULL, NULL, 149, 'Tainted', 'Nukes', 'Medium_3s~2s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (221829, 'Overcharged Corroded Nano Crystal (Shroud of Darkness)', 220432, 83957, 'Shroud of Darkness', 39126, + NULL, NULL, NULL, 66, 'Tainted', 'DeBuffs', 'Add_All_Offence_DeBuffs', 13, 'Target', 0, 1, 0, 0, 0, + 'Nano-Technician', 'SL Loot'), + (221830, 'Overcharged Corroded Nano Crystal (Phosphor Torch)', 220430, 45208, 'Phosphor Torch', 39806, NULL, + NULL, NULL, 83, 'Tainted', 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (221831, 'Severly Corroded Shadow Crystal (Team Skill Wrangler)', 220432, 121331, 'Team Skill Wrangler', 117987, + NULL, NULL, NULL, 93, 'Tainted', 'Transfer', 'Wrangle', 0, 'Team', 0, 1, 0, 0, 0, 'Trader', 'SL Loot'), + (221832, 'Failed Repaired Crystal (Gun Enhancement)', 220424, 29764, 'Gun Enhancement', 16350, NULL, NULL, NULL, + 10, 'Tainted', 'Buffs', 'Damage_Buffs_-_Line_A', 4, '', 0, 1, 0, 0, 0, 'Engineer', 'SL Loot'), + (221833, 'Severly Corroded Shadow Crystal (Traffic AC (Minor))', 220413, 92141, 'Traffic AC (Minor)', 117969, + NULL, NULL, NULL, 119, 'Tainted', 'Transfer', 'AC_Transfer_Target_Buffs', 143, 'Team', 0, 1, 0, 0, 0, 'Trader', + 'SL Loot'), + (221834, 'Overcharged Corroded Nano Crystal (Feeble Gravitational Anomaly)', 220430, 45227, + 'Feeble Gravitational Anomaly', 39809, NULL, NULL, NULL, 90, 'Tainted', 'Nukes', 'Long_8s~1s', 0, '', 0, 1, 0, + 0, 0, 'Nano-Technician', 'SL Loot'), + (221835, 'Blood Stained and Corroded Crystal (Circle of Renewal)', 220436, 43900, 'Circle of Renewal', 44249, + NULL, NULL, NULL, 149, 'Tainted', 'Combat', 'Team_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (221836, 'Dirty Money Shadow Crystal (Greater Illusory Paralysis)', 220437, 55983, 'Greater Illusory Paralysis', + 46274, NULL, NULL, NULL, 146, 'Tainted', 'Crowd_Control', 'Root', 146, 'Target', 0, 1, 0, 0, 0, 'Bureaucrat', + 'SL Loot'), + (221837, 'Overcharged Corroded Nano Crystal (Open Wound)', 220423, 45892, 'Open Wound', 45182, NULL, NULL, NULL, + 7, 'Tainted', 'Nukes', 'Fast_1s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (221838, 'Overcharged Corroded Nano Crystal (Momentum Impaler)', 220437, 45218, 'Momentum Impaler', 39813, NULL, + NULL, NULL, 123, 'Tainted', 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (221839, 'Corroded Crystal with Bullet Holes (Absorption Shield)', 220433, 29223, 'Absorption Shield', 38996, + NULL, NULL, NULL, 66, 'Tainted', 'Buffs', 'Armor_Buffs', 3, '', 0, 1, 0, 0, 0, 'Soldier', 'SL Loot'), + (221840, 'Corroded Crystal with Bullet Holes (Assault Rifle Mastery)', 220425, 29220, 'Assault Rifle Mastery', + 16195, NULL, NULL, NULL, 50, 'Tainted', 'Buffs', 'Assault_Rifle_Buffs', 212, '', 0, 1, 0, 0, 0, 'Soldier', + 'SL Loot'), + (221841, 'Corroded Crystal with Bullet Holes (Attack Booster)', 220425, 29221, 'Attack Booster', 16194, NULL, + NULL, NULL, 27, 'Tainted', 'Buffs', 'Initiative_Buffs', 152, '', 0, 1, 0, 0, 0, 'Soldier', 'SL Loot'), + (221842, 'Blood Stained and Corroded Crystal (Conglomerate Health Plan)', 220436, 43891, + 'Conglomerate Health Plan', 44251, NULL, NULL, NULL, 182, 'Tainted', 'Combat', 'Team_Healing', 0, '', 0, 1, 0, + 0, 0, 'Doctor', 'SL Loot'), + (221843, 'Dirty Money Shadow Crystal (Lesser Illusory Paralysis)', 220423, 55992, 'Lesser Illusory Paralysis', + 46272, NULL, NULL, NULL, 4, 'Tainted', 'Crowd_Control', 'Root', 146, 'Target', 0, 1, 0, 0, 0, 'Bureaucrat', + 'SL Loot'), + (221844, 'Corroded Crystal with Bullet Holes (Reflective Field (Extended))', 220413, 70310, + 'Reflective Field (Extended)', 101017, NULL, NULL, NULL, 126, 'Tainted', 'Buffs', 'Shadowland_Reflect_Base', + 694, 'Target', 0, 1, 0, 0, 0, 'Soldier', 'SL Loot'), + (221845, 'Failed Repaired Crystal (Intricate Repairs)', 220436, 116795, 'Intricate Repairs', 44233, NULL, NULL, + NULL, 156, 'Tainted', 'Pet_Combat', 'Pet_Heal', 0, '', 0, 1, 0, 0, 0, 'Engineer', 'SL Loot'), + (221846, 'Overcharged Corroded Nano Crystal (Bacterial Invasion)', 220423, 42542, 'Bacterial Invasion', 45173, + NULL, NULL, NULL, 10, 'Tainted', 'Nukes', 'Long_5s~4s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (221848, 'Blood Stained and Corroded Crystal (Health Pump)', 220429, 42399, 'Health Pump', 44229, NULL, NULL, + NULL, 60, 'Tainted', 'Buffs', 'Heal_Over_Time', 12, '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (221849, 'Failed Repaired Crystal (Feeble Gladiatorbot)', 220424, 45713, 'Feeble Gladiatorbot', 44139, NULL, + NULL, NULL, 47, 'Tainted', 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'SL Loot'), + (221850, 'Tainted Shadow Crystal (Temper Wrath)', 220412, 99116, 'Temper Wrath', 39168, NULL, NULL, NULL, 136, + 'Tainted', 'DeBuffs', 'Meta-Physicist_Initiatives/Damage_DeBuffs', 187, '', 0, 1, 0, 0, 0, 'Meta-Physicist', + 'SL Loot'), + (221851, 'Overcharged Corroded Nano Crystal (Wild Eye Gouger)', 220425, 83963, 'Wild Eye Gouger', 38845, NULL, + NULL, NULL, 37, 'Tainted', 'DeBuffs', 'Add_All_Offence_DeBuffs', 13, 'Area', 0, 1, 0, 0, 0, 'Nano-Technician', + 'SL Loot'), + (221852, 'Corroded Crystal with Bullet Holes (LR Energy Weapon Mastery)', 220432, 29230, + 'Ranged Energy Weapon Mastery', 20882, NULL, NULL, NULL, 63, 'Tainted', 'Buffs', 'Ranged_Energy_Weapon_Buffs', + 213, '', 0, 1, 0, 0, 0, 'Soldier', 'SL Loot'), + (221853, 'Snow Crashed Shadow Crystal (Halt Flight)', 220423, 56226, 'Halt Flight', 46272, NULL, NULL, NULL, 4, + 'Tainted', 'Crowd_Control', 'Root', 146, '', 0, 1, 0, 0, 0, 'Fixer', 'SL Loot'), + (221854, 'Dirty Money Shadow Crystal (Limited Minion)', 220411, 46360, 'Limited Minion', 44135, NULL, NULL, NULL, + 146, 'Tainted', 'Pets', 'Robot', 0, '', 0, 0, 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (221855, 'Overcharged Corroded Nano Crystal (Limited Shrapnel Spray)', 220430, 45900, 'Limited Shrapnel Spray', + 39788, NULL, NULL, NULL, 83, 'Tainted', 'Nukes', 'AoE_Nuke', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', + 'SL Loot'), + (221856, 'Badly Eroded Crystal (Firefly''s Fury)', 220426, 55834, 'Firefly''s Fury', 16221, NULL, NULL, NULL, 30, + 'Tainted', 'Buffs', 'Damage_Shields', 1, 'Target', 0, 1, 0, 0, 0, 'Adventurer', 'SL Loot'), + (221857, 'Dirty Money Shadow Crystal (Enforced Sloth)', 220430, 85314, 'Enforced Sloth', 46277, NULL, NULL, NULL, + 60, 'Tainted', 'Crowd_Control', 'Snare', 145, 'Area', 0, 1, 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (221858, 'Corroded Crystal with Bullet Holes (Heavy Assault Absorption Shield)', 220413, 75401, + 'Heavy Assault Absorption Shield', 101016, NULL, NULL, NULL, 159, 'Tainted', 'Buffs', 'Armor_Buffs', 3, '', 0, + 1, 0, 0, 0, 'Soldier', 'SL Loot'), + (221859, 'Severly Corroded Shadow Crystal (Relentless Slayer)', 220411, 30746, 'Relentless Slayer', 117896, NULL, + NULL, NULL, 159, 'Tainted', 'Buffs', 'Damage', 0, 'Target', 0, 1, 0, 0, 0, 'Trader', 'SL Loot'), + (221860, 'Overcharged Corroded Nano Crystal (Condensed Pellet of Fire)', 220430, 45932, + 'Condensed Pellet of Fire', 39806, NULL, NULL, NULL, 99, 'Tainted', 'Nukes', 'Fast_1s~3s', 0, '', 0, 1, 0, 0, 0, + 'Nano-Technician', 'SL Loot'), + (221861, 'Severly Corroded Shadow Crystal (Professional Health Haggler)', 220429, 121495, + 'Professional Health Haggler', 44232, NULL, NULL, NULL, 87, 'Tainted', 'Transfer', 'Health', 0, 'Target', 0, 1, + 0, 0, 0, 'Trader', 'SL Loot'), + (221862, 'Failed Repaired Crystal (Perfected Defensive Screen)', 220413, 70535, 'Perfected Defensive Screen', + 100995, NULL, NULL, NULL, 149, 'Tainted', 'Buffs', 'Armor_Buffs', 3, '', 0, 1, 0, 0, 0, 'Engineer', 'SL Loot'), + (221863, 'Severly Corroded Shadow Crystal (Lesser Delayed Health Payment)', 220429, 118237, + 'Lesser Delayed Health Payment', 44247, NULL, NULL, NULL, 57, 'Tainted', 'Transfer', 'Health', 0, 'Team', 0, 1, + 0, 0, 0, 'Trader', 'SL Loot'), + (221864, 'Blood Stained and Corroded Crystal (Enhanced Health Surge)', 220436, 96257, 'Enhanced Health Surge', + 39152, NULL, NULL, NULL, 132, 'Tainted', 'Buffs', 'Doctor_Short_HP_Buffs', 185, '', 0, 1, 0, 0, 0, 'Doctor', + 'SL Loot'), + (221865, 'Failed Repaired Crystal (Semi-Sentient Wardroid)', 220411, 45685, 'Semi-Sentient Wardroid', 44135, + NULL, NULL, NULL, 182, 'Tainted', 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'SL Loot'), + (221866, 'Overcharged Corroded Nano Crystal (Greater Chilling Stream)', 220430, 45910, 'Greater Chilling Stream', + 39796, NULL, NULL, NULL, 70, 'Tainted', 'Nukes', 'Fast_1s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', + 'SL Loot'), + (221867, 'Blood Stained and Corroded Crystal (Autonomous Viral Agent)', 220437, 44173, 'Autonomous Viral Agent', + 16222, NULL, NULL, NULL, 146, 'Tainted', 'Combat', 'DOT_-_Line_B', 7, '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (221868, 'Cracked Crystal (Essence of Colossus)', 220436, 95700, 'Essence of Colossus', 100997, 147300, 145800, + 148800, 132, 'Misc', 'Buffs', 'HP_Buffs', 151, 'Target', 0, 1, 0, 0, 0, 'Enforcer', 'SL Loot'), + (221869, 'Hacked Corroded Crystal (Lesser Anatomy Lesson)', 220424, 81855, 'Lesser Anatomy Lesson', 16350, NULL, + NULL, NULL, 10, 'Tainted', 'Buffs', 'Damage_Buffs_-_Line_A', 4, '', 0, 0, 0, 0, 0, 'Agent', 'SL Loot'), + (221870, 'Corroded Crystal with Bullet Holes (Offensive Steamroller)', 220412, 29240, 'Offensive Steamroller', + 16194, NULL, NULL, NULL, 156, 'Tainted', 'Buffs', 'Initiative_Buffs', 152, '', 0, 1, 0, 0, 0, 'Soldier', + 'SL Loot'), + (221871, 'Severly Corroded Shadow Crystal (Exceptional Delayed Health Payment)', 220436, 118230, + 'Exceptional Delayed Health Payment', 44251, NULL, NULL, NULL, 169, 'Tainted', 'Transfer', 'Health', 0, 'Team', + 0, 1, 0, 0, 0, 'Trader', 'SL Loot'), + (221873, 'Overcharged Corroded Nano Crystal (Isotope Deluge)', 220423, 45223, 'Isotope Deluge', 39814, NULL, + NULL, NULL, 50, 'Tainted', 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (221874, 'Corroded Crystal with Bullet Holes (Pistol Mastery)', 220425, 29246, 'Pistol Mastery', 16310, NULL, + NULL, NULL, 24, 'Tainted', 'Buffs', 'Pistol_Buffs', 199, '', 0, 1, 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (221875, 'Corroded Crystal with Bullet Holes (Phalanx)', 220413, 29245, 'Phalanx', 16242, NULL, NULL, NULL, 142, + 'Tainted', 'Buffs', 'Team_AC_Buff', 0, '', 0, 1, 0, 0, 0, 'Soldier', 'SL Loot'), + (221876, 'Corroded Crystal with Bullet Holes (Precognition)', 220425, 29247, 'Precognition', 16234, NULL, NULL, + NULL, 43, 'Tainted', 'Buffs', 'Major_Evasion_Buffs', 144, '', 0, 1, 0, 0, 0, 'Soldier', 'SL Loot'), + (221877, 'Failed Repaired Crystal (Basic Defensive Screen)', 220426, 70541, 'Basic Defensive Screen', 38898, + NULL, NULL, NULL, 37, 'Tainted', 'Buffs', 'Armor_Buffs', 3, '', 0, 1, 0, 0, 0, 'Engineer', 'SL Loot'), + (221878, 'Dirty Money Shadow Crystal (Rule of One)', 220437, 78400, 'Rule of One', 45178, NULL, NULL, NULL, 179, + 'Tainted', 'Nukes', 'Special', 0, '', 0, 1, 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (221879, 'Severly Corroded Shadow Crystal (Quality Delayed Health Payment)', 220429, 118238, + 'Quality Delayed Health Payment', 44248, NULL, NULL, NULL, 87, 'Tainted', 'Transfer', 'Health', 0, 'Team', 0, 1, + 0, 0, 0, 'Trader', 'SL Loot'), + (221880, 'Dirty Money Shadow Crystal (Faithful Assistant-Droid)', 220431, 46371, 'Faithful Assistant-Droid', + 44139, NULL, NULL, NULL, 53, 'Tainted', 'Pets', 'Robot', 0, '', 0, 0, 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (221881, 'Failed Repaired Crystal (Lesser Automaton)', 220424, 45710, 'Lesser Automaton', 16307, NULL, NULL, + NULL, 4, 'Tainted', 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'SL Loot'), + (221882, 'Corroded Crystal with Bullet Holes (Quickshot)', 220425, 29248, 'Quickshot', 16250, NULL, NULL, NULL, + 17, 'Tainted', 'Buffs', 'Initiative_Buffs', 152, '', 0, 1, 0, 0, 0, 'Soldier', 'SL Loot'), + (221883, 'Dirty Money Shadow Crystal (Inhibit Motion)', 220437, 55984, 'Inhibit Motion', 46274, NULL, NULL, NULL, + 132, 'Tainted', 'Crowd_Control', 'Root', 146, 'Target', 0, 1, 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (221884, 'Overcharged Corroded Nano Crystal (Radiation Scour)', 220430, 45211, 'Radiation Scour', 39815, NULL, + NULL, NULL, 76, 'Tainted', 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (221885, 'Corroded Crystal with Bullet Holes (Total Focus)', 220412, 29255, 'Total Focus', 39180, NULL, NULL, + NULL, 136, 'Tainted', 'Buffs', 'Total_Focus', 769, '', 0, 1, 0, 0, 0, 'Soldier', 'SL Loot'), + (221886, 'Corroded Crystal with Bullet Holes (Titan Physique)', 220436, 29254, 'Titan Physique', 39186, NULL, + NULL, NULL, 113, 'Tainted', 'Buffs', 'HP_Buffs', 151, '', 0, 1, 0, 0, 0, 'Soldier', 'SL Loot'), + (221887, 'Overcharged Corroded Nano Crystal (Microblade Whirlwind)', 220423, 28622, 'Microblade Whirlwind', + 49684, NULL, NULL, NULL, 47, 'Tainted', 'Combat', 'Nano-Technician_DOT_-_Strain_A', 8, '', 0, 1, 0, 0, 0, + 'Nano-Technician', 'SL Loot'), + (221888, 'Corroded Crystal with Bullet Holes (Partial Deflection Shield)', 220426, 70320, + 'Partial Deflection Shield', 16319, NULL, NULL, NULL, 1, 'Tainted', 'Buffs', 'Shadowland_Reflect_Base', 694, + 'Target', 0, 1, 0, 0, 0, 'Soldier', 'SL Loot'), + (221889, 'Overcharged Corroded Nano Crystal (Enhance Nano Cohesion)', 220424, 95447, 'Enhance Nano Cohesion', + 16202, NULL, NULL, NULL, 20, 'Tainted', 'Buffs', 'Nano_Formula_Range_Buffs', 181, '', 0, 1, 0, 0, 0, + 'Nano-Technician', 'SL Loot'), + (221890, 'Failed Repaired Crystal (Upgraded Gladiatorbot)', 220431, 45664, 'Upgraded Gladiatorbot', 44139, NULL, + NULL, NULL, 76, 'Tainted', 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'SL Loot'), + (221891, 'Severly Corroded Shadow Crystal (Profiteer''s Grip)', 220423, 56233, 'Profiteer''s Grip', 46272, NULL, + NULL, NULL, 37, 'Tainted', 'Crowd_Control', 'Root', 146, 'Target', 0, 1, 0, 0, 0, 'Trader', 'SL Loot'), + (221892, 'Corroded Crystal with Bullet Holes (Greater Deflection Shield)', 220426, 70334, + 'Greater Deflection Shield', 39001, NULL, NULL, NULL, 50, 'Tainted', 'Buffs', 'Shadowland_Reflect_Base', 694, + 'Target', 0, 1, 0, 0, 0, 'Soldier', 'SL Loot'), + (221893, 'Overcharged Corroded Nano Crystal (Conduction Stream)', 220437, 45254, 'Conduction Stream', 45177, + NULL, NULL, NULL, 156, 'Tainted', 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (221894, 'Badly Eroded Crystal (Encourage Regrowth)', 220429, 82055, 'Encourage Regrowth', 44246, NULL, NULL, + NULL, 86, 'Tainted', 'Combat', 'Team_Healing', 952, '', 0, 1, 0, 0, 0, 'Adventurer', 'SL Loot'), + (221895, 'Blood Stained and Corroded Crystal (Medical Response)', 220436, 43810, 'Medical Response', 44233, NULL, + NULL, NULL, 132, 'Tainted', 'Combat', 'Target_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (221896, 'Overcharged Corroded Nano Crystal (Gaping Puncture)', 220423, 45231, 'Gaping Puncture', 39811, NULL, + NULL, NULL, 37, 'Tainted', 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (221897, 'Badly Corroded Crystal (Eternal Enmity)', 220412, 100214, 'Eternal Enmity', 16230, NULL, NULL, NULL, + 162, 'Tainted', 'Crowd_Control', 'Taunt', 0, '', 0, 1, 0, 0, 0, 'Martial Artist', 'SL Loot'), + (221898, 'Cracked Crystal (Mighty Challenger to Cyclops)', 220424, 49744, 'Mighty Challenger to Cyclops', 16241, + 147326, 145826, 148826, 24, 'Misc', 'Buffs', 'Challenger', 5, '', 0, 1, 0, 0, 0, 'Enforcer', 'SL Loot'), + (221899, 'Severly Corroded Shadow Crystal (Amateur Health Haggler)', 220422, 121505, 'Amateur Health Haggler', + 16246, NULL, NULL, NULL, 4, 'Tainted', 'Transfer', 'Health', 0, 'Target', 0, 1, 0, 0, 0, 'Trader', 'SL Loot'), + (221900, 'Blood Stained and Corroded Crystal (Uncontrollable Body Tremors)', 220411, 99577, + 'Uncontrollable Body Tremors', 291160, NULL, NULL, NULL, 185, 'Tainted', 'DeBuffs', 'Initiative_DeBuffs', 186, + 'Unbreakable', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (221901, 'Severly Corroded Shadow Crystal (Team Skill Wrangler (Exceptional))', 220412, 121328, + 'Team Skill Wrangler (Exceptional)', 117992, NULL, NULL, NULL, 169, 'Tainted', 'Transfer', 'Wrangle', 0, 'Team', + 0, 1, 0, 0, 0, 'Trader', 'SL Loot'), + (221902, 'Severly Corroded Shadow Crystal (Forced Bankruptcy)', 220411, 99613, 'Forced Bankruptcy', 39137, NULL, + NULL, NULL, 185, 'Tainted', 'Drain', 'Nano_Drain_-_Line_A', 215, '', 0, 1, 0, 0, 0, 'Trader', 'SL Loot'), + (221903, 'Severly Corroded Shadow Crystal (Masterly Health Haggler)', 220436, 121499, 'Masterly Health Haggler', + 44233, NULL, NULL, NULL, 116, 'Tainted', 'Transfer', 'Health', 0, 'Target', 0, 1, 0, 0, 0, 'Trader', 'SL Loot'), + (221904, 'Corroded Crystal with Bullet Holes (Riot Control)', 220411, 29251, 'Riot Control', 16206, NULL, NULL, + NULL, 126, 'Tainted', 'Buffs', 'Burst_Buffs', 214, '', 0, 1, 0, 0, 0, 'Soldier', 'SL Loot'), + (221905, 'Severly Corroded Shadow Crystal (Apprentice: Electrical Engineering)', 220425, 30753, + 'Apprentice: Electrical Engineering', 16231, NULL, NULL, NULL, 24, 'Tainted', 'Buffs:_Tradeskills', + 'Electrical_Engineering_Buffs', 172, '', 0, 1, 0, 0, 0, 'Trader', 'SL Loot'), + (221906, 'Severly Corroded Shadow Crystal (Apprentice: Mechanical Engineering)', 220425, 30708, + 'Apprentice: Mechanical Engineering', 16293, NULL, NULL, NULL, 30, 'Tainted', 'Buffs:_Tradeskills', + 'Mechanical_Engineering_Buffs', 174, '', 0, 1, 0, 0, 0, 'Trader', 'SL Loot'), + (221907, 'Severly Corroded Shadow Crystal (Apprentice: Field Quantum Physics)', 220425, 30707, + 'Apprentice: Field Quantum Physics', 16244, NULL, NULL, NULL, 27, 'Tainted', 'Buffs:_Tradeskills', + 'Field_Quantum_Physics_Buffs', 173, '', 0, 1, 0, 0, 0, 'Trader', 'SL Loot'), + (221908, 'Severly Corroded Shadow Crystal (Apprentice: Weapon Smithing)', 220425, 29100, + 'Apprentice: Weapon Smithing', 16349, NULL, NULL, NULL, 33, 'Tainted', 'Buffs:_Tradeskills', + 'Weapon_Smithing_Buffs', 176, '', 0, 1, 0, 0, 0, 'Trader', 'SL Loot'), + (221909, 'Blood Stained and Corroded Crystal (Strengthen Resolve)', 220429, 96253, 'Strengthen Resolve', 39012, + NULL, NULL, NULL, 66, 'Tainted', 'Buffs', 'Doctor_Short_HP_Buffs', 185, '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (221910, 'Severly Corroded Shadow Crystal (Bulk Trader)', 220432, 30715, 'Bulk Trader', 16309, NULL, NULL, NULL, + 96, 'Tainted', 'Buffs:_Tradeskills', 'Computer_Literacy_Buffs', 177, '', 0, 1, 0, 0, 0, 'Trader', 'SL Loot'), + (221911, 'Badly Eroded Crystal (Team Quick Heal)', 220422, 26696, 'Team Quick Heal', 38953, NULL, NULL, NULL, 4, + 'Tainted', 'Combat', 'Team_Healing', 952, '', 0, 1, 0, 0, 0, 'Adventurer', 'SL Loot'), + (221912, 'Cracked Crystal (Challenger to Titan)', 220424, 49746, 'Challenger to Titan', 38947, 147294, 145794, + 148794, 33, 'Misc', 'Buffs', 'Challenger', 5, '', 0, 1, 0, 0, 0, 'Enforcer', 'SL Loot'), + (221913, 'Overcharged Corroded Nano Crystal (Mephitic Ichor)', 220437, 45140, 'Mephitic Ichor', 39801, NULL, + NULL, NULL, 123, 'Tainted', 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (221914, 'Overcharged Corroded Nano Crystal (Glacial Finality)', 220437, 45233, 'Glacial Finality', 45172, NULL, + NULL, NULL, 175, 'Tainted', 'Nukes', 'Long_5s~4s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (221915, 'Failed Repaired Crystal (Advanced Warmachine)', 220411, 45735, 'Advanced Warmachine', 44135, NULL, + NULL, NULL, 169, 'Tainted', 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'SL Loot'), + (221916, 'Blood Stained and Corroded Crystal (Positive Life Reinforcement)', 220436, 43872, + 'Positive Life Reinforcement', 44234, NULL, NULL, NULL, 169, 'Tainted', 'Buffs', 'Heal_Over_Time', 12, '', 0, 1, + 0, 0, 0, 'Doctor', 'SL Loot'), + (221917, 'Severly Corroded Shadow Crystal (Frequent Customer)', 220425, 30720, 'Frequent Customer', 16213, NULL, + NULL, NULL, 20, 'Tainted', 'Buffs:_Tradeskills', 'Computer_Literacy_Buffs', 177, '', 0, 1, 0, 0, 0, 'Trader', + 'SL Loot'), + (221918, 'Blood Stained and Corroded Crystal (Health Graft)', 220422, 95717, 'Health Graft', 38905, NULL, NULL, + NULL, 17, 'Tainted', 'Buffs', 'Doctor_HP_Buffs', 184, '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (221919, 'Hacked Corroded Crystal (Mimic Profession: Fixer)', 220412, 117212, 'Mimic Profession: Fixer', 16775, + NULL, NULL, NULL, 159, 'Tainted', 'False_Professions', 'False_Profession', 218, 'Fixer', 0, 1, 0, 0, 0, 'Agent', + 'SL Loot'), + (221920, 'Severly Corroded Shadow Crystal (Skill Wrangler (Premium))', 220412, 121335, + 'Skill Wrangler (Premium)', 118056, NULL, NULL, NULL, 189, 'Tainted', 'Transfer', 'Wrangle', 0, 'Target', 0, 1, + 0, 0, 0, 'Trader', 'SL Loot'), + (221921, 'Tainted Shadow Crystal (Transcendent Wrath Incarnation)', 220411, 43756, + 'Transcendent Wrath Incarnation', 295577, NULL, NULL, NULL, 106, 'Tainted', 'Pet', 'Attack_Pet', 0, '', 0, 1, 0, + 0, 0, 'Meta-Physicist', 'SL Loot'), + (221923, 'Cracked Crystal (Baleful Stare)', 220432, 100212, 'Baleful Stare', 16230, 147276, 145776, 148776, 57, + 'Misc', 'Crowd_Control', 'Taunt_Target', 0, '', 0, 1, 0, 0, 0, 'Enforcer', 'SL Loot'), + (221924, 'Severly Corroded Shadow Crystal (Hostile Takeover)', 220431, 30722, 'Hostile Takeover', 39137, NULL, + NULL, NULL, 90, 'Tainted', 'Drain', 'Nano_Drain_-_Line_A', 215, '', 0, 1, 0, 0, 0, 'Trader', 'SL Loot'), + (221925, 'Tainted Shadow Crystal (Superior Wrath Incarnation)', 220431, 43744, 'Superior Wrath Incarnation', + 295577, NULL, NULL, NULL, 90, 'Tainted', 'Pet', 'Attack_Pet', 0, '', 0, 1, 0, 0, 0, 'Meta-Physicist', + 'SL Loot'), + (221926, 'Overcharged Corroded Nano Crystal (Burning Quartet)', 220437, 45245, 'Burning Quartet', 39807, NULL, + NULL, NULL, 126, 'Tainted', 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (221927, 'Badly Eroded Crystal (Interlocking Barbs)', 220413, 55816, 'Interlocking Barbs', 16221, NULL, NULL, + NULL, 142, 'Tainted', 'Buffs', 'Damage_Shields', 1, 'Target', 0, 1, 0, 0, 0, 'Adventurer', 'SL Loot'), + (221928, 'Overcharged Corroded Nano Crystal (Greater Toxic Field)', 220430, 45914, 'Greater Toxic Field', 39794, + NULL, NULL, NULL, 83, 'Tainted', 'Nukes', 'Medium_3s~2s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (221929, 'Failed Repaired Crystal (Inferior Automaton)', 220424, 45704, 'Inferior Automaton', 16307, NULL, NULL, + NULL, 4, 'Tainted', 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'SL Loot'), + (221930, 'Severly Corroded Shadow Crystal (Journeyman: Mechanical Engineer)', 220432, 30726, + 'Journeyman: Mechanical Engineer', 16293, NULL, NULL, NULL, 83, 'Tainted', 'Buffs:_Tradeskills', + 'Mechanical_Engineering_Buffs', 174, '', 0, 1, 0, 0, 0, 'Trader', 'SL Loot'), + (221931, 'Severly Corroded Shadow Crystal (Journeyman: Field Quantum Physics)', 220432, 30725, + 'Journeyman: Field Quantum Physics', 16244, NULL, NULL, NULL, 80, 'Tainted', 'Buffs:_Tradeskills', + 'Field_Quantum_Physics_Buffs', 173, '', 0, 1, 0, 0, 0, 'Trader', 'SL Loot'), + (221932, 'Severly Corroded Shadow Crystal (Journeyman: Weapon Smithing)', 220432, 30728, + 'Journeyman: Weapon Smithing', 16349, NULL, NULL, NULL, 86, 'Tainted', 'Buffs:_Tradeskills', + 'Weapon_Smithing_Buffs', 176, '', 0, 1, 0, 0, 0, 'Trader', 'SL Loot'), + (221933, 'Tainted Shadow Crystal (Transcendent Enmity Personification)', 220411, 43918, + 'Transcendent Enmity Personification', 295597, NULL, NULL, NULL, 175, 'Tainted', 'Pet', 'Attack_Pet', 0, '', 0, + 0, 0, 0, 0, 'Meta-Physicist', 'SL Loot'), + (221934, 'Overcharged Corroded Nano Crystal (Visions of the Void)', 220412, 83947, 'Visions of the Void', 39126, + NULL, NULL, NULL, 189, 'Tainted', 'DeBuffs', 'Add_All_Offence_DeBuffs', 13, 'Target', 0, 1, 0, 0, 0, + 'Nano-Technician', 'SL Loot'), + (221935, 'Overcharged Corroded Nano Crystal (RNA Reaper)', 220430, 45886, 'RNA Reaper', 39814, NULL, NULL, NULL, + 63, 'Tainted', 'Nukes', 'Medium_3s~2s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (221936, 'Blood Stained and Corroded Crystal (Deep Wounds Cleanser)', 220436, 43894, 'Deep Wound Cleanser', + 44250, NULL, NULL, NULL, 169, 'Tainted', 'Combat', 'Team_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (221937, 'Blood Stained and Corroded Crystal (Protein Breakdown)', 220423, 44153, 'Protein Breakdown', 16225, + NULL, NULL, NULL, 17, 'Tainted', 'Combat', 'DOT_-_Line_A', 6, '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (221938, 'Severly Corroded Shadow Crystal (Liquidation)', 220411, 30733, 'Liquidation', 39137, NULL, NULL, NULL, + 156, 'Tainted', 'Drain', 'Nano_Drain_-_Line_A', 215, '', 0, 1, 0, 0, 0, 'Trader', 'SL Loot'), + (221939, 'Severly Corroded Shadow Crystal (Lend Nano: 100)', 220422, 30265, 'Lend Nano: 100', 16303, NULL, NULL, + NULL, 24, 'Tainted', 'Transfer', 'Nano_Point_Buffs', 178, '', 0, 1, 0, 0, 0, 'Trader', 'SL Loot'), + (221940, 'Severly Corroded Shadow Crystal (Maestro: Electrical Engineering)', 220412, 30734, + 'Maestro: Electrical Engineering', 16231, NULL, NULL, NULL, 152, 'Tainted', 'Buffs:_Tradeskills', + 'Electrical_Engineering_Buffs', 172, '', 0, 1, 0, 0, 0, 'Trader', 'SL Loot'), + (221941, 'Severly Corroded Shadow Crystal (Margin Call)', 220424, 30739, 'Margin Call', 39137, NULL, NULL, NULL, + 14, 'Tainted', 'Drain', 'Nano_Drain_-_Line_A', 215, '', 0, 1, 0, 0, 0, 'Trader', 'SL Loot'), + (221942, 'Severly Corroded Shadow Crystal (Maestro: Mechanical Engineering)', 220412, 30736, + 'Maestro: Mechanical Engineering', 16293, NULL, NULL, NULL, 152, 'Tainted', 'Buffs:_Tradeskills', + 'Mechanical_Engineering_Buffs', 174, '', 0, 1, 0, 0, 0, 'Trader', 'SL Loot'), + (221943, 'Severly Corroded Shadow Crystal (Maestro: Pharmaceutical)', 220412, 30737, 'Maestro: Pharmaceutical', + 16316, NULL, NULL, NULL, 156, 'Tainted', 'Buffs:_Tradeskills', 'Pharmaceuticals_Buffs', 175, '', 0, 1, 0, 0, 0, + 'Trader', 'SL Loot'), + (221944, 'Severly Corroded Shadow Crystal (Maestro: Field Quantum Physics)', 220412, 30735, + 'Maestro: Field Quantum Physics', 16244, NULL, NULL, NULL, 152, 'Tainted', 'Buffs:_Tradeskills', + 'Field_Quantum_Physics_Buffs', 173, '', 0, 1, 0, 0, 0, 'Trader', 'SL Loot'), + (221945, 'Severly Corroded Shadow Crystal (Maestro: Weapon Smithing)', 220412, 30738, 'Maestro: Weapon Smithing', + 16349, NULL, NULL, NULL, 156, 'Tainted', 'Buffs:_Tradeskills', 'Weapon_Smithing_Buffs', 176, '', 0, 1, 0, 0, 0, + 'Trader', 'SL Loot'), + (221946, 'Overcharged Corroded Nano Crystal (Particle Flare)', 220437, 45206, 'Particle Flare', 39816, NULL, + NULL, NULL, 129, 'Tainted', 'Nukes', 'Long_5s~4s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (221947, 'Severly Corroded Shadow Crystal (Average Delayed Health Payment)', 220422, 118241, + 'Average Delayed Health Payment', 44246, NULL, NULL, NULL, 44, 'Tainted', 'Transfer', 'Health', 0, 'Team', 0, 1, + 0, 0, 0, 'Trader', 'SL Loot'), + (221948, 'Failed Repaired Crystal (Fortress of Spikes)', 220413, 29763, 'Fortress of Spikes', 16221, NULL, NULL, + NULL, 175, 'Tainted', 'Buffs', 'Damage_Shields', 1, '', 0, 1, 0, 0, 0, 'Engineer', 'SL Loot'), + (221949, 'Hacked Corroded Crystal (Assassin''s Grin)', 220411, 81856, 'Assassin''s Grin', 117896, NULL, NULL, + NULL, 139, 'Tainted', 'Buffs', 'Damage_Buffs_-_Line_A', 4, '', 0, 0, 0, 0, 0, 'Agent', 'SL Loot'), + (221950, 'Severly Corroded Shadow Crystal (Quantum Uncertainty)', 220412, 30745, 'Quantum Uncertainty', 16234, + NULL, NULL, NULL, 139, 'Tainted', 'Buffs', 'Evasion', 0, '', 0, 1, 0, 0, 0, 'Trader', 'SL Loot'), + (221951, 'Corroded Crystal with Bullet Holes (Lesser Absorption Shield)', 220426, 75410, + 'Lesser Absorption Shield', 38996, NULL, NULL, NULL, 37, 'Tainted', 'Buffs', 'Armor_Buffs', 3, '', 0, 1, 0, 0, + 0, 'Soldier', 'SL Loot'), + (221952, 'Tainted Shadow Crystal (One Mind, One Purpose)', 220412, 95522, 'One Mind, One Purpose', 16309, NULL, + NULL, NULL, 162, 'Tainted', 'Buffs', 'Interrupt_Modifier', 183, '', 0, 1, 0, 0, 0, 'Meta-Physicist', 'SL Loot'), + (221953, 'Dirty Money Shadow Crystal (Advanced Bodyguard)', 220411, 46410, 'Advanced Bodyguard', 44135, NULL, + NULL, NULL, 165, 'Tainted', 'Pets', 'Robot', 0, '', 0, 0, 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (221954, 'Cracked Crystal (Poison Stingers)', 220426, 55746, 'Poison Stingers', 16221, 147335, 145835, 148835, + 47, 'Misc', 'Buffs', 'Damage_Shields', 1, '', 0, 1, 0, 0, 0, 'Enforcer', 'SL Loot'), + (221955, 'Hacked Corroded Crystal (Assume Profession: Nanotechnician)', 220412, 117218, + 'Assume Profession: Nanotechnician', 16775, NULL, NULL, NULL, 119, 'Tainted', 'False_Professions', + 'False_Profession', 218, 'Nano-Technician', 0, 1, 0, 0, 0, 'Agent', 'SL Loot'), + (221956, 'Severly Corroded Shadow Crystal (Apprentice: Pharmaceuticals)', 220425, 29101, + 'Apprentice: Pharmaceuticals', 16316, NULL, NULL, NULL, 33, 'Tainted', 'Buffs:_Tradeskills', + 'Pharmaceuticals_Buffs', 175, '', 0, 1, 0, 0, 0, 'Trader', 'SL Loot'), + (221957, 'Overcharged Corroded Nano Crystal (Thunderclap)', 220430, 45201, 'Thunderclap', 39808, NULL, NULL, + NULL, 60, 'Tainted', 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (221958, 'Dirty Money Shadow Crystal (Executive-Grade Attendant-Droid)', 220424, 46380, + 'Executive-Grade Attendant-Droid', 44139, NULL, NULL, NULL, 40, 'Tainted', 'Pets', 'Robot', 0, '', 0, 0, 0, 0, + 0, 'Bureaucrat', 'SL Loot'), + (221959, 'Dirty Money Shadow Crystal (Lesser Blizzard of Red Tape)', 220423, 82531, + 'Lesser Blizzard of Red Tape', 46276, NULL, NULL, NULL, 7, 'Tainted', 'Crowd_Control', 'Snare', 145, 'Target', + 0, 1, 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (221960, 'Snow Crashed Shadow Crystal (Greater Delay Retreat)', 220437, 56220, 'Greater Delay Retreat', 46275, + NULL, NULL, NULL, 139, 'Tainted', 'Crowd_Control', 'Root', 146, '', 0, 1, 0, 0, 0, 'Fixer', 'SL Loot'), + (221961, 'Tainted Shadow Crystal (Rage Materialization)', 220424, 43736, 'Rage Materialization', 295577, NULL, + NULL, NULL, 47, 'Tainted', 'Pet', 'Attack_Pet', 0, '', 0, 1, 0, 0, 0, 'Meta-Physicist', 'SL Loot'), + (221962, 'Badly Corroded Crystal (Lesser Shen Protection)', 220426, 75346, 'Lesser Shen Protection', 38976, NULL, + NULL, NULL, 33, 'Tainted', 'Buffs', 'Armor_Buffs', 3, '', 0, 1, 0, 0, 0, 'Martial Artist', 'SL Loot'), + (221963, 'Blood Stained and Corroded Crystal (Greater Field Dressings)', 220436, 43888, + 'Greater Field Dressings', 44234, NULL, NULL, NULL, 149, 'Tainted', 'Combat', 'Target_Healing', 0, '', 0, 1, 0, + 0, 0, 'Doctor', 'SL Loot'), + (221964, 'Blood Stained and Corroded Crystal (Tailored Cure)', 220429, 43823, 'Tailored Cure', 44231, NULL, NULL, + NULL, 57, 'Tainted', 'Combat', 'Target_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (221965, 'Severly Corroded Shadow Crystal (Trading Mogul)', 220412, 30706, 'Trading Mogul', 16309, NULL, NULL, + NULL, 165, 'Tainted', 'Buffs:_Tradeskills', 'Computer_Literacy_Buffs', 177, '', 0, 1, 0, 0, 0, 'Trader', + 'SL Loot'), + (221966, 'Dirty Money Shadow Crystal (Limited Secretary-Droid)', 220431, 46361, 'Limited Secretary-Droid', 44140, + NULL, NULL, NULL, 99, 'Tainted', 'Pets', 'Robot', 0, '', 0, 0, 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (221968, 'Overcharged Corroded Nano Crystal (Mass Cornea Attack)', 220412, 83961, 'Mass Cornea Attack', 38845, + NULL, NULL, NULL, 109, 'Tainted', 'DeBuffs', 'Add_All_Offence_DeBuffs', 13, 'Area', 0, 1, 0, 0, 0, + 'Nano-Technician', 'SL Loot'), + (221970, 'Dirty Money Shadow Crystal (Lesser Fear of Attention)', 220437, 82163, 'Lesser Fear of Attention', + 46274, NULL, NULL, NULL, 149, 'Tainted', 'Crowd_Control', 'Root', 146, 'Area', 0, 1, 0, 0, 0, 'Bureaucrat', + 'SL Loot'), + (221971, 'Failed Repaired Crystal (Minor Harmonic Cocoon)', 220433, 70298, 'Minor Harmonic Cocoon', 39001, NULL, + NULL, NULL, 66, 'Tainted', 'Buffs', 'Reflect_Shield', 2, '', 0, 1, 0, 0, 0, 'Engineer', 'SL Loot'), + (221972, 'Blood Stained and Corroded Crystal (Shatter Bone)', 220423, 82007, 'Shatter Bone', 39809, NULL, NULL, + NULL, 37, 'Tainted', 'Combat', 'Nuke', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (221973, 'Badly Eroded Crystal (Natural Remedy)', 220429, 136681, 'Natural Remedy', 44229, NULL, NULL, NULL, 90, + 'Tainted', 'Combat', 'Single_Target_Healing', 951, '', 0, 1, 0, 0, 0, 'Adventurer', 'SL Loot'), + (221974, 'Severly Corroded Shadow Crystal (Expert Health Haggler)', 220429, 121502, 'Expert Health Haggler', + 44233, NULL, NULL, NULL, 97, 'Tainted', 'Transfer', 'Health', 0, 'Target', 0, 1, 0, 0, 0, 'Trader', 'SL Loot'), + (221975, 'Tainted Shadow Crystal (Supreme Rage Materialization)', 220431, 43749, 'Supreme Rage Materialization', + 295577, NULL, NULL, NULL, 60, 'Tainted', 'Pet', 'Attack_Pet', 0, '', 0, 1, 0, 0, 0, 'Meta-Physicist', + 'SL Loot'), + (221976, 'Dirty Money Shadow Crystal (Visions of a Doomed Future)', 220412, 121139, 'Visions of a Doomed Future', + 39145, NULL, NULL, NULL, 130, 'Tainted', 'Crowd_Control', 'Fear', 256, '', 0, 1, 0, 0, 0, 'Bureaucrat', + 'SL Loot'), + (221977, 'Dirty Money Shadow Crystal (Faithful Aide-Droid)', 220431, 46370, 'Faithful Aide-Droid', 44139, NULL, + NULL, NULL, 76, 'Tainted', 'Pets', 'Robot', 0, '', 0, 0, 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (221978, 'Corroded Crystal with Bullet Holes (Rifle Mastery)', 220425, 29250, 'Rifle Mastery', 16329, NULL, NULL, + NULL, 37, 'Tainted', 'Buffs', 'Rifle_Buffs', 194, '', 0, 1, 0, 0, 0, 'Soldier', 'SL Loot'), + (221979, 'Severly Corroded Shadow Crystal (Glib Health Haggler)', 220436, 121501, 'Glib Health Haggler', 44234, + NULL, NULL, NULL, 136, 'Tainted', 'Transfer', 'Health', 0, 'Target', 0, 1, 0, 0, 0, 'Trader', 'SL Loot'), + (221980, 'Severly Corroded Shadow Crystal (Successful Health Haggler)', 220429, 121506, + 'Successful Health Haggler', 44231, NULL, NULL, NULL, 54, 'Tainted', 'Transfer', 'Health', 0, 'Target', 0, 1, 0, + 0, 0, 'Trader', 'SL Loot'), + (221981, 'Corroded Crystal with Bullet Holes (Total Mirror Shield Mk IX)', 220413, 70305, + 'Total Mirror Shield Mk IX', 101018, NULL, NULL, NULL, 132, 'Tainted', 'Buffs', 'Shadowland_Reflect_Base', 694, + 'Self', 0, 1, 0, 0, 0, 'Soldier', 'SL Loot'), + (221982, 'Dirty Money Shadow Crystal (Subsonic Blast)', 220423, 81998, 'Subsonic Blast', 39808, NULL, NULL, NULL, + 20, 'Tainted', 'Nukes', 'Normal', 0, '', 0, 1, 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (221983, 'Overcharged Corroded Nano Crystal (Photon Deflector)', 220412, 83949, 'Photon Deflector', 39126, NULL, + NULL, NULL, 172, 'Tainted', 'DeBuffs', 'Add_All_Offence_DeBuffs', 13, 'Target', 0, 1, 0, 0, 0, + 'Nano-Technician', 'SL Loot'), + (221984, 'Severly Corroded Shadow Crystal (Simple Mind, Simple Pleasures)', 220437, 100439, + 'Simple Mind, Simple Pleasures', 46271, NULL, NULL, NULL, 162, 'Tainted', 'Crowd_Control', 'Mezz', 147, '', 0, + 1, 0, 0, 0, 'Trader', 'SL Loot'), + (221985, 'Blood Stained and Corroded Crystal (Life Reinforcement)', 220422, 96252, 'Life Reinforcement', 39012, + NULL, NULL, NULL, 50, 'Tainted', 'Buffs', 'Doctor_Short_HP_Buffs', 185, '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (221986, 'Corroded Crystal with Bullet Holes (Advanced Combat Barrier)', 220413, 75406, + 'Advanced Combat Barrier', 39276, NULL, NULL, NULL, 119, 'Tainted', 'Buffs', 'Armor_Buffs', 3, '', 0, 1, 0, 0, + 0, 'Soldier', 'SL Loot'), + (221987, 'Dirty Money Shadow Crystal (Supervisor-Grade Secretary-Droid)', 220411, 46350, + 'Supervisor-Grade Secretary-Droid', 44140, NULL, NULL, NULL, 113, 'Tainted', 'Pets', 'Robot', 0, '', 0, 0, 0, 0, + 0, 'Bureaucrat', 'SL Loot'), + (221988, 'Cracked Crystal (Lightning Shield)', 220413, 55749, 'Lightning Shield', 16221, 147322, 145822, 148822, + 106, 'Misc', 'Buffs', 'Damage_Shields', 1, '', 0, 1, 0, 0, 0, 'Enforcer', 'SL Loot'), + (221989, 'Dirty Money Shadow Crystal (Lesser Stumbling Steps)', 220423, 82528, 'Lesser Stumbling Steps', 46276, + NULL, NULL, NULL, 4, 'Tainted', 'Crowd_Control', 'Snare', 145, 'Target', 0, 1, 0, 0, 0, 'Bureaucrat', + 'SL Loot'), + (221990, 'Severly Corroded Shadow Crystal (Distracting Baubles)', 220423, 100437, 'Distracting Baubles', 46269, + NULL, NULL, NULL, 47, 'Tainted', 'Crowd_Control', 'Mezz', 147, '', 0, 1, 0, 0, 0, 'Trader', 'SL Loot'), + (221991, 'Cracked Crystal (Challenger to Cyclops)', 220424, 49742, 'Challenger to Cyclops', 16241, 147291, + 145791, 148791, 4, 'Misc', 'Buffs', 'Challenger', 5, '', 0, 1, 0, 0, 0, 'Enforcer', 'SL Loot'), + (221992, 'Corroded Crystal with Bullet Holes (Reactive Reflective Field (Extended))', 220413, 70311, + 'Reactive Reflective Field (Extended)', 101018, NULL, NULL, NULL, 142, 'Tainted', 'Buffs', + 'Shadowland_Reflect_Base', 694, 'Target', 0, 1, 0, 0, 0, 'Soldier', 'SL Loot'), + (221993, 'Overcharged Corroded Nano Crystal (Molecular Flechettes)', 220437, 45217, 'Molecular Flechettes', + 45186, NULL, NULL, NULL, 165, 'Tainted', 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', + 'SL Loot'), + (221994, 'Snow Crashed Shadow Crystal (Advanced Insurance Hack)', 220436, 85228, 'Advanced Insurance Hack', + 44231, NULL, NULL, NULL, 103, 'Tainted', 'Buffs', 'Fixer_Short_Heal_Over_Time', 12, '', 0, 1, 0, 0, 0, 'Fixer', + 'SL Loot'), + (221995, 'Overcharged Corroded Nano Crystal (Sudden Affliction)', 220437, 45198, 'Sudden Affliction', 45174, + NULL, NULL, NULL, 162, 'Tainted', 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (221996, 'Tainted Shadow Crystal (Quantum Wings)', 220411, 120499, 'Quantum Wings', 16348, NULL, NULL, NULL, 103, + 'Tainted', 'Vehicle', 'Air', 0, '', 0, 1, 0, 0, 0, 'Meta-Physicist', 'SL Loot'), + (221997, 'Blood Stained and Corroded Crystal (Minor Team Purification)', 220422, 43914, + 'Minor Team Purification', 44245, NULL, NULL, NULL, 33, 'Tainted', 'Combat', 'Team_Healing', 0, '', 0, 1, 0, 0, + 0, 'Doctor', 'SL Loot'), + (221999, 'Blood Stained and Corroded Crystal (Team Checkup)', 220429, 43910, 'Team Checkup', 44246, NULL, NULL, + NULL, 70, 'Tainted', 'Combat', 'Team_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (222000, 'Badly Corroded Crystal (Last Minute Adjustments)', 220412, 95528, 'Last Minute Adjustments', 291164, + NULL, NULL, NULL, 139, 'Tainted', 'Buffs', 'Critical_Increase_Buffs', 182, 'Self', 0, 0, 0, 0, 0, + 'Martial Artist', 'SL Loot'), + (222001, 'Overcharged Corroded Nano Crystal (Blight)', 220423, 28595, 'Blight', 16226, NULL, NULL, NULL, 33, + 'Tainted', 'Combat', 'Nano-Technician_DOT_-_Strain_A', 8, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (222002, 'Blood Stained and Corroded Crystal (Superior Dress Wounds)', 220429, 43821, 'Superior Dress Wounds', + 44232, NULL, NULL, NULL, 96, 'Tainted', 'Combat', 'Target_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (222003, 'Badly Eroded Crystal (Implacability of Life)', 220436, 136676, 'Implacability of Life', 44231, NULL, + NULL, NULL, 153, 'Tainted', 'Combat', 'Single_Target_Healing', 951, '', 0, 1, 0, 0, 0, 'Adventurer', 'SL Loot'), + (222004, 'Dirty Money Shadow Crystal (Mass Illusory Paralysis)', 220423, 82157, 'Mass Illusory Paralysis', 46272, + NULL, NULL, NULL, 27, 'Tainted', 'Crowd_Control', 'Root', 146, 'Area', 0, 1, 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (222005, 'Overcharged Corroded Nano Crystal (Coronet of Frost)', 220437, 45238, 'Coronet of Frost', 39798, NULL, + NULL, NULL, 132, 'Tainted', 'Nukes', 'Halo_Nano_DeBuffs', 11, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (222006, 'Dirty Money Shadow Crystal (Allure of Servitude)', 220412, 99198, 'Allure of Servitude', 39137, NULL, + NULL, NULL, 136, 'Tainted', 'Crowd_Control', 'Charm_Other', 202, 'Long', 0, 1, 0, 0, 0, 'Bureaucrat', + 'SL Loot'), + (222007, 'Failed Repaired Crystal (Superior Shielding Barrier)', 220433, 70552, 'Superior Shielding Barrier', + 39039, NULL, NULL, NULL, 86, 'Tainted', 'Buffs', 'Armor_Buffs', 3, '', 0, 1, 0, 0, 0, 'Engineer', 'SL Loot'), + (222008, 'Corroded Crystal with Bullet Holes (Total Mirror Shield Mk VII)', 220413, 70301, + 'Total Mirror Shield Mk VII', 101017, NULL, NULL, NULL, 126, 'Tainted', 'Buffs', 'Shadowland_Reflect_Base', 694, + 'Self', 0, 1, 0, 0, 0, 'Soldier', 'SL Loot'), + (222009, 'Overcharged Corroded Nano Crystal (Focused Ray)', 220437, 45228, 'Focused Ray', 39793, NULL, NULL, + NULL, 116, 'Tainted', 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (222010, 'Severly Corroded Shadow Crystal (Sophisticated Health Plunder)', 220436, 77195, + 'Sophisticated Health Plunder', 117914, NULL, NULL, NULL, 182, 'Tainted', 'Drain', 'Health', 0, '', 0, 1, 0, 0, + 0, 'Trader', 'SL Loot'), + (222011, 'Overcharged Corroded Nano Crystal (Chaotic Entropy)', 220423, 45248, 'Chaotic Entropy', 39802, NULL, + NULL, NULL, 47, 'Tainted', 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (222012, 'Failed Repaired Crystal (Shielding Barrier)', 220433, 70554, 'Shielding Barrier', 38898, NULL, NULL, + NULL, 63, 'Tainted', 'Buffs', 'Armor_Buffs', 3, '', 0, 1, 0, 0, 0, 'Engineer', 'SL Loot'), + (222013, 'Tainted Shadow Crystal (Calling of Altumus)', 220411, 125740, 'Calling of Altumus', 295568, NULL, NULL, + NULL, 156, 'Tainted', 'Pet', 'Heal_Pet', 0, '', 0, 1, 0, 0, 0, 'Meta-Physicist', 'SL Loot'), + (222014, 'Tainted Shadow Crystal (Wrath Incarnation)', 220431, 43714, 'Wrath Incarnation', 295577, NULL, NULL, + NULL, 86, 'Tainted', 'Pet', 'Attack_Pet', 0, '', 0, 1, 0, 0, 0, 'Meta-Physicist', 'SL Loot'), + (222015, 'Blood Stained and Corroded Crystal (Superior Life Reinforcement)', 220436, 96259, + 'Superior Life Reinforcement', 39292, NULL, NULL, NULL, 169, 'Tainted', 'Buffs', 'Doctor_Short_HP_Buffs', 185, + '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (222016, 'Failed Repaired Crystal (Flawed Warbot)', 220411, 45721, 'Flawed Warbot', 44140, NULL, NULL, NULL, 146, + 'Tainted', 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'SL Loot'), + (222017, 'Dirty Money Shadow Crystal (Supervisor-Grade Helper-Droid)', 220424, 46357, + 'Supervisor-Grade Helper-Droid', 16307, NULL, NULL, NULL, 20, 'Tainted', 'Pets', 'Robot', 0, '', 0, 0, 0, 0, 0, + 'Bureaucrat', 'SL Loot'), + (222018, 'Dirty Money Shadow Crystal (Muddled Psyche)', 220437, 100426, 'Muddled Psyche', 84276, NULL, NULL, + NULL, 126, 'Tainted', 'Crowd_Control', 'Mezz', 147, 'Area', 0, 1, 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (222019, 'Badly Corroded Crystal (Meditate on an Autumn Leaf)', 220424, 81819, 'Meditate on an Autumn Leaf', + 39028, NULL, NULL, NULL, 40, 'Tainted', 'Buffs', 'Controlled_Destruction_Buffs', 222, '', 0, 1, 0, 0, 0, + 'Martial Artist', 'SL Loot'), + (222020, 'Badly Corroded Crystal (Greater Titanium Skin)', 220413, 75340, 'Greater Titanium Skin', 39256, NULL, + NULL, NULL, 123, 'Tainted', 'Buffs', 'Armor_Buffs', 3, '', 0, 1, 0, 0, 0, 'Martial Artist', 'SL Loot'), + (222021, 'Dirty Money Shadow Crystal (Lesser Pheromone Control)', 220425, 99207, 'Lesser Pheromone Control', + 39137, NULL, NULL, NULL, 27, 'Tainted', 'Crowd_Control', 'Charm_Other', 202, 'Short', 0, 1, 0, 0, 0, + 'Bureaucrat', 'SL Loot'), + (222022, 'Badly Corroded Crystal (Toughen Skin)', 220426, 75350, 'Toughen Skin', 16294, NULL, NULL, NULL, 1, + 'Tainted', 'Buffs', 'Armor_Buffs', 3, '', 0, 1, 0, 0, 0, 'Martial Artist', 'SL Loot'), + (222023, 'Overcharged Corroded Nano Crystal (Particle Shower)', 220430, 45207, 'Particle Shower', 39815, NULL, + NULL, NULL, 90, 'Tainted', 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (222024, 'Corroded Crystal with Bullet Holes (Minor Deflection Shield)', 220426, 70323, + 'Minor Deflection Shield', 16319, NULL, NULL, NULL, 14, 'Tainted', 'Buffs', 'Shadowland_Reflect_Base', 694, + 'Target', 0, 1, 0, 0, 0, 'Soldier', 'SL Loot'), + (222026, 'Overcharged Corroded Nano Crystal (Crown of Frost)', 220437, 45239, 'Crown of Frost', 45171, NULL, + NULL, NULL, 156, 'Tainted', 'Nukes', 'Halo_Nano_DeBuffs', 11, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (222027, 'Tainted Shadow Crystal (Lesser Frenzy Embodiment)', 220411, 43732, 'Summon Frenzy Embodiment', 295577, + NULL, NULL, NULL, 113, 'Tainted', 'Pet', 'Attack_Pet_Summon', 0, '', 0, 1, 0, 0, 0, 'Meta-Physicist', + 'SL Loot'), + (222028, 'Snow Crashed Shadow Crystal (Greater Halt Flight)', 220430, 56223, 'Greater Halt Flight', 46274, NULL, + NULL, NULL, 90, 'Tainted', 'Crowd_Control', 'Root', 146, '', 0, 1, 0, 0, 0, 'Fixer', 'SL Loot'), + (222029, 'Overcharged Corroded Nano Crystal (Fleeting Immunity)', 220413, 117676, 'Fleeting Immunity', 100995, + NULL, NULL, NULL, 182, 'Tainted', 'Buffs', 'Absorb_AC_Buffs', 219, '', 0, 1, 0, 0, 0, 'Nano-Technician', + 'SL Loot'), + (222030, 'Badly Corroded Crystal (Lotus on Water)', 220424, 81820, 'Lotus on Water', 16350, NULL, NULL, NULL, 27, + 'Tainted', 'Buffs', 'Controlled_Destruction_Buffs', 222, '', 0, 1, 0, 0, 0, 'Martial Artist', 'SL Loot'), + (222031, 'Severly Corroded Shadow Crystal (Major Health Funnel)', 220422, 76720, 'Major Health Funnel', 117907, + NULL, NULL, NULL, 24, 'Tainted', 'Drain', 'Health', 0, '', 0, 1, 0, 0, 0, 'Trader', 'SL Loot'), + (222032, 'Cracked Crystal (Roar of Aggression)', 220412, 100210, 'Roar of Aggression', 16230, 147339, 145839, + 148839, 116, 'Misc', 'Crowd_Control', 'Taunt_Target', 0, '', 0, 1, 0, 0, 0, 'Enforcer', 'SL Loot'), + (222033, 'Failed Repaired Crystal (Perfected Automaton)', 220424, 45698, 'Perfected Automaton', 16307, NULL, + NULL, NULL, 14, 'Tainted', 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'SL Loot'), + (222034, 'Overcharged Corroded Nano Crystal (Peaceful Intentions)', 220437, 100443, 'Peaceful Intentions', 46271, + NULL, NULL, NULL, 159, 'Tainted', 'Crowd_Control', 'Mezz', 147, 'Calm', 0, 1, 0, 0, 0, 'Nano-Technician', + 'SL Loot'), + (222035, 'Blood Stained and Corroded Crystal (Team Tissue Repair)', 220436, 43903, 'Team Tissue Repair', 44248, + NULL, NULL, NULL, 139, 'Tainted', 'Combat', 'Team_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (222037, 'Overcharged Corroded Nano Crystal (Convergent Energy Beam)', 220430, 45933, 'Convergent Energy Beam', + 39803, NULL, NULL, NULL, 76, 'Tainted', 'Nukes', 'Medium_3s~2s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', + 'SL Loot'), + (222038, 'Badly Corroded Crystal (Sadness of the Willow)', 220431, 81818, 'Sadness of the Willow', 39168, NULL, + NULL, NULL, 76, 'Tainted', 'Buffs', 'Controlled_Destruction_Buffs', 222, '', 0, 1, 0, 0, 0, 'Martial Artist', + 'SL Loot'), + (222039, 'Severly Corroded Shadow Crystal (Delayed Health Payment)', 220429, 118236, 'Delayed Health Payment', + 44247, NULL, NULL, NULL, 70, 'Tainted', 'Transfer', 'Health', 0, 'Team', 0, 1, 0, 0, 0, 'Trader', 'SL Loot'), + (222040, 'Tainted Shadow Crystal (Superior Frenzy Embodiment)', 220411, 43741, 'Superior Frenzy Embodiment', + 295577, NULL, NULL, NULL, 139, 'Tainted', 'Pet', 'Attack_Pet', 0, '', 0, 1, 0, 0, 0, 'Meta-Physicist', + 'SL Loot'), + (222041, 'Failed Repaired Crystal (Inferior Warbot)', 220411, 45707, 'Inferior Warbot', 44140, NULL, NULL, NULL, + 139, 'Tainted', 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'SL Loot'), + (222042, 'Failed Repaired Crystal (Flawed Gladiatorbot)', 220431, 45719, 'Flawed Gladiatorbot', 44139, NULL, + NULL, NULL, 63, 'Tainted', 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'SL Loot'), + (222043, 'Failed Repaired Crystal (Feeble Warbot)', 220411, 45715, 'Feeble Warbot', 44140, NULL, NULL, NULL, 129, + 'Tainted', 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'SL Loot'), + (222044, 'Badly Corroded Crystal (2H Edged Weapon Inexperience)', 220425, 27078, '2H Edged Weapon Inexperience', + 39163, NULL, NULL, NULL, 4, 'Tainted', 'DeBuffs_-_Melee', '2H_Edged_DeBuffs', 26, '', 0, 0, 0, 0, 0, 'General', + 'SL Loot'), + (222045, 'Dirty Money Shadow Crystal (Advanced Worker)', 220424, 46399, 'Advanced Worker', 16307, NULL, NULL, + NULL, 7, 'Tainted', 'Pets', 'Robot', 0, '', 0, 0, 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (222046, 'Dirty Money Shadow Crystal (Director-Grade Worker-Droid)', 220424, 46386, + 'Director-Grade Worker-Droid', 16307, NULL, NULL, NULL, 14, 'Tainted', 'Pets', 'Robot', 0, '', 0, 0, 0, 0, 0, + 'Bureaucrat', 'SL Loot'), + (222047, 'Failed Repaired Crystal (Advanced Defensive Screen)', 220413, 70538, 'Advanced Defensive Screen', + 39179, NULL, NULL, NULL, 126, 'Tainted', 'Buffs', 'Armor_Buffs', 3, '', 0, 1, 0, 0, 0, 'Engineer', 'SL Loot'), + (222048, 'Failed Repaired Crystal (Feeble Android)', 220424, 45712, 'Feeble Android', 16307, NULL, NULL, NULL, + 20, 'Tainted', 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'SL Loot'), + (222049, 'Snow Crashed Shadow Crystal (Medical Claim)', 220422, 85234, 'Medical Claim', 16246, NULL, NULL, NULL, + 17, 'Tainted', 'Buffs', 'Fixer_Short_Heal_Over_Time', 12, '', 0, 1, 0, 0, 0, 'Fixer', 'SL Loot'), + (222050, 'Hacked Corroded Crystal (Paralyze with Indecision)', 220430, 56212, 'Paralyze with Indecision', 46274, + NULL, NULL, NULL, 99, 'Tainted', 'Crowd_Control', 'Root', 146, '', 0, 0, 0, 0, 0, 'Agent', 'SL Loot'), + (222051, 'Overcharged Corroded Nano Crystal (Bio-Acid Spray)', 220437, 45261, 'Bio-Acid Spray', 39795, NULL, + NULL, NULL, 119, 'Tainted', 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (222052, 'Blood Stained and Corroded Crystal (Continuous Cellular Reconditioning)', 220436, 43867, + 'Continuous Cellular Reconditioning', 44231, NULL, NULL, NULL, 126, 'Tainted', 'Buffs', 'Heal_Over_Time', 12, + '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (222053, 'Tainted Shadow Crystal (Mind Scream)', 220423, 29298, 'Mind Scream', 39802, NULL, NULL, NULL, 37, + 'Tainted', 'Combat', 'Metaphysicist_Mind_Damage_Nano_DeBuffs', 221, '', 0, 1, 0, 0, 0, 'Meta-Physicist', + 'SL Loot'), + (222054, 'Overcharged Corroded Nano Crystal (Poke Eyes)', 220425, 83944, 'Poke Eyes', 39126, NULL, NULL, NULL, 4, + 'Tainted', 'DeBuffs', 'Add_All_Offence_DeBuffs', 13, 'Target', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (222055, 'Cracked Crystal (Essence of Cyclops)', 220429, 95702, 'Essence of Cyclops', 39046, 147301, 145801, + 148801, 57, 'Misc', 'Buffs', 'HP_Buffs', 151, 'Target', 0, 1, 0, 0, 0, 'Enforcer', 'SL Loot'), + (222058, 'Corroded Crystal with Bullet Holes (Enraged Mind)', 220425, 100206, 'Enraged Mind', 16230, NULL, NULL, + NULL, 30, 'Tainted', 'Crowd_Control', 'Taunt_(normal)', 0, '', 0, 1, 0, 0, 0, 'Soldier', 'SL Loot'), + (222059, 'Overcharged Corroded Nano Crystal (On-The-Fly Compression)', 220429, 95414, 'On-The-Fly Compression', + 16303, NULL, NULL, NULL, 73, 'Tainted', 'Buffs', 'Nano_Point_Cost_Buffs', 148, '', 0, 1, 0, 0, 0, + 'Nano-Technician', 'SL Loot'), + (222060, 'Tainted Shadow Crystal (Superior Anger Manifestation)', 220424, 43739, 'Superior Anger Manifestation', + 295577, NULL, NULL, NULL, 4, 'Tainted', 'Pet', 'Attack_Pet', 0, '', 0, 1, 0, 0, 0, 'Meta-Physicist', 'SL Loot'), + (222061, 'Severly Corroded Shadow Crystal (Patchy Health Plunder)', 220436, 76499, 'Patchy Health Plunder', + 117912, NULL, NULL, NULL, 142, 'Tainted', 'Drain', 'Health', 0, '', 0, 1, 0, 0, 0, 'Trader', 'SL Loot'), + (222062, 'Dirty Money Shadow Crystal (Lesser Musculature Command)', 220423, 55990, 'Lesser Musculature Command', + 46273, NULL, NULL, NULL, 33, 'Tainted', 'Crowd_Control', 'Root', 146, 'Target', 0, 1, 0, 0, 0, 'Bureaucrat', + 'SL Loot'), + (222063, 'Failed Repaired Crystal (Citadel of Spikes)', 220413, 55769, 'Citadel of Spikes', 16221, NULL, NULL, + NULL, 149, 'Tainted', 'Buffs', 'Damage_Shields', 1, '', 0, 1, 0, 0, 0, 'Engineer', 'SL Loot'), + (222064, 'Badly Corroded Crystal (Sway of Bamboo)', 220411, 81815, 'Sway of Bamboo', 39308, NULL, NULL, NULL, + 113, 'Tainted', 'Buffs', 'Controlled_Destruction_Buffs', 222, '', 0, 1, 0, 0, 0, 'Martial Artist', 'SL Loot'), + (222065, 'Tainted Shadow Crystal (Greater Wrath Incarnation)', 220431, 43724, 'Greater Wrath Incarnation', + 295577, NULL, NULL, NULL, 93, 'Tainted', 'Pet', 'Attack_Pet', 0, '', 0, 1, 0, 0, 0, 'Meta-Physicist', + 'SL Loot'), + (222066, 'Dirty Money Shadow Crystal (Limited Aide-Droid)', 220431, 46365, 'Limited Aide-Droid', 44139, NULL, + NULL, NULL, 73, 'Tainted', 'Pets', 'Robot', 0, '', 0, 0, 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (222067, 'Dirty Money Shadow Crystal (Illusory Paralysis)', 220430, 55988, 'Illusory Paralysis', 46273, NULL, + NULL, NULL, 80, 'Tainted', 'Crowd_Control', 'Root', 146, 'Target', 0, 1, 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (222068, 'Badly Corroded Crystal (Waiting Panda)', 220411, 81814, 'Waiting Panda', 117954, NULL, NULL, NULL, 132, + 'Tainted', 'Buffs', 'Controlled_Destruction_Buffs', 222, '', 0, 1, 0, 0, 0, 'Martial Artist', 'SL Loot'), + (222069, 'Blood Stained and Corroded Crystal (Enhance Team Health)', 220422, 42397, 'Enhance Team Health', 38905, + NULL, NULL, NULL, 1, 'Tainted', 'Buffs', 'Doctor_HP_Buffs', 184, '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (222071, 'Dirty Money Shadow Crystal (Droid Overhaul)', 220436, 30071, 'Droid Overhaul', 44229, NULL, NULL, NULL, + 136, 'Tainted', 'Pet_Buffs', 'Heal', 0, '', 0, 1, 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (222072, 'Tainted Shadow Crystal (Shed Anger)', 220425, 99112, 'Shed Anger', 39168, NULL, NULL, NULL, 7, + 'Tainted', 'DeBuffs', 'Meta-Physicist_Initiatives/Damage_DeBuffs', 187, '', 0, 1, 0, 0, 0, 'Meta-Physicist', + 'SL Loot'), + (222073, 'Overcharged Corroded Nano Crystal (Greater Searing Stream)', 220437, 45235, 'Greater Searing Stream', + 45169, NULL, NULL, NULL, 172, 'Tainted', 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', + 'SL Loot'), + (222075, 'Overcharged Corroded Nano Crystal (Enveloping Darkness)', 220432, 83962, 'Enveloping Darkness', 38845, + NULL, NULL, NULL, 57, 'Tainted', 'DeBuffs', 'Add_All_Offence_DeBuffs', 13, 'Area', 0, 1, 0, 0, 0, + 'Nano-Technician', 'SL Loot'), + (222076, 'Failed Repaired Crystal (Feeble Guardbot)', 220431, 45714, 'Feeble Guardbot', 44139, NULL, NULL, NULL, + 90, 'Tainted', 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'SL Loot'), + (222077, 'Badly Eroded Crystal (Survival Aid)', 220425, 26704, 'Survival Aid', 16239, NULL, NULL, NULL, 33, + 'Tainted', 'Buffs', 'First_Aid_And_Treatment_Buffs', 190, '', 0, 1, 0, 0, 0, 'Adventurer', 'SL Loot'), + (222078, 'Failed Repaired Crystal (Semi-Sentient Automaton)', 220424, 45681, 'Semi-Sentient Automaton', 16307, + NULL, NULL, NULL, 17, 'Tainted', 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'SL Loot'), + (222079, 'Failed Repaired Crystal (Guardbot)', 220411, 45702, 'Guardbot', 44139, NULL, NULL, NULL, 109, + 'Tainted', 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'SL Loot'), + (222080, 'Corroded Crystal with Bullet Holes (Minor Reflective Field (Extended))', 220413, 70319, + 'Minor Reflective Field (Extended)', 39281, NULL, NULL, NULL, 119, 'Tainted', 'Buffs', + 'Shadowland_Reflect_Base', 694, 'Target', 0, 1, 0, 0, 0, 'Soldier', 'SL Loot'), + (222081, 'Dirty Money Shadow Crystal (Faithful Secretary-Droid)', 220411, 46376, 'Faithful Secretary-Droid', + 44140, NULL, NULL, NULL, 106, 'Tainted', 'Pets', 'Robot', 0, '', 0, 0, 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (222082, 'Blood Stained and Corroded Crystal (Life Balm)', 220436, 43808, 'Life Balm', 44234, NULL, NULL, NULL, + 152, 'Tainted', 'Combat', 'Target_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (222084, 'Overcharged Corroded Nano Crystal (Jobe Nano Libraries)', 220436, 95413, 'Jobe Nano Libraries', 16303, + NULL, NULL, NULL, 152, 'Tainted', 'Buffs', 'Nano_Point_Cost_Buffs', 148, '', 0, 1, 0, 0, 0, 'Nano-Technician', + 'SL Loot'), + (222085, 'Blood Stained and Corroded Crystal (Medic''s Call)', 220429, 42402, 'Medic''s Call', 44246, NULL, NULL, + NULL, 57, 'Tainted', 'Combat', 'Team_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (222086, 'Hacked Corroded Crystal (Death''s Knocking)', 220437, 81933, 'Death''s Knocking', 49685, NULL, NULL, + NULL, 136, 'Tainted', 'Combat', 'DOT_Agent_Strain_A', 9, '', 0, 0, 0, 0, 0, 'Agent', 'SL Loot'), + (222087, 'Dirty Money Shadow Crystal (Advanced Helper)', 220424, 46411, 'Advanced Helper', 16307, NULL, NULL, + NULL, 20, 'Tainted', 'Pets', 'Robot', 0, '', 0, 0, 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (222088, 'Badly Corroded Crystal (2H Edged Weapon Expertise)', 220425, 27076, '2H Edged Weapon Expertise', 16347, + NULL, NULL, NULL, 10, 'Tainted', 'Buffs_-_Melee', '2H_Edged_Buffs', 25, '', 0, 0, 0, 0, 0, 'General', + 'SL Loot'), + (222090, 'Failed Repaired Crystal (Advanced Warbot)', 220411, 45734, 'Advanced Warbot', 44140, NULL, NULL, NULL, + 152, 'Tainted', 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'SL Loot'), + (222091, 'Dirty Money Shadow Crystal (Director-Grade Bodyguard)', 220411, 46391, 'Director-Grade Bodyguard', + 44135, NULL, NULL, NULL, 169, 'Tainted', 'Pets', 'Robot', 0, '', 0, 0, 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (222092, 'Snow Crashed Shadow Crystal (Spin Nanoweb)', 220437, 85216, 'Spin Nanoweb', 84286, NULL, NULL, NULL, + 156, 'Tainted', 'Crowd_Control', 'Snare', 145, 'Area', 0, 1, 0, 0, 0, 'Fixer', 'SL Loot'), + (222093, 'Dirty Money Shadow Crystal (Greater Mass Illusory Paralysis)', 220437, 82161, + 'Greater Mass Illusory Paralysis', 46273, NULL, NULL, NULL, 126, 'Tainted', 'Crowd_Control', 'Root', 146, + 'Area', 0, 1, 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (222094, 'Overcharged Corroded Nano Crystal (Foul Bane)', 220430, 45921, 'Foul Bane', 39800, NULL, NULL, NULL, + 90, 'Tainted', 'Nukes', 'Fast_1s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (222095, 'Cracked Crystal (Glowing Retribution)', 220426, 29642, 'Glowing Retribution', 16221, 147316, 145816, + 148816, 27, 'Misc', 'Buffs', 'Damage_Shields', 1, '', 0, 1, 0, 0, 0, 'Enforcer', 'SL Loot'), + (222096, 'Failed Repaired Crystal (Advanced Automaton)', 220424, 45731, 'Advanced Automaton', 16307, NULL, NULL, + NULL, 14, 'Tainted', 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'SL Loot'), + (222097, 'Blood Stained and Corroded Crystal (Minor Balm)', 220422, 43835, 'Minor Balm', 44230, NULL, NULL, NULL, + 40, 'Tainted', 'Combat', 'Target_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (222098, 'Tainted Shadow Crystal (Lesser Fury Externalization)', 220424, 43733, 'Summon Fury Externalization', + 295577, NULL, NULL, NULL, 14, 'Tainted', 'Pet', 'Attack_Pet_Summon', 0, '', 0, 1, 0, 0, 0, 'Meta-Physicist', + 'SL Loot'), + (222099, 'Dirty Money Shadow Crystal (Director-Grade Secretary-Droid)', 220411, 46394, + 'Director-Grade Secretary-Droid', 44140, NULL, NULL, NULL, 123, 'Tainted', 'Pets', 'Robot', 0, '', 0, 0, 0, 0, + 0, 'Bureaucrat', 'SL Loot'), + (222100, 'Overcharged Corroded Nano Crystal (Lesser Bane of the Living)', 220423, 45907, + 'Lesser Bane of the Living', 39799, NULL, NULL, NULL, 40, 'Tainted', 'Nukes', 'Medium_3s~2s', 0, '', 0, 1, 0, 0, + 0, 'Nano-Technician', 'SL Loot'), + (222101, 'Hacked Corroded Crystal (Suspicious Death)', 220423, 81938, 'Suspicious Death', 16226, NULL, NULL, + NULL, 47, 'Tainted', 'Combat', 'DOT_Agent_Strain_A', 9, '', 0, 0, 0, 0, 0, 'Agent', 'SL Loot'), + (222102, 'Failed Repaired Crystal (Perfected Guardbot)', 220411, 45700, 'Perfected Guardbot', 44140, NULL, NULL, + NULL, 119, 'Tainted', 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'SL Loot'), + (222103, 'Blood Stained and Corroded Crystal (Repeated Cellular Trauma)', 220437, 44147, + 'Repeated Cellular Trauma', 16222, NULL, NULL, NULL, 142, 'Tainted', 'Combat', 'DOT_-_Line_B', 7, '', 0, 1, 0, + 0, 0, 'Doctor', 'SL Loot'), + (222104, 'Overcharged Corroded Nano Crystal (Viral Assault)', 220430, 45204, 'Viral Assault', 39799, NULL, NULL, + NULL, 66, 'Tainted', 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (222105, 'Badly Corroded Crystal (Energy Melee Incompetence)', 220425, 26423, 'Energy Melee Incompetence', 39077, + NULL, NULL, NULL, 4, 'Tainted', 'DeBuffs_-_Melee', 'Energy_Melee_DeBuffs', 62, '', 0, 0, 0, 0, 0, 'General', + 'SL Loot'), + (222106, 'Dirty Money Shadow Crystal (Director-Grade Minion)', 220411, 46393, 'Director-Grade Minion', 44135, + NULL, NULL, NULL, 156, 'Tainted', 'Pets', 'Robot', 0, '', 0, 0, 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (222107, 'Blood Stained and Corroded Crystal (Greater Bloom of Health)', 220436, 43887, + 'Greater Bloom of Health', 44235, NULL, NULL, NULL, 156, 'Tainted', 'Combat', 'Target_Healing', 0, '', 0, 1, 0, + 0, 0, 'Doctor', 'SL Loot'), + (222108, 'Hacked Corroded Crystal (Greater Anatomy Lesson)', 220411, 81851, 'Greater Anatomy Lesson', 117954, + NULL, NULL, NULL, 106, 'Tainted', 'Buffs', 'Damage_Buffs_-_Line_A', 4, '', 0, 0, 0, 0, 0, 'Agent', 'SL Loot'), + (222109, 'Blood Stained and Corroded Crystal (Recurrent Remedy)', 220422, 43882, 'Recurrent Remedy', 44229, NULL, + NULL, NULL, 40, 'Tainted', 'Buffs', 'Heal_Over_Time', 12, '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (222110, 'Corroded Crystal with Bullet Holes (Lesser Deflection Shield (Extended))', 220426, 70331, + 'Lesser Deflection Shield (Extended)', 39001, NULL, NULL, NULL, 30, 'Tainted', 'Buffs', + 'Shadowland_Reflect_Base', 694, 'Target', 0, 1, 0, 0, 0, 'Soldier', 'SL Loot'), + (222111, 'Tainted Shadow Crystal (Enmity Personification)', 220411, 43716, 'Enmity Personification', 295597, + NULL, NULL, NULL, 159, 'Tainted', 'Pet', 'Attack_Pet', 0, '', 0, 0, 0, 0, 0, 'Meta-Physicist', 'SL Loot'), + (222112, 'Severly Corroded Shadow Crystal (Embrace of Greed)', 220430, 56232, 'Embrace of Greed', 46273, NULL, + NULL, NULL, 76, 'Tainted', 'Crowd_Control', 'Root', 146, 'Target', 0, 1, 0, 0, 0, 'Trader', 'SL Loot'), + (222113, 'Severly Corroded Shadow Crystal (Patchy Health Freeloader)', 220422, 76686, 'Patchy Health Freeloader', + 117908, NULL, NULL, NULL, 50, 'Tainted', 'Drain', 'Health', 0, '', 0, 1, 0, 0, 0, 'Trader', 'SL Loot'), + (222114, 'Blood Stained and Corroded Crystal (Lesser Nano Bandage)', 220422, 43833, 'Lesser Nano Bandage', 44229, + NULL, NULL, NULL, 17, 'Tainted', 'Combat', 'Target_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (222115, 'Overcharged Corroded Nano Crystal (Stinging Missile Swarm)', 220437, 45197, 'Stinging Missile Swarm', + 45187, NULL, NULL, NULL, 179, 'Tainted', 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', + 'SL Loot'), + (222116, 'Severly Corroded Shadow Crystal (Proficient Health Haggler)', 220422, 121493, + 'Proficient Health Haggler', 44230, NULL, NULL, NULL, 41, 'Tainted', 'Transfer', 'Health', 0, 'Target', 0, 1, 0, + 0, 0, 'Trader', 'SL Loot'), + (222118, 'Severly Corroded Shadow Crystal (Team Skill Wrangler (Major))', 220412, 121323, + 'Team Skill Wrangler (Major)', 117987, NULL, NULL, NULL, 107, 'Tainted', 'Transfer', 'Wrangle', 0, 'Team', 0, 1, + 0, 0, 0, 'Trader', 'SL Loot'), + (222119, 'Overcharged Corroded Nano Crystal (Enhance Nano Communication)', 220424, 95448, + 'Enhance Nano Communication', 16202, NULL, NULL, NULL, 4, 'Tainted', 'Buffs', 'Nano_Formula_Range_Buffs', 181, + '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (222120, 'Blood Stained and Corroded Crystal (Incandescent Venom)', 220437, 44164, 'Incandescent Venom', 16226, + NULL, NULL, NULL, 126, 'Tainted', 'Combat', 'DOT_-_Line_A', 6, '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (222121, 'Snow Crashed Shadow Crystal (Lesser Nano Net)', 220423, 82515, 'Lesser Nano Net', 46272, NULL, NULL, + NULL, 10, 'Tainted', 'Crowd_Control', 'Snare', 145, 'Target', 0, 1, 0, 0, 0, 'Fixer', 'SL Loot'), + (222122, 'Blood Stained and Corroded Crystal (Recuperative Respite)', 220436, 43881, 'Recuperative Respite', + 292054, NULL, NULL, NULL, 162, 'Tainted', 'Combat', 'Single_Target_Healing', 951, '', 0, 1, 0, 0, 0, 'Doctor', + 'SL Loot'), + (222123, 'Snow Crashed Shadow Crystal (Grid Runner)', 220424, 93130, 'Grid Runner', 16300, NULL, NULL, NULL, 43, + 'Tainted', 'Buffs', 'Major_Evasion_Buffs', 144, '', 0, 1, 0, 0, 0, 'Fixer', 'SL Loot'), + (222124, 'Blood Stained and Corroded Crystal (Lesser Bloom of Health)', 220429, 43818, 'Lesser Bloom of Health', + 44231, NULL, NULL, NULL, 63, 'Tainted', 'Combat', 'Target_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (222125, 'Blood Stained and Corroded Crystal (Cancerous Burrower)', 220423, 44171, 'Cancerous Burrower', 16225, + NULL, NULL, NULL, 33, 'Tainted', 'Combat', 'DOT_-_Line_B', 7, '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (222126, 'Dirty Money Shadow Crystal (Faithful Minion)', 220411, 46375, 'Faithful Minion', 44135, NULL, NULL, + NULL, 146, 'Tainted', 'Pets', 'Robot', 0, '', 0, 0, 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (222127, 'Severly Corroded Shadow Crystal (Redeem AC (Minor))', 220413, 92151, 'Redeem AC (Minor)', 118031, NULL, + NULL, NULL, 106, 'Tainted', 'Transfer', 'AC_Transfer_Target_Buffs', 143, 'Target', 0, 1, 0, 0, 0, 'Trader', + 'SL Loot'), + (222128, 'Failed Repaired Crystal (Advanced Shielding Barrier)', 220413, 70547, 'Advanced Shielding Barrier', + 39179, NULL, NULL, NULL, 109, 'Tainted', 'Buffs', 'Armor_Buffs', 3, '', 0, 1, 0, 0, 0, 'Engineer', 'SL Loot'), + (222129, 'Blood Stained and Corroded Crystal (Lesser Circle of Renewal)', 220422, 43913, + 'Lesser Circle of Renewal', 44245, NULL, NULL, NULL, 47, 'Tainted', 'Combat', 'Team_Healing', 0, '', 0, 1, 0, 0, + 0, 'Doctor', 'SL Loot'), + (222130, 'Failed Repaired Crystal (Slayerdroid Sentinel)', 220411, 45673, 'Slayerdroid Sentinel', 44135, NULL, + NULL, NULL, 189, 'Tainted', 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'SL Loot'), + (222131, 'Tainted Shadow Crystal (Internal Focus)', 220425, 95521, 'Internal Focus', 16309, NULL, NULL, NULL, 14, + 'Tainted', 'Buffs', 'Interrupt_Modifier', 183, '', 0, 1, 0, 0, 0, 'Meta-Physicist', 'SL Loot'), + (222133, 'Overcharged Corroded Nano Crystal (Collapsing Hadron String)', 220437, 45252, + 'Collapsing Hadron String', 45189, NULL, NULL, NULL, 149, 'Tainted', 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, 0, + 0, 'Nano-Technician', 'SL Loot'), + (222134, 'Overcharged Corroded Nano Crystal (Bewilder)', 220423, 100440, 'Bewilder', 46283, NULL, NULL, NULL, 30, + 'Tainted', 'Crowd_Control', 'Mezz', 147, 'Calm', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (222135, 'Overcharged Corroded Nano Crystal (Rudimentary Humidity Extractor)', 220424, 90400, + 'Rudimentary Humidity Extractor', 38844, NULL, NULL, NULL, 1, 'Tainted', 'Buffs', 'Nano_Over_Time_-_Line_A', 14, + '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (222136, 'Severly Corroded Shadow Crystal (Pyramid Marketing)', 220430, 82242, 'Pyramid Marketing', 46273, NULL, + NULL, NULL, 83, 'Tainted', 'Crowd_Control', 'Root', 146, 'Area', 0, 1, 0, 0, 0, 'Trader', 'SL Loot'), + (222138, 'Badly Eroded Crystal (Coat of Barbs)', 220426, 55812, 'Coat of Barbs', 16221, NULL, NULL, NULL, 1, + 'Tainted', 'Buffs', 'Damage_Shields', 1, 'Target', 0, 1, 0, 0, 0, 'Adventurer', 'SL Loot'), + (222139, 'Cracked Crystal (Immolation Shield)', 220433, 29645, 'Immolation Shield', 16221, 147318, 145818, + 148818, 63, 'Misc', 'Buffs', 'Damage_Shields', 1, '', 0, 1, 0, 0, 0, 'Enforcer', 'SL Loot'), + (222140, 'Overcharged Corroded Nano Crystal (Chemical Liquefaction)', 220437, 45250, 'Chemical Liquefaction', + 39794, NULL, NULL, NULL, 103, 'Tainted', 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', + 'SL Loot'), + (222141, 'Cracked Crystal (Brave Challenger to Gargantua)', 220431, 49749, 'Brave Challenger to Gargantua', + 39088, 147281, 145781, 148781, 76, 'Misc', 'Buffs', 'Challenger', 5, '', 0, 1, 0, 0, 0, 'Enforcer', 'SL Loot'), + (222142, 'Snow Crashed Shadow Crystal (Passive Distributed Entanglement)', 220423, 85219, + 'Passive Distributed Entanglement', 84283, NULL, NULL, NULL, 7, 'Tainted', 'Crowd_Control', 'Snare', 145, + 'Area', 0, 1, 0, 0, 0, 'Fixer', 'SL Loot'), + (222143, 'Blood Stained and Corroded Crystal (Team Cellular Rebuild)', 220429, 43909, 'Team Cellular Rebuild', + 44246, NULL, NULL, NULL, 60, 'Tainted', 'Combat', 'Team_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (222144, 'Blood Stained and Corroded Crystal (Nano Bandage)', 220429, 43819, 'Nano Bandage', 44231, NULL, NULL, + NULL, 73, 'Tainted', 'Combat', 'Target_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (222145, 'Overcharged Corroded Nano Crystal (Accelerated Titanium Pellet)', 220423, 45256, + 'Accelerated Titanium Pellet', 45185, NULL, NULL, NULL, 24, 'Tainted', 'Nukes', 'Long_8s~1s', 0, '', 0, 1, 0, 0, + 0, 'Nano-Technician', 'SL Loot'), + (222146, 'Failed Repaired Crystal (Lesser Guardbot)', 220431, 45686, 'Lesser Guardbot', 44139, NULL, NULL, NULL, + 93, 'Tainted', 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'SL Loot'), + (222147, 'Failed Repaired Crystal (Inferior Warmachine)', 220411, 45708, 'Inferior Warmachine', 44135, NULL, + NULL, NULL, 162, 'Tainted', 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'SL Loot'), + (222148, 'Cracked Crystal (Mighty Challenger to Titan)', 220431, 49748, 'Mighty Challenger to Titan', 38947, + 147329, 145829, 148829, 53, 'Misc', 'Buffs', 'Challenger', 5, '', 0, 1, 0, 0, 0, 'Enforcer', 'SL Loot'), + (222149, 'Badly Corroded Crystal (Corrosive Fists)', 220424, 81830, 'Corrosive Fists', 39028, NULL, NULL, NULL, + 37, 'Tainted', 'Buffs', 'Damage_Buffs_-_Line_A', 4, '', 0, 1, 0, 0, 0, 'Martial Artist', 'SL Loot'), + (222150, 'Blood Stained and Corroded Crystal (Metabolic Disassembly)', 220437, 44160, 'Metabolic Disassembly', + 16226, NULL, NULL, NULL, 119, 'Tainted', 'Combat', 'DOT_-_Line_B', 7, '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (222151, 'Dirty Money Shadow Crystal (Executive-Grade Secretary-Droid)', 220411, 46384, + 'Executive-Grade Secretary-Droid', 44140, NULL, NULL, NULL, 119, 'Tainted', 'Pets', 'Robot', 0, '', 0, 0, 0, 0, + 0, 'Bureaucrat', 'SL Loot'), + (222152, 'Failed Repaired Crystal (Semi-Sentient Gladiatorbot)', 220431, 45682, 'Semi-Sentient Gladiatorbot', + 44139, NULL, NULL, NULL, 86, 'Tainted', 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'SL Loot'), + (222153, 'Failed Repaired Crystal (Basic Protective Field)', 220426, 70542, 'Basic Protective Field', 38898, + NULL, NULL, NULL, 33, 'Tainted', 'Buffs', 'Armor_Buffs', 3, '', 0, 1, 0, 0, 0, 'Engineer', 'SL Loot'), + (222155, 'Failed Repaired Crystal (Greater Armor Megaboost)', 220426, 70548, 'Greater Armor Megaboost', 16197, + NULL, NULL, NULL, 4, 'Tainted', 'Buffs', 'Armor_Buffs', 3, '', 0, 1, 0, 0, 0, 'Engineer', 'SL Loot'), + (222156, 'Dirty Money Shadow Crystal (Greater Fear of Attention)', 220437, 82166, 'Greater Fear of Attention', + 46274, NULL, NULL, NULL, 179, 'Tainted', 'Crowd_Control', 'Root', 146, 'Area', 0, 1, 0, 0, 0, 'Bureaucrat', + 'SL Loot'), + (222157, 'Severly Corroded Shadow Crystal (Draw AC (Major))', 220413, 91323, 'Draw AC (Major)', 117902, NULL, + NULL, NULL, 149, 'Tainted', 'Drain', 'AC_Transfer_Target_DeBuffs', 140, 'Draw', 0, 1, 0, 0, 0, 'Trader', + 'SL Loot'), + (222158, 'Corroded Crystal with Bullet Holes (Lesser Reflective Field)', 220413, 70328, + 'Lesser Reflective Field', 39281, NULL, NULL, NULL, 123, 'Tainted', 'Buffs', 'Shadowland_Reflect_Base', 694, + 'Target', 0, 1, 0, 0, 0, 'Soldier', 'SL Loot'), + (222159, 'Badly Corroded Crystal (Fists of the Lightning Crane)', 220411, 81825, 'Fists of the Lightning Crane', + 117954, NULL, NULL, NULL, 146, 'Tainted', 'Buffs', 'Damage_Buffs_-_Line_A', 4, '', 0, 1, 0, 0, 0, + 'Martial Artist', 'SL Loot'), + (222160, 'Severly Corroded Shadow Crystal (Commonplace Delayed Health Payment)', 220422, 118239, + 'Commonplace Delayed Health Payment', 44246, NULL, NULL, NULL, 37, 'Tainted', 'Transfer', 'Health', 0, 'Team', + 0, 1, 0, 0, 0, 'Trader', 'SL Loot'), + (222161, 'Blood Stained and Corroded Crystal (Cycle of Life)', 220436, 42396, 'Cycle of Life', 44232, NULL, NULL, + NULL, 149, 'Tainted', 'Buffs', 'Heal_Over_Time', 12, '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (222162, 'Hacked Corroded Crystal (Delay Pursuers)', 220430, 85317, 'Delay Pursuers', 46277, NULL, NULL, NULL, + 57, 'Tainted', 'Crowd_Control', 'Snare', 145, 'Area', 0, 0, 0, 0, 0, 'Agent', 'SL Loot'), + (222163, 'Dirty Money Shadow Crystal (Advanced Minion)', 220411, 46412, 'Advanced Minion', 44135, NULL, NULL, + NULL, 149, 'Tainted', 'Pets', 'Robot', 0, '', 0, 0, 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (222164, 'Overcharged Corroded Nano Crystal (Hoary Seep)', 220430, 45323, 'Hoary Seep', 39796, NULL, NULL, NULL, + 57, 'Tainted', 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (222165, 'Dirty Money Shadow Crystal (Advanced Secretary-Droid)', 220411, 46398, 'Advanced Secretary-Droid', + 44140, NULL, NULL, NULL, 109, 'Tainted', 'Pets', 'Robot', 0, '', 0, 0, 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (222166, 'Overcharged Corroded Nano Crystal (Crystalizing Ray)', 220437, 45934, 'Crystalizing Ray', 39797, NULL, + NULL, NULL, 103, 'Tainted', 'Nukes', 'Medium_3s~2s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (222167, 'Overcharged Corroded Nano Crystal (Major Chemical Burn)', 220437, 45214, 'Major Chemical Burn', 45168, + NULL, NULL, NULL, 146, 'Tainted', 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (222168, 'Hacked Corroded Crystal (Assume Profession: Trader)', 220432, 117222, 'Assume Profession: Trader', + 16775, NULL, NULL, NULL, 99, 'Tainted', 'False_Professions', 'False_Profession', 218, 'Trader', 0, 1, 0, 0, 0, + 'Agent', 'SL Loot'), + (222169, 'Failed Repaired Crystal (Superior Protective Field)', 220433, 70550, 'Superior Protective Field', + 39039, NULL, NULL, NULL, 96, 'Tainted', 'Buffs', 'Armor_Buffs', 3, '', 0, 1, 0, 0, 0, 'Engineer', 'SL Loot'), + (222170, 'Failed Repaired Crystal (Upgraded Android)', 220424, 45675, 'Upgraded Android', 16307, NULL, NULL, + NULL, 37, 'Tainted', 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'SL Loot'), + (222171, 'Severly Corroded Shadow Crystal (Redeem AC (Weak))', 220433, 92153, 'Redeem AC (Weak)', 118031, NULL, + NULL, NULL, 90, 'Tainted', 'Transfer', 'AC_Transfer_Target_Buffs', 143, 'Target', 0, 1, 0, 0, 0, 'Trader', + 'SL Loot'), + (222172, 'Badly Eroded Crystal (Magma Coating)', 220413, 55824, 'Magma Coating', 16221, NULL, NULL, NULL, 109, + 'Tainted', 'Buffs', 'Damage_Shields', 1, 'Target', 0, 1, 0, 0, 0, 'Adventurer', 'SL Loot'), + (222173, 'Overcharged Corroded Nano Crystal (Coherent Positron Stream)', 220437, 45251, + 'Coherent Positron Stream', 45177, NULL, NULL, NULL, 142, 'Tainted', 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, 0, + 0, 'Nano-Technician', 'SL Loot'), + (222175, 'Tainted Shadow Crystal (Superior Fury Externalization)', 220424, 43742, + 'Superior Fury Externalization', 295577, NULL, NULL, NULL, 24, 'Tainted', 'Pet', 'Attack_Pet', 0, '', 0, 1, 0, + 0, 0, 'Meta-Physicist', 'SL Loot'), + (222176, 'Severly Corroded Shadow Crystal (Greater Strip Assets)', 220431, 99612, 'Greater Strip Assets', 39137, + NULL, NULL, NULL, 80, 'Tainted', 'Drain', 'Nano_Drain_-_Line_A', 215, '', 0, 1, 0, 0, 0, 'Trader', 'SL Loot'), + (222177, 'Severly Corroded Shadow Crystal (Skill Wrangler)', 220432, 121346, 'Skill Wrangler', 118049, NULL, + NULL, NULL, 84, 'Tainted', 'Transfer', 'Wrangle', 0, 'Target', 0, 1, 0, 0, 0, 'Trader', 'SL Loot'), + (222179, 'Hacked Corroded Crystal (Lesser Hold Victim)', 220423, 56216, 'Lesser Hold Victim', 46272, NULL, NULL, + NULL, 17, 'Tainted', 'Crowd_Control', 'Root', 146, '', 0, 0, 0, 0, 0, 'Agent', 'SL Loot'), + (222180, 'Overcharged Corroded Nano Crystal (Ol'' Faithful)', 220430, 45205, 'Ol'' Faithful', 39812, NULL, NULL, + NULL, 96, 'Tainted', 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (222181, 'Badly Eroded Crystal (Team Practiced Stitching)', 220436, 82054, 'Team Practiced Stitching', 44246, + NULL, NULL, NULL, 116, 'Tainted', 'Combat', 'Team_Healing', 952, '', 0, 1, 0, 0, 0, 'Adventurer', 'SL Loot'), + (222182, 'Blood Stained and Corroded Crystal (Cellular Grafting)', 220422, 43826, 'Cellular Grafting', 44230, + NULL, NULL, NULL, 47, 'Tainted', 'Combat', 'Target_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (222183, 'Blood Stained and Corroded Crystal (Inferior Cleanse Wounds)', 220422, 43917, + 'Inferior Cleanse Wounds', 38953, NULL, NULL, NULL, 14, 'Tainted', 'Combat', 'Team_Healing', 0, '', 0, 1, 0, 0, + 0, 'Doctor', 'SL Loot'), + (222184, 'Failed Repaired Crystal (Energy Cocoon)', 220413, 55770, 'Energy Cocoon', 16221, NULL, NULL, NULL, 113, + 'Tainted', 'Buffs', 'Damage_Shields', 1, '', 0, 1, 0, 0, 0, 'Engineer', 'SL Loot'), + (222185, 'Tainted Shadow Crystal (Greater Fury Externalization)', 220424, 43722, 'Greater Fury Externalization', + 295577, NULL, NULL, NULL, 27, 'Tainted', 'Pet', 'Attack_Pet', 0, '', 0, 1, 0, 0, 0, 'Meta-Physicist', + 'SL Loot'), + (222186, 'Failed Repaired Crystal (Greater Retaliatory Barrier)', 220413, 55767, 'Greater Retaliatory Barrier', + 16221, NULL, NULL, NULL, 165, 'Tainted', 'Buffs', 'Damage_Shields', 1, '', 0, 1, 0, 0, 0, 'Engineer', + 'SL Loot'), + (222187, 'Snow Crashed Shadow Crystal (Active Distributed Entanglement)', 220423, 85222, + 'Active Distributed Entanglement', 84284, NULL, NULL, NULL, 33, 'Tainted', 'Crowd_Control', 'Snare', 145, + 'Area', 0, 1, 0, 0, 0, 'Fixer', 'SL Loot'), + (222188, 'Tainted Shadow Crystal (Summon Cacodemon)', 220411, 43737, 'Summon Demon', 295584, NULL, NULL, NULL, + 189, 'Tainted', 'Pet', 'Attack_Pet_Summon', 0, '', 0, 1, 0, 0, 0, 'Meta-Physicist', 'SL Loot'), + (222189, 'Blood Stained and Corroded Crystal (Fast Team Tissue Repair)', 220429, 43906, + 'Fast Team Tissue Repair', 44246, NULL, NULL, NULL, 80, 'Tainted', 'Combat', 'Team_Healing', 0, '', 0, 1, 0, 0, + 0, 'Doctor', 'SL Loot'), + (222190, 'Hacked Corroded Crystal (Mysterious Causes)', 220430, 81936, 'Mysterious Causes', 16222, NULL, NULL, + NULL, 83, 'Tainted', 'Combat', 'DOT_Agent_Strain_A', 9, '', 0, 0, 0, 0, 0, 'Agent', 'SL Loot'), + (222191, 'Severly Corroded Shadow Crystal (Team Skill Wrangler (Lesser))', 220432, 121324, + 'Team Skill Wrangler (Lesser)', 117986, NULL, NULL, NULL, 77, 'Tainted', 'Transfer', 'Wrangle', 0, 'Team', 0, 1, + 0, 0, 0, 'Trader', 'SL Loot'), + (222192, 'Snow Crashed Shadow Crystal (Invasive Distributed Entanglement)', 220430, 85217, + 'Invasive Distributed Entanglement', 84284, NULL, NULL, NULL, 63, 'Tainted', 'Crowd_Control', 'Snare', 145, + 'Area', 0, 1, 0, 0, 0, 'Fixer', 'SL Loot'), + (222193, 'Cracked Crystal (Bristling Guard)', 220433, 55745, 'Bristling Guard', 16221, 147285, 145785, 148785, + 73, 'Misc', 'Buffs', 'Damage_Shields', 1, '', 0, 1, 0, 0, 0, 'Enforcer', 'SL Loot'), + (222194, 'Severly Corroded Shadow Crystal (Patchy Health Funnel)', 220422, 76732, 'Patchy Health Funnel', 117905, + NULL, NULL, NULL, 4, 'Tainted', 'Drain', 'Health', 0, '', 0, 1, 0, 0, 0, 'Trader', 'SL Loot'), + (222195, 'Tainted Shadow Crystal (Greater Enmity Personification)', 220411, 43720, + 'Greater Enmity Personification', 295597, NULL, NULL, NULL, 165, 'Tainted', 'Pet', 'Attack_Pet', 0, '', 0, 0, 0, + 0, 0, 'Meta-Physicist', 'SL Loot'), + (222196, 'Failed Repaired Crystal (Advanced Protective Field)', 220413, 70539, 'Advanced Protective Field', + 39179, NULL, NULL, NULL, 119, 'Tainted', 'Buffs', 'Armor_Buffs', 3, '', 0, 1, 0, 0, 0, 'Engineer', 'SL Loot'), + (222197, 'Dirty Money Shadow Crystal (Limited Helper-bot)', 220424, 46359, 'Limited Helper-Bot', 16307, NULL, + NULL, NULL, 17, 'Tainted', 'Pets', 'Robot', 0, '', 0, 0, 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (222198, 'Dirty Money Shadow Crystal (Punishing Blade)', 220423, 78398, 'Punishing Blade', 45182, NULL, NULL, + NULL, 10, 'Tainted', 'Nukes', 'Normal', 0, '', 0, 1, 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (222199, 'Severly Corroded Shadow Crystal (Traffic AC (Greater))', 220413, 92135, 'Traffic AC (Greater)', 117972, + NULL, NULL, NULL, 182, 'Tainted', 'Transfer', 'AC_Transfer_Target_Buffs', 143, 'Team', 0, 1, 0, 0, 0, 'Trader', + 'SL Loot'), + (222200, 'Blood Stained and Corroded Crystal (Team Compress Wounds)', 220436, 43896, 'Team Compress Wounds', + 44250, NULL, NULL, NULL, 159, 'Tainted', 'Combat', 'Team_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (222201, 'Severly Corroded Shadow Crystal (Lend Nano: 250)', 220429, 30729, 'Lend Nano: 250', 16303, NULL, NULL, + NULL, 53, 'Tainted', 'Transfer', 'Nano_Point_Buffs', 178, '', 0, 1, 0, 0, 0, 'Trader', 'SL Loot'), + (222202, 'Overcharged Corroded Nano Crystal (Aggressive Mutagen)', 220423, 45137, 'Aggressive Mutagen', 45173, + NULL, NULL, NULL, 30, 'Tainted', 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (222203, 'Severly Corroded Shadow Crystal (Skill Wrangler (Superior))', 220412, 121332, + 'Skill Wrangler (Superior)', 118052, NULL, NULL, NULL, 126, 'Tainted', 'Transfer', 'Wrangle', 0, 'Target', 0, 1, + 0, 0, 0, 'Trader', 'SL Loot'), + (222204, 'Tainted Shadow Crystal (Instill With Fury)', 220422, 116815, 'Instill With Fury', 16207, NULL, NULL, + NULL, 41, 'Tainted', 'Pet_Buffs', 'Meta-Physicist_Pet_Damage_Buffs', 216, '', 0, 1, 0, 0, 0, 'Meta-Physicist', + 'SL Loot'), + (222205, 'Severly Corroded Shadow Crystal (Greater Embrace of Greed)', 220437, 56230, 'Greater Embrace of Greed', + 46274, NULL, NULL, NULL, 149, 'Tainted', 'Crowd_Control', 'Root', 146, 'Target', 0, 1, 0, 0, 0, 'Trader', + 'SL Loot'), + (222206, 'Severly Corroded Shadow Crystal (Sophisticated Health Freeloader)', 220436, 76503, + 'Sophisticated Health Freeloader', 117911, NULL, NULL, NULL, 123, 'Tainted', 'Drain', 'Health', 0, '', 0, 1, 0, + 0, 0, 'Trader', 'SL Loot'), + (222207, 'Overcharged Corroded Nano Crystal (Feet of Stone)', 220423, 56027, 'Feet of Stone', 46272, NULL, NULL, + NULL, 14, 'Tainted', 'Crowd_Control', 'Root', 146, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (222208, 'Badly Corroded Crystal (Partial Diamond Skin)', 220413, 75337, 'Partial Diamond Skin', 101001, NULL, + NULL, NULL, 136, 'Tainted', 'Buffs', 'Armor_Buffs', 3, '', 0, 1, 0, 0, 0, 'Martial Artist', 'SL Loot'), + (222209, 'Overcharged Corroded Nano Crystal (Encircle with Blades)', 220437, 45929, 'Encircle With Blades', + 45183, NULL, NULL, NULL, 142, 'Tainted', 'Nukes', 'Medium_3s~2s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', + 'SL Loot'), + (222211, 'Overcharged Corroded Nano Crystal (Minor Toxic Barb)', 220423, 45896, 'Minor Toxic Barb', 45173, NULL, + NULL, NULL, 1, 'Tainted', 'Nukes', 'Fast_1s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (222212, 'Blood Stained and Corroded Crystal (Team Purification)', 220436, 43898, 'Team Purification', 44249, + NULL, NULL, NULL, 156, 'Tainted', 'Combat', 'Team_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (222213, 'Cracked Crystal (Mighty Challenger to Colossus)', 220411, 49753, 'Mighty Challenger to Colossus', + 39228, 147325, 145825, 148825, 129, 'Misc', 'Buffs', 'Challenger', 5, '', 0, 1, 0, 0, 0, 'Enforcer', 'SL Loot'), + (222214, 'Snow Crashed Shadow Crystal (Omni-Med Incursion)', 220436, 85226, 'Omni-Med Incursion', 44233, NULL, + NULL, NULL, 149, 'Tainted', 'Buffs', 'Fixer_Short_Heal_Over_Time', 12, '', 0, 1, 0, 0, 0, 'Fixer', 'SL Loot'), + (222215, 'Badly Corroded Crystal (Sunrise over Pond)', 220431, 81816, 'Sunrise over Pond', 39168, NULL, NULL, + NULL, 93, 'Tainted', 'Buffs', 'Controlled_Destruction_Buffs', 222, '', 0, 1, 0, 0, 0, 'Martial Artist', + 'SL Loot'), + (222216, 'Corroded Crystal with Bullet Holes (Major Deflection Shield (Extended))', 220433, 70327, + 'Major Deflection Shield (Extended)', 39141, NULL, NULL, NULL, 70, 'Tainted', 'Buffs', + 'Shadowland_Reflect_Base', 694, 'Target', 0, 1, 0, 0, 0, 'Soldier', 'SL Loot'), + (222217, 'Blood Stained and Corroded Crystal (Cycle of Reconstruction)', 220436, 43868, + 'Cycle of Reconstruction', 44235, NULL, NULL, NULL, 179, 'Tainted', 'Buffs', 'Heal_Over_Time', 12, '', 0, 1, 0, + 0, 0, 'Doctor', 'SL Loot'), + (222218, 'Snow Crashed Shadow Crystal (Flawless Medical Claim)', 220436, 85227, 'Flawless Medical Claim', 44232, + NULL, NULL, NULL, 129, 'Tainted', 'Buffs', 'Fixer_Short_Heal_Over_Time', 12, '', 0, 1, 0, 0, 0, 'Fixer', + 'SL Loot'), + (222219, 'Dirty Money Shadow Crystal (Basic Attendant-Droid)', 220424, 46403, 'Basic Attendant-Droid', 16307, + NULL, NULL, NULL, 27, 'Tainted', 'Pets', 'Robot', 0, '', 0, 0, 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (222220, 'Dirty Money Shadow Crystal (Limited Bodyguard)', 220411, 46368, 'Limited Bodyguard', 44135, NULL, NULL, + NULL, 162, 'Tainted', 'Pets', 'Robot', 0, '', 0, 0, 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (222221, 'Badly Eroded Crystal (Major Wilderness Protection)', 220433, 74175, 'Major Wilderness Protection', + 39276, NULL, NULL, NULL, 70, 'Tainted', 'Buffs', 'Armor_Buffs', 3, '', 0, 1, 0, 0, 0, 'Adventurer', 'SL Loot'), + (222222, 'Cracked Crystal (Challenger to Behemoth)', 220411, 49758, 'Challenger to Behemoth', 117926, 147289, + 145789, 148789, 139, 'Misc', 'Buffs', 'Challenger', 5, '', 0, 1, 0, 0, 0, 'Enforcer', 'SL Loot'), + (222223, 'Overcharged Corroded Nano Crystal (Accelerated Decay)', 220423, 45255, 'Accelerated Decay', 45188, + NULL, NULL, NULL, 24, 'Tainted', 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (222224, 'Severly Corroded Shadow Crystal (Draw AC (Weak))', 220433, 91334, 'Draw AC (Weak)', 117900, NULL, NULL, + NULL, 93, 'Tainted', 'Drain', 'AC_Transfer_Target_DeBuffs', 140, 'Draw', 0, 1, 0, 0, 0, 'Trader', 'SL Loot'), + (222225, 'Severly Corroded Shadow Crystal (Team Skill Wrangler (Weak))', 220425, 121317, + 'Team Skill Wrangler (Weak)', 117984, NULL, NULL, NULL, 18, 'Tainted', 'Transfer', 'Wrangle', 0, 'Team', 0, 1, + 0, 0, 0, 'Trader', 'SL Loot'), + (222226, 'Cracked Crystal (Essence of Might)', 220422, 95706, 'Essence of Might', 38905, 147305, 145805, 148805, + 24, 'Misc', 'Buffs', 'HP_Buffs', 151, 'Target', 0, 1, 0, 0, 0, 'Enforcer', 'SL Loot'), + (222227, 'Cracked Crystal (Brave Challenger to Behemoth)', 220411, 49757, 'Brave Challenger to Behemoth', 117926, + 147279, 145779, 148779, 142, 'Misc', 'Buffs', 'Challenger', 5, '', 0, 1, 0, 0, 0, 'Enforcer', 'SL Loot'), + (222228, 'Dirty Money Shadow Crystal (Lesser Charismatic Rapture)', 220432, 99200, 'Lesser Charismatic Rapture', + 39137, NULL, NULL, NULL, 96, 'Tainted', 'Crowd_Control', 'Charm_Other', 202, 'Short', 0, 1, 0, 0, 0, + 'Bureaucrat', 'SL Loot'), + (222229, 'Snow Crashed Shadow Crystal (Active Micro Entanglement)', 220423, 82513, 'Active Micro Entanglement', + 46277, NULL, NULL, NULL, 20, 'Tainted', 'Crowd_Control', 'Snare', 145, 'Target', 0, 1, 0, 0, 0, 'Fixer', + 'SL Loot'), + (222230, 'Dirty Money Shadow Crystal (Impose Will)', 220432, 99201, 'Impose Will', 39137, NULL, NULL, NULL, 86, + 'Tainted', 'Crowd_Control', 'Charm_Other', 202, 'Long', 0, 1, 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (222231, 'Overcharged Corroded Nano Crystal (Gravitational Anomaly)', 220437, 45234, 'Gravitational Anomaly', + 45184, NULL, NULL, NULL, 169, 'Tainted', 'Nukes', 'Long_5s~4s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', + 'SL Loot'), + (222232, 'Dirty Money Shadow Crystal (Faithful Worker-Droid)', 220424, 46363, 'Faithful Worker-Droid', 16307, + NULL, NULL, NULL, 4, 'Tainted', 'Pets', 'Robot', 0, '', 0, 0, 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (222233, 'Dirty Money Shadow Crystal (Distracted Gaze)', 220423, 30065, 'Distracted Gaze', 46283, NULL, NULL, + NULL, 10, 'Tainted', 'Crowd_Control', 'Mezz', 147, 'Target', 0, 1, 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (222234, 'Badly Eroded Crystal (Greater Wilderness Protection)', 220433, 74174, 'Greater Wilderness Protection', + 101015, NULL, NULL, NULL, 96, 'Tainted', 'Buffs', 'Armor_Buffs', 3, '', 0, 1, 0, 0, 0, 'Adventurer', 'SL Loot'), + (222235, 'Overcharged Corroded Nano Crystal (Greater RNA Reaper)', 220437, 45912, 'Greater RNA Reaper', 39816, + NULL, NULL, NULL, 129, 'Tainted', 'Nukes', 'Medium_3s~2s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (222236, 'Hacked Corroded Crystal (Mimic Profession: Trader)', 220412, 117211, 'Mimic Profession: Trader', 16775, + NULL, NULL, NULL, 162, 'Tainted', 'False_Professions', 'False_Profession', 218, 'Trader', 0, 1, 0, 0, 0, + 'Agent', 'SL Loot'), + (222237, 'Snow Crashed Shadow Crystal (Limited Grid Jump)', 220424, 93125, 'Limited Grid Jump', 16300, NULL, + NULL, NULL, 17, 'Tainted', 'Buffs', 'Major_Evasion_Buffs', 144, '', 0, 1, 0, 0, 0, 'Fixer', 'SL Loot'), + (222238, 'Failed Repaired Crystal (Flawed Protective Field)', 220426, 70545, 'Flawed Protective Field', 16197, + NULL, NULL, NULL, 14, 'Tainted', 'Buffs', 'Armor_Buffs', 3, '', 0, 1, 0, 0, 0, 'Engineer', 'SL Loot'), + (222239, 'Hacked Corroded Crystal (Inject Poison)', 220423, 81941, 'Inject Poison', 16225, NULL, NULL, NULL, 14, + 'Tainted', 'Combat', 'DOT_Agent_Strain_A', 9, '', 0, 0, 0, 0, 0, 'Agent', 'SL Loot'), + (222240, 'Corroded Crystal with Bullet Holes (Partial Reflective Field)', 220433, 70318, + 'Partial Reflective Field', 39141, NULL, NULL, NULL, 96, 'Tainted', 'Buffs', 'Shadowland_Reflect_Base', 694, + 'Target', 0, 1, 0, 0, 0, 'Soldier', 'SL Loot'), + (222241, 'Dirty Money Shadow Crystal (Disrupted Psyche)', 220437, 100422, 'Disrupted Psyche', 84278, NULL, NULL, + NULL, 185, 'Tainted', 'Crowd_Control', 'Mezz', 147, 'Area', 0, 1, 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (222242, 'Snow Crashed Shadow Crystal (Grid Surfer)', 220431, 93128, 'Grid Surfer', 16300, NULL, NULL, NULL, 83, + 'Tainted', 'Buffs', 'Major_Evasion_Buffs', 144, '', 0, 1, 0, 0, 0, 'Fixer', 'SL Loot'), + (222243, 'Blood Stained and Corroded Crystal (Weak Team Heal)', 220422, 42408, 'Weak Team Heal', 38953, NULL, + NULL, NULL, 4, 'Tainted', 'Combat', 'Team_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (222244, 'Severly Corroded Shadow Crystal (Detain Customer)', 220437, 56231, 'Detain Customer', 46273, NULL, + NULL, NULL, 109, 'Tainted', 'Crowd_Control', 'Root', 146, 'Target', 0, 1, 0, 0, 0, 'Trader', 'SL Loot'), + (222245, 'Corroded Crystal with Bullet Holes (Deflection Shield (Extended))', 220426, 70336, + 'Deflection Shield (Extended)', 39001, NULL, NULL, NULL, 37, 'Tainted', 'Buffs', 'Shadowland_Reflect_Base', 694, + 'Target', 0, 1, 0, 0, 0, 'Soldier', 'SL Loot'), + (222246, 'Blood Stained and Corroded Crystal (Biotoxin MK II)', 220423, 28642, 'Biotoxin MK II', 16225, NULL, + NULL, NULL, 43, 'Tainted', 'Combat', 'DOT_-_Line_A', 6, '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (222247, 'Blood Stained and Corroded Crystal (Healing Light)', 220436, 43817, 'Healing Light', 44233, NULL, NULL, + NULL, 116, 'Tainted', 'Combat', 'Target_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (222248, 'Severly Corroded Shadow Crystal (Siphon AC (Weak))', 220433, 91335, 'Siphon AC (Weak)', 117900, NULL, + NULL, NULL, 86, 'Tainted', 'Drain', 'AC_Transfer_Target_DeBuffs', 139, 'Siphon', 0, 1, 0, 0, 0, 'Trader', + 'SL Loot'), + (222249, 'Tainted Shadow Crystal (Calling of Restite)', 220411, 125742, 'Calling of Restite', 295568, NULL, NULL, + NULL, 113, 'Tainted', 'Pet', 'Heal_Pet', 0, '', 0, 1, 0, 0, 0, 'Meta-Physicist', 'SL Loot'), + (222250, 'Overcharged Corroded Nano Crystal (Weak Chemical Liquefaction)', 220430, 45193, + 'Weak Chemical Liquefaction', 39804, NULL, NULL, NULL, 57, 'Tainted', 'Nukes', 'Long_5s~4s', 0, '', 0, 1, 0, 0, + 0, 'Nano-Technician', 'SL Loot'), + (222251, 'Cracked Crystal (Mighty Challenger to Behemoth)', 220411, 49759, 'Mighty Challenger to Behemoth', + 117926, 147324, 145824, 148824, 149, 'Misc', 'Buffs', 'Challenger', 5, '', 0, 1, 0, 0, 0, 'Enforcer', + 'SL Loot'), + (222252, 'Overcharged Corroded Nano Crystal (Searing Stream)', 220437, 45195, 'Searing Stream', 45168, NULL, + NULL, NULL, 159, 'Tainted', 'Nukes', 'Medium_4s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (222253, 'Blood Stained and Corroded Crystal (Greater Team Healing)', 220429, 42398, 'Greater Team Healing', + 44246, NULL, NULL, NULL, 76, 'Tainted', 'Combat', 'Team_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (222254, 'Tainted Shadow Crystal (Inferior Rage Materialization)', 220424, 43729, + 'Inferior Rage Materialization', 295577, NULL, NULL, NULL, 40, 'Tainted', 'Pet', 'Attack_Pet', 0, '', 0, 1, 0, + 0, 0, 'Meta-Physicist', 'SL Loot'), + (222255, 'Failed Repaired Crystal (Lesser Shielding Barrier)', 220426, 70540, 'Lesser Shielding Barrier', 38898, + NULL, NULL, NULL, 43, 'Tainted', 'Buffs', 'Armor_Buffs', 3, '', 0, 1, 0, 0, 0, 'Engineer', 'SL Loot'), + (222256, 'Badly Eroded Crystal (Fiery Wrap)', 220433, 55829, 'Fiery Wrap', 16221, NULL, NULL, NULL, 63, + 'Tainted', 'Buffs', 'Damage_Shields', 1, 'Target', 0, 1, 0, 0, 0, 'Adventurer', 'SL Loot'), + (222257, 'Dirty Money Shadow Crystal (Oppressive Weight of the Guilty)', 220437, 82466, + 'Oppressive Weight of the Guilty', 46275, NULL, NULL, NULL, 152, 'Tainted', 'Crowd_Control', 'Snare', 145, + 'Target', 0, 1, 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (222258, 'Failed Repaired Crystal (Inferior Guardbot)', 220431, 45706, 'Inferior Guardbot', 44139, NULL, NULL, + NULL, 96, 'Tainted', 'Pet', 'Robots', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'SL Loot'), + (222259, 'Overcharged Corroded Nano Crystal (Chilling Stream)', 220423, 45936, 'Chilling Stream', 45170, NULL, + NULL, NULL, 33, 'Tainted', 'Nukes', 'Fast_1s~3s', 0, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (222260, 'Hacked Corroded Crystal (Mimic Profession: Martial Artist)', 220412, 117215, + 'Mimic Profession: Martial Artist', 16775, NULL, NULL, NULL, 149, 'Tainted', 'False_Professions', + 'False_Profession', 218, 'Martial_Artist', 0, 1, 0, 0, 0, 'Agent', 'SL Loot'), + (222261, 'Blood Stained and Corroded Crystal (Circulate Health)', 220436, 43902, 'Circulate Health', 44248, NULL, + NULL, NULL, 129, 'Tainted', 'Combat', 'Team_Healing', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (222262, 'Badly Corroded Crystal (Adventuring Proficiency)', 220425, 26390, 'Adventuring Proficiency', 16211, + NULL, NULL, NULL, 4, 'Tainted', 'Buffs', 'Climb_Buffs', 48, '', 0, 0, 0, 0, 0, 'General', 'SL Loot'), + (222264, 'Snow Crashed Shadow Crystal (Grid Excursion)', 220411, 142710, 'Grid Excursion', 117952, NULL, NULL, + NULL, 123, 'Tainted', 'Teleport', 'Team_Grid', 0, '', 0, 1, 0, 0, 0, 'Fixer', 'SL Loot'), + (222265, 'Snow Crashed Shadow Crystal (Instantaneous Encoding)', 220431, 142712, 'Instantaneous Encoding', + 300955, NULL, NULL, NULL, 74, 'Tainted', 'Teleport', 'Team_Grid', 0, '', 0, 1, 0, 0, 0, 'Fixer', 'SL Loot'), + (222267, 'Snow Crashed Shadow Crystal (Reckless Digitization)', 220424, 142713, 'Reckless Digitization', 300954, + NULL, NULL, NULL, 47, 'Tainted', 'Teleport', 'Self_Grid', 0, '', 0, 1, 0, 0, 0, 'Fixer', 'SL Loot'), + (222268, 'Snow Crashed Shadow Crystal (Re-Matrix Grid Vector)', 220411, 142707, 'Re-Matrix Grid Vector', 300948, + NULL, NULL, NULL, 169, 'Tainted', 'Teleport', 'Team_Grid', 0, '', 0, 1, 0, 0, 0, 'Fixer', 'SL Loot'), + (222271, 'Snow Crashed Shadow Crystal (Team Grid Phreak)', 220431, 142714, 'Team Grid Phreak', 117952, NULL, + NULL, NULL, 57, 'Tainted', 'Teleport', 'Team_Grid', 0, '', 0, 1, 0, 0, 0, 'Fixer', 'SL Loot'), + (222273, 'Severly Corroded Shadow Crystal (Grid Gateway)', 220411, 142737, 'Grid Gateway', 300948, NULL, NULL, + NULL, 166, 'Tainted', 'Teleport', 'Team', 0, '', 0, 1, 0, 0, 0, 'Trader', 'SL Loot'), + (222274, 'Severly Corroded Shadow Crystal (Personal Grid Beacon)', 220431, 142738, 'Personal Grid Beacon', + 296540, NULL, NULL, NULL, 100, 'Tainted', 'Teleport', 'Self', 0, '', 0, 1, 0, 0, 0, 'Trader', 'SL Loot'), + (222277, 'Blood Stained and Corroded Crystal (Digitizing Sequencer)', 220411, 142736, 'Digitizing Sequencer', + 300948, NULL, NULL, NULL, 140, 'Tainted', 'Combat', 'Grid_Warp', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (222278, 'Blood Stained and Corroded Crystal (Encode DNA Sequence)', 220431, 142735, 'Encode DNA Sequence', + 296540, NULL, NULL, NULL, 80, 'Tainted', 'Combat', 'Grid_Warp', 0, '', 0, 1, 0, 0, 0, 'Doctor', 'SL Loot'), + (222279, 'Severly Corroded Shadow Crystal (Brain Bender)', 220432, 142767, 'Brain Bender', 46269, NULL, NULL, + NULL, 97, 'Tainted', 'Crowd_Control', 'Charm_Other', 202, '', 0, 1, 0, 0, 0, 'Trader', 'SL Loot'), + (222280, 'Severly Corroded Shadow Crystal (Brain Swap)', 220425, 142768, 'Brain Swap', 46283, NULL, NULL, NULL, + 50, 'Tainted', 'Crowd_Control', 'Charm_Other', 202, '', 0, 1, 0, 0, 0, 'Trader', 'SL Loot'), + (222281, 'Severly Corroded Shadow Crystal (Deep Thought)', 220432, 142771, 'Deep Thought', 46269, NULL, NULL, + NULL, 74, 'Tainted', 'Crowd_Control', 'Charm_Other', 202, '', 0, 1, 0, 0, 0, 'Trader', 'SL Loot'), + (222282, 'Severly Corroded Shadow Crystal (Mental Switcheroo)', 220425, 142769, 'Mental Switcheroo', 46283, NULL, + NULL, NULL, 34, 'Tainted', 'Crowd_Control', 'Charm_Other', 202, '', 0, 1, 0, 0, 0, 'Trader', 'SL Loot'), + (222283, 'Severly Corroded Shadow Crystal (Project Thought Patterns)', 220425, 142770, + 'Project Thought Patterns', 46283, NULL, NULL, NULL, 17, 'Tainted', 'Crowd_Control', 'Charm_Other', 202, '', 0, + 1, 0, 0, 0, 'Trader', 'SL Loot'), + (222284, 'Severly Corroded Shadow Crystal (Swap Psyche)', 220425, 142766, 'Swap Psyche', 46283, NULL, NULL, NULL, + 4, 'Tainted', 'Crowd_Control', 'Charm_Other', 202, '', 0, 1, 0, 0, 0, 'Trader', 'SL Loot'), + (222285, 'Severly Corroded Shadow Crystal (Control Ends and Means)', 220412, 143894, 'Control Ends and Means', + 46271, NULL, NULL, NULL, 176, 'Tainted', 'Crowd_Control', 'Charm_Other', 202, '', 0, 1, 0, 0, 0, 'Trader', + 'SL Loot'), + (222286, 'Severly Corroded Shadow Crystal (My Brain For Your Brain)', 220412, 143898, 'My Brain For Your Brain', + 46271, NULL, NULL, NULL, 186, 'Tainted', 'Crowd_Control', 'Charm_Other', 202, '', 0, 1, 0, 0, 0, 'Trader', + 'SL Loot'), + (222287, 'Severly Corroded Shadow Crystal (Redirect Neural Signals)', 220412, 143896, 'Redirect Neural Signals', + 46270, NULL, NULL, NULL, 149, 'Tainted', 'Crowd_Control', 'Charm_Other', 202, '', 0, 1, 0, 0, 0, 'Trader', + 'SL Loot'), + (222288, 'Severly Corroded Shadow Crystal (Thought Controller)', 220412, 143897, 'Thought Controller', 46270, + NULL, NULL, NULL, 126, 'Tainted', 'Crowd_Control', 'Charm_Other', 202, '', 0, 1, 0, 0, 0, 'Trader', 'SL Loot'), + (222289, 'Severly Corroded Shadow Crystal (Thought Juggler)', 220412, 143895, 'Thought Juggler', 46270, NULL, + NULL, NULL, 159, 'Tainted', 'Crowd_Control', 'Charm_Other', 202, '', 0, 1, 0, 0, 0, 'Trader', 'SL Loot'), + (222290, 'Badly Eroded Crystal (Essence of Life)', 220436, 143908, 'Essence of Life', 44231, NULL, NULL, NULL, + 169, 'Tainted', 'Combat', 'Single_Target_Healing', 951, '', 0, 1, 0, 0, 0, 'Adventurer', 'SL Loot'), + (222291, 'Tainted Shadow Crystal (Summoning of Tumulten)', 220411, 150309, 'Summoning of Tumulten', 295574, NULL, + NULL, NULL, 189, 'Tainted', 'Pet', 'Mezz_Pet', 0, '', 0, 0, 0, 0, 0, 'Meta-Physicist', 'SL Loot'), + (222316, 'Overcharged Corroded Nano Crystal (Enfraam''s Augmented Fortification)', 220413, 150622, + 'Enfraam''s Augmented Fortification', 118080, NULL, NULL, NULL, 156, 'Tainted', 'Buffs', 'Fortify', 224, '', 0, + 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (222317, 'Overcharged Corroded Nano Crystal (Enfraam''s Fortification)', 220426, 150628, + 'Enfraam''s Fortification', 118077, NULL, NULL, NULL, 47, 'Tainted', 'Buffs', 'Fortify', 224, '', 0, 1, 0, 0, 0, + 'Nano-Technician', 'SL Loot'), + (222318, 'Overcharged Corroded Nano Crystal (Enfraam''s Glorious Fortification)', 220413, 150623, + 'Enfraam''s Glorious Fortification', 118080, NULL, NULL, NULL, 140, 'Tainted', 'Buffs', 'Fortify', 224, '', 0, + 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (222319, 'Overcharged Corroded Nano Crystal (Enfraam''s Greater Fortification)', 220433, 150625, + 'Enfraam''s Greater Fortification', 118079, NULL, NULL, NULL, 93, 'Tainted', 'Buffs', 'Fortify', 224, '', 0, 1, + 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (222320, 'Overcharged Corroded Nano Crystal (Enfraam''s Lesser Fortification)', 220426, 150629, + 'Enfraam''s Lesser Fortification', 118077, NULL, NULL, NULL, 37, 'Tainted', 'Buffs', 'Fortify', 224, '', 0, 1, + 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (222321, 'Overcharged Corroded Nano Crystal (Enfraam''s Major Fortification)', 220433, 150626, + 'Enfraam''s Major Fortification', 118078, NULL, NULL, NULL, 80, 'Tainted', 'Buffs', 'Fortify', 224, '', 0, 1, 0, + 0, 0, 'Nano-Technician', 'SL Loot'), + (222322, 'Overcharged Corroded Nano Crystal (Enfraam''s Minor Fortification)', 220426, 150630, + 'Enfraam''s Minor Fortification', 118435, NULL, NULL, NULL, 24, 'Tainted', 'Buffs', 'Fortify', 224, '', 0, 1, 0, + 0, 0, 'Nano-Technician', 'SL Loot'), + (222323, 'Overcharged Corroded Nano Crystal (Enfraam''s Perfected Fortification)', 220413, 150621, + 'Enfraam''s Perfected Fortification', 118081, NULL, NULL, NULL, 166, 'Tainted', 'Buffs', 'Fortify', 224, '', 0, + 1, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (222324, 'Overcharged Corroded Nano Crystal (Enfraam''s Superior Fortification)', 220433, 150627, + 'Enfraam''s Superior Fortification', 118078, NULL, NULL, NULL, 60, 'Tainted', 'Buffs', 'Fortify', 224, '', 0, 1, + 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (222325, 'Overcharged Corroded Nano Crystal (Enfraam''s Supreme Fortification)', 220413, 150624, + 'Enfraam''s Supreme Fortification', 118079, NULL, NULL, NULL, 113, 'Tainted', 'Buffs', 'Fortify', 224, '', 0, 1, + 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (222326, 'Overcharged Corroded Nano Crystal (Enfraam''s Trivial Fortification)', 220426, 150620, + 'Enfraam''s Trivial Fortification', 118435, NULL, NULL, NULL, 14, 'Tainted', 'Buffs', 'Fortify', 224, '', 0, 1, + 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (222327, 'Tainted Shadow Crystal (Teachings of Biological Metamorphose)', 220425, 151768, + 'Teachings of Biological Metamorphose', 16199, NULL, NULL, NULL, 18, 'Tainted', 'Buffs', + 'Biological_Metamorphosis_Buffs', 163, '', 0, 1, 0, 0, 0, 'Meta-Physicist', 'SL Loot'), + (222328, 'Tainted Shadow Crystal (Teachings of Material Creation)', 220425, 151765, + 'Teachings of Material Creation', 16290, NULL, NULL, NULL, 21, 'Tainted', 'Buffs', 'Matter_Creation_Buffs', 159, + '', 0, 1, 0, 0, 0, 'Meta-Physicist', 'SL Loot'), + (222329, 'Tainted Shadow Crystal (Teachings of Time and Space)', 220425, 151766, 'Teachings of Time and Space', + 16285, NULL, NULL, NULL, 21, 'Tainted', 'Buffs', 'Time_and_Space_Buffs', 161, '', 0, 1, 0, 0, 0, + 'Meta-Physicist', 'SL Loot'), + (222330, 'Tainted Shadow Crystal (Teachings of Material Metamorphose)', 220425, 151767, + 'Teachings of Material Metamorphose', 16298, NULL, NULL, NULL, 17, 'Tainted', 'Buffs', + 'Material_Metamorphosis_Buffs', 157, '', 0, 1, 0, 0, 0, 'Meta-Physicist', 'SL Loot'), + (222331, 'Tainted Shadow Crystal (Teachings of Psychological Modification)', 220425, 151763, + 'Teachings of Psychological Modification', 16766, NULL, NULL, NULL, 24, 'Tainted', 'Buffs', + 'Psychological_Modification_Buffs', 167, '', 0, 1, 0, 0, 0, 'Meta-Physicist', 'SL Loot'), + (222332, 'Tainted Shadow Crystal (Teachings of Sensory Improvement)', 220425, 151764, + 'Teachings of Sensory Improvement', 16332, NULL, NULL, NULL, 21, 'Tainted', 'Buffs', + 'Sensory_Improvement_Buffs', 165, '', 0, 1, 0, 0, 0, 'Meta-Physicist', 'SL Loot'), + (222333, 'Tainted Shadow Crystal (Infuse With Knowledge: Biological Metamorphose)', 220412, 151761, + 'Infuse With Knowledge: Biological Metamorphose', 16199, NULL, NULL, NULL, 123, 'Tainted', 'Buffs', + 'Biological_Metamorphosis_Buffs', 163, '', 0, 1, 0, 0, 0, 'Meta-Physicist', 'SL Loot'), + (222334, 'Tainted Shadow Crystal (Infuse With Knowledge: Material Creation)', 220412, 151762, + 'Infuse With Knowledge: Material Creation', 16290, NULL, NULL, NULL, 130, 'Tainted', 'Buffs', + 'Matter_Creation_Buffs', 159, '', 0, 1, 0, 0, 0, 'Meta-Physicist', 'SL Loot'), + (222335, 'Tainted Shadow Crystal (Infuse With Knowledge: Time and Space)', 220412, 151758, + 'Infuse With Knowledge: Time and Space', 16285, NULL, NULL, NULL, 130, 'Tainted', 'Buffs', + 'Time_and_Space_Buffs', 161, '', 0, 1, 0, 0, 0, 'Meta-Physicist', 'SL Loot'), + (222336, 'Tainted Shadow Crystal (Infuse With Knowledge: Material Metamorphose)', 220412, 151759, + 'Infuse With Knowledge: Material Metamorphose', 16298, NULL, NULL, NULL, 126, 'Tainted', 'Buffs', + 'Material_Metamorphosis_Buffs', 157, '', 0, 1, 0, 0, 0, 'Meta-Physicist', 'SL Loot'), + (222337, 'Tainted Shadow Crystal (Infuse With Knowledge: Psychological Modification)', 220412, 151760, + 'Infuse With Knowledge: Psychological Modification', 16766, NULL, NULL, NULL, 136, 'Tainted', 'Buffs', + 'Psychological_Modification_Buffs', 167, '', 0, 1, 0, 0, 0, 'Meta-Physicist', 'SL Loot'), + (222338, 'Tainted Shadow Crystal (Infuse With Knowledge: Sensory Improvement)', 220412, 151757, + 'Infuse With Knowledge: Sensory Improvement', 16332, NULL, NULL, NULL, 133, 'Tainted', 'Buffs', + 'Sensory_Improvement_Buffs', 165, '', 0, 1, 0, 0, 0, 'Meta-Physicist', 'SL Loot'), + (222339, 'Tainted Shadow Crystal (Anima of Fathomless Rage)', 220436, 151830, 'Anima of Fathomless Rage', 16280, + NULL, NULL, NULL, 110, 'Tainted', 'Pet_Buffs', 'Pet_Short_Term_Damage_Buffs', 225, 'Anima', 0, 1, 0, 0, 0, + 'Meta-Physicist', 'SL Loot'), + (222340, 'Tainted Shadow Crystal (Anima of Implacable Hatred)', 220436, 151824, 'Anima of Implacable Hatred', + 16280, NULL, NULL, NULL, 156, 'Tainted', 'Pet_Buffs', 'Pet_Short_Term_Damage_Buffs', 225, 'Anima', 0, 1, 0, 0, + 0, 'Meta-Physicist', 'SL Loot'), + (222341, 'Tainted Shadow Crystal (Anima of Maddening Wrath)', 220436, 151828, 'Anima of Maddening Wrath', 16280, + NULL, NULL, NULL, 189, 'Tainted', 'Pet_Buffs', 'Pet_Short_Term_Damage_Buffs', 225, 'Anima', 0, 1, 0, 0, 0, + 'Meta-Physicist', 'SL Loot'), + (222342, 'Tainted Shadow Crystal (Anima of Pure Malevolence)', 220436, 151829, 'Anima of Pure Malevolence', + 16280, NULL, NULL, NULL, 212, 'Tainted', 'Pet_Buffs', 'Pet_Short_Term_Damage_Buffs', 225, 'Anima', 0, 1, 0, 0, + 0, 'Meta-Physicist', 'SL Loot'), + (222343, 'Tainted Shadow Crystal (Anima of Relentless Fury)', 220429, 151826, 'Anima of Relentless Fury', 16280, + NULL, NULL, NULL, 67, 'Tainted', 'Pet_Buffs', 'Pet_Short_Term_Damage_Buffs', 225, 'Anima', 0, 1, 0, 0, 0, + 'Meta-Physicist', 'SL Loot'), + (222344, 'Tainted Shadow Crystal (Anima of The Abomination)', 220436, 151827, 'Anima of The Abomination', 16280, + NULL, NULL, NULL, 239, 'Tainted', 'Pet_Buffs', 'Pet_Short_Term_Damage_Buffs', 225, 'Anima', 0, 1, 0, 0, 0, + 'Meta-Physicist', 'SL Loot'), + (222345, 'Tainted Shadow Crystal (Anima of Unleashed Malice)', 220422, 151825, 'Anima of Unleashed Malice', + 16280, NULL, NULL, NULL, 37, 'Tainted', 'Pet_Buffs', 'Pet_Short_Term_Damage_Buffs', 225, 'Anima', 0, 1, 0, 0, 0, + 'Meta-Physicist', 'SL Loot'), + (222346, 'Tainted Shadow Crystal (Anima of Unrestrained Ferocity)', 220422, 151831, + 'Anima of Unrestrained Ferocity', 16280, NULL, NULL, NULL, 14, 'Tainted', 'Pet_Buffs', + 'Pet_Short_Term_Damage_Buffs', 225, 'Anima', 0, 1, 0, 0, 0, 'Meta-Physicist', 'SL Loot'), + (222347, 'Snow Crashed Shadow Crystal (Restock Ammo (Level OP-II))', 220424, 152180, + 'Restock Ammo (Level OP-II)', 117929, NULL, NULL, NULL, 18, 'Tainted', 'Creation', 'Ammo', 0, '', 0, 1, 0, 0, 0, + 'Fixer', 'SL Loot'), + (222348, 'Snow Crashed Shadow Crystal (Restock Ammo (Level OP-X))', 220431, 152182, 'Restock Ammo (Level OP-X)', + 117930, NULL, NULL, NULL, 60, 'Tainted', 'Creation', 'Ammo', 0, '', 0, 1, 0, 0, 0, 'Fixer', 'SL Loot'), + (222349, 'Snow Crashed Shadow Crystal (Restock Ammo (Level OP-XX))', 220431, 152179, + 'Restock Ammo (Level OP-XX)', 117930, NULL, NULL, NULL, 74, 'Tainted', 'Creation', 'Ammo', 0, '', 0, 1, 0, 0, 0, + 'Fixer', 'SL Loot'), + (222350, 'Snow Crashed Shadow Crystal (Restock Ammo (Level OP-C))', 220411, 152181, 'Restock Ammo (Level OP-C)', + 117931, NULL, NULL, NULL, 107, 'Tainted', 'Creation', 'Ammo', 0, '', 0, 1, 0, 0, 0, 'Fixer', 'SL Loot'), + (222351, 'Snow Crashed Shadow Crystal (Restock Ammo (Level OP-CC))', 220411, 152183, + 'Restock Ammo (Level OP-CC)', 117931, NULL, NULL, NULL, 107, 'Tainted', 'Creation', 'Ammo', 0, '', 0, 1, 0, 0, + 0, 'Fixer', 'SL Loot'), + (222352, 'Failed Repaired Crystal (Disruptive Barrier Negator)', 220413, 154722, 'Disruptive Barrier Negator', + 118038, NULL, NULL, NULL, 113, 'Tainted', 'DeBuffs', 'Engineer_DeBuffs_Auras', 236, 'Shield_AC', 0, 1, 0, 0, 0, + 'Engineer', 'SL Loot'), + (222353, 'Failed Repaired Crystal (Disruptive Cocoon Harmonics)', 220413, 154727, 'Disruptive Cocoon Harmonics', + 118032, NULL, NULL, NULL, 107, 'Tainted', 'DeBuffs', 'Engineer_DeBuffs_Auras', 236, 'Reflect_AC', 0, 1, 0, 0, 0, + 'Engineer', 'SL Loot'), + (222354, 'Failed Repaired Crystal (Disruptive Field Harmonics)', 220426, 154728, 'Disruptive Field Harmonics', + 118031, NULL, NULL, NULL, 41, 'Tainted', 'DeBuffs', 'Engineer_DeBuffs_Auras', 236, 'Reflect_AC', 0, 1, 0, 0, 0, + 'Engineer', 'SL Loot'), + (222355, 'Failed Repaired Crystal (Disruptive Field Negator)', 220426, 154724, 'Disruptive Field Negator', + 118036, NULL, NULL, NULL, 17, 'Tainted', 'DeBuffs', 'Engineer_DeBuffs_Auras', 236, 'Shield_AC', 0, 1, 0, 0, 0, + 'Engineer', 'SL Loot'), + (222356, 'Failed Repaired Crystal (Disruptive Phase Harmonics)', 220413, 154726, 'Disruptive Phase Harmonics', + 118033, NULL, NULL, NULL, 156, 'Tainted', 'DeBuffs', 'Engineer_DeBuffs_Auras', 236, 'Reflect_AC', 0, 1, 0, 0, 0, + 'Engineer', 'SL Loot'), + (222357, 'Failed Repaired Crystal (Disruptive Photon Absorber)', 220431, 154718, 'Disruptive Photon Absorber', + 117955, NULL, NULL, NULL, 83, 'Tainted', 'DeBuffs', 'Engineer_DeBuffs_Auras', 236, 'Add_All_Offensive', 0, 1, 0, + 0, 0, 'Engineer', 'SL Loot'), + (222358, 'Failed Repaired Crystal (Disruptive Photon Annihilator)', 220411, 154716, + 'Disruptive Photon Annihilator', 117956, NULL, NULL, NULL, 149, 'Tainted', 'DeBuffs', 'Engineer_DeBuffs_Auras', + 236, 'Add_All_Offensive', 0, 1, 0, 0, 0, 'Engineer', 'SL Loot'), + (222359, 'Failed Repaired Crystal (Disruptive Photon Deflector)', 220424, 154719, 'Disruptive Photon Deflector', + 117955, NULL, NULL, NULL, 41, 'Tainted', 'DeBuffs', 'Engineer_DeBuffs_Auras', 236, 'Add_All_Offensive', 0, 1, 0, + 0, 0, 'Engineer', 'SL Loot'), + (222360, 'Failed Repaired Crystal (Sympathetic Armor Boost)', 220426, 154567, 'Sympathetic Armor Boost', 295526, + NULL, NULL, NULL, 34, 'Tainted', 'Buffs', 'Engineer_Auras', 227, 'Armor', 0, 1, 0, 0, 0, 'Engineer', 'SL Loot'), + (222361, 'Failed Repaired Crystal (Sympathetic Arms Enhancement)', 220431, 154561, + 'Sympathetic Arms Enhancement', 295541, NULL, NULL, NULL, 80, 'Tainted', 'Buffs', 'Engineer_Auras', 227, + 'Damage', 0, 1, 0, 0, 0, 'Engineer', 'SL Loot'), + (222362, 'Failed Repaired Crystal (Sympathetic Defensive Screen)', 220413, 154564, + 'Sympathetic Defensive Screen', 295526, NULL, NULL, NULL, 146, 'Tainted', 'Buffs', 'Engineer_Auras', 227, + 'Armor', 0, 1, 0, 0, 0, 'Engineer', 'SL Loot'), + (222363, 'Failed Repaired Crystal (Sympathetic Energy Cocoon)', 220413, 154558, 'Sympathetic Energy Cocoon', + 295532, NULL, NULL, NULL, 153, 'Tainted', 'Buffs', 'Engineer_Auras', 227, 'Damage_Shield', 0, 1, 0, 0, 0, + 'Engineer', 'SL Loot'), + (222364, 'Failed Repaired Crystal (Sympathetic Entropy Infusion)', 220411, 154560, + 'Sympathetic Entropy Infusion', 295541, NULL, NULL, NULL, 176, 'Tainted', 'Buffs', 'Engineer_Auras', 227, + 'Damage', 0, 1, 0, 0, 0, 'Engineer', 'SL Loot'), + (222365, 'Failed Repaired Crystal (Sympathetic Force Field)', 220413, 154563, 'Sympathetic Force Field', 295526, + NULL, NULL, NULL, 163, 'Tainted', 'Buffs', 'Engineer_Auras', 227, 'Armor', 0, 1, 0, 0, 0, 'Engineer', + 'SL Loot'), + (222366, 'Failed Repaired Crystal (Sympathetic Fortress Screen)', 220413, 154562, 'Sympathetic Fortress Screen', + 295526, NULL, NULL, NULL, 189, 'Tainted', 'Buffs', 'Engineer_Auras', 227, 'Armor', 0, 1, 0, 0, 0, 'Engineer', + 'SL Loot'), + (222367, 'Failed Repaired Crystal (Sympathetic Harmonic Cocoon)', 220413, 154552, 'Sympathetic Harmonic Cocoon', + 295533, NULL, NULL, NULL, 116, 'Tainted', 'Buffs', 'Engineer_Auras', 227, 'Reflect_Damage', 0, 1, 0, 0, 0, + 'Engineer', 'SL Loot'), + (222368, 'Failed Repaired Crystal (Sympathetic Harmonic Field)', 220433, 154553, 'Sympathetic Harmonic Field', + 295533, NULL, NULL, NULL, 90, 'Tainted', 'Buffs', 'Engineer_Auras', 227, 'Reflect_Damage', 0, 1, 0, 0, 0, + 'Engineer', 'SL Loot'), + (222369, 'Failed Repaired Crystal (Sympathetic Plasma Shielding)', 220413, 154557, + 'Sympathetic Plasma Shielding', 295532, NULL, NULL, NULL, 189, 'Tainted', 'Buffs', 'Engineer_Auras', 227, + 'Damage_Shield', 0, 1, 0, 0, 0, 'Engineer', 'SL Loot'), + (222370, 'Failed Repaired Crystal (Sympathetic Protective Field)', 220433, 154565, + 'Sympathetic Protective Field', 295526, NULL, NULL, NULL, 97, 'Tainted', 'Buffs', 'Engineer_Auras', 227, + 'Armor', 0, 1, 0, 0, 0, 'Engineer', 'SL Loot'), + (222371, 'Failed Repaired Crystal (Sympathetic Reactive Cocoon)', 220413, 154550, 'Sympathetic Reactive Cocoon', + 295533, NULL, NULL, NULL, 186, 'Tainted', 'Buffs', 'Engineer_Auras', 227, 'Reflect_Damage', 0, 1, 0, 0, 0, + 'Engineer', 'SL Loot'), + (222372, 'Failed Repaired Crystal (Sympathetic Reactive Field)', 220413, 154551, 'Sympathetic Reactive Field', + 295533, NULL, NULL, NULL, 159, 'Tainted', 'Buffs', 'Engineer_Auras', 227, 'Reflect_Damage', 0, 1, 0, 0, 0, + 'Engineer', 'SL Loot'), + (222373, 'Failed Repaired Crystal (Sympathetic Retaliatory Barrier)', 220433, 154559, + 'Sympathetic Retaliatory Barrier', 295532, NULL, NULL, NULL, 93, 'Tainted', 'Buffs', 'Engineer_Auras', 227, + 'Damage_Shield', 0, 1, 0, 0, 0, 'Engineer', 'SL Loot'), + (222374, 'Failed Repaired Crystal (Sympathetic Shielding Barrier)', 220433, 154566, + 'Sympathetic Shielding Barrier', 295526, NULL, NULL, NULL, 70, 'Tainted', 'Buffs', 'Engineer_Auras', 227, + 'Armor', 0, 1, 0, 0, 0, 'Engineer', 'SL Loot'), + (222375, 'Failed Repaired Crystal (Disruptive Photon Devourer)', 220411, 154717, 'Disruptive Photon Devourer', + 117956, NULL, NULL, NULL, 120, 'Tainted', 'DeBuffs', 'Engineer_DeBuffs_Auras', 236, 'Add_All_Offensive', 0, 1, + 0, 0, 0, 'Engineer', 'SL Loot'), + (222376, 'Failed Repaired Crystal (Disruptive Retaliatory Negator)', 220413, 154721, + 'Disruptive Retaliatory Negator', 118039, NULL, NULL, NULL, 153, 'Tainted', 'DeBuffs', 'Engineer_DeBuffs_Auras', + 236, 'Shield_AC', 0, 1, 0, 0, 0, 'Engineer', 'SL Loot'), + (222377, 'Failed Repaired Crystal (Disruptive Retributive Negator)', 220413, 154720, + 'Disruptive Retributive Negator', 118040, NULL, NULL, NULL, 182, 'Tainted', 'DeBuffs', 'Engineer_DeBuffs_Auras', + 236, 'Shield_AC', 0, 1, 0, 0, 0, 'Engineer', 'SL Loot'), + (222378, 'Failed Repaired Crystal (Disruptive Shielding Negator)', 220433, 154723, + 'Disruptive Shielding Negator', 118037, NULL, NULL, NULL, 57, 'Tainted', 'DeBuffs', 'Engineer_DeBuffs_Auras', + 236, 'Shield_AC', 0, 1, 0, 0, 0, 'Engineer', 'SL Loot'), + (222379, 'Failed Repaired Crystal (Disruptive Void Projector)', 220411, 154715, 'Disruptive Void Projector', + 117957, NULL, NULL, NULL, 166, 'Tainted', 'DeBuffs', 'Engineer_DeBuffs_Auras', 236, 'Add_All_Offensive', 0, 1, + 0, 0, 0, 'Engineer', 'SL Loot'), + (222380, 'Failed Repaired Crystal (Null Space Disruptor)', 220413, 154725, 'Null Space Disruptor', 118034, NULL, + NULL, NULL, 189, 'Tainted', 'DeBuffs', 'Engineer_DeBuffs_Auras', 236, 'Reflect_AC', 0, 1, 0, 0, 0, 'Engineer', + 'SL Loot'), + (222381, 'Failed Repaired Crystal (Beacon Warp)', 220431, 154914, 'Beacon Warp', 16340, NULL, NULL, NULL, 90, + 'Tainted', 'Combat', 'Beacon_Warp', 293, '', 0, 0, 0, 0, 0, 'Engineer', 'SL Loot'), + (222382, 'Tainted Shadow Crystal (Creation: Asp of Semol)', 220411, 154983, 'Creation: Asp of Semol', 117943, + NULL, NULL, NULL, 116, 'Tainted', 'Creation', '2H_Blunt_Weapons', 0, '', 0, 0, 0, 0, 0, 'Meta-Physicist', + 'SL Loot'), + (222383, 'Tainted Shadow Crystal (Creation: Belthior''s Flame Ward)', 220411, 154968, + 'Creation: Belthior''s Flame Ward', 117943, NULL, NULL, NULL, 147, 'Tainted', 'Creation', 'Shield_Weapons', 0, + '', 0, 0, 0, 0, 0, 'Meta-Physicist', 'SL Loot'), + (222384, 'Tainted Shadow Crystal (Creation: Bitis Striker)', 220411, 154978, 'Creation: Bitis Striker', 117943, + NULL, NULL, NULL, 136, 'Tainted', 'Creation', '1H_Blunt_Weapons', 0, '', 0, 0, 0, 0, 0, 'Meta-Physicist', + 'SL Loot'), + (222385, 'Tainted Shadow Crystal (Creation: Death Ward)', 220411, 154972, 'Creation: Death Ward', 117943, NULL, + NULL, NULL, 177, 'Tainted', 'Creation', 'Shield_Weapons', 0, '', 0, 0, 0, 0, 0, 'Meta-Physicist', 'SL Loot'), + (222386, 'Tainted Shadow Crystal (Creation: Coplan''s Hand Taipan)', 220411, 154979, + 'Creation: Coplan''s Hand Taipan', 117943, NULL, NULL, NULL, 90, 'Tainted', 'Creation', '1H_Blunt_Weapons', 0, + '', 0, 0, 0, 0, 0, 'Meta-Physicist', 'SL Loot'), + (222387, 'Tainted Shadow Crystal (Creation: Living Shield of Evernan)', 220411, 154969, + 'Creation: Living Shield of Evernan', 117943, NULL, NULL, NULL, 112, 'Tainted', 'Creation', 'Shield_Weapons', 0, + '', 0, 0, 0, 0, 0, 'Meta-Physicist', 'SL Loot'), + (222388, 'Tainted Shadow Crystal (Creation: Mocham''s Guard)', 220411, 154974, 'Creation: Mocham''s Guard', + 117943, NULL, NULL, NULL, 187, 'Tainted', 'Creation', 'Shield_Weapons', 0, '', 0, 0, 0, 0, 0, 'Meta-Physicist', + 'SL Loot'), + (222389, 'Tainted Shadow Crystal (Creation: Notum Defender)', 220431, 154976, 'Creation: Notum Defender', 117943, + NULL, NULL, NULL, 72, 'Tainted', 'Creation', 'Shield_Weapons', 0, '', 0, 0, 0, 0, 0, 'Meta-Physicist', + 'SL Loot'), + (222390, 'Tainted Shadow Crystal (Creation: Solar Guard)', 220411, 154973, 'Creation: Solar Guard', 117943, NULL, + NULL, NULL, 85, 'Tainted', 'Creation', 'Shield_Weapons', 0, '', 0, 0, 0, 0, 0, 'Meta-Physicist', 'SL Loot'), + (222391, 'Tainted Shadow Crystal (Creation: The Crotalus)', 220431, 154980, 'Creation: The Crotalus', 117943, + NULL, NULL, NULL, 48, 'Tainted', 'Creation', '1H_Blunt_Weapons', 0, '', 0, 0, 0, 0, 0, 'Meta-Physicist', + 'SL Loot'), + (222392, 'Tainted Shadow Crystal (Creation: Viper Staff)', 220431, 154984, 'Creation: Viper Staff', 117943, NULL, + NULL, NULL, 66, 'Tainted', 'Creation', '2H_Blunt_Weapons', 0, '', 0, 0, 0, 0, 0, 'Meta-Physicist', 'SL Loot'), + (222393, 'Tainted Shadow Crystal (Creation: Vital Buckler)', 220431, 154970, 'Creation: Vital Buckler', 117943, + NULL, NULL, NULL, 59, 'Tainted', 'Creation', 'Shield_Weapons', 0, '', 0, 0, 0, 0, 0, 'Meta-Physicist', + 'SL Loot'), + (222394, 'Tainted Shadow Crystal (Creation: Wave Breaker)', 220411, 154975, 'Creation: Wave Breaker', 117943, + NULL, NULL, NULL, 129, 'Tainted', 'Creation', 'Shield_Weapons', 0, '', 0, 0, 0, 0, 0, 'Meta-Physicist', + 'SL Loot'), + (222395, 'Tainted Shadow Crystal (Creation: Wixel''s Notum Python)', 220411, 154982, + 'Creation: Wixel''s Notum Python', 117943, NULL, NULL, NULL, 160, 'Tainted', 'Creation', '2H_Blunt_Weapons', 0, + '', 0, 0, 0, 0, 0, 'Meta-Physicist', 'SL Loot'), + (222396, 'Snow Crashed Shadow Crystal (Bootleg Beamers ''n Bolters (OP-XX))', 220424, 155349, + 'Bootleg Beamers ''n Bolters (OP-XX)', 117945, NULL, NULL, NULL, 8, 'Tainted', 'Creation', 'Ranged_Weapon', 0, + '', 0, 1, 0, 0, 0, 'Fixer', 'SL Loot'), + (222397, 'Snow Crashed Shadow Crystal (Bootleg Beamers ''n Bolters (OP-XL))', 220424, 155348, + 'Bootleg Beamers ''n Bolters (OP-XL)', 117945, NULL, NULL, NULL, 21, 'Tainted', 'Creation', 'Ranged_Weapon', 0, + '', 0, 1, 0, 0, 0, 'Fixer', 'SL Loot'), + (222398, 'Snow Crashed Shadow Crystal (Bootleg Beamers ''n Bolters (OP-LX))', 220424, 155347, + 'Bootleg Beamers ''n Bolters (OP-LX)', 117945, NULL, NULL, NULL, 34, 'Tainted', 'Creation', 'Ranged_Weapon', 0, + '', 0, 1, 0, 0, 0, 'Fixer', 'SL Loot'), + (222399, 'Snow Crashed Shadow Crystal (Bootleg Beamers ''n Bolters (OP-LXXX))', 220431, 155346, + 'Bootleg Beamers ''n Bolters (OP-LXXX)', 117945, NULL, NULL, NULL, 54, 'Tainted', 'Creation', 'Ranged_Weapon', + 0, '', 0, 1, 0, 0, 0, 'Fixer', 'SL Loot'), + (222400, 'Snow Crashed Shadow Crystal (Bootleg Beamers ''n Bolters (OP-C))', 220431, 155345, + 'Bootleg Beamers ''n Bolters (OP-C)', 117946, NULL, NULL, NULL, 67, 'Tainted', 'Creation', 'Ranged_Weapon', 0, + '', 0, 1, 0, 0, 0, 'Fixer', 'SL Loot'), + (222401, 'Snow Crashed Shadow Crystal (Bootleg Beamers ''n Bolters (OP-CXX))', 220431, 155344, + 'Bootleg Beamers ''n Bolters (OP-CXX)', 117946, NULL, NULL, NULL, 90, 'Tainted', 'Creation', 'Ranged_Weapon', 0, + '', 0, 1, 0, 0, 0, 'Fixer', 'SL Loot'), + (222402, 'Snow Crashed Shadow Crystal (Bootleg Beamers ''n Bolters (OP-CXL))', 220411, 155343, + 'Bootleg Beamers ''n Bolters (OP-CXL)', 117946, NULL, NULL, NULL, 103, 'Tainted', 'Creation', 'Ranged_Weapon', + 0, '', 0, 1, 0, 0, 0, 'Fixer', 'SL Loot'), + (222403, 'Snow Crashed Shadow Crystal (Bootleg Beamers ''n Bolters (OP-CLX))', 220411, 155342, + 'Bootleg Beamers ''n Bolters (OP-CLX)', 117947, NULL, NULL, NULL, 107, 'Tainted', 'Creation', 'Ranged_Weapon', + 0, '', 0, 1, 0, 0, 0, 'Fixer', 'SL Loot'), + (222404, 'Snow Crashed Shadow Crystal (Bootleg Beamers ''n Bolters (OP-CLXXX))', 220411, 155341, + 'Bootleg Beamers ''n Bolters (OP-CLXXX)', 117947, NULL, NULL, NULL, 113, 'Tainted', 'Creation', 'Ranged_Weapon', + 0, '', 0, 1, 0, 0, 0, 'Fixer', 'SL Loot'), + (222405, 'Snow Crashed Shadow Crystal (Bootleg Beamers ''n Bolters (OP-CC))', 220411, 155340, + 'Bootleg Beamers ''n Bolters (OP-CC)', 117947, NULL, NULL, NULL, 120, 'Tainted', 'Creation', 'Ranged_Weapon', 0, + '', 0, 1, 0, 0, 0, 'Fixer', 'SL Loot'), + (222406, 'Snow Crashed Shadow Crystal (Bootleg Blades ''n Blunts (OP-XX))', 220424, 155359, + 'Bootleg Blades ''n Blunts (OP-XX)', 117942, NULL, NULL, NULL, 8, 'Tainted', 'Creation', 'Melee_Weapon', 0, '', + 0, 1, 0, 0, 0, 'Fixer', 'SL Loot'), + (222407, 'Snow Crashed Shadow Crystal (Bootleg Blades ''n Blunts (OP-XL))', 220424, 155358, + 'Bootleg Blades ''n Blunts (OP-XL)', 117942, NULL, NULL, NULL, 21, 'Tainted', 'Creation', 'Melee_Weapon', 0, '', + 0, 1, 0, 0, 0, 'Fixer', 'SL Loot'), + (222408, 'Snow Crashed Shadow Crystal (Bootleg Blades ''n Blunts (OP-LX))', 220424, 155357, + 'Bootleg Blades ''n Blunts (OP-LX)', 117942, NULL, NULL, NULL, 34, 'Tainted', 'Creation', 'Melee_Weapon', 0, '', + 0, 1, 0, 0, 0, 'Fixer', 'SL Loot'), + (222409, 'Snow Crashed Shadow Crystal (Bootleg Blades ''n Blunts (OP-LXXX))', 220431, 155356, + 'Bootleg Blades ''n Blunts (OP-LXXX)', 117942, NULL, NULL, NULL, 54, 'Tainted', 'Creation', 'Melee_Weapon', 0, + '', 0, 1, 0, 0, 0, 'Fixer', 'SL Loot'), + (222410, 'Snow Crashed Shadow Crystal (Bootleg Blades ''n Blunts (OP-C))', 220431, 155355, + 'Bootleg Blades ''n Blunts (OP-C)', 117943, NULL, NULL, NULL, 67, 'Tainted', 'Creation', 'Melee_Weapon', 0, '', + 0, 1, 0, 0, 0, 'Fixer', 'SL Loot'), + (222411, 'Snow Crashed Shadow Crystal (Bootleg Blades ''n Blunts (OP-CXX))', 220431, 155354, + 'Bootleg Blades ''n Blunts (OP-CXX)', 117943, NULL, NULL, NULL, 90, 'Tainted', 'Creation', 'Melee_Weapon', 0, + '', 0, 1, 0, 0, 0, 'Fixer', 'SL Loot'), + (222412, 'Snow Crashed Shadow Crystal (Bootleg Blades ''n Blunts (OP-CXL))', 220411, 155353, + 'Bootleg Blades ''n Blunts (OP-CXL)', 117943, NULL, NULL, NULL, 103, 'Tainted', 'Creation', 'Melee_Weapon', 0, + '', 0, 1, 0, 0, 0, 'Fixer', 'SL Loot'), + (222413, 'Snow Crashed Shadow Crystal (Bootleg Blades ''n Blunts (OP-CLX))', 220411, 155352, + 'Bootleg Blades ''n Blunts (OP-CLX)', 117944, NULL, NULL, NULL, 107, 'Tainted', 'Creation', 'Melee_Weapon', 0, + '', 0, 1, 0, 0, 0, 'Fixer', 'SL Loot'), + (222414, 'Snow Crashed Shadow Crystal (Bootleg Blades ''n Blunts (OP-CLXXX))', 220411, 155351, + 'Bootleg Blades ''n Blunts (OP-CLXXX)', 117944, NULL, NULL, NULL, 113, 'Tainted', 'Creation', 'Melee_Weapon', 0, + '', 0, 1, 0, 0, 0, 'Fixer', 'SL Loot'), + (222415, 'Snow Crashed Shadow Crystal (Bootleg Blades ''n Blunts (OP-CC))', 220411, 155350, + 'Bootleg Blades ''n Blunts (OP-CC)', 117944, NULL, NULL, NULL, 120, 'Tainted', 'Creation', 'Melee_Weapon', 0, + '', 0, 1, 0, 0, 0, 'Fixer', 'SL Loot'), + (222416, 'Snow Crashed Shadow Crystal (Smuggler Shipment (OP-XX))', 220424, 155339, 'Smuggler Shipment (OP-XX)', + 117932, NULL, NULL, NULL, 8, 'Tainted', 'Creation', 'Armor', 0, '', 0, 1, 0, 0, 0, 'Fixer', 'SL Loot'), + (222417, 'Snow Crashed Shadow Crystal (Smuggler Shipment (OP-XL))', 220424, 155338, 'Smuggler Shipment (OP-XL)', + 117932, NULL, NULL, NULL, 24, 'Tainted', 'Creation', 'Armor', 0, '', 0, 1, 0, 0, 0, 'Fixer', 'SL Loot'), + (222418, 'Snow Crashed Shadow Crystal (Smuggler Shipment (OP-LX))', 220424, 155337, 'Smuggler Shipment (OP-LX)', + 117932, NULL, NULL, NULL, 34, 'Tainted', 'Creation', 'Armor', 0, '', 0, 1, 0, 0, 0, 'Fixer', 'SL Loot'), + (222419, 'Snow Crashed Shadow Crystal (Smuggler Shipment (OP-LXXX))', 220431, 155336, + 'Smuggler Shipment (OP-LXXX)', 117932, NULL, NULL, NULL, 54, 'Tainted', 'Creation', 'Armor', 0, '', 0, 1, 0, 0, + 0, 'Fixer', 'SL Loot'), + (222420, 'Snow Crashed Shadow Crystal (Smuggler Shipment (OP-C))', 220431, 155335, 'Smuggler Shipment (OP-C)', + 117933, NULL, NULL, NULL, 70, 'Tainted', 'Creation', 'Armor', 0, '', 0, 1, 0, 0, 0, 'Fixer', 'SL Loot'), + (222421, 'Snow Crashed Shadow Crystal (Smuggler Shipment (OP-CXX))', 220431, 155334, + 'Smuggler Shipment (OP-CXX)', 117933, NULL, NULL, NULL, 90, 'Tainted', 'Creation', 'Armor', 0, '', 0, 1, 0, 0, + 0, 'Fixer', 'SL Loot'), + (222422, 'Snow Crashed Shadow Crystal (Smuggler Shipment (OP-CXL))', 220411, 155333, + 'Smuggler Shipment (OP-CXL)', 117933, NULL, NULL, NULL, 103, 'Tainted', 'Creation', 'Armor', 0, '', 0, 1, 0, 0, + 0, 'Fixer', 'SL Loot'), + (222423, 'Snow Crashed Shadow Crystal (Smuggler Shipment (OP-CLX))', 220411, 155332, + 'Smuggler Shipment (OP-CLX)', 117934, NULL, NULL, NULL, 107, 'Tainted', 'Creation', 'Armor', 0, '', 0, 1, 0, 0, + 0, 'Fixer', 'SL Loot'), + (222424, 'Snow Crashed Shadow Crystal (Smuggler Shipment (OP-CLXXX))', 220411, 155331, + 'Smuggler Shipment (OP-CLXXX)', 117934, NULL, NULL, NULL, 113, 'Tainted', 'Creation', 'Armor', 0, '', 0, 1, 0, + 0, 0, 'Fixer', 'SL Loot'), + (222425, 'Snow Crashed Shadow Crystal (Smuggler Shipment (OP-CC))', 220411, 155330, 'Smuggler Shipment (OP-CC)', + 117934, NULL, NULL, NULL, 120, 'Tainted', 'Creation', 'Armor', 0, '', 0, 1, 0, 0, 0, 'Fixer', 'SL Loot'), + (222426, 'Dirty Money Shadow Crystal (Contemplation)', 220437, 155577, 'Contemplation', 46271, NULL, NULL, NULL, + 189, 'Tainted', 'Crowd_Control', 'Mezz', 147, 'Target', 0, 1, 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (222427, 'Dirty Money Shadow Crystal (Mud Slinger)', 220425, 155615, 'Mud Slinger', 16309, NULL, NULL, NULL, 44, + 'Tainted', 'Pet_Buffs', 'Pet_Taunt_Buffs', 232, '', 0, 1, 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (222428, 'Dirty Money Shadow Crystal (Defamation 101)', 220412, 155616, 'Defamation 101', 16309, NULL, NULL, + NULL, 130, 'Tainted', 'Pet_Buffs', 'Pet_Taunt_Buffs', 232, '', 0, 1, 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (222429, 'Dirty Money Shadow Crystal (Character Assassin)', 220412, 155617, 'Character Assassin', 16309, NULL, + NULL, NULL, 173, 'Tainted', 'Pet_Buffs', 'Pet_Taunt_Buffs', 232, '', 0, 1, 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (222430, 'Dirty Money Shadow Crystal (Motivational Speech: Bravery Overcomes)', 220432, 155809, + 'Motivational Speech: Bravery Overcomes', 295510, NULL, NULL, NULL, 83, 'Tainted', 'Buffs', + 'Motivational_SpeechEffect', 234, 'Add_All_Offensive_&_Defensive_Buffs', 0, 0, 0, 0, 0, 'Bureaucrat', + 'SL Loot'), + (222431, 'Dirty Money Shadow Crystal (Motivational Speech: Glorious Leader)', 220412, 155806, + 'Motivational Speech: Glorious Leader', 295510, NULL, NULL, NULL, 156, 'Tainted', 'Buffs', + 'Motivational_SpeechEffect', 234, 'Add_All_Offensive_&_Defensive_Buffs', 0, 0, 0, 0, 0, 'Bureaucrat', + 'SL Loot'), + (222432, 'Dirty Money Shadow Crystal (Motivational Speech: Heroic Measures)', 220412, 155807, + 'Motivational Speech: Heroic Measures', 295510, NULL, NULL, NULL, 186, 'Tainted', 'Buffs', + 'Motivational_SpeechEffect', 234, 'Add_All_Offensive_&_Defensive_Buffs', 0, 0, 0, 0, 0, 'Bureaucrat', + 'SL Loot'), + (222433, 'Dirty Money Shadow Crystal (Motivational Speech: Lead From The Front)', 220425, 155808, + 'Motivational Speech: Lead From The Front', 295510, NULL, NULL, NULL, 37, 'Tainted', 'Buffs', + 'Motivational_SpeechEffect', 234, 'Add_All_Offensive_&_Defensive_Buffs', 0, 0, 0, 0, 0, 'Bureaucrat', + 'SL Loot'), + (222434, 'Dirty Money Shadow Crystal (Motivational Speech: Triumphant Pose)', 220412, 155805, + 'Motivational Speech: Triumphant Pose', 295510, NULL, NULL, NULL, 130, 'Tainted', 'Buffs', + 'Motivational_SpeechEffect', 234, 'Add_All_Offensive_&_Defensive_Buffs', 0, 0, 0, 0, 0, 'Bureaucrat', + 'SL Loot'), + (222435, 'Tainted Shadow Crystal (Deranged Mindreaver)', 220424, 156123, 'Deranged Mindreaver', 295574, NULL, + NULL, NULL, 41, 'Tainted', 'Pet', 'Mezz_Pet', 0, '', 0, 0, 0, 0, 0, 'Meta-Physicist', 'SL Loot'), + (222436, 'Tainted Shadow Crystal (Distracting Sphere)', 220424, 156124, 'Distracting Sphere', 295574, NULL, NULL, + NULL, 11, 'Tainted', 'Pet', 'Mezz_Pet', 0, '', 0, 0, 0, 0, 0, 'Meta-Physicist', 'SL Loot'), + (222437, 'Tainted Shadow Crystal (Greater Deranged Mindreaver)', 220424, 156125, 'Greater Deranged Mindreaver', + 295574, NULL, NULL, NULL, 50, 'Tainted', 'Pet', 'Mezz_Pet', 0, '', 0, 0, 0, 0, 0, 'Meta-Physicist', 'SL Loot'), + (222438, 'Tainted Shadow Crystal (Greater Distracting Sphere)', 220424, 156126, 'Greater Distracting Sphere', + 295574, NULL, NULL, NULL, 17, 'Tainted', 'Pet', 'Mezz_Pet', 0, '', 0, 0, 0, 0, 0, 'Meta-Physicist', 'SL Loot'), + (222439, 'Tainted Shadow Crystal (Lesser Deranged Mindreaver)', 220424, 156127, 'Lesser Deranged Mindreaver', + 295574, NULL, NULL, NULL, 34, 'Tainted', 'Pet', 'Mezz_Pet', 0, '', 0, 0, 0, 0, 0, 'Meta-Physicist', 'SL Loot'), + (222440, 'Tainted Shadow Crystal (Lesser Distracting Sphere)', 220424, 156128, 'Lesser Distracting Sphere', + 295574, NULL, NULL, NULL, 4, 'Tainted', 'Pet', 'Mezz_Pet', 0, '', 0, 0, 0, 0, 0, 'Meta-Physicist', 'SL Loot'), + (222441, 'Tainted Shadow Crystal (Summoning of Absuum)', 220431, 156129, 'Summoning of Absuum', 295574, NULL, + NULL, NULL, 83, 'Tainted', 'Pet', 'Mezz_Pet', 0, '', 0, 0, 0, 0, 0, 'Meta-Physicist', 'SL Loot'), + (222442, 'Tainted Shadow Crystal (Summoning of Balbuto the Gibberer)', 220411, 156131, + 'Summoning of Balbuto the Gibberer', 295574, NULL, NULL, NULL, 176, 'Tainted', 'Pet', 'Mezz_Pet', 0, '', 0, 0, + 0, 0, 0, 'Meta-Physicist', 'SL Loot'), + (222443, 'Tainted Shadow Crystal (Summoning of Confane)', 220411, 156118, 'Summoning of Confane', 295574, NULL, + NULL, NULL, 166, 'Tainted', 'Pet', 'Mezz_Pet', 0, '', 0, 0, 0, 0, 0, 'Meta-Physicist', 'SL Loot'), + (222444, 'Tainted Shadow Crystal (Summoning of Demenus)', 220411, 156121, 'Summoning of Demenus', 295574, NULL, + NULL, NULL, 120, 'Tainted', 'Pet', 'Mezz_Pet', 0, '', 0, 0, 0, 0, 0, 'Meta-Physicist', 'SL Loot'), + (222445, 'Tainted Shadow Crystal (Summoning of Distral)', 220411, 156119, 'Summoning of Distral', 295574, NULL, + NULL, NULL, 159, 'Tainted', 'Pet', 'Mezz_Pet', 0, '', 0, 0, 0, 0, 0, 'Meta-Physicist', 'SL Loot'), + (222446, 'Tainted Shadow Crystal (Summoning of Duoco)', 220411, 156120, 'Summoning of Duoco', 295574, NULL, NULL, + NULL, 153, 'Tainted', 'Pet', 'Mezz_Pet', 0, '', 0, 0, 0, 0, 0, 'Meta-Physicist', 'SL Loot'), + (222447, 'Tainted Shadow Crystal (Summoning of Ignatus Mind-Clouder)', 220431, 156122, + 'Summoning of Ignatus Mind-Clouder', 295574, NULL, NULL, NULL, 100, 'Tainted', 'Pet', 'Mezz_Pet', 0, '', 0, 0, + 0, 0, 0, 'Meta-Physicist', 'SL Loot'), + (222448, 'Tainted Shadow Crystal (Supreme Deranged Mindreaver)', 220431, 156130, 'Supreme Deranged Mindreaver', + 295574, NULL, NULL, NULL, 67, 'Tainted', 'Pet', 'Mezz_Pet', 0, '', 0, 0, 0, 0, 0, 'Meta-Physicist', 'SL Loot'), + (222449, 'Tainted Shadow Crystal (Supreme Distracting Sphere)', 220424, 156117, 'Supreme Distracting Sphere', + 295574, NULL, NULL, NULL, 24, 'Tainted', 'Pet', 'Mezz_Pet', 0, '', 0, 0, 0, 0, 0, 'Meta-Physicist', 'SL Loot'), + (222450, 'Dirty Money Shadow Crystal (Emergency XP Loss Reducer: 30)', 220422, 156255, + 'Emergency XP Loss Reducer: 30', 16313, NULL, NULL, NULL, 47, 'Tainted', 'Buffs', + 'Experience_Constructs_-_XP_Bonus', 959, '', 0, 0, 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (222451, 'Dirty Money Shadow Crystal (Demotivational Speech: 10 Thumbs)', 220412, 157529, + 'Demotivational Speech: 10 Thumbs', 39041, NULL, NULL, NULL, 113, 'Tainted', 'DeBuffs', + 'Demotivational_Speeches', 238, 'Critical_DeBuffs', 0, 0, 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (222452, 'Dirty Money Shadow Crystal (Demotivational Speech: Administrative Error)', 220432, 157532, + 'Demotivational Speech: Administrative Error', 39125, NULL, NULL, NULL, 83, 'Tainted', 'DeBuffs', + 'Demotivational_Speeches', 238, 'Max_Nano_DeBuffs', 0, 0, 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (222453, 'Dirty Money Shadow Crystal (Demotivational Speech: Certainty of Defeat)', 220412, 157530, + 'Demotivational Speech: Certainty of Defeat', 39041, NULL, NULL, NULL, 179, 'Tainted', 'DeBuffs', + 'Demotivational_Speeches', 238, 'Critical_DeBuffs', 0, 0, 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (222454, 'Dirty Money Shadow Crystal (Demotivational Speech: Factory Recall)', 220425, 157531, + 'Demotivational Speech: Factory Recall', 39125, NULL, NULL, NULL, 34, 'Tainted', 'DeBuffs', + 'Demotivational_Speeches', 238, 'Max_Nano_DeBuffs', 0, 0, 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (222455, 'Dirty Money Shadow Crystal (Demotivational Speech: Fumble Fingers)', 220425, 157528, + 'Demotivational Speech: Fumble Fingers', 39041, NULL, NULL, NULL, 21, 'Tainted', 'DeBuffs', + 'Demotivational_Speeches', 238, 'Critical_DeBuffs', 0, 0, 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (222456, 'Dirty Money Shadow Crystal (Demotivational Speech: Let''s Make a Committee)', 220425, 157535, + 'Demotivational Speech: Let''s Make a Committee', 39124, NULL, NULL, NULL, 44, 'Tainted', 'DeBuffs', + 'Demotivational_Speeches', 238, 'Nano_Resist_DeBuffs', 0, 0, 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (222457, 'Dirty Money Shadow Crystal (Demotivational Speech: Mourner''s March)', 220412, 157527, + 'Demotivational Speech: Mourner''s March', 39124, NULL, NULL, NULL, 186, 'Tainted', 'DeBuffs', + 'Demotivational_Speeches', 238, 'Nano_Resist_DeBuffs', 0, 0, 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (222458, 'Dirty Money Shadow Crystal (Demotivational Speech: That is not on the Agenda)', 220432, 157525, + 'Demotivational Speech: That is not on the Agenda', 39124, NULL, NULL, NULL, 100, 'Tainted', 'DeBuffs', + 'Demotivational_Speeches', 238, 'Nano_Resist_DeBuffs', 0, 0, 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (222459, 'Dirty Money Shadow Crystal (Demotivational Speech: Retreat to Glory)', 220412, 157524, + 'Demotivational Speech: Retreat to Glory', 39125, NULL, NULL, NULL, 182, 'Tainted', 'DeBuffs', + 'Demotivational_Speeches', 238, 'Max_Nano_DeBuffs', 0, 0, 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (222460, 'Dirty Money Shadow Crystal (Demotivational Speech: Surge in the System)', 220412, 157533, + 'Demotivational Speech: Surge in the System', 39125, NULL, NULL, NULL, 126, 'Tainted', 'DeBuffs', + 'Demotivational_Speeches', 238, 'Max_Nano_DeBuffs', 0, 0, 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (222461, 'Dirty Money Shadow Crystal (Demotivational Speech: Swapdisk Mayhem)', 220412, 157534, + 'Demotivational Speech: Swapdisk Mayhem', 39125, NULL, NULL, NULL, 159, 'Tainted', 'DeBuffs', + 'Demotivational_Speeches', 238, 'Max_Nano_DeBuffs', 0, 0, 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (222462, 'Dirty Money Shadow Crystal (Demotivational Speech: Who Writes the Minutes?)', 220412, 157526, + 'Demotivational Speech: Who Writes the Minutes?', 39124, NULL, NULL, NULL, 153, 'Tainted', 'DeBuffs', + 'Demotivational_Speeches', 238, 'Nano_Resist_DeBuffs', 0, 0, 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (222463, 'Dirty Money Shadow Crystal (Motivational Speech: Assassin''s Focus)', 220412, 157503, + 'Motivational Speech: Assassin''s Focus', 295521, NULL, NULL, NULL, 156, 'Tainted', 'Buffs', + 'Motivational_SpeechEffect', 234, 'Critical_Buffs', 0, 0, 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (222464, 'Dirty Money Shadow Crystal (Motivational Speech: Implement Through Iteration)', 220412, 157500, + 'Motivational Speech: Implement Through Iteration', 295517, NULL, NULL, NULL, 149, 'Tainted', 'Buffs', + 'Motivational_SpeechEffect', 234, 'Resistance_Buffs', 0, 1, 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (222465, 'Dirty Money Shadow Crystal (Motivational Speech: Improvise and Adapt)', 220412, 157504, + 'Motivational Speech: Improvise and Adapt', 295517, NULL, NULL, NULL, 149, 'Tainted', 'Buffs', + 'Motivational_SpeechEffect', 234, 'Resistance_Buffs', 0, 0, 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (222466, 'Dirty Money Shadow Crystal (Motivational Speech: Only the Paranoid Will Survive!)', 220425, 157502, + 'Motivational Speech: Only the Paranoid Will Survive!', 295517, NULL, NULL, NULL, 50, 'Tainted', 'Buffs', + 'Motivational_SpeechEffect', 234, 'Resistance_Buffs', 0, 1, 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (222467, 'Dirty Money Shadow Crystal (Motivational Speech: Opportunity Knocks)', 220432, 157499, + 'Motivational Speech: Opportunity Knocks', 295521, NULL, NULL, NULL, 87, 'Tainted', 'Buffs', + 'Motivational_SpeechEffect', 234, 'Critical_Buffs', 0, 1, 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (222468, 'Dirty Money Shadow Crystal (Motivational Speech: Organizational Opportunitites)', 220432, 157501, + 'Motivational Speech: Organizational Opportunities', 295517, NULL, NULL, NULL, 97, 'Tainted', 'Buffs', + 'Motivational_SpeechEffect', 234, 'Resistance_Buffs', 0, 1, 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (222469, 'Badly Corroded Crystal (Mark of Peril)', 220412, 160574, 'Mark of Peril', 291164, NULL, NULL, NULL, + 159, 'Tainted', 'Buffs', 'Critical_Increase_Buffs', 182, 'Other', 0, 1, 0, 0, 0, 'Martial Artist', 'SL Loot'), + (222470, 'Badly Corroded Crystal (Mark of Risk)', 220432, 160576, 'Mark of Risk', 291164, NULL, NULL, NULL, 57, + 'Tainted', 'Buffs', 'Critical_Increase_Buffs', 182, 'Other', 0, 1, 0, 0, 0, 'Martial Artist', 'SL Loot'), + (222471, 'Badly Corroded Crystal (Mark of Danger)', 220412, 160575, 'Mark of Danger', 291164, NULL, NULL, NULL, + 126, 'Tainted', 'Buffs', 'Critical_Increase_Buffs', 182, 'Other', 0, 1, 0, 0, 0, 'Martial Artist', 'SL Loot'), + (222472, 'Snow Crashed Shadow Crystal (NCU Compressor)', 220424, 162995, 'NCU Compressor', 38917, NULL, NULL, + NULL, 20, 'Tainted', 'Buffs', 'Fixer_NCU_Buffs', 257, '', 0, 1, 0, 0, 0, 'Fixer', 'SL Loot'), + (222473, 'Weird Looking Nano Crystal (Soothing Breeze)', 301157, 222843, 'Soothing Breeze', 301158, 163401, + 163402, 163403, 24, 'Crystal', 'DeBuffs', 'Proximity_Range_DeBuffs', 1048, '', 0, 1, 0, 0, 0, 'Adventurer', + 'Greedy Shade / SL Static'), + (222474, 'Cracked Crystal (Edge of Steel)', 220425, 202776, 'Edge of Steel', 16325, 0, 0, 0, 8, 'Misc', 'Buffs', + 'Melee_Weapon_Buffs_Line', 180, '1H_Edged_Buffs', 0, 0, 0, 0, 0, 'Enforcer', 'SL Loot'), + (222475, 'Cracked Crystal (Edge of the Barber)', 220425, 202739, 'Edge of the Barber', 16325, 0, 0, 0, 30, + 'Misc', 'Buffs', 'Melee_Weapon_Buffs_Line', 180, '1H_Edged_Buffs', 0, 0, 0, 0, 0, 'Enforcer', 'SL Loot'), + (222476, 'Cracked Crystal (Edge of the Buccaneer)', 220432, 202774, 'Edge of the Buccaneer', 16325, 202777, + 202778, 202779, 59, 'Misc', 'Buffs', 'Melee_Weapon_Buffs_Line', 180, '1H_Edged_Buffs', 0, 0, 0, 0, 0, + 'Enforcer', 'SL Loot'), + (222477, 'Cracked Crystal (Skill of the Butcher)', 220425, 202826, 'Skill of the Butcher', 16325, 0, 0, 0, 8, + 'Misc', 'Buffs', 'Melee_Weapon_Buffs_Line', 180, '2H_Edged_Buffs', 0, 0, 0, 0, 0, 'Enforcer', 'SL Loot'), + (222478, 'Cracked Crystal (Skill of the Savage)', 220425, 202828, 'Skill of the Savage', 16325, 0, 0, 0, 30, + 'Misc', 'Buffs', 'Melee_Weapon_Buffs_Line', 180, '2H_Edged_Buffs', 0, 0, 0, 0, 0, 'Enforcer', 'SL Loot'), + (222479, 'Cracked Crystal (Skill of the Viking)', 220432, 202830, 'Skill of the Viking', 16325, 0, 0, 0, 59, + 'Misc', 'Buffs', 'Melee_Weapon_Buffs_Line', 180, '2H_Edged_Buffs', 0, 0, 0, 0, 0, 'Enforcer', 'SL Loot'), + (222480, 'Cracked Crystal (Thugs Joy)', 220432, 202840, 'Thugs Joy', 16200, 0, 0, 0, 59, 'Misc', 'Buffs', + 'Melee_Weapon_Buffs_Line', 180, '1H_Blunt_Buffs', 0, 0, 0, 0, 0, 'Enforcer', 'SL Loot'), + (222481, 'Cracked Crystal (Threat of the Bully)', 220425, 202848, 'Threat of the Bully', 20879, 0, 0, 0, 8, + 'Misc', 'Buffs', 'Melee_Weapon_Buffs_Line', 180, '2H_Blunt_Buffs', 0, 0, 0, 0, 0, 'Enforcer', 'SL Loot'), + (222482, 'Cracked Crystal (Bone Crusher)', 220432, 202850, 'Bone Crusher', 20879, 0, 0, 0, 59, 'Misc', 'Buffs', + 'Melee_Weapon_Buffs_Line', 180, '2H_Blunt_Buffs', 0, 0, 0, 0, 0, 'Enforcer', 'SL Loot'), + (222483, 'Cracked Crystal (Talon of the Gryphon)', 220432, 202866, 'Talon of the Gryphon', 16201, 0, 0, 0, 56, + 'Misc', 'Buffs', 'Enforcer_Piercing_Buffs', 278, '', 0, 0, 0, 0, 0, 'Enforcer', 'SL Loot'), + (222484, 'Cracked Crystal (Talon of the Eagle)', 220425, 202868, 'Talon of the Eagle', 16201, 0, 0, 0, 35, + 'Misc', 'Buffs', 'Enforcer_Piercing_Buffs', 278, '', 0, 0, 0, 0, 0, 'Enforcer', 'SL Loot'), + (222485, 'Cracked Crystal (Talon of the Hawk)', 220425, 202870, 'Talon of the Hawk', 16201, 0, 0, 0, 10, 'Misc', + 'Buffs', 'Enforcer_Piercing_Buffs', 278, '', 0, 0, 0, 0, 0, 'Enforcer', 'SL Loot'), + (222486, 'Corroded Crystal with Bullet Holes (A Sergeant''s Knowledge)', 220425, 203121, + 'A Sergeant''s Knowledge', 16195, NULL, NULL, NULL, 30, 'Tainted', 'Buffs', 'Assault_Rifle_Buffs', 212, '', 0, + 0, 0, 0, 0, 'Soldier', 'SL Loot'), + (222487, 'Corroded Crystal with Bullet Holes (Alleysweeper)', 220425, 203123, 'Alleysweeper', 16326, NULL, NULL, + NULL, 36, 'Tainted', 'Buffs', 'Soldier_Shotgun_Buffs', 280, '', 0, 0, 0, 0, 0, 'Soldier', 'SL Loot'), + (222488, 'Corroded Crystal with Bullet Holes (Power Volley)', 220425, 203133, 'Power Volley', 16206, NULL, NULL, + NULL, 38, 'Tainted', 'Buffs', 'Burst_Buffs', 214, '', 0, 0, 0, 0, 0, 'Soldier', 'SL Loot'), + (222489, 'Corroded Crystal with Bullet Holes (Laser Surgery)', 220425, 203135, 'Laser Surgery', 20882, NULL, + NULL, NULL, 33, 'Tainted', 'Buffs', 'Ranged_Energy_Weapon_Buffs', 213, '', 0, 0, 0, 0, 0, 'Soldier', 'SL Loot'), + (222490, 'Corroded Crystal with Bullet Holes (Metal Rain)', 220432, 203147, 'Metal Rain', 16237, NULL, NULL, + NULL, 56, 'Tainted', 'Buffs', 'Soldier_Full_Auto_Buffs', 281, '', 0, 0, 0, 0, 0, 'Soldier', 'SL Loot'), + (222491, 'Corroded Crystal with Bullet Holes (Metal Stream)', 220425, 203149, 'Metal Stream', 16237, NULL, NULL, + NULL, 31, 'Tainted', 'Buffs', 'Soldier_Full_Auto_Buffs', 281, '', 0, 0, 0, 0, 0, 'Soldier', 'SL Loot'), + (222492, 'Cracked Crystal (Harnessed Lightning)', 220425, 203213, 'Harnessed Lightning', 20881, 0, 0, 0, 20, + 'Misc', 'Buffs', 'Enforcer_Melee_Energy_Buffs', 279, '', 0, 0, 0, 0, 0, 'Enforcer', 'SL Loot'), + (222493, 'Snow Crashed Shadow Crystal (Scatter Bonds)', 220424, 203593, 'Scatter Bonds', 16216, NULL, NULL, NULL, + 10, 'Tainted', 'Anti_Crowd_Control', 'Self_Snare_Removal', 0, '', 0, 0, 0, 0, 0, 'Fixer', 'SL Loot'), + (222494, 'Snow Crashed Shadow Crystal (Burst Bonds)', 220431, 203597, 'Burst Bonds', 16216, NULL, NULL, NULL, 53, + 'Tainted', 'Anti_Crowd_Control', 'Self_Snare_Removal', 0, '', 0, 0, 0, 0, 0, 'Fixer', 'SL Loot'), + (222495, 'Tainted Shadow Crystal (Fluctuate Manifestation)', 220431, 203605, 'Fluctuate Manifestation', 16216, + NULL, NULL, NULL, 88, 'Tainted', 'Pet', 'Pet_Root/Snare_Reduction', 0, '', 0, 0, 0, 0, 0, 'Meta-Physicist', + 'SL Loot'), + (222496, 'Dirty Money Shadow Crystal (Sidestep the Blame)', 220424, 203657, 'Sidestep the Blame', 16216, NULL, + NULL, NULL, 22, 'Tainted', 'Anti_Crowd_Control', 'Self_Snare_Reduction', 0, '', 0, 0, 0, 0, 0, 'Bureaucrat', + 'SL Loot'), + (222497, 'Hacked Corroded Crystal (Dodge Pursuers)', 220431, 203667, 'Dodge Pursuers', 16216, NULL, NULL, NULL, + 57, 'Tainted', 'Anti_Crowd_Control', 'Snare_Removal', 0, '', 0, 0, 0, 0, 0, 'Agent', 'SL Loot'), + (222498, 'Severly Corroded Shadow Crystal (Writ of Mobility)', 220424, 203784, 'Writ of Mobility', 16216, NULL, + NULL, NULL, 40, 'Tainted', 'Anti_Crowd_Control', 'Root_Duration_Reduction', 0, 'Self', 0, 0, 0, 0, 0, 'Trader', + 'SL Loot'), + (222499, 'Hacked Corroded Crystal (Break Chains)', 220431, 203797, 'Break Chains', 16216, NULL, NULL, NULL, 52, + 'Tainted', 'Anti_Crowd_Control', 'Root_Removal', 0, 'Self', 0, 0, 0, 0, 0, 'Agent', 'SL Loot'), + (222500, 'Overcharged Corroded Nano Crystal (Tear Constraints)', 220431, 203805, 'Tear Constraints', 16216, NULL, + NULL, NULL, 68, 'Tainted', 'Combat', 'Root_Reduction', 0, '', 0, 0, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (222501, 'Snow Crashed Shadow Crystal (Escape Captivation)', 220431, 203811, 'Escape Captivation', 16216, NULL, + NULL, NULL, 73, 'Tainted', 'Anti_Crowd_Control', 'Self_Root_Removal', 0, '', 0, 0, 0, 0, 0, 'Fixer', 'SL Loot'), + (222502, 'Dirty Money Shadow Crystal (Beg for Freedom)', 220424, 203831, 'Beg for Freedom', 16216, NULL, NULL, + NULL, 24, 'Tainted', 'Anti_Crowd_Control', 'Self_Root_Reduction', 0, '', 0, 0, 0, 0, 0, 'Bureaucrat', + 'SL Loot'), + (222503, 'Dirty Money Shadow Crystal (Pursuade for Freedom)', 220424, 203835, 'Pursuade for Freedom', 16216, + NULL, NULL, NULL, 49, 'Tainted', 'Anti_Crowd_Control', 'Self_Root_Reduction', 0, '', 0, 0, 0, 0, 0, + 'Bureaucrat', 'SL Loot'), + (222504, 'Dirty Money Shadow Crystal (Minor Exoskeleton Pulse)', 220424, 203850, 'Minor Exoskeleton Pulse', + 16216, NULL, NULL, NULL, 36, 'Tainted', 'Anti_Crowd_Control', 'Pet_Reduction', 0, '', 0, 0, 0, 0, 0, + 'Bureaucrat', 'SL Loot'), + (222505, 'Failed Repaired Crystal (Lesser Energize Shell)', 220424, 203869, 'Lesser Energize Shell', 16216, NULL, + NULL, NULL, 14, 'Tainted', 'Pet_Combat', 'RootSnareReduction', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'SL Loot'), + (222506, 'Failed Repaired Crystal (Energize Shell)', 220424, 203871, 'Energize Shell', 16216, NULL, NULL, NULL, + 40, 'Tainted', 'Pet_Combat', 'RootSnareReduction', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'SL Loot'), + (222507, 'Dirty Money Shadow Crystal (Request Freedom)', 220424, 203948, 'Request Freedom', 16216, NULL, NULL, + NULL, 36, 'Tainted', 'Anti_Crowd_Control', 'Other_Root_Reduction', 0, '', 0, 0, 0, 0, 0, 'Bureaucrat', + 'SL Loot'), + (222508, 'Dirty Money Shadow Crystal (The Claim to Freedom)', 220424, 203958, 'The Claim to Freedom', 16216, + NULL, NULL, NULL, 42, 'Tainted', 'Anti_Crowd_Control', 'Other_Snare_Reduction', 0, '', 0, 0, 0, 0, 0, + 'Bureaucrat', 'SL Loot'), + (222509, 'Severly Corroded Shadow Crystal (Passage for One)', 220431, 203966, 'Passage for One', 16216, NULL, + NULL, NULL, 67, 'Tainted', 'Anti_Crowd_Control', 'Root_Duration_Reduction', 0, 'Target', 0, 0, 0, 0, 0, + 'Trader', 'SL Loot'), + (222510, 'Hacked Corroded Crystal (Grim Circumstance)', 220431, 203972, 'Grim Circumstance', 16216, NULL, NULL, + NULL, 94, 'Tainted', 'Anti_Crowd_Control', 'Root_Removal', 0, 'Target', 0, 0, 0, 0, 0, 'Agent', 'SL Loot'), + (222511, 'Snow Crashed Shadow Crystal (Scatter Bonds (Other))', 220424, 203976, 'Scatter Bonds (Other)', 16216, + NULL, NULL, NULL, 21, 'Tainted', 'Anti_Crowd_Control', 'Target_Snare_Removal', 0, '', 0, 0, 0, 0, 0, 'Fixer', + 'SL Loot'), + (222513, 'Badly Eroded Crystal (Freedom of the Forester)', 220433, 204308, 'Freedom of the Forester', 118436, + NULL, NULL, NULL, 58, 'Tainted', 'Buffs', 'Self_Root/Snare_Resist_Buffs', 283, '', 0, 1, 0, 0, 0, 'Adventurer', + 'SL Loot'), + (222514, 'Badly Eroded Crystal (Boon of the Forester)', 220433, 204314, 'Boon of the Forester', 38841, NULL, + NULL, NULL, 80, 'Tainted', 'Buffs', 'Other_Root/Snare_Resist_Buffs', 284, '', 0, 1, 0, 0, 0, 'Adventurer', + 'SL Loot'), + (222515, 'Failed Repaired Crystal (Lesser Polarized Screening)', 220433, 204339, 'Lesser Polarized Screening', + 38758, NULL, NULL, NULL, 52, 'Tainted', 'Pet_Buffs', 'Pet_Snare/Root_Resistance_Buffs', 285, '', 0, 0, 0, 0, 0, + 'Engineer', 'SL Loot'), + (222516, 'Failed Repaired Crystal (Sloughing Protective Barrier)', 220433, 204345, + 'Sloughing Protective Barrier', 39170, NULL, NULL, NULL, 72, 'Tainted', 'Buffs', + 'Engineer_Special_Attack_Absorber', 286, 'Self', 0, 0, 0, 0, 0, 'Engineer', 'SL Loot'), + (222517, 'Failed Repaired Crystal (Intrusive Aura of Entanglement)', 220430, 204362, + 'Intrusive Aura of Entanglement', 46276, NULL, NULL, NULL, 60, 'Tainted', 'Pet_Buffs', + 'Engineer_Pet_AOE_Snare_Buffs', 288, '', 0, 0, 0, 0, 0, 'Engineer', 'SL Loot'), + (222518, 'Failed Repaired Crystal (Intrusive Aura Cancellation)', 220431, 204372, 'Intrusive Aura Cancellation', + 16216, NULL, NULL, NULL, 60, 'Tainted', 'Pet_Combat', 'AuraCancellation', 0, '', 0, 0, 0, 0, 0, 'Engineer', + 'SL Loot'), + (222519, 'Failed Repaired Crystal (Sloughing Protective Field)', 220433, 204418, 'Sloughing Protective Field', + 38889, NULL, NULL, NULL, 93, 'Tainted', 'Buffs', 'Engineer_Special_Attack_Absorber', 286, 'Team', 0, 0, 0, 0, 0, + 'Engineer', 'SL Loot'), + (222520, 'Blood Stained and Corroded Crystal (Vaccine of Ransacking)', 220432, 204425, 'Vaccine of Ransacking', + 39271, NULL, NULL, NULL, 77, 'Tainted', 'Buffs', 'Ransack/Deprive_Resist_Buffs', 287, '', 0, 0, 0, 0, 0, + 'Doctor', 'SL Loot'), + (222521, 'Dirty Money Shadow Crystal (Gallant Hero: The Enraged Drone)', 220422, 205287, + 'Gallant Hero: The Enraged Drone', 16299, NULL, NULL, NULL, 30, 'Tainted', 'Pet_Buffs', + 'Pet_Short_Term_Damage_Buffs', 225, 'Damage_Robot', 0, 0, 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (222522, 'Dirty Money Shadow Crystal (Gallant Hero: The Infuriated Minion)', 220429, 205289, + 'Gallant Hero: The Infuriated Minion', 16299, NULL, NULL, NULL, 52, 'Tainted', 'Pet_Buffs', + 'Pet_Short_Term_Damage_Buffs', 225, 'Damage_Robot', 0, 0, 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (222523, 'Dirty Money Shadow Crystal (Gallant Hero: The Aggravated Servant)', 220429, 205291, + 'Gallant Hero: The Aggravated Servant', 16299, NULL, NULL, NULL, 71, 'Tainted', 'Pet_Buffs', + 'Pet_Short_Term_Damage_Buffs', 225, 'Damage_Robot', 0, 0, 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (222524, 'Dirty Money Shadow Crystal (Gallant Hero: The Indignant Flunky)', 220429, 205293, + 'Gallant Hero: The Indignant Flunky', 16299, NULL, NULL, NULL, 92, 'Tainted', 'Pet_Buffs', + 'Pet_Short_Term_Damage_Buffs', 225, 'Damage_Robot', 0, 0, 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (222525, 'Tainted Shadow Crystal (Evocation of Fathomless Rage)', 220429, 205183, 'Evocation of Fathomless Rage', + 16280, NULL, NULL, NULL, 85, 'Tainted', 'Pet_Buffs', 'Pet_Short_Term_Damage_Buffs', 225, 'Evocation', 0, 0, 0, + 0, 0, 'Meta-Physicist', 'SL Loot'), + (222526, 'Tainted Shadow Crystal (Evocation of Implacable Hatred)', 220436, 205185, + 'Evocation of Implacable Hatred', 16280, NULL, NULL, NULL, 115, 'Tainted', 'Pet_Buffs', + 'Pet_Short_Term_Damage_Buffs', 225, 'Evocation', 0, 0, 0, 0, 0, 'Meta-Physicist', 'SL Loot'), + (222527, 'Tainted Shadow Crystal (Evocation of Relentless Fury)', 220429, 205191, 'Evocation of Relentless Fury', + 16280, NULL, NULL, NULL, 58, 'Tainted', 'Pet_Buffs', 'Pet_Short_Term_Damage_Buffs', 225, 'Evocation', 0, 0, 0, + 0, 0, 'Meta-Physicist', 'SL Loot'), + (222528, 'Tainted Shadow Crystal (Evocation of Unleashed Malice)', 220422, 205195, + 'Evocation of Unleashed Malice', 16280, NULL, NULL, NULL, 34, 'Tainted', 'Pet_Buffs', + 'Pet_Short_Term_Damage_Buffs', 225, 'Evocation', 0, 0, 0, 0, 0, 'Meta-Physicist', 'SL Loot'), + (222529, 'Tainted Shadow Crystal (Evocation of Unrestrained Ferocity)', 220422, 205197, + 'Evocation of Unrestrained Ferocity', 16280, NULL, NULL, NULL, 16, 'Tainted', 'Pet_Buffs', + 'Pet_Short_Term_Damage_Buffs', 225, 'Evocation', 0, 0, 0, 0, 0, 'Meta-Physicist', 'SL Loot'), + (222530, 'Failed Repaired Crystal (Assist Combat Array)', 220422, 205229, 'Assist Combat Array', 16299, NULL, + NULL, NULL, 15, 'Tainted', 'Pet_Buffs', 'Pet_Short_Term_Damage_Buffs', 225, '', 0, 0, 0, 0, 0, 'Engineer', + 'SL Loot'), + (222531, 'Failed Repaired Crystal (Monitor Combat Array)', 220422, 205231, 'Monitor Combat Array', 16299, NULL, + NULL, NULL, 37, 'Tainted', 'Pet_Buffs', 'Pet_Short_Term_Damage_Buffs', 225, '', 0, 0, 0, 0, 0, 'Engineer', + 'SL Loot'), + (222532, 'Failed Repaired Crystal (Enhance Combat Array)', 220429, 205233, 'Enhance Combat Array', 16299, NULL, + NULL, NULL, 56, 'Tainted', 'Pet_Buffs', 'Pet_Short_Term_Damage_Buffs', 225, '', 0, 0, 0, 0, 0, 'Engineer', + 'SL Loot'), + (222533, 'Failed Repaired Crystal (Boost Combat Array)', 220429, 205235, 'Boost Combat Array', 16299, NULL, NULL, + NULL, 77, 'Tainted', 'Pet_Buffs', 'Pet_Short_Term_Damage_Buffs', 225, '', 0, 0, 0, 0, 0, 'Engineer', 'SL Loot'), + (222534, 'Failed Repaired Crystal (Overdrive Combat Array)', 220429, 205237, 'Overdrive Combat Array', 16299, + NULL, NULL, NULL, 96, 'Tainted', 'Pet_Buffs', 'Pet_Short_Term_Damage_Buffs', 225, '', 0, 0, 0, 0, 0, 'Engineer', + 'SL Loot'), + (222535, 'Failed Repaired Crystal (Assist Aggression Subsystem)', 220436, 205239, 'Assist Aggression Subsystem', + 16299, NULL, NULL, NULL, 117, 'Tainted', 'Pet_Buffs', 'Pet_Short_Term_Damage_Buffs', 225, '', 0, 0, 0, 0, 0, + 'Engineer', 'SL Loot'), + (222536, 'Dirty Money Shadow Crystal (Gallant Hero: The Angry Servitor)', 220436, 205295, + 'Gallant Hero: The Angry Servitor', 16299, NULL, NULL, NULL, 110, 'Tainted', 'Pet_Buffs', + 'Pet_Short_Term_Damage_Buffs', 225, 'Damage_Robot', 0, 0, 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (222537, 'Dirty Money Shadow Crystal (Corporate Leadership: Dispensation)', 220431, 205433, + 'Corporate Leadership: Dispensation', 38925, NULL, NULL, NULL, 70, 'Tainted', 'Anti_Crowd_Control', + 'Corporate_Leadership', 0, '', 0, 0, 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (222538, 'Dirty Money Shadow Crystal (Corporate Leadership: Clemency)', 220411, 205435, + 'Corporate Leadership: Clemency', 38925, NULL, NULL, NULL, 119, 'Tainted', 'Anti_Crowd_Control', + 'Corporate_Leadership', 0, '', 0, 0, 0, 0, 0, 'Bureaucrat', 'SL Loot'), + (222539, 'Overcharged Corroded Nano Crystal (Enfraam''s Inverted Restrainer)', 220431, 205441, + 'Enfraam''s Inverted Restrainer', 38925, NULL, NULL, NULL, 93, 'Tainted', 'Buffs', 'Root_Reduction', 2, '', 0, + 0, 0, 0, 0, 'Nano-Technician', 'SL Loot'), + (222540, 'Badly Corroded Crystal (Pet Warp)', 220424, 209488, 'Pet Warp', 297538, NULL, NULL, NULL, 4, 'Tainted', + 'Pets', 'Pet_Warp', 0, '', 0, 0, 0, 0, 0, 'General', 'SL Loot'), + (222541, 'Tainted Shadow Crystal (Calling of Salvinous)', 220424, 125745, 'Calling of Salvinous', 295568, NULL, + NULL, NULL, 37, 'Tainted', 'Pet', 'Heal_Pet', 0, '', 0, 1, 0, 0, 0, 'Meta-Physicist', 'SL Loot'), + (222542, 'Cracked and Miskept Shadow Crystal (Impartiality of the Blade)', 220425, 210299, + 'Impartiality of the Blade', 16288, NULL, NULL, NULL, 20, 'Tainted', 'Buffs', '2H_Edged_Buffs', 153, '', 0, 0, + 0, 0, 0, 'Keeper', 'SL Loot'), + (222543, 'Cracked and Miskept Shadow Crystal (Decision Maker)', 220425, 210301, 'Decision Maker', 16288, NULL, + NULL, NULL, 48, 'Tainted', 'Buffs', '2H_Edged_Buffs', 153, '', 0, 0, 0, 0, 0, 'Keeper', 'SL Loot'), + (222544, 'Cracked and Miskept Shadow Crystal (Judgement Bringer)', 220432, 210303, 'Judgement Bringer', 16288, + NULL, NULL, NULL, 83, 'Tainted', 'Buffs', '2H_Edged_Buffs', 153, '', 0, 0, 0, 0, 0, 'Keeper', 'SL Loot'), + (222545, 'Cracked and Miskept Shadow Crystal (The Adjudicator''s Blade)', 220412, 210305, + 'The Adjudicator''s Blade', 16288, NULL, NULL, NULL, 119, 'Tainted', 'Buffs', '2H_Edged_Buffs', 153, '', 0, 0, + 0, 0, 0, 'Keeper', 'SL Loot'), + (222546, 'Cracked and Miskept Shadow Crystal (Defender''s Poise)', 220425, 210311, 'Defender''s Poise', 16305, + NULL, NULL, NULL, 27, 'Tainted', 'Buffs', 'Deflect/Riposte_Buffs', 518, '', 0, 0, 0, 0, 0, 'Keeper', 'SL Loot'), + (222547, 'Cracked and Miskept Shadow Crystal (Warden''s Resolve)', 220432, 210313, 'Warden''s Resolve', 16305, + NULL, NULL, NULL, 60, 'Tainted', 'Buffs', 'Deflect/Riposte_Buffs', 518, '', 0, 0, 0, 0, 0, 'Keeper', 'SL Loot'), + (222548, 'Cracked and Miskept Shadow Crystal (Guardian''s Balance)', 220412, 210315, 'Guardian''s Balance', + 16305, NULL, NULL, NULL, 112, 'Tainted', 'Buffs', 'Deflect/Riposte_Buffs', 518, '', 0, 0, 0, 0, 0, 'Keeper', + 'SL Loot'), + (222549, 'Cracked and Miskept Shadow Crystal (Fervor of the Henchman)', 220425, 210321, 'Fervor of the Henchman', + 301595, NULL, NULL, NULL, 14, 'Tainted', 'Buffs', 'Fast_Attack_Buffs', 519, '', 0, 0, 0, 0, 0, 'Enforcer', + 'SL Loot'), + (222550, 'Cracked and Miskept Shadow Crystal (Fervor of the Devotee)', 220432, 210323, 'Fervor of the Devotee', + 301595, NULL, NULL, NULL, 57, 'Tainted', 'Buffs', 'Fast_Attack_Buffs', 519, '', 0, 0, 0, 0, 0, 'Enforcer', + 'SL Loot'), + (222551, 'Cracked and Miskept Shadow Crystal (Fervor of the Minion)', 220432, 210325, 'Fervor of the Minion', + 301595, NULL, NULL, NULL, 97, 'Tainted', 'Buffs', 'Fast_Attack_Buffs', 519, '', 0, 0, 0, 0, 0, 'Enforcer', + 'SL Loot'), + (222552, 'Tainted Shadow Crystal (Ritualistic Touch)', 220424, 210353, 'Ritualistic Touch', 84198, NULL, NULL, + NULL, 4, 'Tainted', 'Proc', 'Shade_Proc_Buffs', 521, 'Damage', 0, 0, 0, 0, 0, 'Shade', 'SL Loot'), + (222553, 'Tainted Shadow Crystal (Ritualistic Blow)', 220424, 210355, 'Ritualistic Blow', 84198, NULL, NULL, + NULL, 17, 'Tainted', 'Proc', 'Shade_Proc_Buffs', 521, 'Damage', 0, 0, 0, 0, 0, 'Shade', 'SL Loot'), + (222554, 'Tainted Shadow Crystal (Rudimentary Dissipation)', 220424, 210387, 'Rudimentary Dissipation', 84196, + NULL, NULL, NULL, 21, 'Tainted', 'Proc', 'Shade_Proc_Buffs', 521, 'Dot', 0, 0, 0, 0, 0, 'Shade', 'SL Loot'), + (222555, 'Cracked and Miskept Shadow Crystal (Sanctifier)', 220424, 210484, 'Sanctifier', 84197, NULL, NULL, + NULL, 20, 'Tainted', 'Buffs', 'Proc_Buffs', 526, 'Sanctifier', 0, 0, 0, 0, 0, 'Keeper', 'SL Loot'), + (222556, 'Cracked and Miskept Shadow Crystal (Honored Sanctifier)', 220431, 210486, 'Honored Sanctifier', 84197, + NULL, NULL, NULL, 62, 'Tainted', 'Buffs', 'Proc_Buffs', 526, 'Sanctifier', 0, 0, 0, 0, 0, 'Keeper', 'SL Loot'), + (222557, 'Cracked and Miskept Shadow Crystal (Exalted Sanctifier)', 220431, 210488, 'Exalted Sanctifier', 84197, + NULL, NULL, NULL, 84, 'Tainted', 'Buffs', 'Proc_Buffs', 526, 'Sanctifier', 0, 0, 0, 0, 0, 'Keeper', 'SL Loot'), + (222558, 'Cracked and Miskept Shadow Crystal (Glorious Sanctifier)', 220411, 210490, 'Glorious Sanctifier', + 84197, NULL, NULL, NULL, 124, 'Tainted', 'Buffs', 'Proc_Buffs', 526, 'Sanctifier', 0, 0, 0, 0, 0, 'Keeper', + 'SL Loot'), + (222559, 'Cracked and Miskept Shadow Crystal (Ambient Restoration)', 220422, 210528, + 'Adaptive Ambient Restoration', 297592, NULL, NULL, NULL, 1, 'Tainted', 'Buffs', + 'Aura_HP_and_NP_Regeneration_Buffs', 527, 'Health', 0, 0, 0, 0, 0, 'Keeper', 'SL Loot'), + (222560, 'Cracked and Miskept Shadow Crystal (Ambient Alleviation)', 220422, 210530, 'Ambient Alleviation', + 44245, NULL, NULL, NULL, 26, 'Tainted', 'Buffs', 'Aura_HP_and_NP_Regeneration_Buffs', 527, 'Health', 0, 0, 0, 0, + 0, 'Keeper', 'SL Loot'), + (222561, 'Cracked and Miskept Shadow Crystal (Ambient Rehabilitation)', 220429, 210532, 'Ambient Rehabilitation', + 44245, NULL, NULL, NULL, 61, 'Tainted', 'Buffs', 'Aura_HP_and_NP_Regeneration_Buffs', 527, 'Health', 0, 0, 0, 0, + 0, 'Keeper', 'SL Loot'), + (222562, 'Cracked and Miskept Shadow Crystal (Ambient Rejuvenation)', 220429, 210534, 'Ambient Rejuvenation', + 44245, NULL, NULL, NULL, 94, 'Tainted', 'Buffs', 'Aura_HP_and_NP_Regeneration_Buffs', 527, 'Health', 0, 0, 0, 0, + 0, 'Keeper', 'SL Loot'), + (222563, 'Cracked and Miskept Shadow Crystal (Tone of Clarity)', 220422, 210589, 'Adaptive Tone of Clarity', + 300465, NULL, NULL, NULL, 2, 'Tainted', 'Buffs', 'Aura_HP_and_NP_Regeneration_Buffs', 527, 'Health_and_Nano', + 527, 0, 0, 0, 0, 'Keeper', 'SL Loot'), + (222564, 'Cracked and Miskept Shadow Crystal (Tone of Accord)', 220422, 210591, 'Tone of Accord', 38985, NULL, + NULL, NULL, 24, 'Tainted', 'Buffs', 'Aura_HP_and_NP_Regeneration_Buffs', 527, 'Nano', 0, 0, 0, 0, 0, 'Keeper', + 'SL Loot'), + (222565, 'Cracked and Miskept Shadow Crystal (Tone of Purity)', 220429, 210593, 'Tone of Purity', 38985, NULL, + NULL, NULL, 58, 'Tainted', 'Buffs', 'Aura_HP_and_NP_Regeneration_Buffs', 527, 'Nano', 0, 0, 0, 0, 0, 'Keeper', + 'SL Loot'), + (222566, 'Cracked and Miskept Shadow Crystal (Tone of Tranquility)', 220429, 210595, 'Tone of Tranquility', + 38985, NULL, NULL, NULL, 92, 'Tainted', 'Buffs', 'Aura_HP_and_NP_Regeneration_Buffs', 527, 'Nano', 0, 0, 0, 0, + 0, 'Keeper', 'SL Loot'), + (222567, 'Cracked and Miskept Shadow Crystal (Vengeance of the Loyal)', 220424, 210611, 'Vengeance of the Loyal', + 39028, NULL, NULL, NULL, 8, 'Tainted', 'Buffs', 'Aura_Damage/Snare_Reduction_Buffs', 529, 'Vengance', 0, 0, 0, + 0, 0, 'Keeper', 'SL Loot'), + (222568, 'Cracked and Miskept Shadow Crystal (Vengeance of the Steadfast)', 220424, 210613, + 'Vengeance of the Steadfast', 39028, NULL, NULL, NULL, 35, 'Tainted', 'Buffs', + 'Aura_Damage/Snare_Reduction_Buffs', 529, 'Vengance', 0, 0, 0, 0, 0, 'Keeper', 'SL Loot'), + (222569, 'Cracked and Miskept Shadow Crystal (Vengeance of the Resolute)', 220431, 210615, + 'Vengeance of the Resolute', 39028, NULL, NULL, NULL, 72, 'Tainted', 'Buffs', + 'Aura_Damage/Snare_Reduction_Buffs', 529, 'Vengance', 0, 0, 0, 0, 0, 'Keeper', 'SL Loot'), + (222570, 'Cracked and Miskept Shadow Crystal (Vengeance of the Virtuous)', 220411, 210617, + 'Vengeance of the Virtuous', 39028, NULL, NULL, NULL, 115, 'Tainted', 'Buffs', + 'Aura_Damage/Snare_Reduction_Buffs', 529, 'Vengance', 0, 0, 0, 0, 0, 'Keeper', 'SL Loot'), + (222571, 'Cracked and Miskept Shadow Crystal (Imminence of Scrimmage)', 220425, 210671, 'Imminence of Scrimmage', + 38900, NULL, NULL, NULL, 31, 'Tainted', 'Buffs', 'Aura_Absorb/Reflect/AMS_Buffs', 528, 'Imminence', 0, 0, 0, 0, + 0, 'Keeper', 'SL Loot'), + (222572, 'Cracked and Miskept Shadow Crystal (Imminence of Conflict)', 220432, 210673, 'Imminence of Conflict', + 38900, NULL, NULL, NULL, 64, 'Tainted', 'Buffs', 'Aura_Absorb/Reflect/AMS_Buffs', 528, 'Imminence', 0, 0, 0, 0, + 0, 'Keeper', 'SL Loot'), + (222573, 'Cracked and Miskept Shadow Crystal (Imminence of Battle)', 220432, 210675, 'Imminence of Battle', + 38900, NULL, NULL, NULL, 87, 'Tainted', 'Buffs', 'Aura_Absorb/Reflect/AMS_Buffs', 528, 'Imminence', 0, 0, 0, 0, + 0, 'Keeper', 'SL Loot'), + (222574, 'Cracked and Miskept Shadow Crystal (Imminence of Havoc)', 220412, 210677, 'Imminence of Havoc', 38900, + NULL, NULL, NULL, 118, 'Tainted', 'Buffs', 'Aura_Absorb/Reflect/AMS_Buffs', 528, 'Imminence', 0, 0, 0, 0, 0, + 'Keeper', 'SL Loot'), + (222575, 'Cracked and Miskept Shadow Crystal (Barrier of the Loyal)', 220433, 210689, 'Barrier of the Loyal', + 118419, NULL, NULL, NULL, 66, 'Tainted', 'Buffs', 'Aura_Absorb/Reflect/AMS_Buffs', 528, 'Barrier', 0, 0, 0, 0, + 0, 'Keeper', 'SL Loot'), + (222576, 'Cracked and Miskept Shadow Crystal (Barrier of the Staunch)', 220433, 210691, 'Barrier of the Staunch', + 118019, NULL, NULL, NULL, 88, 'Tainted', 'Buffs', 'Aura_Absorb/Reflect/AMS_Buffs', 528, 'Barrier', 0, 0, 0, 0, + 0, 'Keeper', 'SL Loot'), + (222577, 'Cracked and Miskept Shadow Crystal (Barrier of the Devoted)', 220413, 210693, 'Barrier of the Devoted', + 118020, NULL, NULL, NULL, 105, 'Tainted', 'Buffs', 'Aura_Absorb/Reflect/AMS_Buffs', 528, 'Barrier', 0, 0, 0, 0, + 0, 'Keeper', 'SL Loot'), + (222578, 'Cracked and Miskept Shadow Crystal (Enervate Bonds)', 220424, 210707, 'Enervate Bonds', 38911, NULL, + NULL, NULL, 41, 'Tainted', 'Buffs', 'Aura_Damage/Snare_Reduction_Buffs', 529, 'Enervate', 0, 0, 0, 0, 0, + 'Keeper', 'SL Loot'), + (222579, 'Cracked and Miskept Shadow Crystal (Enervate Constraints)', 220431, 210709, 'Enervate Constraints', + 38911, NULL, NULL, NULL, 71, 'Tainted', 'Buffs', 'Aura_Damage/Snare_Reduction_Buffs', 529, 'Enervate', 0, 0, 0, + 0, 0, 'Keeper', 'SL Loot'), + (222580, 'Cracked and Miskept Shadow Crystal (Enervate Impediments)', 220411, 210711, 'Enervate Impediments', + 38911, NULL, NULL, NULL, 109, 'Tainted', 'Buffs', 'Aura_Damage/Snare_Reduction_Buffs', 529, 'Enervate', 0, 0, 0, + 0, 0, 'Keeper', 'SL Loot'), + (222581, 'Tainted Shadow Crystal (Slap of the Zombie)', 220425, 210732, 'Slap of the Zombie', 39204, NULL, NULL, + NULL, 5, 'Tainted', 'Buffs', 'Martial_Arts_Buffs', 209, '', 0, 0, 0, 0, 0, 'Shade', 'SL Loot'), + (222582, 'Tainted Shadow Crystal (Knock of the Poltergeist)', 220425, 210734, 'Knock of the Poltergeist', 39204, + NULL, NULL, NULL, 29, 'Tainted', 'Buffs', 'Martial_Arts_Buffs', 209, '', 0, 0, 0, 0, 0, 'Shade', 'SL Loot'), + (222583, 'Tainted Shadow Crystal (Kick of the Phantom)', 220432, 210736, 'Kick of the Phantom', 39204, NULL, + NULL, NULL, 71, 'Tainted', 'Buffs', 'Martial_Arts_Buffs', 209, '', 0, 0, 0, 0, 0, 'Shade', 'SL Loot'), + (222584, 'Tainted Shadow Crystal (Hand of the Shadow)', 220412, 210738, 'Hand of the Shadow', 39204, NULL, NULL, + NULL, 106, 'Tainted', 'Buffs', 'Martial_Arts_Buffs', 209, '', 0, 0, 0, 0, 0, 'Shade', 'SL Loot'), + (222585, 'Tainted Shadow Crystal (Sneak)', 220425, 210746, 'Sneak', 39221, NULL, NULL, NULL, 36, 'Tainted', + 'Buffs', 'Agility_Buffs', 195, '', 0, 0, 0, 0, 0, 'Shade', 'SL Loot'), + (222586, 'Tainted Shadow Crystal (Mugger)', 220432, 210748, 'Mugger', 39221, NULL, NULL, NULL, 82, 'Tainted', + 'Buffs', 'Agility_Buffs', 195, '', 0, 0, 0, 0, 0, 'Shade', 'SL Loot'), + (222587, 'Tainted Shadow Crystal (Footpad Apprentice)', 220425, 210787, 'Footpad Apprentice', 301588, NULL, NULL, + NULL, 22, 'Tainted', 'Buffs', 'Sneak_Attack_Buffs', 208, '', 0, 0, 0, 0, 0, 'Adventurer', 'SL Loot'), + (222588, 'Tainted Shadow Crystal (Silent Dagger)', 220432, 210789, 'Silent Dagger', 301588, NULL, NULL, NULL, 66, + 'Tainted', 'Buffs', 'Sneak_Attack_Buffs', 208, '', 0, 0, 0, 0, 0, 'Adventurer', 'SL Loot'), + (222589, 'Tainted Shadow Crystal (Dagger in the Back)', 220412, 210791, 'Dagger in the Back', 301588, NULL, NULL, + NULL, 108, 'Tainted', 'Buffs', 'Sneak_Attack_Buffs', 208, '', 0, 0, 0, 0, 0, 'Adventurer', 'SL Loot'), + (222590, 'Tainted Shadow Crystal (Dual Defender)', 220425, 210804, 'Dual Defender', 39267, NULL, NULL, NULL, 14, + 'Tainted', 'Buffs', 'Multiwield_Buffs', 245, '', 0, 0, 0, 0, 0, 'Shade', 'SL Loot'), + (222591, 'Tainted Shadow Crystal (Double Cover)', 220425, 210806, 'Double Cover', 39267, NULL, NULL, NULL, 44, + 'Tainted', 'Buffs', 'Multiwield_Buffs', 245, '', 0, 0, 0, 0, 0, 'Shade', 'SL Loot'), + (222592, 'Tainted Shadow Crystal (Twice the Shield)', 220432, 210808, 'Twice the Shield', 39267, NULL, NULL, + NULL, 97, 'Tainted', 'Buffs', 'Multiwield_Buffs', 245, '', 0, 0, 0, 0, 0, 'Shade', 'SL Loot'), + (222593, 'Tainted Shadow Crystal (Probe of Death)', 220412, 211146, 'Probe of Death', 39247, NULL, NULL, NULL, + 122, 'Tainted', 'Buffs', 'Shade_Piercing_Buffs', 546, '', 0, 0, 0, 0, 0, 'Shade', 'SL Loot'), + (222594, 'Tainted Shadow Crystal (Piercing Gash)', 220432, 211148, 'Piercing Gash', 39247, NULL, NULL, NULL, 87, + 'Tainted', 'Buffs', 'Shade_Piercing_Buffs', 546, '', 0, 0, 0, 0, 0, 'Shade', 'SL Loot'), + (222595, 'Tainted Shadow Crystal (Piercing Tooth)', 220425, 211150, 'Piercing Tooth', 39247, NULL, NULL, NULL, + 49, 'Tainted', 'Buffs', 'Shade_Piercing_Buffs', 546, '', 0, 0, 0, 0, 0, 'Shade', 'SL Loot'), + (222596, 'Tainted Shadow Crystal (Sharpen Dagger)', 220425, 211152, 'Sharpen Dagger', 39247, NULL, NULL, NULL, + 19, 'Tainted', 'Buffs', 'Shade_Piercing_Buffs', 546, '', 0, 0, 0, 0, 0, 'Shade', 'SL Loot'), + (222597, 'Cracked and Miskept Shadow Crystal (Transfuse Vigor)', 220432, 211158, 'Transfuse Vigor', 39228, NULL, + NULL, NULL, 55, 'Tainted', 'Buffs', 'Strength/Stamina/Agility_Buffs', 539, '', 0, 0, 0, 0, 0, 'Keeper', + 'SL Loot'), + (222598, 'Cracked and Miskept Shadow Crystal (A Keeper''s Physique)', 220412, 211160, 'A Keeper''s Physique', + 39228, NULL, NULL, NULL, 116, 'Tainted', 'Buffs', 'Strength/Stamina/Agility_Buffs', 539, '', 0, 0, 0, 0, 0, + 'Keeper', 'SL Loot'), + (222599, 'Cracked and Miskept Shadow Crystal (Sidestep)', 220425, 211164, 'Sidestep', 39221, NULL, NULL, NULL, + 40, 'Tainted', 'Buffs', 'Evade/Dodge/Duck_Buffs', 545, '', 0, 0, 0, 0, 0, 'Keeper', 'SL Loot'), + (222600, 'Cracked and Miskept Shadow Crystal (Quicken Reflexes)', 220432, 211166, 'Quicken Reflexes', 39221, + NULL, NULL, NULL, 80, 'Tainted', 'Buffs', 'Evade/Dodge/Duck_Buffs', 545, '', 0, 0, 0, 0, 0, 'Keeper', + 'SL Loot'), + (222694, 'Nano Crystal (Element of Flame)', 12258, 222693, 'Element of Flame', 39028, 0, 0, 0, 52, 'Crystal', + 'Buffs', 'Damage_Change_Buffs', 597, '', 0, 0, 1, 1, 0, 'Enforcer', 'Elysium Sanctuary'), + (222707, 'Nano Crystal (Element of Ice)', 42450, 222706, 'Element of Ice', 39028, 0, 0, 0, 149, 'Crystal', + 'Buffs', 'Damage_Change_Buffs', 597, '', 0, 0, 1, 2, 0, 'Enforcer', 'Penumbra Garden'), + (222916, 'Nano Crystal (Element of Corrosion)', 42450, 222915, 'Element of Corrosion', 39028, 0, 0, 0, 194, + 'Crystal', 'Buffs', 'Damage_Change_Buffs', 597, '', 0, 0, 1, 3, 0, 'Enforcer', 'Inferno Garden'), + (222918, 'Nano Crystal (Element of Poison)', 42450, 222917, 'Element of Poison', 39028, 0, 0, 0, 213, 'Crystal', + 'Buffs', 'Damage_Change_Buffs', 597, '', 0, 0, 1, 4, 0, 'Enforcer', 'Pandemonium Garden'), + (222920, 'Nano Crystal (Element of Radiation)', 42450, 222919, 'Element of Radiation', 39028, 0, 0, 0, 218, + 'Crystal', 'Buffs', 'Damage_Change_Buffs', 597, '', 0, 0, 1, 4, 0, 'Enforcer', 'Pandemonium Garden'), + (222978, 'Nano Crystal (Pious Sanctifier)', 42450, 222977, 'Pious Sanctifier', 84197, 0, 0, 0, 211, 'Crystal', + 'Buffs', 'Proc_Buffs', 526, 'Sanctifier', 0, 0, 1, 4, 0, 'Keeper', 'Pandemonium Garden'), + (222982, 'Nano Crystal (Sainted Sanctifier)', 42450, 222981, 'Sainted Sanctifier', 84197, 0, 0, 0, 218, + 'Crystal', 'Buffs', 'Proc_Buffs', 526, 'Sanctifier', 0, 0, 1, 4, 0, 'Keeper', 'Pandemonium Garden'), + (222984, 'Nano Crystal (Divine Sanctifier)', 42450, 222983, 'Divine Sanctifier', 84197, 0, 0, 0, 220, 'Crystal', + 'Buffs', 'Proc_Buffs', 526, 'Sanctifier', 0, 0, 1, 4, 0, 'Keeper', 'Pandemonium Garden'), + (223021, 'Nano Crystal (Evangelical Reaper)', 42450, 223020, 'Evangelical Reaper', 84198, 0, 0, 0, 217, + 'Crystal', 'Buffs', 'Proc_Buffs', 526, 'Reaper', 0, 0, 1, 4, 0, 'Keeper', 'Pandemonium Garden'), + (223023, 'Nano Crystal (Warden Ward)', 42452, 223022, 'Warden Ward', 117961, 0, 0, 0, 219, 'Crystal', 'Buffs', + 'Fortify', 224, '', 0, 0, 1, 4, 0, 'Keeper', 'Pandemonium Garden'), + (223025, 'Nano Crystal (Adaptive Ambient Renaissance)', 300459, 223024, 'Adaptive Ambient Renaissance', 297594, + 0, 0, 0, 207, 'Crystal', 'Buffs', 'Aura_HP_and_NP_Regeneration_Buffs', 527, 'Health', 0, 0, 1, 4, 0, 'Keeper', + 'Inferno Sanctuary'), + (223027, 'Nano Crystal (Ambient Invigoration)', 42448, 223026, 'Ambient Invigoration', 44245, 0, 0, 0, 216, + 'Crystal', 'Buffs', 'Aura_HP_and_NP_Regeneration_Buffs', 527, 'Health', 0, 0, 1, 4, 0, 'Keeper', + 'No longer drops'), + (223029, 'Nano Crystal (Tone of Bliss)', 42448, 223028, 'Tone of Bliss', 38985, 0, 0, 0, 215, 'Crystal', 'Buffs', + 'Aura_HP_and_NP_Regeneration_Buffs', 527, 'Nano', 0, 0, 1, 4, 0, 'Keeper', 'No longer drops'), + (223031, 'Nano Crystal (Imminence of Slaughter)', 42451, 223030, 'Imminence of Slaughter', 38900, 0, 0, 0, 201, + 'Crystal', 'Buffs', 'Aura_Absorb/Reflect/AMS_Buffs', 528, 'Imminence', 0, 0, 1, 4, 0, 'Keeper', + 'Inferno Sanctuary'), + (223081, 'Weird Looking Nano Crystal (Tranquility of the Vale)', 301157, 222846, 'Tranquility of the Vale', + 301158, 163410, 163411, 163412, 139, 'Crystal', 'DeBuffs', 'Proximity_Range_DeBuffs', 1048, '', 0, 1, 0, 0, 0, + 'Adventurer', 'Greedy Shade / SL Static'), + (223082, 'Weird Looking Nano Crystal (Serene Sky)', 301157, 222847, 'Serene Sky', 301158, 163413, 163414, 163415, + 172, 'Crystal', 'DeBuffs', 'Proximity_Range_DeBuffs', 1048, '', 0, 0, 0, 0, 0, 'Adventurer', + 'Greedy Shade / SL Static'), + (223108, 'Nano Crystal (Mongo''s Gargantua)', 301276, 223107, 'Mongo''s Gargantua', 301275, 0, 0, 0, 201, + 'Crystal', 'Buffs', 'HP_Buffs', 151, 'Self', 0, 1, 1, 3, 0, 'Enforcer', 'Inferno Sanctuary'), + (223110, 'Nano Crystal (Mongo''s Colossus)', 301276, 223109, 'Mongo''s Colossus', 301275, 0, 0, 0, 209, + 'Crystal', 'Buffs', 'HP_Buffs', 151, 'Self', 0, 1, 1, 4, 0, 'Enforcer', 'Inferno Sanctuary'), + (223112, 'Nano Crystal (Mongo''s Leviathan)', 301276, 223111, 'Mongo''s Leviathan', 301275, 0, 0, 0, 215, + 'Crystal', 'Buffs', 'HP_Buffs', 151, 'Self', 0, 1, 1, 4, 0, 'Enforcer', 'Pandemonium Garden'), + (223114, 'Nano Crystal (Mongo''s Behemoth)', 301276, 223113, 'Mongo''s Behemoth', 301275, 0, 0, 0, 220, + 'Crystal', 'Buffs', 'HP_Buffs', 151, 'Self', 0, 0, 1, 4, 0, 'Enforcer', 'Pandemonium Garden'), + (223116, 'Nano Crystal (Spite)', 42451, 223115, 'Spite', 16230, 0, 0, 0, 125, 'Crystal', 'Crowd_Control', + 'Taunt_Target', 0, '', 0, 0, 1, 2, 0, 'Enforcer', 'Adonis Sanctuary'), + (223118, 'Nano Crystal (Impart Resentment)', 42451, 223117, 'Impart Resentment', 16230, 0, 0, 0, 190, 'Crystal', + 'Crowd_Control', 'Taunt_Target', 0, '', 0, 1, 1, 3, 0, 'Enforcer', 'Inferno Garden'), + (223120, 'Nano Crystal (Belligerent Stance)', 42451, 223119, 'Belligerent Stance', 16230, 0, 0, 0, 203, + 'Crystal', 'Crowd_Control', 'Taunt_Target', 0, '', 0, 1, 1, 4, 0, 'Enforcer', 'Inferno Sanctuary'), + (223122, 'Nano Crystal (Rancorous Enmity)', 42451, 223121, 'Rancorous Enmity', 16230, 0, 0, 0, 211, 'Crystal', + 'Crowd_Control', 'Taunt_Target', 0, '', 0, 1, 1, 4, 0, 'Enforcer', 'Pandemonium Garden'), + (223124, 'Nano Crystal (Element of Malice)', 42451, 223123, 'Element of Malice', 16230, 0, 0, 0, 216, 'Crystal', + 'Crowd_Control', 'Taunt_Target', 0, '', 0, 0, 1, 4, 0, 'Enforcer', 'Pandemonium Garden'), + (223126, 'Nano Crystal (Blessed By Shadow)', 42450, 223125, 'Blessed By Shadow', 118410, 0, 0, 0, 213, 'Crystal', + 'Buffs', 'Major_Evasion_Buffs', 144, 'Shadowlands_Aura', 0, 0, 1, 4, 0, 'Fixer', 'Pandemonium Garden'), + (223128, 'Nano Crystal (Shadow Step)', 12225, 223127, 'Shadow Step', 118410, 0, 0, 0, 50, 'Crystal', 'Buffs', + 'Major_Evasion_Buffs', 144, 'Shadowlands_Aura', 0, 1, 1, 1, 0, 'Fixer', 'Elysium Sanctuary'), + (223130, 'Nano Crystal (Path of Shadow)', 42450, 223129, 'Path of Shadow', 118410, 0, 0, 0, 174, 'Crystal', + 'Buffs', 'Major_Evasion_Buffs', 144, 'Shadowlands_Aura', 0, 0, 1, 3, 0, 'Fixer', 'Penumbra Sanctuary'), + (223132, 'Nano Crystal (Touched With Shadow)', 42450, 223131, 'Touched With Shadow', 118410, 0, 0, 0, 205, + 'Crystal', 'Buffs', 'Major_Evasion_Buffs', 144, 'Shadowlands_Aura', 0, 0, 1, 4, 0, 'Fixer', + 'Inferno Sanctuary'), + (223134, 'Nano Crystal (Intense Nano Net)', 12257, 223133, 'Intense Nano Net', 46279, 0, 0, 0, 77, 'Crystal', + 'Crowd_Control', 'Snare', 145, 'Target', 0, 0, 1, 1, 0, 'Fixer', 'Scheol Garden'), + (223136, 'Nano Crystal (Intense Personal Entanglement)', 42449, 223135, 'Intense Personal Entanglement', 46279, + 0, 0, 0, 127, 'Crystal', 'Crowd_Control', 'Snare', 145, 'Target', 0, 0, 1, 2, 0, 'Fixer', 'Adonis Sanctuary'), + (223138, 'Nano Crystal (Intense Gravity Bindings)', 42449, 223137, 'Intense Gravity Bindings', 46279, 0, 0, 0, + 153, 'Crystal', 'Crowd_Control', 'Snare', 145, 'Target', 0, 0, 1, 2, 0, 'Fixer', 'Penumbra Garden'), + (223140, 'Nano Crystal (Intense Targetted Nanoweb)', 42449, 223139, 'Intense Targetted Nanoweb', 46279, 0, 0, 0, + 199, 'Crystal', 'Crowd_Control', 'Snare', 145, 'Target', 0, 0, 1, 3, 0, 'Fixer', 'Inferno Garden'), + (223142, 'Nano Crystal (Intense Nano Bindings)', 42449, 223141, 'Intense Nano Bindings', 46279, 0, 0, 0, 207, + 'Crystal', 'Crowd_Control', 'Snare', 145, 'Target', 0, 0, 1, 4, 0, 'Fixer', 'Inferno Sanctuary'), + (223144, 'Nano Crystal (Intense Agglutinative Nanoweb)', 42449, 223143, 'Intense Agglutinative Nanoweb', 46279, + 0, 0, 0, 214, 'Crystal', 'Crowd_Control', 'Snare', 145, 'Target', 0, 0, 1, 4, 0, 'Fixer', 'Pandemonium Garden'), + (223148, 'Nano Crystal (Scale Regrowth)', 300929, 223147, 'Scale Regrowth', 300925, 0, 0, 0, 207, 'Crystal', + 'Combat', 'Morph_Heal', 248, '', 0, 0, 1, 4, 0, 'Adventurer', 'Inferno Sanctuary'), + (223152, 'Nano Crystal (Scale Regeneration)', 300930, 223151, 'Scale Regeneration', 300926, 0, 0, 0, 220, + 'Crystal', 'Combat', 'Morph_Heal', 248, '', 0, 0, 1, 4, 0, 'Adventurer', 'Pandemonium Garden'), + (223168, 'Nano Crystal (Beauty of Life)', 42448, 223167, 'Beauty of Life', 44235, 0, 0, 0, 213, 'Crystal', + 'Combat', 'Single_Target_Healing', 951, '', 0, 0, 1, 4, 0, 'Adventurer', 'Pandemonium Garden'), + (223182, 'Nano Crystal (Augmented Mirror Shield MK II)', 42452, 223181, 'Augmented Mirror Shield MK II', 101018, + 0, 0, 0, 203, 'Crystal', 'Buffs', 'Shadowland_Reflect_Base', 694, 'Self', 0, 0, 1, 4, 0, 'Soldier', + 'Inferno Sanctuary'), + (223184, 'Nano Crystal (Augmented Mirror Shield MK III)', 42452, 223183, 'Augmented Mirror Shield MK III', + 101018, 0, 0, 0, 213, 'Crystal', 'Buffs', 'Shadowland_Reflect_Base', 694, 'Self', 0, 0, 1, 4, 0, 'Soldier', + 'Pandemonium Garden'), + (223186, 'Nano Crystal (Augmented Mirror Shield MK IV)', 42452, 223185, 'Augmented Mirror Shield MK IV', 101018, + 0, 0, 0, 220, 'Crystal', 'Buffs', 'Shadowland_Reflect_Base', 694, 'Self', 0, 0, 1, 4, 0, 'Soldier', + 'Pandemonium Garden'), + (223188, 'Nano Crystal (Intensify fight (Team))', 12225, 223187, 'Intensify Fight (Team)', 39168, 0, 0, 0, 26, + 'Crystal', 'Buffs', 'Soldier_Damage_Base', 770, '', 0, 0, 1, 1, 0, 'Soldier', 'Elysium Garden'), + (223190, 'Nano Crystal (Deepen fight (Team))', 12258, 223189, 'Deepen Fight (Team)', 39168, 0, 0, 0, 53, + 'Crystal', 'Buffs', 'Soldier_Damage_Base', 770, '', 0, 0, 1, 1, 0, 'Soldier', 'Elysium Sanctuary'), + (223192, 'Nano Crystal (Heighten fight (Team))', 42450, 223191, 'Heighten Fight (Team)', 39168, 0, 0, 0, 108, + 'Crystal', 'Buffs', 'Soldier_Damage_Base', 770, '', 0, 0, 1, 2, 0, 'Soldier', 'Adonis Garden'), + (223194, 'Nano Crystal (Boost Fight (Team))', 42450, 223193, 'Boost Fight (Team)', 39168, 0, 0, 0, 171, + 'Crystal', 'Buffs', 'Soldier_Damage_Base', 770, '', 0, 0, 1, 3, 0, 'Soldier', 'Penumbra Sanctuary'), + (223196, 'Nano Crystal (Reinforce fight (Team))', 42450, 223195, 'Reinforce Fight (Team)', 39168, 0, 0, 0, 200, + 'Crystal', 'Buffs', 'Soldier_Damage_Base', 770, '', 0, 0, 1, 3, 0, 'Soldier', 'Inferno Sanctuary'), + (223198, 'Nano Crystal (Augment fight (Team))', 42450, 223197, 'Augment Fight (Team)', 39168, 0, 0, 0, 209, + 'Crystal', 'Buffs', 'Soldier_Damage_Base', 770, '', 0, 0, 1, 4, 0, 'Soldier', 'Inferno Sanctuary'), + (223200, 'Nano Crystal (Gazump fight (Team))', 42450, 223199, 'Gazump Fight (Team)', 39168, 0, 0, 0, 217, + 'Crystal', 'Buffs', 'Soldier_Damage_Base', 770, '', 0, 0, 1, 4, 0, 'Soldier', 'Pandemonium Garden'), + (223202, 'Nano Crystal (Obvious Victim)', 42451, 223201, 'Obvious Victim', 16230, 0, 0, 0, 126, 'Crystal', + 'Crowd_Control', 'Taunt_(normal)', 0, '', 0, 0, 1, 2, 0, 'Soldier', 'Adonis Sanctuary'), + (223204, 'Nano Crystal (Clear Victim)', 42451, 223203, 'Clear Victim', 16230, 0, 0, 0, 190, 'Crystal', + 'Crowd_Control', 'Taunt_(normal)', 0, '', 0, 0, 1, 3, 0, 'Soldier', 'Inferno Garden'), + (223206, 'Nano Crystal (Distinct Victim)', 42451, 223205, 'Distinct Victim', 16230, 0, 0, 0, 205, 'Crystal', + 'Crowd_Control', 'Taunt_(normal)', 0, '', 0, 0, 1, 4, 0, 'Soldier', 'Inferno Sanctuary'), + (223208, 'Nano Crystal (Undeniable Victim)', 42451, 223207, 'Undeniable Victim', 16230, 0, 0, 0, 211, 'Crystal', + 'Crowd_Control', 'Taunt_(normal)', 0, '', 0, 0, 1, 4, 0, 'Soldier', 'Pandemonium Garden'), + (223210, 'Nano Crystal (Unmistakable Victim)', 42451, 223209, 'Unmistakable Victim', 16230, 0, 0, 0, 215, + 'Crystal', 'Crowd_Control', 'Taunt_(normal)', 0, '', 0, 0, 1, 4, 0, 'Soldier', 'Pandemonium Garden'), + (223212, 'Nano Crystal (Bypass me)', 12259, 223211, 'Bypass Me', 16230, 0, 0, 0, 77, 'Crystal', 'Crowd_Control', + 'DeTaunt', 0, '', 0, 0, 1, 1, 0, 'Soldier', 'Scheol Garden'), + (223214, 'Nano Crystal (Circumvent me)', 42451, 223213, 'Circumvent Me', 16230, 0, 0, 0, 153, 'Crystal', + 'Crowd_Control', 'DeTaunt', 0, '', 0, 0, 1, 2, 0, 'Soldier', 'Penumbra Garden'), + (223216, 'Nano Crystal (Elude me)', 42451, 223215, 'Elude Me', 16230, 0, 0, 0, 195, 'Crystal', 'Crowd_Control', + 'DeTaunt', 0, '', 0, 0, 1, 3, 0, 'Soldier', 'Inferno Garden'), + (223218, 'Nano Crystal (Keep clear of me)', 42451, 223217, 'Keep Clear of Me', 16230, 0, 0, 0, 207, 'Crystal', + 'Crowd_Control', 'DeTaunt', 0, '', 0, 0, 1, 4, 0, 'Soldier', 'Inferno Sanctuary'), + (223220, 'Nano Crystal (Shake off me)', 42451, 223219, 'Shake Off Me', 16230, 0, 0, 0, 214, 'Crystal', + 'Crowd_Control', 'DeTaunt', 0, '', 0, 0, 1, 4, 0, 'Soldier', 'Pandemonium Garden'), + (223222, 'Nano Crystal (Desist me)', 42451, 223221, 'Desist Me', 16230, 0, 0, 0, 219, 'Crystal', 'Crowd_Control', + 'DeTaunt', 0, '', 0, 0, 1, 4, 0, 'Soldier', 'Pandemonium Garden'), + (223224, 'Nano Crystal (Artillery Fire)', 12226, 223223, 'Artillery Fire', 39180, 0, 0, 0, 38, 'Crystal', + 'Buffs', 'Heavy_Weapons_Buffs', 592, '', 0, 0, 1, 1, 0, 'Soldier', 'Elysium Garden'), + (223226, 'Nano Crystal (Canonry Fire)', 42451, 223225, 'Canonry Fire', 39180, 0, 0, 0, 123, 'Crystal', 'Buffs', + 'Heavy_Weapons_Buffs', 592, '', 0, 0, 1, 2, 0, 'Soldier', 'Adonis Sanctuary'), + (223228, 'Nano Crystal (Battery Fire)', 42451, 223227, 'Battery Fire', 39180, 0, 0, 0, 197, 'Crystal', 'Buffs', + 'Heavy_Weapons_Buffs', 592, '', 0, 0, 1, 3, 0, 'Soldier', 'Inferno Garden'), + (223230, 'Nano Crystal (Augmented Mirror Shield MK I)', 42452, 223229, 'Augmented Mirror Shield MK I', 101018, 0, + 0, 0, 181, 'Crystal', 'Buffs', 'Shadowland_Reflect_Base', 694, 'Self', 0, 0, 1, 3, 0, 'Soldier', + 'Inferno Garden'), + (223232, 'Nano Crystal (Snitch Notum)', 42450, 223231, 'Snitch Notum', 39137, 0, 0, 0, 170, 'Crystal', 'Drain', + 'Shadowlands_Nano_Point_Drains', 587, '', 0, 0, 1, 3, 0, 'Trader', 'Penumbra Sanctuary'), + (223234, 'Nano Crystal (Strip Notum)', 42450, 223233, 'Strip Notum', 39137, 0, 0, 0, 201, 'Crystal', 'Drain', + 'Shadowlands_Nano_Point_Drains', 587, '', 0, 0, 1, 4, 0, 'Trader', 'Inferno Sanctuary'), + (223236, 'Nano Crystal (Swindle Notum)', 42450, 223235, 'Swindle Notum', 39137, 0, 0, 0, 209, 'Crystal', 'Drain', + 'Shadowlands_Nano_Point_Drains', 587, '', 0, 0, 1, 4, 0, 'Trader', 'Inferno Sanctuary'), + (223238, 'Nano Crystal (Despoil Notum)', 42450, 223237, 'Despoil Notum', 39137, 0, 0, 0, 214, 'Crystal', 'Drain', + 'Shadowlands_Nano_Point_Drains', 587, '', 0, 0, 1, 4, 0, 'Trader', 'Pandemonium Garden'), + (223240, 'Nano Crystal (Plagiarize Notum)', 42450, 223239, 'Plagiarize Notum', 39137, 0, 0, 0, 218, 'Crystal', + 'Drain', 'Shadowlands_Nano_Point_Drains', 587, '', 0, 0, 1, 4, 0, 'Trader', 'Pandemonium Garden'), + (223242, 'Nano Crystal (Refresh Outfit (Team))', 12225, 223241, 'Refresh Outfit (Team)', 16303, 0, 0, 0, 25, + 'Crystal', 'Buffs', 'Nano_Point_Heals', 588, '', 0, 0, 1, 1, 0, 'Trader', 'Elysium Garden'), + (223244, 'Nano Crystal (Blackmail Notum)', 12225, 223243, 'Blackmail Notum', 39137, 0, 0, 0, 50, 'Crystal', + 'Drain', 'Shadowlands_Nano_Point_Drains', 587, '', 0, 0, 1, 1, 0, 'Trader', 'Elysium Sanctuary'), + (223246, 'Nano Crystal (Cheat Notum)', 42450, 223245, 'Cheat Notum', 39137, 0, 0, 0, 125, 'Crystal', 'Drain', + 'Shadowlands_Nano_Point_Drains', 587, '', 0, 0, 1, 2, 0, 'Trader', 'Adonis Sanctuary'), + (223248, 'Nano Crystal (Cleanse Outfit (Team))', 12258, 223247, 'Cleanse Outfit (Team)', 16303, 0, 0, 0, 100, + 'Crystal', 'Buffs', 'Nano_Point_Heals', 588, '', 0, 0, 1, 2, 0, 'Trader', 'Adonis Garden'), + (223250, 'Nano Crystal (Enliven Outfit (Team))', 42450, 223249, 'Enliven Outfit (Team)', 16303, 0, 0, 0, 150, + 'Crystal', 'Buffs', 'Nano_Point_Heals', 588, '', 0, 0, 1, 2, 0, 'Trader', 'Penumbra Garden'), + (223252, 'Nano Crystal (Invigorate Outfit (Team))', 42450, 223251, 'Invigorate Outfit (Team)', 16303, 0, 0, 0, + 200, 'Crystal', 'Buffs', 'Nano_Point_Heals', 588, '', 0, 0, 1, 3, 0, 'Trader', 'Inferno Sanctuary'), + (223254, 'Nano Crystal (Purify Outfit (Team))', 42450, 223253, 'Purify Outfit (Team)', 16303, 0, 0, 0, 207, + 'Crystal', 'Buffs', 'Nano_Point_Heals', 588, '', 0, 0, 1, 4, 0, 'Trader', 'Inferno Sanctuary'), + (223256, 'Nano Crystal (Restore Outfit (Team))', 42450, 223255, 'Restore Outfit (Team)', 16303, 0, 0, 0, 213, + 'Crystal', 'Buffs', 'Nano_Point_Heals', 588, '', 0, 0, 1, 4, 0, 'Trader', 'Pandemonium Garden'), + (223258, 'Nano Crystal (Rouse Outfit (Team))', 42450, 223257, 'Rouse Outfit (Team)', 16303, 0, 0, 0, 217, + 'Crystal', 'Buffs', 'Nano_Point_Heals', 588, '', 0, 0, 1, 4, 0, 'Trader', 'Pandemonium Garden'), + (223262, 'Nano Crystal (Mutagenic Venom)', 12257, 223261, 'Mutagenic Venom', 16222, 0, 0, 0, 100, 'Crystal', + 'Combat', 'DOT_Strain_C', 582, '', 0, 0, 1, 1, 0, 'Doctor', 'Adonis Garden'), + (223264, 'Nano Crystal (Mutagenic Contamination)', 42449, 223263, 'Mutagenic Contamination', 16222, 0, 0, 0, 170, + 'Crystal', 'Combat', 'DOT_Strain_C', 582, '', 0, 0, 1, 3, 0, 'Doctor', 'Penumbra Sanctuary'), + (223266, 'Nano Crystal (Mutagenic Catalyser)', 42449, 223265, 'Mutagenic Catalyser', 16222, 0, 0, 0, 195, + 'Crystal', 'Combat', 'DOT_Strain_C', 582, '', 0, 0, 1, 3, 0, 'Doctor', 'Inferno Garden'), + (223268, 'Nano Crystal (Viral Neurotoxin)', 42449, 223267, 'Viral Neurotoxin', 16222, 0, 0, 0, 203, 'Crystal', + 'Combat', 'DOT_-_Line_A', 6, '', 0, 0, 1, 4, 0, 'Doctor', 'Inferno Sanctuary'), + (223270, 'Nano Crystal (Entropic Sores)', 42449, 223269, 'Entropic Sores', 16222, 0, 0, 0, 207, 'Crystal', + 'Combat', 'DOT_-_Line_B', 7, '', 0, 0, 1, 4, 0, 'Doctor', 'Inferno Sanctuary'), + (223272, 'Nano Crystal (Mutagenic Contagion)', 42449, 223271, 'Mutagenic Contagion', 16222, 0, 0, 0, 211, + 'Crystal', 'Combat', 'DOT_Strain_C', 582, '', 0, 0, 1, 4, 0, 'Doctor', 'Pandemonium Garden'), + (223274, 'Nano Crystal (Corrupting Ooze)', 42449, 223273, 'Corrupting Ooze', 16222, 0, 0, 0, 213, 'Crystal', + 'Combat', 'DOT_-_Line_A', 6, '', 0, 0, 1, 4, 0, 'Doctor', 'Pandemonium Garden'), + (223276, 'Nano Crystal (Flesh Eater)', 42449, 223275, 'Flesh Eater', 16222, 0, 0, 0, 215, 'Crystal', 'Combat', + 'DOT_-_Line_B', 7, '', 0, 0, 1, 4, 0, 'Doctor', 'Pandemonium Garden'), + (223278, 'Nano Crystal (Mutagenic Pestilence)', 42449, 223277, 'Mutagenic Pestilence', 16222, 0, 0, 0, 217, + 'Crystal', 'Combat', 'DOT_Strain_C', 582, '', 0, 0, 1, 4, 0, 'Doctor', 'Pandemonium Garden'), + (223280, 'Nano Crystal (Scythe Omega Virus)', 42449, 223279, 'Scythe Omega Virus', 16222, 0, 0, 0, 219, + 'Crystal', 'Combat', 'DOT_-_Line_A', 6, '', 0, 0, 1, 4, 0, 'Doctor', 'Pandemonium Garden'), + (223282, 'Nano Crystal (Cellular Recuperation)', 42448, 223281, 'Cellular Recuperation', 44235, 0, 0, 0, 180, + 'Crystal', 'Combat', 'Single_Target_Healing', 951, '', 0, 0, 1, 3, 0, 'Doctor', 'Inferno Garden'), + (223286, 'Nano Crystal (Assauge Pain)', 42448, 223285, 'Assauge Pain', 44235, 0, 0, 0, 201, 'Crystal', 'Combat', + 'Single_Target_Healing', 951, '', 0, 0, 1, 4, 0, 'Doctor', 'Inferno Sanctuary'), + (223288, 'Nano Crystal (Touch of Kindness)', 42448, 223287, 'Touch of Kindness', 44235, 0, 0, 0, 205, 'Crystal', + 'Combat', 'Single_Target_Healing', 951, '', 0, 0, 1, 4, 0, 'Doctor', 'Inferno Sanctuary'), + (223290, 'Nano Crystal (Restorative Influx)', 42448, 223289, 'Restorative Influx', 44235, 0, 0, 0, 209, + 'Crystal', 'Combat', 'Single_Target_Healing', 951, '', 0, 0, 1, 4, 0, 'Doctor', 'Inferno Sanctuary'), + (223292, 'Nano Crystal (Revivification)', 42448, 223291, 'Revivification', 44235, 0, 0, 0, 212, 'Crystal', + 'Combat', 'Single_Target_Healing', 951, '', 0, 0, 1, 4, 0, 'Doctor', 'Pandemonium Garden'), + (223294, 'Nano Crystal (Blessing of Purity)', 42448, 223293, 'Blessing of Purity', 44235, 0, 0, 0, 214, + 'Crystal', 'Combat', 'Single_Target_Healing', 951, '', 0, 0, 1, 4, 0, 'Doctor', 'Pandemonium Garden'), + (223296, 'Nano Crystal (Renewal of Being)', 42448, 223295, 'Renewal of Being', 44235, 0, 0, 0, 216, 'Crystal', + 'Combat', 'Single_Target_Healing', 951, '', 0, 0, 1, 4, 0, 'Doctor', 'Pandemonium Garden'), + (223298, 'Nano Crystal (Cellular Rebirth)', 42448, 223297, 'Cellular Rebirth', 44235, 0, 0, 0, 218, 'Crystal', + 'Combat', 'Single_Target_Healing', 951, '', 0, 0, 1, 4, 0, 'Doctor', 'Pandemonium Garden'), + (223300, 'Nano Crystal (Bodily Invigoration)', 42448, 223299, 'Bodily Invigoration', 44235, 0, 0, 0, 220, + 'Crystal', 'Combat', 'Single_Target_Healing', 951, '', 0, 0, 1, 4, 0, 'Doctor', 'Pandemonium Garden'), + (223306, 'Nano Crystal (Synchronized Energy Spike)', 42450, 223305, 'Synchronized Energy Spike', 16216, 0, 0, 0, + 190, 'Crystal', 'Pet_Combat', 'RootSnareReduction', 0, '', 0, 0, 1, 3, 0, 'Engineer', 'Inferno Garden'), + (223308, 'Nano Crystal (Isochronal Sloughing Protective Barrier)', 42452, 223307, + 'Isochronal Sloughing Protective Barrier', 39170, 0, 0, 0, 128, 'Crystal', 'Buffs', + 'Engineer_Special_Attack_Absorber', 286, 'Self', 0, 0, 1, 2, 0, 'Engineer', 'Adonis Sanctuary'), + (223310, 'Nano Crystal (Isochronal Sloughing Defensive Shield)', 42452, 223309, + 'Isochronal Sloughing Defensive Shield', 39170, 0, 0, 0, 196, 'Crystal', 'Buffs', + 'Engineer_Special_Attack_Absorber', 286, 'Self', 0, 0, 1, 3, 0, 'Engineer', 'Inferno Garden'), + (223312, 'Nano Crystal (Isochronal Sloughing Assault Shield)', 42452, 223311, + 'Isochronal Sloughing Assault Shield', 39170, 0, 0, 0, 218, 'Crystal', 'Buffs', + 'Engineer_Special_Attack_Absorber', 286, 'Self', 0, 0, 1, 4, 0, 'Engineer', 'Pandemonium Garden'), + (223314, 'Nano Crystal (Slayerdroid Annihilator)', 42450, 223313, 'Slayerdroid Annihilator', 44135, 0, 0, 0, 201, + 'Crystal', 'Pet', 'Robots', 0, '', 0, 0, 1, 3, 0, 'Engineer', 'Adonis Garden'), + (223316, 'Nano Crystal (Devastator Drone)', 42450, 223315, 'Devastator Drone', 44135, 0, 0, 0, 205, 'Crystal', + 'Pet', 'Robots', 0, '', 0, 0, 1, 4, 0, 'Engineer', 'Penumbra Garden'), + (223318, 'Nano Crystal (Battlefield Devastator Drone)', 42450, 223317, 'Battlefield Devastator Drone', 44135, 0, + 0, 0, 209, 'Crystal', 'Pet', 'Robots', 0, '', 0, 0, 1, 4, 0, 'Engineer', 'Penumbra Sanctuary'), + (223320, 'Nano Crystal (Fieldsweeper Devastator Drone)', 42450, 223319, 'Fieldsweeper Devastator Drone', 44135, + 0, 0, 0, 213, 'Crystal', 'Pet', 'Robots', 0, '', 0, 0, 1, 4, 0, 'Engineer', 'Inferno Garden'), + (223322, 'Nano Crystal (Desolator Assault Drone)', 42450, 223321, 'Desolator Assault Drone', 44135, 0, 0, 0, 217, + 'Crystal', 'Pet', 'Robots', 0, '', 0, 0, 1, 4, 0, 'Engineer', 'Inferno Sanctuary'), + (223324, 'Nano Crystal (Widowmaker Battle Drone)', 42450, 223323, 'Widowmaker Battle Drone', 44135, 0, 0, 0, 220, + 'Crystal', 'Pet', 'Robots', 0, '', 0, 0, 1, 4, 0, 'Engineer', 'Pandemonium Garden'), + (223326, 'Nano Crystal (Prototype Predator M-30)', 12258, 223325, 'Prototype Predator M-30', 44135, 0, 0, 0, 100, + 'Crystal', 'Pet', 'Robotic_Dogs', 0, '', 0, 0, 1, 2, 0, 'Engineer', 'Scheol Garden'), + (223328, 'Nano Crystal (Upgraded Predator M-30)', 42450, 223327, 'Upgraded Predator M-30', 44135, 0, 0, 0, 180, + 'Crystal', 'Pet', 'Robotic_Dogs', 0, '', 0, 0, 1, 3, 0, 'Engineer', 'Adonis Garden'), + (223330, 'Nano Crystal (Advanced Predator M-30)', 42450, 223329, 'Advanced Predator M-30', 44135, 0, 0, 0, 203, + 'Crystal', 'Pet', 'Robotic_Dogs', 0, '', 0, 0, 1, 4, 0, 'Engineer', 'Adonis Sanctuary'), + (223332, 'Nano Crystal (Semi-Sentient Predator M-30)', 42450, 223331, 'Semi-Sentient Predator M-30', 44135, 0, 0, + 0, 207, 'Crystal', 'Pet', 'Robotic_Dogs', 0, '', 0, 0, 1, 4, 0, 'Engineer', 'Penumbra Garden'), + (223334, 'Nano Crystal (Military-Grade Predator M-30)', 42450, 223333, 'Military-Grade Predator M-30', 44135, 0, + 0, 0, 211, 'Crystal', 'Pet', 'Robotic_Dogs', 0, '', 0, 0, 1, 4, 0, 'Engineer', 'Inferno Garden'), + (223336, 'Nano Crystal (Marauder M-45)', 42450, 223335, 'Marauder M-45', 44135, 0, 0, 0, 215, 'Crystal', 'Pet', + 'Robotic_Dogs', 0, '', 0, 0, 1, 4, 0, 'Engineer', 'Inferno Sanctuary'), + (223338, 'Nano Crystal (Military-Grade Marauder M-45)', 42450, 223337, 'Military-Grade Marauder M-45', 44135, 0, + 0, 0, 219, 'Crystal', 'Pet', 'Robotic_Dogs', 0, '', 0, 0, 1, 4, 0, 'Engineer', 'Pandemonium Garden'), + (223340, 'Nano Crystal (Synchronized Capacitor Overload)', 42450, 223339, 'Synchronized Capacitor Overload', + 16216, 0, 0, 0, 214, 'Crystal', 'Pet_Combat', 'RootSnareReduction', 0, '', 0, 0, 1, 4, 0, 'Engineer', + 'Pandemonium Garden'), + (223349, 'Nano Crystal (Composite Ranged Expertise)', 297532, 223348, 'Composite Ranged Expertise', 297530, 0, 0, + 0, 25, 'Crystal', 'Buffs_-_Ranged', 'Composite', 0, '', 0, 0, 0, 0, 0, 'General', 'RK Store'), + (223351, 'Nano Crystal (Composite Melee Expertise (2 hours)', 42451, 223350, + 'Composite Melee Expertise (2 hours)', 287096, 0, 0, 0, 125, 'Crystal', 'Buffs_-_Melee', 'Composite', 0, '', 0, + 0, 1, 0, 0, 'General', 'No longer drops'), + (223353, 'Nano Crystal (Composite Melee Expertise (4 hours)', 42451, 223352, + 'Composite Melee Expertise (4 hours)', 287096, 0, 0, 0, 201, 'Crystal', 'Buffs_-_Melee', 'Composite', 0, '', 0, + 0, 1, 0, 0, 'General', 'No longer drops'), + (223355, 'Nano Crystal (Composite Melee Expertise (8 hours)', 42451, 223354, + 'Composite Melee Expertise (8 hours)', 287096, 0, 0, 0, 211, 'Crystal', 'Buffs_-_Melee', 'Composite', 0, '', 0, + 0, 1, 0, 0, 'General', 'No longer drops'), + (223357, 'Nano Crystal (Composite Ranged Expertise (2 hours))', 42451, 223356, + 'Composite Ranged Expertise (2 hours)', 287098, 0, 0, 0, 125, 'Crystal', 'Buffs_-_Ranged', 'Composite', 0, '', + 0, 0, 1, 0, 0, 'General', 'No longer drops'), + (223359, 'Nano Crystal (Composite Ranged Expertise (8 hours))', 42451, 223358, + 'Composite Ranged Expertise (8 hours)', 287098, 0, 0, 0, 211, 'Crystal', 'Buffs_-_Ranged', 'Composite', 0, '', + 0, 0, 1, 0, 0, 'General', 'No longer drops'), + (223361, 'Nano Crystal (Composite Melee Expertise)', 297513, 223360, 'Composite Melee Expertise', 297510, 0, 0, + 0, 25, 'Crystal', 'Buffs_-_Melee', 'Composite', 0, '', 0, 0, 0, 0, 0, 'General', 'RK Store'), + (223363, 'Nano Crystal (Composite Ranged Expertise (4 hours))', 42451, 223362, + 'Composite Ranged Expertise (4 hours)', 287098, 0, 0, 0, 201, 'Crystal', 'Buffs_-_Ranged', 'Composite', 0, '', + 0, 0, 1, 0, 0, 'General', 'No longer drops'), + (223365, 'Nano Crystal (Composite Ranged Special Expertise)', 297503, 223364, + 'Composite Ranged Special Expertise', 297505, 0, 0, 0, 25, 'Crystal', 'Buffs_-_Ranged_Special', 'Composite', 0, + '', 0, 0, 0, 0, 0, 'General', 'RK Store'), + (223367, 'Nano Crystal (Composite Ranged Special Expertise (2 hours))', 42451, 223366, + 'Composite Ranged Special Expertise (2 hours)', 287107, 0, 0, 0, 125, 'Crystal', 'Buffs_-_Ranged_Special', + 'Composite', 0, '', 0, 0, 1, 0, 0, 'General', 'No longer drops'), + (223369, 'Nano Crystal (Composite Ranged Special Expertise (4 hours))', 42451, 223368, + 'Composite Ranged Special Expertise (4 hours)', 287107, 0, 0, 0, 201, 'Crystal', 'Buffs_-_Ranged_Special', + 'Composite', 0, '', 0, 0, 1, 0, 0, 'General', 'No longer drops'), + (223371, 'Nano Crystal (Composite Ranged Special Expertise (8 hours))', 42451, 223370, + 'Composite Ranged Special Expertise (8 hours)', 287107, 0, 0, 0, 211, 'Crystal', 'Buffs_-_Ranged_Special', + 'Composite', 0, '', 0, 0, 1, 0, 0, 'General', 'No longer drops'), + (223373, 'Nano Crystal (Composite Attribute Boost)', 297498, 223372, 'Composite Attribute Boost', 297495, 0, 0, + 0, 25, 'Crystal', 'Buffs_-_Attributes', 'Composite', 0, '', 0, 0, 0, 0, 0, 'General', 'RK Store'), + (223375, 'Nano Crystal (Composite Attribute Boost (2 hours))', 42448, 223374, + 'Composite Attribute Boost (2 hours)', 287099, 0, 0, 0, 125, 'Crystal', 'Buffs_-_Attributes', 'Composite', 0, + '', 0, 0, 1, 0, 0, 'General', 'No longer drops'), + (223377, 'Nano Crystal (Composite Attribute Boost (4 hours))', 42448, 223376, + 'Composite Attribute Boost (4 hours)', 287099, 0, 0, 0, 201, 'Crystal', 'Buffs_-_Attributes', 'Composite', 0, + '', 0, 0, 1, 0, 0, 'General', 'No longer drops'), + (223379, 'Nano Crystal (Composite Attribute Boost (8 hours))', 42448, 223378, + 'Composite Attribute Boost (8 hours)', 287099, 0, 0, 0, 211, 'Crystal', 'Buffs_-_Attributes', 'Composite', 0, + '', 0, 0, 1, 0, 0, 'General', 'No longer drops'), + (223381, 'Nano Crystal (Composite Nano Expertise)', 297514, 223380, 'Composite Nano Expertise', 297519, 0, 0, 0, + 25, 'Crystal', 'Buffs_-_Nano', 'Composite', 0, '', 0, 0, 0, 0, 0, 'General', 'RK Store'), + (223383, 'Nano Crystal (Composite Nano Expertise (2 hours))', 42451, 223382, + 'Composite Nano Expertise (2 hours)', 287097, 0, 0, 0, 125, 'Crystal', 'Buffs_-_Nano', 'Composite', 0, '', 0, 0, + 1, 0, 0, 'General', 'No longer drops'), + (223385, 'Nano Crystal (Composite Nano Expertise (4 hours))', 42451, 223384, + 'Composite Nano Expertise (4 hours)', 287097, 0, 0, 0, 201, 'Crystal', 'Buffs_-_Nano', 'Composite', 0, '', 0, 0, + 1, 0, 0, 'General', 'No longer drops'), + (223387, 'Nano Crystal (Composite Nano Expertise (8 hours))', 42451, 223386, + 'Composite Nano Expertise (8 hours)', 287097, 0, 0, 0, 211, 'Crystal', 'Buffs_-_Nano', 'Composite', 0, '', 0, 0, + 1, 0, 0, 'General', 'No longer drops'), + (223389, 'Nano Crystal (Composite Physical Special Expertise (2 hours))', 42451, 223388, + 'Composite Physical Special Expertise (2 hours)', 287106, 0, 0, 0, 125, 'Crystal', 'Buffs_-_Melee_Special', + 'Composite', 0, '', 0, 0, 1, 0, 0, 'General', 'No longer drops'), + (223391, 'Nano Crystal (Composite Physical Special Expertise (4 hours))', 42451, 223390, + 'Composite Physical Special Expertise (4 hours)', 287106, 0, 0, 0, 201, 'Crystal', 'Buffs_-_Melee_Special', + 'Composite', 0, '', 0, 0, 1, 0, 0, 'General', 'No longer drops'), + (223393, 'Nano Crystal (Composite Physical Special Expertise (8 hours))', 42451, 223392, + 'Composite Physical Special Expertise (8 hours)', 287106, 0, 0, 0, 211, 'Crystal', 'Buffs_-_Melee_Special', + 'Composite', 0, '', 0, 0, 1, 0, 0, 'General', 'No longer drops'), + (223744, 'Nano Crystal (Vengeance of the Blessed)', 42450, 223743, 'Vengeance of the Blessed', 39028, 0, 0, 0, + 159, 'Crystal', 'Buffs', 'Aura_Damage/Snare_Reduction_Buffs', 529, 'Vengance', 0, 0, 0, 0, 0, 'Keeper', + 'Mission Reward'), + (223746, 'Nano Crystal (Vengeance of the Holy)', 42450, 223745, 'Vengeance of the Holy', 39028, 0, 0, 0, 192, + 'Crystal', 'Buffs', 'Aura_Damage/Snare_Reduction_Buffs', 529, 'Vengance', 0, 0, 0, 0, 0, 'Keeper', + 'Mission Reward'), + (223768, 'Nano Crystal (Overview of Nascence)', 296645, 223767, 'Overview of Nascence and Jobe', 296637, 0, 0, 0, + 1, 'Crystal', 'Buffs', 'Shadowlands_Maps', 1033, '', 0, 0, 1, 0, 0, 'General', 'RK Store'), + (224071, 'Nano Crystal (Imminence of Bloodshed)', 42451, 224070, 'Imminence of Bloodshed', 38900, 0, 0, 0, 183, + 'Crystal', 'Buffs', 'Aura_Absorb/Reflect/AMS_Buffs', 528, 'Imminence', 0, 0, 0, 0, 0, 'Keeper', + 'Mission Reward'), + (224074, 'Nano Crystal (Adaptive Tone of Serenity)', 300463, 224073, 'Adaptive Tone of Serenity', 300467, 0, 0, + 0, 205, 'Crystal', 'Buffs', 'Aura_HP_and_NP_Regeneration_Buffs', 527, 'Health_and_Nano', 527, 0, 1, 4, 0, + 'Keeper', 'Inferno Sanctuary'), + (224078, 'Nano Crystal (Fanatic Reaper)', 42450, 224077, 'Fanatic Reaper', 84198, 0, 0, 0, 209, 'Crystal', + 'Buffs', 'Proc_Buffs', 526, 'Reaper', 0, 0, 1, 4, 0, 'Keeper', 'Inferno Sanctuary'), + (224116, 'Nano Crystal (Puissant Momentary Daze)', 12224, 224115, 'Puissant Momentary Daze', 46275, 0, 0, 0, 23, + 'Crystal', 'Crowd_Control', 'Root', 146, 'Target', 0, 0, 1, 1, 0, 'Bureaucrat', 'Nascense Garden'), + (224118, 'Nano Crystal (Puissant Restrict Movement)', 12257, 224117, 'Puissant Restrict Movement', 46275, 0, 0, + 0, 54, 'Crystal', 'Crowd_Control', 'Root', 146, 'Target', 0, 0, 1, 1, 0, 'Bureaucrat', 'Elysium Sanctuary'), + (224120, 'Nano Crystal (Puissant Illusionary Paralysis)', 42449, 224119, 'Puissant Illusionary Paralysis', 46275, + 0, 0, 0, 102, 'Crystal', 'Crowd_Control', 'Root', 146, 'Area', 0, 0, 1, 2, 0, 'Bureaucrat', 'Adonis Garden'), + (224122, 'Nano Crystal (Puissant Musculature Command)', 42449, 224121, 'Puissant Musculature Command', 46275, 0, + 0, 0, 151, 'Crystal', 'Crowd_Control', 'Root', 146, 'Area', 0, 0, 1, 2, 0, 'Bureaucrat', 'Penumbra Garden'), + (224124, 'Nano Crystal (Puissant Inhibit Motion)', 42449, 224123, 'Puissant Inhibit Motion', 46275, 0, 0, 0, 190, + 'Crystal', 'Crowd_Control', 'Root', 146, 'Area', 0, 0, 1, 3, 0, 'Bureaucrat', 'Inferno Garden'), + (224126, 'Nano Crystal (Puissant Captivating Speech)', 42449, 224125, 'Puissant Captivating Speech', 46275, 0, 0, + 0, 205, 'Crystal', 'Crowd_Control', 'Root', 146, 'Area', 0, 0, 1, 4, 0, 'Bureaucrat', 'Inferno Sanctuary'), + (224128, 'Nano Crystal (Puissant Total Muscular Command)', 42449, 224127, 'Puissant Total Muscular Command', + 46275, 0, 0, 0, 214, 'Crystal', 'Crowd_Control', 'Root', 146, 'Area', 0, 0, 1, 4, 0, 'Bureaucrat', + 'Pandemonium Garden'), + (224130, 'Nano Crystal (Puissant Void Inertia)', 42449, 224129, 'Puissant Void Inertia', 46275, 0, 0, 0, 217, + 'Crystal', 'Crowd_Control', 'Root', 146, 'Area', 0, 0, 1, 4, 0, 'Bureaucrat', 'Pandemonium Garden'), + (224132, 'Nano Crystal (Empowered Anger Addlement)', 12257, 224131, 'Empowered Anger Addlement', 46271, 0, 0, 0, + 64, 'Crystal', 'Crowd_Control', 'Mezz', 147, 'Shadowlands', 0, 1, 1, 1, 0, 'Bureaucrat', 'Scheol Garden'), + (224134, 'Nano Crystal (Empowered Sleep)', 12257, 224133, 'Empowered Sleep', 46271, 0, 0, 0, 85, 'Crystal', + 'Crowd_Control', 'Mezz', 147, 'Shadowlands', 0, 1, 1, 1, 0, 'Bureaucrat', 'Scheol Sanctuary'), + (224136, 'Nano Crystal (Empowered Demotivate)', 42449, 224135, 'Empowered Demotivate', 46271, 0, 0, 0, 123, + 'Crystal', 'Crowd_Control', 'Mezz', 147, 'Shadowlands', 0, 1, 1, 1, 0, 'Bureaucrat', 'Adonis Sanctuary'), + (224138, 'Nano Crystal (Empowered Cubicle Dweller)', 42449, 224137, 'Empowered Cubicle Dweller', 46271, 0, 0, 0, + 170, 'Crystal', 'Crowd_Control', 'Mezz', 147, 'Shadowlands', 0, 1, 1, 3, 0, 'Bureaucrat', 'Penumbra Sanctuary'), + (224140, 'Nano Crystal (Empowered Contemplation)', 42449, 224139, 'Empowered Contemplation', 46271, 0, 0, 0, 212, + 'Crystal', 'Crowd_Control', 'Mezz', 147, 'Shadowlands', 0, 0, 1, 4, 0, 'Bureaucrat', 'Pandemonium Garden'), + (224142, 'Nano Crystal (Empowered Chaotic Mind)', 42449, 224141, 'Empowered Chaotic Mind', 46271, 0, 0, 0, 215, + 'Crystal', 'Crowd_Control', 'Mezz', 147, 'Shadowlands', 0, 0, 1, 4, 0, 'Bureaucrat', 'Pandemonium Garden'), + (224144, 'Nano Crystal (Empowered Divided Ego)', 42449, 224143, 'Empowered Divided Ego', 46271, 0, 0, 0, 219, + 'Crystal', 'Crowd_Control', 'Mezz', 147, 'Shadowlands', 0, 0, 1, 4, 0, 'Bureaucrat', 'Pandemonium Garden'), + (224146, 'Nano Crystal (Empowered Introspective Engagement)', 42449, 224145, + 'Empowered Introspective Engagement', 46271, 0, 0, 0, 193, 'Crystal', 'Crowd_Control', 'Mezz', 147, + 'Shadowlands', 0, 1, 1, 3, 0, 'Bureaucrat', 'Inferno Garden'), + (224148, 'Nano Crystal (Empowered Wandering Mind)', 42449, 224147, 'Empowered Wandering Mind', 46271, 0, 0, 0, + 203, 'Crystal', 'Crowd_Control', 'Mezz', 147, 'Shadowlands', 0, 1, 1, 3, 0, 'Bureaucrat', 'Inferno Sanctuary'), + (224150, 'Nano Crystal (Empowered Disjointed From Reality)', 42449, 224149, 'Empowered Disjointed From Reality', + 46271, 0, 0, 0, 209, 'Crystal', 'Crowd_Control', 'Mezz', 147, 'Shadowlands', 0, 0, 1, 4, 0, 'Bureaucrat', + 'Inferno Sanctuary'), + (224160, 'Nano Crystal (Primal Dissipation)', 42450, 224159, 'Primal Dissipation', 84196, 0, 0, 0, 209, + 'Crystal', 'Proc', 'Shade_Proc_Buffs', 521, 'Dot', 0, 0, 1, 4, 0, 'Shade', 'Inferno Sanctuary'), + (224162, 'Nano Crystal (Chthonic Dissipation)', 42450, 224161, 'Chthonic Dissipation', 84196, 0, 0, 0, 216, + 'Crystal', 'Proc', 'Shade_Proc_Buffs', 521, 'Dot', 0, 0, 1, 4, 0, 'Shade', 'Pandemonium Garden'), + (224164, 'Nano Crystal (Ceremonial Grasp)', 42450, 224163, 'Ceremonial Grasp', 84198, 0, 0, 0, 203, 'Crystal', + 'Proc', 'Shade_Proc_Buffs', 521, 'Damage', 0, 0, 1, 4, 0, 'Shade', 'Inferno Sanctuary'), + (224166, 'Nano Crystal (Ceremonial Caress)', 42450, 224165, 'Ceremonial Caress', 84198, 0, 0, 0, 212, 'Crystal', + 'Proc', 'Shade_Proc_Buffs', 521, 'Damage', 0, 0, 1, 4, 0, 'Shade', 'Pandemonium Garden'), + (224168, 'Nano Crystal (Ceremonial Embrace)', 42450, 224167, 'Ceremonial Embrace', 84198, 0, 0, 0, 218, + 'Crystal', 'Proc', 'Shade_Proc_Buffs', 521, 'Damage', 0, 0, 1, 4, 0, 'Shade', 'Pandemonium Garden'), + (224170, 'Nano Crystal (Quintessence of Transfixion)', 42450, 224169, 'Quintessence of Transfixion', 84197, 0, 0, + 0, 207, 'Crystal', 'Proc', 'Shade_Proc_Buffs', 521, 'Stun', 0, 0, 1, 4, 0, 'Shade', 'Inferno Sanctuary'), + (224172, 'Nano Crystal (Quintessence of Stupefication)', 42450, 224171, 'Quintessence of Stupefication', 84197, + 0, 0, 0, 220, 'Crystal', 'Proc', 'Shade_Proc_Buffs', 521, 'Stun', 0, 0, 1, 4, 0, 'Shade', 'Pandemonium Garden'), + (224178, 'Nano Crystal (Degeneration of Haste)', 301089, 224177, 'Degeneration of Haste', 301087, 0, 0, 0, 219, + 'Crystal', 'Proc', 'Shade_Proc_Buffs', 521, 'Inits', 0, 0, 1, 4, 0, 'Shade', 'Pandemonium Garden'), + (224404, 'Nano Crystal (Summon Shadowweb Spinner MK I)', 12225, 224403, 'Summon Shadowweb Spinner MK I', 16320, + 0, 0, 0, 25, 'Crystal', 'Creation', 'ShadowWeb_Spinner', 0, '', 0, 0, 1, 0, 0, 'Fixer', 'RK Store'), + (224407, 'Nano Crystal (Summon Shadowweb Spinner MK II)', 12258, 224405, 'Summon Shadowweb Spinner MK II', 16320, + 0, 0, 0, 75, 'Crystal', 'Creation', 'ShadowWeb_Spinner', 0, '', 0, 0, 1, 1, 0, 'Fixer', 'Scheol Garden'), + (224409, 'Nano Crystal (Summon Shadowweb Spinner MK III)', 42450, 224408, 'Summon Shadowweb Spinner MK III', + 16320, 0, 0, 0, 103, 'Crystal', 'Creation', 'ShadowWeb_Spinner', 0, '', 0, 0, 1, 2, 0, 'Fixer', + 'Adonis Garden'), + (224411, 'Nano Crystal (Summon Shadowweb Spinner MK IV)', 42450, 224410, 'Summon Shadowweb Spinner MK IV', 16320, + 0, 0, 0, 153, 'Crystal', 'Creation', 'ShadowWeb_Spinner', 0, '', 0, 0, 1, 3, 0, 'Fixer', 'Penumbra Garden'), + (224413, 'Nano Crystal (Summon Shadowweb Spinner MK V)', 42450, 224412, 'Summon Shadowweb Spinner MK V', 16320, + 0, 0, 0, 170, 'Crystal', 'Creation', 'ShadowWeb_Spinner', 0, '', 0, 0, 1, 3, 0, 'Fixer', 'Penumbra Sanctuary'), + (224415, 'Nano Crystal (Summon Shadowweb Spinner MK VI)', 42450, 224414, 'Summon Shadowweb Spinner MK VI', 16320, + 0, 0, 0, 201, 'Crystal', 'Creation', 'ShadowWeb_Spinner', 0, '', 0, 0, 1, 4, 0, 'Fixer', 'Inferno Sanctuary'), + (224417, 'Nano Crystal (Summon Shadowweb Spinner MK VII)', 42450, 224416, 'Summon Shadowweb Spinner MK VII', + 16320, 0, 0, 0, 205, 'Crystal', 'Creation', 'ShadowWeb_Spinner', 0, '', 0, 0, 1, 4, 0, 'Fixer', + 'Inferno Sanctuary'), + (224419, 'Nano Crystal (Summon Shadowweb Spinner MK VIII)', 42450, 224418, 'Summon Shadowweb Spinner MK VIII', + 16320, 0, 0, 0, 209, 'Crystal', 'Creation', 'ShadowWeb_Spinner', 0, '', 0, 0, 1, 4, 0, 'Fixer', + 'Inferno Sanctuary'), + (224421, 'Nano Crystal (Summon Shadowweb Spinner MK IX)', 42450, 224420, 'Summon Shadowweb Spinner MK IX', 16320, + 0, 0, 0, 215, 'Crystal', 'Creation', 'ShadowWeb_Spinner', 0, '', 0, 0, 1, 4, 0, 'Fixer', 'Pandemonium Garden'), + (224423, 'Nano Crystal (Summon Shadowweb Spinner MK X)', 42450, 224422, 'Summon Shadowweb Spinner MK X', 16320, + 0, 0, 0, 220, 'Crystal', 'Creation', 'ShadowWeb_Spinner', 0, '', 0, 0, 1, 4, 0, 'Fixer', 'Pandemonium Garden'), + (225895, 'Nano Crystal (Summon Biazu the Vile)', 295587, 225894, 'Summon Biazu the Vile', 295586, 0, 0, 0, 170, + 'Crystal', 'Pet', 'Attack_Pet_Summon', 0, '', 0, 0, 1, 3, 0, 'Meta-Physicist', 'Penumbra Sanctuary'), + (225897, 'Nano Crystal (Summon Urolok the Rotten)', 295590, 225896, 'Summon Urolok the Rotten', 295594, 0, 0, 0, + 195, 'Crystal', 'Pet', 'Attack_Pet_Summon', 0, '', 0, 0, 1, 3, 0, 'Meta-Physicist', 'Inferno Garden'), + (225899, 'Nano Crystal (Summon Ettu the Cursed)', 295587, 225898, 'Summon Ettu the Cursed', 295586, 0, 0, 0, 201, + 'Crystal', 'Pet', 'Attack_Pet_Summon', 0, '', 0, 0, 1, 4, 0, 'Meta-Physicist', 'Inferno Sanctuary'), + (225901, 'Nano Crystal (Summon Zhok the Abomination)', 295589, 225900, 'Summon Zhok the Abomination', 295592, 0, + 0, 0, 212, 'Crystal', 'Pet', 'Attack_Pet_Summon', 0, '', 0, 0, 1, 4, 0, 'Meta-Physicist', 'Pandemonium Garden'), + (225903, 'Nano Crystal (Calling of Mortificant the Eternal)', 295567, 225902, + 'Calling of Mortificant the Eternal', 295569, 0, 0, 0, 207, 'Crystal', 'Pet', 'Heal_Pet', 0, '', 0, 0, 1, 4, 0, + 'Meta-Physicist', 'Inferno Sanctuary'), + (226272, 'Nano Crystal (Fearbringer)', 12258, 226270, 'Fearbringer', 84198, 0, 0, 0, 77, 'Crystal', 'Buffs', + 'Enforcer_Taunt_Procs', 627, '', 0, 0, 1, 1, 0, 'Enforcer', 'Scheol Garden'), + (226274, 'Nano Crystal (Irebringer)', 42450, 226273, 'Irebringer', 84198, 0, 0, 0, 171, 'Crystal', 'Buffs', + 'Enforcer_Taunt_Procs', 627, '', 0, 0, 1, 3, 0, 'Enforcer', 'Penumbra Sanctuary'), + (226277, 'Nano Crystal (Wrathbringer)', 42450, 226276, 'Wrathbringer', 84198, 0, 0, 0, 200, 'Crystal', 'Buffs', + 'Enforcer_Taunt_Procs', 627, '', 0, 0, 1, 3, 0, 'Enforcer', 'Inferno Sanctuary'), + (226279, 'Nano Crystal (Hatebringer)', 42450, 226278, 'Hatebringer', 84198, 0, 0, 0, 207, 'Crystal', 'Buffs', + 'Enforcer_Taunt_Procs', 627, '', 0, 0, 1, 4, 0, 'Enforcer', 'Inferno Sanctuary'), + (226282, 'Nano Crystal (Ragebringer)', 42450, 226281, 'Ragebringer', 84198, 0, 0, 0, 214, 'Crystal', 'Buffs', + 'Enforcer_Taunt_Procs', 627, '', 0, 0, 1, 4, 0, 'Enforcer', 'Pandemonium Garden'), + (226284, 'Nano Crystal (Dreadbringer)', 42450, 226283, 'Dreadbringer', 84198, 0, 0, 0, 219, 'Crystal', 'Buffs', + 'Enforcer_Taunt_Procs', 627, '', 0, 0, 1, 4, 0, 'Enforcer', 'Pandemonium Garden'), + (226395, 'Nano Crystal (Anger Shock)', 12225, 226394, 'Anger Shock', 84198, 0, 0, 0, 50, 'Crystal', 'Buffs', + 'Agent_Proc_Buffs', 636, '', 0, 0, 1, 1, 0, 'Agent', 'Elysium Sanctuary'), + (226397, 'Nano Crystal (Jarring Shock)', 42450, 226396, 'Jarring Shock', 84198, 0, 0, 0, 125, 'Crystal', 'Buffs', + 'Agent_Proc_Buffs', 636, '', 0, 0, 1, 2, 0, 'Agent', 'Adonis Sanctuary'), + (226400, 'Nano Crystal (Numbing Shock)', 42450, 226398, 'Numbing Shock', 84198, 0, 0, 0, 180, 'Crystal', 'Buffs', + 'Agent_Proc_Buffs', 636, '', 0, 0, 1, 3, 0, 'Agent', 'Inferno Garden'), + (226405, 'Nano Crystal (Sickening Shock)', 42450, 226403, 'Sickening Shock', 84198, 0, 0, 0, 201, 'Crystal', + 'Buffs', 'Agent_Proc_Buffs', 636, '', 0, 0, 1, 4, 0, 'Agent', 'Inferno Sanctuary'), + (226407, 'Nano Crystal (Unsettling Shock)', 42450, 226406, 'Unsettling Shock', 84198, 0, 0, 0, 212, 'Crystal', + 'Buffs', 'Agent_Proc_Buffs', 636, '', 0, 0, 1, 4, 0, 'Agent', 'Pandemonium Garden'), + (226409, 'Nano Crystal (Harm Shock)', 42450, 226408, 'Harm Shock', 84198, 0, 0, 0, 219, 'Crystal', 'Buffs', + 'Agent_Proc_Buffs', 636, '', 0, 0, 1, 4, 0, 'Agent', 'Pandemonium Garden'), + (226412, 'Nano Crystal (Waves of Anger)', 12225, 226410, 'Waves of Anger', 84198, 0, 0, 0, 25, 'Crystal', + 'Buffs', 'Shadowlands_Disease_Direct_Damage_Procs', 635, 'Direct_Damage', 0, 0, 1, 1, 0, 'Agent', + 'Elysium Garden'), + (226414, 'Nano Crystal (Waves of Jarring)', 12258, 226413, 'Waves of Jarring', 84198, 0, 0, 0, 100, 'Crystal', + 'Buffs', 'Shadowlands_Disease_Direct_Damage_Procs', 635, 'Direct_Damage', 0, 0, 1, 2, 0, 'Agent', + 'Adonis Garden'), + (226416, 'Nano Crystal (Waves of Numbing)', 42450, 226415, 'Waves of Numbing', 84198, 0, 0, 0, 170, 'Crystal', + 'Buffs', 'Shadowlands_Disease_Direct_Damage_Procs', 635, 'Direct_Damage', 0, 0, 1, 3, 0, 'Agent', + 'Penumbra Sanctuary'), + (226418, 'Nano Crystal (Waves of Illness)', 42450, 226417, 'Waves of Illness', 84198, 0, 0, 0, 195, 'Crystal', + 'Buffs', 'Shadowlands_Disease_Direct_Damage_Procs', 635, 'Direct_Damage', 0, 0, 1, 3, 0, 'Agent', + 'Inferno Garden'), + (226420, 'Nano Crystal (Waves of Sickening)', 42450, 226419, 'Waves of Sickening', 84198, 0, 0, 0, 203, + 'Crystal', 'Buffs', 'Shadowlands_Disease_Direct_Damage_Procs', 635, 'Direct_Damage', 0, 0, 1, 4, 0, 'Agent', + 'Inferno Sanctuary'), + (226422, 'Nano Crystal (Waves of Unsettling)', 42450, 226421, 'Waves of Unsettling', 84198, 0, 0, 0, 211, + 'Crystal', 'Buffs', 'Shadowlands_Disease_Direct_Damage_Procs', 635, 'Direct_Damage', 0, 0, 1, 4, 0, 'Agent', + 'Pandemonium Garden'), + (226424, 'Nano Crystal (Waves of Harm)', 42450, 226423, 'Waves of Harm', 84198, 0, 0, 0, 215, 'Crystal', 'Buffs', + 'Shadowlands_Disease_Direct_Damage_Procs', 635, 'Direct_Damage', 0, 0, 1, 4, 0, 'Agent', 'Pandemonium Garden'), + (226426, 'Nano Crystal (Waves of Trauma)', 42450, 226425, 'Waves of Trauma', 84198, 0, 0, 0, 218, 'Crystal', + 'Buffs', 'Shadowlands_Disease_Direct_Damage_Procs', 635, 'Direct_Damage', 0, 0, 1, 4, 0, 'Agent', + 'Pandemonium Garden'), + (226428, 'Nano Crystal (Blast of Avoidance)', 12258, 226427, 'Blast of Avoidance', 84198, 0, 0, 0, 75, 'Crystal', + 'Buffs', 'Shadowlands_Disease_Direct_Damage_Procs', 635, 'Taunt_Only', 0, 0, 1, 1, 0, 'Agent', 'Scheol Garden'), + (226430, 'Nano Crystal (Blast of Neglect)', 42450, 226429, 'Blast of Neglect', 84198, 0, 0, 0, 150, 'Crystal', + 'Buffs', 'Shadowlands_Disease_Direct_Damage_Procs', 635, 'Taunt_Only', 0, 0, 1, 2, 0, 'Agent', + 'Penumbra Garden'), + (226432, 'Nano Crystal (Blast of Circumvention)', 42450, 226431, 'Blast of Circumvention', 84198, 0, 0, 0, 200, + 'Crystal', 'Buffs', 'Shadowlands_Disease_Direct_Damage_Procs', 635, 'Taunt_Only', 0, 0, 1, 3, 0, 'Agent', + 'Inferno Sanctuary'), + (226434, 'Nano Crystal (Blast of Ommitance)', 42450, 226433, 'Blast of Ommitance', 84198, 0, 0, 0, 207, + 'Crystal', 'Buffs', 'Shadowlands_Disease_Direct_Damage_Procs', 635, 'Taunt_Only', 0, 0, 1, 4, 0, 'Agent', + 'Inferno Sanctuary'), + (226436, 'Nano Crystal (Blast of Rejection)', 42450, 226435, 'Blast of Rejection', 84198, 0, 0, 0, 214, + 'Crystal', 'Buffs', 'Shadowlands_Disease_Direct_Damage_Procs', 635, 'Taunt_Only', 0, 0, 1, 4, 0, 'Agent', + 'Pandemonium Garden'), + (226438, 'Nano Crystal (Blast of Outflanking)', 42450, 226437, 'Blast of Outflanking', 84198, 0, 0, 0, 220, + 'Crystal', 'Buffs', 'Shadowlands_Disease_Direct_Damage_Procs', 635, 'Taunt_Only', 0, 0, 1, 4, 0, 'Agent', + 'Pandemonium Garden'), + (226440, 'Nano Crystal (Relieve Stress)', 42451, 226439, 'Relieve Stress', 16230, 0, 0, 0, 190, 'Crystal', + 'Crowd_Control', 'Detaunt', 0, '', 0, 0, 1, 3, 0, 'Agent', 'Inferno Garden'), + (226442, 'Nano Crystal (Renounce Anger)', 42451, 226441, 'Renounce Anger', 16230, 0, 0, 0, 205, 'Crystal', + 'Crowd_Control', 'Detaunt', 0, '', 0, 0, 1, 4, 0, 'Agent', 'Inferno Sanctuary'), + (226444, 'Nano Crystal (Ignore Past Actions)', 42451, 226443, 'Ignore Past Actions', 16230, 0, 0, 0, 213, + 'Crystal', 'Crowd_Control', 'Detaunt', 0, '', 0, 0, 1, 4, 0, 'Agent', 'Pandemonium Garden'), + (226446, 'Nano Crystal (Absolve Guilt)', 42451, 226445, 'Absolve Guilt', 16230, 0, 0, 0, 216, 'Crystal', + 'Crowd_Control', 'Detaunt', 0, '', 0, 0, 1, 4, 0, 'Agent', 'Pandemonium Garden'), + (226448, 'Nano Crystal (Fade From Memory)', 42451, 226447, 'Fade From Memory', 16230, 0, 0, 0, 217, 'Crystal', + 'Crowd_Control', 'Detaunt', 0, '', 0, 0, 1, 4, 0, 'Agent', 'Pandemonium Garden'), + (226712, 'Nano Crystal (Abolish Aluminium)', 42452, 226711, 'Abolish Aluminium', 117903, 0, 0, 0, 166, 'Crystal', + 'DeBuffs', 'AC', 0, '', 0, 0, 1, 3, 0, 'Trader', 'Penumbra Sanctuary'), + (226717, 'Nano Crystal (Abolish Gallium)', 42452, 226716, 'Abolish Gallium', 117903, 0, 0, 0, 196, 'Crystal', + 'DeBuffs', 'AC', 0, '', 0, 0, 1, 3, 0, 'Trader', 'Inferno Garden'), + (226719, 'Nano Crystal (Abolish Tin)', 42452, 226718, 'Abolish Tin', 117903, 0, 0, 0, 203, 'Crystal', 'DeBuffs', + 'AC', 0, '', 0, 0, 1, 4, 0, 'Trader', 'Inferno Sanctuary'), + (226721, 'Nano Crystal (Abolish Thallium)', 42452, 226720, 'Abolish Thallium', 117903, 0, 0, 0, 212, 'Crystal', + 'DeBuffs', 'AC', 0, '', 0, 0, 1, 4, 0, 'Trader', 'Pandemonium Garden'), + (226723, 'Nano Crystal (Abolish Bismuth)', 42452, 226722, 'Abolish Bismuth', 117903, 0, 0, 0, 216, 'Crystal', + 'DeBuffs', 'AC', 0, '', 0, 0, 1, 4, 0, 'Trader', 'Pandemonium Garden'), + (226725, 'Nano Crystal (Abolish Polonium)', 42452, 226724, 'Abolish Polonium', 117903, 0, 0, 0, 220, 'Crystal', + 'DeBuffs', 'AC', 0, '', 0, 0, 1, 4, 0, 'Trader', 'Pandemonium Garden'), + (226727, 'Nano Crystal (Blunt Defense)', 42452, 226726, 'Blunt Defense', 117903, 0, 0, 0, 132, 'Crystal', + 'DeBuffs', 'Nano_Resist_DeBuffs', 0, 'Small', 0, 0, 1, 2, 0, 'Trader', 'Adonis Sanctuary'), + (226729, 'Nano Crystal (Disable Defense)', 42452, 226728, 'Disable Defense', 117903, 0, 0, 0, 191, 'Crystal', + 'DeBuffs', 'Nano_Resist_DeBuffs', 0, 'Small', 0, 0, 1, 3, 0, 'Trader', 'Inferno Garden'), + (226731, 'Nano Crystal (Debilitate Defense)', 42452, 226730, 'Debilitate Defense', 117903, 0, 0, 0, 191, + 'Crystal', 'DeBuffs', 'Nano_Resist_DeBuffs', 0, 'Large', 0, 0, 1, 3, 0, 'Trader', 'Inferno Garden'), + (226735, 'Nano Crystal (Emasculate Defense)', 42452, 226734, 'Emasculate Defense', 117903, 0, 0, 0, 203, + 'Crystal', 'DeBuffs', 'Nano_Resist_DeBuffs', 0, 'Small', 0, 0, 1, 4, 0, 'Trader', 'Inferno Sanctuary'), + (226737, 'Nano Crystal (Enfeeble Defense)', 42452, 226736, 'Enfeeble Defense', 117903, 0, 0, 0, 203, 'Crystal', + 'DeBuffs', 'Nano_Resist_DeBuffs', 0, 'Large', 0, 0, 1, 4, 0, 'Trader', 'Inferno Sanctuary'), + (226739, 'Nano Crystal (Exhaust Defense)', 42452, 226738, 'Exhaust Defense', 117903, 0, 0, 0, 211, 'Crystal', + 'DeBuffs', 'Nano_Resist_DeBuffs', 0, 'Small', 0, 0, 1, 4, 0, 'Trader', 'Pandemonium Garden'), + (226741, 'Nano Crystal (Undermine Defense)', 42452, 226740, 'Undermine Defense', 117903, 0, 0, 0, 211, 'Crystal', + 'DeBuffs', 'Nano_Resist_DeBuffs', 0, 'Large', 0, 0, 1, 4, 0, 'Trader', 'Pandemonium Garden'), + (226743, 'Nano Crystal (Weaken Defense)', 42452, 226742, 'Weaken Defense', 117903, 0, 0, 0, 215, 'Crystal', + 'DeBuffs', 'Nano_Resist_DeBuffs', 0, 'Small', 0, 0, 1, 4, 0, 'Trader', 'Pandemonium Garden'), + (226745, 'Nano Crystal (Mar Defense)', 42452, 226744, 'Mar Defense', 117903, 0, 0, 0, 215, 'Crystal', 'DeBuffs', + 'Nano_Resist_DeBuffs', 0, 'Large', 0, 0, 1, 4, 0, 'Trader', 'Pandemonium Garden'), + (226747, 'Nano Crystal (Eviscerate Defense)', 42452, 226746, 'Eviscerate Defense', 117903, 0, 0, 0, 219, + 'Crystal', 'DeBuffs', 'Nano_Resist_DeBuffs', 0, 'Small', 0, 0, 1, 4, 0, 'Trader', 'Pandemonium Garden'), + (226749, 'Nano Crystal (Attenuate Defense)', 42452, 226748, 'Attenuate Defense', 117903, 0, 0, 0, 219, 'Crystal', + 'DeBuffs', 'Nano_Resist_DeBuffs', 0, 'Large', 0, 0, 1, 4, 0, 'Trader', 'Pandemonium Garden'), + (226751, 'Nano Crystal (Cripple Defense)', 42452, 226750, 'Cripple Defense', 117903, 0, 0, 0, 132, 'Crystal', + 'DeBuffs', 'Nano_Resist_DeBuffs', 0, 'Large', 0, 0, 1, 2, 0, 'Trader', 'Adonis Sanctuary'), + (227110, 'Nano Crystal (Distortion of Resolve)', 42451, 227109, 'Distortion of Resolve', 39168, 0, 0, 0, 151, + 'Crystal', 'DeBuffs', 'Meta-Physicist_Damage_DeBuffs_-_Line_B', 659, '', 0, 0, 1, 2, 0, 'Meta-Physicist', + 'Penumbra Garden'), + (227112, 'Nano Crystal (Corruption of Will)', 42451, 227111, 'Corruption of Will', 39168, 0, 0, 0, 180, + 'Crystal', 'DeBuffs', 'Meta-Physicist_Damage_DeBuffs_-_Line_A', 658, '', 0, 0, 1, 3, 0, 'Meta-Physicist', + 'Inferno Garden'), + (227114, 'Nano Crystal (Corruption of Resolve)', 42451, 227113, 'Corruption of Resolve', 39168, 0, 0, 0, 181, + 'Crystal', 'DeBuffs', 'Meta-Physicist_Damage_DeBuffs_-_Line_B', 659, '', 0, 0, 1, 3, 0, 'Meta-Physicist', + 'Inferno Garden'), + (227116, 'Nano Crystal (Degredation of Will)', 42451, 227115, 'Degredation of Will', 39168, 0, 0, 0, 200, + 'Crystal', 'DeBuffs', 'Meta-Physicist_Damage_DeBuffs_-_Line_A', 658, '', 0, 0, 1, 3, 0, 'Meta-Physicist', + 'Inferno Sanctuary'), + (227118, 'Nano Crystal (Degredation of Resolve)', 42451, 227117, 'Degredation of Resolve', 39168, 0, 0, 0, 200, + 'Crystal', 'DeBuffs', 'Meta-Physicist_Damage_DeBuffs_-_Line_B', 659, '', 0, 0, 1, 3, 0, 'Meta-Physicist', + 'Inferno Sanctuary'), + (227122, 'Nano Crystal (Perversion of Will)', 42451, 227120, 'Perversion of Will', 39168, 0, 0, 0, 203, + 'Crystal', 'DeBuffs', 'Meta-Physicist_Damage_DeBuffs_-_Line_A', 658, '', 0, 0, 1, 4, 0, 'Meta-Physicist', + 'Inferno Sanctuary'), + (227124, 'Nano Crystal (Perversion of Resolve)', 42451, 227123, 'Perversion of Resolve', 39168, 0, 0, 0, 203, + 'Crystal', 'DeBuffs', 'Meta-Physicist_Damage_DeBuffs_-_Line_B', 659, '', 0, 0, 1, 4, 0, 'Meta-Physicist', + 'Inferno Sanctuary'), + (227131, 'Nano Crystal (Debasement of Will)', 42451, 227128, 'Debasement of Will', 39168, 0, 0, 0, 211, + 'Crystal', 'DeBuffs', 'Meta-Physicist_Damage_DeBuffs_-_Line_A', 658, '', 0, 0, 1, 4, 0, 'Meta-Physicist', + 'Pandemonium Garden'), + (227133, 'Nano Crystal (Debasement of Resolve)', 42451, 227132, 'Debasement of Resolve', 39168, 0, 0, 0, 211, + 'Crystal', 'DeBuffs', 'Meta-Physicist_Damage_DeBuffs_-_Line_B', 659, '', 0, 0, 1, 4, 0, 'Meta-Physicist', + 'Pandemonium Garden'), + (227136, 'Nano Crystal (Taint of Will)', 42451, 227134, 'Taint of Will', 39168, 0, 0, 0, 214, 'Crystal', + 'DeBuffs', 'Meta-Physicist_Damage_DeBuffs_-_Line_A', 658, '', 0, 0, 1, 4, 0, 'Meta-Physicist', + 'Pandemonium Garden'), + (227139, 'Nano Crystal (Taint of Resolve)', 42451, 227138, 'Taint of Resolve', 39168, 0, 0, 0, 214, 'Crystal', + 'DeBuffs', 'Meta-Physicist_Damage_DeBuffs_-_Line_B', 659, '', 0, 0, 1, 4, 0, 'Meta-Physicist', + 'Pandemonium Garden'), + (227142, 'Nano Crystal (Defilement of Will)', 42451, 227140, 'Defilement of Will', 39168, 0, 0, 0, 218, + 'Crystal', 'DeBuffs', 'Meta-Physicist_Damage_DeBuffs_-_Line_A', 658, '', 0, 0, 1, 4, 0, 'Meta-Physicist', + 'Pandemonium Garden'), + (227144, 'Nano Crystal (Defilement of Resolve)', 42451, 227143, 'Defilement of Resolve', 39168, 0, 0, 0, 218, + 'Crystal', 'DeBuffs', 'Meta-Physicist_Damage_DeBuffs_-_Line_B', 659, '', 0, 0, 1, 4, 0, 'Meta-Physicist', + 'Pandemonium Garden'), + (227146, 'Nano Crystal (Desecration of Will)', 42451, 227145, 'Desecration of Will', 39168, 0, 0, 0, 220, + 'Crystal', 'DeBuffs', 'Meta-Physicist_Damage_DeBuffs_-_Line_A', 658, '', 0, 0, 1, 4, 0, 'Meta-Physicist', + 'Inferno Sanctuary'), + (227148, 'Nano Crystal (Desecration of Resolve)', 42451, 227147, 'Desecration of Resolve', 39168, 0, 0, 0, 220, + 'Crystal', 'DeBuffs', 'Meta-Physicist_Damage_DeBuffs_-_Line_B', 659, '', 0, 0, 1, 4, 0, 'Meta-Physicist', + 'Pandemonium Garden'), + (227150, 'Nano Crystal (Distortion of Will)', 42451, 227149, 'Distortion of Will', 39168, 0, 0, 0, 150, + 'Crystal', 'DeBuffs', 'Meta-Physicist_Damage_DeBuffs_-_Line_A', 658, '', 0, 0, 1, 2, 0, 'Meta-Physicist', + 'Penumbra Garden'), + (227391, 'Nano Crystal (Slip of Accident)', 42451, 227390, 'Slip of Accident', 16234, 0, 0, 0, 125, 'Crystal', + 'Buffs', 'Fixer_Dodge_Buffs_Line', 673, '', 0, 0, 1, 2, 0, 'Fixer', 'Adonis Sanctuary'), + (227393, 'Nano Crystal (Slip of Idea)', 42451, 227392, 'Slip of Idea', 16234, 0, 0, 0, 175, 'Crystal', 'Buffs', + 'Fixer_Dodge_Buffs_Line', 673, '', 0, 0, 1, 3, 0, 'Fixer', 'Penumbra Sanctuary'), + (227395, 'Nano Crystal (Slip of Intent)', 42451, 227394, 'Slip of Intent', 16234, 0, 0, 0, 201, 'Crystal', + 'Buffs', 'Fixer_Dodge_Buffs_Line', 673, '', 0, 0, 1, 4, 0, 'Fixer', 'Inferno Sanctuary'), + (227397, 'Nano Crystal (Slip of Will)', 42451, 227396, 'Slip of Will', 16234, 0, 0, 0, 209, 'Crystal', 'Buffs', + 'Fixer_Dodge_Buffs_Line', 673, '', 0, 0, 1, 4, 0, 'Fixer', 'Inferno Sanctuary'), + (227399, 'Nano Crystal (Slip of Mind)', 42451, 227398, 'Slip of Mind', 16234, 0, 0, 0, 216, 'Crystal', 'Buffs', + 'Fixer_Dodge_Buffs_Line', 673, '', 0, 0, 1, 4, 0, 'Fixer', 'Pandemonium Garden'), + (227473, 'Nano Crystal (Overview of Elysium)', 296643, 227508, 'Overview of Elysium', 296635, 0, 0, 0, 30, + 'Crystal', 'Buffs', 'Shadowlands_Maps', 1033, '', 0, 0, 1, 0, 0, 'General', 'RK Store'), + (227474, 'Nano Crystal (A Clear Sense of Scheol)', 296648, 227509, 'A Clear Sense of Scheol', 296640, 0, 0, 0, + 60, 'Crystal', 'Buffs', 'Shadowlands_Maps', 1033, '', 0, 0, 1, 0, 0, 'General', 'SL Loot'), + (227475, 'Nano Crystal (A Clear View of Adonis)', 296642, 227510, 'A Clear View of Adonis', 296634, 0, 0, 0, 100, + 'Crystal', 'Buffs', 'Shadowlands_Maps', 1033, '', 0, 0, 1, 0, 0, 'General', 'RK Store'), + (227513, 'Nano Crystal (Knowledge of Inferno)', 296644, 227512, 'Knowledge of Inferno', 296636, 0, 0, 0, 150, + 'Crystal', 'Buffs', 'Shadowlands_Maps', 1033, '', 0, 0, 1, 0, 0, 'General', 'RK Store'), + (227515, 'Nano Crystal (Knowledge of The End)', 296646, 227514, 'Knowledge of The End', 296638, 0, 0, 0, 200, + 'Crystal', 'Buffs', 'Shadowlands_Maps', 1033, '', 0, 0, 1, 0, 0, 'General', 'RK Store'), + (227516, 'Nano Crystal (A Clear View of Penumbra)', 296647, 227511, 'A Clear View of Penumbra', 296639, 0, 0, 0, + 120, 'Crystal', 'Buffs', 'Shadowlands_Maps', 1033, '', 0, 0, 1, 0, 0, 'General', 'RK Store'), + (227654, 'Nano Crystal (Electrical Engineering Knowledge)', 12259, 227652, 'Electrical Engineering Knowledge', + 16231, 0, 0, 0, 76, 'Crystal', 'Buffs', 'Electrical_Engineering_Buffs', 172, '', 0, 0, 1, 1, 0, 'Engineer', + 'Scheol Garden'), + (227656, 'Nano Crystal (Field Quantum Physics Knowledge)', 12259, 227655, 'Field Quantum Physics Knowledge', + 16244, 0, 0, 0, 79, 'Crystal', 'Buffs', 'Field_Quantum_Physics_Buffs', 173, '', 0, 0, 1, 1, 0, 'Engineer', + 'Scheol Garden'), + (227658, 'Nano Crystal (Mechanical Engineering Knowledge)', 12259, 227657, 'Mechanical Engineering Knowledge', + 16293, 0, 0, 0, 82, 'Crystal', 'Buffs', 'Mechanical_Engineering_Buffs', 174, '', 0, 0, 1, 1, 0, 'Engineer', + 'Scheol Sanctuary'), + (227660, 'Nano Crystal (Pharmaceuticals Knowledge)', 12259, 227659, 'Pharmaceuticals Knowledge', 16316, 0, 0, 0, + 85, 'Crystal', 'Buffs', 'Pharmaceuticals_Buffs', 175, '', 0, 0, 1, 1, 0, 'Engineer', 'Scheol Sanctuary'), + (227662, 'Nano Crystal (Weapon Smithing Knowledge)', 12259, 227661, 'Weapon Smithing Knowledge', 16349, 0, 0, 0, + 88, 'Crystal', 'Buffs', 'Weapon_Smithing_Buffs', 176, '', 0, 0, 1, 1, 0, 'Engineer', 'Scheol Sanctuary'), + (227664, 'Nano Crystal (Eletrical Engineering Mastery)', 42451, 227663, 'Electrical Engineering Mastery', 16231, + 0, 0, 0, 129, 'Crystal', 'Buffs', 'Electrical_Engineering_Buffs', 172, '', 0, 0, 1, 2, 0, 'Engineer', + 'Adonis Sanctuary'), + (227666, 'Nano Crystal (Field Quantum Physics Mastery)', 42451, 227665, 'Field Quantum Physics Mastery', 16244, + 0, 0, 0, 131, 'Crystal', 'Buffs', 'Field_Quantum_Physics_Buffs', 173, '', 0, 0, 1, 2, 0, 'Engineer', + 'Adonis Sanctuary'), + (227668, 'Nano Crystal (Mechanical Engineering Mastery)', 42451, 227667, 'Mechanical Engineering Mastery', 16293, + 0, 0, 0, 135, 'Crystal', 'Buffs', 'Mechanical_Engineering_Buffs', 174, '', 0, 0, 1, 1, 0, 'Engineer', + 'Adonis Sanctuary'), + (227670, 'Nano Crystal (Pharmaceuticals Mastery)', 42451, 227669, 'Pharmaceuticals Mastery', 16316, 0, 0, 0, 137, + 'Crystal', 'Buffs', 'Pharmaceuticals_Buffs', 175, '', 0, 0, 1, 1, 0, 'Engineer', 'Adonis Sanctuary'), + (227673, 'Nano Crystal (Weapon Smithing Mastery)', 42451, 227671, 'Weapon Smithing Mastery', 16349, 0, 0, 0, 140, + 'Crystal', 'Buffs', 'Weapon_Smithing_Buffs', 176, '', 0, 0, 1, 1, 0, 'Engineer', 'Penumbra Garden'), + (227675, 'Nano Crystal (Assurance Advocacy)', 42452, 227674, 'Assurance Advocacy', 100996, 0, 0, 0, 185, + 'Crystal', 'Buffs', 'Armor_Buffs', 3, '', 0, 0, 1, 3, 0, 'Engineer', 'Inferno Garden'), + (227677, 'Nano Crystal (Assurance Attention)', 42452, 227676, 'Assurance Attention', 100996, 0, 0, 0, 201, + 'Crystal', 'Buffs', 'Armor_Buffs', 3, '', 0, 0, 1, 4, 0, 'Engineer', 'Inferno Sanctuary'), + (227679, 'Nano Crystal (Assurance Relief)', 42452, 227678, 'Assurance Relief', 100996, 0, 0, 0, 210, 'Crystal', + 'Buffs', 'Armor_Buffs', 3, '', 0, 0, 1, 4, 0, 'Engineer', 'Inferno Sanctuary'), + (227681, 'Nano Crystal (Gift of Assurance)', 42452, 227680, 'Gift of Assurance', 100996, 0, 0, 0, 220, 'Crystal', + 'Buffs', 'Armor_Buffs', 3, '', 0, 0, 1, 4, 0, 'Engineer', 'Pandemonium Garden'), + (227769, 'Nano Crystal (Bail Out)', 301574, 227768, 'Bail Out', 301572, 0, 0, 0, 60, 'Crystal', + 'Anti_Crowd_Control', 'Agent_Escape_Nanos', 680, '', 0, 0, 1, 1, 0, 'Agent', 'Scheol Garden'), + (227771, 'Nano Crystal (Burst Out)', 301574, 227770, 'Burst Out', 301572, 0, 0, 0, 185, 'Crystal', + 'Anti_Crowd_Control', 'Agent_Escape_Nanos', 680, '', 0, 0, 1, 3, 0, 'Agent', 'Inferno Garden'), + (227773, 'Nano Crystal (Make Off)', 301574, 227772, 'Make Off', 301572, 0, 0, 0, 205, 'Crystal', + 'Anti_Crowd_Control', 'Agent_Escape_Nanos', 680, '', 0, 0, 1, 4, 0, 'Agent', 'Inferno Sanctuary'), + (227775, 'Nano Crystal (Slip Away)', 301574, 227774, 'Slip Away', 301572, 0, 0, 0, 210, 'Crystal', + 'Anti_Crowd_Control', 'Agent_Escape_Nanos', 680, '', 0, 0, 1, 4, 0, 'Agent', 'Inferno Sanctuary'), + (227777, 'Nano Crystal (Disappear)', 301574, 227776, 'Disappear', 301572, 0, 0, 0, 218, 'Crystal', + 'Anti_Crowd_Control', 'Agent_Escape_Nanos', 680, '', 0, 0, 1, 4, 0, 'Agent', 'Pandemonium Garden'), + (227779, 'Nano Crystal (Break Out)', 301574, 227778, 'Break Out', 301572, 0, 0, 0, 135, 'Crystal', + 'Anti_Crowd_Control', 'Agent_Escape_Nanos', 680, '', 0, 0, 1, 2, 0, 'Agent', 'Adonis Sanctuary'), + (229091, 'Nano Crystal (Minor Insult)', 12226, 229090, 'Minor Insult', 16230, 0, 0, 0, 15, 'Crystal', + 'Crowd_Control', 'Taunt_(temporary)', 0, '', 0, 0, 1, 1, 0, 'Soldier', 'Nascense Garden'), + (229093, 'Nano Crystal (Lesser Insult)', 12226, 229092, 'Lesser Insult', 16230, 0, 0, 0, 45, 'Crystal', + 'Crowd_Control', 'Taunt_(temporary)', 0, '', 0, 0, 1, 1, 0, 'Soldier', 'Elysium Sanctuary'), + (229095, 'Nano Crystal (Casual Insult)', 12259, 229094, 'Casual Insult', 16230, 0, 0, 0, 80, 'Crystal', + 'Crowd_Control', 'Taunt_(temporary)', 0, '', 0, 0, 1, 1, 0, 'Soldier', 'Scheol Sanctuary'), + (229097, 'Nano Crystal (Annoying Insult)', 42451, 229096, 'Annoying Insult', 16230, 0, 0, 0, 130, 'Crystal', + 'Crowd_Control', 'Taunt_(temporary)', 0, '', 0, 0, 1, 2, 0, 'Soldier', 'Adonis Sanctuary'), + (229099, 'Nano Crystal (Aggressive Insult)', 42451, 229098, 'Aggressive Insult', 16230, 0, 0, 0, 170, 'Crystal', + 'Crowd_Control', 'Taunt_(temporary)', 0, '', 0, 0, 1, 3, 0, 'Soldier', 'Penumbra Sanctuary'), + (229101, 'Nano Crystal (Disruptive Insult)', 42451, 229100, 'Disruptive Insult', 16230, 0, 0, 0, 201, 'Crystal', + 'Crowd_Control', 'Taunt_(temporary)', 0, '', 0, 0, 1, 4, 0, 'Soldier', 'Inferno Sanctuary'), + (229103, 'Nano Crystal (Intrusive Insult)', 42451, 229102, 'Intrusive Insult', 16230, 0, 0, 0, 209, 'Crystal', + 'Crowd_Control', 'Taunt_(temporary)', 0, '', 0, 0, 1, 4, 0, 'Soldier', 'Inferno Sanctuary'), + (229105, 'Nano Crystal (Offensive Insult)', 42451, 229104, 'Offensive Insult', 16230, 0, 0, 0, 219, 'Crystal', + 'Crowd_Control', 'Taunt_(temporary)', 0, '', 0, 0, 1, 4, 0, 'Soldier', 'Pandemonium Garden'), + (229668, 'Nano Crystal (Grove Curator)', 42450, 229666, 'Grove Curator', 236673, 0, 0, 0, 50, 'Crystal', + 'Morphs', 'Totem', 0, '', 0, 1, 1, 1, 0, 'Adventurer', 'Nascense Garden'), + (229885, 'Nano Crystal (Grove Custodian)', 42450, 229884, 'Grove Custodian', 236673, 0, 0, 0, 175, 'Crystal', + 'Morphs', 'Totem', 0, '', 0, 1, 1, 0, 0, 'Adventurer', 'Elysium Sanctuary'), + (229888, 'Nano Crystal (Grove Guardian)', 42450, 229887, 'Grove Guardian', 236674, 0, 0, 0, 211, 'Crystal', + 'Morphs', 'Totem', 0, '', 0, 0, 1, 4, 0, 'Adventurer', 'Pandemonium Garden'), + (229890, 'Nano Crystal (Grove Warden)', 42450, 229889, 'Grove Warden', 236675, 0, 0, 0, 216, 'Crystal', 'Morphs', + 'Totem', 0, '', 0, 0, 1, 4, 0, 'Adventurer', 'Pandemonium Garden'), + (229925, 'Nano Crystal (Boon of Ergo - Aban-Shere)', 12225, 229922, 'Boon of Ergo - Aban-Shere', 16207, 0, 0, 0, + 25, 'Crystal', 'Creation', 'Boon_Crystals', 0, '', 0, 0, 1, 0, 0, 'Meta-Physicist', + 'Elysium Garden (Not always) / SL Mob'), + (229927, 'Nano Crystal (Boon of Ergo - Ocra-Bhotaar)', 12225, 229926, 'Boon of Ergo - Ocra-Bhotaar', 16207, 0, 0, + 0, 50, 'Crystal', 'Creation', 'Boon_Crystals', 0, '', 0, 0, 1, 0, 0, 'Meta-Physicist', + 'Elysium Garden (Not always) / SL Mob'), + (229929, 'Nano Crystal (Boon of Ergo - Ocra-Thar)', 12258, 229928, 'Boon of Ergo - Ocra-Thar', 16207, 0, 0, 0, + 75, 'Crystal', 'Creation', 'Boon_Crystals', 0, '', 0, 0, 1, 0, 0, 'Meta-Physicist', + 'Elysium Garden (Not always) / SL Mob'), + (229931, 'Nano Crystal (Boon of Ergo - Ocra-Roch)', 12258, 229930, 'Boon of Ergo - Ocra-Roch', 16207, 0, 0, 0, + 100, 'Crystal', 'Creation', 'Boon_Crystals', 0, '', 0, 0, 1, 0, 0, 'Meta-Physicist', + 'Elysium Garden (Not always) / SL Mob'), + (229933, 'Nano Crystal (Boon of Ergo - Ocra-Xum)', 42450, 229932, 'Boon of Ergo - Ocra-Xum', 16207, 0, 0, 0, 115, + 'Crystal', 'Creation', 'Boon_Crystals', 0, '', 0, 0, 1, 0, 0, 'Meta-Physicist', + 'Elysium Garden (Not always) / SL Mob'), + (229935, 'Nano Crystal (Boon of Ergo - Ocra-Shere)', 42450, 229934, 'Boon of Ergo - Ocra-Shere', 16207, 0, 0, 0, + 130, 'Crystal', 'Creation', 'Boon_Crystals', 0, '', 0, 0, 1, 0, 0, 'Meta-Physicist', + 'Elysium Garden (Not always) / SL Mob'), + (229937, 'Nano Crystal (Boon of Ergo - Enel-Bhotaar)', 42450, 229936, 'Boon of Ergo - Enel-Bhotaar', 16207, 0, 0, + 0, 140, 'Crystal', 'Creation', 'Boon_Crystals', 0, '', 0, 0, 1, 0, 0, 'Meta-Physicist', + 'Elysium Garden (Not always) / SL Mob'), + (229939, 'Nano Crystal (Boon of Ergo - Enel-Thar)', 42450, 229938, 'Boon of Ergo - Enel-Thar', 16207, 0, 0, 0, + 160, 'Crystal', 'Creation', 'Boon_Crystals', 0, '', 0, 0, 1, 0, 0, 'Meta-Physicist', + 'Elysium Garden (Not always) / SL Mob'), + (229941, 'Nano Crystal (Boon of Ergo - Enel-Roch)', 42450, 229940, 'Boon of Ergo - Enel-Roch', 16207, 0, 0, 0, + 180, 'Crystal', 'Creation', 'Boon_Crystals', 0, '', 0, 0, 1, 0, 0, 'Meta-Physicist', + 'Elysium Garden (Not always) / SL Mob'), + (229943, 'Nano Crystal (Boon of Ergo - Enel-Xum)', 42450, 229942, 'Boon of Ergo - Enel-Xum', 16207, 0, 0, 0, 200, + 'Crystal', 'Creation', 'Boon_Crystals', 0, '', 0, 0, 1, 0, 0, 'Meta-Physicist', + 'Elysium Garden (Not always) / SL Mob'), + (229962, 'Nano Crystal (Team Empowered Allure of Servitude)', 12226, 229961, + 'Team Empowered Allure of Servitude', 39137, 0, 0, 0, 142, 'Crystal', 'Crowd_Control', 'Charm_Other', 202, + 'Team-Empowered', 0, 0, 1, 2, 0, 'Bureaucrat', 'RK Store'), + (229965, 'Nano Crystal (Team Empowered Captivated Thoughts)', 12259, 229964, + 'Team Empowered Captivated Thoughts', 39137, 0, 0, 0, 100, 'Crystal', 'Crowd_Control', 'Charm_Other', 202, + 'Team-Empowered', 0, 0, 1, 2, 0, 'Bureaucrat', 'RK Store'), + (230373, 'Nano Crystal (Gallant Slave: The Enraged Slave)', 12228, 230372, 'Gallant Slave: The Enraged Slave', + 16299, 0, 0, 0, 30, 'Crystal', 'Pet_Buffs', 'Pet_Short_Term_Damage_Buffs', 225, 'Damage_Charm', 0, 0, 1, 0, 0, + 'Bureaucrat', 'RK Store'), + (230375, 'Nano Crystal (Gallant Slave: The Infuriated Thrall)', 12228, 230374, + 'Gallant Slave: The Infuriated Thrall', 16299, 0, 0, 0, 50, 'Crystal', 'Pet_Buffs', + 'Pet_Short_Term_Damage_Buffs', 225, 'Damage_Charm', 0, 0, 1, 0, 0, 'Bureaucrat', 'Elysium Garden / RK Dyna'), + (230377, 'Nano Crystal (Gallant Slave: The Aggravated Serf)', 12256, 230376, + 'Gallant Slave: The Aggravated Serf', 16299, 0, 0, 0, 80, 'Crystal', 'Pet_Buffs', 'Pet_Short_Term_Damage_Buffs', + 225, 'Damage_Charm', 0, 0, 1, 0, 0, 'Bureaucrat', 'Elysium Sanctuary / RK Dyna'), + (230379, 'Nano Crystal (Gallant Slave: The Indignant Peon)', 12256, 230378, 'Gallant Slave: The Indignant Peon', + 16299, 0, 0, 0, 100, 'Crystal', 'Pet_Buffs', 'Pet_Short_Term_Damage_Buffs', 225, 'Damage_Charm', 0, 0, 1, 0, 0, + 'Bureaucrat', 'Scheol Sanctuary'), + (230381, 'Nano Crystal (Gallant Slave: The Angry Drudge)', 42448, 230380, 'Gallant Slave: The Angry Drudge', + 16299, 0, 0, 0, 110, 'Crystal', 'Pet_Buffs', 'Pet_Short_Term_Damage_Buffs', 225, 'Damage_Charm', 0, 0, 1, 0, 0, + 'Bureaucrat', 'Adonis Garden / RK Dyna'), + (230383, 'Nano Crystal (Gallant Slave: The Bitter Vassal)', 42448, 230382, 'Gallant Slave: The Bitter Vassal', + 16299, 0, 0, 0, 170, 'Crystal', 'Pet_Buffs', 'Pet_Short_Term_Damage_Buffs', 225, 'Damage_Charm', 0, 0, 1, 0, 0, + 'Bureaucrat', 'Adonis Sanctuary / RK Dyna'), + (230385, 'Nano Crystal (Gallant Slave: The Irate Chattel)', 42448, 230384, 'Gallant Slave: The Irate Chattel', + 16299, 0, 0, 0, 135, 'Crystal', 'Pet_Buffs', 'Pet_Short_Term_Damage_Buffs', 225, 'Damage_Charm', 0, 0, 1, 0, 0, + 'Bureaucrat', 'Adonis Sanctuary'), + (230387, 'Nano Crystal (Gallant Slave: The Incensed Subordinate)', 42448, 230386, + 'Gallant Slave: The Incensed Subordinate', 16299, 0, 0, 0, 190, 'Crystal', 'Pet_Buffs', + 'Pet_Short_Term_Damage_Buffs', 225, 'Damage_Charm', 0, 0, 1, 0, 0, 'Bureaucrat', 'Penumbra Sanctuary'), + (230389, 'Nano Crystal (Gallant Slave: The Vengeful Toiler)', 42448, 230388, + 'Gallant Slave: The Vengeful Toiler', 16299, 0, 0, 0, 205, 'Crystal', 'Pet_Buffs', + 'Pet_Short_Term_Damage_Buffs', 225, 'Damage_Charm', 0, 0, 1, 0, 0, 'Bureaucrat', 'Inferno Sanctuary'), + (231014, 'Nano Crystal (Team Empowered Bend Will)', 12226, 230391, 'Team Empowered Bend Will', 39137, 0, 0, 0, + 24, 'Crystal', 'Crowd_Control', 'Charm_Other', 202, 'Team-Empowered', 0, 0, 1, 1, 0, 'Bureaucrat', + 'Nascense Garden'), + (231015, 'Nano Crystal (Team Empowered Dominate Psyche)', 12226, 230392, 'Team Empowered Dominate Psyche', 39137, + 0, 0, 0, 31, 'Crystal', 'Crowd_Control', 'Charm_Other', 202, 'Team-Empowered', 0, 0, 1, 1, 0, 'Bureaucrat', + 'Elysium Garden'), + (231016, 'Nano Crystal (Team Empowered Solicit Support)', 12226, 230396, 'Team Empowered Solicit Support', 39137, + 0, 0, 0, 39, 'Crystal', 'Crowd_Control', 'Charm_Other', 202, 'Team-Empowered', 0, 0, 1, 1, 0, 'Bureaucrat', + 'Elysium Garden'), + (231017, 'Nano Crystal (Team Empowered Insidious Beguilement)', 12259, 230394, + 'Team Empowered Insidious Beguilement', 39137, 0, 0, 0, 81, 'Crystal', 'Crowd_Control', 'Charm_Other', 202, + 'Team-Empowered', 0, 0, 1, 2, 0, 'Bureaucrat', 'Scheol Sanctuary'), + (231018, 'Nano Crystal (Team Empowered Inveigle Support)', 12259, 230395, 'Team Empowered Inveigle Support', + 39137, 0, 0, 0, 93, 'Crystal', 'Crowd_Control', 'Charm_Other', 202, 'Team-Empowered', 0, 0, 1, 2, 0, + 'Bureaucrat', 'Scheol Sanctuary'), + (231019, 'Nano Crystal (Team Empowered Impose Will)', 12226, 230393, 'Team Empowered Impose Will', 39137, 0, 0, + 0, 50, 'Crystal', 'Crowd_Control', 'Charm_Other', 202, 'Team-Empowered', 0, 0, 1, 1, 0, 'Bureaucrat', + 'Elysium Sanctuary'), + (231020, 'Nano Crystal (Team Empowered Temporary Glamor)', 12226, 230397, 'Team Empowered Temporary Glamor', + 39137, 0, 0, 0, 17, 'Crystal', 'Crowd_Control', 'Charm_Other', 202, 'Team-Empowered', 0, 0, 1, 1, 0, + 'Bureaucrat', 'Nascense Garden'), + (231021, 'Nano Crystal (Team Empowered Total Mental Domination)', 42451, 230398, + 'Team Empowered Total Mental Domination', 39137, 0, 0, 0, 150, 'Crystal', 'Crowd_Control', 'Charm_Other', 202, + 'Team-Empowered', 0, 0, 1, 3, 0, 'Bureaucrat', 'Penumbra Garden'), + (231022, 'Nano Crystal (The Voice of Truth)', 42451, 231013, 'The Voice of Truth', 39137, 0, 0, 0, 180, + 'Crystal', 'Crowd_Control', 'Charm_Other', 202, 'Long', 0, 0, 1, 3, 0, 'Bureaucrat', 'Inferno Garden'), + (231024, 'Nano Crystal (Team Empowered Voice of Truth)', 42451, 231011, 'Team Empowered Voice of Truth', 39137, + 0, 0, 0, 180, 'Crystal', 'Crowd_Control', 'Charm_Other', 202, 'Team-Empowered', 0, 0, 1, 3, 0, 'Bureaucrat', + 'Inferno Garden'), + (231025, 'Nano Crystal (The Voice of God)', 42451, 231010, 'The Voice of God', 39137, 0, 0, 0, 200, 'Crystal', + 'Crowd_Control', 'Charm_Other', 202, 'Long', 0, 0, 1, 4, 0, 'Bureaucrat', 'Inferno Sanctuary'), + (231026, 'Nano Crystal (The Voice of One)', 42451, 231008, 'The Voice of One', 39137, 0, 0, 0, 200, 'Crystal', + 'Crowd_Control', 'Charm_Other', 202, 'Long', 0, 0, 1, 4, 0, 'Bureaucrat', 'Inferno Sanctuary'), + (231027, 'Nano Crystal (Peer Pressure)', 42451, 231009, 'Peer Pressure', 39137, 0, 0, 0, 190, 'Crystal', + 'Crowd_Control', 'Charm_Other', 202, 'Long', 0, 0, 1, 4, 0, 'Bureaucrat', 'Inferno Garden'), + (233013, 'Nano Crystal (Empowered Minor Deflection Shield)', 12227, 233012, 'Empowered Minor Deflection Shield', + 38860, 0, 0, 0, 18, 'Crystal', 'Buffs', 'Shadowland_Reflect_Base', 694, '', 0, 0, 1, 0, 0, 'Soldier', + 'RK Store'), + (233015, 'Nano Crystal (Empowered Lesser Deflection Shield)', 12227, 233014, + 'Empowered Lesser Deflection Shield', 38860, 0, 0, 0, 32, 'Crystal', 'Buffs', 'Shadowland_Reflect_Base', 694, + '', 0, 0, 1, 0, 0, 'Soldier', 'RK Store'), + (233017, 'Nano Crystal (Empowered Deflection Shield)', 12227, 233016, 'Empowered Deflection Shield', 38860, 0, 0, + 0, 45, 'Crystal', 'Buffs', 'Shadowland_Reflect_Base', 694, '', 0, 0, 1, 0, 0, 'Soldier', 'RK Store'), + (233019, 'Nano Crystal (Empowered Major Reflective Field)', 42452, 233018, 'Empowered Major Reflective Field', + 39141, 0, 0, 0, 178, 'Crystal', 'Buffs', 'Shadowland_Reflect_Base', 694, '', 0, 0, 1, 0, 0, 'Soldier', + 'Penumbra Sanctuary'), + (233021, 'Nano Crystal (Empowered Reactive Reflective Field)', 42452, 233020, + 'Empowered Reactive Reflective Field', 39281, 0, 0, 0, 192, 'Crystal', 'Buffs', 'Shadowland_Reflect_Base', 694, + '', 0, 0, 1, 0, 0, 'Soldier', 'Inferno Garden'), + (233024, 'Nano Crystal (Harmonizing Resonance Field)', 42452, 233022, 'Harmonizing Resonance Field', 39281, 0, 0, + 0, 201, 'Crystal', 'Buffs', 'Shadowland_Reflect_Base', 694, '', 0, 0, 1, 0, 0, 'Soldier', 'Inferno Sanctuary'), + (233027, 'Nano Crystal (Reactive Resonance Field)', 42452, 233025, 'Reactive Resonance Field', 101017, 0, 0, 0, + 207, 'Crystal', 'Buffs', 'Shadowland_Reflect_Base', 694, '', 0, 0, 1, 0, 0, 'Soldier', 'Inferno Sanctuary'), + (233031, 'Nano Crystal (Adaptive Resonance Field)', 42452, 233029, 'Adaptive Resonance Field', 101018, 0, 0, 0, + 212, 'Crystal', 'Buffs', 'Shadowland_Reflect_Base', 694, '', 0, 0, 1, 0, 0, 'Soldier', 'Pandemonium Garden'), + (233034, 'Nano Crystal (Pre-Nullity Sphere)', 42452, 233033, 'Pre-Nullity Sphere', 101018, 0, 0, 0, 220, + 'Crystal', 'Buffs', 'Shadowland_Reflect_Base', 694, '', 0, 0, 1, 0, 0, 'Soldier', 'Pandemonium Garden'), + (233036, 'Nano Crystal (Empowered Partial Deflection Shield)', 12227, 233035, + 'Empowered Partial Deflection Shield', 38860, 0, 0, 0, 5, 'Crystal', 'Buffs', 'Shadowland_Reflect_Base', 694, + '', 0, 0, 1, 0, 0, 'Soldier', 'RK Store'), + (233038, 'Nano Crystal (Empowered Greater Deflection Shield)', 12260, 233037, + 'Empowered Greater Deflection Shield', 38860, 0, 0, 0, 63, 'Crystal', 'Buffs', 'Shadowland_Reflect_Base', 694, + '', 0, 0, 1, 0, 0, 'Soldier', 'RK Store'), + (233040, 'Nano Crystal (Empowered Major Deflection Shield)', 12260, 233039, 'Empowered Major Deflection Shield', + 39001, 0, 0, 0, 77, 'Crystal', 'Buffs', 'Shadowland_Reflect_Base', 694, '', 0, 0, 1, 0, 0, 'Soldier', + 'RK Store'), + (233042, 'Nano Crystal (Empowered Reactive Deflection Shield)', 12260, 233041, + 'Empowered Reactive Deflection Shield', 39001, 0, 0, 0, 91, 'Crystal', 'Buffs', 'Shadowland_Reflect_Base', 694, + '', 0, 0, 1, 0, 0, 'Soldier', 'RK Store'), + (233044, 'Nano Crystal (Empowered Partial Reflective Field)', 42452, 233043, + 'Empowered Partial Reflective Field', 39001, 0, 0, 0, 106, 'Crystal', 'Buffs', 'Shadowland_Reflect_Base', 694, + '', 0, 0, 1, 0, 0, 'Soldier', 'RK Store'), + (233046, 'Nano Crystal (Empowered Minor Reflective Field)', 42452, 233045, 'Empowered Minor Reflective Field', + 39001, 0, 0, 0, 122, 'Crystal', 'Buffs', 'Shadowland_Reflect_Base', 694, '', 0, 0, 1, 0, 0, 'Soldier', + 'Adonis Sanctuary'), + (233048, 'Nano Crystal (Empowered Lesser Reflective Field)', 42452, 233047, 'Empowered Lesser Reflective Field', + 39141, 0, 0, 0, 133, 'Crystal', 'Buffs', 'Shadowland_Reflect_Base', 694, '', 0, 0, 1, 0, 0, 'Soldier', + 'Adonis Sanctuary'), + (233050, 'Nano Crystal (Empowered Reflective Field)', 42452, 233049, 'Empowered Reflective Field', 39141, 0, 0, + 0, 148, 'Crystal', 'Buffs', 'Shadowland_Reflect_Base', 694, '', 0, 0, 1, 0, 0, 'Soldier', 'Penumbra Garden'), + (233052, 'Nano Crystal (Empowered Greater Reflective Field)', 42452, 233051, + 'Empowered Greater Reflective Field', 39141, 0, 0, 0, 164, 'Crystal', 'Buffs', 'Shadowland_Reflect_Base', 694, + '', 0, 0, 1, 0, 0, 'Soldier', 'Penumbra Sanctuary'), + (233090, 'Nano Crystal (Empowered Minor Harmonic Cocoon)', 12260, 233089, 'Empowered Minor Harmonic Cocoon', + 39001, 0, 0, 0, 62, 'Crystal', 'Buffs', 'Shadowland_Reflect_Base', 694, '', 0, 0, 1, 0, 0, 'Engineer', + 'RK Store'), + (233092, 'Nano Crystal (Empowered Lesser Harmonic Cocoon)', 12260, 233091, 'Empowered Lesser Harmonic Cocoon', + 39141, 0, 0, 0, 89, 'Crystal', 'Buffs', 'Shadowland_Reflect_Base', 694, '', 0, 0, 1, 0, 0, 'Engineer', + 'RK Store'), + (233094, 'Nano Crystal (Empowered Harmonic Cocoon)', 42452, 233093, 'Empowered Harmonic Cocoon', 39281, 0, 0, 0, + 122, 'Crystal', 'Buffs', 'Shadowland_Reflect_Base', 694, '', 0, 0, 1, 0, 0, 'Engineer', 'Adonis Sanctuary'), + (233096, 'Nano Crystal (Empowered Greater Harmonic Cocoon)', 42452, 233095, 'Empowered Greater Harmonic Cocoon', + 101017, 0, 0, 0, 154, 'Crystal', 'Buffs', 'Shadowland_Reflect_Base', 694, '', 0, 0, 1, 0, 0, 'Engineer', + 'Penumbra Garden'), + (233098, 'Nano Crystal (Empowered Reactive Harmonic Cocoon)', 42452, 233097, + 'Empowered Reactive Harmonic Cocoon', 101018, 0, 0, 0, 185, 'Crystal', 'Buffs', 'Shadowland_Reflect_Base', 694, + '', 0, 0, 1, 0, 0, 'Engineer', 'Inferno Garden'), + (233101, 'Nano Crystal (Empowered Partial Harmonic Cocoon)', 12227, 233099, 'Empowered Partial Harmonic Cocoon', + 38860, 0, 0, 0, 28, 'Crystal', 'Buffs', 'Shadowland_Reflect_Base', 694, '', 0, 0, 1, 0, 0, 'Engineer', + 'RK Store'), + (233840, 'Nano Crystal (Shadowland Anchor)', 12258, 233839, 'Shadowland Anchor', 16340, 0, 0, 0, 80, 'Crystal', + 'Combat', 'Shadowland_Bind_and_Recall', 738, '', 0, 0, 1, 0, 0, 'Engineer', 'RK Store'), + (233842, 'Nano Crystal (Shadowland Safeguard)', 42450, 233841, 'Shadowland Safeguard', 16340, 0, 0, 0, 190, + 'Crystal', 'Combat', 'Shadowland_Bind_and_Recall', 738, '', 0, 0, 1, 0, 0, 'Engineer', 'Inferno Garden'), + (233844, 'Nano Crystal (Initiate Shadowland Recall)', 12258, 233843, 'Initiate Shadowland Recall', 16340, 0, 0, + 0, 80, 'Crystal', 'Combat', 'Shadowland_Bind_and_Recall', 738, '', 0, 0, 1, 0, 0, 'Engineer', 'RK Store'), + (233846, 'Nano Crystal (Impel Shadowland Recall)', 42450, 233845, 'Impel Shadowland Recall', 16340, 0, 0, 0, 190, + 'Crystal', 'Combat', 'Shadowland_Bind_and_Recall', 738, '', 0, 0, 1, 0, 0, 'Engineer', 'Inferno Garden'), + (233848, 'Nano Crystal (Shadowland Soul Fetter)', 42450, 233847, 'Shadowland Soul Fetter', 16340, 0, 0, 0, 150, + 'Crystal', 'General', 'Shadowlands_Bind_and_Recall', 738, '', 0, 0, 1, 0, 0, 'Meta-Physicist', + 'Penumbra Garden'), + (233850, 'Nano Crystal (Awaken Shadowland Soul Memory)', 42450, 233849, 'Awaken Shadowland Soul Memory', 16340, + 0, 0, 0, 150, 'Crystal', 'General', 'Shadowlands_Bind_and_Recall', 738, '', 0, 0, 1, 0, 0, 'Meta-Physicist', + 'Penumbra Garden'), + (234037, 'Badly Corroded Crystal (Overview of Elysium)', 220425, 227508, 'Overview of Elysium', 296635, NULL, + NULL, NULL, 30, 'Tainted', 'Buffs', 'Shadowlands_Maps', 1033, '', 0, 0, 1, 0, 0, 'General', 'SL Loot'), + (234038, 'Badly Corroded Crystal (A Clear Sense of Scheol)', 220432, 227509, 'A Clear Sense of Scheol', 296640, + NULL, NULL, NULL, 60, 'Tainted', 'Buffs', 'Shadowlands_Maps', 1033, '', 0, 0, 1, 0, 0, 'General', 'SL Loot'), + (234039, 'Badly Corroded Crystal (A Clear View of Adonis)', 220432, 227510, 'A Clear View of Adonis', 296634, + NULL, NULL, NULL, 100, 'Tainted', 'Buffs', 'Shadowlands_Maps', 1033, '', 0, 0, 1, 0, 0, 'General', 'SL Loot'), + (234040, 'Badly Corroded Crystal (Knowledge of Inferno)', 220412, 227512, 'Knowledge of Inferno', 296636, NULL, + NULL, NULL, 150, 'Tainted', 'Buffs', 'Shadowlands_Maps', 1033, '', 0, 0, 1, 0, 0, 'General', 'SL Loot'), + (234041, 'Badly Corroded Crystal (Knowledge of The End)', 220412, 227514, 'Knowledge of The End', 296638, NULL, + NULL, NULL, 200, 'Tainted', 'Buffs', 'Shadowlands_Maps', 1033, '', 0, 0, 1, 0, 0, 'General', 'SL Loot'), + (234042, 'Badly Corroded Crystal (A Clear View of Penumbra)', 220412, 227511, 'A Clear View of Penumbra', 296639, + NULL, NULL, NULL, 120, 'Tainted', 'Buffs', 'Shadowlands_Maps', 1033, '', 0, 0, 1, 0, 0, 'General', 'SL Loot'), + (234043, 'Badly Corroded Crystal (Team Empowered Allure of Servitude)', 220425, 229961, + 'Team Empowered Allure of Servitude', 39137, NULL, NULL, NULL, 142, 'Tainted', 'Crowd_Control', 'Charm_Other', + 202, 'Team-Empowered', 0, 0, 1, 2, 0, 'Bureaucrat', 'SL Loot'), + (234044, 'Badly Corroded Crystal (Team Empowered Captivated Thoughts)', 220432, 229964, + 'Team Empowered Captivated Thoughts', 39137, NULL, NULL, NULL, 100, 'Tainted', 'Crowd_Control', 'Charm_Other', + 202, 'Team-Empowered', 0, 0, 1, 2, 0, 'Bureaucrat', 'SL Loot'), + (234045, 'Badly Corroded Crystal (Gallant Slave: The Enraged Slave)', 220422, 230372, + 'Gallant Slave: The Enraged Slave', 16299, NULL, NULL, NULL, 30, 'Tainted', 'Pet_Buffs', + 'Pet_Short_Term_Damage_Buffs', 225, 'Damage_Charm', 0, 0, 1, 0, 0, 'Bureaucrat', 'SL Loot'), + (234046, 'Badly Corroded Crystal (Gallant Slave: The Infuriated Thrall)', 220422, 230374, + 'Gallant Slave: The Infuriated Thrall', 16299, NULL, NULL, NULL, 50, 'Tainted', 'Pet_Buffs', + 'Pet_Short_Term_Damage_Buffs', 225, 'Damage_Charm', 0, 0, 1, 0, 0, 'Bureaucrat', 'SL Loot'), + (234076, 'Nano Crystal (Tap Notum Vein: Adonis)', 42450, 234075, 'Tap Notum Vein: Adonis', 39158, 0, 0, 0, 145, + 'Crystal', 'Teleport', 'Shadowlands_Tap_Notum_Vein', 0, '', 0, 0, 1, 0, 0, 'Fixer', 'Penumbra Garden'), + (234078, 'Nano Crystal (Tap Notum Vein: Penumbra)', 42450, 234077, 'Tap Notum Vein: Penumbra', 39158, 0, 0, 0, + 165, 'Crystal', 'Teleport', 'Shadowlands_Tap_Notum_Vein', 0, '', 0, 0, 1, 0, 0, 'Fixer', 'Penumbra Sanctuary'), + (234080, 'Nano Crystal (Tap Notum Vein: Inferno)', 42450, 234079, 'Tap Notum Vein: Inferno', 39158, 0, 0, 0, 200, + 'Crystal', 'Teleport', 'Shadowlands_Tap_Notum_Vein', 0, '', 0, 0, 1, 0, 0, 'Fixer', 'Inferno Sanctuary'), + (234081, 'Nano Crystal (Tap Notum Vein: Nascence)', 12225, 234073, 'Tap Notum Vein: Nascence', 39158, 0, 0, 0, + 25, 'Crystal', 'Teleport', 'Shadowlands_Tap_Notum_Vein', 0, '', 0, 0, 1, 0, 0, 'Fixer', 'RK Store'), + (234083, 'Nano Crystal (Tap Notum Vein: Elysium)', 12258, 234082, 'Tap Notum Vein: Elysium', 39158, 0, 0, 0, 80, + 'Crystal', 'Teleport', 'Shadowlands_Tap_Notum_Vein', 0, '', 0, 0, 1, 0, 0, 'Fixer', 'RK Store'), + (234085, 'Nano Crystal (Tap Notum Vein: Scheol)', 42450, 234084, 'Tap Notum Vein: Scheol', 39158, 0, 0, 0, 120, + 'Crystal', 'Teleport', 'Shadowlands_Tap_Notum_Vein', 0, '', 0, 0, 1, 0, 0, 'Fixer', 'Adonis Sanctuary'), + (234994, 'Nano Crystal (Channel Notum Vein: Elysium)', 12258, 234993, 'Channel Notum Vein: Elysium', 39158, 0, 0, + 0, 85, 'Crystal', 'General', 'Shadowlands_Garden_Warp', 0, '', 0, 0, 1, 0, 0, 'Meta-Physicist', 'RK Store'), + (234996, 'Nano Crystal (Channel Notum Vein: Scheol)', 12258, 234995, 'Channel Notum Vein: Scheol', 39158, 0, 0, + 0, 86, 'Crystal', 'General', 'Shadowlands_Garden_Warp', 0, '', 0, 0, 1, 0, 0, 'Meta-Physicist', 'RK Store'), + (234998, 'Nano Crystal (Channel Notum Vein: Adonis)', 12258, 234997, 'Channel Notum Vein: Adonis', 39158, 0, 0, + 0, 87, 'Crystal', 'General', 'Shadowlands_Garden_Warp', 0, '', 0, 0, 1, 0, 0, 'Meta-Physicist', 'RK Store'), + (235272, 'Nano Crystal (Umbral Wrangler (Patchy))', 12226, 235271, 'Umbral Wrangler (Patchy)', 117984, 0, 0, 0, + 25, 'Crystal', 'Buffs', 'Umbral_Wrangler', 0, '', 0, 0, 1, 0, 0, 'Trader', 'RK Store'), + (235274, 'Nano Crystal (Umbral Wrangler (Minor))', 12259, 235273, 'Umbral Wrangler (Minor)', 117984, 0, 0, 0, 55, + 'Crystal', 'Buffs', 'Umbral_Wrangler', 0, '', 0, 0, 1, 0, 0, 'Trader', 'RK Store'), + (235276, 'Nano Crystal (Umbral Wrangler (Commonplace))', 12259, 235275, 'Umbral Wrangler (Commonplace)', 117985, + 0, 0, 0, 80, 'Crystal', 'Buffs', 'Umbral_Wrangler', 0, '', 0, 0, 1, 0, 0, 'Trader', 'RK Store'), + (235278, 'Nano Crystal (Umbral Wrangler (Lesser))', 42451, 235277, 'Umbral Wrangler (Lesser)', 117985, 0, 0, 0, + 105, 'Crystal', 'Buffs', 'Umbral_Wrangler', 0, '', 0, 0, 1, 0, 0, 'Trader', 'Adonis Garden'), + (235280, 'Nano Crystal (Umbral Wrangler)', 42451, 235279, 'Umbral Wrangler', 117986, 0, 0, 0, 127, 'Crystal', + 'Buffs', 'Umbral_Wrangler', 0, '', 0, 0, 1, 0, 0, 'Trader', 'RK Store'), + (235282, 'Nano Crystal (Umbral Wrangler (Major))', 42451, 235281, 'Umbral Wrangler (Major)', 117987, 0, 0, 0, + 149, 'Crystal', 'Buffs', 'Umbral_Wrangler', 0, '', 0, 0, 1, 0, 0, 'Trader', 'Penumbra Sanctuary'), + (235284, 'Nano Crystal (Umbral Wrangler (Advanced))', 42451, 235283, 'Umbral Wrangler (Advanced)', 117988, 0, 0, + 0, 170, 'Crystal', 'Buffs', 'Umbral_Wrangler', 0, '', 0, 0, 1, 0, 0, 'Trader', 'Penumbra Sanctuary'), + (235286, 'Nano Crystal (Umbral Wrangler (Superior))', 42451, 235285, 'Umbral Wrangler (Superior)', 117989, 0, 0, + 0, 189, 'Crystal', 'Buffs', 'Umbral_Wrangler', 0, '', 0, 0, 1, 0, 0, 'Trader', 'Inferno Garden'), + (235288, 'Nano Crystal (Umbral Wrangler (Greater))', 42451, 235287, 'Umbral Wrangler (Greater)', 117990, 0, 0, 0, + 199, 'Crystal', 'Buffs', 'Umbral_Wrangler', 0, '', 0, 0, 1, 0, 0, 'Trader', 'Inferno Sanctuary'), + (235290, 'Nano Crystal (Umbral Wrangler (Exceptional))', 42451, 235289, 'Umbral Wrangler (Exceptional)', 117991, + 0, 0, 0, 204, 'Crystal', 'Buffs', 'Umbral_Wrangler', 0, '', 0, 0, 1, 0, 0, 'Trader', 'Inferno Sanctuary'), + (235292, 'Nano Crystal (Umbral Wrangler (Premium))', 42451, 235291, 'Umbral Wrangler (Premium)', 117993, 0, 0, 0, + 217, 'Crystal', 'Buffs', 'Umbral_Wrangler', 0, '', 0, 0, 1, 0, 0, 'Trader', 'Pandemonium Garden'), + (235387, 'Nano Crystal (Corporate Guardian)', 42450, 235386, 'Corporate Guardian', 44135, 0, 0, 0, 205, + 'Crystal', 'Pets', 'Robot', 0, '', 0, 0, 1, 4, 0, 'Bureaucrat', 'Inferno Sanctuary'), + (236507, 'Nano Crystal (Malaise of Motivation)', 301085, 236506, 'Malaise of Motivation', 291160, 0, 0, 0, 140, + 'Crystal', 'DeBuffs', 'Initiative_DeBuffs', 186, '', 0, 0, 1, 0, 0, 'Bureaucrat', 'Adonis Sanctuary'), + (236509, 'Nano Crystal (Malaise of Emotion)', 301085, 236508, 'Malaise of Emotion', 291160, 0, 0, 0, 171, + 'Crystal', 'DeBuffs', 'Initiative_DeBuffs', 186, '', 0, 0, 1, 0, 0, 'Bureaucrat', 'Penumbra Garden'), + (236515, 'Nano Crystal (Malaise of Fervor)', 301085, 236514, 'Malaise of Fervor', 291160, 0, 0, 0, 215, + 'Crystal', 'DeBuffs', 'Initiative_DeBuffs', 186, '', 0, 0, 1, 0, 0, 'Bureaucrat', 'Pandemonium Garden'), + (237275, 'Nano Crystal (Isochronal Sloughing Combat Field)', 42452, 237273, 'Isochronal Sloughing Combat Field', + 38889, 0, 0, 0, 212, 'Crystal', 'Buffs', 'Special_Attack_Absorber', 768, '', 0, 0, 1, 4, 0, 'Engineer', + 'Pandemonium Garden'), + (239358, 'Nano Crystal (Shadow Trail)', 42450, 215718, 'Shadow Trail', 118410, 0, 0, 0, 120, 'Crystal', 'Buffs', + 'Major_Evasion_Buffs', 144, 'Shadowlands_Aura', 0, 1, 1, 1, 0, 'Fixer', 'RK Store'), + (239740, 'Nano Crystal (Build Basic Spirit Tech Source Projector)', 12225, 239739, + 'Build Basic Spirit Tech Source Projector', 16307, 0, 0, 0, 5, 'Crystal', 'Pets', 'Service_Tower', 0, '', 0, 0, + 1, 0, 0, 'Adventurer', 'Nascense Garden'), + (239742, 'Nano Crystal (Build Twinked Basic Spirit Tech Source Projector)', 12225, 239741, + 'Build Twinked Basic Spirit Tech Source Projector', 16307, 0, 0, 0, 15, 'Crystal', 'Pets', 'Service_Tower', 0, + '', 0, 0, 1, 0, 0, 'Adventurer', 'Nascense Garden'), + (239744, 'Nano Crystal (Build Yuttos Upgraded Spirit Tech Source Projector)', 12225, 239743, + 'Build Yuttos Upgraded Spirit Tech Source Projector', 16307, 0, 0, 0, 40, 'Crystal', 'Pets', 'Service_Tower', 0, + '', 0, 0, 1, 0, 0, 'Adventurer', 'Elysium Garden'), + (239746, 'Nano Crystal (Build Spirit Tech Source Fountain)', 12258, 239745, 'Build Spirit Tech Source Fountain', + 16307, 0, 0, 0, 65, 'Crystal', 'Pets', 'Service_Tower', 0, '', 0, 0, 1, 0, 0, 'Adventurer', 'Scheol Garden'), + (239748, 'Nano Crystal (Build Upgraded Spirit Tech Source Fountain)', 12258, 239747, + 'Build Upgraded Spirit Tech Source Fountain', 16307, 0, 0, 0, 85, 'Crystal', 'Pets', 'Service_Tower', 0, '', 0, + 0, 1, 0, 0, 'Adventurer', 'Scheol Garden'), + (239750, 'Nano Crystal (Build Boosted Spirit Tech Source Fountain)', 12258, 239749, + 'Build Boosted Spirit Tech Source Fountain', 16307, 0, 0, 0, 100, 'Crystal', 'Pets', 'Service_Tower', 0, '', 0, + 0, 1, 2, 0, 'Adventurer', 'Scheol Sanctuary'), + (239752, 'Nano Crystal (Build Spirit Tech Source Drill)', 42450, 239751, 'Build Spirit Tech Source Drill', 16307, + 0, 0, 0, 125, 'Crystal', 'Pets', 'Service_Tower', 0, '', 0, 0, 1, 2, 0, 'Adventurer', 'Adonis Garden'), + (239754, 'Nano Crystal (Build Spirit Tech Source Pump)', 42450, 239753, 'Build Spirit Tech Source Pump', 16307, + 0, 0, 0, 150, 'Crystal', 'Pets', 'Service_Tower', 0, '', 0, 0, 1, 3, 0, 'Adventurer', 'Adonis Sanctuary'), + (239756, 'Nano Crystal (Build Spirit Tech Source Waterfall Projector)', 42450, 239755, + 'Build Spirit Tech Source Waterfall Projector', 16307, 0, 0, 0, 200, 'Crystal', 'Pets', 'Service_Tower', 0, '', + 0, 0, 1, 4, 0, 'Adventurer', 'Inferno Garden'), + (239758, 'Nano Crystal (Build Spirit Tech Source Geyser)', 42450, 239757, 'Build Spirit Tech Source Geyser', + 44135, 0, 0, 0, 220, 'Crystal', 'Pets', 'Service_Tower', 0, '', 0, 0, 1, 4, 0, 'Adventurer', + 'Pandemonium Garden'), + (248387, 'Nano Crystal (Leet Pet)', 254462, 248386, 'Leet Pet', 289982, 0, 0, 0, 1, 'Crystal', 'Pets', + 'Social_Pets', 926, '', 0, 0, 0, 0, 0, 'General', 'Leets-R-Us (Tower Shop)'), + (252007, 'Nano Crystal (Lifecure)', 42448, 252006, 'Lifecure', 44234, 0, 0, 0, 205, 'Crystal', 'Combat', + 'Single_Target_Healing', 951, '', 0, 1, 1, 4, 0, 'Adventurer', 'Inferno Garden'), + (252009, 'Nano Crystal (Light of Life)', 42448, 252008, 'Light of Life', 44234, 0, 0, 0, 209, 'Crystal', + 'Combat', 'Single_Target_Healing', 951, '', 0, 1, 1, 4, 0, 'Adventurer', 'Inferno Garden'), + (252047, 'Nano Crystal (Lasting Life)', 42448, 252046, 'Lasting Life', 44235, 0, 0, 0, 205, 'Crystal', 'Buffs', + 'Fixer_Long_Heal_Over_Time', 255, '', 0, 0, 1, 4, 0, 'Fixer', 'Inferno Garden'), + (252049, 'Nano Crystal (Life Bond)', 42448, 252048, 'Life Bond', 44235, 0, 0, 0, 208, 'Crystal', 'Buffs', + 'Fixer_Long_Heal_Over_Time', 255, '', 0, 0, 1, 4, 0, 'Fixer', 'Inferno Garden'), + (252051, 'Nano Crystal (Lasting Ultimatum)', 42448, 252050, 'Lasting Ultimatum', 44235, 0, 0, 0, 211, 'Crystal', + 'Buffs', 'Fixer_Long_Heal_Over_Time', 255, '', 0, 0, 1, 4, 0, 'Fixer', 'Inferno Garden'), + (252053, 'Nano Crystal (Flourishing Heal)', 301450, 252052, 'Flourishing Heal', 292055, 0, 0, 0, 204, 'Crystal', + 'Combat', 'Single_Target_Healing', 951, '', 0, 1, 1, 4, 0, 'Martial Artist', 'Inferno Garden'), + (252055, 'Nano Crystal (Soul of Rubi)', 301450, 252054, 'Soul of Rubi', 292055, 0, 0, 0, 209, 'Crystal', + 'Combat', 'Single_Target_Healing', 951, '', 0, 1, 1, 4, 0, 'Martial Artist', 'Inferno Garden'), + (252058, 'Nano Crystal (Cosmic Relaxation)', 42449, 252057, 'Cosmic Relaxation', 46271, 0, 0, 0, 208, 'Crystal', + 'Crowd_Control', 'Mezz', 147, '', 0, 0, 1, 4, 0, 'Trader', 'Inferno Garden'), + (252156, 'Nano Crystal (Supreme Health Haggler)', 42448, 252155, 'Supreme Health Haggler', 44235, 0, 0, 0, 206, + 'Crystal', 'Transfer', 'Health', 0, 'Target', 0, 0, 1, 4, 0, 'Trader', 'Inferno Garden'), + (253169, 'Nano Crystal (ARK Leet Pet)', 42451, 253168, 'ARK Leet Pet', 289983, 0, 0, 0, 390, 'Crystal', 'Pets', + 'Social_Pets', 926, '', 0, 0, 0, 0, 0, 'General', 'Item Shop/Event'), + (253381, 'Nano Crystal (Enfraam''s Perceiver)', 42451, 253380, 'Enfraam''s Perceiver', 38888, 0, 0, 0, 180, + 'Crystal', 'Crowd_Control', 'Mezz', 147, 'Hacked_Blind', 0, 0, 1, 3, 0, 'Nano-Technician', + 'Penumbra Sanctuary'), + (253383, 'Nano Crystal (Optimized Perceiver)', 42451, 253382, 'Optimized Perceiver', 38888, 0, 0, 0, 201, + 'Crystal', 'Crowd_Control', 'Mezz', 147, 'Hacked_Blind', 0, 0, 1, 4, 0, 'Nano-Technician', 'Inferno Garden'), + (253385, 'Nano Crystal (Enfraam''s Perception Deciever)', 42451, 253384, 'Enfraam''s Perception Deciever', 38888, + 0, 0, 0, 211, 'Crystal', 'Crowd_Control', 'Mezz', 147, 'Hacked_Blind', 0, 0, 1, 4, 0, 'Nano-Technician', + 'Pandemonium Garden'), + (254433, 'Nano Cube (Cellular Re-Structure)', 233132, 254432, 'Cellular Re-Structure', 84720, 0, 0, 0, 195, + 'Misc', 'Combat', 'Nano-Technician_DOT_-_Strain_A', 8, '', 0, 0, 0, 0, 0, 'Nano-Technician', + 'Hezak the Immortal'), + (254436, 'Nano Cube (Poisoned Thorns)', 233132, 254435, 'Poisoned Thorns', 84724, 0, 0, 0, 205, 'Misc', 'Combat', + 'Nano-Technician_DOT_-_Strain_A', 8, '', 0, 0, 0, 0, 0, 'Nano-Technician', 'Hezak the Immortal'), + (254438, 'Nano Cube (Frost Blades)', 233132, 254437, 'Frost Blades', 84721, 0, 0, 0, 211, 'Misc', 'Combat', + 'Nano-Technician_DOT_-_Strain_A', 8, '', 0, 0, 0, 0, 0, 'Nano-Technician', 'Lord Ghasap'), + (254440, 'Nano Cube (Magma Covering)', 233132, 254439, 'Magma Covering', 84725, 0, 0, 0, 215, 'Misc', 'Combat', + 'Nano-Technician_DOT_-_Strain_A', 8, '', 0, 0, 0, 0, 0, 'Nano-Technician', 'Lord Ghasap'), + (254442, 'Nano Cube (Self Illumination)', 233132, 254441, 'Self Illumination', 84722, 0, 0, 0, 219, 'Misc', + 'Combat', 'Nano-Technician_DOT_-_Strain_A', 8, '', 0, 0, 0, 0, 0, 'Nano-Technician', 'Biodome'), + (254860, 'Nano Crystal (Summon The Rihwen)', 295588, 254859, 'Summon The Rihwen', 295593, 0, 0, 0, 220, + 'Crystal', 'Pet', 'Attack_Pet_Summon', 0, '', 0, 0, 1, 4, 0, 'Meta-Physicist', 'Biodome'), + (254877, 'Nano Crystal (Pronouncement of Grandeur)', 12226, 254876, 'Pronouncement of Grandeur', 20883, 0, 0, 0, + 10, 'Crystal', 'Pets', 'Leet_Empower', 796, '', 0, 0, 0, 0, 0, 'General', 'Leets-R-Us (Tower Shop)'), + (254879, 'Nano Crystal (Pronouncement of Virtue)', 12226, 254878, 'Pronouncement of Virtue', 38827, 0, 0, 0, 10, + 'Crystal', 'Pets', 'Leet_Empower', 796, '', 0, 0, 0, 0, 0, 'General', 'Leets-R-Us (Tower Shop)'), + (254881, 'Nano Crystal (Pronouncement of Prestige)', 12226, 254880, 'Pronouncement of Prestige', 38968, 0, 0, 0, + 10, 'Crystal', 'Pets', 'Leet_Empower', 796, '', 0, 0, 0, 0, 0, 'General', 'Leets-R-Us (Tower Shop)'), + (254883, 'Nano Crystal (Pronouncement of Decency)', 12226, 254882, 'Pronouncement of Decency', 39108, 0, 0, 0, + 10, 'Crystal', 'Pets', 'Leet_Empower', 796, '', 0, 0, 0, 0, 0, 'General', 'Leets-R-Us (Tower Shop)'), + (254885, 'Nano Crystal (Pronouncement of Character)', 12226, 254884, 'Pronouncement of Character', 39248, 0, 0, + 0, 10, 'Crystal', 'Pets', 'Leet_Empower', 796, '', 0, 0, 0, 0, 0, 'General', 'Leets-R-Us (Tower Shop)'), + (258563, 'Nano Crystal (Carlo Pinnetti)', 297641, 258580, 'Carlo Pinnetti', 297640, 0, 0, 0, 220, 'Crystal', + 'Pets', 'Support_Pets', 1017, '', 0, 0, 1, 4, 0, 'Bureaucrat', 'Biodome'), + (258658, 'Business Card (Decision by Committee)', 258540, 258659, 'Decision by Committee', 16214, 0, 0, 0, 220, + 'Misc', 'Pets', 'Support_Pets', 1017, '', 0, 0, 1, 4, 0, 'Trader', 'Trader Pets Quest'), + (259343, 'Nano Crystal (Distracting Shower)', 42449, 259339, 'Distracting Shower', 39802, 0, 0, 0, 101, + 'Crystal', 'Nukes', 'Nano_Resistance_DeBuffs_-_Line_A', 643, '', 0, 0, 1, 1, 0, 'Nano-Technician', + 'Adonis Garden'), + (259347, 'Nano Crystal (Incessant Flurry)', 42449, 259348, 'Incessant Flurry', 39803, 0, 0, 0, 143, 'Crystal', + 'Nukes', 'Nano_Resistance_DeBuffs_-_Line_A', 643, '', 0, 0, 1, 2, 0, 'Nano-Technician', 'Penumbra Garden'), + (259353, 'Nano Crystal (Overwhelming Storm)', 42449, 259349, 'Overwhelming Storm', 45177, 0, 0, 0, 202, + 'Crystal', 'Nukes', 'Nano_Resistance_DeBuffs_-_Line_A', 643, '', 0, 0, 1, 3, 0, 'Nano-Technician', + 'Inferno Garden'), + (259358, 'Nano Crystal (Constant Barrage)', 42449, 259354, 'Constant Barrage', 45178, 0, 0, 0, 213, 'Crystal', + 'Nukes', 'Nano_Resistance_DeBuffs_-_Line_A', 643, '', 0, 0, 1, 4, 0, 'Nano-Technician', 'Pandemonium Garden'), + (259368, 'Super Charged Nano Crystal (Bewilder)', 12224, 259335, 'Empowered Bewilder', 46283, NULL, NULL, NULL, + 106, 'Tainted', 'Crowd_Control', 'Mezz', 147, 'Calm', 0, 0, 1, 1, 0, 'Nano-Technician', 'SL Loot'), + (259368, 'Super Charged Nano Crystal (Bewilder)', 12224, 259336, 'Specialized Bewilder', 46283, NULL, NULL, NULL, + 106, 'Tainted', 'Crowd_Control', 'Mezz', 147, 'Calm', 0, 0, 1, 1, 0, 'Nano-Technician', 'SL Loot'), + (259369, 'Super Charged Nano Crystal (Peaceful Intentions)', 42449, 259364, 'Empowered Peaceful Intentions', + 46271, NULL, NULL, NULL, 215, 'Tainted', 'Crowd_Control', 'Mezz', 147, 'Calm', 0, 0, 1, 4, 0, 'Nano-Technician', + 'SL Loot'), + (259369, 'Super Charged Nano Crystal (Peaceful Intentions)', 42449, 259365, 'Specialized Peaceful Intentions', + 46271, NULL, NULL, NULL, 215, 'Tainted', 'Crowd_Control', 'Mezz', 147, 'Calm', 0, 0, 1, 4, 0, 'Nano-Technician', + 'SL Loot'), + (259370, 'Super Charged Nano Crystal (Discourage Involvement)', 42449, 259362, + 'Empowered Discourage Involvement', 46270, NULL, NULL, NULL, 204, 'Tainted', 'Crowd_Control', 'Mezz', 147, + 'Calm', 0, 0, 1, 3, 0, 'Nano-Technician', 'SL Loot'), + (259370, 'Super Charged Nano Crystal (Discourage Involvement)', 42449, 259363, + 'Specialized Discourage Involvement', 46270, NULL, NULL, NULL, 204, 'Tainted', 'Crowd_Control', 'Mezz', 147, + 'Calm', 0, 0, 1, 3, 0, 'Nano-Technician', 'SL Loot'), + (259371, 'Super Charged Nano Crystal (Project Calm)', 12257, 259366, 'Specialized Project Calm', 46269, NULL, + NULL, NULL, 129, 'Tainted', 'Crowd_Control', 'Mezz', 147, 'Calm', 0, 0, 1, 2, 0, 'Nano-Technician', 'SL Loot'), + (259371, 'Super Charged Nano Crystal (Project Calm)', 12257, 259367, 'Empowered Project Calm', 46269, NULL, NULL, + NULL, 129, 'Tainted', 'Crowd_Control', 'Mezz', 147, 'Calm', 0, 0, 1, 2, 0, 'Nano-Technician', 'SL Loot'), + (259378, 'Super Charged Nano Crystal (Ball and Chain)', 42449, 259337, 'Empowered Ball and Chain', 46274, NULL, + NULL, NULL, 106, 'Tainted', 'Crowd_Control', 'Root', 146, '', 0, 0, 1, 1, 0, 'Nano-Technician', 'SL Loot'), + (259378, 'Super Charged Nano Crystal (Ball and Chain)', 42449, 259338, 'Specialized Ball and Chain', 46274, NULL, + NULL, NULL, 106, 'Tainted', 'Crowd_Control', 'Root', 146, '', 0, 0, 1, 1, 0, 'Nano-Technician', 'SL Loot'), + (259379, 'Super Charged Nano Crystal (Gravity Pull)', 42449, 259372, 'Empowered Gravity Pull', 46274, NULL, NULL, + NULL, 129, 'Tainted', 'Crowd_Control', 'Root', 146, '', 0, 0, 1, 2, 0, 'Nano-Technician', 'SL Loot'), + (259379, 'Super Charged Nano Crystal (Gravity Pull)', 42449, 259373, 'Specialized Gravity Pull', 46274, NULL, + NULL, NULL, 129, 'Tainted', 'Crowd_Control', 'Root', 146, '', 0, 0, 1, 2, 0, 'Nano-Technician', 'SL Loot'), + (259380, 'Super Charged Nano Crystal (Feet of Lead)', 42449, 259374, 'Empowered Feet of Lead', 46275, NULL, NULL, + NULL, 204, 'Tainted', 'Crowd_Control', 'Root', 146, '', 0, 0, 1, 3, 0, 'Nano-Technician', 'SL Loot'), + (259380, 'Super Charged Nano Crystal (Feet of Lead)', 42449, 259375, 'Specialized Feet of Lead', 46275, NULL, + NULL, NULL, 204, 'Tainted', 'Crowd_Control', 'Root', 146, '', 0, 0, 1, 3, 0, 'Nano-Technician', 'SL Loot'), + (259381, 'Super Charged Nano Crystal (Burden of Atlas)', 42449, 259376, 'Empowered Burden of Atlas', 46275, NULL, + NULL, NULL, 215, 'Tainted', 'Crowd_Control', 'Root', 146, '', 0, 0, 1, 4, 0, 'Nano-Technician', 'SL Loot'), + (259381, 'Super Charged Nano Crystal (Burden of Atlas)', 42449, 259377, 'Specialized Burden of Atlas', 46275, + NULL, NULL, NULL, 215, 'Tainted', 'Crowd_Control', 'Root', 146, '', 0, 0, 1, 4, 0, 'Nano-Technician', + 'SL Loot'), + (259605, 'Nano Crystal (Dimach Expertise)', 12226, 259604, 'Dimach Expertise', 16219, 0, 0, 0, 10, 'Crystal', + 'Buffs_-_Melee_Special', 'Dimach_Buffs', 547, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (259608, 'Nano Crystal (Dimach Proficiency)', 12226, 259606, 'Dimach Proficiency', 16219, 0, 0, 0, 4, 'Crystal', + 'Buffs_-_Melee_Special', 'Dimach_Buffs', 547, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (259898, 'Snowball Fighting Manual', 37933, 259902, 'Throw Snowball', 294525, 0, 0, 0, 1, 'Misc', 'Combat', + 'Snowball', 0, '', 0, 0, 0, 0, 0, 'General', 'Christmas Event'), + (260759, 'Nano Crystal (Superior Notum Overflow Injector)', 301611, 260758, 'Superior Notum Overflow Injector', + 291162, 0, 0, 0, 210, 'Crystal', 'Buffs', 'Nano_Damage_Multiplier_Buffs', 1062, '', 0, 0, 1, 0, 0, + 'Nano-Technician', 'Inferno Anansi Quest'), + (260762, 'Nano Crystal (Nanobot Defense)', 301538, 260761, 'Nanobot Defense', 301540, 0, 0, 0, 210, 'Crystal', + 'Combat', 'Damage_to_Nano', 809, '', 0, 0, 1, 0, 0, 'Trader', 'Greedy Shade'), + (260766, 'Nano Crystal (Luck''s Capricious Consequence)', 12259, 260765, 'Luck''s Capricious Consequence', 39081, + 0, 0, 0, 205, 'Crystal', 'DeBuffs', 'Evasion_DeBuffs', 197, '', 0, 0, 1, 0, 0, 'Fixer', 'Inferno Tours Quest'), + (260772, 'Healing Staff of Alcofribas Nasier', 154363, 260771, 'Construct Empowerment', 38884, 0, 0, 0, 205, + 'Weapon', 'Pet_Buffs', 'Healing_Construct_Empowerment', 807, '', 0, 0, 1, 0, 0, 'Meta-Physicist', + 'Inferno Anansi Quest'), + (263242, 'Nano Crystal (Lesser Predator)', 12259, 263240, 'Lesser Predator', 16218, 0, 0, 0, 126, 'Crystal', + 'Buffs', 'Agility_Buffs', 195, '', 0, 0, 1, 0, 0, 'Agent', 'Scheol Scientists Quest'), + (263245, 'Nano Crystal (Greater Predator)', 12259, 263243, 'Greater Predator', 16218, 0, 0, 0, 126, 'Crystal', + 'Buffs', 'Agility_Buffs', 195, '', 0, 0, 1, 0, 0, 'Agent', 'Scheol Yuttos Quest'), + (263247, 'Nano Crystal (Kyudo)', 12226, 263246, 'Kyudo', 16208, 0, 0, 0, 126, 'Crystal', 'Buffs', + 'Martial_Artist_Bow_Buffs', 815, '', 0, 0, 1, 0, 0, 'Martial Artist', 'Scheol Scientists Quest'), + (263248, 'Nano Crystal (Greater Kyudo)', 12226, 263249, 'Greater Kyudo', 16208, 0, 0, 0, 126, 'Crystal', 'Buffs', + 'Martial_Artist_Bow_Buffs', 815, '', 0, 0, 1, 0, 0, 'Martial Artist', 'Scheol Yuttos Quest'), + (263252, 'Nano Crystal (Greater Gunslinger)', 12226, 263250, 'Greater Gunslinger', 16310, 0, 0, 0, 126, + 'Crystal', 'Buffs', 'Pistol_Buffs', 199, '', 0, 0, 1, 0, 0, 'Bureaucrat', 'Scheol Yuttos Quest'), + (263253, 'Nano Crystal (Skilled Gunslinger)', 12226, 263251, 'Skilled Gunslinger', 16310, 0, 0, 0, 126, + 'Crystal', 'Buffs', 'Pistol_Buffs', 199, '', 0, 0, 1, 0, 0, 'Bureaucrat', 'Scheol Scientists Quest'), + (263260, 'Nano Crystal (Minor NCU Crash)', 42450, 263259, 'Minor NCU Crash', 16216, 0, 0, 0, 126, 'Crystal', + 'DeBuffs', 'Hostile_NCU_Wipe', 0, '', 0, 0, 1, 0, 0, 'Fixer', 'Scheol Scientists Quest'), + (263262, 'Nano Crystal (NCU Crash)', 42450, 263261, 'NCU Crash', 16216, 0, 0, 0, 126, 'Crystal', 'DeBuffs', + 'Hostile_NCU_Wipe', 0, '', 0, 0, 1, 0, 0, 'Fixer', 'Scheol Yuttos Quest'), + (263267, 'Nano Crystal (Notum Overflow Injector)', 301611, 263266, 'Notum Overflow Injector', 291162, 0, 0, 0, + 126, 'Crystal', 'Buffs', 'Nano_Damage_Multiplier_Buffs', 1062, '', 0, 0, 1, 0, 0, 'Nano-Technician', + 'Scheol Yuttos Quest'), + (263268, 'Nano Crystal (Nanobot Shelter)', 301537, 263265, 'Nanobot Shelter', 301539, 0, 0, 0, 126, 'Crystal', + 'Buffs', 'Reflect_Shield', 2, '', 0, 0, 1, 0, 0, 'Nano-Technician', 'Greedy Shade / Scheol Scientists Quest'), + (263279, 'Nano Crystal (Learning by Doing (Team))', 296549, 263277, 'Learning by Doing (Team)', 296548, 0, 0, 0, + 60, 'Crystal', 'Buffs', 'Experience_Constructs_-_XP_Bonus', 959, '', 0, 0, 1, 0, 0, 'Adventurer', + 'Scheol Scientists Quest'), + (263280, 'Nano Crystal (Pr0n0wnzm3nt 0f H4xx)', 296677, 263278, 'Pr0n0wnzm3nt 0f H4xx', 296676, 0, 0, 0, 60, + 'Crystal', 'Morphs', 'L33t', 0, '', 0, 0, 1, 0, 0, 'Adventurer', 'Scheol Yuttos Quest'), + (263283, 'Nano Crystal (Simple Viral Agent)', 301210, 263281, 'Simple Viral Agent', 301207, 0, 0, 0, 126, + 'Crystal', 'Combat', 'DOT_-_Line_A', 6, '', 0, 0, 1, 0, 0, 'Doctor', 'Scheol Scientists Quest'), + (263284, 'Nano Crystal (Poisoned Wounds)', 301215, 263282, 'Poisoned Wounds', 301222, 0, 0, 0, 126, 'Crystal', + 'Combat', 'DOT_-_Line_B', 7, '', 0, 0, 1, 0, 0, 'Doctor', 'Scheol Yuttos Quest'), + (263294, 'Nano Crystal (My Enemy''s Enemy is my Friend)', 301545, 263293, 'My Enemy''s Enemy is my Friend', + 301543, 0, 0, 0, 126, 'Crystal', 'Drain', 'Health_and_Nano_Over_Time_Drain', 828, '', 0, 0, 1, 0, 0, 'Trader', + 'Greedy Shade'), + (263299, 'Mesmerizing Staff of Francois', 154363, 263298, 'Mesmerizing Construct Empowerment', 84276, 0, 0, 0, + 205, 'Weapon', 'Pet_Buffs', 'Mesmerization_Construct_Empowerment', 810, '', 0, 0, 1, 0, 0, 'Meta-Physicist', + 'Scheol Scientists Quest'), + (263300, 'Nano Crystal (Mesmerization Construct Empowerment)', 12260, 263298, + 'Mesmerizing Construct Empowerment', 84276, 0, 0, 0, 125, 'Crystal', 'Pet_Buffs', + 'Mesmerization_Construct_Empowerment', 810, '', 0, 0, 1, 0, 0, 'Meta-Physicist', 'Scheol Scientists Quest'), + (263302, 'Nano Crystal (Lesser Miniaturization)', 12260, 263301, 'Lesser Miniaturization', 39015, 0, 0, 0, 125, + 'Crystal', 'Pet_Buffs', 'Engineer_Miniaturization', 811, '', 0, 0, 1, 0, 0, 'Engineer', + 'Scheol Scientists Quest'), + (263304, 'Nano Crystal (Miniaturization)', 12260, 263303, 'Miniaturization', 39015, 0, 0, 0, 125, 'Crystal', + 'Pet_Buffs', 'Engineer_Miniaturization', 811, '', 0, 0, 1, 0, 0, 'Engineer', 'Scheol Yuttos Quest'), + (263307, 'Nano Crystal (Minor Nanobot Defense)', 301538, 263306, 'Minor Nanobot Defense', 301540, 0, 0, 0, 126, + 'Crystal', 'Combat', 'Damage_to_Nano', 809, '', 0, 0, 1, 0, 0, 'Trader', 'Greedy Shade'), + (265441, 'Nano Crystal (Sol: Pierce Nerves)', 12257, 266310, 'Pierce Nerves', 39125, 0, 0, 0, 175, 'Crystal', + 'PvP_(Shade_Nemesis)', 'Lost_Eden', 0, '', 0, 0, 0, 0, 0, 'Soldier', 'OFAB Store'), + (265442, 'Nano Crystal (MA: Induce Stupor)', 12257, 266311, 'Induce Stupor', 39125, 0, 0, 0, 175, 'Crystal', + 'PvP_(Meta-Physicist_Nemesis)', 'Lost_Eden', 0, '', 0, 0, 0, 0, 0, 'Martial Artist', 'OFAB Store'), + (265443, 'Nano Crystal (Eng: Unsteady Hands)', 12257, 266309, 'Unsteady Hands', 39125, 0, 0, 0, 175, 'Crystal', + 'PvP_(Fixer_Nemesis)', 'Lost_Eden', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'OFAB Store'), + (265444, 'Nano Crystal (Fix: Blindside)', 12257, 266308, 'Blindside', 39125, 0, 0, 0, 175, 'Crystal', + 'PvP_(Trader_Nemesis)', 'Lost_Eden', 0, '', 0, 0, 0, 0, 0, 'Fixer', 'OFAB Store'), + (265445, 'Nano Crystal (Agt: Technical Incompetence)', 12257, 266307, 'Technical Incompetence', 39125, 0, 0, 0, + 175, 'Crystal', 'PvP', 'Lost_Eden', 0, '', 0, 0, 0, 0, 0, 'Agent', 'OFAB Store'), + (265446, 'Nano Crystal (Adv: Misdiagnosis)', 12257, 266306, 'Misdiagnosis', 39125, 0, 0, 0, 175, 'Crystal', + 'PvP_(Doctor_Nemesis)', 'Lost_Eden', 0, '', 0, 0, 0, 0, 0, 'Adventurer', 'OFAB Store'), + (265447, 'Nano Crystal (Trad: Borrow Reflect)', 12257, 266312, 'Borrow Reflect', 39125, 0, 0, 0, 175, 'Crystal', + 'Drain', 'Reflect', 0, '', 0, 0, 0, 0, 0, 'Trader', 'OFAB Store'), + (265448, 'Nano Crystal (Bur: Rabies)', 12257, 266305, 'Rabies', 39125, 0, 0, 0, 175, 'Crystal', + 'PvP_(Adventurer_Nemesis)', 'Lost_Eden', 0, '', 0, 0, 0, 0, 0, 'Bureaucrat', 'OFAB Store'), + (265449, 'Nano Crystal (Enf: Slowdown)', 12257, 266304, 'Slowdown', 39125, 0, 0, 0, 175, 'Crystal', + 'PvP_(Martial_Artist_Nemesis)', 'Lost_Eden', 0, '', 0, 0, 0, 0, 0, 'Enforcer', 'OFAB Store'), + (265450, 'Nano Crystal (NT: Restrain Enthusiasm)', 12257, 266302, 'Restrain Enthusiasm', 39125, 0, 0, 0, 175, + 'Crystal', 'PvP_(Enforcer_Nemesis)', 'Lost_Eden', 0, 'HP_Buff', 151, 0, 0, 0, 0, 'Nano-Technician', + 'OFAB Store'), + (265451, 'Nano Crystal (Doc: Fill Inbox)', 12257, 266303, 'Fill Inbox', 39125, 0, 0, 0, 175, 'Crystal', + 'PvP_(Bureaucrat_Nemesis)', 'Lost_Eden', 0, '', 0, 0, 0, 0, 0, 'Doctor', 'OFAB Store'), + (265452, 'Nano Crystal (MP: Nano Division)', 12257, 266299, 'Nano Division', 39125, 0, 0, 0, 200, 'Crystal', + 'DeBuffs', 'Nano_Resistance_DeBuffs_-_Line_A', 643, 'Lost_Eden', 0, 1, 0, 0, 0, 'Meta-Physicist', 'OFAB Store'), + (265453, 'Nano Crystal (Keep: Blow Their Cover)', 12257, 266301, 'Blow Their Cover', 39125, 0, 0, 0, 175, + 'Crystal', 'PvP_(Agent_Nemesis)', 'Lost_Eden', 0, '', 0, 0, 0, 0, 0, 'Keeper', 'OFAB Store'), + (265454, 'Nano Crystal (Shad: Shade''s Caress)', 292049, 266300, 'Shade''s Caress', 292046, 0, 0, 0, 175, + 'Crystal', 'PvP', 'Lost_Eden', 1000, 'Heal', 0, 0, 0, 0, 0, 'Shade', 'OFAB Store'), + (265455, 'Nano Crystal (NT: Explosive Cataclysm)', 12257, 266298, 'Explosive Cataclysm', 45190, 0, 0, 0, 75, + 'Crystal', 'Nukes', 'AoE_Nuke', 0, '', 0, 0, 0, 1, 0, 'Nano-Technician', 'OFAB Store'), + (265456, 'Nano Crystal (NT: Future Vision)', 12257, 266292, 'Future Vision', 45190, 0, 0, 0, 75, 'Crystal', + 'Combat', 'Nano-Technician_DOT_-_Strain_B', 10, '', 0, 0, 0, 1, 0, 'Nano-Technician', 'OFAB Store'), + (265457, 'Nano Crystal (NT: Explosive Double)', 12257, 266286, 'Explosive Double', 45190, 0, 0, 0, 75, 'Crystal', + 'Combat', 'Nano-Technician_DOT_-_Strain_B', 10, '', 0, 0, 0, 1, 0, 'Nano-Technician', 'OFAB Store'), + (265458, 'Nano Crystal (NT: Earthshattering Cataclysm)', 12257, 266297, 'Earthshattering Cataclysm', 45190, 0, 0, + 0, 120, 'Crystal', 'Nukes', 'AoE_Nuke', 0, '', 0, 0, 0, 2, 0, 'Nano-Technician', 'OFAB Store'), + (265459, 'Nano Crystal (NT: Calculated Detonation)', 12257, 266291, 'Calculated Detonation', 45190, 0, 0, 0, 120, + 'Crystal', 'Combat', 'Nano-Technician_DOT_-_Strain_B', 10, '', 0, 0, 0, 2, 0, 'Nano-Technician', 'OFAB Store'), + (265460, 'Nano Crystal (NT: Earthshattering Double)', 12257, 266285, 'Earthshattering Double', 45190, 0, 0, 0, + 120, 'Crystal', 'Combat', 'Nano-Technician_DOT_-_Strain_B', 10, '', 0, 0, 0, 2, 0, 'Nano-Technician', + 'OFAB Store'), + (265461, 'Nano Crystal (NT: Notum Cataclysm)', 12257, 266296, 'Notum Cataclysm', 45190, 0, 0, 0, 165, 'Crystal', + 'Nukes', 'AoE_Nuke', 0, '', 0, 0, 0, 2, 0, 'Nano-Technician', 'OFAB Store'), + (265462, 'Nano Crystal (NT: Delayed Cellular Collapse)', 12257, 266290, 'Delayed Cellular Collapse', 45190, 0, 0, + 0, 165, 'Crystal', 'Combat', 'Nano-Technician_DOT_-_Strain_B', 10, '', 0, 0, 0, 2, 0, 'Nano-Technician', + 'OFAB Store'), + (265463, 'Nano Crystal (NT: Notum Double)', 12257, 266284, 'Notum Double', 45190, 0, 0, 0, 165, 'Crystal', + 'Combat', 'Nano-Technician_DOT_-_Strain_B', 10, '', 0, 0, 0, 2, 0, 'Nano-Technician', 'OFAB Store'), + (265464, 'Nano Crystal (NT: Jobe Cataclysm)', 12257, 266295, 'Jobe Cataclysm', 45190, 0, 0, 0, 200, 'Crystal', + 'Nukes', 'AoE_Nuke', 0, '', 0, 0, 0, 3, 0, 'Nano-Technician', 'OFAB Store'), + (265465, 'Nano Crystal (NT: Impending Demise)', 12257, 266289, 'Impending Demise', 45190, 0, 0, 0, 200, + 'Crystal', 'Combat', 'Nano-Technician_DOT_-_Strain_B', 10, '', 0, 0, 0, 3, 0, 'Nano-Technician', 'OFAB Store'), + (265466, 'Nano Crystal (NT: Jobe Double)', 12257, 266283, 'Jobe Double', 45190, 0, 0, 0, 200, 'Crystal', + 'Combat', 'Nano-Technician_DOT_-_Strain_B', 10, '', 0, 0, 0, 3, 0, 'Nano-Technician', 'OFAB Store'), + (265467, 'Nano Crystal (NT:Enfraam''s Cataclysm)', 12257, 266294, 'Enfraam''s Cataclysm', 45190, 0, 0, 0, 214, + 'Crystal', 'Nukes', 'AoE_Nuke', 0, '', 0, 0, 0, 4, 0, 'Nano-Technician', 'OFAB Store'), + (265468, 'Nano Crystal (NT: Enfraam''s Surprise Assault)', 12257, 266288, 'Enfraam''s Surprise Assault', 45190, + 0, 0, 0, 219, 'Crystal', 'Combat', 'Nano-Technician_DOT_-_Strain_B', 10, '', 0, 0, 0, 4, 0, 'Nano-Technician', + 'OFAB Store'), + (265469, 'Nano Crystal (NT: Enfraam''s Double)', 12257, 266282, 'Enfraam''s Double', 45190, 0, 0, 0, 219, + 'Crystal', 'Combat', 'Nano-Technician_DOT_-_Strain_B', 10, '', 0, 0, 0, 4, 0, 'Nano-Technician', 'OFAB Store'), + (265470, 'Nano Crystal (NT: Izgimmer''s Tactical Nuke)', 12257, 266287, 'Izgimmer''s Tactical Nuke', 45190, 0, 0, + 0, 220, 'Crystal', 'Combat', 'Nano-Technician_DOT_-_Strain_B', 10, '', 0, 0, 0, 4, 0, 'Nano-Technician', + 'OFAB Store'), + (265471, 'Nano Crystal (NT: Izgimmer''s Double)', 12257, 266281, 'Izgimmer''s Double', 45190, 0, 0, 0, 220, + 'Crystal', 'Combat', 'Nano-Technician_DOT_-_Strain_B', 10, '', 0, 0, 0, 4, 0, 'Nano-Technician', 'OFAB Store'), + (265480, 'Nano Crystal (Energize Rubi-Ka Grid Tunnel)', 42450, 242954, 'Energize Rubi-Ka Grid Tunnel', 117953, 0, + 0, 0, 220, 'Crystal', 'Teleport', 'Fixer_Grid', 0, '', 0, 0, 1, 4, 0, 'Fixer', 'Pandemonium Garden'), + (267111, 'Nano Crystal (Trad: Plunder Skills (Nanite Enhanced))', 301398, 267110, + 'Plunder Skills (Nanite Enhanced)', 301402, 0, 0, 0, 200, 'Crystal', 'Drain', 'Skill_Transfer_Target_DeBuffs', + 136, 'Ransack', 0, 1, 0, 0, 0, 'Trader', 'OFAB Store'), + (267115, 'Nano Crystal (Trad: Divest Skills (Nanite Enhanced))', 301397, 267114, + 'Divest Skills (Nanite Enhanced)', 301400, 0, 0, 0, 200, 'Crystal', 'Drain', 'Skill_Transfer_Target_DeBuffs', + 135, 'Deprive', 0, 1, 0, 0, 0, 'Trader', 'OFAB Store'), + (267118, 'Nano Crystal (Trad: Corporate Protection)', 301514, 267117, 'Corporate Protection', 301506, 0, 0, 0, + 200, 'Crystal', 'Drain', 'Add_All_Defence_Drains', 1060, '', 0, 0, 0, 0, 0, 'Trader', 'OFAB Store'), + (267122, 'Nano Crystal (Trad: Lesser Corporate Protection)', 301514, 267121, 'Lesser Corporate Protection', + 301506, 0, 0, 0, 200, 'Crystal', 'Drain', 'Add_All_Defence_Drains', 1060, '', 0, 0, 0, 0, 0, 'Trader', + 'OFAB Store'), + (267267, 'Nano Crystal (Trad: Lesser Industrial Sabotage)', 301513, 267264, 'Lesser Industrial Sabotage', 301505, + 0, 0, 0, 200, 'Crystal', 'Drain', 'Add_All_Offence_Drains', 814, '', 0, 0, 0, 0, 0, 'Trader', 'OFAB Store'), + (267268, 'Nano Crystal (Trad: Industrial Sabotage)', 301513, 267266, 'Industrial Sabotage', 301505, 0, 0, 0, 200, + 'Crystal', 'Drain', 'Add_All_Offence_Drains', 814, '', 0, 0, 0, 0, 0, 'Trader', 'OFAB Store'), + (267270, 'Nano Crystal (MP: Beneficial Scourge)', 42451, 267269, 'Beneficial Scourge', 39168, 0, 0, 0, 200, + 'Crystal', 'DeBuffs', 'General_Cold_AC_Debuff', 128, '', 0, 0, 0, 0, 0, 'Meta-Physicist', 'OFAB Store'), + (267273, 'Nano Crystal (MP: Hostility Scourge)', 42451, 267271, 'Hostility Scourge', 39168, 0, 0, 0, 200, + 'Crystal', 'DeBuffs', 'General_Chemical_AC_Debuff', 127, '', 0, 0, 0, 0, 0, 'Meta-Physicist', 'OFAB Store'), + (267274, 'Nano Crystal (MP: Lesser Hostility Scourge)', 42451, 267272, 'Lesser Hostility Scourge', 39168, 0, 0, + 0, 200, 'Crystal', 'DeBuffs', 'General_Chemical_AC_Debuff', 127, '', 0, 0, 0, 0, 0, 'Meta-Physicist', + 'OFAB Store'), + (267276, 'Nano Crystal (MP: Lesser Beneficial Scourge)', 42451, 267275, 'Lesser Beneficial Scourge', 39168, 0, 0, + 0, 200, 'Crystal', 'DeBuffs', 'General_Cold_AC_Debuff', 128, '', 0, 0, 0, 0, 0, 'Meta-Physicist', 'OFAB Store'), + (267282, 'Nano Crystal (MP: Sacrificial Shielding)', 300499, 267281, 'Sacrificial Shielding', 300501, 0, 0, 0, + 200, 'Crystal', 'Pet', 'Damage_To_Pet', 1024, '', 0, 0, 0, 0, 0, 'Meta-Physicist', 'OFAB Store'), + (267284, 'Nano Crystal (MP: Nanite Enhanced Nano Shutdown)', 300508, 267283, 'Nanite Enhanced Nano Shutdown', + 300509, 0, 0, 0, 200, 'Crystal', 'DeBuffs', 'Nano_Shutdown_DeBuffs', 239, '', 0, 0, 0, 0, 0, 'Meta-Physicist', + 'OFAB Store'), + (267530, 'Nano Crystal (Sacrifical Shielding)', 42451, 267391, 'Sacrifical Shielding', 39168, 0, 0, 0, 200, + 'Crystal', 'Pet', 'DOT_Strain_C', 582, '', 0, 0, 0, 0, 0, 'Meta-Physicist', 'OFAB Store'), + (267532, 'Nano Crystal (Sacrifical power)', 42451, 267531, 'Sacrifical power', 39168, 0, 0, 0, 200, 'Crystal', + 'Pet', 'DOT_Strain_C', 582, '', 0, 0, 0, 0, 0, 'Meta-Physicist', 'OFAB Store'), + (267537, 'Nano Crystal (Bur: Last Minute Negotiations)', 42449, 267535, 'Last Minute Negotiations', 46271, 0, 0, + 0, 200, 'Crystal', 'Crowd_Control', 'Mdb:2009:893', 893, '', 0, 0, 0, 0, 0, 'Bureaucrat', 'OFAB Store'), + (267539, 'Nano Crystal (Bur: Junior Last Minute Negotiations)', 42449, 267538, 'Junior Last Minute Negotiations', + 46271, 0, 0, 0, 200, 'Crystal', 'Crowd_Control', 'Mdb:2009:893', 893, '', 0, 0, 0, 0, 0, 'Bureaucrat', + 'OFAB Store'), + (267629, 'Nano Crystal (MP: Evocation of The Enraged)', 42448, 267598, 'Evocation of The Enraged', 16280, 0, 0, + 0, 200, 'Crystal', 'Pet_Buffs', 'Pet_Short_Term_Damage_Buffs', 225, 'Evocation', 0, 0, 1, 0, 0, + 'Meta-Physicist', 'OFAB Store'), + (267630, 'Nano Crystal (MP: Evocation of The Enlightened)', 42448, 267599, 'Evocation of The Enlightened', 16280, + 0, 0, 0, 200, 'Crystal', 'Pet_Buffs', 'Pet_Defensive_Nanos', 816, '', 0, 0, 1, 0, 0, 'Meta-Physicist', + 'OFAB Store'), + (267631, 'Nano Crystal (MP: Evocation of The Empowered)', 42448, 267600, 'Evocation of The Empowered', 16280, 0, + 0, 0, 200, 'Crystal', 'Pet_Buffs', 'Pet_Defensive_Nanos', 816, '', 0, 0, 1, 0, 0, 'Meta-Physicist', + 'OFAB Store'), + (267632, 'Nano Crystal (MP: Evocation of The Reinforced)', 42448, 267601, 'Evocation of The Reinforced', 16280, + 0, 0, 0, 200, 'Crystal', 'Pet_Buffs', 'Pet_Defensive_Nanos', 816, '', 0, 0, 1, 0, 0, 'Meta-Physicist', + 'OFAB Store'), + (267633, 'Nano Crystal (Bur: Lesser Corporate Insurance Policy)', 42448, 267603, + 'Lesser Corporate Insurance Policy', 16299, 0, 0, 0, 200, 'Crystal', 'Pet_Buffs', 'Pet_Defensive_Nanos', 816, + '', 0, 0, 1, 0, 0, 'Bureaucrat', 'OFAB Store'), + (267634, 'Nano Crystal (Bur: Corporate Insurance Policy)', 42448, 267604, 'Corporate Insurance Policy', 16299, 0, + 0, 0, 200, 'Crystal', 'Pet_Buffs', 'Pet_Defensive_Nanos', 816, '', 0, 0, 1, 0, 0, 'Bureaucrat', 'OFAB Store'), + (267635, 'Nano Crystal (Bur: Greater Corporate Insurance Policy)', 42448, 267605, + 'Greater Corporate Insurance Policy', 16299, 0, 0, 0, 200, 'Crystal', 'Pet_Buffs', 'Pet_Defensive_Nanos', 816, + '', 0, 0, 1, 0, 0, 'Bureaucrat', 'OFAB Store'), + (267636, 'Nano Crystal (Eng: Lesser Software Hacking Shielding)', 42448, 267606, + 'Lesser Software Hacking Shielding', 16299, 0, 0, 0, 200, 'Crystal', 'Pet_Buffs', 'Pet_Defensive_Nanos', 816, + '', 0, 0, 1, 0, 0, 'Engineer', 'OFAB Store'), + (267637, 'Nano Crystal (Eng: Software Hacking Shielding)', 42448, 267607, 'Software Hacking Shielding', 16299, 0, + 0, 0, 200, 'Crystal', 'Pet_Buffs', 'Pet_Defensive_Nanos', 816, '', 0, 0, 1, 0, 0, 'Engineer', 'OFAB Store'), + (267638, 'Nano Crystal (Eng: Advanced Software Hacking Shielding)', 42448, 267608, + 'Advanced Software Hacking Shielding', 16299, 0, 0, 0, 200, 'Crystal', 'Pet_Buffs', 'Pet_Defensive_Nanos', 816, + '', 0, 0, 1, 0, 0, 'Engineer', 'OFAB Store'), + (267639, 'Nano Crystal (MP: Evocation of The Pure)', 42448, 267609, 'Evocation of The Pure', 16280, 0, 0, 0, 200, + 'Crystal', 'Pet_Buffs', 'Pet_Damage_Over_Time_Resist_Nanos', 817, '', 0, 0, 1, 0, 0, 'Meta-Physicist', + 'OFAB Store'), + (267640, 'Nano Crystal (MP: Evocation of The Cleansed)', 42448, 267617, 'Evocation of The Cleansed', 16280, 0, 0, + 0, 200, 'Crystal', 'Pet_Buffs', 'Pet_Damage_Over_Time_Resist_Nanos', 817, '', 0, 0, 1, 0, 0, 'Meta-Physicist', + 'OFAB Store'), + (267641, 'Nano Crystal (Bur: Corporate Strategy)', 42448, 267611, 'Corporate Strategy', 16313, 0, 0, 0, 200, + 'Crystal', 'Pet_Buffs', 'Pet_Short_Term_Damage_Buffs', 225, 'Damage_Robot', 0, 0, 1, 0, 0, 'Bureaucrat', + 'OFAB Store'), + (267642, 'Nano Crystal (Bur: Nanite Robot Protection)', 42448, 267612, 'Nanite Robot Protection', 16299, 0, 0, 0, + 200, 'Crystal', 'Pet_Buffs', 'Pet_Damage_Over_Time_Resist_Nanos', 817, '', 0, 0, 1, 0, 0, 'Bureaucrat', + 'OFAB Store'), + (267643, 'Nano Crystal (Bur: Lesser Nanite Robot Protection)', 42448, 267615, 'Lesser Nanite Robot Protection', + 16299, 0, 0, 0, 200, 'Crystal', 'Pet_Buffs', 'Pet_Damage_Over_Time_Resist_Nanos', 817, '', 0, 0, 1, 0, 0, + 'Bureaucrat', 'OFAB Store'), + (267644, 'Nano Crystal (Bur: Basic Nanite Robot Protection)', 42448, 267616, 'Basic Nanite Robot Protection', + 16299, 0, 0, 0, 200, 'Crystal', 'Pet_Buffs', 'Pet_Damage_Over_Time_Resist_Nanos', 817, '', 0, 0, 0, 0, 0, + 'Bureaucrat', 'OFAB Store'), + (267645, 'Nano Crystal (Sol: Remedy Inhibitor)', 42448, 267624, 'Remedy Inhibitor', 44245, 0, 0, 0, 200, + 'Crystal', 'Combat', 'AoE_Taunt', 683, '', 0, 0, 1, 0, 0, 'Soldier', 'OFAB Store'), + (267646, 'Nano Crystal (Doc: Dr Blaze''s Mutagenic Compound)', 42449, 267620, 'Dr Blaze''s Mutagenic Compound', + 16222, 0, 0, 0, 200, 'Crystal', 'Combat', 'DOT_Strain_C', 582, '', 0, 0, 1, 0, 0, 'Doctor', 'OFAB Store'), + (267647, 'Nano Crystal (Doc: Nanite Enhanced Mutagenic Compound)', 42449, 267621, + 'Nanite Enhanced Mutagenic Compound', 16222, 0, 0, 0, 200, 'Crystal', 'Combat', 'DOT_Strain_C', 582, '', 0, 0, + 1, 0, 0, 'Doctor', 'OFAB Store'), + (267648, 'Nano Crystal (Doc: Nanite Enhanced Mutagenic Plague)', 42449, 267623, + 'Nanite Enhanced Mutagenic Plague', 16222, 0, 0, 0, 200, 'Crystal', 'Combat', 'DOT_Strain_C', 582, '', 0, 0, 1, + 0, 0, 'Doctor', 'OFAB Store'), + (267650, 'Nano Crystal (Doc: Weak Mutagenic Plague)', 42449, 267649, 'Weak Mutagenic Plague', 16222, 0, 0, 0, + 200, 'Crystal', 'Combat', 'DOT_Strain_C', 582, '', 0, 0, 0, 0, 0, 'Doctor', 'OFAB Store'), + (267879, 'Nano Crystal (Metaing''s Improved Glacial Lance)', 42449, 267878, 'Metaing''s Improved Glacial Lance', + 39798, 0, 0, 0, 180, 'Crystal', 'Combat', 'Nuke_Normal', 0, '', 0, 0, 0, 0, 0, 'Meta-Physicist', + 'Scheol Yuttos Quest'), + (267919, 'Nano Crystal (Bur: Droid Damage Matrix)', 42448, 267916, 'Droid Damage Matrix', 117931, 0, 0, 0, 200, + 'Crystal', 'Combat', 'Pet_Buff', 683, '', 0, 0, 1, 0, 0, 'Bureaucrat', 'OFAB Store'), + (267920, 'Nano Crystal (Bur: Take the Bullet)', 42448, 267917, 'Take the Bullet', 117934, 0, 0, 0, 200, + 'Crystal', 'Pet_Buffs', 'General', 0, '', 0, 0, 1, 0, 0, 'Bureaucrat', 'OFAB Store'), + (268170, 'Nano Crystal (Master''s Bidding)', 42448, 268171, 'Master''s Bidding', 16299, 0, 0, 0, 200, 'Crystal', + 'Pets', 'Proc:_Masters_Bidding', 0, '', 0, 0, 1, 0, 0, 'General', 'OFAB Store'), + (268695, 'Nano Crystal (Insight into the Shadowlands)', 296649, 268610, 'Insight into the Shadowlands', 296641, + 0, 0, 0, 100, 'Crystal', 'Buffs', 'Shadowlands_Maps', 1033, '', 0, 0, 1, 0, 0, 'General', 'Tower Store'), + (268698, 'Nano Crystal (Veterans L33t Transformation)', 296678, 268697, 'Veterans L33t Transformation', 296675, + 0, 0, 0, 100, 'Crystal', 'Pets', 'Polymorph', 0, '', 0, 0, 0, 0, 0, 'General', 'Veteran Terminal (Tower Shop)'), + (269443, 'Nano Crystal (Sharp Scales)', 300936, 269441, 'Sharp Scales', 300934, 0, 0, 0, 175, 'Crystal', 'Buffs', + 'Adventurer_Morph_Buffs', 251, '', 0, 0, 1, 0, 0, 'Adventurer', 'Pen Xan Quest'), + (269445, 'Nano Crystal (Dead Cold)', 42449, 269444, 'Dead Cold', 49686, 0, 0, 0, 170, 'Crystal', 'Combat', + 'DOT_Agent_Strain_A', 9, '', 0, 0, 1, 0, 0, 'Agent', 'Pen Xan Quest'), + (269448, 'Nano Crystal (Brain Freeze)', 294091, 269447, 'Brain Freeze', 293903, 0, 0, 0, 180, 'Crystal', + 'DeBuffs', 'General_Psychic_DeBuffs', 55, '', 0, 0, 0, 0, 0, 'Bureaucrat', 'Mission Reward'), + (269456, 'Nano Crystal (Team-Enhanced Deathless Blessing)', 42448, 269455, 'Team-Enhanced Deathless Blessing', + 44235, 0, 0, 0, 191, 'Crystal', 'Buffs', 'Heal_Over_Time', 12, '', 0, 0, 1, 0, 0, 'Doctor', 'Pen Xan Quest'), + (269461, 'Nano Crystal (Ice Burn)', 42452, 269460, 'Ice Burn', 16221, 0, 0, 0, 184, 'Crystal', 'Buffs', + 'Damage_Shields', 1, '', 0, 0, 1, 0, 0, 'Enforcer', 'Pen Xan Quest'), + (269464, 'Nano Crystal (Boosted Tendons)', 42450, 269463, 'Boosted Tendons', 39308, 0, 0, 0, 183, 'Crystal', + 'Buffs', 'Damage_Buffs_-_Line_A', 4, '', 0, 0, 1, 0, 0, 'Engineer', 'Pen Xan Quest'), + (269469, 'Nano Crystal (Program Override)', 42450, 269465, 'Program Override', 16216, 0, 0, 0, 187, 'Crystal', + 'DeBuffs', 'Hostile_NCU_Wipe', 0, '', 0, 0, 1, 0, 0, 'Fixer', 'Pen Xan Quest'), + (269472, 'Nano Crystal (Fists of the Winter Flame)', 301564, 269470, 'Fists of the Winter Flame', 301567, 0, 0, + 0, 185, 'Crystal', 'Buffs', 'Damage_Buffs_-_Line_C', 252, '', 0, 0, 1, 0, 0, 'Martial Artist', 'Pen Xan Quest'), + (269475, 'Nano Crystal (Freezing Lancets)', 42449, 269473, 'Freezing Lancets', 45177, 0, 0, 0, 197, 'Crystal', + 'Nukes', 'Shadowlands', 0, '', 0, 0, 1, 3, 0, 'Nano-Technician', 'Pen Xan Quest'), + (269483, 'Nano Crystal (Composite Heavy Artillery)', 301605, 269482, 'Composite Heavy Artillery', 301604, 0, 0, + 0, 182, 'Crystal', 'Buffs', 'Assault_Rifle_Buffs', 212, '', 0, 0, 1, 0, 0, 'Soldier', 'Greedy Shade'), + (269517, 'Nano Crystal (Summoning of Yidira)', 295573, 269516, 'Summoning of Yidira', 295575, 0, 0, 0, 203, + 'Crystal', 'Pet', 'Mezz_Pet', 0, '', 0, 0, 1, 0, 0, 'Meta-Physicist', 'Pen Xan Quest'), + (269843, 'Nano Crystal (Grand Theft Humidity)', 301546, 269842, 'Grand Theft Humidity', 301544, 0, 0, 0, 189, + 'Crystal', 'Drain', 'Nano_Drain_-_Line_B', 856, '', 0, 0, 1, 0, 0, 'Trader', 'Greedy Shade / Pen Xan Quest'), + (269871, 'Nano Crystal (Pet Attention)', 301140, 269869, 'Pet Attention', 301137, 0, 0, 0, 100, 'Crystal', + 'Pet_Buffs', 'General', 0, '', 0, 1, 0, 0, 0, 'Bureaucrat', 'OFAB Store'), + (269880, 'Nano Crystal (Pet Cleanse)', 301139, 269870, 'Pet Cleanse', 301138, 0, 0, 0, 215, 'Crystal', + 'Pet_Buffs', 'General', 0, '', 0, 1, 0, 0, 0, 'Bureaucrat', 'OFAB Store'), + (269909, 'Nano Crystal (Pet Steal Back)', 12258, 269907, 'Pet Steal Back', 16216, 0, 0, 0, 100, 'Crystal', + 'Pet_Buffs', 'General', 0, '', 0, 1, 0, 0, 0, 'Bureaucrat', 'OFAB Store'), + (269910, 'Nano Crystal (Improved Pet Steal Back)', 42450, 269908, 'Improved Pet Steal Back', 16216, 0, 0, 0, 215, + 'Crystal', 'Pet_Buffs', 'General', 0, '', 0, 1, 1, 0, 0, 'Bureaucrat', 'OFAB Store'), + (270235, 'Nano Crystal (Improved Health Plunder)', 42448, 270357, 'Improved Health Plunder', 117914, 0, 0, 0, + 189, 'Crystal', 'Drain', 'Health', 0, '', 0, 0, 0, 0, 0, 'Trader', 'Bronto Burger Quest'), + (270236, 'Nano Crystal (The Great Explorer)', 296691, 268027, 'The Great Explorer', 295518, 0, 0, 0, 165, + 'Crystal', 'Buffs', 'Nano_Resistance_Buffs', 204, '', 0, 0, 0, 0, 0, 'Adventurer', 'Bronto Burger Quest'), + (270237, 'Nano Crystal (Superior Hold Victim)', 42449, 270249, 'Superior Hold Victim', 46275, 0, 0, 0, 184, + 'Crystal', 'Crowd_Control', 'Root', 146, '', 0, 0, 0, 0, 0, 'Agent', 'Bronto Burger Quest'), + (270238, 'Nano Crystal (Improved Rule of One)', 42449, 270250, 'Improved Rule of One', 45178, 0, 0, 0, 190, + 'Crystal', 'Nukes', 'Special', 0, '', 0, 0, 0, 0, 0, 'Bureaucrat', 'Bronto Burger Quest'), + (270239, 'Nano Crystal (Team Health Plan)', 42448, 270349, 'Team Health Plan', 44251, 0, 0, 0, 185, 'Crystal', + 'Combat', 'Team_Healing', 0, '', 0, 0, 0, 0, 0, 'Doctor', 'Bronto Burger Quest'), + (270240, 'Nano Crystal (Greater Fortify)', 42452, 270350, 'Greater Fortify', 100996, 0, 0, 0, 160, 'Crystal', + 'Buffs', 'Absorb_AC_Buffs', 219, '', 0, 0, 0, 0, 0, 'Enforcer', 'Bronto Burger Quest'), + (270241, 'Nano Crystal (Master''s Repairs)', 42448, 270351, 'Master''s Repairs', 44234, 0, 0, 0, 192, 'Crystal', + 'Pet_Combat', 'Pet_Heal', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'Bronto Burger Quest'), + (270242, 'Nano Crystal (Advanced Medical Claim)', 42448, 270352, 'Advanced Medical Claim', 44233, 0, 0, 0, 175, + 'Crystal', 'Buffs', 'Fixer_Short_Heal_Over_Time', 12, '', 0, 0, 0, 0, 0, 'Fixer', 'Bronto Burger Quest'), + (270243, 'Nano Crystal (Enlightened Healing Touch)', 301449, 270353, 'Enlightened Healing Touch', 292054, 0, 0, + 0, 165, 'Crystal', 'Combat', 'Single_Target_Healing', 951, '', 0, 0, 0, 0, 0, 'Martial Artist', + 'Bronto Burger Quest'), + (270244, 'Nano Crystal (Metaing''s Improved Mind Quake)', 42449, 270355, 'Metaing''s Improved Mind Quake', 45177, + 0, 0, 0, 188, 'Crystal', 'Combat', 'Metaphysicist_Mind_Damage_Nano_DeBuffs', 221, '', 0, 0, 0, 0, 0, + 'Meta-Physicist', 'Bronto Burger Quest'), + (270245, 'Nano Crystal (Advanced Fleeting Immunity)', 42452, 270356, 'Advanced Fleeting Immunity', 100996, 0, 0, + 0, 191, 'Crystal', 'Buffs', 'Absorb_AC_Buffs', 219, '', 0, 0, 0, 0, 0, 'Nano-Technician', + 'Bronto Burger Quest'), + (270247, 'Nano Crystal (Full Automatic Targeting)', 301598, 270248, 'Full Automatic Targeting', 301599, 0, 0, 0, + 159, 'Crystal', 'Buffs', 'Add_All_Offence_Buffs', 836, '', 0, 0, 0, 0, 0, 'Soldier', 'Bronto Burger Quest'), + (270432, 'Phasefront Phantom - Beige', 272048, 270431, 'Phasefront Phantom - Beige', 16229, 0, 0, 0, 100, 'Misc', + 'Phasefront', 'Land', 0, 'Phantom', 0, 0, 0, 0, 0, 'General', 'Item Shop/Store'), + (270539, 'Phasefront Phantom - Grey', 271888, 270538, 'Phasefront Phantom - Grey', 16229, 0, 0, 0, 100, 'Misc', + 'Phasefront', 'Land', 0, 'Phantom', 0, 0, 0, 0, 0, 'General', 'Item Shop/Store'), + (270541, 'Phasefront Phantom - Black', 271889, 270540, 'Phasefront Phantom - Black', 271693, 0, 0, 0, 100, + 'Misc', 'Phasefront', 'Land', 0, 'Phantom', 0, 0, 0, 0, 0, 'General', 'Item Shop/Store'), + (270543, 'Phasefront Phantom - Camo', 271890, 270542, 'Phasefront Phantom - Camo', 271693, 0, 0, 0, 100, 'Misc', + 'Phasefront', 'Land', 0, 'Phantom', 0, 0, 0, 0, 0, 'General', 'Item Shop/Store'), + (270545, 'Phasefront Phantom - White', 271891, 270544, 'Phasefront Phantom - White', 16229, 0, 0, 0, 100, 'Misc', + 'Phasefront', 'Land', 0, 'Phantom', 0, 0, 0, 0, 0, 'General', 'Item Shop/Store'), + (270547, 'Phasefront Phantom - Yellow', 271892, 270546, 'Phasefront Phantom - Yellow', 271695, 0, 0, 0, 100, + 'Misc', 'Phasefront', 'Land', 0, 'Phantom', 0, 0, 0, 0, 0, 'General', 'Item Shop/Store'), + (270633, 'Phasefront Ghost - Blue', 271882, 270632, 'Phasefront Ghost - Blue', 16229, 0, 0, 0, 100, 'Misc', + 'Phasefront', 'Land', 0, 'Ghost', 0, 0, 0, 0, 0, 'General', 'Item Shop/Store'), + (270635, 'Phasefront Ghost - Black', 271883, 270634, 'Phasefront Ghost - Black', 271695, 0, 0, 0, 100, 'Misc', + 'Phasefront', 'Land', 0, 'Ghost', 0, 0, 0, 0, 0, 'General', 'Item Shop/Store'), + (270638, 'Hoverboard a texture four useitem', 12258, 270636, 'Phasefront Ghost - Camo', 271693, 0, 0, 0, 100, + 'Misc', 'Phasefront', 'Land', 0, 'Ghost', 0, 0, 0, 0, 0, 'General', 'Item Shop/Store'), + (270642, 'Phasefront Ghost - Yellow', 271885, 270641, 'Phasefront Ghost - Yellow', 271695, 0, 0, 0, 100, 'Misc', + 'Phasefront', 'Land', 0, 'Ghost', 0, 0, 0, 0, 0, 'General', 'Item Shop/Store'), + (270644, 'Phasefront Ghost - White', 271886, 270643, 'Phasefront Ghost - White', 16229, 0, 0, 0, 100, 'Misc', + 'Phasefront', 'Land', 0, 'Ghost', 0, 0, 0, 0, 0, 'General', 'Item Shop/Store'), + (270646, 'Phasefront Wraith X2-45 - Desert', 271896, 270645, 'Phasefront Wraith X2-45 - Desert', 271691, 0, 0, 0, + 1, 'Misc', 'Phasefront', 'Air', 0, 'Wraith', 0, 0, 0, 0, 0, 'General', 'Item Shop/Store'), + (270712, 'Phasefront Wraith X2-45 - Black', 271897, 270711, 'Phasefront Wraith X2-45 - Black', 16236, 0, 0, 0, 1, + 'Misc', 'Phasefront', 'Air', 0, 'Wraith', 0, 0, 0, 0, 0, 'General', 'Item Shop/Store'), + (270715, 'Nano Crystal (Your Enemy''s Enemy is your Friend)', 301545, 270714, + 'Your Enemy''s Enemy is your Friend', 301543, 0, 0, 0, 189, 'Crystal', 'Drain', + 'Health_and_Nano_Over_Time_Drain', 828, '', 0, 0, 1, 0, 1, 'Trader', 'Greedy Shade'), + (270732, 'Phasefront Wraith X2-45 - Camo', 271898, 270731, 'Phasefront Wraith X2-45 - Camo', 271689, 0, 0, 0, 1, + 'Misc', 'Phasefront', 'Air', 0, 'Wraith', 0, 0, 0, 0, 0, 'General', 'Item Shop/Store'), + (270739, 'Phasefront Wraith X2-45 - Urban Camouflage', 271899, 270738, + 'Phasefront Wraith X2-45 - Urban Camouflage', 271690, 0, 0, 0, 1, 'Misc', 'Phasefront', 'Air', 0, 'Wraith', 0, + 0, 0, 0, 0, 'General', 'Item Shop/Store'), + (270748, 'Nano Crystal (Improved Complete Healing)', 301570, 270747, 'Improved Complete Healing', 301568, 0, 0, + 0, 215, 'Crystal', 'Combat', 'Complete_Healing_Line', 282, '', 0, 0, 1, 0, 1, 'Doctor', + 'Dust Brigade Quest Part IV'), + (270765, 'Phasefront Wraith X2-45 - Red', 271901, 270764, 'Phasefront Wraith X2-45 - Red', 271690, 0, 0, 0, 1, + 'Misc', 'Phasefront', 'Air', 0, 'Wraith', 0, 0, 0, 0, 0, 'General', 'Item Shop/Store'), + (270772, 'Nano Crystal (Superior Seed Life)', 42448, 270770, 'Superior Seed Life', 44248, 0, 0, 0, 215, + 'Crystal', 'Combat', 'Team_Healing', 952, '', 0, 0, 1, 0, 1, 'Adventurer', 'Dust Brigade Quest Part IV'), + (270780, 'Phasefront Wraith X2-45 - White', 271900, 270779, 'Phasefront Wraith X2-45 - White', 16236, 0, 0, 0, 1, + 'Misc', 'Phasefront', 'Air', 0, 'Wraith', 0, 0, 0, 0, 0, 'General', 'Item Shop/Store'), + (270782, 'Nano Crystal (True Profession)', 301606, 270778, 'True Profession', 301607, 0, 0, 0, 215, 'Crystal', + 'False_Professions', 'True_Profession', 830, '', 0, 0, 1, 0, 1, 'Agent', 'Dust Brigade Quest Part I'), + (270785, 'Nano Crystal (Motivational Speech: Improved Heroic Measures)', 295508, 270783, + 'Motivational Speech: Improved Heroic Measures', 295510, 0, 0, 0, 215, 'Crystal', 'Buffs', + 'Motivational_SpeechEffect', 234, 'Add_All_Offensive_&_Defensive_Buffs', 0, 0, 1, 0, 1, 'Bureaucrat', + 'Dust Brigade Quest Part I'), + (270789, 'Nano Crystal (Mongo Demolish!)', 301272, 270786, 'Mongo Demolish!', 301263, 0, 0, 0, 215, 'Crystal', + 'Crowd_Control', 'Mongo_Buffs', 188, '', 0, 0, 1, 0, 1, 'Enforcer', 'Dust Brigade Quest Part IV'), + (270791, 'Nano Crystal (Improved Shield of the Obedient Servant)', 42452, 270790, + 'Improved Shield of the Obedient Servant', 20880, 0, 0, 0, 215, 'Crystal', 'Pet_Buffs', + 'Shield_of_the_Obedient_Servant', 831, '', 0, 0, 1, 0, 1, 'Engineer', 'Dust Brigade Quest Part III'), + (270797, 'Nano Crystal (Improved Enervate Imprisonment)', 42450, 270795, 'Improved Enervate Imprisonment', 38911, + 0, 0, 0, 215, 'Crystal', 'Buffs', 'Aura_Damage/Snare_Reduction_Buffs', 529, 'Enervate', 0, 0, 1, 0, 1, 'Keeper', + 'Dust Brigade Quest Part I'), + (270799, 'Nano Crystal (Anvil Fists)', 42450, 270798, 'Anvil Fists', 117896, 0, 0, 0, 215, 'Crystal', 'Buffs', + 'Damage_Buffs_-_Line_A', 4, '', 0, 0, 1, 0, 1, 'Martial Artist', 'Dust Brigade Quest Part I'), + (270801, 'Nano Crystal (Improved Instill With Malign Intent)', 42448, 270800, + 'Improved Instill With Malign Intent', 16207, 0, 0, 0, 215, 'Crystal', 'Pet_Buffs', + 'Meta-Physicist_Pet_Damage_Buffs', 216, '', 0, 0, 1, 0, 1, 'Meta-Physicist', 'Dust Brigade Quest Part IV'), + (270803, 'Nano Crystal (Improved Dark Movement)', 42451, 270802, 'Improved Dark Movement', 16234, 0, 0, 0, 215, + 'Crystal', 'Buffs', 'Major_Evasion_Buffs', 144, '', 0, 0, 1, 0, 1, 'Nano-Technician', + 'Dust Brigade Quest Part IV'), + (270805, 'Nano Crystal (Improved Puncture of the Tarasque)', 42451, 270804, 'Improved Puncture of the Tarasque', + 39247, 0, 0, 0, 215, 'Crystal', 'Buffs', 'Shade_Piercing_Buffs', 546, '', 0, 0, 1, 0, 1, 'Shade', + 'Dust Brigade Quest Part I'), + (270807, 'Nano Crystal (Improved Total Focus)', 42451, 270806, 'Improved Total Focus', 39180, 0, 0, 0, 215, + 'Crystal', 'Buffs', 'Total_Focus', 769, '', 0, 0, 1, 0, 1, 'Soldier', 'Dust Brigade Quest Part III'), + (270809, 'Nano Crystal (Improved Quantum Uncertainty)', 42451, 270808, 'Improved Quantum Uncertainty', 16234, 0, + 0, 0, 215, 'Crystal', 'Buffs', 'Evasion', 0, '', 0, 0, 1, 0, 1, 'Trader', 'Dust Brigade Quest Part IV'), + (270837, 'Phasefront Spectre - Green', 271908, 270836, 'Phasefront Spectre - Green', 271691, 0, 0, 0, 1, 'Misc', + 'Phasefront', 'Air', 0, 'Spectre', 0, 0, 0, 0, 0, 'General', 'Item Shop/Store'), + (270885, 'Phasefront Spectre - Black', 271909, 270884, 'Phasefront Spectre - Black', 271689, 0, 0, 0, 1, 'Misc', + 'Phasefront', 'Air', 0, 'Spectre', 0, 0, 0, 0, 0, 'General', 'Item Shop/Store'), + (270940, 'Phasefront Spectre - White', 271910, 270939, 'Phasefront Spectre - White', 16236, 0, 0, 0, 1, 'Misc', + 'Phasefront', 'Air', 0, 'Spectre', 0, 0, 0, 0, 0, 'General', 'Item Shop/Store'), + (270942, 'Phasefront Spectre - Flames', 271893, 270941, 'Phasefront Spectre - Flames', 271690, 0, 0, 0, 1, + 'Misc', 'Phasefront', 'Air', 0, 'Spectre', 0, 0, 0, 0, 0, 'General', 'Item Shop/Store'), + (270944, 'Phasefront Spectre - Urban Camouflage', 271894, 270943, 'Phasefront Spectre - Urban Camouflage', + 271689, 0, 0, 0, 1, 'Misc', 'Phasefront', 'Air', 0, 'Spectre', 0, 0, 0, 0, 0, 'General', 'Item Shop/Store'), + (270946, 'Phasefront Spectre - Yellow', 271895, 270945, 'Phasefront Spectre - Yellow', 271691, 0, 0, 0, 1, + 'Misc', 'Phasefront', 'Air', 0, 'Spectre', 0, 0, 0, 0, 0, 'General', 'Item Shop/Store'), + (270983, 'Phasefront Banshee - Yellow', 271902, 270982, 'Phasefront Banshee - Yellow', 271691, 0, 0, 0, 1, + 'Misc', 'Phasefront', 'Air', 0, 'Banshee', 0, 0, 0, 0, 0, 'General', 'Item Shop/Store'), + (270985, 'Phasefront Banshee - Black', 271903, 270984, 'Phasefront Banshee - Black', 16236, 0, 0, 0, 1, 'Misc', + 'Phasefront', 'Air', 0, 'Banshee', 0, 0, 0, 0, 0, 'General', 'Item Shop/Store'), + (270987, 'Phasefront Banshee - White', 271904, 270986, 'Phasefront Banshee - White', 16236, 0, 0, 0, 1, 'Misc', + 'Phasefront', 'Air', 0, 'Banshee', 0, 0, 0, 0, 0, 'General', 'Item Shop/Store'), + (270992, 'Phasefront Banshee - Cream', 271905, 270991, 'Phasefront Banshee - Cream', 16236, 0, 0, 0, 1, 'Misc', + 'Phasefront', 'Air', 0, 'Banshee', 0, 0, 0, 0, 0, 'General', 'Item Shop/Store'), + (270994, 'Phasefront Banshee - Flames', 271906, 270993, 'Phasefront Banshee - Flames', 271690, 0, 0, 0, 1, + 'Misc', 'Phasefront', 'Air', 0, 'Banshee', 0, 0, 0, 0, 0, 'General', 'Item Shop/Store'), + (270996, 'Phasefront Banshee - Red', 271907, 270995, 'Phasefront Banshee - Red', 271690, 0, 0, 0, 1, 'Misc', + 'Phasefront', 'Air', 0, 'Banshee', 0, 0, 0, 0, 0, 'General', 'Item Shop/Store'), + (271986, 'Phasefront Ghost - Camo', 271884, 270636, 'Phasefront Ghost - Camo', 271693, 0, 0, 0, 100, 'Misc', + 'Phasefront', 'Land', 0, 'Ghost', 0, 0, 0, 0, 0, 'General', 'Item Shop/Store'), + (272049, 'Phasefront Ghost - Green', 271881, 270327, 'Phasefront Ghost - Green', 271695, 0, 0, 0, 100, 'Misc', + 'Phasefront', 'Land', 0, 'Ghost', 0, 0, 0, 0, 0, 'General', 'Item Shop/Store'), + (272372, 'Nano Crystal (Faster than your Shadow)', 42451, 272371, 'Faster than your Shadow', 16214, 0, 0, 0, 150, + 'Crystal', 'Buffs', 'Runspeed_Buffs', 150, '', 0, 0, 0, 0, 0, 'Shade', 'Bronto Burger Quest'), + (272399, 'Nano Crystal (Wrath)', 42451, 272374, 'Wrath', 39250, 0, 0, 0, 150, 'Crystal', 'Combat', 'Fury', 735, + '', 0, 0, 0, 0, 0, 'Keeper', 'Bronto Burger Quest'), + (273287, 'Nano Crystal (Improved Seed Life)', 42448, 273285, 'Improved Seed Life', 44248, 0, 0, 0, 215, + 'Crystal', 'Combat', 'Team_Healing', 952, '', 0, 0, 1, 0, 1, 'Adventurer', 'Dust Brigade Quest Part I'), + (273289, 'Nano Crystal (Poisonous bite)', 42450, 273288, 'Poisonous Bite', 117896, 0, 0, 0, 215, 'Crystal', + 'Buffs', 'Damage_Buffs_-_Line_A', 4, '', 0, 0, 1, 0, 1, 'Adventurer', 'Dust Brigade Quest Part II'), + (273291, 'Nano Crystal (Improved Vengeance of Nature)', 42452, 273290, 'Improved Vengeance of Nature', 39201, 0, + 0, 0, 215, 'Crystal', 'Buffs', 'Damage_Shield_Upgrades', 243, '', 0, 0, 1, 0, 1, 'Adventurer', + 'Dust Brigade Quest Part III'), + (273295, 'Nano Crystal (Gnat''s Wing)', 301587, 273293, 'Gnat''s Wing', 291164, 0, 0, 0, 215, 'Crystal', 'Buffs', + 'Critical_Increase_Buffs', 182, '', 0, 0, 1, 0, 1, 'Agent', 'Dust Brigade Quest Part IV'), + (273297, 'Nano Crystal (Ruse of Taren - Phase 4)', 301262, 273296, 'Ruse of Taren - Phase 4', 301254, 0, 0, 0, + 215, 'Crystal', 'Buffs', 'Concealment_Buffs', 193, 'Self', 0, 0, 1, 0, 1, 'Agent', + 'Dust Brigade Quest Part III'), + (273299, 'Nano Crystal (Improved Dead Cold)', 42449, 273298, 'Improved Dead Cold', 49686, 0, 0, 0, 215, + 'Crystal', 'Combat', 'DOT_Agent_Strain_A', 9, '', 0, 0, 1, 0, 1, 'Agent', 'Dust Brigade Quest Part II'), + (273302, 'Nano Crystal (CEO Guardian)', 42450, 273300, 'CEO Guardian', 44135, 0, 0, 0, 215, 'Crystal', 'Pets', + 'Robot', 0, '', 0, 0, 1, 0, 1, 'Bureaucrat', 'Dust Brigade Quest Part III'), + (273308, 'Nano Crystal (Pink Slip)', 42449, 273307, 'Pink Slip', 45178, 0, 0, 0, 215, 'Crystal', 'Nukes', + 'Normal', 0, '', 0, 0, 1, 0, 1, 'Bureaucrat', 'Dust Brigade Quest Part II'), + (273314, 'Nano Crystal (Superior Team Health Plan)', 42448, 273312, 'Superior Team Health Plan', 44251, 0, 0, 0, + 215, 'Crystal', 'Combat', 'Team_Healing', 0, '', 0, 0, 1, 0, 1, 'Doctor', 'Dust Brigade Quest Part III'), + (273317, 'Nano Crystal (Improved Team Health Plan)', 42448, 273315, 'Improved Team Health Plan', 44251, 0, 0, 0, + 215, 'Crystal', 'Combat', 'Team_Healing', 0, '', 0, 0, 1, 0, 1, 'Doctor', 'Dust Brigade Quest Part I'), + (273319, 'Nano Crystal (Bone Eater)', 42449, 273318, 'Bone Eater', 16222, 0, 0, 0, 215, 'Crystal', 'Combat', + 'DOT_-_Line_B', 7, '', 0, 0, 1, 0, 1, 'Doctor', 'Dust Brigade Quest Part II'), + (273321, 'Nano Crystal (Superior Fortify)', 42452, 273320, 'Superior Fortify', 100996, 0, 0, 0, 215, 'Crystal', + 'Buffs', 'Absorb_AC_Buffs', 219, '', 0, 0, 1, 0, 1, 'Enforcer', 'Dust Brigade Quest Part II'), + (273323, 'Nano Crystal (Mongo''s Kraken)', 301276, 273322, 'Mongo''s Kraken', 301275, 0, 0, 0, 215, 'Crystal', + 'Buffs', 'HP_Buffs', 151, 'Self', 0, 0, 1, 0, 1, 'Enforcer', 'Dust Brigade Quest Part III'), + (273342, 'Nano Crystal (Empowered Pre-Nullity Cocoon)', 42452, 273341, 'Empowered Pre-Nullity Cocoon', 101018, 0, + 0, 0, 215, 'Crystal', 'Buffs', 'Shadowland_Reflect_Base', 694, '', 0, 0, 1, 0, 1, 'Engineer', + 'Dust Brigade Quest Part I'), + (273345, 'Nano Crystal (Improved Isochronal Sloughing Combat Field)', 42452, 273343, + 'Improved Isochronal Sloughing Combat Field', 38889, 0, 0, 0, 215, 'Crystal', 'Buffs', + 'Special_Attack_Absorber', 768, '', 0, 0, 1, 0, 1, 'Engineer', 'Dust Brigade Quest Part IV'), + (273347, 'Nano Crystal (Engineer Composite Specialist Tradeskills (8 hours))', 42451, 273346, + 'Engineer Composite Specialist Tradeskills (8 hours)', 287091, 0, 0, 0, 215, 'Crystal', 'Buffs', + 'Electrical_Engineering_Buffs', 172, '', 0, 0, 1, 0, 1, 'Engineer', 'Dust Brigade Quest Part II'), + (273351, 'Nano Crystal (Summon Shadowweb Spinner MK XI)', 42450, 273349, 'Summon Shadowweb Spinner MK XI', 16320, + 0, 0, 0, 215, 'Crystal', 'Creation', 'ShadowWeb_Spinner', 0, '', 0, 0, 1, 0, 1, 'Fixer', + 'Dust Brigade Quest Part IV'), + (273354, 'Nano Crystal (Superior Insurance Hack)', 42448, 273352, 'Superior Insurance Hack', 44248, 0, 0, 0, 215, + 'Crystal', 'Buffs', 'Fixer_Short_Heal_Over_Time', 12, '', 0, 0, 1, 0, 1, 'Fixer', + 'Dust Brigade Quest Part III'), + (273356, 'Nano Crystal (Improved Frenzy of Shells)', 42451, 273355, 'Improved Frenzy of Shells', 39257, 0, 0, 0, + 215, 'Crystal', 'Buffs', 'Fixer_Suppressor_Buffs', 253, '', 0, 0, 1, 0, 1, 'Fixer', + 'Dust Brigade Quest Part II'), + (273358, 'Nano Crystal (Luck''s Improved Capricious Consequence)', 42451, 273357, + 'Luck''s Improved Capricious Consequence', 39081, 0, 0, 0, 215, 'Crystal', 'DeBuffs', 'Evasion_DeBuffs', 197, + '', 0, 0, 1, 0, 1, 'Fixer', 'Dust Brigade Quest Part I'), + (273361, 'Nano Crystal (Improved Vengeance of the Immaculate)', 42450, 273359, + 'Improved Vengeance of the Immaculate', 39028, 0, 0, 0, 215, 'Crystal', 'Buffs', + 'Aura_Damage/Snare_Reduction_Buffs', 529, 'Vengance', 0, 0, 1, 0, 1, 'Keeper', 'Dust Brigade Quest Part IV'), + (273364, 'Nano Crystal (Adaptive Ambient Renewal)', 300460, 273362, 'Adaptive Ambient Renewal', 297595, 0, 0, 0, + 215, 'Crystal', 'Buffs', 'Aura_HP_and_NP_Regeneration_Buffs', 527, 'Health', 0, 0, 1, 0, 1, 'Keeper', + 'Dust Brigade Quest Part II'), + (273366, 'Nano Crystal (Improved Guardian of Might)', 42451, 273365, 'Improved Guardian of Might', 39228, 0, 0, + 0, 215, 'Crystal', 'Buffs', 'Strength/Stamina/Agility_Buffs', 539, '', 0, 0, 1, 0, 1, 'Keeper', + 'Dust Brigade Quest Part III'), + (273369, 'Nano Crystal (Team Matrix of Ka)', 301487, 273367, 'Team Matrix of Ka', 301481, 0, 0, 0, 215, + 'Crystal', 'Combat', 'Team_Healing', 952, '', 0, 0, 1, 0, 1, 'Martial Artist', 'Dust Brigade Quest Part IV'), + (273371, 'Nano Crystal (Supreme Kyudo)', 42451, 273370, 'Supreme Kyudo', 16208, 0, 0, 0, 215, 'Crystal', 'Buffs', + 'Martial_Artist_Bow_Buffs', 815, '', 0, 0, 1, 0, 1, 'Martial Artist', 'Dust Brigade Quest Part II'), + (273373, 'Nano Crystal (Unnoticed Strike)', 42451, 273372, 'Unnoticed Strike', 16250, 0, 0, 0, 215, 'Crystal', + 'Buffs', 'Initiative_Buffs', 152, '', 0, 0, 1, 0, 1, 'Martial Artist', 'Dust Brigade Quest Part III'), + (273375, 'Nano Crystal (Healthy Manifestation)', 42448, 273374, 'Healthy Manifestation', 16330, 0, 0, 0, 215, + 'Crystal', 'Pet_Buffs', 'Pet_Heal_Delta', 843, '', 0, 0, 1, 0, 1, 'Meta-Physicist', + 'Dust Brigade Quest Part III'), + (273378, 'Nano Crystal (Creation: Shield of Zset)', 42450, 273376, 'Creation: Shield of Zset', 117943, 0, 0, 0, + 215, 'Crystal', 'Creation', 'Shield_Weapons', 0, '', 0, 0, 1, 0, 1, 'Meta-Physicist', + 'Dust Brigade Quest Part I'), + (273380, 'Nano Crystal (Odin''s Other Eye)', 300515, 273379, 'Odin''s Other Eye', 300517, 0, 0, 0, 215, + 'Crystal', 'Buffs', 'Psychic_and_Intelligence/Nano_Skills_Buffs', 576, '', 0, 0, 1, 0, 1, 'Meta-Physicist', + 'Dust Brigade Quest Part II'), + (273385, 'Nano Crystal (Forget Me!)', 301620, 273382, 'Forget Me!', 301621, 0, 0, 0, 215, 'Crystal', 'Combat', + 'DeTaunt', 842, '', 0, 0, 1, 0, 1, 'Nano-Technician', 'Dust Brigade Quest Part II'), + (273387, 'Nano Crystal (Superior Fleeting Immunity)', 42452, 273386, 'Superior Fleeting Immunity', 100996, 0, 0, + 0, 215, 'Crystal', 'Buffs', 'Absorb_AC_Buffs', 219, '', 0, 0, 1, 0, 1, 'Nano-Technician', + 'Dust Brigade Quest Part I'), + (273389, 'Nano Crystal (Superior Nanobot Shelter)', 301537, 273388, 'Superior Nanobot Shelter', 301539, 0, 0, 0, + 215, 'Crystal', 'Buffs', 'Reflect_Shield', 2, '', 0, 0, 1, 0, 1, 'Nano-Technician', + 'Dust Brigade Quest Part III'), + (273392, 'Nano Crystal (Sneaking Health Drain)', 42448, 273390, 'Sneaking Health Drain', 117914, 0, 0, 0, 215, + 'Crystal', 'Combat', 'Health_Drain', 844, '', 0, 0, 1, 0, 1, 'Shade', 'Dust Brigade Quest Part III'), + (273394, 'Nano Crystal (Improved Prowler)', 42451, 273393, 'Improved Prowler', 39221, 0, 0, 0, 215, 'Crystal', + 'Buffs', 'Agility_Buffs', 195, '', 0, 0, 1, 0, 1, 'Shade', 'Dust Brigade Quest Part IV'), + (273396, 'Nano Crystal (Shadow in the Night)', 42451, 273395, 'Shadow in the Night', 16214, 0, 0, 0, 215, + 'Crystal', 'Buffs', 'Concealment_Buffs', 193, '', 0, 0, 1, 0, 1, 'Shade', 'Dust Brigade Quest Part II'), + (273399, 'Nano Crystal (Total Combat Survival)', 42448, 273398, 'Total Combat Survival', 100998, 0, 0, 0, 215, + 'Crystal', 'Buffs', 'HP_Buffs', 151, '', 0, 0, 1, 0, 1, 'Soldier', 'Dust Brigade Quest Part II'), + (273401, 'Nano Crystal (Augmented Mirror Shield MK V)', 42452, 273400, 'Augmented Mirror Shield MK V', 101018, 0, + 0, 0, 215, 'Crystal', 'Buffs', 'Shadowland_Reflect_Base', 694, 'Self', 0, 0, 1, 0, 1, 'Soldier', + 'Dust Brigade Quest Part IV'), + (273403, 'Nano Crystal (Improved Soldier Clip Junkie)', 42451, 273402, 'Improved Soldier Clip Junkie', 16237, 0, + 0, 0, 215, 'Crystal', 'Buffs', 'Soldier_Full_Auto_Buffs', 281, '', 0, 0, 1, 0, 1, 'Soldier', + 'Dust Brigade Quest Part I'), + (273409, 'Nano Crystal (Divest Damage)', 301556, 273407, 'Divest Damage', 301554, 0, 0, 0, 215, 'Crystal', + 'Drain', 'Damage_Drain', 845, '', 0, 0, 1, 0, 1, 'Trader', 'Dust Brigade Quest Part I'), + (273411, 'Nano Crystal (Improved Health Haggler)', 42448, 273410, 'Improved Health Haggler', 44235, 0, 0, 0, 215, + 'Crystal', 'Transfer', 'Health', 0, 'Target', 0, 0, 1, 0, 1, 'Trader', 'Dust Brigade Quest Part III'), + (273413, 'Nano Crystal (Trader Composite Specialist Tradeskills (8 hours))', 42451, 273412, + 'Trader Composite Specialist Tradeskills (8 hours)', 287091, 0, 0, 0, 215, 'Crystal', 'Buffs:_Tradeskills', + 'Electrical_Engineering_Buffs', 172, '', 0, 0, 1, 0, 1, 'Trader', 'Dust Brigade Quest Part II'), + (273469, 'Phasefront Banshee - Death Rider', 273470, 273468, 'Phasefront Banshee - Death Rider', 271691, 0, 0, 0, + 1, 'Misc', 'Phasefront', 'Air', 0, 'Banshee', 0, 0, 0, 0, 0, 'General', 'Item Shop/Store'), + (273630, 'Nano Crystal (Improved Essence of Behemoth)', 42448, 273629, 'Improved Essence of Behemoth', 100998, 0, + 0, 0, 215, 'Crystal', 'Buffs', 'HP_Buffs', 151, 'Target', 0, 0, 1, 0, 1, 'Enforcer', + 'Dust Brigade Quest Part I'), + (273633, 'Nano Crystal (Workplace Depression)', 42449, 273631, 'Workplace Depression', 45178, 0, 0, 0, 215, + 'Crystal', 'Nukes', 'Special', 0, '', 0, 0, 1, 0, 1, 'Bureaucrat', 'Dust Brigade Quest Part IV'), + (274273, 'Phasefront Phantom - Candy Cane Flyer', 274176, 274272, 'Phasefront Phantom - Candy Cane Flyer', 16229, + 0, 0, 0, 100, 'Misc', 'Phasefront', 'Land', 0, 'Phantom', 0, 0, 0, 0, 0, 'General', 'Item Shop/Store'), + (274372, 'Nano Crystal (Eng: Jamming Tower)', 12225, 274369, 'Jamming Tower', 16232, 0, 0, 0, 1, 'Crystal', + 'PvP', 'Notum_Wars', 0, '', 0, 0, 0, 0, 0, 'Engineer', 'OFAB Store'), + (274374, 'Nano Crystal (Fix: Communication Disruption)', 12227, 274373, 'Communication Disruption', 16232, 0, 0, + 0, 1, 'Crystal', 'PvP', 'Notum_Wars', 0, '', 0, 0, 0, 0, 0, 'Fixer', 'OFAB Store'), + (275006, 'Nano Crystal (Form of Cerberus)', 300903, 275005, 'Form of Cerberus', 300904, 0, 0, 0, 215, 'Crystal', + 'Morphs', 'Wolf', 0, '', 0, 0, 1, 0, 1, 'Adventurer', 'Dust Brigade Quest Part V'), + (275008, 'Nano Crystal (Assassin''s Aimed Shot)', 301578, 275007, 'Assassin''s Aimed Shot', 301579, 0, 0, 0, 215, + 'Crystal', 'Buffs', 'Aimed_Shot_Buffs', 198, '', 0, 0, 1, 0, 1, 'Agent', 'Dust Brigade Quest Part V'), + (275010, 'Nano Crystal (The Choir Fantastic)', 42451, 275009, 'The Choir Fantastic', 39137, 0, 0, 0, 215, + 'Crystal', 'Crowd_Control', 'Charm_Other', 202, 'Short', 0, 0, 1, 0, 1, 'Bureaucrat', + 'Dust Brigade Quest Part V'), + (275013, 'Nano Crystal (Team Improved Life Channeler)', 42448, 275011, 'Team Improved Life Channeler', 39292, 0, + 0, 0, 215, 'Crystal', 'Buffs', 'Doctor_Short_HP_Buffs', 185, '', 0, 0, 1, 0, 1, 'Doctor', + 'Dust Brigade Quest Part V'), + (275015, 'Nano Crystal (Improved Element of Malice)', 42451, 275014, 'Improved Element of Malice', 16230, 0, 0, + 0, 215, 'Crystal', 'Crowd_Control', 'Taunt_Target', 0, '', 0, 0, 1, 0, 1, 'Enforcer', + 'Dust Brigade Quest Part V'), + (275017, 'Nano Crystal (Formula 22)', 42448, 275016, 'Formula 22', 16207, 0, 0, 0, 215, 'Crystal', 'Pet_Buffs', + 'MP_Pet_Initiative_Buffs', 217, '', 0, 0, 1, 0, 1, 'Engineer', 'Dust Brigade Quest Part V'), + (275019, 'Aggressive Staff of Julian Redfire', 156102, 275020, 'Aggressive Construct Empowerment', 38884, 0, 0, + 0, 215, 'Weapon', 'Pet_Buffs', 'Aggressive_Construct_Empowerment', 854, '', 0, 0, 1, 0, 1, 'Meta-Physicist', + 'Dust Brigade Quest Part V'), + (275025, 'Nano Crystal (Izgimmer''s Wealth)', 301619, 275024, 'Izgimmer''s Wealth', 301615, 0, 0, 0, 215, + 'Crystal', 'Combat', 'Nano_Point_Heals', 588, '', 0, 0, 1, 0, 1, 'Nano-Technician', + 'Dust Brigade Quest Part V'), + (275028, 'Nano Crystal (Art of War)', 42451, 275027, 'Art of War', 16195, 0, 0, 0, 215, 'Crystal', 'Buffs', + 'Assault_Rifle_Buffs', 212, '', 0, 0, 1, 0, 1, 'Soldier', 'Dust Brigade Quest Part V'), + (275033, 'Nano Crystal (Divest Skills (Nanite Improved))', 301397, 275030, 'Divest Skills (Nanite Improved)', + 301400, 0, 0, 0, 215, 'Crystal', 'Drain', 'Skill_Transfer_Target_DeBuffs', 135, 'Deprive', 0, 0, 1, 0, 1, + 'Trader', 'Dust Brigade Quest Part V'), + (275041, 'Nano Crystal (Watch Ward)', 42452, 275036, 'Watch Ward', 117961, 0, 0, 0, 215, 'Crystal', 'Buffs', + 'Fortify', 224, '', 0, 0, 1, 0, 1, 'Keeper', 'Dust Brigade Quest Part V'), + (275137, 'Nano Crystal (Firewalled Sync Compressor)', 42450, 275043, 'Firewalled Sync Compressor', 38917, 0, 0, + 0, 215, 'Crystal', 'Buffs', 'Fixer_NCU_Buffs', 257, '', 0, 0, 1, 0, 1, 'Fixer', 'Dust Brigade Quest Part V'), + (275168, 'Nano Crystal (Battle Station Enhanced Pet Warp)', 12225, 275167, 'Battle Station Enhanced Pet Warp', + 38875, 0, 0, 0, 4, 'Crystal', 'Pets', 'Pet_Warp', 0, '', 0, 0, 0, 0, 0, 'General', 'OFAB Store'), + (275706, 'Alien Matrix Alpha Box (Maek Hurtz!)', 275887, 275817, 'Maek Hurtz!', 300909, 275917, 275920, 275706, + 215, 'Crystal', 'Buffs', 'Adventurer_Morph_Buffs', 251, '', 0, 0, 1, 0, 1, 'Adventurer', 'APF S42 Alpha Box'), + (275706, 'Alien Matrix Alpha Box (Way of The Executioner)', 275887, 275822, 'Way of The Executioner', 117896, + 275917, 275920, 275706, 215, 'Crystal', 'Buffs', 'Executioner_Buffs', 242, '', 0, 0, 1, 0, 1, 'Agent', + 'APF S42 Alpha Box'), + (275706, 'Alien Matrix Alpha Box (Malaise of Zeal)', 275887, 275824, 'Malaise of Zeal', 291160, 275917, 275920, + 275706, 215, 'Crystal', 'DeBuffs', 'Initiative_DeBuffs', 186, '', 0, 0, 1, 0, 1, 'Bureaucrat', + 'APF S42 Alpha Box'), + (275706, 'Alien Matrix Alpha Box (Malpractice)', 275887, 275701, 'Malpractice', 301101, 275917, 275920, 275706, + 215, 'Crystal', 'Combat', 'Nuke', 0, '', 0, 0, 1, 0, 1, 'Doctor', 'APF S42 Alpha Box'), + (275706, 'Alien Matrix Alpha Box (Hellish Rage)', 275887, 275830, 'Hellish Rage', 301294, 275917, 275920, 275706, + 215, 'Crystal', 'Buffs', 'Rage', 189, '', 0, 0, 1, 0, 1, 'Enforcer', 'APF S42 Alpha Box'), + (275706, 'Alien Matrix Alpha Box (Ravening M-60)', 275887, 275815, 'Ravening M-60', 44135, 275917, 275920, + 275706, 215, 'Crystal', 'Pet', 'Robotic_Dogs', 0, '', 0, 0, 1, 0, 1, 'Engineer', 'APF S42 Alpha Box'), + (275706, 'Alien Matrix Alpha Box (Greater Preservation Matrix)', 275887, 275679, 'Greater Preservation Matrix', + 44248, 275917, 275920, 275706, 215, 'Crystal', 'Buffs', 'Fixer_Long_Heal_Over_Time', 255, '', 0, 0, 1, 0, 1, + 'Fixer', 'APF S42 Alpha Box'), + (275706, 'Alien Matrix Alpha Box (Imminence of Extermination)', 275887, 275837, 'Imminence of Extermination', + 38900, 275917, 275920, 275706, 215, 'Crystal', 'Buffs', 'Aura_Absorb/Reflect/AMS_Buffs', 528, 'Imminence', 0, 0, + 1, 0, 1, 'Keeper', 'APF S42 Alpha Box'), + (275706, 'Alien Matrix Alpha Box (Matrix of Ka)', 275887, 275698, 'Matrix of Ka', 292055, 275917, 275920, 275706, + 215, 'Crystal', 'Combat', 'Single_Target_Healing', 951, '', 0, 0, 1, 0, 1, 'Martial Artist', + 'APF S42 Alpha Box'), + (275706, 'Alien Matrix Alpha Box (Creation: Asp of Titaniush)', 275887, 275849, 'Creation: Asp of Titaniush', + 117943, 275917, 275920, 275706, 215, 'Crystal', 'Creation', '1H_Blunt_Weapons', 0, '', 0, 0, 1, 0, 1, + 'Meta-Physicist', 'APF S42 Alpha Box'), + (275706, 'Alien Matrix Alpha Box (Creation: Shield of Esa)', 275887, 275852, 'Creation: Shield of Esa', 117943, + 275917, 275920, 275706, 215, 'Crystal', 'Creation', 'Shield_Weapons', 0, '', 0, 0, 1, 0, 1, 'Meta-Physicist', + 'APF S42 Alpha Box'), + (275706, 'Alien Matrix Alpha Box (Garuk''s Improved Viral Assault)', 275887, 275692, + 'Garuk''s Improved Viral Assault', 45190, 275917, 275920, 275706, 215, 'Crystal', 'Nukes', 'Shadowlands', 0, '', + 0, 0, 1, 0, 1, 'Nano-Technician', 'APF S42 Alpha Box'), + (275706, 'Alien Matrix Alpha Box (Nanite Depravation)', 275887, 275839, 'Nanite Depravation', 275813, 275917, + 275920, 275706, 215, 'Crystal', 'Proc', 'Weapon_Effect_Proc', 861, 'Nano_Resist/Evade_Close_Combat_Debuff_Proc', + 862, 0, 1, 0, 1, 'Shade', 'APF S42 Alpha Box'), + (275706, 'Alien Matrix Alpha Box (Basic Nanite Depravation)', 275887, 275841, 'Basic Nanite Depravation', 275813, + 275917, 275920, 275706, 215, 'Crystal', 'Proc', 'Weapon_Effect_Proc', 861, + 'Nano_Resist/Evade_Close_Combat_Debuff_Proc', 862, 0, 1, 0, 1, 'Shade', 'APF S42 Alpha Box'), + (275706, 'Alien Matrix Alpha Box (Improved Precognition)', 275887, 275844, 'Improved Precognition', 16234, + 275917, 275920, 275706, 215, 'Crystal', 'Buffs', 'Major_Evasion_Buffs', 144, '', 0, 0, 1, 0, 1, 'Soldier', + 'APF S42 Alpha Box'), + (275706, 'Alien Matrix Alpha Box (Unstoppable Killer)', 275887, 275846, 'Unstoppable Killer', 117896, 275917, + 275920, 275706, 215, 'Crystal', 'Buffs', 'Damage', 0, 'Target', 0, 0, 1, 0, 1, 'Trader', 'APF S42 Alpha Box'), + (275854, 'Alien Matrix Beta Box (Hide of the Cerberus)', 275889, 275821, 'Hide of the Cerberus', 300907, 275917, + 275921, 275854, 215, 'Crystal', 'Buffs', 'Adventurer_Morph_Buffs', 251, '', 0, 0, 1, 0, 1, 'Adventurer', + 'APF S42 Beta Box'), + (275854, 'Alien Matrix Beta Box (Bullseye)', 275889, 275823, 'Bullseye', 39081, 275917, 275921, 275854, 215, + 'Crystal', 'DeBuffs', 'Evasion_DeBuffs_(Agent)', 868, '', 0, 0, 1, 0, 1, 'Agent', 'APF S42 Beta Box'), + (275854, 'Alien Matrix Beta Box (Demotivational Speech: Dead Man Walking)', 275889, 275826, + 'Demotivational Speech: Dead Man Walking', 39124, 275917, 275921, 275854, 215, 'Crystal', 'DeBuffs', + 'Demotivational_Speeches', 238, 'Max_Nano_DeBuffs', 0, 0, 1, 0, 1, 'Bureaucrat', 'APF S42 Beta Box'), + (275854, 'Alien Matrix Beta Box (Sophisticated Viral Agent)', 275889, 275829, 'Sophisticated Viral Agent', + 301206, 275917, 275921, 275854, 215, 'Crystal', 'Combat', 'DOT_-_Line_A', 6, '', 0, 0, 1, 0, 1, 'Doctor', + 'APF S42 Beta Box'), + (275854, 'Alien Matrix Beta Box (Valiant Challenger to Behemoth)', 275889, 275833, + 'Valiant Challenger to Behemoth', 117926, 275917, 275921, 275854, 215, 'Crystal', 'Buffs', 'Challenger', 5, '', + 0, 0, 1, 0, 1, 'Enforcer', 'APF S42 Beta Box'), + (275854, 'Alien Matrix Beta Box (Intrusive Aura of Slave)', 275889, 275835, 'Intrusive Aura of Slave', 46278, + 275917, 275921, 275854, 215, 'Crystal', 'Pet_Buffs', 'Engineer_Pet_AOE_Snare_Buffs', 288, '', 0, 0, 1, 0, 1, + 'Engineer', 'APF S42 Beta Box'), + (275854, 'Alien Matrix Beta Box (Refactor NCU Matrix)', 275889, 275680, 'Refactor NCU Matrix', 38777, 275917, + 275921, 275854, 215, 'Crystal', 'PvP', 'Hostile_NCU_Duration_Reduction', 0, '', 0, 0, 1, 0, 1, 'Fixer', + 'APF S42 Beta Box'), + (275854, 'Alien Matrix Beta Box (Giant of Swords)', 275889, 275838, 'Giant of Swords', 16288, 275917, 275921, + 275854, 215, 'Crystal', 'Buffs', '2H_Edged_Buffs', 153, '', 0, 0, 1, 0, 1, 'Keeper', 'APF S42 Beta Box'), + (275854, 'Alien Matrix Beta Box (Form of Risan)', 275889, 275700, 'Form of Risan', 101002, 275917, 275921, + 275854, 215, 'Crystal', 'Buffs', 'Armor_Buffs', 3, '', 0, 0, 1, 0, 1, 'Martial Artist', 'APF S42 Beta Box'), + (275854, 'Alien Matrix Beta Box (Touch of Poison)', 275889, 275853, 'Touch of Poison', 117896, 275917, 275921, + 275854, 215, 'Crystal', 'Pet_Buffs', 'Meta-Physicist_Attack_Pet_Damage_Type_Changer', 863, '', 0, 0, 1, 0, 1, + 'Meta-Physicist', 'APF S42 Beta Box'), + (275854, 'Alien Matrix Beta Box (Optic Plague)', 275889, 275697, 'Optic Plague', 39126, 275917, 275921, 275854, + 215, 'Crystal', 'DeBuffs', 'Add_All_Offence_DeBuffs', 13, 'Target', 0, 0, 1, 0, 1, 'Nano-Technician', + 'APF S42 Beta Box'), + (275854, 'Alien Matrix Beta Box (Triple Wall)', 275889, 275843, 'Triple Wall', 39267, 275917, 275921, 275854, + 215, 'Crystal', 'Buffs', 'Multiwield_Buffs', 245, '', 0, 0, 1, 0, 1, 'Shade', 'APF S42 Beta Box'), + (275854, 'Alien Matrix Beta Box (Improved Ranged Energy Weapon Mastery)', 275889, 275905, + 'Improved Ranged Energy Weapon Mastery', 20882, 275917, 275921, 275854, 215, 'Crystal', 'Buffs', + 'Ranged_Energy_Weapon_Buffs', 213, '', 0, 0, 1, 0, 1, 'Soldier', 'APF S42 Beta Box'), + (275854, 'Alien Matrix Beta Box (Your Enemy''s Enemy is your Friend)', 275889, 270714, + 'Your Enemy''s Enemy is your Friend', 301543, 275917, 275921, 275854, 215, 'Crystal', 'Drain', + 'Health_and_Nano_Over_Time_Drain', 828, '', 0, 0, 1, 0, 1, 'Trader', 'APF S42 Beta Box'), + (277425, 'Phasefront Wraith X2-45 - Skull Box', 277471, 277426, 'Phasefront Wraith X2-45 - Skull Box', 271689, 0, + 0, 0, 1, 'Misc', 'Phasefront', 'Air', 0, 'Wraith', 0, 0, 0, 0, 0, 'General', 'Item Shop/Store'), + (277451, 'Spooky Leet Pet (Halloween Leet Series 1)', 254462, 277450, 'Spooky Leet Pet', 289984, 0, 0, 0, 1, + 'Misc', 'Pets', 'Social_Pets', 926, '', 0, 0, 0, 0, 0, 'General', 'Halloween Event'), + (277713, 'Phasefront Ghost - Harvester Oni', 277887, 277712, 'Phasefront Ghost - Harvester Oni', 271695, 0, 0, 0, + 100, 'Misc', 'Phasefront', 'Land', 0, 'Ghost', 0, 0, 0, 0, 0, 'General', 'Item Shop/Store'), + (279341, 'Nano Crystal (Bur: Weekend Volunteer)', 296435, 279340, 'Weekend Volunteer', 296436, 0, 0, 0, 20, + 'Crystal', 'Crowd_Control', 'Fear_-_PVP', 883, '', 0, 1, 0, 0, 0, 'Bureaucrat', 'OFAB Store'), + (279346, 'Nano Crystal (MA: Footsteps of The Master)', 296435, 279345, 'Footsteps of The Master', 296436, 0, 0, + 0, 20, 'Crystal', 'Crowd_Control', 'Fear_-_PVP', 883, '', 0, 1, 0, 0, 0, 'Martial Artist', 'OFAB Store'), + (279350, 'Nano Crystal (Enf: You are Next)', 296435, 279347, 'You are Next', 296436, 0, 0, 0, 20, 'Crystal', + 'Crowd_Control', 'Fear_-_PVP', 883, '', 0, 1, 0, 0, 0, 'Enforcer', 'OFAB Store'), + (279373, 'Nano Crystal (Doc: Tjernberg Soothing Adrenaline)', 12228, 279372, 'Tjernberg Soothing Adrenaline', + 39005, 0, 0, 0, 20, 'Crystal', 'PvP', 'Fear_-_PvP_(Reduce)', 883, '', 0, 1, 0, 0, 0, 'Doctor', 'OFAB Store'), + (279375, 'Nano Crystal (Fix: Wake Up Call)', 12228, 279374, 'Wake Up Call', 39005, 0, 0, 0, 20, 'Crystal', 'PvP', + 'Hostile_NCU_Duration_Reduction', 0, '', 0, 1, 0, 0, 0, 'Fixer', 'OFAB Store'), + (279377, 'Nano Crystal (Fix: Experienced Survivor)', 12228, 279376, 'Experienced Survivor', 39005, 0, 0, 0, 20, + 'Crystal', 'Buffs', 'Fixer_Fear_Immunity', 901, '', 0, 1, 0, 0, 0, 'Fixer', 'OFAB Store'), + (279380, 'Nano Crystal (Keep: Courage Of The Just)', 296411, 279378, 'Courage Of The Just', 296407, 0, 0, 0, 20, + 'Crystal', 'Buffs', 'Keeper_Fear_Immunity', 900, '', 0, 1, 0, 0, 0, 'Keeper', 'OFAB Store'), + (280053, 'Nano Crystal (Trad: Theft Humidity)', 301546, 280050, 'Theft Humidity', 301544, 0, 0, 0, 20, 'Crystal', + 'Drain', 'Nano_Drain_-_Line_B', 856, '', 0, 0, 0, 0, 0, 'Trader', 'OFAB Store'), + (280531, 'Phasefront: Westerlund Loungemaster', 280616, 280530, 'Phasefront: Westerlund Loungemaster', 300668, 0, + 0, 0, 100, 'Misc', 'Phasefront', 'Land', 0, 'Loungemaster', 0, 0, 0, 0, 0, 'General', 'Item Shop/Store'), + (281570, 'Phasefront Classic - Charon', 281575, 281569, 'Phasefront Classic - Charon', 271689, 0, 0, 0, 100, + 'Misc', 'Phasefront', 'Air', 0, 'Misc', 0, 0, 0, 0, 0, 'General', 'Item Shop/Store'), + (281669, 'Phasefront Phantom - The Jubilee Bunny', 281749, 281668, 'Phasefront Phantom - The Jubilee Bunny', + 271695, 0, 0, 0, 100, 'Misc', 'Phasefront', 'Land', 0, 'Phantom', 0, 0, 0, 0, 0, 'General', 'Item Shop/Store'), + (281685, 'Phasefront Phantom - Flaming Eightball', 281750, 281684, 'Phasefront Phantom - Flaming Eightball', + 271695, 0, 0, 0, 100, 'Misc', 'Phasefront', 'Land', 0, 'Phantom', 0, 0, 0, 0, 0, 'General', 'Item Shop/Store'), + (281906, 'Phasefront Phantom - Flaming Eightball', 281750, 281684, 'Phasefront Phantom - Flaming Eightball', + 271695, 0, 0, 0, 100, 'Misc', 'Phasefront', 'Land', 0, 'Phantom', 0, 0, 0, 0, 0, 'General', 'Item Shop/Store'), + (284004, 'Phasefront Chimera - Standard', 284055, 284003, 'Phasefront Chimera - Standard', 271695, 0, 0, 0, 100, + 'Misc', 'Phasefront', 'Land', 0, 'Chimera', 0, 0, 0, 0, 0, 'General', 'Item Shop/Store'), + (284006, 'Phasefront Chimera - Violet', 284056, 284005, 'Phasefront Chimera - Violet', 271695, 0, 0, 0, 100, + 'Misc', 'Phasefront', 'Land', 0, 'Chimera', 0, 0, 0, 0, 0, 'General', 'Item Shop/Store'), + (284062, 'Phasefront Wraith X2-45 - Nosferatu', 283966, 284061, 'Phasefront Wraith X2-45 - Nosferatu', 271689, 0, + 0, 0, 1, 'Misc', 'Phasefront', 'Air', 0, 'Wraith', 0, 0, 0, 0, 0, 'General', 'Item Shop/Store'), + (284713, 'Snowball Fighting Manual v2.1', 37933, 284859, 'Throw Snowball v2.1', 294525, 0, 0, 0, 1, 'Misc', + 'Combat', 'Snowball', 0, '', 0, 0, 0, 0, 0, 'General', 'Christmas Event'), + (285055, 'Phasefront Chimera - Mistletoe Master', 284672, 285054, 'Phasefront Chimera - Mistletoe Master', + 271695, 0, 0, 0, 100, 'Misc', 'Phasefront', 'Land', 0, 'Chimera', 0, 0, 0, 0, 0, 'General', 'Item Shop/Store'), + (285057, 'Winter Leet Pet (Winter Leet Series 1)', 254462, 285056, 'Winter Leet Pet', 289986, 0, 0, 0, 1, 'Misc', + 'Pets', 'Social_Pets', 926, '', 0, 0, 0, 0, 0, 'General', 'Christmas Event'), + (285084, 'Winter Leet Pet (Winter Leet Series 1)', 254462, 285056, 'Winter Leet Pet', 289986, 0, 0, 0, 1, 'Misc', + 'Pets', 'Social_Pets', 926, '', 0, 0, 0, 0, 0, 'General', 'Christmas Event'), + (285681, 'Nano Crystal (Trained Enigma Dog)', 42446, 285678, 'Trained Enigma Dog', 289987, 0, 0, 0, 1, 'Crystal', + 'Pets', 'Social_Pets', 926, '', 0, 0, 0, 0, 0, 'General', 'Enigma Dogs Daily'), + (287041, 'Nano Crystal (Composite Tradeskill Expertise)', 297555, 287040, 'Composite Tradeskill Expertise', + 297550, 0, 0, 0, 25, 'Crystal', 'Buffs_-_Tradeskill', 'Composite', 0, '', 0, 0, 0, 0, 0, 'General', 'RK Store'), + (287043, 'Nano Crystal (Composite Tradeskill Special Expertise (1 hour))', 12226, 287042, + 'Composite Tradeskill Special Expertise (1 hour)', 287090, 0, 0, 0, 25, 'Crystal', 'Buffs_-_Tradeskill_Special', + 'Composite', 0, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (287045, 'Nano Crystal (Composite Medical Expertise (1 hour))', 12226, 287044, + 'Composite Medical Expertise (1 hour)', 287095, 0, 0, 0, 25, 'Crystal', 'Buffs_-_Medical', 'Composite', 0, '', + 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (287047, 'Nano Crystal (Composite Utility Expertise)', 297556, 287046, 'Composite Utility Expertise', 297560, 0, + 0, 0, 25, 'Crystal', 'Buffs_-_Utility', 'Composite', 0, '', 0, 0, 0, 0, 0, 'General', 'RK Store'), + (287060, 'Nano Crystal (Composite Tradeskill Expertise (2 hour))', 42451, 287049, + 'Composite Tradeskill Expertise (2 hour)', 287085, 0, 0, 0, 125, 'Crystal', 'Buffs_-_Tradeskill', 'Composite', + 0, '', 0, 0, 1, 0, 0, 'General', 'No longer drops'), + (287061, 'Nano Crystal (Composite Tradeskill Special Expertise (2 hour))', 42451, 287050, + 'Composite Tradeskill Special Expertise (2 hour)', 287090, 0, 0, 0, 125, 'Crystal', + 'Buffs_-_Tradeskill_Special', 'Composite', 0, '', 0, 0, 1, 0, 0, 'General', 'No longer drops'), + (287062, 'Nano Crystal (Composite Tradeskill Expertise (4 hour))', 42451, 287053, + 'Composite Tradeskill Expertise (4 hour)', 287085, 0, 0, 0, 201, 'Crystal', 'Buffs_-_Tradeskill', 'Composite', + 0, '', 0, 0, 1, 0, 0, 'General', 'No longer drops'), + (287063, 'Nano Crystal (Composite Tradeskill Special Expertise (4 hour))', 42451, 287054, + 'Composite Tradeskill Special Expertise (4 hour)', 287090, 0, 0, 0, 201, 'Crystal', + 'Buffs_-_Tradeskill_Special', 'Composite', 0, '', 0, 0, 1, 0, 0, 'General', 'No longer drops'), + (287064, 'Nano Crystal (Composite Tradeskill Expertise (8 hour))', 42451, 287057, + 'Composite Tradeskill Expertise (8 hour)', 287085, 0, 0, 0, 211, 'Crystal', 'Buffs_-_Tradeskill', 'Composite', + 0, '', 0, 0, 1, 0, 0, 'General', 'No longer drops'), + (287065, 'Nano Crystal (Composite Tradeskill Special Expertise (8 hour))', 42451, 287058, + 'Composite Tradeskill Special Expertise (8 hour)', 287090, 0, 0, 0, 211, 'Crystal', + 'Buffs_-_Tradeskill_Special', 'Composite', 0, '', 0, 0, 1, 0, 0, 'General', 'No longer drops'), + (287066, 'Nano Crystal (Composite Medical Expertise (2 hour))', 42451, 287051, + 'Composite Medical Expertise (2 hour)', 287095, 0, 0, 0, 125, 'Crystal', 'Buffs_-_Medical', 'Composite', 0, '', + 0, 0, 1, 0, 0, 'General', 'No longer drops'), + (287067, 'Nano Crystal (Composite Medical Expertise (4 hour))', 42451, 287055, + 'Composite Medical Expertise (4 hour)', 287095, 0, 0, 0, 201, 'Crystal', 'Buffs_-_Medical', 'Composite', 0, '', + 0, 0, 1, 0, 0, 'General', 'No longer drops'), + (287068, 'Nano Crystal (Composite Medical Expertise (8 hour))', 42451, 287048, + 'Composite Medical Expertise (8 hour)', 287095, 0, 0, 0, 211, 'Crystal', 'Buffs_-_Medical', 'Composite', 0, '', + 0, 0, 1, 0, 0, 'General', 'No longer drops'), + (287161, 'Nano Crystal (Balloons)', 300565, 287160, 'Balloons', 289988, 0, 0, 0, 1, 'Crystal', 'Pets', + 'Social_Pets', 926, '', 0, 0, 0, 0, 0, 'General', 'Birthday Event'), + (287286, 'Phasefront Spectre - Red Star', 287284, 287285, 'Phasefront Spectre - Red Star', 271690, 0, 0, 0, 1, + 'Misc', 'Phasefront', 'Air', 0, 'Spectre', 0, 0, 0, 0, 0, 'General', 'Item Shop/Store'), + (287556, 'Nano Crystal (MA: Zazen Stance)', 301445, 287559, 'Zazen Stance', 301439, 0, 0, 0, 1, 'Crystal', + 'Buffs', 'Martial_Artist_Zazen_Stance', 1058, 'Lost_Eden', 0, 0, 0, 0, 0, 'Martial Artist', 'OFAB Store'), + (287754, 'Nano Crystal (Enf: Charge!)', 301149, 287753, 'Charge!', 301148, 0, 0, 0, 35, 'Crystal', 'Combat', + 'Stun', 1003, '', 0, 0, 0, 0, 0, 'Enforcer', 'OFAB Store'), + (288203, 'Phasefront Loungemaster - The Executive', 288537, 288546, 'Phasefront Loungemaster - The Executive', + 16229, 0, 0, 0, 1, 'Misc', 'Phasefront', 'Land', 0, 'Loungemaster', 0, 0, 0, 0, 0, 'General', + 'Item Shop/Store'), + (288435, 'Phasefront Chimera - Skin''n Bones', 288436, 288434, 'Phasefront Chimera - Skin''n Bones', 271695, 0, + 0, 0, 100, 'Misc', 'Phasefront', 'Land', 0, 'Chimera', 0, 0, 0, 0, 0, 'General', 'Item Shop/Store'), + (288560, 'Terrifying Leet Pet (Halloween Leet Series 2)', 220432, 288561, 'Terrifying Leet Pet', 289985, 0, 0, 0, + 1, 'Misc', 'Pets', 'Social_Pets', 926, '', 0, 0, 0, 0, 0, 'General', 'Halloween Event'), + (288773, 'Premium Nano Crystal (Insight into the Shadowlands)', 296649, 268610, 'Insight into the Shadowlands', + 296641, 0, 0, 0, 1, 'Crystal', 'Buffs', 'Shadowlands_Maps', 1033, '', 0, 0, 1, 0, 0, 'General', 'Tower Store'), + (288775, 'Premium Nano Crystal (L33t Transformation)', 296678, 288774, 'L33t Transformation', 296675, 0, 0, 0, 1, + 'Crystal', 'Pets', 'Polymorph', 0, '', 0, 0, 0, 0, 0, 'General', 'Item Shop'), + (288796, 'Phasefront Banshee - Death Rider', 273470, 288795, 'Phasefront Banshee - Death Rider', 271691, 0, 0, 0, + 1, 'Misc', 'Phasefront', 'Air', 0, 'Banshee', 0, 0, 0, 0, 0, 'General', 'Item Shop/Store'), + (288798, 'Phasefront Wraith X2-45 - Skull Box', 277471, 288799, 'Phasefront Wraith X2-45 - Skull Box', 271689, 0, + 0, 0, 1, 'Misc', 'Phasefront', 'Air', 0, 'Wraith', 0, 0, 0, 0, 0, 'General', 'Item Shop/Store'), + (288800, 'Phasefront Wraith X2-45 - Nosferatu', 283966, 288802, 'Phasefront Wraith X2-45 - Nosferatu', 271689, 0, + 0, 0, 1, 'Misc', 'Phasefront', 'Air', 0, 'Wraith', 0, 0, 0, 0, 0, 'General', 'Item Shop/Store'), + (288803, 'Phasefront Ghost - Harvester Oni', 277887, 288804, 'Phasefront Ghost - Harvester Oni', 271695, 0, 0, 0, + 1, 'Misc', 'Phasefront', 'Land', 0, 'Ghost', 0, 0, 0, 0, 0, 'General', 'Item Shop/Store'), + (288806, 'Phasefront Chimera - Skin''n Bones', 288436, 288807, 'Phasefront Chimera - Skin''n Bones', 271695, 0, + 0, 0, 1, 'Misc', 'Phasefront', 'Land', 0, 'Chimera', 0, 0, 0, 0, 0, 'General', 'Item Shop/Store'), + (288809, 'Phasefront Phantom - Candy Cane Flyer', 274176, 288808, 'Phasefront Phantom - Candy Cane Flyer', 16229, + 0, 0, 0, 1, 'Misc', 'Phasefront', 'Land', 0, 'Phantom', 0, 0, 0, 0, 0, 'General', 'Item Shop/Store'), + (288810, 'Phasefront Chimera - Mistletoe Master', 284672, 288811, 'Phasefront Chimera - Mistletoe Master', + 271695, 0, 0, 0, 1, 'Misc', 'Phasefront', 'Land', 0, 'Chimera', 0, 0, 0, 0, 0, 'General', 'Item Shop/Store'), + (288813, 'Phasefront Phantom - The Jubilee Bunny', 281749, 288812, 'Phasefront Phantom - The Jubilee Bunny', + 271695, 0, 0, 0, 1, 'Misc', 'Phasefront', 'Land', 0, 'Phantom', 0, 0, 0, 0, 0, 'General', 'Item Shop/Store'), + (288815, 'Phasefront Phantom - Flaming Eightball', 281750, 288814, 'Phasefront Phantom - Flaming Eightball', + 271695, 0, 0, 0, 1, 'Misc', 'Phasefront', 'Land', 0, 'Phantom', 0, 0, 0, 0, 0, 'General', 'Item Shop/Store'), + (288817, 'Phasefront Spectre - Red Star', 287284, 288816, 'Phasefront Spectre - Red Star', 271690, 0, 0, 0, 1, + 'Misc', 'Phasefront', 'Air', 0, 'Spectre', 0, 0, 0, 0, 0, 'General', 'Item Shop/Store'), + (288819, 'Phasefront Loungemaster - Maximajack', 284071, 288820, 'Phasefront Loungemaster - Maximajack', 16229, + 0, 0, 0, 1, 'Misc', 'Phasefront', 'Land', 0, 'Loungemaster', 0, 0, 0, 0, 0, 'General', 'Item Shop/Store'), + (289273, 'Snowball Fighting Manual v2.1 (Replica)', 37933, 284859, 'Throw Snowball v2.1', 294525, 0, 0, 0, 1, + 'Misc', 'Combat', 'Snowball', 0, '', 0, 0, 0, 0, 0, 'General', 'Christmas Event'), + (289579, 'Phasefront Loungemaster - Orisky (Unlimited)', 289430, 289419, 'Phasefront Loungemaster - Treeball', + 16229, 0, 0, 0, 1, 'Misc', 'Phasefront', 'Land', 0, 'Loungemaster', 0, 0, 0, 0, 0, 'General', + 'Item Shop/Store'), + (289972, 'Nano Crystal (Termileetz00r)', 42446, 289971, 'Termileetz00r', 289973, 0, 0, 0, 1, 'Crystal', 'Pets', + 'Social_Pets', 926, '', 0, 0, 0, 0, 0, 'General', 'Birthday Event'), + (290063, 'Robotoy Pet (Robotoy Pet Series 1)', 254462, 290062, 'Robotoy Pet Series 1', 290007, 0, 0, 0, 1, + 'Misc', 'Pets', 'Social_Pets', 926, '', 0, 0, 0, 0, 0, 'General', 'Item Shop/Event'), + (290065, 'Premium Nano Crystal (Pronouncement of Magnanimity)', 300654, 290584, 'Pronouncement of Magnanimity', + 300664, 0, 0, 0, 20, 'Crystal', 'Pets', 'Polymorph', 0, '', 0, 0, 0, 0, 0, 'General', 'Item Shop'), + (290121, 'Mr. Wheelie Pet (Mr. Wheelie - Series 1)', 254462, 290122, 'Mr. Wheelie - Series 1', 290948, 0, 0, 0, + 1, 'Misc', 'Pets', 'Social_Pets', 926, '', 0, 0, 0, 0, 0, 'General', 'Item Shop/Event'), + (290474, 'Yalmaha Clio', 281575, 290473, 'Yalmaha Clio', 271689, 0, 0, 0, 100, 'Misc', 'Phasefront', 'Air', 0, + 'Misc', 0, 0, 0, 0, 0, 'General', 'Item Shop/Store'), + (290583, 'Yalmaha Clio', 290478, 290473, 'Yalmaha Clio', 271689, 0, 0, 0, 100, 'Misc', 'Phasefront', 'Air', 0, + 'Misc', 0, 0, 0, 0, 0, 'General', 'Item Shop/Store'), + (290646, 'Heckler Pet (Heckler of Celebration)', 254462, 290645, 'Heckler of Celebration', 290620, 0, 0, 0, 1, + 'Misc', 'Pets', 'Social_Pets', 926, '', 0, 0, 0, 0, 0, 'General', 'Item Shop/Event'), + (293620, 'Phasefront Besom - Sky Sweeper', 293588, 293619, 'Phasefront Besom - Sky Sweeper', 271691, 0, 0, 0, 1, + 'Misc', 'Phasefront', 'Air', 0, 'Misc', 0, 0, 0, 0, 0, 'General', 'Item Shop/Store'), + (293829, 'NipponTech M3H-Rho \Mizuni\ Life-Like Robotic Catgirl Companion', 42446, 293828, + 'NipponTech M3H-Rho \Mizuni\ Life-Like Robotic Catgirl Companion', 293832, 0, 0, 0, 1, 'Misc', 'Pets', + 'Social_Pets', 926, '', 0, 0, 0, 0, 0, 'General', 'Item Shop/Event'), + (293900, 'Nano Crystal (Carlita Desposito)', 294089, 293899, 'Carlita Desposito', 293898, 0, 0, 0, 175, + 'Crystal', 'Pets', 'Support_Pets', 1017, '', 0, 0, 1, 3, 0, 'Bureaucrat', 'Pen Xan Quest'), + (294023, 'Nano Crystal (Throw Snowball v2.2)', 37933, 294174, 'Throw Snowball v2.2', 294525, 0, 0, 0, 1, + 'Crystal', 'Combat', 'Snowball', 0, '', 0, 0, 0, 0, 0, 'General', 'Christmas Event'), + (294055, 'Nano Crystal (Zix-in-a-Box)', 254462, 294056, 'Zix-in-a-Box', 294426, 0, 0, 0, 1, 'Crystal', 'Pets', + 'Social_Pets', 926, '', 0, 0, 0, 0, 0, 'General', 'Christmas Event'), + (294061, 'Nano Crystal (Elfleet Helper)', 254462, 294060, 'Elfleet Helper', 294425, 0, 0, 0, 1, 'Crystal', + 'Pets', 'Social_Pets', 926, '', 0, 0, 0, 0, 0, 'General', 'Christmas Event'), + (294432, 'Phasefront Loungemaster - Koleda (Unlimited)', 294400, 294430, 'Phasefront Loungemaster - Koleda', + 16229, 0, 0, 0, 1, 'Misc', 'Phasefront', 'Land', 0, 'Loungemaster', 0, 0, 0, 0, 0, 'General', + 'Item Shop/Store'), + (295316, 'Mechpuppy Pet (Test Reward Series 1)', 220432, 295315, 'Mechpuppy Pet', 295325, 0, 0, 0, 1, 'Misc', + 'Pets', 'Social_Pets', 926, '', 0, 0, 0, 0, 0, 'General', 'Item Shop/Event'), + (295323, 'Boom Ball Pet (Test Reward Series 1)', 220432, 295322, 'Boom Ball Pet', 295324, 0, 0, 0, 1, 'Misc', + 'Pets', 'Social_Pets', 926, '', 0, 0, 0, 0, 0, 'General', 'Item Shop/Event'), + (295328, 'Sabrekitty Pet (Test Reward Series 1)', 220432, 295327, 'Sabrekitty Pet', 295326, 0, 0, 0, 1, 'Misc', + 'Pets', 'Social_Pets', 926, '', 0, 0, 0, 0, 0, 'General', 'Item Shop/Event'), + (295705, 'Kodaik Velocity IV', 300880, 295704, 'Kodaik Velocity IV', 300878, 0, 0, 0, 100, 'Misc', 'Phasefront', + 'Air', 0, 'Misc', 0, 0, 0, 0, 0, 'General', 'Arete Quest Reward'), + (296035, 'Phasefront Kananmuna', 296097, 296034, 'Phasefront Kananmuna', 271689, 0, 0, 0, 1, 'Misc', + 'Phasefront', 'Air', 0, 'Misc', 0, 0, 0, 0, 0, 'General', 'Item Shop/Store'), + (296514, 'Lil Spider Pet', 254462, 296513, 'Lil Spider Pet', 296531, 0, 0, 0, 1, 'Misc', 'Pets', 'Social_Pets', + 926, '', 0, 0, 0, 0, 0, 'General', 'Item Shop/Event'), + (296633, 'Phasefront Loungemaster - Ndenjese', 296919, 296632, 'Phasefront Loungemaster - Ndenjese', 296919, 0, + 0, 0, 1, 'Misc', 'Phasefront', 'Land', 0, 'Loungemaster', 0, 0, 0, 0, 0, 'General', 'Item Shop/Store'), + (296670, 'Phasefront Sleigh', 296874, 296669, 'Phasefront Sleigh', 297115, 0, 0, 0, 1, 'Misc', 'Phasefront', + 'Air', 0, 'Misc', 0, 0, 0, 0, 0, 'General', 'Item Shop/Store'), + (297333, 'Nano Crystal (Spirit Siphon)', 297344, 297342, 'Spirit Siphon', 297343, 297362, 0, 0, 1, 'Crystal', + 'PvP_(Shade_Nemesis)', 'Lost_Eden', 0, '', 0, 0, 1, 0, 0, 'Shade', 'RK Store'), + (297633, 'Nano Crystal (Restock Special Ammo)', 297631, 297632, 'Restock Special Ammo', 297630, 0, 0, 0, 10, + 'Crystal', 'Creation', 'Siphon_Box', 1036, 'Snare', 145, 0, 0, 0, 0, 'Fixer', 'RK Store'), + (300440, 'Premium Nano Crystal (Summon Buckethead Technodealer)', 300444, 300439, + 'Summon Buckethead Technodealer', 300445, 0, 0, 0, 1, 'Crystal', 'Pets', 'Social_Pets', 926, '', 0, 0, 0, 0, 0, + 'General', 'Item Shop'), + (300454, 'Nano Crystal (Adopted Pet)', 300452, 300453, 'Adopted Pet', 300451, 0, 0, 0, 1, 'Crystal', 'Pets', + 'Social_Pets', 926, '', 0, 0, 0, 0, 0, 'General', 'Item Shop/Event'), + (300507, 'Nano Crystal (MP: Sacrificial Bond)', 300500, 300506, 'Sacrificial Bond', 300502, 0, 0, 0, 100, + 'Crystal', 'Pet', 'Damage_To_Pet', 1024, '', 0, 0, 0, 0, 0, 'Meta-Physicist', 'OFAB Store'), + (300572, 'Nano Crystal (Silvertail)', 295744, 300571, 'Silvertail', 295743, 0, 0, 0, 1, 'Crystal', 'Pets', + 'Social_Pets', 926, '', 0, 0, 0, 0, 0, 'General', 'No longer drops'), + (300802, 'Nano Crystal (Enigma Glade Guardian)', 300810, 300803, 'Enigma Glade Guardian', 300808, 0, 0, 0, 1, + 'Crystal', 'Pets', 'Social_Pets', 926, '', 0, 0, 0, 0, 0, 'General', 'Halloween Event'), + (300805, 'Nano Crystal (Junior Pumpkin-Head)', 300809, 300806, 'Junior Pumpkin-Head', 300807, 0, 0, 0, 1, + 'Crystal', 'Pets', 'Social_Pets', 926, '', 0, 0, 0, 0, 0, 'General', 'Halloween Event'), + (300851, 'Nano Crystal (Gingerleet)', 300856, 300850, 'Gingerleet', 300857, 0, 0, 0, 1, 'Crystal', 'Pets', + 'Social_Pets', 926, '', 0, 0, 0, 0, 0, 'General', 'Christmas Event'), + (300912, 'Nano Crystal (Maek Hurtz!)', 300910, 275817, 'Maek Hurtz!', 300909, 0, 0, 0, 215, 'Crystal', 'Buffs', + 'Adventurer_Morph_Buffs', 251, '', 0, 0, 1, 0, 1, 'Adventurer', 'APF S42 Alpha Box'), + (300913, 'Nano Crystal (Hide of the Cerberus)', 300908, 275821, 'Hide of the Cerberus', 300907, 0, 0, 0, 215, + 'Crystal', 'Buffs', 'Adventurer_Morph_Buffs', 251, '', 0, 0, 1, 0, 1, 'Adventurer', 'APF S42 Beta Box'), + (301082, 'Nano Crystal (Bur: Intensify Stress)', 301178, 222687, 'Intensify Stress', 301081, 0, 0, 0, 215, + 'Crystal', 'DeBuffs', 'Nano_Delta_DeBuffs', 1040, '', 0, 1, 1, 0, 0, 'Bureaucrat', 'OFAB Store'), + (301086, 'Nano Crystal (Malaise of Zeal)', 301085, 275824, 'Malaise of Zeal', 291160, 0, 0, 0, 215, 'Crystal', + 'DeBuffs', 'Initiative_DeBuffs', 186, '', 0, 0, 1, 0, 1, 'Bureaucrat', 'APF S42 Alpha Box'), + (301106, 'Nano Crystal (Malpractice)', 301105, 275701, 'Malpractice', 301101, 0, 0, 0, 215, 'Crystal', 'Combat', + 'Nuke', 0, '', 0, 0, 1, 0, 1, 'Doctor', 'APF S42 Alpha Box'), + (301119, 'Nano Crystal (Keep: Rebirth)', 301115, 301117, 'Rebirth', 301118, 0, 0, 0, 215, 'Crystal', 'Combat', + 'Resurrection_Sickness_Removal', 1045, '', 0, 0, 0, 0, 0, 'Keeper', 'OFAB Store'), + (301144, 'Nano Crystal (Release Me Now!)', 301143, 281239, 'Release Me Now', 291383, 0, 0, 0, 25, 'Crystal', + 'PvP', 'Self_Root/Snare_Resist_Buff', 283, 'Lost_Eden', 0, 1, 0, 0, 0, 'Enforcer', 'OFAB Store'), + (301154, 'Nano Crystal (Keep: Clarion Call)', 301155, 301153, 'Clarion Call', 301152, 0, 0, 0, 35, 'Crystal', + 'Combat', 'Reverse_Knockback', 886, '', 0, 0, 0, 0, 0, 'Keeper', 'OFAB Store'), + (301161, 'Weird Looking Nano Crystal (Smoke Bomb)', 301163, 301160, 'Smoke Bomb', 301162, 0, 0, 0, 200, + 'Crystal', 'PvP_(Shade_Nemesis)', 'Lost_Eden', 0, '', 0, 0, 1, 0, 0, 'Shade', 'Greedy Shade / SL Static'), + (301191, 'Nano Crystal (Sophisticated Viral Agent)', 301190, 275829, 'Sophisticated Viral Agent', 301206, 0, 0, + 0, 215, 'Crystal', 'Combat', 'DOT_-_Line_A', 6, '', 0, 0, 1, 0, 1, 'Doctor', 'APF S42 Beta Box'), + (301289, 'Nano Crystal (Enf: Mongo Break!)', 301272, 301291, 'Mongo Break!', 301263, 0, 0, 0, 190, 'Crystal', + 'Crowd_Control', 'Mongo_Buffs', 188, '', 0, 0, 0, 0, 0, 'Enforcer', 'OFAB Store'), + (301298, 'Nano Crystal (Hellish Rage)', 301297, 275830, 'Hellish Rage', 301294, 0, 0, 0, 215, 'Crystal', 'Buffs', + 'Rage', 189, '', 0, 0, 1, 0, 1, 'Enforcer', 'APF S42 Alpha Box'), + (301421, 'Nano Crystal (Plunder Skills (Nanite Improved))', 301398, 275029, 'Plunder Skills (Nanite Improved)', + 301402, 0, 0, 0, 215, 'Crystal', 'Drain', 'Skill_Transfer_Target_DeBuffs', 136, 'Ransack', 0, 0, 1, 0, 1, + 'Trader', 'Dust Brigade Quest Part V'), + (301446, 'Nano Crystal (Matrix of Ka)', 301450, 275698, 'Matrix of Ka', 292055, 0, 0, 0, 215, 'Crystal', + 'Combat', 'Single_Target_Healing', 951, '', 0, 0, 1, 0, 1, 'Martial Artist', 'APF S42 Alpha Box'), + (301492, 'Nano Crystal (MA: Team Flourishing Heal)', 301486, 301493, 'Team Flourishing Heal', 301480, 0, 0, 0, + 206, 'Crystal', 'Combat', 'Team_Healing', 952, '', 0, 1, 0, 0, 0, 'Martial Artist', 'OFAB Store'), + (301522, 'Nano Crystal (Trad: Minor Industrial Sabotage)', 301513, 301521, 'Minor Industrial Sabotage', 301505, + 0, 0, 0, 85, 'Crystal', 'Drain', 'Add_All_Offence_Drains', 814, '', 0, 0, 0, 0, 0, 'Trader', 'OFAB Store'), + (301526, 'Nano Crystal (Trad: Weak Industrial Sabotage)', 301513, 301525, 'Weak Industrial Sabotage', 301505, 0, + 0, 0, 25, 'Crystal', 'Drain', 'Add_All_Offence_Drains', 814, '', 0, 0, 0, 0, 0, 'Trader', 'OFAB Store'), + (301530, 'Nano Crystal (Trad: Minor Corporate Protection)', 301514, 301529, 'Minor Corporate Protection', 301506, + 0, 0, 0, 85, 'Crystal', 'Drain', 'Add_All_Defence_Drains', 1060, '', 0, 0, 0, 0, 0, 'Trader', 'OFAB Store'), + (301534, 'Nano Crystal (Trad: Weak Corporate Protection)', 301514, 301533, 'Weak Corporate Protection', 301506, + 0, 0, 0, 30, 'Crystal', 'Drain', 'Add_All_Defence_Drains', 1060, '', 0, 0, 0, 0, 0, 'Trader', 'OFAB Store'), + (301542, 'Nano Crystal (Trad: Weak Nanobot Defense)', 301538, 301541, 'Weak Nanobot Defense', 301540, 0, 0, 0, + 63, 'Crystal', 'Combat', 'Damage_to_Nano', 809, '', 0, 0, 1, 0, 0, 'Trader', 'OFAB Store'), + (301594, 'Nano Crystal (Shad: Winding Serpent)', 301592, 301593, 'Winding Serpent', 295511, 0, 0, 0, 50, + 'Crystal', 'PvP', 'Add_All_Defense_Buffs', 1002, 'Lost_Eden', 0, 1, 0, 0, 0, 'Shade', 'OFAB Store'), + (301601, 'Nano Crystal (Keep: Punisher of the Wicked)', 301598, 301602, 'Punisher of the Wicked', 301599, 0, 0, + 0, 106, 'Crystal', 'Buffs', 'Add_All_Offence_Buffs', 836, '', 0, 1, 0, 0, 0, 'Keeper', 'OFAB Store'), + (301662, 'Nano Crystal (Kizzermole Gumbaba)', 301681, 301663, 'Kizzermole Gumbaba', 301682, 0, 0, 0, 1, + 'Crystal', 'Pets', 'Social_Pets', 926, '', 0, 0, 0, 0, 0, 'General', 'Halloween Event'), + (301668, 'Yalmaha XL - 29478', 38023, 301669, 'Yalmaha XL - 29478', 16236, 0, 0, 0, 1, 'Misc', 'Phasefront', + 'Air', 0, 'Misc', 0, 0, 0, 0, 0, 'General', 'Item Shop/Store'), + (301671, 'Yalmaha - 29500 - The Adaga', 203497, 301670, 'Yalmaha - 29500 - The Adaga', 271691, 0, 0, 0, 1, + 'Misc', 'Phasefront', 'Air', 0, 'Misc', 0, 0, 0, 0, 0, 'General', 'Item Shop/Store'), + (301673, 'Yalmaha - 29500 - The Stiletto', 203498, 301672, 'Yalmaha - 29500 - The Stiletto', 271696, 0, 0, 0, 1, + 'Misc', 'Phasefront', 'Air', 0, 'Misc', 0, 0, 0, 0, 0, 'General', 'Item Shop/Store'), + (301701, 'Yalmaha - 29500 - The Adaga', 203497, 301700, 'Yalmaha - 29500 - The Adaga', 271691, 0, 0, 0, 1, + 'Misc', 'Phasefront', 'Air', 0, 'Misc', 0, 0, 0, 0, 0, 'General', 'Item Shop/Store'), + (301836, 'Nano Crystal (Adv: A Return to Form)', 301837, 301835, 'A Return to Form', 293904, 0, 0, 0, 1, + 'Crystal', 'Morphs', 'Polymorph', 223, '', 0, 1, 0, 0, 0, 'Adventurer', 'OFAB Store'), + (301839, 'Nano Crystal (Agt: Two Left Feet)', 301840, 301838, 'Two Left Feet', 301841, 0, 0, 0, 215, 'Crystal', + 'PvP', 'Runspeed_Debuff', 786, '', 0, 1, 1, 0, 1, 'Agent', 'OFAB Store'), + (301846, 'Nano Crystal (Doc: Rapid Palsy)', 301085, 301845, 'Rapid Palsy', 291160, 0, 0, 0, 145, 'Crystal', + 'DeBuffs', 'Initiative_DeBuffs', 186, 'Unbreakable', 0, 1, 0, 0, 0, 'Doctor', 'OFAB Store'), + (301854, 'Nano Crystal (Enf: Element of Impact)', 42450, 301853, 'Element of Impact', 39028, 0, 0, 0, 220, + 'Crystal', 'Buffs', 'Damage_Change_Buffs', 597, '', 0, 0, 1, 4, 0, 'Enforcer', 'OFAB Store'), + (301856, 'Nano Crystal (Eng: Predator M-30)', 12258, 301855, 'Predator M-30', 44135, 0, 0, 0, 150, 'Crystal', + 'Pet', 'Robotic_Dogs', 0, '', 0, 0, 1, 2, 0, 'Engineer', 'OFAB Store'), + (301860, 'Nano Crystal (Fix: Vanish into the Digital Void)', 300952, 301859, 'Vanish into the Digital Void', + 300954, 0, 0, 0, 205, 'Crystal', 'Teleport', 'Self_Grid', 0, '', 0, 0, 1, 0, 0, 'Fixer', 'OFAB Store'), + (301863, 'Nano Crystal (Fix: Expeditious Evacuation)', 300953, 301861, 'Expeditious Evacuation', 300955, 0, 0, 0, + 205, 'Crystal', 'Teleport', 'Team_Grid', 0, '', 0, 0, 1, 0, 0, 'Fixer', 'OFAB Store'), + (301868, 'Nano Crystal (Fix: Restock Ammo (Level OP-CCXL))', 42450, 301867, 'Restock Ammo (Level OP-CCXL)', + 301866, 0, 0, 0, 150, 'Crystal', 'Creation', 'Ammo', 0, '', 0, 1, 0, 0, 0, 'Fixer', 'OFAB Store'), + (301889, 'Nano Crystal (MP: Induced Apathy)', 42448, 301888, 'Induced Apathy', 46276, 0, 0, 0, 200, 'Crystal', + 'Combat', 'Pet_Buff', 683, 'Snare', 145, 0, 1, 0, 0, 'Meta-Physicist', 'OFAB Store'), + (301896, 'Nano Crystal (Shad: Dissolving Vitality)', 42448, 301895, 'Dissolving Vitality', 117909, 0, 0, 0, 100, + 'Crystal', 'Combat', 'Health_Drain', 844, '', 0, 0, 0, 0, 0, 'Shade', 'OFAB Store'), + (301898, 'Nano Crystal (Sol: Adrenaline Rush)', 301164, 301897, 'Adrenaline Rush', 301168, 0, 0, 0, 76, + 'Crystal', 'Combat', 'Drain_Heal', 1051, '', 0, 0, 0, 0, 0, 'Soldier', 'OFAB Store'), + (301900, 'Nano Crystal (Trad: Sudden Diversion)', 42449, 301899, 'Sudden Diversion', 46271, 0, 0, 0, 175, + 'Crystal', 'Crowd_Control', 'Mezz', 147, '', 0, 0, 1, 3, 0, 'Trader', 'OFAB Store'), + (301937, 'Nano Crystal (MA: Irrational Grudge)', 42451, 301936, 'Irrational Grudge', 16230, 0, 0, 0, 195, + 'Crystal', 'Crowd_Control', 'Taunt', 0, '', 0, 1, 0, 0, 0, 'Martial Artist', 'OFAB Store'), + (302076, 'Nano Crystal (NT: Nanobot Aegis)', 301537, 302074, 'Nanobot Aegis', 301539, 0, 0, 0, 215, 'Crystal', + 'Buffs', 'Reflect_Shield', 2, '', 0, 0, 1, 0, 0, 'Nano-Technician', 'OFAB Store'), + (302145, 'Nano Crystal (Bur: Inefficient Nanobot Control)', 301085, 302142, 'Inefficient Nanobot Control', + 291160, 0, 0, 0, 100, 'Crystal', 'DeBuffs', 'General_Projectile_AC_DeBuffs', 132, '', 0, 1, 0, 0, 0, + 'Bureaucrat', 'OFAB Store'), + (302146, 'Nano Crystal (Bur: Inefficient Arm Movements)', 301085, 302143, 'Inefficient Arm Movements', 291160, 0, + 0, 0, 100, 'Crystal', 'DeBuffs', 'General_Projectile_AC_DeBuffs', 132, '', 0, 1, 0, 0, 0, 'Bureaucrat', + 'OFAB Store'), + (302151, 'Nano Crystal (Bur: Wasteful Arm Movements)', 301085, 302150, 'Wasteful Arm Movements', 291160, 0, 0, 0, + 200, 'Crystal', 'DeBuffs', 'General_Radiation_AC_DeBuffs', 133, '', 0, 1, 0, 0, 0, 'Bureaucrat', 'OFAB Store'), + (302153, 'Nano Crystal (Bur: Wasteful Nanobot Control)', 301085, 302152, 'Wasteful Nanobot Control', 291160, 0, + 0, 0, 200, 'Crystal', 'DeBuffs', 'General_Radiation_AC_DeBuffs', 133, '', 0, 1, 0, 0, 0, 'Bureaucrat', + 'OFAB Store'), + (302159, 'Nano Crystal (Composite Martial Prowess Expertise)', 12226, 302158, + 'Composite Martial Prowess Expertise', 302157, 0, 0, 0, 25, 'Crystal', 'Buffs', 'Deflect_Buffs', 98, '', 0, 0, + 0, 0, 0, 'General', 'RK Store'), + (302189, 'Nano Crystal (MP: Improved Anticipation of Retaliation)', 42451, 302188, + 'Improved Anticipation of Retaliation', 16234, 0, 0, 0, 200, 'Crystal', 'Buffs', 'Major_Evasion_Buffs', 144, '', + 0, 0, 1, 0, 1, 'Meta-Physicist', 'OFAB Store'), + (302215, 'Nano Crystal (Dragon Scales)', 12260, 302214, 'Dragon Scales', 101011, 0, 0, 0, 125, 'Crystal', + 'Buffs', 'Fortify', 224, '', 0, 1, 0, 0, 0, 'Adventurer', 'RK Store'), + (302218, 'Nano Crystal (Adv: Kin of the Tarasque)', 42452, 302217, 'Kin of the Tarasque', 101011, 0, 0, 0, 200, + 'Crystal', 'Buffs', 'Fortify', 224, '', 0, 1, 1, 4, 0, 'Adventurer', 'OFAB Store'), + (302221, 'Nano Crystal (Gift of the Twig)', 12260, 302220, 'Gift of the Twig', 236675, 0, 0, 0, 125, 'Crystal', + 'Buffs', 'Fortify', 224, '', 0, 1, 1, 0, 0, 'Adventurer', 'RK Store'), + (302224, 'Nano Crystal (Adv: Boon of the Enigma)', 42452, 302223, 'Boon of the Enigma', 236675, 0, 0, 0, 200, + 'Crystal', 'Buffs', 'Fortify', 224, '', 0, 1, 1, 4, 0, 'Adventurer', 'OFAB Store'), + (302227, 'Nano Crystal (Furry Precision)', 12260, 302226, 'Furry Precision', 101005, 0, 0, 0, 125, 'Crystal', + 'Buffs', 'Fortify', 224, '', 0, 1, 0, 0, 0, 'Adventurer', 'Mission Reward'), + (302230, 'Nano Crystal (Adv: Squeaking from the Darkness)', 42452, 302229, 'Squeaking from the Darkness', 101005, + 0, 0, 0, 200, 'Crystal', 'Buffs', 'Fortify', 224, '', 0, 1, 1, 4, 0, 'Adventurer', 'OFAB Store'), + (302233, 'Nano Crystal (Lupine Agility)', 12260, 302232, 'Lupine Agility', 101014, 0, 0, 0, 125, 'Crystal', + 'Buffs', 'Fortify', 224, '', 0, 1, 0, 0, 0, 'Adventurer', 'RK Store'), + (302237, 'Nano Crystal (Adv: Lycanthropic Dexterity)', 42452, 302235, 'Lycanthropic Dexterity', 101014, 0, 0, 0, + 200, 'Crystal', 'Buffs', 'Fortify', 224, '', 0, 1, 1, 4, 0, 'Adventurer', 'OFAB Store'), + (302241, 'Nano Crystal (Feline Ferocity)', 12260, 302240, 'Feline Ferocity', 101009, 0, 0, 0, 125, 'Crystal', + 'Buffs', 'Fortify', 224, '', 0, 1, 0, 0, 0, 'Adventurer', 'RK Store'), + (302244, 'Nano Crystal (Adv: Claws of the Magal)', 42452, 302243, 'Claws of the Magal', 101009, 0, 0, 0, 200, + 'Crystal', 'Buffs', 'Fortify', 224, '', 0, 1, 1, 4, 0, 'Adventurer', 'OFAB Store'), + (302248, 'Nano Crystal (Bur: Droid Pressure Matrix)', 42448, 302247, 'Droid Pressure Matrix', 117931, 0, 0, 0, + 200, 'Crystal', 'General', 'Pet_Buff', 683, '', 0, 0, 1, 0, 0, 'Bureaucrat', 'OFAB Store'), + (302255, 'Nano Crystal (Eng: Sedative Injectors)', 42448, 302254, 'Sedative Injectors', 46276, 0, 0, 0, 200, + 'Crystal', 'Combat', 'Pet_Buff', 683, 'Snare', 145, 0, 1, 0, 0, 'Engineer', 'OFAB Store'), + (302258, 'Nano Crystal (MP: Eye of the Tigress)', 12226, 302257, 'Eye of the Tigress', 16208, 0, 0, 0, 50, + 'Crystal', 'Buffs', 'Martial_Artist_Bow_Buffs', 815, '', 0, 0, 1, 0, 0, 'Meta-Physicist', 'OFAB Store'), + (302275, 'Nano Crystal (NT: Izgimmer''s Blessing)', 42451, 302274, 'Izgimmer''s Blessing', 16308, 0, 0, 0, 200, + 'Crystal', 'Buffs', 'Matter_Creation_Buffs', 159, '', 0, 0, 1, 0, 0, 'Nano-Technician', 'OFAB Store'), + (302289, 'Nano Crystal (Trad: Shutdown Skills)', 12226, 302288, 'Shutdown Skills', 117915, 0, 0, 0, 20, + 'Crystal', 'DeBuffs', 'Trader_Shutdown_Skill_Debuffs', 889, '', 0, 0, 0, 0, 0, 'Trader', 'OFAB Store'), + (302291, 'Nano Crystal (Trad: Take the Bait)', 12226, 302290, 'Take the Bait', 117915, 0, 0, 0, 20, 'Crystal', + 'DeBuffs', 'Trader_Shutdown_Skill_Debuffs', 890, '', 0, 0, 0, 0, 0, 'Trader', 'OFAB Store'), + (302354, 'Nano Crystal (Composite Heavy Artillery)', 301605, 269482, 'Composite Heavy Artillery', 301604, 0, 0, + 0, 182, 'Crystal', 'Buffs', 'Assault_Rifle_Buffs', 212, '', 0, 0, 1, 0, 0, 'Soldier', 'Greedy Shade'), + (302355, 'Nano Crystal (Fists of the Winter Flame)', 301564, 269470, 'Fists of the Winter Flame', 301567, 0, 0, + 0, 185, 'Crystal', 'Buffs', 'Damage_Buffs_-_Line_C', 252, '', 0, 0, 1, 0, 0, 'Martial Artist', 'Pen Xan Quest'), + (302356, 'Nano Crystal (Minor Nanobot Defense)', 301538, 263306, 'Minor Nanobot Defense', 301540, 0, 0, 0, 126, + 'Crystal', 'Combat', 'Damage_to_Nano', 809, '', 0, 0, 1, 0, 0, 'Trader', 'Greedy Shade'), + (302357, 'Nano Crystal (My Enemy''s Enemy is my Friend)', 301545, 263293, 'My Enemy''s Enemy is my Friend', + 301543, 0, 0, 0, 126, 'Crystal', 'Drain', 'Health_and_Nano_Over_Time_Drain', 828, '', 0, 0, 1, 0, 0, 'Trader', + 'Greedy Shade'), + (302358, 'Nano Crystal (Nanobot Defense)', 301538, 260761, 'Nanobot Defense', 301540, 0, 0, 0, 210, 'Crystal', + 'Combat', 'Damage_to_Nano', 809, '', 0, 0, 1, 0, 0, 'Trader', 'Greedy Shade'), + (302359, 'Nano Crystal (Notum Overflow Injector)', 301611, 263266, 'Notum Overflow Injector', 291162, 0, 0, 0, + 126, 'Crystal', 'Buffs', 'Nano_Damage_Multiplier_Buffs', 1062, '', 0, 0, 1, 0, 0, 'Nano-Technician', + 'Scheol Yuttos Quest'), + (302360, 'Nano Crystal (Poisoned Wounds)', 301215, 263282, 'Poisoned Wounds', 301222, 0, 0, 0, 126, 'Crystal', + 'Combat', 'DOT_-_Line_B', 7, '', 0, 0, 1, 0, 0, 'Doctor', 'Scheol Yuttos Quest'), + (302361, 'Nano Crystal (Simple Viral Agent)', 301210, 263281, 'Simple Viral Agent', 301207, 0, 0, 0, 126, + 'Crystal', 'Combat', 'DOT_-_Line_A', 6, '', 0, 0, 1, 0, 0, 'Doctor', 'Scheol Scientists Quest'), + (302362, 'Nano Crystal (Superior Notum Overflow Injector)', 301611, 260758, 'Superior Notum Overflow Injector', + 291162, 0, 0, 0, 210, 'Crystal', 'Buffs', 'Nano_Damage_Multiplier_Buffs', 1062, '', 0, 0, 1, 0, 0, + 'Nano-Technician', 'Inferno Anansi Quest'), + (302388, 'Nano Crystal (Fix: NCU Vulnerability Exploitation)', 42450, 302412, 'NCU Vulnerability Exploitation', + 16216, 0, 0, 0, 215, 'Crystal', 'DeBuffs', 'Hostile_NCU_Wipe', 0, '', 0, 0, 1, 0, 1, 'Fixer', 'OFAB Store'), + (302396, 'Nano Crystal (Sol: Fragmentation Grenades)', 42448, 302395, 'Fragmentation Grenades', 16314, 0, 0, 0, + 100, 'Crystal', 'Combat', 'AoE_Taunt', 683, '', 0, 0, 0, 0, 0, 'Soldier', 'OFAB Store'), + (302400, 'Nano Crystal (Sol: Notum-Charged Grenades)', 42448, 302399, 'Notum-Charged Grenades', 101016, 0, 0, 0, + 200, 'Crystal', 'Combat', 'AoE_Taunt', 683, '', 0, 0, 0, 0, 0, 'Soldier', 'OFAB Store'), + (302403, 'Nano Crystal (Trad: Subprime Vitality Mortgage)', 301164, 302401, 'Subprime Vitality Mortgage', 301168, + 0, 0, 0, 100, 'Crystal', 'Combat', 'Drain_Heal', 1051, '', 0, 0, 0, 0, 0, 'Trader', 'OFAB Store'), + (302413, 'Nano Crystal (Agt: Two Left Feet)', 301840, 301838, 'Two Left Feet', 301841, 0, 0, 0, 215, 'Crystal', + 'PvP', 'Runspeed_Debuff', 786, '', 0, 1, 1, 0, 1, 'Agent', 'OFAB Store'), + (302415, 'Nano Crystal (Furry Precision)', 12260, 302226, 'Furry Precision', 101005, 0, 0, 0, 125, 'Crystal', + 'Buffs', 'Fortify', 224, '', 0, 1, 0, 0, 0, 'Adventurer', 'Mission Reward'), + (302549, 'Nano Crystal (Mantis Hatchling)', 302546, 302548, 'Mantis Hatchling', 302547, 0, 0, 0, 1, 'Crystal', + 'Pets', 'Social_Pets', 926, '', 0, 0, 0, 0, 0, 'General', 'Birthday Event'), + (303128, 'Nano Crystal (Dr. Drill)', 303126, 303127, 'Calling Dr. Drill', 303125, 0, 0, 0, 1, 'Crystal', 'Pets', + 'Social_Pets', 926, '', 0, 0, 0, 0, 0, 'General', 'Item Shop (Subscription reward)'), + (303147, 'Nano Crystal (Buckethead Techno-scavenger Costume)', 303144, 303146, + 'Buckethead Techno-Scavenger Costume', 303143, 0, 0, 0, 1, 'Crystal', 'Pets', 'Polymorph', 0, '', 0, 0, 0, 0, 0, + 'General', 'Item Shop/Event'), + (303381, 'Premium Nano Crystal (L33t Transformation)', 296678, 288774, 'L33t Transformation', 296675, 0, 0, 0, 1, + 'Crystal', 'Pets', 'Polymorph', 0, '', 0, 0, 0, 0, 0, 'General', 'Item Shop'), + (303382, 'Premium Nano Crystal (Pronouncement of Magnanimity)', 300654, 290584, 'Pronouncement of Magnanimity', + 300664, 0, 0, 0, 20, 'Crystal', 'Pets', 'Polymorph', 0, '', 0, 0, 0, 0, 0, 'General', 'Item Shop'), + (303467, 'Premium Nano Crystal (L33t Transformation)', 296678, 288774, 'L33t Transformation', 296675, 0, 0, 0, 1, + 'Crystal', 'Pets', 'Polymorph', 0, '', 0, 0, 0, 0, 0, 'General', 'Item Shop'), + (303468, 'Spooky Leet Pet (Halloween Leet Series 1)', 254462, 277450, 'Spooky Leet Pet', 289984, 0, 0, 0, 1, + 'Misc', 'Pets', 'Social_Pets', 926, '', 0, 0, 0, 0, 0, 'General', 'Halloween Event'), + (303469, 'Terrifying Leet Pet (Halloween Leet Series 2)', 220432, 288561, 'Terrifying Leet Pet', 289985, 0, 0, 0, + 1, 'Misc', 'Pets', 'Social_Pets', 926, '', 0, 0, 0, 0, 0, 'General', 'Halloween Event'), + (303470, 'Winter Leet Pet (Winter Leet Series 1)', 254462, 285056, 'Winter Leet Pet', 289986, 0, 0, 0, 1, 'Misc', + 'Pets', 'Social_Pets', 926, '', 0, 0, 0, 0, 0, 'General', 'Christmas Event'), + (303473, 'Premium Nano Crystal (Pronouncement of Magnanimity)', 300654, 290584, 'Pronouncement of Magnanimity', + 300664, 0, 0, 0, 1, 'Crystal', 'Pets', 'Polymorph', 0, '', 0, 0, 0, 0, 0, 'General', 'Item Shop'), + (29358, 'Nano Crystal (Pistol Mastery)', 12226, 29246, 'Pistol Mastery', 16310, 147958, 146458, 149458, 24, + 'Crystal', 'Buffs', 'Pistol_Buffs', 199, '', 0, 1, 0, 0, 0, 'Doctor', 'RK Store'), + (29358, 'Nano Crystal (Pistol Mastery)', 12226, 29246, 'Pistol Mastery', 16310, 147958, 146458, 149458, 24, + 'Crystal', 'Buffs', 'Pistol_Buffs', 199, '', 0, 1, 0, 0, 0, 'Engineer', 'RK Store'), + (269880, 'Nano Crystal (Pet Cleanse)', 301139, 269870, 'Pet Cleanse', 301138, 0, 0, 0, 215, 'Crystal', + 'Pet_Combat', 'General', 0, '', 0, 1, 0, 0, 0, 'Engineer', 'OFAB Store'), + (269910, 'Nano Crystal (Improved Pet Steal Back)', 42450, 269908, 'Improved Pet Steal Back', 16216, 0, 0, 0, 215, + 'Crystal', 'Pet_Combat', 'General', 0, '', 0, 1, 1, 0, 0, 'Engineer', 'OFAB Store'), + (269871, 'Nano Crystal (Pet Attention)', 301140, 269869, 'Pet Attention', 301137, 0, 0, 0, 100, 'Crystal', + 'Pet_Combat', 'General', 0, '', 0, 1, 0, 0, 0, 'Engineer', 'OFAB Store'), + (269909, 'Nano Crystal (Pet Steal Back)', 12258, 269907, 'Pet Steal Back', 16216, 0, 0, 0, 100, 'Crystal', + 'Pet_Combat', 'General', 0, '', 0, 1, 0, 0, 0, 'Engineer', 'OFAB Store'), + (221183, 'Weird Looking Nano Crystal (Semi-Sentient Augmentation Cloud)', 301242, 222838, + 'Improved Semi-Sentient Augmentation Cloud', 291157, 0, 0, 0, 169, 'Crystal', 'Buffs', 'Damage_Buffs_-_Line_A', + 4, '', 0, 0, 0, 0, 0, 'Fixer', 'Greedy Shade / SL Static'), + (221759, 'Weird Looking Nano Crystal (Neural Interfaced Augmentation Cloud)', 301242, 222837, + 'Improved Neural Interfaced Augmentation Cloud', 291157, 0, 0, 0, 159, 'Crystal', 'Buffs', + 'Damage_Buffs_-_Line_A', 4, '', 0, 0, 0, 0, 0, 'Fixer', 'Greedy Shade / SL Static'), + (220604, 'Weird Looking Nano Crystal (Augmentation Cloud)', 301242, 222835, 'Improved Augmentation Cloud', + 291157, 0, 0, 0, 106, 'Crystal', 'Buffs', 'Damage_Buffs_-_Line_A', 4, '', 0, 0, 0, 0, 0, 'Fixer', + 'Greedy Shade / SL Static'), + (221129, 'Weird Looking Nano Crystal (Hasty Augmentation Cloud)', 301242, 222833, + 'Improved Hasty Augmentation Cloud', 291157, 0, 0, 0, 43, 'Crystal', 'Buffs', 'Damage_Buffs_-_Line_A', 4, '', 0, + 0, 0, 0, 0, 'Fixer', 'Greedy Shade / SL Static'), + (210332, 'Nano Crystal (Fervor of the Zealot)', 301597, 210331, 'Fervor of the Zealot', 301595, 0, 0, 0, 196, + 'Crystal', 'Buffs', 'Fast_Attack_Buffs', 519, '', 0, 0, 0, 0, 0, 'Keeper', 'RK Dyna'), + (210330, 'Nano Crystal (Fervor of the Fanatic)', 301597, 210329, 'Fervor of the Fanatic', 301595, 0, 0, 0, 171, + 'Crystal', 'Buffs', 'Fast_Attack_Buffs', 519, '', 0, 0, 0, 0, 0, 'Keeper', 'RK Dyna'), + (210328, 'Nano Crystal (Fervor of the Disciple)', 301597, 210327, 'Fervor of the Disciple', 301595, 0, 0, 0, 144, + 'Crystal', 'Buffs', 'Fast_Attack_Buffs', 519, '', 0, 0, 0, 0, 0, 'Keeper', 'RK Dyna'), + (210326, 'Nano Crystal (Fervor of the Minion)', 301597, 210325, 'Fervor of the Minion', 301595, 0, 0, 0, 97, + 'Crystal', 'Buffs', 'Fast_Attack_Buffs', 519, '', 0, 0, 0, 0, 0, 'Keeper', 'SL Loot'), + (210324, 'Nano Crystal (Fervor of the Devotee)', 301597, 210323, 'Fervor of the Devotee', 301595, 0, 0, 0, 57, + 'Crystal', 'Buffs', 'Fast_Attack_Buffs', 519, '', 0, 0, 0, 0, 0, 'Keeper', 'SL Loot'), + (210322, 'Nano Crystal (Fervor of the Henchman)', 301597, 210321, 'Fervor of the Henchman', 301595, 0, 0, 0, 14, + 'Crystal', 'Buffs', 'Fast_Attack_Buffs', 519, '', 0, 0, 0, 0, 0, 'Keeper', 'SL Loot'), + (210798, 'Nano Crystal (Backstabber)', 301590, 210797, 'Backstabber', 301588, 0, 0, 0, 196, 'Crystal', 'Buffs', + 'Sneak_Attack_Buffs', 208, '', 0, 0, 0, 0, 0, 'Keeper', 'Mission Reward'), + (210796, 'Nano Crystal (Shuffle of the Rogue)', 301590, 210795, 'Shuffle of the Rogue', 301588, 0, 0, 0, 180, + 'Crystal', 'Buffs', 'Sneak_Attack_Buffs', 208, '', 0, 0, 0, 0, 0, 'Keeper', 'Mission Reward'), + (210794, 'Nano Crystal (Backpiercer)', 301590, 210793, 'Backpiercer', 301588, 0, 0, 0, 154, 'Crystal', 'Buffs', + 'Sneak_Attack_Buffs', 208, '', 0, 0, 0, 0, 0, 'Keeper', 'Mission Reward'), + (210792, 'Nano Crystal (Dagger in the Back)', 301590, 210791, 'Dagger in the Back', 301588, 0, 0, 0, 108, + 'Crystal', 'Buffs', 'Sneak_Attack_Buffs', 208, '', 0, 0, 0, 0, 0, 'Keeper', 'SL Loot'), + (210790, 'Nano Crystal (Silent Dagger)', 301590, 210789, 'Silent Dagger', 301588, 0, 0, 0, 66, 'Crystal', + 'Buffs', 'Sneak_Attack_Buffs', 208, '', 0, 0, 0, 0, 0, 'Keeper', 'SL Loot'), + (210788, 'Nano Crystal (Footpad Apprentice)', 301590, 210787, 'Footpad Apprentice', 301588, 0, 0, 0, 22, + 'Crystal', 'Buffs', 'Sneak_Attack_Buffs', 208, '', 0, 0, 0, 0, 0, 'Keeper', 'SL Loot'), + (301144, 'Nano Crystal (Release Me Now!)', 301143, 281239, 'Release Me Now', 291383, 0, 0, 0, 25, 'Crystal', + 'PvP', 'Self_Root/Snare_Resist_Buff', 283, 'Lost_Eden', 0, 1, 0, 0, 0, 'Keeper', 'OFAB Store'), + (210332, 'Nano Crystal (Fervor of the Zealot)', 301597, 210331, 'Fervor of the Zealot', 301595, 0, 0, 0, 196, + 'Crystal', 'Buffs', 'Fast_Attack_Buffs', 519, '', 0, 0, 0, 0, 0, 'Martial Artist', 'RK Dyna'), + (210330, 'Nano Crystal (Fervor of the Fanatic)', 301597, 210329, 'Fervor of the Fanatic', 301595, 0, 0, 0, 171, + 'Crystal', 'Buffs', 'Fast_Attack_Buffs', 519, '', 0, 0, 0, 0, 0, 'Martial Artist', 'RK Dyna'), + (210328, 'Nano Crystal (Fervor of the Disciple)', 301597, 210327, 'Fervor of the Disciple', 301595, 0, 0, 0, 144, + 'Crystal', 'Buffs', 'Fast_Attack_Buffs', 519, '', 0, 0, 0, 0, 0, 'Martial Artist', 'RK Dyna'), + (210326, 'Nano Crystal (Fervor of the Minion)', 301597, 210325, 'Fervor of the Minion', 301595, 0, 0, 0, 97, + 'Crystal', 'Buffs', 'Fast_Attack_Buffs', 519, '', 0, 0, 0, 0, 0, 'Martial Artist', 'SL Loot'), + (210324, 'Nano Crystal (Fervor of the Devotee)', 301597, 210323, 'Fervor of the Devotee', 301595, 0, 0, 0, 57, + 'Crystal', 'Buffs', 'Fast_Attack_Buffs', 519, '', 0, 0, 0, 0, 0, 'Martial Artist', 'SL Loot'), + (210322, 'Nano Crystal (Fervor of the Henchman)', 301597, 210321, 'Fervor of the Henchman', 301595, 0, 0, 0, 14, + 'Crystal', 'Buffs', 'Fast_Attack_Buffs', 519, '', 0, 0, 0, 0, 0, 'Martial Artist', 'SL Loot'), + (29358, 'Nano Crystal (Pistol Mastery)', 12226, 29246, 'Pistol Mastery', 16310, 147958, 146458, 149458, 24, + 'Crystal', 'Buffs', 'Pistol_Buffs', 199, '', 0, 1, 0, 0, 0, 'Meta-Physicist', 'RK Store'), + (220346, 'Nano Crystal (Neuronal Stimulator)', 301243, 220345, 'Neuronal Stimulator', 296431, 0, 0, 0, 28, + 'Crystal', 'Buffs', 'Psychic_and_Intelligence/Nano_Skills_Buffs', 576, '', 0, 0, 1, 1, 0, 'Meta-Physicist', + 'Elysium Garden'), + (269880, 'Nano Crystal (Pet Cleanse)', 301139, 269870, 'Pet Cleanse', 301138, 0, 0, 0, 215, 'Crystal', 'Pet', + 'Pet_Hostile_NCU_Cleanse', 0, '', 0, 1, 0, 0, 0, 'Meta-Physicist', 'OFAB Store'), + (269910, 'Nano Crystal (Improved Pet Steal Back)', 42450, 269908, 'Improved Pet Steal Back', 16216, 0, 0, 0, 215, + 'Crystal', 'Pet', 'Pet_Hostile_NCU_Cleanse', 0, '', 0, 1, 1, 0, 0, 'Meta-Physicist', 'OFAB Store'), + (269871, 'Nano Crystal (Pet Attention)', 301140, 269869, 'Pet Attention', 301137, 0, 0, 0, 100, 'Crystal', 'Pet', + 'Pet_Hostile_NCU_Cleanse', 0, '', 0, 1, 0, 0, 0, 'Meta-Physicist', 'OFAB Store'), + (269909, 'Nano Crystal (Pet Steal Back)', 12258, 269907, 'Pet Steal Back', 16216, 0, 0, 0, 100, 'Crystal', 'Pet', + 'Pet_Hostile_NCU_Cleanse', 0, '', 0, 1, 0, 0, 0, 'Meta-Physicist', 'OFAB Store'), + (29391, 'Nano Crystal (MatCrea Mastery)', 12226, 29294, 'MatCrea Mastery', 16290, 145016, 144889, 145143, 43, + 'Crystal', 'Buffs', 'Matter_Creation_Buffs', 159, '', 0, 1, 0, 0, 0, 'Nano-Technician', 'RK Store'), + (151778, 'Nano Crystal (Teachings of Material Creation)', 12226, 151765, 'Teachings of Material Creation', 16290, + 151803, 151791, 151815, 21, 'Crystal', 'Buffs', 'Matter_Creation_Buffs', 159, '', 0, 1, 0, 0, 0, + 'Nano-Technician', 'RK Store'), + (220346, 'Nano Crystal (Neuronal Stimulator)', 301243, 220345, 'Neuronal Stimulator', 296431, 0, 0, 0, 28, + 'Crystal', 'Buffs', 'Psychic_and_Intelligence/Nano_Skills_Buffs', 576, 'Target', 0, 0, 1, 1, 0, + 'Nano-Technician', 'Elysium Garden'), + (210332, 'Nano Crystal (Fervor of the Zealot)', 301597, 210331, 'Fervor of the Zealot', 301595, 0, 0, 0, 196, + 'Crystal', 'Buffs', 'Fast_Attack_Buffs', 519, '', 0, 0, 0, 0, 0, 'Shade', 'RK Dyna'), + (210330, 'Nano Crystal (Fervor of the Fanatic)', 301597, 210329, 'Fervor of the Fanatic', 301595, 0, 0, 0, 171, + 'Crystal', 'Buffs', 'Fast_Attack_Buffs', 519, '', 0, 0, 0, 0, 0, 'Shade', 'RK Dyna'), + (210328, 'Nano Crystal (Fervor of the Disciple)', 301597, 210327, 'Fervor of the Disciple', 301595, 0, 0, 0, 144, + 'Crystal', 'Buffs', 'Fast_Attack_Buffs', 519, '', 0, 0, 0, 0, 0, 'Shade', 'RK Dyna'), + (210326, 'Nano Crystal (Fervor of the Minion)', 301597, 210325, 'Fervor of the Minion', 301595, 0, 0, 0, 97, + 'Crystal', 'Buffs', 'Fast_Attack_Buffs', 519, '', 0, 0, 0, 0, 0, 'Shade', 'SL Loot'), + (210324, 'Nano Crystal (Fervor of the Devotee)', 301597, 210323, 'Fervor of the Devotee', 301595, 0, 0, 0, 57, + 'Crystal', 'Buffs', 'Fast_Attack_Buffs', 519, '', 0, 0, 0, 0, 0, 'Shade', 'SL Loot'), + (210322, 'Nano Crystal (Fervor of the Henchman)', 301597, 210321, 'Fervor of the Henchman', 301595, 0, 0, 0, 14, + 'Crystal', 'Buffs', 'Fast_Attack_Buffs', 519, '', 0, 0, 0, 0, 0, 'Shade', 'SL Loot'), + (210798, 'Nano Crystal (Backstabber)', 301590, 210797, 'Backstabber', 301588, 0, 0, 0, 196, 'Crystal', 'Buffs', + 'Sneak_Attack_Buffs', 208, '', 0, 0, 0, 0, 0, 'Shade', 'Mission Reward'), + (210796, 'Nano Crystal (Shuffle of the Rogue)', 301590, 210795, 'Shuffle of the Rogue', 301588, 0, 0, 0, 180, + 'Crystal', 'Buffs', 'Sneak_Attack_Buffs', 208, '', 0, 0, 0, 0, 0, 'Shade', 'Mission Reward'), + (210794, 'Nano Crystal (Backpiercer)', 301590, 210793, 'Backpiercer', 301588, 0, 0, 0, 154, 'Crystal', 'Buffs', + 'Sneak_Attack_Buffs', 208, '', 0, 0, 0, 0, 0, 'Shade', 'Mission Reward'), + (210792, 'Nano Crystal (Dagger in the Back)', 301590, 210791, 'Dagger in the Back', 301588, 0, 0, 0, 108, + 'Crystal', 'Buffs', 'Sneak_Attack_Buffs', 208, '', 0, 0, 0, 0, 0, 'Shade', 'SL Loot'), + (210790, 'Nano Crystal (Silent Dagger)', 301590, 210789, 'Silent Dagger', 301588, 0, 0, 0, 66, 'Crystal', + 'Buffs', 'Sneak_Attack_Buffs', 208, '', 0, 0, 0, 0, 0, 'Shade', 'SL Loot'), + (210788, 'Nano Crystal (Footpad Apprentice)', 301590, 210787, 'Footpad Apprentice', 301588, 0, 0, 0, 22, + 'Crystal', 'Buffs', 'Sneak_Attack_Buffs', 208, '', 0, 0, 0, 0, 0, 'Shade', 'SL Loot'), + (301144, 'Nano Crystal (Release Me Now!)', 301143, 281239, 'Release Me Now', 291383, 0, 0, 0, 25, 'Crystal', + 'PvP', 'Self_Root/Snare_Resist_Buff', 283, 'Lost_Eden', 0, 1, 0, 0, 0, 'Shade', 'OFAB Store'), + (221183, 'Weird Looking Nano Crystal (Semi-Sentient Augmentation Cloud)', 301242, 222838, + 'Improved Semi-Sentient Augmentation Cloud', 291157, 0, 0, 0, 169, 'Crystal', 'Buffs', 'Soldier_Damage_Base', + 770, 'Target', 0, 0, 0, 0, 0, 'Soldier', 'Greedy Shade / SL Static'), + (221759, 'Weird Looking Nano Crystal (Neural Interfaced Augmentation Cloud)', 301242, 222837, + 'Improved Neural Interfaced Augmentation Cloud', 291157, 0, 0, 0, 159, 'Crystal', 'Buffs', + 'Soldier_Damage_Base', 770, 'Target', 0, 0, 0, 0, 0, 'Soldier', 'Greedy Shade / SL Static'), + (220604, 'Weird Looking Nano Crystal (Augmentation Cloud)', 301242, 222835, 'Improved Augmentation Cloud', + 291157, 0, 0, 0, 106, 'Crystal', 'Buffs', 'Soldier_Damage_Base', 770, 'Target', 0, 0, 0, 0, 0, 'Soldier', + 'Greedy Shade / SL Static'), + (221129, 'Weird Looking Nano Crystal (Hasty Augmentation Cloud)', 301242, 222833, + 'Improved Hasty Augmentation Cloud', 291157, 0, 0, 0, 43, 'Crystal', 'Buffs', 'Soldier_Damage_Base', 770, + 'Target', 0, 0, 0, 0, 0, 'Soldier', 'Greedy Shade / SL Static'), + (29358, 'Nano Crystal (Pistol Mastery)', 12226, 29246, 'Pistol Mastery', 16310, 147958, 146458, 149458, 24, + 'Crystal', 'Buffs', 'Pistol_Buffs', 199, '', 0, 1, 0, 0, 0, 'Soldier', 'RK Store'), + (301144, 'Nano Crystal (Release Me Now!)', 301143, 281239, 'Release Me Now', 291383, 0, 0, 0, 25, 'Crystal', + 'PvP', 'Self_Root/Snare_Resist_Buff', 283, 'Lost_Eden', 0, 1, 0, 0, 0, 'Soldier', 'OFAB Store'); \ No newline at end of file diff --git a/modules/standard/news/mail_controller.py b/modules/standard/news/mail_controller.py new file mode 100644 index 0000000..288c759 --- /dev/null +++ b/modules/standard/news/mail_controller.py @@ -0,0 +1,225 @@ +import time +from datetime import datetime + +from core.buddy_service import BuddyService +from core.chat_blob import ChatBlob +from core.command_param_types import Options, Int, Any, Character, Const +from core.db import DB +from core.decorators import instance, event, command +from core.dict_object import DictObject +from core.job_scheduler import JobScheduler +from core.logger import Logger +from core.text import Text +from core.tyrbot import Tyrbot +from modules.core.accounting.services.account_service import AccountService +from modules.core.ban.ban_service import BanService + + +@instance() +class MailController: + + def inject(self, registry): + self.logger = Logger(__name__) + self.bot: Tyrbot = registry.get_instance("bot") + self.db: DB = registry.get_instance("db") + self.text: Text = registry.get_instance("text") + self.ban: BanService = registry.get_instance("ban_service") + self.buddy_service: BuddyService = registry.get_instance("buddy_service") + self.job_schedule: JobScheduler = registry.get_instance("job_scheduler") + self.account_service: AccountService = registry.get_instance("account_service") + + def pre_start(self): + self.db.exec( + "CREATE TABLE IF NOT EXISTS mail(" + "id int primary key auto_increment, " + "text text, " + "recipient int not null, " + "sender int not null, " + "sent_at int not null, " + "`read` int not null default 0)") + + @event(event_type="connect", description="register players with pending mails") + def connect_event(self, _, _1): + data = self.db.query( + "SELECT a.char_id from mail m " + "left join account a ON a.main = m.recipient " + "WHERE `read` = 0 and (a.disabled = 0 and a.member=1) " + "group by a.char_id") + for row in data: + self.buddy_service.add_buddy(row.char_id, "mail") + + @event(event_type="member_logon", description="Send mails on logon") + def logon_event(self, _, data): + if not self.bot.is_ready(): + return + if data.account.disabled == 1: + return + if "mail" in self.buddy_service.get_buddy(data.packet.char_id)["types"]: + self.job_schedule.delayed_job(self.send_mail, 16, data.packet.char_id, self.get_mails(data.packet.char_id)) + + def send_mail(self, _, sender, mail, greeting="Hey, you got some mails!"): + if self.buddy_service.get_buddy(sender)["online"] == 0: + return + # hotfix for + if len(mail) < 10: + self.buddy_service.remove_buddy(sender, "mail") + return + self.bot.send_mass_message(sender, f"{greeting} :: " + + self.text.paginate_single(ChatBlob("Your mails", mail))) + + ##################### + # Mail Management # + ##################### + + @command(command="mail", params=[Const('all', is_optional=True)], description="Show your mails", + access_level="member") + def mail_show(self, sender, const_all): + if const_all: + mails = self.get_mails(sender.sender.char_id, True) + if mails: + self.bot.send_private_message(sender.sender.char_id, ChatBlob("All your recent Mails", mails)) + else: + return "You dont have any mails." + else: + mails = self.get_mails(sender.sender.char_id) + if mails: + self.bot.send_private_message(sender.sender.char_id, ChatBlob("Your unread mails", mails)) + else: + return "You dont have any unread mails." + + @command(command="mail", params=[Options(["read"]), Int("ID")], + description="mark a mail as read", access_level="member") + def mail_read(self, sender, _, mail_id): + row = self.db.exec( + "UPDATE mail set `read` = 1 where recipient=(SELECT main from account where char_id=? LIMIT 1) and id=?", + [sender.sender.char_id, mail_id]) + if len(self.get_mails(sender.sender.char_id)) < 10: + alts = self.account_service.get_alts(sender.sender.char_id) + for i in alts: + self.buddy_service.remove_buddy(i.char_id, "mail") + if row == 0: + return f"You dont have an unread mail with the ID {mail_id}." + elif row == 1: + return f"The mail with the ID {mail_id} has been marked as read." + else: + return "Something went wrong. please contact an administrator." + + @command(command="mail", params=[Options(["delete"]), Int("ID")], + description="mark a mail as read", access_level="member") + def mail_delete(self, sender, _, mail_id): + row = self.db.exec( + "DELETE FROM mail where recipient=(SELECT main from account where char_id=? LIMIT 1) and id=?", + [sender.sender.char_id, mail_id]) + if len(self.get_mails(sender.sender.char_id)) < 10: + alts = self.account_service.get_alts(sender.sender.char_id) + for i in alts: + self.buddy_service.remove_buddy(i.char_id, "mail") + if row == 0: + return f"You dont have a mail with the ID {mail_id}." + elif row == 1: + return f"The mail with the ID {mail_id} has been deleted." + else: + return "Something went wrong. please contact an administrator." + + @command(command="mail", params=[Options(["send"]), Character("recipient"), Any("text")], + description="Send a mail to someone", access_level="member") + def mail_send(self, sender, _, receiver, message): + if not receiver.char_id: + return f"Character {receiver.name} not found." + recipient = self.account_service.get_account(receiver.char_id) + if not recipient: + return f"No account for {receiver.name} found." + if recipient.member == -1 or recipient.disabled == 1: + return f"The Character {recipient.name} has " \ + f"no active account in ." + self.db.exec("INSERT INTO mail(sender, recipient, text, sent_at) VALUES(?, ?, ?, ?)", + [sender.sender.char_id, recipient.main, message, time.time()]) + alts = self.account_service.get_alts(recipient.char_id) + for i in alts: + buddy = self.buddy_service.get_buddy(i.char_id) or [] + if "mail" not in buddy: + if i.member == -1: + continue + self.buddy_service.add_buddy(i.char_id, "mail") + if self.buddy_service.is_online(i.char_id): + self.send_mail(0, i.char_id, self.get_mails(i.char_id), + f"{sender.sender.name} just sent you a mail, please read it") + return "Mail sent successfully." + + @command(command="mail", params=[Const("group"), Any("group"), Any("text")], + description="Send a mail to a group of players", sub_command='sendgroup', access_level="moderator") + def mail_send_group(self, sender, _, recipient, message): + group = self.account_service.get_group_tag(recipient) + users = [] + if group: + if group == "all": + if sender.sender.access_level['level'] > 20: + return "This group is unavailable." + users = self.account_service.get_all_members() + else: + users = self.account_service.get_by_group(group) + + elif not group: + return f"Sorry, but the group {recipient} does not exist. " \ + f"The following groups are defined: " \ + f"admin, council, [all - admin only group], moderator " \ + f"and leaders." + + count = 0 + readers = [] + if group != "all": + message += f"
» This mail has been sent to the " \ + f"{group} group.
" + else: + message += f"
» This mail has been sent to everyone.
" + mails = [] + for user in users: + if user.main == user.char_id: + mails.append((sender.sender.char_id, user.main, message, time.time())) + count += 1 + if user.online == 1: + readers.append(DictObject({"name": user.name, "char_id": user.char_id})) + with self.db.pool.get_connection() as conn: + with conn.cursor() as cur: + cur.executemany("INSERT INTO mail(sender, recipient, text, sent_at) VALUES(?, ?, ?, ?)", mails) + for user in readers: + self.send_mail(0, user.char_id, self.get_mails(user.char_id), + greeting=f"{sender.sender.name} just sent you a group mail, " + f"please read it!") + + return f"I've sent the {count} mails to the group " \ + f"{group} for you. " \ + f"A total of {len(readers)} characters from this group are online, " \ + f"the have been notified." + + def get_single_mail(self, char_id, mail_id): + return ChatBlob(f"Your Mail with the ID {mail_id}", self.format_mail(self.db.query_single( + "SELECT * FROM mail where recipient=(SELECT main from account where char_id=?) and id = ?", [char_id, id]))) + + def get_mails(self, char_id, all_mails=False): + if all_mails: + data = self.db.query( + "SELECT * FROM mail where recipient=(SELECT main from account where char_id=?) order by id desc", + [char_id]) + else: + data = self.db.query( + "SELECT * FROM mail where recipient=(SELECT main from account where char_id=?) and `read`=0 " + "order by id desc", + [char_id]) + blob = "" + for row in data: + blob += self.format_mail(row) + "
" + return blob + + def format_mail(self, mail): + # noinspection LongLine + return \ + f""" +{self.bot.character_service.resolve_char_to_name(mail.sender) if mail.sender != 0 else "IGNCOM"} sent you a mail on {datetime.utcfromtimestamp(mail.sent_at).strftime("%d.%m.%Y - %H:%M:%S")}: +{mail.text} + - [{self.text.make_tellcmd('Mark as read', f'mail read {mail.id}')}] [{self.text.make_tellcmd('DELETE', f'mail delete {mail.id}')}] +""" + + @event(event_type="main_changed", description="Fix mails") + def fix_mails(self, _, data): + self.db.exec("UPDATE mail set recipient=? where recipient=?", [data.new_main_id, data.old_main_id]) diff --git a/modules/standard/news/news_controller.py b/modules/standard/news/news_controller.py new file mode 100644 index 0000000..f78eecf --- /dev/null +++ b/modules/standard/news/news_controller.py @@ -0,0 +1,302 @@ +import random +import textwrap +import time +from datetime import datetime, timezone +from queue import Queue + +from core.buddy_service import BuddyService +from core.chat_blob import ChatBlob +from core.command_param_types import Options, Int, Const, Any +from core.db import DB +from core.decorators import instance, event, command +from core.dict_object import DictObject +from core.job_scheduler import JobScheduler +from core.logger import Logger +from core.lookup.pork_service import PorkService +from core.setting_service import SettingService +from core.text import Text +from core.tyrbot import Tyrbot +from core.util import Util +from modules.core.accounting.preference_controller import PreferenceController +from modules.core.accounting.services.account_service import AccountService +from modules.onlinebot.online.org_alias_controller import OrgAliasController +from modules.standard.news.weekly_controller import WeeklyController +from modules.standard.news.worldboss_controller import WorldBossController + + +@instance() +class NewsController: + queue = Queue() + # taken from https://app2brain.com/de/sprachen-lernen/woerter-saetze/hallo/ + greetings = ["Welcome", "Greetings", "Hey", "Namaste", "Ahoy", "Salutations", "Hola", "Ahoj", "Hallo", "Hello", + "Hei", "Salut", "Helló", "Halló", "Ciao", "Olá", "Ahoj", "¡Hola"] + layout = \ + """ +
News
+ +CURRENT TIME +hh:mm - DD.MM.YYYY +{time} + +ACCOUNT + Your main is: {main} + You have {alts_show} alts registered + {discord} + Preferences: {prefs} + +NEWS +{news} +TIMERS +{timers} +POPULAR COMMANDS +{commands} + """ + + def inject(self, registry): + self.logger = Logger(__name__) + self.bot: Tyrbot = registry.get_instance("bot") + self.db: DB = registry.get_instance("db") + self.text: Text = registry.get_instance("text") + self.account_service: AccountService = registry.get_instance("account_service") + self.pork: PorkService = registry.get_instance("pork_service") + self.util: Util = registry.get_instance("util") + self.buddy_service: BuddyService = registry.get_instance("buddy_service") + self.setting_service: SettingService = registry.get_instance("setting_service") + self.job_schedule: JobScheduler = registry.get_instance("job_scheduler") + self.preferences: PreferenceController = registry.get_instance("preference_controller") + self.alias_controller: OrgAliasController = registry.get_instance("org_alias_controller") + self.weekly: WeeklyController = registry.get_instance("weekly_controller") + self.worldboss: WorldBossController = registry.get_instance("world_boss_controller") + + def pre_start(self): + self.db.exec( + "CREATE TABLE IF NOT EXISTS news(" + "id int primary key auto_increment, " + "text text, " + "added_by int not null, " + "added_at timestamp, " + "headline int not null default 0)") + + def start(self): + self.commands = f" [{self.text.make_chatcmd('raids', '/tell raids')}] " \ + f"[{self.text.make_chatcmd('online', '/tell online')}]\n" \ + f" [{self.text.make_chatcmd('rules', '/tell rules')}] " \ + f"[{self.text.make_chatcmd('about', '/tell about')}]\n" \ + f" [{self.text.make_chatcmd('orgs', '/tell orgs')}] " \ + f"[{self.text.make_chatcmd('admins', '/tell admins')}]\n" + + @event("connect", "prepare info msg") + def prepare_info(self, _, _1): + self.INFO = ChatBlob("Welcome", f"You're getting this message,\n" + f"because you recently joined the clan alliance\n" + f"The New Alliance or in short " + f"TNA.\n" + f"I'm , a bot with the task to " + f"automate a few workflows around here,\n" + f"while making the life of everyone a bit easier.\n" + f"\n" + f"You can see a list of all my orgs by using " + f"{self.text.make_tellcmd('!orgs', 'orgs')}.\n" + f"Whenever you use {self.text.make_tellcmd('!online', 'online')} " + f"I'll show you who's currently around.\n" + f"We've got regular raids, you can view them by using " + f"{self.text.make_tellcmd('!raids', 'raids')}\n" + f"If you'd like to stay out, thats fine. Just turn all settings off here: " + f"{self.text.make_tellcmd('here', 'prefs')}\n" + f"\n" + f"If you encounter any issues, my administrators will help you. just ask them, " + f"you can find them all here: {self.text.make_tellcmd('!admins', 'admins')}\n" + f"\n" + f"Thats it already. " + f"Thank you for taking your time to read this note. See you ingame!" + f"") + self.INFO = f"\n________________\n\n" \ + f" No need to PANIC!\n" \ + f" [{self.text.paginate_single(self.INFO)}]\n" \ + f" to our alliance!\n" \ + f"________________" + + @event(event_type="member_logon", description="Send news to players logging in") + def logon_event(self, _, data): + if not self.bot.is_ready(): + return + if "member" in self.buddy_service.get_buddy(data.packet.char_id)["types"]: + account = data.account + if account.disabled == 1: + return + if self.db.query_single("SELECT * from org_bots where char_id=?", [data.packet.char_id]): + return + if account.news_spam == 1: + if account.discord_joined == 0: + discord = f"Your Account is not connected to Discord " \ + f"[{self.text.make_chatcmd('Join', '/tell discord invite')}]" + else: + discord = f"Your Account is connected to Discord as " \ + f"[{self.alias_controller.get_alias(account.org_id)}] " \ + f"{account.name}" + user = self.pork.get_character_info(data.packet.char_id) + self.job_schedule.delayed_job(self.send_news, 15, user, self.account_service.get_alts(account.main), + discord, + self.preferences.get_pref_view_small(account)) + if account.last_seen == 0 and self.setting_service.get_value('is_alliance_bot') == "1": + self.bot.send_mass_message(data.packet.char_id, self.INFO) + + @command(command="raids", params=[], description="Show the Raids", access_level="member") + def show_raids(self, _): + with open("data/latest_raids.txt", "r") as f: + return self.text.format_page("Raidschedule", f.read()) + + def get_timers(self): + events = [self.weekly.get_next_bs(), + self.weekly.get_next_ai(), + self.weekly.get_next_dio()] + next_event = sorted(events, key=lambda timer_event: timer_event.start)[0] + name = self.bot.get_char_name().upper() + out = f" {self.weekly.get_long_name(next_event.type)} - " + if next_event.is_running(): + out += f"[Ends in {self.util.time_to_readable(next_event.end - time.time())}] " \ + f"[by {name}]\n" + else: + out += f"[Starts in {self.util.time_to_readable(next_event.start - time.time())}] " \ + f"[by {name}]\n" + + for timer in self.worldboss.timer_data: + msg = self.worldboss.show_user(timer) + if msg != "No timers cached; please try again later.": + out += " " + msg + "\n" + return out + + def get_next_event(self): + events = [self.weekly.get_next_bs(), + self.weekly.get_next_ai(), + self.weekly.get_next_dio()] + return sorted(events, key=lambda timer: timer.start)[0] + + def send_news(self, _, sender, alts, discord, prefs, auto=True): + if auto: + if self.buddy_service.get_buddy(sender.char_id)["online"] == 0: + return + timers = self.get_timers() + next_event = self.get_next_event() + news = self.layout.format(time=datetime.now(timezone.utc).strftime("%H:%M - %d.%m.%Y") + " [UTC-0]", + main=alts[0].name, + alts_show=self.text.make_chatcmd(len(alts), "/tell alts"), + news=self.get_news(), + timers=timers, + commands=self.commands, + prefs=prefs, + discord=discord) + name = self.weekly.get_long_name(next_event.type) + blob = f"{random.choice(self.greetings)} {sender.name} :: " \ + f"{self.text.format_page('Your News', textwrap.dedent(news))} " \ + f"{f':: {name} running' if next_event.is_running() else ''}" + self.bot.send_mass_message(sender.char_id, blob) + + ##################### + # News Management # + ##################### + + @command(command="news", params=[], description="Show the news", access_level="member") + def show_news(self, sender): + user = self.db.query_single("SELECT * FROM player where char_id=?", [sender.sender.char_id]) + alts = self.account_service.get_alts(sender.sender.char_id) + if not alts: + discord = f"Your Account is not connected to Discord " \ + f"[{self.text.make_chatcmd('Join', '/tell discord invite')}]" + alts = [self.account_service.get_main(sender.sender.char_id)] + elif alts[0].discord_joined == 0: + discord = f"Your Account is not connected to Discord " \ + f"[{self.text.make_chatcmd('Join', '/tell discord invite')}]" + else: + prefix = "" + if self.setting_service.get_value('is_alliance_bot') == '1': + prefix = f"[{self.alias_controller.get_alias(alts[0].org_id)}] " + discord = f"Your Account is connected to Discord as " \ + f"{prefix}{alts[0].name}" + prefs = self.preferences.get_pref_view_small(alts[0]) if alts else "" + self.send_news(0, user, alts, discord, prefs, False) + + @command(command="news", params=[Options(["pin", "unpin"]), Int("ID")], description="Set news as headlines", + access_level="moderator", sub_command="moderate") + def news_pin(self, _, option, news_id): + if option == "pin": + row = self.db.exec("UPDATE news set headline=1 where id =?", [news_id]) + if row == 0: + return f"There's no entry with the ID {news_id}, or it is already pinned." + elif row == 1: + return f"The entry with the ID {news_id} has been pinned." + else: + return "Multiple entries have been pinned... SHIT!" + elif option == "unpin": + row = self.db.exec("UPDATE news set headline=0 where id =?", [news_id]) + if row == 0: + return f"There's no entry with the ID {news_id}, or it is not pinned." + elif row == 1: + return f"The entry with the ID {news_id} has been unpinned." + else: + return "Multiple entries have been unpinned... SHIT!" + + @command(command="news", params=[Options(["remove", "delete", "rem", "del"]), Int("ID")], + description="Set news as headlines", access_level="moderator", sub_command="moderate") + def news_del(self, _, _1, news_id): + row = self.db.exec("DELETE FROM news where id =?", [news_id]) + if row == 0: + return f"There's no entry with the ID {news_id}." + elif row == 1: + return f"The entry with the ID {news_id} has been removed." + else: + return "Multiple entries have been deleted... SHIT!" + + @command(command="news", params=[Const("add"), Any("text")], description="Moderate the news", + access_level="moderator", sub_command="moderate") + def news_add(self, sender, _, text): + self.add_entry(text, sender.sender) + row = DictObject( + {"added_at": datetime.utcfromtimestamp(time.time()), "added_by": sender.sender.char_id, "headline": 0, + "id": self.db.query_single("SELECT id from news order by id desc").id, "text": text}) + return ChatBlob(f"News entry with ID {row.id}", + self.format_entry(row, sender.sender, sender.sender.access_level['level'] <= 30)) + + @command(command="news", params=[Options(["detail", "info", "more"]), Int("ID", is_optional=True)], + description="Moderate the news", access_level="member") + def news_detail(self, sender, _, news_id): + if news_id: + row = self.db.query_single("SELECT * from news where id=?", [news_id]) + if row: + return ChatBlob(f"News entry with ID {news_id}", + self.format_entry(row, sender.sender, sender.sender.access_level['level'] <= 30)) + else: + return f"There's no entry with the ID {news_id}." + else: + return ChatBlob("The latest news", self.get_news(10000, sender.sender)) + + def get_news(self, limit=500, receiver=None): + data = self.db.query("SELECT * from news order by ID desc") + normal = "" + headline = "" + for entry in data: + if entry.headline == 1: + if len(self.text.strip_html_tags(headline) or []) > limit / 2: + continue + headline += self.format_entry(entry, receiver) + else: + if len(self.text.strip_html_tags(normal) or []) > limit / 2: + continue + normal += self.format_entry(entry, receiver) + if len(self.text.strip_html_tags(headline + normal) or []) > limit: + normal += f" There seem to be more news,
but they're too long to get shown here. " \ + f"[{self.text.make_tellcmd('Display', 'news detail')}]
" + return headline + "____________________________

" + normal if headline != "" else normal + + # noinspection LongLine + def format_entry(self, entry, receiver=None, mod=False): + name = self.bot.get_char_name().upper() + + base = f"""On {entry.added_at.strftime("%d.%m.%Y - %H:%M:%S")} UTC by {self.bot.character_service.resolve_char_to_name(entry.added_by) if entry.added_by != 0 else f"{name}"} (ID {entry.id}):
{entry.text}

""" + if mod: + base += f"""
- Moderate this entry: [{self.text.make_tellcmd('PIN' if entry.headline == 0 else 'UNPIN', f'news {"pin" if entry.headline == 0 else "unpin"} {entry.id}')}] [{self.text.make_tellcmd('DELETE', f'news delete {entry.id}')}]""" + return base + + def add_entry(self, text, sender): + self.db.exec("INSERT INTO news(text, added_by, added_at) VALUES(?, ?, ?)", + [text, sender.char_id, datetime.utcfromtimestamp(time.time())]) diff --git a/modules/standard/news/weekly_controller.py b/modules/standard/news/weekly_controller.py new file mode 100644 index 0000000..3fbe4c3 --- /dev/null +++ b/modules/standard/news/weekly_controller.py @@ -0,0 +1,121 @@ +import time +from datetime import datetime + +from core.buddy_service import BuddyService +from core.chat_blob import ChatBlob +from core.command_alias_service import CommandAliasService +from core.db import DB +from core.decorators import instance, command +from core.job_scheduler import JobScheduler +from core.logger import Logger +from core.lookup.pork_service import PorkService +from core.setting_service import SettingService +from core.text import Text +from core.tyrbot import Tyrbot +from core.util import Util +from modules.core.accounting.preference_controller import PreferenceController +from modules.core.accounting.services.account_service import AccountService +from modules.core.ban.ban_service import BanService +from modules.core.discord.discord_controller import DiscordController +from modules.onlinebot.online.org_alias_controller import OrgAliasController + + +@instance() +class WeeklyController: + # dates = {"ai": [1618704000, 1619395200], + # "bs": [1619913600, 1620604800], + # "dio": [1621123200, 1621814400], + # } + dates = {"ai": [1627171200, 1627862400], + "bs": [1628380800, 1629072000], + "dio": [1629590400, 1630281600], + } + duration = 60 * 60 * 24 * 42 # 3628800 + + def inject(self, registry): + self.logger = Logger(__name__) + self.bot: Tyrbot = registry.get_instance("bot") + self.db: DB = registry.get_instance("db") + self.text: Text = registry.get_instance("text") + self.ban: BanService = registry.get_instance("ban_service") + self.util: Util = registry.get_instance("util") + self.account_service: AccountService = registry.get_instance("account_service") + self.pork: PorkService = registry.get_instance("pork_service") + self.org_pork: PorkService = registry.get_instance("org_pork_service") + self.command_alias_service: CommandAliasService = registry.get_instance("command_alias_service") + self.buddy_service: BuddyService = registry.get_instance("buddy_service") + self.setting_service: SettingService = registry.get_instance("setting_service") + self.discord: DiscordController = registry.get_instance("discord_controller") + self.job_schedule: JobScheduler = registry.get_instance("job_scheduler") + self.preferences: PreferenceController = registry.get_instance("preference_controller") + self.alias_controller: OrgAliasController = registry.get_instance("org_alias_controller") + self.account_service: AccountService = registry.get_instance("account_service") + + @command(command="icc", params=[], description="ICC Weekly", access_level="member") + def show_raids(self, _): + events = [self.get_next_bs(), + self.get_next_ai(), + self.get_next_dio()] + + events = sorted(events, key=lambda event: event.start) + current = "None" + if events[0].is_running(): + current = self.get_long_name(events[0].type) + \ + f' [Ends in {self.util.time_to_readable(events[0].end - time.time())}]' + blob = "" \ + f"Current Mission: {current}\n" \ + f"\n" \ + f"Planned:\n" + for i in events: + blob += self.format_entry(i) + return ChatBlob("ICC Weekly Missions", blob) + + # noinspection PyShadowingNames + def time_to_readable(self, time): + return datetime.utcfromtimestamp(time).strftime("%d.%m.%Y") + + def format_entry(self, event): + return f"{self.get_long_name(event.type)}: {self.time_to_readable(event.start)} " \ + f"-> {self.time_to_readable(event.end - 1)}\n" if not event.is_running() else "" + + def get_long_name(self, event_type): + return {"ai": "Alien Weekly", + "bs": "Battlestation Weekly", + "dio": "Dust it Off Weekly"}.get(event_type) + + def get_next_event(self, event_type, now): + cycle = (now - self.dates[event_type][0]) / self.duration + cycle = round(cycle) + event = WeeklyEvent(event_type, self.dates[event_type][0] + cycle * self.duration, + self.dates[event_type][1] + cycle * self.duration) + if event.end <= now: + event.start += self.duration + event.end += self.duration + return event + + def get_next_dio(self, when=0): + when = time.time() if when == 0 else when + return self.get_next_event("dio", when) + + def get_next_bs(self, when=0): + when = time.time() if when == 0 else when + return self.get_next_event("bs", when) + + def get_next_ai(self, when=0): + when = time.time() if when == 0 else when + return self.get_next_event("ai", when) + + +class WeeklyEvent: + start = 0 + end = 0 + type = "" + + def __init__(self, event_type, start, end): + self.start = start + self.end = end + self.type = event_type + + def is_running(self, when=0): + when = time.time() if when == 0 else when + return self.start <= when <= self.end diff --git a/modules/standard/news/worldboss_controller.py b/modules/standard/news/worldboss_controller.py new file mode 100644 index 0000000..330bb70 --- /dev/null +++ b/modules/standard/news/worldboss_controller.py @@ -0,0 +1,172 @@ +import sys +import time + +from conf.config import BotConfig +from core.command_alias_service import CommandAliasService +from core.decorators import instance, command, event +from core.dict_object import DictObject +from core.job_scheduler import JobScheduler +from core.logger import Logger +from core.setting_service import SettingService +from core.setting_types import BooleanSettingType +from core.text import Text +from core.tyrbot import Tyrbot +from core.util import Util +from modules.standard.datanet.ws_controller import WebsocketRelayController + + +@instance() +class WorldBossController: + alerts = [480 * 60, 360 * 60, 240 * 60, 120 * 60, 60 * 60, 60 * 15, + 60 * 5, 60 * 3, 60 * 2, 60, 30, 15, 10, 5, 4, 3, 2, 1, 0] + jobs = [] + timer_data = [] + + def __init__(self): + mod = __import__(f'conf.{sys.argv[1]}', fromlist=['BotConfig']) + config: BotConfig = getattr(mod, 'BotConfig') + if hasattr(config, "timer_url"): + self.timer_api = config.timer_url + else: + self.timer_api = None + + def inject(self, registry): + self.logger = Logger(__name__) + self.bot: Tyrbot = registry.get_instance("bot") + self.text: Text = registry.get_instance("text") + self.util: Util = registry.get_instance("util") + self.command_alias_service: CommandAliasService = registry.get_instance("command_alias_service") + self.job_scheduler: JobScheduler = registry.get_instance("job_scheduler") + self.setting_service: SettingService = registry.get_instance("setting_service") + + def pre_start(self): + self.setting_service.register_new(self.module_name, 'timer_spam', True, BooleanSettingType(), + "should timers be spammed") + + @event(WebsocketRelayController.WS_RELAY, "save most current timers") + def get_timer(self, _, data): + if data.type == "timer": + self.timer_data = data.payload + + def test(test_data): + if test_data: + for job in self.jobs: + if job["name"] == test_data.name: + return + self.job_scheduler.delayed_job(self.timer_alert, 2, test_data) + + if self.setting_service.get_value("timer_spam") == "1": + for row in self.timer_data: + data = self.get_spawn(row) + test(data) + + def get_spawn(self, timer): + timer = DictObject(timer) + if timer.name == "Loren Warr": + data = self.calc_spawn_mortal(timer.time, 9 * 60 * 60, 15 * 60) + elif timer.name == "Tarasque": + data = self.calc_spawn_mortal(timer.time, 9 * 60 * 60, 30 * 60) + elif timer.name == "The Hollow Reaper": + data = self.calc_spawn_mortal(timer.time, 9 * 60 * 60, 15 * 60) + elif timer.name == "Vizaresh": + data = self.calc_spawn_mortal(timer.time, 17 * 60 * 60, 6 * 60 + 20) + else: + return None + if not data: + return + if data.spawn < time.time(): + if data.mortal > time.time(): + return DictObject( + {'name': timer.name, 'type': 'mortal', 'time': data.mortal - time.time(), 'at': data.mortal, + 'data': data}) + return DictObject( + {'name': timer.name, 'type': 'spawn', 'time': data.spawn - time.time(), 'at': data.spawn, 'data': data}) + + def calc_spawn_mortal(self, last, respawn, immortal): + pop = last + respawn + attackable = pop + immortal + now = time.time() + + # Mortal + if immortal > attackable - now > 0: + return DictObject({'spawn': pop, 'mortal': attackable}) + elif immortal > attackable + respawn - now > 0: + return DictObject({'spawn': pop + respawn, 'mortal': attackable + respawn}) + + # Spawn + elif respawn > (pop - now) > 0: + return DictObject({'spawn': pop, 'mortal': pop}) + elif respawn > pop + respawn - now > 0: + return DictObject({'spawn': attackable + respawn, 'mortal': attackable + respawn + immortal}) + elif last - now > 0: + return DictObject({'spawn': last - immortal, 'mortal': last}) + + def send_warn(self, msg): + self.bot.send_private_channel_message(f"[WB] {msg}") + + def get_next_alert(self, duration): + for alert in self.alerts: + if duration - 1 > alert: + return duration - alert - 1 + return duration + + @command(command="gaunt", params=[], description="Displays the next Vizaresh pop time", access_level="member") + def show_gaunt(self, _): + for timer in self.timer_data: + if timer['name'] == "Vizaresh": + return self.show_user(timer) + return "Timer not found" + + @command(command="loren", params=[], description="Displays the next Loren Warr pop time", access_level="member") + def show_loren(self, _): + for timer in self.timer_data: + if timer['name'] == "Loren Warr": + return self.show_user(timer) + return "Timer not found" + + @command(command="tara", params=[], description="Displays the next Tara pop time", access_level="member") + def show_tara(self, _): + for timer in self.timer_data: + if timer['name'] == "Tarasque": + return self.show_user(timer) + return "Timer not found" + + def show_user(self, timer): + timer = self.get_spawn(timer) + if not timer: + return "No timers cached; please try again later." + if timer.type == "mortal": + return f"{timer.name} :: mortal in {self.util.format_time(timer.time)}" + elif timer.type == "spawn": + return f"{timer.name} :: spawn in {self.util.format_time(timer.time)}" + + def timer_alert(self, t, timer): + if self.setting_service.get_value("timer_spam") == "0": + return + for row in self.timer_data: + if row["name"] == timer.name: + timer = self.get_spawn(row) + alert_duration = self.get_next_alert(timer.at - t) + if timer.at - time.time() < 1: + if timer.type == "mortal": + self.send_warn(f"{timer.name} :: is now mortal") + self.jobs = [x for x in self.jobs if x['name'] != timer.name] + elif timer.type == "spawn": + self.send_warn(f"{timer.name} :: has just spawned") + self.jobs = [x for x in self.jobs if x['name'] != timer.name] + else: # timer.at > time.time(): + if timer.type == "mortal": + self.send_warn(f"{timer.name} :: mortal in {self.util.format_time(timer.time)}") + elif timer.type == "spawn": + if alert_duration > 60 * 2: + self.send_warn( + f"{timer.name} :: spawn in {self.util.format_time(timer.time)}") + for row in self.timer_data: + if row["name"] == timer.name: + timer = self.get_spawn(row) + job_id = self.job_scheduler.scheduled_job(self.timer_alert, t + alert_duration, timer) + for job in self.jobs: + if job['name'] == timer.name: + job['id'] = job_id + return + self.jobs.append({'name': timer.name, 'id': job_id}) diff --git a/modules/standard/notes/notes_controller.py b/modules/standard/notes/notes_controller.py new file mode 100644 index 0000000..c8dedb1 --- /dev/null +++ b/modules/standard/notes/notes_controller.py @@ -0,0 +1,67 @@ +import time + +from core.chat_blob import ChatBlob +from core.command_param_types import Any, Int, Const, Options +from core.decorators import instance, command + + +@instance() +class NotesController: + def inject(self, registry): + self.db = registry.get_instance("db") + self.text = registry.get_instance("text") + self.account_service = registry.get_instance("account_service") + + def start(self): + self.db.exec("CREATE TABLE IF NOT EXISTS notes (" + "id INT PRIMARY KEY AUTO_INCREMENT, " + "char_id INT NOT NULL, " + "note TEXT NOT NULL," + "created_at INT NOT NULL," + "INDEX char_id(char_id) USING BTREE)") + + @command(command="notes", params=[], access_level="member", + description="Show your notes") + def notes_list_cmd(self, request): + alts = self.account_service.get_alts(request.sender.char_id) + + cnt = 0 + blob = "" + for alt in alts: + data = self.db.query("SELECT * FROM notes WHERE char_id = ? ORDER BY created_at DESC", [alt.char_id]) + alt_cnt = len(data) + cnt += alt_cnt + + if alt_cnt: + blob += "\n%s\n" % alt.name + for row in data: + blob += "%s %s\n\n" % (row.note, self.text.make_tellcmd("Remove", "notes remove %d" % row.id)) + + return ChatBlob("Notes for %s (%d)" % (alts[0].name, cnt), blob) + + @command(command="notes", params=[Const("add"), Any("note")], access_level="member", + description="Add a note") + def notes_add_cmd(self, request, _, note): + self.db.exec("INSERT INTO notes (char_id, note, created_at) VALUES (?, ?, ?)", + [request.sender.char_id, note, int(time.time())]) + + return "Note added successfully." + + @command(command="notes", params=[Options(["rem", "remove"]), Int("note_id")], access_level="member", + description="Remove a note") + def notes_remove_cmd(self, request, _, note_id): + note = self.db.query_single("SELECT n.*, p.name FROM notes n " + "LEFT JOIN player p ON n.char_id = p.char_id " + "WHERE n.id = ?", + [note_id]) + + if not note: + return f"Could not find note with ID {note_id:d}." + + if self.account_service.get_main(request.sender.char_id).char_id \ + != self.account_service.get_main(note.char_id).char_id: + return f"You must be a confirmed alt of {note.name} to remove this note." + + self.db.exec("DELETE FROM notes WHERE id = ?", [note_id]) + + return f"Note with ID {note_id:d} deleted successfully." diff --git a/modules/standard/online/online_controller.py b/modules/standard/online/online_controller.py new file mode 100644 index 0000000..49f4461 --- /dev/null +++ b/modules/standard/online/online_controller.py @@ -0,0 +1,135 @@ +import time +from threading import Thread + +from core.bot_status import BotStatus +from core.buddy_service import BuddyService +from core.command_alias_service import CommandAliasService +from core.command_param_types import Int, Any, Const, Options +from core.db import DB +from core.decorators import instance, event, command +from core.fifo_queue import FifoQueue +from core.logger import Logger +from core.private_channel_service import PrivateChannelService +from core.setting_service import SettingService +from core.text import Text +from core.tyrbot import Tyrbot +from core.util import Util +from modules.standard.online.online_display import OnlineDisplay + + +class User: + def __init__(self, char_id, loggedin=True): + self.char_id = char_id + self.logged = loggedin + + +@instance() +class OnlineController: + def __init__(self): + self.assist = [] + self.awaiting_data = FifoQueue() + + def inject(self, registry): + self.logger = Logger(__name__) + self.bot: Tyrbot = registry.get_instance("bot") + self.db: DB = registry.get_instance("db") + self.text: Text = registry.get_instance("text") + self.util: Util = registry.get_instance("util") + self.command_alias_service: CommandAliasService = registry.get_instance("command_alias_service") + self.buddy_service: BuddyService = registry.get_instance("buddy_service") + self.setting_service: SettingService = registry.get_instance("setting_service") + self.priv: PrivateChannelService = registry.get_instance("private_channel_service") + self.online_display: OnlineDisplay = OnlineDisplay(self.text, self.util, self.db) + + def pre_start(self): + self.db.exec("DROP TABLE IF EXISTS online") + self.db.shared.exec( + "CREATE TABLE IF NOT EXISTS online (char_id BIGINT NOT NULL primary key, " + "channel varchar(32) not null default 'notify', " + "bot BIGINT not null, " + "index bot(bot)) ENGINE MEMORY") + self.db.create_view("online") + self.command_alias_service.add_alias("o", "online") + + @event(event_type="connect", description="Start online watcher") + def startup(self, _, _1): + self.db.exec("DELETE from online where bot=?", [self.bot.get_char_id()]) + + self.watchdog = Thread(name="watchdog", target=self.buddy_handler, daemon=True) + self.watchdog.start() + + @event(event_type="private_channel_joined", description="Change online channel", is_hidden=True) + def priv_join(self, _, event_data): + self.db.exec("insert ignore into online(channel, char_id, bot) VALUES (?, ?, ?)", + [self.bot.name, event_data.char_id, self.bot.get_char_id()]) + + @event(event_type="private_channel_left", description="Change online channel", is_hidden=True) + def priv_leave(self, _, event_data): + self.db.exec("delete from online where char_id = ? and bot = ? and channel=?", + [event_data.char_id, self.bot.get_char_id(), self.bot.name]) + + @event(event_type="member_logon", description="declare players as online") + def logon(self, _, event_data): + self.awaiting_data.put([event_data, 'notify', True]) + + @event(event_type="member_logoff", description="declare players as offline") + def logoff(self, _, event_data): + if self.bot.is_ready(): + self.awaiting_data.put([event_data, 'notify', False]) + + def buddy_handler(self): + while self.bot.status != BotStatus.SHUTDOWN: + data, channel, logged = self.awaiting_data.get() + buddy = (self.buddy_service.get_buddy(data.packet.char_id) or {}).get("types", []) + if ("org_member" in buddy) or ("member" in buddy): + if logged: + self.db.exec("INSERT IGNORE INTO online VALUES(?, ?, ?)", + [data.packet.char_id, channel, self.bot.get_char_id()]) + self.db.exec("UPDATE account set last_seen=? where char_id=?", [time.time(), data.packet.char_id]) + else: + self.db.exec("DELETE FROM online where char_id=? and bot=?", + [data.packet.char_id, self.bot.get_char_id()]) + self.db.exec("UPDATE account set last_seen=? where char_id=?", [time.time(), data.packet.char_id]) + + @command(command="online", params=[Const('all', is_optional=True), + Int("min_level", is_optional=True), + Any("profession", is_optional=True)], + description="shows online players", + access_level="member") + def online_all_cmd(self, _, const_all, min_level, profession): + query = "" + params = [self.bot.name, self.bot.get_char_id()] + if const_all: + query += "and channel_id IN (1, 2, 3) " + else: + query += "and channel_id IN (1, 2) " + if min_level: + query += "and p.level >= ? " + params.append(min_level) + if profession: + query += "and p.profession = ? " + params.append(self.util.get_profession(profession)) + blob = self.online_display.format_by_channel_main(query, params) + _.reply(self.online_display.format_blob(blob)) + + @command(command="count", + params=[Options(["org", "prof", "tl"], is_optional=True), Any("filter", is_optional=True)], + description="Counts online players", + access_level="member") + def count(self, _, option, filters): + query = "and channel_id IN (1, 2) " + params = [self.bot.name, self.bot.get_char_id()] + if not option: + option = "prof" + + if option == "prof": + return self.online_display.count_prof(query, params, filters) + elif option == "org": + return self.online_display.count_org(query, params, filters) + elif option == "tl": + if filters: + try: + filters = int(filters) + except ValueError: + return f"Invalid Title level: {filters}" + return self.online_display.count_tl(query, params, filters) diff --git a/modules/standard/online/online_display.py b/modules/standard/online/online_display.py new file mode 100644 index 0000000..f0ff75d --- /dev/null +++ b/modules/standard/online/online_display.py @@ -0,0 +1,284 @@ +from typing import List + +from core.chat_blob import ChatBlob +from core.db import DB +from core.dict_object import DictObject +from core.text import Text +from core.util import Util + + +class OnlineDisplay: + def __init__(self, text, util, db): + self.text: Text = text + self.util: Util = util + self.db: DB = db + + def get_online_players(self, order, group="", params=None): + return self.db.query(f"SELECT r.*, " + f"CASE WHEN r.rank = 'admin' then 1 " + f"WHEN r.rank = 'moderator' then 2 " + f"WHEN r.rank = 'council' then 3 " + f"WHEN r.rank = 'leader' then 4 " + f"else 5 END as r_id, " + f"CASE WHEN o.channel = 'org' then 1 " + f"WHEN o.channel = ? then 2 " + f"WHEN o.channel = 'notify' then 3 " + f"else 4 END as channel_id, o.channel, " + f"p.*, a.main as main_id, p2.name as main_name, o.bot from online o " + f"left join player p on o.char_id = p.char_id " + f"left join account a on o.char_id = a.char_id " + f"left join player p2 on a.main = p2.char_id " + f"left join ranks r on a.main = r.main " + f"{group} HAVING bot=? {order}", params) + + def format_blob(self, online, title="Online Players"): + blob, org, priv, notify = online + postfix = [] + if org > 0: + postfix.append(f"Org: {org}") + if priv > 0: + postfix.append(f"Priv: {priv}") + if notify > 0: + postfix.append(f"Buddylist: {notify}") + blob = ChatBlob(title, blob) + blob.page_postfix = f" ({f', '.join(postfix)})" + return blob + + def format_by_channel_main(self, query, params): + query += "order by channel_id, main_name, p.name=main_name, p.name, r_id" + players = self.get_online_players(query, params=params) + channel_id = 0 + main_id = 0 + blob = "" + in_org_priv = [] + org, priv, notify = 0, 0, 0 + previous = DictObject({'char_id': 0}) + for player in players: + rank = "" + + if 'rank' in player: + rank = f" [{player.rank[:1].upper()}]" if player.rank else "" + if previous.char_id == player.char_id: + continue + previous = player + + if player.char_id in in_org_priv: + continue + if player.channel_id != channel_id: + channel_id = player.channel_id + blob += f"\n\n.::
{self.get_channel_name(channel_id)}
::.
" + main_id = 0 + in_org_priv.append(player.char_id) + + if main_id != player.main_id: + main_id = player.main_id + blob += f"\n{player.main_name}{rank}:\n" + if channel_id == 1: + org += 1 + elif channel_id == 2: + priv += 1 + elif channel_id == 3: + notify += 1 + if channel_id == 1: + blob += self.format_org(player) + elif channel_id == 2: + blob += self.format_priv(player) + elif channel_id == 3: + blob += self.format_notify(player) + return blob, org, priv, notify + + def format_by_channel_prof(self, query, params): + query += "order by channel_id, profession, level desc, r_id" + players = self.get_online_players(query, params=params) + channel_id = 0 + profession = 0 + blob = "" + in_org_priv = [] + org, priv, notify = 0, 0, 0 + previous = DictObject({'char_id': 0}) + for player in players: + rank = "" + if player.char_id in in_org_priv: + continue + if 'rank' in player: + rank = f"[{player.rank[:1].upper()}] " if player.rank else "" + if previous.char_id == player.char_id: + continue + previous = player + if player.channel_id != channel_id: + channel_id = player.channel_id + blob += f"\n\n.::
{self.get_channel_name(channel_id)}
::.
" + profession = 0 + in_org_priv.append(player.char_id) + + if profession != player.profession: + profession = player.profession + blob += f"\n{player.profession}:\n" + if channel_id == 1: + blob += self.format_org(player, rank, main_order=True) + org += 1 + elif channel_id == 2: + blob += self.format_priv(player, rank, main_order=True) + priv += 1 + elif channel_id == 3: + blob += self.format_notify(player, rank, main_order=True) + notify += 1 + return blob, org, priv, notify + + def format_by_org(self, query, params): + blob = "" + query += " and org_id IN (SELECT org_id from orgs) and channel_id = 3 " \ + "ORDER BY p.org_name, p.name, p.org_rank_id" + query = self.get_online_players(query, params=params) + org_id = 0 + temp_blob = { + } + last = 0 + for user in query: + if last == user.char_id: + continue + last = user.char_id + if user.org_name not in temp_blob: + temp_blob[user.org_name] = {"name": user.org_name, "id": user.org_id, "online": []} + temp_blob[user.org_name]["online"].extend([user]) + + for key in sorted(temp_blob): + if len(temp_blob[key]['online']) == 0: + continue + for user in temp_blob[key]['online']: + if org_id != temp_blob[key]["id"]: + org_id = temp_blob[key]["id"] + blob += f"\n{temp_blob[key]['name']}" \ + f"
({len(temp_blob[key]['online']): >3} " \ + f"| {len(temp_blob[key]['online']) / len(query) * 100:.2f}%)
\n" + blob += self.format_org(user) + return blob, 0, 0, len(query) + + def get_channel_name(self, c_id): + if c_id == 1: + return "Org Channel" + elif c_id == 2: + return "Private Channel" + elif c_id == 3: + return "Buddylist" + + def format_org(self, player, rank="", main_order=False): + main = f"[{self.text.make_tellcmd(player.main_name, f'alts {player.main_name}')}]" if main_order else "" + return f" {self.util.get_prof_icon(player.profession)} {rank}" \ + f"{self.text.zfill(player.level, 220)}/{self.text.zfill(player.ai_level, 30)} " \ + f"<{player.faction.lower()}>{player.name} ({player.org_rank_name}) {main}\n" + + def format_priv(self, player, rank="", main_order=False): + main = f"[{self.text.make_tellcmd(player.main_name, f'alts {player.main_name}')}]" if main_order else "" + return f" {self.util.get_prof_icon(player.profession)} {rank}" \ + f"{self.text.zfill(player.level, 220)}/{self.text.zfill(player.ai_level, 30)} " \ + f"<{player.faction.lower()}>{player.name} " \ + f"({player.org_name}|{player.org_rank_name}) {main}\n" + + def format_notify(self, player, rank="", main_order=False): + main = f"[{self.text.make_tellcmd(player.main_name, f'alts {player.main_name}')}]" if main_order else "" + return f" {self.util.get_prof_icon(player.profession)} {rank}" \ + f"{self.text.zfill(player.level, 220)}/{self.text.zfill(player.ai_level, 30)} " \ + f"<{player.faction.lower()}>{player.name} " \ + f"({player.org_name}|{player.org_rank_name}) {main}\n" + + def count_prof(self, query, params, filters): + if filters: + filters = self.util.get_profession(filters) + params.append(filters) + if not filters: + return "Unknown profession" + query += "and profession = ? ORDER BY p.profession " + previous = [] + data = [] + for x in self.get_online_players(query, params=params): + if x.char_id in previous: + continue + data.append(f"{x.name} [{x.level}/{x.ai_level}]") + previous.append(x.char_id) + return f"""{filters}'s: {", ".join(data)}""" + else: + query += "ORDER BY p.profession " + data = self.get_online_players(query, params=params) + profs = {} + previous = [] + for user in data: + if user.char_id in previous: + continue + previous.append(user.char_id) + if user.profession not in profs: + profs[user.profession] = 0 + profs[user.profession] += 1 + blob = [] + for key, value in profs.items(): + blob.append(f"[{self.util.get_profession(key, long=False)}: {value}]") + return ", ".join(blob) + + def count_org(self, query, params, search): + if search: + filters = self.db.query_single("SELECT * from all_orgs where org_id = ? OR org_name = ?", + [search, search]) + if not filters: + return f"Could not find org {search}" + params.append(filters.org_id) + query += "and p.org_id=? ORDER BY p.profession, p.name, p.level " + previous = [] + data = [] + for x in self.get_online_players(query, params=params): + if x.char_id in previous: + continue + data.append(self.format_org(x)) + previous.append(x.char_id) + return ChatBlob(f"Online Players ({filters.org_name} - {len(data)})", "".join(data)) + else: + query += "ORDER BY p.org_name " + data = self.get_online_players(query, params=params) + orgs = {} + count = 0 + previous = [] + for user in data: + if user.char_id in previous: + continue + previous.append(user.char_id) + if user.org_name not in orgs: + orgs[user.org_name] = 0 + orgs[user.org_name] += 1 + count += 1 + blob = [] + for key, value in orgs.items(): + blob.append( + f"[{key}: {value} - {value / count * 100:.2f}%] " + f"[{self.text.make_tellcmd('Show', f'count org {key}')}]") + return ChatBlob(f"Online Organisations ({len(blob)})", "\n ".join(blob)) + + def count_tl(self, query, params: List, search): + if search: + min_level, max_level = self.util.get_level_range_tl(search) + if min_level == 0 and max_level == 0: + return f" Title level out of range: {search}" + params.extend([min_level, max_level]) + query += "and p.level > ? and p.level < ? ORDER BY p.level desc " + previous = [] + data = [] + for x in self.get_online_players(query, params=params): + if x.char_id in previous: + continue + data.append(self.format_priv(x)) + previous.append(x.char_id) + return ChatBlob(f"Online Players TL{search} ({len(data)})", "".join(data)) + else: + query += "ORDER BY p.level " + tls = {} + previous = [] + for user in self.get_online_players(query, params=params): + if user.char_id in previous: + continue + tl = self.util.get_title_level(user.level) + if tl not in tls: + tls[tl] = 0 + tls[tl] += 1 + previous.append(user.char_id) + blob = [] + for key, value in tls.items(): + blob.append(f"[TL{key}: {value}]") + return ", ".join(blob) diff --git a/modules/standard/perks/perks.sql b/modules/standard/perks/perks.sql new file mode 100644 index 0000000..9e506e2 --- /dev/null +++ b/modules/standard/perks/perks.sql @@ -0,0 +1,3362 @@ +# noinspection LongLineForFile + +DROP TABLE IF EXISTS perk; +CREATE TABLE IF NOT EXISTS perk +( + id INT NOT NULL PRIMARY KEY, + name VARCHAR(25) NOT NULL +); +DROP TABLE IF EXISTS perk_level; +CREATE TABLE IF NOT EXISTS perk_level +( + id INT NOT NULL PRIMARY KEY, + perk_id INT NOT NULL, + number INT NOT NULL, + min_level INT NOT NULL +); +DROP TABLE IF EXISTS perk_prof; +CREATE TABLE IF NOT EXISTS perk_prof +( + perk_id INT NOT NULL, + profession VARCHAR(25) NOT NULL +); +DROP TABLE IF EXISTS perk_level_buffs; +CREATE TABLE IF NOT EXISTS perk_level_buffs +( + perk_level_id INT NOT NULL, + skill VARCHAR(50) NOT NULL, + amount INT NOT NULL +); +INSERT INTO perk (id, name) +VALUES (1, 'Enhance DNA'), + (2, 'First Aid'), + (3, 'Freak Strength'), + (4, 'Genius'), + (5, 'Kung-Fu Master'), + (6, 'Ambidextrous'), + (7, 'Cartographer'), + (8, 'Enhance Health'), + (9, 'Enhance Nano'), + (10, 'Explorer'), + (11, 'Motorist'), + (12, 'NCU Extensions'), + (13, 'Training Seminar'), + (14, 'Notum Repulsor'), + (15, 'Edged Mastery'), + (16, 'Blunt Mastery'), + (17, 'Mountaineer'), + (18, 'Acrobat'), + (19, 'Notum Source'), + (20, 'Careful in Battle'), + (21, 'Brawler'), + (22, 'Colossal Health'), + (23, 'Infantry'), + (24, 'Power Up'), + (25, 'Shotgun Mastery'), + (26, 'SMG Mastery'), + (27, 'Alchemist'), + (28, 'Pistol Mastery'), + (29, 'Tinkerer'), + (30, 'Nano Doctorate'), + (31, 'Starfall'), + (32, 'Theoretical Research'), + (33, 'Disharmony'), + (34, 'Spiritual Master'), + (35, 'Thief'), + (36, 'Grid NCU Extension'), + (37, 'Hit and Run'), + (38, 'Lightstalker'), + (39, 'Shadowstalker'), + (40, 'Ferocity of Nature'), + (41, 'Outdoorsman'), + (42, 'Assault Force Medic'), + (43, 'Nano Surgeon'), + (44, 'Specialist Healer'), + (45, 'Heavy Ranged'), + (46, 'Special Forces'), + (47, 'Demolitions'), + (48, 'Gadgeteer'), + (49, 'Mechanic'), + (50, 'Assassin'), + (51, 'Black Ops'), + (52, 'Shadowsneak'), + (53, 'Sharpshoooter'), + (54, 'Form of Troll'), + (55, 'Manners of Mongo'), + (56, 'Bone Crusher'), + (57, 'Directorship'), + (58, 'Insurance Agent'), + (59, 'Bureaucratic Shuffle'), + (60, 'Piercing Mastery'), + (61, 'Totemic Rites'), + (62, 'Shade Touch'), + (63, 'Sublime Rapport'), + (64, 'Spirit Phylactery'), + (65, 'Notum Siphon'), + (66, 'Essence of Notum'), + (67, 'Enhanced Nano Damage'), + (68, 'Channel Rage'), + (69, 'Soothing Spirits'), + (70, 'Accumulator'), + (71, 'Distill Life'), + (72, 'Blessing'), + (73, 'Holy Mark'), + (74, 'Reaver');; +INSERT INTO perk_level (id, perk_id, number, min_level) +VALUES (1, 1, 1, 10), + (2, 1, 2, 30), + (3, 1, 3, 50), + (4, 1, 4, 70), + (5, 1, 5, 90), + (6, 1, 6, 110), + (7, 1, 7, 130), + (8, 1, 8, 150), + (9, 1, 9, 170), + (10, 1, 10, 190), + (11, 2, 1, 30), + (12, 2, 2, 70), + (13, 2, 3, 130), + (14, 2, 4, 180), + (15, 3, 1, 120), + (16, 3, 2, 200), + (17, 3, 3, 208), + (18, 4, 1, 60), + (19, 4, 2, 110), + (20, 4, 3, 190), + (21, 5, 1, 50), + (22, 5, 2, 100), + (23, 5, 3, 150), + (24, 5, 4, 200), + (25, 5, 5, 203), + (26, 6, 1, 10), + (27, 6, 2, 30), + (28, 6, 3, 80), + (29, 6, 4, 110), + (30, 6, 5, 150), + (31, 7, 1, 20), + (32, 7, 2, 30), + (33, 7, 3, 50), + (34, 7, 4, 80), + (35, 7, 5, 100), + (36, 8, 1, 30), + (37, 8, 2, 60), + (38, 8, 3, 80), + (39, 8, 4, 100), + (40, 8, 5, 140), + (41, 8, 6, 180), + (42, 8, 7, 201), + (43, 9, 1, 30), + (44, 9, 2, 60), + (45, 9, 3, 80), + (46, 9, 4, 100), + (47, 9, 5, 140), + (48, 9, 6, 180), + (49, 9, 7, 201), + (50, 10, 1, 30), + (51, 10, 2, 60), + (52, 10, 3, 90), + (53, 10, 4, 140), + (54, 11, 1, 30), + (55, 11, 2, 70), + (56, 11, 3, 100), + (57, 11, 4, 140), + (58, 12, 1, 40), + (59, 12, 2, 70), + (60, 12, 3, 110), + (61, 12, 4, 150), + (62, 12, 5, 190), + (63, 12, 6, 201), + (64, 12, 7, 204), + (65, 12, 8, 210), + (66, 13, 1, 20), + (67, 13, 2, 60), + (68, 13, 3, 100), + (69, 13, 4, 150), + (70, 14, 1, 30), + (71, 14, 2, 60), + (72, 14, 3, 90), + (73, 14, 4, 110), + (74, 14, 5, 130), + (75, 14, 6, 200), + (76, 14, 7, 203), + (77, 14, 8, 207), + (78, 15, 1, 20), + (79, 15, 2, 50), + (80, 15, 3, 70), + (81, 15, 4, 100), + (82, 15, 5, 130), + (83, 15, 6, 160), + (84, 15, 7, 180), + (85, 15, 8, 201), + (86, 15, 9, 204), + (87, 15, 10, 209), + (88, 16, 1, 10), + (89, 16, 2, 30), + (90, 16, 3, 50), + (91, 16, 4, 80), + (92, 16, 5, 110), + (93, 16, 6, 140), + (94, 16, 7, 170), + (95, 16, 8, 200), + (96, 16, 9, 201), + (97, 16, 10, 203), + (98, 17, 1, 50), + (99, 17, 2, 110), + (100, 17, 3, 190), + (101, 17, 4, 202), + (102, 17, 5, 207), + (103, 18, 1, 30), + (104, 18, 2, 60), + (105, 18, 3, 100), + (106, 18, 4, 140), + (107, 19, 1, 20), + (108, 19, 2, 50), + (109, 19, 3, 80), + (110, 19, 4, 110), + (111, 19, 5, 140), + (112, 19, 6, 180), + (113, 19, 7, 201), + (114, 19, 8, 203), + (115, 19, 9, 207), + (116, 19, 10, 210), + (117, 20, 1, 40), + (118, 20, 2, 70), + (119, 20, 3, 100), + (120, 20, 4, 130), + (121, 20, 5, 160), + (122, 20, 6, 200), + (123, 20, 7, 205), + (124, 20, 8, 207), + (125, 20, 9, 212), + (126, 20, 10, 219), + (127, 21, 1, 30), + (128, 21, 2, 70), + (129, 21, 3, 120), + (130, 21, 4, 190), + (131, 21, 5, 201), + (132, 21, 6, 205), + (133, 22, 1, 10), + (134, 22, 2, 30), + (135, 22, 3, 60), + (136, 22, 4, 90), + (137, 22, 5, 130), + (138, 22, 6, 150), + (139, 22, 7, 190), + (140, 22, 8, 201), + (141, 22, 9, 202), + (142, 22, 10, 206), + (143, 23, 1, 10), + (144, 23, 2, 40), + (145, 23, 3, 60), + (146, 23, 4, 90), + (147, 23, 5, 120), + (148, 23, 6, 140), + (149, 23, 7, 160), + (150, 23, 8, 190), + (151, 23, 9, 201), + (152, 23, 10, 204), + (153, 24, 1, 10), + (154, 24, 2, 40), + (155, 24, 3, 70), + (156, 24, 4, 100), + (157, 24, 5, 130), + (158, 24, 6, 150), + (159, 24, 7, 180), + (160, 24, 8, 201), + (161, 24, 9, 203), + (162, 24, 10, 205), + (163, 25, 1, 10), + (164, 25, 2, 30), + (165, 25, 3, 60), + (166, 25, 4, 90), + (167, 25, 5, 120), + (168, 25, 6, 140), + (169, 25, 7, 160), + (170, 25, 8, 180), + (171, 25, 9, 200), + (172, 25, 10, 202), + (173, 26, 1, 20), + (174, 26, 2, 40), + (175, 26, 3, 60), + (176, 26, 4, 80), + (177, 26, 5, 100), + (178, 26, 6, 130), + (179, 26, 7, 160), + (180, 26, 8, 190), + (181, 26, 9, 201), + (182, 26, 10, 203), + (183, 27, 1, 20), + (184, 27, 2, 40), + (185, 27, 3, 70), + (186, 27, 4, 100), + (187, 27, 5, 130), + (188, 27, 6, 160), + (189, 28, 1, 10), + (190, 28, 2, 30), + (191, 28, 3, 60), + (192, 28, 4, 90), + (193, 28, 5, 120), + (194, 28, 6, 150), + (195, 28, 7, 180), + (196, 28, 8, 201), + (197, 28, 9, 203), + (198, 28, 10, 205), + (199, 29, 1, 60), + (200, 29, 2, 120), + (201, 29, 3, 180), + (202, 29, 4, 200), + (203, 30, 1, 50), + (204, 30, 2, 80), + (205, 30, 3, 120), + (206, 30, 4, 160), + (207, 30, 5, 200), + (208, 30, 6, 202), + (209, 30, 7, 205), + (210, 30, 8, 210), + (211, 30, 9, 213), + (212, 30, 10, 216), + (213, 31, 1, 20), + (214, 31, 2, 50), + (215, 31, 3, 90), + (216, 31, 4, 120), + (217, 31, 5, 150), + (218, 31, 6, 190), + (219, 31, 7, 202), + (220, 31, 8, 205), + (221, 31, 9, 210), + (222, 31, 10, 214), + (223, 32, 1, 40), + (224, 32, 2, 70), + (225, 32, 3, 110), + (226, 32, 4, 140), + (227, 32, 5, 180), + (228, 32, 6, 201), + (229, 32, 7, 203), + (230, 32, 8, 205), + (231, 32, 9, 208), + (232, 32, 10, 209), + (233, 33, 1, 60), + (234, 33, 2, 80), + (235, 33, 3, 110), + (236, 33, 4, 130), + (237, 33, 5, 150), + (238, 33, 6, 170), + (239, 33, 7, 190), + (240, 33, 8, 201), + (241, 33, 9, 205), + (242, 33, 10, 213), + (243, 34, 1, 10), + (244, 34, 2, 40), + (245, 34, 3, 70), + (246, 34, 4, 100), + (247, 34, 5, 130), + (248, 34, 6, 180), + (249, 34, 7, 201), + (250, 34, 8, 203), + (251, 34, 9, 205), + (252, 34, 10, 210), + (253, 35, 1, 30), + (254, 35, 2, 60), + (255, 35, 3, 100), + (256, 35, 4, 170), + (257, 36, 1, 50), + (258, 36, 2, 120), + (259, 36, 3, 190), + (260, 36, 4, 201), + (261, 37, 1, 180), + (262, 37, 2, 190), + (263, 37, 3, 202), + (264, 37, 4, 204), + (265, 37, 5, 206), + (266, 37, 6, 208), + (267, 38, 1, 20), + (268, 38, 2, 70), + (269, 38, 3, 110), + (270, 38, 4, 150), + (271, 38, 5, 200), + (272, 38, 6, 206), + (273, 39, 1, 20), + (274, 39, 2, 70), + (275, 39, 3, 110), + (276, 39, 4, 150), + (277, 39, 5, 200), + (278, 39, 6, 206), + (279, 40, 1, 205), + (280, 41, 1, 80), + (281, 41, 2, 140), + (282, 41, 3, 200), + (283, 42, 1, 60), + (284, 42, 2, 80), + (285, 42, 3, 100), + (286, 42, 4, 120), + (287, 42, 5, 150), + (288, 42, 6, 190), + (289, 42, 7, 200), + (290, 42, 8, 204), + (291, 42, 9, 208), + (292, 42, 10, 212), + (293, 43, 1, 40), + (294, 43, 2, 80), + (295, 43, 3, 120), + (296, 43, 4, 150), + (297, 43, 5, 180), + (298, 43, 6, 201), + (299, 44, 1, 70), + (300, 44, 2, 90), + (301, 44, 3, 130), + (302, 44, 4, 150), + (303, 44, 5, 160), + (304, 44, 6, 180), + (305, 44, 7, 200), + (306, 44, 8, 204), + (307, 44, 9, 209), + (308, 44, 10, 211), + (309, 45, 1, 20), + (310, 45, 2, 30), + (311, 45, 3, 60), + (312, 45, 4, 90), + (313, 45, 5, 140), + (314, 45, 6, 180), + (315, 45, 7, 202), + (316, 45, 8, 205), + (317, 46, 1, 20), + (318, 46, 2, 50), + (319, 46, 3, 70), + (320, 46, 4, 90), + (321, 46, 5, 110), + (322, 46, 6, 130), + (323, 46, 7, 170), + (324, 46, 8, 201), + (325, 46, 9, 203), + (326, 46, 10, 205), + (327, 47, 1, 20), + (328, 47, 2, 50), + (329, 47, 3, 90), + (330, 47, 4, 120), + (331, 47, 5, 150), + (332, 47, 6, 190), + (333, 47, 7, 201), + (334, 47, 8, 203), + (335, 47, 9, 206), + (336, 47, 10, 209), + (337, 48, 1, 10), + (338, 48, 2, 20), + (339, 48, 3, 40), + (340, 48, 4, 70), + (341, 48, 5, 100), + (342, 48, 6, 120), + (343, 48, 7, 150), + (344, 48, 8, 180), + (345, 48, 9, 200), + (346, 48, 10, 203), + (347, 49, 1, 30), + (348, 49, 2, 50), + (349, 49, 3, 70), + (350, 49, 4, 100), + (351, 49, 5, 130), + (352, 49, 6, 160), + (353, 49, 7, 201), + (354, 49, 8, 206), + (355, 49, 9, 212), + (356, 49, 10, 217), + (357, 50, 1, 10), + (358, 50, 2, 20), + (359, 50, 3, 30), + (360, 50, 4, 40), + (361, 50, 5, 80), + (362, 50, 6, 120), + (363, 50, 7, 170), + (364, 50, 8, 190), + (365, 50, 9, 201), + (366, 50, 10, 203), + (367, 51, 1, 20), + (368, 51, 2, 50), + (369, 51, 3, 80), + (370, 51, 4, 120), + (371, 51, 5, 150), + (372, 51, 6, 170), + (373, 51, 7, 190), + (374, 51, 8, 201), + (375, 51, 9, 203), + (376, 51, 10, 208), + (377, 52, 1, 10), + (378, 52, 2, 30), + (379, 52, 3, 70), + (380, 52, 4, 100), + (381, 52, 5, 130), + (382, 52, 6, 160), + (383, 52, 7, 200), + (384, 52, 8, 203), + (385, 52, 9, 208), + (386, 52, 10, 213), + (387, 53, 1, 50), + (388, 53, 2, 100), + (389, 53, 3, 160), + (390, 53, 4, 201), + (391, 53, 5, 203), + (392, 53, 6, 218), + (393, 54, 1, 30), + (394, 54, 2, 60), + (395, 54, 3, 90), + (396, 54, 4, 110), + (397, 54, 5, 130), + (398, 54, 6, 160), + (399, 54, 7, 200), + (400, 54, 8, 202), + (401, 54, 9, 204), + (402, 54, 10, 215), + (403, 55, 1, 20), + (404, 55, 2, 40), + (405, 55, 3, 70), + (406, 55, 4, 100), + (407, 55, 5, 150), + (408, 55, 6, 201), + (409, 55, 7, 205), + (410, 55, 8, 209), + (411, 55, 9, 214), + (412, 55, 10, 219), + (413, 56, 1, 10), + (414, 56, 2, 30), + (415, 56, 3, 50), + (416, 56, 4, 80), + (417, 56, 5, 110), + (418, 56, 6, 140), + (419, 56, 7, 170), + (420, 56, 8, 200), + (421, 56, 9, 201), + (422, 56, 10, 203), + (423, 57, 1, 30), + (424, 57, 2, 60), + (425, 57, 3, 90), + (426, 57, 4, 110), + (427, 57, 5, 140), + (428, 57, 6, 160), + (429, 57, 7, 190), + (430, 57, 8, 201), + (431, 57, 9, 205), + (432, 57, 10, 208), + (433, 58, 1, 80), + (434, 58, 2, 140), + (435, 58, 3, 190), + (436, 58, 4, 203), + (437, 58, 5, 209), + (438, 59, 1, 50), + (439, 59, 2, 70), + (440, 59, 3, 100), + (441, 59, 4, 140), + (442, 59, 5, 160), + (443, 59, 6, 180), + (444, 59, 7, 201), + (445, 59, 8, 202), + (446, 59, 9, 203), + (447, 59, 10, 206), + (448, 60, 1, 10), + (449, 60, 2, 30), + (450, 60, 3, 60), + (451, 60, 4, 90), + (452, 60, 5, 130), + (453, 60, 6, 160), + (454, 60, 7, 190), + (455, 60, 8, 201), + (456, 60, 9, 202), + (457, 60, 10, 208), + (458, 61, 1, 10), + (459, 61, 2, 40), + (460, 61, 3, 60), + (461, 61, 4, 90), + (462, 61, 5, 120), + (463, 61, 6, 150), + (464, 61, 7, 170), + (465, 61, 8, 190), + (466, 61, 9, 201), + (467, 61, 10, 204), + (468, 62, 1, 20), + (469, 62, 2, 60), + (470, 62, 3, 90), + (471, 62, 4, 130), + (472, 62, 5, 160), + (473, 62, 6, 200), + (474, 62, 7, 205), + (475, 63, 1, 10), + (476, 63, 2, 30), + (477, 63, 3, 60), + (478, 63, 4, 90), + (479, 63, 5, 120), + (480, 63, 6, 150), + (481, 63, 7, 170), + (482, 63, 8, 190), + (483, 63, 9, 201), + (484, 63, 10, 203), + (485, 64, 1, 20), + (486, 64, 2, 40), + (487, 64, 3, 60), + (488, 64, 4, 100), + (489, 64, 5, 130), + (490, 64, 6, 150), + (491, 64, 7, 160), + (492, 64, 8, 200), + (493, 64, 9, 202), + (494, 64, 10, 203), + (495, 65, 1, 30), + (496, 65, 2, 60), + (497, 65, 3, 90), + (498, 65, 4, 130), + (499, 65, 5, 170), + (500, 65, 6, 200), + (501, 65, 7, 203), + (502, 65, 8, 209), + (503, 65, 9, 214), + (504, 65, 10, 218), + (505, 66, 1, 80), + (506, 66, 2, 180), + (507, 66, 3, 203), + (508, 67, 1, 160), + (509, 67, 2, 180), + (510, 67, 3, 200), + (511, 67, 4, 203), + (512, 67, 5, 209), + (513, 67, 6, 215), + (514, 68, 1, 10), + (515, 68, 2, 30), + (516, 68, 3, 60), + (517, 68, 4, 100), + (518, 68, 5, 130), + (519, 68, 6, 170), + (520, 68, 7, 200), + (521, 68, 8, 201), + (522, 68, 9, 205), + (523, 68, 10, 208), + (524, 69, 1, 30), + (525, 69, 2, 30), + (526, 69, 3, 30), + (527, 69, 4, 30), + (528, 69, 5, 30), + (529, 69, 6, 30), + (530, 69, 7, 30), + (531, 69, 8, 30), + (532, 69, 9, 30), + (533, 69, 10, 30), + (534, 70, 1, 10), + (535, 70, 2, 20), + (536, 70, 3, 40), + (537, 70, 4, 60), + (538, 70, 5, 90), + (539, 70, 6, 110), + (540, 70, 7, 130), + (541, 70, 8, 160), + (542, 70, 9, 190), + (543, 70, 10, 202), + (544, 71, 1, 30), + (545, 71, 2, 60), + (546, 71, 3, 90), + (547, 71, 4, 110), + (548, 71, 5, 130), + (549, 71, 6, 150), + (550, 71, 7, 201), + (551, 71, 8, 202), + (552, 71, 9, 205), + (553, 71, 10, 208), + (554, 72, 1, 10), + (555, 72, 2, 30), + (556, 72, 3, 50), + (557, 72, 4, 80), + (558, 72, 5, 110), + (559, 72, 6, 150), + (560, 72, 7, 170), + (561, 72, 8, 190), + (562, 72, 9, 202), + (563, 72, 10, 207), + (564, 73, 1, 20), + (565, 73, 2, 20), + (566, 73, 3, 20), + (567, 73, 4, 20), + (568, 73, 5, 20), + (569, 73, 6, 20), + (570, 73, 7, 20), + (571, 73, 8, 20), + (572, 73, 9, 20), + (573, 73, 10, 20), + (574, 74, 1, 20), + (575, 74, 2, 50), + (576, 74, 3, 70), + (577, 74, 4, 100), + (578, 74, 5, 130), + (579, 74, 6, 160), + (580, 74, 7, 180), + (581, 74, 8, 201), + (582, 74, 9, 204), + (583, 74, 10, 209); +INSERT INTO perk_prof (perk_id, profession) +VALUES (1, 'Adventurer'), + (1, 'Agent'), + (1, 'Bureaucrat'), + (1, 'Doctor'), + (1, 'Enforcer'), + (1, 'Engineer'), + (1, 'Fixer'), + (1, 'Keeper'), + (1, 'Martial Artist'), + (1, 'Meta-Physicist'), + (1, 'Nano-Technician'), + (1, 'Shade'), + (1, 'Soldier'), + (1, 'Trader'), + (2, 'Adventurer'), + (2, 'Agent'), + (2, 'Bureaucrat'), + (2, 'Doctor'), + (2, 'Enforcer'), + (2, 'Engineer'), + (2, 'Fixer'), + (2, 'Keeper'), + (2, 'Martial Artist'), + (2, 'Meta-Physicist'), + (2, 'Nano-Technician'), + (2, 'Shade'), + (2, 'Soldier'), + (2, 'Trader'), + (3, 'Adventurer'), + (3, 'Agent'), + (3, 'Bureaucrat'), + (3, 'Doctor'), + (3, 'Enforcer'), + (3, 'Engineer'), + (3, 'Fixer'), + (3, 'Keeper'), + (3, 'Martial Artist'), + (3, 'Meta-Physicist'), + (3, 'Nano-Technician'), + (3, 'Shade'), + (3, 'Soldier'), + (3, 'Trader'), + (4, 'Adventurer'), + (4, 'Agent'), + (4, 'Bureaucrat'), + (4, 'Doctor'), + (4, 'Enforcer'), + (4, 'Engineer'), + (4, 'Fixer'), + (4, 'Keeper'), + (4, 'Martial Artist'), + (4, 'Meta-Physicist'), + (4, 'Nano-Technician'), + (4, 'Shade'), + (4, 'Soldier'), + (4, 'Trader'), + (5, 'Adventurer'), + (5, 'Agent'), + (5, 'Bureaucrat'), + (5, 'Doctor'), + (5, 'Enforcer'), + (5, 'Engineer'), + (5, 'Fixer'), + (5, 'Keeper'), + (5, 'Martial Artist'), + (5, 'Meta-Physicist'), + (5, 'Nano-Technician'), + (5, 'Shade'), + (5, 'Soldier'), + (5, 'Trader'), + (6, 'Adventurer'), + (6, 'Agent'), + (6, 'Bureaucrat'), + (6, 'Doctor'), + (6, 'Enforcer'), + (6, 'Engineer'), + (6, 'Fixer'), + (6, 'Keeper'), + (6, 'Martial Artist'), + (6, 'Meta-Physicist'), + (6, 'Nano-Technician'), + (6, 'Shade'), + (6, 'Soldier'), + (6, 'Trader'), + (7, 'Adventurer'), + (7, 'Agent'), + (7, 'Bureaucrat'), + (7, 'Doctor'), + (7, 'Enforcer'), + (7, 'Engineer'), + (7, 'Fixer'), + (7, 'Keeper'), + (7, 'Martial Artist'), + (7, 'Meta-Physicist'), + (7, 'Nano-Technician'), + (7, 'Shade'), + (7, 'Soldier'), + (7, 'Trader'), + (8, 'Adventurer'), + (8, 'Agent'), + (8, 'Bureaucrat'), + (8, 'Doctor'), + (8, 'Enforcer'), + (8, 'Engineer'), + (8, 'Fixer'), + (8, 'Keeper'), + (8, 'Martial Artist'), + (8, 'Meta-Physicist'), + (8, 'Nano-Technician'), + (8, 'Shade'), + (8, 'Soldier'), + (8, 'Trader'), + (9, 'Adventurer'), + (9, 'Agent'), + (9, 'Bureaucrat'), + (9, 'Doctor'), + (9, 'Enforcer'), + (9, 'Engineer'), + (9, 'Fixer'), + (9, 'Keeper'), + (9, 'Martial Artist'), + (9, 'Meta-Physicist'), + (9, 'Nano-Technician'), + (9, 'Shade'), + (9, 'Soldier'), + (9, 'Trader'), + (10, 'Adventurer'), + (10, 'Agent'), + (10, 'Bureaucrat'), + (10, 'Doctor'), + (10, 'Enforcer'), + (10, 'Engineer'), + (10, 'Fixer'), + (10, 'Keeper'), + (10, 'Martial Artist'), + (10, 'Meta-Physicist'), + (10, 'Nano-Technician'), + (10, 'Shade'), + (10, 'Soldier'), + (10, 'Trader'), + (11, 'Adventurer'), + (11, 'Agent'), + (11, 'Bureaucrat'), + (11, 'Doctor'), + (11, 'Enforcer'), + (11, 'Engineer'), + (11, 'Fixer'), + (11, 'Keeper'), + (11, 'Martial Artist'), + (11, 'Meta-Physicist'), + (11, 'Nano-Technician'), + (11, 'Shade'), + (11, 'Soldier'), + (11, 'Trader'), + (12, 'Adventurer'), + (12, 'Agent'), + (12, 'Bureaucrat'), + (12, 'Doctor'), + (12, 'Enforcer'), + (12, 'Engineer'), + (12, 'Fixer'), + (12, 'Keeper'), + (12, 'Martial Artist'), + (12, 'Meta-Physicist'), + (12, 'Nano-Technician'), + (12, 'Shade'), + (12, 'Soldier'), + (12, 'Trader'), + (13, 'Adventurer'), + (13, 'Agent'), + (13, 'Bureaucrat'), + (13, 'Doctor'), + (13, 'Enforcer'), + (13, 'Engineer'), + (13, 'Fixer'), + (13, 'Keeper'), + (13, 'Martial Artist'), + (13, 'Meta-Physicist'), + (13, 'Nano-Technician'), + (13, 'Shade'), + (13, 'Soldier'), + (13, 'Trader'), + (14, 'Adventurer'), + (14, 'Agent'), + (14, 'Bureaucrat'), + (14, 'Doctor'), + (14, 'Enforcer'), + (14, 'Engineer'), + (14, 'Fixer'), + (14, 'Keeper'), + (14, 'Martial Artist'), + (14, 'Meta-Physicist'), + (14, 'Nano-Technician'), + (14, 'Shade'), + (14, 'Soldier'), + (14, 'Trader'), + (15, 'Adventurer'), + (15, 'Enforcer'), + (16, 'Enforcer'), + (16, 'Meta-Physicist'), + (17, 'Adventurer'), + (17, 'Agent'), + (17, 'Enforcer'), + (17, 'Fixer'), + (17, 'Keeper'), + (17, 'Soldier'), + (18, 'Adventurer'), + (18, 'Fixer'), + (18, 'Martial Artist'), + (18, 'Shade'), + (19, 'Meta-Physicist'), + (19, 'Nano-Technician'), + (20, 'Bureaucrat'), + (20, 'Martial Artist'), + (20, 'Shade'), + (21, 'Enforcer'), + (21, 'Martial Artist'), + (22, 'Enforcer'), + (22, 'Soldier'), + (23, 'Agent'), + (23, 'Soldier'), + (24, 'Agent'), + (24, 'Doctor'), + (24, 'Engineer'), + (24, 'Fixer'), + (24, 'Soldier'), + (24, 'Trader'), + (25, 'Engineer'), + (25, 'Soldier'), + (25, 'Trader'), + (26, 'Fixer'), + (26, 'Soldier'), + (27, 'Doctor'), + (27, 'Engineer'), + (27, 'Trader'), + (28, 'Adventurer'), + (28, 'Bureaucrat'), + (28, 'Doctor'), + (28, 'Engineer'), + (28, 'Meta-Physicist'), + (29, 'Engineer'), + (29, 'Trader'), + (30, 'Agent'), + (30, 'Bureaucrat'), + (30, 'Doctor'), + (30, 'Meta-Physicist'), + (30, 'Nano-Technician'), + (30, 'Trader'), + (31, 'Bureaucrat'), + (31, 'Doctor'), + (31, 'Meta-Physicist'), + (31, 'Nano-Technician'), + (32, 'Meta-Physicist'), + (32, 'Nano-Technician'), + (33, 'Martial Artist'), + (34, 'Martial Artist'), + (35, 'Fixer'), + (36, 'Fixer'), + (37, 'Fixer'), + (38, 'Adventurer'), + (39, 'Adventurer'), + (40, 'Adventurer'), + (41, 'Adventurer'), + (42, 'Doctor'), + (43, 'Doctor'), + (44, 'Doctor'), + (45, 'Soldier'), + (46, 'Soldier'), + (47, 'Engineer'), + (48, 'Engineer'), + (49, 'Engineer'), + (50, 'Agent'), + (51, 'Agent'), + (52, 'Agent'), + (53, 'Agent'), + (54, 'Enforcer'), + (55, 'Enforcer'), + (56, 'Enforcer'), + (57, 'Bureaucrat'), + (58, 'Bureaucrat'), + (59, 'Agent'), + (60, 'Shade'), + (61, 'Shade'), + (62, 'Shade'), + (63, 'Shade'), + (64, 'Shade'), + (65, 'Nano-Technician'), + (66, 'Nano-Technician'), + (67, 'Nano-Technician'), + (68, 'Meta-Physicist'), + (69, 'Meta-Physicist'), + (70, 'Trader'), + (71, 'Trader'), + (72, 'Keeper'), + (73, 'Keeper'), + (74, 'Keeper'), + (74, 'Enforcer'); +INSERT INTO perk_level_buffs (perk_level_id, skill, amount) +VALUES (1, 'Strength', 4), + (1, 'Stamina', 4), + (1, 'Intelligence', 4), + (1, 'Psychic', 4), + (1, 'Sense', 4), + (1, 'Agility', 4), + (1, 'Body development', 3), + (2, 'Strength', 4), + (2, 'Stamina', 4), + (2, 'Intelligence', 4), + (2, 'Psychic', 4), + (2, 'Sense', 4), + (2, 'Agility', 4), + (2, 'Body development', 3), + (3, 'Strength', 4), + (3, 'Stamina', 4), + (3, 'Intelligence', 4), + (3, 'Psychic', 4), + (3, 'Sense', 4), + (3, 'Agility', 4), + (3, 'Body development', 3), + (4, 'Strength', 4), + (4, 'Stamina', 4), + (4, 'Intelligence', 4), + (4, 'Psychic', 4), + (4, 'Sense', 4), + (4, 'Agility', 4), + (4, 'Body development', 3), + (5, 'Strength', 4), + (5, 'Stamina', 4), + (5, 'Intelligence', 4), + (5, 'Psychic', 4), + (5, 'Sense', 4), + (5, 'Agility', 4), + (5, 'Body development', 3), + (6, 'Strength', 4), + (6, 'Stamina', 4), + (6, 'Intelligence', 4), + (6, 'Psychic', 4), + (6, 'Sense', 4), + (6, 'Agility', 4), + (6, 'Body development', 4), + (7, 'Strength', 5), + (7, 'Stamina', 5), + (7, 'Intelligence', 5), + (7, 'Psychic', 5), + (7, 'Sense', 5), + (7, 'Agility', 5), + (7, 'Body development', 4), + (8, 'Strength', 5), + (8, 'Stamina', 5), + (8, 'Intelligence', 5), + (8, 'Psychic', 5), + (8, 'Sense', 5), + (8, 'Agility', 5), + (8, 'Body development', 5), + (9, 'Strength', 5), + (9, 'Stamina', 5), + (9, 'Intelligence', 5), + (9, 'Psychic', 5), + (9, 'Sense', 5), + (9, 'Agility', 5), + (9, 'Body development', 5), + (10, 'Strength', 6), + (10, 'Stamina', 6), + (10, 'Intelligence', 6), + (10, 'Psychic', 6), + (10, 'Sense', 6), + (10, 'Agility', 6), + (10, 'Body development', 7), + (11, 'Treatment', 10), + (11, 'First Aid', 10), + (12, 'Treatment', 20), + (12, 'First Aid', 20), + (13, 'Treatment', 30), + (13, 'First Aid', 30), + (14, 'Treatment', 40), + (14, 'First Aid', 40), + (15, 'Strength', 5), + (15, 'Stamina', 5), + (15, 'Body development', 10), + (16, 'Strength', 5), + (16, 'Stamina', 5), + (16, 'Body development', 14), + (17, 'Strength', 10), + (17, 'Stamina', 10), + (17, 'Body development', 25), + (18, 'Intelligence', 8), + (18, 'Psychic', 8), + (18, 'Nano pool', 25), + (19, 'Intelligence', 12), + (19, 'Psychic', 12), + (19, 'Nano pool', 35), + (20, 'Intelligence', 20), + (20, 'Psychic', 20), + (20, 'Nano pool', 60), + (21, 'Martial arts', 5), + (22, 'Martial arts', 6), + (23, 'Martial arts', 8), + (24, 'Martial arts', 11), + (25, 'Martial arts', 20), + (26, 'Multi melee', 10), + (26, 'Multi ranged', 10), + (27, 'Multi melee', 15), + (27, 'Multi ranged', 15), + (28, 'Multi melee', 20), + (28, 'Multi ranged', 20), + (29, 'Multi melee', 30), + (29, 'Multi ranged', 30), + (29, 'Cold damage modifier', 5), + (29, 'Chemical damage modifier', 5), + (29, 'Energy damage modifier', 5), + (29, 'Fire damage modifier', 5), + (29, 'Melee damage modifier', 5), + (29, 'Poison damage modifier', 5), + (29, 'Radiation damage modifier', 5), + (29, 'Projectile damage modifier', 5), + (30, 'Multi melee', 45), + (30, 'Multi ranged', 45), + (30, 'Defense modifier', 8), + (30, 'Cold damage modifier', 15), + (30, 'Chemical damage modifier', 15), + (30, 'Energy damage modifier', 15), + (30, 'Fire damage modifier', 15), + (30, 'Melee damage modifier', 15), + (30, 'Poison damage modifier', 15), + (30, 'Radiation damage modifier', 15), + (30, 'Projectile damage modifier', 15), + (31, 'Map navigation', 20), + (31, 'Adventuring', 5), + (32, 'Map navigation', 25), + (32, 'Adventuring', 6), + (33, 'Map navigation', 30), + (33, 'Adventuring', 8), + (34, 'Map navigation', 40), + (34, 'Adventuring', 15), + (35, 'Map navigation', 85), + (35, 'Adventuring', 26), + (36, 'Max health', 40), + (37, 'Max health', 80), + (38, 'Max health', 100), + (39, 'Max health', 150), + (40, 'Max health', 230), + (41, 'Max health', 320), + (42, 'Max health', 580), + (43, 'Max Nano', 80), + (44, 'Max Nano', 130), + (45, 'Max Nano', 210), + (46, 'Max Nano', 290), + (47, 'Max Nano', 370), + (48, 'Max Nano', 530), + (49, 'Max Nano', 890), + (50, 'Run Speed', 14), + (50, 'XP Modifier', 1), + (51, 'Run Speed', 18), + (51, 'XP Modifier', 1), + (52, 'Run Speed', 23), + (52, 'XP Modifier', 1), + (53, 'Run Speed', 45), + (53, 'XP Modifier', 2), + (54, 'Vehicle air', 22), + (54, 'Vehicle ground', 22), + (54, 'Vehicle water', 22), + (55, 'Vehicle air', 38), + (55, 'Vehicle ground', 38), + (55, 'Vehicle water', 38), + (56, 'Vehicle air', 50), + (56, 'Vehicle ground', 50), + (56, 'Vehicle water', 50), + (57, 'Vehicle air', 90), + (57, 'Vehicle ground', 90), + (57, 'Vehicle water', 90), + (58, 'Computer literacy', 10), + (58, 'NCU memory', 10), + (59, 'Computer literacy', 10), + (59, 'NCU memory', 11), + (60, 'Computer literacy', 10), + (60, 'NCU memory', 12), + (61, 'Computer literacy', 10), + (61, 'NCU memory', 12), + (62, 'Computer literacy', 10), + (62, 'NCU memory', 15), + (63, 'Computer literacy', 14), + (63, 'NCU memory', 17), + (64, 'Computer literacy', 16), + (64, 'NCU memory', 18), + (65, 'Computer literacy', 20), + (65, 'NCU memory', 35), + (66, 'XP Modifier', 1), + (67, 'XP Modifier', 1), + (68, 'XP Modifier', 2), + (69, 'XP Modifier', 3), + (70, 'Biological metamorphosis', -200), + (70, 'Matter creation', -200), + (70, 'Matter metamorphosis', -200), + (70, 'Psychological modifications', -200), + (70, 'Sensory improvement', -200), + (70, 'Time and space', -200), + (70, 'Nano resist', 300), + (71, 'Biological metamorphosis', -400), + (71, 'Matter creation', -400), + (71, 'Matter metamorphosis', -400), + (71, 'Psychological modifications', -400), + (71, 'Sensory improvement', -400), + (71, 'Time and space', -400), + (71, 'Nano resist', 900), + (72, 'Biological metamorphosis', -800), + (72, 'Matter creation', -800), + (72, 'Matter metamorphosis', -800), + (72, 'Psychological modifications', -800), + (72, 'Sensory improvement', -800), + (72, 'Time and space', -800), + (72, 'Nano resist', 1200), + (73, 'Biological metamorphosis', -1000), + (73, 'Matter creation', -1000), + (73, 'Matter metamorphosis', -1000), + (73, 'Psychological modifications', -1000), + (73, 'Sensory improvement', -1000), + (73, 'Time and space', -1000), + (73, 'Nano resist', 1500), + (74, 'Biological metamorphosis', -1100), + (74, 'Matter creation', -1100), + (74, 'Matter metamorphosis', -1100), + (74, 'Psychological modifications', -1100), + (74, 'Sensory improvement', -1100), + (74, 'Time and space', -1100), + (74, 'Nano resist', 1900), + (75, 'Biological metamorphosis', -1200), + (75, 'Matter creation', -1200), + (75, 'Matter metamorphosis', -1200), + (75, 'Psychological modifications', -1200), + (75, 'Sensory improvement', -1200), + (75, 'Time and space', -1200), + (75, 'Nano resist', 2200), + (76, 'Biological metamorphosis', -1300), + (76, 'Matter creation', -1300), + (76, 'Matter metamorphosis', -1300), + (76, 'Psychological modifications', -1300), + (76, 'Sensory improvement', -1300), + (76, 'Time and space', -1300), + (76, 'Nano resist', 4000), + (77, 'Biological metamorphosis', -2000), + (77, 'Matter creation', -2000), + (77, 'Matter metamorphosis', -2000), + (77, 'Psychological modifications', -2000), + (77, 'Sensory improvement', -2000), + (77, 'Time and space', -2000), + (77, 'Nano resist', 8000), + (78, '1h Edged', 10), + (78, 'Fast attack', 2), + (79, '1h Edged', 10), + (79, 'Fast attack', 2), + (80, '1h Edged', 11), + (80, 'Fast attack', 3), + (81, '1h Edged', 12), + (81, 'Fast attack', 3), + (82, '1h Edged', 13), + (82, 'Fast attack', 4), + (83, '1h Edged', 15), + (83, 'Fast attack', 4), + (84, '1h Edged', 16), + (84, 'Fast attack', 5), + (85, '1h Edged', 22), + (85, 'Fast attack', 7), + (86, '1h Edged', 28), + (86, 'Fast attack', 8), + (87, '1h Edged', 43), + (87, 'Fast attack', 12), + (88, '1h Blunt', 10), + (89, '1h Blunt', 10), + (90, '1h Blunt', 12), + (91, '1h Blunt', 13), + (92, '1h Blunt', 14), + (93, '1h Blunt', 16), + (94, '1h Blunt', 18), + (95, '1h Blunt', 22), + (96, '1h Blunt', 30), + (97, '1h Blunt', 55), + (98, 'Strength', 4), + (98, 'Stamina', 4), + (99, 'Strength', 6), + (99, 'Stamina', 6), + (100, 'Strength', 7), + (100, 'Stamina', 7), + (101, 'Strength', 8), + (101, 'Stamina', 8), + (102, 'Strength', 10), + (102, 'Stamina', 10), + (103, 'Agility', 4), + (104, 'Agility', 6), + (105, 'Agility', 8), + (106, 'Agility', 12), + (107, 'Intelligence', 1), + (107, 'Psychic', 1), + (108, 'Intelligence', 1), + (108, 'Psychic', 1), + (109, 'Intelligence', 1), + (109, 'Psychic', 1), + (110, 'Intelligence', 1), + (110, 'Psychic', 1), + (111, 'Intelligence', 1), + (111, 'Psychic', 1), + (112, 'Intelligence', 1), + (112, 'Psychic', 1), + (113, 'Intelligence', 1), + (113, 'Psychic', 1), + (114, 'Intelligence', 2), + (114, 'Psychic', 2), + (115, 'Intelligence', 2), + (115, 'Psychic', 2), + (116, 'Intelligence', 4), + (116, 'Psychic', 4), + (117, 'Defense modifier', 20), + (117, 'Critical decrease', 2), + (118, 'Defense modifier', 20), + (118, 'Critical decrease', 2), + (119, 'Defense modifier', 22), + (119, 'Critical decrease', 3), + (120, 'Defense modifier', 23), + (120, 'Critical decrease', 3), + (121, 'Defense modifier', 24), + (121, 'Critical decrease', 4), + (122, 'Defense modifier', 26), + (122, 'Critical decrease', 7), + (123, 'Defense modifier', 28), + (123, 'Critical decrease', 9), + (124, 'Defense modifier', 32), + (124, 'Critical decrease', 12), + (125, 'Defense modifier', 40), + (125, 'Critical decrease', 15), + (126, 'Defense modifier', 65), + (126, 'Critical decrease', 23), + (127, 'Brawl', 15), + (127, 'Cold damage modifier', 5), + (127, 'Chemical damage modifier', 5), + (127, 'Energy damage modifier', 5), + (127, 'Fire damage modifier', 5), + (127, 'Melee damage modifier', 5), + (127, 'Poison damage modifier', 5), + (127, 'Radiation damage modifier', 5), + (127, 'Projectile damage modifier', 5), + (128, 'Brawl', 20), + (128, 'Cold damage modifier', 5), + (128, 'Chemical damage modifier', 5), + (128, 'Energy damage modifier', 5), + (128, 'Fire damage modifier', 5), + (128, 'Melee damage modifier', 5), + (128, 'Poison damage modifier', 5), + (128, 'Radiation damage modifier', 5), + (128, 'Projectile damage modifier', 5), + (129, 'Brawl', 25), + (129, 'Cold damage modifier', 6), + (129, 'Chemical damage modifier', 6), + (129, 'Energy damage modifier', 6), + (129, 'Fire damage modifier', 6), + (129, 'Melee damage modifier', 6), + (129, 'Poison damage modifier', 6), + (129, 'Radiation damage modifier', 6), + (129, 'Projectile damage modifier', 6), + (130, 'Brawl', 30), + (130, 'Cold damage modifier', 8), + (130, 'Chemical damage modifier', 8), + (130, 'Energy damage modifier', 8), + (130, 'Fire damage modifier', 8), + (130, 'Melee damage modifier', 8), + (130, 'Poison damage modifier', 8), + (130, 'Radiation damage modifier', 8), + (130, 'Projectile damage modifier', 8), + (131, 'Brawl', 45), + (131, 'Cold damage modifier', 10), + (131, 'Chemical damage modifier', 10), + (131, 'Energy damage modifier', 10), + (131, 'Fire damage modifier', 10), + (131, 'Melee damage modifier', 10), + (131, 'Poison damage modifier', 10), + (131, 'Radiation damage modifier', 10), + (131, 'Projectile damage modifier', 10), + (132, 'Brawl', 65), + (132, 'Cold damage modifier', 16), + (132, 'Chemical damage modifier', 16), + (132, 'Energy damage modifier', 16), + (132, 'Fire damage modifier', 16), + (132, 'Melee damage modifier', 16), + (132, 'Poison damage modifier', 16), + (132, 'Radiation damage modifier', 16), + (132, 'Projectile damage modifier', 16), + (133, 'Max health', 50), + (134, 'Max health', 85), + (135, 'Max health', 115), + (136, 'Max health', 150), + (137, 'Max health', 210), + (138, 'Max health', 290), + (139, 'Max health', 370), + (140, 'Max health', 480), + (141, 'Max health', 590), + (142, 'Max health', 840), + (143, 'Rifle', 6), + (143, 'Fling Shot', 1), + (143, 'Max Health', 10), + (144, 'Rifle', 7), + (144, 'Fling Shot', 1), + (144, 'Max Health', 19), + (145, 'Rifle', 8), + (145, 'Fling Shot', 1), + (145, 'Max Health', 23), + (146, 'Rifle', 9), + (146, 'Fling Shot', 1), + (146, 'Max Health', 27), + (147, 'Rifle', 10), + (147, 'Fling Shot', 2), + (147, 'Max Health', 32), + (148, 'Rifle', 11), + (148, 'Fling Shot', 2), + (148, 'Max Health', 36), + (149, 'Rifle', 12), + (149, 'Fling Shot', 2), + (149, 'Max Health', 44), + (150, 'Rifle', 14), + (150, 'Fling Shot', 2), + (150, 'Max Health', 53), + (151, 'Rifle', 18), + (151, 'Fling Shot', 3), + (151, 'Max Health', 62), + (152, 'Rifle', 25), + (152, 'Fling Shot', 5), + (152, 'Max Health', 94), + (153, 'Ranged Energy', 10), + (153, 'Cold damage modifier', 2), + (153, 'Chemical damage modifier', 2), + (153, 'Energy damage modifier', 2), + (153, 'Fire damage modifier', 2), + (153, 'Melee damage modifier', 2), + (153, 'Poison damage modifier', 2), + (153, 'Radiation damage modifier', 2), + (153, 'Projectile damage modifier', 2), + (154, 'Ranged Energy', 10), + (154, 'Cold damage modifier', 3), + (154, 'Chemical damage modifier', 3), + (154, 'Energy damage modifier', 3), + (154, 'Fire damage modifier', 3), + (154, 'Melee damage modifier', 3), + (154, 'Poison damage modifier', 3), + (154, 'Radiation damage modifier', 3), + (154, 'Projectile damage modifier', 3), + (155, 'Ranged Energy', 12), + (155, 'Cold damage modifier', 3), + (155, 'Chemical damage modifier', 3), + (155, 'Energy damage modifier', 3), + (155, 'Fire damage modifier', 3), + (155, 'Melee damage modifier', 3), + (155, 'Poison damage modifier', 3), + (155, 'Radiation damage modifier', 3), + (155, 'Projectile damage modifier', 3), + (156, 'Ranged Energy', 13), + (156, 'Cold damage modifier', 3), + (156, 'Chemical damage modifier', 3), + (156, 'Energy damage modifier', 3), + (156, 'Fire damage modifier', 3), + (156, 'Melee damage modifier', 3), + (156, 'Poison damage modifier', 3), + (156, 'Radiation damage modifier', 3), + (156, 'Projectile damage modifier', 3), + (157, 'Ranged Energy', 14), + (157, 'Cold damage modifier', 3), + (157, 'Chemical damage modifier', 3), + (157, 'Energy damage modifier', 3), + (157, 'Fire damage modifier', 3), + (157, 'Melee damage modifier', 3), + (157, 'Poison damage modifier', 3), + (157, 'Radiation damage modifier', 3), + (157, 'Projectile damage modifier', 3), + (158, 'Ranged Energy', 16), + (158, 'Cold damage modifier', 4), + (158, 'Chemical damage modifier', 4), + (158, 'Energy damage modifier', 4), + (158, 'Fire damage modifier', 4), + (158, 'Melee damage modifier', 4), + (158, 'Poison damage modifier', 4), + (158, 'Radiation damage modifier', 4), + (158, 'Projectile damage modifier', 4), + (159, 'Ranged Energy', 18), + (159, 'Cold damage modifier', 4), + (159, 'Chemical damage modifier', 4), + (159, 'Energy damage modifier', 4), + (159, 'Fire damage modifier', 4), + (159, 'Melee damage modifier', 4), + (159, 'Poison damage modifier', 4), + (159, 'Radiation damage modifier', 4), + (159, 'Projectile damage modifier', 4), + (160, 'Ranged Energy', 22), + (160, 'Cold damage modifier', 6), + (160, 'Chemical damage modifier', 6), + (160, 'Energy damage modifier', 6), + (160, 'Fire damage modifier', 6), + (160, 'Melee damage modifier', 6), + (160, 'Poison damage modifier', 6), + (160, 'Radiation damage modifier', 6), + (160, 'Projectile damage modifier', 6), + (161, 'Ranged Energy', 30), + (161, 'Cold damage modifier', 8), + (161, 'Chemical damage modifier', 8), + (161, 'Energy damage modifier', 8), + (161, 'Fire damage modifier', 8), + (161, 'Melee damage modifier', 8), + (161, 'Poison damage modifier', 8), + (161, 'Radiation damage modifier', 8), + (161, 'Projectile damage modifier', 8), + (162, 'Ranged Energy', 55), + (162, 'Cold damage modifier', 14), + (162, 'Chemical damage modifier', 14), + (162, 'Energy damage modifier', 14), + (162, 'Fire damage modifier', 14), + (162, 'Melee damage modifier', 14), + (162, 'Poison damage modifier', 14), + (162, 'Radiation damage modifier', 14), + (162, 'Projectile damage modifier', 14), + (163, 'Shotgun', 10), + (163, 'Cold damage modifier', 2), + (163, 'Chemical damage modifier', 2), + (163, 'Energy damage modifier', 2), + (163, 'Fire damage modifier', 2), + (163, 'Melee damage modifier', 2), + (163, 'Poison damage modifier', 2), + (163, 'Radiation damage modifier', 2), + (163, 'Projectile damage modifier', 2), + (164, 'Shotgun', 10), + (164, 'Cold damage modifier', 3), + (164, 'Chemical damage modifier', 3), + (164, 'Energy damage modifier', 3), + (164, 'Fire damage modifier', 3), + (164, 'Melee damage modifier', 3), + (164, 'Poison damage modifier', 3), + (164, 'Radiation damage modifier', 3), + (164, 'Projectile damage modifier', 3), + (165, 'Shotgun', 12), + (165, 'Cold damage modifier', 3), + (165, 'Chemical damage modifier', 3), + (165, 'Energy damage modifier', 3), + (165, 'Fire damage modifier', 3), + (165, 'Melee damage modifier', 3), + (165, 'Poison damage modifier', 3), + (165, 'Radiation damage modifier', 3), + (165, 'Projectile damage modifier', 3), + (166, 'Shotgun', 13), + (166, 'Cold damage modifier', 4), + (166, 'Chemical damage modifier', 4), + (166, 'Energy damage modifier', 4), + (166, 'Fire damage modifier', 4), + (166, 'Melee damage modifier', 4), + (166, 'Poison damage modifier', 4), + (166, 'Radiation damage modifier', 4), + (166, 'Projectile damage modifier', 4), + (167, 'Shotgun', 14), + (167, 'Cold damage modifier', 4), + (167, 'Chemical damage modifier', 4), + (167, 'Energy damage modifier', 4), + (167, 'Fire damage modifier', 4), + (167, 'Melee damage modifier', 4), + (167, 'Poison damage modifier', 4), + (167, 'Radiation damage modifier', 4), + (167, 'Projectile damage modifier', 4), + (168, 'Shotgun', 16), + (168, 'Cold damage modifier', 5), + (168, 'Chemical damage modifier', 5), + (168, 'Energy damage modifier', 5), + (168, 'Fire damage modifier', 5), + (168, 'Melee damage modifier', 5), + (168, 'Poison damage modifier', 5), + (168, 'Radiation damage modifier', 5), + (168, 'Projectile damage modifier', 5), + (169, 'Shotgun', 18), + (169, 'Cold damage modifier', 6), + (169, 'Chemical damage modifier', 6), + (169, 'Energy damage modifier', 6), + (169, 'Fire damage modifier', 6), + (169, 'Melee damage modifier', 6), + (169, 'Poison damage modifier', 6), + (169, 'Radiation damage modifier', 6), + (169, 'Projectile damage modifier', 6), + (170, 'Shotgun', 22), + (170, 'Cold damage modifier', 9), + (170, 'Chemical damage modifier', 9), + (170, 'Energy damage modifier', 9), + (170, 'Fire damage modifier', 9), + (170, 'Melee damage modifier', 9), + (170, 'Poison damage modifier', 9), + (170, 'Radiation damage modifier', 9), + (170, 'Projectile damage modifier', 9), + (171, 'Shotgun', 30), + (171, 'Cold damage modifier', 14), + (171, 'Chemical damage modifier', 14), + (171, 'Energy damage modifier', 14), + (171, 'Fire damage modifier', 14), + (171, 'Melee damage modifier', 14), + (171, 'Poison damage modifier', 14), + (171, 'Radiation damage modifier', 14), + (171, 'Projectile damage modifier', 14), + (172, 'Shotgun', 55), + (172, 'Cold damage modifier', 30), + (172, 'Chemical damage modifier', 30), + (172, 'Energy damage modifier', 30), + (172, 'Fire damage modifier', 30), + (172, 'Melee damage modifier', 30), + (172, 'Poison damage modifier', 30), + (172, 'Radiation damage modifier', 30), + (172, 'Projectile damage modifier', 30), + (173, 'Smg', 10), + (173, 'Burst', 1), + (174, 'Smg', 10), + (174, 'Burst', 1), + (175, 'Smg', 12), + (175, 'Burst', 1), + (176, 'Smg', 13), + (176, 'Burst', 1), + (177, 'Smg', 14), + (177, 'Burst', 2), + (178, 'Smg', 16), + (178, 'Burst', 2), + (179, 'Smg', 18), + (179, 'Burst', 2), + (180, 'Smg', 22), + (180, 'Burst', 3), + (181, 'Smg', 30), + (181, 'Burst', 3), + (182, 'Smg', 55), + (182, 'Burst', 4), + (183, 'Chemistry', 15), + (183, 'Pharmaceuticals', 15), + (184, 'Chemistry', 20), + (184, 'Pharmaceuticals', 20), + (185, 'Chemistry', 25), + (185, 'Pharmaceuticals', 25), + (186, 'Chemistry', 30), + (186, 'Pharmaceuticals', 30), + (187, 'Chemistry', 40), + (187, 'Pharmaceuticals', 40), + (188, 'Chemistry', 70), + (188, 'Pharmaceuticals', 70), + (189, 'Pistol', 10), + (189, 'Fling shot', 1), + (189, 'Cold damage modifier', 2), + (189, 'Chemical damage modifier', 2), + (189, 'Energy damage modifier', 2), + (189, 'Fire damage modifier', 2), + (189, 'Melee damage modifier', 2), + (189, 'Poison damage modifier', 2), + (189, 'Radiation damage modifier', 2), + (189, 'Projectile damage modifier', 2), + (190, 'Pistol', 10), + (190, 'Fling shot', 1), + (190, 'Cold damage modifier', 3), + (190, 'Chemical damage modifier', 3), + (190, 'Energy damage modifier', 3), + (190, 'Fire damage modifier', 3), + (190, 'Melee damage modifier', 3), + (190, 'Poison damage modifier', 3), + (190, 'Radiation damage modifier', 3), + (190, 'Projectile damage modifier', 3), + (191, 'Pistol', 12), + (191, 'Fling shot', 1), + (191, 'Cold damage modifier', 3), + (191, 'Chemical damage modifier', 3), + (191, 'Energy damage modifier', 3), + (191, 'Fire damage modifier', 3), + (191, 'Melee damage modifier', 3), + (191, 'Poison damage modifier', 3), + (191, 'Radiation damage modifier', 3), + (191, 'Projectile damage modifier', 3), + (192, 'Pistol', 13), + (192, 'Fling shot', 1), + (192, 'Cold damage modifier', 4), + (192, 'Chemical damage modifier', 4), + (192, 'Energy damage modifier', 4), + (192, 'Fire damage modifier', 4), + (192, 'Melee damage modifier', 4), + (192, 'Poison damage modifier', 4), + (192, 'Radiation damage modifier', 4), + (192, 'Projectile damage modifier', 4), + (193, 'Pistol', 14), + (193, 'Fling shot', 2), + (193, 'Cold damage modifier', 4), + (193, 'Chemical damage modifier', 4), + (193, 'Energy damage modifier', 4), + (193, 'Fire damage modifier', 4), + (193, 'Melee damage modifier', 4), + (193, 'Poison damage modifier', 4), + (193, 'Radiation damage modifier', 4), + (193, 'Projectile damage modifier', 4), + (194, 'Pistol', 16), + (194, 'Fling shot', 2), + (194, 'Cold damage modifier', 5), + (194, 'Chemical damage modifier', 5), + (194, 'Energy damage modifier', 5), + (194, 'Fire damage modifier', 5), + (194, 'Melee damage modifier', 5), + (194, 'Poison damage modifier', 5), + (194, 'Radiation damage modifier', 5), + (194, 'Projectile damage modifier', 5), + (195, 'Pistol', 18), + (195, 'Fling shot', 2), + (195, 'Cold damage modifier', 5), + (195, 'Chemical damage modifier', 5), + (195, 'Energy damage modifier', 5), + (195, 'Fire damage modifier', 5), + (195, 'Melee damage modifier', 5), + (195, 'Poison damage modifier', 5), + (195, 'Radiation damage modifier', 5), + (195, 'Projectile damage modifier', 5), + (196, 'Pistol', 22), + (196, 'Fling shot', 3), + (196, 'Cold damage modifier', 7), + (196, 'Chemical damage modifier', 7), + (196, 'Energy damage modifier', 7), + (196, 'Fire damage modifier', 7), + (196, 'Melee damage modifier', 7), + (196, 'Poison damage modifier', 7), + (196, 'Radiation damage modifier', 7), + (196, 'Projectile damage modifier', 7), + (197, 'Pistol', 30), + (197, 'Fling shot', 3), + (197, 'Cold damage modifier', 9), + (197, 'Chemical damage modifier', 9), + (197, 'Energy damage modifier', 9), + (197, 'Fire damage modifier', 9), + (197, 'Melee damage modifier', 9), + (197, 'Poison damage modifier', 9), + (197, 'Radiation damage modifier', 9), + (197, 'Projectile damage modifier', 9), + (198, 'Pistol', 55), + (198, 'Fling shot', 4), + (198, 'Cold damage modifier', 18), + (198, 'Chemical damage modifier', 18), + (198, 'Energy damage modifier', 18), + (198, 'Fire damage modifier', 18), + (198, 'Melee damage modifier', 18), + (198, 'Poison damage modifier', 18), + (198, 'Radiation damage modifier', 18), + (198, 'Projectile damage modifier', 18), + (199, 'Electrical engineering', 10), + (199, 'Quantum physics', 10), + (199, 'Mechanical engineering', 10), + (200, 'Electrical engineering', 12), + (200, 'Quantum physics', 12), + (200, 'Mechanical engineering', 12), + (201, 'Electrical engineering', 16), + (201, 'Quantum physics', 16), + (201, 'Mechanical engineering', 16), + (202, 'Electrical engineering', 27), + (202, 'Quantum physics', 27), + (202, 'Mechanical engineering', 27), + (203, 'Biological metamorphosis', 5), + (203, 'Matter creation', 5), + (203, 'Matter metamorphosis', 5), + (203, 'Psychological modifications', 5), + (203, 'Sensory improvement', 5), + (203, 'Time and space', 5), + (204, 'Biological metamorphosis', 6), + (204, 'Matter creation', 6), + (204, 'Matter metamorphosis', 6), + (204, 'Psychological modifications', 6), + (204, 'Sensory improvement', 6), + (204, 'Time and space', 6), + (205, 'Biological metamorphosis', 7), + (205, 'Matter creation', 7), + (205, 'Matter metamorphosis', 7), + (205, 'Psychological modifications', 7), + (205, 'Sensory improvement', 7), + (205, 'Time and space', 7), + (206, 'Biological metamorphosis', 8), + (206, 'Matter creation', 8), + (206, 'Matter metamorphosis', 8), + (206, 'Psychological modifications', 8), + (206, 'Sensory improvement', 8), + (206, 'Time and space', 8), + (207, 'Biological metamorphosis', 9), + (207, 'Matter creation', 9), + (207, 'Matter metamorphosis', 9), + (207, 'Psychological modifications', 9), + (207, 'Sensory improvement', 9), + (207, 'Time and space', 9), + (208, 'Biological metamorphosis', 10), + (208, 'Matter creation', 10), + (208, 'Matter metamorphosis', 10), + (208, 'Psychological modifications', 10), + (208, 'Sensory improvement', 10), + (208, 'Time and space', 10), + (209, 'Biological metamorphosis', 11), + (209, 'Matter creation', 11), + (209, 'Matter metamorphosis', 11), + (209, 'Psychological modifications', 11), + (209, 'Sensory improvement', 11), + (209, 'Time and space', 11), + (210, 'Biological metamorphosis', 12), + (210, 'Matter creation', 12), + (210, 'Matter metamorphosis', 12), + (210, 'Psychological modifications', 12), + (210, 'Sensory improvement', 12), + (210, 'Time and space', 12), + (211, 'Biological metamorphosis', 13), + (211, 'Matter creation', 13), + (211, 'Matter metamorphosis', 13), + (211, 'Psychological modifications', 13), + (211, 'Sensory improvement', 13), + (211, 'Time and space', 13), + (212, 'Biological metamorphosis', 19), + (212, 'Matter creation', 19), + (212, 'Matter metamorphosis', 19), + (212, 'Psychological modifications', 19), + (212, 'Sensory improvement', 19), + (212, 'Time and space', 19), + (213, 'Max health', 5), + (213, 'Max nano', 10), + (214, 'Max health', 8), + (214, 'Max nano', 15), + (215, 'Max health', 10), + (215, 'Max nano', 20), + (216, 'Max health', 13), + (216, 'Max nano', 25), + (216, 'Biological metamorphosis', 1), + (216, 'Matter creation', 1), + (216, 'Matter metamorphosis', 1), + (216, 'Psychological modifications', 1), + (216, 'Sensory improvement', 1), + (216, 'Time and space', 1), + (217, 'Max health', 14), + (217, 'Max nano', 30), + (217, 'Biological metamorphosis', 1), + (217, 'Matter creation', 1), + (217, 'Matter metamorphosis', 1), + (217, 'Psychological modifications', 1), + (217, 'Sensory improvement', 1), + (217, 'Time and space', 1), + (218, 'Max health', 17), + (218, 'Max nano', 35), + (218, 'Biological metamorphosis', 1), + (218, 'Matter creation', 1), + (218, 'Matter metamorphosis', 1), + (218, 'Psychological modifications', 1), + (218, 'Sensory improvement', 1), + (218, 'Time and space', 1), + (219, 'Max health', 18), + (219, 'Max nano', 40), + (219, 'Biological metamorphosis', 2), + (219, 'Matter creation', 2), + (219, 'Matter metamorphosis', 2), + (219, 'Psychological modifications', 2), + (219, 'Sensory improvement', 2), + (219, 'Time and space', 2), + (220, 'Max health', 20), + (220, 'Max nano', 45), + (220, 'Biological metamorphosis', 2), + (220, 'Matter creation', 2), + (220, 'Matter metamorphosis', 2), + (220, 'Psychological modifications', 2), + (220, 'Sensory improvement', 2), + (220, 'Time and space', 2), + (221, 'Max health', 22), + (221, 'Max nano', 70), + (221, 'Biological metamorphosis', 3), + (221, 'Matter creation', 3), + (221, 'Matter metamorphosis', 3), + (221, 'Psychological modifications', 3), + (221, 'Sensory improvement', 3), + (221, 'Time and space', 3), + (222, 'Max health', 33), + (222, 'Max nano', 110), + (222, 'Biological metamorphosis', 5), + (222, 'Matter creation', 5), + (222, 'Matter metamorphosis', 5), + (222, 'Psychological modifications', 5), + (222, 'Sensory improvement', 5), + (222, 'Time and space', 5), + (223, 'Nano programming', 10), + (223, 'Max nano', 25), + (224, 'Nano programming', 10), + (224, 'Max nano', 40), + (225, 'Nano programming', 12), + (225, 'Max nano', 65), + (226, 'Nano programming', 13), + (226, 'Max nano', 75), + (227, 'Nano programming', 14), + (227, 'Max nano', 90), + (228, 'Nano programming', 16), + (228, 'Max nano', 110), + (229, 'Nano programming', 18), + (229, 'Max nano', 130), + (230, 'Nano programming', 22), + (230, 'Max nano', 145), + (231, 'Nano programming', 30), + (231, 'Max nano', 160), + (232, 'Nano programming', 55), + (232, 'Max nano', 260), + (233, 'Cold damage modifier', 7), + (233, 'Chemical damage modifier', 7), + (233, 'Energy damage modifier', 7), + (233, 'Fire damage modifier', 7), + (233, 'Melee damage modifier', 7), + (233, 'Poison damage modifier', 7), + (233, 'Radiation damage modifier', 7), + (233, 'Projectile damage modifier', 7), + (234, 'Cold damage modifier', 9), + (234, 'Chemical damage modifier', 9), + (234, 'Energy damage modifier', 9), + (234, 'Fire damage modifier', 9), + (234, 'Melee damage modifier', 9), + (234, 'Poison damage modifier', 9), + (234, 'Radiation damage modifier', 9), + (234, 'Projectile damage modifier', 9), + (235, 'Cold damage modifier', 11), + (235, 'Chemical damage modifier', 11), + (235, 'Energy damage modifier', 11), + (235, 'Fire damage modifier', 11), + (235, 'Melee damage modifier', 11), + (235, 'Poison damage modifier', 11), + (235, 'Radiation damage modifier', 11), + (235, 'Projectile damage modifier', 11), + (236, 'Cold damage modifier', 13), + (236, 'Chemical damage modifier', 13), + (236, 'Energy damage modifier', 13), + (236, 'Fire damage modifier', 13), + (236, 'Melee damage modifier', 13), + (236, 'Poison damage modifier', 13), + (236, 'Radiation damage modifier', 13), + (236, 'Projectile damage modifier', 13), + (237, 'Cold damage modifier', 17), + (237, 'Chemical damage modifier', 17), + (237, 'Energy damage modifier', 17), + (237, 'Fire damage modifier', 17), + (237, 'Melee damage modifier', 17), + (237, 'Poison damage modifier', 17), + (237, 'Radiation damage modifier', 17), + (237, 'Projectile damage modifier', 17), + (238, 'Cold damage modifier', 19), + (238, 'Chemical damage modifier', 19), + (238, 'Energy damage modifier', 19), + (238, 'Fire damage modifier', 19), + (238, 'Melee damage modifier', 19), + (238, 'Poison damage modifier', 19), + (238, 'Radiation damage modifier', 19), + (238, 'Projectile damage modifier', 19), + (239, 'Cold damage modifier', 24), + (239, 'Chemical damage modifier', 24), + (239, 'Energy damage modifier', 24), + (239, 'Fire damage modifier', 24), + (239, 'Melee damage modifier', 24), + (239, 'Poison damage modifier', 24), + (239, 'Radiation damage modifier', 24), + (239, 'Projectile damage modifier', 24), + (240, 'Cold damage modifier', 27), + (240, 'Chemical damage modifier', 27), + (240, 'Energy damage modifier', 27), + (240, 'Fire damage modifier', 27), + (240, 'Melee damage modifier', 27), + (240, 'Poison damage modifier', 27), + (240, 'Radiation damage modifier', 27), + (240, 'Projectile damage modifier', 27), + (241, 'Cold damage modifier', 35), + (241, 'Chemical damage modifier', 35), + (241, 'Energy damage modifier', 35), + (241, 'Fire damage modifier', 35), + (241, 'Melee damage modifier', 35), + (241, 'Poison damage modifier', 35), + (241, 'Radiation damage modifier', 35), + (241, 'Projectile damage modifier', 35), + (242, 'Cold damage modifier', 58), + (242, 'Chemical damage modifier', 58), + (242, 'Energy damage modifier', 58), + (242, 'Fire damage modifier', 58), + (242, 'Melee damage modifier', 58), + (242, 'Poison damage modifier', 58), + (242, 'Radiation damage modifier', 58), + (242, 'Projectile damage modifier', 58), + (243, 'Martial arts', 5), + (243, 'Dimach', 10), + (243, 'Riposte', 5), + (244, 'Martial arts', 5), + (244, 'Dimach', 10), + (244, 'Riposte', 5), + (245, 'Martial arts', 7), + (245, 'Dimach', 12), + (245, 'Riposte', 6), + (246, 'Martial arts', 8), + (246, 'Dimach', 13), + (246, 'Riposte', 6), + (247, 'Martial arts', 9), + (247, 'Dimach', 14), + (247, 'Riposte', 7), + (248, 'Martial arts', 11), + (248, 'Dimach', 16), + (248, 'Riposte', 8), + (249, 'Martial arts', 13), + (249, 'Dimach', 18), + (249, 'Riposte', 9), + (250, 'Martial arts', 17), + (250, 'Dimach', 22), + (250, 'Riposte', 11), + (251, 'Martial arts', 25), + (251, 'Dimach', 30), + (251, 'Riposte', 15), + (252, 'Martial arts', 50), + (252, 'Dimach', 55), + (252, 'Riposte', 28), + (253, 'Sense', 3), + (253, 'Breaking and entry', 25), + (253, 'Trap disarming', 25), + (254, 'Sense', 5), + (254, 'Breaking and entry', 40), + (254, 'Trap disarming', 40), + (255, 'Sense', 8), + (255, 'Breaking and entry', 55), + (255, 'Trap disarming', 55), + (256, 'Sense', 14), + (256, 'Breaking and entry', 80), + (256, 'Trap disarming', 80), + (257, 'Computer literacy', 15), + (257, 'NCU memory', 10), + (258, 'Computer literacy', 20), + (258, 'NCU memory', 13), + (259, 'Computer literacy', 25), + (259, 'NCU memory', 17), + (260, 'Computer literacy', 40), + (260, 'NCU memory', 30), + (261, 'Full auto', 20), + (262, 'Full auto', 25), + (263, 'Full auto', 30), + (264, 'Full auto', 35), + (265, 'Full auto', 40), + (266, 'Full auto', 50), + (267, 'Agility', 1), + (267, 'Dodge ranged', 1), + (267, 'Duck explosives', 1), + (267, 'Evade close', 1), + (267, 'Concealment', 7), + (267, 'Defense modifier', 2), + (267, 'Aimed shot', 3), + (268, 'Agility', 2), + (268, 'Dodge ranged', 1), + (268, 'Duck explosives', 1), + (268, 'Evade close', 1), + (268, 'Concealment', 10), + (268, 'Defense modifier', 3), + (268, 'Aimed shot', 5), + (269, 'Agility', 3), + (269, 'Dodge ranged', 1), + (269, 'Duck explosives', 1), + (269, 'Evade close', 1), + (269, 'Concealment', 12), + (269, 'Defense modifier', 4), + (269, 'Aimed shot', 8), + (270, 'Agility', 4), + (270, 'Dodge ranged', 1), + (270, 'Duck explosives', 1), + (270, 'Evade close', 1), + (270, 'Concealment', 15), + (270, 'Defense modifier', 7), + (270, 'Aimed shot', 12), + (271, 'Agility', 6), + (271, 'Dodge ranged', 2), + (271, 'Duck explosives', 2), + (271, 'Evade close', 2), + (271, 'Concealment', 19), + (271, 'Defense modifier', 11), + (271, 'Aimed shot', 20), + (272, 'Agility', 9), + (272, 'Dodge ranged', 4), + (272, 'Duck explosives', 4), + (272, 'Evade close', 4), + (272, 'Concealment', 27), + (272, 'Defense modifier', 18), + (272, 'Aimed shot', 32), + (273, 'Agility', 1), + (273, 'Dodge ranged', 1), + (273, 'Duck explosives', 1), + (273, 'Evade close', 1), + (273, 'Concealment', 7), + (273, 'Defense modifier', 2), + (273, 'Sneak attack', 3), + (274, 'Agility', 2), + (274, 'Dodge ranged', 1), + (274, 'Duck explosives', 1), + (274, 'Evade close', 1), + (274, 'Concealment', 10), + (274, 'Defense modifier', 3), + (274, 'Sneak attack', 5), + (275, 'Agility', 3), + (275, 'Dodge ranged', 1), + (275, 'Duck explosives', 1), + (275, 'Evade close', 1), + (275, 'Concealment', 12), + (275, 'Defense modifier', 4), + (275, 'Sneak attack', 8), + (276, 'Agility', 4), + (276, 'Dodge ranged', 1), + (276, 'Duck explosives', 1), + (276, 'Evade close', 1), + (276, 'Concealment', 15), + (276, 'Defense modifier', 7), + (276, 'Sneak attack', 12), + (277, 'Agility', 6), + (277, 'Dodge ranged', 2), + (277, 'Duck explosives', 2), + (277, 'Evade close', 2), + (277, 'Concealment', 19), + (277, 'Defense modifier', 11), + (277, 'Sneak attack', 20), + (278, 'Agility', 9), + (278, 'Dodge ranged', 4), + (278, 'Duck explosives', 4), + (278, 'Evade close', 4), + (278, 'Concealment', 27), + (278, 'Defense modifier', 18), + (278, 'Sneak attack', 32), + (279, 'Multi melee', 10), + (279, 'Multi ranged', 10), + (279, 'Cold damage modifier', 30), + (279, 'Chemical damage modifier', 30), + (279, 'Energy damage modifier', 30), + (279, 'Fire damage modifier', 30), + (279, 'Melee damage modifier', 30), + (279, 'Poison damage modifier', 30), + (279, 'Radiation damage modifier', 30), + (279, 'Projectile damage modifier', 30), + (280, 'Run speed', 20), + (280, 'Adventuring', 10), + (280, 'Multi melee', 5), + (280, 'Ranged init', 10), + (280, '1h Edged', 4), + (280, 'Swimming', 45), + (281, 'Run speed', 30), + (281, 'Adventuring', 15), + (281, 'Multi melee', 10), + (281, 'Ranged init', 10), + (281, '1h Edged', 5), + (281, 'Swimming', 65), + (282, 'Run speed', 40), + (282, 'Adventuring', 25), + (282, 'Multi melee', 10), + (282, 'Ranged init', 10), + (282, '1h Edged', 11), + (282, 'Swimming', 90), + (283, 'Treatment', 2), + (283, 'First Aid', 1), + (283, 'Max health', 5), + (283, 'Biological metamorphosis', 1), + (283, 'Matter metamorphosis', 1), + (284, 'Treatment', 2), + (284, 'First Aid', 1), + (284, 'Max health', 12), + (284, 'Biological metamorphosis', 1), + (284, 'Matter metamorphosis', 1), + (285, 'Treatment', 3), + (285, 'First Aid', 1), + (285, 'Max health', 20), + (285, 'Biological metamorphosis', 2), + (285, 'Matter metamorphosis', 2), + (286, 'Treatment', 3), + (286, 'First Aid', 2), + (286, 'Max health', 24), + (286, 'Biological metamorphosis', 2), + (286, 'Matter metamorphosis', 2), + (287, 'Treatment', 4), + (287, 'First Aid', 2), + (287, 'Max health', 30), + (287, 'Biological metamorphosis', 3), + (287, 'Matter metamorphosis', 3), + (288, 'Treatment', 4), + (288, 'First Aid', 2), + (288, 'Max health', 32), + (288, 'Biological metamorphosis', 4), + (288, 'Matter metamorphosis', 4), + (289, 'Treatment', 5), + (289, 'First Aid', 3), + (289, 'Max health', 38), + (289, 'Biological metamorphosis', 5), + (289, 'Matter metamorphosis', 5), + (290, 'Treatment', 5), + (290, 'First Aid', 3), + (290, 'Max health', 45), + (290, 'Biological metamorphosis', 6), + (290, 'Matter metamorphosis', 6), + (291, 'Treatment', 6), + (291, 'First Aid', 4), + (291, 'Max health', 50), + (291, 'Biological metamorphosis', 7), + (291, 'Matter metamorphosis', 7), + (292, 'Treatment', 6), + (292, 'First Aid', 6), + (292, 'Max health', 84), + (292, 'Biological metamorphosis', 12), + (292, 'Matter metamorphosis', 12), + (293, 'Treatment', 5), + (293, 'First Aid', 4), + (293, 'Biological metamorphosis', 3), + (293, 'Matter metamorphosis', 3), + (294, 'Treatment', 6), + (294, 'First Aid', 4), + (294, 'Biological metamorphosis', 4), + (294, 'Matter metamorphosis', 4), + (295, 'Treatment', 7), + (295, 'First Aid', 6), + (295, 'Biological metamorphosis', 6), + (295, 'Matter metamorphosis', 6), + (296, 'Treatment', 10), + (296, 'First Aid', 7), + (296, 'Biological metamorphosis', 7), + (296, 'Matter metamorphosis', 7), + (297, 'Treatment', 12), + (297, 'First Aid', 10), + (297, 'Biological metamorphosis', 9), + (297, 'Matter metamorphosis', 9), + (298, 'Treatment', 14), + (298, 'First Aid', 14), + (298, 'Biological metamorphosis', 13), + (298, 'Matter metamorphosis', 13), + (299, 'First Aid', 1), + (299, 'Healing efficiency', 2), + (300, 'First Aid', 1), + (300, 'Healing efficiency', 2), + (301, 'First Aid', 1), + (301, 'Healing efficiency', 2), + (302, 'First Aid', 1), + (302, 'Healing efficiency', 2), + (303, 'First Aid', 1), + (303, 'Healing efficiency', 2), + (304, 'First Aid', 2), + (304, 'Healing efficiency', 2), + (305, 'First Aid', 3), + (305, 'Healing efficiency', 2), + (306, 'First Aid', 4), + (306, 'Healing efficiency', 2), + (307, 'First Aid', 6), + (307, 'Healing efficiency', 2), + (308, 'First Aid', 10), + (308, 'Healing efficiency', 3), + (309, 'Assault rifle', 10), + (309, 'Heavy weapons', 10), + (310, 'Assault rifle', 12), + (310, 'Heavy weapons', 12), + (311, 'Assault rifle', 13), + (311, 'Heavy weapons', 13), + (312, 'Assault rifle', 15), + (312, 'Heavy weapons', 15), + (313, 'Assault rifle', 22), + (313, 'Heavy weapons', 22), + (314, 'Assault rifle', 28), + (314, 'Heavy weapons', 28), + (315, 'Assault rifle', 40), + (315, 'Heavy weapons', 40), + (316, 'Assault rifle', 60), + (316, 'Heavy weapons', 60), + (317, 'Full auto', 10), + (317, 'Burst', 8), + (317, 'Fling shot', 8), + (317, 'Dodge ranged', 5), + (317, 'Duck explosives', 1), + (317, 'Evade close', 1), + (318, 'Full auto', 10), + (318, 'Burst', 8), + (318, 'Fling shot', 8), + (318, 'Dodge ranged', 5), + (318, 'Duck explosives', 1), + (318, 'Evade close', 1), + (319, 'Full auto', 12), + (319, 'Burst', 10), + (319, 'Fling shot', 10), + (319, 'Dodge ranged', 7), + (319, 'Duck explosives', 1), + (319, 'Evade close', 1), + (320, 'Full auto', 13), + (320, 'Burst', 11), + (320, 'Fling shot', 11), + (320, 'Dodge ranged', 8), + (320, 'Duck explosives', 2), + (320, 'Evade close', 2), + (321, 'Full auto', 14), + (321, 'Burst', 12), + (321, 'Fling shot', 12), + (321, 'Dodge ranged', 9), + (321, 'Duck explosives', 2), + (321, 'Evade close', 2), + (322, 'Full auto', 16), + (322, 'Burst', 14), + (322, 'Fling shot', 14), + (322, 'Dodge ranged', 11), + (322, 'Duck explosives', 4), + (322, 'Evade close', 4), + (323, 'Full auto', 18), + (323, 'Burst', 16), + (323, 'Fling shot', 16), + (323, 'Dodge ranged', 13), + (323, 'Duck explosives', 4), + (323, 'Evade close', 4), + (324, 'Full auto', 22), + (324, 'Burst', 20), + (324, 'Fling shot', 20), + (324, 'Dodge ranged', 19), + (324, 'Duck explosives', 5), + (324, 'Evade close', 5), + (325, 'Full auto', 30), + (325, 'Burst', 28), + (325, 'Fling shot', 28), + (325, 'Dodge ranged', 23), + (325, 'Duck explosives', 10), + (325, 'Evade close', 10), + (326, 'Full auto', 55), + (326, 'Burst', 53), + (326, 'Fling shot', 53), + (326, 'Dodge ranged', 50), + (326, 'Duck explosives', 20), + (326, 'Evade close', 20), + (327, 'Grenade', 10), + (328, 'Grenade', 10), + (329, 'Grenade', 12), + (330, 'Grenade', 13), + (331, 'Grenade', 14), + (332, 'Grenade', 16), + (333, 'Grenade', 18), + (334, 'Grenade', 22), + (335, 'Grenade', 30), + (336, 'Grenade', 55), + (337, 'Electrical engineering', 2), + (337, 'Quantum physics', 2), + (337, 'Mechanical engineering', 2), + (337, 'Weapon smithing', 2), + (337, 'Time and space', 1), + (337, 'Matter creation', 1), + (338, 'Electrical engineering', 2), + (338, 'Quantum physics', 2), + (338, 'Mechanical engineering', 2), + (338, 'Weapon smithing', 3), + (338, 'Time and space', 1), + (338, 'Matter creation', 1), + (339, 'Electrical engineering', 3), + (339, 'Quantum physics', 3), + (339, 'Mechanical engineering', 3), + (339, 'Weapon smithing', 4), + (339, 'Time and space', 2), + (339, 'Matter creation', 2), + (340, 'Electrical engineering', 3), + (340, 'Quantum physics', 3), + (340, 'Mechanical engineering', 3), + (340, 'Weapon smithing', 5), + (340, 'Time and space', 2), + (340, 'Matter creation', 2), + (341, 'Electrical engineering', 4), + (341, 'Quantum physics', 4), + (341, 'Mechanical engineering', 4), + (341, 'Weapon smithing', 6), + (341, 'Time and space', 2), + (341, 'Matter creation', 2), + (342, 'Electrical engineering', 5), + (342, 'Quantum physics', 5), + (342, 'Mechanical engineering', 5), + (342, 'Weapon smithing', 7), + (342, 'Time and space', 3), + (342, 'Matter creation', 3), + (343, 'Electrical engineering', 6), + (343, 'Quantum physics', 6), + (343, 'Mechanical engineering', 6), + (343, 'Weapon smithing', 8), + (343, 'Time and space', 3), + (343, 'Matter creation', 3), + (344, 'Electrical engineering', 7), + (344, 'Quantum physics', 7), + (344, 'Mechanical engineering', 7), + (344, 'Weapon smithing', 9), + (344, 'Time and space', 4), + (344, 'Matter creation', 4), + (345, 'Electrical engineering', 9), + (345, 'Quantum physics', 9), + (345, 'Mechanical engineering', 9), + (345, 'Weapon smithing', 10), + (345, 'Time and space', 4), + (345, 'Matter creation', 4), + (346, 'Electrical engineering', 14), + (346, 'Quantum physics', 14), + (346, 'Mechanical engineering', 14), + (346, 'Weapon smithing', 16), + (346, 'Time and space', 8), + (346, 'Matter creation', 8), + (347, 'Electrical engineering', 3), + (347, 'Quantum physics', 3), + (347, 'Mechanical engineering', 3), + (347, 'Weapon smithing', 6), + (347, 'Time and space', 2), + (347, 'Matter creation', 2), + (348, 'Electrical engineering', 4), + (348, 'Quantum physics', 4), + (348, 'Mechanical engineering', 4), + (348, 'Weapon smithing', 7), + (348, 'Time and space', 3), + (348, 'Matter creation', 3), + (349, 'Electrical engineering', 5), + (349, 'Quantum physics', 5), + (349, 'Mechanical engineering', 5), + (349, 'Weapon smithing', 8), + (349, 'Time and space', 4), + (349, 'Matter creation', 4), + (350, 'Electrical engineering', 6), + (350, 'Quantum physics', 6), + (350, 'Mechanical engineering', 6), + (350, 'Weapon smithing', 9), + (350, 'Time and space', 4), + (350, 'Matter creation', 4), + (351, 'Electrical engineering', 7), + (351, 'Quantum physics', 7), + (351, 'Mechanical engineering', 7), + (351, 'Weapon smithing', 10), + (351, 'Time and space', 5), + (351, 'Matter creation', 5), + (352, 'Electrical engineering', 8), + (352, 'Quantum physics', 8), + (352, 'Mechanical engineering', 8), + (352, 'Weapon smithing', 11), + (352, 'Time and space', 5), + (352, 'Matter creation', 5), + (353, 'Electrical engineering', 9), + (353, 'Quantum physics', 9), + (353, 'Mechanical engineering', 9), + (353, 'Weapon smithing', 13), + (353, 'Time and space', 6), + (353, 'Matter creation', 6), + (354, 'Electrical engineering', 10), + (354, 'Quantum physics', 10), + (354, 'Mechanical engineering', 10), + (354, 'Weapon smithing', 16), + (354, 'Time and space', 7), + (354, 'Matter creation', 7), + (355, 'Electrical engineering', 11), + (355, 'Quantum physics', 11), + (355, 'Mechanical engineering', 11), + (355, 'Weapon smithing', 20), + (355, 'Time and space', 9), + (355, 'Matter creation', 9), + (356, 'Electrical engineering', 17), + (356, 'Quantum physics', 17), + (356, 'Mechanical engineering', 17), + (356, 'Weapon smithing', 30), + (356, 'Time and space', 15), + (356, 'Matter creation', 15), + (357, 'Rifle', 1), + (357, 'Aimed shot', 4), + (357, 'Concealment', 1), + (357, 'Dodge ranged', 3), + (357, 'Duck explosives', 2), + (357, 'Evade close', 2), + (358, 'Rifle', 1), + (358, 'Aimed shot', 5), + (358, 'Concealment', 2), + (358, 'Dodge ranged', 4), + (358, 'Duck explosives', 3), + (358, 'Evade close', 3), + (359, 'Rifle', 1), + (359, 'Aimed shot', 6), + (359, 'Concealment', 2), + (359, 'Dodge ranged', 4), + (359, 'Duck explosives', 3), + (359, 'Evade close', 3), + (360, 'Rifle', 2), + (360, 'Aimed shot', 7), + (360, 'Concealment', 3), + (360, 'Dodge ranged', 5), + (360, 'Duck explosives', 4), + (360, 'Evade close', 4), + (361, 'Rifle', 2), + (361, 'Aimed shot', 8), + (361, 'Concealment', 3), + (361, 'Dodge ranged', 6), + (361, 'Duck explosives', 4), + (361, 'Evade close', 4), + (361, 'Critical chance', 1), + (362, 'Rifle', 2), + (362, 'Aimed shot', 9), + (362, 'Concealment', 4), + (362, 'Dodge ranged', 7), + (362, 'Duck explosives', 5), + (362, 'Evade close', 5), + (363, 'Rifle', 3), + (363, 'Aimed shot', 10), + (363, 'Concealment', 4), + (363, 'Dodge ranged', 9), + (363, 'Duck explosives', 5), + (363, 'Evade close', 5), + (364, 'Rifle', 3), + (364, 'Aimed shot', 12), + (364, 'Concealment', 5), + (364, 'Dodge ranged', 11), + (364, 'Duck explosives', 6), + (364, 'Evade close', 6), + (365, 'Rifle', 4), + (365, 'Aimed shot', 15), + (365, 'Concealment', 7), + (365, 'Dodge ranged', 13), + (365, 'Duck explosives', 7), + (365, 'Evade close', 7), + (366, 'Rifle', 6), + (366, 'Aimed shot', 24), + (366, 'Concealment', 9), + (366, 'Dodge ranged', 18), + (366, 'Duck explosives', 11), + (366, 'Evade close', 11), + (366, 'Critical chance', 1), + (367, 'Cold damage modifier', 4), + (367, 'Chemical damage modifier', 4), + (367, 'Energy damage modifier', 4), + (367, 'Fire damage modifier', 4), + (367, 'Melee damage modifier', 4), + (367, 'Poison damage modifier', 4), + (367, 'Radiation damage modifier', 4), + (367, 'Projectile damage modifier', 4), + (367, 'Rifle', 2), + (367, 'Aimed shot', 2), + (367, 'Concealment', 2), + (367, 'Fling shot', 5), + (368, 'Cold damage modifier', 5), + (368, 'Chemical damage modifier', 5), + (368, 'Energy damage modifier', 5), + (368, 'Fire damage modifier', 5), + (368, 'Melee damage modifier', 5), + (368, 'Poison damage modifier', 5), + (368, 'Radiation damage modifier', 5), + (368, 'Projectile damage modifier', 5), + (368, 'Rifle', 3), + (368, 'Aimed shot', 3), + (368, 'Concealment', 3), + (368, 'Fling shot', 6), + (369, 'Cold damage modifier', 6), + (369, 'Chemical damage modifier', 6), + (369, 'Energy damage modifier', 6), + (369, 'Fire damage modifier', 6), + (369, 'Melee damage modifier', 6), + (369, 'Poison damage modifier', 6), + (369, 'Radiation damage modifier', 6), + (369, 'Projectile damage modifier', 6), + (369, 'Rifle', 3), + (369, 'Aimed shot', 4), + (369, 'Concealment', 3), + (369, 'Fling shot', 7), + (370, 'Cold damage modifier', 7), + (370, 'Chemical damage modifier', 7), + (370, 'Energy damage modifier', 7), + (370, 'Fire damage modifier', 7), + (370, 'Melee damage modifier', 7), + (370, 'Poison damage modifier', 7), + (370, 'Radiation damage modifier', 7), + (370, 'Projectile damage modifier', 7), + (370, 'Rifle', 4), + (370, 'Aimed shot', 5), + (370, 'Concealment', 4), + (370, 'Fling shot', 8), + (371, 'Cold damage modifier', 8), + (371, 'Chemical damage modifier', 8), + (371, 'Energy damage modifier', 8), + (371, 'Fire damage modifier', 8), + (371, 'Melee damage modifier', 8), + (371, 'Poison damage modifier', 8), + (371, 'Radiation damage modifier', 8), + (371, 'Projectile damage modifier', 8), + (371, 'Rifle', 4), + (371, 'Aimed shot', 5), + (371, 'Concealment', 5), + (371, 'Fling shot', 9), + (372, 'Cold damage modifier', 9), + (372, 'Chemical damage modifier', 9), + (372, 'Energy damage modifier', 9), + (372, 'Fire damage modifier', 9), + (372, 'Melee damage modifier', 9), + (372, 'Poison damage modifier', 9), + (372, 'Radiation damage modifier', 9), + (372, 'Projectile damage modifier', 9), + (372, 'Rifle', 5), + (372, 'Aimed shot', 6), + (372, 'Concealment', 6), + (372, 'Fling shot', 10), + (373, 'Cold damage modifier', 10), + (373, 'Chemical damage modifier', 10), + (373, 'Energy damage modifier', 10), + (373, 'Fire damage modifier', 10), + (373, 'Melee damage modifier', 10), + (373, 'Poison damage modifier', 10), + (373, 'Radiation damage modifier', 10), + (373, 'Projectile damage modifier', 10), + (373, 'Rifle', 5), + (373, 'Aimed shot', 7), + (373, 'Concealment', 7), + (373, 'Fling shot', 11), + (374, 'Cold damage modifier', 11), + (374, 'Chemical damage modifier', 11), + (374, 'Energy damage modifier', 11), + (374, 'Fire damage modifier', 11), + (374, 'Melee damage modifier', 11), + (374, 'Poison damage modifier', 11), + (374, 'Radiation damage modifier', 11), + (374, 'Projectile damage modifier', 11), + (374, 'Rifle', 7), + (374, 'Aimed shot', 8), + (374, 'Concealment', 8), + (374, 'Fling shot', 12), + (375, 'Cold damage modifier', 13), + (375, 'Chemical damage modifier', 13), + (375, 'Energy damage modifier', 13), + (375, 'Fire damage modifier', 13), + (375, 'Melee damage modifier', 13), + (375, 'Poison damage modifier', 13), + (375, 'Radiation damage modifier', 13), + (375, 'Projectile damage modifier', 13), + (375, 'Rifle', 9), + (375, 'Aimed shot', 10), + (375, 'Concealment', 9), + (375, 'Fling shot', 14), + (376, 'Cold damage modifier', 17), + (376, 'Chemical damage modifier', 17), + (376, 'Energy damage modifier', 17), + (376, 'Fire damage modifier', 17), + (376, 'Melee damage modifier', 17), + (376, 'Poison damage modifier', 17), + (376, 'Radiation damage modifier', 17), + (376, 'Projectile damage modifier', 17), + (376, 'Rifle', 13), + (376, 'Aimed shot', 15), + (376, 'Concealment', 13), + (376, 'Fling shot', 18), + (376, 'Critical chance', 1), + (377, 'Sense', 1), + (377, 'Aimed shot', 1), + (377, 'Concealment', 5), + (378, 'Sense', 1), + (378, 'Aimed shot', 1), + (378, 'Concealment', 5), + (379, 'Sense', 2), + (379, 'Aimed shot', 1), + (379, 'Concealment', 6), + (380, 'Sense', 2), + (380, 'Aimed shot', 1), + (380, 'Concealment', 7), + (381, 'Sense', 3), + (381, 'Aimed shot', 1), + (381, 'Concealment', 7), + (382, 'Sense', 4), + (382, 'Aimed shot', 1), + (382, 'Concealment', 8), + (383, 'Sense', 5), + (383, 'Aimed shot', 1), + (383, 'Concealment', 9), + (384, 'Sense', 7), + (384, 'Aimed shot', 1), + (384, 'Concealment', 11), + (385, 'Sense', 10), + (385, 'Aimed shot', 1), + (385, 'Concealment', 15), + (386, 'Sense', 20), + (386, 'Aimed shot', 1), + (386, 'Concealment', 27), + (387, 'Aimed shot', 2), + (388, 'Aimed shot', 3), + (388, 'Critical chance', 1), + (389, 'Aimed shot', 4), + (390, 'Aimed shot', 5), + (390, 'Critical chance', 1), + (391, 'Aimed shot', 7), + (392, 'Aimed shot', 9), + (392, 'Critical chance', 1), + (393, 'Max health', 80), + (393, 'Heal delta', 3), + (394, 'Max health', 150), + (394, 'Heal delta', 3), + (395, 'Max health', 220), + (395, 'Heal delta', 3), + (396, 'Max health', 280), + (396, 'Heal delta', 4), + (397, 'Max health', 350), + (397, 'Heal delta', 4), + (398, 'Max health', 410), + (398, 'Heal delta', 5), + (399, 'Max health', 480), + (399, 'Heal delta', 5), + (400, 'Max health', 585), + (400, 'Heal delta', 5), + (401, 'Max health', 745), + (401, 'Heal delta', 6), + (402, 'Max health', 1100), + (402, 'Heal delta', 11), + (403, 'Max health', 20), + (403, 'Psychology', 5), + (404, 'Max health', 25), + (404, 'Psychology', 5), + (405, 'Max health', 30), + (405, 'Psychology', 6), + (406, 'Max health', 35), + (406, 'Psychology', 6), + (407, 'Max health', 40), + (407, 'Psychology', 7), + (408, 'Max health', 55), + (408, 'Psychology', 8), + (409, 'Max health', 70), + (409, 'Psychology', 9), + (410, 'Max health', 90), + (410, 'Psychology', 11), + (411, 'Max health', 135), + (411, 'Psychology', 15), + (412, 'Max health', 300), + (412, 'Psychology', 28), + (413, '2h Blunt', 10), + (414, '2h Blunt', 10), + (415, '2h Blunt', 12), + (416, '2h Blunt', 13), + (417, '2h Blunt', 14), + (418, '2h Blunt', 16), + (419, '2h Blunt', 18), + (420, '2h Blunt', 22), + (421, '2h Blunt', 30), + (422, '2h Blunt', 55), + (423, 'Biological metamorphosis', 1), + (423, 'Psychological modifications', 1), + (423, 'Sensory improvement', 1), + (423, 'Psychology', 2), + (424, 'Biological metamorphosis', 1), + (424, 'Psychological modifications', 1), + (424, 'Sensory improvement', 1), + (424, 'Psychology', 4), + (425, 'Biological metamorphosis', 2), + (425, 'Psychological modifications', 2), + (425, 'Sensory improvement', 2), + (425, 'Psychology', 6), + (426, 'Biological metamorphosis', 2), + (426, 'Psychological modifications', 2), + (426, 'Sensory improvement', 2), + (426, 'Psychology', 8), + (427, 'Biological metamorphosis', 3), + (427, 'Psychological modifications', 3), + (427, 'Sensory improvement', 3), + (427, 'Psychology', 10), + (428, 'Biological metamorphosis', 3), + (428, 'Psychological modifications', 3), + (428, 'Sensory improvement', 3), + (428, 'Psychology', 12), + (429, 'Biological metamorphosis', 4), + (429, 'Psychological modifications', 4), + (429, 'Sensory improvement', 4), + (429, 'Psychology', 14), + (430, 'Biological metamorphosis', 4), + (430, 'Psychological modifications', 4), + (430, 'Sensory improvement', 4), + (430, 'Psychology', 16), + (431, 'Biological metamorphosis', 5), + (431, 'Psychological modifications', 5), + (431, 'Sensory improvement', 5), + (431, 'Psychology', 18), + (432, 'Biological metamorphosis', 11), + (432, 'Psychological modifications', 11), + (432, 'Sensory improvement', 11), + (432, 'Psychology', 30), + (433, 'Biological metamorphosis', 1), + (433, 'Psychological modifications', 1), + (433, 'Sensory improvement', 1), + (433, 'Psychology', 5), + (434, 'Biological metamorphosis', 2), + (434, 'Psychological modifications', 2), + (434, 'Sensory improvement', 2), + (434, 'Psychology', 7), + (435, 'Biological metamorphosis', 3), + (435, 'Psychological modifications', 3), + (435, 'Sensory improvement', 3), + (435, 'Psychology', 13), + (436, 'Biological metamorphosis', 4), + (436, 'Psychological modifications', 4), + (436, 'Sensory improvement', 4), + (436, 'Psychology', 20), + (437, 'Biological metamorphosis', 8), + (437, 'Psychological modifications', 8), + (437, 'Sensory improvement', 8), + (437, 'Psychology', 35), + (438, 'Max health', 10), + (438, 'Dodge ranged', 1), + (438, 'Duck explosives', 1), + (438, 'Evade close', 1), + (439, 'Max health', 11), + (439, 'Dodge ranged', 1), + (439, 'Duck explosives', 1), + (439, 'Evade close', 1), + (440, 'Max health', 12), + (440, 'Dodge ranged', 1), + (440, 'Duck explosives', 1), + (440, 'Evade close', 1), + (441, 'Max health', 13), + (441, 'Dodge ranged', 2), + (441, 'Duck explosives', 2), + (441, 'Evade close', 2), + (442, 'Max health', 14), + (442, 'Dodge ranged', 2), + (442, 'Duck explosives', 2), + (442, 'Evade close', 2), + (443, 'Max health', 15), + (443, 'Dodge ranged', 3), + (443, 'Duck explosives', 3), + (443, 'Evade close', 3), + (444, 'Max health', 16), + (444, 'Dodge ranged', 4), + (444, 'Duck explosives', 4), + (444, 'Evade close', 4), + (445, 'Max health', 19), + (445, 'Dodge ranged', 6), + (445, 'Duck explosives', 6), + (445, 'Evade close', 6), + (446, 'Max health', 30), + (446, 'Dodge ranged', 8), + (446, 'Duck explosives', 8), + (446, 'Evade close', 8), + (447, 'Max health', 60), + (447, 'Dodge ranged', 12), + (447, 'Duck explosives', 12), + (447, 'Evade close', 12), + (448, 'Piercing', 10), + (449, 'Piercing', 10), + (450, 'Piercing', 12), + (451, 'Piercing', 13), + (452, 'Piercing', 14), + (453, 'Piercing', 16), + (454, 'Piercing', 18), + (455, 'Piercing', 22), + (456, 'Piercing', 30), + (457, 'Piercing', 55), + (458, 'Cold damage modifier', 4), + (458, 'Chemical damage modifier', 4), + (458, 'Energy damage modifier', 4), + (458, 'Fire damage modifier', 4), + (458, 'Melee damage modifier', 4), + (458, 'Poison damage modifier', 4), + (458, 'Radiation damage modifier', 4), + (458, 'Projectile damage modifier', 4), + (458, 'Sneak attack', 5), + (458, 'Martial arts', 1), + (459, 'Cold damage modifier', 8), + (459, 'Chemical damage modifier', 8), + (459, 'Energy damage modifier', 8), + (459, 'Fire damage modifier', 8), + (459, 'Melee damage modifier', 8), + (459, 'Poison damage modifier', 8), + (459, 'Radiation damage modifier', 8), + (459, 'Projectile damage modifier', 8), + (459, 'Sneak attack', 5), + (459, 'Martial arts', 2), + (460, 'Cold damage modifier', 11), + (460, 'Chemical damage modifier', 11), + (460, 'Energy damage modifier', 11), + (460, 'Fire damage modifier', 11), + (460, 'Melee damage modifier', 11), + (460, 'Poison damage modifier', 11), + (460, 'Radiation damage modifier', 11), + (460, 'Projectile damage modifier', 11), + (460, 'Sneak attack', 6), + (460, 'Martial arts', 2), + (461, 'Cold damage modifier', 15), + (461, 'Chemical damage modifier', 15), + (461, 'Energy damage modifier', 15), + (461, 'Fire damage modifier', 15), + (461, 'Melee damage modifier', 15), + (461, 'Poison damage modifier', 15), + (461, 'Radiation damage modifier', 15), + (461, 'Projectile damage modifier', 15), + (461, 'Sneak attack', 6), + (461, 'Martial arts', 3), + (462, 'Cold damage modifier', 18), + (462, 'Chemical damage modifier', 18), + (462, 'Energy damage modifier', 18), + (462, 'Fire damage modifier', 18), + (462, 'Melee damage modifier', 18), + (462, 'Poison damage modifier', 18), + (462, 'Radiation damage modifier', 18), + (462, 'Projectile damage modifier', 18), + (462, 'Sneak attack', 7), + (462, 'Martial arts', 3), + (463, 'Cold damage modifier', 20), + (463, 'Chemical damage modifier', 20), + (463, 'Energy damage modifier', 20), + (463, 'Fire damage modifier', 20), + (463, 'Melee damage modifier', 20), + (463, 'Poison damage modifier', 20), + (463, 'Radiation damage modifier', 20), + (463, 'Projectile damage modifier', 20), + (463, 'Sneak attack', 8), + (463, 'Martial arts', 4), + (464, 'Cold damage modifier', 24), + (464, 'Chemical damage modifier', 24), + (464, 'Energy damage modifier', 24), + (464, 'Fire damage modifier', 24), + (464, 'Melee damage modifier', 24), + (464, 'Poison damage modifier', 24), + (464, 'Radiation damage modifier', 24), + (464, 'Projectile damage modifier', 24), + (464, 'Sneak attack', 9), + (464, 'Martial arts', 5), + (465, 'Cold damage modifier', 28), + (465, 'Chemical damage modifier', 28), + (465, 'Energy damage modifier', 28), + (465, 'Fire damage modifier', 28), + (465, 'Melee damage modifier', 28), + (465, 'Poison damage modifier', 28), + (465, 'Radiation damage modifier', 28), + (465, 'Projectile damage modifier', 28), + (465, 'Sneak attack', 11), + (465, 'Martial arts', 5), + (466, 'Cold damage modifier', 30), + (466, 'Chemical damage modifier', 30), + (466, 'Energy damage modifier', 30), + (466, 'Fire damage modifier', 30), + (466, 'Melee damage modifier', 30), + (466, 'Poison damage modifier', 30), + (466, 'Radiation damage modifier', 30), + (466, 'Projectile damage modifier', 30), + (466, 'Sneak attack', 15), + (466, 'Martial arts', 6), + (467, 'Cold damage modifier', 50), + (467, 'Chemical damage modifier', 50), + (467, 'Energy damage modifier', 50), + (467, 'Fire damage modifier', 50), + (467, 'Melee damage modifier', 50), + (467, 'Poison damage modifier', 50), + (467, 'Radiation damage modifier', 50), + (467, 'Projectile damage modifier', 50), + (467, 'Sneak attack', 28), + (467, 'Martial arts', 9), + (468, 'Martial arts', 5), + (468, 'Dodge ranged', 1), + (468, 'Duck explosives', 1), + (468, 'Evade close', 1), + (469, 'Martial arts', 8), + (469, 'Dodge ranged', 2), + (469, 'Duck explosives', 2), + (469, 'Evade close', 2), + (470, 'Martial arts', 10), + (470, 'Dodge ranged', 2), + (470, 'Duck explosives', 2), + (470, 'Evade close', 2), + (471, 'Martial arts', 13), + (471, 'Dodge ranged', 3), + (471, 'Duck explosives', 3), + (471, 'Evade close', 3), + (472, 'Martial arts', 15), + (472, 'Dodge ranged', 4), + (472, 'Duck explosives', 4), + (472, 'Evade close', 4), + (473, 'Martial arts', 19), + (473, 'Dodge ranged', 6), + (473, 'Duck explosives', 6), + (473, 'Evade close', 6), + (474, 'Martial arts', 30), + (474, 'Dodge ranged', 12), + (474, 'Duck explosives', 12), + (474, 'Evade close', 12), + (475, 'Dimach', 10), + (475, 'Parry', 2), + (475, 'Dodge ranged', 1), + (475, 'Duck explosives', 1), + (475, 'Evade close', 1), + (476, 'Dimach', 10), + (476, 'Parry', 2), + (476, 'Dodge ranged', 1), + (476, 'Duck explosives', 1), + (476, 'Evade close', 1), + (477, 'Dimach', 12), + (477, 'Parry', 2), + (477, 'Dodge ranged', 2), + (477, 'Duck explosives', 2), + (477, 'Evade close', 2), + (478, 'Dimach', 13), + (478, 'Parry', 3), + (478, 'Dodge ranged', 2), + (478, 'Duck explosives', 2), + (478, 'Evade close', 2), + (479, 'Dimach', 14), + (479, 'Parry', 3), + (479, 'Dodge ranged', 2), + (479, 'Duck explosives', 2), + (479, 'Evade close', 2), + (480, 'Dimach', 16), + (480, 'Parry', 3), + (480, 'Dodge ranged', 3), + (480, 'Duck explosives', 3), + (480, 'Evade close', 3), + (481, 'Dimach', 18), + (481, 'Parry', 4), + (481, 'Dodge ranged', 3), + (481, 'Duck explosives', 3), + (481, 'Evade close', 3), + (482, 'Dimach', 22), + (482, 'Parry', 5), + (482, 'Dodge ranged', 4), + (482, 'Duck explosives', 4), + (482, 'Evade close', 4), + (483, 'Dimach', 30), + (483, 'Parry', 6), + (483, 'Dodge ranged', 4), + (483, 'Duck explosives', 4), + (483, 'Evade close', 4), + (484, 'Dimach', 55), + (484, 'Parry', 10), + (484, 'Dodge ranged', 8), + (484, 'Duck explosives', 8), + (484, 'Evade close', 8), + (485, 'Max health', 7), + (485, 'Defense modifier', 5), + (485, 'Offense modifier', 2), + (485, 'Sneak attack', 5), + (486, 'Max health', 8), + (486, 'Defense modifier', 6), + (486, 'Offense modifier', 3), + (486, 'Sneak attack', 5), + (487, 'Max health', 10), + (487, 'Defense modifier', 7), + (487, 'Offense modifier', 4), + (487, 'Sneak attack', 6), + (488, 'Max health', 14), + (488, 'Defense modifier', 8), + (488, 'Offense modifier', 4), + (488, 'Sneak attack', 6), + (489, 'Max health', 19), + (489, 'Defense modifier', 9), + (489, 'Offense modifier', 5), + (489, 'Sneak attack', 7), + (490, 'Max health', 32), + (490, 'Defense modifier', 11), + (490, 'Offense modifier', 5), + (490, 'Sneak attack', 8), + (491, 'Max health', 42), + (491, 'Defense modifier', 16), + (491, 'Offense modifier', 6), + (491, 'Sneak attack', 9), + (492, 'Max health', 52), + (492, 'Defense modifier', 21), + (492, 'Offense modifier', 7), + (492, 'Sneak attack', 11), + (493, 'Max health', 76), + (493, 'Defense modifier', 27), + (493, 'Offense modifier', 9), + (493, 'Sneak attack', 15), + (494, 'Max health', 140), + (494, 'Defense modifier', 40), + (494, 'Offense modifier', 15), + (494, 'Sneak attack', 28), + (495, 'Matter creation', 3), + (496, 'Matter creation', 4), + (497, 'Matter creation', 5), + (498, 'Matter creation', 6), + (499, 'Matter creation', 7), + (500, 'Matter creation', 8), + (501, 'Matter creation', 10), + (502, 'Matter creation', 11), + (503, 'Matter creation', 13), + (504, 'Matter creation', 18), + (505, 'Max Nano', 600), + (506, 'Max Nano', 1600), + (507, 'Max Nano', 3800), + (508, 'Max Nano', 150), + (508, 'Nano damage modifier', 2), + (509, 'Max Nano', 225), + (509, 'Nano damage modifier', 2), + (510, 'Max Nano', 270), + (510, 'Nano damage modifier', 3), + (511, 'Max Nano', 335), + (511, 'Nano damage modifier', 3), + (512, 'Max Nano', 420), + (512, 'Nano damage modifier', 3), + (513, 'Max Nano', 600), + (513, 'Nano damage modifier', 5), + (514, 'Time and space', 3), + (514, 'Matter creation', 3), + (514, 'Max health', 5), + (514, 'Nano resist', 10), + (514, 'Defense modifier', 5), + (515, 'Time and space', 4), + (515, 'Matter creation', 4), + (515, 'Max health', 9), + (515, 'Nano resist', 10), + (515, 'Defense modifier', 5), + (516, 'Time and space', 5), + (516, 'Matter creation', 5), + (516, 'Max health', 10), + (516, 'Nano resist', 12), + (516, 'Defense modifier', 6), + (517, 'Time and space', 6), + (517, 'Matter creation', 6), + (517, 'Max health', 10), + (517, 'Nano resist', 13), + (517, 'Defense modifier', 7), + (518, 'Time and space', 7), + (518, 'Matter creation', 7), + (518, 'Max health', 14), + (518, 'Nano resist', 14), + (518, 'Defense modifier', 7), + (519, 'Time and space', 8), + (519, 'Matter creation', 8), + (519, 'Max health', 18), + (519, 'Nano resist', 16), + (519, 'Defense modifier', 8), + (520, 'Time and space', 9), + (520, 'Matter creation', 9), + (520, 'Max health', 22), + (520, 'Nano resist', 18), + (520, 'Defense modifier', 9), + (521, 'Time and space', 10), + (521, 'Matter creation', 10), + (521, 'Max health', 37), + (521, 'Nano resist', 22), + (521, 'Defense modifier', 11), + (522, 'Time and space', 13), + (522, 'Matter creation', 13), + (522, 'Max health', 37), + (522, 'Nano resist', 30), + (522, 'Defense modifier', 15), + (523, 'Time and space', 20), + (523, 'Matter creation', 20), + (523, 'Max health', 48), + (523, 'Nano resist', 50), + (523, 'Defense modifier', 27), + (524, 'Max health', 5), + (524, 'Max nano', 15), + (525, 'Max health', 7), + (525, 'Max nano', 17), + (526, 'Max health', 8), + (526, 'Max nano', 18), + (527, 'Max health', 10), + (527, 'Max nano', 20), + (528, 'Max health', 10), + (528, 'Max nano', 20), + (529, 'Max health', 15), + (529, 'Max nano', 20), + (530, 'Max health', 25), + (530, 'Max nano', 35), + (531, 'Max health', 30), + (531, 'Max nano', 45), + (532, 'Max health', 35), + (532, 'Max nano', 45), + (533, 'Max health', 55), + (533, 'Max nano', 65), + (534, 'Heal delta', 1), + (534, 'Nano delta', 1), + (534, 'Max health', 15), + (534, 'Max nano', 50), + (535, 'Heal delta', 1), + (535, 'Nano delta', 1), + (535, 'Max health', 15), + (535, 'Max nano', 50), + (536, 'Heal delta', 1), + (536, 'Nano delta', 1), + (536, 'Max health', 15), + (536, 'Max nano', 60), + (537, 'Heal delta', 1), + (537, 'Nano delta', 1), + (537, 'Max health', 15), + (537, 'Max nano', 60), + (538, 'Heal delta', 1), + (538, 'Nano delta', 1), + (538, 'Max health', 22), + (538, 'Max nano', 70), + (539, 'Heal delta', 1), + (539, 'Nano delta', 1), + (539, 'Max health', 23), + (539, 'Max nano', 80), + (540, 'Heal delta', 1), + (540, 'Nano delta', 1), + (540, 'Max health', 30), + (540, 'Max nano', 90), + (541, 'Heal delta', 1), + (541, 'Nano delta', 1), + (541, 'Max health', 30), + (541, 'Max nano', 110), + (542, 'Heal delta', 1), + (542, 'Nano delta', 1), + (542, 'Max health', 30), + (542, 'Max nano', 150), + (543, 'Heal delta', 2), + (543, 'Nano delta', 2), + (543, 'Max health', 45), + (543, 'Max nano', 280), + (544, 'Heal delta', 1), + (544, 'Max health', 6), + (545, 'Heal delta', 2), + (545, 'Max health', 8), + (546, 'Heal delta', 2), + (546, 'Max health', 10), + (547, 'Heal delta', 2), + (547, 'Max health', 13), + (548, 'Heal delta', 3), + (548, 'Max health', 15), + (549, 'Heal delta', 3), + (549, 'Max health', 18), + (550, 'Heal delta', 3), + (550, 'Max health', 24), + (551, 'Heal delta', 4), + (551, 'Max health', 32), + (552, 'Heal delta', 4), + (552, 'Max health', 38), + (553, 'Heal delta', 6), + (553, 'Max health', 56), + (554, 'Max health', 40), + (555, 'Max health', 65), + (556, 'Max health', 105), + (557, 'Max health', 155), + (558, 'Max health', 200), + (559, 'Max health', 260), + (560, 'Max health', 325), + (561, 'Max health', 400), + (562, 'Max health', 500), + (563, 'Max health', 720), + (564, 'Max health', 10), + (564, 'Dodge ranged', 5), + (564, 'Duck explosives', 5), + (564, 'Evade close', 10), + (565, 'Max health', 12), + (565, 'Dodge ranged', 5), + (565, 'Duck explosives', 5), + (565, 'Evade close', 10), + (566, 'Max health', 14), + (566, 'Dodge ranged', 6), + (566, 'Duck explosives', 6), + (566, 'Evade close', 12), + (567, 'Max health', 16), + (567, 'Dodge ranged', 6), + (567, 'Duck explosives', 6), + (567, 'Evade close', 13), + (568, 'Max health', 18), + (568, 'Dodge ranged', 7), + (568, 'Duck explosives', 7), + (568, 'Evade close', 14), + (569, 'Max health', 23), + (569, 'Dodge ranged', 9), + (569, 'Duck explosives', 9), + (569, 'Evade close', 16), + (570, 'Max health', 34), + (570, 'Dodge ranged', 10), + (570, 'Duck explosives', 10), + (570, 'Evade close', 18), + (571, 'Max health', 45), + (571, 'Dodge ranged', 11), + (571, 'Duck explosives', 11), + (571, 'Evade close', 22), + (572, 'Max health', 57), + (572, 'Dodge ranged', 15), + (572, 'Duck explosives', 15), + (572, 'Evade close', 30), + (573, 'Max health', 91), + (573, 'Dodge ranged', 26), + (573, 'Duck explosives', 26), + (573, 'Evade close', 55), + (574, '2h Edged', 10), + (574, 'Parry', 10), + (574, 'Riposte', 10), + (574, 'Fast attack', 10), + (574, 'Ranged init', -100), + (574, 'Cold damage modifier', 5), + (574, 'Chemical damage modifier', 5), + (574, 'Energy damage modifier', 5), + (574, 'Fire damage modifier', 5), + (574, 'Melee damage modifier', 5), + (574, 'Poison damage modifier', 5), + (574, 'Radiation damage modifier', 5), + (574, 'Projectile damage modifier', 5), + (575, '2h Edged', 10), + (575, 'Parry', 10), + (575, 'Riposte', 10), + (575, 'Fast attack', 10), + (575, 'Ranged init', -100), + (575, 'Cold damage modifier', 7), + (575, 'Chemical damage modifier', 7), + (575, 'Energy damage modifier', 7), + (575, 'Fire damage modifier', 7), + (575, 'Melee damage modifier', 7), + (575, 'Poison damage modifier', 7), + (575, 'Radiation damage modifier', 7), + (575, 'Projectile damage modifier', 7), + (576, '2h Edged', 11), + (576, 'Parry', 12), + (576, 'Riposte', 12), + (576, 'Fast attack', 12), + (576, 'Ranged init', -150), + (576, 'Cold damage modifier', 9), + (576, 'Chemical damage modifier', 9), + (576, 'Energy damage modifier', 9), + (576, 'Fire damage modifier', 9), + (576, 'Melee damage modifier', 9), + (576, 'Poison damage modifier', 9), + (576, 'Radiation damage modifier', 9), + (576, 'Projectile damage modifier', 9), + (577, '2h Edged', 12), + (577, 'Parry', 13), + (577, 'Riposte', 13), + (577, 'Fast attack', 13), + (577, 'Ranged init', -150), + (577, 'Cold damage modifier', 11), + (577, 'Chemical damage modifier', 11), + (577, 'Energy damage modifier', 11), + (577, 'Fire damage modifier', 11), + (577, 'Melee damage modifier', 11), + (577, 'Poison damage modifier', 11), + (577, 'Radiation damage modifier', 11), + (577, 'Projectile damage modifier', 11), + (578, '2h Edged', 13), + (578, 'Parry', 14), + (578, 'Riposte', 14), + (578, 'Fast attack', 14), + (578, 'Ranged init', -150), + (578, 'Cold damage modifier', 15), + (578, 'Chemical damage modifier', 15), + (578, 'Energy damage modifier', 15), + (578, 'Fire damage modifier', 15), + (578, 'Melee damage modifier', 15), + (578, 'Poison damage modifier', 15), + (578, 'Radiation damage modifier', 15), + (578, 'Projectile damage modifier', 15), + (579, '2h Edged', 15), + (579, 'Parry', 16), + (579, 'Riposte', 16), + (579, 'Fast attack', 16), + (579, 'Ranged init', -200), + (579, 'Cold damage modifier', 18), + (579, 'Chemical damage modifier', 18), + (579, 'Energy damage modifier', 18), + (579, 'Fire damage modifier', 18), + (579, 'Melee damage modifier', 18), + (579, 'Poison damage modifier', 18), + (579, 'Radiation damage modifier', 18), + (579, 'Projectile damage modifier', 18), + (580, '2h Edged', 16), + (580, 'Parry', 18), + (580, 'Riposte', 18), + (580, 'Fast attack', 18), + (580, 'Ranged init', -200), + (580, 'Cold damage modifier', 22), + (580, 'Chemical damage modifier', 22), + (580, 'Energy damage modifier', 22), + (580, 'Fire damage modifier', 22), + (580, 'Melee damage modifier', 22), + (580, 'Poison damage modifier', 22), + (580, 'Radiation damage modifier', 22), + (580, 'Projectile damage modifier', 22), + (581, '2h Edged', 22), + (581, 'Parry', 22), + (581, 'Riposte', 22), + (581, 'Fast attack', 22), + (581, 'Ranged init', -200), + (581, 'Cold damage modifier', 25), + (581, 'Chemical damage modifier', 25), + (581, 'Energy damage modifier', 25), + (581, 'Fire damage modifier', 25), + (581, 'Melee damage modifier', 25), + (581, 'Poison damage modifier', 25), + (581, 'Radiation damage modifier', 25), + (581, 'Projectile damage modifier', 25), + (582, '2h Edged', 28), + (582, 'Parry', 30), + (582, 'Riposte', 30), + (582, 'Fast attack', 30), + (582, 'Ranged init', -500), + (582, 'Cold damage modifier', 32), + (582, 'Chemical damage modifier', 32), + (582, 'Energy damage modifier', 32), + (582, 'Fire damage modifier', 32), + (582, 'Melee damage modifier', 32), + (582, 'Poison damage modifier', 32), + (582, 'Radiation damage modifier', 32), + (582, 'Projectile damage modifier', 32), + (583, '2h Edged', 43), + (583, 'Parry', 55), + (583, 'Riposte', 55), + (583, 'Fast attack', 55), + (583, 'Ranged init', -500), + (583, 'Cold damage modifier', 43), + (583, 'Chemical damage modifier', 43), + (583, 'Energy damage modifier', 43), + (583, 'Fire damage modifier', 43), + (583, 'Melee damage modifier', 43), + (583, 'Poison damage modifier', 43), + (583, 'Radiation damage modifier', 43), + (583, 'Projectile damage modifier', 43); diff --git a/modules/standard/perks/perks_controller.py b/modules/standard/perks/perks_controller.py new file mode 100644 index 0000000..4668394 --- /dev/null +++ b/modules/standard/perks/perks_controller.py @@ -0,0 +1,62 @@ +from core.chat_blob import ChatBlob +from core.command_param_types import Any, Int +from core.decorators import instance, command + + +@instance() +class PerksController: + def __init__(self): + self.grades = ["shiny", "bright", "faded"] + + def inject(self, registry): + self.db = registry.get_instance("db") + self.util = registry.get_instance("util") + + def pre_start(self): + self.db.load_sql_file(self.module_dir + "/" + "perks.sql", pre_optimized=True) + self.db.create_view("perk") + self.db.create_view("perk_prof") + self.db.create_view("perk_level") + self.db.create_view("perk_level_buffs") + + @command(command="perks", params=[Int("level"), Any("profession")], access_level="member", + description="Show what perks are available for specified level and profession") + def perks_cmd(self, _, level, profession): + if level < 1 or level > 220: + return "Level must be between 1 and 220." + + prof = self.util.get_profession(profession) + if not prof: + return f"Could not find profession {profession}" + + sql = """ + SELECT + p.name AS perk_name, + MAX(pl.number) AS max_perk_level, + SUM(plb.amount) AS buff_amount, + plb.skill + FROM + perk p + JOIN perk_prof pp ON p.id = pp.perk_id + JOIN perk_level pl ON p.id = pl.perk_id + JOIN perk_level_buffs plb ON pl.id = plb.perk_level_id + WHERE + pp.profession = ? + AND pl.min_level <= ? + GROUP BY + p.name, + plb.skill + ORDER BY + p.name""" + + data = self.db.query(sql, [prof, level]) + + blob = "" + current_perk = "" + for row in data: + if row.perk_name != current_perk: + blob += f"\n{row.perk_name} {row.max_perk_level}\n" + current_perk = row.perk_name + blob += f"{row.skill} {row.buff_amount:d}\n" + + return ChatBlob(f"Buff Perks for {level:d} {prof}", blob) diff --git a/modules/standard/pocketboss/pocketboss.sql b/modules/standard/pocketboss/pocketboss.sql new file mode 100644 index 0000000..bafde83 --- /dev/null +++ b/modules/standard/pocketboss/pocketboss.sql @@ -0,0 +1,150 @@ +# noinspection LongLineForFile +DROP TABLE IF EXISTS pocketboss; +CREATE TABLE IF NOT EXISTS pocketboss +( + id INT NOT NULL PRIMARY KEY, + name VARCHAR(30) NOT NULL, + playfield_id INT NOT NULL, + mob_type VARCHAR(255) NOT NULL, + level INT NOT NULL, + location VARCHAR(255) NOT NULL +); +INSERT INTO pocketboss (id, name, playfield_id, mob_type, level, location) +VALUES (1, 'Adobe Suzerain', 4880, 'Eremites', 125, 'Highlands NW Incarnator N'), + (2, 'Aesma Daeva', 4605, 'Ithaki & Spetses', 220, 'Incarnator QL 255'), + (3, 'Ahpta', 4605, 'Named Spinetooth: Atakirh & Salahpt', 220, 'Each side of the ramp to Razor''s Lair'), + (4, 'Alatyr', 4320, 'Stubby Stalker and Named', 188, 'SW Glacier Hill - SW Statue'), + (5, 'Anya', 4321, 'Savvy Spinetooth Bosses: Maywakaham, Waqamawi', 185, 'SW from Spirit Palace - N from Ruins'), + (6, 'Aray', 4320, 'Alonissos / Levkada', 210, 'West Brink / South from Icarnator'), + (7, 'Argil Suzerain', 4880, 'Eremites', 125, 'West Incarnator'), + (8, 'Ashmara Ravin', 4880, 'Arcorash and Named', 125, 'The Plundge'), + (9, 'Ats (Ats`usk)', 4605, 'Isham, Spinetooths, Marsh Lizards', 220, 'Oasis - Inferno Frontier'), + (10, 'Auger', 4881, 'Spiders around', 125, 'Tree of Memories'), + (11, 'Awl', 4881, 'Green named Spiders', 125, 'Tree of Memories (W)'), + (12, 'Bagaspati', 4321, 'Named Rafter/Cat/Vadleany', 185, 'NW from Incarnator'), + (13, 'Beatific Spirit', 4881, 'Spirit Hunters', 125, 'Necropolis'), + (14, 'Bellowing Chimera', 4880, 'Named Chimeras', 125, 'North from East Incarnator'), + (15, 'Bhinaji Navi', 4881, 'Chimeran Canine, Ercorash and Named(4)', 125, 'Through Earth & Stone Pyramid'), + (16, 'Black Fang', 4542, 'Named Predators (4): Limping, Howling, Pained, Wounded', 80, + 'Shattered Heartlands (SE from Nero)'), + (17, 'Blight', 4881, 'Mephitic Mynx', 125, 'Necropolis (Ergo)'), + (18, 'Borer', 4880, 'Weavers/Spiders', 125, 'The Eastern Passageway/Crystal River'), + (19, 'Breaker Teuvo', 4320, 'Named Hiisi Steed: Shadowmane', 175, 'North from West Incarnator'), + (20, 'Brutal Rafter', 4321, 'Named Rafter/Cat/Vadleany', 175, 'NW from Incarnator'), + (21, 'Brutal Soul Dredge', 4543, 'Spirit Soul Dredge', 85, 'Linger Echo'), + (22, 'Captured Spirit', 4605, 'Spirit Hunters/Ashen Viper', 220, 'Burning Marshes NW'), + (23, 'Careening Blight', 4310, 'Named Weaver Boss', 45, 'North of Brawl'), + (24, 'Careening Death', 4310, 'Named Weaver Boss', 45, 'North of Brawl'), + (25, 'Churn', 4873, 'Whirling Rocks and Named Golems', 195, 'In the Sand'), + (26, 'Circumbendibus', 4542, 'Brutish Dryad', 80, 'Southmire (SW Swamps)'), + (27, 'Contorted Soul Dredge', 4881, 'Soul Dredges', 125, 'Necropolis'), + (28, 'Defiler of Scheol', 4881, 'Greek Named Brink Mobs', 220, 'Halls of Scheol - Eastern'), + (29, 'Devourer of Scheol', 4881, '', 205, 'Eastern Micro Islands'), + (30, 'Eidolean Soul Dredge', 4320, 'Exiguous&Maeger Spirit', 180, 'Corpse Sucker Cave NW'), + (31, 'Exsequiae', 4605, 'Bigot Helozabasael', 220, 'North from Sorrow'), + (32, 'Fester Leila', 4605, 'Distracted Snake Tamer, Beast, Estella Fire Dryad - Vortexoid / Snakes / Dryad', 220, + 'East from QL 225 Incarnator'), + (33, 'Flinty', 4881, 'Rigid Solid Robust Girders', 125, 'The Approach (South of Necropolis)'), + (34, 'Glitter', 4320, 'Chimeras: Sleet/Floe, Rafters: Snappy/Hefty/River/Frosty', 188, + 'Blue Mist - SW Lake in Forest'), + (35, 'Gracious Soul Dredge', 4881, 'Soul Dredges', 115, 'Necropolis'), + (36, 'Gunk', 4880, 'Named Rafters (4)', 125, 'Temple Bog (swamp under bridge)'), + (37, 'Hadur', 4321, 'Named Brink Mobs: Follegandros...', 210, 'SE from East Incarnator'), + (38, 'Haqa', 4605, 'Akshk''i & Tuq''usk', 220, 'N from Oasis, S from Frontier'), + (39, 'Hemut', 4880, '6 Named Croakers: Thapt, Kheferu, Nabur...', 125, 'Croaker Pass & Facet Canyon (NE)'), + (40, 'Ho', 4605, 'Ushamaham', 220, 'N from Oasis, S from Frontier'), + (41, 'Ignis Fatuus', 4881, 'Shadows and Demons', 125, 'Rock Bottom'), + (42, 'Imk', 4320, 'Named Malah and Spinetooth', 185, 'Cave North from West Hollow Entrance'), + (43, 'Iunmin', 4881, 'Croaker of Night', 110, 'Eastern Micro Islands'), + (44, 'Juma', 4322, 'Named Hiisi Warriors (8)', 182, 'Middle/South and Sup Level'), + (45, 'K', 4605, 'Named Spinetooth Bosses', 220, '225 Incarnator - East from Xark''s Lair'), + (46, 'Kaleva', 4322, 'Named Hiisi Warrior Boss (8)', 182, 'In Corridors and on the South 2nd Floor'), + (47, 'Kaoline Suzerain', 4880, 'Eremites', 125, 'North from West Incarnator'), + (48, 'Khemhet', 4880, '6 Named: Thapt, Kheferu, Nabur...', 110, 'NorthEast from Temple Bog'), + (49, 'Lethargic Spirit', 4881, 'Spirits/Spirit Hunters', 125, 'Necropolis (Ergo)'), + (50, 'Loessial Suzerain', 4880, 'Eremites', 125, 'West Incarnator'), + (51, 'Loltonunon', 4881, '5 Named Hiathlin', 125, 'Hall of Scheol, The Approach'), + (52, 'Lurky', 4873, 'Named Dryads (5)', 165, 'The Jaws'), + (53, 'Lya', 4605, 'Maychwyawi', 220, 'WSW from QL 255 Incarnator'), + (54, 'Marem', 4881, 'Birds/Imps', 125, 'Eastern Side'), + (55, 'Marly Suzerain', 4880, 'Eremites', 125, 'West Incarnator & NW'), + (56, 'Misery', 4881, 'Noxious Minx', 125, 'Necropolis NE'), + (57, 'Moochy', 4873, 'Moochy&Named Dryads', 165, 'The Jaws'), + (58, 'Morrow', 4321, 'Every mobs on the Isle', 215, 'Frozen Plateu Island'), + (59, 'Odqan', 4605, 'Named Spirits: Enkindled 208', 220, 'SW Yuttos Marshes'), + (60, 'Old Salty', 4873, 'Named Dryads (6)', 165, 'West / North'), + (61, 'Ooze', 4880, 'Named Girders: Dirty, Sloughy, ...', 125, 'The Temple Bog (Swamp under Bridge)'), + (62, 'Pazuzu', 4605, 'Crete, Syros, Limnos', 220, 'QL 255 Incarnator'), + (63, 'Quake', 4873, 'Whirling Rocks and Named Golems', 195, 'In the Sand'), + (64, 'Quondam', 4321, 'Every mobs on the Isle', 215, 'Frozen Plateu Island'), + (65, 'Rallies Fete', 4605, 'Tiunissik Spot', 235, 'North from Sorrow'), + (66, 'Redeemed Gilthar', 4873, 'Redeemed Faction Boss & Named Redeemed', 175, 'Redeemed Temple & Outside'), + (67, 'Relief Teals', 4605, 'Pyiininnik & Pyiininnik''s Shadow', 220, 'SE Xark''s Lair Inferno'), + (68, 'Sabretooth Slicer', 4312, 'Sabretooths', 35, 'Wetlands'), + (69, 'Sampsa', 4321, 'Slender Rafter (Dyna)', 185, 'North from Frozen Plateu'), + (70, 'Satkamear', 4881, 'Asatix Caal Coal Benacen Snaahemiel', 125, 'Halls of Scheol - Bottom Level'), + (71, 'Scratch', 4542, 'Named Rafters', 80, 'West of Yuttos, NE of Boneyard'), + (72, 'Screech', 4542, 'Named Rafters', 80, 'NE from Boneyard, W from Yuttos'), + (73, 'Shake', 4873, 'Named Slithers', 192, 'Icicle Keep (NW White Cave)'), + (74, 'Shake (Golem)', 4873, 'Named Golems', 195, 'Hollow Maze'), + (75, 'Shiver', 4873, 'Named Slithers', 192, 'Icicle Keep (NW White Cave)'), + (76, 'Silver Fang', 4542, '4 Predator Cat Boss', 80, 'SE from Nero'), + (77, 'Skulky', 4873, 'Skulking Dryad', 165, 'The Jaws'), + (78, 'Slinky', 4873, 'Named Dryads (5)', 165, 'The Jaws'), + (79, 'Smee', 4873, 'Named Dryads (6)', 165, 'West / North'), + (80, 'Spiritless Soul Dredge', 4881, 'Spirit Soul Dredge', 115, 'Necropolis'), + (81, 'Srahir', 4322, 'Shadows and Hiathlins', 180, 'South Shadow Camps'), + (82, 'Tcheser', 4310, 'Croaker Boss all around', 48, 'Around Two Mountains'), + (83, 'The Abysmal Lord', 4873, 'TripTrapTrub Named Spiders', 160, 'The Depression or 1100x1500'), + (84, 'The Abyssal Widow', 4873, 'TinyTripTrapTrup Named Spiders', 165, 'Abyss SW'), + (85, 'The Achbile Guardian', 4542, 'Croaker & Minx', 120, 'Just South from Ergo'), + (86, 'The Adonian Soul Dredge', 4873, 'Soul Dredges', 165, 'Dead Ends Ancient Device Ark 1'), + (87, 'The Adonis Spirit Master', 4873, 'Spirits/Souls/Dredges', 165, 'Sacellum & Sea of Adonis & Ark1'), + (88, 'The Archbile Queen', 4542, 'Croaker & Minx', 120, 'Just South from Ergo'), + (89, 'The Brobdingnagian Mother', 4320, 'Resolute Dryad', 185, 'East of Blue Mist'), + (90, 'The Dredge Driver', 4872, 'Spirit Soul Dredge', 165, 'The Suburbs/The Dig'), + (91, 'The Dryad Demigod', 4605, + 'Apprentice Beasthandler/Scrupulous Hiathlin/Punctilious Hiathlin/Tyro Beasthandler', 220, + 'East from QL 255 Incarnator'), + (92, 'The Dryad Shuffle', 4320, 'Named Dryads & Hollows', 185, 'Blue Mist - from S to N'), + (93, 'The Dune Suzerain', 4544, 'Coiling Eremite and Others (310x1260)', 90, + 'The Brink - Tinker Tower - Shell Beach'), + (94, 'The Elysian Soul Dredge', 4543, 'Spirit Soul Dredge', 90, 'Linger Echo'), + (95, 'The Enrapt One', 4542, 'Mortiig bosses', 120, 'SW Elysium'), + (96, 'The Indomitable Chimera', 4605, 'Chimera Mornitor/Trainer/Driver', 220, + 'Burning Marshes - Misty Marshes Statue'), + (97, 'The Infernal Soul Dredge', 4605, 'Named Spirits', 220, '???'), + (98, 'The Maggot Lord', 4320, 'Named Eremites', 205, 'N of Blue Mist - South of The Pipe'), + (99, 'The Numb One', 4542, 'Mortiig bosses', 120, 'Elysium (SW ?)'), + (100, 'The Penumbral Spirit Hunter', 4321, 'Vamoosing/Skedaddling Spirit', 165, 'Spirit Ruins'), + (101, 'The Peristaltic Abomination', 4873, 'Eremites and Named', 172, 'Worlmhole'), + (102, 'The Peristaltic Aversion', 4873, 'Eremites and Named', 172, 'Worlmhole'), + (103, 'The Proprietrix', 4872, 'Soul Dredges', 165, 'The Suburbs/The Dig'), + (104, 'The Scheolian Soul Dredge', 4881, 'Spirits/Spirit Hunters', 125, 'Necropolis (Ergo)'), + (105, 'The Stupendous Breeder', 4320, 'Named Dryads & Hollows', 185, 'East Frozen Lakes from S to N'), + (106, 'The Talus Suzerain', 4544, 'Coiling Eremite and Named (310x1260)', 90, + 'The Brink - Tinker Tower - Shell Beach'), + (107, 'The Watchdog', 4873, 'Spirits/Souls', 165, 'Sacellum & Sea of Adonis'), + (108, 'The Worm King', 4320, 'Death Wing & Named Slithers', 202, 'Muktuk Area SW from NW Red Temple'), + (109, 'Thunderous Chimera', 4880, 'Chimera', 125, 'Marble Orchards, East Passage'), + (110, 'Toss', 4873, 'Named Golems', 195, 'Hollow Maze'), + (111, 'Tough', 4881, 'Rigid Solid Robust Girders', 125, 'The Approach (South of Necropolis)'), + (112, 'Ungulera', 4543, 'Named Hiathlin', 90, 'Fission Fissure'), + (113, 'Upenpet', 4310, 'Croaker Boss all around', 48, 'Around Two Mountains'), + (114, 'Ushqa', 4605, 'Maychwaham, Ushamaham', 220, 'Oasis, south from Inferno Frontier'), + (115, 'Viscious Visitant', 4873, 'Spirits', 165, 'The Suburbs'), + (116, 'Wacky Suzerain', 4880, 'Named Eremites: Coiling, Sparkling, Bending...', 125, 'NW from West Incarnator'), + (117, 'White', 4540, 'Chill Spider & 2 Named Bosses', 120, 'White Pass (The Scoop)'), + (118, 'Xark the Battletoad', 4320, 'Death Wing, Slithers, Maar...', 255, 'South from Purity'), + (119, 'Zoetic Oak', 4320, 'Stubby Stalker and Named', 180, 'SW Glacier Hill - SW Statue'), + (120, 'Shullat', 4605, 'Tinos, Astypalia, Phatmos', 255, 'Clan Sanctuary Exit: Razor''s Lair'), + (121, 'Taille Frees', 4605, 'Aniitap''s Shadow/Aniitap(250)/Wicked Shadow', 220, + 'Path to the Redeemed Temple - Aniitap Spot'), + (122, 'Waqa', 4005, 'Natsmaahpt, Sanatsimk', 220, 'South of Xark''s Lair - North from Yuttos'), + (123, 'Arch Bigot Biap', 4605, 'Obsolete Soul Dredge', 220, 'North from Incarnator 255'), + (124, 'Asase Ya', 4005, 'Asase''s Drudge, Nyame''s Abettor, Asase''s Child', 255, + 'SW limits of Inferno by Sorrow South'), + (125, 'Canceroid Cupid', 4311, 'Named Cripplers', 40, 'Steppe of Dispair'), + (126, 'Sasabonsam', 4605, 'Anansi''s Disciple', 220, 'Dark Hills - SE from 255 incarnator'), + (127, 'Circumbendibum', 4542, 'Named Dryads', 80, 'Southmire'), + (128, 'Agent of Decay', 4605, 'Eremites East from Hebiel & Ahomac', 255, 'Near 225 Incarnator (Eremites)'); \ No newline at end of file diff --git a/modules/standard/pocketboss/pocketboss_controller.py b/modules/standard/pocketboss/pocketboss_controller.py new file mode 100644 index 0000000..4959678 --- /dev/null +++ b/modules/standard/pocketboss/pocketboss_controller.py @@ -0,0 +1,61 @@ +from core.chat_blob import ChatBlob +from core.command_param_types import Any +from core.decorators import instance, command + + +@instance() +class PocketbossController: + def __init__(self): + pass + + def inject(self, registry): + self.db = registry.get_instance("db") + self.text = registry.get_instance("text") + self.command_alias_service = registry.get_instance("command_alias_service") + + def pre_start(self): + self.db.load_sql_file(self.module_dir + "/" + "pocketboss.sql", pre_optimized=True) + self.db.create_view("pocketboss") + self.db.load_sql_file(self.module_dir + "/" + "pocketboss_loot.sql", pre_optimized=True) + self.db.create_view("pocketboss_loot") + + def start(self): + self.command_alias_service.add_alias("pb", "pocketboss") + + @command(command="pocketboss", params=[Any("search")], access_level="member", + description="Show information about a pocketboss") + def pocketboss_cmd(self, _, search): + data = self.search_for_pocketboss(search) + + num = len(data) + if num == 1: + row = data[0] + blob = f"Location: {row.long_name}, {row.location}\n" + blob += f"Found on: {row.mob_type}, Level {row.level:d}\n\n" + symbs = self.db.query("SELECT a.* FROM pocketboss_loot p " + "LEFT JOIN aodb a ON p.item_id = a.highid WHERE pocketboss_id = ? " + "ORDER BY a.highql DESC, a.name", [row.id]) + for symb in symbs: + blob += f"{self.text.make_item(symb.lowid, symb.highid, symb.highql, symb.name)} ({symb.highql:d})\n" + + return ChatBlob(f"Remains of {row.name}", blob) + + else: + blob = "" + for row in data: + blob += self.text.make_tellcmd(row.name, f"pocketboss {row.name}") + "\n" + + return ChatBlob(f"Pocketboss Search Results ({num:d})", blob) + + def search_for_pocketboss(self, search): + row = self.db.query_single("SELECT p1.*, p2.long_name FROM pocketboss p1 " + "LEFT JOIN playfields p2 ON p1.playfield_id = p2.id " + "WHERE name LIKE ?", + [search]) + if row: + return [row] + + return self.db.query("SELECT p1.*, p2.long_name FROM pocketboss p1 " + "LEFT JOIN playfields p2 ON p1.playfield_id = p2.id " + "WHERE name ? ORDER BY name", + [search], extended_like=True) diff --git a/modules/standard/pocketboss/pocketboss_loot.sql b/modules/standard/pocketboss/pocketboss_loot.sql new file mode 100644 index 0000000..12375d7 --- /dev/null +++ b/modules/standard/pocketboss/pocketboss_loot.sql @@ -0,0 +1,625 @@ +# noinspection LongLineForFile +DROP TABLE IF EXISTS pocketboss_loot; +CREATE TABLE IF NOT EXISTS pocketboss_loot +( + pocketboss_id INT NOT NULL, + symb_type VARCHAR(25) NOT NULL, + slot VARCHAR(25) NOT NULL, + line VARCHAR(25) NOT NULL, + item_id INT NOT NULL +); +INSERT INTO pocketboss_loot (pocketboss_id, symb_type, slot, line, item_id) +VALUES (1, 'Artillery', 'Ocular', 'Active', 219135), + (1, 'Infantry', 'Thigh', 'Active', 235792), + (1, 'Infantry', 'Feet', 'Surviving', 235825), + (1, 'Infantry', 'Feet', 'Working', 235826), + (1, 'Infantry', 'Feet', 'Active', 235827), + (1, 'Extermination', 'Ocular', 'Surviving', 235842), + (1, 'Artillery', 'Left Hand', 'Operative', 235586), + (2, 'Infantry', 'Left Arm', 'Vital', 235711), + (3, 'Artillery', 'Feet', 'Excited', 235612), + (3, 'Control', 'Ocular', 'Cognizant', 236297), + (3, 'Control', 'Brain', 'Excited', 236312), + (3, 'Control', 'Brain', 'Cognizant', 236313), + (3, 'Support', 'Thigh', 'Excited', 236250), + (4, 'Artillery', 'Left Arm', 'Awakened', 235487), + (4, 'Infantry', 'Ocular', 'Living', 235625), + (4, 'Support', 'Right Arm', 'Awakened', 236117), + (4, 'Support', 'Right Arm', 'Enduring', 236118), + (4, 'Support', 'Right Arm', 'Living', 236119), + (4, 'Support', 'Chest', 'Awakened', 236136), + (4, 'Support', 'Left Arm', 'Awakened', 236157), + (5, 'Artillery', 'Right Hand', 'Vigorous', 235559), + (5, 'Infantry', 'Left Hand', 'Enduring', 235810), + (5, 'Infantry', 'Left Hand', 'Vigorous', 235812), + (5, 'Artillery', 'Brain', 'Growing', 235417), + (5, 'Infantry', 'Left Hand', 'Growing', 235811), + (5, 'Infantry', 'Feet', 'Enduring', 235828), + (5, 'Extermination', 'Ocular', 'Growing', 235844), + (6, 'Artillery', 'Ear', 'Vital', 235438), + (6, 'Artillery', 'Right Hand', 'Effective', 235560), + (6, 'Artillery', 'Left Hand', 'Effective', 235592), + (6, 'Extermination', 'Waist', 'Effective', 235964), + (6, 'Extermination', 'Waist', 'Excited', 235965), + (6, 'Extermination', 'Waist', 'Vital', 235966), + (6, 'Extermination', 'Chest', 'Vital', 235916), + (7, 'Artillery', 'Waist', 'Vibrating', 235516), + (7, 'Control', 'Right Arm', 'Residing', 236342), + (7, 'Control', 'Chest', 'Operative', 236357), + (7, 'Control', 'Chest', 'Running', 236358), + (7, 'Control', 'Chest', 'Surviving', 236359), + (7, 'Control', 'Right Arm', 'Breathing', 236341), + (8, 'Extermination', 'Feet', 'Operative', 236048), + (8, 'Support', 'Right Arm', 'Breathing', 236113), + (8, 'Artillery', 'Right Arm', 'Breathing', 235450), + (8, 'Infantry', 'Brain', 'Vibrating', 235638), + (8, 'Extermination', 'Feet', 'Vibrating', 236047), + (8, 'Support', 'Ocular', 'Breathing', 236065), + (8, 'Extermination', 'Feet', 'Residing', 236049), + (9, 'Infantry', 'Right Wrist', 'Vital', 235726), + (10, 'Artillery', 'Brain', 'Residing', 235414), + (10, 'Extermination', 'Right Arm', 'Prevailing', 235892), + (10, 'Extermination', 'Right Arm', 'Surviving', 235893), + (10, 'Extermination', 'Chest', 'Residing', 235909), + (10, 'Artillery', 'Feet', 'Vibrating', 235604), + (10, 'Extermination', 'Chest', 'Active', 235911), + (11, 'Artillery', 'Brain', 'Running', 235415), + (11, 'Artillery', 'Feet', 'Residing', 235605), + (11, 'Extermination', 'Chest', 'Running', 235910), + (11, 'Extermination', 'Chest', 'Active', 235911), + (11, 'Extermination', 'Left Arm', 'Prevailing', 235927), + (11, 'Extermination', 'Left Arm', 'Working', 235928), + (11, 'Extermination', 'Left Arm', 'Active', 235929), + (12, 'Artillery', 'Right Arm', 'Enduring', 235455), + (12, 'Extermination', 'Right Wrist', 'Vigorous', 235950), + (12, 'Extermination', 'Waist', 'Vigorous', 235963), + (12, 'Extermination', 'Right Hand', 'Enduring', 236000), + (12, 'Artillery', 'Thigh', 'Vigorous', 235574), + (12, 'Artillery', 'Left Hand', 'Persisting', 235591), + (12, 'Extermination', 'Ear', 'Vigorous', 235880), + (13, 'Artillery', 'Ear', 'Running', 235434), + (13, 'Artillery', 'Feet', 'Active', 235607), + (13, 'Extermination', 'Waist', 'Active', 235962), + (13, 'Extermination', 'Left Wrist', 'Residing', 235978), + (13, 'Extermination', 'Left Wrist', 'Active', 235979), + (13, 'Extermination', 'Right Hand', 'Prevailing', 235995), + (13, 'Extermination', 'Right Hand', 'Running', 235997), + (13, 'Extermination', 'Left Wrist', 'Prevailing', 235977), + (14, 'Artillery', 'Right Wrist', 'Residing', 235501), + (14, 'Artillery', 'Right Wrist', 'Surviving', 235503), + (14, 'Infantry', 'Right Arm', 'Residing', 235671), + (14, 'Control', 'Ear', 'Running', 236322), + (14, 'Control', 'Ear', 'Surviving', 236323), + (14, 'Control', 'Ear', 'Working', 236324), + (14, 'Control', 'Ear', 'Active', 236325), + (14, 'Control', 'Right Arm', 'Vibrating', 236340), + (15, 'Support', 'Waist', 'Surviving', 236196), + (15, 'Support', 'Waist', 'Prevailing', 236194), + (15, 'Support', 'Left Wrist', 'Vibrating', 236209), + (15, 'Infantry', 'Ear', 'Residing', 235654), + (15, 'Support', 'Waist', 'Residing', 236195), + (16, 'Artillery', 'Ocular', 'Animated', 219130), + (16, 'Artillery', 'Ocular', 'Breathing', 219132), + (16, 'Artillery', 'Right Arm', 'Moving', 235449), + (16, 'Infantry', 'Ocular', 'Animated', 235621), + (16, 'Infantry', 'Right Wrist', 'Animated', 235719), + (16, 'Infantry', 'Right Wrist', 'Moving', 235720), + (16, 'Infantry', 'Waist', 'Lulled', 235734), + (16, 'Infantry', 'Waist', 'Animated', 235735), + (16, 'Infantry', 'Left Wrist', 'Lulled', 235752), + (17, 'Artillery', 'Right Hand', 'Working', 235555), + (17, 'Infantry', 'Brain', 'Running', 235641), + (17, 'Support', 'Right Arm', 'Prevailing', 236114), + (17, 'Support', 'Right Arm', 'Breathing', 236113), + (17, 'Support', 'Right Arm', 'Active', 236116), + (17, 'Support', 'Right Arm', 'Working', 236115), + (17, 'Support', 'Ear', 'Working', 236103), + (18, 'Artillery', 'Ear', 'Residing', 235433), + (18, 'Extermination', 'Right Wrist', 'Prevailing', 235947), + (18, 'Extermination', 'Waist', 'Prevailing', 235960), + (18, 'Extermination', 'Waist', 'Surviving', 235961), + (18, 'Extermination', 'Right Wrist', 'Active', 235949), + (18, 'Extermination', 'Right Wrist', 'Working', 235948), + (18, 'Artillery', 'Feet', 'Working', 235606), + (19, 'Artillery', 'Feet', 'Enduring', 235608), + (19, 'Extermination', 'Right Hand', 'Living', 236001), + (19, 'Extermination', 'Right Hand', 'Persisting', 236002), + (19, 'Extermination', 'Thigh', 'Awakened', 236018), + (19, 'Extermination', 'Thigh', 'Growing', 236019), + (19, 'Extermination', 'Left Hand', 'Awakened', 236033), + (19, 'Artillery', 'Right Arm', 'Persisting', 235456), + (20, 'Artillery', 'Right Arm', 'Awakened', 235454), + (20, 'Artillery', 'Right Arm', 'Enduring', 235455), + (20, 'Artillery', 'Left Hand', 'Persisting', 235591), + (20, 'Extermination', 'Left Wrist', 'Awakened', 235980), + (20, 'Extermination', 'Chest', 'Growing', 235913), + (20, 'Extermination', 'Chest', 'Persisting', 235914), + (20, 'Extermination', 'Left Arm', 'Enduring', 235931), + (20, 'Extermination', 'Left Wrist', 'Enduring', 235981), + (20, 'Extermination', 'Left Wrist', 'Growing', 235982), + (21, 'Artillery', 'Ear', 'Moving', 235430), + (21, 'Extermination', 'Ear', 'Moving', 235872), + (21, 'Extermination', 'Ear', 'Vibrating', 235873), + (21, 'Extermination', 'Right Arm', 'Animated', 235891), + (21, 'Extermination', 'Chest', 'Breathing', 235907), + (21, 'Artillery', 'Right Wrist', 'Animated', 235499), + (21, 'Extermination', 'Brain', 'Breathing', 235856), + (22, 'Infantry', 'Waist', 'Living', 235741), + (23, 'Extermination', 'Ocular', 'Lulled', 235839), + (23, 'Extermination', 'Chest', 'Lulled', 235906), + (23, 'Extermination', 'Ear', 'Lulled', 235871), + (23, 'Extermination', 'Left Arm', 'Lulled', 235924), + (23, 'Artillery', 'Ear', 'Sluggish', 235428), + (23, 'Infantry', 'Feet', 'Lulled', 235820), + (24, 'Artillery', 'Right Arm', 'Sluggish', 235445), + (24, 'Extermination', 'Feet', 'Sluggish', 236044), + (24, 'Extermination', 'Right Hand', 'Sleeping', 235991), + (25, 'Infantry', 'Right Arm', 'Vigorous', 235677), + (25, 'Infantry', 'Right Arm', 'Effective', 235678), + (25, 'Control', 'Left Arm', 'Persisting', 236378), + (25, 'Control', 'Right Wrist', 'Persisting', 236397), + (25, 'Control', 'Right Wrist', 'Vigorous', 236398), + (25, 'Artillery', 'Left Wrist', 'Vigorous', 235540), + (26, 'Artillery', 'Right Arm', 'Lulled', 235447), + (26, 'Infantry', 'Right Arm', 'Moving', 235667), + (26, 'Infantry', 'Chest', 'Moving', 235686), + (26, 'Infantry', 'Right Wrist', 'Lulled', 235718), + (26, 'Artillery', 'Ocular', 'Vibrating', 219131), + (26, 'Infantry', 'Left Arm', 'Moving', 235704), + (26, 'Infantry', 'Left Arm', 'Animated', 235703), + (27, 'Artillery', 'Chest', 'Running', 235467), + (27, 'Artillery', 'Waist', 'Operative', 235517), + (27, 'Infantry', 'Ear', 'Breathing', 235653), + (27, 'Support', 'Right Wrist', 'Operative', 236175), + (27, 'Support', 'Right Wrist', 'Running', 236176), + (27, 'Support', 'Right Wrist', 'Active', 236178), + (27, 'Support', 'Waist', 'Breathing', 236192), + (27, 'Support', 'Waist', 'Operative', 236193), + (28, 'Artillery', 'Ocular', 'Vigorous', 219137), + (29, 'Artillery', 'Ocular', 'Enduring', 219136), + (29, 'Artillery', 'Ear', 'Cognizant', 235439), + (29, 'Infantry', 'Brain', 'Alert', 235644), + (29, 'Infantry', 'Ear', 'Alert', 235662), + (30, 'Infantry', 'Left Wrist', 'Awakened', 235759), + (31, 'Infantry', 'Left Wrist', 'Effective', 235761), + (32, 'Artillery', 'Left Hand', 'Cognizant', 235595), + (32, 'Support', 'Left Arm', 'Cognizant', 236162), + (32, 'Support', 'Right Wrist', 'Vital', 236182), + (32, 'Support', 'Left Wrist', 'Cognizant', 236217), + (32, 'Support', 'Right Hand', 'Vital', 236233), + (32, 'Support', 'Right Hand', 'Cognizant', 236234), + (33, 'Support', 'Thigh', 'Residing', 236243), + (33, 'Support', 'Left Hand', 'Breathing', 236259), + (33, 'Support', 'Left Hand', 'Operative', 236260), + (33, 'Support', 'Left Hand', 'Prevailing', 236261), + (33, 'Support', 'Thigh', 'Active', 236244), + (34, 'Infantry', 'Left Wrist', 'Growing', 235760), + (35, 'Artillery', 'Ocular', 'Running', 219133), + (35, 'Infantry', 'Right Hand', 'Running', 235773), + (35, 'Infantry', 'Right Hand', 'Working', 235774), + (35, 'Infantry', 'Left Hand', 'Prevailing', 235805), + (35, 'Artillery', 'Left Hand', 'Moving', 235584), + (35, 'Infantry', 'Thigh', 'Surviving', 235790), + (35, 'Infantry', 'Thigh', 'Working', 235791), + (36, 'Artillery', 'Right Wrist', 'Residing', 235501), + (36, 'Infantry', 'Right Arm', 'Breathing', 235669), + (36, 'Support', 'Feet', 'Prevailing', 236276), + (36, 'Support', 'Feet', 'Active', 236277), + (36, 'Control', 'Ocular', 'Residing', 236291), + (36, 'Control', 'Ocular', 'Running', 236292), + (36, 'Control', 'Ocular', 'Working', 236293), + (37, 'Extermination', 'Thigh', 'Effective', 236020), + (37, 'Extermination', 'Feet', 'Vital', 236054), + (37, 'Artillery', 'Left Hand', 'Excited', 235593), + (38, 'Infantry', 'Ocular', 'Vital', 235629), + (38, 'Control', 'Right Wrist', 'Vital', 236399), + (38, 'Control', 'Chest', 'Cognizant', 236364), + (38, 'Control', 'Left Arm', 'Vital', 236382), + (38, 'Control', 'Left Arm', 'Excited', 236381), + (39, 'Artillery', 'Chest', 'Vibrating', 235465), + (39, 'Support', 'Chest', 'Vibrating', 236131), + (39, 'Support', 'Chest', 'Operative', 236132), + (39, 'Support', 'Chest', 'Prevailing', 236133), + (39, 'Support', 'Chest', 'Running', 236134), + (40, 'Infantry', 'Waist', 'Effective', 235744), + (41, 'Artillery', 'Ear', 'Surviving', 235435), + (41, 'Extermination', 'Right Hand', 'Residing', 235996), + (41, 'Extermination', 'Right Hand', 'Running', 235997), + (41, 'Extermination', 'Right Hand', 'Working', 235998), + (41, 'Extermination', 'Thigh', 'Running', 236015), + (41, 'Infantry', 'Ocular', 'Prevailing', 235622), + (41, 'Extermination', 'Right Hand', 'Active', 235999), + (42, 'Artillery', 'Left Arm', 'Persisting', 235488), + (42, 'Infantry', 'Ocular', 'Persisting', 235626), + (42, 'Support', 'Left Arm', 'Living', 236158), + (42, 'Support', 'Right Wrist', 'Enduring', 236179), + (42, 'Support', 'Right Wrist', 'Persisting', 236180), + (42, 'Support', 'Right Wrist', 'Vigorous', 236181), + (42, 'Support', 'Waist', 'Persisting', 236198), + (43, 'Artillery', 'Left Hand', 'Surviving', 235589), + (43, 'Extermination', 'Ocular', 'Active', 235843), + (43, 'Extermination', 'Brain', 'Prevailing', 235857), + (43, 'Extermination', 'Brain', 'Surviving', 235858), + (43, 'Artillery', 'Brain', 'Prevailing', 235413), + (43, 'Extermination', 'Brain', 'Active', 235859), + (43, 'Extermination', 'Ear', 'Prevailing', 235874), + (44, 'Artillery', 'Left Arm', 'Vigorous', 235489), + (44, 'Infantry', 'Ocular', 'Vigorous', 235627), + (44, 'Support', 'Left Wrist', 'Awakened', 236215), + (44, 'Support', 'Left Wrist', 'Persisting', 236216), + (44, 'Support', 'Right Hand', 'Awakened', 236231), + (44, 'Support', 'Right Hand', 'Vigorous', 236232), + (44, 'Support', 'Thigh', 'Awakened', 236245), + (45, 'Extermination', 'Left Arm', 'Cognizant', 235933), + (45, 'Extermination', 'Feet', 'Cognizant', 236055), + (45, 'Extermination', 'Left Wrist', 'Cognizant', 235985), + (45, 'Artillery', 'Left Wrist', 'Cognizant', 235541), + (46, 'Artillery', 'Right Wrist', 'Living', 235504), + (46, 'Infantry', 'Brain', 'Awakened', 235643), + (46, 'Support', 'Thigh', 'Awakened', 236245), + (46, 'Support', 'Thigh', 'Growing', 236246), + (46, 'Support', 'Thigh', 'Living', 236247), + (46, 'Support', 'Thigh', 'Vigorous', 236248), + (46, 'Support', 'Left Hand', 'Enduring', 236265), + (46, 'Support', 'Left Hand', 'Living', 236266), + (47, 'Infantry', 'Chest', 'Active', 235689), + (47, 'Control', 'Left Wrist', 'Running', 236428), + (47, 'Control', 'Right Hand', 'Breathing', 236445), + (47, 'Control', 'Right Hand', 'Operative', 236446), + (47, 'Control', 'Right Hand', 'Residing', 236447), + (47, 'Artillery', 'Waist', 'Working', 235520), + (47, 'Control', 'Right Hand', 'Surviving', 236448), + (48, 'Artillery', 'Chest', 'Residing', 235466), + (48, 'Support', 'Left Arm', 'Prevailing', 236154), + (48, 'Support', 'Left Arm', 'Residing', 236155), + (48, 'Support', 'Left Arm', 'Surviving', 236156), + (48, 'Support', 'Right Wrist', 'Operative', 236175), + (48, 'Infantry', 'Ear', 'Vibrating', 235652), + (48, 'Support', 'Left Arm', 'Breathing', 236153), + (49, 'Artillery', 'Right Arm', 'Prevailing', 235451), + (49, 'Support', 'Ocular', 'Prevailing', 236066), + (49, 'Support', 'Ocular', 'Surviving', 236067), + (49, 'Support', 'Ocular', 'Working', 236068), + (49, 'Support', 'Ocular', 'Active', 236069), + (49, 'Infantry', 'Brain', 'Operative', 235639), + (49, 'Support', 'Brain', 'Prevailing', 236082), + (50, 'Artillery', 'Waist', 'Operative', 235517), + (50, 'Control', 'Left Arm', 'Vibrating', 236372), + (50, 'Control', 'Left Arm', 'Breathing', 236373), + (50, 'Control', 'Left Arm', 'Operative', 236374), + (50, 'Control', 'Left Arm', 'Surviving', 236375), + (51, 'Infantry', 'Waist', 'Operative', 235737), + (52, 'Artillery', 'Right Hand', 'Working', 235555), + (52, 'Control', 'Left Hand', 'Growing', 236485), + (52, 'Control', 'Feet', 'Working', 236499), + (52, 'Control', 'Feet', 'Enduring', 236500), + (52, 'Infantry', 'Chest', 'Growing', 235691), + (52, 'Control', 'Feet', 'Growing', 236501), + (52, 'Infantry', 'Chest', 'Living', 235692), + (53, 'Infantry', 'Right Arm', 'Excited', 235679), + (54, 'Infantry', 'Ocular', 'Running', 235623), + (54, 'Extermination', 'Left Hand', 'Breathing', 236030), + (54, 'Extermination', 'Left Hand', 'Operative', 236031), + (54, 'Extermination', 'Thigh', 'Active', 236017), + (54, 'Extermination', 'Left Hand', 'Surviving', 236032), + (55, 'Artillery', 'Left Arm', 'Vibrating', 235484), + (55, 'Infantry', 'Ear', 'Running', 235655), + (55, 'Support', 'Left Wrist', 'Breathing', 236210), + (55, 'Support', 'Left Wrist', 'Operative', 236211), + (55, 'Support', 'Left Wrist', 'Running', 236212), + (55, 'Support', 'Left Wrist', 'Surviving', 236213), + (56, 'Support', 'Ear', 'Vibrating', 236099), + (56, 'Support', 'Ear', 'Breathing', 236100), + (56, 'Support', 'Ear', 'Surviving', 236102), + (56, 'Artillery', 'Right Arm', 'Residing', 235452), + (56, 'Support', 'Ear', 'Operative', 236101), + (56, 'Infantry', 'Brain', 'Residing', 235640), + (57, 'Artillery', 'Right Hand', 'Living', 235557), + (57, 'Infantry', 'Left Arm', 'Living', 235709), + (58, 'Artillery', 'Brain', 'Vital', 235420), + (58, 'Extermination', 'Ear', 'Awakened', 235876), + (58, 'Extermination', 'Ear', 'Enduring', 235877), + (58, 'Extermination', 'Ear', 'Growing', 235878), + (58, 'Artillery', 'Right Hand', 'Effective', 235560), + (58, 'Extermination', 'Brain', 'Vigorous', 235863), + (58, 'Extermination', 'Brain', 'Excited', 235864), + (59, 'Infantry', 'Waist', 'Persisting', 235742), + (60, 'Artillery', 'Waist', 'Active', 235521), + (60, 'Infantry', 'Ear', 'Living', 235659), + (60, 'Support', 'Feet', 'Awakened', 236278), + (60, 'Support', 'Feet', 'Living', 236279), + (60, 'Control', 'Ocular', 'Living', 236294), + (60, 'Control', 'Brain', 'Growing', 236310), + (60, 'Control', 'Ear', 'Awakened', 236326), + (60, 'Control', 'Ear', 'Enduring', 236327), + (60, 'Control', 'Right Arm', 'Persisting', 236344), + (60, 'Infantry', 'Ear', 'Growing', 235658), + (61, 'Artillery', 'Waist', 'Prevailing', 235518), + (61, 'Infantry', 'Chest', 'Vibrating', 235687), + (61, 'Control', 'Right Wrist', 'Vibrating', 236392), + (61, 'Control', 'Right Wrist', 'Surviving', 236393), + (61, 'Control', 'Waist', 'Operative', 236411), + (62, 'Infantry', 'Chest', 'Cognizant', 235695), + (63, 'Artillery', 'Left Arm', 'Effective', 235490), + (63, 'Artillery', 'Right Wrist', 'Effective', 235506), + (63, 'Infantry', 'Right Arm', 'Vigorous', 235677), + (63, 'Control', 'Ear', 'Persisting', 236328), + (63, 'Control', 'Right Arm', 'Persisting', 236344), + (63, 'Control', 'Right Arm', 'Vigorous', 236345), + (63, 'Control', 'Chest', 'Effective', 236362), + (63, 'Support', 'Ear', 'Effective', 236107), + (63, 'Support', 'Thigh', 'Effective', 236249), + (63, 'Control', 'Right Arm', 'Effective', 236346), + (63, 'Control', 'Left Arm', 'Vigorous', 236379), + (64, 'Artillery', 'Brain', 'Excited', 235419), + (64, 'Artillery', 'Waist', 'Vital', 235524), + (64, 'Infantry', 'Thigh', 'Vital', 235796), + (64, 'Infantry', 'Feet', 'Vital', 235830), + (64, 'Extermination', 'Ocular', 'Effective', 235845), + (64, 'Extermination', 'Brain', 'Awakened', 235860), + (64, 'Extermination', 'Brain', 'Growing', 235861), + (64, 'Extermination', 'Brain', 'Persisting', 235862), + (65, 'Artillery', 'Waist', 'Alert', 235525), + (65, 'Extermination', 'Left Wrist', 'Alert', 235986), + (66, 'Artillery', 'Ear', 'Active', 235436), + (67, 'Support', 'Right Arm', 'Cognizant', 236122), + (67, 'Support', 'Chest', 'Excited', 236139), + (67, 'Support', 'Chest', 'Vital', 236140), + (67, 'Artillery', 'Left Hand', 'Vital', 235594), + (68, 'Artillery', 'Chest', 'Lethargic', 235461), + (68, 'Artillery', 'Right Wrist', 'Neglectful', 235497), + (68, 'Artillery', 'Waist', 'Neglectful', 235512), + (69, 'Artillery', 'Brain', 'Awakened', 235416), + (69, 'Artillery', 'Right Hand', 'Persisting', 235558), + (69, 'Infantry', 'Right Hand', 'Enduring', 235775), + (69, 'Infantry', 'Right Hand', 'Living', 235776), + (69, 'Infantry', 'Right Hand', 'Persisting', 235777), + (69, 'Infantry', 'Thigh', 'Awakened', 235793), + (69, 'Infantry', 'Thigh', 'Persisting', 235794), + (70, 'Infantry', 'Waist', 'Breathing', 235736), + (71, 'Artillery', 'Chest', 'Animated', 235463), + (71, 'Infantry', 'Right Hand', 'Lulled', 235769), + (71, 'Infantry', 'Right Hand', 'Moving', 235771), + (71, 'Artillery', 'Brain', 'Lulled', 235409), + (71, 'Infantry', 'Left Wrist', 'Animated', 235753), + (71, 'Infantry', 'Right Hand', 'Animated', 235770), + (72, 'Artillery', 'Brain', 'Moving', 235410), + (72, 'Artillery', 'Chest', 'Moving', 235464), + (72, 'Infantry', 'Thigh', 'Moving', 235786), + (72, 'Infantry', 'Left Hand', 'Moving', 235804), + (72, 'Infantry', 'Thigh', 'Vibrating', 235787), + (72, 'Infantry', 'Right Hand', 'Breathing', 235772), + (73, 'Artillery', 'Ocular', 'Persisting', 219140), + (73, 'Control', 'Feet', 'Persisting', 236502), + (73, 'Infantry', 'Left Arm', 'Persisting', 235710), + (73, 'Control', 'Thigh', 'Persisting', 236470), + (74, 'Support', 'Ear', 'Effective', 236107), + (74, 'Support', 'Chest', 'Effective', 236137), + (74, 'Artillery', 'Left Arm', 'Effective', 235490), + (74, 'Artillery', 'Feet', 'Effective', 235611), + (74, 'Support', 'Right Arm', 'Effective', 236120), + (74, 'Support', 'Left Arm', 'Effective', 236159), + (74, 'Support', 'Thigh', 'Effective', 236249), + (75, 'Infantry', 'Chest', 'Persisting', 235693), + (75, 'Control', 'Waist', 'Persisting', 236417), + (75, 'Control', 'Left Wrist', 'Persisting', 236431), + (75, 'Control', 'Left Wrist', 'Vigorous', 236432), + (75, 'Control', 'Right Hand', 'Persisting', 236453), + (75, 'Artillery', 'Chest', 'Growing', 235471), + (75, 'Control', 'Left Wrist', 'Effective', 236433), + (76, 'Artillery', 'Ocular', 'Animated', 219130), + (76, 'Infantry', 'Ocular', 'Lulled', 235620), + (76, 'Infantry', 'Ear', 'Animated', 235651), + (76, 'Artillery', 'Ear', 'Lulled', 235429), + (76, 'Artillery', 'Feet', 'Moving', 235603), + (76, 'Infantry', 'Ocular', 'Animated', 235621), + (76, 'Infantry', 'Brain', 'Lulled', 235637), + (77, 'Artillery', 'Right Hand', 'Active', 235556), + (77, 'Infantry', 'Chest', 'Awakened', 235690), + (77, 'Infantry', 'Chest', 'Living', 235692), + (78, 'Artillery', 'Left Wrist', 'Living', 235539), + (78, 'Control', 'Thigh', 'Active', 236466), + (78, 'Control', 'Thigh', 'Awakened', 236467), + (78, 'Control', 'Thigh', 'Growing', 236468), + (78, 'Control', 'Thigh', 'Living', 236469), + (78, 'Infantry', 'Chest', 'Awakened', 235690), + (78, 'Control', 'Left Hand', 'Working', 236484), + (79, 'Artillery', 'Waist', 'Enduring', 235522), + (79, 'Infantry', 'Ear', 'Living', 235659), + (79, 'Control', 'Brain', 'Growing', 236310), + (79, 'Control', 'Ear', 'Enduring', 236327), + (79, 'Control', 'Right Arm', 'Growing', 236343), + (79, 'Control', 'Chest', 'Awakened', 236361), + (79, 'Control', 'Left Arm', 'Growing', 236377), + (79, 'Control', 'Right Wrist', 'Enduring', 236395), + (80, 'Artillery', 'Ocular', 'Surviving', 219134), + (80, 'Artillery', 'Left Hand', 'Vibrating', 235585), + (80, 'Infantry', 'Left Hand', 'Residing', 235806), + (80, 'Infantry', 'Left Hand', 'Running', 235807), + (80, 'Artillery', 'Right Arm', 'Breathing', 235450), + (80, 'Infantry', 'Feet', 'Prevailing', 235824), + (80, 'Infantry', 'Left Hand', 'Surviving', 235808), + (81, 'Artillery', 'Chest', 'Enduring', 235470), + (81, 'Artillery', 'Chest', 'Growing', 235471), + (81, 'Artillery', 'Feet', 'Living', 235610), + (81, 'Extermination', 'Feet', 'Active', 236050), + (81, 'Extermination', 'Feet', 'Persisting', 236052), + (81, 'Support', 'Ocular', 'Surviving', 236067), + (81, 'Support', 'Ocular', 'Growing', 236070), + (81, 'Support', 'Ocular', 'Living', 236071), + (81, 'Support', 'Brain', 'Enduring', 236084), + (81, 'Support', 'Brain', 'Living', 236085), + (82, 'Control', 'Right Arm', 'Lulled', 236339), + (82, 'Control', 'Chest', 'Sluggish', 236355), + (82, 'Artillery', 'Right Hand', 'Sluggish', 235550), + (82, 'Control', 'Ear', 'Sluggish', 236319), + (82, 'Control', 'Right Arm', 'Sluggish', 236338), + (83, 'Infantry', 'Left Wrist', 'Residing', 235756), + (84, 'Infantry', 'Waist', 'Awakened', 235740), + (85, 'Infantry', 'Left Wrist', 'Breathing', 235755), + (86, 'Infantry', 'Right Wrist', 'Residing', 235722), + (86, 'Artillery', 'Thigh', 'Enduring', 235571), + (87, 'Artillery', 'Left Hand', 'Prevailing', 235587), + (87, 'Infantry', 'Waist', 'Residing', 235738), + (88, 'Artillery', 'Left Wrist', 'Breathing', 235535), + (88, 'Infantry', 'Left Arm', 'Vibrating', 235705), + (88, 'Control', 'Thigh', 'Vibrating', 236463), + (88, 'Control', 'Thigh', 'Residing', 236464), + (88, 'Control', 'Thigh', 'Running', 236465), + (88, 'Control', 'Left Hand', 'Vibrating', 236480), + (88, 'Control', 'Left Hand', 'Breathing', 236481), + (89, 'Infantry', 'Left Wrist', 'Surviving', 235757), + (90, 'Artillery', 'Thigh', 'Living', 235573), + (90, 'Infantry', 'Right Wrist', 'Living', 235724), + (91, 'Infantry', 'Chest', 'Vital', 235694), + (92, 'Artillery', 'Chest', 'Awakened', 235469), + (92, 'Extermination', 'Left Hand', 'Enduring', 236034), + (92, 'Extermination', 'Right Hand', 'Vigorous', 236003), + (92, 'Artillery', 'Feet', 'Growing', 235609), + (92, 'Extermination', 'Feet', 'Enduring', 236051), + (92, 'Extermination', 'Left Hand', 'Growing', 236035), + (93, 'Extermination', 'Ocular', 'Operative', 235841), + (93, 'Artillery', 'Brain', 'Operative', 235412), + (93, 'Artillery', 'Right Hand', 'Moving', 235552), + (93, 'Extermination', 'Left Arm', 'Vibrating', 235925), + (93, 'Extermination', 'Chest', 'Operative', 235908), + (93, 'Infantry', 'Feet', 'Operative', 235823), + (94, 'Extermination', 'Thigh', 'Animated', 236011), + (94, 'Extermination', 'Thigh', 'Moving', 236012), + (94, 'Extermination', 'Thigh', 'Breathing', 236014), + (94, 'Extermination', 'Left Hand', 'Animated', 236029), + (94, 'Artillery', 'Right Arm', 'Animated', 235448), + (94, 'Artillery', 'Thigh', 'Operative', 235569), + (95, 'Artillery', 'Right Hand', 'Breathing', 235553), + (95, 'Infantry', 'Left Arm', 'Running', 235708), + (96, 'Infantry', 'Right Wrist', 'Excited', 235725), + (97, 'Infantry', 'Waist', 'Vigorous', 235743), + (98, 'Infantry', 'Right Hand', 'Excited', 235778), + (98, 'Infantry', 'Right Hand', 'Vital', 235779), + (98, 'Infantry', 'Thigh', 'Excited', 235795), + (98, 'Infantry', 'Thigh', 'Vital', 235796), + (98, 'Artillery', 'Brain', 'Persisting', 235418), + (98, 'Artillery', 'Right Wrist', 'Excited', 235507), + (98, 'Infantry', 'Feet', 'Effective', 235829), + (99, 'Artillery', 'Left Wrist', 'Surviving', 235537), + (99, 'Infantry', 'Left Arm', 'Operative', 235707), + (100, 'Artillery', 'Left Hand', 'Living', 235590), + (100, 'Extermination', 'Ear', 'Living', 235879), + (100, 'Extermination', 'Right Arm', 'Growing', 235895), + (100, 'Extermination', 'Chest', 'Awakened', 235912), + (100, 'Extermination', 'Chest', 'Growing', 235913), + (100, 'Extermination', 'Left Arm', 'Awakened', 235930), + (100, 'Artillery', 'Ear', 'Awakened', 235437), + (101, 'Artillery', 'Left Wrist', 'Enduring', 235538), + (101, 'Infantry', 'Right Arm', 'Living', 235675), + (101, 'Control', 'Left Wrist', 'Living', 236430), + (101, 'Control', 'Right Hand', 'Growing', 236452), + (101, 'Control', 'Right Hand', 'Working', 236449), + (101, 'Control', 'Right Hand', 'Active', 236450), + (101, 'Control', 'Right Hand', 'Awakened', 236451), + (102, 'Artillery', 'Waist', 'Living', 235523), + (102, 'Infantry', 'Right Arm', 'Awakened', 235674), + (102, 'Control', 'Waist', 'Awakened', 236414), + (102, 'Control', 'Waist', 'Enduring', 236415), + (102, 'Control', 'Waist', 'Growing', 236416), + (102, 'Control', 'Left Wrist', 'Enduring', 236429), + (102, 'Control', 'Left Wrist', 'Living', 236430), + (103, 'Artillery', 'Left Hand', 'Residing', 235588), + (103, 'Infantry', 'Waist', 'Active', 235739), + (104, 'Artillery', 'Waist', 'Surviving', 235519), + (104, 'Infantry', 'Chest', 'Running', 235688), + (104, 'Control', 'Waist', 'Surviving', 236413), + (104, 'Control', 'Left Wrist', 'Prevailing', 236426), + (104, 'Control', 'Left Wrist', 'Vibrating', 236425), + (104, 'Control', 'Left Wrist', 'Residing', 236427), + (104, 'Control', 'Waist', 'Running', 236412), + (105, 'Infantry', 'Left Wrist', 'Working', 235758), + (106, 'Extermination', 'Right Wrist', 'Animated', 235943), + (106, 'Extermination', 'Right Wrist', 'Moving', 235944), + (106, 'Extermination', 'Right Wrist', 'Vibrating', 235945), + (106, 'Artillery', 'Ear', 'Breathing', 235431), + (107, 'Artillery', 'Thigh', 'Growing', 235572), + (107, 'Infantry', 'Right Wrist', 'Surviving', 235723), + (108, 'Extermination', 'Right Arm', 'Effective', 235896), + (108, 'Extermination', 'Chest', 'Excited', 235915), + (108, 'Artillery', 'Chest', 'Excited', 235472), + (108, 'Artillery', 'Thigh', 'Excited', 235575), + (109, 'Artillery', 'Right Wrist', 'Residing', 235501), + (109, 'Control', 'Brain', 'Running', 236307), + (109, 'Control', 'Brain', 'Working', 236308), + (109, 'Control', 'Brain', 'Active', 236309), + (109, 'Artillery', 'Right Wrist', 'Running', 235502), + (109, 'Infantry', 'Right Arm', 'Prevailing', 235670), + (109, 'Control', 'Brain', 'Operative', 236306), + (109, 'Control', 'Ear', 'Operative', 236321), + (110, 'Artillery', 'Right Wrist', 'Vigorous', 235505), + (110, 'Support', 'Left Wrist', 'Persisting', 236216), + (110, 'Support', 'Feet', 'Effective', 236280), + (110, 'Control', 'Ocular', 'Persisting', 236295), + (110, 'Infantry', 'Right Arm', 'Persisting', 235676), + (110, 'Support', 'Left Hand', 'Persisting', 236267), + (110, 'Control', 'Ocular', 'Effective', 236296), + (111, 'Artillery', 'Left Arm', 'Breathing', 235485), + (111, 'Support', 'Right Hand', 'Vibrating', 236225), + (111, 'Support', 'Right Hand', 'Breathing', 236226), + (111, 'Support', 'Right Hand', 'Operative', 236227), + (111, 'Support', 'Right Hand', 'Residing', 236228), + (111, 'Support', 'Right Hand', 'Running', 236229), + (112, 'Extermination', 'Right Hand', 'Moving', 235993), + (112, 'Artillery', 'Ear', 'Operative', 235432), + (112, 'Artillery', 'Thigh', 'Moving', 235568), + (112, 'Extermination', 'Waist', 'Vibrating', 235959), + (112, 'Extermination', 'Left Wrist', 'Vibrating', 235975), + (113, 'Control', 'Left Arm', 'Sluggish', 236371), + (113, 'Control', 'Right Hand', 'Sluggish', 236443), + (113, 'Control', 'Waist', 'Sluggish', 236407), + (114, 'Infantry', 'Ocular', 'Excited', 235628), + (114, 'Control', 'Ear', 'Vital', 236329), + (114, 'Control', 'Chest', 'Excited', 236363), + (114, 'Control', 'Right Arm', 'Vital', 236347), + (115, 'Artillery', 'Thigh', 'Surviving', 235570), + (115, 'Infantry', 'Right Wrist', 'Prevailing', 235721), + (116, 'Artillery', 'Right Wrist', 'Breathing', 235500), + (116, 'Infantry', 'Right Arm', 'Vibrating', 235668), + (116, 'Support', 'Left Hand', 'Prevailing', 236261), + (116, 'Support', 'Left Hand', 'Running', 236262), + (116, 'Support', 'Left Hand', 'Surviving', 236263), + (116, 'Support', 'Feet', 'Breathing', 236275), + (117, 'Infantry', 'Left Arm', 'Operative', 235707), + (117, 'Control', 'Left Hand', 'Residing', 236483), + (117, 'Control', 'Feet', 'Residing', 236498), + (117, 'Control', 'Feet', 'Prevailing', 236497), + (117, 'Infantry', 'Left Arm', 'Breathing', 235706), + (118, 'Artillery', 'Left Wrist', 'Alert', 235542), + (118, 'Support', 'Waist', 'Alert', 236199), + (119, 'Artillery', 'Chest', 'Awakened', 235469), + (119, 'Artillery', 'Chest', 'Growing', 235471), + (119, 'Infantry', 'Ocular', 'Growing', 235624), + (119, 'Support', 'Brain', 'Persisting', 236086), + (119, 'Support', 'Brain', 'Vigorous', 236087), + (119, 'Support', 'Ear', 'Awakened', 236104), + (119, 'Support', 'Ear', 'Growing', 236105), + (119, 'Support', 'Ear', 'Persisting', 236106), + (120, 'Control', 'Ocular', 'Alert', 236298), + (120, 'Support', 'Feet', 'Alert', 236282), + (121, 'Infantry', 'Ear', 'Excited', 235660), + (121, 'Control', 'Left Wrist', 'Excited', 236434), + (122, 'Support', 'Brain', 'Excited', 236088), + (122, 'Support', 'Right Arm', 'Vital', 236121), + (122, 'Artillery', 'Thigh', 'Cognizant', 235576), + (122, 'Support', 'Ocular', 'Excited', 236072), + (122, 'Support', 'Ocular', 'Vital', 236073), + (122, 'Support', 'Brain', 'Vital', 236089), + (123, 'Infantry', 'Left Arm', 'Cognizant', 235712), + (124, 'Support', 'Brain', 'Alert', 236090), + (125, 'Extermination', 'Right Arm', 'Sleeping', 235889), + (125, 'Extermination', 'Right Wrist', 'Sluggish', 235941), + (126, 'Infantry', 'Ear', 'Cognizant', 235661), + (127, 'Artillery', 'Brain', 'Breathing', 235411), + (127, 'Infantry', 'Feet', 'Moving', 235821), + (127, 'Artillery', 'Left Arm', 'Moving', 235483), + (127, 'Extermination', 'Ocular', 'Animated', 235840), + (127, 'Extermination', 'Brain', 'Animated', 235854), + (127, 'Extermination', 'Brain', 'Vibrating', 235855), + (127, 'Infantry', 'Feet', 'Vibrating', 235822), + (128, 'Extermination', 'Ocular', 'Alert', 235847); \ No newline at end of file diff --git a/modules/standard/pocketboss/symbiant_controller.py b/modules/standard/pocketboss/symbiant_controller.py new file mode 100644 index 0000000..7f90b0a --- /dev/null +++ b/modules/standard/pocketboss/symbiant_controller.py @@ -0,0 +1,62 @@ +from core.chat_blob import ChatBlob +from core.command_param_types import Any +from core.decorators import instance, command + + +@instance() +class SymbiantController: + def __init__(self): + pass + + def inject(self, registry): + self.db = registry.get_instance("db") + self.text = registry.get_instance("text") + self.command_alias_service = registry.get_instance("command_alias_service") + + def start(self): + self.command_alias_service.add_alias("symb", "symbiant") + self.command_alias_service.add_alias("symbs", "symbiant") + self.command_alias_service.add_alias("symbiants", "symbiant") + + @command(command="symbiant", params=[Any("search")], access_level="member", + description="Show information about symbiants") + def symbiant_cmd(self, _, search): + data = self.search_for_symbiant(search) + + blob = "" + for row in data: + blob += f"{self.text.make_item(row.lowid, row.highid, row.highql, row.name)} ({row.highql:d})\n" + blob += f"Found on {self.text.make_tellcmd(row.pocketboss_name, f'pocketboss {row.pocketboss_name}')}\n\n" + + return ChatBlob(f"Symbiant Search Results ({len(data):d})", blob) + + def search_for_symbiant(self, search): + parts = " ".join((map(self.replacements, search.split(" ")))) + + return self.db.query("SELECT a.*, p2.name AS pocketboss_name FROM pocketboss_loot p " + "LEFT JOIN aodb a ON p.item_id = a.highid " + "LEFT JOIN pocketboss p2 ON p.pocketboss_id = p2.id " + "WHERE a.name ? " + "ORDER BY a.highql DESC, a.name", [parts], extended_like=True) + + def replacements(self, part): + if part == "eye": + return "ocular" + elif part == "head": + return "brain" + elif part == "rarm": + return "right arm" + elif part == "larm": + return "left arm" + elif part == "rwrist": + return "right wrist" + elif part == "lwrist": + return "left wrist" + elif part == "rhand": + return "right hand" + elif part == "lhand": + return "left hand" + elif part == "leg" or part == "legs": + return "thigh" + else: + return part diff --git a/modules/standard/poll/poll_controller.py b/modules/standard/poll/poll_controller.py new file mode 100644 index 0000000..9c96635 --- /dev/null +++ b/modules/standard/poll/poll_controller.py @@ -0,0 +1,242 @@ +import time + +from core.chat_blob import ChatBlob +from core.command_param_types import Const, Any, Int +from core.decorators import instance, command, event +from modules.orgbot.org.org_roster_controller import OrgRosterController + + +@instance() +class PollController: + def inject(self, registry): + self.bot = registry.get_instance("bot") + self.db = registry.get_instance("db") + self.util = registry.get_instance("util") + self.text = registry.get_instance("text") + self.job_scheduler = registry.get_instance("job_scheduler") + self.pork_service = registry.get_instance("pork_service") + self.command_alias_service = registry.get_instance("command_alias_service") + self.account_service = registry.get_instance("account_service") + + def start(self): + self.db.exec("CREATE TABLE IF NOT EXISTS poll (" + "id INT PRIMARY KEY AUTO_INCREMENT, " + "question VARCHAR(1024) NOT NULL, " + "duration INT NOT NULL, " + "min_access_level VARCHAR(20) NOT NULL, " + "char_id INT NOT NULL, " + "created_at INT NOT NULL, " + "finished_at INT NOT NULL, " + "is_finished SMALLINT NOT NULL)") + self.db.exec("CREATE TABLE IF NOT EXISTS poll_choice (" + "id INT PRIMARY KEY AUTO_INCREMENT, " + "poll_id INT NOT NULL, " + "choice VARCHAR(1024))") + self.db.exec("CREATE TABLE IF NOT EXISTS poll_vote (" + "poll_id INT NOT NULL, " + "choice_id INT NOT NULL, " + "char_id INT NOT NULL)") + + self.command_alias_service.add_alias("vote", "poll") + + @command(command="poll", params=[], access_level="member", + description="List the polls") + def poll_list_cmd(self, request): + blob = "" + t = int(time.time()) + state = "" + polls = self.get_polls() + for poll in polls: + if poll.finished_at > t and state != "running": + state = "running" + blob += "\nRunning\n" + elif poll.finished_at <= t and state != "finished": + state = "finished" + blob += "\nFinished\n" + + if state == "running": + time_string = self.util.time_to_readable(poll.finished_at - t) + " left" + else: + time_string = self.util.time_to_readable(t - poll.finished_at) + " ago" + + blob += f"{poll.id:d}. {self.text.make_tellcmd(poll.question, f'poll {poll.id:d}')} " \ + f"({poll.total_cnt:d}) - {time_string}\n" + + return ChatBlob(f"Polls ({len(polls):d})", blob) + + @command(command="poll", params=[Int("poll_id")], access_level="member", + description="View a poll") + def poll_view_cmd(self, request, poll_id): + poll = self.get_poll(poll_id) + + if not poll: + return f"Could not find poll with ID {poll_id:d}." + + return self.show_poll_details_blob(poll) + + @command(command="poll", + params=[Const("add"), Any("duration|poll_question|option1|option2|...")], + access_level="moderator", + description="Add a poll", sub_command="add") + def poll_add_cmd(self, request, _, options): + options = options.split("|") + + if len(options) < 4: + return "You must enter a duration, a poll question, and at least two choices." + + time_str = options.pop(0).strip() + question = options.pop(0).strip() + choices = options + + duration = self.util.parse_time(time_str) + if duration == 0: + return "You must enter a valid duration." + + poll_id = self.add_poll(question, request.sender.char_id, duration) + for choice in choices: + self.add_poll_choice(poll_id, choice.strip()) + + self.create_scheduled_job(self.get_poll(poll_id)) + + return self.show_poll_details_blob(self.get_poll(poll_id)) + + @command(command="poll", params=[Int("poll_id"), Const("vote"), Int("choice_id")], access_level="member", + description="Vote on a poll") + def poll_vote_cmd(self, request, poll_id, _, choice_id): + poll = self.get_poll(poll_id) + if not poll: + return f"Could not find poll with id {poll_id:d}." + if poll.is_finished == 1: + return 'The poll has ended already, your vote has not been registered.' + choice = self.db.query_single("SELECT * FROM poll_choice WHERE poll_id = ? AND id = ?", [poll_id, choice_id]) + if not choice: + return f"Could not find choice with id {choice_id:d} " \ + f"for poll id {poll_id:d}." + + main = self.account_service.get_main(request.sender.char_id) + + # retrieve pork info + self.pork_service.get_character_info(main.char_id) + + cnt = self.db.exec("DELETE FROM poll_vote " + "WHERE poll_id = ? " + "AND (char_id = ? OR char_id = ?)", + [poll_id, main.char_id, request.sender.char_id]) + self.db.exec("INSERT INTO poll_vote (poll_id, choice_id, char_id) " + "VALUES (?, ?, ?)", + [poll_id, choice_id, main.char_id]) + + if cnt > 0: + return "Your vote has been updated." + else: + return "Your vote has been saved." + + @command(command="poll", params=[Int("poll_id"), Const("remvote")], access_level="member", + description="Remove your vote on a poll") + def poll_remvote_cmd(self, request, poll_id, _): + poll = self.get_poll(poll_id) + if not poll: + return f"Could not find poll with id {poll_id:d}." + if poll.is_finished == 1: + return "The poll has ended already you may not remove your vote." + main = self.account_service.get_main(request.sender.char_id) + + cnt = self.db.exec("DELETE FROM poll_vote " + "WHERE poll_id = ? " + "AND (char_id = ? OR char_id = ?)", + [poll_id, main.char_id, request.sender.char_id]) + if cnt > 0: + return "Your vote has been removed." + else: + return "You have not voted for that choice." + + @event(event_type="connect", description="Check for finished polls", is_hidden=True) + def connect_event(self, event_type, event_data): + self.check_for_finished_polls() + self.create_scheduled_jobs_for_polls() + + @event(event_type=OrgRosterController.ORG_MEMBER_LOGON_EVENT, + description="Send active polls to org members logging on") + def org_member_logon_event(self, event_type, event_data): + if self.bot.is_ready(): + data = self.db.query("SELECT * FROM poll WHERE is_finished != 1 AND " + "id NOT IN (SELECT poll_id FROM poll_vote WHERE char_id = ?) " + "ORDER BY finished_at, id", [event_data.account.char_id]) + if data: + row = data[0] + self.bot.send_private_message(event_data.char_id, self.show_poll_details_blob(row)) + + def create_scheduled_jobs_for_polls(self): + data = self.db.query("SELECT * FROM poll WHERE is_finished != 1") + + for row in data: + self.create_scheduled_job(row) + + def check_for_finished_polls(self): + data = self.db.query("SELECT * FROM poll WHERE is_finished = 0 AND finished_at <= ?", [int(time.time())]) + + for row in data: + self.end_poll(row) + + def show_poll_details_blob(self, poll): + blob = "" + blob += f"Duration: {self.util.time_to_readable(poll.duration)}\n" + blob += f"Created: {self.util.format_datetime(poll.created_at)}\n" + blob += f"Finished: {self.util.format_datetime(poll.finished_at)}\n" + + blob += "\nChoices\n" + idx = 1 + for choice in self.get_choices(poll.id): + blob += f"{idx:d}. {self.text.make_tellcmd(choice.choice, f'poll {poll.id:d} vote {choice.id:d}')} " \ + f"({choice.cnt:d})\n" + for vote in self.get_votes(choice.id): + blob += f"{self.text.format_char_info(vote)}\n" + idx += 1 + + return ChatBlob(f"Poll ID {poll.id:d}: {poll.question}", blob) + + def get_polls(self): + return self.db.query("SELECT p.*, " + "(SELECT COUNT(1) FROM poll_vote v WHERE v.poll_id = p.id) AS total_cnt " + "FROM poll p " + "ORDER BY finished_at DESC") + + def get_poll(self, poll_id): + return self.db.query_single("SELECT * FROM poll WHERE id = ?", [poll_id]) + + def get_choices(self, poll_id): + return self.db.query("SELECT c.id, c.choice, COUNT(v.char_id) AS cnt FROM poll_choice c " + "LEFT JOIN poll_vote v ON c.id = v.choice_id " + "WHERE c.poll_id = ? " + "GROUP BY c.id, c.choice " + "ORDER BY c.id", [poll_id]) + + def get_votes(self, choice_id): + return self.db.query("SELECT p.* FROM poll_vote v " + "LEFT JOIN player p ON v.char_id = p.char_id " + "WHERE v.choice_id = ?", [choice_id]) + + def add_poll(self, question, char_id, duration, min_access_level="member"): + t = int(time.time()) + self.db.exec("INSERT INTO poll (question, duration, min_access_level, " + "char_id, created_at, finished_at, is_finished) " + "VALUES (?, ?, ?, ?, ?, ?, ?)", + [question, duration, min_access_level, char_id, t, t + duration, 0]) + + return self.db.last_insert_id() + + def add_poll_choice(self, poll_id, choice): + self.db.exec("INSERT INTO poll_choice (poll_id, choice) VALUES (?, ?)", [poll_id, choice]) + + return self.db.last_insert_id() + + def create_scheduled_job(self, poll): + self.job_scheduler.scheduled_job(self.show_results, poll.finished_at, poll.id) + + def show_results(self, t, poll_id): + self.end_poll(self.get_poll(poll_id)) + + def end_poll(self, poll): + self.bot.send_private_message(poll.char_id, + f"Your poll {poll.id:d}. {poll.question} has finished.") + self.db.exec("UPDATE poll SET is_finished = 1 WHERE id = ?", [poll.id]) diff --git a/modules/standard/quote/quote_controller.py b/modules/standard/quote/quote_controller.py new file mode 100644 index 0000000..cc3af4f --- /dev/null +++ b/modules/standard/quote/quote_controller.py @@ -0,0 +1,72 @@ +import random +import time + +from core.command_param_types import Const, Int, Any +from core.db import DB +from core.decorators import instance, command +from core.text import Text + + +@instance() +class QuoteController: + def inject(self, registry): + self.db: DB = registry.get_instance("db") + self.text: Text = registry.get_instance("text") + + def start(self): + self.db.exec("CREATE TABLE IF NOT EXISTS quote (" + "id INT PRIMARY KEY AUTO_INCREMENT, " + "char_id INT NOT NULL, " + "created_at INT NOT NULL, " + "content VARCHAR(4096) NOT NULL)") + + @command(command="quote", params=[], access_level="all", + description="Show a random quote") + def quote_command(self, request): + quote = self.get_quote_info() + + if quote: + return quote + else: + return "There are no quotes to display." + + @command(command="quote", params=[Int("quote_id")], access_level="all", + description="Show a specific quote") + def quote_view_command(self, _, quote_id): + quote = self.get_quote_info(quote_id) + + if quote: + return quote + else: + return f"Could not find quote with ID {quote_id:d}." + + @command(command="quote", params=[Const("add"), Any("quote")], access_level="all", + description="Show a specific quote") + def quote_add_command(self, request, _, quote): + if len(quote) > 4096: + return "Your quote must be less than 4096 characters." + + self.db.exec("INSERT INTO quote (char_id, created_at, content) " + "VALUES (?, ?, ?)", + [request.sender.char_id, int(time.time()), quote]) + + return "Your quote has been added successfully." + + def get_quote_info(self, quote_id=None): + stats = self.db.query_single("SELECT COUNT(1) AS count, MAX(id) AS max FROM quote") + + if stats.count == 0: + return None + + if not quote_id: + row = self.db.query_single("SELECT q.*, p.name FROM quote q " + "LEFT JOIN player p ON q.char_id = p.char_id " + "LIMIT 1 OFFSET ?", + [random.randint(0, stats.count - 1)]) + else: + row = self.db.query_single("SELECT q.*, p.name FROM quote q " + "LEFT JOIN player p ON q.char_id = p.char_id " + "WHERE id = ?", + [quote_id]) + + return f"{row.id:d}. {row.content}" diff --git a/modules/standard/raid/assist_controller.py b/modules/standard/raid/assist_controller.py new file mode 100644 index 0000000..13caefe --- /dev/null +++ b/modules/standard/raid/assist_controller.py @@ -0,0 +1,77 @@ +from core.chat_blob import ChatBlob +from core.command_param_types import Any, Const, Character, Options +from core.decorators import instance, command, event +from modules.standard.raid.leader_controller import LeaderController + + +@instance() +class AssistController: + def __init__(self): + self.assist = [] + + def inject(self, registry): + self.leader_controller = registry.get_instance("leader_controller") + + @command(command="caller", params=[], access_level="member", + description="Show current assist targets") + def assist_command(self, _): + blob = "" + for caller in self.assist: + blob += caller + f" - [assist] " \ + f"[REM]
" + blob += self.get_assist_output() + return ChatBlob(f"Callers ({len(self.assist):d})", blob) + + @command(command="caller", params=[Const("clear")], access_level="leader", + description="Clear all assist targets", sub_command="modify") + def assist_clear_command(self, request, _): + if not self.assist: + return "No assist targets set." + + if not self.leader_controller.can_use_command(request.sender.char_id): + return LeaderController.NOT_LEADER_MSG + else: + self.assist = [] + return "Assist targets have been cleared." + + @command(command="caller", params=[Options(["rem", "del"]), Character("char")], access_level="leader", + description="Remove an assisting target", sub_command="modify") + def assist_remove_command(self, request, _, char): + if not self.assist: + return "No assist targets set." + + if not self.leader_controller.can_use_command(request.sender.char_id): + return LeaderController.NOT_LEADER_MSG + else: + try: + self.assist.remove(char.name) + return f"{char.name} is no longer a caller. " \ + f"Use: {self.get_assist_output()}" + except ValueError: + return f"{char.name} is not on the caller list." + + @command(command="caller", params=[Any("assist_targets")], access_level="leader", + description="Set one or more assist targets", + sub_command="modify", + extended_description="Multiple assist targets should be space-delimited") + def assist_set_command(self, request, assist_targets): + targets = assist_targets.split(" ") + + if not self.leader_controller.can_use_command(request.sender.char_id): + return LeaderController.NOT_LEADER_MSG + else: + for caller in targets: + print(targets) + self.assist.append(caller) + return self.assist_command(request) + + def get_assist_output(self): + if not self.assist: + return "No assist targets set." + + return "/macro assist " + "\\n ".join(map(lambda x: "/assist " + x.capitalize(), reversed(self.assist))) + + @event("RAID_END", "automatic caller clearing on raid end") + def leader_remove_on_leave_private(self, _, event_data): + if self.assist: + self.assist = [] diff --git a/modules/standard/raid/chat_controller.py b/modules/standard/raid/chat_controller.py new file mode 100644 index 0000000..a2453a9 --- /dev/null +++ b/modules/standard/raid/chat_controller.py @@ -0,0 +1,22 @@ +from core.command_param_types import Any +from core.decorators import instance, command +from core.tyrbot import Tyrbot + + +@instance() +class ChatController: + def inject(self, registry): + self.command_alias_service = registry.get_instance("command_alias_service") + self.bot: Tyrbot = registry.get_instance("bot") + + def start(self): + self.command_alias_service.add_alias("cmd", "shout") + self.command_alias_service.add_alias("s", "shout") + + @command(command="shout", params=[Any("message")], access_level="leader", + description="Show a highly visible message") + def shout_command(self, _, message): + self.bot.send_private_channel_message(f"
.:: Raid Command ::.\n" + f"────────────────\n" + f"{message}\n" + f"────────────────") diff --git a/modules/standard/raid/leader_controller.py b/modules/standard/raid/leader_controller.py new file mode 100644 index 0000000..b8d8c80 --- /dev/null +++ b/modules/standard/raid/leader_controller.py @@ -0,0 +1,203 @@ +import time + +from core.command_alias_service import CommandAliasService +from core.command_param_types import Const, Character, Options +from core.db import DB +from core.decorators import instance, command, timerevent, event +from core.lookup.character_service import CharacterService +from core.private_channel_service import PrivateChannelService +from core.setting_service import SettingService +from core.setting_types import ColorSettingType, BooleanSettingType +from core.text import Text +from core.tyrbot import Tyrbot +from modules.core.accounting.services.access_service import AccessService + + +@instance() +class LeaderController: + NOT_LEADER_MSG = "Error! You must be raid leader, or have higher access " \ + "level than the raid leader to use this command." + + def __init__(self): + self.leader = None + self.last_activity = None + self.echo = False + + def inject(self, registry): + self.db: DB = registry.get_instance("db") + self.text: Text = registry.get_instance("text") + self.access_service: AccessService = registry.get_instance("access_service") + self.character_service: CharacterService = registry.get_instance("character_service") + self.bot: Tyrbot = registry.get_instance("bot") + self.setting_service: SettingService = registry.get_instance("setting_service") + self.command_alias_service: CommandAliasService = registry.get_instance("command_alias_service") + + def pre_start(self): + self.command_alias_service.add_alias("repeat", "leader echo") + self.setting_service.register_new(self.module_name, "leader_echo_color", "#00FF00", ColorSettingType(), + "Color with which the leader's messages will be echoed with") + self.setting_service.register_new(self.module_name, "leader_auto_echo", True, BooleanSettingType(), + "If turned on, when someone assume the leader role, " + "leader echo will automatically be activated for said person") + + @command(command="leader", params=[], access_level="member", + description="Show the current raid leader") + def leader_show_command(self, _): + if self.leader: + return "The current raid leader is {leader}.".format(leader=self.leader.name) + else: + return "There is no current raid leader. Use leader set to become the raid leader." + + @command(command="leader", params=[Const("echo"), Options(["on", "off"])], access_level="leader", + description="Echo whatever the current leader types in channel, in a distinctive color", sub_command="mgn") + def leader_echo_command(self, request, _2, switch_to): + if self.leader: + if self.can_use_command(request.sender.char_id): + self.echo = switch_to == "on" + return f"Raidleader echo for {self.leader.name} has been turned " \ + f"{switch_to}." + else: + return "Insufficient access level." + elif self.leader is None and switch_to == "on": + return "No current leader set, can't turn on leader echo." + + @command(command="leader", params=[Const("echo")], access_level="leader", + description="See the current status for leader echoing", sub_command="mgn") + def leader_echo_status_command(self, _1, _2): + if self.leader: + on_off = "on" if self.echo else "off" + return f"{self.leader.name} is set as leader, leader echo is {on_off}" + else: + return "No current leader set, echo is off." + + @command(command="leader", params=[Const("clear")], access_level="leader", + description="Clear the current raid leader", sub_command="mgn") + def leader_clear_command(self, request, _): + return self.set_raid_leader(request.sender, None) + + @command(command="leader", params=[Const("set")], access_level="leader", sub_command="mgn", + description="Set (or unset) yourself as raid leader") + def leader_set_self_command(self, request, _): + return self.set_raid_leader(request.sender, request.sender) + + @command(command="leader", + params=[Const("set", is_optional=True), Character("character")], + access_level="leader", + sub_command="mgn1", + description="Set another character as raid leader") + def leader_set_other_command(self, request, _, char): + if not char.char_id: + return "Could not find {player}.".format(player=char) + + return self.set_raid_leader(request.sender, char) + + @timerevent(budatime="1h", description="Remove raid leader if raid leader hasn't been active for more than 1 hour") + def leader_auto_remove(self, _1, _2): + if self.last_activity: + if self.last_activity - int(time.time()) > 3600: + self.leader = None + self.last_activity = None + self.echo = False + + self.bot.send_private_channel_message("Raid leader has been cleared automatically " + "because of inactivity.") + + @event(PrivateChannelService.LEFT_PRIVATE_CHANNEL_EVENT, "Remove raid leader if raid leader leaves private channel") + def leader_remove_on_leave_private(self, _, event_data): + if self.leader: + if self.leader.char_id == event_data.char_id: + self.leader = None + self.last_activity = None + self.echo = False + self.bot.send_private_channel_message( + f"{self.character_service.resolve_char_to_name(event_data.char_id)} " + f"left private channel, and has been cleared as raid leader.") + + @event(PrivateChannelService.PRIVATE_CHANNEL_MESSAGE_EVENT, "Echo leader messages from private channel", + is_hidden=True) + def leader_echo_private_event(self, _, event_data): + if self.leader and self.echo: + if self.leader.char_id == event_data.char_id: + if self.setting_service.get("symbol").get_value() != event_data.message[0]: + self.leader_echo(event_data.char_id, event_data.message) + + def leader_echo(self, char_id, message): + sender = self.character_service.resolve_char_to_name(char_id) + color = self.setting_service.get("leader_echo_color").get_value() + + self.bot.send_private_channel_message(f"{sender}: {message}", + fire_outgoing_event=False) + + self.activity_done() + + def activity_done(self): + self.last_activity = int(time.time()) + + def can_use_command(self, char_id): + if not self.leader or self.access_service.has_sufficient_access_level(char_id, self.leader.char_id): + self.activity_done() + return True + + return False + + def set_raid_leader(self, sender, set_to): + if set_to is None: + if not self.leader: + return "There is no current raid leader." + elif self.leader.char_id == sender.char_id: + self.leader = None + self.echo = False + return "You have been removed as raid leader." + elif self.can_use_command(sender.char_id): + old_leader = self.leader + self.leader = None + self.echo = False + self.bot.send_private_message(old_leader.char_id, + f"You have been removed as raid leader " + f"by {sender.name}.") + return f"You have removed {old_leader.name} as raid leader." + else: + return f"You do not have a high enough access level to remove raid leader " \ + f"from {self.leader.name}." + elif sender.char_id == set_to.char_id: + if not self.leader: + self.leader = sender + self.echo = self.setting_service.get("leader_auto_echo").get_value() + reply = "You have been set as raid leader." + if self.echo: + reply += " Leader echo is enabled." + return reply + elif self.leader.char_id == sender.char_id: + self.leader = None + self.echo = False + return "You have been removed as raid leader." + elif self.can_use_command(sender.char_id): + old_leader = self.leader + self.leader = sender + self.echo = self.setting_service.get("leader_auto_echo").get_value() + reply = f"{sender.name} has taken raid leader from you." + if self.echo: + reply += " Leader echo is enabled." + self.bot.send_private_message(old_leader.char_id, reply) + reply = f"You have taken raid leader from {old_leader.name}." + if self.echo: + reply += " Leader echo is enabled." + return reply + else: + return f"You do not have a high enough access level to " \ + f"take raid leader from {self.leader.name}." + else: + if self.can_use_command(sender.char_id): + self.leader = set_to + self.echo = self.setting_service.get("leader_auto_echo").get_value() + reply = f"{sender.name} has set you as raid leader." + if self.echo: + reply += " Leader echo is enabled." + self.bot.send_private_message(set_to.char_id, reply) + reply = f"{set_to.name} has been set as raid leader by {sender.name}." + if self.echo: + reply += " Leader echo is enabled." + return reply + else: + return f"You do not have a high enough access level to " \ + f"take raid leader from {self.leader.name}." diff --git a/modules/standard/recipe/json_conversion_notes.txt b/modules/standard/recipe/json_conversion_notes.txt new file mode 100644 index 0000000..b5dcd80 --- /dev/null +++ b/modules/standard/recipe/json_conversion_notes.txt @@ -0,0 +1,37 @@ +Could not find recipe item '157668 - Unfinished Alsaqri Chemical Rifle' for recipe id 105 +Could not find recipe item '157674 - Unfinished HSR Explorer 661' for recipe id 105 +Could not find recipe item '157646 - Unfinished IMI Tellus TT' for recipe id 105 +Could not find recipe item '162907 - Unfinished Ithaca Ki12 Vulture' for recipe id 105 +Could not find recipe item '162937 - Unfinished River Seasons XP' for recipe id 105 +Could not find recipe item '157656 - Unfinished Soft Pepper Pistol' for recipe id 105 +Could not find recipe item '157652 - Unfinished Sol Chironis Systems' for recipe id 105 +Could not find recipe item '157452 - Unfinished Summer SMP' for recipe id 105 +Could not find recipe item '150817 - Unfinished Bracelet of Arul Saba' for recipe id 25 +Could not find recipe item '150850 - Bracelet of Arul Saba' for recipe id 25 +Could not find recipe item '162222 - Programmed Photon Particle Emitter (Shape Soft Armor)' for recipe id 27 +Could not find recipe item '162222 - Programmed Photon Particle Emitter (Shape Soft Armor)' for recipe id 27 +Could not find recipe item '162221 - Programmed Photon Particle Emitter (Shape Hard Armor)' for recipe id 30 +Could not find recipe item '145848 - Compiled Algorithm (A Maker's Touch)' for recipe id 45 +Could not find recipe item '148848 - Programmed Photon Particle Emitter (A Maker's Touch)' for recipe id 45 +Could not find recipe item '162222 - Programmed Photon Particle Emitter (Shape Soft Armor)' for recipe id 46 +Could not find recipe item '155544 - Programmed Photon Particle Emitter (Improve Slashing Weapons)' for recipe id 54 +Could not find recipe item '245260 - Reanimator's Cloak' for recipe id 563 +Could not find recipe item '245260 - Reanimator's Cloak' for recipe id 603 +Could not find recipe item '162221 - Programmed Photon Particle Emitter (Shape Hard Armor)' for recipe id 620 +Could not find recipe item '162222 - Programmed Photon Particle Emitter (Shape Soft Armor)' for recipe id 620 +Could not find recipe item '155905 - Programmed Photon Particle Emitter (Improve Crushing Weapons)' for recipe id 620 +Could not find recipe item '162222 - Programmed Photon Particle Emitter (Shape Soft Armor)' for recipe id 63 +Could not find recipe item '162222 - Programmed Photon Particle Emitter (Shape Soft Armor)' for recipe id 70 +Could not find recipe item '247326 - Kyr'Ozch Rifle - Type 3' for recipe id 722 +Could not find recipe item '121391 - Rapid-Reload-And-Fire Gyro' for recipe id 752 +Could not find recipe item '121277 - Nano Pylon' for recipe id 755 +Could not find recipe item '25895 - Sealed Container of Foodstuffs Awaiting Credentials' for recipe id 766 +Could not find recipe item '162221 - Programmed Photon Particle Emitter (Shape Hard Armor)' for recipe id 77 +Could not find recipe item '244836 - Lord of Envy' for recipe id 775 +Could not find recipe item '229180 - Abhan Pattern of 'Screech'' for recipe id 87 +Could not find recipe item '229181 - Bhotaar Pattern of 'Screech'' for recipe id 87 +Could not find recipe item '229182 - Chi Pattern of 'Screech'' for recipe id 87 +Could not find recipe item '229183 - Dom Pattern of 'Screech'' for recipe id 87 +Could not find recipe item '229186 - Complete Blueprint Pattern of 'Screech'' for recipe id 87 +Could not find recipe item '229187 - Notum Crystal with Etched 'Screech'' for recipe id 87 +Could not find recipe item '229188 - Novictalized Notum Crystal with 'Screech'' for recipe id 87 \ No newline at end of file diff --git a/modules/standard/recipe/recipe_controller.py b/modules/standard/recipe/recipe_controller.py new file mode 100644 index 0000000..c27fb6d --- /dev/null +++ b/modules/standard/recipe/recipe_controller.py @@ -0,0 +1,291 @@ +import json +import os +import re + +from core.chat_blob import ChatBlob +from core.command_param_types import Any, Int, NamedParameters +from core.decorators import instance, command +from core.logger import Logger + + +@instance() +class RecipeController: + def __init__(self): + self.logger = Logger(__name__) + + self.recipe_name_regex = re.compile(r"(\d+)\.(txt|json)") + self.recipe_item_regex = re.compile(r"#L \"([^\"]+)\" \"([\d+]+)\"") + self.recipe_link_regex = re.compile(r"#L \"([^\"]+)\" \"([^\"]+)\"") + + def inject(self, registry): + self.db = registry.get_instance("db") + self.text = registry.get_instance("text") + self.items_controller = registry.get_instance("items_controller") + self.command_alias_service = registry.get_instance("command_alias_service") + + def start(self): + self.command_alias_service.add_alias("r", "recipe") + self.command_alias_service.add_alias("tradeskill", "recipe") + + self.db.exec("CREATE TABLE IF NOT EXISTS recipe (" + "id INT NOT NULL PRIMARY KEY, " + "name VARCHAR(50) NOT NULL, " + "author VARCHAR(50) NOT NULL, " + "recipe TEXT NOT NULL, " + "dt INT NOT NULL DEFAULT 0)") + self.db.create_view("recipe") + recipe_dir = os.path.dirname(os.path.realpath(__file__)) + "/recipes/" + recipes = self.db.query("SELECT id, dt FROM recipe") + + for file in os.listdir(recipe_dir): + if file.startswith("_"): + continue + + m = self.recipe_name_regex.match(file) + if m: + recipe_id = m.group(1) + file_type = m.group(2) + dt = int(os.path.getmtime(recipe_dir + file)) + + recipe = self.find_recipe(recipe_id, recipes) + if recipe: + recipes.remove(recipe) + if recipe.dt == dt: + continue + + self.update_recipe(recipe_dir, recipe_id, file_type, dt) + else: + raise Exception(f"Unknown recipe format for '{file}'") + + @command(command="recipe", params=[Int("recipe_id")], access_level="member", description="Show a recipe") + def recipe_show_cmd(self, _, recipe_id): + recipe = self.get_recipe(recipe_id) + if not recipe: + return f"Could not find recipe with ID {recipe_id:d}." + + return self.format_recipe(recipe) + + @command(command="recipe", + params=[Any("search"), NamedParameters(["page"])], + access_level="member", + description="Search for a recipe") + def recipe_search_cmd(self, _, search, named_params): + page = int(named_params.page or "1") + page_size = 30 + offset = (page - 1) * page_size + search = self.text.strip_html_tags(search) + data = self.db.query("SELECT * FROM recipe " + "WHERE name LIKE ? " + "or recipe LIKE ? " + "ORDER BY name", + [f"%{search}%", f"%{search}%"]) + count = len(data) + paged_data = data[offset:offset + page_size] + if count == 1: + return self.format_recipe(data[0]) + blob = "" + + if count > page_size: + if page > 1 and len(paged_data) > 0: + blob += " " + self.text.make_chatcmd(f"«« Page {page - 1:d}", self.get_chat_command(search, page - 1)) + if offset + page_size < len(data): + blob += " Page " + str(page) + blob += " " + self.text.make_chatcmd(f"Page {page + 1:d} »»", self.get_chat_command(search, page + 1)) + blob += "\n\n" + + for row in paged_data: + blob += self.text.make_tellcmd(row.name, f"recipe {row.id:d}") + "\n" + + return ChatBlob( + f"Recipes Matching '{search}' ({offset + 1:d} - {min(offset + page_size, count):d} of {count:d})", blob) + + def get_recipe(self, recipe_id): + return self.db.query_single("SELECT * FROM recipe WHERE id = ?", [recipe_id]) + + def format_recipe(self, recipe): + blob = f"Recipe ID: {recipe.id:d}\n" + blob += f"Author: {recipe.author or 'Unknown'}\n\n" + blob += self.format_recipe_text(recipe.recipe) + + return ChatBlob(f"Recipe for '{recipe.name}'", blob) + + def format_recipe_text(self, recipe_text): + recipe_text = recipe_text.replace("\\n", "\n") + recipe_text = self.recipe_item_regex.sub(self.lookup_item, recipe_text) + recipe_text = self.recipe_link_regex.sub("\\1", recipe_text) + return recipe_text + + def lookup_item(self, m): + name = m.group(1) + item_id = m.group(2) + + item = self.items_controller.get_by_item_id(item_id) + if item: + return self.text.make_item(item.lowid, item.highid, item.highql, item.name) + else: + return name + + def get_chat_command(self, search, page): + return f"/tell recipe {search} --page={page:d}" + + def find_recipe(self, recipe_id, recipes): + for row in recipes: + if str(row.id) == recipe_id: + return row + return None + + def update_recipe(self, recipe_dir, recipe_id, _, dt): + with open(recipe_dir + recipe_id + ".json", mode="r", encoding="UTF-8") as f: + recipe = json.load(f) + + name = recipe["name"] + author = recipe["author"] + + if "raw" in recipe: + content = recipe["raw"] + else: + content = self.format_json_recipe(recipe_id, recipe) + self.db.exec("REPLACE INTO recipe (id, name, author, recipe, dt) " + "VALUES (?, ?, ?, ?, ?)", + [recipe_id, name, author, content, dt]) + + def format_json_recipe(self, recipe_id, recipe): + items = {} + for i in recipe["items"]: + item = self.items_controller.get_by_item_id(i["item_id"], i.get("ql")) + if not item: + raise Exception(f"Could not find recipe item '{i['item_id']:d}' for recipe id {recipe_id}") + + item.ql = i.get("ql") or (item.highql if i["item_id"] == item.highid else item.lowql) + items[i["alias"]] = item + + content = "" + + ingredients = items.copy() + for step in recipe["steps"]: + del ingredients[step["result"]] + + content += self.format_ingredients(ingredients.items()) + content += "\n" + content += self.format_steps(items, recipe["steps"]) + + if "details" in recipe: + content += self.format_details(recipe["details"]) + + return content + + def format_ingredients(self, ingredients): + content = "------------------------------\n" + content += "Ingredients\n" + content += "------------------------------\n\n" + + for _, ingredient in ingredients: + content += self.text.make_image(ingredient["icon"]) + "" + content += self.text.make_item(ingredient["lowid"], ingredient["highid"], ingredient["ql"], + ingredient["name"]) + "\n" + + return content + + def format_steps(self, items, steps): + content = "" + content += "------------------------------\n" + content += "Recipe\n" + content += "------------------------------\n\n" + + for step in steps: + source = items[step["source"]] + target = items[step["target"]] + result = items[step["result"]] + content += f"" \ + f"{self.text.make_image(source['icon'])}" + "" + content += "+ " + content += f"" \ + f"{self.text.make_image(target['icon'])}" + "" + content += "= " + content += f"" \ + f"{self.text.make_image(result['icon'])}" + content += "\n" + self.text.make_item(source["lowid"], + source["highid"], source["ql"], source["name"]) + content += "\n + " + self.text.make_item(target["lowid"], + target["highid"], target["ql"], target["name"]) + content += "\n = " + self.text.make_item(result["lowid"], + result["highid"], result["ql"], result["name"]) + "\n" + + if "skills" in step: + content += f"Skills: | {step['skills']} |\n" + content += "\n\n" + + return content + + def format_details(self, details): + content = "" + content += "------------------------------\n" + content += "Details\n" + content += "------------------------------\n\n" + + last_type = "" + for detail in details: + if "item" in detail: + last_type = "item" + i = detail["item"] + + if "ql" in i: + item = self.items_controller.get_by_item_id(i["id"], i["ql"]) + else: + item = self.items_controller.get_by_item_id(i["id"]) + item["ql"] = item["highql"] + + content += "%s" % \ + self.text.make_item(item['lowid'], + item['highid'], + item['ql'], + item['name']) + + if "comment" in i: + content += " - " + i["comment"] + + content += "\n" + + elif "text" in detail: + if last_type == "item": + content += "\n" + + last_type = "text" + content += f"{detail['text']}\n" + + return content + + def convert_to_json(self, recipe_dir, recipe_id, file): + with open(recipe_dir + file, mode="r", encoding="UTF-8") as f: + lines = f.readlines() + + recipe = { + "name": lines.pop(0).strip()[6:], + "author": lines.pop(0).strip()[8:], + "items": list(), + "steps": list(), + "details": list(), + "raw": None + } + + content = "".join(lines) + items = {} + + matches = self.recipe_item_regex.findall(content) + for item_name, item_id in matches: + item = self.items_controller.get_by_item_id(item_id) + if not item: + self.logger.warning(f"Could not find recipe item '{item_id} - {item_name}' for recipe id {recipe_id}") + else: + items[item.highid] = {"alias": item.name, "item_id": item.highid} + + recipe["items"].extend(items.values()) + recipe["raw"] = content + + with open(recipe_dir + recipe_id + ".json", mode="w", encoding="UTF-8") as f: + f.write(json.dumps(recipe, indent=4)) + + # delete file + os.remove(recipe_dir + file) + + return True diff --git a/modules/standard/recipe/recipes/1.json b/modules/standard/recipe/recipes/1.json new file mode 100644 index 0000000..550bdf8 --- /dev/null +++ b/modules/standard/recipe/recipes/1.json @@ -0,0 +1,55 @@ +{ + "name": "Accelerated NCU Memory", + "author": "", + "items": [ + { + "alias": "NCU Memory", + "item_id": 95520, + "ql": 200 + }, + { + "alias": "Nano Formula Recompiler", + "item_id": 95519 + }, + { + "alias": "Lock Pick", + "item_id": 95577 + }, + { + "alias": "Nano Programming Interface", + "item_id": 161699 + }, + { + "alias": "Disconnected NCU Memory", + "item_id": 164601 + }, + { + "alias": "Re-configured Nano Formula Recompiler", + "item_id": 164600 + }, + { + "alias": "Accelerated NCU Memory", + "item_id": 164608 + } + ], + "steps": [ + { + "source": "Lock Pick", + "target": "NCU Memory", + "result": "Disconnected NCU Memory", + "skills": "BE,CL" + }, + { + "source": "Nano Programming Interface", + "target": "Nano Formula Recompiler", + "result": "Re-configured Nano Formula Recompiler", + "skills": "NP,CL" + }, + { + "source": "Re-configured Nano Formula Recompiler", + "target": "Disconnected NCU Memory", + "result": "Accelerated NCU Memory", + "skills": "NP,CL" + } + ] +} \ No newline at end of file diff --git a/modules/standard/recipe/recipes/101.json b/modules/standard/recipe/recipes/101.json new file mode 100644 index 0000000..5ccc993 --- /dev/null +++ b/modules/standard/recipe/recipes/101.json @@ -0,0 +1,21 @@ +{ + "name": "Rebuilt NCU Wrist Implant", + "author": "", + "items": [ + { + "alias": "Outdated NCU Wrist Implant", + "item_id": 204979 + }, + { + "alias": "Field Quantum Physics All-Purpose Tool", + "item_id": 164558 + }, + { + "alias": "Rebuilt NCU Wrist Implant", + "item_id": 204981 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients\n------------------------------\n\n#L \"Outdated NCU Wrist Implant\" \"204979\"\n\n\n#L \"Field Quantum Physics All-Purpose Tool\" \"164558\"\n\n\n------------------------------\nRecipe\n------------------------------\n\nField Quantum Physics All-Purpose Tool\n+\nOutdated NCU Wrist Implant\n=\n\n#L \"Rebuilt NCU Wrist Implant\" \"204981\"\nSkills: | QT |\n\n------------------------------\nComments\n------------------------------\n\nImplant some NCU into character..." +} diff --git a/modules/standard/recipe/recipes/102.json b/modules/standard/recipe/recipes/102.json new file mode 100644 index 0000000..6954702 --- /dev/null +++ b/modules/standard/recipe/recipes/102.json @@ -0,0 +1,49 @@ +{ + "name": "Repairman's Hat", + "author": "", + "items": [ + { + "alias": "Notum Fragment", + "item_id": 136625 + }, + { + "alias": "Notum Chip", + "item_id": 136623 + }, + { + "alias": "Salesman's Hat", + "item_id": 205738 + }, + { + "alias": "Nano Programming Interface", + "item_id": 161699 + }, + { + "alias": "Inactive OT Metamorphing Liquid Nanobots", + "item_id": 164952 + }, + { + "alias": "Field Quantum Physics All-Purpose Tool", + "item_id": 164558 + }, + { + "alias": "Transformed Salesman's Hat", + "item_id": 205741 + }, + { + "alias": "Activated OT Metamorphing Liquid Nanobots", + "item_id": 164954 + }, + { + "alias": "Stabilized OT Metamorphing Liquid Nanobots", + "item_id": 164956 + }, + { + "alias": "Repairman's Hat", + "item_id": 205743 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients\n------------------------------\n\nSome Notum \n#L \"Notum Fragment\" \"136624\"\n\nor\n#L \"Notum Chip\" \"136622\"\n\n\n#L \"Salesman's Hat\" \"205738\"\n\n\n#L \"Nano Programming Interface\" \"161699\"\n\n\n#L \"Inactive OT Metamorphing Liquid Nanobots\" \"164952\"\n\n\n#L \"Field Quantum Physics All-Purpose Tool\" \"164558\"\n\n\n------------------------------\nRecipe\n------------------------------\n\nField Quantum Physics All-Purpose Tool\n+\nSalesman's Hat\n=\n\n#L \"Transformed Salesman's Hat\" \"205741\"\nSkills: | NP,CH |\n\n------------------------------\n\nNano Programming Interface\n+\nInactive OT Metamorphing Liquid Nanobots\n=\n\n#L \"Activated OT Metamorphing Liquid Nanobots\" \"164954\"\nSkills: | NP,CH |\n\n------------------------------\n\nNotum\n+\nActivated OT Metamorphing Liquid Nanobots\n=\n\n#L \"Stabilized OT Metamorphing Liquid Nanobots\" \"164956\"\nSkills: | NP,CH |\n\n------------------------------\n\nStabilized OT Metamorphing Liquid Nanobots\n+\nTransformed Salesman's Hat\n=\n\n#L \"Repairman's Hat\" \"205743\"\nSkills: | NP,CH |\n\n------------------------------\nComments\n------------------------------\n\nYou can right-clic it to upgrad it up to QL50." +} diff --git a/modules/standard/recipe/recipes/103.json b/modules/standard/recipe/recipes/103.json new file mode 100644 index 0000000..0703f9d --- /dev/null +++ b/modules/standard/recipe/recipes/103.json @@ -0,0 +1,29 @@ +{ + "name": "Restoration Kit", + "author": "", + "items": [ + { + "alias": "Mimicking Cellular Oil", + "item_id": 154268 + }, + { + "alias": "Receptive Bots", + "item_id": 154266 + }, + { + "alias": "Shining Nano Knot of Restoration", + "item_id": 154270 + }, + { + "alias": "Purple Glowing Stim", + "item_id": 154274 + }, + { + "alias": "Advanced Restoration Kit", + "item_id": 154272 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients\n------------------------------\n\n#L \"Mimicking Cellular Oil\" \"154268\"\n\n\n#L \"Receptive Bots\" \"154266\"\n\n\n#L \"Shining Nano Knot of Restoration\" \"154270\"\n\n\n------------------------------\nRecipe\n------------------------------\n\nMimicking Cellular Oil\n+\nReceptive Bots\n=\n\n#L \"Purple Glowing Stim\" \"154274\"\nSkills: | PT |\n\n------------------------------\n\nShining Nano Knot of Restoration\n+\nPurple Glowing Stim\n=\n\n#L \"Restoration Kit\" \"154272\"\nSkills: | PT |\n\n------------------------------\nComments\n------------------------------\n\nVery useful on the paper, recovering Nanopoints and Lifepoints... But ridiculously expensive, this recipe will cost you all your exploited credits..." +} diff --git a/modules/standard/recipe/recipes/104.json b/modules/standard/recipe/recipes/104.json new file mode 100644 index 0000000..99796ff --- /dev/null +++ b/modules/standard/recipe/recipes/104.json @@ -0,0 +1,69 @@ +{ + "name": "Rollerrat Helmets", + "author": "", + "items": [ + { + "alias": "Screwdriver", + "item_id": 150922 + }, + { + "alias": "Mass Relocating Robot (Shape Hard Armor)", + "item_id": 162218 + }, + { + "alias": "Advanced Hacker Tool", + "item_id": 87814 + }, + { + "alias": "B.B.I. - Nano Enhanced B-12 Tanning Acid", + "item_id": 162247 + }, + { + "alias": "Undamaged Piece of Rubbery Rollerrat Flesh", + "item_id": 206886 + }, + { + "alias": "MasterComm - Personalization Device", + "item_id": 156025 + }, + { + "alias": "Ancarim Sun Tan Lotion", + "item_id": 205874 + }, + { + "alias": "Carbonum Plate Helmet", + "item_id": 162437 + }, + { + "alias": "Tanned Piece of Rollerrat Flesh", + "item_id": 206890 + }, + { + "alias": "Communication Device", + "item_id": 206891 + }, + { + "alias": "Fragile Rollerrat Helmet", + "item_id": 206892 + }, + { + "alias": "Simple Rollerrat Helmet", + "item_id": 206876 + }, + { + "alias": "Excellent Rollerrat Helmet", + "item_id": 206885 + }, + { + "alias": "Disassembled Rollerrat Helmet", + "item_id": 206898 + }, + { + "alias": "Rollerrat Carbonum Helmet", + "item_id": 206897 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients\n------------------------------\n\n#L \"screwdriver\" \"150922\"\n\nor\n#L \"Mass Relocating Robot (Shape Hard Armor)\" \"162218\" (#L \"recipe\" \"/tell recipe 30\")\n\n\n#L \"Hacker Tool\" \"87814\"\n\n\n#L \"B.B.I. - Nano Enhanced B-12 Tanning Acid\" \"162247\"\n\n\n#L \"Undamaged Piece of Rubbery Rollerrat Flesh\" \"206886\"\n\n\n#L \"MasterComm - Personalization Device\" \"156025\"\n\n\n#L \"Ancarim Sun Tan Lotion\" \"205874\"\n\n\n#L \"Carbonum Plate Helmet\" \"162437\" (#L \"recipe\" \"/tell recipe 30\")\n\n\n------------------------------\nRecipe\n------------------------------\n\nB.B.I. - Nano Enhanced B-12 Tanning Acid\n+\nUndamaged Piece of Rubbery Rollerrat Flesh\n=\n\n#L \"Tanned Piece of Rollerrat Flesh\" \"206890\"\nSkills: | AG,CH |\n\n------------------------------\n\nHacker Tool\n+\nMasterComm - Personalization Device\n=\n\n#L \"Communication Device\" \"206891\"\nSkills: | BE |\n\n------------------------------\n\nCommunication Device\n+\nTanned Piece of Rollerrat Flesh\n=\n\n#L \"Fragile Rollerrat Helmet\" \"206892\"\nSkills: | BE |\n\n------------------------------\n\nAncarim Sun Tan Lotion\n+\nFragile Rollerrat Helmet\n=\n\n#L \"Simple Rollerrat Helmet\" \"206876\"\nSkills: | BE |\n\nYou can use 9 another Tanned Piece of Rollerrat Flesh on your Simple Rollerrat Helmet, then you get ...\n\n#L \"Excellent Rollerrat Helmet\" \"206885\"\n\n\n------------------------------\n\nScrewdriver\n+\nExcellent Rollerrat Helmet\n=\n\n#L \"Disassembled Rollerrat Helmet\" \"206898\"\nSkills: | ME,EE |\n\n------------------------------\n\nDisassembled Rollerrat Helmet\n+\nCarbonum Plate Helmet\n=\n\n#L \"Rollerrat Carbonum Helmet\" \"206897\"\nSkills: | ME |\n\n------------------------------\nComments\n------------------------------\n\nA very very very very strange looking hat :D" +} diff --git a/modules/standard/recipe/recipes/105.json b/modules/standard/recipe/recipes/105.json new file mode 100644 index 0000000..16c5b41 --- /dev/null +++ b/modules/standard/recipe/recipes/105.json @@ -0,0 +1,105 @@ +{ + "name": "Sealed Weapon Receptacles", + "author": "", + "items": [ + { + "alias": "Sealed Weapon Receptacle - Alsaqri Chemical Rifle", + "item_id": 157670 + }, + { + "alias": "Advanced Hacker Tool", + "item_id": 87814 + }, + { + "alias": "Self-Repairing Ultra-X", + "item_id": 137284 + }, + { + "alias": "Advanced Alsaqri Chemical Rifle", + "item_id": 157661 + }, + { + "alias": "Generic Magnetic Propulsion System", + "item_id": 137246 + }, + { + "alias": "Excellent HSR Explorer 661", + "item_id": 157666 + }, + { + "alias": "Flake Tubing Super-Coolant System", + "item_id": 137250 + }, + { + "alias": "Superior IMI Tellus TT", + "item_id": 157628 + }, + { + "alias": "Nano-Interfaced Cooling System", + "item_id": 137270 + }, + { + "alias": "Ithaca Ki12 Vulture Custom Super A", + "item_id": 162902 + }, + { + "alias": "Ultra Short Composite Barrel", + "item_id": 137232 + }, + { + "alias": "River Seasons XP Special", + "item_id": 162933 + }, + { + "alias": "Nano Pylon", + "item_id": 137278 + }, + { + "alias": "Majestic Soft Pepper Pistol", + "item_id": 157644 + }, + { + "alias": "Energy Pack Interface", + "item_id": 137258 + }, + { + "alias": "Sol Chironis Systems Professional", + "item_id": 157635 + }, + { + "alias": "Triple Pulse Enabler", + "item_id": 137298 + }, + { + "alias": "Perfect Summer Burst SMP", + "item_id": 157286 + }, + { + "alias": "Gyro Stabilizing Unit", + "item_id": 137296 + }, + { + "alias": "Perfect Summer FA SMP", + "item_id": 157292 + }, + { + "alias": "Rapid-Reload-And-Fire Gyro", + "item_id": 137314 + }, + { + "alias": "Perfect Summer Fling SMP", + "item_id": 157289 + }, + { + "alias": "Shells Magazine", + "item_id": 137260 + }, + { + "alias": "Perfect Summer Shells SMP", + "item_id": 157295 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients\n------------------------------\n\nA Sealed Weapon Receptacle\n(ie : #L \"Sealed Weapon Receptacle - Alsaqri Chemical Rifle\" \"157670\"\n\n\n#L \"Hacker Tool\" \"87814\"\n\n\nThe Missing Part...\n\n------------------------------\nRecipe\n------------------------------\n\nThe first thing to do is to pry open the Sealed receptacle to get the unfinished weapon.\n\nHacker Tool\n+\nSealed Weapon Receptacle\n=\nUnfinished Weapon\nSkills: | BE |\n\n------------------------------\n\nNext, you must apply to the Unfinished Weapon the required missing Part. Here is the list of all theses parts:\n\n\n#L \"Unfinished Alsaqri Chemical Rifle\" \"157668\"\n+\n\n#L \"Self-Repairing Ultra-X\" \"137284\"\n=\n\n#L \"Alsaqri Chemical Rifle\" \"157661\"\nSkills: | WS |\n\n------------------------------\n\n\n#L \"Unfinished HSR Explorer 661\" \"157674\"\n+\n\n#L \"Generic Magnetic Propulsion System\" \"137246\"\n=\n\n#L \"HSR Explorer 661\" \"157666\"\nSkills: | WS |\n\n------------------------------\n\n\n#L \"Unfinished IMI Tellus TT\" \"157646\"\n+\n\n#L \"Flake Tubing Super-Coolant System\" \"137250\"\n=\n\n#L \"IMI Tellus TT\" \"157628\"\nSkills: | WS |\n\n------------------------------\n\n\n#L \"Unfinished Ithaca Ki12 Vulture\" \"162907\"\n+\n\n#L \"Nano-Interfaced Cooling System\" \"137270\"\n=\n\n#L \"Ithaca Ki12 Vulture\" \"162902\"\nSkills: | WS |\n\n------------------------------\n\n\n#L \"Unfinished River Seasons XP\" \"162937\"\n+\n\n#L \"Ultra Short Composite Barrel\" \"137232\"\n=\n\n#L \"River Seasons XP\" \"162933\"\nSkills: | WS |\n\n------------------------------\n\n\n#L \"Unfinished Soft Pepper Pistol\" \"157656\"\n+\n\n#L \"Nano Pylon\" \"137278\"\n=\n\n#L \"Soft Pepper Pistol\" \"157644\"\nSkills: | WS |\n\n------------------------------\n\n\n#L \"Unfinished Sol Chironis Systems\" \"157652\"\n+\n\n#L \"Energy Pack Interface\" \"137258\"\n=\n\n#L \"Sol Chironis Systems\" \"157635\"\nSkills: | WS |\n\n------------------------------\n\nFor the Last one, it's a bit more subtle since you have four possibilities\n\n\n#L \"Unfinished Summer SMP\" \"157452\"\n+\n\n#L \"Triple Pulse Enabler\" \"137298\"\n=\n\n#L \"Summer Burst SMP\" \"157286\"\nSkills: | WS |\n\n------------------------------\n\nUnfinished Summer SMP\n+\n\n#L \"Gyro Stabilizing Unit\" \"137296\"\n=\n#L \"Summer FA SMP\" \"157292\"\nSkills: | WS |\n\n------------------------------\n\nUnfinished Summer SMP\n+\n\n#L \"Rapid-Reload-And-Fire Gyro\" \"137314\"\n=\n#L \"Summer Fling SMP\" \"157289\"\nSkills: | WS |\n\n------------------------------\n\nUnfinished Summer SMP\n+\n\n#L \"Shells Magazine\" \"137260\"\n=\n#L \"Summer Shells SMP\" \"157295\"\nSkills: | WS |\n\n------------------------------\nComments\n------------------------------\n\nI'm not aware of the effiency of theses weapons. But if you want to try them, it's the only way to get one...\n\nAll the parts needed in theses recipes (except the Sealed Receptacles, of course) are available in the Ranged Weapons Components Shop." +} diff --git a/modules/standard/recipe/recipes/106.json b/modules/standard/recipe/recipes/106.json new file mode 100644 index 0000000..7648488 --- /dev/null +++ b/modules/standard/recipe/recipes/106.json @@ -0,0 +1,21 @@ +{ + "name": "Secured May Fly Throwing Grenade", + "author": "", + "items": [ + { + "alias": "Throwing Grenade Basic Kit", + "item_id": 165123 + }, + { + "alias": "Pseudo-Nano Multibenzonoxydant Sulphosalycilic Liquid", + "item_id": 165121 + }, + { + "alias": "Secured May Fly Throwing Grenade", + "item_id": 165119 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients\n------------------------------\n\n#L \"Throwing Grenade Basic Kit\" \"165123\"\n\n\n#L \"Pseudo-Nano Multibenzonoxydant Sulphosalycilic Liquid\" \"165121\"\n\n\n------------------------------\nRecipe\n------------------------------\n\nPseudo-Nano Multibenzonoxydant Sulphosalycilic Liquid\n+\nThrowing Grenade Basic Kit\n=\n\n#L \"Secured May Fly Throwing Grenade\" \"165119\"\nSkills: | BE |\n\n------------------------------\nComments\n------------------------------\n\nHmmm not that useful as you can only carry one at a time..." +} diff --git a/modules/standard/recipe/recipes/107.json b/modules/standard/recipe/recipes/107.json new file mode 100644 index 0000000..d2438dd --- /dev/null +++ b/modules/standard/recipe/recipes/107.json @@ -0,0 +1,25 @@ +{ + "name": "Sharpshooter's Helmet", + "author": "", + "items": [ + { + "alias": "Agent Gear: Kevlar Wool Balaclava", + "item_id": 160571 + }, + { + "alias": "Sharpshooter's Chip", + "item_id": 206990 + }, + { + "alias": "Kevlar Wool Balaclava Helmet", + "item_id": 160569 + }, + { + "alias": "Sharpshooter's Helmet", + "item_id": 206978 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients\n------------------------------\n\n#L \"Agent Gear: Kevlar Wool Balaclava\" \"160571\"\n\n\n#L \"Sharpshooter's Chip\" \"206990\"\n\n\n------------------------------\nRecipe\n------------------------------\n\nFirst, right-Click the Agent Gear: Kevlar Wool Balaclava to obtain a \n\n#L \"Kevlar Wool Balaclava Helmet\" \"160569\"\n\n\nSharpshooter's Chip\n+\nKevlar Wool Balaclava Helmet\n=\n\n#L \"Sharpshooter's Helmet\" \"206978\"\nSkills: | ?? |\n\n------------------------------\nComments\n------------------------------\n\nnice agent headgear!" +} diff --git a/modules/standard/recipe/recipes/108.json b/modules/standard/recipe/recipes/108.json new file mode 100644 index 0000000..df42358 --- /dev/null +++ b/modules/standard/recipe/recipes/108.json @@ -0,0 +1,81 @@ +{ + "name": "Inamorata and Sacrosanct Weapons", + "author": "", + "items": [ + { + "alias": "Grey Glyph of Aban", + "item_id": 218372 + }, + { + "alias": "Inamorata Assault Rifle", + "item_id": 212302 + }, + { + "alias": "Inamorata Bhotaar Assault Rifle", + "item_id": 212282 + }, + { + "alias": "Grey Glyph of Ocra-Bhotaar", + "item_id": 218380 + }, + { + "alias": "Grey Glyph of Aban-Shere", + "item_id": 218392 + }, + { + "alias": "Grey Glyph of Ocra-Roch", + "item_id": 218382 + }, + { + "alias": "Grey Glyph of Aban-Thar", + "item_id": 218390 + }, + { + "alias": "Grey Glyph of Ocra-Shere", + "item_id": 218378 + }, + { + "alias": "Grey Glyph of Bhotaar", + "item_id": 218364 + }, + { + "alias": "Grey Glyph of Ocra-Xum", + "item_id": 218384 + }, + { + "alias": "Grey Glyph of Enel", + "item_id": 218370 + }, + { + "alias": "Grey Glyph of Roch", + "item_id": 218366 + }, + { + "alias": "Grey Glyph of Enel-Thar", + "item_id": 218388 + }, + { + "alias": "Grey Glyph of Shere", + "item_id": 218368 + }, + { + "alias": "Grey Glyph of Enel-Xum", + "item_id": 218386 + }, + { + "alias": "Grey Glyph of Thar", + "item_id": 218374 + }, + { + "alias": "Grey Glyph of Ocra", + "item_id": 218362 + }, + { + "alias": "Grey Glyph of Xum", + "item_id": 218376 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients\n------------------------------\n\na Grey Glyph\n( ie : #L \"Grey Glyph of Aban\" \"218372\" )\n\n\nan Inamorata or Sacrosanct Weapon\n( ie : #L \"Inamorata Assault Rifle\" \"212302\" )\n\n\n------------------------------\nRecipe\n------------------------------\n\nGrey Glyph\n+\nInamorata Weapon\n=\n\nan improved Inamorata Weapon\n( ie : #L \"Inamorata Bhotaar Assault Rifle\" \"212282\" )\nSkills: | ME,EE |\n\n------------------------------\nDetails\n------------------------------\n\n#L \"Grey Glyph of Aban\" \"218372\" : Adds Sneak Attack\n#L \"Grey Glyph of Ocra-Bhotaar\" \"218380\" : Adds Burst and Fling Shot \n#L \"Grey Glyph of Aban-Shere\" \"218392\" : Adds Sneak Attack, Fast Attack and Brawl\n#L \"Grey Glyph of Ocra-Roch\" \"218382\" : Adds Fling Shot and Fullauto \n#L \"Grey Glyph of Aban-Thar\" \"218390\" : Adds Sneak Attack and Fast Attack\n#L \"Grey Glyph of Ocra-Shere\" \"218378\" : Adds Fling Shot and Aimed Shot \n#L \"Grey Glyph of Bhotaar\" \"218364\" : Adds Burst\n#L \"Grey Glyph of Ocra-Xum\" \"218384\" : Adds Burst and Fullauto \n#L \"Grey Glyph of Enel\" \"218370\" : Adds Brawl\n#L \"Grey Glyph of Roch\" \"218366\" : Adds Fullauto \n#L \"Grey Glyph of Enel-Thar\" \"218388\" : Adds Brawl and Fast Attack\n#L \"Grey Glyph of Shere\" \"218368\" : Adds Aimed Shot \n#L \"Grey Glyph of Enel-Xum\" \"218386\" : Adds Brawl and Dimach\n#L \"Grey Glyph of Thar\" \"218374\" : Adds Fast Attack \n#L \"Grey Glyph of Ocra\" \"218362\" : Adds Fling Shot \n#L \"Grey Glyph of Xum\" \"218376\" : Adds Dimach\n\n------------------------------\nComments\n------------------------------\n\nsee also #L \"Turn Spirit Weapon\" \"/tell recipe 569\" recipe." +} diff --git a/modules/standard/recipe/recipes/109.json b/modules/standard/recipe/recipes/109.json new file mode 100644 index 0000000..6db7367 --- /dev/null +++ b/modules/standard/recipe/recipes/109.json @@ -0,0 +1,29 @@ +{ + "name": "Silvertail Dagger", + "author": "", + "items": [ + { + "alias": "Snake Bile", + "item_id": 227173 + }, + { + "alias": "Silvertail Horn", + "item_id": 227169 + }, + { + "alias": "Handle-Shaped Gofle Toe Bone", + "item_id": 227175 + }, + { + "alias": "Bone Handle", + "item_id": 227177 + }, + { + "alias": "Silvertail Dagger", + "item_id": 227095 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients\n------------------------------\n\n#L \"Snake Bile\" \"227172\"\n\n\n#L \"Silvertail Horn\" \"227169\" \n\n\n#L \"Handle-Shaped Gofle Toe Bone\" \"227175\"\n\n\n------------------------------\nRecipe\n------------------------------\n\nSnake Bile\n+\nHandle-Shaped Gofle Toe Bone\n=\n\n#L \"Bone Handle\" \"227177\"\nSkills: | WS |\n\n------------------------------\n\nBone Handle\n+\nSilvertail Horn\n=\n\n#L \"Silvertail Dagger\" \"227095\"\nSkills: | WS |\n\n------------------------------\nComments\n------------------------------\n\nThese are excellent start-weapons for Shades." +} diff --git a/modules/standard/recipe/recipes/11.json b/modules/standard/recipe/recipes/11.json new file mode 100644 index 0000000..1216e36 --- /dev/null +++ b/modules/standard/recipe/recipes/11.json @@ -0,0 +1,26 @@ +{ + "name": "Anti Gravity Unit", + "author": "", + "items": [ + { + "alias": "Small Backpack", + "item_id": 99228 + }, + { + "alias": "Juggernaut's Anti-Gravity Unit", + "item_id": 207249 + }, + { + "alias": "Anti Gravity Unit", + "item_id": 207242 + } + ], + "steps": [ + { + "source": "Juggernaut's Anti-Gravity Unit", + "target": "Small Backpack", + "result": "Anti Gravity Unit", + "skills": "ME" + } + ] +} \ No newline at end of file diff --git a/modules/standard/recipe/recipes/110.json b/modules/standard/recipe/recipes/110.json new file mode 100644 index 0000000..2554a0b --- /dev/null +++ b/modules/standard/recipe/recipes/110.json @@ -0,0 +1,61 @@ +{ + "name": "Sided Carbonum Armor", + "author": "", + "items": [ + { + "alias": "Omnifier", + "item_id": 208312 + }, + { + "alias": "Storm Carbonum Plate Helmet", + "item_id": 208262 + }, + { + "alias": "Omni Carbonum Plate Helmet", + "item_id": 208293 + }, + { + "alias": "Omni Carbonum Plate Arms", + "item_id": 208285 + }, + { + "alias": "Storm Carbonum Plate Arms", + "item_id": 208254 + }, + { + "alias": "Omni Carbonum Breastplate", + "item_id": 208287 + }, + { + "alias": "Storm Carbonum Breastplate", + "item_id": 208256 + }, + { + "alias": "Omni Carbonum Plate Legs", + "item_id": 208295 + }, + { + "alias": "Storm Carbonum Plate Legs", + "item_id": 208264 + }, + { + "alias": "Omni Carbonum Plate Boots", + "item_id": 208289 + }, + { + "alias": "Storm Carbonum Plate Boots", + "item_id": 208258 + }, + { + "alias": "Omni Carbonum Plate Gloves", + "item_id": 208291 + }, + { + "alias": "Storm Carbonum Plate Gloves", + "item_id": 208260 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients\n------------------------------\n\nA piece of Carbonum Armor (#L \"recipe\" \"/tell recipe 30\")\n\n\n#L \"Omnifier\" \"208312\"\n\nor\n#L \"Clanalizer\" \"208262\"\n\n\n------------------------------\nRecipe\n------------------------------\n\nOmnifier\n+\nCarbonum Armor\n=\n\nOmni Carbonum Armor\nSkills: | CH |\n\nOR\n\nClanalizer\n+\nCarbonum Armor\n=\n\nStorm Carbonum Armor\nSkills: | CH |\n\n------------------------------\nDetails\n------------------------------\n\nHelmet: #L \"Omni\" \"208293\", #L \"Storm\" \"208262\"\nSleeves: #L \"Omni\" \"208285\", #L \"Storm\" \"208254\"\nBreastplate: #L \"Omni\" \"208287\", #L \"Storm\" \"208255\"\nPants: #L \"Omni\" \"208295\", #L \"Storm\" \"208264\"\nBoots: #L \"Omni\" \"208289\", #L \"Storm\" \"208258\"\nGloves: #L \"Omni\" \"208291\", #L \"Storm\" \"208260\"\n\n------------------------------\nComments\n------------------------------\n\nOmni Carbonum\nwear : not clan \nbonus : max health\n\nStorm Carbonum\nwear : not omni\nbonus : nano resist" +} diff --git a/modules/standard/recipe/recipes/111.json b/modules/standard/recipe/recipes/111.json new file mode 100644 index 0000000..070f380 --- /dev/null +++ b/modules/standard/recipe/recipes/111.json @@ -0,0 +1,21 @@ +{ + "name": "Bio-Material", + "author": "", + "items": [ + { + "alias": "Solid Clump of Kyr'Ozch Bio-Material", + "item_id": 247702 + }, + { + "alias": "Kyr'Ozch Structural Analyzer", + "item_id": 247100 + }, + { + "alias": "Kyr'Ozch Bio-Material - Type 1", + "item_id": 247684 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients\n------------------------------\n\n#L \"Solid Clump of Kyr'Ozch Bio-Material\" \"247702\"\n\n\n#L \"Kyr'Ozch Structural Analyzer\" \"247100\"\n( #L \"see here\" \"/tell recipe 115\" )\n\n\n------------------------------\nRecipe\n------------------------------\n\nKyr'Ozch Structural Analyzer\n+\nSolid Clump of Kyr'Ozch Bio-Material\n=\n\na Bio-Material\n( ie #L \"Kyr'Ozch Bio-Material - Type 1\" \"247684\" )\nSkills: | EE |\n\n------------------------------\nComments\n------------------------------\n\nBio material can be found in LE missions, APFs and AI City raids. Basically anywhere you find aliens ^^" +} diff --git a/modules/standard/recipe/recipes/112.json b/modules/standard/recipe/recipes/112.json new file mode 100644 index 0000000..0705586 --- /dev/null +++ b/modules/standard/recipe/recipes/112.json @@ -0,0 +1,153 @@ +{ + "name": "Solar-Powered Engineer Pistol", + "author": "", + "items": [ + { + "alias": "Basic Calculator", + "item_id": 156058 + }, + { + "alias": "Auto Targeting Computer -IIR 4 -Ultra-", + "item_id": 137292 + }, + { + "alias": "Jandawit Cleanup Cluster", + "item_id": 137282 + }, + { + "alias": "Irreparable River MV", + "item_id": 123667 + }, + { + "alias": "Solar-Powered Weapon Supervisor", + "item_id": 164523 + }, + { + "alias": "Solar-Powered Weapon Device", + "item_id": 164525 + }, + { + "alias": "Solar-Powered Pistol", + "item_id": 121567 + }, + { + "alias": "Jensen Personal Ore Extractor", + "item_id": 150276 + }, + { + "alias": "Screwdriver", + "item_id": 150922 + }, + { + "alias": "Robotic Self-Preservation System", + "item_id": 164529 + }, + { + "alias": "Notum Chip", + "item_id": 136623 + }, + { + "alias": "Notum Fragment", + "item_id": 136625 + }, + { + "alias": "Modified Jensen Ore Extractor", + "item_id": 164527 + }, + { + "alias": "Unstable Preservation System", + "item_id": 164531 + }, + { + "alias": "Stable Preservation System", + "item_id": 164536 + }, + { + "alias": "Solar-Powered Tinker Pistol", + "item_id": 164490 + }, + { + "alias": "Solar-Powered Mender Pistol", + "item_id": 164498 + }, + { + "alias": "Electrical Engineering Tutoring Device", + "item_id": 55693 + }, + { + "alias": "Advanced Hacker Tool", + "item_id": 87814 + }, + { + "alias": "Disposal Unit Electrical Toolset", + "item_id": 164552 + }, + { + "alias": "Hacked Electrical Engineering Tutoring Device", + "item_id": 164550 + }, + { + "alias": "Modified Electrical Toolset", + "item_id": 164553 + }, + { + "alias": "Solar-Powered Mechanic Pistol", + "item_id": 164501 + }, + { + "alias": "Solar-Powered Machinist Pistol", + "item_id": 164511 + }, + { + "alias": "Experimental Nanobot Classifying Computer", + "item_id": 164568 + }, + { + "alias": "Mist-Filled Jar", + "item_id": 164566 + }, + { + "alias": "Energized Nanobot Transmitter", + "item_id": 164574 + }, + { + "alias": "Solar-Powered Engineer Pistol", + "item_id": 164513 + }, + { + "alias": "Accelerated NCU Memory", + "item_id": 164608 + }, + { + "alias": "Crystalized Medusa Queen Hippocampus", + "item_id": 164598 + }, + { + "alias": "Symbiotic NCU", + "item_id": 164620 + }, + { + "alias": "Solar-Powered Master Engineer Pistol", + "item_id": 164515 + }, + { + "alias": "Dust Brigade Solar Notum Infuser", + "item_id": 274558 + }, + { + "alias": "Infused Solar-Powered Master Engineer Pistol", + "item_id": 274557 + }, + { + "alias": "Crude Upgrade Kit", + "item_id": 274975 + }, + { + "alias": "Augmented Master Engineer Pistol", + "item_id": 274973 + } + ], + "steps": [], + "details": [], + "raw": "Step 1: Solar-Powered Pistol\n\nJump to step 2 if you already have a Start Up Pistol.\n\n------------------------------\nIngredients\n------------------------------\n\n#L \"Basic Calculator\" \"156058\"\n\n\n#L \"Auto Targeting Computer -IIR 4 -Ultra-\" \"137291\"\n\n\n#L \"Jandawit Cleanup Cluster\" \"137281\"\n\n\n#L \"Irreparable River MV\" \"123667\"\n\n\n------------------------------\nRecipe\n------------------------------\n\nAuto Targeting Computer -IIR 4 -Ultra-\n+\nBasic Calculator\n=\n\n#L \"Solar-Powered Weapon Supervisor\" \"164523\"\nSkills: | WS |\n\n------------------------------\n\nJandawit Cleanup Cluster\n+\nSolar-Powered Weapon Supervisor\n=\n\n#L \"Solar-Powered Weapon Device\" \"164525\"\nSkills: | WS |\n\n------------------------------\n\nSolar-Powered Weapon Device\n+\nIrreparable River MV\n=\n\n#L \"Solar-Powered Pistol\" \"121567\"\nSkills: | WS |\n\n------------------------------\n\n\nStep 2: Solar-Powered Tinker Pistol\n\n------------------------------\nIngredients\n------------------------------\n\n#L \"Jensen Personal Ore Extractor\" \"150281\"\n\n\n#L \"Screwdriver\" \"150922\"\n\n\n#L \"Robotic Self-Preservation System\" \"164529\"\n\n\n#L \"Notum Chip\" \"136623\"\n\nor\n#L \"Notum Fragment\" \"136625\"\n\n\n------------------------------\nRecipe\n------------------------------\n\nScrewdriver\n+\nJensen Personal Ore Extractor\n=\n\n#L \"Modified Jensen Ore Extractor\" \"164527\"\nSkills: | WS |\n\n------------------------------\n\nRobotic Self-Preservation System\n+\nModified Jensen Ore Extractor\n=\n\n#L \"Unstable Preservation System\" \"164531\"\nSkills: | WS |\n\n------------------------------\n\nNotum\n+\nUnstable Preservation System\n=\n\n#L \"Stable Preservation System\" \"164536\"\nSkills: | WS |\n\n------------------------------\n\nStable Preservation System\n+\nSolar-Powered Pistol\n=\n\n#L \"Solar-Powered Tinker Pistol\" \"164490\"\nSkills: | WS |\n\n------------------------------\n\n\nStep 3: Solar-Powered Mender Pistol\n\nIncrease the QL of your pistol to 39 by right-clicking on it.\n\n------------------------------\nIngredients\n------------------------------\n\nMechanical Analyzer (#L \"recipe\" \"/tell recipe 67\")\n\n\n------------------------------\nRecipe\n------------------------------\n\nMechanical Analyzer\n+\nSolar-Powered Tinker Pistol\n=\n\n#L \"Solar-Powered Mender Pistol\" \"164498\"\nSkills: | WS |\n\n------------------------------\n\n\nStep 4: Solar-Powered Mechanic Pistol\n\nIncrease the QL of your pistol to 99 by right-clicking on it.\n\n------------------------------\nIngredients\n------------------------------\n\n#L \"Electrical Engineering Tutoring Device\" \"55693\"\n\n\n#L \"Hacker Tool\" \"87814\"\n\n\n#L \"Disposal Unit Electrical Toolset\" \"164552\"\n\n\n------------------------------\nRecipe\n------------------------------\n\nHacker Tool\n+\nElectrical Engineering Tutoring Device\n=\n\n#L \"Hacked Electrical Engineering Tutoring Device\" \"164550\"\nSkills: | WS |\n\n------------------------------\n\nHacked Electrical Engineering Tutoring Device\n+\nDisposal Unit Electrical Toolset\n=\n\n#L \"Modified Electrical Toolset\" \"164553\"\nSkills: | WS |\n\n------------------------------\n\nModified Electrical Toolset\n+\nSolar-Powered Mender Pistol\n=\n\n#L \"Solar-Powered Mechanic Pistol\" \"164501\"\nSkills: | WS |\n\n------------------------------\n\n\nStep 5: Solar-Powered Machinist Pistol\n\nIncrease the QL of your pistol to 139 by right-clicking on it.\n\n------------------------------\nIngredients\n------------------------------\n\nNotum Threaded Backpack\n(#L \"recipe\" \"/tell recipe 78\")\n\n\n------------------------------\nRecipe\n------------------------------\n\nNotum Threaded Backpack\n+\nSolar-Powered Mechanic Pistol\n=\n\n#L \"Solar-Powered Machinist Pistol\" \"164511\"\nSkills: | WS |\n\n------------------------------\n\n\nStep 6: Solar-Powered Engineer Pistol\n\nIncrease the QL of your pistol to 179 by right-clicking on it.\n\n------------------------------\nIngredients\n------------------------------\n\n#L \"Experimental Nanobot Classifying Computer\" \"164568\"\n\n\n#L \"Mist-Filled Jar\" \"164566\"\n\n\n------------------------------\nRecipe\n------------------------------\n\nExperimental Nanobot Classifying Computer\n+\nMist-Filled Jar\n=\n\n#L \"Energized Nanobot Transmitter\" \"164574\"\nSkills: | WS |\n\n------------------------------\n\nEnergized Nanobot Transmitter\n+\nSolar-Powered Machinist Pistol\n=\n\n#L \"Solar-Powered Engineer Pistol\" \"164513\"\nSkills: | WS |\n\n------------------------------\n\n\nStep 7: Solar-Powered Master Engineer Pistol\n\nIncrease the QL of your pistol to 199 by right-clicking on it.\n\n------------------------------\nIngredients\n------------------------------\n\n#L \"Accelerated NCU\" \"164608\" ( #L \"recipe\" \"/tell recipe 1\" )\n\n\n#L \"Crystalized Medusa Queen Hippocampus\" \"164598\"\n\n\n------------------------------\nRecipe\n------------------------------\n\nAccelerated NCU\n+\nCrystalized MedusaQueen Hippocampus\n=\n\n#L \"Symbiotic NCU\" \"164620\"\nSkills: | WS |\n\n------------------------------\n\nSymbiotic NCU\n+\nSolar-Powered Engineer Pistol\n=\n\n#L \"Solar-Powered Master Engineer Pistol\" \"164515\"\nSkills: | WS |\n\n------------------------------\n\n\nStep 8: Infused Solar-Powered Master Engineer Pistol\n\nYou must have Lost Eden Expansion to use the pistol once modified beyond this point!\n\n------------------------------\nIngredients\n------------------------------\n\n#L \"Dust Brigade Solar Notum Infuser\" \"274558\"\n\n\n------------------------------\nRecipe\n------------------------------\n\nDust Brigade Solar Notum Infuser\n+\nSolar-Powered Master Engineer Pistol\n=\n\n#L \"Infused Solar-Powered Master Engineer Pistol\" \"274557\"\nSkills: | 1000WS,1800ME,1800EE |\n\n------------------------------\n\n\nStep 9: Augmented Master Engineer Pistol\n\n------------------------------\nIngredients\n------------------------------\n\n#L \"Crude Upgrade Kit\" \"274975\"\n\n\n------------------------------\nRecipe\n------------------------------\n\nInfused Solar-Powered Master Engineer Pistol\n+\nCrude Upgrade Kit\n=\n\n#L \"Augmented Master Engineer Pistol\" \"274973\"\nSkills: | 1500WS,2100ME,2100EE |\n\n------------------------------\nComments\n------------------------------\n\nThe engineers best friend (besides his pet robots and his screwdriver) now has an extra 2 steps of upgrading for those high level engis with Lost Eden Expansions." +} diff --git a/modules/standard/recipe/recipes/113.json b/modules/standard/recipe/recipes/113.json new file mode 100644 index 0000000..f421b7c --- /dev/null +++ b/modules/standard/recipe/recipes/113.json @@ -0,0 +1,61 @@ +{ + "name": "Special Turrets", + "author": "", + "items": [ + { + "alias": "Cloud of Infuriated Nanobots", + "item_id": 202534 + }, + { + "alias": "Advanced Turret Construction Base", + "item_id": 202583 + }, + { + "alias": "HSR Compressed Regenerating Bioplate", + "item_id": 202540 + }, + { + "alias": "Revolving Cold Laser", + "item_id": 202780 + }, + { + "alias": "Turret Controller", + "item_id": 202584 + }, + { + "alias": "Cold Laser Turret Controller", + "item_id": 202588 + }, + { + "alias": "Cold Laser Turret", + "item_id": 203081 + }, + { + "alias": "Sentient Corrosion Sprayer", + "item_id": 202783 + }, + { + "alias": "Sentient Corrosion Turret Controller", + "item_id": 202590 + }, + { + "alias": "Sentient Corrosive Turret", + "item_id": 203085 + }, + { + "alias": "Augias X-11 Ejector", + "item_id": 202785 + }, + { + "alias": "X-11 Ejector Turret Controller", + "item_id": 202592 + }, + { + "alias": "X-11 Ejector Turret", + "item_id": 203089 + } + ], + "steps": [], + "details": [], + "raw": "Type 1: Cold Laser Turret\n\n------------------------------\nIngredients\n------------------------------\n\n#L \"Cloud of Infuriated Nanobots\" \"202534\"\n\n\n#L \"Turret Construction Base\" \"202583\" \n\n\n#L \"HSR Compressed Regenerating Bioplate\" \"202540\"\n\n\n#L \"Revolving Cold Laser\" \"202780\"\n\n\n------------------------------\nRecipe\n------------------------------\n\nCloud of Infuriated Nanobots\n+\nTurret Construction Base\n=\n\n#L \"Turret Controller\" \"202584\"\nSkills: | ME,NP |\n\n------------------------------\n\nTurret Controller\n+\nRevolving Cold Laser\n=\n\n#L \"Cold Laser Turret Controller\" \"202588\"\nSkills: | ME,WS |\n\n------------------------------\n\nHSR Compressed Regenerating Bioplate\n+\nCold Laser Turret Controller\n=\n\n#L \"Cold Laser Turret\" \"203080\"\nSkills: | ME |\n\n------------------------------\n\n\nType 2: Corrosive Turret\n\n------------------------------\nIngredients\n------------------------------\n\n#L \"Cloud of Infuriated Nanobots\" \"202534\"\n\n\n#L \"Turret Construction Base\" \"202583\" \n\n\n#L \"HSR Compressed Regenerating Bioplate\" \"202540\"\n\n\n#L \"Sentient Corrosion Sprayer\" \"202783\"\n\n\n------------------------------\nRecipe\n------------------------------\n\nCloud of Infuriated Nanobots\n+\nTurret Construction Base\n=\n\n#L \"Turret Controller\" \"202584\"\nSkills: | ME,NP |\n\n------------------------------\n\nTurret Controller\n+\nSentient Corrosion Sprayer\n=\n\n#L \"Sentient Corrosion Turret Controller\" \"202590\"\nSkills: | ME,WS |\n\n------------------------------\n\nHSR Compressed Regenerating Bioplate\n+\nSentient Corrosion Turret Controller\n=\n\n#L \"Sentient Corrosive Turret\" \"203085\"\nSkills: | ME |\n\n------------------------------\n\n\nType 3: X-11 Ejector Turret\n\n------------------------------\nIngredients\n------------------------------\n\n#L \"Cloud of Infuriated Nanobots\" \"202534\"\n\n\n#L \"Turret Construction Base\" \"202583\" \n\n\n#L \"HSR Compressed Regenerating Bioplate\" \"202540\"\n\n\n#L \"Augias X-11 Ejector\" \"202785\"\n\n\n------------------------------\nRecipe\n------------------------------\n\nCloud of Infuriated Nanobots\n+\nTurret Construction Base\n=\n\n#L \"Turret Controller\" \"202584\"\nSkills: | ME,NP |\n\n------------------------------\n\nTurret Controller\n+\nAugias X-11 Ejector\n=\n\n#L \"X-11 Ejector Turret Controller\" \"202592\"\nSkills: | ME,WS |\n\n------------------------------\n\nHSR Compressed Regenerating Bioplate\n+\nX-11 Ejector Turret Controller\n=\n\n#L \"X-11 Ejector Turret\" \"203089\"\nSkills: | ME |\n\n------------------------------\nComments\n------------------------------\n\nThe best towers in the game are the ones you build yourself, and these are no exception. The weapons used in the process are difficult to get your hands on though." +} diff --git a/modules/standard/recipe/recipes/114.json b/modules/standard/recipe/recipes/114.json new file mode 100644 index 0000000..b4110a0 --- /dev/null +++ b/modules/standard/recipe/recipes/114.json @@ -0,0 +1,29 @@ +{ + "name": "Spider Shank Machete", + "author": "", + "items": [ + { + "alias": "Snake Bile", + "item_id": 227173 + }, + { + "alias": "Spider Shank", + "item_id": 227171 + }, + { + "alias": "Handle-Shaped Gofle Toe Bone", + "item_id": 227175 + }, + { + "alias": "Bone Handle", + "item_id": 227177 + }, + { + "alias": "Spider Shank Machete", + "item_id": 227089 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients\n------------------------------\n\n#L \"Snake Bile\" \"227172\"\n\n\n#L \"Spider Shank\" \"227171\"\n\n\n#L \"Handle-Shaped Gofle Toe Bone\" \"227175\"\n\n\n------------------------------\nRecipe\n------------------------------\n\nSnake Bile\n+\nHandle-Shaped Gofle Toe Bone\n=\n\n#L \"Bone Handle\" \"227177\"\nSkills: | WS |\n\n------------------------------\n\nBone Handle\n+\nSpider Shank\n=\n\n#L \"Spider Shank Machete\" \"227089\"\nSkills: | WS |\n\n------------------------------\nComments\n------------------------------\n\nMore startup weapons for the SL nooby. :)" +} diff --git a/modules/standard/recipe/recipes/115.json b/modules/standard/recipe/recipes/115.json new file mode 100644 index 0000000..ad47783 --- /dev/null +++ b/modules/standard/recipe/recipes/115.json @@ -0,0 +1,21 @@ +{ + "name": "Kyr'Ozch Structural Analyzer", + "author": "", + "items": [ + { + "alias": "Kyr'Ozch Atomic Re-Structuralizing Tool", + "item_id": 247099 + }, + { + "alias": "Field Quantum Physics All-Purpose Tool", + "item_id": 164558 + }, + { + "alias": "Kyr'Ozch Structural Analyzer", + "item_id": 247100 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients\n------------------------------\n\n#L \"Kyr'Ozch Atomic Re-Structuralizing Tool\" \"247099\"\n\n\n#L \"Field Quantum Physics All-Purpose Tool\" \"164558\"\n\n\n------------------------------\nRecipe\n------------------------------\n\nField Quantum Physics All-Purpose Tool\n+\nKyr'Ozch Atomic Re-Structuralizing Tool\n=\n\n#L \"Kyr'Ozch Structural Analyzer\" \"247100\"\nSkills: | QT |\n\n------------------------------\nComments\n------------------------------\n\nHandy Tool for AI Tradeskilling." +} diff --git a/modules/standard/recipe/recipes/116.json b/modules/standard/recipe/recipes/116.json new file mode 100644 index 0000000..cb43989 --- /dev/null +++ b/modules/standard/recipe/recipes/116.json @@ -0,0 +1,29 @@ +{ + "name": "Swim Stim", + "author": "", + "items": [ + { + "alias": "Mimicking Cellular Oil", + "item_id": 154268 + }, + { + "alias": "Receptive Bots", + "item_id": 154266 + }, + { + "alias": "Shining Nano Knot of Swimming", + "item_id": 154385 + }, + { + "alias": "Purple Glowing Stim", + "item_id": 154274 + }, + { + "alias": "Swim Stim", + "item_id": 154384 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients\n------------------------------\n\n#L \"Mimicking Cellular Oil\" \"154268\"\n\n\n#L \"Receptive Bots\" \"154266\"\n\n\n#L \"Shining Nano Knot of Swimming\" \"154385\"\n\n\n------------------------------\nRecipe\n------------------------------\n\nMimicking Cellular Oil\n+\nReceptive Bots\n=\n\n#L \"Purple Glowing Stim\" \"154274\"\nSkills: | PT |\n\n------------------------------\n\nShining Nano Knot of Swimming\n+\nPurple Glowing Stim\n=\n\n#L \"Swim Stim\" \"154384\"\nSkills: | PT |\n\n------------------------------\nComments\n------------------------------\n\nWith ql 36 ones, i buff my swimming skill of 400pts !!! It may be very useful for low level without yalm. Or for swimming competition, but beware of the drug test..\n\nIts also handy for all that swimming you have to do questing in Adonis." +} diff --git a/modules/standard/recipe/recipes/117.json b/modules/standard/recipe/recipes/117.json new file mode 100644 index 0000000..77d59e1 --- /dev/null +++ b/modules/standard/recipe/recipes/117.json @@ -0,0 +1,21 @@ +{ + "name": "Cutting Valuable Stones", + "author": "", + "items": [ + { + "alias": "Gem", + "item_id": 136641 + }, + { + "alias": "Jensen Gem Cutter", + "item_id": 151366 + }, + { + "alias": "Perfectly Cut Gem", + "item_id": 151552 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients\n------------------------------\n\na Valuable Stone\n(ie: #L \"Gem\" \"136641\")\n\n\n#L \"Jensen Gem Cutter\" \"151366\"\n\n\n------------------------------\nRecipe\n------------------------------\n\nJensen Gem Cutter\n+\na Valuable Stone\n=\n\nPerfectly Cut Valuable Stone\n(ie:#L \"Perfectly Cut Gem\" \"151552\")\nSkills: | ME |\n\n------------------------------\nComments\n------------------------------\n\nThis process transforms the Valuable Stone into a Perfectly Cut one, thus doubling its value. The result can also be used in the making of #L \"Jewels\" \"/tell recipe 62\"." +} diff --git a/modules/standard/recipe/recipes/118.json b/modules/standard/recipe/recipes/118.json new file mode 100644 index 0000000..fec63a3 --- /dev/null +++ b/modules/standard/recipe/recipes/118.json @@ -0,0 +1,33 @@ +{ + "name": "Treatment Library", + "author": "", + "items": [ + { + "alias": "Advanced Hacker Tool", + "item_id": 87814 + }, + { + "alias": "Pharma Tech Tutoring Device", + "item_id": 55682 + }, + { + "alias": "Advanced Portable Surgery Clinic", + "item_id": 43551 + }, + { + "alias": "Hacked Pharma Tech Tutoring Device", + "item_id": 161768 + }, + { + "alias": "Hacked Portable Surgery Clinic", + "item_id": 161765 + }, + { + "alias": "Treatment Library", + "item_id": 161770 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients\n------------------------------\n\n#L \"Hacker Tool\" \"87814\" x 2\n\n\n#L \"Pharma Tech Tutoring Device\" \"55682\"\n\n\n#L \"Portable Surgery Clinic\" \"43551\"\n\n\n------------------------------\nRecipe\n------------------------------\n\nHacker Tool\n+\nPharma Tech Tutoring Device\n=\n\n#L \"Hacked Pharma Tech Tutoring Device\" \"161768\"\nSkills: | BE,CL |\n\n------------------------------\n\nHacker Tool\n+\nPortable Surgery Clinic\n=\n\n#L \"Hacked Portable Surgery Clinic\" \"161765\"\nSkills: | BE,CL |\n\n------------------------------\n\nHacked Pharma Tech Tutoring Device\n+\nHacked Portable Surgery Clinic\n=\n\n#L \"Treatment Library\" \"161770\"\nSkills: | BE,CL |\n\n------------------------------\nComments\n------------------------------\n\nGreat for those extra few points of treatment when twinking. Don't forget that the Hacker tools are destroyed in the process..." +} diff --git a/modules/standard/recipe/recipes/119.json b/modules/standard/recipe/recipes/119.json new file mode 100644 index 0000000..25ad219 --- /dev/null +++ b/modules/standard/recipe/recipes/119.json @@ -0,0 +1,33 @@ +{ + "name": "Treatment and Pharmacy Library", + "author": "", + "items": [ + { + "alias": "Advanced Hacker Tool", + "item_id": 87814 + }, + { + "alias": "Pharma Tech Tutoring Device", + "item_id": 55682 + }, + { + "alias": "Advanced Portable Surgery Clinic", + "item_id": 43551 + }, + { + "alias": "Hacked Pharma Tech Tutoring Device", + "item_id": 161768 + }, + { + "alias": "Hacked Portable Surgery Clinic", + "item_id": 161765 + }, + { + "alias": "Treatment and Pharmacy Library", + "item_id": 161772 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients\n------------------------------\n\n#L \"Hacker Tool\" \"87814\" x 2\n\n\n#L \"Pharma Tech Tutoring Device\" \"55682\"\n\n\n#L \"Portable Surgery Clinic\" \"43551\"\n\n\n------------------------------\nRecipe\n------------------------------\n\nHacker Tool\n+\nPharma Tech Tutoring Device\n=\n\n#L \"Hacked Pharma Tech Tutoring Device\" \"161768\"\nSkills: | BE,CL |\n\n------------------------------\n\nHacker Tool\n+\nPortable Surgery Clinic\n=\n\n#L \"Hacked Portable Surgery Clinic\" \"161765\"\nSkills: | BE,CL |\n\n------------------------------\n\nHacked Portable Surgery Clinic\n+\nHacked Pharma Tech Tutoring Device\n=\n\n#L \"Treatment and Pharmacy Library\" \"161772\"\nSkills: | EE,CL |\n\n------------------------------\nComments\n------------------------------\n\nSame as the Treatement Librairy except that it give Pharma Tech bonus and can only be equipped by Doctors. Don't forget that the Hacker tools are used in the process..." +} diff --git a/modules/standard/recipe/recipes/12.json b/modules/standard/recipe/recipes/12.json new file mode 100644 index 0000000..12f0d5e --- /dev/null +++ b/modules/standard/recipe/recipes/12.json @@ -0,0 +1,78 @@ +{ + "name": "Apocalypse Leather Armor", + "author": "", + "items": [ + { + "alias": "Enhanced Leather Armor Boots", + "item_id": 85644 + }, + { + "alias": "Hacker Tool", + "item_id": 87814 + }, + { + "alias": "Clanalizer", + "item_id": 208313 + }, + { + "alias": "Apocalypse Leather Armor Boots", + "item_id": 245967 + }, + { + "alias": "Hacked Leather Armor Boots", + "item_id": 245979 + } + ], + "steps": [ + { + "source": "Hacker Tool", + "target": "Enhanced Leather Armor Boots", + "result": "Hacked Leather Armor Boots", + "skills": "BE" + }, + { + "source": "Clanalizer", + "target": "Hacked Leather Armor Boots", + "result": "Apocalypse Leather Armor Boots", + "skills": "??" + } + ], + "details": [ + { + "item": { + "id": 245967, + "name": "Apocalypse Leather Armor Boots" + } + }, + { + "item": { + "id": 245969, + "_name": "Apocalypse Leather Armor Gloves" + } + }, + { + "item": { + "id": 245975, + "_name": "Apocalypse Leather Armor Helmet" + } + }, + { + "item": { + "id": 245971, + "_name": "Apocalypse Leather Armor Pants" + } + }, + { + "item": { + "id": 245973, + "_name": "Apocalypse Leather Armor Sleeves" + } + }, + { + "item": { + "id": 245965, + "_name": "Apocalypse Leather Body Armor" + } + } + ] +} \ No newline at end of file diff --git a/modules/standard/recipe/recipes/120.json b/modules/standard/recipe/recipes/120.json new file mode 100644 index 0000000..2d8d3ae --- /dev/null +++ b/modules/standard/recipe/recipes/120.json @@ -0,0 +1,29 @@ +{ + "name": "Trimmer - Increase Aggressiveness", + "author": "", + "items": [ + { + "alias": "XU-11 Serum", + "item_id": 154909 + }, + { + "alias": "Chemical Impact Injector", + "item_id": 142911 + }, + { + "alias": "Trimmer Casing", + "item_id": 154938 + }, + { + "alias": "Modified Chemical Impact Injector", + "item_id": 154911 + }, + { + "alias": "Trimmer - Increase Aggressiveness", + "item_id": 154940 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients\n------------------------------\n\n#L \"XU-11 Serum\" \"154909\"\n\n\n#L \"Chemical Impact Injector\" \"142911\"\n\n\n#L \"Trimmer Casing\" \"154938\"\n\n\n------------------------------\nRecipe\n------------------------------\n\nXU-11 Serum\n+\nChemical Impact Injector\n=\n\n#L \"Modified Chemical Impact Injector\" \"154911\"\nSkills: | CH |\n\n------------------------------\n\nModified Chemical Impact Injector\n+\nTrimmer Casing\n=\n\n#L \"Trimmer - Increase Aggressiveness\" \"154940\"\nSkills: | ME |\n\n------------------------------\nComments\n------------------------------\n\nAn extremely important item for Engineers. Select your bot and use this item. The effect should stay on your pet and make it more aggressive. A level 200 one of these works VERY well for engis when they are taking on 'real mean' and 'ace' mobs." +} diff --git a/modules/standard/recipe/recipes/121.json b/modules/standard/recipe/recipes/121.json new file mode 100644 index 0000000..ca6acea --- /dev/null +++ b/modules/standard/recipe/recipes/121.json @@ -0,0 +1,41 @@ +{ + "name": "Unhallowed Carapace of the Infernal Tyrant", + "author": "", + "items": [ + { + "alias": "Carapace of the Infernal Tyrant (Body)", + "item_id": 205957 + }, + { + "alias": "Bloodseal of the Infernal Tyrant", + "item_id": 206196 + }, + { + "alias": "Unhallowed Carapace of the Infernal Tyrant (Sleeves)", + "item_id": 205962 + }, + { + "alias": "Unhallowed Carapace of the Infernal Tyrant (Body)", + "item_id": 205963 + }, + { + "alias": "Unhallowed Carapace of the Infernal Tyrant (Pants)", + "item_id": 205964 + }, + { + "alias": "Unhallowed Carapace of the Infernal Tyrant (Gloves)", + "item_id": 205965 + }, + { + "alias": "Unhallowed Carapace of the Infernal Tyrant (Boots)", + "item_id": 205966 + }, + { + "alias": "Unhallowed Carapace of the Infernal Tyrant (Helmet)", + "item_id": 205967 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients\n------------------------------\n\na piece of Carapace of the Infernal Tyrant\n( ie : #L \"Carapace of the Infernal Tyrant (Body)\" \"205957\" )\n\n\n#L \"Bloodseal of the Infernal Tyrant\" \"206196\"\n\n\n------------------------------\nRecipe\n------------------------------\n\nBloodseal of the Infernal Tyrant\n+\na piece of Carapace of the Infernal Tyrant\n=\n\na piece of Unhallowed Carapace of the Infernal Tyrant\nSkills: | ?? |\n\n------------------------------\nDetails\n------------------------------\n\n#L \"Unhallowed Carapace of the Infernal Tyrant (Sleeves)\" \"205962\"\n#L \"Unhallowed Carapace of the Infernal Tyrant (Body)\" \"205963\"\n#L \"Unhallowed Carapace of the Infernal Tyrant (Pants)\" \"205964\"\n#L \"Unhallowed Carapace of the Infernal Tyrant (Gloves)\" \"205965\"\n#L \"Unhallowed Carapace of the Infernal Tyrant (Boots)\" \"205966\"\n#L \"Unhallowed Carapace of the Infernal Tyrant (Helmet)\" \"205967\"\n\n------------------------------\nComments\n------------------------------\n\nItems drop inside Inner Sanctum I believe." +} diff --git a/modules/standard/recipe/recipes/122.json b/modules/standard/recipe/recipes/122.json new file mode 100644 index 0000000..5276f4e --- /dev/null +++ b/modules/standard/recipe/recipes/122.json @@ -0,0 +1,21 @@ +{ + "name": "Veil of the Revoked", + "author": "", + "items": [ + { + "alias": "Spirit Tech Circlet of Cerubin", + "item_id": 245139 + }, + { + "alias": "Cloak of the Revoked", + "item_id": 245135 + }, + { + "alias": "Veil of the Revoked", + "item_id": 247081 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients\n------------------------------\n\n#L \"Spirit Tech Circlet of Cerubin\" \"245139\"\n\n\n#L \"Cloak of the Revoked\" \"245135\"\n\n\n------------------------------\nRecipe\n------------------------------\n\nSpirit Tech Circlet of Cerubin\n+\nCloak of the Revoked\n=\n\n#L \"Veil of the Revoked\" \"247081\"\nSkills: | ?? |\n\n------------------------------\nComments\n------------------------------\n\nVery nice item for Traders and Enforcers!" +} diff --git a/modules/standard/recipe/recipes/123.json b/modules/standard/recipe/recipes/123.json new file mode 100644 index 0000000..f0795cf --- /dev/null +++ b/modules/standard/recipe/recipes/123.json @@ -0,0 +1,77 @@ +{ + "name": "Virral Triumvirate Egg", + "author": "", + "items": [ + { + "alias": "Gold Filigree Wire", + "item_id": 151368 + }, + { + "alias": "Robot Junk", + "item_id": 42619 + }, + { + "alias": "Screwdriver", + "item_id": 150922 + }, + { + "alias": "Nano Circuitry Wire", + "item_id": 150919 + }, + { + "alias": "Personal Furnace", + "item_id": 150930 + }, + { + "alias": "Perfectly Cut Soul Fragment", + "item_id": 151484 + }, + { + "alias": "Mantis Egg", + "item_id": 157947 + }, + { + "alias": "Petrified Mantis Egg", + "item_id": 157950 + }, + { + "alias": "Partially Wired Mantis Egg", + "item_id": 157949 + }, + { + "alias": "Partially Wired Mantis Egg", + "item_id": 157948 + }, + { + "alias": "Fully Wired Mantis Egg", + "item_id": 157951 + }, + { + "alias": "Nano Sensor", + "item_id": 150924 + }, + { + "alias": "Interfaced Nano Sensor", + "item_id": 150925 + }, + { + "alias": "Incomplete Virral Egg", + "item_id": 157952 + }, + { + "alias": "Virral Egg with Gem", + "item_id": 157954 + }, + { + "alias": "Virral Egg with Dual Gems", + "item_id": 157953 + }, + { + "alias": "Virral Triumvirate Egg", + "item_id": 157955 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients\n------------------------------\n\n#L \"Gold Filigree Wire\" \"151368\" x 3 ( #L \"Recipe\" \"/tell recipe 62\")\n\n\n#L \"Robot Junk\" \"42619\"\n\n\n#L \"Screwdriver\" \"150922\"\n\n\n#L \"Nano Circuitry Wire\" \"150919\"\n\n\n#L \"Personal Furnace\" \"150930\" x 4\n\n\n#L \"Perfectly Cut Soul Fragment\" \"151484\" x 3 ( #L \"Recipe\" \"/tell recipe 117\")\n\n\n#L \"Mantis Egg\" \"157947\"\n\n\n------------------------------\nRecipe\n------------------------------\n\nPersonal Furnace\n+\nMantis Egg\n=\n\n#L \"Petrified Mantis Egg\" \"157950\"\nSkills: | ME |\n\n------------------------------\n\nGold Filigree Wire\n+\nPetrified Mantis Egg\n=\n\n#L \"Partially Wired Mantis Egg\" \"157949\"\nSkills: | ME |\n\n------------------------------\n\nGold Filigree Wire\n+\nPartially Wired Mantis Egg\n=\n\n#L \"Partially Wired Mantis Egg\" \"157948\"\nSkills: | ME |\n\n------------------------------\n\nGold Filigree Wire\n+\nPartially Wired Mantis Egg\n=\n\n#L \"Fully Wired Mantis Egg\" \"157951\"\nSkills: | ME |\n\n------------------------------\n\nScrewdriver\n+\nRobot Junk\n=\n\n#L \"Nano Sensor\" \"150924\"\nSkills: | ME |\n\n------------------------------\n\nNano Circuitry Wire\n+\nNano Sensor\n=\n\n#L \"Interfaced Nano Sensor\" \"150925\"\nSkills: | EE |\n\n------------------------------\n\nInterfaced Nano Sensor\n+\nFully Wired Mantis Egg\n=\n\n#L \"Incomplete Virral Egg\" \"157952\"\nSkills: | ME |\n\n------------------------------\n\nPerfectly Cut Soul Fragment\n+\nIncomplete Virral Egg\n=\n\n#L \"Virral Egg with Gem\" \"157954\"\nSkills: | ME |\n\n------------------------------\n\nPerfectly Cut Soul Fragment\n+\nVirral Egg with Gem\n=\n\n#L \"Virral Egg with Dual Gems\" \"157953\"\nSkills: | ME |\n\n------------------------------\n\nPerfectly Cut Soul Fragment\n+\n Virral Egg with Dual Gems\n=\n\n#L \"Virral Triumvirate Egg\" \"157955\"\nSkills: | ME |\n\n------------------------------\nComments\n------------------------------\n\nYou just have to to look the stats to understand how useful it is. Sadly the Mantis Queen is more than camped... Don't forget that you need all parts to be of no less than QL190 for the process to be successful." +} diff --git a/modules/standard/recipe/recipes/124.json b/modules/standard/recipe/recipes/124.json new file mode 100644 index 0000000..21a9458 --- /dev/null +++ b/modules/standard/recipe/recipes/124.json @@ -0,0 +1,109 @@ +{ + "name": "Yalmaha 29500 - The Stiletto", + "author": "", + "items": [ + { + "alias": "Cold Stone", + "item_id": 136649 + }, + { + "alias": "Reinforced NotuComm Wire", + "item_id": 203646 + }, + { + "alias": "Nano Programming Interface", + "item_id": 161699 + }, + { + "alias": "Yalmaha 29500 - Stiletto Building Kit", + "item_id": 203828 + }, + { + "alias": "Ganimedes Flux - Multi-Surface Engine", + "item_id": 203638 + }, + { + "alias": "Klang Orbiter MK", + "item_id": 203636 + }, + { + "alias": "BSEC", + "item_id": 203480 + }, + { + "alias": "Steiner Flexipus Chassis", + "item_id": 203472 + }, + { + "alias": "Stiletto Registar", + "item_id": 203817 + }, + { + "alias": "Sentient Cold Stone", + "item_id": 203648 + }, + { + "alias": "NotuComm Circuitry with One Sensor", + "item_id": 203630 + }, + { + "alias": "NotuComm Circuitry with Two Sensors", + "item_id": 203626 + }, + { + "alias": "NotuComm Circuitry with Three Sensors", + "item_id": 203628 + }, + { + "alias": "NotuComm Circuitry with Four Sensors", + "item_id": 203632 + }, + { + "alias": "NotuComm Circuitry with Five Sensors", + "item_id": 203634 + }, + { + "alias": "Complete NotuComm Circuitry", + "item_id": 203642 + }, + { + "alias": "Double NotuComm Circuitry", + "item_id": 203640 + }, + { + "alias": "Quadruple NotuComm Circuitry", + "item_id": 203644 + }, + { + "alias": "NotuComm Mesh", + "item_id": 203624 + }, + { + "alias": "Yalmaha 29500 - Stiletto Building Kit - Step 1", + "item_id": 203827 + }, + { + "alias": "Yalmaha 29500 - Stiletto Building Kit - Step 2", + "item_id": 203825 + }, + { + "alias": "Yalmaha 29500 - Stiletto Building Kit - Step 3", + "item_id": 203823 + }, + { + "alias": "Yalmaha 29500 - Stiletto Building Kit - Step 4", + "item_id": 203821 + }, + { + "alias": "Unmarked Yalmaha 29500 - The Stiletto", + "item_id": 203819 + }, + { + "alias": "Yalmaha - 29500 - The Stiletto", + "item_id": 203556 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients\n------------------------------\n\n#L \"Cold Stone\" \"136649\" x 36\n\n\n#L \"Reinforced NotuComm Wire\" \"203646\" x 6\n\n\n#L \"Nano Programming Interface\" \"161699\"\n\n\n#L \"Yalmaha 29500 - Stiletto Building Kit\" \"203828\"\n\n\n#L \"Ganimedes Flux - Multi-Surface Engine\" \"203638\"\n\n\n#L \"Klang Orbiter MK\" \"203636\"\n\n\n#L \"BSEC\" \"203480\"\n\n\n#L \"Steiner Flexipus Chassis\" \"203472\"\n\n\n#L \"Stiletto Registar\" \"203817\"\n\n\n------------------------------\nRecipe\n------------------------------\n\nRepeat for the 36 Cold Stones:\n\nNano Programming Interface\n+\nCold Stone\n=\n\n#L \"Sentient Cold Stone\" \"203648\"\nSkills: | NP |\n\n------------------------------\n\nRepeat for the 6 Reinforced NotuComm Wires:\n\nSentient Cold Stone\n+\nReinforced NotuComm Wire\n=\n\n#L \"NotuComm Circuitry with One Sensor\" \"203630\"\nSkills: | ?? |\n\n------------------------------\n\nSentient Cold Stone\n+\nNotuComm Circuitry with One Sensor\n=\n\n#L \"NotuComm Circuitry with Two Sensors\" \"203626\"\nSkills: | ?? |\n\n------------------------------\n\nSentient Cold Stone\n+\nNotuComm Circuitry with Two Sensors\n=\n\n#L \"NotuComm Circuitry with Three Sensors\" \"203628\"\nSkills: | ?? |\n\n------------------------------\n\nSentient Cold Stone\n+\nNotuComm Circuitry with Three Sensors\n=\n\n#L \"NotuComm Circuitry with Four Sensors\" \"203632\"\nSkills: | ?? |\n\n------------------------------\n\nSentient Cold Stone\n+\nNotuComm Circuitry with Four Sensors\n=\n\n#L \"NotuComm Circuitry with Five Sensors\" \"203634\"\nSkills: | ?? |\n\n------------------------------\n\nSentient Cold Stone\n+\nNotuComm Circuitry with Five Sensors\n=\n\n#L \"Complete NotuComm Circuitry\" \"203642\"\nSkills: | ?? |\n\n------------------------------\n\nRepeat for the 6 Complete NotuComm Circuitries:\n\nComplete NotuComm Circuitry\n+\nComplete NotuComm Circuitry\n=\n\n#L \"Double NotuComm Circuitry\" \"203640\"\nSkills: | ?? |\n\n------------------------------\n\nDouble NotumComm Circuitry\n+\nDouble NotumComm Circuitry\n=\n\n#L \"Quadruple NotuComm Circuitry\" \"203644\"\nSkills: | ?? |\n\n------------------------------\n\nQuadruple NotuComm Circuitry\n+\nDouble NotumComm Circuitry\n=\n\n#L \"NotuComm Mesh\" \"203624\"\nSkills: | ?? |\n\n------------------------------\n\nSteiner Flexipus Chassis\n+\nYalmaha 29500 - Stiletto Building Kit\n=\n\n#L \"Yalmaha 29500 - Stiletto Building Kit - Step 1\" \"203827\"\nSkills: | ME |\n\n------------------------------\n\nGanimedes Flux -Multi-Surface Engine\n+\nYalmaha 29500 - Stiletto Building Kit - Step 1\n=\n\n#L \"Yalmaha 29500 - Stiletto Building Kit - Step 2\" \"203825\"\nSkills: | QT |\n\n------------------------------\n\nKlang Orbiter MK\n+\nYalmaha 29500 - Stiletto Building Kit - Step 2\n=\n\n#L \"Yalmaha 29500 - Stiletto Building Kit - Step 3\" \"203823\"\nSkills: | ?? |\n\n------------------------------\n\nBSEC\n+\nYalmaha 29500 - Stiletto Building Kit - Step 3\n=\n\n#L \"Yalmaha 29500 - Stiletto Building Kit - Step 4\" \"203821\"\nSkills: | ?? |\n\n------------------------------\n\nNotuComm Mesh\n+\nYalmaha 29500 - Stiletto Building Kit - Step 4\n=\n\n#L \"Unmarked Yalmaha 29500 - The Stiletto\" \"203819\"\nSkills: | ?? |\n\n------------------------------\n\nStiletto Registar\n+\nUnmarked Yalmaha 29500 - The Stiletto\n=\n\n#L \"Yalmaha - 29500 - The Stiletto\" \"203556\"\nSkills: | ?? |\n\n------------------------------\nComments\n------------------------------\n\nYou didnt think it would be easy (or cheap) did you?\n\nDont forget that the last step makes it NODROP, so if you are planning to sell it dont add the registrar.. sell that with it." +} diff --git a/modules/standard/recipe/recipes/125.json b/modules/standard/recipe/recipes/125.json new file mode 100644 index 0000000..06eabcc --- /dev/null +++ b/modules/standard/recipe/recipes/125.json @@ -0,0 +1,25 @@ +{ + "name": "Yalmaha Tuning", + "author": "", + "items": [ + { + "alias": "Yalmaha XL - 29478", + "item_id": 96088 + }, + { + "alias": "Auto Paint v. 303 - XL Gold Flash", + "item_id": 204205 + }, + { + "alias": "Yalmaha XL Gold Flash - 29478", + "item_id": 203293 + }, + { + "alias": "Auto Paint - Adaga Paint Remover", + "item_id": 207719 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients\n------------------------------\n\na Yalmaha\n( ie : #L \"Yalmaha XL - 29478\" \"117322\" )\n\n\na Auto Paint\n( ie : #L \"Auto Paint v. 303 - XL Gold Flash\" \"204205\" )\n\n\n------------------------------\nRecipe\n------------------------------\n\nAuto Paint\n+\nYalmaha XL - 29478\n=\n\nPainted Yalmaha\n( ie : #L \"Yalmaha XL Gold Flash - 29478\" \"203292\" )\nSkills: | ME,CL |\n\n------------------------------\nComments\n------------------------------\n\nYou can remove paint by using a #L \"Auto Paint - Adaga Paint Remover\" \"207719\" (in theory), but apparently it doesnt work with all the painted yalms.. like Gold Flash for example." +} diff --git a/modules/standard/recipe/recipes/126.json b/modules/standard/recipe/recipes/126.json new file mode 100644 index 0000000..b7a048b --- /dev/null +++ b/modules/standard/recipe/recipes/126.json @@ -0,0 +1,8 @@ +{ + "name": "1244 Co - Mathis Multi-Energy Rifle", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n '1244 Co - Mathis Multi-Energy Rifle'\n The Construction kit. must be between Quality Level 41 and 60.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add the pieces in the following order:\n \n 1. Rifle Weapons Construction kit.\n \n 2. Nano Pylon. . SkillTo Assemble: Mech. Engi: 102-150\n \n 3. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 62-90\n \n 4. Ultra-Long Composite Barrel. . SkillTo Assemble: Weapon Smt: 174-255\n \n 5. Runtime Critical Area Analyzer. . SkillTo Assemble: Weapon Smt: 164-240\n \n 6. Nano Pylon. . SkillTo Assemble: Mech. Engi: 102-150\n \n 7. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 102-150\n \n 8. Energy Conduction Rack. . SkillTo Assemble: Quantum FT: 133-195\n \n 9. Energy Pack Interface. . SkillTo Assemble: Elec. Engi: 164-240\n \n 10. Hyper Carbo-Ceramic Cooling System. . SkillTo Assemble: Weapon Smt: 164-240\n \n 11. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 82-120" +} diff --git a/modules/standard/recipe/recipes/127.json b/modules/standard/recipe/recipes/127.json new file mode 100644 index 0000000..f95987b --- /dev/null +++ b/modules/standard/recipe/recipes/127.json @@ -0,0 +1,8 @@ +{ + "name": "1244 Co - Senior Mathis Multi-Energy Rifle", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n '1244 Co - Senior Mathis Multi-Energy Rifle'\n The Construction kit. must be between Quality Level 121 and 140.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add the pieces in the following order:\n \n 1. Rifle Weapons Construction kit.\n \n 2. Notum Enriched Nano Paste - 2x Layer. Skill To Assemble: Nano Progra: 242-280\n \n 3. Notum Alloy Strengthened Ribs. Skill To Assemble: Mech. Engi: 302-350\n \n 4. Hyper Carbo-Ceramic Cooling System. Skill To Assemble: Weapon Smt: 484-560\n \n 5. Nano Pylon. Skill To Assemble: Mech. Engi: 302-350\n \n 6. Ultra-Long Composite Barrel. Skill To Assemble: Weapon Smt: 514-595\n \n 7. Nano Pylon. Skill To Assemble: Mech. Engi: 302-350\n \n 8. Energy Pack Interface. Skill To Assemble: Elec. Engi: 484-560\n \n 9. Notum Enriched Nano Paste - 1x Layer. Skill To Assemble: Nano Progra: 182-210\n \n 10. Energy Conduction Rack. Skill To Assemble: Quantum FT: 393-455\n \n 11. Runtime Critical Area Analyzer. Skill To Assemble: Weapon Smt: 484-560" +} diff --git a/modules/standard/recipe/recipes/128.json b/modules/standard/recipe/recipes/128.json new file mode 100644 index 0000000..8ac5ad6 --- /dev/null +++ b/modules/standard/recipe/recipes/128.json @@ -0,0 +1,8 @@ +{ + "name": "Abigail", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Abigail'\n The Construction kit. must be between Quality Level 61 and 90.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add the pieces in the following order:\n \n 1. Rifle Weapons Construction kit.\n \n 2. Explosion Propulsion Containment Chamber. Skill To Assemble: Mech. Engi: 214-315\n \n 3. Notum Enriched Nano Paste - 1x Layer. Skill To Assemble: Nano Progra: 92-135\n \n 4. Nano-Interfaced Cooling System. Skill To Assemble: Weapon Smt: 244-360\n \n 5. Runtime Critical Area Analyzer. Skill To Assemble: Weapon Smt: 244-360\n \n 6. Short Composite Barrel. Skill To Assemble: Weapon Smt: 198-292\n \n 7. Self-Repairing Ultra-X. Skill To Assemble: Weapon Smt: 214-315\n \n 8. Notum Enriched Nano Paste - 2x Layer. Skill To Assemble: Nano Progra: 122-180\n \n 9. Lock and Stock. Skill To Assemble: Weapon Smt: 244-360\n \n 10. Notum Alloy Strengthened Ribs. Skill To Assemble: Mech. Engi: 152-225\n \n 11. Nano Pylon. Skill To Assemble: Mech. Engi: 152-225" +} diff --git a/modules/standard/recipe/recipes/129.json b/modules/standard/recipe/recipes/129.json new file mode 100644 index 0000000..a286c89 --- /dev/null +++ b/modules/standard/recipe/recipes/129.json @@ -0,0 +1,8 @@ +{ + "name": "Advanced Abigail", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Advanced Abigail'\n The Construction kit. must be between Quality Level 151 and 180.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add the pieces in the following order:\n \n 1. Rifle Weapons Construction kit.\n \n 2. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 378-450\n \n 3. Nano-Interfaced Cooling System. . SkillTo Assemble: Weapon Smt: 604-720\n \n 4. Explosion Propulsion Containment Chamber. . SkillTo Assemble: Mech. Engi: 528-630\n \n 5. Self-Repairing Ultra-X. . SkillTo Assemble: Weapon Smt: 528-630\n \n 6. Runtime Critical Area Analyzer. . SkillTo Assemble: Weapon Smt: 604-720\n \n 7. Short Composite Barrel. . SkillTo Assemble: Weapon Smt: 491-585\n \n 8. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 302-360\n \n 9. Nano Pylon. . SkillTo Assemble: Mech. Engi: 378-450\n \n 10. Lock and Stock. . SkillTo Assemble: Weapon Smt: 604-720\n \n 11. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 226-270" +} diff --git a/modules/standard/recipe/recipes/13.json b/modules/standard/recipe/recipes/13.json new file mode 100644 index 0000000..aa74d46 --- /dev/null +++ b/modules/standard/recipe/recipes/13.json @@ -0,0 +1,94 @@ +{ + "name": "Arrows", + "author": "", + "items": [ + { + "alias": "Chemical Arrowheads", + "item_id": 158579 + }, + { + "alias": "Reet-Tech Metaplast Arrowshafts", + "item_id": 158575 + }, + { + "alias": "Needle of Pine", + "item_id": 158593 + } + ], + "steps": [ + { + "source": "Chemical Arrowheads", + "target": "Reet-Tech Metaplast Arrowshafts", + "result": "Needle of Pine", + "skills": "AG, IN" + } + ], + "details": [ + { + "text": "Possible Arrow Heads:" + }, + { + "item": { + "id": 158579, + "_name": "Chemical Arrowheads" + } + }, + { + "item": { + "id": 158581, + "_name": "Fire Arrowheads" + } + }, + { + "item": { + "id": 158583, + "_name": "Frost Arrowheads" + } + }, + { + "item": { + "id": 158577, + "_name": "Poison Arrowheads" + } + }, + { + "item": { + "id": 158585, + "_name": "Radiation Arrowheads" + } + }, + { + "text": "Possible Arrow Types:" + }, + { + "item": { + "id": 158593, + "_name": "Needle of Pine" + } + }, + { + "item": { + "id": 158591, + "_name": "Maple Blaze" + } + }, + { + "item": { + "id": 158595, + "_name": "Frozen Cherry Blossom" + } + }, + { + "item": { + "id": 158589, + "_name": "Poison Bamboo" + } + }, + { + "item": { + "id": 158597, + "_name": "Apple Seed" + } + } + ] +} \ No newline at end of file diff --git a/modules/standard/recipe/recipes/130.json b/modules/standard/recipe/recipes/130.json new file mode 100644 index 0000000..1401f26 --- /dev/null +++ b/modules/standard/recipe/recipes/130.json @@ -0,0 +1,8 @@ +{ + "name": "Advanced Fiddle Rifle", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Advanced Fiddle Rifle'\n The Construction kit. must be between Quality Level 121 and 150.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add the pieces in the following order:\n \n 1. Rifle Weapons Construction kit.\n \n 2. Lock and Stock. . SkillTo Assemble: Weapon Smt: 484-600\n \n 3. Nano Pylon. . SkillTo Assemble: Mech. Engi: 302-375\n \n 4. Ultra-Long Composite Barrel. . SkillTo Assemble: Weapon Smt: 514-638\n \n 5. Runtime Critical Area Analyzer. . SkillTo Assemble: Weapon Smt: 484-600\n \n 6. Nano Pylon. . SkillTo Assemble: Mech. Engi: 302-375\n \n 7. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 302-375\n \n 8. Hyper Carbo-Ceramic Cooling System. . SkillTo Assemble: Weapon Smt: 484-600\n \n 9. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 182-225\n \n 10. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 302-375\n \n 11. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 242-300\n \n 12. Explosion Propulsion Containment Chamber. . SkillTo Assemble: Mech. Engi: 424-525" +} diff --git a/modules/standard/recipe/recipes/131.json b/modules/standard/recipe/recipes/131.json new file mode 100644 index 0000000..04ca7e4 --- /dev/null +++ b/modules/standard/recipe/recipes/131.json @@ -0,0 +1,8 @@ +{ + "name": "Amytlo Executioner", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Amytlo Executioner'\n The Construction kit. must be between Quality Level 41 and 80.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add the pieces in the following order:\n \n 1. One Handed Edged Weapons Construction kit.\n \n 2. Medium Handle. . SkillTo Assemble: Weapon Smt: 151-294\n \n 3. Optimized Co-Weapon Interface. . SkillTo Assemble: Comp. Liter: 123-240\n \n 4. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 82-160\n \n 5. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 62-120" +} diff --git a/modules/standard/recipe/recipes/132.json b/modules/standard/recipe/recipes/132.json new file mode 100644 index 0000000..225eed5 --- /dev/null +++ b/modules/standard/recipe/recipes/132.json @@ -0,0 +1,8 @@ +{ + "name": "ANEX - Blue Mathis M-E", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'ANEX - Blue Mathis M-E'\n The Construction kit. must be between Quality Level 141 and 160.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add the pieces in the following order:\n \n 1. Rifle Weapons Construction kit.\n \n 2. Hyper Carbo-Ceramic Cooling System. . SkillTo Assemble: Weapon Smt: 564-640\n \n 3. Ultra-Long Composite Barrel. . SkillTo Assemble: Weapon Smt: 599-680\n \n 4. Energy Pack Interface. . SkillTo Assemble: Elec. Engi: 564-640\n \n 5. Energy Conduction Rack. . SkillTo Assemble: Quantum FT: 458-520\n \n 6. Nano Pylon. . SkillTo Assemble: Mech. Engi: 352-400\n \n 7. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 352-400\n \n 8. Nano Pylon. . SkillTo Assemble: Mech. Engi: 352-400\n \n 9. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 282-320\n \n 10. Runtime Critical Area Analyzer. . SkillTo Assemble: Weapon Smt: 564-640\n \n 11. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 212-240" +} diff --git a/modules/standard/recipe/recipes/133.json b/modules/standard/recipe/recipes/133.json new file mode 100644 index 0000000..4f436ba --- /dev/null +++ b/modules/standard/recipe/recipes/133.json @@ -0,0 +1,8 @@ +{ + "name": "ANEX - Mathis Multi-Energy Rifle", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'ANEX - Mathis Multi-Energy Rifle'\nThe Construction kit. must be between Quality Level 1 and 20.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\nAdd the pieces in the following order:\n\n 1. Rifle Weapons Construction kit.\n\n 2. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 2-30\n\n 3. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 2-40\n\n 4. Nano Pylon. . SkillTo Assemble: Mech. Engi: 2-50\n\n 5. Hyper Carbo-Ceramic Cooling System. . SkillTo Assemble: Weapon Smt: 4-80\n\n 6. Ultra-Long Composite Barrel. . SkillTo Assemble: Weapon Smt: 4-85\n\n 7. Energy Conduction Rack. . SkillTo Assemble: Quantum FT: 3-65\n\n 8. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 2-50\n\n 9. Energy Pack Interface. . SkillTo Assemble: Elec. Engi: 4-80\n\n 10. Runtime Critical Area Analyzer. . SkillTo Assemble: Weapon Smt: 4-80\n\n 11. Nano Pylon. . SkillTo Assemble: Mech. Engi: 2-50" +} diff --git a/modules/standard/recipe/recipes/134.json b/modules/standard/recipe/recipes/134.json new file mode 100644 index 0000000..ce946f5 --- /dev/null +++ b/modules/standard/recipe/recipes/134.json @@ -0,0 +1,8 @@ +{ + "name": "ANEX - Red Mathis M-E", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'ANEX - Red Mathis M-E'\nThe Construction kit. must be between Quality Level 200 and 200.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\nAdd the pieces in the following order:\n\n 1. Rifle Weapons Construction kit.\n\n 2. Nano Pylon. . SkillTo Assemble: Mech. Engi: 500-500\n\n 3. Energy Pack Interface. . SkillTo Assemble: Elec. Engi: 800-800\n\n 4. Ultra-Long Composite Barrel. . SkillTo Assemble: Weapon Smt: 850-850\n\n 5. Hyper Carbo-Ceramic Cooling System. . SkillTo Assemble: Weapon Smt: 800-800\n\n 6. Runtime Critical Area Analyzer. . SkillTo Assemble: Weapon Smt: 800-800\n\n 7. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 400-400\n\n 8. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 500-500\n\n 9. Energy Conduction Rack. . SkillTo Assemble: Quantum FT: 650-650\n\n 10. Nano Pylon. . SkillTo Assemble: Mech. Engi: 500-500\n\n 11. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 300-300" +} diff --git a/modules/standard/recipe/recipes/135.json b/modules/standard/recipe/recipes/135.json new file mode 100644 index 0000000..f07f543 --- /dev/null +++ b/modules/standard/recipe/recipes/135.json @@ -0,0 +1,8 @@ +{ + "name": "ANEX - Yellow Mathis M-E", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'ANEX - Yellow Mathis M-E'\nThe Construction kit. must be between Quality Level 161 and 199.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\nAdd the pieces in the following order:\n\n 1. Rifle Weapons Construction kit.\n\n 2. Energy Pack Interface. . SkillTo Assemble: Elec. Engi: 644-796\n\n 3. Runtime Critical Area Analyzer. . SkillTo Assemble: Weapon Smt: 644-796\n\n 4. Ultra-Long Composite Barrel. . SkillTo Assemble: Weapon Smt: 684-846\n\n 5. Nano Pylon. . SkillTo Assemble: Mech. Engi: 402-498\n\n 6. Hyper Carbo-Ceramic Cooling System. . SkillTo Assemble: Weapon Smt: 644-796\n\n 7. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 242-298\n\n 8. Energy Conduction Rack. . SkillTo Assemble: Quantum FT: 523-647\n\n 9. Nano Pylon. . SkillTo Assemble: Mech. Engi: 402-498\n\n 10. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 322-398\n\n 11. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 402-498" +} diff --git a/modules/standard/recipe/recipes/136.json b/modules/standard/recipe/recipes/136.json new file mode 100644 index 0000000..b34f909 --- /dev/null +++ b/modules/standard/recipe/recipes/136.json @@ -0,0 +1,8 @@ +{ + "name": "Asia Toys - Mathis Multi-Energy Rifle", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Asia Toys - Mathis Multi-Energy Rifle'\nThe Construction kit. must be between Quality Level 61 and 80.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\nAdd the pieces in the following order:\n\n 1. Rifle Weapons Construction kit.\n\n 2. Ultra-Long Composite Barrel. . SkillTo Assemble: Weapon Smt: 259-340\n\n 3. Hyper Carbo-Ceramic Cooling System. . SkillTo Assemble: Weapon Smt: 244-320\n\n 4. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 122-160\n\n 5. Energy Conduction Rack. . SkillTo Assemble: Quantum FT: 198-260\n\n 6. Runtime Critical Area Analyzer. . SkillTo Assemble: Weapon Smt: 244-320\n\n 7. Energy Pack Interface. . SkillTo Assemble: Elec. Engi: 244-320\n\n 8. Nano Pylon. . SkillTo Assemble: Mech. Engi: 152-200\n\n 9. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 92-120\n\n 10. Nano Pylon. . SkillTo Assemble: Mech. Engi: 152-200\n\n 11. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 152-200" +} diff --git a/modules/standard/recipe/recipes/137.json b/modules/standard/recipe/recipes/137.json new file mode 100644 index 0000000..650b488 --- /dev/null +++ b/modules/standard/recipe/recipes/137.json @@ -0,0 +1,8 @@ +{ + "name": "Balanced Blackened Blaster", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Balanced Blackened Blaster'\n The Construction kit. must be between Quality Level 121 and 140.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add the pieces in the following order:\n \n 1. Rifle Weapons Construction kit.\n \n 2. Self-Cleaning KO-CR Device. . SkillTo Assemble: Weapon Smt: 424-490\n \n 3. Ultra-Long Composite Barrel. . SkillTo Assemble: Weapon Smt: 514-595\n \n 4. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 302-350\n \n 5. Nano Pylon. . SkillTo Assemble: Mech. Engi: 302-350\n \n 6. Nano Pylon. . SkillTo Assemble: Mech. Engi: 302-350\n \n 7. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 302-350\n \n 8. Energy Conduction Rack. . SkillTo Assemble: Quantum FT: 393-455\n \n 9. Hyper Carbo-Ceramic Cooling System. . SkillTo Assemble: Weapon Smt: 484-560\n \n 10. Rapid-Reload-And-Fire Gyro. . SkillTo Assemble: Weapon Smt: 484-560\n \n 11. Energy Pack Interface. . SkillTo Assemble: Elec. Engi: 484-560\n \n 12. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 182-210\n \n 13. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 242-280" +} diff --git a/modules/standard/recipe/recipes/138.json b/modules/standard/recipe/recipes/138.json new file mode 100644 index 0000000..45dbadf --- /dev/null +++ b/modules/standard/recipe/recipes/138.json @@ -0,0 +1,8 @@ +{ + "name": "Balanced Blackened Blaster Rifle", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Balanced Blackened Blaster Rifle'\n The Construction kit. must be between Quality Level 121 and 140.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add the pieces in the following order:\n \n 1. Rifle Weapons Construction kit.\n \n 2. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 182-210\n \n 3. Ultra-Long Composite Barrel. . SkillTo Assemble: Weapon Smt: 514-595\n \n 4. Rapid-Reload-And-Fire Gyro. . SkillTo Assemble: Weapon Smt: 484-560\n \n 5. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 242-280\n \n 6. Lock and Stock. . SkillTo Assemble: Weapon Smt: 484-560\n \n 7. Jandawit Cleanup Cluster. . SkillTo Assemble: Weapon Smt: 424-490\n \n 8. Primitive Freon Bag Cooling System. . SkillTo Assemble: Weapon Smt: 484-560\n \n 9. Notum Enriched Nano Paste - 4x Layer. . SkillTo Assemble: Nano Progra: 302-350\n \n 10. Energy Conduction Rack. . SkillTo Assemble: Quantum FT: 393-455\n \n 11. Nano Pylon. . SkillTo Assemble: Mech. Engi: 302-350\n \n 12. Auto Targeting Computer -IIR 1. . SkillTo Assemble: Elec. Engi: 272-315\n \n 13. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 302-350" +} diff --git a/modules/standard/recipe/recipes/139.json b/modules/standard/recipe/recipes/139.json new file mode 100644 index 0000000..7e98f25 --- /dev/null +++ b/modules/standard/recipe/recipes/139.json @@ -0,0 +1,8 @@ +{ + "name": "Balanced Blackened Miniblaster", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Balanced Blackened Miniblaster'\n The Construction kit. must be between Quality Level 121 and 140.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add in following order:\n \n 1. Pistol Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 484 -> 560\n \n 2. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 302 -> 350\n \n 3. Energy Conduction Rack. SkillTo Assemble: Quantum FT: 393 -> 455\n \n 4. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 242 -> 280\n \n 5. Jandawit Cleanup Cluster. SkillTo Assemble: Weapon Smt: 424 -> 490\n \n 6. Rapid-Reload-And-Fire Gyro. SkillTo Assemble: Weapon Smt: 484 -> 560\n \n 7. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 182 -> 210\n \n 8. Energy Pack Interface. SkillTo Assemble: Elec. Engi: 484 -> 560\n \n 9. Short Composite Barrel. SkillTo Assemble: Weapon Smt: 393 -> 455\n \n 10. Hyper Carbo-Ceramic Cooling System. SkillTo Assemble: Weapon Smt: 484 -> 560\n \n 11. Nano Pylon. SkillTo Assemble: Mech. Engi: 302 -> 350" +} diff --git a/modules/standard/recipe/recipes/14.json b/modules/standard/recipe/recipes/14.json new file mode 100644 index 0000000..c155ae3 --- /dev/null +++ b/modules/standard/recipe/recipes/14.json @@ -0,0 +1,26 @@ +{ + "name": "Augmented Hellfury Assault Cannon", + "author": "", + "items": [ + { + "alias": "Hellfury Assault Cannon", + "item_id": 153977 + }, + { + "alias": "Pulsing Notum Disruptor", + "item_id": 202280 + }, + { + "alias": "Augmented Hellfury Assault Cannon", + "item_id": 202278 + } + ], + "steps": [ + { + "source": "Pulsing Notum Disruptor", + "target": "Hellfury Assault Cannon", + "result": "Augmented Hellfury Assault Cannon", + "skills": "BE" + } + ] +} \ No newline at end of file diff --git a/modules/standard/recipe/recipes/140.json b/modules/standard/recipe/recipes/140.json new file mode 100644 index 0000000..155f6f8 --- /dev/null +++ b/modules/standard/recipe/recipes/140.json @@ -0,0 +1,8 @@ +{ + "name": "Balanced Blackhole Mk IX", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Balanced Blackhole Mk IX'\n The Construction kit. must be between Quality Level 121 and 140.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add in following order:\n \n 1. Shotgun Weapons Construction kit. SkillTo Assemble: Weapon Smt: 484 -> 560\n \n 2. Energy Pack Interface. SkillTo Assemble: Elec. Engi: 484 -> 560\n \n 3. Energy Conduction Rack. SkillTo Assemble: Quantum FT: 393 -> 455\n \n 4. Ultra-Long Composite Barrel. SkillTo Assemble: Weapon Smt: 514 -> 595\n \n 5. Nano Pylon. SkillTo Assemble: Mech. Engi: 302 -> 350\n \n 6. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 182 -> 210\n \n 7. Notum Enriched Nano Paste - 4x Layer. SkillTo Assemble: Nano Progra: 302 -> 350\n \n 8. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 242 -> 280\n \n 9. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 302 -> 350\n \n 10. Rapid-Reload-And-Fire Gyro. SkillTo Assemble: Weapon Smt: 484 -> 560\n \n 11. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 302 -> 350\n \n 12. Nano Pylon. SkillTo Assemble: Mech. Engi: 302 -> 350" +} diff --git a/modules/standard/recipe/recipes/141.json b/modules/standard/recipe/recipes/141.json new file mode 100644 index 0000000..8892dd4 --- /dev/null +++ b/modules/standard/recipe/recipes/141.json @@ -0,0 +1,8 @@ +{ + "name": "Balanced Chunkprojector", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Balanced Chunkprojector'\n The Construction kit. must be between Quality Level 121 and 140.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add in following order:\n \n 1. Shotgun Weapons Construction kit. SkillTo Assemble: Weapon Smt: 484 -> 560\n \n 2. Nano Pylon. SkillTo Assemble: Mech. Engi: 302 -> 350\n \n 3. Lock and Stock. SkillTo Assemble: Weapon Smt: 484 -> 560\n \n 4. Self-Cleaning KO-CR Device. SkillTo Assemble: Weapon Smt: 424 -> 490\n \n 5. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 302 -> 350\n \n 6. Nano Pylon. SkillTo Assemble: Mech. Engi: 302 -> 350\n \n 7. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 182 -> 210\n \n 8. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 242 -> 280\n \n 9. Explosion Propulsion Containment Chamber. SkillTo Assemble: Quantum FT: 454 -> 525\n \n 10. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 302 -> 350\n \n 11. Flake Tubing Base Cooling System. SkillTo Assemble: Weapon Smt: 484 -> 560\n \n 12. Short Composite Barrel. SkillTo Assemble: Weapon Smt: 393 -> 455" +} diff --git a/modules/standard/recipe/recipes/142.json b/modules/standard/recipe/recipes/142.json new file mode 100644 index 0000000..f12ba21 --- /dev/null +++ b/modules/standard/recipe/recipes/142.json @@ -0,0 +1,8 @@ +{ + "name": "Balanced Disaffiliation Sniper", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Balanced Disaffiliation Sniper'\n The Construction kit. must be between Quality Level 121 and 140.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add the pieces in the following order:\n \n 1. Rifle Weapons Construction kit.\n \n 2. Nano Pylon. . SkillTo Assemble: Mech. Engi: 302-350\n \n 3. Auto Targeting Computer -IIR 2-Groper-. . SkillTo Assemble: Elec. Engi: 302-350\n \n 4. Runtime Critical Area Analyzer. . SkillTo Assemble: Weapon Smt: 484-560\n \n 5. Ultra-Long Composite Barrel. . SkillTo Assemble: Weapon Smt: 514-595\n \n 6. Explosion Propulsion Containment Chamber. . SkillTo Assemble: Mech. Engi: 424-490\n \n 7. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 182-210\n \n 8. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 302-350\n \n 9. Nano Pylon. . SkillTo Assemble: Mech. Engi: 302-350\n \n 10. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 242-280\n \n 11. Primitive Freon Bag Cooling System. . SkillTo Assemble: Weapon Smt: 484-560\n \n 12. Notum Enriched Nano Paste - 4x Layer. . SkillTo Assemble: Nano Progra: 302-350\n \n 13. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 302-350\n \n 14. Lock and Stock. . SkillTo Assemble: Weapon Smt: 484-560" +} diff --git a/modules/standard/recipe/recipes/143.json b/modules/standard/recipe/recipes/143.json new file mode 100644 index 0000000..3011fd7 --- /dev/null +++ b/modules/standard/recipe/recipes/143.json @@ -0,0 +1,8 @@ +{ + "name": "Balanced E-Beamer", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Balanced E-Beamer'\n The Construction kit. must be between Quality Level 121 and 140.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add in following order:\n \n 1. Energy Weapons Construction kit. SkillTo Assemble: Weapon Smt: 484 -> 560\n \n 2. Self-Cleaning KO-CR Device. SkillTo Assemble: Weapon Smt: 424 -> 490\n \n 3. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 302 -> 350\n \n 4. Nano Pylon. SkillTo Assemble: Mech. Engi: 302 -> 350\n \n 5. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 302 -> 350\n \n 6. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 242 -> 280\n \n 7. Nano Pylon. SkillTo Assemble: Mech. Engi: 302 -> 350\n \n 8. Notum Enriched Nano Paste - 4x Layer. SkillTo Assemble: Nano Progra: 302 -> 350\n \n 9. Flake Tubing Base Cooling System. SkillTo Assemble: Weapon Smt: 484 -> 560\n \n 10. Short Composite Barrel. SkillTo Assemble: Weapon Smt: 393 -> 455\n \n 11. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 182 -> 210\n \n 12. Energy Conduction Rack. SkillTo Assemble: Quantum FT: 393 -> 455\n \n 13. Rapid-Reload-And-Fire Gyro. SkillTo Assemble: Weapon Smt: 484 -> 560\n \n 14. Energy Pack Interface. SkillTo Assemble: Elec. Engi: 484 -> 560" +} diff --git a/modules/standard/recipe/recipes/144.json b/modules/standard/recipe/recipes/144.json new file mode 100644 index 0000000..2e41c78 --- /dev/null +++ b/modules/standard/recipe/recipes/144.json @@ -0,0 +1,8 @@ +{ + "name": "Balanced Electron-Charged Pistol", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Balanced Electron-Charged Pistol'\n The Construction kit. must be between Quality Level 121 and 140.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add in following order:\n \n 1. Pistol Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 484 -> 560\n \n 2. Nano Pylon. SkillTo Assemble: Mech. Engi: 302 -> 350\n \n 3. Rapid-Reload-And-Fire Gyro. SkillTo Assemble: Weapon Smt: 484 -> 560\n \n 4. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 182 -> 210\n \n 5. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 242 -> 280\n \n 6. Energy Conduction Rack. SkillTo Assemble: Quantum FT: 393 -> 455\n \n 7. Short Composite Barrel. SkillTo Assemble: Weapon Smt: 393 -> 455\n \n 8. Jandawit Cleanup Cluster. SkillTo Assemble: Weapon Smt: 424 -> 490\n \n 9. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 302 -> 350\n \n 10. Plasma Streamer Interface Nozzle. SkillTo Assemble: Chemistry: 484 -> 560" +} diff --git a/modules/standard/recipe/recipes/145.json b/modules/standard/recipe/recipes/145.json new file mode 100644 index 0000000..4e99192 --- /dev/null +++ b/modules/standard/recipe/recipes/145.json @@ -0,0 +1,8 @@ +{ + "name": "Balanced Flamethrower", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Balanced Flamethrower'\n The Construction kit. must be between Quality Level 121 and 140.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add in following order:\n \n 1. AssaultRifle Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 484 -> 560\n \n 2. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 242 -> 280\n \n 3. Primitive Freon Bag Cooling System. SkillTo Assemble: Weapon Smt: 484 -> 560\n \n 4. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 182 -> 210\n \n 5. Compression Chamber for Chemicals. SkillTo Assemble: Weapon Smt: 514 -> 595\n \n 6. Short Composite Barrel. SkillTo Assemble: Weapon Smt: 393 -> 455\n \n 7. Nano Pylon. SkillTo Assemble: Mech. Engi: 302 -> 350\n \n 8. Nano Pylon. SkillTo Assemble: Mech. Engi: 302 -> 350\n \n 9. Self-Cleaning KO-CR Device. SkillTo Assemble: Weapon Smt: 424 -> 490\n \n 10. Auto Targeting Computer -IIR 1. SkillTo Assemble: Elec. Engi: 272 -> 315\n \n 11. Plasma Streamer Interface Nozzle. SkillTo Assemble: Chemistry: 484 -> 560\n \n 12. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 302 -> 350" +} diff --git a/modules/standard/recipe/recipes/146.json b/modules/standard/recipe/recipes/146.json new file mode 100644 index 0000000..1685781 --- /dev/null +++ b/modules/standard/recipe/recipes/146.json @@ -0,0 +1,8 @@ +{ + "name": "Balanced Grenade-Thrower", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Balanced Grenade-Thrower'\n The Construction kit. must be between Quality Level 121 and 140.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add in following order:\n \n 1. Grenades Construction kit. SkillTo Assemble: Weapon Smt: 484 -> 560\n \n 2. Nano Pylon. SkillTo Assemble: Mech. Engi: 302 -> 350\n \n 3. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 242 -> 280\n \n 4. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 182 -> 210\n \n 5. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 302 -> 350\n \n 6. Flake Tubing Base Cooling System. SkillTo Assemble: Weapon Smt: 484 -> 560\n \n 7. Notum Enriched Nano Paste - 4x Layer. SkillTo Assemble: Nano Progra: 302 -> 350\n \n 8. Poison Chemical Combination Chamber. SkillTo Assemble: Chemistry: 484 -> 560\n \n 9. Ultra Short Composite Barrel. SkillTo Assemble: Weapon Smt: 363 -> 420" +} diff --git a/modules/standard/recipe/recipes/147.json b/modules/standard/recipe/recipes/147.json new file mode 100644 index 0000000..6823917 --- /dev/null +++ b/modules/standard/recipe/recipes/147.json @@ -0,0 +1,8 @@ +{ + "name": "Balanced Heavy Grinner", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Balanced Heavy Grinner'\n The Construction kit. must be between Quality Level 121 and 140.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add in following order:\n \n 1. Pistol Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 484 -> 560\n \n 2. Nano Pylon. SkillTo Assemble: Mech. Engi: 302 -> 350\n \n 3. Lock and Stock. SkillTo Assemble: Weapon Smt: 484 -> 560\n \n 4. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 182 -> 210\n \n 5. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 242 -> 280\n \n 6. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 302 -> 350\n \n 7. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 302 -> 350\n \n 8. Triple Pulse Enabler. SkillTo Assemble: Weapon Smt: 514 -> 595\n \n 9. Explosion Propulsion Containment Chamber. SkillTo Assemble: Mech. Engi: 424 -> 490\n \n 10. Composite Barrel. SkillTo Assemble: Weapon Smt: 454 -> 525\n \n 11. Nano Pylon. SkillTo Assemble: Mech. Engi: 302 -> 350\n \n 12. Self-Cleaning KO-CR Device. SkillTo Assemble: Weapon Smt: 424 -> 490" +} diff --git a/modules/standard/recipe/recipes/148.json b/modules/standard/recipe/recipes/148.json new file mode 100644 index 0000000..2d82989 --- /dev/null +++ b/modules/standard/recipe/recipes/148.json @@ -0,0 +1,8 @@ +{ + "name": "Balanced Heavy Lead Sprayer", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Balanced Heavy Lead Sprayer'\n The Construction kit. must be between Quality Level 121 and 140.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add in following order:\n \n 1. AssaultRifle Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 484 -> 560\n \n 2. Triple Pulse Enabler. SkillTo Assemble: Weapon Smt: 514 -> 595\n \n 3. Lock and Stock. SkillTo Assemble: Weapon Smt: 484 -> 560\n \n 4. Gyro Stabilizing Unit. SkillTo Assemble: Weapon Smt: 544 -> 630\n \n 5. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 242 -> 280\n \n 6. Composite Barrel. SkillTo Assemble: Weapon Smt: 454 -> 525\n \n 7. Explosion Propulsion Containment Chamber. SkillTo Assemble: Mech. Engi: 424 -> 490\n \n 8. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 182 -> 210\n \n 9. Jandawit Cleanup Cluster. SkillTo Assemble: Weapon Smt: 424 -> 490\n \n 10. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 302 -> 350\n \n 11. Nano Pylon. SkillTo Assemble: Mech. Engi: 302 -> 350" +} diff --git a/modules/standard/recipe/recipes/149.json b/modules/standard/recipe/recipes/149.json new file mode 100644 index 0000000..458f2a8 --- /dev/null +++ b/modules/standard/recipe/recipes/149.json @@ -0,0 +1,8 @@ +{ + "name": "Balanced Kolt 58 Magnum", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Balanced Kolt 58 Magnum'\n The Construction kit. must be between Quality Level 121 and 140.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add in following order:\n \n 1. Pistol Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 484 -> 560\n \n 2. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 182 -> 210\n \n 3. Jandawit Cleanup Cluster. SkillTo Assemble: Weapon Smt: 424 -> 490\n \n 4. Rapid-Reload-And-Fire Gyro. SkillTo Assemble: Weapon Smt: 484 -> 560\n \n 5. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 302 -> 350\n \n 6. Nano Pylon. SkillTo Assemble: Mech. Engi: 302 -> 350\n \n 7. Nano Pylon. SkillTo Assemble: Mech. Engi: 302 -> 350\n \n 8. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 302 -> 350\n \n 9. Lock and Stock. SkillTo Assemble: Weapon Smt: 484 -> 560\n \n 10. Hyper Carbo-Ceramic Cooling System. SkillTo Assemble: Weapon Smt: 484 -> 560\n \n 11. Explosion Propulsion Containment Chamber. SkillTo Assemble: Mech. Engi: 424 -> 490\n \n 12. Composite Barrel. SkillTo Assemble: Weapon Smt: 454 -> 525" +} diff --git a/modules/standard/recipe/recipes/15.json b/modules/standard/recipe/recipes/15.json new file mode 100644 index 0000000..e1dde44 --- /dev/null +++ b/modules/standard/recipe/recipes/15.json @@ -0,0 +1,26 @@ +{ + "name": "Augmented Hellspinner Shock Cannon", + "author": "", + "items": [ + { + "alias": "Contained Anti-Matter Generator", + "item_id": 201942 + }, + { + "alias": "Hellspinner Shock Cannon", + "item_id": 153976 + }, + { + "alias": "Augmented Hellspinner Shock Cannon", + "item_id": 201939 + } + ], + "steps": [ + { + "source": "Contained Anti-Matter Generator", + "target": "Hellspinner Shock Cannon", + "result": "Augmented Hellspinner Shock Cannon", + "skills": "BE" + } + ] +} \ No newline at end of file diff --git a/modules/standard/recipe/recipes/150.json b/modules/standard/recipe/recipes/150.json new file mode 100644 index 0000000..d187320 --- /dev/null +++ b/modules/standard/recipe/recipes/150.json @@ -0,0 +1,8 @@ +{ + "name": "Balanced Kolt PDW-37", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Balanced Kolt PDW-37'\n The Construction kit. must be between Quality Level 121 and 140.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add in following order:\n \n 1. Pistol Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 484 -> 560\n \n 2. Energy Conduction Rack. SkillTo Assemble: Quantum FT: 393 -> 455\n \n 3. Nano Pylon. SkillTo Assemble: Mech. Engi: 302 -> 350\n \n 4. Rapid-Reload-And-Fire Gyro. SkillTo Assemble: Weapon Smt: 484 -> 560\n \n 5. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 242 -> 280\n \n 6. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 302 -> 350\n \n 7. Triple Pulse Enabler. SkillTo Assemble: Weapon Smt: 514 -> 595\n \n 8. Hyper Carbo-Ceramic Cooling System. SkillTo Assemble: Weapon Smt: 484 -> 560\n \n 9. Energy Pack Interface. SkillTo Assemble: Elec. Engi: 484 -> 560\n \n 10. Short Composite Barrel. SkillTo Assemble: Weapon Smt: 393 -> 455\n \n 11. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 182 -> 210" +} diff --git a/modules/standard/recipe/recipes/151.json b/modules/standard/recipe/recipes/151.json new file mode 100644 index 0000000..314cf0d --- /dev/null +++ b/modules/standard/recipe/recipes/151.json @@ -0,0 +1,8 @@ +{ + "name": "Balanced Light Beamer Pistol", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Balanced Light Beamer Pistol'\n The Construction kit. must be between Quality Level 131 and 146.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add in following order:\n \n 1. Pistol Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 524 -> 584\n \n 2. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 262 -> 292\n \n 3. Plasma Streamer Interface Nozzle. SkillTo Assemble: Chemistry: 524 -> 584\n \n 4. Short Composite Barrel. SkillTo Assemble: Weapon Smt: 426 -> 474\n \n 5. Energy Conduction Rack. SkillTo Assemble: Quantum FT: 426 -> 474\n \n 6. Hyper Carbo-Ceramic Cooling System. SkillTo Assemble: Weapon Smt: 524 -> 584\n \n 7. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 196 -> 219\n \n 8. Nano Pylon. SkillTo Assemble: Mech. Engi: 328 -> 365\n \n 9. Self-Cleaning KO-CR Device. SkillTo Assemble: Weapon Smt: 458 -> 511\n \n 10. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 328 -> 365" +} diff --git a/modules/standard/recipe/recipes/152.json b/modules/standard/recipe/recipes/152.json new file mode 100644 index 0000000..5d436a8 --- /dev/null +++ b/modules/standard/recipe/recipes/152.json @@ -0,0 +1,8 @@ +{ + "name": "Balanced Mausser Particle Streamer", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Balanced Mausser Particle Streamer'\n The Construction kit. must be between Quality Level 121 and 140.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add the pieces in the following order:\n \n 1. Submachinegun Weapons Construction kit.\n \n 2. Ultra-Long Composite Barrel. . SkillTo Assemble: Weapon Smt: 514-595\n \n 3. Triple Pulse Enabler. . SkillTo Assemble: Weapon Smt: 514-595\n \n 4. Nano Pylon. . SkillTo Assemble: Mech. Engi: 302-350\n \n 5. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 242-280\n \n 6. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 302-350\n \n 7. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 302-350\n \n 8. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 182-210\n \n 9. Lock and Stock. . SkillTo Assemble: Weapon Smt: 484-560\n \n 10. Explosion Propulsion Containment Chamber. . SkillTo Assemble: Mech. Engi: 424-490\n \n 11. Auto Targeting Computer -IIR 1. . SkillTo Assemble: Elec. Engi: 272-315\n \n 12. Nano Pylon. . SkillTo Assemble: Mech. Engi: 302-350" +} diff --git a/modules/standard/recipe/recipes/153.json b/modules/standard/recipe/recipes/153.json new file mode 100644 index 0000000..86b26f3 --- /dev/null +++ b/modules/standard/recipe/recipes/153.json @@ -0,0 +1,8 @@ +{ + "name": "Balanced Megajolt", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Balanced Megajolt'\n The Construction kit. must be between Quality Level 121 and 140.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add in following order:\n \n 1. Shotgun Weapons Construction kit. SkillTo Assemble: Weapon Smt: 484 -> 560\n \n 2. Composite Barrel. SkillTo Assemble: Weapon Smt: 454 -> 525\n \n 3. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 182 -> 210\n \n 4. Nano Pylon. SkillTo Assemble: Mech. Engi: 302 -> 350\n \n 5. Nano Pylon. SkillTo Assemble: Mech. Engi: 302 -> 350\n \n 6. Notum Enriched Nano Paste - 4x Layer. SkillTo Assemble: Nano Progra: 302 -> 350\n \n 7. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 302 -> 350\n \n 8. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 242 -> 280\n \n 9. Energy Conduction Rack. SkillTo Assemble: Quantum FT: 393 -> 455\n \n 10. Energy Pack Interface. SkillTo Assemble: Elec. Engi: 484 -> 560\n \n 11. Primitive Freon Bag Cooling System. SkillTo Assemble: Weapon Smt: 484 -> 560\n \n 12. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 302 -> 350\n \n 13. Auto Targeting Computer -IIR 2-Groper-. SkillTo Assemble: Elec. Engi: 302 -> 350" +} diff --git a/modules/standard/recipe/recipes/154.json b/modules/standard/recipe/recipes/154.json new file mode 100644 index 0000000..21a5c5d --- /dev/null +++ b/modules/standard/recipe/recipes/154.json @@ -0,0 +1,8 @@ +{ + "name": "Balanced Mini-Shotgun", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Balanced Mini-Shotgun'\n The Construction kit. must be between Quality Level 121 and 140.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add in following order:\n \n 1. Shotgun Weapons Construction kit. SkillTo Assemble: Weapon Smt: 484 -> 560\n \n 2. Explosion Propulsion Containment Chamber. SkillTo Assemble: Quantum FT: 454 -> 525\n \n 3. Self-Cleaning KO-CR Device. SkillTo Assemble: Weapon Smt: 424 -> 490\n \n 4. Short Composite Barrel. SkillTo Assemble: Weapon Smt: 393 -> 455\n \n 5. Nano Pylon. SkillTo Assemble: Mech. Engi: 302 -> 350\n \n 6. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 182 -> 210\n \n 7. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 302 -> 350\n \n 8. Rapid-Reload-And-Fire Gyro. SkillTo Assemble: Weapon Smt: 484 -> 560\n \n 9. Nano-Interfaced Cooling System. SkillTo Assemble: Weapon Smt: 484 -> 560\n \n 10. Lock and Stock. SkillTo Assemble: Weapon Smt: 484 -> 560\n \n 11. Nano Pylon. SkillTo Assemble: Mech. Engi: 302 -> 350" +} diff --git a/modules/standard/recipe/recipes/155.json b/modules/standard/recipe/recipes/155.json new file mode 100644 index 0000000..e240191 --- /dev/null +++ b/modules/standard/recipe/recipes/155.json @@ -0,0 +1,8 @@ +{ + "name": "Balanced Minigrinner", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Balanced Minigrinner'\n The Construction kit. must be between Quality Level 121 and 140.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add in following order:\n \n 1. Pistol Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 484 -> 560\n \n 2. Ultra Short Composite Barrel. SkillTo Assemble: Weapon Smt: 363 -> 420\n \n 3. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 182 -> 210\n \n 4. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 302 -> 350\n \n 5. Gyro Stabilizing Unit. SkillTo Assemble: Weapon Smt: 544 -> 630\n \n 6. Lock and Stock. SkillTo Assemble: Weapon Smt: 484 -> 560\n \n 7. Triple Pulse Enabler. SkillTo Assemble: Weapon Smt: 514 -> 595\n \n 8. Nano Pylon. SkillTo Assemble: Mech. Engi: 302 -> 350\n \n 9. Self-Cleaning KO-CR Device. SkillTo Assemble: Weapon Smt: 424 -> 490\n \n 10. Nano Pylon. SkillTo Assemble: Mech. Engi: 302 -> 350\n \n 11. Explosion Propulsion Containment Chamber. SkillTo Assemble: Mech. Engi: 424 -> 490\n \n 12. Hyper Carbo-Ceramic Cooling System. SkillTo Assemble: Weapon Smt: 484 -> 560" +} diff --git a/modules/standard/recipe/recipes/156.json b/modules/standard/recipe/recipes/156.json new file mode 100644 index 0000000..2346a45 --- /dev/null +++ b/modules/standard/recipe/recipes/156.json @@ -0,0 +1,8 @@ +{ + "name": "Balanced Plasmaprojector", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Balanced Plasmaprojector'\n The Construction kit. must be between Quality Level 121 and 140.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add in following order:\n \n 1. AssaultRifle Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 484 -> 560\n \n 2. Energy Pack Interface. SkillTo Assemble: Elec. Engi: 484 -> 560\n \n 3. Energy Conduction Rack. SkillTo Assemble: Quantum FT: 393 -> 455\n \n 4. Hyper Carbo-Ceramic Cooling System. SkillTo Assemble: Weapon Smt: 484 -> 560\n \n 5. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 242 -> 280\n \n 6. Nano Pylon. SkillTo Assemble: Mech. Engi: 302 -> 350\n \n 7. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 182 -> 210\n \n 8. Notum Enriched Nano Paste - 4x Layer. SkillTo Assemble: Nano Progra: 302 -> 350\n \n 9. Runtime Critical Area Analyzer. SkillTo Assemble: Weapon Smt: 484 -> 560\n \n 10. Long Composite Barrel. SkillTo Assemble: Weapon Smt: 484 -> 560" +} diff --git a/modules/standard/recipe/recipes/157.json b/modules/standard/recipe/recipes/157.json new file mode 100644 index 0000000..098d7b7 --- /dev/null +++ b/modules/standard/recipe/recipes/157.json @@ -0,0 +1,8 @@ +{ + "name": "Balanced Sleekblaster", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Balanced Sleekblaster'\n The Construction kit. must be between Quality Level 121 and 140.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add in following order:\n \n 1. Energy Weapons Construction kit. SkillTo Assemble: Weapon Smt: 484 -> 560\n \n 2. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 302 -> 350\n \n 3. Hyper Carbo-Ceramic Cooling System. SkillTo Assemble: Weapon Smt: 484 -> 560\n \n 4. Energy Pack Interface. SkillTo Assemble: Elec. Engi: 484 -> 560\n \n 5. Jandawit Cleanup Cluster. SkillTo Assemble: Weapon Smt: 424 -> 490\n \n 6. Nano Pylon. SkillTo Assemble: Mech. Engi: 302 -> 350\n \n 7. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 182 -> 210\n \n 8. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 242 -> 280\n \n 9. Composite Barrel. SkillTo Assemble: Weapon Smt: 454 -> 525\n \n 10. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 302 -> 350\n \n 11. Rapid-Reload-And-Fire Gyro. SkillTo Assemble: Weapon Smt: 484 -> 560\n \n 12. Energy Conduction Rack. SkillTo Assemble: Quantum FT: 393 -> 455\n \n 13. Nano Pylon. SkillTo Assemble: Mech. Engi: 302 -> 350" +} diff --git a/modules/standard/recipe/recipes/158.json b/modules/standard/recipe/recipes/158.json new file mode 100644 index 0000000..6932e12 --- /dev/null +++ b/modules/standard/recipe/recipes/158.json @@ -0,0 +1,8 @@ +{ + "name": "Balanced Sleekblaster Major", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Balanced Sleekblaster Major'\n The Construction kit. must be between Quality Level 121 and 140.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add in following order:\n \n 1. Energy Weapons Construction kit. SkillTo Assemble: Weapon Smt: 484 -> 560\n \n 2. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 302 -> 350\n \n 3. Energy Pack Interface. SkillTo Assemble: Elec. Engi: 484 -> 560\n \n 4. Composite Barrel. SkillTo Assemble: Weapon Smt: 454 -> 525\n \n 5. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 242 -> 280\n \n 6. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 302 -> 350\n \n 7. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 182 -> 210\n \n 8. Nano Pylon. SkillTo Assemble: Mech. Engi: 302 -> 350\n \n 9. Rapid-Reload-And-Fire Gyro. SkillTo Assemble: Weapon Smt: 484 -> 560\n \n 10. Energy Conduction Rack. SkillTo Assemble: Quantum FT: 393 -> 455\n \n 11. Nano Pylon. SkillTo Assemble: Mech. Engi: 302 -> 350\n \n 12. Self-Cleaning KO-CR Device. SkillTo Assemble: Weapon Smt: 424 -> 490\n \n 13. Flake Tubing Base Cooling System. SkillTo Assemble: Weapon Smt: 484 -> 560" +} diff --git a/modules/standard/recipe/recipes/159.json b/modules/standard/recipe/recipes/159.json new file mode 100644 index 0000000..b984fb4 --- /dev/null +++ b/modules/standard/recipe/recipes/159.json @@ -0,0 +1,8 @@ +{ + "name": "Balanced Sleekblaster Minor", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Balanced Sleekblaster Minor'\n The Construction kit. must be between Quality Level 121 and 140.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add in following order:\n \n 1. Energy Weapons Construction kit. SkillTo Assemble: Weapon Smt: 484 -> 560\n \n 2. Rapid-Reload-And-Fire Gyro. SkillTo Assemble: Weapon Smt: 484 -> 560\n \n 3. Jandawit Cleanup Cluster. SkillTo Assemble: Weapon Smt: 424 -> 490\n \n 4. Energy Pack Interface. SkillTo Assemble: Elec. Engi: 484 -> 560\n \n 5. Energy Conduction Rack. SkillTo Assemble: Quantum FT: 393 -> 455\n \n 6. Flake Tubing Base Cooling System. SkillTo Assemble: Weapon Smt: 484 -> 560\n \n 7. Short Composite Barrel. SkillTo Assemble: Weapon Smt: 393 -> 455\n \n 8. Nano Pylon. SkillTo Assemble: Mech. Engi: 302 -> 350\n \n 9. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 182 -> 210\n \n 10. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 242 -> 280" +} diff --git a/modules/standard/recipe/recipes/16.json b/modules/standard/recipe/recipes/16.json new file mode 100644 index 0000000..d8ae5cb --- /dev/null +++ b/modules/standard/recipe/recipes/16.json @@ -0,0 +1,75 @@ +{ + "name": "Barter Armor Boots", + "author": "", + "items": [ + { + "alias": "Notum Fragment", + "item_id": 136624 + }, + { + "alias": "Nano Programming Interface", + "item_id": 161699 + }, + { + "alias": "Inactive OT Metamorphing Liquid Nanobots", + "item_id": 164952 + }, + { + "alias": "Activated OT Metamorphing Liquid Nanobots", + "item_id": 164954 + }, + { + "alias": "Stabilized OT Metamorphing Liquid Nanobots", + "item_id": 164956 + }, + { + "alias": "Super-Stabilized OT Metamorphing Liquid Nanobots", + "item_id": 164958 + }, + { + "alias": "Augmented Nano Armor Boots", + "item_id": 21805 + }, + { + "alias": "Barter Armor Boots", + "item_id": 164934 + } + ], + "steps": [ + { + "source": "Nano Programming Interface", + "target": "Inactive OT Metamorphing Liquid Nanobots", + "result": "Activated OT Metamorphing Liquid Nanobots", + "skills": "NP, CH" + }, + { + "source": "Notum Fragment", + "target": "Activated OT Metamorphing Liquid Nanobots", + "result": "Stabilized OT Metamorphing Liquid Nanobots", + "skills": "NP, CH" + }, + { + "source": "Notum Fragment", + "target": "Stabilized OT Metamorphing Liquid Nanobots", + "result": "Super-Stabilized OT Metamorphing Liquid Nanobots", + "skills": "NP, CH" + }, + { + "source": "Super-Stabilized OT Metamorphing Liquid Nanobots", + "target": "Augmented Nano Armor Boots", + "result": "Barter Armor Boots", + "skills": "NP, CH" + } + ], + "details": [ + { + "text": "Alternative for the Notum Fragments:" + }, + { + "item": { + "id": 136622, + "_name": "Notum Chip" + } + } + ] +} \ No newline at end of file diff --git a/modules/standard/recipe/recipes/160.json b/modules/standard/recipe/recipes/160.json new file mode 100644 index 0000000..f256feb --- /dev/null +++ b/modules/standard/recipe/recipes/160.json @@ -0,0 +1,8 @@ +{ + "name": "Balanced Subturbine", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Balanced Subturbine'\nThe Construction kit. must be between Quality Level 121 and 140.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\n Add in following order:\n\n 1. AssaultRifle Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 484 -> 560\n\n 2. Triple Pulse Enabler. SkillTo Assemble: Weapon Smt: 514 -> 595\n\n 3. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 242 -> 280\n\n 4. Explosion Propulsion Containment Chamber. SkillTo Assemble: Mech. Engi: 424 -> 490\n\n 5. Lock and Stock. SkillTo Assemble: Weapon Smt: 484 -> 560\n\n 6. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 302 -> 350\n\n 7. Nano Pylon. SkillTo Assemble: Mech. Engi: 302 -> 350\n\n 8. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 182 -> 210\n\n 9. Self-Cleaning KO-CR Device. SkillTo Assemble: Weapon Smt: 424 -> 490\n\n 10. Hyper Carbo-Ceramic Cooling System. SkillTo Assemble: Weapon Smt: 484 -> 560\n\n 11. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 302 -> 350\n\n 12. Short Composite Barrel. SkillTo Assemble: Weapon Smt: 393 -> 455\n\n 13. Gyro Stabilizing Unit. SkillTo Assemble: Weapon Smt: 544 -> 630\n\n 14. Notum Enriched Nano Paste - 4x Layer. SkillTo Assemble: Nano Progra: 302 -> 350\n\n 15. Nano Pylon. SkillTo Assemble: Mech. Engi: 302 -> 350" +} diff --git a/modules/standard/recipe/recipes/161.json b/modules/standard/recipe/recipes/161.json new file mode 100644 index 0000000..3536936 --- /dev/null +++ b/modules/standard/recipe/recipes/161.json @@ -0,0 +1,8 @@ +{ + "name": "Balanced Supernova Mk VI", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Balanced Supernova Mk VI'\n The Construction kit. must be between Quality Level 121 and 140.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add the pieces in the following order:\n \n 1. Energy Weapons Construction kit.\n \n 2. Ultra-Long Composite Barrel. . SkillTo Assemble: Weapon Smt: 514-595\n \n 3. Energy Conduction Rack. . SkillTo Assemble: Quantum FT: 393-455\n \n 4. Nano Pylon. . SkillTo Assemble: Mech. Engi: 302-350\n \n 5. Energy Pack Interface. . SkillTo Assemble: Elec. Engi: 484-560\n \n 6. Auto Targeting Computer -IIR 4 -Ultra-. . SkillTo Assemble: Elec. Engi: 363-420\n \n 7. Auto Targeting C. -IIR 5 -Powermolder-. . SkillTo Assemble: Elec. Engi: 393-455\n \n 8. Runtime Critical Area Analyzer. . SkillTo Assemble: Weapon Smt: 484-560\n \n 9. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 302-350\n \n 10. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 182-210\n \n 11. Nano Pylon. . SkillTo Assemble: Mech. Engi: 302-350\n \n 12. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 302-350" +} diff --git a/modules/standard/recipe/recipes/162.json b/modules/standard/recipe/recipes/162.json new file mode 100644 index 0000000..3f41f4f --- /dev/null +++ b/modules/standard/recipe/recipes/162.json @@ -0,0 +1,8 @@ +{ + "name": "Balanced Suppressor", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Balanced Suppressor'\n The Construction kit. must be between Quality Level 121 and 140.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add the pieces in the following order:\n \n 1. Submachinegun Weapons Construction kit.\n \n 2. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 182-210\n \n 3. Lock and Stock. . SkillTo Assemble: Weapon Smt: 484-560\n \n 4. Nano Pylon. . SkillTo Assemble: Mech. Engi: 302-350\n \n 5. Triple Pulse Enabler. . SkillTo Assemble: Weapon Smt: 514-595\n \n 6. Nano Pylon. . SkillTo Assemble: Mech. Engi: 302-350\n \n 7. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 302-350\n \n 8. Gyro Stabilizing Unit. . SkillTo Assemble: Weapon Smt: 544-630\n \n 9. Explosion Propulsion Containment Chamber. . SkillTo Assemble: Mech. Engi: 424-490\n \n 10. Ultra-Long Composite Barrel. . SkillTo Assemble: Weapon Smt: 514-595\n \n 11. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 302-350" +} diff --git a/modules/standard/recipe/recipes/163.json b/modules/standard/recipe/recipes/163.json new file mode 100644 index 0000000..c30b830 --- /dev/null +++ b/modules/standard/recipe/recipes/163.json @@ -0,0 +1,8 @@ +{ + "name": "Balanced Triplejolt", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Balanced Triplejolt'\n The Construction kit. must be between Quality Level 121 and 140.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add in following order:\n \n 1. Shotgun Weapons Construction kit. SkillTo Assemble: Weapon Smt: 484 -> 560\n \n 2. Nano Pylon. SkillTo Assemble: Mech. Engi: 302 -> 350\n \n 3. Jandawit Cleanup Cluster. SkillTo Assemble: Weapon Smt: 424 -> 490\n \n 4. Hyper Carbo-Ceramic Cooling System. SkillTo Assemble: Weapon Smt: 484 -> 560\n \n 5. Nano Pylon. SkillTo Assemble: Mech. Engi: 302 -> 350\n \n 6. Rapid-Reload-And-Fire Gyro. SkillTo Assemble: Weapon Smt: 484 -> 560\n \n 7. Radioactive Isotope Fusion System. SkillTo Assemble: Quantum FT: 484 -> 560\n \n 8. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 242 -> 280\n \n 9. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 302 -> 350\n \n 10. Ultra Short Composite Barrel. SkillTo Assemble: Weapon Smt: 363 -> 420\n \n 11. Energy Conduction Rack. SkillTo Assemble: Quantum FT: 393 -> 455\n \n 12. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 182 -> 210" +} diff --git a/modules/standard/recipe/recipes/164.json b/modules/standard/recipe/recipes/164.json new file mode 100644 index 0000000..597e70d --- /dev/null +++ b/modules/standard/recipe/recipes/164.json @@ -0,0 +1,8 @@ +{ + "name": "Blackened Blaster", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Blackened Blaster'\n The Construction kit. must be between Quality Level 81 and 100.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add the pieces in the following order:\n \n 1. Rifle Weapons Construction kit.\n \n 2. Energy Conduction Rack. . SkillTo Assemble: Quantum FT: 263-325\n \n 3. Rapid-Reload-And-Fire Gyro. . SkillTo Assemble: Weapon Smt: 324-400\n \n 4. Nano Pylon. . SkillTo Assemble: Mech. Engi: 202-250\n \n 5. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 202-250\n \n 6. Self-Cleaning KO-CR Device. . SkillTo Assemble: Weapon Smt: 284-350\n \n 7. Energy Pack Interface. . SkillTo Assemble: Elec. Engi: 324-400\n \n 8. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 122-150\n \n 9. Ultra-Long Composite Barrel. . SkillTo Assemble: Weapon Smt: 344-425\n \n 10. Hyper Carbo-Ceramic Cooling System. . SkillTo Assemble: Weapon Smt: 324-400\n \n 11. Nano Pylon. . SkillTo Assemble: Mech. Engi: 202-250\n \n 12. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 162-200\n \n 13. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 202-250" +} diff --git a/modules/standard/recipe/recipes/165.json b/modules/standard/recipe/recipes/165.json new file mode 100644 index 0000000..75c4769 --- /dev/null +++ b/modules/standard/recipe/recipes/165.json @@ -0,0 +1,8 @@ +{ + "name": "Blackened Blaster Rifle", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Blackened Blaster Rifle'\n The Construction kit. must be between Quality Level 81 and 100.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add the pieces in the following order:\n \n 1. Rifle Weapons Construction kit.\n \n 2. Energy Conduction Rack. . SkillTo Assemble: Quantum FT: 263-325\n \n 3. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 162-200\n \n 4. Lock and Stock. . SkillTo Assemble: Weapon Smt: 324-400\n \n 5. Jandawit Cleanup Cluster. . SkillTo Assemble: Weapon Smt: 284-350\n \n 6. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 202-250\n \n 7. Ultra-Long Composite Barrel. . SkillTo Assemble: Weapon Smt: 344-425\n \n 8. Primitive Freon Bag Cooling System. . SkillTo Assemble: Weapon Smt: 324-400\n \n 9. Rapid-Reload-And-Fire Gyro. . SkillTo Assemble: Weapon Smt: 324-400\n \n 10. Notum Enriched Nano Paste - 4x Layer. . SkillTo Assemble: Nano Progra: 202-250\n \n 11. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 122-150\n \n 12. Auto Targeting Computer -IIR 1. . SkillTo Assemble: Elec. Engi: 182-225\n \n 13. Nano Pylon. . SkillTo Assemble: Mech. Engi: 202-250" +} diff --git a/modules/standard/recipe/recipes/166.json b/modules/standard/recipe/recipes/166.json new file mode 100644 index 0000000..31d796a --- /dev/null +++ b/modules/standard/recipe/recipes/166.json @@ -0,0 +1,8 @@ +{ + "name": "Blackhole Mk IX", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Blackhole Mk IX'\n The Construction kit. must be between Quality Level 81 and 100.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add in following order:\n \n 1. Shotgun Weapons Construction kit. SkillTo Assemble: Weapon Smt: 324 -> 400\n \n 2. Nano Pylon. SkillTo Assemble: Mech. Engi: 202 -> 250\n \n 3. Energy Pack Interface. SkillTo Assemble: Elec. Engi: 324 -> 400\n \n 4. Rapid-Reload-And-Fire Gyro. SkillTo Assemble: Weapon Smt: 324 -> 400\n \n 5. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 122 -> 150\n \n 6. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 162 -> 200\n \n 7. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 202 -> 250\n \n 8. Notum Enriched Nano Paste - 4x Layer. SkillTo Assemble: Nano Progra: 202 -> 250\n \n 9. Nano Pylon. SkillTo Assemble: Mech. Engi: 202 -> 250\n \n 10. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 202 -> 250\n \n 11. Ultra-Long Composite Barrel. SkillTo Assemble: Weapon Smt: 344 -> 425\n \n 12. Energy Conduction Rack. SkillTo Assemble: Quantum FT: 263 -> 325" +} diff --git a/modules/standard/recipe/recipes/167.json b/modules/standard/recipe/recipes/167.json new file mode 100644 index 0000000..6d66f98 --- /dev/null +++ b/modules/standard/recipe/recipes/167.json @@ -0,0 +1,8 @@ +{ + "name": "Bladestaff", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Bladestaff'\n The Construction kit. must be between Quality Level 47 and 69.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add the pieces in the following order:\n \n 1. Two Handed Edged Weapons Construction kit.\n \n 2. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 94-138\n \n 3. 4x Layer Carbon-Notum Alloy Blade. . SkillTo Assemble: Weapon Smt: 141-207\n \n 4. Notum Enriched Nano Paste - 4x Layer. . SkillTo Assemble: Nano Progra: 118-172\n \n 5. Optimized Co-Weapon Interface. . SkillTo Assemble: Comp. Liter: 141-207\n \n 6. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 70-104\n \n 7. 2h Edged Cluster - Faded (Waist). . SkillTo Assemble: Nano Progra: 47-69\n \n 8. 8x Layer Carbon-Notum Alloy Blade. . SkillTo Assemble: Weapon Smt: 164-242\n \n 9. Medium Handle. . SkillTo Assemble: Weapon Smt: 173-254" +} diff --git a/modules/standard/recipe/recipes/168.json b/modules/standard/recipe/recipes/168.json new file mode 100644 index 0000000..9c98131 --- /dev/null +++ b/modules/standard/recipe/recipes/168.json @@ -0,0 +1,8 @@ +{ + "name": "Blunt Mini Axe", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Blunt Mini Axe'\n The Construction kit. must be between Quality Level 61 and 80.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add the pieces in the following order:\n \n 1. One Handed Edged Weapons Construction kit.\n \n 2. Short Handle. . SkillTo Assemble: Weapon Smt: 214-280\n \n 3. Optimized Co-Weapon Interface. . SkillTo Assemble: Comp. Liter: 183-240\n \n 4. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 92-120\n \n 5. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 122-160" +} diff --git a/modules/standard/recipe/recipes/169.json b/modules/standard/recipe/recipes/169.json new file mode 100644 index 0000000..1b568da --- /dev/null +++ b/modules/standard/recipe/recipes/169.json @@ -0,0 +1,8 @@ +{ + "name": "Blunt Notum Spear", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Blunt Notum Spear'\nThe Construction kit. must be between Quality Level 61 and 80.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\nAdd the pieces in the following order:\n\n 1. Piercing Weapons Construction kit.\n\n 2. Optimized Co-Weapon Interface. . SkillTo Assemble: Comp. Liter: 183-240\n\n 3. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 92-120\n\n 4. Medium Handle. . SkillTo Assemble: Weapon Smt: 224-294\n\n 5. Energy Impact Super Conductor. . SkillTo Assemble: Elec. Engi: 244-320\n\n 6. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 122-160\n\n 7. Notum Enriched Nano Paste - 4x Layer. . SkillTo Assemble: Nano Progra: 152-200" +} diff --git a/modules/standard/recipe/recipes/17.json b/modules/standard/recipe/recipes/17.json new file mode 100644 index 0000000..bf13c6e --- /dev/null +++ b/modules/standard/recipe/recipes/17.json @@ -0,0 +1,55 @@ +{ + "name": "Basic Nano Kit/Recharger", + "author": "", + "items": [ + { + "alias": "Notum Pellet", + "item_id": 207478 + }, + { + "alias": "Jensen Personal Ore Extractor", + "item_id": 150275 + }, + { + "alias": "Refined Notum Pellet", + "item_id": 207480 + }, + { + "alias": "Refined Notum Pellet", + "item_id": 207480 + }, + { + "alias": "Semi-Finished Nano Kit", + "item_id": 207503 + }, + { + "alias": "Semi-Finished Nano Recharger", + "item_id": 207505 + }, + { + "alias": "Basic Nano Recharger", + "item_id": 25820 + }, + { + "alias": "Simple Nano Kit", + "item_id": 85366 + } + ], + "steps": [ + { + "source": "Jensen Personal Ore Extractor", + "target": "Notum Pellet", + "result": "Refined Notum Pellet" + }, + { + "source": "Refined Notum Pellet", + "target": "Semi-Finished Nano Kit", + "result": "Simple Nano Kit" + }, + { + "source": "Refined Notum Pellet", + "target": "Semi-Finished Nano Recharger", + "result": "Basic Nano Recharger" + } + ] +} \ No newline at end of file diff --git a/modules/standard/recipe/recipes/170.json b/modules/standard/recipe/recipes/170.json new file mode 100644 index 0000000..635e274 --- /dev/null +++ b/modules/standard/recipe/recipes/170.json @@ -0,0 +1,8 @@ +{ + "name": "Blunt Notum Staff", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Blunt Notum Staff'\nThe Construction kit. must be between Quality Level 61 and 80.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\nAdd the pieces in the following order:\n\n 1. Two Handed Blunt Weapons Construction kit.\n\n 2. Basic Co-Weapon Interface. . SkillTo Assemble: Comp. Liter: 137-180\n\n 3. Notum Enriched Nano Paste - 4x Layer. . SkillTo Assemble: Nano Progra: 152-200\n\n 4. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 92-120\n\n 5. 4x Layer Carbon-Notum Alloy Rod. . SkillTo Assemble: Weapon Smt: 274-360\n\n 6. 8x Layer Carbon-Notum Alloy Rod. . SkillTo Assemble: Weapon Smt: 290-380\n\n 7. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 122-160\n\n 8. Short Handle. . SkillTo Assemble: Weapon Smt: 214-280" +} diff --git a/modules/standard/recipe/recipes/171.json b/modules/standard/recipe/recipes/171.json new file mode 100644 index 0000000..764b969 --- /dev/null +++ b/modules/standard/recipe/recipes/171.json @@ -0,0 +1,8 @@ +{ + "name": "Blunt Right Slice", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Blunt Right Slice'\nThe Construction kit. must be between Quality Level 61 and 80.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\nAdd the pieces in the following order:\n\n 1. One Handed Edged Weapons Construction kit.\n\n 2. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 92-120\n\n 3. Optimized Co-Weapon Interface. . SkillTo Assemble: Comp. Liter: 183-240\n\n 4. Short Handle. . SkillTo Assemble: Weapon Smt: 214-280\n\n 5. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 122-160" +} diff --git a/modules/standard/recipe/recipes/172.json b/modules/standard/recipe/recipes/172.json new file mode 100644 index 0000000..2ee935a --- /dev/null +++ b/modules/standard/recipe/recipes/172.json @@ -0,0 +1,8 @@ +{ + "name": "Blunt Slank Chop", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Blunt Slank Chop'\nThe Construction kit. must be between Quality Level 61 and 80.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\nAdd the pieces in the following order:\n\n 1. Piercing Weapons Construction kit.\n\n 2. Hyper-Optimized Co-Weapon Interface. . SkillTo Assemble: Comp. Liter: 244-320\n\n 3. Short Handle. . SkillTo Assemble: Weapon Smt: 214-280\n\n 4. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 122-160\n\n 5. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 92-120\n\n 6. 4x Layer Carbon-Notum Alloy Blade. . SkillTo Assemble: Weapon Smt: 183-240" +} diff --git a/modules/standard/recipe/recipes/173.json b/modules/standard/recipe/recipes/173.json new file mode 100644 index 0000000..26d4e6e --- /dev/null +++ b/modules/standard/recipe/recipes/173.json @@ -0,0 +1,8 @@ +{ + "name": "Blunt Whings", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Blunt Whings'\nThe Construction kit. must be between Quality Level 61 and 80.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\n Add in following order:\n\n 1. Two Handed Edged Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 244 -> 320\n\n 2. Notum Enriched Nano Paste - 4x Layer. SkillTo Assemble: Nano Progra: 152 -> 200\n\n 3. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 122 -> 160\n\n 4. 8x Layer Carbon-Notum Alloy Blade. SkillTo Assemble: Weapon Smt: 214 -> 280\n\n 5. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 92 -> 120\n\n 6. 4x Layer Carbon-Notum Alloy Blade. SkillTo Assemble: Weapon Smt: 183 -> 240\n\n 7. Long Handle. SkillTo Assemble: Weapon Smt: 229 -> 300\n\n 8. Optimized Co-Weapon Interface. SkillTo Assemble: Comp. Liter: 183 -> 240" +} diff --git a/modules/standard/recipe/recipes/174.json b/modules/standard/recipe/recipes/174.json new file mode 100644 index 0000000..65e3274 --- /dev/null +++ b/modules/standard/recipe/recipes/174.json @@ -0,0 +1,8 @@ +{ + "name": "Bolter Cannon IX 42mm", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Bolter Cannon IX 42mm'\nThe Construction kit. must be between Quality Level 162 and 184.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\nAdd the pieces in the following order:\n\n 1. AssaultRifle Weapons Construction kit.\n\n 2. Lock and Stock. . SkillTo Assemble: Weapon Smt: 648-736\n\n 3. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 324-368\n\n 4. Auto Targeting Computer -IIR 1. . SkillTo Assemble: Elec. Engi: 364-414\n\n 5. Nano Pylon. . SkillTo Assemble: Mech. Engi: 405-460\n\n 6. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 405-460\n\n 7. Short Composite Barrel. . SkillTo Assemble: Weapon Smt: 526-598\n\n 8. Gyro Stabilizing Unit. . SkillTo Assemble: Weapon Smt: 729-828\n\n 9. Explosion Propulsion Containment Chamber. . SkillTo Assemble: Mech. Engi: 567-644\n\n 10. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 243-276\n\n 11. Primitive Freon Bag Cooling System. . SkillTo Assemble: Weapon Smt: 648-736\n\n 12. Nano Pylon. . SkillTo Assemble: Mech. Engi: 405-460\n\n 13. Triple Pulse Enabler. . SkillTo Assemble: Weapon Smt: 688-782\n\n 14. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 405-460" +} diff --git a/modules/standard/recipe/recipes/175.json b/modules/standard/recipe/recipes/175.json new file mode 100644 index 0000000..ee34673 --- /dev/null +++ b/modules/standard/recipe/recipes/175.json @@ -0,0 +1,8 @@ +{ + "name": "Bolter Cannon XX 42mm", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Bolter Cannon XX 42mm'\nThe Construction kit. must be between Quality Level 185 and 199.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\nAdd the pieces in the following order:\n\n 1. AssaultRifle Weapons Construction kit.\n\n 2. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 370-398\n\n 3. Auto Targeting Computer -IIR 1. . SkillTo Assemble: Elec. Engi: 416-448\n\n 4. Nano Pylon. . SkillTo Assemble: Mech. Engi: 462-498\n\n 5. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 462-498\n\n 6. Short Composite Barrel. . SkillTo Assemble: Weapon Smt: 601-647\n\n 7. Gyro Stabilizing Unit. . SkillTo Assemble: Weapon Smt: 832-896\n\n 8. Explosion Propulsion Containment Chamber. . SkillTo Assemble: Mech. Engi: 648-696\n\n 9. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 278-298\n\n 10. Primitive Freon Bag Cooling System. . SkillTo Assemble: Weapon Smt: 740-796\n\n 11. Nano Pylon. . SkillTo Assemble: Mech. Engi: 462-498\n\n 12. Triple Pulse Enabler. . SkillTo Assemble: Weapon Smt: 786-846\n\n 13. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 462-498\n\n 14. Lock and Stock. . SkillTo Assemble: Weapon Smt: 740-796" +} diff --git a/modules/standard/recipe/recipes/176.json b/modules/standard/recipe/recipes/176.json new file mode 100644 index 0000000..c316d2f --- /dev/null +++ b/modules/standard/recipe/recipes/176.json @@ -0,0 +1,8 @@ +{ + "name": "Cast-Off Blackened Blaster", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Cast-Off Blackened Blaster'\n The Construction kit. must be between Quality Level 21 and 40.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add the pieces in the following order:\n \n 1. Rifle Weapons Construction kit.\n \n 2. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 52-100\n \n 3. Self-Cleaning KO-CR Device. . SkillTo Assemble: Weapon Smt: 74-140\n \n 4. Ultra-Long Composite Barrel. . SkillTo Assemble: Weapon Smt: 89-170\n \n 5. Energy Pack Interface. . SkillTo Assemble: Elec. Engi: 84-160\n \n 6. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 32-60\n \n 7. Hyper Carbo-Ceramic Cooling System. . SkillTo Assemble: Weapon Smt: 84-160\n \n 8. Nano Pylon. . SkillTo Assemble: Mech. Engi: 52-100\n \n 9. Energy Conduction Rack. . SkillTo Assemble: Quantum FT: 68-130\n \n 10. Rapid-Reload-And-Fire Gyro. . SkillTo Assemble: Weapon Smt: 84-160\n \n 11. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 52-100\n \n 12. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 42-80\n \n 13. Nano Pylon. . SkillTo Assemble: Mech. Engi: 52-100" +} diff --git a/modules/standard/recipe/recipes/177.json b/modules/standard/recipe/recipes/177.json new file mode 100644 index 0000000..f1ccb7c --- /dev/null +++ b/modules/standard/recipe/recipes/177.json @@ -0,0 +1,8 @@ +{ + "name": "Cast-Off Blackened Blaster Rifle", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Cast-Off Blackened Blaster Rifle'\n The Construction kit. must be between Quality Level 21 and 40.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add the pieces in the following order:\n \n 1. Rifle Weapons Construction kit.\n \n 2. Auto Targeting Computer -IIR 1. . SkillTo Assemble: Elec. Engi: 47-90\n \n 3. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 42-80\n \n 4. Nano Pylon. . SkillTo Assemble: Mech. Engi: 52-100\n \n 5. Ultra-Long Composite Barrel. . SkillTo Assemble: Weapon Smt: 89-170\n \n 6. Lock and Stock. . SkillTo Assemble: Weapon Smt: 84-160\n \n 7. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 32-60\n \n 8. Rapid-Reload-And-Fire Gyro. . SkillTo Assemble: Weapon Smt: 84-160\n \n 9. Primitive Freon Bag Cooling System. . SkillTo Assemble: Weapon Smt: 84-160\n \n 10. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 52-100\n \n 11. Notum Enriched Nano Paste - 4x Layer. . SkillTo Assemble: Nano Progra: 52-100\n \n 12. Energy Conduction Rack. . SkillTo Assemble: Quantum FT: 68-130\n \n 13. Jandawit Cleanup Cluster. . SkillTo Assemble: Weapon Smt: 74-140" +} diff --git a/modules/standard/recipe/recipes/178.json b/modules/standard/recipe/recipes/178.json new file mode 100644 index 0000000..1d5f2fb --- /dev/null +++ b/modules/standard/recipe/recipes/178.json @@ -0,0 +1,8 @@ +{ + "name": "Cast-Off Blackened Miniblaster", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Cast-Off Blackened Miniblaster'\n The Construction kit. must be between Quality Level 21 and 40.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add in following order:\n \n 1. Pistol Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 84 -> 160\n \n 2. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 52 -> 100\n \n 3. Jandawit Cleanup Cluster. SkillTo Assemble: Weapon Smt: 74 -> 140\n \n 4. Energy Pack Interface. SkillTo Assemble: Elec. Engi: 84 -> 160\n \n 5. Rapid-Reload-And-Fire Gyro. SkillTo Assemble: Weapon Smt: 84 -> 160\n \n 6. Hyper Carbo-Ceramic Cooling System. SkillTo Assemble: Weapon Smt: 84 -> 160\n \n 7. Short Composite Barrel. SkillTo Assemble: Weapon Smt: 68 -> 130\n \n 8. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 42 -> 80\n \n 9. Nano Pylon. SkillTo Assemble: Mech. Engi: 52 -> 100\n \n 10. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 32 -> 60\n \n 11. Energy Conduction Rack. SkillTo Assemble: Quantum FT: 68 -> 130" +} diff --git a/modules/standard/recipe/recipes/179.json b/modules/standard/recipe/recipes/179.json new file mode 100644 index 0000000..039b362 --- /dev/null +++ b/modules/standard/recipe/recipes/179.json @@ -0,0 +1,8 @@ +{ + "name": "Cast-Off Blackhole Mk IX", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Cast-Off Blackhole Mk IX'\n The Construction kit. must be between Quality Level 21 and 40.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add in following order:\n \n 1. Shotgun Weapons Construction kit. SkillTo Assemble: Weapon Smt: 84 -> 160\n \n 2. Energy Conduction Rack. SkillTo Assemble: Quantum FT: 68 -> 130\n \n 3. Ultra-Long Composite Barrel. SkillTo Assemble: Weapon Smt: 89 -> 170\n \n 4. Notum Enriched Nano Paste - 4x Layer. SkillTo Assemble: Nano Progra: 52 -> 100\n \n 5. Nano Pylon. SkillTo Assemble: Mech. Engi: 52 -> 100\n \n 6. Rapid-Reload-And-Fire Gyro. SkillTo Assemble: Weapon Smt: 84 -> 160\n \n 7. Nano Pylon. SkillTo Assemble: Mech. Engi: 52 -> 100\n \n 8. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 52 -> 100\n \n 9. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 52 -> 100\n \n 10. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 42 -> 80\n \n 11. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 32 -> 60\n \n 12. Energy Pack Interface. SkillTo Assemble: Elec. Engi: 84 -> 160" +} diff --git a/modules/standard/recipe/recipes/18.json b/modules/standard/recipe/recipes/18.json new file mode 100644 index 0000000..ed07770 --- /dev/null +++ b/modules/standard/recipe/recipes/18.json @@ -0,0 +1,55 @@ +{ + "name": "Basic Treatment Laboratory/First-Aid Kit", + "author": "", + "items": [ + { + "alias": "Blood Plasma", + "item_id": 154359 + }, + { + "alias": "Semi-Finished Treatment Laboratory", + "item_id": 206738 + }, + { + "alias": "Semi-Finished First-Aid Kit", + "item_id": 206734 + }, + { + "alias": "Double Charge of Blood Plasma", + "item_id": 206736 + }, + { + "alias": "Basic Treatment Laboratory", + "item_id": 206736 + }, + { + "alias": "Double Charge of Blood Plasma", + "item_id": 206736 + }, + { + "alias": "Treatment Laboratory", + "item_id": 206736 + }, + { + "alias": "Basic First-Aid Kit", + "item_id": 23316 + } + ], + "steps": [ + { + "source": "Blood Plasma", + "target": "Blood Plasma", + "result": "Double Charge of Blood Plasma" + }, + { + "source": "Double Charge of Blood Plasma", + "target": "Semi-Finished Treatment Laboratory", + "result": "Treatment Laboratory" + }, + { + "source": "Blood Plasma", + "target": "Semi-Finished First-Aid Kit", + "result": "Basic First-Aid Kit" + } + ] +} \ No newline at end of file diff --git a/modules/standard/recipe/recipes/180.json b/modules/standard/recipe/recipes/180.json new file mode 100644 index 0000000..0ab7fa7 --- /dev/null +++ b/modules/standard/recipe/recipes/180.json @@ -0,0 +1,8 @@ +{ + "name": "Cast-Off Chunkprojector", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Cast-Off Chunkprojector'\n The Construction kit. must be between Quality Level 21 and 40.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add in following order:\n \n 1. Shotgun Weapons Construction kit. SkillTo Assemble: Weapon Smt: 84 -> 160\n \n 2. Lock and Stock. SkillTo Assemble: Weapon Smt: 84 -> 160\n \n 3. Short Composite Barrel. SkillTo Assemble: Weapon Smt: 68 -> 130\n \n 4. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 32 -> 60\n \n 5. Explosion Propulsion Containment Chamber. SkillTo Assemble: Quantum FT: 79 -> 150\n \n 6. Nano Pylon. SkillTo Assemble: Mech. Engi: 52 -> 100\n \n 7. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 52 -> 100\n \n 8. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 42 -> 80\n \n 9. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 52 -> 100\n \n 10. Nano Pylon. SkillTo Assemble: Mech. Engi: 52 -> 100\n \n 11. Self-Cleaning KO-CR Device. SkillTo Assemble: Weapon Smt: 74 -> 140\n \n 12. Flake Tubing Base Cooling System. SkillTo Assemble: Weapon Smt: 84 -> 160" +} diff --git a/modules/standard/recipe/recipes/181.json b/modules/standard/recipe/recipes/181.json new file mode 100644 index 0000000..50e2c11 --- /dev/null +++ b/modules/standard/recipe/recipes/181.json @@ -0,0 +1,8 @@ +{ + "name": "Cast-Off Disaffiliation Sniper", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Cast-Off Disaffiliation Sniper'\n The Construction kit. must be between Quality Level 21 and 40.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add the pieces in the following order:\n \n 1. Rifle Weapons Construction kit.\n \n 2. Explosion Propulsion Containment Chamber. . SkillTo Assemble: Mech. Engi: 74-140\n \n 3. Notum Enriched Nano Paste - 4x Layer. . SkillTo Assemble: Nano Progra: 52-100\n \n 4. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 32-60\n \n 5. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 52-100\n \n 6. Nano Pylon. . SkillTo Assemble: Mech. Engi: 52-100\n \n 7. Nano Pylon. . SkillTo Assemble: Mech. Engi: 52-100\n \n 8. Auto Targeting Computer -IIR 2-Groper-. . SkillTo Assemble: Elec. Engi: 52-100\n \n 9. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 52-100\n \n 10. Ultra-Long Composite Barrel. . SkillTo Assemble: Weapon Smt: 89-170\n \n 11. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 42-80\n \n 12. Primitive Freon Bag Cooling System. . SkillTo Assemble: Weapon Smt: 84-160\n \n 13. Runtime Critical Area Analyzer. . SkillTo Assemble: Weapon Smt: 84-160\n \n 14. Lock and Stock. . SkillTo Assemble: Weapon Smt: 84-160" +} diff --git a/modules/standard/recipe/recipes/182.json b/modules/standard/recipe/recipes/182.json new file mode 100644 index 0000000..8a524a6 --- /dev/null +++ b/modules/standard/recipe/recipes/182.json @@ -0,0 +1,8 @@ +{ + "name": "Cast-Off E-Beamer", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Cast-Off E-Beamer'\n The Construction kit. must be between Quality Level 21 and 40.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add in following order:\n \n 1. Energy Weapons Construction kit. SkillTo Assemble: Weapon Smt: 84 -> 160\n \n 2. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 52 -> 100\n \n 3. Energy Pack Interface. SkillTo Assemble: Elec. Engi: 84 -> 160\n \n 4. Short Composite Barrel. SkillTo Assemble: Weapon Smt: 68 -> 130\n \n 5. Energy Conduction Rack. SkillTo Assemble: Quantum FT: 68 -> 130\n \n 6. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 52 -> 100\n \n 7. Rapid-Reload-And-Fire Gyro. SkillTo Assemble: Weapon Smt: 84 -> 160\n \n 8. Nano Pylon. SkillTo Assemble: Mech. Engi: 52 -> 100\n \n 9. Notum Enriched Nano Paste - 4x Layer. SkillTo Assemble: Nano Progra: 52 -> 100\n \n 10. Self-Cleaning KO-CR Device. SkillTo Assemble: Weapon Smt: 74 -> 140\n \n 11. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 42 -> 80\n \n 12. Nano Pylon. SkillTo Assemble: Mech. Engi: 52 -> 100\n \n 13. Flake Tubing Base Cooling System. SkillTo Assemble: Weapon Smt: 84 -> 160\n \n 14. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 32 -> 60" +} diff --git a/modules/standard/recipe/recipes/183.json b/modules/standard/recipe/recipes/183.json new file mode 100644 index 0000000..b421b79 --- /dev/null +++ b/modules/standard/recipe/recipes/183.json @@ -0,0 +1,8 @@ +{ + "name": "Cast-Off Electron-Charged Pistol", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Cast-Off Electron-Charged Pistol'\n The Construction kit. must be between Quality Level 21 and 40.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add in following order:\n \n 1. Pistol Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 84 -> 160\n \n 2. Rapid-Reload-And-Fire Gyro. SkillTo Assemble: Weapon Smt: 84 -> 160\n \n 3. Energy Conduction Rack. SkillTo Assemble: Quantum FT: 68 -> 130\n \n 4. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 42 -> 80\n \n 5. Nano Pylon. SkillTo Assemble: Mech. Engi: 52 -> 100\n \n 6. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 52 -> 100\n \n 7. Jandawit Cleanup Cluster. SkillTo Assemble: Weapon Smt: 74 -> 140\n \n 8. Short Composite Barrel. SkillTo Assemble: Weapon Smt: 68 -> 130\n \n 9. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 32 -> 60\n \n 10. Plasma Streamer Interface Nozzle. SkillTo Assemble: Chemistry: 84 -> 160" +} diff --git a/modules/standard/recipe/recipes/184.json b/modules/standard/recipe/recipes/184.json new file mode 100644 index 0000000..bf8bbfc --- /dev/null +++ b/modules/standard/recipe/recipes/184.json @@ -0,0 +1,8 @@ +{ + "name": "Cast-Off Flamethrower", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Cast-Off Flamethrower'\n The Construction kit. must be between Quality Level 21 and 40.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add in following order:\n \n 1. AssaultRifle Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 84 -> 160\n \n 2. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 42 -> 80\n \n 3. Short Composite Barrel. SkillTo Assemble: Weapon Smt: 68 -> 130\n \n 4. Nano Pylon. SkillTo Assemble: Mech. Engi: 52 -> 100\n \n 5. Auto Targeting Computer -IIR 1. SkillTo Assemble: Elec. Engi: 47 -> 90\n \n 6. Primitive Freon Bag Cooling System. SkillTo Assemble: Weapon Smt: 84 -> 160\n \n 7. Nano Pylon. SkillTo Assemble: Mech. Engi: 52 -> 100\n \n 8. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 52 -> 100\n \n 9. Self-Cleaning KO-CR Device. SkillTo Assemble: Weapon Smt: 74 -> 140\n \n 10. Plasma Streamer Interface Nozzle. SkillTo Assemble: Chemistry: 84 -> 160\n \n 11. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 32 -> 60\n \n 12. Compression Chamber for Chemicals. SkillTo Assemble: Weapon Smt: 89 -> 170" +} diff --git a/modules/standard/recipe/recipes/185.json b/modules/standard/recipe/recipes/185.json new file mode 100644 index 0000000..4f607eb --- /dev/null +++ b/modules/standard/recipe/recipes/185.json @@ -0,0 +1,8 @@ +{ + "name": "Cast-Off Heavy Grinner", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Cast-Off Heavy Grinner'\n The Construction kit. must be between Quality Level 21 and 40.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add in following order:\n \n 1. Pistol Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 84 -> 160\n \n 2. Triple Pulse Enabler. SkillTo Assemble: Weapon Smt: 89 -> 170\n \n 3. Lock and Stock. SkillTo Assemble: Weapon Smt: 84 -> 160\n \n 4. Composite Barrel. SkillTo Assemble: Weapon Smt: 79 -> 150\n \n 5. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 42 -> 80\n \n 6. Explosion Propulsion Containment Chamber. SkillTo Assemble: Mech. Engi: 74 -> 140\n \n 7. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 52 -> 100\n \n 8. Nano Pylon. SkillTo Assemble: Mech. Engi: 52 -> 100\n \n 9. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 32 -> 60\n \n 10. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 52 -> 100\n \n 11. Nano Pylon. SkillTo Assemble: Mech. Engi: 52 -> 100\n \n 12. Self-Cleaning KO-CR Device. SkillTo Assemble: Weapon Smt: 74 -> 140" +} diff --git a/modules/standard/recipe/recipes/186.json b/modules/standard/recipe/recipes/186.json new file mode 100644 index 0000000..be667df --- /dev/null +++ b/modules/standard/recipe/recipes/186.json @@ -0,0 +1,8 @@ +{ + "name": "Cast-Off Kolt 58 Magnum", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Cast-Off Kolt 58 Magnum'\n The Construction kit. must be between Quality Level 21 and 40.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add in following order:\n \n 1. Pistol Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 84 -> 160\n \n 2. Rapid-Reload-And-Fire Gyro. SkillTo Assemble: Weapon Smt: 84 -> 160\n \n 3. Composite Barrel. SkillTo Assemble: Weapon Smt: 79 -> 150\n \n 4. Explosion Propulsion Containment Chamber. SkillTo Assemble: Mech. Engi: 74 -> 140\n \n 5. Nano Pylon. SkillTo Assemble: Mech. Engi: 52 -> 100\n \n 6. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 52 -> 100\n \n 7. Nano Pylon. SkillTo Assemble: Mech. Engi: 52 -> 100\n \n 8. Hyper Carbo-Ceramic Cooling System. SkillTo Assemble: Weapon Smt: 84 -> 160\n \n 9. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 32 -> 60\n \n 10. Jandawit Cleanup Cluster. SkillTo Assemble: Weapon Smt: 74 -> 140\n \n 11. Lock and Stock. SkillTo Assemble: Weapon Smt: 84 -> 160\n \n 12. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 52 -> 100" +} diff --git a/modules/standard/recipe/recipes/187.json b/modules/standard/recipe/recipes/187.json new file mode 100644 index 0000000..af7d7db --- /dev/null +++ b/modules/standard/recipe/recipes/187.json @@ -0,0 +1,8 @@ +{ + "name": "Cast-Off Kolt PDW-37", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Cast-Off Kolt PDW-37'\n The Construction kit. must be between Quality Level 21 and 40.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add in following order:\n \n 1. Pistol Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 84 -> 160\n \n 2. Hyper Carbo-Ceramic Cooling System. SkillTo Assemble: Weapon Smt: 84 -> 160\n \n 3. Nano Pylon. SkillTo Assemble: Mech. Engi: 52 -> 100\n \n 4. Short Composite Barrel. SkillTo Assemble: Weapon Smt: 68 -> 130\n \n 5. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 32 -> 60\n \n 6. Triple Pulse Enabler. SkillTo Assemble: Weapon Smt: 89 -> 170\n \n 7. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 52 -> 100\n \n 8. Energy Conduction Rack. SkillTo Assemble: Quantum FT: 68 -> 130\n \n 9. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 42 -> 80\n \n 10. Energy Pack Interface. SkillTo Assemble: Elec. Engi: 84 -> 160\n \n 11. Rapid-Reload-And-Fire Gyro. SkillTo Assemble: Weapon Smt: 84 -> 160" +} diff --git a/modules/standard/recipe/recipes/188.json b/modules/standard/recipe/recipes/188.json new file mode 100644 index 0000000..f39659c --- /dev/null +++ b/modules/standard/recipe/recipes/188.json @@ -0,0 +1,8 @@ +{ + "name": "Cast-Off Light Beamer Pistol", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Cast-Off Light Beamer Pistol'\n The Construction kit. must be between Quality Level 51 and 66.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add in following order:\n \n 1. Pistol Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 204 -> 264\n \n 2. Hyper Carbo-Ceramic Cooling System. SkillTo Assemble: Weapon Smt: 204 -> 264\n \n 3. Plasma Streamer Interface Nozzle. SkillTo Assemble: Chemistry: 204 -> 264\n \n 4. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 76 -> 99\n \n 5. Short Composite Barrel. SkillTo Assemble: Weapon Smt: 166 -> 214\n \n 6. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 102 -> 132\n \n 7. Energy Conduction Rack. SkillTo Assemble: Quantum FT: 166 -> 214\n \n 8. Nano Pylon. SkillTo Assemble: Mech. Engi: 128 -> 165\n \n 9. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 128 -> 165\n \n 10. Self-Cleaning KO-CR Device. SkillTo Assemble: Weapon Smt: 178 -> 231" +} diff --git a/modules/standard/recipe/recipes/189.json b/modules/standard/recipe/recipes/189.json new file mode 100644 index 0000000..7459744 --- /dev/null +++ b/modules/standard/recipe/recipes/189.json @@ -0,0 +1,8 @@ +{ + "name": "Cast-Off Mausser Particle Streamer", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Cast-Off Mausser Particle Streamer'\n The Construction kit. must be between Quality Level 21 and 40.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add the pieces in the following order:\n \n 1. Submachinegun Weapons Construction kit.\n \n 2. Nano Pylon. . SkillTo Assemble: Mech. Engi: 52-100\n \n 3. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 32-60\n \n 4. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 52-100\n \n 5. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 52-100\n \n 6. Explosion Propulsion Containment Chamber. . SkillTo Assemble: Mech. Engi: 74-140\n \n 7. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 42-80\n \n 8. Ultra-Long Composite Barrel. . SkillTo Assemble: Weapon Smt: 89-170\n \n 9. Nano Pylon. . SkillTo Assemble: Mech. Engi: 52-100\n \n 10. Triple Pulse Enabler. . SkillTo Assemble: Weapon Smt: 89-170\n \n 11. Auto Targeting Computer -IIR 1. . SkillTo Assemble: Elec. Engi: 47-90\n \n 12. Lock and Stock. . SkillTo Assemble: Weapon Smt: 84-160" +} diff --git a/modules/standard/recipe/recipes/19.json b/modules/standard/recipe/recipes/19.json new file mode 100644 index 0000000..d7d0e81 --- /dev/null +++ b/modules/standard/recipe/recipes/19.json @@ -0,0 +1,100 @@ +{ + "name": "Biotech Rod Ring", + "author": "", + "items": [ + { + "alias": "Small Gold Ingot", + "item_id": 151369 + }, + { + "alias": "Personal Furnace", + "item_id": 150930 + }, + { + "alias": "Generic Ring Template", + "item_id": 151365 + }, + { + "alias": "Wire Drawing Machine", + "item_id": 150917 + }, + { + "alias": "Glowing Biotech Rod", + "item_id": 251267 + }, + { + "alias": "Liquid Gold", + "item_id": 151372 + }, + { + "alias": "Gold Filigree Wire", + "item_id": 151368 + }, + { + "alias": "Gold Filigree Ring", + "item_id": 151375 + }, + { + "alias": "Glowing Biotech Rod Ring", + "item_id": 289784 + } + ], + "steps": [ + { + "source": "Personal Furnace", + "target": "Small Gold Ingot", + "result": "Liquid Gold", + "skills": "ME" + }, + { + "source": "Wire Drawing Machine", + "target": "Liquid Gold", + "result": "Gold Filigree Wire", + "skills": "ME" + }, + { + "source": "Generic Ring Template", + "target": "Gold Filigree Wire", + "result": "Gold Filigree Ring", + "skills": "ME" + }, + { + "source": "Gold Filigree Ring", + "target": "Glowing Biotech Rod", + "result": "Glowing Biotech Rod Ring", + "skills": "ME, EE" + } + ], + "details": [ + { + "text": "Requires Alien Tech Level 3\nInstead of Glowing Biotech Rod you can also use" + }, + { + "item": { + "id": 251269, + "_name": "Pulsing Biotech Rod" + } + }, + { + "item": { + "id": 251271, + "_name": "Dark Biotech Rod" + } + }, + { + "text": "When you use different Rods, you will get different Rings:" + }, + { + "item": { + "id": 251760, + "_name": "Pulsing Biotech Rod Ring" + } + }, + { + "item": { + "id": 251758, + "_name": "Dark Biotech Rod Ring" + } + } + ] +} diff --git a/modules/standard/recipe/recipes/190.json b/modules/standard/recipe/recipes/190.json new file mode 100644 index 0000000..d7fb7aa --- /dev/null +++ b/modules/standard/recipe/recipes/190.json @@ -0,0 +1,8 @@ +{ + "name": "Cast-Off Megajolt", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Cast-Off Megajolt'\n The Construction kit. must be between Quality Level 21 and 40.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add in following order:\n \n 1. Shotgun Weapons Construction kit. SkillTo Assemble: Weapon Smt: 84 -> 160\n \n 2. Nano Pylon. SkillTo Assemble: Mech. Engi: 52 -> 100\n \n 3. Primitive Freon Bag Cooling System. SkillTo Assemble: Weapon Smt: 84 -> 160\n \n 4. Nano Pylon. SkillTo Assemble: Mech. Engi: 52 -> 100\n \n 5. Energy Conduction Rack. SkillTo Assemble: Quantum FT: 68 -> 130\n \n 6. Auto Targeting Computer -IIR 2-Groper-. SkillTo Assemble: Elec. Engi: 52 -> 100\n \n 7. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 52 -> 100\n \n 8. Composite Barrel. SkillTo Assemble: Weapon Smt: 79 -> 150\n \n 9. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 52 -> 100\n \n 10. Notum Enriched Nano Paste - 4x Layer. SkillTo Assemble: Nano Progra: 52 -> 100\n \n 11. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 42 -> 80\n \n 12. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 32 -> 60\n \n 13. Energy Pack Interface. SkillTo Assemble: Elec. Engi: 84 -> 160" +} diff --git a/modules/standard/recipe/recipes/191.json b/modules/standard/recipe/recipes/191.json new file mode 100644 index 0000000..4d02282 --- /dev/null +++ b/modules/standard/recipe/recipes/191.json @@ -0,0 +1,8 @@ +{ + "name": "Cast-Off Mini-Shotgun", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Cast-Off Mini-Shotgun'\n The Construction kit. must be between Quality Level 21 and 40.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add in following order:\n \n 1. Shotgun Weapons Construction kit. SkillTo Assemble: Weapon Smt: 84 -> 160\n \n 2. Nano-Interfaced Cooling System. SkillTo Assemble: Weapon Smt: 84 -> 160\n \n 3. Nano Pylon. SkillTo Assemble: Mech. Engi: 52 -> 100\n \n 4. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 32 -> 60\n \n 5. Rapid-Reload-And-Fire Gyro. SkillTo Assemble: Weapon Smt: 84 -> 160\n \n 6. Explosion Propulsion Containment Chamber. SkillTo Assemble: Quantum FT: 79 -> 150\n \n 7. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 52 -> 100\n \n 8. Short Composite Barrel. SkillTo Assemble: Weapon Smt: 68 -> 130\n \n 9. Self-Cleaning KO-CR Device. SkillTo Assemble: Weapon Smt: 74 -> 140\n \n 10. Lock and Stock. SkillTo Assemble: Weapon Smt: 84 -> 160\n \n 11. Nano Pylon. SkillTo Assemble: Mech. Engi: 52 -> 100" +} diff --git a/modules/standard/recipe/recipes/192.json b/modules/standard/recipe/recipes/192.json new file mode 100644 index 0000000..c9473cc --- /dev/null +++ b/modules/standard/recipe/recipes/192.json @@ -0,0 +1,8 @@ +{ + "name": "Cast-Off Mini Axe", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Cast-Off Mini Axe'\n The Construction kit. must be between Quality Level 21 and 40.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add the pieces in the following order:\n \n 1. One Handed Edged Weapons Construction kit.\n \n 2. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 32-60\n \n 3. Optimized Co-Weapon Interface. . SkillTo Assemble: Comp. Liter: 63-120\n \n 4. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 42-80\n \n 5. Short Handle. . SkillTo Assemble: Weapon Smt: 74-140" +} diff --git a/modules/standard/recipe/recipes/193.json b/modules/standard/recipe/recipes/193.json new file mode 100644 index 0000000..9c28192 --- /dev/null +++ b/modules/standard/recipe/recipes/193.json @@ -0,0 +1,8 @@ +{ + "name": "Cast-Off Minigrinner", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Cast-Off Minigrinner'\n The Construction kit. must be between Quality Level 21 and 40.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add in following order:\n \n 1. Pistol Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 84 -> 160\n \n 2. Triple Pulse Enabler. SkillTo Assemble: Weapon Smt: 89 -> 170\n \n 3. Gyro Stabilizing Unit. SkillTo Assemble: Weapon Smt: 94 -> 180\n \n 4. Hyper Carbo-Ceramic Cooling System. SkillTo Assemble: Weapon Smt: 84 -> 160\n \n 5. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 32 -> 60\n \n 6. Nano Pylon. SkillTo Assemble: Mech. Engi: 52 -> 100\n \n 7. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 52 -> 100\n \n 8. Explosion Propulsion Containment Chamber. SkillTo Assemble: Mech. Engi: 74 -> 140\n \n 9. Self-Cleaning KO-CR Device. SkillTo Assemble: Weapon Smt: 74 -> 140\n \n 10. Ultra Short Composite Barrel. SkillTo Assemble: Weapon Smt: 63 -> 120\n \n 11. Lock and Stock. SkillTo Assemble: Weapon Smt: 84 -> 160\n \n 12. Nano Pylon. SkillTo Assemble: Mech. Engi: 52 -> 100" +} diff --git a/modules/standard/recipe/recipes/194.json b/modules/standard/recipe/recipes/194.json new file mode 100644 index 0000000..a625a26 --- /dev/null +++ b/modules/standard/recipe/recipes/194.json @@ -0,0 +1,8 @@ +{ + "name": "Cast-Off Plasmaprojector", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Cast-Off Plasmaprojector'\n The Construction kit. must be between Quality Level 21 and 40.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add in following order:\n \n 1. AssaultRifle Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 84 -> 160\n \n 2. Long Composite Barrel. SkillTo Assemble: Weapon Smt: 84 -> 160\n \n 3. Runtime Critical Area Analyzer. SkillTo Assemble: Weapon Smt: 84 -> 160\n \n 4. Hyper Carbo-Ceramic Cooling System. SkillTo Assemble: Weapon Smt: 84 -> 160\n \n 5. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 42 -> 80\n \n 6. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 32 -> 60\n \n 7. Nano Pylon. SkillTo Assemble: Mech. Engi: 52 -> 100\n \n 8. Energy Conduction Rack. SkillTo Assemble: Quantum FT: 68 -> 130\n \n 9. Notum Enriched Nano Paste - 4x Layer. SkillTo Assemble: Nano Progra: 52 -> 100\n \n 10. Energy Pack Interface. SkillTo Assemble: Elec. Engi: 84 -> 160" +} diff --git a/modules/standard/recipe/recipes/195.json b/modules/standard/recipe/recipes/195.json new file mode 100644 index 0000000..8c3abd8 --- /dev/null +++ b/modules/standard/recipe/recipes/195.json @@ -0,0 +1,8 @@ +{ + "name": "Cast-Off Right Slice", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Cast-Off Right Slice'\n The Construction kit. must be between Quality Level 21 and 40.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add the pieces in the following order:\n \n 1. One Handed Edged Weapons Construction kit.\n \n 2. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 32-60\n \n 3. Short Handle. . SkillTo Assemble: Weapon Smt: 74-140\n \n 4. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 42-80\n \n 5. Optimized Co-Weapon Interface. . SkillTo Assemble: Comp. Liter: 63-120" +} diff --git a/modules/standard/recipe/recipes/196.json b/modules/standard/recipe/recipes/196.json new file mode 100644 index 0000000..3b74292 --- /dev/null +++ b/modules/standard/recipe/recipes/196.json @@ -0,0 +1,8 @@ +{ + "name": "Cast-Off Slank Chop", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Cast-Off Slank Chop'\n The Construction kit. must be between Quality Level 21 and 40.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add the pieces in the following order:\n \n 1. Piercing Weapons Construction kit.\n \n 2. Short Handle. . SkillTo Assemble: Weapon Smt: 74-140\n \n 3. Hyper-Optimized Co-Weapon Interface. . SkillTo Assemble: Comp. Liter: 84-160\n \n 4. 4x Layer Carbon-Notum Alloy Blade. . SkillTo Assemble: Weapon Smt: 63-120\n \n 5. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 42-80\n \n 6. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 32-60" +} diff --git a/modules/standard/recipe/recipes/197.json b/modules/standard/recipe/recipes/197.json new file mode 100644 index 0000000..38556c5 --- /dev/null +++ b/modules/standard/recipe/recipes/197.json @@ -0,0 +1,8 @@ +{ + "name": "Cast-Off Sleekblaster", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Cast-Off Sleekblaster'\n The Construction kit. must be between Quality Level 21 and 40.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add in following order:\n \n 1. Energy Weapons Construction kit. SkillTo Assemble: Weapon Smt: 84 -> 160\n \n 2. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 52 -> 100\n \n 3. Energy Conduction Rack. SkillTo Assemble: Quantum FT: 68 -> 130\n \n 4. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 32 -> 60\n \n 5. Rapid-Reload-And-Fire Gyro. SkillTo Assemble: Weapon Smt: 84 -> 160\n \n 6. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 42 -> 80\n \n 7. Nano Pylon. SkillTo Assemble: Mech. Engi: 52 -> 100\n \n 8. Composite Barrel. SkillTo Assemble: Weapon Smt: 79 -> 150\n \n 9. Energy Pack Interface. SkillTo Assemble: Elec. Engi: 84 -> 160\n \n 10. Nano Pylon. SkillTo Assemble: Mech. Engi: 52 -> 100\n \n 11. Hyper Carbo-Ceramic Cooling System. SkillTo Assemble: Weapon Smt: 84 -> 160\n \n 12. Jandawit Cleanup Cluster. SkillTo Assemble: Weapon Smt: 74 -> 140\n \n 13. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 52 -> 100" +} diff --git a/modules/standard/recipe/recipes/198.json b/modules/standard/recipe/recipes/198.json new file mode 100644 index 0000000..2c6dd5b --- /dev/null +++ b/modules/standard/recipe/recipes/198.json @@ -0,0 +1,8 @@ +{ + "name": "Cast-Off Sleekblaster Major", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Cast-Off Sleekblaster Major'\n The Construction kit. must be between Quality Level 21 and 40.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add in following order:\n \n 1. Energy Weapons Construction kit. SkillTo Assemble: Weapon Smt: 84 -> 160\n \n 2. Energy Conduction Rack. SkillTo Assemble: Quantum FT: 68 -> 130\n \n 3. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 52 -> 100\n \n 4. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 32 -> 60\n \n 5. Energy Pack Interface. SkillTo Assemble: Elec. Engi: 84 -> 160\n \n 6. Rapid-Reload-And-Fire Gyro. SkillTo Assemble: Weapon Smt: 84 -> 160\n \n 7. Composite Barrel. SkillTo Assemble: Weapon Smt: 79 -> 150\n \n 8. Self-Cleaning KO-CR Device. SkillTo Assemble: Weapon Smt: 74 -> 140\n \n 9. Flake Tubing Base Cooling System. SkillTo Assemble: Weapon Smt: 84 -> 160\n \n 10. Nano Pylon. SkillTo Assemble: Mech. Engi: 52 -> 100\n \n 11. Nano Pylon. SkillTo Assemble: Mech. Engi: 52 -> 100\n \n 12. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 42 -> 80\n \n 13. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 52 -> 100" +} diff --git a/modules/standard/recipe/recipes/199.json b/modules/standard/recipe/recipes/199.json new file mode 100644 index 0000000..afe9361 --- /dev/null +++ b/modules/standard/recipe/recipes/199.json @@ -0,0 +1,8 @@ +{ + "name": "Cast-Off Sleekblaster Minor", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Cast-Off Sleekblaster Minor'\n The Construction kit. must be between Quality Level 21 and 40.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add in following order:\n \n 1. Energy Weapons Construction kit. SkillTo Assemble: Weapon Smt: 84 -> 160\n \n 2. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 32 -> 60\n \n 3. Energy Conduction Rack. SkillTo Assemble: Quantum FT: 68 -> 130\n \n 4. Rapid-Reload-And-Fire Gyro. SkillTo Assemble: Weapon Smt: 84 -> 160\n \n 5. Short Composite Barrel. SkillTo Assemble: Weapon Smt: 68 -> 130\n \n 6. Energy Pack Interface. SkillTo Assemble: Elec. Engi: 84 -> 160\n \n 7. Nano Pylon. SkillTo Assemble: Mech. Engi: 52 -> 100\n \n 8. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 42 -> 80\n \n 9. Flake Tubing Base Cooling System. SkillTo Assemble: Weapon Smt: 84 -> 160\n \n 10. Jandawit Cleanup Cluster. SkillTo Assemble: Weapon Smt: 74 -> 140" +} diff --git a/modules/standard/recipe/recipes/2.json b/modules/standard/recipe/recipes/2.json new file mode 100644 index 0000000..c60d36b --- /dev/null +++ b/modules/standard/recipe/recipes/2.json @@ -0,0 +1,25 @@ +{ + "name": "Advanced Salesman's Hat", + "author": "", + "items": [ + { + "alias": "Salesman's Chip", + "item_id": 206742 + }, + { + "alias": "Salesman's Hat", + "item_id": 205738 + }, + { + "alias": "Advanced Salesman's Hat", + "item_id": 206740 + } + ], + "steps": [ + { + "source": "Salesman's Chip", + "target": "Salesman's Hat", + "result": "Advanced Salesman's Hat" + } + ] +} \ No newline at end of file diff --git a/modules/standard/recipe/recipes/20.json b/modules/standard/recipe/recipes/20.json new file mode 100644 index 0000000..321cb7b --- /dev/null +++ b/modules/standard/recipe/recipes/20.json @@ -0,0 +1,52 @@ +{ + "name": "Blood Plasma", + "author": "", + "items": [ + { + "alias": "Blood Plasma", + "item_id": 154359 + }, + { + "alias": "Bio-Communitor", + "item_id": 154332 + }, + { + "alias": "Monster Parts", + "item_id": 42641 + } + ], + "steps": [ + { + "source": "Bio-Communitor", + "target": "Monster Parts", + "result": "Blood Plasma", + "skills": "PT" + } + ], + "details": [ + { + "text": "Alternatives for the Monster Parts:" + }, + { + "item": { + "id": 42644, + "_name": "Monster Parts with Ivory" + } + }, + { + "item": { + "id": 42642, + "_name": "Pelted Monster Parts" + } + }, + { + "item": { + "id": 42646, + "_name": "Pelted Monster Parts with Ivory" + } + }, + { + "text": "These Blood Plasmas can be sold for a very good price (ie: 4 full Bags of Monster parts QL70~ = 1M), or they can be used in the making of #L \"Emergency Treatment Laboratory\" \"/tell recipe 18\". The requirements in Pharma Tech are very low, thus making it very profitable. It's recommended that the Bio-Communitor should be of a superior or equal QL of the Monster Parts, not to lose any QL in the process." + } + ] +} \ No newline at end of file diff --git a/modules/standard/recipe/recipes/200.json b/modules/standard/recipe/recipes/200.json new file mode 100644 index 0000000..4b2113b --- /dev/null +++ b/modules/standard/recipe/recipes/200.json @@ -0,0 +1,8 @@ +{ + "name": "Cast-Off Subturbine", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Cast-Off Subturbine'\n The Construction kit. must be between Quality Level 21 and 40.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add in following order:\n \n 1. AssaultRifle Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 84 -> 160\n \n 2. Lock and Stock. SkillTo Assemble: Weapon Smt: 84 -> 160\n \n 3. Notum Enriched Nano Paste - 4x Layer. SkillTo Assemble: Nano Progra: 52 -> 100\n \n 4. Nano Pylon. SkillTo Assemble: Mech. Engi: 52 -> 100\n \n 5. Self-Cleaning KO-CR Device. SkillTo Assemble: Weapon Smt: 74 -> 140\n \n 6. Hyper Carbo-Ceramic Cooling System. SkillTo Assemble: Weapon Smt: 84 -> 160\n \n 7. Nano Pylon. SkillTo Assemble: Mech. Engi: 52 -> 100\n \n 8. Explosion Propulsion Containment Chamber. SkillTo Assemble: Mech. Engi: 74 -> 140\n \n 9. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 52 -> 100\n \n 10. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 32 -> 60\n \n 11. Gyro Stabilizing Unit. SkillTo Assemble: Weapon Smt: 94 -> 180\n \n 12. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 42 -> 80\n \n 13. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 52 -> 100\n \n 14. Short Composite Barrel. SkillTo Assemble: Weapon Smt: 68 -> 130\n \n 15. Triple Pulse Enabler. SkillTo Assemble: Weapon Smt: 89 -> 170" +} diff --git a/modules/standard/recipe/recipes/201.json b/modules/standard/recipe/recipes/201.json new file mode 100644 index 0000000..b46ce3a --- /dev/null +++ b/modules/standard/recipe/recipes/201.json @@ -0,0 +1,8 @@ +{ + "name": "Cast-Off Supernova Mk VI", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Cast-Off Supernova Mk VI'\n The Construction kit. must be between Quality Level 21 and 40.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add the pieces in the following order:\n \n 1. Energy Weapons Construction kit.\n \n 2. Nano Pylon. . SkillTo Assemble: Mech. Engi: 52-100\n \n 3. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 32-60\n \n 4. Auto Targeting C. -IIR 5 -Powermolder-. . SkillTo Assemble: Elec. Engi: 68-130\n \n 5. Runtime Critical Area Analyzer. . SkillTo Assemble: Weapon Smt: 84-160\n \n 6. Ultra-Long Composite Barrel. . SkillTo Assemble: Weapon Smt: 89-170\n \n 7. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 52-100\n \n 8. Auto Targeting Computer -IIR 4 -Ultra-. . SkillTo Assemble: Elec. Engi: 63-120\n \n 9. Nano Pylon. . SkillTo Assemble: Mech. Engi: 52-100\n \n 10. Energy Conduction Rack. . SkillTo Assemble: Quantum FT: 68-130\n \n 11. Energy Pack Interface. . SkillTo Assemble: Elec. Engi: 84-160\n \n 12. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 52-100" +} diff --git a/modules/standard/recipe/recipes/202.json b/modules/standard/recipe/recipes/202.json new file mode 100644 index 0000000..3dfbefb --- /dev/null +++ b/modules/standard/recipe/recipes/202.json @@ -0,0 +1,8 @@ +{ + "name": "Cast-Off Suppressor", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Cast-Off Suppressor'\n The Construction kit. must be between Quality Level 21 and 40.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add the pieces in the following order:\n \n 1. Submachinegun Weapons Construction kit.\n \n 2. Ultra-Long Composite Barrel. . SkillTo Assemble: Weapon Smt: 89-170\n \n 3. Lock and Stock. . SkillTo Assemble: Weapon Smt: 84-160\n \n 4. Nano Pylon. . SkillTo Assemble: Mech. Engi: 52-100\n \n 5. Gyro Stabilizing Unit. . SkillTo Assemble: Weapon Smt: 94-180\n \n 6. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 52-100\n \n 7. Triple Pulse Enabler. . SkillTo Assemble: Weapon Smt: 89-170\n \n 8. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 52-100\n \n 9. Nano Pylon. . SkillTo Assemble: Mech. Engi: 52-100\n \n 10. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 32-60\n \n 11. Explosion Propulsion Containment Chamber. . SkillTo Assemble: Mech. Engi: 74-140" +} diff --git a/modules/standard/recipe/recipes/203.json b/modules/standard/recipe/recipes/203.json new file mode 100644 index 0000000..58b92ed --- /dev/null +++ b/modules/standard/recipe/recipes/203.json @@ -0,0 +1,8 @@ +{ + "name": "Cast-Off Triplejolt", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Cast-Off Triplejolt'\n The Construction kit. must be between Quality Level 21 and 40.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add in following order:\n \n 1. Shotgun Weapons Construction kit. SkillTo Assemble: Weapon Smt: 84 -> 160\n \n 2. Jandawit Cleanup Cluster. SkillTo Assemble: Weapon Smt: 74 -> 140\n \n 3. Rapid-Reload-And-Fire Gyro. SkillTo Assemble: Weapon Smt: 84 -> 160\n \n 4. Nano Pylon. SkillTo Assemble: Mech. Engi: 52 -> 100\n \n 5. Ultra Short Composite Barrel. SkillTo Assemble: Weapon Smt: 63 -> 120\n \n 6. Energy Conduction Rack. SkillTo Assemble: Quantum FT: 68 -> 130\n \n 7. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 32 -> 60\n \n 8. Hyper Carbo-Ceramic Cooling System. SkillTo Assemble: Weapon Smt: 84 -> 160\n \n 9. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 52 -> 100\n \n 10. Radioactive Isotope Fusion System. SkillTo Assemble: Quantum FT: 84 -> 160\n \n 11. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 42 -> 80\n \n 12. Nano Pylon. SkillTo Assemble: Mech. Engi: 52 -> 100" +} diff --git a/modules/standard/recipe/recipes/204.json b/modules/standard/recipe/recipes/204.json new file mode 100644 index 0000000..0d10822 --- /dev/null +++ b/modules/standard/recipe/recipes/204.json @@ -0,0 +1,8 @@ +{ + "name": "Charged Bolter M9 42mm", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Charged Bolter M9 42mm'\n The Construction kit. must be between Quality Level 93 and 115.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add the pieces in the following order:\n \n 1. AssaultRifle Weapons Construction kit.\n \n 2. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 232-288\n \n 3. Gyro Stabilizing Unit. . SkillTo Assemble: Weapon Smt: 418-518\n \n 4. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 186-230\n \n 5. Primitive Freon Bag Cooling System. . SkillTo Assemble: Weapon Smt: 372-460\n \n 6. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 140-172\n \n 7. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 232-288\n \n 8. Auto Targeting Computer -IIR 1. . SkillTo Assemble: Elec. Engi: 209-259\n \n 9. Nano Pylon. . SkillTo Assemble: Mech. Engi: 232-288\n \n 10. Lock and Stock. . SkillTo Assemble: Weapon Smt: 372-460\n \n 11. Triple Pulse Enabler. . SkillTo Assemble: Weapon Smt: 395-489\n \n 12. Explosion Propulsion Containment Chamber. . SkillTo Assemble: Mech. Engi: 326-402\n \n 13. Short Composite Barrel. . SkillTo Assemble: Weapon Smt: 302-374\n \n 14. Nano Pylon. . SkillTo Assemble: Mech. Engi: 232-288" +} diff --git a/modules/standard/recipe/recipes/205.json b/modules/standard/recipe/recipes/205.json new file mode 100644 index 0000000..63f8fd4 --- /dev/null +++ b/modules/standard/recipe/recipes/205.json @@ -0,0 +1,8 @@ +{ + "name": "Cheap Abigail", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Cheap Abigail'\n The Construction kit. must be between Quality Level 1 and 30.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add the pieces in the following order:\n \n 1. Rifle Weapons Construction kit.\n \n 2. Lock and Stock. . SkillTo Assemble: Weapon Smt: 4-120\n \n 3. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 2-45\n \n 4. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 2-75\n \n 5. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 2-60\n \n 6. Self-Repairing Ultra-X. . SkillTo Assemble: Weapon Smt: 4-105\n \n 7. Short Composite Barrel. . SkillTo Assemble: Weapon Smt: 3-98\n \n 8. Runtime Critical Area Analyzer. . SkillTo Assemble: Weapon Smt: 4-120\n \n 9. Nano Pylon. . SkillTo Assemble: Mech. Engi: 2-75\n \n 10. Explosion Propulsion Containment Chamber. . SkillTo Assemble: Mech. Engi: 4-105\n \n 11. Nano-Interfaced Cooling System. . SkillTo Assemble: Weapon Smt: 4-120" +} diff --git a/modules/standard/recipe/recipes/206.json b/modules/standard/recipe/recipes/206.json new file mode 100644 index 0000000..646d1b0 --- /dev/null +++ b/modules/standard/recipe/recipes/206.json @@ -0,0 +1,8 @@ +{ + "name": "Cheap Amytlo Executioner", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Cheap Amytlo Executioner'\n The Construction kit. must be between Quality Level 1 and 40.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add the pieces in the following order:\n \n 1. One Handed Edged Weapons Construction kit.\n \n 2. Medium Handle. . SkillTo Assemble: Weapon Smt: 4-147\n \n 3. Optimized Co-Weapon Interface. . SkillTo Assemble: Comp. Liter: 3-120\n \n 4. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 2-60\n \n 5. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 2-80" +} diff --git a/modules/standard/recipe/recipes/207.json b/modules/standard/recipe/recipes/207.json new file mode 100644 index 0000000..31d5710 --- /dev/null +++ b/modules/standard/recipe/recipes/207.json @@ -0,0 +1,8 @@ +{ + "name": "Cheap Fiddle Rifle", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Cheap Fiddle Rifle'\n The Construction kit. must be between Quality Level 1 and 30.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add the pieces in the following order:\n \n 1. Rifle Weapons Construction kit.\n \n 2. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 2-75\n \n 3. Hyper Carbo-Ceramic Cooling System. . SkillTo Assemble: Weapon Smt: 4-120\n \n 4. Runtime Critical Area Analyzer. . SkillTo Assemble: Weapon Smt: 4-120\n \n 5. Lock and Stock. . SkillTo Assemble: Weapon Smt: 4-120\n \n 6. Nano Pylon. . SkillTo Assemble: Mech. Engi: 2-75\n \n 7. Ultra-Long Composite Barrel. . SkillTo Assemble: Weapon Smt: 4-128\n \n 8. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 2-45\n \n 9. Nano Pylon. . SkillTo Assemble: Mech. Engi: 2-75\n \n 10. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 2-75\n \n 11. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 2-60\n \n 12. Explosion Propulsion Containment Chamber. . SkillTo Assemble: Mech. Engi: 4-105" +} diff --git a/modules/standard/recipe/recipes/208.json b/modules/standard/recipe/recipes/208.json new file mode 100644 index 0000000..d4b1fc0 --- /dev/null +++ b/modules/standard/recipe/recipes/208.json @@ -0,0 +1,8 @@ +{ + "name": "Cheap Luxembourg Inferno Rifle", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Cheap Luxembourg Inferno Rifle'\n The Construction kit. must be between Quality Level 1 and 30.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add in following order:\n \n 1. Rifle Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 4 -> 120\n \n 2. Hyper Carbo-Ceramic Cooling System. SkillTo Assemble: Weapon Smt: 4 -> 120\n \n 3. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 2 -> 45\n \n 4. Jandawit Cleanup Cluster. SkillTo Assemble: Weapon Smt: 4 -> 105\n \n 5. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 2 -> 60\n \n 6. Long Composite Barrel. SkillTo Assemble: Weapon Smt: 4 -> 120\n \n 7. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 2 -> 75\n \n 8. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 2 -> 75\n \n 9. Plasma Streamer Interface Nozzle. SkillTo Assemble: Chemistry: 4 -> 120\n \n 10. Compression Chamber for Chemicals. SkillTo Assemble: Weapon Smt: 4 -> 128\n \n 11. Nano Pylon. SkillTo Assemble: Mech. Engi: 2 -> 75\n \n 12. Rapid-Reload-And-Fire Gyro. SkillTo Assemble: Weapon Smt: 4 -> 120\n \n 13. Nano Pylon. SkillTo Assemble: Mech. Engi: 2 -> 75" +} diff --git a/modules/standard/recipe/recipes/209.json b/modules/standard/recipe/recipes/209.json new file mode 100644 index 0000000..5fa0fac --- /dev/null +++ b/modules/standard/recipe/recipes/209.json @@ -0,0 +1,8 @@ +{ + "name": "Cheap Michael Patriot Ffi 29A", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Cheap Michael Patriot Ffi 29A'\n The Construction kit. must be between Quality Level 1 and 20.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add the pieces in the following order:\n \n 1. Submachinegun Weapons Construction kit.\n \n 2. Flake Tubing Base Cooling System. . SkillTo Assemble: Weapon Smt: 4-80\n \n 3. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 2-50\n \n 4. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 2-40\n \n 5. Ultra-Long Composite Barrel. . SkillTo Assemble: Weapon Smt: 4-85\n \n 6. Triple Pulse Enabler. . SkillTo Assemble: Weapon Smt: 4-85\n \n 7. Plasma Streamer Interface Nozzle. . SkillTo Assemble: Chemistry: 4-80\n \n 8. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 2-50\n \n 9. Explosion Propulsion Containment Chamber. . SkillTo Assemble: Mech. Engi: 4-70\n \n 10. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 2-30\n \n 11. Jandawit Cleanup Cluster. . SkillTo Assemble: Weapon Smt: 4-70\n \n 12. Nano Pylon. . SkillTo Assemble: Mech. Engi: 2-50\n \n 13. Nano Pylon. . SkillTo Assemble: Mech. Engi: 2-50" +} diff --git a/modules/standard/recipe/recipes/21.json b/modules/standard/recipe/recipes/21.json new file mode 100644 index 0000000..c017b0c --- /dev/null +++ b/modules/standard/recipe/recipes/21.json @@ -0,0 +1,31 @@ +{ + "name": "Boosted Hellspinner Shock Cannon", + "author": "", + "items": [ + { + "alias": "Hellspinner Shock Cannon", + "item_id": 153976 + }, + { + "alias": "Fluctuating Anti-Matter Generator", + "item_id": 201941 + }, + { + "alias": "Boosted Hellspinner Shock Cannon", + "item_id": 201940 + } + ], + "steps": [ + { + "source": "Fluctuating Anti-Matter Generator", + "target": "Hellspinner Shock Cannon", + "result": "Boosted Hellspinner Shock Cannon", + "skills": "BE" + } + ], + "details": [ + { + "text": "This Weapon is only available through this Tradeskill." + } + ] +} diff --git a/modules/standard/recipe/recipes/210.json b/modules/standard/recipe/recipes/210.json new file mode 100644 index 0000000..a54a136 --- /dev/null +++ b/modules/standard/recipe/recipes/210.json @@ -0,0 +1,8 @@ +{ + "name": "Cheap Michael Patriot Ffi 29B", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Cheap Michael Patriot Ffi 29B'\n The Construction kit. must be between Quality Level 101 and 120.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add the pieces in the following order:\n \n 1. Submachinegun Weapons Construction kit.\n \n 2. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 202-240\n \n 3. Nano Pylon. . SkillTo Assemble: Mech. Engi: 252-300\n \n 4. Plasma Streamer Interface Nozzle. . SkillTo Assemble: Chemistry: 404-480\n \n 5. Ultra-Long Composite Barrel. . SkillTo Assemble: Weapon Smt: 429-510\n \n 6. Triple Pulse Enabler. . SkillTo Assemble: Weapon Smt: 429-510\n \n 7. Jandawit Cleanup Cluster. . SkillTo Assemble: Weapon Smt: 354-420\n \n 8. Nano Pylon. . SkillTo Assemble: Mech. Engi: 252-300\n \n 9. Flake Tubing Base Cooling System. . SkillTo Assemble: Weapon Smt: 404-480\n \n 10. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 252-300\n \n 11. Explosion Propulsion Containment Chamber. . SkillTo Assemble: Mech. Engi: 354-420\n \n 12. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 152-180\n \n 13. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 252-300" +} diff --git a/modules/standard/recipe/recipes/211.json b/modules/standard/recipe/recipes/211.json new file mode 100644 index 0000000..c606837 --- /dev/null +++ b/modules/standard/recipe/recipes/211.json @@ -0,0 +1,8 @@ +{ + "name": "Cheap MTI Aleph 99", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Cheap MTI Aleph 99'\n The Construction kit. must be between Quality Level 1 and 20.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add the pieces in the following order:\n \n 1. Submachinegun Weapons Construction kit.\n \n 2. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 2-50\n \n 3. Ultra-Long Composite Barrel. . SkillTo Assemble: Weapon Smt: 4-85\n \n 4. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 2-40\n \n 5. Triple Pulse Enabler. . SkillTo Assemble: Weapon Smt: 4-85\n \n 6. Nano Pylon. . SkillTo Assemble: Mech. Engi: 2-50\n \n 7. Nano Pylon. . SkillTo Assemble: Mech. Engi: 2-50\n \n 8. Stamina Cluster - Faded (Waist). . SkillTo Assemble: Nano Progra: 1-20\n \n 9. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 2-30\n \n 10. Explosion Propulsion Containment Chamber. . SkillTo Assemble: Mech. Engi: 4-70\n \n 11. Lock and Stock. . SkillTo Assemble: Weapon Smt: 4-80" +} diff --git a/modules/standard/recipe/recipes/212.json b/modules/standard/recipe/recipes/212.json new file mode 100644 index 0000000..cd77003 --- /dev/null +++ b/modules/standard/recipe/recipes/212.json @@ -0,0 +1,8 @@ +{ + "name": "Chipped Mini Axe", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Chipped Mini Axe'\n The Construction kit. must be between Quality Level 81 and 100.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add the pieces in the following order:\n \n 1. One Handed Edged Weapons Construction kit.\n \n 2. Optimized Co-Weapon Interface. . SkillTo Assemble: Comp. Liter: 243-300\n \n 3. Short Handle. . SkillTo Assemble: Weapon Smt: 284-350\n \n 4. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 122-150\n \n 5. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 162-200" +} diff --git a/modules/standard/recipe/recipes/213.json b/modules/standard/recipe/recipes/213.json new file mode 100644 index 0000000..67b57d7 --- /dev/null +++ b/modules/standard/recipe/recipes/213.json @@ -0,0 +1,8 @@ +{ + "name": "Chipped Notum Spear", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Chipped Notum Spear'\n The Construction kit. must be between Quality Level 81 and 100.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add the pieces in the following order:\n \n 1. Piercing Weapons Construction kit.\n \n 2. Optimized Co-Weapon Interface. . SkillTo Assemble: Comp. Liter: 243-300\n \n 3. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 122-150\n \n 4. Energy Impact Super Conductor. . SkillTo Assemble: Elec. Engi: 324-400\n \n 5. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 162-200\n \n 6. Medium Handle. . SkillTo Assemble: Weapon Smt: 298-368\n \n 7. Notum Enriched Nano Paste - 4x Layer. . SkillTo Assemble: Nano Progra: 202-250" +} diff --git a/modules/standard/recipe/recipes/214.json b/modules/standard/recipe/recipes/214.json new file mode 100644 index 0000000..6a458f6 --- /dev/null +++ b/modules/standard/recipe/recipes/214.json @@ -0,0 +1,8 @@ +{ + "name": "Chipped Notum Staff", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Chipped Notum Staff'\n The Construction kit. must be between Quality Level 81 and 100.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add the pieces in the following order:\n \n 1. Two Handed Blunt Weapons Construction kit.\n \n 2. Notum Enriched Nano Paste - 4x Layer. . SkillTo Assemble: Nano Progra: 202-250\n \n 3. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 162-200\n \n 4. Short Handle. . SkillTo Assemble: Weapon Smt: 284-350\n \n 5. 8x Layer Carbon-Notum Alloy Rod. . SkillTo Assemble: Weapon Smt: 385-475\n \n 6. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 122-150\n \n 7. 4x Layer Carbon-Notum Alloy Rod. . SkillTo Assemble: Weapon Smt: 364-450\n \n 8. Basic Co-Weapon Interface. . SkillTo Assemble: Comp. Liter: 182-225" +} diff --git a/modules/standard/recipe/recipes/215.json b/modules/standard/recipe/recipes/215.json new file mode 100644 index 0000000..1f25be9 --- /dev/null +++ b/modules/standard/recipe/recipes/215.json @@ -0,0 +1,8 @@ +{ + "name": "Chipped Polearm", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Chipped Polearm'\n The Construction kit. must be between Quality Level 1 and 23.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add in following order:\n \n 1. Two Handed Edged Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 4 -> 92\n \n 2. 8x Layer Carbon-Notum Alloy Blade. SkillTo Assemble: Weapon Smt: 4 -> 80\n \n 3. Notum Enriched Nano Paste - 4x Layer. SkillTo Assemble: Nano Progra: 2 -> 58\n \n 4. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 2 -> 46\n \n 5. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 2 -> 34\n \n 6. Medium Handle. SkillTo Assemble: Weapon Smt: 4 -> 85\n \n 7. 4x Layer Carbon-Notum Alloy Blade. SkillTo Assemble: Weapon Smt: 3 -> 69\n \n 8. Optimized Co-Weapon Interface. SkillTo Assemble: Comp. Liter: 3 -> 69" +} diff --git a/modules/standard/recipe/recipes/216.json b/modules/standard/recipe/recipes/216.json new file mode 100644 index 0000000..62c686b --- /dev/null +++ b/modules/standard/recipe/recipes/216.json @@ -0,0 +1,8 @@ +{ + "name": "Chipped Slank Chop", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Chipped Slank Chop'\n The Construction kit. must be between Quality Level 81 and 100.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add the pieces in the following order:\n \n 1. Piercing Weapons Construction kit.\n \n 2. Hyper-Optimized Co-Weapon Interface. . SkillTo Assemble: Comp. Liter: 324-400\n \n 3. 4x Layer Carbon-Notum Alloy Blade. . SkillTo Assemble: Weapon Smt: 243-300\n \n 4. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 122-150\n \n 5. Short Handle. . SkillTo Assemble: Weapon Smt: 284-350\n \n 6. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 162-200" +} diff --git a/modules/standard/recipe/recipes/217.json b/modules/standard/recipe/recipes/217.json new file mode 100644 index 0000000..f55a463 --- /dev/null +++ b/modules/standard/recipe/recipes/217.json @@ -0,0 +1,8 @@ +{ + "name": "Choppa-Whoppa Polearm", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Choppa-Whoppa Polearm'\n The Construction kit. must be between Quality Level 70 and 92.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add in following order:\n \n 1. Two Handed Edged Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 280 -> 368\n \n 2. Run Speed Cluster - Faded (Leg). SkillTo Assemble: Nano Progra: 70 -> 92\n \n 3. 8x Layer Carbon-Notum Alloy Blade. SkillTo Assemble: Weapon Smt: 245 -> 322\n \n 4. 4x Layer Carbon-Notum Alloy Blade. SkillTo Assemble: Weapon Smt: 210 -> 276\n \n 5. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 105 -> 138\n \n 6. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 140 -> 184\n \n 7. Notum Enriched Nano Paste - 4x Layer. SkillTo Assemble: Nano Progra: 175 -> 230\n \n 8. Optimized Co-Weapon Interface. SkillTo Assemble: Comp. Liter: 210 -> 276\n \n 9. Medium Handle. SkillTo Assemble: Weapon Smt: 257 -> 338" +} diff --git a/modules/standard/recipe/recipes/218.json b/modules/standard/recipe/recipes/218.json new file mode 100644 index 0000000..97bb14c --- /dev/null +++ b/modules/standard/recipe/recipes/218.json @@ -0,0 +1,8 @@ +{ + "name": "Chunkprojector", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Chunkprojector'\n The Construction kit. must be between Quality Level 81 and 100.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add in following order:\n \n 1. Shotgun Weapons Construction kit. SkillTo Assemble: Weapon Smt: 324 -> 400\n \n 2. Short Composite Barrel. SkillTo Assemble: Weapon Smt: 263 -> 325\n \n 3. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 202 -> 250\n \n 4. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 122 -> 150\n \n 5. Explosion Propulsion Containment Chamber. SkillTo Assemble: Quantum FT: 304 -> 375\n \n 6. Nano Pylon. SkillTo Assemble: Mech. Engi: 202 -> 250\n \n 7. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 202 -> 250\n \n 8. Flake Tubing Base Cooling System. SkillTo Assemble: Weapon Smt: 324 -> 400\n \n 9. Lock and Stock. SkillTo Assemble: Weapon Smt: 324 -> 400\n \n 10. Self-Cleaning KO-CR Device. SkillTo Assemble: Weapon Smt: 284 -> 350\n \n 11. Nano Pylon. SkillTo Assemble: Mech. Engi: 202 -> 250\n \n 12. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 162 -> 200" +} diff --git a/modules/standard/recipe/recipes/219.json b/modules/standard/recipe/recipes/219.json new file mode 100644 index 0000000..4af1376 --- /dev/null +++ b/modules/standard/recipe/recipes/219.json @@ -0,0 +1,8 @@ +{ + "name": "Composite Mini Axe", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Composite Mini Axe'\n The Construction kit. must be between Quality Level 161 and 199.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add the pieces in the following order:\n \n 1. One Handed Edged Weapons Construction kit.\n \n 2. Short Handle. . SkillTo Assemble: Weapon Smt: 564-696\n \n 3. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 242-298\n \n 4. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 322-398\n \n 5. Optimized Co-Weapon Interface. . SkillTo Assemble: Comp. Liter: 483-597" +} diff --git a/modules/standard/recipe/recipes/22.json b/modules/standard/recipe/recipes/22.json new file mode 100644 index 0000000..6787f3c --- /dev/null +++ b/modules/standard/recipe/recipes/22.json @@ -0,0 +1,31 @@ +{ + "name": "Boosted Hellfury Assault Cannon", + "author": "", + "items": [ + { + "alias": "Hellfury Assault Cannon", + "item_id": 153977 + }, + { + "alias": "Erratic Notum Disruptor", + "item_id": 202281 + }, + { + "alias": "Boosted Hellfury Assault Cannon", + "item_id": 202279 + } + ], + "steps": [ + { + "source": "Erratic Notum Disruptor", + "target": "Hellfury Assault Cannon", + "result": "Boosted Hellfury Assault Cannon", + "skills": "BE" + } + ], + "details": [ + { + "text": "This Weapon is only available through this Tradeskill." + } + ] +} diff --git a/modules/standard/recipe/recipes/220.json b/modules/standard/recipe/recipes/220.json new file mode 100644 index 0000000..56925b5 --- /dev/null +++ b/modules/standard/recipe/recipes/220.json @@ -0,0 +1,8 @@ +{ + "name": "Composite Right Slice", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Composite Right Slice'\n The Construction kit. must be between Quality Level 161 and 199.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add the pieces in the following order:\n \n 1. One Handed Edged Weapons Construction kit.\n \n 2. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 322-398\n \n 3. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 242-298\n \n 4. Short Handle. . SkillTo Assemble: Weapon Smt: 564-696\n \n 5. Optimized Co-Weapon Interface. . SkillTo Assemble: Comp. Liter: 483-597" +} diff --git a/modules/standard/recipe/recipes/221.json b/modules/standard/recipe/recipes/221.json new file mode 100644 index 0000000..1820212 --- /dev/null +++ b/modules/standard/recipe/recipes/221.json @@ -0,0 +1,8 @@ +{ + "name": "Composite Slank Chop", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Composite Slank Chop'\n The Construction kit. must be between Quality Level 161 and 199.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add the pieces in the following order:\n \n 1. Piercing Weapons Construction kit.\n \n 2. Short Handle. . SkillTo Assemble: Weapon Smt: 564-696\n \n 3. 4x Layer Carbon-Notum Alloy Blade. . SkillTo Assemble: Weapon Smt: 483-597\n \n 4. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 242-298\n \n 5. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 322-398\n \n 6. Hyper-Optimized Co-Weapon Interface. . SkillTo Assemble: Comp. Liter: 644-796" +} diff --git a/modules/standard/recipe/recipes/222.json b/modules/standard/recipe/recipes/222.json new file mode 100644 index 0000000..5840ced --- /dev/null +++ b/modules/standard/recipe/recipes/222.json @@ -0,0 +1,8 @@ +{ + "name": "Compu-Seeker Long Axe -Y1000", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Compu-Seeker Long Axe -Y1000'\n The Construction kit. must be between Quality Level 116 and 138.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add in following order:\n \n 1. Two Handed Edged Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 464 -> 552\n \n 2. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 232 -> 276\n \n 3. Notum Enriched Nano Paste - 4x Layer. SkillTo Assemble: Nano Progra: 290 -> 345\n \n 4. 2h Edged Cluster - Faded (Waist). SkillTo Assemble: Nano Progra: 116 -> 138\n \n 5. Optimized Co-Weapon Interface. SkillTo Assemble: Comp. Liter: 348 -> 414\n \n 6. Medium Handle. SkillTo Assemble: Weapon Smt: 426 -> 507\n \n 7. Run Speed Cluster - Faded (Leg). SkillTo Assemble: Nano Progra: 116 -> 138\n \n 8. 8x Layer Carbon-Notum Alloy Blade. SkillTo Assemble: Weapon Smt: 406 -> 483\n \n 9. 4x Layer Carbon-Notum Alloy Blade. SkillTo Assemble: Weapon Smt: 348 -> 414\n \n 10. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 174 -> 207" +} diff --git a/modules/standard/recipe/recipes/223.json b/modules/standard/recipe/recipes/223.json new file mode 100644 index 0000000..5bb4388 --- /dev/null +++ b/modules/standard/recipe/recipes/223.json @@ -0,0 +1,8 @@ +{ + "name": "Compu-Seeker Long Axe -Y2000", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Compu-Seeker Long Axe -Y2000'\n The Construction kit. must be between Quality Level 139 and 161.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add in following order:\n \n 1. Two Handed Edged Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 556 -> 644\n \n 2. Optimized Co-Weapon Interface. SkillTo Assemble: Comp. Liter: 417 -> 483\n \n 3. Medium Handle. SkillTo Assemble: Weapon Smt: 511 -> 592\n \n 4. Run Speed Cluster - Faded (Leg). SkillTo Assemble: Nano Progra: 139 -> 161\n \n 5. 8x Layer Carbon-Notum Alloy Blade. SkillTo Assemble: Weapon Smt: 486 -> 564\n \n 6. 4x Layer Carbon-Notum Alloy Blade. SkillTo Assemble: Weapon Smt: 417 -> 483\n \n 7. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 208 -> 242\n \n 8. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 278 -> 322\n \n 9. Notum Enriched Nano Paste - 4x Layer. SkillTo Assemble: Nano Progra: 348 -> 402\n \n 10. 2h Edged Cluster - Faded (Waist). SkillTo Assemble: Nano Progra: 139 -> 161" +} diff --git a/modules/standard/recipe/recipes/224.json b/modules/standard/recipe/recipes/224.json new file mode 100644 index 0000000..44df556 --- /dev/null +++ b/modules/standard/recipe/recipes/224.json @@ -0,0 +1,8 @@ +{ + "name": "Compu-Seeker Long Axe -Y2000E", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Compu-Seeker Long Axe -Y2000E'\n The Construction kit. must be between Quality Level 162 and 184.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add in following order:\n \n 1. Two Handed Edged Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 648 -> 736\n \n 2. Notum Enriched Nano Paste - 4x Layer. SkillTo Assemble: Nano Progra: 405 -> 460\n \n 3. Optimized Co-Weapon Interface. SkillTo Assemble: Comp. Liter: 486 -> 552\n \n 4. Medium Handle. SkillTo Assemble: Weapon Smt: 595 -> 676\n \n 5. 8x Layer Carbon-Notum Alloy Blade. SkillTo Assemble: Weapon Smt: 567 -> 644\n \n 6. 2h Edged Cluster - Faded (Waist). SkillTo Assemble: Nano Progra: 162 -> 184\n \n 7. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 324 -> 368\n \n 8. 4x Layer Carbon-Notum Alloy Blade. SkillTo Assemble: Weapon Smt: 486 -> 552\n \n 9. Run Speed Cluster - Faded (Leg). SkillTo Assemble: Nano Progra: 162 -> 184\n \n 10. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 243 -> 276" +} diff --git a/modules/standard/recipe/recipes/225.json b/modules/standard/recipe/recipes/225.json new file mode 100644 index 0000000..1ca908f --- /dev/null +++ b/modules/standard/recipe/recipes/225.json @@ -0,0 +1,8 @@ +{ + "name": "Compu-Seeker Long Axe -Y3000", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Compu-Seeker Long Axe -Y3000'\n The Construction kit. must be between Quality Level 185 and 199.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add in following order:\n \n 1. Two Handed Edged Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 740 -> 796\n \n 2. 2h Edged Cluster - Faded (Waist). SkillTo Assemble: Nano Progra: 185 -> 199\n \n 3. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 370 -> 398\n \n 4. 4x Layer Carbon-Notum Alloy Blade. SkillTo Assemble: Weapon Smt: 555 -> 597\n \n 5. Run Speed Cluster - Faded (Leg). SkillTo Assemble: Nano Progra: 185 -> 199\n \n 6. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 278 -> 298\n \n 7. Notum Enriched Nano Paste - 4x Layer. SkillTo Assemble: Nano Progra: 462 -> 498\n \n 8. Optimized Co-Weapon Interface. SkillTo Assemble: Comp. Liter: 555 -> 597\n \n 9. Medium Handle. SkillTo Assemble: Weapon Smt: 680 -> 731\n \n 10. 8x Layer Carbon-Notum Alloy Blade. SkillTo Assemble: Weapon Smt: 648 -> 696" +} diff --git a/modules/standard/recipe/recipes/226.json b/modules/standard/recipe/recipes/226.json new file mode 100644 index 0000000..fba5afa --- /dev/null +++ b/modules/standard/recipe/recipes/226.json @@ -0,0 +1,8 @@ +{ + "name": "Compu-Seeker Long Axe -Y9000", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Compu-Seeker Long Axe -Y9000'\n The Construction kit. must be between Quality Level 200 and 200.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add in following order:\n \n 1. Two Handed Edged Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 800 -> 800\n \n 2. Run Speed Cluster - Faded (Leg). SkillTo Assemble: Nano Progra: 200 -> 200\n \n 3. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 300 -> 300\n \n 4. Notum Enriched Nano Paste - 4x Layer. SkillTo Assemble: Nano Progra: 500 -> 500\n \n 5. Optimized Co-Weapon Interface. SkillTo Assemble: Comp. Liter: 600 -> 600\n \n 6. Medium Handle. SkillTo Assemble: Weapon Smt: 735 -> 735\n \n 7. 8x Layer Carbon-Notum Alloy Blade. SkillTo Assemble: Weapon Smt: 700 -> 700\n \n 8. Perception Cluster - Shiny (Ear). SkillTo Assemble: Nano Progra: 600 -> 600\n \n 9. 2h Edged Cluster - Faded (Waist). SkillTo Assemble: Nano Progra: 200 -> 200\n \n 10. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 400 -> 400\n \n 11. 4x Layer Carbon-Notum Alloy Blade. SkillTo Assemble: Weapon Smt: 600 -> 600" +} diff --git a/modules/standard/recipe/recipes/227.json b/modules/standard/recipe/recipes/227.json new file mode 100644 index 0000000..3e72842 --- /dev/null +++ b/modules/standard/recipe/recipes/227.json @@ -0,0 +1,8 @@ +{ + "name": "Cracked Bolter 42mm", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Cracked Bolter 42mm'\n The Construction kit. must be between Quality Level 1 and 23.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add the pieces in the following order:\n \n 1. AssaultRifle Weapons Construction kit.\n \n 2. Nano Pylon. . SkillTo Assemble: Mech. Engi: 2-58\n \n 3. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 2-34\n \n 4. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 2-58\n \n 5. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 2-46\n \n 6. Nano Pylon. . SkillTo Assemble: Mech. Engi: 2-58\n \n 7. Explosion Propulsion Containment Chamber. . SkillTo Assemble: Mech. Engi: 4-80\n \n 8. Lock and Stock. . SkillTo Assemble: Weapon Smt: 4-92\n \n 9. Short Composite Barrel. . SkillTo Assemble: Weapon Smt: 3-75\n \n 10. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 2-58\n \n 11. Triple Pulse Enabler. . SkillTo Assemble: Weapon Smt: 4-98\n \n 12. Auto Targeting Computer -IIR 1. . SkillTo Assemble: Elec. Engi: 2-52\n \n 13. Primitive Freon Bag Cooling System. . SkillTo Assemble: Weapon Smt: 4-92\n \n 14. Gyro Stabilizing Unit. . SkillTo Assemble: Weapon Smt: 4-104" +} diff --git a/modules/standard/recipe/recipes/228.json b/modules/standard/recipe/recipes/228.json new file mode 100644 index 0000000..5d1167c --- /dev/null +++ b/modules/standard/recipe/recipes/228.json @@ -0,0 +1,8 @@ +{ + "name": "Deluxe Blackened Blaster", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Deluxe Blackened Blaster'\n The Construction kit. must be between Quality Level 161 and 199.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add the pieces in the following order:\n \n 1. Rifle Weapons Construction kit.\n \n 2. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 402-498\n \n 3. Ultra-Long Composite Barrel. . SkillTo Assemble: Weapon Smt: 684-846\n \n 4. Energy Conduction Rack. . SkillTo Assemble: Quantum FT: 523-647\n \n 5. Rapid-Reload-And-Fire Gyro. . SkillTo Assemble: Weapon Smt: 644-796\n \n 6. Nano Pylon. . SkillTo Assemble: Mech. Engi: 402-498\n \n 7. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 402-498\n \n 8. Hyper Carbo-Ceramic Cooling System. . SkillTo Assemble: Weapon Smt: 644-796\n \n 9. Nano Pylon. . SkillTo Assemble: Mech. Engi: 402-498\n \n 10. Self-Cleaning KO-CR Device. . SkillTo Assemble: Weapon Smt: 564-696\n \n 11. Energy Pack Interface. . SkillTo Assemble: Elec. Engi: 644-796\n \n 12. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 242-298\n \n 13. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 322-398" +} diff --git a/modules/standard/recipe/recipes/229.json b/modules/standard/recipe/recipes/229.json new file mode 100644 index 0000000..0e4216f --- /dev/null +++ b/modules/standard/recipe/recipes/229.json @@ -0,0 +1,8 @@ +{ + "name": "Deluxe Blackened Blaster Rifle", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Deluxe Blackened Blaster Rifle'\n The Construction kit. must be between Quality Level 161 and 199.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add the pieces in the following order:\n \n 1. Rifle Weapons Construction kit.\n \n 2. Ultra-Long Composite Barrel. . SkillTo Assemble: Weapon Smt: 684-846\n \n 3. Rapid-Reload-And-Fire Gyro. . SkillTo Assemble: Weapon Smt: 644-796\n \n 4. Energy Conduction Rack. . SkillTo Assemble: Quantum FT: 523-647\n \n 5. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 402-498\n \n 6. Nano Pylon. . SkillTo Assemble: Mech. Engi: 402-498\n \n 7. Primitive Freon Bag Cooling System. . SkillTo Assemble: Weapon Smt: 644-796\n \n 8. Notum Enriched Nano Paste - 4x Layer. . SkillTo Assemble: Nano Progra: 402-498\n \n 9. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 322-398\n \n 10. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 242-298\n \n 11. Lock and Stock. . SkillTo Assemble: Weapon Smt: 644-796\n \n 12. Auto Targeting Computer -IIR 1. . SkillTo Assemble: Elec. Engi: 362-448\n \n 13. Jandawit Cleanup Cluster. . SkillTo Assemble: Weapon Smt: 564-696" +} diff --git a/modules/standard/recipe/recipes/23.json b/modules/standard/recipe/recipes/23.json new file mode 100644 index 0000000..be5a47e --- /dev/null +++ b/modules/standard/recipe/recipes/23.json @@ -0,0 +1,63 @@ +{ + "name": "All-Match Augmented Bow Tie", + "author": "", + "items": [ + { + "alias": "All-Match Augmented Bow Tie", + "item_id": 156540 + }, + { + "alias": "Hacker Tool", + "item_id": 87814 + }, + { + "alias": "Sealed Order FPGA-202", + "item_id": 156332 + }, + { + "alias": "Expendable Hologram Camera", + "item_id": 156054 + }, + { + "alias": "ID-extractor", + "item_id": 156339 + }, + { + "alias": "Multi-Form", + "item_id": 156345 + }, + { + "alias": "Hacked Order FPGA-202", + "item_id": 156338 + }, + { + "alias": "ID-data", + "item_id": 156340 + } + ], + "steps": [ + { + "source": "Hacker Tool", + "target": "Sealed Order FPGA-202", + "result": "Hacked Order FPGA-202", + "skills": "BE" + }, + { + "source": "ID-extractor", + "target": "Expendable Hologram Camera", + "result": "ID-data", + "skills": "??" + }, + { + "source": "ID-data", + "target": "Hacked Order FPGA-202", + "result": "All-Match Augmented Bow Tie", + "skills": "PS" + } + ], + "details": [ + { + "text": "Simply perfect for neutral because they don't have token rewards, and excellent for chars based on trade-skills. But you have to kill the Lab Director in order to loot Sealed Order FPGA-202 and this Foreman's mine boss is quite camped :(. Moreover he drops three different Orders, and never the one you want..." + } + ] +} diff --git a/modules/standard/recipe/recipes/230.json b/modules/standard/recipe/recipes/230.json new file mode 100644 index 0000000..282f6cb --- /dev/null +++ b/modules/standard/recipe/recipes/230.json @@ -0,0 +1,8 @@ +{ + "name": "Deluxe Blackhole Mk IX", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Deluxe Blackhole Mk IX'\n The Construction kit. must be between Quality Level 161 and 199.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add in following order:\n \n 1. Shotgun Weapons Construction kit. SkillTo Assemble: Weapon Smt: 644 -> 796\n \n 2. Nano Pylon. SkillTo Assemble: Mech. Engi: 402 -> 498\n \n 3. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 322 -> 398\n \n 4. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 402 -> 498\n \n 5. Ultra-Long Composite Barrel. SkillTo Assemble: Weapon Smt: 684 -> 846\n \n 6. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 242 -> 298\n \n 7. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 402 -> 498\n \n 8. Energy Pack Interface. SkillTo Assemble: Elec. Engi: 644 -> 796\n \n 9. Notum Enriched Nano Paste - 4x Layer. SkillTo Assemble: Nano Progra: 402 -> 498\n \n 10. Rapid-Reload-And-Fire Gyro. SkillTo Assemble: Weapon Smt: 644 -> 796\n \n 11. Energy Conduction Rack. SkillTo Assemble: Quantum FT: 523 -> 647\n \n 12. Nano Pylon. SkillTo Assemble: Mech. Engi: 402 -> 498" +} diff --git a/modules/standard/recipe/recipes/231.json b/modules/standard/recipe/recipes/231.json new file mode 100644 index 0000000..121e8cb --- /dev/null +++ b/modules/standard/recipe/recipes/231.json @@ -0,0 +1,8 @@ +{ + "name": "Deluxe Chunkprojector", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Deluxe Chunkprojector'\n The Construction kit. must be between Quality Level 161 and 199.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add in following order:\n \n 1. Shotgun Weapons Construction kit. SkillTo Assemble: Weapon Smt: 644 -> 796\n \n 2. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 242 -> 298\n \n 3. Explosion Propulsion Containment Chamber. SkillTo Assemble: Quantum FT: 604 -> 746\n \n 4. Nano Pylon. SkillTo Assemble: Mech. Engi: 402 -> 498\n \n 5. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 402 -> 498\n \n 6. Flake Tubing Base Cooling System. SkillTo Assemble: Weapon Smt: 644 -> 796\n \n 7. Lock and Stock. SkillTo Assemble: Weapon Smt: 644 -> 796\n \n 8. Self-Cleaning KO-CR Device. SkillTo Assemble: Weapon Smt: 564 -> 696\n \n 9. Nano Pylon. SkillTo Assemble: Mech. Engi: 402 -> 498\n \n 10. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 322 -> 398\n \n 11. Short Composite Barrel. SkillTo Assemble: Weapon Smt: 523 -> 647\n \n 12. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 402 -> 498" +} diff --git a/modules/standard/recipe/recipes/232.json b/modules/standard/recipe/recipes/232.json new file mode 100644 index 0000000..2ded6fe --- /dev/null +++ b/modules/standard/recipe/recipes/232.json @@ -0,0 +1,8 @@ +{ + "name": "Deluxe Disaffiliation Sniper", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Deluxe Disaffiliation Sniper'\n The Construction kit. must be between Quality Level 161 and 199.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add the pieces in the following order:\n \n 1. Rifle Weapons Construction kit.\n \n 2. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 242-298\n \n 3. Nano Pylon. . SkillTo Assemble: Mech. Engi: 402-498\n \n 4. Runtime Critical Area Analyzer. . SkillTo Assemble: Weapon Smt: 644-796\n \n 5. Notum Enriched Nano Paste - 4x Layer. . SkillTo Assemble: Nano Progra: 402-498\n \n 6. Explosion Propulsion Containment Chamber. . SkillTo Assemble: Mech. Engi: 564-696\n \n 7. Lock and Stock. . SkillTo Assemble: Weapon Smt: 644-796\n \n 8. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 402-498\n \n 9. Nano Pylon. . SkillTo Assemble: Mech. Engi: 402-498\n \n 10. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 322-398\n \n 11. Auto Targeting Computer -IIR 2-Groper-. . SkillTo Assemble: Elec. Engi: 402-498\n \n 12. Primitive Freon Bag Cooling System. . SkillTo Assemble: Weapon Smt: 644-796\n \n 13. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 402-498\n \n 14. Ultra-Long Composite Barrel. . SkillTo Assemble: Weapon Smt: 684-846" +} diff --git a/modules/standard/recipe/recipes/233.json b/modules/standard/recipe/recipes/233.json new file mode 100644 index 0000000..d7c1b69 --- /dev/null +++ b/modules/standard/recipe/recipes/233.json @@ -0,0 +1,8 @@ +{ + "name": "Deluxe E-Beamer", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Deluxe E-Beamer'\n The Construction kit. must be between Quality Level 161 and 199.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add in following order:\n \n 1. Energy Weapons Construction kit. SkillTo Assemble: Weapon Smt: 644 -> 796\n \n 2. Short Composite Barrel. SkillTo Assemble: Weapon Smt: 523 -> 647\n \n 3. Nano Pylon. SkillTo Assemble: Mech. Engi: 402 -> 498\n \n 4. Flake Tubing Base Cooling System. SkillTo Assemble: Weapon Smt: 644 -> 796\n \n 5. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 402 -> 498\n \n 6. Self-Cleaning KO-CR Device. SkillTo Assemble: Weapon Smt: 564 -> 696\n \n 7. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 242 -> 298\n \n 8. Energy Pack Interface. SkillTo Assemble: Elec. Engi: 644 -> 796\n \n 9. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 402 -> 498\n \n 10. Nano Pylon. SkillTo Assemble: Mech. Engi: 402 -> 498\n \n 11. Energy Conduction Rack. SkillTo Assemble: Quantum FT: 523 -> 647\n \n 12. Notum Enriched Nano Paste - 4x Layer. SkillTo Assemble: Nano Progra: 402 -> 498\n \n 13. Rapid-Reload-And-Fire Gyro. SkillTo Assemble: Weapon Smt: 644 -> 796\n \n 14. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 322 -> 398" +} diff --git a/modules/standard/recipe/recipes/234.json b/modules/standard/recipe/recipes/234.json new file mode 100644 index 0000000..59c8f0c --- /dev/null +++ b/modules/standard/recipe/recipes/234.json @@ -0,0 +1,8 @@ +{ + "name": "Deluxe Flamethrower", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Deluxe Flamethrower'\n The Construction kit. must be between Quality Level 161 and 199.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add in following order:\n \n 1. AssaultRifle Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 644 -> 796\n \n 2. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 402 -> 498\n \n 3. Short Composite Barrel. SkillTo Assemble: Weapon Smt: 523 -> 647\n \n 4. Nano Pylon. SkillTo Assemble: Mech. Engi: 402 -> 498\n \n 5. Nano Pylon. SkillTo Assemble: Mech. Engi: 402 -> 498\n \n 6. Primitive Freon Bag Cooling System. SkillTo Assemble: Weapon Smt: 644 -> 796\n \n 7. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 242 -> 298\n \n 8. Compression Chamber for Chemicals. SkillTo Assemble: Weapon Smt: 684 -> 846\n \n 9. Auto Targeting Computer -IIR 1. SkillTo Assemble: Elec. Engi: 362 -> 448\n \n 10. Plasma Streamer Interface Nozzle. SkillTo Assemble: Chemistry: 644 -> 796\n \n 11. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 322 -> 398\n \n 12. Self-Cleaning KO-CR Device. SkillTo Assemble: Weapon Smt: 564 -> 696" +} diff --git a/modules/standard/recipe/recipes/235.json b/modules/standard/recipe/recipes/235.json new file mode 100644 index 0000000..e4a6c2a --- /dev/null +++ b/modules/standard/recipe/recipes/235.json @@ -0,0 +1,8 @@ +{ + "name": "Deluxe Grenade-Thrower", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Deluxe Grenade-Thrower'\n The Construction kit. must be between Quality Level 161 and 199.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add in following order:\n \n 1. Grenades Construction kit. SkillTo Assemble: Weapon Smt: 644 -> 796\n \n 2. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 402 -> 498\n \n 3. Nano Pylon. SkillTo Assemble: Mech. Engi: 402 -> 498\n \n 4. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 322 -> 398\n \n 5. Poison Chemical Combination Chamber. SkillTo Assemble: Chemistry: 644 -> 796\n \n 6. Ultra Short Composite Barrel. SkillTo Assemble: Weapon Smt: 483 -> 597\n \n 7. Notum Enriched Nano Paste - 4x Layer. SkillTo Assemble: Nano Progra: 402 -> 498\n \n 8. Flake Tubing Base Cooling System. SkillTo Assemble: Weapon Smt: 644 -> 796\n \n 9. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 242 -> 298" +} diff --git a/modules/standard/recipe/recipes/236.json b/modules/standard/recipe/recipes/236.json new file mode 100644 index 0000000..36d5fda --- /dev/null +++ b/modules/standard/recipe/recipes/236.json @@ -0,0 +1,8 @@ +{ + "name": "Deluxe Heavy Grinner", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Deluxe Heavy Grinner'\n The Construction kit. must be between Quality Level 161 and 199.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add in following order:\n \n 1. Pistol Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 644 -> 796\n \n 2. Composite Barrel. SkillTo Assemble: Weapon Smt: 604 -> 746\n \n 3. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 402 -> 498\n \n 4. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 402 -> 498\n \n 5. Self-Cleaning KO-CR Device. SkillTo Assemble: Weapon Smt: 564 -> 696\n \n 6. Triple Pulse Enabler. SkillTo Assemble: Weapon Smt: 684 -> 846\n \n 7. Lock and Stock. SkillTo Assemble: Weapon Smt: 644 -> 796\n \n 8. Nano Pylon. SkillTo Assemble: Mech. Engi: 402 -> 498\n \n 9. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 322 -> 398\n \n 10. Nano Pylon. SkillTo Assemble: Mech. Engi: 402 -> 498\n \n 11. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 242 -> 298\n \n 12. Explosion Propulsion Containment Chamber. SkillTo Assemble: Mech. Engi: 564 -> 696" +} diff --git a/modules/standard/recipe/recipes/237.json b/modules/standard/recipe/recipes/237.json new file mode 100644 index 0000000..0209fc1 --- /dev/null +++ b/modules/standard/recipe/recipes/237.json @@ -0,0 +1,8 @@ +{ + "name": "Deluxe Heavy Lead Sprayer", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Deluxe Heavy Lead Sprayer'\n The Construction kit. must be between Quality Level 161 and 199.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add in following order:\n \n 1. AssaultRifle Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 644 -> 796\n \n 2. Nano Pylon. SkillTo Assemble: Mech. Engi: 402 -> 498\n \n 3. Explosion Propulsion Containment Chamber. SkillTo Assemble: Mech. Engi: 564 -> 696\n \n 4. Composite Barrel. SkillTo Assemble: Weapon Smt: 604 -> 746\n \n 5. Gyro Stabilizing Unit. SkillTo Assemble: Weapon Smt: 724 -> 896\n \n 6. Triple Pulse Enabler. SkillTo Assemble: Weapon Smt: 684 -> 846\n \n 7. Jandawit Cleanup Cluster. SkillTo Assemble: Weapon Smt: 564 -> 696\n \n 8. Lock and Stock. SkillTo Assemble: Weapon Smt: 644 -> 796\n \n 9. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 242 -> 298\n \n 10. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 402 -> 498\n \n 11. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 322 -> 398" +} diff --git a/modules/standard/recipe/recipes/238.json b/modules/standard/recipe/recipes/238.json new file mode 100644 index 0000000..1f222b1 --- /dev/null +++ b/modules/standard/recipe/recipes/238.json @@ -0,0 +1,8 @@ +{ + "name": "Deluxe Mausser Particle Streamer", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Deluxe Mausser Particle Streamer'\n The Construction kit. must be between Quality Level 161 and 199.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add the pieces in the following order:\n \n 1. Submachinegun Weapons Construction kit.\n \n 2. Nano Pylon. . SkillTo Assemble: Mech. Engi: 402-498\n \n 3. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 322-398\n \n 4. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 402-498\n \n 5. Ultra-Long Composite Barrel. . SkillTo Assemble: Weapon Smt: 684-846\n \n 6. Auto Targeting Computer -IIR 1. . SkillTo Assemble: Elec. Engi: 362-448\n \n 7. Triple Pulse Enabler. . SkillTo Assemble: Weapon Smt: 684-846\n \n 8. Lock and Stock. . SkillTo Assemble: Weapon Smt: 644-796\n \n 9. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 242-298\n \n 10. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 402-498\n \n 11. Nano Pylon. . SkillTo Assemble: Mech. Engi: 402-498\n \n 12. Explosion Propulsion Containment Chamber. . SkillTo Assemble: Mech. Engi: 564-696" +} diff --git a/modules/standard/recipe/recipes/239.json b/modules/standard/recipe/recipes/239.json new file mode 100644 index 0000000..650013e --- /dev/null +++ b/modules/standard/recipe/recipes/239.json @@ -0,0 +1,8 @@ +{ + "name": "Deluxe Megajolt", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Deluxe Megajolt'\n The Construction kit. must be between Quality Level 161 and 199.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add in following order:\n \n 1. Shotgun Weapons Construction kit. SkillTo Assemble: Weapon Smt: 644 -> 796\n \n 2. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 402 -> 498\n \n 3. Nano Pylon. SkillTo Assemble: Mech. Engi: 402 -> 498\n \n 4. Energy Pack Interface. SkillTo Assemble: Elec. Engi: 644 -> 796\n \n 5. Energy Conduction Rack. SkillTo Assemble: Quantum FT: 523 -> 647\n \n 6. Notum Enriched Nano Paste - 4x Layer. SkillTo Assemble: Nano Progra: 402 -> 498\n \n 7. Nano Pylon. SkillTo Assemble: Mech. Engi: 402 -> 498\n \n 8. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 242 -> 298\n \n 9. Auto Targeting Computer -IIR 2-Groper-. SkillTo Assemble: Elec. Engi: 402 -> 498\n \n 10. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 322 -> 398\n \n 11. Primitive Freon Bag Cooling System. SkillTo Assemble: Weapon Smt: 644 -> 796\n \n 12. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 402 -> 498\n \n 13. Composite Barrel. SkillTo Assemble: Weapon Smt: 604 -> 746" +} diff --git a/modules/standard/recipe/recipes/24.json b/modules/standard/recipe/recipes/24.json new file mode 100644 index 0000000..6e0c263 --- /dev/null +++ b/modules/standard/recipe/recipes/24.json @@ -0,0 +1,69 @@ +{ + "name": "Bracelet Circuitry", + "author": "", + "items": [ + { + "alias": "Bracelet Circuitry", + "item_id": 150927 + }, + { + "alias": "Screwdriver", + "item_id": 150922 + }, + { + "alias": "Robot Junk", + "item_id": 42619 + }, + { + "alias": "Nano Circuitry Wire", + "item_id": 150919 + }, + { + "alias": "Silver Filigree Wire", + "item_id": 150932 + }, + { + "alias": "Nano Sensor", + "item_id": 150924 + }, + { + "alias": "Interfaced Nano Sensor", + "item_id": 150925 + }, + { + "alias": "Silver Nano Circuitry Filigree Wire", + "item_id": 150920 + } + ], + "steps": [ + { + "source": "Screwdriver", + "target": "Robot Junk", + "result": "Nano Sensor", + "skills": "ME" + }, + { + "source": "Nano Circuitry Wire", + "target": "Nano Sensor", + "result": "Interfaced Nano Sensor", + "skills": "EE" + }, + { + "source": "Nano Circuitry Wire", + "target": "Silver Filigree Wire", + "result": "Silver Nano Circuitry Filigree Wire", + "skills": "??" + }, + { + "source": "Silver Nano Circuitry Filigree Wire", + "target": "Interfaced Nano Sensor", + "result": "Bracelet Circuitry", + "skills": "??" + } + ], + "details": [ + { + "text": "Used in the construction of Arul Saba Bracelets." + } + ] +} diff --git a/modules/standard/recipe/recipes/240.json b/modules/standard/recipe/recipes/240.json new file mode 100644 index 0000000..6cf9963 --- /dev/null +++ b/modules/standard/recipe/recipes/240.json @@ -0,0 +1,8 @@ +{ + "name": "Deluxe Mini-Shotgun", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Deluxe Mini-Shotgun'\n The Construction kit. must be between Quality Level 161 and 199.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add in following order:\n \n 1. Shotgun Weapons Construction kit. SkillTo Assemble: Weapon Smt: 644 -> 796\n \n 2. Nano Pylon. SkillTo Assemble: Mech. Engi: 402 -> 498\n \n 3. Nano-Interfaced Cooling System. SkillTo Assemble: Weapon Smt: 644 -> 796\n \n 4. Short Composite Barrel. SkillTo Assemble: Weapon Smt: 523 -> 647\n \n 5. Nano Pylon. SkillTo Assemble: Mech. Engi: 402 -> 498\n \n 6. Self-Cleaning KO-CR Device. SkillTo Assemble: Weapon Smt: 564 -> 696\n \n 7. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 402 -> 498\n \n 8. Explosion Propulsion Containment Chamber. SkillTo Assemble: Quantum FT: 604 -> 746\n \n 9. Rapid-Reload-And-Fire Gyro. SkillTo Assemble: Weapon Smt: 644 -> 796\n \n 10. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 242 -> 298\n \n 11. Lock and Stock. SkillTo Assemble: Weapon Smt: 644 -> 796" +} diff --git a/modules/standard/recipe/recipes/241.json b/modules/standard/recipe/recipes/241.json new file mode 100644 index 0000000..f57e50e --- /dev/null +++ b/modules/standard/recipe/recipes/241.json @@ -0,0 +1,8 @@ +{ + "name": "Deluxe Plasmaprojector", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Deluxe Plasmaprojector'\n The Construction kit. must be between Quality Level 161 and 199.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add in following order:\n \n 1. AssaultRifle Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 644 -> 796\n \n 2. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 242 -> 298\n \n 3. Notum Enriched Nano Paste - 4x Layer. SkillTo Assemble: Nano Progra: 402 -> 498\n \n 4. Energy Conduction Rack. SkillTo Assemble: Quantum FT: 523 -> 647\n \n 5. Long Composite Barrel. SkillTo Assemble: Weapon Smt: 644 -> 796\n \n 6. Hyper Carbo-Ceramic Cooling System. SkillTo Assemble: Weapon Smt: 644 -> 796\n \n 7. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 322 -> 398\n \n 8. Runtime Critical Area Analyzer. SkillTo Assemble: Weapon Smt: 644 -> 796\n \n 9. Energy Pack Interface. SkillTo Assemble: Elec. Engi: 644 -> 796\n \n 10. Nano Pylon. SkillTo Assemble: Mech. Engi: 402 -> 498" +} diff --git a/modules/standard/recipe/recipes/242.json b/modules/standard/recipe/recipes/242.json new file mode 100644 index 0000000..480ee3b --- /dev/null +++ b/modules/standard/recipe/recipes/242.json @@ -0,0 +1,8 @@ +{ + "name": "Deluxe Subturbine", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Deluxe Subturbine'\n The Construction kit. must be between Quality Level 161 and 199.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add in following order:\n \n 1. AssaultRifle Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 644 -> 796\n \n 2. Nano Pylon. SkillTo Assemble: Mech. Engi: 402 -> 498\n \n 3. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 242 -> 298\n \n 4. Hyper Carbo-Ceramic Cooling System. SkillTo Assemble: Weapon Smt: 644 -> 796\n \n 5. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 322 -> 398\n \n 6. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 402 -> 498\n \n 7. Notum Enriched Nano Paste - 4x Layer. SkillTo Assemble: Nano Progra: 402 -> 498\n \n 8. Lock and Stock. SkillTo Assemble: Weapon Smt: 644 -> 796\n \n 9. Nano Pylon. SkillTo Assemble: Mech. Engi: 402 -> 498\n \n 10. Self-Cleaning KO-CR Device. SkillTo Assemble: Weapon Smt: 564 -> 696\n \n 11. Triple Pulse Enabler. SkillTo Assemble: Weapon Smt: 684 -> 846\n \n 12. Short Composite Barrel. SkillTo Assemble: Weapon Smt: 523 -> 647\n \n 13. Explosion Propulsion Containment Chamber. SkillTo Assemble: Mech. Engi: 564 -> 696\n \n 14. Gyro Stabilizing Unit. SkillTo Assemble: Weapon Smt: 724 -> 896\n \n 15. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 402 -> 498" +} diff --git a/modules/standard/recipe/recipes/243.json b/modules/standard/recipe/recipes/243.json new file mode 100644 index 0000000..3d0c4df --- /dev/null +++ b/modules/standard/recipe/recipes/243.json @@ -0,0 +1,8 @@ +{ + "name": "Deluxe Supernova Mk VI", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Deluxe Supernova Mk VI'\n The Construction kit. must be between Quality Level 161 and 199.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add the pieces in the following order:\n \n 1. Energy Weapons Construction kit.\n \n 2. Auto Targeting C. -IIR 5 -Powermolder-. . SkillTo Assemble: Elec. Engi: 523-647\n \n 3. Energy Conduction Rack. . SkillTo Assemble: Quantum FT: 523-647\n \n 4. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 402-498\n \n 5. Auto Targeting Computer -IIR 4 -Ultra-. . SkillTo Assemble: Elec. Engi: 483-597\n \n 6. Ultra-Long Composite Barrel. . SkillTo Assemble: Weapon Smt: 684-846\n \n 7. Energy Pack Interface. . SkillTo Assemble: Elec. Engi: 644-796\n \n 8. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 402-498\n \n 9. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 242-298\n \n 10. Nano Pylon. . SkillTo Assemble: Mech. Engi: 402-498\n \n 11. Runtime Critical Area Analyzer. . SkillTo Assemble: Weapon Smt: 644-796\n \n 12. Nano Pylon. . SkillTo Assemble: Mech. Engi: 402-498" +} diff --git a/modules/standard/recipe/recipes/244.json b/modules/standard/recipe/recipes/244.json new file mode 100644 index 0000000..0ee7e9a --- /dev/null +++ b/modules/standard/recipe/recipes/244.json @@ -0,0 +1,8 @@ +{ + "name": "Deluxe Suppressor", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Deluxe Suppressor'\n The Construction kit. must be between Quality Level 161 and 199.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add the pieces in the following order:\n \n 1. Submachinegun Weapons Construction kit.\n \n 2. Nano Pylon. . SkillTo Assemble: Mech. Engi: 402-498\n \n 3. Triple Pulse Enabler. . SkillTo Assemble: Weapon Smt: 684-846\n \n 4. Lock and Stock. . SkillTo Assemble: Weapon Smt: 644-796\n \n 5. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 242-298\n \n 6. Gyro Stabilizing Unit. . SkillTo Assemble: Weapon Smt: 724-896\n \n 7. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 402-498\n \n 8. Ultra-Long Composite Barrel. . SkillTo Assemble: Weapon Smt: 684-846\n \n 9. Nano Pylon. . SkillTo Assemble: Mech. Engi: 402-498\n \n 10. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 402-498\n \n 11. Explosion Propulsion Containment Chamber. . SkillTo Assemble: Mech. Engi: 564-696" +} diff --git a/modules/standard/recipe/recipes/245.json b/modules/standard/recipe/recipes/245.json new file mode 100644 index 0000000..a685883 --- /dev/null +++ b/modules/standard/recipe/recipes/245.json @@ -0,0 +1,8 @@ +{ + "name": "Disaffiliation Sniper", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Disaffiliation Sniper'\n The Construction kit. must be between Quality Level 81 and 100.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add the pieces in the following order:\n \n 1. Rifle Weapons Construction kit.\n \n 2. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 162-200\n \n 3. Auto Targeting Computer -IIR 2-Groper-. . SkillTo Assemble: Elec. Engi: 202-250\n \n 4. Primitive Freon Bag Cooling System. . SkillTo Assemble: Weapon Smt: 324-400\n \n 5. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 202-250\n \n 6. Ultra-Long Composite Barrel. . SkillTo Assemble: Weapon Smt: 344-425\n \n 7. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 122-150\n \n 8. Nano Pylon. . SkillTo Assemble: Mech. Engi: 202-250\n \n 9. Runtime Critical Area Analyzer. . SkillTo Assemble: Weapon Smt: 324-400\n \n 10. Notum Enriched Nano Paste - 4x Layer. . SkillTo Assemble: Nano Progra: 202-250\n \n 11. Explosion Propulsion Containment Chamber. . SkillTo Assemble: Mech. Engi: 284-350\n \n 12. Lock and Stock. . SkillTo Assemble: Weapon Smt: 324-400\n \n 13. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 202-250\n \n 14. Nano Pylon. . SkillTo Assemble: Mech. Engi: 202-250" +} diff --git a/modules/standard/recipe/recipes/246.json b/modules/standard/recipe/recipes/246.json new file mode 100644 index 0000000..c750d8c --- /dev/null +++ b/modules/standard/recipe/recipes/246.json @@ -0,0 +1,8 @@ +{ + "name": "Dulled Thagh Whings", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Dulled Thagh Whings'\nThe Construction kit. must be between Quality Level 1 and 23.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\nAdd the pieces in the following order:\n\n 1. Piercing Weapons Construction kit.\n\n 2. Notum Enriched Nano Paste - 4x Layer. . SkillTo Assemble: Nano Progra: 2-58\n\n 3. Optimized Co-Weapon Interface. . SkillTo Assemble: Comp. Liter: 3-69\n\n 4. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 2-46\n\n 5. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 2-34\n\n 6. Medium Handle. . SkillTo Assemble: Weapon Smt: 4-85" +} diff --git a/modules/standard/recipe/recipes/247.json b/modules/standard/recipe/recipes/247.json new file mode 100644 index 0000000..ff91f11 --- /dev/null +++ b/modules/standard/recipe/recipes/247.json @@ -0,0 +1,8 @@ +{ + "name": "Dull Notum Spear", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Dull Notum Spear'\n The Construction kit. must be between Quality Level 1 and 20.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add the pieces in the following order:\n \n 1. Piercing Weapons Construction kit.\n \n 2. Medium Handle. . SkillTo Assemble: Weapon Smt: 4-74\n \n 3. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 2-40\n \n 4. Energy Impact Super Conductor. . SkillTo Assemble: Elec. Engi: 4-80\n \n 5. Optimized Co-Weapon Interface. . SkillTo Assemble: Comp. Liter: 3-60\n \n 6. Notum Enriched Nano Paste - 4x Layer. . SkillTo Assemble: Nano Progra: 2-50\n \n 7. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 2-30" +} diff --git a/modules/standard/recipe/recipes/248.json b/modules/standard/recipe/recipes/248.json new file mode 100644 index 0000000..d98efe5 --- /dev/null +++ b/modules/standard/recipe/recipes/248.json @@ -0,0 +1,8 @@ +{ + "name": "Dull Notum Staff", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Dull Notum Staff'\n The Construction kit. must be between Quality Level 1 and 20.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add the pieces in the following order:\n \n 1. Two Handed Blunt Weapons Construction kit.\n \n 2. Short Handle. . SkillTo Assemble: Weapon Smt: 4-70\n \n 3. 4x Layer Carbon-Notum Alloy Rod. . SkillTo Assemble: Weapon Smt: 4-90\n \n 4. Basic Co-Weapon Interface. . SkillTo Assemble: Comp. Liter: 2-45\n \n 5. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 2-40\n \n 6. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 2-30\n \n 7. Notum Enriched Nano Paste - 4x Layer. . SkillTo Assemble: Nano Progra: 2-50\n \n 8. 8x Layer Carbon-Notum Alloy Rod. . SkillTo Assemble: Weapon Smt: 5-95" +} diff --git a/modules/standard/recipe/recipes/249.json b/modules/standard/recipe/recipes/249.json new file mode 100644 index 0000000..f03a370 --- /dev/null +++ b/modules/standard/recipe/recipes/249.json @@ -0,0 +1,8 @@ +{ + "name": "E-Beamer", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'E-Beamer'\n The Construction kit. must be between Quality Level 81 and 100.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add in following order:\n \n 1. Energy Weapons Construction kit. SkillTo Assemble: Weapon Smt: 324 -> 400\n \n 2. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 202 -> 250\n \n 3. Energy Conduction Rack. SkillTo Assemble: Quantum FT: 263 -> 325\n \n 4. Rapid-Reload-And-Fire Gyro. SkillTo Assemble: Weapon Smt: 324 -> 400\n \n 5. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 162 -> 200\n \n 6. Self-Cleaning KO-CR Device. SkillTo Assemble: Weapon Smt: 284 -> 350\n \n 7. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 122 -> 150\n \n 8. Flake Tubing Base Cooling System. SkillTo Assemble: Weapon Smt: 324 -> 400\n \n 9. Energy Pack Interface. SkillTo Assemble: Elec. Engi: 324 -> 400\n \n 10. Nano Pylon. SkillTo Assemble: Mech. Engi: 202 -> 250\n \n 11. Notum Enriched Nano Paste - 4x Layer. SkillTo Assemble: Nano Progra: 202 -> 250\n \n 12. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 202 -> 250\n \n 13. Short Composite Barrel. SkillTo Assemble: Weapon Smt: 263 -> 325\n \n 14. Nano Pylon. SkillTo Assemble: Mech. Engi: 202 -> 250" +} diff --git a/modules/standard/recipe/recipes/25.json b/modules/standard/recipe/recipes/25.json new file mode 100644 index 0000000..98ab094 --- /dev/null +++ b/modules/standard/recipe/recipes/25.json @@ -0,0 +1,125 @@ +{ + "name": "Bracelet of Arul Saba", + "author": "", + "items": [ + { + "alias": "Bracelet Circuitry", + "item_id": 150927 + }, + { + "alias": "Unbalanced Bracelet Blueprints", + "item_id": 150868 + }, + { + "alias": "Balance Adjuster - Left", + "item_id": 150910 + }, + { + "alias": "Balance Adjuster - Right", + "item_id": 150911 + }, + { + "alias": "Personal Furnace", + "item_id": 150930 + }, + { + "alias": "Small Silver Ingot", + "item_id": 150912 + }, + { + "alias": "Uncut Arbiter Gem of the Eternal Juggernaut", + "item_id": 165390 + }, + { + "alias": "Liquid Silver", + "item_id": 150915 + }, + { + "alias": "Bracelet of Arul Saba (Eternal Juggernaut - 5/5 - Left)", + "item_id": 165409 + }, + { + "alias": "Monarch Gem of the Eternal Juggernaut", + "item_id": 165386 + }, + { + "alias": "Monarch Gem of the Infinite Moebius", + "item_id": 168429 + }, + { + "alias": "Monarch Gem of the Bruised Brawler", + "item_id": 168470 + }, + { + "alias": "Monarch Gem of Burning Plasma", + "item_id": 168510 + }, + { + "alias": "Monarch Gem of the Searing Desert", + "item_id": 168550 + }, + { + "alias": "Monarch Gem of the Frozen Tundra", + "item_id": 168617 + }, + { + "alias": "Monarch Gem of the Jagged Landscape", + "item_id": 168714 + }, + { + "alias": "Monarch Gem of the Rainbow-hued Sky", + "item_id": 168754 + }, + { + "alias": "Monarch Gem of Corroded Glory", + "item_id": 168794 + }, + { + "alias": "Monarch Gem of the Silent Killer", + "item_id": 168840 + }, + { + "alias": "Monarch Gem of the Frail Juggernaut", + "item_id": 229981 + }, + { + "alias": "Monarch Gem of the Broken Moebius", + "item_id": 230042 + }, + { + "alias": "Monarch Gem of the Novice Brawler", + "item_id": 230048 + }, + { + "alias": "Monarch Gem of Fiery Plasma", + "item_id": 230089 + }, + { + "alias": "Monarch Gem of the Empty Desert", + "item_id": 230133 + }, + { + "alias": "Monarch Gem of the Icy Tundra", + "item_id": 230173 + }, + { + "alias": "Monarch Gem of the Craggy Landscape", + "item_id": 230213 + }, + { + "alias": "Monarch Gem of the Scarlet Sky", + "item_id": 230253 + }, + { + "alias": "Monarch Gem of Decayed Glory", + "item_id": 230293 + }, + { + "alias": "Monarch Gem of the Insidious Killer", + "item_id": 230333 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients \n------------------------------\n\n *** NOTE: NB is the number of gems you want on your bracelet *** \n\n#L \"Bracelet Circuitry\" \"150927\" x NB\n\n\n#L \"Unbalanced Bracelet Blueprints\" \"150868\" ( QL depending on NB )\n\n\n#L \"Balance Adjuster - Left\" \"150910\"\n\nor\n#L \"Balance Adjuster - Right\" \"150911\"\n\n\n#L \"Personal Furnace\" \"150930\"\n\n\n#L \"Small Silver Ingot\" \"150912\"\n\n\nSpecial Gem x NB\n( ie : #L \"Arbiter Gem of the Eternal Juggernaut\" \"165390\" )\n\n\n------------------------------\nRecipe \n------------------------------\n\nRepeat NB time:\n\nBracelet Circuitry\n+\nUnbalanced Bracelet Blueprints\n=\n\n#L \"Unfinished Bracelet of Arul Saba\" \"150817\"\nSkills: | ME,EE |\n\n------------------------------\n\nThen:\n\nPersonal Furnace\n+\nSmall Silver Ingot\n=\n\n#L \"Liquid Silver\" \"150915\"\nSkills: | ME |\n\n------------------------------\n\nLiquid Silver\n+\nUnfinished Bracelet of Arul Saba\n=\n\n#L \"Bracelet of Arul Saba\" \"150850\"\nSkills: | ME,EE |\n\n------------------------------\n\nAnd to finish, Repeat NB times:\n\nspecial Gem\n+\nBracelet of Arul Saba\n=\n\n#L \"Bracelet of Arul Saba\" \"165409\"\nSkills: | ME,EE |\n\n------------------------------\nComments\n------------------------------\n\nThere are five different types of special gems. you cannot fit the Bracelet of Arul Saba with two gems of the same kind. moreover you have to fit it in a special order :\n\n1 - Arbiter Gem\n2 - Monarch Gem\n3 - Emperor Gem\n4 - Stellar Jewel\n5 - Galactic Jewel\n\nEach of these gems have 20 different variations, all giving different buffs. For example, here is the list of all the variations of the Monarch Gem and what they buff:\n\n#L \"Monarch Gem of the Eternal Juggernaut\" \"165386\" - Max Health\n#L \"Monarch Gem of the Infinite Moebius\" \"168429\" - Max Health, Nano Resist, Max Nano\n#L \"Monarch Gem of the Bruised Brawler\" \"168470\" - Max Health, Add Melee Damage\n#L \"Monarch Gem of Burning Plasma\" \"168510\" - Max Health, Add Energy Damage\n#L \"Monarch Gem of the Searing Desert\" \"168550\" - Max Health, Add Fire Damage\n#L \"Monarch Gem of the Frozen Tundra\" \"168617\" - Max Health, Add Cold Damage\n#L \"Monarch Gem of the Jagged Landscape\" \"168714\" - Max Health, Add Projectile Damage\n#L \"Monarch Gem of the Rainbow-hued Sky\" \"168754\" - Max Health, Add Radiation Damage\n#L \"Monarch Gem of Corroded Glory\" \"168794\" - Max Health, Add Chemical Damage\n#L \"Monarch Gem of the Silent Killer\" \"168840\" - Max Health, Add Poison Damage\n \nThese give the same buff but at Half value:\n\n#L \"Monarch Gem of the Frail Juggernaut\" \"229981\" - Max Health,\n#L \"Monarch Gem of the Broken Moebius\" \"230042\" - Max Health, Nano Resist, Max Nano\n#L \"Monarch Gem of the Novice Brawler\" \"230048\" - Max Health, Add Melee Damage\n#L \"Monarch Gem of Fiery Plasma\" \"230089\" - Max Health, Add Energy Damage\n#L \"Monarch Gem of the Empty Desert\" \"230133\" - Max Health, Add Fire Damage\n#L \"Monarch Gem of the Icy Tundra\" \"230173\" - Max Health, Add Cold Damage\n#L \"Monarch Gem of the Craggy Landscape\" \"230213\" - Max Health, Add Projectile Damage\n#L \"Monarch Gem of the Scarlet Sky\" \"230253\" - Max Health, Add Radiation Damage\n#L \"Monarch Gem of Decayed Glory\" \"230293\" - Max Health, Add Chemical Damage\n#L \"Monarch Gem of the Insidious Killer\" \"230333\" - Max Health, Add Poison Damage" +} diff --git a/modules/standard/recipe/recipes/250.json b/modules/standard/recipe/recipes/250.json new file mode 100644 index 0000000..8d30743 --- /dev/null +++ b/modules/standard/recipe/recipes/250.json @@ -0,0 +1,8 @@ +{ + "name": "Edge-Less Notum Spear", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Edge-Less Notum Spear'\n The Construction kit. must be between Quality Level 21 and 40.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add the pieces in the following order:\n \n 1. Piercing Weapons Construction kit.\n \n 2. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 32-60\n \n 3. Notum Enriched Nano Paste - 4x Layer. . SkillTo Assemble: Nano Progra: 52-100\n \n 4. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 42-80\n \n 5. Energy Impact Super Conductor. . SkillTo Assemble: Elec. Engi: 84-160\n \n 6. Medium Handle. . SkillTo Assemble: Weapon Smt: 77-147\n \n 7. Optimized Co-Weapon Interface. . SkillTo Assemble: Comp. Liter: 63-120" +} diff --git a/modules/standard/recipe/recipes/251.json b/modules/standard/recipe/recipes/251.json new file mode 100644 index 0000000..2275532 --- /dev/null +++ b/modules/standard/recipe/recipes/251.json @@ -0,0 +1,8 @@ +{ + "name": "Edge-Less Notum Staff", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Edge-Less Notum Staff'\n The Construction kit. must be between Quality Level 21 and 40.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add the pieces in the following order:\n \n 1. Two Handed Blunt Weapons Construction kit.\n \n 2. Basic Co-Weapon Interface. . SkillTo Assemble: Comp. Liter: 47-90\n \n 3. 4x Layer Carbon-Notum Alloy Rod. . SkillTo Assemble: Weapon Smt: 94-180\n \n 4. Short Handle. . SkillTo Assemble: Weapon Smt: 74-140\n \n 5. Notum Enriched Nano Paste - 4x Layer. . SkillTo Assemble: Nano Progra: 52-100\n \n 6. 8x Layer Carbon-Notum Alloy Rod. . SkillTo Assemble: Weapon Smt: 100-190\n \n 7. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 32-60\n \n 8. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 42-80" +} diff --git a/modules/standard/recipe/recipes/252.json b/modules/standard/recipe/recipes/252.json new file mode 100644 index 0000000..2be41c7 --- /dev/null +++ b/modules/standard/recipe/recipes/252.json @@ -0,0 +1,8 @@ +{ + "name": "Edge-Less Whings", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Edge-Less Whings'\n The Construction kit. must be between Quality Level 21 and 40.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add in following order:\n \n 1. Two Handed Edged Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 84 -> 160\n \n 2. Notum Enriched Nano Paste - 4x Layer. SkillTo Assemble: Nano Progra: 52 -> 100\n \n 3. 4x Layer Carbon-Notum Alloy Blade. SkillTo Assemble: Weapon Smt: 63 -> 120\n \n 4. 8x Layer Carbon-Notum Alloy Blade. SkillTo Assemble: Weapon Smt: 74 -> 140\n \n 5. Long Handle. SkillTo Assemble: Weapon Smt: 79 -> 150\n \n 6. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 42 -> 80\n \n 7. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 32 -> 60\n \n 8. Optimized Co-Weapon Interface. SkillTo Assemble: Comp. Liter: 63 -> 120" +} diff --git a/modules/standard/recipe/recipes/253.json b/modules/standard/recipe/recipes/253.json new file mode 100644 index 0000000..6700c09 --- /dev/null +++ b/modules/standard/recipe/recipes/253.json @@ -0,0 +1,8 @@ +{ + "name": "Elite MTI Aleph 99", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Elite MTI Aleph 99'\n The Construction kit. must be between Quality Level 200 and 200.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add the pieces in the following order:\n \n 1. Submachinegun Weapons Construction kit.\n \n 2. Ultra-Long Composite Barrel. . SkillTo Assemble: Weapon Smt: 850-850\n \n 3. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 500-500\n \n 4. Lock and Stock. . SkillTo Assemble: Weapon Smt: 800-800\n \n 5. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 300-300\n \n 6. Nano Pylon. . SkillTo Assemble: Mech. Engi: 500-500\n \n 7. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 400-400\n \n 8. Stamina Cluster - Bright (Leg). . SkillTo Assemble: Nano Progra: 400-400\n \n 9. Triple Pulse Enabler. . SkillTo Assemble: Weapon Smt: 850-850\n \n 10. Explosion Propulsion Containment Chamber. . SkillTo Assemble: Mech. Engi: 700-700\n \n 11. Nano Pylon. . SkillTo Assemble: Mech. Engi: 500-500" +} diff --git a/modules/standard/recipe/recipes/254.json b/modules/standard/recipe/recipes/254.json new file mode 100644 index 0000000..002b0f8 --- /dev/null +++ b/modules/standard/recipe/recipes/254.json @@ -0,0 +1,8 @@ +{ + "name": "Enhanced Bolter - The Hammer X9 42mm", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Enhanced Bolter - The Hammer X9 42mm'\n The Construction kit. must be between Quality Level 116 and 138.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add the pieces in the following order:\n \n 1. AssaultRifle Weapons Construction kit.\n \n 2. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 174-207\n \n 3. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 290-345\n \n 4. Auto Targeting Computer -IIR 1. . SkillTo Assemble: Elec. Engi: 261-310\n \n 5. Nano Pylon. . SkillTo Assemble: Mech. Engi: 290-345\n \n 6. Lock and Stock. . SkillTo Assemble: Weapon Smt: 464-552\n \n 7. Triple Pulse Enabler. . SkillTo Assemble: Weapon Smt: 493-586\n \n 8. Explosion Propulsion Containment Chamber. . SkillTo Assemble: Mech. Engi: 406-483\n \n 9. Short Composite Barrel. . SkillTo Assemble: Weapon Smt: 377-448\n \n 10. Nano Pylon. . SkillTo Assemble: Mech. Engi: 290-345\n \n 11. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 290-345\n \n 12. Gyro Stabilizing Unit. . SkillTo Assemble: Weapon Smt: 522-621\n \n 13. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 232-276\n \n 14. Primitive Freon Bag Cooling System. . SkillTo Assemble: Weapon Smt: 464-552" +} diff --git a/modules/standard/recipe/recipes/255.json b/modules/standard/recipe/recipes/255.json new file mode 100644 index 0000000..60428d2 --- /dev/null +++ b/modules/standard/recipe/recipes/255.json @@ -0,0 +1,8 @@ +{ + "name": "Enhanced Polearm", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Enhanced Polearm'\n The Construction kit. must be between Quality Level 93 and 115.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add in following order:\n \n 1. Two Handed Edged Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 372 -> 460\n \n 2. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 140 -> 172\n \n 3. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 186 -> 230\n \n 4. Notum Enriched Nano Paste - 4x Layer. SkillTo Assemble: Nano Progra: 232 -> 288\n \n 5. Optimized Co-Weapon Interface. SkillTo Assemble: Comp. Liter: 279 -> 345\n \n 6. Medium Handle. SkillTo Assemble: Weapon Smt: 342 -> 423\n \n 7. Run Speed Cluster - Faded (Leg). SkillTo Assemble: Nano Progra: 93 -> 115\n \n 8. 8x Layer Carbon-Notum Alloy Blade. SkillTo Assemble: Weapon Smt: 326 -> 402\n \n 9. 4x Layer Carbon-Notum Alloy Blade. SkillTo Assemble: Weapon Smt: 279 -> 345" +} diff --git a/modules/standard/recipe/recipes/256.json b/modules/standard/recipe/recipes/256.json new file mode 100644 index 0000000..4f10657 --- /dev/null +++ b/modules/standard/recipe/recipes/256.json @@ -0,0 +1,8 @@ +{ + "name": "Enhanced Tripler", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Enhanced Tripler'\n The Construction kit. must be between Quality Level 139 and 161.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add the pieces in the following order:\n \n 1. One Handed Edged Weapons Construction kit.\n \n 2. Optimized Co-Weapon Interface. . SkillTo Assemble: Comp. Liter: 417-483\n \n 3. Piercing Cluster - Faded (Waist). . SkillTo Assemble: Nano Progra: 139-161\n \n 4. 1h Edged Weapon Cluster - Bright (Right-Wrist). . SkillTo Assemble: Nano Progra: 278-322\n \n 5. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 208-242\n \n 6. Short Handle. . SkillTo Assemble: Weapon Smt: 486-564" +} diff --git a/modules/standard/recipe/recipes/257.json b/modules/standard/recipe/recipes/257.json new file mode 100644 index 0000000..b324140 --- /dev/null +++ b/modules/standard/recipe/recipes/257.json @@ -0,0 +1,8 @@ +{ + "name": "Fiddle Rifle", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Fiddle Rifle'\nThe Construction kit. must be between Quality Level 61 and 90.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\nAdd the pieces in the following order:\n\n 1. Rifle Weapons Construction kit.\n\n 2. Nano Pylon. . SkillTo Assemble: Mech. Engi: 152-225\n\n 3. Lock and Stock. . SkillTo Assemble: Weapon Smt: 244-360\n\n 4. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 92-135\n\n 5. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 152-225\n\n 6. Nano Pylon. . SkillTo Assemble: Mech. Engi: 152-225\n\n 7. Runtime Critical Area Analyzer. . SkillTo Assemble: Weapon Smt: 244-360\n\n 8. Ultra-Long Composite Barrel. . SkillTo Assemble: Weapon Smt: 259-382\n\n 9. Hyper Carbo-Ceramic Cooling System. . SkillTo Assemble: Weapon Smt: 244-360\n\n 10. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 152-225\n\n 11. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 122-180\n\n 12. Explosion Propulsion Containment Chamber. . SkillTo Assemble: Mech. Engi: 214-315" +} diff --git a/modules/standard/recipe/recipes/258.json b/modules/standard/recipe/recipes/258.json new file mode 100644 index 0000000..42b0da2 --- /dev/null +++ b/modules/standard/recipe/recipes/258.json @@ -0,0 +1,8 @@ +{ + "name": "Fine-Tuned Blackened Blaster", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Fine-Tuned Blackened Blaster'\n The Construction kit. must be between Quality Level 141 and 160.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add the pieces in the following order:\n \n 1. Rifle Weapons Construction kit.\n \n 2. Self-Cleaning KO-CR Device. . SkillTo Assemble: Weapon Smt: 494-560\n \n 3. Nano Pylon. . SkillTo Assemble: Mech. Engi: 352-400\n \n 4. Hyper Carbo-Ceramic Cooling System. . SkillTo Assemble: Weapon Smt: 564-640\n \n 5. Ultra-Long Composite Barrel. . SkillTo Assemble: Weapon Smt: 599-680\n \n 6. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 352-400\n \n 7. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 352-400\n \n 8. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 282-320\n \n 9. Energy Pack Interface. . SkillTo Assemble: Elec. Engi: 564-640\n \n 10. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 212-240\n \n 11. Nano Pylon. . SkillTo Assemble: Mech. Engi: 352-400\n \n 12. Energy Conduction Rack. . SkillTo Assemble: Quantum FT: 458-520\n \n 13. Rapid-Reload-And-Fire Gyro. . SkillTo Assemble: Weapon Smt: 564-640" +} diff --git a/modules/standard/recipe/recipes/259.json b/modules/standard/recipe/recipes/259.json new file mode 100644 index 0000000..7e7b9fa --- /dev/null +++ b/modules/standard/recipe/recipes/259.json @@ -0,0 +1,8 @@ +{ + "name": "Fine-Tuned Blackened Blaster Rifle", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Fine-Tuned Blackened Blaster Rifle'\nThe Construction kit. must be between Quality Level 141 and 160.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\nAdd the pieces in the following order:\n\n 1. Rifle Weapons Construction kit.\n\n 2. Energy Conduction Rack. . SkillTo Assemble: Quantum FT: 458-520\n\n 3. Nano Pylon. . SkillTo Assemble: Mech. Engi: 352-400\n\n 4. Primitive Freon Bag Cooling System. . SkillTo Assemble: Weapon Smt: 564-640\n\n 5. Ultra-Long Composite Barrel. . SkillTo Assemble: Weapon Smt: 599-680\n\n 6. Notum Enriched Nano Paste - 4x Layer. . SkillTo Assemble: Nano Progra: 352-400\n\n 7. Jandawit Cleanup Cluster. . SkillTo Assemble: Weapon Smt: 494-560\n\n 8. Rapid-Reload-And-Fire Gyro. . SkillTo Assemble: Weapon Smt: 564-640\n\n 9. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 212-240\n\n 10. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 282-320\n\n 11. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 352-400\n\n 12. Lock and Stock. . SkillTo Assemble: Weapon Smt: 564-640\n\n 13. Auto Targeting Computer -IIR 1. . SkillTo Assemble: Elec. Engi: 317-360" +} diff --git a/modules/standard/recipe/recipes/26.json b/modules/standard/recipe/recipes/26.json new file mode 100644 index 0000000..a96f4b8 --- /dev/null +++ b/modules/standard/recipe/recipes/26.json @@ -0,0 +1,37 @@ +{ + "name": "Briefcase of Holding", + "author": "", + "items": [ + { + "alias": "Order OTSC-490 Group A", + "item_id": 206398 + }, + { + "alias": "Expendable Hologram Camera", + "item_id": 156054 + }, + { + "alias": "ID-extractor", + "item_id": 156339 + }, + { + "alias": "Omni-Tek Multi-Form", + "item_id": 156344 + }, + { + "alias": "ID-data", + "item_id": 156340 + }, + { + "alias": "Personal Order OTSC-490 Group A", + "item_id": 206399 + }, + { + "alias": "Briefcase of Holding", + "item_id": 205736 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients \n------------------------------\n\n#L \"Order OTSC-490 Group A\" \"206398\"\n\n\n#L \"Expendable Hologram Camera\" \"156054\"\n\n\n#L \"ID-extractor\" \"156339\"\n\n\n#L \"Omni-Tek Multi-Form\" \"156344\"\n\n\n------------------------------\nRecipe \n------------------------------\n\nID-extractor\n+\nExpendable Hologram Camera\n=\n\n#L \"ID-data\" \"156340\"\nSkills: | ?? |\n\n------------------------------\n\nID-data\n+\nOrder OTSC-490 Group A\n=\n\n#L \"Personal Order OTSC-490 Group A\" \"206399\"\nSkills: | PS |\n\n------------------------------\n\nOmni-Tek Multi-Form\n+\nPersonal Order OTSC-490 Group A\n=\n\n#L \"Briefcase of Holding\" \"205736\"\nSkills: | PS |\n\n------------------------------\nComments\n------------------------------\n\nYou can access your bank with this. Bureaucrat item only." +} diff --git a/modules/standard/recipe/recipes/260.json b/modules/standard/recipe/recipes/260.json new file mode 100644 index 0000000..485b68a --- /dev/null +++ b/modules/standard/recipe/recipes/260.json @@ -0,0 +1,8 @@ +{ + "name": "Fine-Tuned Blackhole Mk IX", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Fine-Tuned Blackhole Mk IX'\n The Construction kit. must be between Quality Level 141 and 160.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add in following order:\n \n 1. Shotgun Weapons Construction kit. SkillTo Assemble: Weapon Smt: 564 -> 640\n \n 2. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 352 -> 400\n \n 3. Nano Pylon. SkillTo Assemble: Mech. Engi: 352 -> 400\n \n 4. Ultra-Long Composite Barrel. SkillTo Assemble: Weapon Smt: 599 -> 680\n \n 5. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 212 -> 240\n \n 6. Nano Pylon. SkillTo Assemble: Mech. Engi: 352 -> 400\n \n 7. Energy Pack Interface. SkillTo Assemble: Elec. Engi: 564 -> 640\n \n 8. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 352 -> 400\n \n 9. Energy Conduction Rack. SkillTo Assemble: Quantum FT: 458 -> 520\n \n 10. Notum Enriched Nano Paste - 4x Layer. SkillTo Assemble: Nano Progra: 352 -> 400\n \n 11. Rapid-Reload-And-Fire Gyro. SkillTo Assemble: Weapon Smt: 564 -> 640\n \n 12. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 282 -> 320" +} diff --git a/modules/standard/recipe/recipes/261.json b/modules/standard/recipe/recipes/261.json new file mode 100644 index 0000000..44d6874 --- /dev/null +++ b/modules/standard/recipe/recipes/261.json @@ -0,0 +1,8 @@ +{ + "name": "Fine-Tuned Chunkprojector", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Fine-Tuned Chunkprojector'\nThe Construction kit. must be between Quality Level 141 and 160.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\n Add in following order:\n\n 1. Shotgun Weapons Construction kit. SkillTo Assemble: Weapon Smt: 564 -> 640\n\n 2. Lock and Stock. SkillTo Assemble: Weapon Smt: 564 -> 640\n\n 3. Short Composite Barrel. SkillTo Assemble: Weapon Smt: 458 -> 520\n\n 4. Nano Pylon. SkillTo Assemble: Mech. Engi: 352 -> 400\n\n 5. Flake Tubing Base Cooling System. SkillTo Assemble: Weapon Smt: 564 -> 640\n\n 6. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 282 -> 320\n\n 7. Nano Pylon. SkillTo Assemble: Mech. Engi: 352 -> 400\n\n 8. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 212 -> 240\n\n 9. Self-Cleaning KO-CR Device. SkillTo Assemble: Weapon Smt: 494 -> 560\n\n 10. Explosion Propulsion Containment Chamber. SkillTo Assemble: Quantum FT: 529 -> 600\n\n 11. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 352 -> 400\n\n 12. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 352 -> 400" +} diff --git a/modules/standard/recipe/recipes/262.json b/modules/standard/recipe/recipes/262.json new file mode 100644 index 0000000..9d0a7e0 --- /dev/null +++ b/modules/standard/recipe/recipes/262.json @@ -0,0 +1,8 @@ +{ + "name": "Fine-Tuned Disaffiliation Sniper", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Fine-Tuned Disaffiliation Sniper'\n The Construction kit. must be between Quality Level 141 and 160.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add the pieces in the following order:\n \n 1. Rifle Weapons Construction kit.\n \n 2. Ultra-Long Composite Barrel. . SkillTo Assemble: Weapon Smt: 599-680\n \n 3. Lock and Stock. . SkillTo Assemble: Weapon Smt: 564-640\n \n 4. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 352-400\n \n 5. Notum Enriched Nano Paste - 4x Layer. . SkillTo Assemble: Nano Progra: 352-400\n \n 6. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 352-400\n \n 7. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 282-320\n \n 8. Primitive Freon Bag Cooling System. . SkillTo Assemble: Weapon Smt: 564-640\n \n 9. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 212-240\n \n 10. Runtime Critical Area Analyzer. . SkillTo Assemble: Weapon Smt: 564-640\n \n 11. Nano Pylon. . SkillTo Assemble: Mech. Engi: 352-400\n \n 12. Nano Pylon. . SkillTo Assemble: Mech. Engi: 352-400\n \n 13. Explosion Propulsion Containment Chamber. . SkillTo Assemble: Mech. Engi: 494-560\n \n 14. Auto Targeting Computer -IIR 2-Groper-. . SkillTo Assemble: Elec. Engi: 352-400" +} diff --git a/modules/standard/recipe/recipes/263.json b/modules/standard/recipe/recipes/263.json new file mode 100644 index 0000000..7c54e37 --- /dev/null +++ b/modules/standard/recipe/recipes/263.json @@ -0,0 +1,8 @@ +{ + "name": "Fine-Tuned E-Beamer", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Fine-Tuned E-Beamer'\n The Construction kit. must be between Quality Level 141 and 160.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add in following order:\n \n 1. Energy Weapons Construction kit. SkillTo Assemble: Weapon Smt: 564 -> 640\n \n 2. Short Composite Barrel. SkillTo Assemble: Weapon Smt: 458 -> 520\n \n 3. Nano Pylon. SkillTo Assemble: Mech. Engi: 352 -> 400\n \n 4. Nano Pylon. SkillTo Assemble: Mech. Engi: 352 -> 400\n \n 5. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 212 -> 240\n \n 6. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 282 -> 320\n \n 7. Notum Enriched Nano Paste - 4x Layer. SkillTo Assemble: Nano Progra: 352 -> 400\n \n 8. Energy Pack Interface. SkillTo Assemble: Elec. Engi: 564 -> 640\n \n 9. Energy Conduction Rack. SkillTo Assemble: Quantum FT: 458 -> 520\n \n 10. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 352 -> 400\n \n 11. Self-Cleaning KO-CR Device. SkillTo Assemble: Weapon Smt: 494 -> 560\n \n 12. Rapid-Reload-And-Fire Gyro. SkillTo Assemble: Weapon Smt: 564 -> 640\n \n 13. Flake Tubing Base Cooling System. SkillTo Assemble: Weapon Smt: 564 -> 640\n \n 14. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 352 -> 400" +} diff --git a/modules/standard/recipe/recipes/264.json b/modules/standard/recipe/recipes/264.json new file mode 100644 index 0000000..456400a --- /dev/null +++ b/modules/standard/recipe/recipes/264.json @@ -0,0 +1,8 @@ +{ + "name": "Fine-Tuned Flamethrower", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Fine-Tuned Flamethrower'\nThe Construction kit. must be between Quality Level 141 and 160.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\n Add in following order:\n\n 1. AssaultRifle Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 564 -> 640\n\n 2. Plasma Streamer Interface Nozzle. SkillTo Assemble: Chemistry: 564 -> 640\n\n 3. Primitive Freon Bag Cooling System. SkillTo Assemble: Weapon Smt: 564 -> 640\n\n 4. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 282 -> 320\n\n 5. Short Composite Barrel. SkillTo Assemble: Weapon Smt: 458 -> 520\n\n 6. Nano Pylon. SkillTo Assemble: Mech. Engi: 352 -> 400\n\n 7. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 352 -> 400\n\n 8. Auto Targeting Computer -IIR 1. SkillTo Assemble: Elec. Engi: 317 -> 360\n\n 9. Self-Cleaning KO-CR Device. SkillTo Assemble: Weapon Smt: 494 -> 560\n\n 10. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 212 -> 240\n\n 11. Compression Chamber for Chemicals. SkillTo Assemble: Weapon Smt: 599 -> 680\n\n 12. Nano Pylon. SkillTo Assemble: Mech. Engi: 352 -> 400" +} diff --git a/modules/standard/recipe/recipes/265.json b/modules/standard/recipe/recipes/265.json new file mode 100644 index 0000000..af419b9 --- /dev/null +++ b/modules/standard/recipe/recipes/265.json @@ -0,0 +1,8 @@ +{ + "name": "Fine-Tuned Grenade-Thrower", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Fine-Tuned Grenade-Thrower'\n The Construction kit. must be between Quality Level 141 and 160.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add in following order:\n \n 1. Grenades Construction kit. SkillTo Assemble: Weapon Smt: 564 -> 640\n \n 2. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 212 -> 240\n \n 3. Poison Chemical Combination Chamber. SkillTo Assemble: Chemistry: 564 -> 640\n \n 4. Flake Tubing Base Cooling System. SkillTo Assemble: Weapon Smt: 564 -> 640\n \n 5. Nano Pylon. SkillTo Assemble: Mech. Engi: 352 -> 400\n \n 6. Notum Enriched Nano Paste - 4x Layer. SkillTo Assemble: Nano Progra: 352 -> 400\n \n 7. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 352 -> 400\n \n 8. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 282 -> 320\n \n 9. Ultra Short Composite Barrel. SkillTo Assemble: Weapon Smt: 423 -> 480" +} diff --git a/modules/standard/recipe/recipes/266.json b/modules/standard/recipe/recipes/266.json new file mode 100644 index 0000000..8222556 --- /dev/null +++ b/modules/standard/recipe/recipes/266.json @@ -0,0 +1,8 @@ +{ + "name": "Fine-Tuned Heavy Grinner", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Fine-Tuned Heavy Grinner'\n The Construction kit. must be between Quality Level 141 and 160.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add in following order:\n \n 1. Pistol Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 564 -> 640\n \n 2. Self-Cleaning KO-CR Device. SkillTo Assemble: Weapon Smt: 494 -> 560\n \n 3. Lock and Stock. SkillTo Assemble: Weapon Smt: 564 -> 640\n \n 4. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 212 -> 240\n \n 5. Explosion Propulsion Containment Chamber. SkillTo Assemble: Mech. Engi: 494 -> 560\n \n 6. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 282 -> 320\n \n 7. Composite Barrel. SkillTo Assemble: Weapon Smt: 529 -> 600\n \n 8. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 352 -> 400\n \n 9. Triple Pulse Enabler. SkillTo Assemble: Weapon Smt: 599 -> 680\n \n 10. Nano Pylon. SkillTo Assemble: Mech. Engi: 352 -> 400\n \n 11. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 352 -> 400\n \n 12. Nano Pylon. SkillTo Assemble: Mech. Engi: 352 -> 400" +} diff --git a/modules/standard/recipe/recipes/267.json b/modules/standard/recipe/recipes/267.json new file mode 100644 index 0000000..3480b28 --- /dev/null +++ b/modules/standard/recipe/recipes/267.json @@ -0,0 +1,8 @@ +{ + "name": "Fine-Tuned Heavy Lead Sprayer", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Fine-Tuned Heavy Lead Sprayer'\n The Construction kit. must be between Quality Level 141 and 160.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add in following order:\n \n 1. AssaultRifle Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 564 -> 640\n \n 2. Gyro Stabilizing Unit. SkillTo Assemble: Weapon Smt: 634 -> 720\n \n 3. Composite Barrel. SkillTo Assemble: Weapon Smt: 529 -> 600\n \n 4. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 352 -> 400\n \n 5. Lock and Stock. SkillTo Assemble: Weapon Smt: 564 -> 640\n \n 6. Nano Pylon. SkillTo Assemble: Mech. Engi: 352 -> 400\n \n 7. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 282 -> 320\n \n 8. Jandawit Cleanup Cluster. SkillTo Assemble: Weapon Smt: 494 -> 560\n \n 9. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 212 -> 240\n \n 10. Triple Pulse Enabler. SkillTo Assemble: Weapon Smt: 599 -> 680\n \n 11. Explosion Propulsion Containment Chamber. SkillTo Assemble: Mech. Engi: 494 -> 560" +} diff --git a/modules/standard/recipe/recipes/268.json b/modules/standard/recipe/recipes/268.json new file mode 100644 index 0000000..8d543e5 --- /dev/null +++ b/modules/standard/recipe/recipes/268.json @@ -0,0 +1,8 @@ +{ + "name": "Fine-Tuned Mausser Particle Streamer", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Fine-Tuned Mausser Particle Streamer'\n The Construction kit. must be between Quality Level 141 and 160.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add the pieces in the following order:\n \n 1. Submachinegun Weapons Construction kit.\n \n 2. Nano Pylon. . SkillTo Assemble: Mech. Engi: 352-400\n \n 3. Nano Pylon. . SkillTo Assemble: Mech. Engi: 352-400\n \n 4. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 352-400\n \n 5. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 212-240\n \n 6. Auto Targeting Computer -IIR 1. . SkillTo Assemble: Elec. Engi: 317-360\n \n 7. Lock and Stock. . SkillTo Assemble: Weapon Smt: 564-640\n \n 8. Ultra-Long Composite Barrel. . SkillTo Assemble: Weapon Smt: 599-680\n \n 9. Triple Pulse Enabler. . SkillTo Assemble: Weapon Smt: 599-680\n \n 10. Explosion Propulsion Containment Chamber. . SkillTo Assemble: Mech. Engi: 494-560\n \n 11. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 352-400\n \n 12. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 282-320" +} diff --git a/modules/standard/recipe/recipes/269.json b/modules/standard/recipe/recipes/269.json new file mode 100644 index 0000000..79d583b --- /dev/null +++ b/modules/standard/recipe/recipes/269.json @@ -0,0 +1,8 @@ +{ + "name": "Fine-Tuned Megajolt", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Fine-Tuned Megajolt'\n The Construction kit. must be between Quality Level 141 and 160.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add in following order:\n \n 1. Shotgun Weapons Construction kit. SkillTo Assemble: Weapon Smt: 564 -> 640\n \n 2. Nano Pylon. SkillTo Assemble: Mech. Engi: 352 -> 400\n \n 3. Composite Barrel. SkillTo Assemble: Weapon Smt: 529 -> 600\n \n 4. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 352 -> 400\n \n 5. Primitive Freon Bag Cooling System. SkillTo Assemble: Weapon Smt: 564 -> 640\n \n 6. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 212 -> 240\n \n 7. Nano Pylon. SkillTo Assemble: Mech. Engi: 352 -> 400\n \n 8. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 282 -> 320\n \n 9. Auto Targeting Computer -IIR 2-Groper-. SkillTo Assemble: Elec. Engi: 352 -> 400\n \n 10. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 352 -> 400\n \n 11. Energy Conduction Rack. SkillTo Assemble: Quantum FT: 458 -> 520\n \n 12. Energy Pack Interface. SkillTo Assemble: Elec. Engi: 564 -> 640\n \n 13. Notum Enriched Nano Paste - 4x Layer. SkillTo Assemble: Nano Progra: 352 -> 400" +} diff --git a/modules/standard/recipe/recipes/27.json b/modules/standard/recipe/recipes/27.json new file mode 100644 index 0000000..62fafd0 --- /dev/null +++ b/modules/standard/recipe/recipes/27.json @@ -0,0 +1,73 @@ +{ + "name": "Bronto Hide Armor", + "author": "", + "items": [ + { + "alias": "Large Patch of Hard Bronto Hide", + "item_id": 162224 + }, + { + "alias": "B.B.I. - Nano Enhanced B-12 Tanning Acid", + "item_id": 162247 + }, + { + "alias": "Ultimate Mass Relocating Robot", + "item_id": 155592 + }, + { + "alias": "Mass Relocating Robot (Shape Soft Armor)", + "item_id": 162220 + }, + { + "alias": "Large Patch of Hard Bronto Hide - Tanned", + "item_id": 162236 + }, + { + "alias": "Bronto Hide Tunic", + "item_id": 162206 + }, + { + "alias": "Large Patch of Soft Bronto Hide", + "item_id": 162226 + }, + { + "alias": "Bronto Hide Legwear", + "item_id": 162216 + }, + { + "alias": "Patch of Hard Bronto Hide", + "item_id": 162228 + }, + { + "alias": "Bronto Hide Boots", + "item_id": 162208 + }, + { + "alias": "Patch of Soft Bronto Hide", + "item_id": 162230 + }, + { + "alias": "Bronto Hide Sleeves", + "item_id": 162204 + }, + { + "alias": "Small Patch of Hard Bronto Hide", + "item_id": 162232 + }, + { + "alias": "Bronto Hide Gloves", + "item_id": 162210 + }, + { + "alias": "Small Patch of Soft Bronto Hide", + "item_id": 162234 + }, + { + "alias": "Bronto Hide Hood", + "item_id": 162212 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients \n------------------------------\n\nA piece of Bronto Hide\n(ie: #L \"Large Patch of Hard Bronto Hide\" \"162224\")\n\n\n#L \"B.B.I. - Nano Enhanced B-12 Tanning Acid\" \"162247\"\n\n\n#L \"Programmed Photon Particle Emitter (Shape Soft Armor)\" \"162222\"\n\n\n#L \"Mass Relocating Robot\" \"155592\"\n\n\n------------------------------\nRecipe \n------------------------------\n\nProgrammed Photon Particle Emitter (Shape Soft Armor)\n+\nMass Relocating Robot\n=\n\n#L \"Mass Relocating Robot (Shape Soft Armor)\" \"162220\"\nSkills: | 2.5EE,2.5ME,2.5NP |\n\n------------------------------\n\nB.B.I. - Nano Enhanced B-12 Tanning Acid\n+\nA piece of Bronto Hide\n=\n\nA piece of Tanned Bronto Hide\n(ie: #L \"Large Patch of Hard Bronto Hide - Tanned\" \"162236\")\nSkills: | CH,AG |\n\n------------------------------\n\nMass Relocating Robot (Shape Soft Armor)\n+\nA piece of Tanned Bronto Hide\n=\n\nA Bronto Hide Armor part\n(ie: #L \"Bronto Hide Tunic\" \"162206\")\nSkills: | ?? |\n\n------------------------------\nDetails\n------------------------------\n\n#L \"Large Patch of Hard Bronto Hide\" \"162224\" -> #L \"Bronto Hide Tunic\" \"162206\"\n#L \"Large Patch of Soft Bronto Hide\" \"162226\" -> #L \"Bronto Hide Legwear\" \"162216\"\n#L \"Patch of Hard Bronto Hide\" \"162228\" -> #L \"Bronto Hide Boots\" \"162208\"\n#L \"Patch of Soft Bronto Hide\" \"162230\" -> #L \"Bronto Hide Sleeves\" \"162204\"\n#L \"Small Patch of Hard Bronto Hide\" \"162232\" -> #L \"Bronto Hide Gloves\" \"162210\"\n#L \"Small Patch of Soft Bronto Hide\" \"162234\" -> #L \"Bronto Hide Hood\" \"162212\"\n\n------------------------------\nComments\n------------------------------\n\nVery good overall AC stats along with Max Nano modifier. The #L \"Programmed Photon Particle Emitter (Shape Soft Armor)\" \"162222\" is very very rare, Team boss loot Ql60 :(" +} diff --git a/modules/standard/recipe/recipes/270.json b/modules/standard/recipe/recipes/270.json new file mode 100644 index 0000000..2686e50 --- /dev/null +++ b/modules/standard/recipe/recipes/270.json @@ -0,0 +1,8 @@ +{ + "name": "Fine-Tuned Mini-Shotgun", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Fine-Tuned Mini-Shotgun'\n The Construction kit. must be between Quality Level 141 and 160.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add in following order:\n \n 1. Shotgun Weapons Construction kit. SkillTo Assemble: Weapon Smt: 564 -> 640\n \n 2. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 352 -> 400\n \n 3. Rapid-Reload-And-Fire Gyro. SkillTo Assemble: Weapon Smt: 564 -> 640\n \n 4. Nano Pylon. SkillTo Assemble: Mech. Engi: 352 -> 400\n \n 5. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 212 -> 240\n \n 6. Explosion Propulsion Containment Chamber. SkillTo Assemble: Quantum FT: 529 -> 600\n \n 7. Nano Pylon. SkillTo Assemble: Mech. Engi: 352 -> 400\n \n 8. Lock and Stock. SkillTo Assemble: Weapon Smt: 564 -> 640\n \n 9. Short Composite Barrel. SkillTo Assemble: Weapon Smt: 458 -> 520\n \n 10. Self-Cleaning KO-CR Device. SkillTo Assemble: Weapon Smt: 494 -> 560\n \n 11. Nano-Interfaced Cooling System. SkillTo Assemble: Weapon Smt: 564 -> 640" +} diff --git a/modules/standard/recipe/recipes/271.json b/modules/standard/recipe/recipes/271.json new file mode 100644 index 0000000..42d00b4 --- /dev/null +++ b/modules/standard/recipe/recipes/271.json @@ -0,0 +1,8 @@ +{ + "name": "Fine-Tuned Plasmaprojector", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Fine-Tuned Plasmaprojector'\n The Construction kit. must be between Quality Level 141 and 160.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add in following order:\n \n 1. AssaultRifle Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 564 -> 640\n \n 2. Runtime Critical Area Analyzer. SkillTo Assemble: Weapon Smt: 564 -> 640\n \n 3. Nano Pylon. SkillTo Assemble: Mech. Engi: 352 -> 400\n \n 4. Hyper Carbo-Ceramic Cooling System. SkillTo Assemble: Weapon Smt: 564 -> 640\n \n 5. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 282 -> 320\n \n 6. Notum Enriched Nano Paste - 4x Layer. SkillTo Assemble: Nano Progra: 352 -> 400\n \n 7. Energy Pack Interface. SkillTo Assemble: Elec. Engi: 564 -> 640\n \n 8. Long Composite Barrel. SkillTo Assemble: Weapon Smt: 564 -> 640\n \n 9. Energy Conduction Rack. SkillTo Assemble: Quantum FT: 458 -> 520\n \n 10. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 212 -> 240" +} diff --git a/modules/standard/recipe/recipes/272.json b/modules/standard/recipe/recipes/272.json new file mode 100644 index 0000000..b711606 --- /dev/null +++ b/modules/standard/recipe/recipes/272.json @@ -0,0 +1,8 @@ +{ + "name": "Fine-Tuned Subturbine", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Fine-Tuned Subturbine'\n The Construction kit. must be between Quality Level 141 and 160.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add in following order:\n \n 1. AssaultRifle Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 564 -> 640\n \n 2. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 212 -> 240\n \n 3. Hyper Carbo-Ceramic Cooling System. SkillTo Assemble: Weapon Smt: 564 -> 640\n \n 4. Triple Pulse Enabler. SkillTo Assemble: Weapon Smt: 599 -> 680\n \n 5. Lock and Stock. SkillTo Assemble: Weapon Smt: 564 -> 640\n \n 6. Explosion Propulsion Containment Chamber. SkillTo Assemble: Mech. Engi: 494 -> 560\n \n 7. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 282 -> 320\n \n 8. Gyro Stabilizing Unit. SkillTo Assemble: Weapon Smt: 634 -> 720\n \n 9. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 352 -> 400\n \n 10. Nano Pylon. SkillTo Assemble: Mech. Engi: 352 -> 400\n \n 11. Nano Pylon. SkillTo Assemble: Mech. Engi: 352 -> 400\n \n 12. Self-Cleaning KO-CR Device. SkillTo Assemble: Weapon Smt: 494 -> 560\n \n 13. Notum Enriched Nano Paste - 4x Layer. SkillTo Assemble: Nano Progra: 352 -> 400\n \n 14. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 352 -> 400\n \n 15. Short Composite Barrel. SkillTo Assemble: Weapon Smt: 458 -> 520" +} diff --git a/modules/standard/recipe/recipes/273.json b/modules/standard/recipe/recipes/273.json new file mode 100644 index 0000000..0333f54 --- /dev/null +++ b/modules/standard/recipe/recipes/273.json @@ -0,0 +1,8 @@ +{ + "name": "Fine-Tuned Supernova Mk VI", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Fine-Tuned Supernova Mk VI'\n The Construction kit. must be between Quality Level 141 and 160.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add the pieces in the following order:\n \n 1. Energy Weapons Construction kit.\n \n 2. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 352-400\n \n 3. Nano Pylon. . SkillTo Assemble: Mech. Engi: 352-400\n \n 4. Auto Targeting C. -IIR 5 -Powermolder-. . SkillTo Assemble: Elec. Engi: 458-520\n \n 5. Energy Pack Interface. . SkillTo Assemble: Elec. Engi: 564-640\n \n 6. Auto Targeting Computer -IIR 4 -Ultra-. . SkillTo Assemble: Elec. Engi: 423-480\n \n 7. Nano Pylon. . SkillTo Assemble: Mech. Engi: 352-400\n \n 8. Ultra-Long Composite Barrel. . SkillTo Assemble: Weapon Smt: 599-680\n \n 9. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 212-240\n \n 10. Runtime Critical Area Analyzer. . SkillTo Assemble: Weapon Smt: 564-640\n \n 11. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 352-400\n \n 12. Energy Conduction Rack. . SkillTo Assemble: Quantum FT: 458-520" +} diff --git a/modules/standard/recipe/recipes/274.json b/modules/standard/recipe/recipes/274.json new file mode 100644 index 0000000..17594ef --- /dev/null +++ b/modules/standard/recipe/recipes/274.json @@ -0,0 +1,8 @@ +{ + "name": "Fine-Tuned Suppressor", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Fine-Tuned Suppressor'\n The Construction kit. must be between Quality Level 141 and 160.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add the pieces in the following order:\n \n 1. Submachinegun Weapons Construction kit.\n \n 2. Gyro Stabilizing Unit. . SkillTo Assemble: Weapon Smt: 634-720\n \n 3. Nano Pylon. . SkillTo Assemble: Mech. Engi: 352-400\n \n 4. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 352-400\n \n 5. Nano Pylon. . SkillTo Assemble: Mech. Engi: 352-400\n \n 6. Ultra-Long Composite Barrel. . SkillTo Assemble: Weapon Smt: 599-680\n \n 7. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 212-240\n \n 8. Triple Pulse Enabler. . SkillTo Assemble: Weapon Smt: 599-680\n \n 9. Lock and Stock. . SkillTo Assemble: Weapon Smt: 564-640\n \n 10. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 352-400\n \n 11. Explosion Propulsion Containment Chamber. . SkillTo Assemble: Mech. Engi: 494-560" +} diff --git a/modules/standard/recipe/recipes/275.json b/modules/standard/recipe/recipes/275.json new file mode 100644 index 0000000..3da1aff --- /dev/null +++ b/modules/standard/recipe/recipes/275.json @@ -0,0 +1,8 @@ +{ + "name": "First-Rate Blackened Miniblaster", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'First-Rate Blackened Miniblaster'\n The Construction kit. must be between Quality Level 161 and 199.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add in following order:\n \n 1. Pistol Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 644 -> 796\n \n 2. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 242 -> 298\n \n 3. Short Composite Barrel. SkillTo Assemble: Weapon Smt: 523 -> 647\n \n 4. Rapid-Reload-And-Fire Gyro. SkillTo Assemble: Weapon Smt: 644 -> 796\n \n 5. Jandawit Cleanup Cluster. SkillTo Assemble: Weapon Smt: 564 -> 696\n \n 6. Nano Pylon. SkillTo Assemble: Mech. Engi: 402 -> 498\n \n 7. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 402 -> 498\n \n 8. Energy Conduction Rack. SkillTo Assemble: Quantum FT: 523 -> 647\n \n 9. Hyper Carbo-Ceramic Cooling System. SkillTo Assemble: Weapon Smt: 644 -> 796\n \n 10. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 322 -> 398\n \n 11. Energy Pack Interface. SkillTo Assemble: Elec. Engi: 644 -> 796" +} diff --git a/modules/standard/recipe/recipes/276.json b/modules/standard/recipe/recipes/276.json new file mode 100644 index 0000000..cb61a3f --- /dev/null +++ b/modules/standard/recipe/recipes/276.json @@ -0,0 +1,8 @@ +{ + "name": "First-Rate Electron-Charged Pistol", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'First-Rate Electron-Charged Pistol'\n The Construction kit. must be between Quality Level 161 and 199.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add in following order:\n \n 1. Pistol Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 644 -> 796\n \n 2. Energy Conduction Rack. SkillTo Assemble: Quantum FT: 523 -> 647\n \n 3. Plasma Streamer Interface Nozzle. SkillTo Assemble: Chemistry: 644 -> 796\n \n 4. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 402 -> 498\n \n 5. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 322 -> 398\n \n 6. Nano Pylon. SkillTo Assemble: Mech. Engi: 402 -> 498\n \n 7. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 242 -> 298\n \n 8. Jandawit Cleanup Cluster. SkillTo Assemble: Weapon Smt: 564 -> 696\n \n 9. Short Composite Barrel. SkillTo Assemble: Weapon Smt: 523 -> 647\n \n 10. Rapid-Reload-And-Fire Gyro. SkillTo Assemble: Weapon Smt: 644 -> 796" +} diff --git a/modules/standard/recipe/recipes/277.json b/modules/standard/recipe/recipes/277.json new file mode 100644 index 0000000..519ca88 --- /dev/null +++ b/modules/standard/recipe/recipes/277.json @@ -0,0 +1,8 @@ +{ + "name": "First-Rate Kolt 58 Magnum", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'First-Rate Kolt 58 Magnum'\n The Construction kit. must be between Quality Level 161 and 199.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add in following order:\n \n 1. Pistol Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 644 -> 796\n \n 2. Jandawit Cleanup Cluster. SkillTo Assemble: Weapon Smt: 564 -> 696\n \n 3. Nano Pylon. SkillTo Assemble: Mech. Engi: 402 -> 498\n \n 4. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 402 -> 498\n \n 5. Explosion Propulsion Containment Chamber. SkillTo Assemble: Mech. Engi: 564 -> 696\n \n 6. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 242 -> 298\n \n 7. Hyper Carbo-Ceramic Cooling System. SkillTo Assemble: Weapon Smt: 644 -> 796\n \n 8. Rapid-Reload-And-Fire Gyro. SkillTo Assemble: Weapon Smt: 644 -> 796\n \n 9. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 402 -> 498\n \n 10. Composite Barrel. SkillTo Assemble: Weapon Smt: 604 -> 746\n \n 11. Nano Pylon. SkillTo Assemble: Mech. Engi: 402 -> 498\n \n 12. Lock and Stock. SkillTo Assemble: Weapon Smt: 644 -> 796" +} diff --git a/modules/standard/recipe/recipes/278.json b/modules/standard/recipe/recipes/278.json new file mode 100644 index 0000000..0a41c73 --- /dev/null +++ b/modules/standard/recipe/recipes/278.json @@ -0,0 +1,8 @@ +{ + "name": "First-Rate Kolt PDW-37", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'First-Rate Kolt PDW-37'\n The Construction kit. must be between Quality Level 161 and 199.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add in following order:\n \n 1. Pistol Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 644 -> 796\n \n 2. Short Composite Barrel. SkillTo Assemble: Weapon Smt: 523 -> 647\n \n 3. Energy Conduction Rack. SkillTo Assemble: Quantum FT: 523 -> 647\n \n 4. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 242 -> 298\n \n 5. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 322 -> 398\n \n 6. Hyper Carbo-Ceramic Cooling System. SkillTo Assemble: Weapon Smt: 644 -> 796\n \n 7. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 402 -> 498\n \n 8. Triple Pulse Enabler. SkillTo Assemble: Weapon Smt: 684 -> 846\n \n 9. Nano Pylon. SkillTo Assemble: Mech. Engi: 402 -> 498\n \n 10. Energy Pack Interface. SkillTo Assemble: Elec. Engi: 644 -> 796\n \n 11. Rapid-Reload-And-Fire Gyro. SkillTo Assemble: Weapon Smt: 644 -> 796" +} diff --git a/modules/standard/recipe/recipes/279.json b/modules/standard/recipe/recipes/279.json new file mode 100644 index 0000000..93b294f --- /dev/null +++ b/modules/standard/recipe/recipes/279.json @@ -0,0 +1,8 @@ +{ + "name": "First-Rate Light Beamer Pistol", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'First-Rate Light Beamer Pistol'\n The Construction kit. must be between Quality Level 163 and 199.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add in following order:\n \n 1. Pistol Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 652 -> 796\n \n 2. Short Composite Barrel. SkillTo Assemble: Weapon Smt: 530 -> 647\n \n 3. Nano Pylon. SkillTo Assemble: Mech. Engi: 408 -> 498\n \n 4. Plasma Streamer Interface Nozzle. SkillTo Assemble: Chemistry: 652 -> 796\n \n 5. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 244 -> 298\n \n 6. Self-Cleaning KO-CR Device. SkillTo Assemble: Weapon Smt: 570 -> 696\n \n 7. Energy Conduction Rack. SkillTo Assemble: Quantum FT: 530 -> 647\n \n 8. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 408 -> 498\n \n 9. Hyper Carbo-Ceramic Cooling System. SkillTo Assemble: Weapon Smt: 652 -> 796\n \n 10. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 326 -> 398" +} diff --git a/modules/standard/recipe/recipes/28.json b/modules/standard/recipe/recipes/28.json new file mode 100644 index 0000000..bae86a2 --- /dev/null +++ b/modules/standard/recipe/recipes/28.json @@ -0,0 +1,105 @@ +{ + "name": "Building Alien Invasion Houses", + "author": "", + "items": [ + { + "alias": "Generic Volatile Nanobots", + "item_id": 247760 + }, + { + "alias": "HSR Compressed Regenerating Bioplate", + "item_id": 202540 + }, + { + "alias": "Generic Organic Immunity System", + "item_id": 254822 + }, + { + "alias": "Blueprint - Regular Building Structure", + "item_id": 247768 + }, + { + "alias": "Strong Regenerating Bioplate", + "item_id": 247757 + }, + { + "alias": "Superior Bioplate", + "item_id": 254806 + }, + { + "alias": "Regular Building Structure", + "item_id": 254807 + }, + { + "alias": "Floorplan - Omni-Tek Notum Silo", + "item_id": 255476 + }, + { + "alias": "Omni-Tek Notum Silo", + "item_id": 254144 + }, + { + "alias": "Floorplan - Neutral Small Organization Headquarters", + "item_id": 254790 + }, + { + "alias": "Fertilized Giant Chirop Egg", + "item_id": 247788 + }, + { + "alias": "Unrefined Notum Salt", + "item_id": 247786 + }, + { + "alias": "Slow-Killing Poison", + "item_id": 247791 + }, + { + "alias": "Uncle Bazzit's Bio-Mechanical AI", + "item_id": 247794 + }, + { + "alias": "Advanced Bio-Comminutor", + "item_id": 154332 + }, + { + "alias": "Mutating Giant Chirop Egg", + "item_id": 247789 + }, + { + "alias": "Poisoned Giant Chirop Egg", + "item_id": 247790 + }, + { + "alias": "Mutating Bio-Pulp", + "item_id": 247792 + }, + { + "alias": "Bio-Mechanical Computer", + "item_id": 247795 + }, + { + "alias": "Superior Building Structure", + "item_id": 254829 + }, + { + "alias": "Small Omni-Tek Organization Headquarters", + "item_id": 254210 + }, + { + "alias": "Kyr'Ozch Viral Serum", + "item_id": 254805 + }, + { + "alias": "Manteze Scout Nasal Membrane", + "item_id": 247762 + }, + { + "alias": "Membrane Pulp", + "item_id": 247763 + } + ], + "steps": [], + "details": [], + "raw": "1) Regular Building Structure\n\n------------------------------\nIngredients \n------------------------------\n\n#L \"Generic Volatile Nanobots\" \"247760\"\n\n\n#L \"HSR Compressed Regenerating Bioplate\" \"202540\"\n\n\n#L \"Generic Organic Immunity System\" \"254822\"\n\n\n#L \"Blueprint - Regular Building Structure\" \"247768\"\n\n\n------------------------------\nRecipe \n------------------------------\n\nGeneric Volatile Nanobots\n+\nHSR Compressed Regenerating Bioplate\n=\n\n#L \"Strong Regenerating Bioplate\" \"247757\"\nSkills: | CH |\n\n------------------------------\n\nGeneric Organic Immunity System\n+\nStrong Regenerating Bioplate\n=\n\n#L \"Superior Bioplate\" \"254806\"\nSkills: | ?? |\n\n------------------------------\n\nBlueprint - Regular Building Structure\n+\nSuperior Bioplate\n=\n\n#L \"Regular Building Structure\" \"254807\"\nSkills: | ?? |\n\n\n2) Build a Simple Structure\n\n------------------------------\nIngredients \n------------------------------\n\n#L \"Regular Building Structure\" \"254807\"\n\n\na Floorplan\n( ie : #L \"Floorplan - Omni-Tek Notum Silo\" \"255476\" )\n\n\n------------------------------\nRecipe \n------------------------------\n\nFloorplan\n+\nRegular Building Structure\n=\n\na Stucture\n( ie : #L \"Omni-Tek Notum Silo\" \"254144\" )\nSkills: | ?? |\n\n\n3) Build a HQ Structure\n\n------------------------------\nIngredients \n------------------------------\n\n#L \"Regular Building Structure\" \"254807\"\n\n\na HQ Floorplan\n( ie : #L \"Floorplan - Neutral Small Organization Headquarters\" \"254790\" )\n\n\n#L \"Fertilized Giant Chirop Egg\" \"247788\"\n\n\n#L \"Unrefined Notum Salt\" \"247786\"\n\n\n#L \"Slow-Killing Poison\" \"247791\"\n\n\n#L \"Uncle Bazzit's Bio-Mechanical AI\" \"247794\"\n\n\n#L \"Advanced Bio-Comminutor\" \"154332\"\n\n\n------------------------------\nRecipe \n------------------------------\n\nUnrefined Notum Salt\n+\nFertilized Giant Chirop Egg\n=\n\n#L \"Mutating Giant Chirop Egg\" \"247789\"\nSkills: | ?? |\n\n------------------------------\n\nSlow-Killing Poison\n+\nMutating Giant Chirop Egg\n=\n\n#L \"Poisoned Giant Chirop Egg\" \"247790\"\nSkills: | ?? |\n\n------------------------------\n\nBio-Comminutor\n+\nPoisoned Giant Chirop Egg\n=\n\n#L \"Mutating Bio-Pulp\" \"247792\"\nSkills: | ?? |\n\n------------------------------\n\nMutating Bio-Pulp\n+\nUncle Bazzit's Bio-Mechanical AI\n=\n\n#L \"Bio-Mechanical Computer\" \"247795\"\nSkills: | ?? |\n\n------------------------------\n\nBio-Mechanical Computer\n+\nRegular Building Structure\n=\n\n#L \"Superior Building Structure\" \"254829\"\nSkills: | ?? |\n\n------------------------------\n\nHQ Floorplan\n+\nSuperior Building Structure\n=\n\na HQ Stucture\n( ie : #L \"Small Omni-Tek Organization Headquarters\" \"254210\" )\nSkills: | ?? |\n\n\n4) Build High QL HQ Structure\n\n------------------------------\nIngredients \n------------------------------\n\n#L \"Kyr'Ozch Viral Serum\" \"254805\"\n\n\n#L \"Manteze Scout Nasal Membrane\" \"247762\"\n\n\n#L \"Advanced Bio-Comminutor\" \"154332\"\n\n\n------------------------------\nRecipe \n------------------------------\n\nBio-Comminutor\n+\nManteze Scout Nasal Membrane\n=\n\n#L \"Membrane Pulp\" \"247763\"\nSkills: | ?? |\n\n------------------------------\n\nMembrane Pulp\n+\nKyr'Ozch Viral Serum\n=\n\n#L \"Generic Organic Immunity System\" \"254822\"\nSkills: | ?? |\n\nNow, build a Regular Building Structure with this Generic Organic Immunity System which is of a higher QL than in shop. Then Build a high HQ with this Regular Building Structure.\n\n------------------------------\nComments\n------------------------------\n\nWorth all the messing around I think :)" +} diff --git a/modules/standard/recipe/recipes/280.json b/modules/standard/recipe/recipes/280.json new file mode 100644 index 0000000..25d9cbf --- /dev/null +++ b/modules/standard/recipe/recipes/280.json @@ -0,0 +1,8 @@ +{ + "name": "First-Rate Minigrinner", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'First-Rate Minigrinner'\n The Construction kit. must be between Quality Level 161 and 199.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add in following order:\n \n 1. Pistol Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 644 -> 796\n \n 2. Ultra Short Composite Barrel. SkillTo Assemble: Weapon Smt: 483 -> 597\n \n 3. Hyper Carbo-Ceramic Cooling System. SkillTo Assemble: Weapon Smt: 644 -> 796\n \n 4. Nano Pylon. SkillTo Assemble: Mech. Engi: 402 -> 498\n \n 5. Gyro Stabilizing Unit. SkillTo Assemble: Weapon Smt: 724 -> 896\n \n 6. Triple Pulse Enabler. SkillTo Assemble: Weapon Smt: 684 -> 846\n \n 7. Explosion Propulsion Containment Chamber. SkillTo Assemble: Mech. Engi: 564 -> 696\n \n 8. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 242 -> 298\n \n 9. Nano Pylon. SkillTo Assemble: Mech. Engi: 402 -> 498\n \n 10. Self-Cleaning KO-CR Device. SkillTo Assemble: Weapon Smt: 564 -> 696\n \n 11. Lock and Stock. SkillTo Assemble: Weapon Smt: 644 -> 796\n \n 12. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 402 -> 498" +} diff --git a/modules/standard/recipe/recipes/281.json b/modules/standard/recipe/recipes/281.json new file mode 100644 index 0000000..28d6114 --- /dev/null +++ b/modules/standard/recipe/recipes/281.json @@ -0,0 +1,8 @@ +{ + "name": "First-Rate Sleekblaster", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'First-Rate Sleekblaster'\n The Construction kit. must be between Quality Level 161 and 199.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add in following order:\n \n 1. Energy Weapons Construction kit. SkillTo Assemble: Weapon Smt: 644 -> 796\n \n 2. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 242 -> 298\n \n 3. Energy Conduction Rack. SkillTo Assemble: Quantum FT: 523 -> 647\n \n 4. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 402 -> 498\n \n 5. Hyper Carbo-Ceramic Cooling System. SkillTo Assemble: Weapon Smt: 644 -> 796\n \n 6. Composite Barrel. SkillTo Assemble: Weapon Smt: 604 -> 746\n \n 7. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 322 -> 398\n \n 8. Nano Pylon. SkillTo Assemble: Mech. Engi: 402 -> 498\n \n 9. Energy Pack Interface. SkillTo Assemble: Elec. Engi: 644 -> 796\n \n 10. Jandawit Cleanup Cluster. SkillTo Assemble: Weapon Smt: 564 -> 696\n \n 11. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 402 -> 498\n \n 12. Nano Pylon. SkillTo Assemble: Mech. Engi: 402 -> 498\n \n 13. Rapid-Reload-And-Fire Gyro. SkillTo Assemble: Weapon Smt: 644 -> 796" +} diff --git a/modules/standard/recipe/recipes/282.json b/modules/standard/recipe/recipes/282.json new file mode 100644 index 0000000..d4e6328 --- /dev/null +++ b/modules/standard/recipe/recipes/282.json @@ -0,0 +1,8 @@ +{ + "name": "First-Rate Sleekblaster Major", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'First-Rate Sleekblaster Major'\nThe Construction kit. must be between Quality Level 161 and 199.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\n Add in following order:\n\n 1. Energy Weapons Construction kit. SkillTo Assemble: Weapon Smt: 644 -> 796\n\n 2. Rapid-Reload-And-Fire Gyro. SkillTo Assemble: Weapon Smt: 644 -> 796\n\n 3. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 322 -> 398\n\n 4. Nano Pylon. SkillTo Assemble: Mech. Engi: 402 -> 498\n\n 5. Energy Conduction Rack. SkillTo Assemble: Quantum FT: 523 -> 647\n\n 6. Composite Barrel. SkillTo Assemble: Weapon Smt: 604 -> 746\n\n 7. Nano Pylon. SkillTo Assemble: Mech. Engi: 402 -> 498\n\n 8. Energy Pack Interface. SkillTo Assemble: Elec. Engi: 644 -> 796\n\n 9. Flake Tubing Base Cooling System. SkillTo Assemble: Weapon Smt: 644 -> 796\n\n 10. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 402 -> 498\n\n 11. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 242 -> 298\n\n 12. Self-Cleaning KO-CR Device. SkillTo Assemble: Weapon Smt: 564 -> 696\n\n 13. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 402 -> 498" +} diff --git a/modules/standard/recipe/recipes/283.json b/modules/standard/recipe/recipes/283.json new file mode 100644 index 0000000..848e9d2 --- /dev/null +++ b/modules/standard/recipe/recipes/283.json @@ -0,0 +1,8 @@ +{ + "name": "First-Rate Sleekblaster Minor", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'First-Rate Sleekblaster Minor'\n The Construction kit. must be between Quality Level 161 and 199.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add in following order:\n \n 1. Energy Weapons Construction kit. SkillTo Assemble: Weapon Smt: 644 -> 796\n \n 2. Energy Conduction Rack. SkillTo Assemble: Quantum FT: 523 -> 647\n \n 3. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 322 -> 398\n \n 4. Flake Tubing Base Cooling System. SkillTo Assemble: Weapon Smt: 644 -> 796\n \n 5. Rapid-Reload-And-Fire Gyro. SkillTo Assemble: Weapon Smt: 644 -> 796\n \n 6. Energy Pack Interface. SkillTo Assemble: Elec. Engi: 644 -> 796\n \n 7. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 242 -> 298\n \n 8. Jandawit Cleanup Cluster. SkillTo Assemble: Weapon Smt: 564 -> 696\n \n 9. Short Composite Barrel. SkillTo Assemble: Weapon Smt: 523 -> 647\n \n 10. Nano Pylon. SkillTo Assemble: Mech. Engi: 402 -> 498" +} diff --git a/modules/standard/recipe/recipes/284.json b/modules/standard/recipe/recipes/284.json new file mode 100644 index 0000000..b8e5d81 --- /dev/null +++ b/modules/standard/recipe/recipes/284.json @@ -0,0 +1,8 @@ +{ + "name": "First-Rate Triplejolt", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'First-Rate Triplejolt'\n The Construction kit. must be between Quality Level 161 and 199.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add in following order:\n \n 1. Shotgun Weapons Construction kit. SkillTo Assemble: Weapon Smt: 644 -> 796\n \n 2. Radioactive Isotope Fusion System. SkillTo Assemble: Quantum FT: 644 -> 796\n \n 3. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 322 -> 398\n \n 4. Jandawit Cleanup Cluster. SkillTo Assemble: Weapon Smt: 564 -> 696\n \n 5. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 402 -> 498\n \n 6. Energy Conduction Rack. SkillTo Assemble: Quantum FT: 523 -> 647\n \n 7. Hyper Carbo-Ceramic Cooling System. SkillTo Assemble: Weapon Smt: 644 -> 796\n \n 8. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 242 -> 298\n \n 9. Rapid-Reload-And-Fire Gyro. SkillTo Assemble: Weapon Smt: 644 -> 796\n \n 10. Ultra Short Composite Barrel. SkillTo Assemble: Weapon Smt: 483 -> 597\n \n 11. Nano Pylon. SkillTo Assemble: Mech. Engi: 402 -> 498\n \n 12. Nano Pylon. SkillTo Assemble: Mech. Engi: 402 -> 498" +} diff --git a/modules/standard/recipe/recipes/285.json b/modules/standard/recipe/recipes/285.json new file mode 100644 index 0000000..9279e2a --- /dev/null +++ b/modules/standard/recipe/recipes/285.json @@ -0,0 +1,8 @@ +{ + "name": "Flamethrower", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Flamethrower'\n The Construction kit. must be between Quality Level 81 and 100.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add in following order:\n \n 1. AssaultRifle Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 324 -> 400\n \n 2. Self-Cleaning KO-CR Device. SkillTo Assemble: Weapon Smt: 284 -> 350\n \n 3. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 202 -> 250\n \n 4. Short Composite Barrel. SkillTo Assemble: Weapon Smt: 263 -> 325\n \n 5. Nano Pylon. SkillTo Assemble: Mech. Engi: 202 -> 250\n \n 6. Nano Pylon. SkillTo Assemble: Mech. Engi: 202 -> 250\n \n 7. Primitive Freon Bag Cooling System. SkillTo Assemble: Weapon Smt: 324 -> 400\n \n 8. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 122 -> 150\n \n 9. Compression Chamber for Chemicals. SkillTo Assemble: Weapon Smt: 344 -> 425\n \n 10. Auto Targeting Computer -IIR 1. SkillTo Assemble: Elec. Engi: 182 -> 225\n \n 11. Plasma Streamer Interface Nozzle. SkillTo Assemble: Chemistry: 324 -> 400\n \n 12. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 162 -> 200" +} diff --git a/modules/standard/recipe/recipes/286.json b/modules/standard/recipe/recipes/286.json new file mode 100644 index 0000000..ba65850 --- /dev/null +++ b/modules/standard/recipe/recipes/286.json @@ -0,0 +1,8 @@ +{ + "name": "Grenade-Thrower", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Grenade-Thrower'\n The Construction kit. must be between Quality Level 81 and 100.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add in following order:\n \n 1. Grenades Construction kit. SkillTo Assemble: Weapon Smt: 324 -> 400\n \n 2. Ultra Short Composite Barrel. SkillTo Assemble: Weapon Smt: 243 -> 300\n \n 3. Flake Tubing Base Cooling System. SkillTo Assemble: Weapon Smt: 324 -> 400\n \n 4. Poison Chemical Combination Chamber. SkillTo Assemble: Chemistry: 324 -> 400\n \n 5. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 202 -> 250\n \n 6. Notum Enriched Nano Paste - 4x Layer. SkillTo Assemble: Nano Progra: 202 -> 250\n \n 7. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 122 -> 150\n \n 8. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 162 -> 200\n \n 9. Nano Pylon. SkillTo Assemble: Mech. Engi: 202 -> 250" +} diff --git a/modules/standard/recipe/recipes/287.json b/modules/standard/recipe/recipes/287.json new file mode 100644 index 0000000..33dbb10 --- /dev/null +++ b/modules/standard/recipe/recipes/287.json @@ -0,0 +1,8 @@ +{ + "name": "Hand-Made Thri-Blade", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Hand-Made Thri-Blade'\n The Construction kit. must be between Quality Level 185 and 199.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add the pieces in the following order:\n \n 1. One Handed Edged Weapons Construction kit.\n \n 2. Short Handle. . SkillTo Assemble: Weapon Smt: 648-696\n \n 3. Piercing Cluster - Bright (Left-Arm). . SkillTo Assemble: Nano Progra: 370-398\n \n 4. Max Health Cluster - Shiny (Chest). . SkillTo Assemble: Nano Progra: 555-597\n \n 5. Optimized Co-Weapon Interface. . SkillTo Assemble: Comp. Liter: 555-597\n \n 6. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 278-298\n \n 7. 1h Edged Weapon Cluster - Shiny (Right-Arm). . SkillTo Assemble: Nano Progra: 555-597" +} diff --git a/modules/standard/recipe/recipes/288.json b/modules/standard/recipe/recipes/288.json new file mode 100644 index 0000000..b5c5778 --- /dev/null +++ b/modules/standard/recipe/recipes/288.json @@ -0,0 +1,8 @@ +{ + "name": "Heavy Grinner", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Heavy Grinner'\n The Construction kit. must be between Quality Level 81 and 100.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add in following order:\n \n 1. Pistol Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 324 -> 400\n \n 2. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 122 -> 150\n \n 3. Composite Barrel. SkillTo Assemble: Weapon Smt: 304 -> 375\n \n 4. Lock and Stock. SkillTo Assemble: Weapon Smt: 324 -> 400\n \n 5. Explosion Propulsion Containment Chamber. SkillTo Assemble: Mech. Engi: 284 -> 350\n \n 6. Nano Pylon. SkillTo Assemble: Mech. Engi: 202 -> 250\n \n 7. Self-Cleaning KO-CR Device. SkillTo Assemble: Weapon Smt: 284 -> 350\n \n 8. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 162 -> 200\n \n 9. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 202 -> 250\n \n 10. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 202 -> 250\n \n 11. Triple Pulse Enabler. SkillTo Assemble: Weapon Smt: 344 -> 425\n \n 12. Nano Pylon. SkillTo Assemble: Mech. Engi: 202 -> 250" +} diff --git a/modules/standard/recipe/recipes/289.json b/modules/standard/recipe/recipes/289.json new file mode 100644 index 0000000..033605a --- /dev/null +++ b/modules/standard/recipe/recipes/289.json @@ -0,0 +1,8 @@ +{ + "name": "Heavy Lead Sprayer", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Heavy Lead Sprayer'\n The Construction kit. must be between Quality Level 81 and 100.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add in following order:\n \n 1. AssaultRifle Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 324 -> 400\n \n 2. Composite Barrel. SkillTo Assemble: Weapon Smt: 304 -> 375\n \n 3. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 162 -> 200\n \n 4. Triple Pulse Enabler. SkillTo Assemble: Weapon Smt: 344 -> 425\n \n 5. Nano Pylon. SkillTo Assemble: Mech. Engi: 202 -> 250\n \n 6. Explosion Propulsion Containment Chamber. SkillTo Assemble: Mech. Engi: 284 -> 350\n \n 7. Lock and Stock. SkillTo Assemble: Weapon Smt: 324 -> 400\n \n 8. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 122 -> 150\n \n 9. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 202 -> 250\n \n 10. Gyro Stabilizing Unit. SkillTo Assemble: Weapon Smt: 364 -> 450\n \n 11. Jandawit Cleanup Cluster. SkillTo Assemble: Weapon Smt: 284 -> 350" +} diff --git a/modules/standard/recipe/recipes/29.json b/modules/standard/recipe/recipes/29.json new file mode 100644 index 0000000..14ea020 --- /dev/null +++ b/modules/standard/recipe/recipes/29.json @@ -0,0 +1,65 @@ +{ + "name": "Bureaucrat Suits", + "author": "", + "items": [ + { + "alias": "Advanced Hacker Tool", + "item_id": 87814 + }, + { + "alias": "Sealed Order BLCG-7791", + "item_id": 156330 + }, + { + "alias": "Sealed Order XITL-0127", + "item_id": 156328 + }, + { + "alias": "Expendable Hologram Camera", + "item_id": 156054 + }, + { + "alias": "ID-extractor", + "item_id": 156339 + }, + { + "alias": "Omni-Tek Multi-Form", + "item_id": 156344 + }, + { + "alias": "Hacked Order BLCG-7791", + "item_id": 156336 + }, + { + "alias": "ID-data", + "item_id": 156340 + }, + { + "alias": "Personal Order BLCG-7791", + "item_id": 156352 + }, + { + "alias": "OT Standard Executive Secretary Suit", + "item_id": 156528 + }, + { + "alias": "Clans Multi-Form", + "item_id": 156346 + }, + { + "alias": "Standard Clans Administration Suit", + "item_id": 156530 + }, + { + "alias": "Multi-Form", + "item_id": 156345 + }, + { + "alias": "Universal Office Worker Suit", + "item_id": 156538 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients \n------------------------------\n\n#L \"Hacker Tool\" \"87814\"\n\n\n#L \"Sealed Order BLCG-7791\" \"156330\" (For Clan)\nor\n#L \"Sealed Order XITL-0127\" \"156328\" (For OMNI)\n\n\n#L \"Expendable Hologram Camera\" \"156054\"\n\n\n#L \"ID-extractor\" \"156339\"\n\n\nA Multi-Form needed\n( ie #L \"Omni-Tek Multi-Form\" \"156344\" )\n\n\n------------------------------\nRecipe \n------------------------------\n\nHacker Tool\n+\nSealed Order\n=\n\nHacked Order\n( ie : #L \"Hacked Order BLCG-7791\" \"156336\" )\nSkills: | BE |\n\n------------------------------\n\nID-extractor\n+\nExpendable Hologram Camera\n=\n\n#L \"ID-data\" \"156340\"\nSkills: | ?? |\n\n------------------------------\n\nID-data\n+\nHacked Order\n=\n\nPersonal Order\n( ie : #L \"Personal Order BLCG-7791\" \"156352\" )\nSkills: | PS |\n\n------------------------------\n\nMulti-Form\n+\nPersonal Order\n=\n\nBureaucrat Suits\nSkills: | PS |\n\n------------------------------\nDetails\n------------------------------\n\n#L \"Sealed Order XITL-0127\" \"156328\"\n#L \"Omni-Tek Multi-Form\" \"156344\"\n->\n#L \"OT Standard Executive Secretary Suit\" \"156528\"\n\n\n#L \"Sealed Order BLCG-7791\" \"156330\"\n#L \"Clans Multi-Form\" \"156346\"\n->\n#L \"Standard Clans Administration Suit\" \"156530\"\n\n\n#L \"Sealed Order XITL-0127\" \"156328\"\n#L \"Clans Multi-Form\" \"156345\"\n->\n#L \"Universal Office Worker Suit\" \"156538\"\n\n\n#L \"Sealed Order BLCG-7791\" \"156330\"\n#L \"Omni-Tek Multi-Form\" \"156344\"\n->\n#L \"Universal Office Worker Suit\" \"156538\"\n\n\n------------------------------\nComments\n------------------------------\n\nNice buffs and they look great too." +} diff --git a/modules/standard/recipe/recipes/290.json b/modules/standard/recipe/recipes/290.json new file mode 100644 index 0000000..34e81c0 --- /dev/null +++ b/modules/standard/recipe/recipes/290.json @@ -0,0 +1,8 @@ +{ + "name": "High Quality MTI Aleph 99", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'High Quality MTI Aleph 99'\n The Construction kit. must be between Quality Level 151 and 199.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add the pieces in the following order:\n \n 1. Submachinegun Weapons Construction kit.\n \n 2. Nano Pylon. . SkillTo Assemble: Mech. Engi: 378-498\n \n 3. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 226-298\n \n 4. Ultra-Long Composite Barrel. . SkillTo Assemble: Weapon Smt: 642-846\n \n 5. Triple Pulse Enabler. . SkillTo Assemble: Weapon Smt: 642-846\n \n 6. Stamina Cluster - Faded (Waist). . SkillTo Assemble: Nano Progra: 151-199\n \n 7. Lock and Stock. . SkillTo Assemble: Weapon Smt: 604-796\n \n 8. Nano Pylon. . SkillTo Assemble: Mech. Engi: 378-498\n \n 9. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 378-498\n \n 10. Explosion Propulsion Containment Chamber. . SkillTo Assemble: Mech. Engi: 528-696\n \n 11. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 302-398" +} diff --git a/modules/standard/recipe/recipes/291.json b/modules/standard/recipe/recipes/291.json new file mode 100644 index 0000000..f7a829d --- /dev/null +++ b/modules/standard/recipe/recipes/291.json @@ -0,0 +1,8 @@ +{ + "name": "Ill-Treated Blackened Blaster", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Ill-Treated Blackened Blaster'\n The Construction kit. must be between Quality Level 1 and 20.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add the pieces in the following order:\n \n 1. Rifle Weapons Construction kit.\n \n 2. Nano Pylon. . SkillTo Assemble: Mech. Engi: 2-50\n \n 3. Self-Cleaning KO-CR Device. . SkillTo Assemble: Weapon Smt: 4-70\n \n 4. Energy Pack Interface. . SkillTo Assemble: Elec. Engi: 4-80\n \n 5. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 2-30\n \n 6. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 2-40\n \n 7. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 2-50\n \n 8. Ultra-Long Composite Barrel. . SkillTo Assemble: Weapon Smt: 4-85\n \n 9. Energy Conduction Rack. . SkillTo Assemble: Quantum FT: 3-65\n \n 10. Rapid-Reload-And-Fire Gyro. . SkillTo Assemble: Weapon Smt: 4-80\n \n 11. Nano Pylon. . SkillTo Assemble: Mech. Engi: 2-50\n \n 12. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 2-50\n \n 13. Hyper Carbo-Ceramic Cooling System. . SkillTo Assemble: Weapon Smt: 4-80" +} diff --git a/modules/standard/recipe/recipes/292.json b/modules/standard/recipe/recipes/292.json new file mode 100644 index 0000000..0d56cf4 --- /dev/null +++ b/modules/standard/recipe/recipes/292.json @@ -0,0 +1,8 @@ +{ + "name": "Ill-Treated Blackened Blaster Rifle", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Ill-Treated Blackened Blaster Rifle'\n The Construction kit. must be between Quality Level 1 and 20.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add the pieces in the following order:\n \n 1. Rifle Weapons Construction kit.\n \n 2. Notum Enriched Nano Paste - 4x Layer. . SkillTo Assemble: Nano Progra: 2-50\n \n 3. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 2-40\n \n 4. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 2-30\n \n 5. Lock and Stock. . SkillTo Assemble: Weapon Smt: 4-80\n \n 6. Auto Targeting Computer -IIR 1. . SkillTo Assemble: Elec. Engi: 2-45\n \n 7. Jandawit Cleanup Cluster. . SkillTo Assemble: Weapon Smt: 4-70\n \n 8. Ultra-Long Composite Barrel. . SkillTo Assemble: Weapon Smt: 4-85\n \n 9. Rapid-Reload-And-Fire Gyro. . SkillTo Assemble: Weapon Smt: 4-80\n \n 10. Energy Conduction Rack. . SkillTo Assemble: Quantum FT: 3-65\n \n 11. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 2-50\n \n 12. Nano Pylon. . SkillTo Assemble: Mech. Engi: 2-50\n \n 13. Primitive Freon Bag Cooling System. . SkillTo Assemble: Weapon Smt: 4-80" +} diff --git a/modules/standard/recipe/recipes/293.json b/modules/standard/recipe/recipes/293.json new file mode 100644 index 0000000..974e412 --- /dev/null +++ b/modules/standard/recipe/recipes/293.json @@ -0,0 +1,8 @@ +{ + "name": "Ill-Treated Blackhole Mk IX", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Ill-Treated Blackhole Mk IX'\n The Construction kit. must be between Quality Level 1 and 20.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add in following order:\n \n 1. Shotgun Weapons Construction kit. SkillTo Assemble: Weapon Smt: 4 -> 80\n \n 2. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 2 -> 50\n \n 3. Notum Enriched Nano Paste - 4x Layer. SkillTo Assemble: Nano Progra: 2 -> 50\n \n 4. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 2 -> 50\n \n 5. Ultra-Long Composite Barrel. SkillTo Assemble: Weapon Smt: 4 -> 85\n \n 6. Rapid-Reload-And-Fire Gyro. SkillTo Assemble: Weapon Smt: 4 -> 80\n \n 7. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 2 -> 40\n \n 8. Nano Pylon. SkillTo Assemble: Mech. Engi: 2 -> 50\n \n 9. Energy Pack Interface. SkillTo Assemble: Elec. Engi: 4 -> 80\n \n 10. Energy Conduction Rack. SkillTo Assemble: Quantum FT: 3 -> 65\n \n 11. Nano Pylon. SkillTo Assemble: Mech. Engi: 2 -> 50\n \n 12. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 2 -> 30" +} diff --git a/modules/standard/recipe/recipes/294.json b/modules/standard/recipe/recipes/294.json new file mode 100644 index 0000000..5cb7f27 --- /dev/null +++ b/modules/standard/recipe/recipes/294.json @@ -0,0 +1,8 @@ +{ + "name": "Ill-Treated Chunkprojector", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Ill-Treated Chunkprojector'\n The Construction kit. must be between Quality Level 1 and 20.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add in following order:\n \n 1. Shotgun Weapons Construction kit. SkillTo Assemble: Weapon Smt: 4 -> 80\n \n 2. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 2 -> 40\n \n 3. Short Composite Barrel. SkillTo Assemble: Weapon Smt: 3 -> 65\n \n 4. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 2 -> 50\n \n 5. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 2 -> 30\n \n 6. Explosion Propulsion Containment Chamber. SkillTo Assemble: Quantum FT: 4 -> 75\n \n 7. Nano Pylon. SkillTo Assemble: Mech. Engi: 2 -> 50\n \n 8. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 2 -> 50\n \n 9. Flake Tubing Base Cooling System. SkillTo Assemble: Weapon Smt: 4 -> 80\n \n 10. Lock and Stock. SkillTo Assemble: Weapon Smt: 4 -> 80\n \n 11. Self-Cleaning KO-CR Device. SkillTo Assemble: Weapon Smt: 4 -> 70\n \n 12. Nano Pylon. SkillTo Assemble: Mech. Engi: 2 -> 50" +} diff --git a/modules/standard/recipe/recipes/295.json b/modules/standard/recipe/recipes/295.json new file mode 100644 index 0000000..4721cdc --- /dev/null +++ b/modules/standard/recipe/recipes/295.json @@ -0,0 +1,8 @@ +{ + "name": "Ill-Treated Disaffiliation Sniper", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Ill-Treated Disaffiliation Sniper'\n The Construction kit. must be between Quality Level 1 and 20.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add the pieces in the following order:\n \n 1. Rifle Weapons Construction kit.\n \n 2. Lock and Stock. . SkillTo Assemble: Weapon Smt: 4-80\n \n 3. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 2-50\n \n 4. Nano Pylon. . SkillTo Assemble: Mech. Engi: 2-50\n \n 5. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 2-40\n \n 6. Auto Targeting Computer -IIR 2-Groper-. . SkillTo Assemble: Elec. Engi: 2-50\n \n 7. Primitive Freon Bag Cooling System. . SkillTo Assemble: Weapon Smt: 4-80\n \n 8. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 2-50\n \n 9. Ultra-Long Composite Barrel. . SkillTo Assemble: Weapon Smt: 4-85\n \n 10. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 2-30\n \n 11. Nano Pylon. . SkillTo Assemble: Mech. Engi: 2-50\n \n 12. Runtime Critical Area Analyzer. . SkillTo Assemble: Weapon Smt: 4-80\n \n 13. Notum Enriched Nano Paste - 4x Layer. . SkillTo Assemble: Nano Progra: 2-50\n \n 14. Explosion Propulsion Containment Chamber. . SkillTo Assemble: Mech. Engi: 4-70" +} diff --git a/modules/standard/recipe/recipes/296.json b/modules/standard/recipe/recipes/296.json new file mode 100644 index 0000000..6b39ece --- /dev/null +++ b/modules/standard/recipe/recipes/296.json @@ -0,0 +1,8 @@ +{ + "name": "Ill-Treated E-Beamer", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Ill-Treated E-Beamer'\n The Construction kit. must be between Quality Level 1 and 20.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add in following order:\n \n 1. Energy Weapons Construction kit. SkillTo Assemble: Weapon Smt: 4 -> 80\n \n 2. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 2 -> 50\n \n 3. Nano Pylon. SkillTo Assemble: Mech. Engi: 2 -> 50\n \n 4. Energy Conduction Rack. SkillTo Assemble: Quantum FT: 3 -> 65\n \n 5. Notum Enriched Nano Paste - 4x Layer. SkillTo Assemble: Nano Progra: 2 -> 50\n \n 6. Rapid-Reload-And-Fire Gyro. SkillTo Assemble: Weapon Smt: 4 -> 80\n \n 7. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 2 -> 40\n \n 8. Short Composite Barrel. SkillTo Assemble: Weapon Smt: 3 -> 65\n \n 9. Nano Pylon. SkillTo Assemble: Mech. Engi: 2 -> 50\n \n 10. Flake Tubing Base Cooling System. SkillTo Assemble: Weapon Smt: 4 -> 80\n \n 11. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 2 -> 50\n \n 12. Self-Cleaning KO-CR Device. SkillTo Assemble: Weapon Smt: 4 -> 70\n \n 13. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 2 -> 30\n \n 14. Energy Pack Interface. SkillTo Assemble: Elec. Engi: 4 -> 80" +} diff --git a/modules/standard/recipe/recipes/297.json b/modules/standard/recipe/recipes/297.json new file mode 100644 index 0000000..43ca35c --- /dev/null +++ b/modules/standard/recipe/recipes/297.json @@ -0,0 +1,8 @@ +{ + "name": "Ill-Treated Flamethrower", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Ill-Treated Flamethrower'\n The Construction kit. must be between Quality Level 1 and 20.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add in following order:\n \n 1. AssaultRifle Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 4 -> 80\n \n 2. Plasma Streamer Interface Nozzle. SkillTo Assemble: Chemistry: 4 -> 80\n \n 3. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 2 -> 40\n \n 4. Self-Cleaning KO-CR Device. SkillTo Assemble: Weapon Smt: 4 -> 70\n \n 5. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 2 -> 50\n \n 6. Short Composite Barrel. SkillTo Assemble: Weapon Smt: 3 -> 65\n \n 7. Nano Pylon. SkillTo Assemble: Mech. Engi: 2 -> 50\n \n 8. Nano Pylon. SkillTo Assemble: Mech. Engi: 2 -> 50\n \n 9. Primitive Freon Bag Cooling System. SkillTo Assemble: Weapon Smt: 4 -> 80\n \n 10. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 2 -> 30\n \n 11. Compression Chamber for Chemicals. SkillTo Assemble: Weapon Smt: 4 -> 85\n \n 12. Auto Targeting Computer -IIR 1. SkillTo Assemble: Elec. Engi: 2 -> 45" +} diff --git a/modules/standard/recipe/recipes/298.json b/modules/standard/recipe/recipes/298.json new file mode 100644 index 0000000..3168591 --- /dev/null +++ b/modules/standard/recipe/recipes/298.json @@ -0,0 +1,8 @@ +{ + "name": "Ill-Treated Grenade-Thrower", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Ill-Treated Grenade-Thrower'\n The Construction kit. must be between Quality Level 1 and 20.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add in following order:\n \n 1. Grenades Construction kit. SkillTo Assemble: Weapon Smt: 4 -> 80\n \n 2. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 2 -> 30\n \n 3. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 2 -> 50\n \n 4. Nano Pylon. SkillTo Assemble: Mech. Engi: 2 -> 50\n \n 5. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 2 -> 40\n \n 6. Poison Chemical Combination Chamber. SkillTo Assemble: Chemistry: 4 -> 80\n \n 7. Ultra Short Composite Barrel. SkillTo Assemble: Weapon Smt: 3 -> 60\n \n 8. Notum Enriched Nano Paste - 4x Layer. SkillTo Assemble: Nano Progra: 2 -> 50\n \n 9. Flake Tubing Base Cooling System. SkillTo Assemble: Weapon Smt: 4 -> 80" +} diff --git a/modules/standard/recipe/recipes/299.json b/modules/standard/recipe/recipes/299.json new file mode 100644 index 0000000..95977ee --- /dev/null +++ b/modules/standard/recipe/recipes/299.json @@ -0,0 +1,8 @@ +{ + "name": "Ill-Treated Heavy Grinner", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Ill-Treated Heavy Grinner'\n The Construction kit. must be between Quality Level 1 and 20.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add in following order:\n \n 1. Pistol Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 4 -> 80\n \n 2. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 2 -> 50\n \n 3. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 2 -> 50\n \n 4. Triple Pulse Enabler. SkillTo Assemble: Weapon Smt: 4 -> 85\n \n 5. Nano Pylon. SkillTo Assemble: Mech. Engi: 2 -> 50\n \n 6. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 2 -> 30\n \n 7. Composite Barrel. SkillTo Assemble: Weapon Smt: 4 -> 75\n \n 8. Lock and Stock. SkillTo Assemble: Weapon Smt: 4 -> 80\n \n 9. Explosion Propulsion Containment Chamber. SkillTo Assemble: Mech. Engi: 4 -> 70\n \n 10. Nano Pylon. SkillTo Assemble: Mech. Engi: 2 -> 50\n \n 11. Self-Cleaning KO-CR Device. SkillTo Assemble: Weapon Smt: 4 -> 70\n \n 12. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 2 -> 40" +} diff --git a/modules/standard/recipe/recipes/3.json b/modules/standard/recipe/recipes/3.json new file mode 100644 index 0000000..c9133f7 --- /dev/null +++ b/modules/standard/recipe/recipes/3.json @@ -0,0 +1,26 @@ +{ + "name": "Adventure Shield", + "author": "", + "items": [ + { + "alias": "Cold Deflection Shield", + "item_id": 158037 + }, + { + "alias": "Neutron Displacer", + "item_id": 144784 + }, + { + "alias": "Cold Adventure Shield", + "item_id": 162385 + } + ], + "steps": [ + { + "source": "Neutron Displacer", + "target": "Cold Deflection Shield", + "result": "Cold Adventure Shield", + "skills": "PT" + } + ] +} diff --git a/modules/standard/recipe/recipes/30.json b/modules/standard/recipe/recipes/30.json new file mode 100644 index 0000000..93639ae --- /dev/null +++ b/modules/standard/recipe/recipes/30.json @@ -0,0 +1,37 @@ +{ + "name": "Carbonum Armor", + "author": "", + "items": [ + { + "alias": "Sheet of Curved Carbonum Plating", + "item_id": 156017 + }, + { + "alias": "HSR - Sketch and Etch - Chestpiece", + "item_id": 162290 + }, + { + "alias": "Ultimate Mass Relocating Robot", + "item_id": 155592 + }, + { + "alias": "Mass Relocating Robot (Shape Hard Armor)", + "item_id": 162218 + }, + { + "alias": "Etched Pattern for Carbonum Breastplate", + "item_id": 162299 + }, + { + "alias": "Carbonum Breastplate", + "item_id": 162432 + }, + { + "alias": "Screwdriver", + "item_id": 150922 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nForward\n------------------------------\n\nYou need a different HSR - Sketch and Etch for each piece of this armor.\n\n------------------------------\nIngredients\n------------------------------\n\n#L \"Sheet of Curved Carbonum Plating\" \"156017\"\n\n\n#L \"Programmed Photon Particle Emitter (Shape Hard Armor)\" \"162221\"\n\n\nHSR - Sketch and Etch\n(ie : #L \"HSR - Sketch and Etch - Chestpiece\" \"162290\")\n\n\n#L \"Mass Relocating Robot\" \"155592\"\n\n\n------------------------------\nRecipe\n------------------------------\n\nProgrammed Photon Particle Emitter (Shape Hard Armor)\n+\nMass Relocating Robot\n=\n\n#L \"Mass Relocating Robot (Shape Hard Armor)\" \"162218\"\nSkills: | 2.5EE,2.5ME,2.5NP |\n\n------------------------------\n\nSheet of Curved Carbonum Plating\n+\nHSR - Sketch and Etch - Chestpiece\n=\n\n#L \"Etched Pattern for Carbonum Breastplate\" \"162299\"\nSkills: | 4.5ME,CH |\n\n------------------------------\n\nMass Relocating Robot (Shape Hard Armor)\n+\nEtched Pattern for Carbonum Breastplate\n=\n\n#L \"Carbonum Breastplate\" \"162432\"\nSkills: | 4.5CH,2.5EE,2.5INT |\n\n------------------------------\nComments\n------------------------------\n\nYou can use...\n\n\n#L \"Screwdriver\" \"150922\"\n\n...instead of the Mass Relocating Robot (Shape Hard Armor), but skill's requirement is higher like this:\n\nScrewdriver\n+\nEtched Pattern for Carbonum Breastplate\n#L \"Carbonum Breastplate\" \"162432\"\n=\n\nSkills: | 6ME,5.5EE,2.5INT |\n\nCarb armor is great armor, especially when you are just starting out. The NCU buffs can be handy for twinking also. Unfortunately, The Programmed Photon Particle Emitter (Shape Hard Armor) is a Boss-loot-only QL 60 stuff and very rare." +} diff --git a/modules/standard/recipe/recipes/300.json b/modules/standard/recipe/recipes/300.json new file mode 100644 index 0000000..4f55d87 --- /dev/null +++ b/modules/standard/recipe/recipes/300.json @@ -0,0 +1,8 @@ +{ + "name": "Ill-Treated Heavy Lead Sprayer", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Ill-Treated Heavy Lead Sprayer'\n The Construction kit. must be between Quality Level 1 and 20.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add in following order:\n \n 1. AssaultRifle Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 4 -> 80\n \n 2. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 2 -> 50\n \n 3. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 2 -> 40\n \n 4. Nano Pylon. SkillTo Assemble: Mech. Engi: 2 -> 50\n \n 5. Explosion Propulsion Containment Chamber. SkillTo Assemble: Mech. Engi: 4 -> 70\n \n 6. Composite Barrel. SkillTo Assemble: Weapon Smt: 4 -> 75\n \n 7. Gyro Stabilizing Unit. SkillTo Assemble: Weapon Smt: 4 -> 90\n \n 8. Triple Pulse Enabler. SkillTo Assemble: Weapon Smt: 4 -> 85\n \n 9. Jandawit Cleanup Cluster. SkillTo Assemble: Weapon Smt: 4 -> 70\n \n 10. Lock and Stock. SkillTo Assemble: Weapon Smt: 4 -> 80\n \n 11. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 2 -> 30" +} diff --git a/modules/standard/recipe/recipes/301.json b/modules/standard/recipe/recipes/301.json new file mode 100644 index 0000000..4509b4b --- /dev/null +++ b/modules/standard/recipe/recipes/301.json @@ -0,0 +1,8 @@ +{ + "name": "Ill-Treated Mausser Particle Streamer", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Ill-Treated Mausser Particle Streamer'\n The Construction kit. must be between Quality Level 1 and 20.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add the pieces in the following order:\n \n 1. Submachinegun Weapons Construction kit.\n \n 2. Explosion Propulsion Containment Chamber. . SkillTo Assemble: Mech. Engi: 4-70\n \n 3. Nano Pylon. . SkillTo Assemble: Mech. Engi: 2-50\n \n 4. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 2-40\n \n 5. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 2-50\n \n 6. Ultra-Long Composite Barrel. . SkillTo Assemble: Weapon Smt: 4-85\n \n 7. Auto Targeting Computer -IIR 1. . SkillTo Assemble: Elec. Engi: 2-45\n \n 8. Triple Pulse Enabler. . SkillTo Assemble: Weapon Smt: 4-85\n \n 9. Lock and Stock. . SkillTo Assemble: Weapon Smt: 4-80\n \n 10. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 2-30\n \n 11. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 2-50\n \n 12. Nano Pylon. . SkillTo Assemble: Mech. Engi: 2-50" +} diff --git a/modules/standard/recipe/recipes/302.json b/modules/standard/recipe/recipes/302.json new file mode 100644 index 0000000..751ed3e --- /dev/null +++ b/modules/standard/recipe/recipes/302.json @@ -0,0 +1,8 @@ +{ + "name": "Ill-Treated Megajolt", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Ill-Treated Megajolt'\n The Construction kit. must be between Quality Level 1 and 20.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add in following order:\n \n 1. Shotgun Weapons Construction kit. SkillTo Assemble: Weapon Smt: 4 -> 80\n \n 2. Energy Conduction Rack. SkillTo Assemble: Quantum FT: 3 -> 65\n \n 3. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 2 -> 30\n \n 4. Energy Pack Interface. SkillTo Assemble: Elec. Engi: 4 -> 80\n \n 5. Auto Targeting Computer -IIR 2-Groper-. SkillTo Assemble: Elec. Engi: 2 -> 50\n \n 6. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 2 -> 50\n \n 7. Nano Pylon. SkillTo Assemble: Mech. Engi: 2 -> 50\n \n 8. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 2 -> 50\n \n 9. Notum Enriched Nano Paste - 4x Layer. SkillTo Assemble: Nano Progra: 2 -> 50\n \n 10. Nano Pylon. SkillTo Assemble: Mech. Engi: 2 -> 50\n \n 11. Primitive Freon Bag Cooling System. SkillTo Assemble: Weapon Smt: 4 -> 80\n \n 12. Composite Barrel. SkillTo Assemble: Weapon Smt: 4 -> 75\n \n 13. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 2 -> 40" +} diff --git a/modules/standard/recipe/recipes/303.json b/modules/standard/recipe/recipes/303.json new file mode 100644 index 0000000..27a2550 --- /dev/null +++ b/modules/standard/recipe/recipes/303.json @@ -0,0 +1,8 @@ +{ + "name": "Ill-Treated Mini-Shotgun", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Ill-Treated Mini-Shotgun'\n The Construction kit. must be between Quality Level 1 and 20.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add in following order:\n \n 1. Shotgun Weapons Construction kit. SkillTo Assemble: Weapon Smt: 4 -> 80\n \n 2. Nano-Interfaced Cooling System. SkillTo Assemble: Weapon Smt: 4 -> 80\n \n 3. Self-Cleaning KO-CR Device. SkillTo Assemble: Weapon Smt: 4 -> 70\n \n 4. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 2 -> 50\n \n 5. Explosion Propulsion Containment Chamber. SkillTo Assemble: Quantum FT: 4 -> 75\n \n 6. Lock and Stock. SkillTo Assemble: Weapon Smt: 4 -> 80\n \n 7. Nano Pylon. SkillTo Assemble: Mech. Engi: 2 -> 50\n \n 8. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 2 -> 30\n \n 9. Short Composite Barrel. SkillTo Assemble: Weapon Smt: 3 -> 65\n \n 10. Nano Pylon. SkillTo Assemble: Mech. Engi: 2 -> 50\n \n 11. Rapid-Reload-And-Fire Gyro. SkillTo Assemble: Weapon Smt: 4 -> 80" +} diff --git a/modules/standard/recipe/recipes/304.json b/modules/standard/recipe/recipes/304.json new file mode 100644 index 0000000..bb79be3 --- /dev/null +++ b/modules/standard/recipe/recipes/304.json @@ -0,0 +1,8 @@ +{ + "name": "Ill-Treated Plasmaprojector", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Ill-Treated Plasmaprojector'\n The Construction kit. must be between Quality Level 1 and 20.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add in following order:\n \n 1. AssaultRifle Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 4 -> 80\n \n 2. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 2 -> 40\n \n 3. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 2 -> 30\n \n 4. Energy Conduction Rack. SkillTo Assemble: Quantum FT: 3 -> 65\n \n 5. Runtime Critical Area Analyzer. SkillTo Assemble: Weapon Smt: 4 -> 80\n \n 6. Hyper Carbo-Ceramic Cooling System. SkillTo Assemble: Weapon Smt: 4 -> 80\n \n 7. Long Composite Barrel. SkillTo Assemble: Weapon Smt: 4 -> 80\n \n 8. Nano Pylon. SkillTo Assemble: Mech. Engi: 2 -> 50\n \n 9. Energy Pack Interface. SkillTo Assemble: Elec. Engi: 4 -> 80\n \n 10. Notum Enriched Nano Paste - 4x Layer. SkillTo Assemble: Nano Progra: 2 -> 50" +} diff --git a/modules/standard/recipe/recipes/305.json b/modules/standard/recipe/recipes/305.json new file mode 100644 index 0000000..035e3cb --- /dev/null +++ b/modules/standard/recipe/recipes/305.json @@ -0,0 +1,8 @@ +{ + "name": "Ill-Treated Subturbine", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Ill-Treated Subturbine'\n The Construction kit. must be between Quality Level 1 and 20.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add in following order:\n \n 1. AssaultRifle Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 4 -> 80\n \n 2. Short Composite Barrel. SkillTo Assemble: Weapon Smt: 3 -> 65\n \n 3. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 2 -> 50\n \n 4. Nano Pylon. SkillTo Assemble: Mech. Engi: 2 -> 50\n \n 5. Triple Pulse Enabler. SkillTo Assemble: Weapon Smt: 4 -> 85\n \n 6. Gyro Stabilizing Unit. SkillTo Assemble: Weapon Smt: 4 -> 90\n \n 7. Hyper Carbo-Ceramic Cooling System. SkillTo Assemble: Weapon Smt: 4 -> 80\n \n 8. Nano Pylon. SkillTo Assemble: Mech. Engi: 2 -> 50\n \n 9. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 2 -> 30\n \n 10. Self-Cleaning KO-CR Device. SkillTo Assemble: Weapon Smt: 4 -> 70\n \n 11. Notum Enriched Nano Paste - 4x Layer. SkillTo Assemble: Nano Progra: 2 -> 50\n \n 12. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 2 -> 50\n \n 13. Lock and Stock. SkillTo Assemble: Weapon Smt: 4 -> 80\n \n 14. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 2 -> 40\n \n 15. Explosion Propulsion Containment Chamber. SkillTo Assemble: Mech. Engi: 4 -> 70" +} diff --git a/modules/standard/recipe/recipes/306.json b/modules/standard/recipe/recipes/306.json new file mode 100644 index 0000000..eeaa73c --- /dev/null +++ b/modules/standard/recipe/recipes/306.json @@ -0,0 +1,8 @@ +{ + "name": "Ill-Treated Supernova Mk VI", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Ill-Treated Supernova Mk VI'\n The Construction kit. must be between Quality Level 1 and 20.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add the pieces in the following order:\n \n 1. Energy Weapons Construction kit.\n \n 2. Nano Pylon. . SkillTo Assemble: Mech. Engi: 2-50\n \n 3. Runtime Critical Area Analyzer. . SkillTo Assemble: Weapon Smt: 4-80\n \n 4. Nano Pylon. . SkillTo Assemble: Mech. Engi: 2-50\n \n 5. Auto Targeting C. -IIR 5 -Powermolder-. . SkillTo Assemble: Elec. Engi: 3-65\n \n 6. Energy Conduction Rack. . SkillTo Assemble: Quantum FT: 3-65\n \n 7. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 2-50\n \n 8. Auto Targeting Computer -IIR 4 -Ultra-. . SkillTo Assemble: Elec. Engi: 3-60\n \n 9. Ultra-Long Composite Barrel. . SkillTo Assemble: Weapon Smt: 4-85\n \n 10. Energy Pack Interface. . SkillTo Assemble: Elec. Engi: 4-80\n \n 11. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 2-50\n \n 12. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 2-30" +} diff --git a/modules/standard/recipe/recipes/307.json b/modules/standard/recipe/recipes/307.json new file mode 100644 index 0000000..c79b45a --- /dev/null +++ b/modules/standard/recipe/recipes/307.json @@ -0,0 +1,8 @@ +{ + "name": "Ill-Treated Suppressor", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Ill-Treated Suppressor'\n The Construction kit. must be between Quality Level 1 and 20.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add the pieces in the following order:\n \n 1. Submachinegun Weapons Construction kit.\n \n 2. Ultra-Long Composite Barrel. . SkillTo Assemble: Weapon Smt: 4-85\n \n 3. Triple Pulse Enabler. . SkillTo Assemble: Weapon Smt: 4-85\n \n 4. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 2-50\n \n 5. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 2-30\n \n 6. Nano Pylon. . SkillTo Assemble: Mech. Engi: 2-50\n \n 7. Lock and Stock. . SkillTo Assemble: Weapon Smt: 4-80\n \n 8. Explosion Propulsion Containment Chamber. . SkillTo Assemble: Mech. Engi: 4-70\n \n 9. Gyro Stabilizing Unit. . SkillTo Assemble: Weapon Smt: 4-90\n \n 10. Nano Pylon. . SkillTo Assemble: Mech. Engi: 2-50\n \n 11. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 2-50" +} diff --git a/modules/standard/recipe/recipes/308.json b/modules/standard/recipe/recipes/308.json new file mode 100644 index 0000000..cd9180c --- /dev/null +++ b/modules/standard/recipe/recipes/308.json @@ -0,0 +1,8 @@ +{ + "name": "Improved Tripler", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Improved Tripler'\n The Construction kit. must be between Quality Level 116 and 138.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add the pieces in the following order:\n \n 1. One Handed Edged Weapons Construction kit.\n \n 2. Short Handle. . SkillTo Assemble: Weapon Smt: 406-483\n \n 3. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 174-207\n \n 4. 1h Edged Weapon Cluster - Faded (Right-Hand). . SkillTo Assemble: Nano Progra: 116-138\n \n 5. Optimized Co-Weapon Interface. . SkillTo Assemble: Comp. Liter: 348-414" +} diff --git a/modules/standard/recipe/recipes/309.json b/modules/standard/recipe/recipes/309.json new file mode 100644 index 0000000..5d525d2 --- /dev/null +++ b/modules/standard/recipe/recipes/309.json @@ -0,0 +1,8 @@ +{ + "name": "Irontail Inc - Mathis Multi-Energy Rifle", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Irontail Inc - Mathis Multi-Energy Rifle'\n The Construction kit. must be between Quality Level 81 and 100.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add the pieces in the following order:\n \n 1. Rifle Weapons Construction kit.\n \n 2. Nano Pylon. . SkillTo Assemble: Mech. Engi: 202-250\n \n 3. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 202-250\n \n 4. Ultra-Long Composite Barrel. . SkillTo Assemble: Weapon Smt: 344-425\n \n 5. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 122-150\n \n 6. Energy Pack Interface. . SkillTo Assemble: Elec. Engi: 324-400\n \n 7. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 162-200\n \n 8. Energy Conduction Rack. . SkillTo Assemble: Quantum FT: 263-325\n \n 9. Nano Pylon. . SkillTo Assemble: Mech. Engi: 202-250\n \n 10. Hyper Carbo-Ceramic Cooling System. . SkillTo Assemble: Weapon Smt: 324-400\n \n 11. Runtime Critical Area Analyzer. . SkillTo Assemble: Weapon Smt: 324-400" +} diff --git a/modules/standard/recipe/recipes/31.json b/modules/standard/recipe/recipes/31.json new file mode 100644 index 0000000..a55beb6 --- /dev/null +++ b/modules/standard/recipe/recipes/31.json @@ -0,0 +1,45 @@ +{ + "name": "CAS Symbiotic Armor", + "author": "", + "items": [ + { + "alias": "Notum Fragment", + "item_id": 136625 + }, + { + "alias": "Notum Chip", + "item_id": 136623 + }, + { + "alias": "Nano Programming Interface", + "item_id": 161699 + }, + { + "alias": "Inactive OT Metamorphing Liquid Nanobots", + "item_id": 164952 + }, + { + "alias": "Flawless Graft Armor Boots", + "item_id": 142685 + }, + { + "alias": "Activated OT Metamorphing Liquid Nanobots", + "item_id": 164954 + }, + { + "alias": "Stabilized OT Metamorphing Liquid Nanobots", + "item_id": 164956 + }, + { + "alias": "Super-Stabilized OT Metamorphing Liquid Nanobots", + "item_id": 164958 + }, + { + "alias": "CAS Symbiotic Armor Boots", + "item_id": 165000 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients\n------------------------------\n\n2 pieces of Notum\n#L \"Notum Fragment\" \"136624\"\n\nor\n#L \"Notum Chip\" \"136622\"\n\n\n#L \"Nano Programming Interface\" \"161699\"\n\n\n#L \"Inactive OT Metamorphing Liquid Nanobots\" \"164952\"\n\n\nA Graft Armor part\n( ie : #L \"Flawless Graft Armor Boots\" \"142685\" )\n\n\n------------------------------\nRecipe\n------------------------------\n\nNano Programming Interface\n+\nInactive OT Metamorphing Liquid Nanobots\n=\n\n#L \"Activated OT Metamorphing Liquid Nanobots\" \"164954\"\nSkills: | NP,CH |\n\n------------------------------\n\nNotum piece\n+\nActivated OT Metamorphing Liquid Nanobots\n=\n\n#L \"Stabilized OT Metamorphing Liquid Nanobots\" \"164956\"\nSkills: | NP,CH |\n\n------------------------------\n\nNotum piece\n+\nStabilized OT Metamorphing Liquid Nanobots\n=\n\n#L \"Super-Stabilized OT Metamorphing Liquid Nanobots\" \"164958\"\nSkills: | NP,CH |\n\n------------------------------\n\nSuper-Stabilized OT Metamorphing Liquid Nanobots\n+\nGraft Armor\n=\n\nCAS Symbiotic Armor\n( ie : #L \"CAS Symbiotic Armor Boots\" \"165000\" )\nSkills: | NP,CH |\n\n------------------------------\nComments\n------------------------------\n\nPopular Froob armor" +} diff --git a/modules/standard/recipe/recipes/310.json b/modules/standard/recipe/recipes/310.json new file mode 100644 index 0000000..2160dac --- /dev/null +++ b/modules/standard/recipe/recipes/310.json @@ -0,0 +1,8 @@ +{ + "name": "Irreparable Blackened Miniblaster", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Irreparable Blackened Miniblaster'\n The Construction kit. must be between Quality Level 1 and 20.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add in following order:\n \n 1. Pistol Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 4 -> 80\n \n 2. Energy Pack Interface. SkillTo Assemble: Elec. Engi: 4 -> 80\n \n 3. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 2 -> 30\n \n 4. Rapid-Reload-And-Fire Gyro. SkillTo Assemble: Weapon Smt: 4 -> 80\n \n 5. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 2 -> 40\n \n 6. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 2 -> 50\n \n 7. Nano Pylon. SkillTo Assemble: Mech. Engi: 2 -> 50\n \n 8. Jandawit Cleanup Cluster. SkillTo Assemble: Weapon Smt: 4 -> 70\n \n 9. Short Composite Barrel. SkillTo Assemble: Weapon Smt: 3 -> 65\n \n 10. Energy Conduction Rack. SkillTo Assemble: Quantum FT: 3 -> 65\n \n 11. Hyper Carbo-Ceramic Cooling System. SkillTo Assemble: Weapon Smt: 4 -> 80" +} diff --git a/modules/standard/recipe/recipes/311.json b/modules/standard/recipe/recipes/311.json new file mode 100644 index 0000000..cf56c66 --- /dev/null +++ b/modules/standard/recipe/recipes/311.json @@ -0,0 +1,8 @@ +{ + "name": "Irreparable Electron-Charged Pistol", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Irreparable Electron-Charged Pistol'\n The Construction kit. must be between Quality Level 1 and 20.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add in following order:\n \n 1. Pistol Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 4 -> 80\n \n 2. Short Composite Barrel. SkillTo Assemble: Weapon Smt: 3 -> 65\n \n 3. Rapid-Reload-And-Fire Gyro. SkillTo Assemble: Weapon Smt: 4 -> 80\n \n 4. Plasma Streamer Interface Nozzle. SkillTo Assemble: Chemistry: 4 -> 80\n \n 5. Nano Pylon. SkillTo Assemble: Mech. Engi: 2 -> 50\n \n 6. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 2 -> 30\n \n 7. Jandawit Cleanup Cluster. SkillTo Assemble: Weapon Smt: 4 -> 70\n \n 8. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 2 -> 50\n \n 9. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 2 -> 40\n \n 10. Energy Conduction Rack. SkillTo Assemble: Quantum FT: 3 -> 65" +} diff --git a/modules/standard/recipe/recipes/312.json b/modules/standard/recipe/recipes/312.json new file mode 100644 index 0000000..f6d3f13 --- /dev/null +++ b/modules/standard/recipe/recipes/312.json @@ -0,0 +1,8 @@ +{ + "name": "Irreparable Kolt 58 Magnum", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Irreparable Kolt 58 Magnum'\n The Construction kit. must be between Quality Level 1 and 20.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add in following order:\n \n 1. Pistol Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 4 -> 80\n \n 2. Explosion Propulsion Containment Chamber. SkillTo Assemble: Mech. Engi: 4 -> 70\n \n 3. Composite Barrel. SkillTo Assemble: Weapon Smt: 4 -> 75\n \n 4. Nano Pylon. SkillTo Assemble: Mech. Engi: 2 -> 50\n \n 5. Hyper Carbo-Ceramic Cooling System. SkillTo Assemble: Weapon Smt: 4 -> 80\n \n 6. Lock and Stock. SkillTo Assemble: Weapon Smt: 4 -> 80\n \n 7. Jandawit Cleanup Cluster. SkillTo Assemble: Weapon Smt: 4 -> 70\n \n 8. Rapid-Reload-And-Fire Gyro. SkillTo Assemble: Weapon Smt: 4 -> 80\n \n 9. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 2 -> 50\n \n 10. Nano Pylon. SkillTo Assemble: Mech. Engi: 2 -> 50\n \n 11. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 2 -> 30\n \n 12. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 2 -> 50" +} diff --git a/modules/standard/recipe/recipes/313.json b/modules/standard/recipe/recipes/313.json new file mode 100644 index 0000000..6b3c184 --- /dev/null +++ b/modules/standard/recipe/recipes/313.json @@ -0,0 +1,8 @@ +{ + "name": "Irreparable Light Beamer Pistol", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Irreparable Light Beamer Pistol'\n The Construction kit. must be between Quality Level 35 and 50.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add in following order:\n \n 1. Pistol Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 140 -> 200\n \n 2. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 52 -> 75\n \n 3. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 70 -> 100\n \n 4. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 88 -> 125\n \n 5. Nano Pylon. SkillTo Assemble: Mech. Engi: 88 -> 125\n \n 6. Energy Conduction Rack. SkillTo Assemble: Quantum FT: 114 -> 162\n \n 7. Short Composite Barrel. SkillTo Assemble: Weapon Smt: 114 -> 162\n \n 8. Self-Cleaning KO-CR Device. SkillTo Assemble: Weapon Smt: 122 -> 175\n \n 9. Plasma Streamer Interface Nozzle. SkillTo Assemble: Chemistry: 140 -> 200\n \n 10. Hyper Carbo-Ceramic Cooling System. SkillTo Assemble: Weapon Smt: 140 -> 200" +} diff --git a/modules/standard/recipe/recipes/314.json b/modules/standard/recipe/recipes/314.json new file mode 100644 index 0000000..d370e85 --- /dev/null +++ b/modules/standard/recipe/recipes/314.json @@ -0,0 +1,8 @@ +{ + "name": "Irreparable Minigrinner", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Irreparable Minigrinner'\n The Construction kit. must be between Quality Level 1 and 20.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add in following order:\n \n 1. Pistol Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 4 -> 80\n \n 2. Self-Cleaning KO-CR Device. SkillTo Assemble: Weapon Smt: 4 -> 70\n \n 3. Lock and Stock. SkillTo Assemble: Weapon Smt: 4 -> 80\n \n 4. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 2 -> 50\n \n 5. Ultra Short Composite Barrel. SkillTo Assemble: Weapon Smt: 3 -> 60\n \n 6. Hyper Carbo-Ceramic Cooling System. SkillTo Assemble: Weapon Smt: 4 -> 80\n \n 7. Nano Pylon. SkillTo Assemble: Mech. Engi: 2 -> 50\n \n 8. Gyro Stabilizing Unit. SkillTo Assemble: Weapon Smt: 4 -> 90\n \n 9. Triple Pulse Enabler. SkillTo Assemble: Weapon Smt: 4 -> 85\n \n 10. Explosion Propulsion Containment Chamber. SkillTo Assemble: Mech. Engi: 4 -> 70\n \n 11. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 2 -> 30\n \n 12. Nano Pylon. SkillTo Assemble: Mech. Engi: 2 -> 50" +} diff --git a/modules/standard/recipe/recipes/315.json b/modules/standard/recipe/recipes/315.json new file mode 100644 index 0000000..47766a0 --- /dev/null +++ b/modules/standard/recipe/recipes/315.json @@ -0,0 +1,8 @@ +{ + "name": "Irreparable Sleekblaster", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Irreparable Sleekblaster'\n The Construction kit. must be between Quality Level 1 and 20.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add in following order:\n \n 1. Energy Weapons Construction kit. SkillTo Assemble: Weapon Smt: 4 -> 80\n \n 2. Energy Pack Interface. SkillTo Assemble: Elec. Engi: 4 -> 80\n \n 3. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 2 -> 40\n \n 4. Energy Conduction Rack. SkillTo Assemble: Quantum FT: 3 -> 65\n \n 5. Hyper Carbo-Ceramic Cooling System. SkillTo Assemble: Weapon Smt: 4 -> 80\n \n 6. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 2 -> 30\n \n 7. Composite Barrel. SkillTo Assemble: Weapon Smt: 4 -> 75\n \n 8. Rapid-Reload-And-Fire Gyro. SkillTo Assemble: Weapon Smt: 4 -> 80\n \n 9. Nano Pylon. SkillTo Assemble: Mech. Engi: 2 -> 50\n \n 10. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 2 -> 50\n \n 11. Jandawit Cleanup Cluster. SkillTo Assemble: Weapon Smt: 4 -> 70\n \n 12. Nano Pylon. SkillTo Assemble: Mech. Engi: 2 -> 50\n \n 13. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 2 -> 50" +} diff --git a/modules/standard/recipe/recipes/316.json b/modules/standard/recipe/recipes/316.json new file mode 100644 index 0000000..51b78f6 --- /dev/null +++ b/modules/standard/recipe/recipes/316.json @@ -0,0 +1,8 @@ +{ + "name": "Irreparable Sleekblaster Major", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Irreparable Sleekblaster Major'\n The Construction kit. must be between Quality Level 1 and 20.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add in following order:\n \n 1. Energy Weapons Construction kit. SkillTo Assemble: Weapon Smt: 4 -> 80\n \n 2. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 2 -> 30\n \n 3. Self-Cleaning KO-CR Device. SkillTo Assemble: Weapon Smt: 4 -> 70\n \n 4. Flake Tubing Base Cooling System. SkillTo Assemble: Weapon Smt: 4 -> 80\n \n 5. Nano Pylon. SkillTo Assemble: Mech. Engi: 2 -> 50\n \n 6. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 2 -> 50\n \n 7. Composite Barrel. SkillTo Assemble: Weapon Smt: 4 -> 75\n \n 8. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 2 -> 50\n \n 9. Nano Pylon. SkillTo Assemble: Mech. Engi: 2 -> 50\n \n 10. Energy Pack Interface. SkillTo Assemble: Elec. Engi: 4 -> 80\n \n 11. Rapid-Reload-And-Fire Gyro. SkillTo Assemble: Weapon Smt: 4 -> 80\n \n 12. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 2 -> 40\n \n 13. Energy Conduction Rack. SkillTo Assemble: Quantum FT: 3 -> 65" +} diff --git a/modules/standard/recipe/recipes/317.json b/modules/standard/recipe/recipes/317.json new file mode 100644 index 0000000..81a99f6 --- /dev/null +++ b/modules/standard/recipe/recipes/317.json @@ -0,0 +1,8 @@ +{ + "name": "Irreparable Triplejolt", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Irreparable Triplejolt'\n The Construction kit. must be between Quality Level 1 and 20.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add in following order:\n \n 1. Shotgun Weapons Construction kit. SkillTo Assemble: Weapon Smt: 4 -> 80\n \n 2. Nano Pylon. SkillTo Assemble: Mech. Engi: 2 -> 50\n \n 3. Nano Pylon. SkillTo Assemble: Mech. Engi: 2 -> 50\n \n 4. Radioactive Isotope Fusion System. SkillTo Assemble: Quantum FT: 4 -> 80\n \n 5. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 2 -> 40\n \n 6. Jandawit Cleanup Cluster. SkillTo Assemble: Weapon Smt: 4 -> 70\n \n 7. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 2 -> 50\n \n 8. Energy Conduction Rack. SkillTo Assemble: Quantum FT: 3 -> 65\n \n 9. Hyper Carbo-Ceramic Cooling System. SkillTo Assemble: Weapon Smt: 4 -> 80\n \n 10. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 2 -> 30\n \n 11. Rapid-Reload-And-Fire Gyro. SkillTo Assemble: Weapon Smt: 4 -> 80\n \n 12. Ultra Short Composite Barrel. SkillTo Assemble: Weapon Smt: 3 -> 60" +} diff --git a/modules/standard/recipe/recipes/318.json b/modules/standard/recipe/recipes/318.json new file mode 100644 index 0000000..d428246 --- /dev/null +++ b/modules/standard/recipe/recipes/318.json @@ -0,0 +1,8 @@ +{ + "name": "Jobe-Made Bladestaff", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Jobe-Made Bladestaff'\n The Construction kit. must be between Quality Level 200 and 200.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add in following order:\n \n 1. Two Handed Edged Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 800 -> 800\n \n 2. 4x Layer Carbon-Notum Alloy Blade. SkillTo Assemble: Weapon Smt: 600 -> 600\n \n 3. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 300 -> 300\n \n 4. Notum Enriched Nano Paste - 4x Layer. SkillTo Assemble: Nano Progra: 500 -> 500\n \n 5. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 400 -> 400\n \n 6. Medium Handle. SkillTo Assemble: Weapon Smt: 735 -> 735\n \n 7. 8x Layer Carbon-Notum Alloy Blade. SkillTo Assemble: Weapon Smt: 700 -> 700\n \n 8. 2h Edged Cluster - Shiny (Right-Arm). SkillTo Assemble: Nano Progra: 600 -> 600\n \n 9. Optimized Co-Weapon Interface. SkillTo Assemble: Comp. Liter: 600 -> 600" +} diff --git a/modules/standard/recipe/recipes/319.json b/modules/standard/recipe/recipes/319.json new file mode 100644 index 0000000..c9ad20d --- /dev/null +++ b/modules/standard/recipe/recipes/319.json @@ -0,0 +1,8 @@ +{ + "name": "Layered Mini Axe", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Layered Mini Axe'\n The Construction kit. must be between Quality Level 121 and 140.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add the pieces in the following order:\n \n 1. One Handed Edged Weapons Construction kit.\n \n 2. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 182-210\n \n 3. Short Handle. . SkillTo Assemble: Weapon Smt: 424-490\n \n 4. Optimized Co-Weapon Interface. . SkillTo Assemble: Comp. Liter: 363-420\n \n 5. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 242-280" +} diff --git a/modules/standard/recipe/recipes/32.json b/modules/standard/recipe/recipes/32.json new file mode 100644 index 0000000..b5d49eb --- /dev/null +++ b/modules/standard/recipe/recipes/32.json @@ -0,0 +1,53 @@ +{ + "name": "Charged Liquid Bombs", + "author": "", + "items": [ + { + "alias": "Ammo: Flamethrower Ammunition", + "item_id": 21601 + }, + { + "alias": "Advanced Active Tube", + "item_id": 156029 + }, + { + "alias": "Key Detonator", + "item_id": 156033 + }, + { + "alias": "Screwdriver", + "item_id": 150922 + }, + { + "alias": "Container of Liquid Ammo", + "item_id": 156074 + }, + { + "alias": "Liquid Explosive Charge", + "item_id": 156031 + }, + { + "alias": "A Single Charged Liquid Bomb", + "item_id": 156038 + }, + { + "alias": "Liquid Explosive Double Charge", + "item_id": 156303 + }, + { + "alias": "Twice Charged Liquid Bomb", + "item_id": 156047 + }, + { + "alias": "Liquid Explosive Triple Charge", + "item_id": 156305 + }, + { + "alias": "Complete Liquid Explosive", + "item_id": 156049 + } + ], + "steps": [], + "details": [], + "raw": "Single Charged Liquid Bomb\n\n------------------------------\nIngredients\n------------------------------\n\n#L \"Flamethrower Ammunition\" \"21601\"\n\n\n#L \"Active Tube\" \"156029\"\n\n\n#L \"Key Detonator\" \"156033\"\n\n\n#L \"Screwdriver\" \"150922\"\n\n\n------------------------------\nRecipe\n------------------------------\n\nScrewdriver\n+\nFlamethrower Ammunition\n=\n\n#L \"Container of Liquid Ammo\" \"156074\"\nSkills: | ?? |\n\n------------------------------\n\nContainer of Liquid Ammo\n+\nActive Tube\n=\n\n#L \"Liquid Explosive Charge\" \"156031\"\nSkills: | ?? |\n\n------------------------------\n\nKey Detonator\n+\nLiquid Explosive Charge\n=\n\n#L \"Single Charged Liquid Bomb\" \"156038\"\nSkills: | ?? |\n\n\nDouble Charged Liquid Bomb\n\n------------------------------\nIngredients\n------------------------------\n\n#L \"Flamethrower Ammunition\" \"21601\" x 2\n\n\n#L \"Active Tube\" \"156029\"\n\n\n#L \"Key Detonator\" \"156033\"\n\n\n#L \"Screwdriver\" \"150922\"\n\n\n------------------------------\nRecipe\n------------------------------\n\nScrewdriver\n+\nFlamethrower Ammunition\n=\n\n#L \"Container of Liquid Ammo\" \"156074\"\nSkills: | ?? |\n\n------------------------------\n\nContainer of Liquid Ammo\n+\nActive Tube\n=\n\n#L \"Liquid Explosive Charge\" \"156031\"\nSkills: | ?? |\n\n------------------------------\n\nScrewdriver\n+\nFlamethrower Ammunition\n=\n\n#L \"Container of Liquid Ammo\" \"156074\"\nSkills: | ?? |\n\n------------------------------\n\nContainer of Liquid Ammo\n+\nLiquid Explosive Charge\n=\n\n#L \"Liquid Explosive Double Charge\" \"156303\"\nSkills: | ?? |\n\n------------------------------\n\nKey Detonator\n+\nLiquid Explosive Double Charge\n=\n\n#L \"Twice Charged Liquid Bomb\" \"156047\"\nSkills: | ?? |\n\n\nComplete Liquid Explosive\n\n------------------------------\nIngredients\n------------------------------\n\n#L \"Flamethrower Ammunition\" \"21601\" x 3\n\n\n#L \"Active Tube\" \"156029\"\n\n\n#L \"Key Detonator\" \"156033\"\n\n\n#L \"Screwdriver\" \"150922\"\n\n\n------------------------------\nRecipe\n------------------------------\n\nScrewdriver\n+\nFlamethrower Ammunition\n=\n\n#L \"Container of Liquid Ammo\" \"156074\"\nSkills: | ?? |\n\n------------------------------\n\nContainer of Liquid Ammo\n+\nActive Tube\n=\n\n#L \"Liquid Explosive Charge\" \"156031\"\nSkills: | ?? |\n\n------------------------------\n\nScrewdriver\n+\nFlamethrower Ammunition\n=\n\n#L \"Container of Liquid Ammo\" \"156074\"\nSkills: | ?? |\n\n------------------------------\n\nContainer of Liquid Ammo\n+\nLiquid Explosive Charge\n=\n\n#L \"Liquid Explosive Double Charge\" \"156303\"\nSkills: | ?? |\n\n------------------------------\n\nScrewdriver\n+\nFlamethrower Ammunition\n=\n\n#L \"Container of Liquid Ammo\" \"156074\"\nSkills: | ?? |\n\n------------------------------\n\nContainer of Liquid Ammo\n+\nLiquid Explosive Double Charge\n=\n\n#L \"Liquid Explosive Triple Charge\" \"156305\"\nSkills: | ?? |\n\n------------------------------\n\nKey Detonator\n+\nLiquid Explosive Triple Charge\n=\n\n#L \"Complete Liquid Explosive\" \"156049\"\nSkills: | ?? |\n\n------------------------------\nComments\n------------------------------\n\nSnippet from auno.org: \"Due to the QL of certain KEY COMPONENTS... the best you could ever do is making single charged liquid explosives at whatever QL or you could make a fantastic TRIPLE CHARGED LIQUID EXPLOSIVE at an astounding... quality level of three.\"" +} diff --git a/modules/standard/recipe/recipes/320.json b/modules/standard/recipe/recipes/320.json new file mode 100644 index 0000000..096b310 --- /dev/null +++ b/modules/standard/recipe/recipes/320.json @@ -0,0 +1,8 @@ +{ + "name": "Layered Right Slice", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Layered Right Slice'\n The Construction kit. must be between Quality Level 121 and 140.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add the pieces in the following order:\n \n 1. One Handed Edged Weapons Construction kit.\n \n 2. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 242-280\n \n 3. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 182-210\n \n 4. Optimized Co-Weapon Interface. . SkillTo Assemble: Comp. Liter: 363-420\n \n 5. Short Handle. . SkillTo Assemble: Weapon Smt: 424-490" +} diff --git a/modules/standard/recipe/recipes/321.json b/modules/standard/recipe/recipes/321.json new file mode 100644 index 0000000..75acebe --- /dev/null +++ b/modules/standard/recipe/recipes/321.json @@ -0,0 +1,8 @@ +{ + "name": "Layered Slank Chop", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Layered Slank Chop'\n The Construction kit. must be between Quality Level 121 and 140.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add the pieces in the following order:\n \n 1. Piercing Weapons Construction kit.\n \n 2. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 182-210\n \n 3. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 242-280\n \n 4. 4x Layer Carbon-Notum Alloy Blade. . SkillTo Assemble: Weapon Smt: 363-420\n \n 5. Short Handle. . SkillTo Assemble: Weapon Smt: 424-490\n \n 6. Hyper-Optimized Co-Weapon Interface. . SkillTo Assemble: Comp. Liter: 484-560" +} diff --git a/modules/standard/recipe/recipes/322.json b/modules/standard/recipe/recipes/322.json new file mode 100644 index 0000000..0d7cc28 --- /dev/null +++ b/modules/standard/recipe/recipes/322.json @@ -0,0 +1,8 @@ +{ + "name": "Long-Axe Hyper 200x", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Long-Axe Hyper 200x'\n The Construction kit. must be between Quality Level 24 and 46.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add in following order:\n \n 1. Two Handed Edged Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 96 -> 184\n \n 2. Notum Enriched Nano Paste - 4x Layer. SkillTo Assemble: Nano Progra: 60 -> 115\n \n 3. Optimized Co-Weapon Interface. SkillTo Assemble: Comp. Liter: 72 -> 138\n \n 4. Medium Handle. SkillTo Assemble: Weapon Smt: 88 -> 169\n \n 5. 4x Layer Carbon-Notum Alloy Blade. SkillTo Assemble: Weapon Smt: 72 -> 138\n \n 6. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 36 -> 69\n \n 7. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 48 -> 92\n \n 8. 8x Layer Carbon-Notum Alloy Blade. SkillTo Assemble: Weapon Smt: 84 -> 161" +} diff --git a/modules/standard/recipe/recipes/323.json b/modules/standard/recipe/recipes/323.json new file mode 100644 index 0000000..b88f5cc --- /dev/null +++ b/modules/standard/recipe/recipes/323.json @@ -0,0 +1,8 @@ +{ + "name": "Long Ion Axe", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Long Ion Axe'\n The Construction kit. must be between Quality Level 47 and 69.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add in following order:\n \n 1. Two Handed Edged Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 188 -> 276\n \n 2. Optimized Co-Weapon Interface. SkillTo Assemble: Comp. Liter: 141 -> 207\n \n 3. Medium Handle. SkillTo Assemble: Weapon Smt: 173 -> 254\n \n 4. 4x Layer Carbon-Notum Alloy Blade. SkillTo Assemble: Weapon Smt: 141 -> 207\n \n 5. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 70 -> 104\n \n 6. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 94 -> 138\n \n 7. 8x Layer Carbon-Notum Alloy Blade. SkillTo Assemble: Weapon Smt: 164 -> 242\n \n 8. Notum Enriched Nano Paste - 4x Layer. SkillTo Assemble: Nano Progra: 118 -> 172" +} diff --git a/modules/standard/recipe/recipes/324.json b/modules/standard/recipe/recipes/324.json new file mode 100644 index 0000000..273ae26 --- /dev/null +++ b/modules/standard/recipe/recipes/324.json @@ -0,0 +1,8 @@ +{ + "name": "Long Slank", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Long Slank'\n The Construction kit. must be between Quality Level 162 and 184.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add in following order:\n \n 1. Two Handed Edged Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 648 -> 736\n \n 2. Notum Enriched Nano Paste - 4x Layer. SkillTo Assemble: Nano Progra: 405 -> 460\n \n 3. 2h Edged Cluster - Shiny (Right-Arm). SkillTo Assemble: Nano Progra: 486 -> 552\n \n 4. Medium Handle. SkillTo Assemble: Weapon Smt: 595 -> 676\n \n 5. 8x Layer Carbon-Notum Alloy Blade. SkillTo Assemble: Weapon Smt: 567 -> 644\n \n 6. Optimized Co-Weapon Interface. SkillTo Assemble: Comp. Liter: 486 -> 552\n \n 7. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 243 -> 276\n \n 8. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 324 -> 368\n \n 9. 4x Layer Carbon-Notum Alloy Blade. SkillTo Assemble: Weapon Smt: 486 -> 552" +} diff --git a/modules/standard/recipe/recipes/325.json b/modules/standard/recipe/recipes/325.json new file mode 100644 index 0000000..acaf378 --- /dev/null +++ b/modules/standard/recipe/recipes/325.json @@ -0,0 +1,8 @@ +{ + "name": "Long Slank Computer X-II", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Long Slank Computer X-II'\n The Construction kit. must be between Quality Level 70 and 92.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add the pieces in the following order:\n \n 1. Two Handed Edged Weapons Construction kit.\n \n 2. 4x Layer Carbon-Notum Alloy Blade. . SkillTo Assemble: Weapon Smt: 210-276\n \n 3. Notum Enriched Nano Paste - 4x Layer. . SkillTo Assemble: Nano Progra: 175-230\n \n 4. Optimized Co-Weapon Interface. . SkillTo Assemble: Comp. Liter: 210-276\n \n 5. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 140-184\n \n 6. 8x Layer Carbon-Notum Alloy Blade. . SkillTo Assemble: Weapon Smt: 245-322\n \n 7. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 105-138\n \n 8. Medium Handle. . SkillTo Assemble: Weapon Smt: 257-338\n \n 9. 2h Edged Cluster - Faded (Waist). . SkillTo Assemble: Nano Progra: 70-92" +} diff --git a/modules/standard/recipe/recipes/326.json b/modules/standard/recipe/recipes/326.json new file mode 100644 index 0000000..a7bb870 --- /dev/null +++ b/modules/standard/recipe/recipes/326.json @@ -0,0 +1,8 @@ +{ + "name": "Loose Notum Spear", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Loose Notum Spear'\n The Construction kit. must be between Quality Level 41 and 60.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add the pieces in the following order:\n \n 1. Piercing Weapons Construction kit.\n \n 2. Medium Handle. . SkillTo Assemble: Weapon Smt: 151-220\n \n 3. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 62-90\n \n 4. Optimized Co-Weapon Interface. . SkillTo Assemble: Comp. Liter: 123-180\n \n 5. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 82-120\n \n 6. Notum Enriched Nano Paste - 4x Layer. . SkillTo Assemble: Nano Progra: 102-150\n \n 7. Energy Impact Super Conductor. . SkillTo Assemble: Elec. Engi: 164-240" +} diff --git a/modules/standard/recipe/recipes/327.json b/modules/standard/recipe/recipes/327.json new file mode 100644 index 0000000..7886aa9 --- /dev/null +++ b/modules/standard/recipe/recipes/327.json @@ -0,0 +1,8 @@ +{ + "name": "Loose Notum Staff", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Loose Notum Staff'\n The Construction kit. must be between Quality Level 41 and 60.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add the pieces in the following order:\n \n 1. Two Handed Blunt Weapons Construction kit.\n \n 2. Basic Co-Weapon Interface. . SkillTo Assemble: Comp. Liter: 92-135\n \n 3. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 62-90\n \n 4. 8x Layer Carbon-Notum Alloy Rod. . SkillTo Assemble: Weapon Smt: 195-285\n \n 5. Notum Enriched Nano Paste - 4x Layer. . SkillTo Assemble: Nano Progra: 102-150\n \n 6. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 82-120\n \n 7. 4x Layer Carbon-Notum Alloy Rod. . SkillTo Assemble: Weapon Smt: 184-270\n \n 8. Short Handle. . SkillTo Assemble: Weapon Smt: 144-210" +} diff --git a/modules/standard/recipe/recipes/328.json b/modules/standard/recipe/recipes/328.json new file mode 100644 index 0000000..3fc3857 --- /dev/null +++ b/modules/standard/recipe/recipes/328.json @@ -0,0 +1,8 @@ +{ + "name": "Loose Slank Chop", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Loose Slank Chop'\n The Construction kit. must be between Quality Level 41 and 60.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add the pieces in the following order:\n \n 1. Piercing Weapons Construction kit.\n \n 2. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 82-120\n \n 3. Short Handle. . SkillTo Assemble: Weapon Smt: 144-210\n \n 4. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 62-90\n \n 5. Hyper-Optimized Co-Weapon Interface. . SkillTo Assemble: Comp. Liter: 164-240\n \n 6. 4x Layer Carbon-Notum Alloy Blade. . SkillTo Assemble: Weapon Smt: 123-180" +} diff --git a/modules/standard/recipe/recipes/329.json b/modules/standard/recipe/recipes/329.json new file mode 100644 index 0000000..bcb4a60 --- /dev/null +++ b/modules/standard/recipe/recipes/329.json @@ -0,0 +1,8 @@ +{ + "name": "Loose Whings", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Loose Whings'\n The Construction kit. must be between Quality Level 41 and 60.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add in following order:\n \n 1. Two Handed Edged Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 164 -> 240\n \n 2. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 82 -> 120\n \n 3. Notum Enriched Nano Paste - 4x Layer. SkillTo Assemble: Nano Progra: 102 -> 150\n \n 4. Long Handle. SkillTo Assemble: Weapon Smt: 154 -> 225\n \n 5. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 62 -> 90\n \n 6. 8x Layer Carbon-Notum Alloy Blade. SkillTo Assemble: Weapon Smt: 144 -> 210\n \n 7. Optimized Co-Weapon Interface. SkillTo Assemble: Comp. Liter: 123 -> 180\n \n 8. 4x Layer Carbon-Notum Alloy Blade. SkillTo Assemble: Weapon Smt: 123 -> 180" +} diff --git a/modules/standard/recipe/recipes/33.json b/modules/standard/recipe/recipes/33.json new file mode 100644 index 0000000..5ce4645 --- /dev/null +++ b/modules/standard/recipe/recipes/33.json @@ -0,0 +1,53 @@ +{ + "name": "Chimera Weapons", + "author": "", + "items": [ + { + "alias": "Chimera Metal Bone Pipe", + "item_id": 227181 + }, + { + "alias": "Energy Accumulator", + "item_id": 227179 + }, + { + "alias": "Howling Soul Stone", + "item_id": 227189 + }, + { + "alias": "Laughing Soul Stone", + "item_id": 227185 + }, + { + "alias": "Singing Soul Stone", + "item_id": 227183 + }, + { + "alias": "Whispering Soul Stone", + "item_id": 227187 + }, + { + "alias": "Basic Firearm", + "item_id": 227167 + }, + { + "alias": "Chimera Shotgun", + "item_id": 227104 + }, + { + "alias": "Chimera Machine Gun", + "item_id": 227121 + }, + { + "alias": "Chimera Pistol", + "item_id": 227137 + }, + { + "alias": "Chimera Rifle", + "item_id": 227107 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients\n------------------------------\n\n#L \"Chimera Metal Bone Pipe\" \"227181\"\n\n\n#L \"Energy Accumulator\" \"227179\"\n\n\nand one of the following:\n\n#L \"Howling Soul Stone\" \"227189\"\n\n\n#L \"Laughing Soul Stone\" \"227185\"\n\n\n#L \"Singing Soul Stone\" \"227183\"\n\n\n#L \"Whispering Soul Stone\" \"227187\"\n\n\n------------------------------\nRecipe\n------------------------------\n\nFirst:\n\nEnergy Accumulator\n+\nChimera Metal Bone Pipe\n=\n\n#L \"Basic Firearm\" \"227167\"\nSkills: | WS |\n\n------------------------------\n\nThen, depending on what you want:\n\nBasic Firearm\n+\nHowling Soul Stone\n=\n\n#L \"Chimera Shotgun\" \"227104\"\nSkills: | ?? |\n\n------------------------------\n\nor,\n\nBasic Firearm\n+\nLaughing Soul Stone\n=\n\n#L \"Chimera Machine Gun\" \"227121\"\nSkills: | ?? |\n\n------------------------------\n\nor,\n\nBasic Firearm\n+\nSinging Soul Stone\n=\n\n#L \"Chimera Pistol\" \"227137\"\nSkills: | ?? |\n\n------------------------------\n\nor,\n\nBasic Firearm\n+\nWhispering Soul Stone\n=\n\n#L \"Chimera Rifle\" \"227107\"\nSkills: | ?? |\n\n------------------------------\nComments\n------------------------------\n\nSL N00by weapons :D By the time you've done all that you could be level 50 :D" +} diff --git a/modules/standard/recipe/recipes/330.json b/modules/standard/recipe/recipes/330.json new file mode 100644 index 0000000..abe2e5b --- /dev/null +++ b/modules/standard/recipe/recipes/330.json @@ -0,0 +1,8 @@ +{ + "name": "Luxembourg Inferno Rifle", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Luxembourg Inferno Rifle'\n The Construction kit. must be between Quality Level 61 and 90.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add in following order:\n \n 1. Rifle Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 244 -> 360\n \n 2. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 92 -> 135\n \n 3. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 152 -> 225\n \n 4. Jandawit Cleanup Cluster. SkillTo Assemble: Weapon Smt: 214 -> 315\n \n 5. Hyper Carbo-Ceramic Cooling System. SkillTo Assemble: Weapon Smt: 244 -> 360\n \n 6. Nano Pylon. SkillTo Assemble: Mech. Engi: 152 -> 225\n \n 7. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 152 -> 225\n \n 8. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 122 -> 180\n \n 9. Rapid-Reload-And-Fire Gyro. SkillTo Assemble: Weapon Smt: 244 -> 360\n \n 10. Long Composite Barrel. SkillTo Assemble: Weapon Smt: 244 -> 360\n \n 11. Plasma Streamer Interface Nozzle. SkillTo Assemble: Chemistry: 244 -> 360\n \n 12. Compression Chamber for Chemicals. SkillTo Assemble: Weapon Smt: 259 -> 382\n \n 13. Nano Pylon. SkillTo Assemble: Mech. Engi: 152 -> 225" +} diff --git a/modules/standard/recipe/recipes/331.json b/modules/standard/recipe/recipes/331.json new file mode 100644 index 0000000..8891d17 --- /dev/null +++ b/modules/standard/recipe/recipes/331.json @@ -0,0 +1,8 @@ +{ + "name": "Mass Lead Bolter 42mm", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Mass Lead Bolter 42mm'\n The Construction kit. must be between Quality Level 139 and 161.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add the pieces in the following order:\n \n 1. AssaultRifle Weapons Construction kit.\n \n 2. Nano Pylon. . SkillTo Assemble: Mech. Engi: 348-402\n \n 3. Lock and Stock. . SkillTo Assemble: Weapon Smt: 556-644\n \n 4. Triple Pulse Enabler. . SkillTo Assemble: Weapon Smt: 591-684\n \n 5. Explosion Propulsion Containment Chamber. . SkillTo Assemble: Mech. Engi: 486-564\n \n 6. Short Composite Barrel. . SkillTo Assemble: Weapon Smt: 452-523\n \n 7. Nano Pylon. . SkillTo Assemble: Mech. Engi: 348-402\n \n 8. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 348-402\n \n 9. Gyro Stabilizing Unit. . SkillTo Assemble: Weapon Smt: 626-724\n \n 10. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 278-322\n \n 11. Primitive Freon Bag Cooling System. . SkillTo Assemble: Weapon Smt: 556-644\n \n 12. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 208-242\n \n 13. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 348-402\n \n 14. Auto Targeting Computer -IIR 1. . SkillTo Assemble: Elec. Engi: 313-362" +} diff --git a/modules/standard/recipe/recipes/332.json b/modules/standard/recipe/recipes/332.json new file mode 100644 index 0000000..740f1b9 --- /dev/null +++ b/modules/standard/recipe/recipes/332.json @@ -0,0 +1,8 @@ +{ + "name": "Mausser Particle Streamer", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Mausser Particle Streamer'\n The Construction kit. must be between Quality Level 81 and 100.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add the pieces in the following order:\n \n 1. Submachinegun Weapons Construction kit.\n \n 2. Nano Pylon. . SkillTo Assemble: Mech. Engi: 202-250\n \n 3. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 202-250\n \n 4. Ultra-Long Composite Barrel. . SkillTo Assemble: Weapon Smt: 344-425\n \n 5. Explosion Propulsion Containment Chamber. . SkillTo Assemble: Mech. Engi: 284-350\n \n 6. Triple Pulse Enabler. . SkillTo Assemble: Weapon Smt: 344-425\n \n 7. Nano Pylon. . SkillTo Assemble: Mech. Engi: 202-250\n \n 8. Lock and Stock. . SkillTo Assemble: Weapon Smt: 324-400\n \n 9. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 202-250\n \n 10. Auto Targeting Computer -IIR 1. . SkillTo Assemble: Elec. Engi: 182-225\n \n 11. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 162-200\n \n 12. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 122-150" +} diff --git a/modules/standard/recipe/recipes/333.json b/modules/standard/recipe/recipes/333.json new file mode 100644 index 0000000..11f2afe --- /dev/null +++ b/modules/standard/recipe/recipes/333.json @@ -0,0 +1,8 @@ +{ + "name": "Megajolt", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Megajolt'\nThe Construction kit. must be between Quality Level 81 and 100.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\nAdd in following order:\n\n 1. Shotgun Weapons Construction kit. SkillTo Assemble: Weapon Smt: 324 -> 400\n\n 2. Nano Pylon. SkillTo Assemble: Mech. Engi: 202 -> 250\n\n 3. Energy Conduction Rack. SkillTo Assemble: Quantum FT: 263 -> 325\n\n 4. Auto Targeting Computer -IIR 2-Groper-. SkillTo Assemble: Elec. Engi: 202 -> 250\n\n 5. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 162 -> 200\n\n 6. Notum Enriched Nano Paste - 4x Layer. SkillTo Assemble: Nano Progra: 202 -> 250\n\n 7. Composite Barrel. SkillTo Assemble: Weapon Smt: 304 -> 375\n\n 8. Nano Pylon. SkillTo Assemble: Mech. Engi: 202 -> 250\n\n 9. Energy Pack Interface. SkillTo Assemble: Elec. Engi: 324 -> 400\n\n 10. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 122 -> 150\n\n 11. Primitive Freon Bag Cooling System. SkillTo Assemble: Weapon Smt: 324 -> 400\n\n 12. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 202 -> 250\n\n 13. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 202 -> 250" +} diff --git a/modules/standard/recipe/recipes/334.json b/modules/standard/recipe/recipes/334.json new file mode 100644 index 0000000..563aa20 --- /dev/null +++ b/modules/standard/recipe/recipes/334.json @@ -0,0 +1,8 @@ +{ + "name": "Michael Patriot Ffi 29A", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Michael Patriot Ffi 29A'\n The Construction kit. must be between Quality Level 21 and 40.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add the pieces in the following order:\n \n 1. Submachinegun Weapons Construction kit.\n \n 2. Jandawit Cleanup Cluster. . SkillTo Assemble: Weapon Smt: 74-140\n \n 3. Nano Pylon. . SkillTo Assemble: Mech. Engi: 52-100\n \n 4. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 42-80\n \n 5. Ultra-Long Composite Barrel. . SkillTo Assemble: Weapon Smt: 89-170\n \n 6. Nano Pylon. . SkillTo Assemble: Mech. Engi: 52-100\n \n 7. Plasma Streamer Interface Nozzle. . SkillTo Assemble: Chemistry: 84-160\n \n 8. Explosion Propulsion Containment Chamber. . SkillTo Assemble: Mech. Engi: 74-140\n \n 9. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 32-60\n \n 10. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 52-100\n \n 11. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 52-100\n \n 12. Flake Tubing Base Cooling System. . SkillTo Assemble: Weapon Smt: 84-160\n \n 13. Triple Pulse Enabler. . SkillTo Assemble: Weapon Smt: 89-170" +} diff --git a/modules/standard/recipe/recipes/335.json b/modules/standard/recipe/recipes/335.json new file mode 100644 index 0000000..caf7062 --- /dev/null +++ b/modules/standard/recipe/recipes/335.json @@ -0,0 +1,8 @@ +{ + "name": "Michael Patriot Ffi 29B", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Michael Patriot Ffi 29B'\n The Construction kit. must be between Quality Level 121 and 140.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add the pieces in the following order:\n \n 1. Submachinegun Weapons Construction kit.\n \n 2. Jandawit Cleanup Cluster. . SkillTo Assemble: Weapon Smt: 424-490\n \n 3. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 242-280\n \n 4. Plasma Streamer Interface Nozzle. . SkillTo Assemble: Chemistry: 484-560\n \n 5. Nano Pylon. . SkillTo Assemble: Mech. Engi: 302-350\n \n 6. Ultra-Long Composite Barrel. . SkillTo Assemble: Weapon Smt: 514-595\n \n 7. Triple Pulse Enabler. . SkillTo Assemble: Weapon Smt: 514-595\n \n 8. Nano Pylon. . SkillTo Assemble: Mech. Engi: 302-350\n \n 9. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 302-350\n \n 10. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 182-210\n \n 11. Explosion Propulsion Containment Chamber. . SkillTo Assemble: Mech. Engi: 424-490\n \n 12. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 302-350\n \n 13. Flake Tubing Base Cooling System. . SkillTo Assemble: Weapon Smt: 484-560" +} diff --git a/modules/standard/recipe/recipes/336.json b/modules/standard/recipe/recipes/336.json new file mode 100644 index 0000000..d7f4341 --- /dev/null +++ b/modules/standard/recipe/recipes/336.json @@ -0,0 +1,8 @@ +{ + "name": "Mini-Shotgun", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Mini-Shotgun'\nThe Construction kit. must be between Quality Level 81 and 100.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\n Add in following order:\n\n 1. Shotgun Weapons Construction kit. SkillTo Assemble: Weapon Smt: 324 -> 400\n\n 2. Nano-Interfaced Cooling System. SkillTo Assemble: Weapon Smt: 324 -> 400\n\n 3. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 122 -> 150\n\n 4. Self-Cleaning KO-CR Device. SkillTo Assemble: Weapon Smt: 284 -> 350\n\n 5. Short Composite Barrel. SkillTo Assemble: Weapon Smt: 263 -> 325\n\n 6. Nano Pylon. SkillTo Assemble: Mech. Engi: 202 -> 250\n\n 7. Lock and Stock. SkillTo Assemble: Weapon Smt: 324 -> 400\n\n 8. Rapid-Reload-And-Fire Gyro. SkillTo Assemble: Weapon Smt: 324 -> 400\n\n 9. Nano Pylon. SkillTo Assemble: Mech. Engi: 202 -> 250\n\n 10. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 202 -> 250\n\n 11. Explosion Propulsion Containment Chamber. SkillTo Assemble: Quantum FT: 304 -> 375" +} diff --git a/modules/standard/recipe/recipes/337.json b/modules/standard/recipe/recipes/337.json new file mode 100644 index 0000000..1ece7f7 --- /dev/null +++ b/modules/standard/recipe/recipes/337.json @@ -0,0 +1,8 @@ +{ + "name": "Monofilament Tripler", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Monofilament Tripler'\n The Construction kit. must be between Quality Level 200 and 200.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add the pieces in the following order:\n \n 1. One Handed Edged Weapons Construction kit.\n \n 2. Optimized Co-Weapon Interface. . SkillTo Assemble: Comp. Liter: 600-600\n \n 3. 1h Edged Weapon Cluster - Shiny (Right-Arm). . SkillTo Assemble: Nano Progra: 600-600\n \n 4. Max Health Cluster - Shiny (Chest). . SkillTo Assemble: Nano Progra: 600-600\n \n 5. Short Handle. . SkillTo Assemble: Weapon Smt: 700-700\n \n 6. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 300-300\n \n 7. Piercing Cluster - Shiny (Right-Arm). . SkillTo Assemble: Nano Progra: 600-600" +} diff --git a/modules/standard/recipe/recipes/338.json b/modules/standard/recipe/recipes/338.json new file mode 100644 index 0000000..3ee1689 --- /dev/null +++ b/modules/standard/recipe/recipes/338.json @@ -0,0 +1,8 @@ +{ + "name": "MTI Aleph 99", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'MTI Aleph 99'\n The Construction kit. must be between Quality Level 41 and 80.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add the pieces in the following order:\n \n 1. Submachinegun Weapons Construction kit.\n \n 2. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 102-200\n \n 3. Ultra-Long Composite Barrel. . SkillTo Assemble: Weapon Smt: 174-340\n \n 4. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 62-120\n \n 5. Stamina Cluster - Faded (Waist). . SkillTo Assemble: Nano Progra: 41-80\n \n 6. Nano Pylon. . SkillTo Assemble: Mech. Engi: 102-200\n \n 7. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 82-160\n \n 8. Triple Pulse Enabler. . SkillTo Assemble: Weapon Smt: 174-340\n \n 9. Lock and Stock. . SkillTo Assemble: Weapon Smt: 164-320\n \n 10. Explosion Propulsion Containment Chamber. . SkillTo Assemble: Mech. Engi: 144-280\n \n 11. Nano Pylon. . SkillTo Assemble: Mech. Engi: 102-200" +} diff --git a/modules/standard/recipe/recipes/339.json b/modules/standard/recipe/recipes/339.json new file mode 100644 index 0000000..4ba2c6b --- /dev/null +++ b/modules/standard/recipe/recipes/339.json @@ -0,0 +1,8 @@ +{ + "name": "Nighthhawk Ion Thag Spear", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Nighthhawk Ion Thag Spear'\nThe Construction kit. must be between Quality Level 47 and 69.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\nAdd the pieces in the following order:\n\n 1. Piercing Weapons Construction kit.\n\n 2. Optimized Co-Weapon Interface. . SkillTo Assemble: Comp. Liter: 141-207\n\n 3. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 70-104\n\n 4. Notum Enriched Nano Paste - 4x Layer. . SkillTo Assemble: Nano Progra: 118-172\n\n 5. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 94-138\n\n 6. Sneak Atck Cluster - Faded (Eye). . SkillTo Assemble: Nano Progra: 47-69\n\n 7. Medium Handle. . SkillTo Assemble: Weapon Smt: 173-254\n\n 8. Max Health Cluster - Bright (Waist). . SkillTo Assemble: Nano Progra: 94-138" +} diff --git a/modules/standard/recipe/recipes/34.json b/modules/standard/recipe/recipes/34.json new file mode 100644 index 0000000..e574ff5 --- /dev/null +++ b/modules/standard/recipe/recipes/34.json @@ -0,0 +1,81 @@ +{ + "name": "Coffee Machines", + "author": "", + "items": [ + { + "alias": "Advanced Hacker Tool", + "item_id": 87814 + }, + { + "alias": "Sealing Cell Kit", + "item_id": 157275 + }, + { + "alias": "White Wine", + "item_id": 130589 + }, + { + "alias": "Expendable Hologram Camera", + "item_id": 156054 + }, + { + "alias": "ID-extractor", + "item_id": 156339 + }, + { + "alias": "Omni-Tek Multi-Form", + "item_id": 156344 + }, + { + "alias": "Small Titan Message Container", + "item_id": 157222 + }, + { + "alias": "Fink Fragrant Morning Enhanced Coffee Block", + "item_id": 157281 + }, + { + "alias": "Carioso Menthol Pseudo-Coffee Block", + "item_id": 157277 + }, + { + "alias": "ID-data", + "item_id": 156340 + }, + { + "alias": "Sealed Bioplast Folder", + "item_id": 157341 + }, + { + "alias": "Open Bioplast Folder with a Folded Note", + "item_id": 157272 + }, + { + "alias": "Folded Note", + "item_id": 157273 + }, + { + "alias": "Personal Folded Note", + "item_id": 157274 + }, + { + "alias": "Sealed Personal Note", + "item_id": 157278 + }, + { + "alias": "New Miyashiro Superior Coffee Machine", + "item_id": 157276 + }, + { + "alias": "Miyashiro Superior Enhanced Coffee Machine", + "item_id": 157340 + }, + { + "alias": "Miyashiro Superior Menthol Coffee Machine", + "item_id": 157339 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients\n------------------------------\n\n#L \"Hacker Tool\" \"87814\" x 2\n\n\n#L \"Sealing Cell Kit\" \"157275\"\n\n\n#L \"White Wine\" \"130589\"\n\n\n#L \"Expendable Hologram Camera\" \"156054\"\n\n\n#L \"ID-extractor\" \"156339\"\n\n\n#L \"Omni-Tek Multi-Form\" \"156344\"\n\n\n#L \"Small Titan Message Container\" \"157222\"\n\n\n#L \"Fink Fragrant Morning Enhanced Coffee Block\" \"157281\"\n\nor\n#L \"Carioso Menthol Pseudo-Coffee Block\" \"157277\"\n\n\n------------------------------\nRecipe\n------------------------------\n\nID-extractor\n+\nExpendable Hologram Camera\n=\n\n#L \"ID-data\" \"156340\"\nSkills: | ?? |\n\n------------------------------\n\nHacker Tool\n+\nSmall Titan Message Container\n=\n\n#L \"Sealed Bioplast Folder\" \"157341\"\nSkills: | BE |\n\n------------------------------\n\nHacker Tool\n+\nSealed Bioplast Folder\n=\n\n#L \"Open Bioplast Folder with a Folded Note\" \"157272\"\nSkills: | BE |\n\n------------------------------\n\nWhite Wine\n+\nOpen Bioplast Folder with a Folded Note\n=\n\n#L \"Folded Note\" \"157273\"\nSkills: | PS120 |\n\n------------------------------\n\nID-data\n+\nFolded Note\n=\n\n#L \"Personal Folded Note\" \"157274\"\nSkills: | PS300 |\n\n------------------------------\n\nPersonal Folded Note\n+\nSealing Cell Kit\n=\n\n#L \"Sealed Personal Note\" \"157278\"\nSkills: | ?? |\n\n------------------------------\n\nSealed Personal Note\n+\nOmni-Tek Multi-Form\n=\n\n#L \"New Miyashiro Superior Coffee Machine\" \"157276\"\nSkills: | ?? |\n\n------------------------------\n\nNow you must decide what kind of coffee your machine will produce:\n\nFor normal coffee:\n\nFink Fragrant Morning Enhanced Coffee Block\n+\nNew Miyashiro Superior Coffee Machine\n=\n\n#L \"Miyashiro Superior Enhanced Coffee Machine\" \"157340\"\nSkills: | ?? |\n\n------------------------------\n\nOr mentholed one:\n\nCarioso Menthol Pseudo-Coffee Block\n+\nNew Miyashiro Superior Coffee Machine\n=\n\n#L \"Miyashiro Superior Menthol Coffee Machine\" \"157339\"\nSkills: | ?? |\n\n------------------------------\nComments\n------------------------------\n\nThis machine is used to produce ... Coffee ..." +} diff --git a/modules/standard/recipe/recipes/340.json b/modules/standard/recipe/recipes/340.json new file mode 100644 index 0000000..9522e86 --- /dev/null +++ b/modules/standard/recipe/recipes/340.json @@ -0,0 +1,8 @@ +{ + "name": "Nightspear Follower", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Nightspear Follower'\n The Construction kit. must be between Quality Level 139 and 161.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add the pieces in the following order:\n \n 1. Piercing Weapons Construction kit.\n \n 2. Medium Handle. . SkillTo Assemble: Weapon Smt: 511-592\n \n 3. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 208-242\n \n 4. Optimized Co-Weapon Interface. . SkillTo Assemble: Comp. Liter: 417-483\n \n 5. Max Health Cluster - Shiny (Chest). . SkillTo Assemble: Nano Progra: 417-483\n \n 6. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 278-322\n \n 7. Sneak Atck Cluster - Bright (Right-Wrist). . SkillTo Assemble: Nano Progra: 278-322\n \n 8. Notum Enriched Nano Paste - 4x Layer. . SkillTo Assemble: Nano Progra: 348-402" +} diff --git a/modules/standard/recipe/recipes/341.json b/modules/standard/recipe/recipes/341.json new file mode 100644 index 0000000..bb555a3 --- /dev/null +++ b/modules/standard/recipe/recipes/341.json @@ -0,0 +1,8 @@ +{ + "name": "Nightspear Grandmaster", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Nightspear Grandmaster'\nThe Construction kit. must be between Quality Level 185 and 199.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\nAdd the pieces in the following order:\n\n 1. Piercing Weapons Construction kit.\n\n 2. Max Health Cluster - Shiny (Chest). . SkillTo Assemble: Nano Progra: 555-597\n\n 3. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 370-398\n\n 4. Sneak Atck Cluster - Shiny (Feet). . SkillTo Assemble: Nano Progra: 555-597\n\n 5. Notum Enriched Nano Paste - 4x Layer. . SkillTo Assemble: Nano Progra: 462-498\n\n 6. Medium Handle. . SkillTo Assemble: Weapon Smt: 680-731\n\n 7. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 278-298\n\n 8. Optimized Co-Weapon Interface. . SkillTo Assemble: Comp. Liter: 555-597" +} diff --git a/modules/standard/recipe/recipes/342.json b/modules/standard/recipe/recipes/342.json new file mode 100644 index 0000000..1849a8a --- /dev/null +++ b/modules/standard/recipe/recipes/342.json @@ -0,0 +1,8 @@ +{ + "name": "Nightspear Initiate", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Nightspear Initiate'\nThe Construction kit. must be between Quality Level 116 and 138.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\nAdd the pieces in the following order:\n\n 1. Piercing Weapons Construction kit.\n\n 2. Notum Enriched Nano Paste - 4x Layer. . SkillTo Assemble: Nano Progra: 290-345\n\n 3. Medium Handle. . SkillTo Assemble: Weapon Smt: 426-507\n\n 4. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 174-207\n\n 5. Optimized Co-Weapon Interface. . SkillTo Assemble: Comp. Liter: 348-414\n\n 6. Max Health Cluster - Shiny (Chest). . SkillTo Assemble: Nano Progra: 348-414\n\n 7. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 232-276\n\n 8. Sneak Atck Cluster - Faded (Eye). . SkillTo Assemble: Nano Progra: 116-138" +} diff --git a/modules/standard/recipe/recipes/343.json b/modules/standard/recipe/recipes/343.json new file mode 100644 index 0000000..5c57063 --- /dev/null +++ b/modules/standard/recipe/recipes/343.json @@ -0,0 +1,8 @@ +{ + "name": "Nightspear Master", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Nightspear Master'\n The Construction kit. must be between Quality Level 162 and 184.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add the pieces in the following order:\n \n 1. Piercing Weapons Construction kit.\n \n 2. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 243-276\n \n 3. Optimized Co-Weapon Interface. . SkillTo Assemble: Comp. Liter: 486-552\n \n 4. Max Health Cluster - Shiny (Chest). . SkillTo Assemble: Nano Progra: 486-552\n \n 5. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 324-368\n \n 6. Sneak Atck Cluster - Shiny (Feet). . SkillTo Assemble: Nano Progra: 486-552\n \n 7. Notum Enriched Nano Paste - 4x Layer. . SkillTo Assemble: Nano Progra: 405-460\n \n 8. Medium Handle. . SkillTo Assemble: Weapon Smt: 595-676" +} diff --git a/modules/standard/recipe/recipes/344.json b/modules/standard/recipe/recipes/344.json new file mode 100644 index 0000000..bc2a3c9 --- /dev/null +++ b/modules/standard/recipe/recipes/344.json @@ -0,0 +1,8 @@ +{ + "name": "Nightspear Novice", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Nightspear Novice'\n The Construction kit. must be between Quality Level 93 and 115.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add the pieces in the following order:\n \n 1. Piercing Weapons Construction kit.\n \n 2. Medium Handle. . SkillTo Assemble: Weapon Smt: 342-423\n \n 3. Max Health Cluster - Shiny (Chest). . SkillTo Assemble: Nano Progra: 279-345\n \n 4. Optimized Co-Weapon Interface. . SkillTo Assemble: Comp. Liter: 279-345\n \n 5. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 140-172\n \n 6. Notum Enriched Nano Paste - 4x Layer. . SkillTo Assemble: Nano Progra: 232-288\n \n 7. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 186-230\n \n 8. Sneak Atck Cluster - Faded (Eye). . SkillTo Assemble: Nano Progra: 93-115" +} diff --git a/modules/standard/recipe/recipes/345.json b/modules/standard/recipe/recipes/345.json new file mode 100644 index 0000000..c85761f --- /dev/null +++ b/modules/standard/recipe/recipes/345.json @@ -0,0 +1,8 @@ +{ + "name": "Nomad 21.7 BMG Ranger", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Nomad 21.7 BMG Ranger'\nThe Construction kit. must be between Quality Level 21 and 79.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\nAdd the pieces in the following order:\n\n 1. Rifle Weapons Construction kit.\n\n 2. Notum Enriched Nano Paste - 4x Layer. . SkillTo Assemble: Nano Progra: 52-198\n\n 3. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 42-158\n\n 4. Nano Pylon. . SkillTo Assemble: Mech. Engi: 52-198\n\n 5. Nano Pylon. . SkillTo Assemble: Mech. Engi: 52-198\n\n 6. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 52-198\n\n 7. Explosion Propulsion Containment Chamber. . SkillTo Assemble: Mech. Engi: 74-276\n\n 8. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 32-118\n\n 9. Self-Cleaning KO-CR Device. . SkillTo Assemble: Weapon Smt: 74-276\n\n 10. Ultra-Long Composite Barrel. . SkillTo Assemble: Weapon Smt: 89-336\n\n 11. Lock and Stock. . SkillTo Assemble: Weapon Smt: 84-316\n\n 12. Runtime Critical Area Analyzer. . SkillTo Assemble: Weapon Smt: 84-316\n\n 13. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 52-198" +} diff --git a/modules/standard/recipe/recipes/346.json b/modules/standard/recipe/recipes/346.json new file mode 100644 index 0000000..1fc1332 --- /dev/null +++ b/modules/standard/recipe/recipes/346.json @@ -0,0 +1,8 @@ +{ + "name": "Notum Bladestaff", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Notum Bladestaff'\nThe Construction kit. must be between Quality Level 185 and 199.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\n Add in following order:\n\n 1. Two Handed Edged Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 740 -> 796\n\n 2. 8x Layer Carbon-Notum Alloy Blade. SkillTo Assemble: Weapon Smt: 648 -> 696\n\n 3. Optimized Co-Weapon Interface. SkillTo Assemble: Comp. Liter: 555 -> 597\n\n 4. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 278 -> 298\n\n 5. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 370 -> 398\n\n 6. 4x Layer Carbon-Notum Alloy Blade. SkillTo Assemble: Weapon Smt: 555 -> 597\n\n 7. Notum Enriched Nano Paste - 4x Layer. SkillTo Assemble: Nano Progra: 462 -> 498\n\n 8. 2h Edged Cluster - Shiny (Right-Arm). SkillTo Assemble: Nano Progra: 555 -> 597\n\n 9. Medium Handle. SkillTo Assemble: Weapon Smt: 680 -> 731" +} diff --git a/modules/standard/recipe/recipes/347.json b/modules/standard/recipe/recipes/347.json new file mode 100644 index 0000000..94e8eeb --- /dev/null +++ b/modules/standard/recipe/recipes/347.json @@ -0,0 +1,8 @@ +{ + "name": "Omni-Tek Crowd Unit XI-Autotarget", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Omni-Tek Crowd Unit XI-Autotarget'\nThe Construction kit. must be between Quality Level 116 and 138.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\n Add in following order:\n\n 1. Two Handed Edged Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 464 -> 552\n\n 2. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 232 -> 276\n\n 3. Medium Handle. SkillTo Assemble: Weapon Smt: 426 -> 507\n\n 4. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 174 -> 207\n\n 5. 4x Layer Carbon-Notum Alloy Blade. SkillTo Assemble: Weapon Smt: 348 -> 414\n\n 6. Optimized Co-Weapon Interface. SkillTo Assemble: Comp. Liter: 348 -> 414\n\n 7. 2h Edged Cluster - Bright (Left-Arm). SkillTo Assemble: Nano Progra: 232 -> 276\n\n 8. 8x Layer Carbon-Notum Alloy Blade. SkillTo Assemble: Weapon Smt: 406 -> 483\n\n 9. Notum Enriched Nano Paste - 4x Layer. SkillTo Assemble: Nano Progra: 290 -> 345" +} diff --git a/modules/standard/recipe/recipes/348.json b/modules/standard/recipe/recipes/348.json new file mode 100644 index 0000000..c77e4d5 --- /dev/null +++ b/modules/standard/recipe/recipes/348.json @@ -0,0 +1,8 @@ +{ + "name": "Omni-Tek Manual Tripler", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Omni-Tek Manual Tripler'\nThe Construction kit. must be between Quality Level 162 and 184.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\nAdd the pieces in the following order:\n\n 1. One Handed Edged Weapons Construction kit.\n\n 2. Optimized Co-Weapon Interface. . SkillTo Assemble: Comp. Liter: 486-552\n\n 3. 1h Edged Weapon Cluster - Bright (Right-Wrist). . SkillTo Assemble: Nano Progra: 324-368\n\n 4. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 243-276\n\n 5. Piercing Cluster - Faded (Waist). . SkillTo Assemble: Nano Progra: 162-184\n\n 6. Short Handle. . SkillTo Assemble: Weapon Smt: 567-644" +} diff --git a/modules/standard/recipe/recipes/349.json b/modules/standard/recipe/recipes/349.json new file mode 100644 index 0000000..9264178 --- /dev/null +++ b/modules/standard/recipe/recipes/349.json @@ -0,0 +1,8 @@ +{ + "name": "Over-Tuned Blackened Blaster", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Over-Tuned Blackened Blaster'\nThe Construction kit. must be between Quality Level 41 and 60.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\nAdd the pieces in the following order:\n\n 1. Rifle Weapons Construction kit.\n\n 2. Self-Cleaning KO-CR Device. . SkillTo Assemble: Weapon Smt: 144-210\n\n 3. Ultra-Long Composite Barrel. . SkillTo Assemble: Weapon Smt: 174-255\n\n 4. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 82-120\n\n 5. Nano Pylon. . SkillTo Assemble: Mech. Engi: 102-150\n\n 6. Nano Pylon. . SkillTo Assemble: Mech. Engi: 102-150\n\n 7. Energy Pack Interface. . SkillTo Assemble: Elec. Engi: 164-240\n\n 8. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 62-90\n\n 9. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 102-150\n\n 10. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 102-150\n\n 11. Energy Conduction Rack. . SkillTo Assemble: Quantum FT: 133-195\n\n 12. Hyper Carbo-Ceramic Cooling System. . SkillTo Assemble: Weapon Smt: 164-240\n\n 13. Rapid-Reload-And-Fire Gyro. . SkillTo Assemble: Weapon Smt: 164-240" +} diff --git a/modules/standard/recipe/recipes/350.json b/modules/standard/recipe/recipes/350.json new file mode 100644 index 0000000..23e0aa5 --- /dev/null +++ b/modules/standard/recipe/recipes/350.json @@ -0,0 +1,8 @@ +{ + "name": "Over-Tuned Blackened Blaster Rifle", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Over-Tuned Blackened Blaster Rifle'\nThe Construction kit. must be between Quality Level 41 and 60.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\nAdd the pieces in the following order:\n\n 1. Rifle Weapons Construction kit.\n\n 2. Primitive Freon Bag Cooling System. . SkillTo Assemble: Weapon Smt: 164-240\n\n 3. Notum Enriched Nano Paste - 4x Layer. . SkillTo Assemble: Nano Progra: 102-150\n\n 4. Energy Conduction Rack. . SkillTo Assemble: Quantum FT: 133-195\n\n 5. Ultra-Long Composite Barrel. . SkillTo Assemble: Weapon Smt: 174-255\n\n 6. Auto Targeting Computer -IIR 1. . SkillTo Assemble: Elec. Engi: 92-135\n\n 7. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 102-150\n\n 8. Rapid-Reload-And-Fire Gyro. . SkillTo Assemble: Weapon Smt: 164-240\n\n 9. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 82-120\n\n 10. Lock and Stock. . SkillTo Assemble: Weapon Smt: 164-240\n\n 11. Jandawit Cleanup Cluster. . SkillTo Assemble: Weapon Smt: 144-210\n\n 12. Nano Pylon. . SkillTo Assemble: Mech. Engi: 102-150\n\n 13. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 62-90" +} diff --git a/modules/standard/recipe/recipes/351.json b/modules/standard/recipe/recipes/351.json new file mode 100644 index 0000000..d139990 --- /dev/null +++ b/modules/standard/recipe/recipes/351.json @@ -0,0 +1,8 @@ +{ + "name": "Over-Tuned Blackened Miniblaster", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Over-Tuned Blackened Miniblaster'\nThe Construction kit. must be between Quality Level 41 and 60.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\n Add in following order:\n\n 1. Pistol Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 164 -> 240\n\n 2. Nano Pylon. SkillTo Assemble: Mech. Engi: 102 -> 150\n\n 3. Rapid-Reload-And-Fire Gyro. SkillTo Assemble: Weapon Smt: 164 -> 240\n\n 4. Energy Conduction Rack. SkillTo Assemble: Quantum FT: 133 -> 195\n\n 5. Energy Pack Interface. SkillTo Assemble: Elec. Engi: 164 -> 240\n\n 6. Short Composite Barrel. SkillTo Assemble: Weapon Smt: 133 -> 195\n\n 7. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 82 -> 120\n\n 8. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 102 -> 150\n\n 9. Jandawit Cleanup Cluster. SkillTo Assemble: Weapon Smt: 144 -> 210\n\n 10. Hyper Carbo-Ceramic Cooling System. SkillTo Assemble: Weapon Smt: 164 -> 240\n\n 11. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 62 -> 90" +} diff --git a/modules/standard/recipe/recipes/352.json b/modules/standard/recipe/recipes/352.json new file mode 100644 index 0000000..6dfcd03 --- /dev/null +++ b/modules/standard/recipe/recipes/352.json @@ -0,0 +1,8 @@ +{ + "name": "Over-Tuned Blackhole Mk IX", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Over-Tuned Blackhole Mk IX'\nThe Construction kit. must be between Quality Level 41 and 60.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\n Add in following order:\n\n 1. Shotgun Weapons Construction kit. SkillTo Assemble: Weapon Smt: 164 -> 240\n\n 2. Ultra-Long Composite Barrel. SkillTo Assemble: Weapon Smt: 174 -> 255\n\n 3. Energy Pack Interface. SkillTo Assemble: Elec. Engi: 164 -> 240\n\n 4. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 82 -> 120\n\n 5. Nano Pylon. SkillTo Assemble: Mech. Engi: 102 -> 150\n\n 6. Energy Conduction Rack. SkillTo Assemble: Quantum FT: 133 -> 195\n\n 7. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 102 -> 150\n\n 8. Notum Enriched Nano Paste - 4x Layer. SkillTo Assemble: Nano Progra: 102 -> 150\n\n 9. Rapid-Reload-And-Fire Gyro. SkillTo Assemble: Weapon Smt: 164 -> 240\n\n 10. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 62 -> 90\n\n 11. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 102 -> 150\n\n 12. Nano Pylon. SkillTo Assemble: Mech. Engi: 102 -> 150" +} diff --git a/modules/standard/recipe/recipes/353.json b/modules/standard/recipe/recipes/353.json new file mode 100644 index 0000000..120dd39 --- /dev/null +++ b/modules/standard/recipe/recipes/353.json @@ -0,0 +1,8 @@ +{ + "name": "Over-Tuned Disaffiliation Sniper", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Over-Tuned Disaffiliation Sniper'\nThe Construction kit. must be between Quality Level 41 and 60.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\nAdd the pieces in the following order:\n\n 1. Rifle Weapons Construction kit.\n\n 2. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 102-150\n\n 3. Lock and Stock. . SkillTo Assemble: Weapon Smt: 164-240\n\n 4. Nano Pylon. . SkillTo Assemble: Mech. Engi: 102-150\n\n 5. Auto Targeting Computer -IIR 2-Groper-. . SkillTo Assemble: Elec. Engi: 102-150\n\n 6. Runtime Critical Area Analyzer. . SkillTo Assemble: Weapon Smt: 164-240\n\n 7. Ultra-Long Composite Barrel. . SkillTo Assemble: Weapon Smt: 174-255\n\n 8. Explosion Propulsion Containment Chamber. . SkillTo Assemble: Mech. Engi: 144-210\n\n 9. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 62-90\n\n 10. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 102-150\n\n 11. Nano Pylon. . SkillTo Assemble: Mech. Engi: 102-150\n\n 12. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 82-120\n\n 13. Primitive Freon Bag Cooling System. . SkillTo Assemble: Weapon Smt: 164-240\n\n 14. Notum Enriched Nano Paste - 4x Layer. . SkillTo Assemble: Nano Progra: 102-150" +} diff --git a/modules/standard/recipe/recipes/354.json b/modules/standard/recipe/recipes/354.json new file mode 100644 index 0000000..e482d27 --- /dev/null +++ b/modules/standard/recipe/recipes/354.json @@ -0,0 +1,8 @@ +{ + "name": "Over-Tuned E-Beamer", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Over-Tuned E-Beamer'\nThe Construction kit. must be between Quality Level 41 and 60.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\n Add in following order:\n\n 1. Energy Weapons Construction kit. SkillTo Assemble: Weapon Smt: 164 -> 240\n\n 2. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 102 -> 150\n\n 3. Short Composite Barrel. SkillTo Assemble: Weapon Smt: 133 -> 195\n\n 4. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 62 -> 90\n\n 5. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 102 -> 150\n\n 6. Energy Pack Interface. SkillTo Assemble: Elec. Engi: 164 -> 240\n\n 7. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 82 -> 120\n\n 8. Flake Tubing Base Cooling System. SkillTo Assemble: Weapon Smt: 164 -> 240\n\n 9. Self-Cleaning KO-CR Device. SkillTo Assemble: Weapon Smt: 144 -> 210\n\n 10. Nano Pylon. SkillTo Assemble: Mech. Engi: 102 -> 150\n\n 11. Energy Conduction Rack. SkillTo Assemble: Quantum FT: 133 -> 195\n\n 12. Rapid-Reload-And-Fire Gyro. SkillTo Assemble: Weapon Smt: 164 -> 240\n\n 13. Nano Pylon. SkillTo Assemble: Mech. Engi: 102 -> 150\n\n 14. Notum Enriched Nano Paste - 4x Layer. SkillTo Assemble: Nano Progra: 102 -> 150" +} diff --git a/modules/standard/recipe/recipes/355.json b/modules/standard/recipe/recipes/355.json new file mode 100644 index 0000000..325dc4d --- /dev/null +++ b/modules/standard/recipe/recipes/355.json @@ -0,0 +1,8 @@ +{ + "name": "Over-Tuned Electron-Charged Pistol", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Over-Tuned Electron-Charged Pistol'\nThe Construction kit. must be between Quality Level 41 and 60.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\n Add in following order:\n\n 1. Pistol Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 164 -> 240\n\n 2. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 102 -> 150\n\n 3. Energy Conduction Rack. SkillTo Assemble: Quantum FT: 133 -> 195\n\n 4. Jandawit Cleanup Cluster. SkillTo Assemble: Weapon Smt: 144 -> 210\n\n 5. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 62 -> 90\n\n 6. Plasma Streamer Interface Nozzle. SkillTo Assemble: Chemistry: 164 -> 240\n\n 7. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 82 -> 120\n\n 8. Rapid-Reload-And-Fire Gyro. SkillTo Assemble: Weapon Smt: 164 -> 240\n\n 9. Short Composite Barrel. SkillTo Assemble: Weapon Smt: 133 -> 195\n\n 10. Nano Pylon. SkillTo Assemble: Mech. Engi: 102 -> 150" +} diff --git a/modules/standard/recipe/recipes/356.json b/modules/standard/recipe/recipes/356.json new file mode 100644 index 0000000..6407a1f --- /dev/null +++ b/modules/standard/recipe/recipes/356.json @@ -0,0 +1,8 @@ +{ + "name": "Over-Tuned Flamethrower", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Over-Tuned Flamethrower'\nThe Construction kit. must be between Quality Level 41 and 60.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\n Add in following order:\n\n 1. AssaultRifle Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 164 -> 240\n\n 2. Auto Targeting Computer -IIR 1. SkillTo Assemble: Elec. Engi: 92 -> 135\n\n 3. Plasma Streamer Interface Nozzle. SkillTo Assemble: Chemistry: 164 -> 240\n\n 4. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 102 -> 150\n\n 5. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 82 -> 120\n\n 6. Primitive Freon Bag Cooling System. SkillTo Assemble: Weapon Smt: 164 -> 240\n\n 7. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 62 -> 90\n\n 8. Compression Chamber for Chemicals. SkillTo Assemble: Weapon Smt: 174 -> 255\n\n 9. Short Composite Barrel. SkillTo Assemble: Weapon Smt: 133 -> 195\n\n 10. Nano Pylon. SkillTo Assemble: Mech. Engi: 102 -> 150\n\n 11. Nano Pylon. SkillTo Assemble: Mech. Engi: 102 -> 150\n\n 12. Self-Cleaning KO-CR Device. SkillTo Assemble: Weapon Smt: 144 -> 210" +} diff --git a/modules/standard/recipe/recipes/357.json b/modules/standard/recipe/recipes/357.json new file mode 100644 index 0000000..b73ffca --- /dev/null +++ b/modules/standard/recipe/recipes/357.json @@ -0,0 +1,8 @@ +{ + "name": "Over-Tuned Grenade-Thrower", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Over-Tuned Grenade-Thrower'\nThe Construction kit. must be between Quality Level 41 and 60.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\n Add in following order:\n\n 1. Grenades Construction kit. SkillTo Assemble: Weapon Smt: 164 -> 240\n\n 2. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 62 -> 90\n\n 3. Ultra Short Composite Barrel. SkillTo Assemble: Weapon Smt: 123 -> 180\n\n 4. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 82 -> 120\n\n 5. Notum Enriched Nano Paste - 4x Layer. SkillTo Assemble: Nano Progra: 102 -> 150\n\n 6. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 102 -> 150\n\n 7. Poison Chemical Combination Chamber. SkillTo Assemble: Chemistry: 164 -> 240\n\n 8. Flake Tubing Base Cooling System. SkillTo Assemble: Weapon Smt: 164 -> 240\n\n 9. Nano Pylon. SkillTo Assemble: Mech. Engi: 102 -> 150" +} diff --git a/modules/standard/recipe/recipes/358.json b/modules/standard/recipe/recipes/358.json new file mode 100644 index 0000000..b3b10e0 --- /dev/null +++ b/modules/standard/recipe/recipes/358.json @@ -0,0 +1,8 @@ +{ + "name": "Over-Tuned Heavy Grinner", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Over-Tuned Heavy Grinner'\nThe Construction kit. must be between Quality Level 41 and 60.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\n Add in following order:\n\n 1. Pistol Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 164 -> 240\n\n 2. Nano Pylon. SkillTo Assemble: Mech. Engi: 102 -> 150\n\n 3. Self-Cleaning KO-CR Device. SkillTo Assemble: Weapon Smt: 144 -> 210\n\n 4. Nano Pylon. SkillTo Assemble: Mech. Engi: 102 -> 150\n\n 5. Lock and Stock. SkillTo Assemble: Weapon Smt: 164 -> 240\n\n 6. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 62 -> 90\n\n 7. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 82 -> 120\n\n 8. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 102 -> 150\n\n 9. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 102 -> 150\n\n 10. Triple Pulse Enabler. SkillTo Assemble: Weapon Smt: 174 -> 255\n\n 11. Explosion Propulsion Containment Chamber. SkillTo Assemble: Mech. Engi: 144 -> 210\n\n 12. Composite Barrel. SkillTo Assemble: Weapon Smt: 154 -> 225" +} diff --git a/modules/standard/recipe/recipes/359.json b/modules/standard/recipe/recipes/359.json new file mode 100644 index 0000000..e298651 --- /dev/null +++ b/modules/standard/recipe/recipes/359.json @@ -0,0 +1,8 @@ +{ + "name": "Over-Tuned Heavy Lead Sprayer", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Over-Tuned Heavy Lead Sprayer'\nThe Construction kit. must be between Quality Level 41 and 60.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\n Add in following order:\n\n 1. AssaultRifle Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 164 -> 240\n\n 2. Lock and Stock. SkillTo Assemble: Weapon Smt: 164 -> 240\n\n 3. Composite Barrel. SkillTo Assemble: Weapon Smt: 154 -> 225\n\n 4. Jandawit Cleanup Cluster. SkillTo Assemble: Weapon Smt: 144 -> 210\n\n 5. Nano Pylon. SkillTo Assemble: Mech. Engi: 102 -> 150\n\n 6. Gyro Stabilizing Unit. SkillTo Assemble: Weapon Smt: 184 -> 270\n\n 7. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 82 -> 120\n\n 8. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 62 -> 90\n\n 9. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 102 -> 150\n\n 10. Explosion Propulsion Containment Chamber. SkillTo Assemble: Mech. Engi: 144 -> 210\n\n 11. Triple Pulse Enabler. SkillTo Assemble: Weapon Smt: 174 -> 255" +} diff --git a/modules/standard/recipe/recipes/36.json b/modules/standard/recipe/recipes/36.json new file mode 100644 index 0000000..4bf3565 --- /dev/null +++ b/modules/standard/recipe/recipes/36.json @@ -0,0 +1,69 @@ +{ + "name": "Crepuscule Armor", + "author": "", + "items": [ + { + "alias": "Large Patch of Hard Novictum Spangled Hide", + "item_id": 223432 + }, + { + "alias": "Canister of Pure Liquid Notum", + "item_id": 223446 + }, + { + "alias": "Spirit Bauble of Infantry Expertise", + "item_id": 223435 + }, + { + "alias": "Large Patch of Hard Living Hide", + "item_id": 223460 + }, + { + "alias": "Infantry Crepuscule Leather Gloves", + "item_id": 223086 + }, + { + "alias": "Large Patch of Soft Novictum Spangled Hide", + "item_id": 223430 + }, + { + "alias": "Patch of Soft Novictum Spangled Hide", + "item_id": 223428 + }, + { + "alias": "Patch of Hard Novictum Spangled Hide", + "item_id": 223426 + }, + { + "alias": "Small Patch of Soft Novictum Spangled Hide", + "item_id": 223422 + }, + { + "alias": "Small Patch of Hard Novictum Spangled Hide", + "item_id": 223424 + }, + { + "alias": "Infantry Crepuscule Leather Jacket", + "item_id": 223090 + }, + { + "alias": "Artillery Crepuscule Leather Jacket", + "item_id": 223102 + }, + { + "alias": "Exterminator Unit Crepuscule Jacket", + "item_id": 223174 + }, + { + "alias": "Support Unit Crepuscule Jacket", + "item_id": 223401 + }, + { + "alias": "Control Unit Crepuscule Jacket", + "item_id": 223416 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients\n------------------------------\n\na Patch of Novictum Spangled Hide\n( ie : #L \"Large Patch of Hard Novictum Spangled Hide\" \"223432\" )\n\n\n#L \"Canister of Pure Liquid Notum\" \"223446\"\n\n\nA Spirit Baube of Expertise\n( ie : #L \"Spirit Bauble of Infantry Expertise\" \"223435\" )\n\n\n------------------------------\nRecipe\n------------------------------\n\nCanister of Pure Liquid Notum\n+\nPatch of Novictum Spangled Hide\n=\n\nPatch of Living Hide\n( ie #L \"Large Patch of Hard Living Hide\" \"223460\" )\nSkills: | NP |\n\n------------------------------\n\nA Spirit Baube of Expertise\n+\nPatch of Living Hide\n=\n\nCrepuscule Armor\n( ie #L \"Infantry Crepuscule Leather Gloves\" \"223086\" )\nSkills: | ?? |\n\n------------------------------\nDetails\n------------------------------\n\n#L \"Large Patch of Soft Novictum Spangled Hide\" \"223430\" for Pants \n#L \"Large Patch of Hard Novictum Spangled Hide\" \"223432\" for Jacket \n#L \"Patch of Soft Novictum Spangled Hide\" \"223428\" for Sleeves \n#L \"Patch of Hard Novictum Spangled Hide\" \"223426\" for Boots \n#L \"Small Patch of Soft Novictum Spangled Hide\" \"223422\" for Gloves \n#L \"Small Patch of Hard Novictum Spangled Hide\" \"223424\" for skinchip\n\nie :\n#L \"Infantry Crepuscule Leather Jacket\" \"223090\"\n#L \"Artillery Crepuscule Leather Jacket\" \"223102\"\n#L \"Exterminator Unit Crepuscule Jacket\" \"223174\"\n#L \"Support Unit Crepuscule Jacket\" \"223401\"\n#L \"Control Unit Crepuscule Jacket\" \"223416\"\n\n------------------------------\nComments\n------------------------------\n\nVery nice armor if you can get your hands on the ingredients. A nice alternative to Alien Armor if you cant afford that." +} diff --git a/modules/standard/recipe/recipes/360.json b/modules/standard/recipe/recipes/360.json new file mode 100644 index 0000000..7d148e0 --- /dev/null +++ b/modules/standard/recipe/recipes/360.json @@ -0,0 +1,8 @@ +{ + "name": "Over-Tuned Kolt 58 Magnum", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Over-Tuned Kolt 58 Magnum'\nThe Construction kit. must be between Quality Level 41 and 60.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\n Add in following order:\n\n 1. Pistol Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 164 -> 240\n\n 2. Composite Barrel. SkillTo Assemble: Weapon Smt: 154 -> 225\n\n 3. Nano Pylon. SkillTo Assemble: Mech. Engi: 102 -> 150\n\n 4. Jandawit Cleanup Cluster. SkillTo Assemble: Weapon Smt: 144 -> 210\n\n 5. Explosion Propulsion Containment Chamber. SkillTo Assemble: Mech. Engi: 144 -> 210\n\n 6. Lock and Stock. SkillTo Assemble: Weapon Smt: 164 -> 240\n\n 7. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 102 -> 150\n\n 8. Nano Pylon. SkillTo Assemble: Mech. Engi: 102 -> 150\n\n 9. Rapid-Reload-And-Fire Gyro. SkillTo Assemble: Weapon Smt: 164 -> 240\n\n 10. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 62 -> 90\n\n 11. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 102 -> 150\n\n 12. Hyper Carbo-Ceramic Cooling System. SkillTo Assemble: Weapon Smt: 164 -> 240" +} diff --git a/modules/standard/recipe/recipes/361.json b/modules/standard/recipe/recipes/361.json new file mode 100644 index 0000000..b694017 --- /dev/null +++ b/modules/standard/recipe/recipes/361.json @@ -0,0 +1,8 @@ +{ + "name": "Over-Tuned Kolt PDW-37", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Over-Tuned Kolt PDW-37'\nThe Construction kit. must be between Quality Level 41 and 60.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\n Add in following order:\n\n 1. Pistol Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 164 -> 240\n\n 2. Rapid-Reload-And-Fire Gyro. SkillTo Assemble: Weapon Smt: 164 -> 240\n\n 3. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 82 -> 120\n\n 4. Energy Pack Interface. SkillTo Assemble: Elec. Engi: 164 -> 240\n\n 5. Short Composite Barrel. SkillTo Assemble: Weapon Smt: 133 -> 195\n\n 6. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 102 -> 150\n\n 7. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 62 -> 90\n\n 8. Nano Pylon. SkillTo Assemble: Mech. Engi: 102 -> 150\n\n 9. Hyper Carbo-Ceramic Cooling System. SkillTo Assemble: Weapon Smt: 164 -> 240\n\n 10. Energy Conduction Rack. SkillTo Assemble: Quantum FT: 133 -> 195\n\n 11. Triple Pulse Enabler. SkillTo Assemble: Weapon Smt: 174 -> 255" +} diff --git a/modules/standard/recipe/recipes/362.json b/modules/standard/recipe/recipes/362.json new file mode 100644 index 0000000..2a5083d --- /dev/null +++ b/modules/standard/recipe/recipes/362.json @@ -0,0 +1,8 @@ +{ + "name": "Over-Tuned Light Beamer Pistol", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Over-Tuned Light Beamer Pistol'\nThe Construction kit. must be between Quality Level 67 and 82.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\n Add in following order:\n\n 1. Pistol Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 268 -> 328\n\n 2. Plasma Streamer Interface Nozzle. SkillTo Assemble: Chemistry: 268 -> 328\n\n 3. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 100 -> 123\n\n 4. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 134 -> 164\n\n 5. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 168 -> 205\n\n 6. Hyper Carbo-Ceramic Cooling System. SkillTo Assemble: Weapon Smt: 268 -> 328\n\n 7. Self-Cleaning KO-CR Device. SkillTo Assemble: Weapon Smt: 234 -> 287\n\n 8. Short Composite Barrel. SkillTo Assemble: Weapon Smt: 218 -> 266\n\n 9. Energy Conduction Rack. SkillTo Assemble: Quantum FT: 218 -> 266\n\n 10. Nano Pylon. SkillTo Assemble: Mech. Engi: 168 -> 205" +} diff --git a/modules/standard/recipe/recipes/363.json b/modules/standard/recipe/recipes/363.json new file mode 100644 index 0000000..d1dec30 --- /dev/null +++ b/modules/standard/recipe/recipes/363.json @@ -0,0 +1,8 @@ +{ + "name": "Over-Tuned Mausser Particle Streamer", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Over-Tuned Mausser Particle Streamer'\nThe Construction kit. must be between Quality Level 41 and 60.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\nAdd the pieces in the following order:\n\n 1. Submachinegun Weapons Construction kit.\n\n 2. Nano Pylon. . SkillTo Assemble: Mech. Engi: 102-150\n\n 3. Lock and Stock. . SkillTo Assemble: Weapon Smt: 164-240\n\n 4. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 62-90\n\n 5. Ultra-Long Composite Barrel. . SkillTo Assemble: Weapon Smt: 174-255\n\n 6. Triple Pulse Enabler. . SkillTo Assemble: Weapon Smt: 174-255\n\n 7. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 82-120\n\n 8. Explosion Propulsion Containment Chamber. . SkillTo Assemble: Mech. Engi: 144-210\n\n 9. Auto Targeting Computer -IIR 1. . SkillTo Assemble: Elec. Engi: 92-135\n\n 10. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 102-150\n\n 11. Nano Pylon. . SkillTo Assemble: Mech. Engi: 102-150\n\n 12. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 102-150" +} diff --git a/modules/standard/recipe/recipes/364.json b/modules/standard/recipe/recipes/364.json new file mode 100644 index 0000000..b39b937 --- /dev/null +++ b/modules/standard/recipe/recipes/364.json @@ -0,0 +1,8 @@ +{ + "name": "Over-Tuned Megajolt", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Over-Tuned Megajolt'\nThe Construction kit. must be between Quality Level 41 and 60.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\n Add in following order:\n\n 1. Shotgun Weapons Construction kit. SkillTo Assemble: Weapon Smt: 164 -> 240\n\n 2. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 62 -> 90\n\n 3. Energy Pack Interface. SkillTo Assemble: Elec. Engi: 164 -> 240\n\n 4. Notum Enriched Nano Paste - 4x Layer. SkillTo Assemble: Nano Progra: 102 -> 150\n\n 5. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 102 -> 150\n\n 6. Auto Targeting Computer -IIR 2-Groper-. SkillTo Assemble: Elec. Engi: 102 -> 150\n\n 7. Energy Conduction Rack. SkillTo Assemble: Quantum FT: 133 -> 195\n\n 8. Composite Barrel. SkillTo Assemble: Weapon Smt: 154 -> 225\n\n 9. Nano Pylon. SkillTo Assemble: Mech. Engi: 102 -> 150\n\n 10. Primitive Freon Bag Cooling System. SkillTo Assemble: Weapon Smt: 164 -> 240\n\n 11. Nano Pylon. SkillTo Assemble: Mech. Engi: 102 -> 150\n\n 12. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 102 -> 150\n\n 13. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 82 -> 120" +} diff --git a/modules/standard/recipe/recipes/365.json b/modules/standard/recipe/recipes/365.json new file mode 100644 index 0000000..108b8a0 --- /dev/null +++ b/modules/standard/recipe/recipes/365.json @@ -0,0 +1,8 @@ +{ + "name": "Over-Tuned Mini-Shotgun", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Over-Tuned Mini-Shotgun'\nThe Construction kit. must be between Quality Level 41 and 60.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\n Add in following order:\n\n 1. Shotgun Weapons Construction kit. SkillTo Assemble: Weapon Smt: 164 -> 240\n\n 2. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 62 -> 90\n\n 3. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 102 -> 150\n\n 4. Nano Pylon. SkillTo Assemble: Mech. Engi: 102 -> 150\n\n 5. Nano Pylon. SkillTo Assemble: Mech. Engi: 102 -> 150\n\n 6. Self-Cleaning KO-CR Device. SkillTo Assemble: Weapon Smt: 144 -> 210\n\n 7. Lock and Stock. SkillTo Assemble: Weapon Smt: 164 -> 240\n\n 8. Nano-Interfaced Cooling System. SkillTo Assemble: Weapon Smt: 164 -> 240\n\n 9. Explosion Propulsion Containment Chamber. SkillTo Assemble: Quantum FT: 154 -> 225\n\n 10. Short Composite Barrel. SkillTo Assemble: Weapon Smt: 133 -> 195\n\n 11. Rapid-Reload-And-Fire Gyro. SkillTo Assemble: Weapon Smt: 164 -> 240" +} diff --git a/modules/standard/recipe/recipes/366.json b/modules/standard/recipe/recipes/366.json new file mode 100644 index 0000000..aec255f --- /dev/null +++ b/modules/standard/recipe/recipes/366.json @@ -0,0 +1,8 @@ +{ + "name": "Over-Tuned Minigrinner", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Over-Tuned Minigrinner'\nThe Construction kit. must be between Quality Level 41 and 60.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\n Add in following order:\n\n 1. Pistol Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 164 -> 240\n\n 2. Triple Pulse Enabler. SkillTo Assemble: Weapon Smt: 174 -> 255\n\n 3. Nano Pylon. SkillTo Assemble: Mech. Engi: 102 -> 150\n\n 4. Nano Pylon. SkillTo Assemble: Mech. Engi: 102 -> 150\n\n 5. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 102 -> 150\n\n 6. Gyro Stabilizing Unit. SkillTo Assemble: Weapon Smt: 184 -> 270\n\n 7. Ultra Short Composite Barrel. SkillTo Assemble: Weapon Smt: 123 -> 180\n\n 8. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 62 -> 90\n\n 9. Self-Cleaning KO-CR Device. SkillTo Assemble: Weapon Smt: 144 -> 210\n\n 10. Explosion Propulsion Containment Chamber. SkillTo Assemble: Mech. Engi: 144 -> 210\n\n 11. Hyper Carbo-Ceramic Cooling System. SkillTo Assemble: Weapon Smt: 164 -> 240\n\n 12. Lock and Stock. SkillTo Assemble: Weapon Smt: 164 -> 240" +} diff --git a/modules/standard/recipe/recipes/367.json b/modules/standard/recipe/recipes/367.json new file mode 100644 index 0000000..e53777c --- /dev/null +++ b/modules/standard/recipe/recipes/367.json @@ -0,0 +1,8 @@ +{ + "name": "Over-Tuned Sleekblaster", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Over-Tuned Sleekblaster'\nThe Construction kit. must be between Quality Level 41 and 60.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\n Add in following order:\n\n 1. Energy Weapons Construction kit. SkillTo Assemble: Weapon Smt: 164 -> 240\n\n 2. Hyper Carbo-Ceramic Cooling System. SkillTo Assemble: Weapon Smt: 164 -> 240\n\n 3. Nano Pylon. SkillTo Assemble: Mech. Engi: 102 -> 150\n\n 4. Energy Pack Interface. SkillTo Assemble: Elec. Engi: 164 -> 240\n\n 5. Rapid-Reload-And-Fire Gyro. SkillTo Assemble: Weapon Smt: 164 -> 240\n\n 6. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 102 -> 150\n\n 7. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 102 -> 150\n\n 8. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 62 -> 90\n\n 9. Composite Barrel. SkillTo Assemble: Weapon Smt: 154 -> 225\n\n 10. Nano Pylon. SkillTo Assemble: Mech. Engi: 102 -> 150\n\n 11. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 82 -> 120\n\n 12. Energy Conduction Rack. SkillTo Assemble: Quantum FT: 133 -> 195\n\n 13. Jandawit Cleanup Cluster. SkillTo Assemble: Weapon Smt: 144 -> 210" +} diff --git a/modules/standard/recipe/recipes/368.json b/modules/standard/recipe/recipes/368.json new file mode 100644 index 0000000..5fd0314 --- /dev/null +++ b/modules/standard/recipe/recipes/368.json @@ -0,0 +1,8 @@ +{ + "name": "Over-Tuned Sleekblaster Major", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Over-Tuned Sleekblaster Major'\nThe Construction kit. must be between Quality Level 41 and 60.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\n Add in following order:\n\n 1. Energy Weapons Construction kit. SkillTo Assemble: Weapon Smt: 164 -> 240\n\n 2. Self-Cleaning KO-CR Device. SkillTo Assemble: Weapon Smt: 144 -> 210\n\n 3. Rapid-Reload-And-Fire Gyro. SkillTo Assemble: Weapon Smt: 164 -> 240\n\n 4. Energy Conduction Rack. SkillTo Assemble: Quantum FT: 133 -> 195\n\n 5. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 62 -> 90\n\n 6. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 82 -> 120\n\n 7. Nano Pylon. SkillTo Assemble: Mech. Engi: 102 -> 150\n\n 8. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 102 -> 150\n\n 9. Composite Barrel. SkillTo Assemble: Weapon Smt: 154 -> 225\n\n 10. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 102 -> 150\n\n 11. Nano Pylon. SkillTo Assemble: Mech. Engi: 102 -> 150\n\n 12. Flake Tubing Base Cooling System. SkillTo Assemble: Weapon Smt: 164 -> 240\n\n 13. Energy Pack Interface. SkillTo Assemble: Elec. Engi: 164 -> 240" +} diff --git a/modules/standard/recipe/recipes/369.json b/modules/standard/recipe/recipes/369.json new file mode 100644 index 0000000..5a5741e --- /dev/null +++ b/modules/standard/recipe/recipes/369.json @@ -0,0 +1,8 @@ +{ + "name": "Over-Tuned Sleekblaster Minor", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Over-Tuned Sleekblaster Minor'\nThe Construction kit. must be between Quality Level 41 and 60.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\n Add in following order:\n\n 1. Energy Weapons Construction kit. SkillTo Assemble: Weapon Smt: 164 -> 240\n\n 2. Nano Pylon. SkillTo Assemble: Mech. Engi: 102 -> 150\n\n 3. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 62 -> 90\n\n 4. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 82 -> 120\n\n 5. Rapid-Reload-And-Fire Gyro. SkillTo Assemble: Weapon Smt: 164 -> 240\n\n 6. Jandawit Cleanup Cluster. SkillTo Assemble: Weapon Smt: 144 -> 210\n\n 7. Energy Pack Interface. SkillTo Assemble: Elec. Engi: 164 -> 240\n\n 8. Energy Conduction Rack. SkillTo Assemble: Quantum FT: 133 -> 195\n\n 9. Flake Tubing Base Cooling System. SkillTo Assemble: Weapon Smt: 164 -> 240\n\n 10. Short Composite Barrel. SkillTo Assemble: Weapon Smt: 133 -> 195" +} diff --git a/modules/standard/recipe/recipes/37.json b/modules/standard/recipe/recipes/37.json new file mode 100644 index 0000000..44deccd --- /dev/null +++ b/modules/standard/recipe/recipes/37.json @@ -0,0 +1,45 @@ +{ + "name": "Crawler Armor", + "author": "", + "items": [ + { + "alias": "Patch of Hard Skincrawler Hide", + "item_id": 245211 + }, + { + "alias": "Mass Relocating Robot (Shape Soft Armor)", + "item_id": 162220 + }, + { + "alias": "Crawler Armor Gloves", + "item_id": 245118 + }, + { + "alias": "Crawler Armor Sleeves", + "item_id": 245119 + }, + { + "alias": "Crawler Armor Pants", + "item_id": 245120 + }, + { + "alias": "Crawler Armor Boots", + "item_id": 245122 + }, + { + "alias": "Crawler Body Armor", + "item_id": 245123 + }, + { + "alias": "Crawler Armor Hood", + "item_id": 245124 + }, + { + "alias": "Crawler Armor Shoulder Pad", + "item_id": 245125 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients\n------------------------------\n\na Patch of Skincrawler Hide\n( ie : #L \"Patch of Hard Skincrawler Hide\" \"245211\" )\n\n\n#L \"Mass Relocating Robot (Shape Soft Armor)\" \"162220\"\n\n\n------------------------------\nRecipe\n------------------------------\n\nMass Relocating Robot (Shape Soft Armor)\n+\na Patch of Skincrawler Hide\n=\n\na piece of Crawler Armor\nSkills: | ?? |\n\n------------------------------\nDetails\n------------------------------\n\n#L \"Crawler Armor Gloves\" \"245118\"\n#L \"Crawler Armor Sleeves\" \"245119\"\n#L \"Crawler Armor Pants\" \"245120\"\n#L \"Crawler Armor Boots\" \"245122\"\n#L \"Crawler Body Armor\" \"245123\"\n#L \"Crawler Armor Hood\" \"245124\"\n#L \"Crawler Armor Shoulder Pad\" \"245125\"\n\n------------------------------\nComments\n------------------------------\n\nAnother great example of crafted armor. The hide can be found in CoH." +} diff --git a/modules/standard/recipe/recipes/370.json b/modules/standard/recipe/recipes/370.json new file mode 100644 index 0000000..5c3e985 --- /dev/null +++ b/modules/standard/recipe/recipes/370.json @@ -0,0 +1,8 @@ +{ + "name": "Over-Tuned Subturbine", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Over-Tuned Subturbine'\nThe Construction kit. must be between Quality Level 41 and 60.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\n Add in following order:\n\n 1. AssaultRifle Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 164 -> 240\n\n 2. Explosion Propulsion Containment Chamber. SkillTo Assemble: Mech. Engi: 144 -> 210\n\n 3. Nano Pylon. SkillTo Assemble: Mech. Engi: 102 -> 150\n\n 4. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 102 -> 150\n\n 5. Self-Cleaning KO-CR Device. SkillTo Assemble: Weapon Smt: 144 -> 210\n\n 6. Triple Pulse Enabler. SkillTo Assemble: Weapon Smt: 174 -> 255\n\n 7. Lock and Stock. SkillTo Assemble: Weapon Smt: 164 -> 240\n\n 8. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 82 -> 120\n\n 9. Hyper Carbo-Ceramic Cooling System. SkillTo Assemble: Weapon Smt: 164 -> 240\n\n 10. Short Composite Barrel. SkillTo Assemble: Weapon Smt: 133 -> 195\n\n 11. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 62 -> 90\n\n 12. Nano Pylon. SkillTo Assemble: Mech. Engi: 102 -> 150\n\n 13. Notum Enriched Nano Paste - 4x Layer. SkillTo Assemble: Nano Progra: 102 -> 150\n\n 14. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 102 -> 150\n\n 15. Gyro Stabilizing Unit. SkillTo Assemble: Weapon Smt: 184 -> 270" +} diff --git a/modules/standard/recipe/recipes/371.json b/modules/standard/recipe/recipes/371.json new file mode 100644 index 0000000..e22946b --- /dev/null +++ b/modules/standard/recipe/recipes/371.json @@ -0,0 +1,8 @@ +{ + "name": "Over-Tuned Supernova Mk VI", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Over-Tuned Supernova Mk VI'\nThe Construction kit. must be between Quality Level 41 and 60.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\nAdd the pieces in the following order:\n\n 1. Energy Weapons Construction kit.\n\n 2. Nano Pylon. . SkillTo Assemble: Mech. Engi: 102-150\n\n 3. Auto Targeting C. -IIR 5 -Powermolder-. . SkillTo Assemble: Elec. Engi: 133-195\n\n 4. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 102-150\n\n 5. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 62-90\n\n 6. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 102-150\n\n 7. Ultra-Long Composite Barrel. . SkillTo Assemble: Weapon Smt: 174-255\n\n 8. Auto Targeting Computer -IIR 4 -Ultra-. . SkillTo Assemble: Elec. Engi: 123-180\n\n 9. Runtime Critical Area Analyzer. . SkillTo Assemble: Weapon Smt: 164-240\n\n 10. Nano Pylon. . SkillTo Assemble: Mech. Engi: 102-150\n\n 11. Energy Pack Interface. . SkillTo Assemble: Elec. Engi: 164-240\n\n 12. Energy Conduction Rack. . SkillTo Assemble: Quantum FT: 133-195" +} diff --git a/modules/standard/recipe/recipes/372.json b/modules/standard/recipe/recipes/372.json new file mode 100644 index 0000000..ec9809d --- /dev/null +++ b/modules/standard/recipe/recipes/372.json @@ -0,0 +1,8 @@ +{ + "name": "Over-Tuned Suppressor", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Over-Tuned Suppressor'\nThe Construction kit. must be between Quality Level 41 and 60.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\nAdd the pieces in the following order:\n\n 1. Submachinegun Weapons Construction kit.\n\n 2. Explosion Propulsion Containment Chamber. . SkillTo Assemble: Mech. Engi: 144-210\n\n 3. Nano Pylon. . SkillTo Assemble: Mech. Engi: 102-150\n\n 4. Triple Pulse Enabler. . SkillTo Assemble: Weapon Smt: 174-255\n\n 5. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 62-90\n\n 6. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 102-150\n\n 7. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 102-150\n\n 8. Nano Pylon. . SkillTo Assemble: Mech. Engi: 102-150\n\n 9. Gyro Stabilizing Unit. . SkillTo Assemble: Weapon Smt: 184-270\n\n 10. Lock and Stock. . SkillTo Assemble: Weapon Smt: 164-240\n\n 11. Ultra-Long Composite Barrel. . SkillTo Assemble: Weapon Smt: 174-255" +} diff --git a/modules/standard/recipe/recipes/373.json b/modules/standard/recipe/recipes/373.json new file mode 100644 index 0000000..5f1c389 --- /dev/null +++ b/modules/standard/recipe/recipes/373.json @@ -0,0 +1,8 @@ +{ + "name": "Over-Tuned Triplejolt", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Over-Tuned Triplejolt'\nThe Construction kit. must be between Quality Level 41 and 60.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\n Add in following order:\n\n 1. Shotgun Weapons Construction kit. SkillTo Assemble: Weapon Smt: 164 -> 240\n\n 2. Jandawit Cleanup Cluster. SkillTo Assemble: Weapon Smt: 144 -> 210\n\n 3. Rapid-Reload-And-Fire Gyro. SkillTo Assemble: Weapon Smt: 164 -> 240\n\n 4. Radioactive Isotope Fusion System. SkillTo Assemble: Quantum FT: 164 -> 240\n\n 5. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 82 -> 120\n\n 6. Ultra Short Composite Barrel. SkillTo Assemble: Weapon Smt: 123 -> 180\n\n 7. Hyper Carbo-Ceramic Cooling System. SkillTo Assemble: Weapon Smt: 164 -> 240\n\n 8. Nano Pylon. SkillTo Assemble: Mech. Engi: 102 -> 150\n\n 9. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 102 -> 150\n\n 10. Energy Conduction Rack. SkillTo Assemble: Quantum FT: 133 -> 195\n\n 11. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 62 -> 90\n\n 12. Nano Pylon. SkillTo Assemble: Mech. Engi: 102 -> 150" +} diff --git a/modules/standard/recipe/recipes/374.json b/modules/standard/recipe/recipes/374.json new file mode 100644 index 0000000..9d677db --- /dev/null +++ b/modules/standard/recipe/recipes/374.json @@ -0,0 +1,8 @@ +{ + "name": "Plasmaprojector", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Plasmaprojector'\nThe Construction kit. must be between Quality Level 81 and 100.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\n Add in following order:\n\n 1. AssaultRifle Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 324 -> 400\n\n 2. Nano Pylon. SkillTo Assemble: Mech. Engi: 202 -> 250\n\n 3. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 122 -> 150\n\n 4. Notum Enriched Nano Paste - 4x Layer. SkillTo Assemble: Nano Progra: 202 -> 250\n\n 5. Energy Conduction Rack. SkillTo Assemble: Quantum FT: 263 -> 325\n\n 6. Long Composite Barrel. SkillTo Assemble: Weapon Smt: 324 -> 400\n\n 7. Hyper Carbo-Ceramic Cooling System. SkillTo Assemble: Weapon Smt: 324 -> 400\n\n 8. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 162 -> 200\n\n 9. Runtime Critical Area Analyzer. SkillTo Assemble: Weapon Smt: 324 -> 400\n\n 10. Energy Pack Interface. SkillTo Assemble: Elec. Engi: 324 -> 400" +} diff --git a/modules/standard/recipe/recipes/375.json b/modules/standard/recipe/recipes/375.json new file mode 100644 index 0000000..63521ba --- /dev/null +++ b/modules/standard/recipe/recipes/375.json @@ -0,0 +1,8 @@ +{ + "name": "PoE - Mathis Multi-Energy Rifle", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'PoE - Mathis Multi-Energy Rifle'\nThe Construction kit. must be between Quality Level 101 and 120.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\nAdd the pieces in the following order:\n\n 1. Rifle Weapons Construction kit.\n\n 2. Nano Pylon. . SkillTo Assemble: Mech. Engi: 252-300\n\n 3. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 202-240\n\n 4. Runtime Critical Area Analyzer. . SkillTo Assemble: Weapon Smt: 404-480\n\n 5. Ultra-Long Composite Barrel. . SkillTo Assemble: Weapon Smt: 429-510\n\n 6. Energy Pack Interface. . SkillTo Assemble: Elec. Engi: 404-480\n\n 7. Energy Conduction Rack. . SkillTo Assemble: Quantum FT: 328-390\n\n 8. Nano Pylon. . SkillTo Assemble: Mech. Engi: 252-300\n\n 9. Hyper Carbo-Ceramic Cooling System. . SkillTo Assemble: Weapon Smt: 404-480\n\n 10. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 152-180\n\n 11. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 252-300" +} diff --git a/modules/standard/recipe/recipes/376.json b/modules/standard/recipe/recipes/376.json new file mode 100644 index 0000000..000561e --- /dev/null +++ b/modules/standard/recipe/recipes/376.json @@ -0,0 +1,8 @@ +{ + "name": "Premium Blackened Blaster", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Premium Blackened Blaster'\nThe Construction kit. must be between Quality Level 200 and 200.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\nAdd the pieces in the following order:\n\n 1. Rifle Weapons Construction kit.\n\n 2. Ultra-Long Composite Barrel. . SkillTo Assemble: Weapon Smt: 850-850\n\n 3. Energy Pack Interface. . SkillTo Assemble: Elec. Engi: 800-800\n\n 4. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 300-300\n\n 5. Hyper Carbo-Ceramic Cooling System. . SkillTo Assemble: Weapon Smt: 800-800\n\n 6. Nano Pylon. . SkillTo Assemble: Mech. Engi: 500-500\n\n 7. Energy Conduction Rack. . SkillTo Assemble: Quantum FT: 650-650\n\n 8. Rapid-Reload-And-Fire Gyro. . SkillTo Assemble: Weapon Smt: 800-800\n\n 9. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 500-500\n\n 10. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 400-400\n\n 11. Nano Pylon. . SkillTo Assemble: Mech. Engi: 500-500\n\n 12. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 500-500\n\n 13. Self-Cleaning KO-CR Device. . SkillTo Assemble: Weapon Smt: 700-700" +} diff --git a/modules/standard/recipe/recipes/377.json b/modules/standard/recipe/recipes/377.json new file mode 100644 index 0000000..f978ffd --- /dev/null +++ b/modules/standard/recipe/recipes/377.json @@ -0,0 +1,8 @@ +{ + "name": "Premium Blackened Blaster Rifle", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Premium Blackened Blaster Rifle'\nThe Construction kit. must be between Quality Level 200 and 200.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\nAdd the pieces in the following order:\n\n 1. Rifle Weapons Construction kit.\n\n 2. Ultra-Long Composite Barrel. . SkillTo Assemble: Weapon Smt: 850-850\n\n 3. Lock and Stock. . SkillTo Assemble: Weapon Smt: 800-800\n\n 4. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 300-300\n\n 5. Rapid-Reload-And-Fire Gyro. . SkillTo Assemble: Weapon Smt: 800-800\n\n 6. Primitive Freon Bag Cooling System. . SkillTo Assemble: Weapon Smt: 800-800\n\n 7. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 500-500\n\n 8. Notum Enriched Nano Paste - 4x Layer. . SkillTo Assemble: Nano Progra: 500-500\n\n 9. Energy Conduction Rack. . SkillTo Assemble: Quantum FT: 650-650\n\n 10. Jandawit Cleanup Cluster. . SkillTo Assemble: Weapon Smt: 700-700\n\n 11. Auto Targeting Computer -IIR 1. . SkillTo Assemble: Elec. Engi: 450-450\n\n 12. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 400-400\n\n 13. Nano Pylon. . SkillTo Assemble: Mech. Engi: 500-500" +} diff --git a/modules/standard/recipe/recipes/378.json b/modules/standard/recipe/recipes/378.json new file mode 100644 index 0000000..d8730ae --- /dev/null +++ b/modules/standard/recipe/recipes/378.json @@ -0,0 +1,8 @@ +{ + "name": "Premium Blackened Miniblaster", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Premium Blackened Miniblaster'\nThe Construction kit. must be between Quality Level 200 and 200.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\n Add in following order:\n\n 1. Pistol Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 800 -> 800\n\n 2. Energy Pack Interface. SkillTo Assemble: Elec. Engi: 800 -> 800\n\n 3. Nano Pylon. SkillTo Assemble: Mech. Engi: 500 -> 500\n\n 4. Energy Conduction Rack. SkillTo Assemble: Quantum FT: 650 -> 650\n\n 5. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 400 -> 400\n\n 6. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 300 -> 300\n\n 7. Jandawit Cleanup Cluster. SkillTo Assemble: Weapon Smt: 700 -> 700\n\n 8. Hyper Carbo-Ceramic Cooling System. SkillTo Assemble: Weapon Smt: 800 -> 800\n\n 9. Short Composite Barrel. SkillTo Assemble: Weapon Smt: 650 -> 650\n\n 10. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 500 -> 500\n\n 11. Rapid-Reload-And-Fire Gyro. SkillTo Assemble: Weapon Smt: 800 -> 800" +} diff --git a/modules/standard/recipe/recipes/379.json b/modules/standard/recipe/recipes/379.json new file mode 100644 index 0000000..201704e --- /dev/null +++ b/modules/standard/recipe/recipes/379.json @@ -0,0 +1,8 @@ +{ + "name": "Premium Blackhole Mk IX", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Premium Blackhole Mk IX'\nThe Construction kit. must be between Quality Level 200 and 200.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\n Add in following order:\n\n 1. Shotgun Weapons Construction kit. SkillTo Assemble: Weapon Smt: 800 -> 800\n\n 2. Notum Enriched Nano Paste - 4x Layer. SkillTo Assemble: Nano Progra: 500 -> 500\n\n 3. Ultra-Long Composite Barrel. SkillTo Assemble: Weapon Smt: 850 -> 850\n\n 4. Energy Conduction Rack. SkillTo Assemble: Quantum FT: 650 -> 650\n\n 5. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 300 -> 300\n\n 6. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 400 -> 400\n\n 7. Nano Pylon. SkillTo Assemble: Mech. Engi: 500 -> 500\n\n 8. Nano Pylon. SkillTo Assemble: Mech. Engi: 500 -> 500\n\n 9. Energy Pack Interface. SkillTo Assemble: Elec. Engi: 800 -> 800\n\n 10. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 500 -> 500\n\n 11. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 500 -> 500\n\n 12. Rapid-Reload-And-Fire Gyro. SkillTo Assemble: Weapon Smt: 800 -> 800" +} diff --git a/modules/standard/recipe/recipes/38.json b/modules/standard/recipe/recipes/38.json new file mode 100644 index 0000000..6bc608b --- /dev/null +++ b/modules/standard/recipe/recipes/38.json @@ -0,0 +1,37 @@ +{ + "name": "Trimmer - Damage Modifier", + "author": "", + "items": [ + { + "alias": "Charged Energy Core", + "item_id": 249646 + }, + { + "alias": "Trimmer Casing", + "item_id": 154938 + }, + { + "alias": "Trimmer - Energy Damage Modifier", + "item_id": 249110 + }, + { + "alias": "Heated Energy Core", + "item_id": 249647 + }, + { + "alias": "Trimmer - Fire Damage Modifier", + "item_id": 249109 + }, + { + "alias": "Cooled Energy Core", + "item_id": 249648 + }, + { + "alias": "Trimmer - Cold Damage Modifier", + "item_id": 249107 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients\n------------------------------\n\nAn Energy Core\n( ie : #L \"Charged Energy Core\" \"249646\" )\n\n\n#L \"Trimmer Casing\" \"154938\"\n\n\n------------------------------\nRecipe\n------------------------------\n\nEnergy Core\n+\nTrimmer Casing\n=\n\nTrimmer - Damage Modifier\n( ie : #L \"Trimmer - Energy Damage Modifier\" \"249110\" )\nSkills: | ?? |\n\n------------------------------\nDetails\n------------------------------\n\n#L \"Charged Energy Core\" \"249646\" - #L \"Trimmer - Energy Damage Modifier\" \"249110\"\n#L \"Heated Energy Core\" \"249647\" - #L \"Trimmer - Fire Damage Modifier\" \"249109\"\n#L \"Cooled Energy Core\" \"249648\" - #L \"Trimmer - Cold Damage Modifier\" \"249107\"\n\n------------------------------\nComments\n------------------------------\n\nSupercharged Trimmers for players with Ai Expansion." +} diff --git a/modules/standard/recipe/recipes/380.json b/modules/standard/recipe/recipes/380.json new file mode 100644 index 0000000..46b08da --- /dev/null +++ b/modules/standard/recipe/recipes/380.json @@ -0,0 +1,8 @@ +{ + "name": "Premium Chunkprojector", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Premium Chunkprojector'\nThe Construction kit. must be between Quality Level 200 and 200.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\n Add in following order:\n\n 1. Shotgun Weapons Construction kit. SkillTo Assemble: Weapon Smt: 800 -> 800\n\n 2. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 500 -> 500\n\n 3. Nano Pylon. SkillTo Assemble: Mech. Engi: 500 -> 500\n\n 4. Self-Cleaning KO-CR Device. SkillTo Assemble: Weapon Smt: 700 -> 700\n\n 5. Flake Tubing Base Cooling System. SkillTo Assemble: Weapon Smt: 800 -> 800\n\n 6. Lock and Stock. SkillTo Assemble: Weapon Smt: 800 -> 800\n\n 7. Short Composite Barrel. SkillTo Assemble: Weapon Smt: 650 -> 650\n\n 8. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 300 -> 300\n\n 9. Explosion Propulsion Containment Chamber. SkillTo Assemble: Quantum FT: 750 -> 750\n\n 10. Nano Pylon. SkillTo Assemble: Mech. Engi: 500 -> 500\n\n 11. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 500 -> 500\n\n 12. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 400 -> 400" +} diff --git a/modules/standard/recipe/recipes/381.json b/modules/standard/recipe/recipes/381.json new file mode 100644 index 0000000..7c9e254 --- /dev/null +++ b/modules/standard/recipe/recipes/381.json @@ -0,0 +1,8 @@ +{ + "name": "Premium Disaffiliation Sniper", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Premium Disaffiliation Sniper'\nThe Construction kit. must be between Quality Level 200 and 200.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\nAdd the pieces in the following order:\n\n 1. Rifle Weapons Construction kit.\n\n 2. Runtime Critical Area Analyzer. . SkillTo Assemble: Weapon Smt: 800-800\n\n 3. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 400-400\n\n 4. Nano Pylon. . SkillTo Assemble: Mech. Engi: 500-500\n\n 5. Ultra-Long Composite Barrel. . SkillTo Assemble: Weapon Smt: 850-850\n\n 6. Notum Enriched Nano Paste - 4x Layer. . SkillTo Assemble: Nano Progra: 500-500\n\n 7. Lock and Stock. . SkillTo Assemble: Weapon Smt: 800-800\n\n 8. Nano Pylon. . SkillTo Assemble: Mech. Engi: 500-500\n\n 9. Primitive Freon Bag Cooling System. . SkillTo Assemble: Weapon Smt: 800-800\n\n 10. Auto Targeting Computer -IIR 2-Groper-. . SkillTo Assemble: Elec. Engi: 500-500\n\n 11. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 500-500\n\n 12. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 500-500\n\n 13. Explosion Propulsion Containment Chamber. . SkillTo Assemble: Mech. Engi: 700-700\n\n 14. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 300-300" +} diff --git a/modules/standard/recipe/recipes/382.json b/modules/standard/recipe/recipes/382.json new file mode 100644 index 0000000..2ee5d50 --- /dev/null +++ b/modules/standard/recipe/recipes/382.json @@ -0,0 +1,8 @@ +{ + "name": "Premium E-Beamer", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Premium E-Beamer'\nThe Construction kit. must be between Quality Level 200 and 200.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\n Add in following order:\n\n 1. Energy Weapons Construction kit. SkillTo Assemble: Weapon Smt: 800 -> 800\n\n 2. Energy Conduction Rack. SkillTo Assemble: Quantum FT: 650 -> 650\n\n 3. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 500 -> 500\n\n 4. Rapid-Reload-And-Fire Gyro. SkillTo Assemble: Weapon Smt: 800 -> 800\n\n 5. Nano Pylon. SkillTo Assemble: Mech. Engi: 500 -> 500\n\n 6. Notum Enriched Nano Paste - 4x Layer. SkillTo Assemble: Nano Progra: 500 -> 500\n\n 7. Self-Cleaning KO-CR Device. SkillTo Assemble: Weapon Smt: 700 -> 700\n\n 8. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 400 -> 400\n\n 9. Nano Pylon. SkillTo Assemble: Mech. Engi: 500 -> 500\n\n 10. Flake Tubing Base Cooling System. SkillTo Assemble: Weapon Smt: 800 -> 800\n\n 11. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 300 -> 300\n\n 12. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 500 -> 500\n\n 13. Energy Pack Interface. SkillTo Assemble: Elec. Engi: 800 -> 800\n\n 14. Short Composite Barrel. SkillTo Assemble: Weapon Smt: 650 -> 650" +} diff --git a/modules/standard/recipe/recipes/383.json b/modules/standard/recipe/recipes/383.json new file mode 100644 index 0000000..0ea264e --- /dev/null +++ b/modules/standard/recipe/recipes/383.json @@ -0,0 +1,8 @@ +{ + "name": "Premium Electron-Charged Pistol", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Premium Electron-Charged Pistol'\nThe Construction kit. must be between Quality Level 200 and 200.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\n Add in following order:\n\n 1. Pistol Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 800 -> 800\n\n 2. Short Composite Barrel. SkillTo Assemble: Weapon Smt: 650 -> 650\n\n 3. Plasma Streamer Interface Nozzle. SkillTo Assemble: Chemistry: 800 -> 800\n\n 4. Rapid-Reload-And-Fire Gyro. SkillTo Assemble: Weapon Smt: 800 -> 800\n\n 5. Nano Pylon. SkillTo Assemble: Mech. Engi: 500 -> 500\n\n 6. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 400 -> 400\n\n 7. Jandawit Cleanup Cluster. SkillTo Assemble: Weapon Smt: 700 -> 700\n\n 8. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 300 -> 300\n\n 9. Energy Conduction Rack. SkillTo Assemble: Quantum FT: 650 -> 650\n\n 10. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 500 -> 500" +} diff --git a/modules/standard/recipe/recipes/384.json b/modules/standard/recipe/recipes/384.json new file mode 100644 index 0000000..6ff4636 --- /dev/null +++ b/modules/standard/recipe/recipes/384.json @@ -0,0 +1,8 @@ +{ + "name": "Premium Flamethrower", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Premium Flamethrower'\nThe Construction kit. must be between Quality Level 200 and 200.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\n Add in following order:\n\n 1. AssaultRifle Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 800 -> 800\n\n 2. Nano Pylon. SkillTo Assemble: Mech. Engi: 500 -> 500\n\n 3. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 500 -> 500\n\n 4. Self-Cleaning KO-CR Device. SkillTo Assemble: Weapon Smt: 700 -> 700\n\n 5. Plasma Streamer Interface Nozzle. SkillTo Assemble: Chemistry: 800 -> 800\n\n 6. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 300 -> 300\n\n 7. Compression Chamber for Chemicals. SkillTo Assemble: Weapon Smt: 850 -> 850\n\n 8. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 400 -> 400\n\n 9. Short Composite Barrel. SkillTo Assemble: Weapon Smt: 650 -> 650\n\n 10. Nano Pylon. SkillTo Assemble: Mech. Engi: 500 -> 500\n\n 11. Auto Targeting Computer -IIR 1. SkillTo Assemble: Elec. Engi: 450 -> 450\n\n 12. Primitive Freon Bag Cooling System. SkillTo Assemble: Weapon Smt: 800 -> 800" +} diff --git a/modules/standard/recipe/recipes/385.json b/modules/standard/recipe/recipes/385.json new file mode 100644 index 0000000..1af6d71 --- /dev/null +++ b/modules/standard/recipe/recipes/385.json @@ -0,0 +1,8 @@ +{ + "name": "Premium Grenade-Thrower", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Premium Grenade-Thrower'\nThe Construction kit. must be between Quality Level 200 and 200.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\n Add in following order:\n\n 1. Grenades Construction kit. SkillTo Assemble: Weapon Smt: 800 -> 800\n\n 2. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 500 -> 500\n\n 3. Ultra Short Composite Barrel. SkillTo Assemble: Weapon Smt: 600 -> 600\n\n 4. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 300 -> 300\n\n 5. Nano Pylon. SkillTo Assemble: Mech. Engi: 500 -> 500\n\n 6. Poison Chemical Combination Chamber. SkillTo Assemble: Chemistry: 800 -> 800\n\n 7. Notum Enriched Nano Paste - 4x Layer. SkillTo Assemble: Nano Progra: 500 -> 500\n\n 8. Flake Tubing Base Cooling System. SkillTo Assemble: Weapon Smt: 800 -> 800\n\n 9. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 400 -> 400" +} diff --git a/modules/standard/recipe/recipes/386.json b/modules/standard/recipe/recipes/386.json new file mode 100644 index 0000000..3742e7b --- /dev/null +++ b/modules/standard/recipe/recipes/386.json @@ -0,0 +1,8 @@ +{ + "name": "Premium Heavy Grinner", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Premium Heavy Grinner'\nThe Construction kit. must be between Quality Level 200 and 200.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\n Add in following order:\n\n 1. Pistol Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 800 -> 800\n\n 2. Nano Pylon. SkillTo Assemble: Mech. Engi: 500 -> 500\n\n 3. Triple Pulse Enabler. SkillTo Assemble: Weapon Smt: 850 -> 850\n\n 4. Self-Cleaning KO-CR Device. SkillTo Assemble: Weapon Smt: 700 -> 700\n\n 5. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 300 -> 300\n\n 6. Explosion Propulsion Containment Chamber. SkillTo Assemble: Mech. Engi: 700 -> 700\n\n 7. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 500 -> 500\n\n 8. Lock and Stock. SkillTo Assemble: Weapon Smt: 800 -> 800\n\n 9. Nano Pylon. SkillTo Assemble: Mech. Engi: 500 -> 500\n\n 10. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 400 -> 400\n\n 11. Composite Barrel. SkillTo Assemble: Weapon Smt: 750 -> 750\n\n 12. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 500 -> 500" +} diff --git a/modules/standard/recipe/recipes/387.json b/modules/standard/recipe/recipes/387.json new file mode 100644 index 0000000..3d22e69 --- /dev/null +++ b/modules/standard/recipe/recipes/387.json @@ -0,0 +1,8 @@ +{ + "name": "Premium Heavy Lead Sprayer", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Premium Heavy Lead Sprayer'\nThe Construction kit. must be between Quality Level 200 and 200.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\n Add in following order:\n\n 1. AssaultRifle Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 800 -> 800\n\n 2. Triple Pulse Enabler. SkillTo Assemble: Weapon Smt: 850 -> 850\n\n 3. Composite Barrel. SkillTo Assemble: Weapon Smt: 750 -> 750\n\n 4. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 400 -> 400\n\n 5. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 500 -> 500\n\n 6. Jandawit Cleanup Cluster. SkillTo Assemble: Weapon Smt: 700 -> 700\n\n 7. Explosion Propulsion Containment Chamber. SkillTo Assemble: Mech. Engi: 700 -> 700\n\n 8. Gyro Stabilizing Unit. SkillTo Assemble: Weapon Smt: 900 -> 900\n\n 9. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 300 -> 300\n\n 10. Nano Pylon. SkillTo Assemble: Mech. Engi: 500 -> 500\n\n 11. Lock and Stock. SkillTo Assemble: Weapon Smt: 800 -> 800" +} diff --git a/modules/standard/recipe/recipes/388.json b/modules/standard/recipe/recipes/388.json new file mode 100644 index 0000000..f5dff57 --- /dev/null +++ b/modules/standard/recipe/recipes/388.json @@ -0,0 +1,8 @@ +{ + "name": "Premium Kolt 58 Magnum", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Premium Kolt 58 Magnum'\nThe Construction kit. must be between Quality Level 200 and 200.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\n Add in following order:\n\n 1. Pistol Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 800 -> 800\n\n 2. Nano Pylon. SkillTo Assemble: Mech. Engi: 500 -> 500\n\n 3. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 500 -> 500\n\n 4. Rapid-Reload-And-Fire Gyro. SkillTo Assemble: Weapon Smt: 800 -> 800\n\n 5. Explosion Propulsion Containment Chamber. SkillTo Assemble: Mech. Engi: 700 -> 700\n\n 6. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 300 -> 300\n\n 7. Jandawit Cleanup Cluster. SkillTo Assemble: Weapon Smt: 700 -> 700\n\n 8. Lock and Stock. SkillTo Assemble: Weapon Smt: 800 -> 800\n\n 9. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 500 -> 500\n\n 10. Hyper Carbo-Ceramic Cooling System. SkillTo Assemble: Weapon Smt: 800 -> 800\n\n 11. Composite Barrel. SkillTo Assemble: Weapon Smt: 750 -> 750\n\n 12. Nano Pylon. SkillTo Assemble: Mech. Engi: 500 -> 500" +} diff --git a/modules/standard/recipe/recipes/389.json b/modules/standard/recipe/recipes/389.json new file mode 100644 index 0000000..0b23cc7 --- /dev/null +++ b/modules/standard/recipe/recipes/389.json @@ -0,0 +1,8 @@ +{ + "name": "Premium Kolt PDW-37", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Premium Kolt PDW-37'\nThe Construction kit. must be between Quality Level 200 and 200.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\n Add in following order:\n\n 1. Pistol Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 800 -> 800\n\n 2. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 300 -> 300\n\n 3. Triple Pulse Enabler. SkillTo Assemble: Weapon Smt: 850 -> 850\n\n 4. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 500 -> 500\n\n 5. Energy Conduction Rack. SkillTo Assemble: Quantum FT: 650 -> 650\n\n 6. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 400 -> 400\n\n 7. Energy Pack Interface. SkillTo Assemble: Elec. Engi: 800 -> 800\n\n 8. Rapid-Reload-And-Fire Gyro. SkillTo Assemble: Weapon Smt: 800 -> 800\n\n 9. Hyper Carbo-Ceramic Cooling System. SkillTo Assemble: Weapon Smt: 800 -> 800\n\n 10. Nano Pylon. SkillTo Assemble: Mech. Engi: 500 -> 500\n\n 11. Short Composite Barrel. SkillTo Assemble: Weapon Smt: 650 -> 650" +} diff --git a/modules/standard/recipe/recipes/39.json b/modules/standard/recipe/recipes/39.json new file mode 100644 index 0000000..a3a0947 --- /dev/null +++ b/modules/standard/recipe/recipes/39.json @@ -0,0 +1,21 @@ +{ + "name": "De'Valos Sleeves", + "author": "", + "items": [ + { + "alias": "High-Quality Cyber Armor Sleeves", + "item_id": 21917 + }, + { + "alias": "Powdered Viral-Bots", + "item_id": 253149 + }, + { + "alias": "De'Valos Sleeves", + "item_id": 253185 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients\n------------------------------\n\n#L \"High-Quality Cyber Armor Sleeves\" \"21917\"\n\n\n#L \"Powdered Viral-Bots\" \"253149\"\n\n\n------------------------------\nRecipe\n------------------------------\n\nHigh-Quality Cyber Armor Sleeves\n+\nPowdered Viral-Bots\n=\n\n#L \"De'Valos Sleeves\" \"253185\"\nSkills: | EE,NP |\n\n------------------------------\nComments\n------------------------------\n\nViral-Bots drop from alien Generals." +} diff --git a/modules/standard/recipe/recipes/390.json b/modules/standard/recipe/recipes/390.json new file mode 100644 index 0000000..588f953 --- /dev/null +++ b/modules/standard/recipe/recipes/390.json @@ -0,0 +1,8 @@ +{ + "name": "Premium Light Beamer Pistol", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Premium Light Beamer Pistol'\nThe Construction kit. must be between Quality Level 200 and 200.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\n Add in following order:\n\n 1. Pistol Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 800 -> 800\n\n 2. Short Composite Barrel. SkillTo Assemble: Weapon Smt: 650 -> 650\n\n 3. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 500 -> 500\n\n 4. Hyper Carbo-Ceramic Cooling System. SkillTo Assemble: Weapon Smt: 800 -> 800\n\n 5. Self-Cleaning KO-CR Device. SkillTo Assemble: Weapon Smt: 700 -> 700\n\n 6. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 400 -> 400\n\n 7. Nano Pylon. SkillTo Assemble: Mech. Engi: 500 -> 500\n\n 8. Energy Conduction Rack. SkillTo Assemble: Quantum FT: 650 -> 650\n\n 9. Plasma Streamer Interface Nozzle. SkillTo Assemble: Chemistry: 800 -> 800\n\n 10. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 300 -> 300" +} diff --git a/modules/standard/recipe/recipes/391.json b/modules/standard/recipe/recipes/391.json new file mode 100644 index 0000000..759edbb --- /dev/null +++ b/modules/standard/recipe/recipes/391.json @@ -0,0 +1,8 @@ +{ + "name": "Premium Mausser Particle Streamer", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Premium Mausser Particle Streamer'\nThe Construction kit. must be between Quality Level 200 and 200.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\nAdd the pieces in the following order:\n\n 1. Submachinegun Weapons Construction kit.\n\n 2. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 500-500\n\n 3. Explosion Propulsion Containment Chamber. . SkillTo Assemble: Mech. Engi: 700-700\n\n 4. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 400-400\n\n 5. Ultra-Long Composite Barrel. . SkillTo Assemble: Weapon Smt: 850-850\n\n 6. Nano Pylon. . SkillTo Assemble: Mech. Engi: 500-500\n\n 7. Triple Pulse Enabler. . SkillTo Assemble: Weapon Smt: 850-850\n\n 8. Auto Targeting Computer -IIR 1. . SkillTo Assemble: Elec. Engi: 450-450\n\n 9. Lock and Stock. . SkillTo Assemble: Weapon Smt: 800-800\n\n 10. Nano Pylon. . SkillTo Assemble: Mech. Engi: 500-500\n\n 11. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 300-300\n\n 12. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 500-500" +} diff --git a/modules/standard/recipe/recipes/392.json b/modules/standard/recipe/recipes/392.json new file mode 100644 index 0000000..701d5b9 --- /dev/null +++ b/modules/standard/recipe/recipes/392.json @@ -0,0 +1,8 @@ +{ + "name": "Premium Megajolt", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Premium Megajolt'\nThe Construction kit. must be between Quality Level 200 and 200.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\n Add in following order:\n\n 1. Shotgun Weapons Construction kit. SkillTo Assemble: Weapon Smt: 800 -> 800\n\n 2. Auto Targeting Computer -IIR 2-Groper-. SkillTo Assemble: Elec. Engi: 500 -> 500\n\n 3. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 500 -> 500\n\n 4. Composite Barrel. SkillTo Assemble: Weapon Smt: 750 -> 750\n\n 5. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 500 -> 500\n\n 6. Notum Enriched Nano Paste - 4x Layer. SkillTo Assemble: Nano Progra: 500 -> 500\n\n 7. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 400 -> 400\n\n 8. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 300 -> 300\n\n 9. Energy Pack Interface. SkillTo Assemble: Elec. Engi: 800 -> 800\n\n 10. Nano Pylon. SkillTo Assemble: Mech. Engi: 500 -> 500\n\n 11. Primitive Freon Bag Cooling System. SkillTo Assemble: Weapon Smt: 800 -> 800\n\n 12. Nano Pylon. SkillTo Assemble: Mech. Engi: 500 -> 500\n\n 13. Energy Conduction Rack. SkillTo Assemble: Quantum FT: 650 -> 650" +} diff --git a/modules/standard/recipe/recipes/393.json b/modules/standard/recipe/recipes/393.json new file mode 100644 index 0000000..9ef5720 --- /dev/null +++ b/modules/standard/recipe/recipes/393.json @@ -0,0 +1,8 @@ +{ + "name": "Premium Michael Patriot Ffi 29B", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Premium Michael Patriot Ffi 29B'\nThe Construction kit. must be between Quality Level 200 and 200.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\nAdd the pieces in the following order:\n\n 1. Submachinegun Weapons Construction kit.\n\n 2. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 400-400\n\n 3. Nano Pylon. . SkillTo Assemble: Mech. Engi: 500-500\n\n 4. Flake Tubing Base Cooling System. . SkillTo Assemble: Weapon Smt: 800-800\n\n 5. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 500-500\n\n 6. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 500-500\n\n 7. Ultra-Long Composite Barrel. . SkillTo Assemble: Weapon Smt: 850-850\n\n 8. Jandawit Cleanup Cluster. . SkillTo Assemble: Weapon Smt: 700-700\n\n 9. Nano Pylon. . SkillTo Assemble: Mech. Engi: 500-500\n\n 10. Triple Pulse Enabler. . SkillTo Assemble: Weapon Smt: 850-850\n\n 11. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 300-300\n\n 12. Explosion Propulsion Containment Chamber. . SkillTo Assemble: Mech. Engi: 700-700\n\n 13. Plasma Streamer Interface Nozzle. . SkillTo Assemble: Chemistry: 800-800" +} diff --git a/modules/standard/recipe/recipes/394.json b/modules/standard/recipe/recipes/394.json new file mode 100644 index 0000000..5aa2399 --- /dev/null +++ b/modules/standard/recipe/recipes/394.json @@ -0,0 +1,8 @@ +{ + "name": "Premium Mini-Shotgun", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Premium Mini-Shotgun'\nThe Construction kit. must be between Quality Level 200 and 200.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\n Add in following order:\n\n 1. Shotgun Weapons Construction kit. SkillTo Assemble: Weapon Smt: 800 -> 800\n\n 2. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 500 -> 500\n\n 3. Short Composite Barrel. SkillTo Assemble: Weapon Smt: 650 -> 650\n\n 4. Rapid-Reload-And-Fire Gyro. SkillTo Assemble: Weapon Smt: 800 -> 800\n\n 5. Self-Cleaning KO-CR Device. SkillTo Assemble: Weapon Smt: 700 -> 700\n\n 6. Lock and Stock. SkillTo Assemble: Weapon Smt: 800 -> 800\n\n 7. Nano-Interfaced Cooling System. SkillTo Assemble: Weapon Smt: 800 -> 800\n\n 8. Explosion Propulsion Containment Chamber. SkillTo Assemble: Quantum FT: 750 -> 750\n\n 9. Nano Pylon. SkillTo Assemble: Mech. Engi: 500 -> 500\n\n 10. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 300 -> 300\n\n 11. Nano Pylon. SkillTo Assemble: Mech. Engi: 500 -> 500" +} diff --git a/modules/standard/recipe/recipes/395.json b/modules/standard/recipe/recipes/395.json new file mode 100644 index 0000000..2646ca9 --- /dev/null +++ b/modules/standard/recipe/recipes/395.json @@ -0,0 +1,8 @@ +{ + "name": "Premium Minigrinner", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Premium Minigrinner'\nThe Construction kit. must be between Quality Level 200 and 200.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\n Add in following order:\n\n 1. Pistol Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 800 -> 800\n\n 2. Hyper Carbo-Ceramic Cooling System. SkillTo Assemble: Weapon Smt: 800 -> 800\n\n 3. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 300 -> 300\n\n 4. Nano Pylon. SkillTo Assemble: Mech. Engi: 500 -> 500\n\n 5. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 500 -> 500\n\n 6. Explosion Propulsion Containment Chamber. SkillTo Assemble: Mech. Engi: 700 -> 700\n\n 7. Self-Cleaning KO-CR Device. SkillTo Assemble: Weapon Smt: 700 -> 700\n\n 8. Ultra Short Composite Barrel. SkillTo Assemble: Weapon Smt: 600 -> 600\n\n 9. Lock and Stock. SkillTo Assemble: Weapon Smt: 800 -> 800\n\n 10. Nano Pylon. SkillTo Assemble: Mech. Engi: 500 -> 500\n\n 11. Triple Pulse Enabler. SkillTo Assemble: Weapon Smt: 850 -> 850\n\n 12. Gyro Stabilizing Unit. SkillTo Assemble: Weapon Smt: 900 -> 900" +} diff --git a/modules/standard/recipe/recipes/396.json b/modules/standard/recipe/recipes/396.json new file mode 100644 index 0000000..e3dff90 --- /dev/null +++ b/modules/standard/recipe/recipes/396.json @@ -0,0 +1,8 @@ +{ + "name": "Premium Notum Spear", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Premium Notum Spear'\nThe Construction kit. must be between Quality Level 200 and 200.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\nAdd the pieces in the following order:\n\n 1. Piercing Weapons Construction kit.\n\n 2. Energy Impact Super Conductor. . SkillTo Assemble: Elec. Engi: 800-800\n\n 3. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 400-400\n\n 4. Medium Handle. . SkillTo Assemble: Weapon Smt: 735-735\n\n 5. Optimized Co-Weapon Interface. . SkillTo Assemble: Comp. Liter: 600-600\n\n 6. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 300-300\n\n 7. Notum Enriched Nano Paste - 4x Layer. . SkillTo Assemble: Nano Progra: 500-500" +} diff --git a/modules/standard/recipe/recipes/397.json b/modules/standard/recipe/recipes/397.json new file mode 100644 index 0000000..21cd1c8 --- /dev/null +++ b/modules/standard/recipe/recipes/397.json @@ -0,0 +1,8 @@ +{ + "name": "Premium Notum Staff", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Premium Notum Staff'\nThe Construction kit. must be between Quality Level 200 and 200.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\nAdd the pieces in the following order:\n\n 1. Two Handed Blunt Weapons Construction kit.\n\n 2. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 300-300\n\n 3. Basic Co-Weapon Interface. . SkillTo Assemble: Comp. Liter: 450-450\n\n 4. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 400-400\n\n 5. Notum Enriched Nano Paste - 4x Layer. . SkillTo Assemble: Nano Progra: 500-500\n\n 6. 8x Layer Carbon-Notum Alloy Rod. . SkillTo Assemble: Weapon Smt: 950-950\n\n 7. 4x Layer Carbon-Notum Alloy Rod. . SkillTo Assemble: Weapon Smt: 900-900\n\n 8. Short Handle. . SkillTo Assemble: Weapon Smt: 700-700" +} diff --git a/modules/standard/recipe/recipes/398.json b/modules/standard/recipe/recipes/398.json new file mode 100644 index 0000000..c8d6e55 --- /dev/null +++ b/modules/standard/recipe/recipes/398.json @@ -0,0 +1,8 @@ +{ + "name": "Premium Plasmaprojector", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Premium Plasmaprojector'\nThe Construction kit. must be between Quality Level 200 and 200.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\n Add in following order:\n\n 1. AssaultRifle Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 800 -> 800\n\n 2. Nano Pylon. SkillTo Assemble: Mech. Engi: 500 -> 500\n\n 3. Energy Conduction Rack. SkillTo Assemble: Quantum FT: 650 -> 650\n\n 4. Notum Enriched Nano Paste - 4x Layer. SkillTo Assemble: Nano Progra: 500 -> 500\n\n 5. Energy Pack Interface. SkillTo Assemble: Elec. Engi: 800 -> 800\n\n 6. Long Composite Barrel. SkillTo Assemble: Weapon Smt: 800 -> 800\n\n 7. Runtime Critical Area Analyzer. SkillTo Assemble: Weapon Smt: 800 -> 800\n\n 8. Hyper Carbo-Ceramic Cooling System. SkillTo Assemble: Weapon Smt: 800 -> 800\n\n 9. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 400 -> 400\n\n 10. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 300 -> 300" +} diff --git a/modules/standard/recipe/recipes/399.json b/modules/standard/recipe/recipes/399.json new file mode 100644 index 0000000..220fe9a --- /dev/null +++ b/modules/standard/recipe/recipes/399.json @@ -0,0 +1,8 @@ +{ + "name": "Premium Right Slice", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Premium Right Slice'\nThe Construction kit. must be between Quality Level 200 and 200.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\nAdd the pieces in the following order:\n\n 1. One Handed Edged Weapons Construction kit.\n\n 2. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 400-400\n\n 3. Short Handle. . SkillTo Assemble: Weapon Smt: 700-700\n\n 4. Optimized Co-Weapon Interface. . SkillTo Assemble: Comp. Liter: 600-600\n\n 5. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 300-300" +} diff --git a/modules/standard/recipe/recipes/4.json b/modules/standard/recipe/recipes/4.json new file mode 100644 index 0000000..765c388 --- /dev/null +++ b/modules/standard/recipe/recipes/4.json @@ -0,0 +1,26 @@ +{ + "name": "Aggression Multiplier (Jealousy Augmented)", + "author": "", + "items": [ + { + "alias": "Aggression Multiplier", + "item_id": 83919 + }, + { + "alias": "Essence of Pure Jealousy", + "item_id": 152030 + }, + { + "alias": "Aggression Multiplier (Jealousy Augmented)", + "item_id": 152028 + } + ], + "steps": [ + { + "source": "Essence of Pure Jealousy", + "target": "Aggression Multiplier", + "result": "Aggression Multiplier (Jealousy Augmented)", + "skills": "ME, WS" + } + ] +} \ No newline at end of file diff --git a/modules/standard/recipe/recipes/40.json b/modules/standard/recipe/recipes/40.json new file mode 100644 index 0000000..e131995 --- /dev/null +++ b/modules/standard/recipe/recipes/40.json @@ -0,0 +1,21 @@ +{ + "name": "Enhanced Mantis Scissors", + "author": "", + "items": [ + { + "alias": "Mantis Scissors", + "item_id": 157760 + }, + { + "alias": "Diamond-Matrix Mesh", + "item_id": 202266 + }, + { + "alias": "Enhanced Mantis Scissors", + "item_id": 202265 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients\n------------------------------\n\n#L \"Mantis Scissors\" \"157760\"\n\n\n#L \"Diamond-Matrix Mesh\" \"202266\"\n\n\n------------------------------\nRecipe\n------------------------------\n\nDiamond-Matrix Mesh\n+\nMantis Scissors\n=\n\n#L \"Enhanced Mantis Scissors\" \"202265\"\nSkills: | ?? |\n\n------------------------------\nComments\n------------------------------\n\nNice weapon if you can get the parts." +} diff --git a/modules/standard/recipe/recipes/400.json b/modules/standard/recipe/recipes/400.json new file mode 100644 index 0000000..1fbd8b9 --- /dev/null +++ b/modules/standard/recipe/recipes/400.json @@ -0,0 +1,8 @@ +{ + "name": "Premium Slank Chop", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Premium Slank Chop'\nThe Construction kit. must be between Quality Level 200 and 200.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\nAdd the pieces in the following order:\n\n 1. Piercing Weapons Construction kit.\n\n 2. Hyper-Optimized Co-Weapon Interface. . SkillTo Assemble: Comp. Liter: 800-800\n\n 3. 4x Layer Carbon-Notum Alloy Blade. . SkillTo Assemble: Weapon Smt: 600-600\n\n 4. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 400-400\n\n 5. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 300-300\n\n 6. Short Handle. . SkillTo Assemble: Weapon Smt: 700-700" +} diff --git a/modules/standard/recipe/recipes/401.json b/modules/standard/recipe/recipes/401.json new file mode 100644 index 0000000..1b306db --- /dev/null +++ b/modules/standard/recipe/recipes/401.json @@ -0,0 +1,8 @@ +{ + "name": "Premium Sleekblaster", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Premium Sleekblaster'\nThe Construction kit. must be between Quality Level 200 and 200.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\n Add in following order:\n\n 1. Energy Weapons Construction kit. SkillTo Assemble: Weapon Smt: 800 -> 800\n\n 2. Rapid-Reload-And-Fire Gyro. SkillTo Assemble: Weapon Smt: 800 -> 800\n\n 3. Jandawit Cleanup Cluster. SkillTo Assemble: Weapon Smt: 700 -> 700\n\n 4. Energy Conduction Rack. SkillTo Assemble: Quantum FT: 650 -> 650\n\n 5. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 400 -> 400\n\n 6. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 500 -> 500\n\n 7. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 500 -> 500\n\n 8. Energy Pack Interface. SkillTo Assemble: Elec. Engi: 800 -> 800\n\n 9. Composite Barrel. SkillTo Assemble: Weapon Smt: 750 -> 750\n\n 10. Nano Pylon. SkillTo Assemble: Mech. Engi: 500 -> 500\n\n 11. Hyper Carbo-Ceramic Cooling System. SkillTo Assemble: Weapon Smt: 800 -> 800\n\n 12. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 300 -> 300\n\n 13. Nano Pylon. SkillTo Assemble: Mech. Engi: 500 -> 500" +} diff --git a/modules/standard/recipe/recipes/402.json b/modules/standard/recipe/recipes/402.json new file mode 100644 index 0000000..642e47c --- /dev/null +++ b/modules/standard/recipe/recipes/402.json @@ -0,0 +1,8 @@ +{ + "name": "Premium Sleekblaster Major", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Premium Sleekblaster Major'\nThe Construction kit. must be between Quality Level 200 and 200.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\n Add in following order:\n\n 1. Energy Weapons Construction kit. SkillTo Assemble: Weapon Smt: 800 -> 800\n\n 2. Energy Pack Interface. SkillTo Assemble: Elec. Engi: 800 -> 800\n\n 3. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 500 -> 500\n\n 4. Composite Barrel. SkillTo Assemble: Weapon Smt: 750 -> 750\n\n 5. Self-Cleaning KO-CR Device. SkillTo Assemble: Weapon Smt: 700 -> 700\n\n 6. Energy Conduction Rack. SkillTo Assemble: Quantum FT: 650 -> 650\n\n 7. Nano Pylon. SkillTo Assemble: Mech. Engi: 500 -> 500\n\n 8. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 500 -> 500\n\n 9. Nano Pylon. SkillTo Assemble: Mech. Engi: 500 -> 500\n\n 10. Rapid-Reload-And-Fire Gyro. SkillTo Assemble: Weapon Smt: 800 -> 800\n\n 11. Flake Tubing Base Cooling System. SkillTo Assemble: Weapon Smt: 800 -> 800\n\n 12. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 300 -> 300\n\n 13. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 400 -> 400" +} diff --git a/modules/standard/recipe/recipes/403.json b/modules/standard/recipe/recipes/403.json new file mode 100644 index 0000000..64b4d06 --- /dev/null +++ b/modules/standard/recipe/recipes/403.json @@ -0,0 +1,8 @@ +{ + "name": "Premium Sleekblaster Minor", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Premium Sleekblaster Minor'\nThe Construction kit. must be between Quality Level 200 and 200.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\n Add in following order:\n\n 1. Energy Weapons Construction kit. SkillTo Assemble: Weapon Smt: 800 -> 800\n\n 2. Flake Tubing Base Cooling System. SkillTo Assemble: Weapon Smt: 800 -> 800\n\n 3. Jandawit Cleanup Cluster. SkillTo Assemble: Weapon Smt: 700 -> 700\n\n 4. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 300 -> 300\n\n 5. Energy Conduction Rack. SkillTo Assemble: Quantum FT: 650 -> 650\n\n 6. Rapid-Reload-And-Fire Gyro. SkillTo Assemble: Weapon Smt: 800 -> 800\n\n 7. Short Composite Barrel. SkillTo Assemble: Weapon Smt: 650 -> 650\n\n 8. Energy Pack Interface. SkillTo Assemble: Elec. Engi: 800 -> 800\n\n 9. Nano Pylon. SkillTo Assemble: Mech. Engi: 500 -> 500\n\n 10. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 400 -> 400" +} diff --git a/modules/standard/recipe/recipes/404.json b/modules/standard/recipe/recipes/404.json new file mode 100644 index 0000000..8afbbb9 --- /dev/null +++ b/modules/standard/recipe/recipes/404.json @@ -0,0 +1,8 @@ +{ + "name": "Premium Subturbine", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Premium Subturbine'\nThe Construction kit. must be between Quality Level 200 and 200.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\n Add in following order:\n\n 1. AssaultRifle Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 800 -> 800\n\n 2. Notum Enriched Nano Paste - 4x Layer. SkillTo Assemble: Nano Progra: 500 -> 500\n\n 3. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 400 -> 400\n\n 4. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 500 -> 500\n\n 5. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 300 -> 300\n\n 6. Hyper Carbo-Ceramic Cooling System. SkillTo Assemble: Weapon Smt: 800 -> 800\n\n 7. Gyro Stabilizing Unit. SkillTo Assemble: Weapon Smt: 900 -> 900\n\n 8. Triple Pulse Enabler. SkillTo Assemble: Weapon Smt: 850 -> 850\n\n 9. Nano Pylon. SkillTo Assemble: Mech. Engi: 500 -> 500\n\n 10. Nano Pylon. SkillTo Assemble: Mech. Engi: 500 -> 500\n\n 11. Explosion Propulsion Containment Chamber. SkillTo Assemble: Mech. Engi: 700 -> 700\n\n 12. Self-Cleaning KO-CR Device. SkillTo Assemble: Weapon Smt: 700 -> 700\n\n 13. Short Composite Barrel. SkillTo Assemble: Weapon Smt: 650 -> 650\n\n 14. Lock and Stock. SkillTo Assemble: Weapon Smt: 800 -> 800\n\n 15. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 500 -> 500" +} diff --git a/modules/standard/recipe/recipes/405.json b/modules/standard/recipe/recipes/405.json new file mode 100644 index 0000000..b1f8da8 --- /dev/null +++ b/modules/standard/recipe/recipes/405.json @@ -0,0 +1,8 @@ +{ + "name": "Premium Supernova Mk VI", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Premium Supernova Mk VI'\nThe Construction kit. must be between Quality Level 200 and 200.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\nAdd the pieces in the following order:\n\n 1. Energy Weapons Construction kit.\n\n 2. Auto Targeting C. -IIR 5 -Powermolder-. . SkillTo Assemble: Elec. Engi: 650-650\n\n 3. Runtime Critical Area Analyzer. . SkillTo Assemble: Weapon Smt: 800-800\n\n 4. Ultra-Long Composite Barrel. . SkillTo Assemble: Weapon Smt: 850-850\n\n 5. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 500-500\n\n 6. Auto Targeting Computer -IIR 4 -Ultra-. . SkillTo Assemble: Elec. Engi: 600-600\n\n 7. Nano Pylon. . SkillTo Assemble: Mech. Engi: 500-500\n\n 8. Energy Conduction Rack. . SkillTo Assemble: Quantum FT: 650-650\n\n 9. Energy Pack Interface. . SkillTo Assemble: Elec. Engi: 800-800\n\n 10. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 500-500\n\n 11. Nano Pylon. . SkillTo Assemble: Mech. Engi: 500-500\n\n 12. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 300-300" +} diff --git a/modules/standard/recipe/recipes/406.json b/modules/standard/recipe/recipes/406.json new file mode 100644 index 0000000..47e0aa1 --- /dev/null +++ b/modules/standard/recipe/recipes/406.json @@ -0,0 +1,8 @@ +{ + "name": "Premium Suppressor", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Premium Suppressor'\nThe Construction kit. must be between Quality Level 200 and 200.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\nAdd the pieces in the following order:\n\n 1. Submachinegun Weapons Construction kit.\n\n 2. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 300-300\n\n 3. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 500-500\n\n 4. Explosion Propulsion Containment Chamber. . SkillTo Assemble: Mech. Engi: 700-700\n\n 5. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 500-500\n\n 6. Nano Pylon. . SkillTo Assemble: Mech. Engi: 500-500\n\n 7. Ultra-Long Composite Barrel. . SkillTo Assemble: Weapon Smt: 850-850\n\n 8. Triple Pulse Enabler. . SkillTo Assemble: Weapon Smt: 850-850\n\n 9. Lock and Stock. . SkillTo Assemble: Weapon Smt: 800-800\n\n 10. Gyro Stabilizing Unit. . SkillTo Assemble: Weapon Smt: 900-900\n\n 11. Nano Pylon. . SkillTo Assemble: Mech. Engi: 500-500" +} diff --git a/modules/standard/recipe/recipes/407.json b/modules/standard/recipe/recipes/407.json new file mode 100644 index 0000000..9601b0c --- /dev/null +++ b/modules/standard/recipe/recipes/407.json @@ -0,0 +1,8 @@ +{ + "name": "Premium Triplejolt", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Premium Triplejolt'\nThe Construction kit. must be between Quality Level 200 and 200.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\n Add in following order:\n\n 1. Shotgun Weapons Construction kit. SkillTo Assemble: Weapon Smt: 800 -> 800\n\n 2. Ultra Short Composite Barrel. SkillTo Assemble: Weapon Smt: 600 -> 600\n\n 3. Energy Conduction Rack. SkillTo Assemble: Quantum FT: 650 -> 650\n\n 4. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 300 -> 300\n\n 5. Hyper Carbo-Ceramic Cooling System. SkillTo Assemble: Weapon Smt: 800 -> 800\n\n 6. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 500 -> 500\n\n 7. Radioactive Isotope Fusion System. SkillTo Assemble: Quantum FT: 800 -> 800\n\n 8. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 400 -> 400\n\n 9. Nano Pylon. SkillTo Assemble: Mech. Engi: 500 -> 500\n\n 10. Jandawit Cleanup Cluster. SkillTo Assemble: Weapon Smt: 700 -> 700\n\n 11. Rapid-Reload-And-Fire Gyro. SkillTo Assemble: Weapon Smt: 800 -> 800\n\n 12. Nano Pylon. SkillTo Assemble: Mech. Engi: 500 -> 500" +} diff --git a/modules/standard/recipe/recipes/408.json b/modules/standard/recipe/recipes/408.json new file mode 100644 index 0000000..2255185 --- /dev/null +++ b/modules/standard/recipe/recipes/408.json @@ -0,0 +1,8 @@ +{ + "name": "Premium Whings", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Premium Whings'\nThe Construction kit. must be between Quality Level 200 and 200.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\n Add in following order:\n\n 1. Two Handed Edged Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 800 -> 800\n\n 2. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 400 -> 400\n\n 3. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 300 -> 300\n\n 4. Optimized Co-Weapon Interface. SkillTo Assemble: Comp. Liter: 600 -> 600\n\n 5. Notum Enriched Nano Paste - 4x Layer. SkillTo Assemble: Nano Progra: 500 -> 500\n\n 6. 4x Layer Carbon-Notum Alloy Blade. SkillTo Assemble: Weapon Smt: 600 -> 600\n\n 7. 8x Layer Carbon-Notum Alloy Blade. SkillTo Assemble: Weapon Smt: 700 -> 700\n\n 8. Long Handle. SkillTo Assemble: Weapon Smt: 750 -> 750" +} diff --git a/modules/standard/recipe/recipes/409.json b/modules/standard/recipe/recipes/409.json new file mode 100644 index 0000000..49679e7 --- /dev/null +++ b/modules/standard/recipe/recipes/409.json @@ -0,0 +1,8 @@ +{ + "name": "Professional Amytlo Executioner", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Professional Amytlo Executioner'\nThe Construction kit. must be between Quality Level 121 and 160.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\nAdd the pieces in the following order:\n\n 1. One Handed Edged Weapons Construction kit.\n\n 2. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 242-320\n\n 3. Medium Handle. . SkillTo Assemble: Weapon Smt: 445-588\n\n 4. Optimized Co-Weapon Interface. . SkillTo Assemble: Comp. Liter: 363-480\n\n 5. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 182-240" +} diff --git a/modules/standard/recipe/recipes/41.json b/modules/standard/recipe/recipes/41.json new file mode 100644 index 0000000..0024dda --- /dev/null +++ b/modules/standard/recipe/recipes/41.json @@ -0,0 +1,21 @@ +{ + "name": "Enhanced Queen Blade", + "author": "", + "items": [ + { + "alias": "Queen Blade", + "item_id": 157761 + }, + { + "alias": "Diamond-Matrix Mesh", + "item_id": 202266 + }, + { + "alias": "Enhanced Queen Blade", + "item_id": 202264 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients\n------------------------------\n\n#L \"Queen Blade\" \"157761\"\n\n\n#L \"Diamond-Matrix Mesh\" \"202266\"\n\n\n------------------------------\nRecipe\n------------------------------\n\nDiamond-Matrix Mesh\n+\nQueen Blade\n=\n\n#L \"Enhanced Queen Blade\" \"202264\"\nSkills: | ?? |\n\n------------------------------\nComments\n------------------------------\n\nNice weapon if you can get the parts." +} diff --git a/modules/standard/recipe/recipes/410.json b/modules/standard/recipe/recipes/410.json new file mode 100644 index 0000000..dc25ec2 --- /dev/null +++ b/modules/standard/recipe/recipes/410.json @@ -0,0 +1,8 @@ +{ + "name": "Professional Fiddle Rifle", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Professional Fiddle Rifle'\nThe Construction kit. must be between Quality Level 151 and 180.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\nAdd the pieces in the following order:\n\n 1. Rifle Weapons Construction kit.\n\n 2. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 378-450\n\n 3. Lock and Stock. . SkillTo Assemble: Weapon Smt: 604-720\n\n 4. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 378-450\n\n 5. Ultra-Long Composite Barrel. . SkillTo Assemble: Weapon Smt: 642-765\n\n 6. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 226-270\n\n 7. Hyper Carbo-Ceramic Cooling System. . SkillTo Assemble: Weapon Smt: 604-720\n\n 8. Nano Pylon. . SkillTo Assemble: Mech. Engi: 378-450\n\n 9. Nano Pylon. . SkillTo Assemble: Mech. Engi: 378-450\n\n 10. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 302-360\n\n 11. Runtime Critical Area Analyzer. . SkillTo Assemble: Weapon Smt: 604-720\n\n 12. Explosion Propulsion Containment Chamber. . SkillTo Assemble: Mech. Engi: 528-630" +} diff --git a/modules/standard/recipe/recipes/411.json b/modules/standard/recipe/recipes/411.json new file mode 100644 index 0000000..7a91494 --- /dev/null +++ b/modules/standard/recipe/recipes/411.json @@ -0,0 +1,8 @@ +{ + "name": "Professional Luxembourg Inferno Rifle", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Professional Luxembourg Inferno Rifle'\nThe Construction kit. must be between Quality Level 151 and 180.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\n Add in following order:\n\n 1. Rifle Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 604 -> 720\n\n 2. Nano Pylon. SkillTo Assemble: Mech. Engi: 378 -> 450\n\n 3. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 378 -> 450\n\n 4. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 226 -> 270\n\n 5. Nano Pylon. SkillTo Assemble: Mech. Engi: 378 -> 450\n\n 6. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 302 -> 360\n\n 7. Long Composite Barrel. SkillTo Assemble: Weapon Smt: 604 -> 720\n\n 8. Hyper Carbo-Ceramic Cooling System. SkillTo Assemble: Weapon Smt: 604 -> 720\n\n 9. Plasma Streamer Interface Nozzle. SkillTo Assemble: Chemistry: 604 -> 720\n\n 10. Rapid-Reload-And-Fire Gyro. SkillTo Assemble: Weapon Smt: 604 -> 720\n\n 11. Compression Chamber for Chemicals. SkillTo Assemble: Weapon Smt: 642 -> 765\n\n 12. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 378 -> 450\n\n 13. Jandawit Cleanup Cluster. SkillTo Assemble: Weapon Smt: 528 -> 630" +} diff --git a/modules/standard/recipe/recipes/412.json b/modules/standard/recipe/recipes/412.json new file mode 100644 index 0000000..90a6cfd --- /dev/null +++ b/modules/standard/recipe/recipes/412.json @@ -0,0 +1,8 @@ +{ + "name": "Professional Michael Patriot Ffi 29A", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Professional Michael Patriot Ffi 29A'\nThe Construction kit. must be between Quality Level 61 and 80.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\nAdd the pieces in the following order:\n\n 1. Submachinegun Weapons Construction kit.\n\n 2. Flake Tubing Base Cooling System. . SkillTo Assemble: Weapon Smt: 244-320\n\n 3. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 122-160\n\n 4. Jandawit Cleanup Cluster. . SkillTo Assemble: Weapon Smt: 214-280\n\n 5. Ultra-Long Composite Barrel. . SkillTo Assemble: Weapon Smt: 259-340\n\n 6. Plasma Streamer Interface Nozzle. . SkillTo Assemble: Chemistry: 244-320\n\n 7. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 152-200\n\n 8. Nano Pylon. . SkillTo Assemble: Mech. Engi: 152-200\n\n 9. Explosion Propulsion Containment Chamber. . SkillTo Assemble: Mech. Engi: 214-280\n\n 10. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 92-120\n\n 11. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 152-200\n\n 12. Triple Pulse Enabler. . SkillTo Assemble: Weapon Smt: 259-340\n\n 13. Nano Pylon. . SkillTo Assemble: Mech. Engi: 152-200" +} diff --git a/modules/standard/recipe/recipes/413.json b/modules/standard/recipe/recipes/413.json new file mode 100644 index 0000000..ac27669 --- /dev/null +++ b/modules/standard/recipe/recipes/413.json @@ -0,0 +1,8 @@ +{ + "name": "Professional Michael Patriot Ffi 29B", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Professional Michael Patriot Ffi 29B'\nThe Construction kit. must be between Quality Level 161 and 199.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\nAdd the pieces in the following order:\n\n 1. Submachinegun Weapons Construction kit.\n\n 2. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 402-498\n\n 3. Nano Pylon. . SkillTo Assemble: Mech. Engi: 402-498\n\n 4. Jandawit Cleanup Cluster. . SkillTo Assemble: Weapon Smt: 564-696\n\n 5. Ultra-Long Composite Barrel. . SkillTo Assemble: Weapon Smt: 684-846\n\n 6. Flake Tubing Base Cooling System. . SkillTo Assemble: Weapon Smt: 644-796\n\n 7. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 402-498\n\n 8. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 242-298\n\n 9. Explosion Propulsion Containment Chamber. . SkillTo Assemble: Mech. Engi: 564-696\n\n 10. Nano Pylon. . SkillTo Assemble: Mech. Engi: 402-498\n\n 11. Plasma Streamer Interface Nozzle. . SkillTo Assemble: Chemistry: 644-796\n\n 12. Triple Pulse Enabler. . SkillTo Assemble: Weapon Smt: 684-846\n\n 13. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 322-398" +} diff --git a/modules/standard/recipe/recipes/414.json b/modules/standard/recipe/recipes/414.json new file mode 100644 index 0000000..f450a0d --- /dev/null +++ b/modules/standard/recipe/recipes/414.json @@ -0,0 +1,8 @@ +{ + "name": "Professional MTI Aleph 99", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Professional MTI Aleph 99'\nThe Construction kit. must be between Quality Level 101 and 150.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\nAdd the pieces in the following order:\n\n 1. Submachinegun Weapons Construction kit.\n\n 2. Nano Pylon. . SkillTo Assemble: Mech. Engi: 252-375\n\n 3. Triple Pulse Enabler. . SkillTo Assemble: Weapon Smt: 429-638\n\n 4. Ultra-Long Composite Barrel. . SkillTo Assemble: Weapon Smt: 429-638\n\n 5. Nano Pylon. . SkillTo Assemble: Mech. Engi: 252-375\n\n 6. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 252-375\n\n 7. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 202-300\n\n 8. Lock and Stock. . SkillTo Assemble: Weapon Smt: 404-600\n\n 9. Explosion Propulsion Containment Chamber. . SkillTo Assemble: Mech. Engi: 354-525\n\n 10. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 152-225\n\n 11. Stamina Cluster - Faded (Waist). . SkillTo Assemble: Nano Progra: 101-150" +} diff --git a/modules/standard/recipe/recipes/415.json b/modules/standard/recipe/recipes/415.json new file mode 100644 index 0000000..ca8f4c7 --- /dev/null +++ b/modules/standard/recipe/recipes/415.json @@ -0,0 +1,8 @@ +{ + "name": "Professional Notum Spear", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Professional Notum Spear'\nThe Construction kit. must be between Quality Level 161 and 199.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\nAdd the pieces in the following order:\n\n 1. Piercing Weapons Construction kit.\n\n 2. Energy Impact Super Conductor. . SkillTo Assemble: Elec. Engi: 644-796\n\n 3. Medium Handle. . SkillTo Assemble: Weapon Smt: 592-731\n\n 4. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 322-398\n\n 5. Notum Enriched Nano Paste - 4x Layer. . SkillTo Assemble: Nano Progra: 402-498\n\n 6. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 242-298\n\n 7. Optimized Co-Weapon Interface. . SkillTo Assemble: Comp. Liter: 483-597" +} diff --git a/modules/standard/recipe/recipes/416.json b/modules/standard/recipe/recipes/416.json new file mode 100644 index 0000000..25563af --- /dev/null +++ b/modules/standard/recipe/recipes/416.json @@ -0,0 +1,8 @@ +{ + "name": "Professional Notum Staff", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Professional Notum Staff'\nThe Construction kit. must be between Quality Level 161 and 199.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\nAdd the pieces in the following order:\n\n 1. Two Handed Blunt Weapons Construction kit.\n\n 2. 8x Layer Carbon-Notum Alloy Rod. . SkillTo Assemble: Weapon Smt: 765-945\n\n 3. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 322-398\n\n 4. Basic Co-Weapon Interface. . SkillTo Assemble: Comp. Liter: 362-448\n\n 5. Short Handle. . SkillTo Assemble: Weapon Smt: 564-696\n\n 6. 4x Layer Carbon-Notum Alloy Rod. . SkillTo Assemble: Weapon Smt: 724-896\n\n 7. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 242-298\n\n 8. Notum Enriched Nano Paste - 4x Layer. . SkillTo Assemble: Nano Progra: 402-498" +} diff --git a/modules/standard/recipe/recipes/417.json b/modules/standard/recipe/recipes/417.json new file mode 100644 index 0000000..96ef1b6 --- /dev/null +++ b/modules/standard/recipe/recipes/417.json @@ -0,0 +1,8 @@ +{ + "name": "Punk-Slicer X79 Nightspear Initiate", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Punk-Slicer X79 Nightspear Initiate'\nThe Construction kit. must be between Quality Level 70 and 92.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\nAdd the pieces in the following order:\n\n 1. Piercing Weapons Construction kit.\n\n 2. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 140-184\n\n 3. Sneak Atck Cluster - Faded (Eye). . SkillTo Assemble: Nano Progra: 70-92\n\n 4. Medium Handle. . SkillTo Assemble: Weapon Smt: 257-338\n\n 5. Max Health Cluster - Shiny (Chest). . SkillTo Assemble: Nano Progra: 210-276\n\n 6. Optimized Co-Weapon Interface. . SkillTo Assemble: Comp. Liter: 210-276\n\n 7. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 105-138\n\n 8. Notum Enriched Nano Paste - 4x Layer. . SkillTo Assemble: Nano Progra: 175-230" +} diff --git a/modules/standard/recipe/recipes/418.json b/modules/standard/recipe/recipes/418.json new file mode 100644 index 0000000..09cf3d6 --- /dev/null +++ b/modules/standard/recipe/recipes/418.json @@ -0,0 +1,8 @@ +{ + "name": "Quality Abigail", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Quality Abigail'\nThe Construction kit. must be between Quality Level 121 and 150.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\nAdd the pieces in the following order:\n\n 1. Rifle Weapons Construction kit.\n\n 2. Nano Pylon. . SkillTo Assemble: Mech. Engi: 302-375\n\n 3. Explosion Propulsion Containment Chamber. . SkillTo Assemble: Mech. Engi: 424-525\n\n 4. Self-Repairing Ultra-X. . SkillTo Assemble: Weapon Smt: 424-525\n\n 5. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 182-225\n\n 6. Short Composite Barrel. . SkillTo Assemble: Weapon Smt: 393-488\n\n 7. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 242-300\n\n 8. Nano-Interfaced Cooling System. . SkillTo Assemble: Weapon Smt: 484-600\n\n 9. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 302-375\n\n 10. Lock and Stock. . SkillTo Assemble: Weapon Smt: 484-600\n\n 11. Runtime Critical Area Analyzer. . SkillTo Assemble: Weapon Smt: 484-600" +} diff --git a/modules/standard/recipe/recipes/419.json b/modules/standard/recipe/recipes/419.json new file mode 100644 index 0000000..50cd2fe --- /dev/null +++ b/modules/standard/recipe/recipes/419.json @@ -0,0 +1,8 @@ +{ + "name": "Quality Amytlo Executioner", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Quality Amytlo Executioner'\nThe Construction kit. must be between Quality Level 81 and 120.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\nAdd the pieces in the following order:\n\n 1. One Handed Edged Weapons Construction kit.\n\n 2. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 162-240\n\n 3. Medium Handle. . SkillTo Assemble: Weapon Smt: 298-441\n\n 4. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 122-180\n\n 5. Optimized Co-Weapon Interface. . SkillTo Assemble: Comp. Liter: 243-360" +} diff --git a/modules/standard/recipe/recipes/42.json b/modules/standard/recipe/recipes/42.json new file mode 100644 index 0000000..35858a8 --- /dev/null +++ b/modules/standard/recipe/recipes/42.json @@ -0,0 +1,29 @@ +{ + "name": "Eye-Mutant Orb Laser", + "author": "", + "items": [ + { + "alias": "Eyemutant Eye", + "item_id": 204974 + }, + { + "alias": "Drum of Hydrochloric Acid", + "item_id": 156051 + }, + { + "alias": "Field Quantum Physics All-Purpose Tool", + "item_id": 164558 + }, + { + "alias": "Inactive Eyemutant Orb Laser", + "item_id": 204976 + }, + { + "alias": "Excellent Eyemutant Orb Laser", + "item_id": 204972 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients\n------------------------------\n\n#L \"Eyemutant Eye\" \"204974\"\n\n\n#L \"Drum of Hydrochloric Acid\" \"156051\"\n\n\n#L \"Field Quantum Physics All-Purpose Tool\" \"164558\"\n\n\n------------------------------\nRecipe\n------------------------------\n\nDrum of Hydrochloric Acid\n+\nEyemutant Eye\n=\n\n#L \"Inactive Eyemutant Orb Laser\" \"204976\"\nSkills: | CH |\n\n------------------------------\n\nField Quantum Physics All-Purpose Tool\n+\nInactive Eyemutant Orb Laser\n=\n\n#L \"Eyemutant Orb Laser\" \"204972\"\nSkills: | CH |\n\n------------------------------\nComments\n------------------------------\n\nAnother reason to kill those annoying eyemutants :)" +} diff --git a/modules/standard/recipe/recipes/420.json b/modules/standard/recipe/recipes/420.json new file mode 100644 index 0000000..e04f2db --- /dev/null +++ b/modules/standard/recipe/recipes/420.json @@ -0,0 +1,8 @@ +{ + "name": "Quality Blackened Blaster", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Quality Blackened Blaster'\nThe Construction kit. must be between Quality Level 101 and 120.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\nAdd the pieces in the following order:\n\n 1. Rifle Weapons Construction kit.\n\n 2. Nano Pylon. . SkillTo Assemble: Mech. Engi: 252-300\n\n 3. Hyper Carbo-Ceramic Cooling System. . SkillTo Assemble: Weapon Smt: 404-480\n\n 4. Self-Cleaning KO-CR Device. . SkillTo Assemble: Weapon Smt: 354-420\n\n 5. Energy Conduction Rack. . SkillTo Assemble: Quantum FT: 328-390\n\n 6. Rapid-Reload-And-Fire Gyro. . SkillTo Assemble: Weapon Smt: 404-480\n\n 7. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 252-300\n\n 8. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 202-240\n\n 9. Ultra-Long Composite Barrel. . SkillTo Assemble: Weapon Smt: 429-510\n\n 10. Energy Pack Interface. . SkillTo Assemble: Elec. Engi: 404-480\n\n 11. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 152-180\n\n 12. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 252-300\n\n 13. Nano Pylon. . SkillTo Assemble: Mech. Engi: 252-300" +} diff --git a/modules/standard/recipe/recipes/421.json b/modules/standard/recipe/recipes/421.json new file mode 100644 index 0000000..9eb407a --- /dev/null +++ b/modules/standard/recipe/recipes/421.json @@ -0,0 +1,8 @@ +{ + "name": "Quality Blackened Blaster Rifle", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Quality Blackened Blaster Rifle'\nThe Construction kit. must be between Quality Level 101 and 120.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\nAdd the pieces in the following order:\n\n 1. Rifle Weapons Construction kit.\n\n 2. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 152-180\n\n 3. Primitive Freon Bag Cooling System. . SkillTo Assemble: Weapon Smt: 404-480\n\n 4. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 252-300\n\n 5. Notum Enriched Nano Paste - 4x Layer. . SkillTo Assemble: Nano Progra: 252-300\n\n 6. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 202-240\n\n 7. Nano Pylon. . SkillTo Assemble: Mech. Engi: 252-300\n\n 8. Ultra-Long Composite Barrel. . SkillTo Assemble: Weapon Smt: 429-510\n\n 9. Lock and Stock. . SkillTo Assemble: Weapon Smt: 404-480\n\n 10. Energy Conduction Rack. . SkillTo Assemble: Quantum FT: 328-390\n\n 11. Rapid-Reload-And-Fire Gyro. . SkillTo Assemble: Weapon Smt: 404-480\n\n 12. Auto Targeting Computer -IIR 1. . SkillTo Assemble: Elec. Engi: 227-270\n\n 13. Jandawit Cleanup Cluster. . SkillTo Assemble: Weapon Smt: 354-420" +} diff --git a/modules/standard/recipe/recipes/422.json b/modules/standard/recipe/recipes/422.json new file mode 100644 index 0000000..cc8f19b --- /dev/null +++ b/modules/standard/recipe/recipes/422.json @@ -0,0 +1,8 @@ +{ + "name": "Quality Blackened Miniblaster", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Quality Blackened Miniblaster'\nThe Construction kit. must be between Quality Level 101 and 120.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\n Add in following order:\n\n 1. Pistol Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 404 -> 480\n\n 2. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 202 -> 240\n\n 3. Hyper Carbo-Ceramic Cooling System. SkillTo Assemble: Weapon Smt: 404 -> 480\n\n 4. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 252 -> 300\n\n 5. Energy Pack Interface. SkillTo Assemble: Elec. Engi: 404 -> 480\n\n 6. Nano Pylon. SkillTo Assemble: Mech. Engi: 252 -> 300\n\n 7. Rapid-Reload-And-Fire Gyro. SkillTo Assemble: Weapon Smt: 404 -> 480\n\n 8. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 152 -> 180\n\n 9. Jandawit Cleanup Cluster. SkillTo Assemble: Weapon Smt: 354 -> 420\n\n 10. Short Composite Barrel. SkillTo Assemble: Weapon Smt: 328 -> 390\n\n 11. Energy Conduction Rack. SkillTo Assemble: Quantum FT: 328 -> 390" +} diff --git a/modules/standard/recipe/recipes/423.json b/modules/standard/recipe/recipes/423.json new file mode 100644 index 0000000..664cdb8 --- /dev/null +++ b/modules/standard/recipe/recipes/423.json @@ -0,0 +1,8 @@ +{ + "name": "Quality Blackhole Mk IX", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Quality Blackhole Mk IX'\nThe Construction kit. must be between Quality Level 101 and 120.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\n Add in following order:\n\n 1. Shotgun Weapons Construction kit. SkillTo Assemble: Weapon Smt: 404 -> 480\n\n 2. Energy Conduction Rack. SkillTo Assemble: Quantum FT: 328 -> 390\n\n 3. Energy Pack Interface. SkillTo Assemble: Elec. Engi: 404 -> 480\n\n 4. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 252 -> 300\n\n 5. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 252 -> 300\n\n 6. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 202 -> 240\n\n 7. Nano Pylon. SkillTo Assemble: Mech. Engi: 252 -> 300\n\n 8. Notum Enriched Nano Paste - 4x Layer. SkillTo Assemble: Nano Progra: 252 -> 300\n\n 9. Ultra-Long Composite Barrel. SkillTo Assemble: Weapon Smt: 429 -> 510\n\n 10. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 152 -> 180\n\n 11. Nano Pylon. SkillTo Assemble: Mech. Engi: 252 -> 300\n\n 12. Rapid-Reload-And-Fire Gyro. SkillTo Assemble: Weapon Smt: 404 -> 480" +} diff --git a/modules/standard/recipe/recipes/424.json b/modules/standard/recipe/recipes/424.json new file mode 100644 index 0000000..89faef4 --- /dev/null +++ b/modules/standard/recipe/recipes/424.json @@ -0,0 +1,8 @@ +{ + "name": "Quality Chunkprojector", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Quality Chunkprojector'\nThe Construction kit. must be between Quality Level 101 and 120.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\n Add in following order:\n\n 1. Shotgun Weapons Construction kit. SkillTo Assemble: Weapon Smt: 404 -> 480\n\n 2. Nano Pylon. SkillTo Assemble: Mech. Engi: 252 -> 300\n\n 3. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 252 -> 300\n\n 4. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 202 -> 240\n\n 5. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 252 -> 300\n\n 6. Nano Pylon. SkillTo Assemble: Mech. Engi: 252 -> 300\n\n 7. Self-Cleaning KO-CR Device. SkillTo Assemble: Weapon Smt: 354 -> 420\n\n 8. Flake Tubing Base Cooling System. SkillTo Assemble: Weapon Smt: 404 -> 480\n\n 9. Lock and Stock. SkillTo Assemble: Weapon Smt: 404 -> 480\n\n 10. Short Composite Barrel. SkillTo Assemble: Weapon Smt: 328 -> 390\n\n 11. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 152 -> 180\n\n 12. Explosion Propulsion Containment Chamber. SkillTo Assemble: Quantum FT: 379 -> 450" +} diff --git a/modules/standard/recipe/recipes/425.json b/modules/standard/recipe/recipes/425.json new file mode 100644 index 0000000..3f6cced --- /dev/null +++ b/modules/standard/recipe/recipes/425.json @@ -0,0 +1,8 @@ +{ + "name": "Quality Disaffiliation Sniper", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Quality Disaffiliation Sniper'\nThe Construction kit. must be between Quality Level 101 and 120.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\nAdd the pieces in the following order:\n\n 1. Rifle Weapons Construction kit.\n\n 2. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 152-180\n\n 3. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 252-300\n\n 4. Nano Pylon. . SkillTo Assemble: Mech. Engi: 252-300\n\n 5. Nano Pylon. . SkillTo Assemble: Mech. Engi: 252-300\n\n 6. Auto Targeting Computer -IIR 2-Groper-. . SkillTo Assemble: Elec. Engi: 252-300\n\n 7. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 252-300\n\n 8. Ultra-Long Composite Barrel. . SkillTo Assemble: Weapon Smt: 429-510\n\n 9. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 202-240\n\n 10. Primitive Freon Bag Cooling System. . SkillTo Assemble: Weapon Smt: 404-480\n\n 11. Runtime Critical Area Analyzer. . SkillTo Assemble: Weapon Smt: 404-480\n\n 12. Lock and Stock. . SkillTo Assemble: Weapon Smt: 404-480\n\n 13. Explosion Propulsion Containment Chamber. . SkillTo Assemble: Mech. Engi: 354-420\n\n 14. Notum Enriched Nano Paste - 4x Layer. . SkillTo Assemble: Nano Progra: 252-300" +} diff --git a/modules/standard/recipe/recipes/426.json b/modules/standard/recipe/recipes/426.json new file mode 100644 index 0000000..a5e9cb9 --- /dev/null +++ b/modules/standard/recipe/recipes/426.json @@ -0,0 +1,8 @@ +{ + "name": "Quality E-Beamer", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Quality E-Beamer'\nThe Construction kit. must be between Quality Level 101 and 120.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\n Add in following order:\n\n 1. Energy Weapons Construction kit. SkillTo Assemble: Weapon Smt: 404 -> 480\n\n 2. Nano Pylon. SkillTo Assemble: Mech. Engi: 252 -> 300\n\n 3. Flake Tubing Base Cooling System. SkillTo Assemble: Weapon Smt: 404 -> 480\n\n 4. Notum Enriched Nano Paste - 4x Layer. SkillTo Assemble: Nano Progra: 252 -> 300\n\n 5. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 252 -> 300\n\n 6. Self-Cleaning KO-CR Device. SkillTo Assemble: Weapon Smt: 354 -> 420\n\n 7. Energy Conduction Rack. SkillTo Assemble: Quantum FT: 328 -> 390\n\n 8. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 252 -> 300\n\n 9. Nano Pylon. SkillTo Assemble: Mech. Engi: 252 -> 300\n\n 10. Rapid-Reload-And-Fire Gyro. SkillTo Assemble: Weapon Smt: 404 -> 480\n\n 11. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 152 -> 180\n\n 12. Energy Pack Interface. SkillTo Assemble: Elec. Engi: 404 -> 480\n\n 13. Short Composite Barrel. SkillTo Assemble: Weapon Smt: 328 -> 390\n\n 14. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 202 -> 240" +} diff --git a/modules/standard/recipe/recipes/427.json b/modules/standard/recipe/recipes/427.json new file mode 100644 index 0000000..0a8046e --- /dev/null +++ b/modules/standard/recipe/recipes/427.json @@ -0,0 +1,8 @@ +{ + "name": "Quality Electron-Charged Pistol", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Quality Electron-Charged Pistol'\nThe Construction kit. must be between Quality Level 101 and 120.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\n Add in following order:\n\n 1. Pistol Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 404 -> 480\n\n 2. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 152 -> 180\n\n 3. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 202 -> 240\n\n 4. Plasma Streamer Interface Nozzle. SkillTo Assemble: Chemistry: 404 -> 480\n\n 5. Rapid-Reload-And-Fire Gyro. SkillTo Assemble: Weapon Smt: 404 -> 480\n\n 6. Jandawit Cleanup Cluster. SkillTo Assemble: Weapon Smt: 354 -> 420\n\n 7. Energy Conduction Rack. SkillTo Assemble: Quantum FT: 328 -> 390\n\n 8. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 252 -> 300\n\n 9. Nano Pylon. SkillTo Assemble: Mech. Engi: 252 -> 300\n\n 10. Short Composite Barrel. SkillTo Assemble: Weapon Smt: 328 -> 390" +} diff --git a/modules/standard/recipe/recipes/428.json b/modules/standard/recipe/recipes/428.json new file mode 100644 index 0000000..03a5054 --- /dev/null +++ b/modules/standard/recipe/recipes/428.json @@ -0,0 +1,8 @@ +{ + "name": "Quality Flamethrower", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Quality Flamethrower'\nThe Construction kit. must be between Quality Level 101 and 120.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\n Add in following order:\n\n 1. AssaultRifle Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 404 -> 480\n\n 2. Primitive Freon Bag Cooling System. SkillTo Assemble: Weapon Smt: 404 -> 480\n\n 3. Nano Pylon. SkillTo Assemble: Mech. Engi: 252 -> 300\n\n 4. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 252 -> 300\n\n 5. Self-Cleaning KO-CR Device. SkillTo Assemble: Weapon Smt: 354 -> 420\n\n 6. Plasma Streamer Interface Nozzle. SkillTo Assemble: Chemistry: 404 -> 480\n\n 7. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 152 -> 180\n\n 8. Compression Chamber for Chemicals. SkillTo Assemble: Weapon Smt: 429 -> 510\n\n 9. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 202 -> 240\n\n 10. Short Composite Barrel. SkillTo Assemble: Weapon Smt: 328 -> 390\n\n 11. Nano Pylon. SkillTo Assemble: Mech. Engi: 252 -> 300\n\n 12. Auto Targeting Computer -IIR 1. SkillTo Assemble: Elec. Engi: 227 -> 270" +} diff --git a/modules/standard/recipe/recipes/429.json b/modules/standard/recipe/recipes/429.json new file mode 100644 index 0000000..7cf4d40 --- /dev/null +++ b/modules/standard/recipe/recipes/429.json @@ -0,0 +1,8 @@ +{ + "name": "Quality Grenade-Thrower", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Quality Grenade-Thrower'\nThe Construction kit. must be between Quality Level 101 and 120.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\n Add in following order:\n\n 1. Grenades Construction kit. SkillTo Assemble: Weapon Smt: 404 -> 480\n\n 2. Flake Tubing Base Cooling System. SkillTo Assemble: Weapon Smt: 404 -> 480\n\n 3. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 202 -> 240\n\n 4. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 152 -> 180\n\n 5. Nano Pylon. SkillTo Assemble: Mech. Engi: 252 -> 300\n\n 6. Poison Chemical Combination Chamber. SkillTo Assemble: Chemistry: 404 -> 480\n\n 7. Notum Enriched Nano Paste - 4x Layer. SkillTo Assemble: Nano Progra: 252 -> 300\n\n 8. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 252 -> 300\n\n 9. Ultra Short Composite Barrel. SkillTo Assemble: Weapon Smt: 303 -> 360" +} diff --git a/modules/standard/recipe/recipes/43.json b/modules/standard/recipe/recipes/43.json new file mode 100644 index 0000000..7dee7b2 --- /dev/null +++ b/modules/standard/recipe/recipes/43.json @@ -0,0 +1,65 @@ +{ + "name": "Eyemutant Sinew Armor", + "author": "", + "items": [ + { + "alias": "Short Eyemutant Sinews", + "item_id": 204767 + }, + { + "alias": "Long Eyemutant Sinews", + "item_id": 204769 + }, + { + "alias": "Eyemutant Sinews", + "item_id": 204768 + }, + { + "alias": "B.B.I. - Nano Enhanced B-12 Tanning Acid", + "item_id": 162247 + }, + { + "alias": "XXX-Plumbo Beer Can", + "item_id": 130607 + }, + { + "alias": "Small Patch of Soft Bronto Hide", + "item_id": 162234 + }, + { + "alias": "Patch of Soft Bronto Hide", + "item_id": 162230 + }, + { + "alias": "Patch of Hard Bronto Hide", + "item_id": 162228 + }, + { + "alias": "Patch of Soft Bronto Hide - Tanned", + "item_id": 162242 + }, + { + "alias": "Long Eyemutant Sinews - Preserved", + "item_id": 204772 + }, + { + "alias": "Eyemutant Sinew Sleeves - 1 Bundle", + "item_id": 204791 + }, + { + "alias": "Eyemutant Sinew Sleeves - 12 Bundles", + "item_id": 204802 + }, + { + "alias": "Eyemutant Sinew Boots - 12 Bundles", + "item_id": 204814 + }, + { + "alias": "Eyemutant Sinew Gloves - 12 Bundles", + "item_id": 204826 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients\n------------------------------\n\n#L \"Short\" \"204767\", #L \"Long\" \"204769\" or #L \"Eyemutant Sinews\" \"204768\"\n\n\n#L \"B.B.I. - Nano Enhanced B-12 Tanning Acid\" \"162247\"\n\n\n#L \"XXX-Plumbo Beer Can\" \"130607\"\n\n\n#L \"Small patch of soft bronto hide\" \"162234\", #L \"Patch of soft bronto hide\" \"162230\"\nor #L \"Patch of hard bronto hide\" \"162228\"\n\n\n------------------------------\nRecipe\n------------------------------\n\nExample: making of a sleeve\n\nB.B.I. - Nano Enhanced B-12 Tanning Acid\n+\nPatch of soft bronto hide\n=\n\n#L \"Patch of Soft Bronto Hide - Tanned\" \"162242\"\nSkills: | CH,AG |\n\n------------------------------\n\nXXX-Plumbo Beer Can\n+\nLong Eyemutant Sinews\n=\n\n#L \"Long Eyemutant Sinews - Preserved\" \"204772\"\nSkills: | ?? |\n\n------------------------------\n\nLong Eyemutant Sinews - Preserved\n+\nPatch of Hard Bronto Hide - Tanned\n=\n\n#L \"Eyemutant Sinew Sleeves - 1 Bundle\" \"204791\"\nSkills: | CH |\n\nYou can apply 11 other \"Long Eyemutant Sinews - Preserved\" on the piece of armor you made to increase its QL.\n\n------------------------------\nDetails\n------------------------------\n\n#L \"Patch of Soft Bronto Hide\" \"162230\", #L \"Long Eyemutant Sinews\" \"204769\"\n->\nEyemutant Sinew Sleeves\n( ie : #L \"Eyemutant Sinew Sleeves - 12 Bundles\" \"204802\" )\n\n#L \"Patch of Hard Bronto Hide\" \"162228\", #L \"Eyemutant Sinews\" \"204768\"\n->\nEyemutant Sinew Boots\n( ie : #L \"Eyemutant Sinew Boots - 12 Bundles\" \"204814\" )\n\n#L \"Small Patch of Soft Bronto Hide\" \"162234\", #L \"Short Eyemutant Sinews\" \"204767\"\n->\nEyemutant Sinew Gloves\n( ie : #L \"Eyemutant Sinew Gloves - 12 Bundles\" \"204826\" )\n\n------------------------------\nComments\n------------------------------\n\nEnforcer only. Interesting Cold and Fire damage bonuses !" +} diff --git a/modules/standard/recipe/recipes/430.json b/modules/standard/recipe/recipes/430.json new file mode 100644 index 0000000..f0cad22 --- /dev/null +++ b/modules/standard/recipe/recipes/430.json @@ -0,0 +1,8 @@ +{ + "name": "Quality Heavy Grinner", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Quality Heavy Grinner'\nThe Construction kit. must be between Quality Level 101 and 120.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\n Add in following order:\n\n 1. Pistol Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 404 -> 480\n\n 2. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 202 -> 240\n\n 3. Explosion Propulsion Containment Chamber. SkillTo Assemble: Mech. Engi: 354 -> 420\n\n 4. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 252 -> 300\n\n 5. Nano Pylon. SkillTo Assemble: Mech. Engi: 252 -> 300\n\n 6. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 152 -> 180\n\n 7. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 252 -> 300\n\n 8. Nano Pylon. SkillTo Assemble: Mech. Engi: 252 -> 300\n\n 9. Self-Cleaning KO-CR Device. SkillTo Assemble: Weapon Smt: 354 -> 420\n\n 10. Triple Pulse Enabler. SkillTo Assemble: Weapon Smt: 429 -> 510\n\n 11. Lock and Stock. SkillTo Assemble: Weapon Smt: 404 -> 480\n\n 12. Composite Barrel. SkillTo Assemble: Weapon Smt: 379 -> 450" +} diff --git a/modules/standard/recipe/recipes/431.json b/modules/standard/recipe/recipes/431.json new file mode 100644 index 0000000..074d9e3 --- /dev/null +++ b/modules/standard/recipe/recipes/431.json @@ -0,0 +1,8 @@ +{ + "name": "Quality Heavy Lead Sprayer", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Quality Heavy Lead Sprayer'\nThe Construction kit. must be between Quality Level 101 and 120.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\n Add in following order:\n\n 1. AssaultRifle Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 404 -> 480\n\n 2. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 202 -> 240\n\n 3. Lock and Stock. SkillTo Assemble: Weapon Smt: 404 -> 480\n\n 4. Jandawit Cleanup Cluster. SkillTo Assemble: Weapon Smt: 354 -> 420\n\n 5. Explosion Propulsion Containment Chamber. SkillTo Assemble: Mech. Engi: 354 -> 420\n\n 6. Gyro Stabilizing Unit. SkillTo Assemble: Weapon Smt: 454 -> 540\n\n 7. Triple Pulse Enabler. SkillTo Assemble: Weapon Smt: 429 -> 510\n\n 8. Nano Pylon. SkillTo Assemble: Mech. Engi: 252 -> 300\n\n 9. Composite Barrel. SkillTo Assemble: Weapon Smt: 379 -> 450\n\n 10. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 252 -> 300\n\n 11. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 152 -> 180" +} diff --git a/modules/standard/recipe/recipes/432.json b/modules/standard/recipe/recipes/432.json new file mode 100644 index 0000000..1048853 --- /dev/null +++ b/modules/standard/recipe/recipes/432.json @@ -0,0 +1,8 @@ +{ + "name": "Quality Kolt 58 Magnum", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Quality Kolt 58 Magnum'\nThe Construction kit. must be between Quality Level 101 and 120.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\n Add in following order:\n\n 1. Pistol Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 404 -> 480\n\n 2. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 252 -> 300\n\n 3. Lock and Stock. SkillTo Assemble: Weapon Smt: 404 -> 480\n\n 4. Nano Pylon. SkillTo Assemble: Mech. Engi: 252 -> 300\n\n 5. Hyper Carbo-Ceramic Cooling System. SkillTo Assemble: Weapon Smt: 404 -> 480\n\n 6. Nano Pylon. SkillTo Assemble: Mech. Engi: 252 -> 300\n\n 7. Rapid-Reload-And-Fire Gyro. SkillTo Assemble: Weapon Smt: 404 -> 480\n\n 8. Jandawit Cleanup Cluster. SkillTo Assemble: Weapon Smt: 354 -> 420\n\n 9. Explosion Propulsion Containment Chamber. SkillTo Assemble: Mech. Engi: 354 -> 420\n\n 10. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 252 -> 300\n\n 11. Composite Barrel. SkillTo Assemble: Weapon Smt: 379 -> 450\n\n 12. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 152 -> 180" +} diff --git a/modules/standard/recipe/recipes/433.json b/modules/standard/recipe/recipes/433.json new file mode 100644 index 0000000..e8e19c2 --- /dev/null +++ b/modules/standard/recipe/recipes/433.json @@ -0,0 +1,8 @@ +{ + "name": "Quality Kolt PDW-37", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Quality Kolt PDW-37'\nThe Construction kit. must be between Quality Level 101 and 120.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\n Add in following order:\n\n 1. Pistol Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 404 -> 480\n\n 2. Rapid-Reload-And-Fire Gyro. SkillTo Assemble: Weapon Smt: 404 -> 480\n\n 3. Hyper Carbo-Ceramic Cooling System. SkillTo Assemble: Weapon Smt: 404 -> 480\n\n 4. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 252 -> 300\n\n 5. Energy Pack Interface. SkillTo Assemble: Elec. Engi: 404 -> 480\n\n 6. Nano Pylon. SkillTo Assemble: Mech. Engi: 252 -> 300\n\n 7. Energy Conduction Rack. SkillTo Assemble: Quantum FT: 328 -> 390\n\n 8. Short Composite Barrel. SkillTo Assemble: Weapon Smt: 328 -> 390\n\n 9. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 202 -> 240\n\n 10. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 152 -> 180\n\n 11. Triple Pulse Enabler. SkillTo Assemble: Weapon Smt: 429 -> 510" +} diff --git a/modules/standard/recipe/recipes/434.json b/modules/standard/recipe/recipes/434.json new file mode 100644 index 0000000..3a76b48 --- /dev/null +++ b/modules/standard/recipe/recipes/434.json @@ -0,0 +1,8 @@ +{ + "name": "Quality Light Beamer Pistol", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Quality Light Beamer Pistol'\nThe Construction kit. must be between Quality Level 115 and 130.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\n Add in following order:\n\n 1. Pistol Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 460 -> 520\n\n 2. Self-Cleaning KO-CR Device. SkillTo Assemble: Weapon Smt: 402 -> 455\n\n 3. Hyper Carbo-Ceramic Cooling System. SkillTo Assemble: Weapon Smt: 460 -> 520\n\n 4. Energy Conduction Rack. SkillTo Assemble: Quantum FT: 374 -> 422\n\n 5. Short Composite Barrel. SkillTo Assemble: Weapon Smt: 374 -> 422\n\n 6. Plasma Streamer Interface Nozzle. SkillTo Assemble: Chemistry: 460 -> 520\n\n 7. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 288 -> 325\n\n 8. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 230 -> 260\n\n 9. Nano Pylon. SkillTo Assemble: Mech. Engi: 288 -> 325\n\n 10. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 172 -> 195" +} diff --git a/modules/standard/recipe/recipes/435.json b/modules/standard/recipe/recipes/435.json new file mode 100644 index 0000000..9989707 --- /dev/null +++ b/modules/standard/recipe/recipes/435.json @@ -0,0 +1,8 @@ +{ + "name": "Quality Luxembourg Inferno Rifle", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Quality Luxembourg Inferno Rifle'\nThe Construction kit. must be between Quality Level 121 and 150.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\n Add in following order:\n\n 1. Rifle Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 484 -> 600\n\n 2. Rapid-Reload-And-Fire Gyro. SkillTo Assemble: Weapon Smt: 484 -> 600\n\n 3. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 182 -> 225\n\n 4. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 302 -> 375\n\n 5. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 242 -> 300\n\n 6. Jandawit Cleanup Cluster. SkillTo Assemble: Weapon Smt: 424 -> 525\n\n 7. Plasma Streamer Interface Nozzle. SkillTo Assemble: Chemistry: 484 -> 600\n\n 8. Long Composite Barrel. SkillTo Assemble: Weapon Smt: 484 -> 600\n\n 9. Hyper Carbo-Ceramic Cooling System. SkillTo Assemble: Weapon Smt: 484 -> 600\n\n 10. Compression Chamber for Chemicals. SkillTo Assemble: Weapon Smt: 514 -> 638\n\n 11. Nano Pylon. SkillTo Assemble: Mech. Engi: 302 -> 375\n\n 12. Nano Pylon. SkillTo Assemble: Mech. Engi: 302 -> 375\n\n 13. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 302 -> 375" +} diff --git a/modules/standard/recipe/recipes/436.json b/modules/standard/recipe/recipes/436.json new file mode 100644 index 0000000..0af88ca --- /dev/null +++ b/modules/standard/recipe/recipes/436.json @@ -0,0 +1,8 @@ +{ + "name": "Quality Mausser Particle Streamer", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Quality Mausser Particle Streamer'\nThe Construction kit. must be between Quality Level 101 and 120.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\nAdd the pieces in the following order:\n\n 1. Submachinegun Weapons Construction kit.\n\n 2. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 202-240\n\n 3. Ultra-Long Composite Barrel. . SkillTo Assemble: Weapon Smt: 429-510\n\n 4. Nano Pylon. . SkillTo Assemble: Mech. Engi: 252-300\n\n 5. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 152-180\n\n 6. Triple Pulse Enabler. . SkillTo Assemble: Weapon Smt: 429-510\n\n 7. Explosion Propulsion Containment Chamber. . SkillTo Assemble: Mech. Engi: 354-420\n\n 8. Lock and Stock. . SkillTo Assemble: Weapon Smt: 404-480\n\n 9. Nano Pylon. . SkillTo Assemble: Mech. Engi: 252-300\n\n 10. Auto Targeting Computer -IIR 1. . SkillTo Assemble: Elec. Engi: 227-270\n\n 11. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 252-300\n\n 12. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 252-300" +} diff --git a/modules/standard/recipe/recipes/437.json b/modules/standard/recipe/recipes/437.json new file mode 100644 index 0000000..796180e --- /dev/null +++ b/modules/standard/recipe/recipes/437.json @@ -0,0 +1,8 @@ +{ + "name": "Quality Megajolt", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n\n 'Quality Megajolt'\n\nThe Construction kit. must be between Quality Level 101 and 120.\n\nAll other pieces must be of AT LEAST that level range... \n\nAdd them using shift+right-click.\n\n Add in following order:\n\n\n\n 1. Shotgun Weapons Construction kit. SkillTo Assemble: Weapon Smt: 404 -> 480\n\n\n\n 2. Auto Targeting Computer -IIR 2-Groper-. SkillTo Assemble: Elec. Engi: 252 -> 300\n\n\n\n 3. Composite Barrel. SkillTo Assemble: Weapon Smt: 379 -> 450\n\n\n\n 4. Primitive Freon Bag Cooling System. SkillTo Assemble: Weapon Smt: 404 -> 480\n\n\n\n 5. Energy Conduction Rack. SkillTo Assemble: Quantum FT: 328 -> 390\n\n\n\n 6. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 202 -> 240\n\n\n\n 7. Energy Pack Interface. SkillTo Assemble: Elec. Engi: 404 -> 480\n\n\n\n 8. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 252 -> 300\n\n\n\n 9. Nano Pylon. SkillTo Assemble: Mech. Engi: 252 -> 300\n\n\n\n 10. Nano Pylon. SkillTo Assemble: Mech. Engi: 252 -> 300\n\n\n\n 11. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 252 -> 300\n\n\n\n 12. Notum Enriched Nano Paste - 4x Layer. SkillTo Assemble: Nano Progra: 252 -> 300\n\n\n\n 13. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 152 -> 180" +} diff --git a/modules/standard/recipe/recipes/438.json b/modules/standard/recipe/recipes/438.json new file mode 100644 index 0000000..8a72ce3 --- /dev/null +++ b/modules/standard/recipe/recipes/438.json @@ -0,0 +1,8 @@ +{ + "name": "Quality Michael Patriot Ffi 29A", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Quality Michael Patriot Ffi 29A'\nThe Construction kit. must be between Quality Level 41 and 60.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\nAdd the pieces in the following order:\n\n 1. Submachinegun Weapons Construction kit.\n\n 2. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 102-150\n\n 3. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 102-150\n\n 4. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 82-120\n\n 5. Plasma Streamer Interface Nozzle. . SkillTo Assemble: Chemistry: 164-240\n\n 6. Ultra-Long Composite Barrel. . SkillTo Assemble: Weapon Smt: 174-255\n\n 7. Flake Tubing Base Cooling System. . SkillTo Assemble: Weapon Smt: 164-240\n\n 8. Nano Pylon. . SkillTo Assemble: Mech. Engi: 102-150\n\n 9. Explosion Propulsion Containment Chamber. . SkillTo Assemble: Mech. Engi: 144-210\n\n 10. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 62-90\n\n 11. Jandawit Cleanup Cluster. . SkillTo Assemble: Weapon Smt: 144-210\n\n 12. Nano Pylon. . SkillTo Assemble: Mech. Engi: 102-150\n\n 13. Triple Pulse Enabler. . SkillTo Assemble: Weapon Smt: 174-255" +} diff --git a/modules/standard/recipe/recipes/439.json b/modules/standard/recipe/recipes/439.json new file mode 100644 index 0000000..53ea47a --- /dev/null +++ b/modules/standard/recipe/recipes/439.json @@ -0,0 +1,8 @@ +{ + "name": "Quality Michael Patriot Ffi 29B", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Quality Michael Patriot Ffi 29B'\nThe Construction kit. must be between Quality Level 141 and 160.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\nAdd the pieces in the following order:\n\n 1. Submachinegun Weapons Construction kit.\n\n 2. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 282-320\n\n 3. Plasma Streamer Interface Nozzle. . SkillTo Assemble: Chemistry: 564-640\n\n 4. Ultra-Long Composite Barrel. . SkillTo Assemble: Weapon Smt: 599-680\n\n 5. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 352-400\n\n 6. Jandawit Cleanup Cluster. . SkillTo Assemble: Weapon Smt: 494-560\n\n 7. Nano Pylon. . SkillTo Assemble: Mech. Engi: 352-400\n\n 8. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 352-400\n\n 9. Nano Pylon. . SkillTo Assemble: Mech. Engi: 352-400\n\n 10. Explosion Propulsion Containment Chamber. . SkillTo Assemble: Mech. Engi: 494-560\n\n 11. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 212-240\n\n 12. Flake Tubing Base Cooling System. . SkillTo Assemble: Weapon Smt: 564-640\n\n 13. Triple Pulse Enabler. . SkillTo Assemble: Weapon Smt: 599-680" +} diff --git a/modules/standard/recipe/recipes/44.json b/modules/standard/recipe/recipes/44.json new file mode 100644 index 0000000..8b2712e --- /dev/null +++ b/modules/standard/recipe/recipes/44.json @@ -0,0 +1,17 @@ +{ + "name": "Making Implants", + "author": "", + "items": [ + { + "alias": "Multi Ranged Cluster - Faded (Eye)", + "item_id": 101562 + }, + { + "alias": "Basic Eye Implant", + "item_id": 101102 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nA bit of Theory\n------------------------------\n\nIn order to be efficient, The Basic Implant must be loaded with one or more Clusters. In fact, theses Basics Implants are only the support for the clusters which give the bonus. There's three kind of Clusters : Shining ones, Bright ones and finally Faded ones. Shining Clusters are the most powerful ones, Bright ones come second and Faded ones are the weakest, in theses proportions :\n\n Shining = Bright + Faded (to equal QL).\n Bright = 60% of Shining (to equal QL).\n Faded = 40% de Shining (to equal QL).\n\nEvery Basic Implant have three free slots. A free slot for every kind of Clusters. Each Cluster can be fitted in only one slot and on only one specific Basic implant.\n\nFor example:\n\nthe Cluster #L \"A Faded NanoCluster of Akimbo Style\" \"101562\" can only be fitted in the Faded slot of a \"Eye\" implant (#L \"A Basic Eye Implant\" \"101102\").\n\n------------------------------\nNow practical class\n------------------------------\n\nTo combine a Cluster with an Implant (Basic or not, assuming that the targeted slot is free) you just got to find someone with enough Nano-Programming skill. If you proceed yourself to the combination, you have to pick up the cluster and Shift+Right click on the Implant.\n\n------------------------------\nThings to know\n------------------------------\n\nYou can combine a Cluster of an higher QL than the Implant, but the Cluster cannot be too low otherwise you won't be able to combine them. (tolerance : 14% for a Faded, 16% for a Bright and 18% for a Shining).\n\nCombining a Cluster with an Implant may result in a slightly higher Implant.\n\nThe QL of the Clusters combined with an Implant of a given QL are lowered or upped to this QL.\n\nYou can find there a very useful software to help you designing your Implants: #L \"Nanonanny\" \"/start http://www.timezulu.com.au/NanoNanny/\".\n\nAll the Implants are requiring some skill in Treatement, as well as a Secondary Skill (a main attribute) dependingon the all clusters fitted in the Implant. According to this, it may be helpful to put a not so useful Cluster rather than another one, just to make this Secondary Skill deviate to a more higher main Attribute. Thus allowing you put higher QL of Implant.\n\nAnother way to solve this problem is using \"Implant Stepping\". This tactic has been modified some patches ago, now you must have your Implant Slot in the Wear panel already empty before putting a new Implant. This still allow to have a intermediary implant in one Slot upping a main Attribute as you put your final Implant in another Slot (ie : you are two point short in Psy to put your QL60 Head implant, so you use a Chest Implant QL10, with a Bright Psychic Cluster on, which give you +5 Psy). This process still request you to plan your Implant Scheme a bit more...\n\nFixers can remove Clusters from the the Implant, resulting in a Basic Implant of the same QL. Still, during the process, all the Clusters incorporated in the Implant are lost. (Done with the help of a #L \"Implant Disassembly Clinic\" \"/tell recipe 51\")" +} diff --git a/modules/standard/recipe/recipes/440.json b/modules/standard/recipe/recipes/440.json new file mode 100644 index 0000000..d0c3d1f --- /dev/null +++ b/modules/standard/recipe/recipes/440.json @@ -0,0 +1,8 @@ +{ + "name": "Quality Mini-Shotgun", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Quality Mini-Shotgun'\nThe Construction kit. must be between Quality Level 101 and 120.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\n Add in following order:\n\n 1. Shotgun Weapons Construction kit. SkillTo Assemble: Weapon Smt: 404 -> 480\n\n 2. Explosion Propulsion Containment Chamber. SkillTo Assemble: Quantum FT: 379 -> 450\n\n 3. Rapid-Reload-And-Fire Gyro. SkillTo Assemble: Weapon Smt: 404 -> 480\n\n 4. Lock and Stock. SkillTo Assemble: Weapon Smt: 404 -> 480\n\n 5. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 252 -> 300\n\n 6. Nano-Interfaced Cooling System. SkillTo Assemble: Weapon Smt: 404 -> 480\n\n 7. Short Composite Barrel. SkillTo Assemble: Weapon Smt: 328 -> 390\n\n 8. Nano Pylon. SkillTo Assemble: Mech. Engi: 252 -> 300\n\n 9. Nano Pylon. SkillTo Assemble: Mech. Engi: 252 -> 300\n\n 10. Self-Cleaning KO-CR Device. SkillTo Assemble: Weapon Smt: 354 -> 420\n\n 11. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 152 -> 180" +} diff --git a/modules/standard/recipe/recipes/441.json b/modules/standard/recipe/recipes/441.json new file mode 100644 index 0000000..fcc9ca7 --- /dev/null +++ b/modules/standard/recipe/recipes/441.json @@ -0,0 +1,8 @@ +{ + "name": "Quality Minigrinner", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Quality Minigrinner'\nThe Construction kit. must be between Quality Level 101 and 120.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\n Add in following order:\n\n 1. Pistol Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 404 -> 480\n\n 2. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 152 -> 180\n\n 3. Nano Pylon. SkillTo Assemble: Mech. Engi: 252 -> 300\n\n 4. Ultra Short Composite Barrel. SkillTo Assemble: Weapon Smt: 303 -> 360\n\n 5. Gyro Stabilizing Unit. SkillTo Assemble: Weapon Smt: 454 -> 540\n\n 6. Lock and Stock. SkillTo Assemble: Weapon Smt: 404 -> 480\n\n 7. Hyper Carbo-Ceramic Cooling System. SkillTo Assemble: Weapon Smt: 404 -> 480\n\n 8. Nano Pylon. SkillTo Assemble: Mech. Engi: 252 -> 300\n\n 9. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 252 -> 300\n\n 10. Explosion Propulsion Containment Chamber. SkillTo Assemble: Mech. Engi: 354 -> 420\n\n 11. Triple Pulse Enabler. SkillTo Assemble: Weapon Smt: 429 -> 510\n\n 12. Self-Cleaning KO-CR Device. SkillTo Assemble: Weapon Smt: 354 -> 420" +} diff --git a/modules/standard/recipe/recipes/442.json b/modules/standard/recipe/recipes/442.json new file mode 100644 index 0000000..1a73076 --- /dev/null +++ b/modules/standard/recipe/recipes/442.json @@ -0,0 +1,8 @@ +{ + "name": "Quality MTI Aleph 99", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Quality MTI Aleph 99'\nThe Construction kit. must be between Quality Level 81 and 100.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\nAdd the pieces in the following order:\n\n 1. Submachinegun Weapons Construction kit.\n\n 2. Ultra-Long Composite Barrel. . SkillTo Assemble: Weapon Smt: 344-425\n\n 3. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 122-150\n\n 4. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 202-250\n\n 5. Explosion Propulsion Containment Chamber. . SkillTo Assemble: Mech. Engi: 284-350\n\n 6. Nano Pylon. . SkillTo Assemble: Mech. Engi: 202-250\n\n 7. Lock and Stock. . SkillTo Assemble: Weapon Smt: 324-400\n\n 8. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 162-200\n\n 9. Nano Pylon. . SkillTo Assemble: Mech. Engi: 202-250\n\n 10. Stamina Cluster - Faded (Waist). . SkillTo Assemble: Nano Progra: 81-100\n\n 11. Triple Pulse Enabler. . SkillTo Assemble: Weapon Smt: 344-425" +} diff --git a/modules/standard/recipe/recipes/443.json b/modules/standard/recipe/recipes/443.json new file mode 100644 index 0000000..8c7f433 --- /dev/null +++ b/modules/standard/recipe/recipes/443.json @@ -0,0 +1,8 @@ +{ + "name": "Quality Notum Spear", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Quality Notum Spear'\nThe Construction kit. must be between Quality Level 101 and 120.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\nAdd the pieces in the following order:\n\n 1. Piercing Weapons Construction kit.\n\n 2. Notum Enriched Nano Paste - 4x Layer. . SkillTo Assemble: Nano Progra: 252-300\n\n 3. Medium Handle. . SkillTo Assemble: Weapon Smt: 371-441\n\n 4. Energy Impact Super Conductor. . SkillTo Assemble: Elec. Engi: 404-480\n\n 5. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 152-180\n\n 6. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 202-240\n\n 7. Optimized Co-Weapon Interface. . SkillTo Assemble: Comp. Liter: 303-360" +} diff --git a/modules/standard/recipe/recipes/444.json b/modules/standard/recipe/recipes/444.json new file mode 100644 index 0000000..65d5e38 --- /dev/null +++ b/modules/standard/recipe/recipes/444.json @@ -0,0 +1,8 @@ +{ + "name": "Quality Notum Staff", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Quality Notum Staff'\nThe Construction kit. must be between Quality Level 101 and 120.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\nAdd the pieces in the following order:\n\n 1. Two Handed Blunt Weapons Construction kit.\n\n 2. Short Handle. . SkillTo Assemble: Weapon Smt: 354-420\n\n 3. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 202-240\n\n 4. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 152-180\n\n 5. 4x Layer Carbon-Notum Alloy Rod. . SkillTo Assemble: Weapon Smt: 454-540\n\n 6. Notum Enriched Nano Paste - 4x Layer. . SkillTo Assemble: Nano Progra: 252-300\n\n 7. 8x Layer Carbon-Notum Alloy Rod. . SkillTo Assemble: Weapon Smt: 480-570\n\n 8. Basic Co-Weapon Interface. . SkillTo Assemble: Comp. Liter: 227-270" +} diff --git a/modules/standard/recipe/recipes/445.json b/modules/standard/recipe/recipes/445.json new file mode 100644 index 0000000..86f3533 --- /dev/null +++ b/modules/standard/recipe/recipes/445.json @@ -0,0 +1,8 @@ +{ + "name": "Quality Plasmaprojector", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Quality Plasmaprojector'\nThe Construction kit. must be between Quality Level 101 and 120.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\n Add in following order:\n\n 1. AssaultRifle Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 404 -> 480\n\n 2. Hyper Carbo-Ceramic Cooling System. SkillTo Assemble: Weapon Smt: 404 -> 480\n\n 3. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 202 -> 240\n\n 4. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 152 -> 180\n\n 5. Nano Pylon. SkillTo Assemble: Mech. Engi: 252 -> 300\n\n 6. Energy Conduction Rack. SkillTo Assemble: Quantum FT: 328 -> 390\n\n 7. Notum Enriched Nano Paste - 4x Layer. SkillTo Assemble: Nano Progra: 252 -> 300\n\n 8. Energy Pack Interface. SkillTo Assemble: Elec. Engi: 404 -> 480\n\n 9. Long Composite Barrel. SkillTo Assemble: Weapon Smt: 404 -> 480\n\n 10. Runtime Critical Area Analyzer. SkillTo Assemble: Weapon Smt: 404 -> 480" +} diff --git a/modules/standard/recipe/recipes/446.json b/modules/standard/recipe/recipes/446.json new file mode 100644 index 0000000..bb7743a --- /dev/null +++ b/modules/standard/recipe/recipes/446.json @@ -0,0 +1,8 @@ +{ + "name": "Quality Right Slice", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Quality Right Slice'\nThe Construction kit. must be between Quality Level 101 and 120.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\nAdd the pieces in the following order:\n\n 1. One Handed Edged Weapons Construction kit.\n\n 2. Short Handle. . SkillTo Assemble: Weapon Smt: 354-420\n\n 3. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 202-240\n\n 4. Optimized Co-Weapon Interface. . SkillTo Assemble: Comp. Liter: 303-360\n\n 5. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 152-180" +} diff --git a/modules/standard/recipe/recipes/447.json b/modules/standard/recipe/recipes/447.json new file mode 100644 index 0000000..30e04de --- /dev/null +++ b/modules/standard/recipe/recipes/447.json @@ -0,0 +1,8 @@ +{ + "name": "Quality Slank Chop", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Quality Slank Chop'\nThe Construction kit. must be between Quality Level 101 and 120.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\nAdd the pieces in the following order:\n\n 1. Piercing Weapons Construction kit.\n\n 2. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 202-240\n\n 3. 4x Layer Carbon-Notum Alloy Blade. . SkillTo Assemble: Weapon Smt: 303-360\n\n 4. Short Handle. . SkillTo Assemble: Weapon Smt: 354-420\n\n 5. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 152-180\n\n 6. Hyper-Optimized Co-Weapon Interface. . SkillTo Assemble: Comp. Liter: 404-480" +} diff --git a/modules/standard/recipe/recipes/448.json b/modules/standard/recipe/recipes/448.json new file mode 100644 index 0000000..911cd09 --- /dev/null +++ b/modules/standard/recipe/recipes/448.json @@ -0,0 +1,8 @@ +{ + "name": "Quality Sleekblaster", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Quality Sleekblaster'\nThe Construction kit. must be between Quality Level 101 and 120.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\n Add in following order:\n\n 1. Energy Weapons Construction kit. SkillTo Assemble: Weapon Smt: 404 -> 480\n\n 2. Hyper Carbo-Ceramic Cooling System. SkillTo Assemble: Weapon Smt: 404 -> 480\n\n 3. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 152 -> 180\n\n 4. Nano Pylon. SkillTo Assemble: Mech. Engi: 252 -> 300\n\n 5. Rapid-Reload-And-Fire Gyro. SkillTo Assemble: Weapon Smt: 404 -> 480\n\n 6. Jandawit Cleanup Cluster. SkillTo Assemble: Weapon Smt: 354 -> 420\n\n 7. Energy Conduction Rack. SkillTo Assemble: Quantum FT: 328 -> 390\n\n 8. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 202 -> 240\n\n 9. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 252 -> 300\n\n 10. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 252 -> 300\n\n 11. Energy Pack Interface. SkillTo Assemble: Elec. Engi: 404 -> 480\n\n 12. Composite Barrel. SkillTo Assemble: Weapon Smt: 379 -> 450\n\n 13. Nano Pylon. SkillTo Assemble: Mech. Engi: 252 -> 300" +} diff --git a/modules/standard/recipe/recipes/449.json b/modules/standard/recipe/recipes/449.json new file mode 100644 index 0000000..ebf361d --- /dev/null +++ b/modules/standard/recipe/recipes/449.json @@ -0,0 +1,8 @@ +{ + "name": "Quality Sleekblaster Major", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Quality Sleekblaster Major'\nThe Construction kit. must be between Quality Level 101 and 120.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\n Add in following order:\n\n 1. Energy Weapons Construction kit. SkillTo Assemble: Weapon Smt: 404 -> 480\n\n 2. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 252 -> 300\n\n 3. Rapid-Reload-And-Fire Gyro. SkillTo Assemble: Weapon Smt: 404 -> 480\n\n 4. Composite Barrel. SkillTo Assemble: Weapon Smt: 379 -> 450\n\n 5. Self-Cleaning KO-CR Device. SkillTo Assemble: Weapon Smt: 354 -> 420\n\n 6. Nano Pylon. SkillTo Assemble: Mech. Engi: 252 -> 300\n\n 7. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 152 -> 180\n\n 8. Energy Conduction Rack. SkillTo Assemble: Quantum FT: 328 -> 390\n\n 9. Flake Tubing Base Cooling System. SkillTo Assemble: Weapon Smt: 404 -> 480\n\n 10. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 252 -> 300\n\n 11. Energy Pack Interface. SkillTo Assemble: Elec. Engi: 404 -> 480\n\n 12. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 202 -> 240\n\n 13. Nano Pylon. SkillTo Assemble: Mech. Engi: 252 -> 300" +} diff --git a/modules/standard/recipe/recipes/45.json b/modules/standard/recipe/recipes/45.json new file mode 100644 index 0000000..cf2b4e5 --- /dev/null +++ b/modules/standard/recipe/recipes/45.json @@ -0,0 +1,61 @@ +{ + "name": "Building Nanoprograms", + "author": "", + "items": [ + { + "alias": "Instruction Disc (A Maker's Touch)", + "item_id": 147348 + }, + { + "alias": "Symbol Library - Medical", + "item_id": 149853 + }, + { + "alias": "Photon Particle Emitter", + "item_id": 149863 + }, + { + "alias": "Carbonrich Rock", + "item_id": 150273 + }, + { + "alias": "Jensen Personal Ore Extractor", + "item_id": 150276 + }, + { + "alias": "Isotope Separator", + "item_id": 149814 + }, + { + "alias": "Neutron Displacer", + "item_id": 149818 + }, + { + "alias": "Crystal Reflection Pattern - Medical", + "item_id": 149883 + }, + { + "alias": "Carbonrich Ore", + "item_id": 144767 + }, + { + "alias": "Pure Carbon Crystal", + "item_id": 144799 + }, + { + "alias": "Program Crystal", + "item_id": 144802 + }, + { + "alias": "Prepared Program Crystal - Medical", + "item_id": 149831 + }, + { + "alias": "Nano Crystal (A Maker's Touch)", + "item_id": 116804 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nForward\n------------------------------\n\nIn this recipe everything will be done by using:\n\n#L \"Instruction Disc (A Maker's Touch)\" \"147348\"\n\nas an example.\n\nTo build a Nanoprogram, you first need to make a Programmed Photon Particle Emitter. The construction of this item require different ingredients depending of the Instruction Disc. In fact, to make it you need a Symbol Library. To know which one you need, just read the description of the Instruction Disc. In our case, it'll be a #L \"Symbol Library - Medical\" \"144796\". As for the Crystal Reflection Pattern (Medical one in this case).\n\n------------------------------\nIngredients \n------------------------------\n\n#L \"Instruction Disc (A Maker's Touch)\" \"147348\"\n\n\n#L \"Symbol Library - Medical\" \"144796\"\n\n\n#L \"Photon Particle Emitter\" \"144788\"\n\n\n#L \"Carbonrich Rock\" \"150274\"\n\n\n#L \"Jensen Personal Ore Extractor\" \"150281\"\n\n\n#L \"Isotope Separator\" \"144785\"\n\n\n#L \"Neutron Displacer\" \"144784\"\n\n\n#L \"Crystal Reflection Pattern - Medical\" \"144778\"\n\n\n------------------------------\nRecipe \n------------------------------\n\nInstruction Disc (A Maker's Touch)\n+\nSymbol Library - Medical\n=\n\n#L \"Compiled Algorithm (A Maker's Touch)\" \"145848\"\nSkills: | NP,CL |\n\n------------------------------\n\nCompiled Algorithm (A Maker's Touch)\n+\nPhoton Particle Emitter\n=\n\n#L \"Programmed Photon Particle Emitter (A Maker's Touch)\" \"148848\"\nSkills: | NP |\n\n------------------------------\n\nCarbonrich Rock\n+\nJensen Personal Ore Extractor\n=\n\n#L \"Carbonrich Ore\" \"144770\"\nSkills: | NP,CL |\n\n------------------------------\n\nIsotope Separator\n+\nCarbonrich Ore\n=\n\n#L \"Pure Carbon Crystal\" \"144800\"\nSkills: | EE |\n\n------------------------------\n\nPure Carbon Crystal\n+\nNeutron Displacer\n=\n\n#L \"Program Crystal\" \"144801\"\nSkills: | ME,QT |\n\n------------------------------\n\nProgram Crystal\n+\nCrystal Reflection Pattern - Medical\n=\n\n#L \"Prepared Program Crystal - Medical\" \"144809\"\nSkills: | EE,QT |\n\n------------------------------\n\nProgrammed Photon Particle Emitter (A Maker's Touch)\n+\nPrepared Program Crystal - Medical\n=\n\n#L \"Nano Crystal (A Maker's Touch)\" \"116804\"\nSkills: | ME,NP |\n\n------------------------------\nComments\n------------------------------\n\nOnce you have all the tools (and the reqs...), it's very profitable to build Nanoprograms. Especially since the cost of all the parts have been greatly reduced since 14.4 Patch. Moreover some Nanoprograms are only available by making them from the Instruction Disc..." +} diff --git a/modules/standard/recipe/recipes/450.json b/modules/standard/recipe/recipes/450.json new file mode 100644 index 0000000..39a1807 --- /dev/null +++ b/modules/standard/recipe/recipes/450.json @@ -0,0 +1,8 @@ +{ + "name": "Quality Sleekblaster Minor", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Quality Sleekblaster Minor'\nThe Construction kit. must be between Quality Level 101 and 120.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\n Add in following order:\n\n 1. Energy Weapons Construction kit. SkillTo Assemble: Weapon Smt: 404 -> 480\n\n 2. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 202 -> 240\n\n 3. Flake Tubing Base Cooling System. SkillTo Assemble: Weapon Smt: 404 -> 480\n\n 4. Jandawit Cleanup Cluster. SkillTo Assemble: Weapon Smt: 354 -> 420\n\n 5. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 152 -> 180\n\n 6. Energy Conduction Rack. SkillTo Assemble: Quantum FT: 328 -> 390\n\n 7. Rapid-Reload-And-Fire Gyro. SkillTo Assemble: Weapon Smt: 404 -> 480\n\n 8. Short Composite Barrel. SkillTo Assemble: Weapon Smt: 328 -> 390\n\n 9. Energy Pack Interface. SkillTo Assemble: Elec. Engi: 404 -> 480\n\n 10. Nano Pylon. SkillTo Assemble: Mech. Engi: 252 -> 300" +} diff --git a/modules/standard/recipe/recipes/451.json b/modules/standard/recipe/recipes/451.json new file mode 100644 index 0000000..baee108 --- /dev/null +++ b/modules/standard/recipe/recipes/451.json @@ -0,0 +1,8 @@ +{ + "name": "Quality Subturbine", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Quality Subturbine'\nThe Construction kit. must be between Quality Level 101 and 120.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\n Add in following order:\n\n 1. AssaultRifle Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 404 -> 480\n\n 2. Lock and Stock. SkillTo Assemble: Weapon Smt: 404 -> 480\n\n 3. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 252 -> 300\n\n 4. Notum Enriched Nano Paste - 4x Layer. SkillTo Assemble: Nano Progra: 252 -> 300\n\n 5. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 202 -> 240\n\n 6. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 252 -> 300\n\n 7. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 152 -> 180\n\n 8. Hyper Carbo-Ceramic Cooling System. SkillTo Assemble: Weapon Smt: 404 -> 480\n\n 9. Gyro Stabilizing Unit. SkillTo Assemble: Weapon Smt: 454 -> 540\n\n 10. Triple Pulse Enabler. SkillTo Assemble: Weapon Smt: 429 -> 510\n\n 11. Nano Pylon. SkillTo Assemble: Mech. Engi: 252 -> 300\n\n 12. Nano Pylon. SkillTo Assemble: Mech. Engi: 252 -> 300\n\n 13. Explosion Propulsion Containment Chamber. SkillTo Assemble: Mech. Engi: 354 -> 420\n\n 14. Self-Cleaning KO-CR Device. SkillTo Assemble: Weapon Smt: 354 -> 420\n\n 15. Short Composite Barrel. SkillTo Assemble: Weapon Smt: 328 -> 390" +} diff --git a/modules/standard/recipe/recipes/452.json b/modules/standard/recipe/recipes/452.json new file mode 100644 index 0000000..2b4daca --- /dev/null +++ b/modules/standard/recipe/recipes/452.json @@ -0,0 +1,8 @@ +{ + "name": "Quality Supernova Mk VI", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Quality Supernova Mk VI'\nThe Construction kit. must be between Quality Level 101 and 120.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\nAdd the pieces in the following order:\n\n 1. Energy Weapons Construction kit.\n\n 2. Nano Pylon. . SkillTo Assemble: Mech. Engi: 252-300\n\n 3. Ultra-Long Composite Barrel. . SkillTo Assemble: Weapon Smt: 429-510\n\n 4. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 252-300\n\n 5. Energy Pack Interface. . SkillTo Assemble: Elec. Engi: 404-480\n\n 6. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 252-300\n\n 7. Runtime Critical Area Analyzer. . SkillTo Assemble: Weapon Smt: 404-480\n\n 8. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 152-180\n\n 9. Auto Targeting Computer -IIR 4 -Ultra-. . SkillTo Assemble: Elec. Engi: 303-360\n\n 10. Nano Pylon. . SkillTo Assemble: Mech. Engi: 252-300\n\n 11. Energy Conduction Rack. . SkillTo Assemble: Quantum FT: 328-390\n\n 12. Auto Targeting C. -IIR 5 -Powermolder-. . SkillTo Assemble: Elec. Engi: 328-390" +} diff --git a/modules/standard/recipe/recipes/453.json b/modules/standard/recipe/recipes/453.json new file mode 100644 index 0000000..dd4a415 --- /dev/null +++ b/modules/standard/recipe/recipes/453.json @@ -0,0 +1,8 @@ +{ + "name": "Quality Suppressor", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Quality Suppressor'\nThe Construction kit. must be between Quality Level 101 and 120.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\nAdd the pieces in the following order:\n\n 1. Submachinegun Weapons Construction kit.\n\n 2. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 252-300\n\n 3. Gyro Stabilizing Unit. . SkillTo Assemble: Weapon Smt: 454-540\n\n 4. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 252-300\n\n 5. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 152-180\n\n 6. Explosion Propulsion Containment Chamber. . SkillTo Assemble: Mech. Engi: 354-420\n\n 7. Lock and Stock. . SkillTo Assemble: Weapon Smt: 404-480\n\n 8. Triple Pulse Enabler. . SkillTo Assemble: Weapon Smt: 429-510\n\n 9. Ultra-Long Composite Barrel. . SkillTo Assemble: Weapon Smt: 429-510\n\n 10. Nano Pylon. . SkillTo Assemble: Mech. Engi: 252-300\n\n 11. Nano Pylon. . SkillTo Assemble: Mech. Engi: 252-300" +} diff --git a/modules/standard/recipe/recipes/454.json b/modules/standard/recipe/recipes/454.json new file mode 100644 index 0000000..65bbdfc --- /dev/null +++ b/modules/standard/recipe/recipes/454.json @@ -0,0 +1,8 @@ +{ + "name": "Quality Triplejolt", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Quality Triplejolt'\nThe Construction kit. must be between Quality Level 101 and 120.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\n Add in following order:\n\n 1. Shotgun Weapons Construction kit. SkillTo Assemble: Weapon Smt: 404 -> 480\n\n 2. Jandawit Cleanup Cluster. SkillTo Assemble: Weapon Smt: 354 -> 420\n\n 3. Radioactive Isotope Fusion System. SkillTo Assemble: Quantum FT: 404 -> 480\n\n 4. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 202 -> 240\n\n 5. Nano Pylon. SkillTo Assemble: Mech. Engi: 252 -> 300\n\n 6. Energy Conduction Rack. SkillTo Assemble: Quantum FT: 328 -> 390\n\n 7. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 152 -> 180\n\n 8. Rapid-Reload-And-Fire Gyro. SkillTo Assemble: Weapon Smt: 404 -> 480\n\n 9. Nano Pylon. SkillTo Assemble: Mech. Engi: 252 -> 300\n\n 10. Hyper Carbo-Ceramic Cooling System. SkillTo Assemble: Weapon Smt: 404 -> 480\n\n 11. Ultra Short Composite Barrel. SkillTo Assemble: Weapon Smt: 303 -> 360\n\n 12. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 252 -> 300" +} diff --git a/modules/standard/recipe/recipes/455.json b/modules/standard/recipe/recipes/455.json new file mode 100644 index 0000000..e62b020 --- /dev/null +++ b/modules/standard/recipe/recipes/455.json @@ -0,0 +1,8 @@ +{ + "name": "Quality Whings", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Quality Whings'\nThe Construction kit. must be between Quality Level 101 and 120.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\n Add in following order:\n\n 1. Two Handed Edged Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 404 -> 480\n\n 2. 8x Layer Carbon-Notum Alloy Blade. SkillTo Assemble: Weapon Smt: 354 -> 420\n\n 3. Long Handle. SkillTo Assemble: Weapon Smt: 379 -> 450\n\n 4. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 202 -> 240\n\n 5. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 152 -> 180\n\n 6. Optimized Co-Weapon Interface. SkillTo Assemble: Comp. Liter: 303 -> 360\n\n 7. Notum Enriched Nano Paste - 4x Layer. SkillTo Assemble: Nano Progra: 252 -> 300\n\n 8. 4x Layer Carbon-Notum Alloy Blade. SkillTo Assemble: Weapon Smt: 303 -> 360" +} diff --git a/modules/standard/recipe/recipes/456.json b/modules/standard/recipe/recipes/456.json new file mode 100644 index 0000000..0577f69 --- /dev/null +++ b/modules/standard/recipe/recipes/456.json @@ -0,0 +1,8 @@ +{ + "name": "Ramen and Devis - Mathis Multi-Energy Rifle", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Ramen and Devis - Mathis Multi-Energy Rifle'\nThe Construction kit. must be between Quality Level 21 and 40.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\nAdd the pieces in the following order:\n\n 1. Rifle Weapons Construction kit.\n\n 2. Hyper Carbo-Ceramic Cooling System. . SkillTo Assemble: Weapon Smt: 84-160\n\n 3. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 52-100\n\n 4. Nano Pylon. . SkillTo Assemble: Mech. Engi: 52-100\n\n 5. Ultra-Long Composite Barrel. . SkillTo Assemble: Weapon Smt: 89-170\n\n 6. Energy Conduction Rack. . SkillTo Assemble: Quantum FT: 68-130\n\n 7. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 32-60\n\n 8. Nano Pylon. . SkillTo Assemble: Mech. Engi: 52-100\n\n 9. Energy Pack Interface. . SkillTo Assemble: Elec. Engi: 84-160\n\n 10. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 42-80\n\n 11. Runtime Critical Area Analyzer. . SkillTo Assemble: Weapon Smt: 84-160" +} diff --git a/modules/standard/recipe/recipes/457.json b/modules/standard/recipe/recipes/457.json new file mode 100644 index 0000000..632796f --- /dev/null +++ b/modules/standard/recipe/recipes/457.json @@ -0,0 +1,8 @@ +{ + "name": "Refitted Polearm", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Refitted Polearm'\nThe Construction kit. must be between Quality Level 1 and 23.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\nAdd the pieces in the following order:\n\n 1. Two Handed Edged Weapons Construction kit.\n\n 2. Optimized Co-Weapon Interface. . SkillTo Assemble: Comp. Liter: 3-69\n\n 3. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 2-46\n\n 4. 8x Layer Carbon-Notum Alloy Blade. . SkillTo Assemble: Weapon Smt: 4-80\n\n 5. Medium Handle. . SkillTo Assemble: Weapon Smt: 4-85\n\n 6. 4x Layer Carbon-Notum Alloy Blade. . SkillTo Assemble: Weapon Smt: 3-69\n\n 7. Notum Enriched Nano Paste - 4x Layer. . SkillTo Assemble: Nano Progra: 2-58\n\n 8. 2h Edged Cluster - Faded (Waist). . SkillTo Assemble: Nano Progra: 1-23\n\n 9. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 2-34" +} diff --git a/modules/standard/recipe/recipes/458.json b/modules/standard/recipe/recipes/458.json new file mode 100644 index 0000000..8107e18 --- /dev/null +++ b/modules/standard/recipe/recipes/458.json @@ -0,0 +1,8 @@ +{ + "name": "Rick Bolter 42mm", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Rick Bolter 42mm'\nThe Construction kit. must be between Quality Level 47 and 69.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\nAdd the pieces in the following order:\n\n 1. AssaultRifle Weapons Construction kit.\n\n 2. Short Composite Barrel. . SkillTo Assemble: Weapon Smt: 153-224\n\n 3. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 118-172\n\n 4. Triple Pulse Enabler. . SkillTo Assemble: Weapon Smt: 200-293\n\n 5. Auto Targeting Computer -IIR 1. . SkillTo Assemble: Elec. Engi: 106-155\n\n 6. Primitive Freon Bag Cooling System. . SkillTo Assemble: Weapon Smt: 188-276\n\n 7. Gyro Stabilizing Unit. . SkillTo Assemble: Weapon Smt: 212-310\n\n 8. Nano Pylon. . SkillTo Assemble: Mech. Engi: 118-172\n\n 9. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 70-104\n\n 10. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 118-172\n\n 11. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 94-138\n\n 12. Nano Pylon. . SkillTo Assemble: Mech. Engi: 118-172\n\n 13. Explosion Propulsion Containment Chamber. . SkillTo Assemble: Mech. Engi: 164-242\n\n 14. Lock and Stock. . SkillTo Assemble: Weapon Smt: 188-276" +} diff --git a/modules/standard/recipe/recipes/459.json b/modules/standard/recipe/recipes/459.json new file mode 100644 index 0000000..1cfdfb6 --- /dev/null +++ b/modules/standard/recipe/recipes/459.json @@ -0,0 +1,8 @@ +{ + "name": "Rick Bolter 45mm", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Rick Bolter 45mm'\nThe Construction kit. must be between Quality Level 70 and 92.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\nAdd the pieces in the following order:\n\n 1. AssaultRifle Weapons Construction kit.\n\n 2. Explosion Propulsion Containment Chamber. . SkillTo Assemble: Mech. Engi: 245-322\n\n 3. Short Composite Barrel. . SkillTo Assemble: Weapon Smt: 228-299\n\n 4. Nano Pylon. . SkillTo Assemble: Mech. Engi: 175-230\n\n 5. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 175-230\n\n 6. Gyro Stabilizing Unit. . SkillTo Assemble: Weapon Smt: 315-414\n\n 7. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 140-184\n\n 8. Primitive Freon Bag Cooling System. . SkillTo Assemble: Weapon Smt: 280-368\n\n 9. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 105-138\n\n 10. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 175-230\n\n 11. Auto Targeting Computer -IIR 1. . SkillTo Assemble: Elec. Engi: 158-207\n\n 12. Nano Pylon. . SkillTo Assemble: Mech. Engi: 175-230\n\n 13. Lock and Stock. . SkillTo Assemble: Weapon Smt: 280-368\n\n 14. Triple Pulse Enabler. . SkillTo Assemble: Weapon Smt: 298-391" +} diff --git a/modules/standard/recipe/recipes/46.json b/modules/standard/recipe/recipes/46.json new file mode 100644 index 0000000..68800bb --- /dev/null +++ b/modules/standard/recipe/recipes/46.json @@ -0,0 +1,25 @@ +{ + "name": "Thick Flesh Hood", + "author": "", + "items": [ + { + "alias": "Monster Parts", + "item_id": 42641 + }, + { + "alias": "Superior Mass Relocating Robot", + "item_id": 155591 + }, + { + "alias": "Mass Relocating Robot (Shape Soft Armor)", + "item_id": 162220 + }, + { + "alias": "Soft Flesh Hood", + "item_id": 163217 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients \n------------------------------\n\n#L \"Monster Parts\" \"42640\"\n\n\n#L \"Programmed Photon Particle Emitter (Shape Soft Armor)\" \"162222\"\n\n\n#L \"Mass Relocating Robot\" \"155591\"\n\n\n------------------------------\nRecipe \n------------------------------\n\nProgrammed Photon Particle Emitter (Shape Soft Armor)\n+\nMass Relocating Robot\n=\n\n#L \"Mass Relocating Robot (Shape Soft Armor)\" \"162220\"\nSkills: | 2.5EE,2.5ME,2.5NP |\n\n------------------------------\n\nMass Relocating Robot (Shape Soft Armor)\n+\nMonster Parts\n=\n\n#L \"Thick Flesh Hood\" \"163217\"\nSkills: | ME,INT |\n\n------------------------------\nComments\n------------------------------\n\nNo AC holes :)" +} diff --git a/modules/standard/recipe/recipes/460.json b/modules/standard/recipe/recipes/460.json new file mode 100644 index 0000000..d71fa14 --- /dev/null +++ b/modules/standard/recipe/recipes/460.json @@ -0,0 +1,8 @@ +{ + "name": "Rusty Bolter 42mm", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Rusty Bolter 42mm'\nThe Construction kit. must be between Quality Level 24 and 46.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\nAdd the pieces in the following order:\n\n 1. AssaultRifle Weapons Construction kit.\n\n 2. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 60-115\n\n 3. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 48-92\n\n 4. Nano Pylon. . SkillTo Assemble: Mech. Engi: 60-115\n\n 5. Explosion Propulsion Containment Chamber. . SkillTo Assemble: Mech. Engi: 84-161\n\n 6. Lock and Stock. . SkillTo Assemble: Weapon Smt: 96-184\n\n 7. Short Composite Barrel. . SkillTo Assemble: Weapon Smt: 78-150\n\n 8. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 60-115\n\n 9. Triple Pulse Enabler. . SkillTo Assemble: Weapon Smt: 102-196\n\n 10. Auto Targeting Computer -IIR 1. . SkillTo Assemble: Elec. Engi: 54-104\n\n 11. Primitive Freon Bag Cooling System. . SkillTo Assemble: Weapon Smt: 96-184\n\n 12. Gyro Stabilizing Unit. . SkillTo Assemble: Weapon Smt: 108-207\n\n 13. Nano Pylon. . SkillTo Assemble: Mech. Engi: 60-115\n\n 14. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 36-69" +} diff --git a/modules/standard/recipe/recipes/461.json b/modules/standard/recipe/recipes/461.json new file mode 100644 index 0000000..9ce9445 --- /dev/null +++ b/modules/standard/recipe/recipes/461.json @@ -0,0 +1,8 @@ +{ + "name": "Rusty Nomad 21.7 BMG Ranger", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Rusty Nomad 21.7 BMG Ranger'\nThe Construction kit. must be between Quality Level 1 and 20.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\nAdd the pieces in the following order:\n\n 1. Rifle Weapons Construction kit.\n\n 2. Nano Pylon. . SkillTo Assemble: Mech. Engi: 2-50\n\n 3. Ultra-Long Composite Barrel. . SkillTo Assemble: Weapon Smt: 4-85\n\n 4. Explosion Propulsion Containment Chamber. . SkillTo Assemble: Mech. Engi: 4-70\n\n 5. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 2-40\n\n 6. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 2-30\n\n 7. Notum Enriched Nano Paste - 4x Layer. . SkillTo Assemble: Nano Progra: 2-50\n\n 8. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 2-50\n\n 9. Runtime Critical Area Analyzer. . SkillTo Assemble: Weapon Smt: 4-80\n\n 10. Nano Pylon. . SkillTo Assemble: Mech. Engi: 2-50\n\n 11. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 2-50\n\n 12. Self-Cleaning KO-CR Device. . SkillTo Assemble: Weapon Smt: 4-70\n\n 13. Lock and Stock. . SkillTo Assemble: Weapon Smt: 4-80" +} diff --git a/modules/standard/recipe/recipes/462.json b/modules/standard/recipe/recipes/462.json new file mode 100644 index 0000000..99e81ad --- /dev/null +++ b/modules/standard/recipe/recipes/462.json @@ -0,0 +1,8 @@ +{ + "name": "Rusty Tripler", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Rusty Tripler'\nThe Construction kit. must be between Quality Level 24 and 46.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\nAdd the pieces in the following order:\n\n 1. One Handed Edged Weapons Construction kit.\n\n 2. Short Handle. . SkillTo Assemble: Weapon Smt: 84-161\n\n 3. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 36-69\n\n 4. Optimized Co-Weapon Interface. . SkillTo Assemble: Comp. Liter: 72-138" +} diff --git a/modules/standard/recipe/recipes/463.json b/modules/standard/recipe/recipes/463.json new file mode 100644 index 0000000..3cf54ec --- /dev/null +++ b/modules/standard/recipe/recipes/463.json @@ -0,0 +1,8 @@ +{ + "name": "Scoped Nomad 21.7 BMG Ranger", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Scoped Nomad 21.7 BMG Ranger'\nThe Construction kit. must be between Quality Level 80 and 80.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\nAdd the pieces in the following order:\n\n 1. Rifle Weapons Construction kit.\n\n 2. Lock and Stock. . SkillTo Assemble: Weapon Smt: 320-320\n\n 3. Notum Enriched Nano Paste - 4x Layer. . SkillTo Assemble: Nano Progra: 200-200\n\n 4. Aimed Shot Cluster - Bright (Right-Wrist). . SkillTo Assemble: Nano Progra: 160-160\n\n 5. Nano Pylon. . SkillTo Assemble: Mech. Engi: 200-200\n\n 6. Ultra-Long Composite Barrel. . SkillTo Assemble: Weapon Smt: 340-340\n\n 7. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 160-160\n\n 8. Self-Cleaning KO-CR Device. . SkillTo Assemble: Weapon Smt: 280-280\n\n 9. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 200-200\n\n 10. Runtime Critical Area Analyzer. . SkillTo Assemble: Weapon Smt: 320-320\n\n 11. Nano Pylon. . SkillTo Assemble: Mech. Engi: 200-200\n\n 12. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 200-200\n\n 13. Explosion Propulsion Containment Chamber. . SkillTo Assemble: Mech. Engi: 280-280\n\n 14. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 120-120" +} diff --git a/modules/standard/recipe/recipes/464.json b/modules/standard/recipe/recipes/464.json new file mode 100644 index 0000000..ef4208e --- /dev/null +++ b/modules/standard/recipe/recipes/464.json @@ -0,0 +1,8 @@ +{ + "name": "Second-Hand Blackened Blaster", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Second-Hand Blackened Blaster'\nThe Construction kit. must be between Quality Level 61 and 80.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\nAdd the pieces in the following order:\n\n 1. Rifle Weapons Construction kit.\n\n 2. Hyper Carbo-Ceramic Cooling System. . SkillTo Assemble: Weapon Smt: 244-320\n\n 3. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 152-200\n\n 4. Energy Pack Interface. . SkillTo Assemble: Elec. Engi: 244-320\n\n 5. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 92-120\n\n 6. Nano Pylon. . SkillTo Assemble: Mech. Engi: 152-200\n\n 7. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 152-200\n\n 8. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 122-160\n\n 9. Self-Cleaning KO-CR Device. . SkillTo Assemble: Weapon Smt: 214-280\n\n 10. Nano Pylon. . SkillTo Assemble: Mech. Engi: 152-200\n\n 11. Ultra-Long Composite Barrel. . SkillTo Assemble: Weapon Smt: 259-340\n\n 12. Energy Conduction Rack. . SkillTo Assemble: Quantum FT: 198-260\n\n 13. Rapid-Reload-And-Fire Gyro. . SkillTo Assemble: Weapon Smt: 244-320" +} diff --git a/modules/standard/recipe/recipes/465.json b/modules/standard/recipe/recipes/465.json new file mode 100644 index 0000000..9a719d6 --- /dev/null +++ b/modules/standard/recipe/recipes/465.json @@ -0,0 +1,8 @@ +{ + "name": "Second-Hand Blackened Blaster Rifle", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Second-Hand Blackened Blaster Rifle'\nThe Construction kit. must be between Quality Level 61 and 80.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\nAdd the pieces in the following order:\n\n 1. Rifle Weapons Construction kit.\n\n 2. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 122-160\n\n 3. Primitive Freon Bag Cooling System. . SkillTo Assemble: Weapon Smt: 244-320\n\n 4. Lock and Stock. . SkillTo Assemble: Weapon Smt: 244-320\n\n 5. Notum Enriched Nano Paste - 4x Layer. . SkillTo Assemble: Nano Progra: 152-200\n\n 6. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 92-120\n\n 7. Nano Pylon. . SkillTo Assemble: Mech. Engi: 152-200\n\n 8. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 152-200\n\n 9. Ultra-Long Composite Barrel. . SkillTo Assemble: Weapon Smt: 259-340\n\n 10. Jandawit Cleanup Cluster. . SkillTo Assemble: Weapon Smt: 214-280\n\n 11. Rapid-Reload-And-Fire Gyro. . SkillTo Assemble: Weapon Smt: 244-320\n\n 12. Auto Targeting Computer -IIR 1. . SkillTo Assemble: Elec. Engi: 137-180\n\n 13. Energy Conduction Rack. . SkillTo Assemble: Quantum FT: 198-260" +} diff --git a/modules/standard/recipe/recipes/466.json b/modules/standard/recipe/recipes/466.json new file mode 100644 index 0000000..61e65f3 --- /dev/null +++ b/modules/standard/recipe/recipes/466.json @@ -0,0 +1,8 @@ +{ + "name": "Second-Hand Blackened Miniblaster", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Second-Hand Blackened Miniblaster'\nThe Construction kit. must be between Quality Level 61 and 80.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\n Add in following order:\n\n 1. Pistol Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 244 -> 320\n\n 2. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 122 -> 160\n\n 3. Rapid-Reload-And-Fire Gyro. SkillTo Assemble: Weapon Smt: 244 -> 320\n\n 4. Short Composite Barrel. SkillTo Assemble: Weapon Smt: 198 -> 260\n\n 5. Hyper Carbo-Ceramic Cooling System. SkillTo Assemble: Weapon Smt: 244 -> 320\n\n 6. Jandawit Cleanup Cluster. SkillTo Assemble: Weapon Smt: 214 -> 280\n\n 7. Energy Pack Interface. SkillTo Assemble: Elec. Engi: 244 -> 320\n\n 8. Energy Conduction Rack. SkillTo Assemble: Quantum FT: 198 -> 260\n\n 9. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 152 -> 200\n\n 10. Nano Pylon. SkillTo Assemble: Mech. Engi: 152 -> 200\n\n 11. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 92 -> 120" +} diff --git a/modules/standard/recipe/recipes/467.json b/modules/standard/recipe/recipes/467.json new file mode 100644 index 0000000..06ffb90 --- /dev/null +++ b/modules/standard/recipe/recipes/467.json @@ -0,0 +1,8 @@ +{ + "name": "Second-Hand Blackhole Mk IX", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Second-Hand Blackhole Mk IX'\nThe Construction kit. must be between Quality Level 61 and 80.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\n Add in following order:\n\n 1. Shotgun Weapons Construction kit. SkillTo Assemble: Weapon Smt: 244 -> 320\n\n 2. Energy Pack Interface. SkillTo Assemble: Elec. Engi: 244 -> 320\n\n 3. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 152 -> 200\n\n 4. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 122 -> 160\n\n 5. Notum Enriched Nano Paste - 4x Layer. SkillTo Assemble: Nano Progra: 152 -> 200\n\n 6. Rapid-Reload-And-Fire Gyro. SkillTo Assemble: Weapon Smt: 244 -> 320\n\n 7. Nano Pylon. SkillTo Assemble: Mech. Engi: 152 -> 200\n\n 8. Energy Conduction Rack. SkillTo Assemble: Quantum FT: 198 -> 260\n\n 9. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 92 -> 120\n\n 10. Nano Pylon. SkillTo Assemble: Mech. Engi: 152 -> 200\n\n 11. Ultra-Long Composite Barrel. SkillTo Assemble: Weapon Smt: 259 -> 340\n\n 12. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 152 -> 200" +} diff --git a/modules/standard/recipe/recipes/468.json b/modules/standard/recipe/recipes/468.json new file mode 100644 index 0000000..3a2ccd1 --- /dev/null +++ b/modules/standard/recipe/recipes/468.json @@ -0,0 +1,8 @@ +{ + "name": "Second-Hand Chunkprojector", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Second-Hand Chunkprojector'\nThe Construction kit. must be between Quality Level 61 and 80.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\n Add in following order:\n\n 1. Shotgun Weapons Construction kit. SkillTo Assemble: Weapon Smt: 244 -> 320\n\n 2. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 152 -> 200\n\n 3. Lock and Stock. SkillTo Assemble: Weapon Smt: 244 -> 320\n\n 4. Short Composite Barrel. SkillTo Assemble: Weapon Smt: 198 -> 260\n\n 5. Nano Pylon. SkillTo Assemble: Mech. Engi: 152 -> 200\n\n 6. Flake Tubing Base Cooling System. SkillTo Assemble: Weapon Smt: 244 -> 320\n\n 7. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 122 -> 160\n\n 8. Nano Pylon. SkillTo Assemble: Mech. Engi: 152 -> 200\n\n 9. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 92 -> 120\n\n 10. Self-Cleaning KO-CR Device. SkillTo Assemble: Weapon Smt: 214 -> 280\n\n 11. Explosion Propulsion Containment Chamber. SkillTo Assemble: Quantum FT: 229 -> 300\n\n 12. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 152 -> 200" +} diff --git a/modules/standard/recipe/recipes/469.json b/modules/standard/recipe/recipes/469.json new file mode 100644 index 0000000..7d49c88 --- /dev/null +++ b/modules/standard/recipe/recipes/469.json @@ -0,0 +1,8 @@ +{ + "name": "Second-Hand Disaffiliation Sniper", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Second-Hand Disaffiliation Sniper'\nThe Construction kit. must be between Quality Level 61 and 80.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\nAdd the pieces in the following order:\n\n 1. Rifle Weapons Construction kit.\n\n 2. Primitive Freon Bag Cooling System. . SkillTo Assemble: Weapon Smt: 244-320\n\n 3. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 92-120\n\n 4. Runtime Critical Area Analyzer. . SkillTo Assemble: Weapon Smt: 244-320\n\n 5. Nano Pylon. . SkillTo Assemble: Mech. Engi: 152-200\n\n 6. Nano Pylon. . SkillTo Assemble: Mech. Engi: 152-200\n\n 7. Explosion Propulsion Containment Chamber. . SkillTo Assemble: Mech. Engi: 214-280\n\n 8. Auto Targeting Computer -IIR 2-Groper-. . SkillTo Assemble: Elec. Engi: 152-200\n\n 9. Ultra-Long Composite Barrel. . SkillTo Assemble: Weapon Smt: 259-340\n\n 10. Lock and Stock. . SkillTo Assemble: Weapon Smt: 244-320\n\n 11. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 152-200\n\n 12. Notum Enriched Nano Paste - 4x Layer. . SkillTo Assemble: Nano Progra: 152-200\n\n 13. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 152-200\n\n 14. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 122-160" +} diff --git a/modules/standard/recipe/recipes/47.json b/modules/standard/recipe/recipes/47.json new file mode 100644 index 0000000..522d3a6 --- /dev/null +++ b/modules/standard/recipe/recipes/47.json @@ -0,0 +1,37 @@ +{ + "name": "Focus-Funneling Helper", + "author": "", + "items": [ + { + "alias": "Focus-Funneling Device", + "item_id": 246206 + }, + { + "alias": "Focus-Funneling Spirit", + "item_id": 246207 + }, + { + "alias": "Spirit Training Program", + "item_id": 246209 + }, + { + "alias": "Spirit Training Program", + "item_id": 246211 + }, + { + "alias": "Primitive Focus-Funneling Helper", + "item_id": 246208 + }, + { + "alias": "Loving Focus-Funneling Helper", + "item_id": 246210 + }, + { + "alias": "Rancorous Focus-Funneling Helper", + "item_id": 246212 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients \n------------------------------\n\n#L \"Focus-Funneling Device\" \"246206\"\n\n\n#L \"Focus-Funneling Spirit\" \"246207\"\n\n\nAnd to upgrade it:\n\n#L \"Spirit Training Program\" \"246209\"\n\n\n#L \"Spirit Training Program\" \"246211\"\n\n\n------------------------------\nRecipe \n------------------------------\n\nFocus-Funneling Device\n+\nFocus-Funneling Spirit\n=\n\n#L \"Primitive Focus-Funneling Helper\" \"246208\"\nSkills: | ?? |\n\n------------------------------\n\nThen you can update it to fit in a different Hud (in order to wear 3 of them !!)\n\nSpirit Training Program (Love)\n+\nPrimitive Focus-Funneling Helper\n=\n\n#L \"Loving Focus-Funneling Helper\" \"246210\" ( for HUD 3 )\nSkills: | ?? |\n\nOR\n\nSpirit Training Program (Hate)\n+\nPrimitive Focus-Funneling Helper\n=\n\n#L \"Rancorous Focus-Funneling Helper\" \"246212\" ( for HUD 1 )\nSkills: | ?? |\n\n------------------------------\nComments\n------------------------------\n\nAwesome item for twinking." +} diff --git a/modules/standard/recipe/recipes/470.json b/modules/standard/recipe/recipes/470.json new file mode 100644 index 0000000..6db7722 --- /dev/null +++ b/modules/standard/recipe/recipes/470.json @@ -0,0 +1,8 @@ +{ + "name": "Second-Hand E-Beamer", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Second-Hand E-Beamer'\nThe Construction kit. must be between Quality Level 61 and 80.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\n Add in following order:\n\n 1. Energy Weapons Construction kit. SkillTo Assemble: Weapon Smt: 244 -> 320\n\n 2. Flake Tubing Base Cooling System. SkillTo Assemble: Weapon Smt: 244 -> 320\n\n 3. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 152 -> 200\n\n 4. Nano Pylon. SkillTo Assemble: Mech. Engi: 152 -> 200\n\n 5. Nano Pylon. SkillTo Assemble: Mech. Engi: 152 -> 200\n\n 6. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 92 -> 120\n\n 7. Notum Enriched Nano Paste - 4x Layer. SkillTo Assemble: Nano Progra: 152 -> 200\n\n 8. Energy Pack Interface. SkillTo Assemble: Elec. Engi: 244 -> 320\n\n 9. Self-Cleaning KO-CR Device. SkillTo Assemble: Weapon Smt: 214 -> 280\n\n 10. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 122 -> 160\n\n 11. Energy Conduction Rack. SkillTo Assemble: Quantum FT: 198 -> 260\n\n 12. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 152 -> 200\n\n 13. Short Composite Barrel. SkillTo Assemble: Weapon Smt: 198 -> 260\n\n 14. Rapid-Reload-And-Fire Gyro. SkillTo Assemble: Weapon Smt: 244 -> 320" +} diff --git a/modules/standard/recipe/recipes/471.json b/modules/standard/recipe/recipes/471.json new file mode 100644 index 0000000..d89509c --- /dev/null +++ b/modules/standard/recipe/recipes/471.json @@ -0,0 +1,8 @@ +{ + "name": "Second-Hand Flamethrower", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Second-Hand Flamethrower'\nThe Construction kit. must be between Quality Level 61 and 80.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\n Add in following order:\n\n 1. AssaultRifle Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 244 -> 320\n\n 2. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 92 -> 120\n\n 3. Compression Chamber for Chemicals. SkillTo Assemble: Weapon Smt: 259 -> 340\n\n 4. Nano Pylon. SkillTo Assemble: Mech. Engi: 152 -> 200\n\n 5. Plasma Streamer Interface Nozzle. SkillTo Assemble: Chemistry: 244 -> 320\n\n 6. Primitive Freon Bag Cooling System. SkillTo Assemble: Weapon Smt: 244 -> 320\n\n 7. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 122 -> 160\n\n 8. Short Composite Barrel. SkillTo Assemble: Weapon Smt: 198 -> 260\n\n 9. Nano Pylon. SkillTo Assemble: Mech. Engi: 152 -> 200\n\n 10. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 152 -> 200\n\n 11. Auto Targeting Computer -IIR 1. SkillTo Assemble: Elec. Engi: 137 -> 180\n\n 12. Self-Cleaning KO-CR Device. SkillTo Assemble: Weapon Smt: 214 -> 280" +} diff --git a/modules/standard/recipe/recipes/472.json b/modules/standard/recipe/recipes/472.json new file mode 100644 index 0000000..4139ead --- /dev/null +++ b/modules/standard/recipe/recipes/472.json @@ -0,0 +1,8 @@ +{ + "name": "Second-Hand Grenade-Thrower", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Second-Hand Grenade-Thrower'\nThe Construction kit. must be between Quality Level 61 and 80.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\n Add in following order:\n\n 1. Grenades Construction kit. SkillTo Assemble: Weapon Smt: 244 -> 320\n\n 2. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 152 -> 200\n\n 3. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 122 -> 160\n\n 4. Ultra Short Composite Barrel. SkillTo Assemble: Weapon Smt: 183 -> 240\n\n 5. Nano Pylon. SkillTo Assemble: Mech. Engi: 152 -> 200\n\n 6. Notum Enriched Nano Paste - 4x Layer. SkillTo Assemble: Nano Progra: 152 -> 200\n\n 7. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 92 -> 120\n\n 8. Flake Tubing Base Cooling System. SkillTo Assemble: Weapon Smt: 244 -> 320\n\n 9. Poison Chemical Combination Chamber. SkillTo Assemble: Chemistry: 244 -> 320" +} diff --git a/modules/standard/recipe/recipes/473.json b/modules/standard/recipe/recipes/473.json new file mode 100644 index 0000000..093b042 --- /dev/null +++ b/modules/standard/recipe/recipes/473.json @@ -0,0 +1,8 @@ +{ + "name": "Second-Hand Heavy Grinner", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Second-Hand Heavy Grinner'\nThe Construction kit. must be between Quality Level 61 and 80.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\n Add in following order:\n\n 1. Pistol Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 244 -> 320\n\n 2. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 152 -> 200\n\n 3. Explosion Propulsion Containment Chamber. SkillTo Assemble: Mech. Engi: 214 -> 280\n\n 4. Triple Pulse Enabler. SkillTo Assemble: Weapon Smt: 259 -> 340\n\n 5. Lock and Stock. SkillTo Assemble: Weapon Smt: 244 -> 320\n\n 6. Composite Barrel. SkillTo Assemble: Weapon Smt: 229 -> 300\n\n 7. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 122 -> 160\n\n 8. Nano Pylon. SkillTo Assemble: Mech. Engi: 152 -> 200\n\n 9. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 92 -> 120\n\n 10. Nano Pylon. SkillTo Assemble: Mech. Engi: 152 -> 200\n\n 11. Self-Cleaning KO-CR Device. SkillTo Assemble: Weapon Smt: 214 -> 280\n\n 12. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 152 -> 200" +} diff --git a/modules/standard/recipe/recipes/474.json b/modules/standard/recipe/recipes/474.json new file mode 100644 index 0000000..f7ec84b --- /dev/null +++ b/modules/standard/recipe/recipes/474.json @@ -0,0 +1,8 @@ +{ + "name": "Second-Hand Heavy Lead Sprayer", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Second-Hand Heavy Lead Sprayer'\nThe Construction kit. must be between Quality Level 61 and 80.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\n Add in following order:\n\n 1. AssaultRifle Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 244 -> 320\n\n 2. Jandawit Cleanup Cluster. SkillTo Assemble: Weapon Smt: 214 -> 280\n\n 3. Explosion Propulsion Containment Chamber. SkillTo Assemble: Mech. Engi: 214 -> 280\n\n 4. Composite Barrel. SkillTo Assemble: Weapon Smt: 229 -> 300\n\n 5. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 152 -> 200\n\n 6. Lock and Stock. SkillTo Assemble: Weapon Smt: 244 -> 320\n\n 7. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 92 -> 120\n\n 8. Triple Pulse Enabler. SkillTo Assemble: Weapon Smt: 259 -> 340\n\n 9. Gyro Stabilizing Unit. SkillTo Assemble: Weapon Smt: 274 -> 360\n\n 10. Nano Pylon. SkillTo Assemble: Mech. Engi: 152 -> 200\n\n 11. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 122 -> 160" +} diff --git a/modules/standard/recipe/recipes/475.json b/modules/standard/recipe/recipes/475.json new file mode 100644 index 0000000..0218543 --- /dev/null +++ b/modules/standard/recipe/recipes/475.json @@ -0,0 +1,8 @@ +{ + "name": "Second-Hand Kolt 58 Magnum", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Second-Hand Kolt 58 Magnum'\nThe Construction kit. must be between Quality Level 61 and 80.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\n Add in following order:\n\n 1. Pistol Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 244 -> 320\n\n 2. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 152 -> 200\n\n 3. Composite Barrel. SkillTo Assemble: Weapon Smt: 229 -> 300\n\n 4. Hyper Carbo-Ceramic Cooling System. SkillTo Assemble: Weapon Smt: 244 -> 320\n\n 5. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 152 -> 200\n\n 6. Rapid-Reload-And-Fire Gyro. SkillTo Assemble: Weapon Smt: 244 -> 320\n\n 7. Explosion Propulsion Containment Chamber. SkillTo Assemble: Mech. Engi: 214 -> 280\n\n 8. Jandawit Cleanup Cluster. SkillTo Assemble: Weapon Smt: 214 -> 280\n\n 9. Nano Pylon. SkillTo Assemble: Mech. Engi: 152 -> 200\n\n 10. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 92 -> 120\n\n 11. Nano Pylon. SkillTo Assemble: Mech. Engi: 152 -> 200\n\n 12. Lock and Stock. SkillTo Assemble: Weapon Smt: 244 -> 320" +} diff --git a/modules/standard/recipe/recipes/476.json b/modules/standard/recipe/recipes/476.json new file mode 100644 index 0000000..792ca15 --- /dev/null +++ b/modules/standard/recipe/recipes/476.json @@ -0,0 +1,8 @@ +{ + "name": "Second-Hand Kolt PDW-37", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Second-Hand Kolt PDW-37'\nThe Construction kit. must be between Quality Level 61 and 80.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\n Add in following order:\n\n 1. Pistol Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 244 -> 320\n\n 2. Short Composite Barrel. SkillTo Assemble: Weapon Smt: 198 -> 260\n\n 3. Rapid-Reload-And-Fire Gyro. SkillTo Assemble: Weapon Smt: 244 -> 320\n\n 4. Hyper Carbo-Ceramic Cooling System. SkillTo Assemble: Weapon Smt: 244 -> 320\n\n 5. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 92 -> 120\n\n 6. Energy Conduction Rack. SkillTo Assemble: Quantum FT: 198 -> 260\n\n 7. Energy Pack Interface. SkillTo Assemble: Elec. Engi: 244 -> 320\n\n 8. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 122 -> 160\n\n 9. Triple Pulse Enabler. SkillTo Assemble: Weapon Smt: 259 -> 340\n\n 10. Nano Pylon. SkillTo Assemble: Mech. Engi: 152 -> 200\n\n 11. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 152 -> 200" +} diff --git a/modules/standard/recipe/recipes/477.json b/modules/standard/recipe/recipes/477.json new file mode 100644 index 0000000..93b55ff --- /dev/null +++ b/modules/standard/recipe/recipes/477.json @@ -0,0 +1,8 @@ +{ + "name": "Second-Hand Light Beamer Pistol", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Second-Hand Light Beamer Pistol'\nThe Construction kit. must be between Quality Level 83 and 98.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\n Add in following order:\n\n 1. Pistol Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 332 -> 392\n\n 2. Nano Pylon. SkillTo Assemble: Mech. Engi: 208 -> 245\n\n 3. Short Composite Barrel. SkillTo Assemble: Weapon Smt: 270 -> 318\n\n 4. Plasma Streamer Interface Nozzle. SkillTo Assemble: Chemistry: 332 -> 392\n\n 5. Self-Cleaning KO-CR Device. SkillTo Assemble: Weapon Smt: 290 -> 343\n\n 6. Hyper Carbo-Ceramic Cooling System. SkillTo Assemble: Weapon Smt: 332 -> 392\n\n 7. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 166 -> 196\n\n 8. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 208 -> 245\n\n 9. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 124 -> 147\n\n 10. Energy Conduction Rack. SkillTo Assemble: Quantum FT: 270 -> 318" +} diff --git a/modules/standard/recipe/recipes/478.json b/modules/standard/recipe/recipes/478.json new file mode 100644 index 0000000..ebaaf28 --- /dev/null +++ b/modules/standard/recipe/recipes/478.json @@ -0,0 +1,8 @@ +{ + "name": "Second-Hand Mausser Particle Streamer", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Second-Hand Mausser Particle Streamer'\nThe Construction kit. must be between Quality Level 61 and 80.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\nAdd the pieces in the following order:\n\n 1. Submachinegun Weapons Construction kit.\n\n 2. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 152-200\n\n 3. Lock and Stock. . SkillTo Assemble: Weapon Smt: 244-320\n\n 4. Ultra-Long Composite Barrel. . SkillTo Assemble: Weapon Smt: 259-340\n\n 5. Triple Pulse Enabler. . SkillTo Assemble: Weapon Smt: 259-340\n\n 6. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 152-200\n\n 7. Nano Pylon. . SkillTo Assemble: Mech. Engi: 152-200\n\n 8. Nano Pylon. . SkillTo Assemble: Mech. Engi: 152-200\n\n 9. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 92-120\n\n 10. Auto Targeting Computer -IIR 1. . SkillTo Assemble: Elec. Engi: 137-180\n\n 11. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 122-160\n\n 12. Explosion Propulsion Containment Chamber. . SkillTo Assemble: Mech. Engi: 214-280" +} diff --git a/modules/standard/recipe/recipes/479.json b/modules/standard/recipe/recipes/479.json new file mode 100644 index 0000000..026ccc8 --- /dev/null +++ b/modules/standard/recipe/recipes/479.json @@ -0,0 +1,8 @@ +{ + "name": "Second-Hand Megajolt", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Second-Hand Megajolt'\nThe Construction kit. must be between Quality Level 61 and 80.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\n Add in following order:\n\n 1. Shotgun Weapons Construction kit. SkillTo Assemble: Weapon Smt: 244 -> 320\n\n 2. Nano Pylon. SkillTo Assemble: Mech. Engi: 152 -> 200\n\n 3. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 122 -> 160\n\n 4. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 152 -> 200\n\n 5. Auto Targeting Computer -IIR 2-Groper-. SkillTo Assemble: Elec. Engi: 152 -> 200\n\n 6. Primitive Freon Bag Cooling System. SkillTo Assemble: Weapon Smt: 244 -> 320\n\n 7. Energy Pack Interface. SkillTo Assemble: Elec. Engi: 244 -> 320\n\n 8. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 92 -> 120\n\n 9. Nano Pylon. SkillTo Assemble: Mech. Engi: 152 -> 200\n\n 10. Composite Barrel. SkillTo Assemble: Weapon Smt: 229 -> 300\n\n 11. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 152 -> 200\n\n 12. Energy Conduction Rack. SkillTo Assemble: Quantum FT: 198 -> 260\n\n 13. Notum Enriched Nano Paste - 4x Layer. SkillTo Assemble: Nano Progra: 152 -> 200" +} diff --git a/modules/standard/recipe/recipes/48.json b/modules/standard/recipe/recipes/48.json new file mode 100644 index 0000000..733cdb4 --- /dev/null +++ b/modules/standard/recipe/recipes/48.json @@ -0,0 +1,37 @@ +{ + "name": "Guardian Conductor", + "author": "", + "items": [ + { + "alias": "Cloud of Polychromic Nanobots", + "item_id": 202537 + }, + { + "alias": "Guardian Conductor Building Kit", + "item_id": 202572 + }, + { + "alias": "Conductor of Presence Program", + "item_id": 202566 + }, + { + "alias": "HSR Compressed Regenerating Bioplate", + "item_id": 202540 + }, + { + "alias": "Guardian Conductor Controller", + "item_id": 202574 + }, + { + "alias": "Conductor of Presence Controller", + "item_id": 202564 + }, + { + "alias": "Guardian Conductor of Presence", + "item_id": 202987 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients \n------------------------------\n\n#L \"Cloud of Polychromic Nanobots\" \"202537\"\n\n\n#L \"Guardian Conductor Building Kit\" \"202572\"\n\n\na Conductor Program\n( ie : #L \"Conductor of Presence Program\" \"202566\" )\n\n\n#L \"HSR Compressed Regenerating Bioplate\" \"202540\"\n\n\n------------------------------\nRecipe \n------------------------------\n\nCloud of Polychromic Nanobots\n+\nGuardian Conductor Building Kit\n=\n\n#L \"Guardian Conductor Controller\" \"202574\"\nSkills: | 5.75EE,4CL,4NP |\n\n------------------------------\n\nGuardian Conductor Controller\n+\nConductor of Presence Program\n=\n\n#L \"Conductor of Presence Controller\" \"202564\"\nSkills: | 5.75EE,4CL,4NP |\n\n------------------------------\n\nConductor of Presence Controller\n+\nHSR Compressed Regenerating Bioplate\n=\n\n#L \"Guardian Conductor of Presence\" \"202987\"\nSkills: | 4ME |\n\n------------------------------\nComments\n------------------------------\n\nConstructed towers are so much better than prefab ones. Problem is that they dont seem to last long out there these days ;)" +} diff --git a/modules/standard/recipe/recipes/480.json b/modules/standard/recipe/recipes/480.json new file mode 100644 index 0000000..4acd508 --- /dev/null +++ b/modules/standard/recipe/recipes/480.json @@ -0,0 +1,8 @@ +{ + "name": "Second-Hand Mini-Shotgun", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Second-Hand Mini-Shotgun'\nThe Construction kit. must be between Quality Level 61 and 80.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\n Add in following order:\n\n 1. Shotgun Weapons Construction kit. SkillTo Assemble: Weapon Smt: 244 -> 320\n\n 2. Nano Pylon. SkillTo Assemble: Mech. Engi: 152 -> 200\n\n 3. Lock and Stock. SkillTo Assemble: Weapon Smt: 244 -> 320\n\n 4. Rapid-Reload-And-Fire Gyro. SkillTo Assemble: Weapon Smt: 244 -> 320\n\n 5. Nano Pylon. SkillTo Assemble: Mech. Engi: 152 -> 200\n\n 6. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 152 -> 200\n\n 7. Short Composite Barrel. SkillTo Assemble: Weapon Smt: 198 -> 260\n\n 8. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 92 -> 120\n\n 9. Explosion Propulsion Containment Chamber. SkillTo Assemble: Quantum FT: 229 -> 300\n\n 10. Self-Cleaning KO-CR Device. SkillTo Assemble: Weapon Smt: 214 -> 280\n\n 11. Nano-Interfaced Cooling System. SkillTo Assemble: Weapon Smt: 244 -> 320" +} diff --git a/modules/standard/recipe/recipes/481.json b/modules/standard/recipe/recipes/481.json new file mode 100644 index 0000000..f481e49 --- /dev/null +++ b/modules/standard/recipe/recipes/481.json @@ -0,0 +1,8 @@ +{ + "name": "Second-Hand Minigrinner", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Second-Hand Minigrinner'\nThe Construction kit. must be between Quality Level 61 and 80.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\n Add in following order:\n\n 1. Pistol Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 244 -> 320\n\n 2. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 152 -> 200\n\n 3. Explosion Propulsion Containment Chamber. SkillTo Assemble: Mech. Engi: 214 -> 280\n\n 4. Lock and Stock. SkillTo Assemble: Weapon Smt: 244 -> 320\n\n 5. Hyper Carbo-Ceramic Cooling System. SkillTo Assemble: Weapon Smt: 244 -> 320\n\n 6. Ultra Short Composite Barrel. SkillTo Assemble: Weapon Smt: 183 -> 240\n\n 7. Nano Pylon. SkillTo Assemble: Mech. Engi: 152 -> 200\n\n 8. Self-Cleaning KO-CR Device. SkillTo Assemble: Weapon Smt: 214 -> 280\n\n 9. Gyro Stabilizing Unit. SkillTo Assemble: Weapon Smt: 274 -> 360\n\n 10. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 92 -> 120\n\n 11. Nano Pylon. SkillTo Assemble: Mech. Engi: 152 -> 200\n\n 12. Triple Pulse Enabler. SkillTo Assemble: Weapon Smt: 259 -> 340" +} diff --git a/modules/standard/recipe/recipes/482.json b/modules/standard/recipe/recipes/482.json new file mode 100644 index 0000000..2ca089f --- /dev/null +++ b/modules/standard/recipe/recipes/482.json @@ -0,0 +1,8 @@ +{ + "name": "Second-Hand Sleekblaster", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Second-Hand Sleekblaster'\nThe Construction kit. must be between Quality Level 61 and 80.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\n Add in following order:\n\n 1. Energy Weapons Construction kit. SkillTo Assemble: Weapon Smt: 244 -> 320\n\n 2. Hyper Carbo-Ceramic Cooling System. SkillTo Assemble: Weapon Smt: 244 -> 320\n\n 3. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 152 -> 200\n\n 4. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 152 -> 200\n\n 5. Energy Conduction Rack. SkillTo Assemble: Quantum FT: 198 -> 260\n\n 6. Nano Pylon. SkillTo Assemble: Mech. Engi: 152 -> 200\n\n 7. Composite Barrel. SkillTo Assemble: Weapon Smt: 229 -> 300\n\n 8. Energy Pack Interface. SkillTo Assemble: Elec. Engi: 244 -> 320\n\n 9. Nano Pylon. SkillTo Assemble: Mech. Engi: 152 -> 200\n\n 10. Jandawit Cleanup Cluster. SkillTo Assemble: Weapon Smt: 214 -> 280\n\n 11. Rapid-Reload-And-Fire Gyro. SkillTo Assemble: Weapon Smt: 244 -> 320\n\n 12. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 122 -> 160\n\n 13. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 92 -> 120" +} diff --git a/modules/standard/recipe/recipes/483.json b/modules/standard/recipe/recipes/483.json new file mode 100644 index 0000000..4f0564b --- /dev/null +++ b/modules/standard/recipe/recipes/483.json @@ -0,0 +1,8 @@ +{ + "name": "Second-Hand Sleekblaster Major", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Second-Hand Sleekblaster Major'\nThe Construction kit. must be between Quality Level 61 and 80.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\n Add in following order:\n\n 1. Energy Weapons Construction kit. SkillTo Assemble: Weapon Smt: 244 -> 320\n\n 2. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 152 -> 200\n\n 3. Nano Pylon. SkillTo Assemble: Mech. Engi: 152 -> 200\n\n 4. Flake Tubing Base Cooling System. SkillTo Assemble: Weapon Smt: 244 -> 320\n\n 5. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 122 -> 160\n\n 6. Nano Pylon. SkillTo Assemble: Mech. Engi: 152 -> 200\n\n 7. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 92 -> 120\n\n 8. Energy Conduction Rack. SkillTo Assemble: Quantum FT: 198 -> 260\n\n 9. Composite Barrel. SkillTo Assemble: Weapon Smt: 229 -> 300\n\n 10. Self-Cleaning KO-CR Device. SkillTo Assemble: Weapon Smt: 214 -> 280\n\n 11. Energy Pack Interface. SkillTo Assemble: Elec. Engi: 244 -> 320\n\n 12. Rapid-Reload-And-Fire Gyro. SkillTo Assemble: Weapon Smt: 244 -> 320\n\n 13. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 152 -> 200" +} diff --git a/modules/standard/recipe/recipes/484.json b/modules/standard/recipe/recipes/484.json new file mode 100644 index 0000000..8228b10 --- /dev/null +++ b/modules/standard/recipe/recipes/484.json @@ -0,0 +1,8 @@ +{ + "name": "Second-Hand Sleekblaster Minor", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Second-Hand Sleekblaster Minor'\nThe Construction kit. must be between Quality Level 61 and 80.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\n Add in following order:\n\n 1. Energy Weapons Construction kit. SkillTo Assemble: Weapon Smt: 244 -> 320\n\n 2. Rapid-Reload-And-Fire Gyro. SkillTo Assemble: Weapon Smt: 244 -> 320\n\n 3. Short Composite Barrel. SkillTo Assemble: Weapon Smt: 198 -> 260\n\n 4. Energy Pack Interface. SkillTo Assemble: Elec. Engi: 244 -> 320\n\n 5. Nano Pylon. SkillTo Assemble: Mech. Engi: 152 -> 200\n\n 6. Flake Tubing Base Cooling System. SkillTo Assemble: Weapon Smt: 244 -> 320\n\n 7. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 122 -> 160\n\n 8. Jandawit Cleanup Cluster. SkillTo Assemble: Weapon Smt: 214 -> 280\n\n 9. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 92 -> 120\n\n 10. Energy Conduction Rack. SkillTo Assemble: Quantum FT: 198 -> 260" +} diff --git a/modules/standard/recipe/recipes/485.json b/modules/standard/recipe/recipes/485.json new file mode 100644 index 0000000..b857d2e --- /dev/null +++ b/modules/standard/recipe/recipes/485.json @@ -0,0 +1,8 @@ +{ + "name": "Second-Hand Subturbine", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Second-Hand Subturbine'\nThe Construction kit. must be between Quality Level 61 and 80.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\n Add in following order:\n\n 1. AssaultRifle Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 244 -> 320\n\n 2. Nano Pylon. SkillTo Assemble: Mech. Engi: 152 -> 200\n\n 3. Nano Pylon. SkillTo Assemble: Mech. Engi: 152 -> 200\n\n 4. Self-Cleaning KO-CR Device. SkillTo Assemble: Weapon Smt: 214 -> 280\n\n 5. Notum Enriched Nano Paste - 4x Layer. SkillTo Assemble: Nano Progra: 152 -> 200\n\n 6. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 152 -> 200\n\n 7. Short Composite Barrel. SkillTo Assemble: Weapon Smt: 198 -> 260\n\n 8. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 92 -> 120\n\n 9. Hyper Carbo-Ceramic Cooling System. SkillTo Assemble: Weapon Smt: 244 -> 320\n\n 10. Triple Pulse Enabler. SkillTo Assemble: Weapon Smt: 259 -> 340\n\n 11. Lock and Stock. SkillTo Assemble: Weapon Smt: 244 -> 320\n\n 12. Explosion Propulsion Containment Chamber. SkillTo Assemble: Mech. Engi: 214 -> 280\n\n 13. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 122 -> 160\n\n 14. Gyro Stabilizing Unit. SkillTo Assemble: Weapon Smt: 274 -> 360\n\n 15. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 152 -> 200" +} diff --git a/modules/standard/recipe/recipes/486.json b/modules/standard/recipe/recipes/486.json new file mode 100644 index 0000000..6da2672 --- /dev/null +++ b/modules/standard/recipe/recipes/486.json @@ -0,0 +1,8 @@ +{ + "name": "Second-Hand Supernova Mk VI", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Second-Hand Supernova Mk VI'\nThe Construction kit. must be between Quality Level 61 and 80.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\nAdd the pieces in the following order:\n\n 1. Energy Weapons Construction kit.\n\n 2. Runtime Critical Area Analyzer. . SkillTo Assemble: Weapon Smt: 244-320\n\n 3. Auto Targeting C. -IIR 5 -Powermolder-. . SkillTo Assemble: Elec. Engi: 198-260\n\n 4. Energy Pack Interface. . SkillTo Assemble: Elec. Engi: 244-320\n\n 5. Energy Conduction Rack. . SkillTo Assemble: Quantum FT: 198-260\n\n 6. Ultra-Long Composite Barrel. . SkillTo Assemble: Weapon Smt: 259-340\n\n 7. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 92-120\n\n 8. Nano Pylon. . SkillTo Assemble: Mech. Engi: 152-200\n\n 9. Auto Targeting Computer -IIR 4 -Ultra-. . SkillTo Assemble: Elec. Engi: 183-240\n\n 10. Nano Pylon. . SkillTo Assemble: Mech. Engi: 152-200\n\n 11. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 152-200\n\n 12. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 152-200" +} diff --git a/modules/standard/recipe/recipes/487.json b/modules/standard/recipe/recipes/487.json new file mode 100644 index 0000000..cc1553e --- /dev/null +++ b/modules/standard/recipe/recipes/487.json @@ -0,0 +1,8 @@ +{ + "name": "Second-Hand Suppressor", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Second-Hand Suppressor'\nThe Construction kit. must be between Quality Level 61 and 80.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\nAdd the pieces in the following order:\n\n 1. Submachinegun Weapons Construction kit.\n\n 2. Nano Pylon. . SkillTo Assemble: Mech. Engi: 152-200\n\n 3. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 92-120\n\n 4. Explosion Propulsion Containment Chamber. . SkillTo Assemble: Mech. Engi: 214-280\n\n 5. Gyro Stabilizing Unit. . SkillTo Assemble: Weapon Smt: 274-360\n\n 6. Nano Pylon. . SkillTo Assemble: Mech. Engi: 152-200\n\n 7. Lock and Stock. . SkillTo Assemble: Weapon Smt: 244-320\n\n 8. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 152-200\n\n 9. Triple Pulse Enabler. . SkillTo Assemble: Weapon Smt: 259-340\n\n 10. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 152-200\n\n 11. Ultra-Long Composite Barrel. . SkillTo Assemble: Weapon Smt: 259-340" +} diff --git a/modules/standard/recipe/recipes/488.json b/modules/standard/recipe/recipes/488.json new file mode 100644 index 0000000..553a0a2 --- /dev/null +++ b/modules/standard/recipe/recipes/488.json @@ -0,0 +1,8 @@ +{ + "name": "Second-Hand Thagh Whings", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Second-Hand Thagh Whings'\nThe Construction kit. must be between Quality Level 24 and 46.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\nAdd the pieces in the following order:\n\n 1. Piercing Weapons Construction kit.\n\n 2. Sneak Atck Cluster - Faded (Eye). . SkillTo Assemble: Nano Progra: 24-46\n\n 3. Optimized Co-Weapon Interface. . SkillTo Assemble: Comp. Liter: 72-138\n\n 4. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 36-69\n\n 5. Notum Enriched Nano Paste - 4x Layer. . SkillTo Assemble: Nano Progra: 60-115\n\n 6. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 48-92\n\n 7. Medium Handle. . SkillTo Assemble: Weapon Smt: 88-169" +} diff --git a/modules/standard/recipe/recipes/489.json b/modules/standard/recipe/recipes/489.json new file mode 100644 index 0000000..d6efac2 --- /dev/null +++ b/modules/standard/recipe/recipes/489.json @@ -0,0 +1,8 @@ +{ + "name": "Second-Hand Triplejolt", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Second-Hand Triplejolt'\nThe Construction kit. must be between Quality Level 61 and 80.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\n Add in following order:\n\n 1. Shotgun Weapons Construction kit. SkillTo Assemble: Weapon Smt: 244 -> 320\n\n 2. Energy Conduction Rack. SkillTo Assemble: Quantum FT: 198 -> 260\n\n 3. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 92 -> 120\n\n 4. Jandawit Cleanup Cluster. SkillTo Assemble: Weapon Smt: 214 -> 280\n\n 5. Ultra Short Composite Barrel. SkillTo Assemble: Weapon Smt: 183 -> 240\n\n 6. Radioactive Isotope Fusion System. SkillTo Assemble: Quantum FT: 244 -> 320\n\n 7. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 122 -> 160\n\n 8. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 152 -> 200\n\n 9. Nano Pylon. SkillTo Assemble: Mech. Engi: 152 -> 200\n\n 10. Nano Pylon. SkillTo Assemble: Mech. Engi: 152 -> 200\n\n 11. Hyper Carbo-Ceramic Cooling System. SkillTo Assemble: Weapon Smt: 244 -> 320\n\n 12. Rapid-Reload-And-Fire Gyro. SkillTo Assemble: Weapon Smt: 244 -> 320" +} diff --git a/modules/standard/recipe/recipes/49.json b/modules/standard/recipe/recipes/49.json new file mode 100644 index 0000000..7d9dc2c --- /dev/null +++ b/modules/standard/recipe/recipes/49.json @@ -0,0 +1,17 @@ +{ + "name": "Half Digested Human Parts", + "author": "", + "items": [ + { + "alias": "Half Digested Human Torso", + "item_id": 223567 + }, + { + "alias": "Advanced Bio-Comminutor", + "item_id": 154332 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients \n------------------------------\n\na Half Digested Human Parts\n( ie : #L \"Half Digested Human Torso\" \"223567\" )\n\n\n#L \"Advanced Bio-Comminutor\" \"154332\"\n\n\n------------------------------\nRecipe \n------------------------------\n\nAdvanced Bio-Comminutor\n+\nHalf Digested Human Parts\n=\nan Implant\nSkills: | BE,CL |\n\n------------------------------\nComments\n------------------------------\n\nThere is a large chance to obtain a jobe implant. you can convert the Half Digested Human Parts by right clicking on it , but that way of processing is not sure." +} diff --git a/modules/standard/recipe/recipes/490.json b/modules/standard/recipe/recipes/490.json new file mode 100644 index 0000000..31dea4b --- /dev/null +++ b/modules/standard/recipe/recipes/490.json @@ -0,0 +1,8 @@ +{ + "name": "Second-Hand Tripler", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Second-Hand Tripler'\nThe Construction kit. must be between Quality Level 47 and 69.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\nAdd the pieces in the following order:\n\n 1. One Handed Edged Weapons Construction kit.\n\n 2. Optimized Co-Weapon Interface. . SkillTo Assemble: Comp. Liter: 141-207\n\n 3. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 70-104\n\n 4. Short Handle. . SkillTo Assemble: Weapon Smt: 164-242" +} diff --git a/modules/standard/recipe/recipes/491.json b/modules/standard/recipe/recipes/491.json new file mode 100644 index 0000000..08b8a99 --- /dev/null +++ b/modules/standard/recipe/recipes/491.json @@ -0,0 +1,8 @@ +{ + "name": "Senior Blackened Miniblaster", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Senior Blackened Miniblaster'\nThe Construction kit. must be between Quality Level 141 and 160.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\n Add in following order:\n\n 1. Pistol Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 564 -> 640\n\n 2. Jandawit Cleanup Cluster. SkillTo Assemble: Weapon Smt: 494 -> 560\n\n 3. Nano Pylon. SkillTo Assemble: Mech. Engi: 352 -> 400\n\n 4. Hyper Carbo-Ceramic Cooling System. SkillTo Assemble: Weapon Smt: 564 -> 640\n\n 5. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 212 -> 240\n\n 6. Energy Conduction Rack. SkillTo Assemble: Quantum FT: 458 -> 520\n\n 7. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 282 -> 320\n\n 8. Rapid-Reload-And-Fire Gyro. SkillTo Assemble: Weapon Smt: 564 -> 640\n\n 9. Short Composite Barrel. SkillTo Assemble: Weapon Smt: 458 -> 520\n\n 10. Energy Pack Interface. SkillTo Assemble: Elec. Engi: 564 -> 640\n\n 11. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 352 -> 400" +} diff --git a/modules/standard/recipe/recipes/492.json b/modules/standard/recipe/recipes/492.json new file mode 100644 index 0000000..88f103d --- /dev/null +++ b/modules/standard/recipe/recipes/492.json @@ -0,0 +1,8 @@ +{ + "name": "Senior Electron-Charged Pistol", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Senior Electron-Charged Pistol'\nThe Construction kit. must be between Quality Level 141 and 160.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\n Add in following order:\n\n 1. Pistol Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 564 -> 640\n\n 2. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 282 -> 320\n\n 3. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 212 -> 240\n\n 4. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 352 -> 400\n\n 5. Jandawit Cleanup Cluster. SkillTo Assemble: Weapon Smt: 494 -> 560\n\n 6. Nano Pylon. SkillTo Assemble: Mech. Engi: 352 -> 400\n\n 7. Plasma Streamer Interface Nozzle. SkillTo Assemble: Chemistry: 564 -> 640\n\n 8. Short Composite Barrel. SkillTo Assemble: Weapon Smt: 458 -> 520\n\n 9. Energy Conduction Rack. SkillTo Assemble: Quantum FT: 458 -> 520\n\n 10. Rapid-Reload-And-Fire Gyro. SkillTo Assemble: Weapon Smt: 564 -> 640" +} diff --git a/modules/standard/recipe/recipes/493.json b/modules/standard/recipe/recipes/493.json new file mode 100644 index 0000000..04ab480 --- /dev/null +++ b/modules/standard/recipe/recipes/493.json @@ -0,0 +1,8 @@ +{ + "name": "Senior Kolt 58 Magnum", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Senior Kolt 58 Magnum'\nThe Construction kit. must be between Quality Level 141 and 160.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\n Add in following order:\n\n 1. Pistol Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 564 -> 640\n\n 2. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 352 -> 400\n\n 3. Hyper Carbo-Ceramic Cooling System. SkillTo Assemble: Weapon Smt: 564 -> 640\n\n 4. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 212 -> 240\n\n 5. Nano Pylon. SkillTo Assemble: Mech. Engi: 352 -> 400\n\n 6. Lock and Stock. SkillTo Assemble: Weapon Smt: 564 -> 640\n\n 7. Jandawit Cleanup Cluster. SkillTo Assemble: Weapon Smt: 494 -> 560\n\n 8. Nano Pylon. SkillTo Assemble: Mech. Engi: 352 -> 400\n\n 9. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 352 -> 400\n\n 10. Composite Barrel. SkillTo Assemble: Weapon Smt: 529 -> 600\n\n 11. Rapid-Reload-And-Fire Gyro. SkillTo Assemble: Weapon Smt: 564 -> 640\n\n 12. Explosion Propulsion Containment Chamber. SkillTo Assemble: Mech. Engi: 494 -> 560" +} diff --git a/modules/standard/recipe/recipes/494.json b/modules/standard/recipe/recipes/494.json new file mode 100644 index 0000000..06c9de0 --- /dev/null +++ b/modules/standard/recipe/recipes/494.json @@ -0,0 +1,8 @@ +{ + "name": "Senior Kolt PDW-37", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Senior Kolt PDW-37'\nThe Construction kit. must be between Quality Level 141 and 160.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\n Add in following order:\n\n 1. Pistol Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 564 -> 640\n\n 2. Nano Pylon. SkillTo Assemble: Mech. Engi: 352 -> 400\n\n 3. Short Composite Barrel. SkillTo Assemble: Weapon Smt: 458 -> 520\n\n 4. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 212 -> 240\n\n 5. Energy Pack Interface. SkillTo Assemble: Elec. Engi: 564 -> 640\n\n 6. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 352 -> 400\n\n 7. Rapid-Reload-And-Fire Gyro. SkillTo Assemble: Weapon Smt: 564 -> 640\n\n 8. Hyper Carbo-Ceramic Cooling System. SkillTo Assemble: Weapon Smt: 564 -> 640\n\n 9. Triple Pulse Enabler. SkillTo Assemble: Weapon Smt: 599 -> 680\n\n 10. Energy Conduction Rack. SkillTo Assemble: Quantum FT: 458 -> 520\n\n 11. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 282 -> 320" +} diff --git a/modules/standard/recipe/recipes/495.json b/modules/standard/recipe/recipes/495.json new file mode 100644 index 0000000..b30b4c2 --- /dev/null +++ b/modules/standard/recipe/recipes/495.json @@ -0,0 +1,8 @@ +{ + "name": "Senior Light Beamer Pistol", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Senior Light Beamer Pistol'\nThe Construction kit. must be between Quality Level 147 and 162.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\n Add in following order:\n\n 1. Pistol Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 588 -> 648\n\n 2. Nano Pylon. SkillTo Assemble: Mech. Engi: 368 -> 405\n\n 3. Short Composite Barrel. SkillTo Assemble: Weapon Smt: 478 -> 526\n\n 4. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 368 -> 405\n\n 5. Energy Conduction Rack. SkillTo Assemble: Quantum FT: 478 -> 526\n\n 6. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 294 -> 324\n\n 7. Hyper Carbo-Ceramic Cooling System. SkillTo Assemble: Weapon Smt: 588 -> 648\n\n 8. Plasma Streamer Interface Nozzle. SkillTo Assemble: Chemistry: 588 -> 648\n\n 9. Self-Cleaning KO-CR Device. SkillTo Assemble: Weapon Smt: 514 -> 567\n\n 10. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 220 -> 243" +} diff --git a/modules/standard/recipe/recipes/496.json b/modules/standard/recipe/recipes/496.json new file mode 100644 index 0000000..b505765 --- /dev/null +++ b/modules/standard/recipe/recipes/496.json @@ -0,0 +1,8 @@ +{ + "name": "Senior Mini Axe", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Senior Mini Axe'\nThe Construction kit. must be between Quality Level 141 and 160.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\nAdd the pieces in the following order:\n\n 1. One Handed Edged Weapons Construction kit.\n\n 2. Optimized Co-Weapon Interface. . SkillTo Assemble: Comp. Liter: 423-480\n\n 3. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 212-240\n\n 4. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 282-320\n\n 5. Short Handle. . SkillTo Assemble: Weapon Smt: 494-560" +} diff --git a/modules/standard/recipe/recipes/497.json b/modules/standard/recipe/recipes/497.json new file mode 100644 index 0000000..34e3e33 --- /dev/null +++ b/modules/standard/recipe/recipes/497.json @@ -0,0 +1,8 @@ +{ + "name": "Senior Minigrinner", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Senior Minigrinner'\nThe Construction kit. must be between Quality Level 141 and 160.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\n Add in following order:\n\n 1. Pistol Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 564 -> 640\n\n 2. Ultra Short Composite Barrel. SkillTo Assemble: Weapon Smt: 423 -> 480\n\n 3. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 352 -> 400\n\n 4. Explosion Propulsion Containment Chamber. SkillTo Assemble: Mech. Engi: 494 -> 560\n\n 5. Nano Pylon. SkillTo Assemble: Mech. Engi: 352 -> 400\n\n 6. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 212 -> 240\n\n 7. Nano Pylon. SkillTo Assemble: Mech. Engi: 352 -> 400\n\n 8. Hyper Carbo-Ceramic Cooling System. SkillTo Assemble: Weapon Smt: 564 -> 640\n\n 9. Triple Pulse Enabler. SkillTo Assemble: Weapon Smt: 599 -> 680\n\n 10. Lock and Stock. SkillTo Assemble: Weapon Smt: 564 -> 640\n\n 11. Self-Cleaning KO-CR Device. SkillTo Assemble: Weapon Smt: 494 -> 560\n\n 12. Gyro Stabilizing Unit. SkillTo Assemble: Weapon Smt: 634 -> 720" +} diff --git a/modules/standard/recipe/recipes/498.json b/modules/standard/recipe/recipes/498.json new file mode 100644 index 0000000..88fa8a4 --- /dev/null +++ b/modules/standard/recipe/recipes/498.json @@ -0,0 +1,8 @@ +{ + "name": "Senior Notum Spear", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Senior Notum Spear'\nThe Construction kit. must be between Quality Level 141 and 160.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\nAdd the pieces in the following order:\n\n 1. Piercing Weapons Construction kit.\n\n 2. Notum Enriched Nano Paste - 4x Layer. . SkillTo Assemble: Nano Progra: 352-400\n\n 3. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 282-320\n\n 4. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 212-240\n\n 5. Medium Handle. . SkillTo Assemble: Weapon Smt: 518-588\n\n 6. Optimized Co-Weapon Interface. . SkillTo Assemble: Comp. Liter: 423-480\n\n 7. Energy Impact Super Conductor. . SkillTo Assemble: Elec. Engi: 564-640" +} diff --git a/modules/standard/recipe/recipes/499.json b/modules/standard/recipe/recipes/499.json new file mode 100644 index 0000000..e76ba7c --- /dev/null +++ b/modules/standard/recipe/recipes/499.json @@ -0,0 +1,8 @@ +{ + "name": "Senior Notum Staff", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Senior Notum Staff'\nThe Construction kit. must be between Quality Level 141 and 160.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\nAdd the pieces in the following order:\n\n 1. Two Handed Blunt Weapons Construction kit.\n\n 2. Basic Co-Weapon Interface. . SkillTo Assemble: Comp. Liter: 317-360\n\n 3. Short Handle. . SkillTo Assemble: Weapon Smt: 494-560\n\n 4. 8x Layer Carbon-Notum Alloy Rod. . SkillTo Assemble: Weapon Smt: 670-760\n\n 5. 4x Layer Carbon-Notum Alloy Rod. . SkillTo Assemble: Weapon Smt: 634-720\n\n 6. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 212-240\n\n 7. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 282-320\n\n 8. Notum Enriched Nano Paste - 4x Layer. . SkillTo Assemble: Nano Progra: 352-400" +} diff --git a/modules/standard/recipe/recipes/50.json b/modules/standard/recipe/recipes/50.json new file mode 100644 index 0000000..7d25de2 --- /dev/null +++ b/modules/standard/recipe/recipes/50.json @@ -0,0 +1,31 @@ +{ + "name": "Hologram", + "author": "", + "items": [ + { + "alias": "Expendable Hologram Camera", + "item_id": 156054 + }, + { + "alias": "Hologram PD: Barrel", + "item_id": 160580 + }, + { + "alias": "Hologram Projector: Barrel", + "item_id": 160583 + } + ], + "steps": [ + { + "source": "Hologram PD: Barrel", + "target": "Expendable Hologram Camera", + "result": "Hologram Projector: Barrel", + "skills": "EE" + } + ], + "details": [ + { + "text": "Available only to agents, it allows them to disguise themselves as different objects, such as a crate" + } + ] +} \ No newline at end of file diff --git a/modules/standard/recipe/recipes/500.json b/modules/standard/recipe/recipes/500.json new file mode 100644 index 0000000..e65dceb --- /dev/null +++ b/modules/standard/recipe/recipes/500.json @@ -0,0 +1,8 @@ +{ + "name": "Senior Right Slice", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Senior Right Slice'\nThe Construction kit. must be between Quality Level 141 and 160.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\nAdd the pieces in the following order:\n\n 1. One Handed Edged Weapons Construction kit.\n\n 2. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 282-320\n\n 3. Short Handle. . SkillTo Assemble: Weapon Smt: 494-560\n\n 4. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 212-240\n\n 5. Optimized Co-Weapon Interface. . SkillTo Assemble: Comp. Liter: 423-480" +} diff --git a/modules/standard/recipe/recipes/501.json b/modules/standard/recipe/recipes/501.json new file mode 100644 index 0000000..3990598 --- /dev/null +++ b/modules/standard/recipe/recipes/501.json @@ -0,0 +1,8 @@ +{ + "name": "Senior Slank Chop", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Senior Slank Chop'\nThe Construction kit. must be between Quality Level 141 and 160.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\nAdd the pieces in the following order:\n\n 1. Piercing Weapons Construction kit.\n\n 2. 4x Layer Carbon-Notum Alloy Blade. . SkillTo Assemble: Weapon Smt: 423-480\n\n 3. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 282-320\n\n 4. Hyper-Optimized Co-Weapon Interface. . SkillTo Assemble: Comp. Liter: 564-640\n\n 5. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 212-240\n\n 6. Short Handle. . SkillTo Assemble: Weapon Smt: 494-560" +} diff --git a/modules/standard/recipe/recipes/502.json b/modules/standard/recipe/recipes/502.json new file mode 100644 index 0000000..9bc7b7f --- /dev/null +++ b/modules/standard/recipe/recipes/502.json @@ -0,0 +1,8 @@ +{ + "name": "Senior Sleekblaster", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Senior Sleekblaster'\nThe Construction kit. must be between Quality Level 141 and 160.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\n Add in following order:\n\n 1. Energy Weapons Construction kit. SkillTo Assemble: Weapon Smt: 564 -> 640\n\n 2. Hyper Carbo-Ceramic Cooling System. SkillTo Assemble: Weapon Smt: 564 -> 640\n\n 3. Energy Pack Interface. SkillTo Assemble: Elec. Engi: 564 -> 640\n\n 4. Composite Barrel. SkillTo Assemble: Weapon Smt: 529 -> 600\n\n 5. Rapid-Reload-And-Fire Gyro. SkillTo Assemble: Weapon Smt: 564 -> 640\n\n 6. Energy Conduction Rack. SkillTo Assemble: Quantum FT: 458 -> 520\n\n 7. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 282 -> 320\n\n 8. Nano Pylon. SkillTo Assemble: Mech. Engi: 352 -> 400\n\n 9. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 352 -> 400\n\n 10. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 212 -> 240\n\n 11. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 352 -> 400\n\n 12. Nano Pylon. SkillTo Assemble: Mech. Engi: 352 -> 400\n\n 13. Jandawit Cleanup Cluster. SkillTo Assemble: Weapon Smt: 494 -> 560" +} diff --git a/modules/standard/recipe/recipes/503.json b/modules/standard/recipe/recipes/503.json new file mode 100644 index 0000000..7180e11 --- /dev/null +++ b/modules/standard/recipe/recipes/503.json @@ -0,0 +1,8 @@ +{ + "name": "Senior Sleekblaster Major", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Senior Sleekblaster Major'\nThe Construction kit. must be between Quality Level 141 and 160.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\n Add in following order:\n\n 1. Energy Weapons Construction kit. SkillTo Assemble: Weapon Smt: 564 -> 640\n\n 2. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 352 -> 400\n\n 3. Flake Tubing Base Cooling System. SkillTo Assemble: Weapon Smt: 564 -> 640\n\n 4. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 282 -> 320\n\n 5. Composite Barrel. SkillTo Assemble: Weapon Smt: 529 -> 600\n\n 6. Self-Cleaning KO-CR Device. SkillTo Assemble: Weapon Smt: 494 -> 560\n\n 7. Rapid-Reload-And-Fire Gyro. SkillTo Assemble: Weapon Smt: 564 -> 640\n\n 8. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 352 -> 400\n\n 9. Nano Pylon. SkillTo Assemble: Mech. Engi: 352 -> 400\n\n 10. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 212 -> 240\n\n 11. Nano Pylon. SkillTo Assemble: Mech. Engi: 352 -> 400\n\n 12. Energy Pack Interface. SkillTo Assemble: Elec. Engi: 564 -> 640\n\n 13. Energy Conduction Rack. SkillTo Assemble: Quantum FT: 458 -> 520" +} diff --git a/modules/standard/recipe/recipes/504.json b/modules/standard/recipe/recipes/504.json new file mode 100644 index 0000000..b8d8392 --- /dev/null +++ b/modules/standard/recipe/recipes/504.json @@ -0,0 +1,8 @@ +{ + "name": "Senior Sleekblaster Minor", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Senior Sleekblaster Minor'\nThe Construction kit. must be between Quality Level 141 and 160.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\n Add in following order:\n\n 1. Energy Weapons Construction kit. SkillTo Assemble: Weapon Smt: 564 -> 640\n\n 2. Short Composite Barrel. SkillTo Assemble: Weapon Smt: 458 -> 520\n\n 3. Energy Pack Interface. SkillTo Assemble: Elec. Engi: 564 -> 640\n\n 4. Nano Pylon. SkillTo Assemble: Mech. Engi: 352 -> 400\n\n 5. Flake Tubing Base Cooling System. SkillTo Assemble: Weapon Smt: 564 -> 640\n\n 6. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 282 -> 320\n\n 7. Jandawit Cleanup Cluster. SkillTo Assemble: Weapon Smt: 494 -> 560\n\n 8. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 212 -> 240\n\n 9. Energy Conduction Rack. SkillTo Assemble: Quantum FT: 458 -> 520\n\n 10. Rapid-Reload-And-Fire Gyro. SkillTo Assemble: Weapon Smt: 564 -> 640" +} diff --git a/modules/standard/recipe/recipes/505.json b/modules/standard/recipe/recipes/505.json new file mode 100644 index 0000000..31920b5 --- /dev/null +++ b/modules/standard/recipe/recipes/505.json @@ -0,0 +1,8 @@ +{ + "name": "Senior Triplejolt", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Senior Triplejolt'\nThe Construction kit. must be between Quality Level 141 and 160.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\n Add in following order:\n\n 1. Shotgun Weapons Construction kit. SkillTo Assemble: Weapon Smt: 564 -> 640\n\n 2. Nano Pylon. SkillTo Assemble: Mech. Engi: 352 -> 400\n\n 3. Energy Conduction Rack. SkillTo Assemble: Quantum FT: 458 -> 520\n\n 4. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 212 -> 240\n\n 5. Jandawit Cleanup Cluster. SkillTo Assemble: Weapon Smt: 494 -> 560\n\n 6. Nano Pylon. SkillTo Assemble: Mech. Engi: 352 -> 400\n\n 7. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 352 -> 400\n\n 8. Rapid-Reload-And-Fire Gyro. SkillTo Assemble: Weapon Smt: 564 -> 640\n\n 9. Ultra Short Composite Barrel. SkillTo Assemble: Weapon Smt: 423 -> 480\n\n 10. Radioactive Isotope Fusion System. SkillTo Assemble: Quantum FT: 564 -> 640\n\n 11. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 282 -> 320\n\n 12. Hyper Carbo-Ceramic Cooling System. SkillTo Assemble: Weapon Smt: 564 -> 640" +} diff --git a/modules/standard/recipe/recipes/506.json b/modules/standard/recipe/recipes/506.json new file mode 100644 index 0000000..8204b2d --- /dev/null +++ b/modules/standard/recipe/recipes/506.json @@ -0,0 +1,8 @@ +{ + "name": "Senior Whings", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Senior Whings'\nThe Construction kit. must be between Quality Level 141 and 160.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\n Add in following order:\n\n 1. Two Handed Edged Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 564 -> 640\n\n 2. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 282 -> 320\n\n 3. 8x Layer Carbon-Notum Alloy Blade. SkillTo Assemble: Weapon Smt: 494 -> 560\n\n 4. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 212 -> 240\n\n 5. 4x Layer Carbon-Notum Alloy Blade. SkillTo Assemble: Weapon Smt: 423 -> 480\n\n 6. Long Handle. SkillTo Assemble: Weapon Smt: 529 -> 600\n\n 7. Optimized Co-Weapon Interface. SkillTo Assemble: Comp. Liter: 423 -> 480\n\n 8. Notum Enriched Nano Paste - 4x Layer. SkillTo Assemble: Nano Progra: 352 -> 400" +} diff --git a/modules/standard/recipe/recipes/507.json b/modules/standard/recipe/recipes/507.json new file mode 100644 index 0000000..a26d8bc --- /dev/null +++ b/modules/standard/recipe/recipes/507.json @@ -0,0 +1,8 @@ +{ + "name": "Sharp Notum Spear", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Sharp Notum Spear'\nThe Construction kit. must be between Quality Level 121 and 140.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\nAdd the pieces in the following order:\n\n 1. Piercing Weapons Construction kit.\n\n 2. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 182-210\n\n 3. Medium Handle. . SkillTo Assemble: Weapon Smt: 445-514\n\n 4. Notum Enriched Nano Paste - 4x Layer. . SkillTo Assemble: Nano Progra: 302-350\n\n 5. Energy Impact Super Conductor. . SkillTo Assemble: Elec. Engi: 484-560\n\n 6. Optimized Co-Weapon Interface. . SkillTo Assemble: Comp. Liter: 363-420\n\n 7. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 242-280" +} diff --git a/modules/standard/recipe/recipes/508.json b/modules/standard/recipe/recipes/508.json new file mode 100644 index 0000000..aaeb410 --- /dev/null +++ b/modules/standard/recipe/recipes/508.json @@ -0,0 +1,8 @@ +{ + "name": "Sharp Notum Staff", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Sharp Notum Staff'\nThe Construction kit. must be between Quality Level 121 and 140.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\nAdd the pieces in the following order:\n\n 1. Two Handed Blunt Weapons Construction kit.\n\n 2. 8x Layer Carbon-Notum Alloy Rod. . SkillTo Assemble: Weapon Smt: 575-665\n\n 3. Notum Enriched Nano Paste - 4x Layer. . SkillTo Assemble: Nano Progra: 302-350\n\n 4. Short Handle. . SkillTo Assemble: Weapon Smt: 424-490\n\n 5. Basic Co-Weapon Interface. . SkillTo Assemble: Comp. Liter: 272-315\n\n 6. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 182-210\n\n 7. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 242-280\n\n 8. 4x Layer Carbon-Notum Alloy Rod. . SkillTo Assemble: Weapon Smt: 544-630" +} diff --git a/modules/standard/recipe/recipes/509.json b/modules/standard/recipe/recipes/509.json new file mode 100644 index 0000000..b88a40c --- /dev/null +++ b/modules/standard/recipe/recipes/509.json @@ -0,0 +1,8 @@ +{ + "name": "Sharp Whings", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Sharp Whings'\nThe Construction kit. must be between Quality Level 121 and 140.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\n Add in following order:\n\n 1. Two Handed Edged Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 484 -> 560\n\n 2. Notum Enriched Nano Paste - 4x Layer. SkillTo Assemble: Nano Progra: 302 -> 350\n\n 3. Long Handle. SkillTo Assemble: Weapon Smt: 454 -> 525\n\n 4. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 182 -> 210\n\n 5. 8x Layer Carbon-Notum Alloy Blade. SkillTo Assemble: Weapon Smt: 424 -> 490\n\n 6. Optimized Co-Weapon Interface. SkillTo Assemble: Comp. Liter: 363 -> 420\n\n 7. 4x Layer Carbon-Notum Alloy Blade. SkillTo Assemble: Weapon Smt: 363 -> 420\n\n 8. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 242 -> 280" +} diff --git a/modules/standard/recipe/recipes/51.json b/modules/standard/recipe/recipes/51.json new file mode 100644 index 0000000..86ccab3 --- /dev/null +++ b/modules/standard/recipe/recipes/51.json @@ -0,0 +1,45 @@ +{ + "name": "Implant Disassembly Clinic", + "author": "", + "items": [ + { + "alias": "Portable Surgery Clinic", + "item_id": 43551 + }, + { + "alias": "Hacker Tool", + "item_id": 87814 + }, + { + "alias": "Implant Disassembly Unit", + "item_id": 161864 + }, + { + "alias": "Hacked Portable Surgery Clinic", + "item_id": 161765 + }, + { + "alias": "Implant Disassembly Clinic", + "item_id": 161867 + } + ], + "steps": [ + { + "source": "Hacker Tool", + "target": "Portable Surgery Clinic", + "result": "Hacked Portable Surgery Clinic", + "skills": "BE,CL" + }, + { + "source": "Implant Disassembly Unit", + "target": "Hacked Portable Surgery Clinic", + "result": "Implant Disassembly Clinic", + "skills": "EE,CL" + } + ], + "details": [ + { + "text": "This Clinic can only be worn by Fixers, but can be used by all. Added to the fact that it adds a bit of Treatement, you can use it to remove all the Clusters present on an Implant, thus creating a new Basic Implant of same QL. Don't forget that the Clusters are lost during the process." + } + ] +} \ No newline at end of file diff --git a/modules/standard/recipe/recipes/510.json b/modules/standard/recipe/recipes/510.json new file mode 100644 index 0000000..2a2ce76 --- /dev/null +++ b/modules/standard/recipe/recipes/510.json @@ -0,0 +1,8 @@ +{ + "name": "Simple Abigail", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Simple Abigail'\nThe Construction kit. must be between Quality Level 31 and 60.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\nAdd the pieces in the following order:\n\n 1. Rifle Weapons Construction kit.\n\n 2. Explosion Propulsion Containment Chamber. . SkillTo Assemble: Mech. Engi: 108-210\n\n 3. Runtime Critical Area Analyzer. . SkillTo Assemble: Weapon Smt: 124-240\n\n 4. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 62-120\n\n 5. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 78-150\n\n 6. Self-Repairing Ultra-X. . SkillTo Assemble: Weapon Smt: 108-210\n\n 7. Short Composite Barrel. . SkillTo Assemble: Weapon Smt: 101-195\n\n 8. Nano-Interfaced Cooling System. . SkillTo Assemble: Weapon Smt: 124-240\n\n 9. Nano Pylon. . SkillTo Assemble: Mech. Engi: 78-150\n\n 10. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 46-90\n\n 11. Lock and Stock. . SkillTo Assemble: Weapon Smt: 124-240" +} diff --git a/modules/standard/recipe/recipes/511.json b/modules/standard/recipe/recipes/511.json new file mode 100644 index 0000000..13d9153 --- /dev/null +++ b/modules/standard/recipe/recipes/511.json @@ -0,0 +1,8 @@ +{ + "name": "Simple Fiddle Rifle", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Simple Fiddle Rifle'\nThe Construction kit. must be between Quality Level 31 and 60.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\nAdd the pieces in the following order:\n\n 1. Rifle Weapons Construction kit.\n\n 2. Hyper Carbo-Ceramic Cooling System. . SkillTo Assemble: Weapon Smt: 124-240\n\n 3. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 46-90\n\n 4. Lock and Stock. . SkillTo Assemble: Weapon Smt: 124-240\n\n 5. Ultra-Long Composite Barrel. . SkillTo Assemble: Weapon Smt: 132-255\n\n 6. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 78-150\n\n 7. Runtime Critical Area Analyzer. . SkillTo Assemble: Weapon Smt: 124-240\n\n 8. Nano Pylon. . SkillTo Assemble: Mech. Engi: 78-150\n\n 9. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 78-150\n\n 10. Nano Pylon. . SkillTo Assemble: Mech. Engi: 78-150\n\n 11. Explosion Propulsion Containment Chamber. . SkillTo Assemble: Mech. Engi: 108-210\n\n 12. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 62-120" +} diff --git a/modules/standard/recipe/recipes/512.json b/modules/standard/recipe/recipes/512.json new file mode 100644 index 0000000..89d5f51 --- /dev/null +++ b/modules/standard/recipe/recipes/512.json @@ -0,0 +1,8 @@ +{ + "name": "Simple MTI Aleph 99", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Simple MTI Aleph 99'\nThe Construction kit. must be between Quality Level 21 and 40.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\nAdd the pieces in the following order:\n\n 1. Submachinegun Weapons Construction kit.\n\n 2. Nano Pylon. . SkillTo Assemble: Mech. Engi: 52-100\n\n 3. Ultra-Long Composite Barrel. . SkillTo Assemble: Weapon Smt: 89-170\n\n 4. Stamina Cluster - Faded (Waist). . SkillTo Assemble: Nano Progra: 21-40\n\n 5. Nano Pylon. . SkillTo Assemble: Mech. Engi: 52-100\n\n 6. Triple Pulse Enabler. . SkillTo Assemble: Weapon Smt: 89-170\n\n 7. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 52-100\n\n 8. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 42-80\n\n 9. Explosion Propulsion Containment Chamber. . SkillTo Assemble: Mech. Engi: 74-140\n\n 10. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 32-60\n\n 11. Lock and Stock. . SkillTo Assemble: Weapon Smt: 84-160" +} diff --git a/modules/standard/recipe/recipes/513.json b/modules/standard/recipe/recipes/513.json new file mode 100644 index 0000000..de55303 --- /dev/null +++ b/modules/standard/recipe/recipes/513.json @@ -0,0 +1,8 @@ +{ + "name": "Solid Fiddle Rifle", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Solid Fiddle Rifle'\nThe Construction kit. must be between Quality Level 91 and 120.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\nAdd the pieces in the following order:\n\n 1. Rifle Weapons Construction kit.\n\n 2. Lock and Stock. . SkillTo Assemble: Weapon Smt: 364-480\n\n 3. Nano Pylon. . SkillTo Assemble: Mech. Engi: 228-300\n\n 4. Hyper Carbo-Ceramic Cooling System. . SkillTo Assemble: Weapon Smt: 364-480\n\n 5. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 228-300\n\n 6. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 228-300\n\n 7. Ultra-Long Composite Barrel. . SkillTo Assemble: Weapon Smt: 387-510\n\n 8. Runtime Critical Area Analyzer. . SkillTo Assemble: Weapon Smt: 364-480\n\n 9. Nano Pylon. . SkillTo Assemble: Mech. Engi: 228-300\n\n 10. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 136-180\n\n 11. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 182-240\n\n 12. Explosion Propulsion Containment Chamber. . SkillTo Assemble: Mech. Engi: 318-420" +} diff --git a/modules/standard/recipe/recipes/514.json b/modules/standard/recipe/recipes/514.json new file mode 100644 index 0000000..e189ed1 --- /dev/null +++ b/modules/standard/recipe/recipes/514.json @@ -0,0 +1,8 @@ +{ + "name": "Spear of the Night", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Spear of the Night'\nThe Construction kit. must be between Quality Level 200 and 200.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\nAdd the pieces in the following order:\n\n 1. Piercing Weapons Construction kit.\n\n 2. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 400-400\n\n 3. Sneak Atck Cluster - Shiny (Feet). . SkillTo Assemble: Nano Progra: 600-600\n\n 4. Max Health Cluster - Shiny (Chest). . SkillTo Assemble: Nano Progra: 600-600\n\n 5. Notum Enriched Nano Paste - 4x Layer. . SkillTo Assemble: Nano Progra: 500-500\n\n 6. Medium Handle. . SkillTo Assemble: Weapon Smt: 735-735\n\n 7. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 300-300\n\n 8. Optimized Co-Weapon Interface. . SkillTo Assemble: Comp. Liter: 600-600" +} diff --git a/modules/standard/recipe/recipes/515.json b/modules/standard/recipe/recipes/515.json new file mode 100644 index 0000000..c12b941 --- /dev/null +++ b/modules/standard/recipe/recipes/515.json @@ -0,0 +1,8 @@ +{ + "name": "Strong Luxembourg Inferno Rifle", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Strong Luxembourg Inferno Rifle'\nThe Construction kit. must be between Quality Level 91 and 120.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\n Add in following order:\n\n 1. Rifle Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 364 -> 480\n\n 2. Rapid-Reload-And-Fire Gyro. SkillTo Assemble: Weapon Smt: 364 -> 480\n\n 3. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 136 -> 180\n\n 4. Hyper Carbo-Ceramic Cooling System. SkillTo Assemble: Weapon Smt: 364 -> 480\n\n 5. Nano Pylon. SkillTo Assemble: Mech. Engi: 228 -> 300\n\n 6. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 182 -> 240\n\n 7. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 228 -> 300\n\n 8. Long Composite Barrel. SkillTo Assemble: Weapon Smt: 364 -> 480\n\n 9. Plasma Streamer Interface Nozzle. SkillTo Assemble: Chemistry: 364 -> 480\n\n 10. Nano Pylon. SkillTo Assemble: Mech. Engi: 228 -> 300\n\n 11. Jandawit Cleanup Cluster. SkillTo Assemble: Weapon Smt: 318 -> 420\n\n 12. Compression Chamber for Chemicals. SkillTo Assemble: Weapon Smt: 387 -> 510\n\n 13. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 228 -> 300" +} diff --git a/modules/standard/recipe/recipes/516.json b/modules/standard/recipe/recipes/516.json new file mode 100644 index 0000000..961857d --- /dev/null +++ b/modules/standard/recipe/recipes/516.json @@ -0,0 +1,8 @@ +{ + "name": "Subturbine", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Subturbine'\nThe Construction kit. must be between Quality Level 81 and 100.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\n Add in following order:\n\n 1. AssaultRifle Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 324 -> 400\n\n 2. Short Composite Barrel. SkillTo Assemble: Weapon Smt: 263 -> 325\n\n 3. Explosion Propulsion Containment Chamber. SkillTo Assemble: Mech. Engi: 284 -> 350\n\n 4. Gyro Stabilizing Unit. SkillTo Assemble: Weapon Smt: 364 -> 450\n\n 5. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 202 -> 250\n\n 6. Nano Pylon. SkillTo Assemble: Mech. Engi: 202 -> 250\n\n 7. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 122 -> 150\n\n 8. Hyper Carbo-Ceramic Cooling System. SkillTo Assemble: Weapon Smt: 324 -> 400\n\n 9. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 162 -> 200\n\n 10. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 202 -> 250\n\n 11. Notum Enriched Nano Paste - 4x Layer. SkillTo Assemble: Nano Progra: 202 -> 250\n\n 12. Lock and Stock. SkillTo Assemble: Weapon Smt: 324 -> 400\n\n 13. Nano Pylon. SkillTo Assemble: Mech. Engi: 202 -> 250\n\n 14. Self-Cleaning KO-CR Device. SkillTo Assemble: Weapon Smt: 284 -> 350\n\n 15. Triple Pulse Enabler. SkillTo Assemble: Weapon Smt: 344 -> 425" +} diff --git a/modules/standard/recipe/recipes/517.json b/modules/standard/recipe/recipes/517.json new file mode 100644 index 0000000..7f08309 --- /dev/null +++ b/modules/standard/recipe/recipes/517.json @@ -0,0 +1,8 @@ +{ + "name": "Superior Abigail", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Superior Abigail'\nThe Construction kit. must be between Quality Level 181 and 181.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\nAdd the pieces in the following order:\n\n 1. Rifle Weapons Construction kit.\n\n 2. Nano Pylon. . SkillTo Assemble: Mech. Engi: 452-452\n\n 3. Explosion Propulsion Containment Chamber. . SkillTo Assemble: Mech. Engi: 634-634\n\n 4. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 362-362\n\n 5. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 272-272\n\n 6. Short Composite Barrel. . SkillTo Assemble: Weapon Smt: 588-588\n\n 7. Runtime Critical Area Analyzer. . SkillTo Assemble: Weapon Smt: 724-724\n\n 8. Self-Repairing Ultra-X. . SkillTo Assemble: Weapon Smt: 634-634\n\n 9. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 452-452\n\n 10. Lock and Stock. . SkillTo Assemble: Weapon Smt: 724-724\n\n 11. Nano-Interfaced Cooling System. . SkillTo Assemble: Weapon Smt: 724-724" +} diff --git a/modules/standard/recipe/recipes/518.json b/modules/standard/recipe/recipes/518.json new file mode 100644 index 0000000..443f6b5 --- /dev/null +++ b/modules/standard/recipe/recipes/518.json @@ -0,0 +1,8 @@ +{ + "name": "Superior Amytlo Executioner", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Superior Amytlo Executioner'\nThe Construction kit. must be between Quality Level 161 and 161.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\nAdd the pieces in the following order:\n\n 1. One Handed Edged Weapons Construction kit.\n\n 2. Medium Handle. . SkillTo Assemble: Weapon Smt: 592-592\n\n 3. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 322-322\n\n 4. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 242-242\n\n 5. Optimized Co-Weapon Interface. . SkillTo Assemble: Comp. Liter: 483-483" +} diff --git a/modules/standard/recipe/recipes/519.json b/modules/standard/recipe/recipes/519.json new file mode 100644 index 0000000..55b5381 --- /dev/null +++ b/modules/standard/recipe/recipes/519.json @@ -0,0 +1,8 @@ +{ + "name": "Superior Fiddle Rifle", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Superior Fiddle Rifle'\nThe Construction kit. must be between Quality Level 181 and 181.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\nAdd the pieces in the following order:\n\n 1. Rifle Weapons Construction kit.\n\n 2. Hyper Carbo-Ceramic Cooling System. . SkillTo Assemble: Weapon Smt: 724-724\n\n 3. Nano Pylon. . SkillTo Assemble: Mech. Engi: 452-452\n\n 4. Ultra-Long Composite Barrel. . SkillTo Assemble: Weapon Smt: 769-769\n\n 5. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 452-452\n\n 6. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 272-272\n\n 7. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 452-452\n\n 8. Runtime Critical Area Analyzer. . SkillTo Assemble: Weapon Smt: 724-724\n\n 9. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 362-362\n\n 10. Nano Pylon. . SkillTo Assemble: Mech. Engi: 452-452\n\n 11. Lock and Stock. . SkillTo Assemble: Weapon Smt: 724-724\n\n 12. Explosion Propulsion Containment Chamber. . SkillTo Assemble: Mech. Engi: 634-634" +} diff --git a/modules/standard/recipe/recipes/52.json b/modules/standard/recipe/recipes/52.json new file mode 100644 index 0000000..f40bc55 --- /dev/null +++ b/modules/standard/recipe/recipes/52.json @@ -0,0 +1,39 @@ +{ + "name": "Improved Immortal Katana", + "author": "", + "items": [ + { + "alias": "Faded Immortal Katana", + "item_id": 154893 + }, + { + "alias": "Broken Immortal Katana", + "item_id": 154907 + }, + { + "alias": "Immortal Katana", + "item_id": 154505 + }, + { + "alias": "SSC Reversive Energy-Packs", + "item_id": 154943 + }, + { + "alias": "Improved Immortal Katana", + "item_id": 155863 + } + ], + "steps": [ + { + "source": "SSC Reversive Energy-Packs", + "target": "Immortal Katana", + "result": "Improved Immortal Katana", + "skills": "EE" + } + ], + "details": [ + { + "text": "Faded Immortal Katana, Broken Immortal Katana and Immortal Katana can all be upgraded but only the faded version of the Immortal Katana seems to be worth upgrading." + } + ] +} \ No newline at end of file diff --git a/modules/standard/recipe/recipes/520.json b/modules/standard/recipe/recipes/520.json new file mode 100644 index 0000000..5cddd4d --- /dev/null +++ b/modules/standard/recipe/recipes/520.json @@ -0,0 +1,8 @@ +{ + "name": "Superior Luxembourg Inferno Rifle", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Superior Luxembourg Inferno Rifle'\nThe Construction kit. must be between Quality Level 181 and 181.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\n Add in following order:\n\n 1. Rifle Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 724 -> 724\n\n 2. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 452 -> 452\n\n 3. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 272 -> 272\n\n 4. Nano Pylon. SkillTo Assemble: Mech. Engi: 452 -> 452\n\n 5. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 362 -> 362\n\n 6. Plasma Streamer Interface Nozzle. SkillTo Assemble: Chemistry: 724 -> 724\n\n 7. Long Composite Barrel. SkillTo Assemble: Weapon Smt: 724 -> 724\n\n 8. Jandawit Cleanup Cluster. SkillTo Assemble: Weapon Smt: 634 -> 634\n\n 9. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 452 -> 452\n\n 10. Rapid-Reload-And-Fire Gyro. SkillTo Assemble: Weapon Smt: 724 -> 724\n\n 11. Compression Chamber for Chemicals. SkillTo Assemble: Weapon Smt: 769 -> 769\n\n 12. Nano Pylon. SkillTo Assemble: Mech. Engi: 452 -> 452\n\n 13. Hyper Carbo-Ceramic Cooling System. SkillTo Assemble: Weapon Smt: 724 -> 724" +} diff --git a/modules/standard/recipe/recipes/521.json b/modules/standard/recipe/recipes/521.json new file mode 100644 index 0000000..666d53a --- /dev/null +++ b/modules/standard/recipe/recipes/521.json @@ -0,0 +1,8 @@ +{ + "name": "Superior Michael Patriot Ffi 29A", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Superior Michael Patriot Ffi 29A'\nThe Construction kit. must be between Quality Level 81 and 100.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\nAdd the pieces in the following order:\n\n 1. Submachinegun Weapons Construction kit.\n\n 2. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 162-200\n\n 3. Plasma Streamer Interface Nozzle. . SkillTo Assemble: Chemistry: 324-400\n\n 4. Ultra-Long Composite Barrel. . SkillTo Assemble: Weapon Smt: 344-425\n\n 5. Explosion Propulsion Containment Chamber. . SkillTo Assemble: Mech. Engi: 284-350\n\n 6. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 122-150\n\n 7. Triple Pulse Enabler. . SkillTo Assemble: Weapon Smt: 344-425\n\n 8. Flake Tubing Base Cooling System. . SkillTo Assemble: Weapon Smt: 324-400\n\n 9. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 202-250\n\n 10. Nano Pylon. . SkillTo Assemble: Mech. Engi: 202-250\n\n 11. Jandawit Cleanup Cluster. . SkillTo Assemble: Weapon Smt: 284-350\n\n 12. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 202-250\n\n 13. Nano Pylon. . SkillTo Assemble: Mech. Engi: 202-250" +} diff --git a/modules/standard/recipe/recipes/522.json b/modules/standard/recipe/recipes/522.json new file mode 100644 index 0000000..f7bfeb8 --- /dev/null +++ b/modules/standard/recipe/recipes/522.json @@ -0,0 +1,8 @@ +{ + "name": "Supernova Mk VI", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Supernova Mk VI'\nThe Construction kit. must be between Quality Level 81 and 100.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\nAdd the pieces in the following order:\n\n 1. Energy Weapons Construction kit.\n\n 2. Auto Targeting C. -IIR 5 -Powermolder-. . SkillTo Assemble: Elec. Engi: 263-325\n\n 3. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 202-250\n\n 4. Nano Pylon. . SkillTo Assemble: Mech. Engi: 202-250\n\n 5. Ultra-Long Composite Barrel. . SkillTo Assemble: Weapon Smt: 344-425\n\n 6. Energy Pack Interface. . SkillTo Assemble: Elec. Engi: 324-400\n\n 7. Runtime Critical Area Analyzer. . SkillTo Assemble: Weapon Smt: 324-400\n\n 8. Nano Pylon. . SkillTo Assemble: Mech. Engi: 202-250\n\n 9. Energy Conduction Rack. . SkillTo Assemble: Quantum FT: 263-325\n\n 10. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 202-250\n\n 11. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 122-150\n\n 12. Auto Targeting Computer -IIR 4 -Ultra-. . SkillTo Assemble: Elec. Engi: 243-300" +} diff --git a/modules/standard/recipe/recipes/523.json b/modules/standard/recipe/recipes/523.json new file mode 100644 index 0000000..ba75026 --- /dev/null +++ b/modules/standard/recipe/recipes/523.json @@ -0,0 +1,8 @@ +{ + "name": "Suppressor", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Suppressor'\nThe Construction kit. must be between Quality Level 81 and 100.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\nAdd the pieces in the following order:\n\n 1. Submachinegun Weapons Construction kit.\n\n 2. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 202-250\n\n 3. Lock and Stock. . SkillTo Assemble: Weapon Smt: 324-400\n\n 4. Triple Pulse Enabler. . SkillTo Assemble: Weapon Smt: 344-425\n\n 5. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 202-250\n\n 6. Explosion Propulsion Containment Chamber. . SkillTo Assemble: Mech. Engi: 284-350\n\n 7. Nano Pylon. . SkillTo Assemble: Mech. Engi: 202-250\n\n 8. Nano Pylon. . SkillTo Assemble: Mech. Engi: 202-250\n\n 9. Gyro Stabilizing Unit. . SkillTo Assemble: Weapon Smt: 364-450\n\n 10. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 122-150\n\n 11. Ultra-Long Composite Barrel. . SkillTo Assemble: Weapon Smt: 344-425" +} diff --git a/modules/standard/recipe/recipes/524.json b/modules/standard/recipe/recipes/524.json new file mode 100644 index 0000000..370d88b --- /dev/null +++ b/modules/standard/recipe/recipes/524.json @@ -0,0 +1,8 @@ +{ + "name": "Training Bladestaff", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Training Bladestaff'\nThe Construction kit. must be between Quality Level 24 and 46.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\nAdd the pieces in the following order:\n\n 1. Two Handed Edged Weapons Construction kit.\n\n 2. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 36-69\n\n 3. 2h Edged Cluster - Faded (Waist). . SkillTo Assemble: Nano Progra: 24-46\n\n 4. 8x Layer Carbon-Notum Alloy Blade. . SkillTo Assemble: Weapon Smt: 84-161\n\n 5. Medium Handle. . SkillTo Assemble: Weapon Smt: 88-169\n\n 6. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 48-92\n\n 7. 4x Layer Carbon-Notum Alloy Blade. . SkillTo Assemble: Weapon Smt: 72-138\n\n 8. Notum Enriched Nano Paste - 4x Layer. . SkillTo Assemble: Nano Progra: 60-115\n\n 9. Optimized Co-Weapon Interface. . SkillTo Assemble: Comp. Liter: 72-138" +} diff --git a/modules/standard/recipe/recipes/525.json b/modules/standard/recipe/recipes/525.json new file mode 100644 index 0000000..e5afed8 --- /dev/null +++ b/modules/standard/recipe/recipes/525.json @@ -0,0 +1,8 @@ +{ + "name": "Tripler", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Tripler'\nThe Construction kit. must be between Quality Level 93 and 115.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\nAdd the pieces in the following order:\n\n 1. One Handed Edged Weapons Construction kit.\n\n 2. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 140-172\n\n 3. 1h Edged Weapon Cluster - Faded (Right-Hand). . SkillTo Assemble: Nano Progra: 93-115\n\n 4. Optimized Co-Weapon Interface. . SkillTo Assemble: Comp. Liter: 279-345\n\n 5. Short Handle. . SkillTo Assemble: Weapon Smt: 326-402" +} diff --git a/modules/standard/recipe/recipes/526.json b/modules/standard/recipe/recipes/526.json new file mode 100644 index 0000000..7e1faa8 --- /dev/null +++ b/modules/standard/recipe/recipes/526.json @@ -0,0 +1,8 @@ +{ + "name": "Turbo Mass Cannon 42mm", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Turbo Mass Cannon 42mm'\nThe Construction kit. must be between Quality Level 200 and 200.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\nAdd the pieces in the following order:\n\n 1. AssaultRifle Weapons Construction kit.\n\n 2. Explosion Propulsion Containment Chamber. . SkillTo Assemble: Mech. Engi: 700-700\n\n 3. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 300-300\n\n 4. Primitive Freon Bag Cooling System. . SkillTo Assemble: Weapon Smt: 800-800\n\n 5. Nano Pylon. . SkillTo Assemble: Mech. Engi: 500-500\n\n 6. Triple Pulse Enabler. . SkillTo Assemble: Weapon Smt: 850-850\n\n 7. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 500-500\n\n 8. Lock and Stock. . SkillTo Assemble: Weapon Smt: 800-800\n\n 9. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 400-400\n\n 10. Auto Targeting Computer -IIR 1. . SkillTo Assemble: Elec. Engi: 450-450\n\n 11. Nano Pylon. . SkillTo Assemble: Mech. Engi: 500-500\n\n 12. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 500-500\n\n 13. Short Composite Barrel. . SkillTo Assemble: Weapon Smt: 650-650\n\n 14. Gyro Stabilizing Unit. . SkillTo Assemble: Weapon Smt: 900-900" +} diff --git a/modules/standard/recipe/recipes/527.json b/modules/standard/recipe/recipes/527.json new file mode 100644 index 0000000..28431bc --- /dev/null +++ b/modules/standard/recipe/recipes/527.json @@ -0,0 +1,8 @@ +{ + "name": "Unbalanced Mini Axe", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Unbalanced Mini Axe'\nThe Construction kit. must be between Quality Level 1 and 20.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\nAdd the pieces in the following order:\n\n 1. One Handed Edged Weapons Construction kit.\n\n 2. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 2-30\n\n 3. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 2-40\n\n 4. Optimized Co-Weapon Interface. . SkillTo Assemble: Comp. Liter: 3-60\n\n 5. Short Handle. . SkillTo Assemble: Weapon Smt: 4-70" +} diff --git a/modules/standard/recipe/recipes/528.json b/modules/standard/recipe/recipes/528.json new file mode 100644 index 0000000..c1ad5cd --- /dev/null +++ b/modules/standard/recipe/recipes/528.json @@ -0,0 +1,8 @@ +{ + "name": "Unbalanced Right Slice", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Unbalanced Right Slice'\nThe Construction kit. must be between Quality Level 1 and 20.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\nAdd the pieces in the following order:\n\n 1. One Handed Edged Weapons Construction kit.\n\n 2. Optimized Co-Weapon Interface. . SkillTo Assemble: Comp. Liter: 3-60\n\n 3. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 2-40\n\n 4. Short Handle. . SkillTo Assemble: Weapon Smt: 4-70\n\n 5. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 2-30" +} diff --git a/modules/standard/recipe/recipes/529.json b/modules/standard/recipe/recipes/529.json new file mode 100644 index 0000000..823bfbe --- /dev/null +++ b/modules/standard/recipe/recipes/529.json @@ -0,0 +1,8 @@ +{ + "name": "Uptuned Abigail", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Uptuned Abigail'\nThe Construction kit. must be between Quality Level 91 and 120.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\nAdd the pieces in the following order:\n\n 1. Rifle Weapons Construction kit.\n\n 2. Explosion Propulsion Containment Chamber. . SkillTo Assemble: Mech. Engi: 318-420\n\n 3. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 228-300\n\n 4. Short Composite Barrel. . SkillTo Assemble: Weapon Smt: 296-390\n\n 5. Nano Pylon. . SkillTo Assemble: Mech. Engi: 228-300\n\n 6. Lock and Stock. . SkillTo Assemble: Weapon Smt: 364-480\n\n 7. Runtime Critical Area Analyzer. . SkillTo Assemble: Weapon Smt: 364-480\n\n 8. Nano-Interfaced Cooling System. . SkillTo Assemble: Weapon Smt: 364-480\n\n 9. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 136-180\n\n 10. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 182-240\n\n 11. Self-Repairing Ultra-X. . SkillTo Assemble: Weapon Smt: 318-420" +} diff --git a/modules/standard/recipe/recipes/53.json b/modules/standard/recipe/recipes/53.json new file mode 100644 index 0000000..c43b9e9 --- /dev/null +++ b/modules/standard/recipe/recipes/53.json @@ -0,0 +1,30 @@ +{ + "name": "Improved Solar Trader Shotgun", + "author": "", + "items": [ + { + "alias": "Screwdriver", + "item_id": 150922 + }, + { + "alias": "Solar-Powered Shotgun", + "item_id": 121570 + }, + { + "alias": "Improved Solar Trader Shotgun", + "item_id": 243846 + } + ], + "steps": [ + { + "source": "Screwdriver", + "target": "Solar-Powered Shotgun", + "result": "Improved Solar Trader Shotgun" + } + ], + "details": [ + { + "text": "Improve your noob island weapon." + } + ] +} \ No newline at end of file diff --git a/modules/standard/recipe/recipes/530.json b/modules/standard/recipe/recipes/530.json new file mode 100644 index 0000000..23af5ef --- /dev/null +++ b/modules/standard/recipe/recipes/530.json @@ -0,0 +1,8 @@ +{ + "name": "Useless Triple-Blade", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Useless Triple-Blade'\nThe Construction kit. must be between Quality Level 1 and 23.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\n Add in following order:\n\n 1. One Handed Edged Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 4 -> 92\n\n 2. Short Handle. SkillTo Assemble: Weapon Smt: 4 -> 80\n\n 3. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 2 -> 46\n\n 4. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 2 -> 34\n\n 5. Optimized Co-Weapon Interface. SkillTo Assemble: Comp. Liter: 3 -> 69" +} diff --git a/modules/standard/recipe/recipes/531.json b/modules/standard/recipe/recipes/531.json new file mode 100644 index 0000000..399dbf0 --- /dev/null +++ b/modules/standard/recipe/recipes/531.json @@ -0,0 +1,8 @@ +{ + "name": "Worn Blackened Miniblaster", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Worn Blackened Miniblaster'\nThe Construction kit. must be between Quality Level 81 and 100.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\n Add in following order:\n\n 1. Pistol Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 324 -> 400\n\n 2. Jandawit Cleanup Cluster. SkillTo Assemble: Weapon Smt: 284 -> 350\n\n 3. Short Composite Barrel. SkillTo Assemble: Weapon Smt: 263 -> 325\n\n 4. Rapid-Reload-And-Fire Gyro. SkillTo Assemble: Weapon Smt: 324 -> 400\n\n 5. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 162 -> 200\n\n 6. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 202 -> 250\n\n 7. Energy Pack Interface. SkillTo Assemble: Elec. Engi: 324 -> 400\n\n 8. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 122 -> 150\n\n 9. Energy Conduction Rack. SkillTo Assemble: Quantum FT: 263 -> 325\n\n 10. Hyper Carbo-Ceramic Cooling System. SkillTo Assemble: Weapon Smt: 324 -> 400\n\n 11. Nano Pylon. SkillTo Assemble: Mech. Engi: 202 -> 250" +} diff --git a/modules/standard/recipe/recipes/532.json b/modules/standard/recipe/recipes/532.json new file mode 100644 index 0000000..6a4732d --- /dev/null +++ b/modules/standard/recipe/recipes/532.json @@ -0,0 +1,8 @@ +{ + "name": "Worn Kolt 58 Magnum", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Worn Kolt 58 Magnum'\nThe Construction kit. must be between Quality Level 81 and 100.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\n Add in following order:\n\n 1. Pistol Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 324 -> 400\n\n 2. Nano Pylon. SkillTo Assemble: Mech. Engi: 202 -> 250\n\n 3. Jandawit Cleanup Cluster. SkillTo Assemble: Weapon Smt: 284 -> 350\n\n 4. Hyper Carbo-Ceramic Cooling System. SkillTo Assemble: Weapon Smt: 324 -> 400\n\n 5. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 202 -> 250\n\n 6. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 202 -> 250\n\n 7. Explosion Propulsion Containment Chamber. SkillTo Assemble: Mech. Engi: 284 -> 350\n\n 8. Lock and Stock. SkillTo Assemble: Weapon Smt: 324 -> 400\n\n 9. Nano Pylon. SkillTo Assemble: Mech. Engi: 202 -> 250\n\n 10. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 122 -> 150\n\n 11. Rapid-Reload-And-Fire Gyro. SkillTo Assemble: Weapon Smt: 324 -> 400\n\n 12. Composite Barrel. SkillTo Assemble: Weapon Smt: 304 -> 375" +} diff --git a/modules/standard/recipe/recipes/533.json b/modules/standard/recipe/recipes/533.json new file mode 100644 index 0000000..84d24dc --- /dev/null +++ b/modules/standard/recipe/recipes/533.json @@ -0,0 +1,8 @@ +{ + "name": "Worn Kolt PDW-37", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Worn Kolt PDW-37'\nThe Construction kit. must be between Quality Level 81 and 100.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\n Add in following order:\n\n 1. Pistol Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 324 -> 400\n\n 2. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 122 -> 150\n\n 3. Rapid-Reload-And-Fire Gyro. SkillTo Assemble: Weapon Smt: 324 -> 400\n\n 4. Triple Pulse Enabler. SkillTo Assemble: Weapon Smt: 344 -> 425\n\n 5. Nano Pylon. SkillTo Assemble: Mech. Engi: 202 -> 250\n\n 6. Energy Pack Interface. SkillTo Assemble: Elec. Engi: 324 -> 400\n\n 7. Energy Conduction Rack. SkillTo Assemble: Quantum FT: 263 -> 325\n\n 8. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 162 -> 200\n\n 9. Hyper Carbo-Ceramic Cooling System. SkillTo Assemble: Weapon Smt: 324 -> 400\n\n 10. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 202 -> 250\n\n 11. Short Composite Barrel. SkillTo Assemble: Weapon Smt: 263 -> 325" +} diff --git a/modules/standard/recipe/recipes/534.json b/modules/standard/recipe/recipes/534.json new file mode 100644 index 0000000..001c491 --- /dev/null +++ b/modules/standard/recipe/recipes/534.json @@ -0,0 +1,8 @@ +{ + "name": "Worn Light Beamer Pistol", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Worn Light Beamer Pistol'\nThe Construction kit. must be between Quality Level 99 and 114.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\n Add in following order:\n\n 1. Pistol Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 396 -> 456\n\n 2. Energy Conduction Rack. SkillTo Assemble: Quantum FT: 322 -> 370\n\n 3. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 198 -> 228\n\n 4. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 248 -> 285\n\n 5. Self-Cleaning KO-CR Device. SkillTo Assemble: Weapon Smt: 346 -> 399\n\n 6. Short Composite Barrel. SkillTo Assemble: Weapon Smt: 322 -> 370\n\n 7. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 148 -> 171\n\n 8. Nano Pylon. SkillTo Assemble: Mech. Engi: 248 -> 285\n\n 9. Hyper Carbo-Ceramic Cooling System. SkillTo Assemble: Weapon Smt: 396 -> 456\n\n 10. Plasma Streamer Interface Nozzle. SkillTo Assemble: Chemistry: 396 -> 456" +} diff --git a/modules/standard/recipe/recipes/535.json b/modules/standard/recipe/recipes/535.json new file mode 100644 index 0000000..613255a --- /dev/null +++ b/modules/standard/recipe/recipes/535.json @@ -0,0 +1,8 @@ +{ + "name": "Worn Minigrinner", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Worn Minigrinner'\nThe Construction kit. must be between Quality Level 81 and 100.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\n Add in following order:\n\n 1. Pistol Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 324 -> 400\n\n 2. Gyro Stabilizing Unit. SkillTo Assemble: Weapon Smt: 364 -> 450\n\n 3. Nano Pylon. SkillTo Assemble: Mech. Engi: 202 -> 250\n\n 4. Lock and Stock. SkillTo Assemble: Weapon Smt: 324 -> 400\n\n 5. Explosion Propulsion Containment Chamber. SkillTo Assemble: Mech. Engi: 284 -> 350\n\n 6. Ultra Short Composite Barrel. SkillTo Assemble: Weapon Smt: 243 -> 300\n\n 7. Nano Pylon. SkillTo Assemble: Mech. Engi: 202 -> 250\n\n 8. Self-Cleaning KO-CR Device. SkillTo Assemble: Weapon Smt: 284 -> 350\n\n 9. Triple Pulse Enabler. SkillTo Assemble: Weapon Smt: 344 -> 425\n\n 10. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 202 -> 250\n\n 11. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 122 -> 150\n\n 12. Hyper Carbo-Ceramic Cooling System. SkillTo Assemble: Weapon Smt: 324 -> 400" +} diff --git a/modules/standard/recipe/recipes/536.json b/modules/standard/recipe/recipes/536.json new file mode 100644 index 0000000..ecf58a8 --- /dev/null +++ b/modules/standard/recipe/recipes/536.json @@ -0,0 +1,8 @@ +{ + "name": "Worn Sleekblaster", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Worn Sleekblaster'\nThe Construction kit. must be between Quality Level 81 and 100.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\n Add in following order:\n\n 1. Energy Weapons Construction kit. SkillTo Assemble: Weapon Smt: 324 -> 400\n\n 2. Hyper Carbo-Ceramic Cooling System. SkillTo Assemble: Weapon Smt: 324 -> 400\n\n 3. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 122 -> 150\n\n 4. Composite Barrel. SkillTo Assemble: Weapon Smt: 304 -> 375\n\n 5. Rapid-Reload-And-Fire Gyro. SkillTo Assemble: Weapon Smt: 324 -> 400\n\n 6. Nano Pylon. SkillTo Assemble: Mech. Engi: 202 -> 250\n\n 7. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 202 -> 250\n\n 8. Jandawit Cleanup Cluster. SkillTo Assemble: Weapon Smt: 284 -> 350\n\n 9. Nano Pylon. SkillTo Assemble: Mech. Engi: 202 -> 250\n\n 10. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 202 -> 250\n\n 11. Energy Pack Interface. SkillTo Assemble: Elec. Engi: 324 -> 400\n\n 12. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 162 -> 200\n\n 13. Energy Conduction Rack. SkillTo Assemble: Quantum FT: 263 -> 325" +} diff --git a/modules/standard/recipe/recipes/537.json b/modules/standard/recipe/recipes/537.json new file mode 100644 index 0000000..de3d6f3 --- /dev/null +++ b/modules/standard/recipe/recipes/537.json @@ -0,0 +1,8 @@ +{ + "name": "Worn Sleekblaster Major", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Worn Sleekblaster Major'\nThe Construction kit. must be between Quality Level 81 and 100.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\n Add in following order:\n\n 1. Energy Weapons Construction kit. SkillTo Assemble: Weapon Smt: 324 -> 400\n\n 2. Nano Pylon. SkillTo Assemble: Mech. Engi: 202 -> 250\n\n 3. Energy Pack Interface. SkillTo Assemble: Elec. Engi: 324 -> 400\n\n 4. Nano Pylon. SkillTo Assemble: Mech. Engi: 202 -> 250\n\n 5. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 202 -> 250\n\n 6. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 122 -> 150\n\n 7. Flake Tubing Base Cooling System. SkillTo Assemble: Weapon Smt: 324 -> 400\n\n 8. Composite Barrel. SkillTo Assemble: Weapon Smt: 304 -> 375\n\n 9. Rapid-Reload-And-Fire Gyro. SkillTo Assemble: Weapon Smt: 324 -> 400\n\n 10. Energy Conduction Rack. SkillTo Assemble: Quantum FT: 263 -> 325\n\n 11. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 202 -> 250\n\n 12. Self-Cleaning KO-CR Device. SkillTo Assemble: Weapon Smt: 284 -> 350\n\n 13. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 162 -> 200" +} diff --git a/modules/standard/recipe/recipes/538.json b/modules/standard/recipe/recipes/538.json new file mode 100644 index 0000000..882a8f7 --- /dev/null +++ b/modules/standard/recipe/recipes/538.json @@ -0,0 +1,8 @@ +{ + "name": "Worn Sleekblaster Minor", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Worn Sleekblaster Minor'\nThe Construction kit. must be between Quality Level 81 and 100.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\n Add in following order:\n\n 1. Energy Weapons Construction kit. SkillTo Assemble: Weapon Smt: 324 -> 400\n\n 2. Jandawit Cleanup Cluster. SkillTo Assemble: Weapon Smt: 284 -> 350\n\n 3. Short Composite Barrel. SkillTo Assemble: Weapon Smt: 263 -> 325\n\n 4. Nano Pylon. SkillTo Assemble: Mech. Engi: 202 -> 250\n\n 5. Energy Conduction Rack. SkillTo Assemble: Quantum FT: 263 -> 325\n\n 6. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 162 -> 200\n\n 7. Flake Tubing Base Cooling System. SkillTo Assemble: Weapon Smt: 324 -> 400\n\n 8. Rapid-Reload-And-Fire Gyro. SkillTo Assemble: Weapon Smt: 324 -> 400\n\n 9. Energy Pack Interface. SkillTo Assemble: Elec. Engi: 324 -> 400\n\n 10. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 122 -> 150" +} diff --git a/modules/standard/recipe/recipes/539.json b/modules/standard/recipe/recipes/539.json new file mode 100644 index 0000000..6e79f63 --- /dev/null +++ b/modules/standard/recipe/recipes/539.json @@ -0,0 +1,8 @@ +{ + "name": "Worn Triplejolt", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "\n\nThis Instruction Manual will teach you how to assemble a:\n 'Worn Triplejolt'\nThe Construction kit. must be between Quality Level 81 and 100.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\n Add in following order:\n\n 1. Shotgun Weapons Construction kit. SkillTo Assemble: Weapon Smt: 324 -> 400\n\n 2. Ultra Short Composite Barrel. SkillTo Assemble: Weapon Smt: 243 -> 300\n\n 3. Jandawit Cleanup Cluster. SkillTo Assemble: Weapon Smt: 284 -> 350\n\n 4. Nano Pylon. SkillTo Assemble: Mech. Engi: 202 -> 250\n\n 5. Nano Pylon. SkillTo Assemble: Mech. Engi: 202 -> 250\n\n 6. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 202 -> 250\n\n 7. Energy Conduction Rack. SkillTo Assemble: Quantum FT: 263 -> 325\n\n 8. Hyper Carbo-Ceramic Cooling System. SkillTo Assemble: Weapon Smt: 324 -> 400\n\n 9. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 122 -> 150\n\n 10. Radioactive Isotope Fusion System. SkillTo Assemble: Quantum FT: 324 -> 400\n\n 11. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 162 -> 200\n\n 12. Rapid-Reload-And-Fire Gyro. SkillTo Assemble: Weapon Smt: 324 -> 400" +} diff --git a/modules/standard/recipe/recipes/54.json b/modules/standard/recipe/recipes/54.json new file mode 100644 index 0000000..11d5206 --- /dev/null +++ b/modules/standard/recipe/recipes/54.json @@ -0,0 +1,41 @@ +{ + "name": "Improving Weapons", + "author": "", + "items": [ + { + "alias": "Robot Instruction Disc (Improve Slashing Weapons)", + "item_id": 155533 + }, + { + "alias": "Ultimate Mass Relocating Robot", + "item_id": 155592 + }, + { + "alias": "Symbol Library - Space", + "item_id": 144790 + }, + { + "alias": "Photon Particle Emitter", + "item_id": 144812 + }, + { + "alias": "Robot Compiled Algorithm (Improve Slashing Weapons)", + "item_id": 155534 + }, + { + "alias": "Mass Relocating Robot (Improve Slashing Weapons)", + "item_id": 155594 + }, + { + "alias": "Grandmaster Click Stabber", + "item_id": 152776 + }, + { + "alias": "Much Improved Click Stabber", + "item_id": 157820 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients\n------------------------------\n\nRobot Instruction Disc (Improve Weapons)\n( ie #L \"Robot Instruction Disc (Improve Slashing Weapons)\" \"155533\" )\n\n\n#L \"Mass Relocating Robot\" \"155592\"\n\n\n#L \"Symbol Library - Space\" \"144790\"\n\n\n#L \"Photon Particle Emitter\" \"144812\"\n\n\n------------------------------\nRecipe\n------------------------------\n\nRobot Instruction Disc (Improve Weapons)\n+\nSymbol Library - Space\n=\n\nRobot Compiled Algorithm (Improve Weapons)\n( ie : #L \"Robot Compiled Algorithm (Improve Slashing Weapons)\" \"155534\" )\nSkills: | NP,CL |\n\n------------------------------\n\nPhoton Particle Emitter\n+\nRobot Compiled Algorithm (Improve Weapons)\n=\n\nProgrammed Photon Particle Emitter (Improve Weapons)\n( ie : #L \"Programmed Photon Particle Emitter (Improve Slashing Weapons)\" \"155544\" )\nSkills: | NP |\n\n------------------------------\n\nMass Relocating Robot\n+\nProgrammed Photon Particle Emitter (Improve Weapons)\n=\n\nMass Relocating Robot (Improve Weapons)\n( ie : #L \"Mass Relocating Robot (Improve Slashing Weapons)\" \"155594\" )\nSkills: | ?? |\n\n------------------------------\nUses\n------------------------------\n\nOnce you have your Mass Relocating Robot (Improve Weapons), you can now use it to improve some weapons, of which you'll find the list, depending of the the type of your Mass Relocating Robot.\n\nImprove Crushing Weapons\nAdvanced Baseballbat\nClub\nStun-Baton\n \nImprove Slashing Weapons\nTripler\nWhings\nCutlass\nMeatcleaver\nZenith Taichi\nBurning Crescent\n\nImprove Thrusting Weapons\nSlank Chop\nGofleprod\nClick Stabber\n\n------------------------------\nComments\n------------------------------\n\nThe best thing to do is compare, before the process : #L \"Grandmaster Click Stabber\" \"152776\", and afterward :#L \"Much Improved Click Stabber\" \"157820\"." +} diff --git a/modules/standard/recipe/recipes/55.json b/modules/standard/recipe/recipes/55.json new file mode 100644 index 0000000..75d61aa --- /dev/null +++ b/modules/standard/recipe/recipes/55.json @@ -0,0 +1,171 @@ +{ + "name": "Cyberdeck Upgrades", + "author": "", + "items": [ + { + "alias": "Izgimmer-modified Cyberdeck", + "item_id": 233454 + }, + { + "alias": "Circular Kyr'Ozch Chip Mold", + "item_id": 253155 + }, + { + "alias": "Square Kyr'Ozch Chip Mold", + "item_id": 253157 + }, + { + "alias": "Triangular Kyr'Ozch Chip Mold", + "item_id": 253159 + }, + { + "alias": "Izgimmer Speed-modified Cyberdeck", + "item_id": 253194 + } + ], + "steps": [ + { + "source": "Circular Kyr'Ozch Chip Mold", + "target": "Izgimmer-modified Cyberdeck", + "result": "Izgimmer Speed-modified Cyberdeck", + "skills": "BE,CL" + } + ], + "details": [ + { + "item": { + "id": 253167, + "comment": "Using on the Izgimmer-modified Cyberdeck will remove the chip (and destroy the chip in the process)" + } + }, + { + "item": { + "id": 253155, + "comment": "Adds 150 Nano Init" + } + }, + { + "item": { + "id": 253157, + "comment": "Adds 3% Damage" + } + }, + { + "item": { + "id": 253199, + "comment": "Adds -5% Nano Cost" + } + }, + { + "text": "Other versions of the Cyberdeck" + }, + { + "item": { + "id": 253195 + } + }, + { + "item": { + "id": 253198 + } + }, + { + "item": { + "id": 253201 + } + }, + { + "item": { + "id": 253204 + } + }, + { + "item": { + "id": 253207 + } + }, + { + "item": { + "id": 253210 + } + }, + { + "item": { + "id": 253213 + } + }, + { + "item": { + "id": 253196 + } + }, + { + "item": { + "id": 253199 + } + }, + { + "item": { + "id": 253202 + } + }, + { + "item": { + "id": 253205 + } + }, + { + "item": { + "id": 253208 + } + }, + { + "item": { + "id": 253209 + } + }, + { + "item": { + "id": 253212 + } + }, + { + "item": { + "id": 253194 + } + }, + { + "item": { + "id": 253197 + } + }, + { + "item": { + "id": 253200 + } + }, + { + "item": { + "id": 253203 + } + }, + { + "item": { + "id": 253206 + } + }, + { + "item": { + "id": 253211 + } + }, + { + "item": { + "id": 253214 + } + }, + { + "text": "Nice improvements for the NT Cyberdeck. An already-uber item." + } + ] +} \ No newline at end of file diff --git a/modules/standard/recipe/recipes/555.json b/modules/standard/recipe/recipes/555.json new file mode 100644 index 0000000..2782248 --- /dev/null +++ b/modules/standard/recipe/recipes/555.json @@ -0,0 +1,21 @@ +{ + "name": "Stalker Helmet", + "author": "", + "items": [ + { + "alias": "Stalker Carapace", + "item_id": 247817 + }, + { + "alias": "MasterComm - Personalization Device", + "item_id": 156025 + }, + { + "alias": "Stalker Helmet", + "item_id": 247803 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients\n------------------------------\n\n#L \"Stalker Carapace\" \"247817\"\n\n\n#L \"MasterComm - Personalization Device\" \"156025\"\n\n\n------------------------------\nRecipe\n------------------------------\n\nMasterComm - Personalization Device\n+\nStalker Carapace\n=\n\n#L \"Stalker Helmet\" \"247803\"\nSkills: | ?? |\n\n------------------------------\nComments\n------------------------------\n\nTurn a stalker into a helmet as a trophie of your kill :D" +} diff --git a/modules/standard/recipe/recipes/556.json b/modules/standard/recipe/recipes/556.json new file mode 100644 index 0000000..5a5f499 --- /dev/null +++ b/modules/standard/recipe/recipes/556.json @@ -0,0 +1,37 @@ +{ + "name": "Strong Regenerating Bioplate", + "author": "", + "items": [ + { + "alias": "Stalker Carapace", + "item_id": 247817 + }, + { + "alias": "Neutron Displacer", + "item_id": 144786 + }, + { + "alias": "Rollerrat Queen Blood", + "item_id": 247758 + }, + { + "alias": "Advanced Bio-Comminutor", + "item_id": 154332 + }, + { + "alias": "Rollerrat Queen Erythrocyte", + "item_id": 247759 + }, + { + "alias": "Non-Regenerating Bioplate", + "item_id": 247755 + }, + { + "alias": "Strong Regenerating Bioplate", + "item_id": 247757 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients\n------------------------------\n\n#L \"Stalker Carapace\" \"247817\"\n\n\n#L \"Neutron Displacer\" \"144786\"\n\n\n#L \"Rollerrat Queen Blood\" \"247758\"\n\n\n#L \"Advanced Bio-Comminutor\" \"154332\"\n\n\n------------------------------\nRecipe\n------------------------------\n\nAdvanced Bio-Comminutor\n+\nRollerrat Queen Blood\n=\n\n#L \"Rollerrat Queen Erythrocyte\" \"247759\"\nSkills: | PT400 |\n\n------------------------------\n\nNeutron Displacer\n+\nStalker Carapace\n=\n\n#L \"Non-Regenerating Bioplate\" \"247755\"\nSkills: | ?? |\n\n------------------------------\n\nRollerrat Queen Erythrocyte\n+\nNon-Regenerating Bioplate\n=\n\n#L \"Strong Regenerating Bioplate\" \"247757\"\nSkills: | ?? |\n\n------------------------------\nComments\n------------------------------\n\nUsed in player Buildings." +} diff --git a/modules/standard/recipe/recipes/557.json b/modules/standard/recipe/recipes/557.json new file mode 100644 index 0000000..e7e5e03 --- /dev/null +++ b/modules/standard/recipe/recipes/557.json @@ -0,0 +1,21 @@ +{ + "name": "Arctic Metaplast Mace", + "author": "", + "items": [ + { + "alias": "Viral Weapon Upgrade", + "item_id": 248517 + }, + { + "alias": "Premium Metaplast Mace", + "item_id": 142854 + }, + { + "alias": "Premium Arctic Metaplast Mace", + "item_id": 249035 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients\n------------------------------\n\n#L \"Viral Weapon Upgrade\" \"248517\"\n\n\n#L \"Metaplast Mace\" \"142854\"\n\n\n------------------------------\nRecipe\n------------------------------\n\nViral Weapon Upgrade\n+\nMetaplast Mace\n=\n\n#L \"Premium Arctic Metaplast Mace\" \"249035\"\nSkills: | WS |\n\n------------------------------\nComments\n------------------------------\n\nWeapon with HP buff." +} diff --git a/modules/standard/recipe/recipes/558.json b/modules/standard/recipe/recipes/558.json new file mode 100644 index 0000000..9425f5d --- /dev/null +++ b/modules/standard/recipe/recipes/558.json @@ -0,0 +1,21 @@ +{ + "name": "Fantaghiro BBI-Viral", + "author": "", + "items": [ + { + "alias": "Viral Weapon Upgrade", + "item_id": 248517 + }, + { + "alias": "BBI AS-90 Gold Star", + "item_id": 124382 + }, + { + "alias": "Fantaghiro BBI-Viral Gold Star", + "item_id": 248588 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients\n------------------------------\n\n#L \"Viral Weapon Upgrade\" \"248517\"\n\n\n#L \"BBI AS-90\" \"124382\"\n\n\n------------------------------\nRecipe\n------------------------------\n\nViral Weapon Upgrade\n+\nBBI AS-90 Gold Star\n=\n\n#L \"Fantaghiro BBI-Viral\" \"248588\"\nSkills: | WS |\n\n------------------------------\nComments\n------------------------------\n\nSome nice mods." +} diff --git a/modules/standard/recipe/recipes/559.json b/modules/standard/recipe/recipes/559.json new file mode 100644 index 0000000..deca90f --- /dev/null +++ b/modules/standard/recipe/recipes/559.json @@ -0,0 +1,189 @@ +{ + "name": "ICC Shuttleport Weapons", + "author": "", + "items": [ + { + "alias": "Antonio's Adaptation Factory", + "item_id": 248306 + }, + { + "alias": "Solar-Powered Shotgun", + "item_id": 121570 + }, + { + "alias": "Stalker Limb", + "item_id": 248314 + }, + { + "alias": "Polishing Tool", + "item_id": 248313 + }, + { + "alias": "Polished Eliminator", + "item_id": 248345 + }, + { + "alias": "Caustic Meta Shield", + "item_id": 248342 + }, + { + "alias": "Salamander Bile", + "item_id": 248337 + }, + { + "alias": "Bile Cartridge", + "item_id": 248336 + }, + { + "alias": "Shaolin Sporting Bow", + "item_id": 248354 + }, + { + "alias": "Rollerrat Intestines", + "item_id": 248333 + }, + { + "alias": "Gut Bowstring", + "item_id": 248332 + }, + { + "alias": "Balanced War Hammer", + "item_id": 248353 + }, + { + "alias": "Large Skull", + "item_id": 248330 + }, + { + "alias": "Reinforced Hammer Head", + "item_id": 248331 + }, + { + "alias": "Stabilized Silent Spitter", + "item_id": 248344 + }, + { + "alias": "Bone Plates", + "item_id": 248310 + }, + { + "alias": "Bone Stock", + "item_id": 248312 + }, + { + "alias": "Spine Sword", + "item_id": 248351 + }, + { + "alias": "Spinal Section", + "item_id": 248323 + }, + { + "alias": "Bone Cross Guard", + "item_id": 248324 + }, + { + "alias": "Wailing Bat", + "item_id": 248341 + }, + { + "alias": "Reet Beak", + "item_id": 248328 + }, + { + "alias": "Reet Beak Whistling Plug", + "item_id": 248327 + }, + { + "alias": "Injector Dagger", + "item_id": 248350 + }, + { + "alias": "Venom Sample", + "item_id": 248322 + }, + { + "alias": "Venom Cartridge", + "item_id": 248321 + }, + { + "alias": "Cerset Zapper Rifle", + "item_id": 248348 + }, + { + "alias": "Optical Enhancer", + "item_id": 248318 + }, + { + "alias": "Recalibrated Scope Unit", + "item_id": 248317 + }, + { + "alias": "Nizno's Bomb Thrower", + "item_id": 248346 + }, + { + "alias": "Compression Chamber", + "item_id": 248334 + }, + { + "alias": "Pneumatic Compression Chamber", + "item_id": 248335 + }, + { + "alias": "BO-18 (Blue Offset)", + "item_id": 248347 + }, + { + "alias": "Fluid Sample", + "item_id": 248315 + }, + { + "alias": "Chemical Tempering Fluid", + "item_id": 248316 + }, + { + "alias": "Surge Baseball Bat", + "item_id": 248355 + }, + { + "alias": "Power Supply", + "item_id": 248307 + }, + { + "alias": "Adapted Power Supply", + "item_id": 248308 + }, + { + "alias": "Grip Blade", + "item_id": 248352 + }, + { + "alias": "Leather Hide", + "item_id": 248325 + }, + { + "alias": "Leather Grip Tape", + "item_id": 248326 + }, + { + "alias": "Electrical Surge Pistol", + "item_id": 248343 + }, + { + "alias": "Screwdriver", + "item_id": 150922 + }, + { + "alias": "Improved Solar-Powered Shotgun", + "item_id": 243846 + }, + { + "alias": "Worn Sword", + "item_id": 218404 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients\n------------------------------\n\n#L \"Antonio's Adaptation Factory\" \"248306\"\n\n\na Startup weapon\n( ie : #L \"Solar-Powered Shotgun\" \"121570\" )\n\n\na special item\n( ie : #L \"Stalker Limb\" \"248314\" )\n\n\n------------------------------\nRecipe\n------------------------------\n\nAntonio's Adaptation Factory\n+\na special item\n=\n\na special upgrade\n( ie : #L \"Polishing Tool\" \"248313\" )\nSkills: | WS |\n\n------------------------------\n\na special upgrade\n+\na Startup weapon\n=\n\nan upgraded startup weapon\n( ie : #L \"Polished Eliminator\" \"248345\" )\nSkills: | WS |\n\n------------------------------\nDetails\n------------------------------\n\n#L \"Caustic Meta Shield\" \"248342\":\n#L \"Salamander Bile\" \"248337\"\n#L \"Bile Cartridge\" \"248336\"\n\n#L \"Shaolin Sporting Bow\" \"248354\":\n#L \"Rollerrat Intestines\" \"248333\"\n#L \"Gut Bowstring\" \"248332\"\n\n#L \"Balanced War Hammer\" \"248353\":\n#L \"Malle Skull\" \"248330\"\n#L \"Reinforced Hammer Head\" \"248331\"\n\n#L \"Stabilized Silent Spitter\" \"248344\":\n#L \"Bone Plates\" \"248310\"\n#L \"Bone Stock\" \"248312\"\n\n#L \"Leet Spine Sword\" \"248351\":\n#L \"Spinal Section\" \"248323\"\n#L \"Bone Cross Guard\" \"248324\"\n\n#L \"Wailing Bat\" \"248341\":\n#L \"Reet Beak\" \"248328\"\n#L \"Reet Beak Whistling Plug\" \"248327\"\n\n#L \"Injector Dirk\" \"248350\":\n#L \"Venom Sample\" \"248322\"\n#L \"Venom Cartridge\" \"248321\"\n\n#L \"Polished Eliminator\" \"248345\":\n#L \"Stalker Limb\" \"248314\"\n#L \"Polishing Tool\" \"248313\"\n\n#L \"Cerset Zapper Rifle\" \"248348\":\n#L \"Optical Enhancer\" \"248318\"\n#L \"Recalibrated Scope Unit\" \"248317\"\n\n#L \"Nizno's Bomb Thrower\" \"248346\":\n#L \"Compression Chamber\" \"248334\"\n#L \"Pneumatic Compression Chamber\" \"248335\"\n\n#L \"BO-18 (Blue Offset)\" \"248347\":\n#L \"Fluid Sample\" \"248315\"\n#L \"Chemical Tempering Fluid\" \"248316\"\n\n#L \"Surge Baseball Bat\" \"248355\":\n#L \"Power Supply\" \"248307\"\n#L \"Adapted Power Supply\" \"248308\"\n\n#L \"Salamander Grip Sword\" \"248352\":\n#L \"Swatch of Salamander Skin\" \"248325\"\n#L \"Salamander Skin Grip Tape\" \"248326\"\n\n#L \"Electrical Surge Pistol\" \"248343\":\n#L \"Power Supply\" \"248307\"\n#L \"Adapted Power Supply\" \"248308\"\n\n#L \"Solar-Powered Shotgun\" \"121570\"\n#L \"Screwdriver\" \"150922\"\n#L \"Improved Solar Trader Shotgun\" \"243846\"\n\n#L \"Tiny Sword\" \"218404\"\n#L \"Bone Cross Guard\" \"248324\"\n#L \"Leet Spine Sword\" \"248351\"\n\n------------------------------\nComments\n------------------------------\n\nUpgrade your startup weapons." +} diff --git a/modules/standard/recipe/recipes/56.json b/modules/standard/recipe/recipes/56.json new file mode 100644 index 0000000..8bfce7c --- /dev/null +++ b/modules/standard/recipe/recipes/56.json @@ -0,0 +1,73 @@ +{ + "name": "Jobe Armor Tier 2", + "author": "", + "items": [ + { + "alias": "Consanguineal Embryo of Yomi'Arallu", + "item_id": 239836 + }, + { + "alias": "Canister of Pure Liquid Notum", + "item_id": 223446 + }, + { + "alias": "Advent of the Industrious", + "item_id": 239475 + }, + { + "alias": "Will of the Reposeful", + "item_id": 239469 + }, + { + "alias": "Joker's Glyph", + "item_id": 227905 + }, + { + "alias": "Red Glyph of Enel", + "item_id": 218342 + }, + { + "alias": "Horned Black Glyph of Shere", + "item_id": 218347 + }, + { + "alias": "Red Glyph of Aban - Awakened", + "item_id": 227625 + }, + { + "alias": "Red Glyph of the Lovers", + "item_id": 227795 + }, + { + "alias": "Second Tier Doctor Suit Pants", + "item_id": 214756 + }, + { + "alias": "Advent of the Prudent", + "item_id": 239478 + }, + { + "alias": "Will of the Tempestuous", + "item_id": 239470 + }, + { + "alias": "Advent of the Impetuous", + "item_id": 239480 + }, + { + "alias": "Advent of the Passionate", + "item_id": 239479 + }, + { + "alias": "Advent of the Benign", + "item_id": 239476 + }, + { + "alias": "Will of the Unshakable", + "item_id": 239471 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients\n------------------------------\n\na piece of Jobe Armor Tier 1 #L \"Click here\" \"/tell recipe 58\" for recipe\n\n\n#L \"Consanguineal Embryo of Yomi'Arallu\" \"239836\"\n\n\n#L \"Canister Of Pure Liquid Notum\" \"223446\"\n\n\na special Advent x 3\n( ie : #L \"Advent of the Industrious \" \"239475\" )\n\n\na Will x 3 \n( ie #L \"Will of The Reposeful\" \"239469\" )\n\n\n------------------------------\nFirst\n------------------------------\n\nUpgrade your Jobe Armor Tier 1 up to lvl 160. Some jobe Armor part doesn't exist in Tier 1 form, but you can upgrade them to QL 160 using a #L \"Joker's Glyph\" \"227905\" on it.\n\nGo to jobe and give the Consanguineal Embryo of Yomi'Arallu and the Three Will to your Profession IPS, he will give you a Red Glyph ( ie #L \"Red Glyph of Enel\" \"218342\" ).\n\nThen, give him the 3 Advents, he will you a Glyph ( ie #L \"Horned Black Glyph of Shere\" \"218347\" ).\n\n------------------------------\nRecipe\n------------------------------\n\nCanister Of Pure Liquid Notum\n+\nRed Glyph\n=\n\nRed Glyph - Awakened\n( ie #L \"Red Glyph of Aban - Awakened\" \"227625\" )\nSkills: | QP |\n\n------------------------------\n\nRed Glyph - Awakened\n+\nGlyph\n=\n\nProfession Red Glyph\n( ie #L \"Red Glyph of the Lovers\" \"227795\" )\nSkills: | PS |\n\n------------------------------\n\nProfession Red Glyph\n+\na piece of Jobe Armor Tier 1\n=\n\na part of Jobe Armor Tier 2\n( ie #L \"Second Tier Doctor Suit Pants\" \"214755\" )\nSkills: | PS |\n\n------------------------------\nDetails\n------------------------------\n\nAdventurer\n#L \"Will of the Reposefull\" \"239469\"\n\n#L \"Advent of the Prudent\" \"239478\"\n\n\nAgent\n#L \"Will of the Tempestuous\" \"239470\"\n\n#L \"Advent of the Impetuous\" \"239480\"\n\n\nBureaucrat\n#L \"Will of the Tempestuous\" \"239470\"\n\n#L \"Advent of the Passionate\" \"239479\"\n\n\nDoctor\n#L \"Will of the Reposefull\" \"239469\"\n\n#L \"Advent of the Benign\" \"239476\"\n\n\nEnforcer\n#L \"Will of the Unshakable\" \"239471\"\n\n#L \"Advent of the Prudent\" \"239478\"\n\n\nEngineer\n#L \"Will of the Unshakable\" \"239471\"\n\n#L \"Advent of the Industrious\" \"239475\"\n\n\nFixer\n#L \"Will of the Reposefull\" \"239469\"\n\n#L \"Advent of the Impetuous\" \"239480\"\n\n\nKeeper\n#L \"Will of the Unshakable\" \"239471\"\n\n#L \"Advent of the Benign\" \"239476\"\n\n\nMartial Artist\n#L \"Will of the Unshakable\" \"239471\"\n\n#L \"Advent of the Impetuous\" \"239480\"\n\n\nMetaphysicist\n#L \"Will of the Reposefull\" \"239469\"\n\n#L \"Advent of the Passionate\" \"239479\"\n\n\nNano Technician\n#L \"Will of the Tempestuous\" \"239470\"\n\n#L \"Advent of the Benign\" \"239476\"\n\n\nShade\n#L \"Will of the Unshakable\" \"239471\"\n\n#L \"Advent of the Passionate\" \"239479\"\n\n\nSoldier\n#L \"Will of the Tempestuous\" \"239470\"\n\n#L \"Advent of the Prudent\" \"239478\"\n\n\nTrader\n#L \"Will of the Reposefull\" \"239469\"\n\n#L \"Advent of the Industrious\" \"239475\"\n\n\n------------------------------\nComments\n------------------------------\n\nThats tier 2 complete only #L \"Tier 3\" \"/tell recipe 57\" to go!" +} diff --git a/modules/standard/recipe/recipes/560.json b/modules/standard/recipe/recipes/560.json new file mode 100644 index 0000000..71a0ea3 --- /dev/null +++ b/modules/standard/recipe/recipes/560.json @@ -0,0 +1,21 @@ +{ + "name": "Kaetan Supernova", + "author": "", + "items": [ + { + "alias": "Viral Weapon Upgrade", + "item_id": 248517 + }, + { + "alias": "Premium Supernova Mk VI", + "item_id": 122595 + }, + { + "alias": "Premium Kaetans Supernova", + "item_id": 248577 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients\n------------------------------\n\n#L \"Viral Weapon Upgrade\" \"248517\"\n\n\n#L \"Supernova Mk VI\" \"122595\"\n\n\n------------------------------\nRecipe\n------------------------------\n\nViral Weapon Upgrade\n+\nSupernova Mk VI\n=\n\n#L \"Kaetans Supernova\" \"248577\"\nSkills: | WS |\n\n------------------------------\nComments\n------------------------------\n\nMore Viral Weapon upgrades." +} diff --git a/modules/standard/recipe/recipes/561.json b/modules/standard/recipe/recipes/561.json new file mode 100644 index 0000000..2c0ea4b --- /dev/null +++ b/modules/standard/recipe/recipes/561.json @@ -0,0 +1,21 @@ +{ + "name": "Merren Flamethrower", + "author": "", + "items": [ + { + "alias": "Viral Weapon Upgrade", + "item_id": 248517 + }, + { + "alias": "Premium Flamethrower", + "item_id": 121930 + }, + { + "alias": "Premium Merren Flamethrower", + "item_id": 248607 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients\n------------------------------\n\n#L \"Viral Weapon Upgrade\" \"248517\"\n\n\n#L \"Flamethrower\" \"121930\"\n\n\n------------------------------\nRecipe\n------------------------------\n\nViral Weapon Upgrade\n+\nFlamethrower\n=\n\n#L \"Merren Flamethrower\" \"248607\"\nSkills: | WS |\n\n------------------------------\nComments\n------------------------------\n\nMore Viral Weapon upgrades." +} diff --git a/modules/standard/recipe/recipes/562.json b/modules/standard/recipe/recipes/562.json new file mode 100644 index 0000000..72c22ff --- /dev/null +++ b/modules/standard/recipe/recipes/562.json @@ -0,0 +1,41 @@ +{ + "name": "Nano Input Hood", + "author": "", + "items": [ + { + "alias": "Inactive Nano Input Hood", + "item_id": 248815 + }, + { + "alias": "Fuzzy Swatch of Alien Fabric", + "item_id": 249704 + }, + { + "alias": "Fuzzy Nano Input Hood", + "item_id": 248764 + }, + { + "alias": "Fuzzy Nano Input Hood", + "item_id": 250460 + }, + { + "alias": "Wrinkled Swatch of Alien Fabric", + "item_id": 248822 + }, + { + "alias": "Wrinkled Nano Input Hood", + "item_id": 248758 + }, + { + "alias": "Phasing Swatch of Alien Fabric", + "item_id": 248776 + }, + { + "alias": "Phasing Nano Input Hood", + "item_id": 248814 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients\n------------------------------\n\n#L \"Inactive Nano Input Hood\" \"248815\"\n\n\na Swatch of Alien Fabric\n( ie : #L \"Fuzzy Swatch of Alien Fabric\" \"249704\" )\n\n\n------------------------------\nRecipe\n------------------------------\n\na special upgrade\n+\nInactive Nano Input Hood\n=\n\na Special Hood\n( ie : #L \"Fuzzy Nano Input Hood\" \"248764\" )\nSkills: | ?? |\n\n------------------------------\nDetails\n------------------------------\n\n#L \"Fuzzy Swatch of Alien Fabric\" \"249704\"\n=\n#L \"Fuzzy Nano Input Hood\" \"250460\"\n\n------------------------------\n#L \"Wrinkled Swatch of Alien Fabric\" \"248822\"\n=\n#L \"Wrinkled Nano Input Hood\" \"248758\"\n\n------------------------------\n#L \"Phasing Swatch of Alien Fabric\" \"248776\"\n=\n#L \"Phasing Nano Input Hood\" \"248814\"\n\n\n------------------------------\nComments\n------------------------------\n\nGreat head item which you can level by right clicking it." +} diff --git a/modules/standard/recipe/recipes/563.json b/modules/standard/recipe/recipes/563.json new file mode 100644 index 0000000..d7ac78a --- /dev/null +++ b/modules/standard/recipe/recipes/563.json @@ -0,0 +1,25 @@ +{ + "name": "Reanimator's Cloak", + "author": "", + "items": [ + { + "alias": "Pit Demon Heart", + "item_id": 245171 + }, + { + "alias": "Necromancer Cloak", + "item_id": 245170 + }, + { + "alias": "Advanced Bio-Comminutor", + "item_id": 154332 + }, + { + "alias": "Indigo Carmine", + "item_id": 245270 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients\n------------------------------\n\n#L \"Pit Demon Heart\" \"245171\"\n\n\n#L \"Necromancer Cloak\" \"245170\"\n\n\n#L \"Bio-Comminutor\" \"154332\"\n\n\n------------------------------\nRecipe\n------------------------------\n\nBio-Comminutor\n+\nPit Demon Heart\n=\n\n#L \"Indigo Carmine\" \"245270\"\nSkills: | CH525 |\n\n------------------------------\n\nIndigo Carmine\n+\nNecromancer Cloak\n=\n\n#L \"Reanimator's Cloak\" \"245260\"\nSkills: | CL450 |\n\n------------------------------\nComments\n------------------------------\n\nGreat back item which you can level by right clicking it." +} diff --git a/modules/standard/recipe/recipes/564.json b/modules/standard/recipe/recipes/564.json new file mode 100644 index 0000000..9ca9f54 --- /dev/null +++ b/modules/standard/recipe/recipes/564.json @@ -0,0 +1,21 @@ +{ + "name": "Nizno Bomb Blaster", + "author": "", + "items": [ + { + "alias": "Explosif Device", + "item_id": 251810 + }, + { + "alias": "Biomaterial Tubing", + "item_id": 253151 + }, + { + "alias": "Premium Nizno's Bomb Blaster", + "item_id": 253233 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients\n------------------------------\n\n#L \"Explosif Device\" \"251810\"\n\n\n#L \"Biomaterial Tubing\" \"253151\"\n\n\n------------------------------\nRecipe\n------------------------------\n\nExplosif Device\n+\nBiomaterial Tubing\n=\n\n#L \"Nizno's Bomb Blaster\" \"253233\"\nSkills: | WS |\n\n------------------------------\nComments\n------------------------------\n\nEngy make things go boom." +} diff --git a/modules/standard/recipe/recipes/565.json b/modules/standard/recipe/recipes/565.json new file mode 100644 index 0000000..dfadf16 --- /dev/null +++ b/modules/standard/recipe/recipes/565.json @@ -0,0 +1,61 @@ +{ + "name": "Nano Cube of Death", + "author": "", + "items": [ + { + "alias": "Nophex Cube", + "item_id": 255542 + }, + { + "alias": "Pattern of Approaching Death", + "item_id": 255550 + }, + { + "alias": "Kenneth's Polishing Gel", + "item_id": 255555 + }, + { + "alias": "Nophex Cube of Approaching Death", + "item_id": 255545 + }, + { + "alias": "Nano Cube (Cellular Re-Structure)", + "item_id": 254433 + }, + { + "alias": "Nano Cube (Poisoned Thorns)", + "item_id": 254436 + }, + { + "alias": "Pattern of Impending Death", + "item_id": 255551 + }, + { + "alias": "Nano Cube (Frost Blades)", + "item_id": 254438 + }, + { + "alias": "Pattern of Inevitable Death", + "item_id": 255552 + }, + { + "alias": "Nano Cube (Magma Covering)", + "item_id": 254440 + }, + { + "alias": "Pattern of Imminent Death", + "item_id": 255553 + }, + { + "alias": "Nano Cube (Self Illumination)", + "item_id": 254442 + }, + { + "alias": "Pattern of the Occurence of Death", + "item_id": 255554 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients\n------------------------------\n\n#L \"Nophex Cube\" \"255542\"\n\n\na special Pattern of Death\n( ie : #L \"Pattern of Approaching Death\" \"255550\" )\n\n\n#L \"Kenneth's Polishing Gel\" \"255555\"\n\n\n------------------------------\nRecipe\n------------------------------\n\nPattern of Death\n+\nNophex Cube\n=\n\nNophex Cube of Death\n( ie : #L \"Nophex Cube of Approaching Death\" \"255545\" )\nSkills: | ?? |\n\n------------------------------\n\nKenneth's Polishing Gel\n+\nNophex Cube of Death\n=\n\nNano Cube\n( ie : #L \"Nano Cube (Cellular Re-Structure)\" \"254433\" )\nSkills: | ?? |\n\n------------------------------\nDetails\n------------------------------\n\n#L \"Nano Cube (Cellular Re-Structure)\" \"254433\": #L \"Pattern of Approaching Death\" \"255550\"\n#L \"Nano Cube (Poisoned Thorns)\" \"254436\": #L \"Pattern of Impending Death\" \"255551\"\n#L \"Nano Cube (Frost Blades)\" \"254438\": #L \"Pattern of Inevitable Death\" \"255552\"\n#L \"Nano Cube (Magma Covering)\" \"254440\": #L \"Pattern of Imminent Death\" \"255553\"\n#L \"Nano Cube (Self Illumination)\" \"254442\": #L \"Pattern of the Occurence of Death\" \"255554\"\n\n------------------------------\nComments\n------------------------------\n\nNT secret weapons..." +} diff --git a/modules/standard/recipe/recipes/566.json b/modules/standard/recipe/recipes/566.json new file mode 100644 index 0000000..eecd28b --- /dev/null +++ b/modules/standard/recipe/recipes/566.json @@ -0,0 +1,21 @@ +{ + "name": "Salabim Shotgun", + "author": "", + "items": [ + { + "alias": "Fused Biotech Material", + "item_id": 251217 + }, + { + "alias": "Biomaterial Tubing", + "item_id": 253151 + }, + { + "alias": "Salabim Shotgun Supremo", + "item_id": 253236 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients\n------------------------------\n\n#L \"Fused Biotech Material\" \"251217\"\n\n\n#L \"Biomaterial Tubing\" \"253151\"\n\n\n------------------------------\nRecipe\n------------------------------\n\nFused Biotech Material\n+\nBiomaterial Tubing\n=\n\n#L \"Salabim Shotgun\" \"253236\"\nSkills: | WS |\n\n------------------------------\nComments\n------------------------------\n\nUber Trader shotgun!" +} diff --git a/modules/standard/recipe/recipes/567.json b/modules/standard/recipe/recipes/567.json new file mode 100644 index 0000000..2bab919 --- /dev/null +++ b/modules/standard/recipe/recipes/567.json @@ -0,0 +1,21 @@ +{ + "name": "Sharky's Kevlar Bow", + "author": "", + "items": [ + { + "alias": "Premium Kevlar Bow", + "item_id": 122728 + }, + { + "alias": "Viral Weapon Upgrade", + "item_id": 248517 + }, + { + "alias": "Premium Sharky's Kevlar Bow", + "item_id": 248539 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients\n------------------------------\n\n#L \"Kevlar Bow\" \"122728\"\n\n\n#L \"Viral Weapon Upgrade\" \"248517\"\n\n\n------------------------------\nRecipe\n------------------------------\n\nKevlar Bow\n+\nViral Weapon Upgrade\n=\n\n#L \"Sharky's Kevlar Bow\" \"248539\"\nSkills: | WS |\n\n------------------------------\nComments\n------------------------------\n\nAnother Viral upgrade." +} diff --git a/modules/standard/recipe/recipes/568.json b/modules/standard/recipe/recipes/568.json new file mode 100644 index 0000000..8ae6881 --- /dev/null +++ b/modules/standard/recipe/recipes/568.json @@ -0,0 +1,21 @@ +{ + "name": "Survival Axe of Genevra", + "author": "", + "items": [ + { + "alias": "Premium Survival Axe", + "item_id": 144081 + }, + { + "alias": "Viral Weapon Upgrade", + "item_id": 248517 + }, + { + "alias": "Premium Survival Axe of Genevra", + "item_id": 249055 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients\n------------------------------\n\n#L \"Survival Axe\" \"144081\"\n\n\n#L \"Viral Weapon Upgrade\" \"248517\"\n\n\n------------------------------\nRecipe\n------------------------------\n\nViral Weapon Upgrade\n+\nSurvival Axe\n=\n\n#L \"Premium Survival Axe of Genevra\" \"249055\"\nSkills: | WS |\n\n------------------------------\nComments\n------------------------------\n\nAnother Viral upgrade." +} diff --git a/modules/standard/recipe/recipes/569.json b/modules/standard/recipe/recipes/569.json new file mode 100644 index 0000000..0afb907 --- /dev/null +++ b/modules/standard/recipe/recipes/569.json @@ -0,0 +1,21 @@ +{ + "name": "Turn Spirit Weapon", + "author": "", + "items": [ + { + "alias": "Sacrosanct Bhotaar Blaster", + "item_id": 212247 + }, + { + "alias": "Turn Spirit Flesh Pouch", + "item_id": 246236 + }, + { + "alias": "Metropolis Blaster", + "item_id": 214201 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients\n------------------------------\n\nan Upgraded Inamorata or Sacrosanct Weapon (#L \"see here\" \"/tell recipe 108\")\neg: #L \"Sacrosanct Bhotaar Blaster\" \"212247\"\n\n\n#L \"Turn Spirit Flesh Pouch\" \"246236\"\n\n\n------------------------------\nRecipe\n------------------------------\n\nExtract a Turn Spirit from the Turn Spirit Flesh Pouch by right clicking on it.\n\nTurn Spirit\n+\nan Upgraded Inamorata or Sacrosanct Weapon\n=\n\na Turn Spirit weapon\n(eg: #L \"Metropolis Blaster\" \"214201\")\nSkills: | WS |\n\n------------------------------\nComments\n------------------------------\n\nFurther upgrade your Inamorata or Sacrosanct Weapons." +} diff --git a/modules/standard/recipe/recipes/57.json b/modules/standard/recipe/recipes/57.json new file mode 100644 index 0000000..4719f86 --- /dev/null +++ b/modules/standard/recipe/recipes/57.json @@ -0,0 +1,49 @@ +{ + "name": "Jobe Armor Tier 3 ( Chosen / Faithfull )", + "author": "", + "items": [ + { + "alias": "Blue Glyph of Enel", + "item_id": 218349 + }, + { + "alias": "Finely Refined Notum", + "item_id": 227643 + }, + { + "alias": "Insignia of the Faithful", + "item_id": 229043 + }, + { + "alias": "Insignia of the Chosen", + "item_id": 229047 + }, + { + "alias": "Glyph of the Arcana", + "item_id": 227911 + }, + { + "alias": "Advanced Jobe Suit Support System", + "item_id": 227906 + }, + { + "alias": "Excellent Jobe Suit Support System", + "item_id": 227909 + }, + { + "alias": "Blue Glyph of Aban - Revived", + "item_id": 227702 + }, + { + "alias": "Water Glyph of Judgement", + "item_id": 229049 + }, + { + "alias": "Chosen Nano Technician Boots", + "item_id": 214795 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients\n------------------------------\n\na part of Jobe Armor QL 220\n( #L \"see here\" \"/tell recipe 58\" and #L \"here\" \"/tell recipe 56\" )\n\n\na Blue Glyph\n( ie : #L \"Blue Glyph of Enel\" \"218349\" )\n\n\n#L \"Finely Refined Notum\" \"227643\"\n\n\na sided Insigna\n#L \"Insignia of the Faithful\" \"229043\"\n\nor\n#L \"Insignia of the Chosen\" \"229047\" )\n\n\n------------------------------\nFirst\n------------------------------\n\nUpgrade your Jobe Armor to QL220. If it's Tier 2 part, right-click on it. If it's a Tier 1 part, you have to find a #L \"Glyph of the Arcana\" \"227911\" and use it on Advanced Jobe Suit part.\n\nExample:\n\n\n#L \"Advanced Jobe Suit Support System\" \"227906\"\n+\n\n#L \"Glyph of the Arcana\" \"227911\"\n=\n\n#L \"Excellent Jobe Suit Support System\" \"227909\"\n\n WARNING : Back Part for MetaPhysistis, Doctor, Soldier and Adventurer are the same. Once you apply the Glyph of the Arcana on it, you have to right-click the Excellent Jobe Suit Support System to turn it into your profession before continuing.\n\n------------------------------\nRecipe\n------------------------------\n\nBlue Glyph\n+\nFinely Refined Notum\n=\n\nBlue Glyph - Revived\n( ie #L \"Blue Glyph of Aban - Revived\" \"227702\" )\nSkills: | QP1210,CL1210 |\n\n------------------------------\n\nBlue Glyph - Revived\n+\nSided Insigna\n=\n\nSided Glyph ( ie #L \"Water Glyph of Judgement\" \"229049\" )\nSkills: | QFT1375,EE1375 |\n\n------------------------------\n\nSided Glyph\n+\nJobe Armor QL220\n=\n\nSided Tier 3 Armor\n( ie #L \"Chosen Nano Technician Boots\" \"214795\" )\nSkills: | PS?? |\n\n------------------------------\nDetails\n------------------------------\n\nOmni: #L \"Insignia of the Chosen\" \"229047\"\nClan: #L \"Insignia of the Faithful\" \"229043\"\n\n------------------------------\nComments\n------------------------------\n\nYou have now fully ugraded your Jobe armor... congratulations!" +} diff --git a/modules/standard/recipe/recipes/570.json b/modules/standard/recipe/recipes/570.json new file mode 100644 index 0000000..1717b70 --- /dev/null +++ b/modules/standard/recipe/recipes/570.json @@ -0,0 +1,21 @@ +{ + "name": "Xnemth Plasmaprojector", + "author": "", + "items": [ + { + "alias": "Viral Weapon Upgrade", + "item_id": 248517 + }, + { + "alias": "Premium Plasmaprojector", + "item_id": 121892 + }, + { + "alias": "Premium Xnemth Plasmaprojector", + "item_id": 248626 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients\n------------------------------\n\n#L \"Viral Weapon Upgrade\" \"248517\"\n\n\n#L \"Plasmaprojector\" \"121892\"\n\n\n------------------------------\nRecipe\n------------------------------\n\nViral Weapon Upgrade\n+\nPlasmaprojector\n=\n\n#L \"Xnemth Plasmaprojector\" \"248626\"\nSkills: | WS |\n\n------------------------------\nComments\n------------------------------\n\nMore Viral weapon upgrades." +} diff --git a/modules/standard/recipe/recipes/571.json b/modules/standard/recipe/recipes/571.json new file mode 100644 index 0000000..1d13d9b --- /dev/null +++ b/modules/standard/recipe/recipes/571.json @@ -0,0 +1,21 @@ +{ + "name": "Codex of the Insulting Emerto", + "author": "", + "items": [ + { + "alias": "Library of Foul Language", + "item_id": 165111 + }, + { + "alias": "Alien Language Matrix", + "item_id": 253171 + }, + { + "alias": "Codex of the Insulting Emerto", + "item_id": 253187 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients\n------------------------------\n\n#L \"Library of Foul Language\" \"165111\"\n\n\n#L \"Alien Language Matrix\" \"253171\"\n\n\n------------------------------\nRecipe\n------------------------------\n\nLibrary of Foul Language\n+\nAlien Language Matrix\n=\n\n#L \"Codex of the Insulting Emerto\" \"253187\"\nSkills: | BE |\n\n------------------------------\nComments\n------------------------------\n\nAn Enforcer taunt item" +} diff --git a/modules/standard/recipe/recipes/572.json b/modules/standard/recipe/recipes/572.json new file mode 100644 index 0000000..9d5fcf0 --- /dev/null +++ b/modules/standard/recipe/recipes/572.json @@ -0,0 +1,21 @@ +{ + "name": "Guise of the Hooded Crow", + "author": "", + "items": [ + { + "alias": "Spirit of the Hooded Crow", + "item_id": 245888 + }, + { + "alias": "Augmented Nano Armor Helmet", + "item_id": 21813 + }, + { + "alias": "Guise of the Hooded Crow", + "item_id": 245887 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients\n------------------------------\n\n#L \"Spirit of the Hooded Crow\" \"245888\"\n\n\n#L \"Augmented Nano Armor Helmet\" \"21813\"\n\n\n------------------------------\nRecipe\n------------------------------\n\nSpirit of the Hooded Crow\n+\nAugmented Nano Armor Helmet\n=\n\n#L \"Guise of the Hooded Crow\" \"245887\"\nSkills: | ?? |\n\n------------------------------\nComments\n------------------------------\n\nVery nice shadowlands helmet." +} diff --git a/modules/standard/recipe/recipes/576.json b/modules/standard/recipe/recipes/576.json new file mode 100644 index 0000000..a796a71 --- /dev/null +++ b/modules/standard/recipe/recipes/576.json @@ -0,0 +1,33 @@ +{ + "name": "Range Meter", + "author": "", + "items": [ + { + "alias": "Antonio's Adaptation Factory", + "item_id": 248306 + }, + { + "alias": "Power Supply", + "item_id": 248307 + }, + { + "alias": "Optical Enhancer", + "item_id": 248318 + }, + { + "alias": "Adapted Power Supply", + "item_id": 248308 + }, + { + "alias": "Recalibrated Scope Unit", + "item_id": 248317 + }, + { + "alias": "Range Meter", + "item_id": 248374 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients\n------------------------------\n\n#L \"Antonio's Adaptation Factory\" \"248306\" x 2\n\n\n#L \"Power Supply\" \"248307\"\n\n\n#L \"Optical Enhancer\" \"248318\"\n\n\n------------------------------\nRecipe\n------------------------------\n\nAntonio's Adaptation Factory\n+\nPower Supply\n=\n\n#L \"Adapted Power Supply\" \"248308\"\nSkills: | CL20 |\n\n------------------------------\n\nAntonio's Adaptation Factory\n+\nOptical Enhancer\n=\n\n#L \"Recalibrated Scope Unit\" \"248317\"\nSkills: | CL20 |\n\n------------------------------\n\nAdapted Power Supply\n+\nRecalibrated Scope Unit\n=\n\n#L \"Range Meter\" \"248374\"\nSkills: | ?? |\n\n------------------------------\nComments\n------------------------------\n\nCrit Increase item." +} diff --git a/modules/standard/recipe/recipes/579.json b/modules/standard/recipe/recipes/579.json new file mode 100644 index 0000000..b13f8e5 --- /dev/null +++ b/modules/standard/recipe/recipes/579.json @@ -0,0 +1,41 @@ +{ + "name": "AC Buff Stim", + "author": "", + "items": [ + { + "alias": "Gas Bladder", + "item_id": 245115 + }, + { + "alias": "Empty Stim Unit", + "item_id": 247235 + }, + { + "alias": "Mimicking Cellular Oil", + "item_id": 154268 + }, + { + "alias": "Chemical Poison Sample", + "item_id": 245274 + }, + { + "alias": "Polymerizing Stim", + "item_id": 245167 + }, + { + "alias": "Pit Demon Spit", + "item_id": 245169 + }, + { + "alias": "Deinococcus Radiodurans", + "item_id": 245168 + }, + { + "alias": "Bioremediation Stim", + "item_id": 245156 + } + ], + "steps": [], + "details": [], + "raw": "1. Polymerizing Stim\n\n------------------------------\nIngredients\n------------------------------\n\n#L \"Gas Bladder\" \"245115\"\n\n\n#L \"Empty Stim Unit\" \"247235\"\n\n\n#L \"Mimicking Cellular Oil\" \"154268\"\n\n\n------------------------------\nRecipe\n------------------------------\n\nGas Bladder\n+\nEmpty Stim Unit\n=\n\n#L \"Chemical Poison Sample\" \"245274\"\nSkills: | CH450 |\n\n------------------------------\n\nChemical Poison Sample\n+\nMimicking Cellular Oil\n=\n\n#L \"Polymerizing Stim\" \"245167\"\nSkills: | CH525 |\n\n2. Bioremediation Stim\n\n------------------------------\nIngredients\n------------------------------\n\n#L \"Pit Demon Spit\" \"245169\"\n\n\n#L \"Empty Stim Unit\" \"247235\"\n\n\n#L \"Mimicking Cellular Oil\" \"154268\"\n\n\n------------------------------\nRecipe\n------------------------------\n\nPit Demon Spit\n+\nEmpty Stim Unit\n=\n\n#L \"Deinococcus Radiodurans\" \"245168\"\nSkills: | PH450 |\n\n------------------------------\n\nDeinococcus Radiodurans\n+\nMimicking Cellular Oil\n=\n\n#L \"Bioremediation Stim\" \"245156\"\nSkills: | PH450 |\n\n------------------------------\nComments\n------------------------------\n\nEnhance your ubahness." +} diff --git a/modules/standard/recipe/recipes/58.json b/modules/standard/recipe/recipes/58.json new file mode 100644 index 0000000..9002acb --- /dev/null +++ b/modules/standard/recipe/recipes/58.json @@ -0,0 +1,97 @@ +{ + "name": "Jobe Armor Tier 1", + "author": "", + "items": [ + { + "alias": "Consanguineal Embryo of Annwn'Guinee", + "item_id": 239835 + }, + { + "alias": "Canister of Pure Liquid Notum", + "item_id": 223446 + }, + { + "alias": "Novictum Mud", + "item_id": 218472 + }, + { + "alias": "Visions of The Reposeful", + "item_id": 239466 + }, + { + "alias": "Yellow Glyph of Aban", + "item_id": 218339 + }, + { + "alias": "Yellow Glyph of Aban - Awakened", + "item_id": 227624 + }, + { + "alias": "Glyph of the One", + "item_id": 227758 + }, + { + "alias": "First Tier Adventurer Jobe Suit Body", + "item_id": 213446 + }, + { + "alias": "Visions of the Tempestuous", + "item_id": 239467 + }, + { + "alias": "Transparent Novictum Gas", + "item_id": 218468 + }, + { + "alias": "Radiant Novictum Gas", + "item_id": 218469 + }, + { + "alias": "Pure Novictum Liquid", + "item_id": 218470 + }, + { + "alias": "Visions of the Unshakable", + "item_id": 239468 + }, + { + "alias": "Compact Novictum Stone", + "item_id": 218473 + }, + { + "alias": "Crystalized Novictum", + "item_id": 218480 + }, + { + "alias": "Mist of Novictum", + "item_id": 218477 + }, + { + "alias": "Spongy Novictum", + "item_id": 218474 + }, + { + "alias": "Novictum Sand", + "item_id": 218478 + }, + { + "alias": "Caustic Novictum", + "item_id": 218476 + }, + { + "alias": "Carbonized Novictum Stone", + "item_id": 218471 + }, + { + "alias": "Porous Novictum Stone", + "item_id": 218479 + }, + { + "alias": "Fragmented Novictum Crystals", + "item_id": 218467 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------Ingredients\n------------------------------\n\na part of Jobe Armor\n( #L \"see here\" \"/tell recipe 542\" )\n\n\n#L \"Consanguineal Embryo of Annwn\" \"239835\"\n\n\n#L \"Canister Of Pure Liquid Notum\" \"223446\"\n\n\na special Novictum\n( ie : #L \"Novictum Mud\" \"218472\" )\n\n\nVision x 3\n( ie #L \"Visions of The Reposeful \" \"239466\" )\n\n\n------------------------------\nFirst\n------------------------------\n\nGo to jobe and give the Consanguineal Embryo of Annwn and the Three Visions to your Profession IPS, he will give you a Yellow Glyph:\n\n\nExample:\n\n#L \"Yellow Glyph of Aban\" \"218339\" ).\n\n\n------------------------------\nRecipe\n------------------------------\n\nCanister Of Pure Liquid Notum\n+\nYellow Glyph\n=\n\nYellow Glyph - Awakened\n( ie #L \"Yellow Glyph of Aban - Awakened\" \"227624\" )\nSkills: | QP |\n\n------------------------------\n\nNovictum\n+\nYellow Glyph - Awakened\n=\n\nGlyph\n( ie #L \"Glyph of the One\" \"227758\" )\nSkills: | PS |\n\n------------------------------\n\nGlyph\n+\na part of Jobe Armor\n=\n\na part of Jobe Tier 1 Armor\n( ie #L \"First Tier Adventurer Jobe Suit Body\" \"213446\" )\nSkills: | PS |\n\n------------------------------\nDetails\n------------------------------\n\nAdventurer:\n#L \"Visions of The Reposeful\" \"239466\"\n\n#L \"Novictum Mud\" \"218472\"\n\n------------------------------\nAgent:\n#L \"Visions of the Tempestuous\" \"239467\"\n\n#L \"Transparent Novictum Gas\" \"218468\"\n\n------------------------------\nBureaucrat:\n#L \"Visions of the Tempestuous\" \"239467\"\n\n#L \"Radiant Novictum Gas\" \"218469\"\n\n------------------------------\nDoctor:\n#L \"Visions of The Reposeful\" \"239466\"\n\n#L \"Pure Novictum Liquid\" \"218470\"\n\n------------------------------\nEnforcer:\n#L \"Visions of the Unshakable\" \"239468\"\n\n#L \"Compact Novictum Stone\" \"218473\"\n\n------------------------------\nEngineer:\n#L \"Visions of the Unshakable\" \"239468\"\n\n#L \"Crystalized Novictum\" \"218480\"\n\n------------------------------\nFixer:\n#L \"Visions of The Reposeful\" \"239466\"\n\n#L \"Mist of Novictum\" \"218477\"\n\n------------------------------\nKeeper:\n#L \"Visions of the Unshakable\" \"239468\"\n\n#L \"Spongy Novictum\" \"218474\"\n\n------------------------------\nMartial Artist:\n#L \"Visions of the Unshakable\" \"239468\"\n\n#L \"Novictum Sand\" \"218478\"\n\n------------------------------\nMeta Physicist:\n#L \"Visions of The Reposeful\" \"239466\"\n\n#L \"Plastic Novictum\" \"218475\"\n\n------------------------------\nNano Technician:\n#L \"Visions of the Tempestuous\" \"239467\"\n\n#L \"Caustic Novictum\" \"218476\"\n\n------------------------------\nShade:\n#L \"Visions of the Unshakable\" \"239468\"\n\n#L \"Carbonized Novictum Stone\" \"218471\"\n\n------------------------------\nSoldier:\n#L \"Visions of the Tempestuous\" \"239467\"\n\n#L \"Porous Novictum Stone\" \"218479\"\n\n------------------------------\nTrader:\n#L \"Visions of The Reposeful\" \"239466\"\n\n#L \"Fragmented Novictum Crystal\" \"218467\"\n\n\n------------------------------\nComments\n------------------------------\n\nTier one is complete ... move on to #L \"Tier 2\" \"/tell recipe 56\" ..." +} diff --git a/modules/standard/recipe/recipes/580.json b/modules/standard/recipe/recipes/580.json new file mode 100644 index 0000000..d75c24f --- /dev/null +++ b/modules/standard/recipe/recipes/580.json @@ -0,0 +1,45 @@ +{ + "name": "Hadrulf's Viral Belt Component Platform", + "author": "", + "items": [ + { + "alias": "Inertial Adjustment Processing Unit", + "item_id": 257959 + }, + { + "alias": "Viral Data Storage", + "item_id": 251225 + }, + { + "alias": "Overheated Compiler", + "item_id": 251221 + }, + { + "alias": "Canister of Powder", + "item_id": 253153 + }, + { + "alias": "Disassembled Belt with Memory", + "item_id": 257540 + }, + { + "alias": "Disassembled Belt with Memory and Compiler", + "item_id": 257541 + }, + { + "alias": "Hadrulf's Viral Belt Component Platform", + "item_id": 257119 + }, + { + "alias": "Diamondine Kick Pistol", + "item_id": 165168 + }, + { + "alias": "Murder Maul", + "item_id": 233336 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients\n------------------------------\n\n#L \"Inertial Adjustment Processing Unit\" \"257959\" >= QL240\n\n\n#L \"Viral Data Storage\" \"251225\" >= QL240\n\n\n#L \"Overheated Compiler\" \"251221\" >= QL240\n\n\n#L \"Cannister of Powder\" \"253153\" >= QL240\n\n\n------------------------------\nRecipe\n------------------------------\n\nViral Data Storage\n+\nInertial Adjustment Processing Unit\n=\n\n#L \"Disassembled Belt with Memory\" \"257540\"\nSkills: | ?? |\n\n------------------------------\n\nOverheated Compiler\n+\nDisassembled Belt with Memory\n=\n\n#L \"Disassembled Belt with Memory and Compiler\" \"257541\"\nSkills: | ?? |\n\n------------------------------\n\nCannister of Powder\n+\nDisassembled Belt with Memory and Compiler\n=\n\n#L \"Hadrulf's Viral Belt Component Platform\" \"257119\"\nSkills: | ?? |\n\nNote: To remove the \"Atrox Only\" equipping requirement of a QL 250+ #L \"Diamondine Kick Pistol\" \"165168\" \nor #L \"Murder Maul\" \"233336\", combine them with the #L \"Inertial Adjustment Processing Unit\" \"257959\".\n\n------------------------------\nComments\n------------------------------\n\nAwesome belts for those with the AI expansion." +} diff --git a/modules/standard/recipe/recipes/581.json b/modules/standard/recipe/recipes/581.json new file mode 100644 index 0000000..4c3617d --- /dev/null +++ b/modules/standard/recipe/recipes/581.json @@ -0,0 +1,21 @@ +{ + "name": "Intrusion Countermeasure Electronics Upgrade", + "author": "", + "items": [ + { + "alias": "Hacker ICE-Breaker Source", + "item_id": 257968 + }, + { + "alias": "Nano Programming Interface", + "item_id": 161699 + }, + { + "alias": "Upgraded Controller Recompiler Unit", + "item_id": 257110 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients\n------------------------------\n\n#L \"Hacker ICE-Breaker Source\" \"257968\"\n\n\n#L \"Nano Programming Interface\" \"161699\"\n\n\n------------------------------\nRecipe\n------------------------------\n\nNano Programming Interface\n+\nHacker ICE-Breaker Source\n=\n\n#L \"Intrusion Countermeasure Electronics Upgrade\" \"257110\"\nSkills: | ?? |\n\n------------------------------\nComments\n------------------------------\n\n100% CRUs for City raids." +} diff --git a/modules/standard/recipe/recipes/584.json b/modules/standard/recipe/recipes/584.json new file mode 100644 index 0000000..da9a05f --- /dev/null +++ b/modules/standard/recipe/recipes/584.json @@ -0,0 +1,21 @@ +{ + "name": "Hacked Graft", + "author": "", + "items": [ + { + "alias": "Symbio-Graft: 1H Blunt Weapon Expertise", + "item_id": 127241 + }, + { + "alias": "Advanced Hacker Tool", + "item_id": 87814 + }, + { + "alias": "Hacked Symbio-Graft: 1H Blunt Weapon Expertise", + "item_id": 127242 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients\n------------------------------\n\na Boosted-Graft or a Symbio-Graft\n( ie : #L \"Symbio-Graft: 1H Blunt Weapon Expertise\" \"127241\" )\n\n\n#L \"Hacker Tool\" \"87814\"\n\n\n------------------------------\nRecipe\n------------------------------\n\nHacker Tool\n+\nGraft\n=\n\na Hacked Boosted-Graft\n( ie : #L \"Hacked Symbio-Graft: 1H Blunt Weapon Expertise\" \"127242\" )\nSkills: | BE |\n\n------------------------------\nComments\n------------------------------\n\nOverride the profession requirement." +} diff --git a/modules/standard/recipe/recipes/585.json b/modules/standard/recipe/recipes/585.json new file mode 100644 index 0000000..34e1cb2 --- /dev/null +++ b/modules/standard/recipe/recipes/585.json @@ -0,0 +1,21 @@ +{ + "name": "Nano Controller Unit", + "author": "", + "items": [ + { + "alias": "Disk of Cloudy Crystal", + "item_id": 253177 + }, + { + "alias": "Nano Programming Interface", + "item_id": 161699 + }, + { + "alias": "Nano Controller Unit", + "item_id": 253193 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients\n------------------------------\n\n#L \"Disk of Cloudy Crystal\" \"253177\"\n\n\n#L \"Nano programming interface\" \"161699\"\n\n\n------------------------------\nRecipe\n------------------------------\n\nNano programming interface\n+\nDisk of Cloudy Crystal\n=\n\n#L \"Nano Controller Unit\" \"253193\"\nSkills: | ?? |\n\n------------------------------\nComments\n------------------------------\n\nBuff all your nano skills with this great item." +} diff --git a/modules/standard/recipe/recipes/586.json b/modules/standard/recipe/recipes/586.json new file mode 100644 index 0000000..fd290dc --- /dev/null +++ b/modules/standard/recipe/recipes/586.json @@ -0,0 +1,69 @@ +{ + "name": "ICC Shuttle Port Tools", + "author": "", + "items": [ + { + "alias": "Antonio's Adaptation Factory", + "item_id": 248306 + }, + { + "alias": "Compression Chamber", + "item_id": 248334 + }, + { + "alias": "Venom Sample", + "item_id": 248322 + }, + { + "alias": "Pneumatic Compression Chamber", + "item_id": 248335 + }, + { + "alias": "Venom Cartridge", + "item_id": 248321 + }, + { + "alias": "Poison Injector Bracelet", + "item_id": 248375 + }, + { + "alias": "Optical Enhancer", + "item_id": 248318 + }, + { + "alias": "Power Supply", + "item_id": 248307 + }, + { + "alias": "Recalibrated Scope Unit", + "item_id": 248317 + }, + { + "alias": "Adapted Power Supply", + "item_id": 248308 + }, + { + "alias": "Range Meter", + "item_id": 248374 + }, + { + "alias": "Rollerrat Intestines", + "item_id": 248333 + }, + { + "alias": "Leather Hide", + "item_id": 248325 + }, + { + "alias": "Gut Bowstring", + "item_id": 248332 + }, + { + "alias": "Leather Vest", + "item_id": 248373 + } + ], + "steps": [], + "details": [], + "raw": "Poison Injector Bracelet\n\n------------------------------\nIngredients\n------------------------------\n\n#L \"Antonio's Adaptation Factory\" \"248306\" x 2\n\n\n#L \"Compression Chamber\" \"248334\"\n\n\n#L \"Venom Sample\" \"248322\"\n\n\n------------------------------\nRecipe\n------------------------------\n\nAntonio's Adaptation Factory\n+\nCompression Chamber\n=\n\n#L \"Pneumatic Compression Chamber\" \"248335\"\nSkills: | ?? |\n\n------------------------------\n\nAntonio's Adaptation Factory\n+\nVenom Sample\n=\n\n#L \"Venom Cartridge\" \"248321\"\nSkills: | ?? |\n\n------------------------------\n\nPneumatic Compression Chamber\n+\nVenom Cartridge\n=\n\n#L \"Poison Injector Bracelet\" \"248375\"\nSkills: | ?? |\n\n------------------------------\n\nRange Meter\n\n------------------------------\nIngredients\n------------------------------\n\n#L \"Antonio's Adaptation Factory\" \"248306\" x 2\n\n\n#L \"Optical Enhancer\" \"248318\"\n\n\n#L \"Power Supply\" \"248307\"\n\n\n------------------------------\nRecipe\n------------------------------\n\nAntonio's Adaptation Factory\n+\nOptical Enhancer\n=\n\n#L \"Recalibrated Scope Unit\" \"248317\"\nSkills: | ?? |\n\n------------------------------\n\nAntonio's Adaptation Factory\n+\nPower Supply\n=\n\n#L \"Adapted Power Supply\" \"248308\"\nSkills: | ?? |\n\n------------------------------\n\nRecalibrated Scope Unit\n+\nAdapted Power Supply\n=\n\n#L \"Range Meter\" \"248374\"\nSkills: | ?? |\n\n------------------------------\n\nSalamander Vest\n\n------------------------------\nIngredients\n------------------------------\n\n#L \"Antonio's Adaptation Factory\" \"248306\"\n\n\n#L \"Rollerrat Intestines\" \"248333\"\n\n\n#L \"Swatch of Salamander Skin\" \"248325\"\n\n\n------------------------------\nRecipe\n------------------------------\n\nAntonio's Adaptation Factory\n+\nRollerrat Intestines\n=\n\n#L \"Gut Bowstring\" \"248332\"\nSkills: | ?? |\n\n------------------------------\n\nGut Bowstring\n+\nSwatch of Salamander Skin\n=\n\n#L \"Salamander Vest\" \"248373\"\nSkills: | ?? |\n\n------------------------------\nComments\n------------------------------\n\nMore things to run around and do on noob island..." +} diff --git a/modules/standard/recipe/recipes/588.json b/modules/standard/recipe/recipes/588.json new file mode 100644 index 0000000..8e79568 --- /dev/null +++ b/modules/standard/recipe/recipes/588.json @@ -0,0 +1,21 @@ +{ + "name": "Alien Material Conversion kit", + "author": "", + "items": [ + { + "alias": "Alien Activation Crystal", + "item_id": 268478 + }, + { + "alias": "Inactive Alien Material Conversion kit", + "item_id": 268510 + }, + { + "alias": "Alien Material Conversion kit", + "item_id": 268509 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients\n------------------------------\n\n#L \"Alien Activation Crystal\" \"268478\"\n\n\n#L \"Inactive Alien Material Conversion kit\" \"268510\"\n\n\n------------------------------\nRecipe\n------------------------------\n\nAlien Activation Crystal\n+\nInactive Alien Material Conversion kit\n=\n\n#L \"Alien Material Conversion kit\" \"268509\"\nSkills: | 450ME |\n\n------------------------------\nComments\n------------------------------\n\nUsed for creating #L \"Alien Tank Armor\" \"/tell recipe 587\"" +} diff --git a/modules/standard/recipe/recipes/589.json b/modules/standard/recipe/recipes/589.json new file mode 100644 index 0000000..18a4c39 --- /dev/null +++ b/modules/standard/recipe/recipes/589.json @@ -0,0 +1,17 @@ +{ + "name": "Sealed Inner Sanctum Pass", + "author": "", + "items": [ + { + "alias": "Exarch Robe", + "item_id": 204759 + }, + { + "alias": "Sealed Inner Sanctum Pass", + "item_id": 207107 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients\n------------------------------\n\n#L \"Exarch Robe\" \"204759\"\n\n\n------------------------------\nRecipe\n------------------------------\n\nGive it to the Blind Cultist outside TOTW to receive\n\n#L \"Sealed Inner Sanctum Pass\" \"207107\"\n\n\n------------------------------\nComments\n------------------------------\n\nYour pass to the inner sanctum. Robes drop from exarches in totw." +} diff --git a/modules/standard/recipe/recipes/59.json b/modules/standard/recipe/recipes/59.json new file mode 100644 index 0000000..af08287 --- /dev/null +++ b/modules/standard/recipe/recipes/59.json @@ -0,0 +1,41 @@ +{ + "name": "Junkmetal Armor", + "author": "", + "items": [ + { + "alias": "Precious Metal Reclaimer", + "item_id": 150929 + }, + { + "alias": "Robot Junk", + "item_id": 42619 + }, + { + "alias": "HSR - Sketch and Etch - Chestpiece", + "item_id": 162290 + }, + { + "alias": "Screwdriver", + "item_id": 150922 + }, + { + "alias": "Mass Relocating Robot (Shape Hard Armor)", + "item_id": 162218 + }, + { + "alias": "Sheet of Junkmetal", + "item_id": 206703 + }, + { + "alias": "Etched Pattern for Junkmetal Breastplate", + "item_id": 206695 + }, + { + "alias": "Junkmetal Breastplate", + "item_id": 206679 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients\n------------------------------\n\n#L \"Precious Metal Reclaimer\" \"150929\"\n\n\n#L \"Robot Junk\" \"42619\"\n\n\nHSR - Sketch and Etch\n( ie :#L \"HSR - Sketch and Etch - Chestpiece\" \"162290\" )\n\n\n#L \"screwdriver\" \"150922\"\n\nor\n#L \"Mass Relocating Robot (Shape Hard Armor)\" \"162218\" (#L \"recipe\" \"/tell recipe 30\")\n\n\n------------------------------\nRecipe\n------------------------------\n\nPrecious Metal Reclaimer\n+\nRobot Junk\n=\n\n#L \"Sheet of Junkmetal\" \"206703\"\nSkills: | ME |\n\n------------------------------\n\nHSR - Sketch and Etch\n+\nSheet of Junkmetal\n=\n\nEtched Pattern for Junkmetal\n( ie : #L \"Etched Pattern for Junkmetal Breastplate\" \"206695\" )\nSkills: | ME |\n\n------------------------------\n\nMass Relocating Robot (Shape Hard Armor)\n+\nEtched Pattern for Junkmetal\n=\n\nJunkmetal Armor\n( ie #L \"Junkmetal Breastplate\" \"206679\" )\nSkills: | EE,ME |\n\n------------------------------\nComments\n------------------------------\n\nIncreases your max health." +} diff --git a/modules/standard/recipe/recipes/590.json b/modules/standard/recipe/recipes/590.json new file mode 100644 index 0000000..9cffe1f --- /dev/null +++ b/modules/standard/recipe/recipes/590.json @@ -0,0 +1,37 @@ +{ + "name": "Upgrading Ofab Armor", + "author": "", + "items": [ + { + "alias": "Kyr'Ozch Bio-Material - Type 64", + "item_id": 265334 + }, + { + "alias": "Kyr'Ozch Bio-Material - Type 295", + "item_id": 265330 + }, + { + "alias": "Kyr'Ozch Bio-Material - Type 468", + "item_id": 265336 + }, + { + "alias": "Kyr'Ozch Bio-Material - Type 935", + "item_id": 265332 + }, + { + "alias": "Ofab Soldier Helmet", + "item_id": 264432 + }, + { + "alias": "Improved Ofab Soldier Helmet", + "item_id": 264430 + }, + { + "alias": "Penultimate Ofab Soldier Helmet", + "item_id": 264428 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients\n------------------------------\n\n#L \"Kyr'Ozch Bio-Material - Type 64\" \"265333\"\nDoctors, Engineers, Keepers, Meta-physicists \n\n\n#L \"Kyr'Ozch Bio-Material - Type 295\" \"265330\"\nAdventurers, Enforcers, Martial artists, Soldiers\n\n\n#L \"Kyr'Ozch Bio-Material - Type 468\" \"265336\"\nBureaucrats, Nano-technicians, Traders\n\n\n#L \"Kyr'Ozch Bio-Material - Type 935\" \"265332\"\nAgents, Fixers, Shades\n\n\nA piece of ofab armor\n(ie: #L \"Ofab Soldier Helmet\" \"264432\")\n\n\n------------------------------\nRecipe\n------------------------------\n\nExample:\n\nKyr'Ozch Bio-Material - Type 295\n+\nOfab Soldier Helmet\n=\n\n#L \"Improved Ofab Soldier Helmet\" \"264430\"\nSkills: | -- |\n\n------------------------------\n\nKyr'Ozch Bio-Material - Type 295\n+\nImproved Ofab Soldier Helmet\n=\n\n#L \"Penultimate Ofab Soldier Helmet\" \"264428\"\nSkills: | -- |\n\n------------------------------\nComments\n------------------------------\n\nThese upgrades require no tradeskills. Simply combine the ofab piece with the bio-material and you're set. **NOTE** The clump must be at least 85% the ql of the Ofab piece." +} diff --git a/modules/standard/recipe/recipes/591.json b/modules/standard/recipe/recipes/591.json new file mode 100644 index 0000000..70bba82 --- /dev/null +++ b/modules/standard/recipe/recipes/591.json @@ -0,0 +1,49 @@ +{ + "name": "Improving Ofab Weapons", + "author": "", + "items": [ + { + "alias": "Kyr'Ozch Bio-Material - Type 18", + "item_id": 265322 + }, + { + "alias": "Kyr'Ozch Bio-Material - Type 34", + "item_id": 265324 + }, + { + "alias": "Kyr'Ozch Bio-Material - Type 687", + "item_id": 265328 + }, + { + "alias": "Kyr'Ozch Bio-Material - Type 812", + "item_id": 265326 + }, + { + "alias": "Ofab Shark Mk 1", + "item_id": 265068 + }, + { + "alias": "Ofab Shark Mk 2", + "item_id": 265075 + }, + { + "alias": "Ofab Shark Mk 3", + "item_id": 265082 + }, + { + "alias": "Ofab Shark Mk 4", + "item_id": 265089 + }, + { + "alias": "Ofab Shark Mk 5", + "item_id": 265096 + }, + { + "alias": "Ofab Shark Mk 6", + "item_id": 265103 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients\n------------------------------\n\n#L \"Kyr'Ozch Bio-Material - Type 18\" \"265322\"\n1h Edge, 2h Edge, Piercing \n\n\n#L \"Kyr'Ozch Bio-Material - Type 34\" \"265324\"\n1h Blunt, 2h Blunt\n\n\n#L \"Kyr'Ozch Bio-Material - Type 687\" \"265328\"\nRifle, Assault Rifle, Shotgun\n\n\n#L \"Kyr'Ozch Bio-Material - Type 812\" \"265326\"\nPistol, SMG, Bow\n\n\nAn Ofab Weapon\n(eg: #L \"Ofab Shark Mk 1\" \"265068\")\n\n\n------------------------------\nRecipe\n------------------------------\n\nKyr'Ozch Bio-Material - Type 687\n+\nan ofab weapon (eg: Ofab Shark Mk 1)\n=\n\na Mk 2 Ofab Weapon\n(ie: #L \"Ofab Shark Mk 2\" \"265075\")\nSkills: | -- |\n\n------------------------------\n\nKyr'Ozch Bio-Material - Type 687\n+\na Mk 2 ofab weapon (eg: Ofab Shark Mk 2)\n=\n\na Mk 3 Ofab Weapon\n(eg: #L \"Ofab Shark Mk 3\" \"265082\")\nSkills: | -- |\n\n------------------------------\n\nKyr'Ozch Bio-Material - Type 687\n+\na Mk 3 ofab weapon (eg: Ofab Shark Mk 3)\n=\n\na Mk 4 Ofab Weapon\n(eg: #L \"Ofab Shark Mk 4\" \"265089\")\nSkills: | -- |\n\n------------------------------\n\nKyr'Ozch Bio-Material - Type 687\n+\na Mk 4 ofab weapon (eg: Ofab Shark Mk 4)\n=\n\na Mk 5 Ofab Weapon\n(eg: #L \"Ofab Shark Mk 5\" \"265096\")\nSkills: | -- |\n\n------------------------------\n\nKyr'Ozch Bio-Material - Type 687\n+\na Mk 5 ofab weapon (eg: Ofab Shark Mk 5)\n=\n\na Mk 6 Ofab Weapon\n(eg: #L \"Ofab Shark Mk 6\" \"265103\")\nSkills: | -- |\n\n------------------------------\nComments\n------------------------------\n\nThese upgrades require no tradeskills. Simply combine the ofab piece with the bio-material and you're set. **NOTE** (taken from AOUniverse) The tradeskill process itself it pretty straightforward. The ql % needed to update a certain ql weapon is still unknown. It may be possible that each upgrade requires a different ql clump as well. For example, to update a ql 175 weapon from MK2-MK3, a ql 30 clump is needed." +} diff --git a/modules/standard/recipe/recipes/592.json b/modules/standard/recipe/recipes/592.json new file mode 100644 index 0000000..84c26ec --- /dev/null +++ b/modules/standard/recipe/recipes/592.json @@ -0,0 +1,81 @@ +{ + "name": "APF Nanos", + "author": "", + "items": [ + { + "alias": "Kyr'ozch Circuitry", + "item_id": 275914 + }, + { + "alias": "Crystalline Matrix", + "item_id": 275912 + }, + { + "alias": "Odd Kyr'ozch Nanobots", + "item_id": 275906 + }, + { + "alias": "Kyr'ozch Processing Unit", + "item_id": 275907 + }, + { + "alias": "Gelatinous Lump", + "item_id": 275909 + }, + { + "alias": "Biotech Matrix", + "item_id": 275916 + }, + { + "alias": "Screwdriver", + "item_id": 150922 + }, + { + "alias": "Alpha Program Chip", + "item_id": 275918 + }, + { + "alias": "Beta Program Chip", + "item_id": 275919 + }, + { + "alias": "Disassembled Kyr'ozch Circuitry", + "item_id": 275915 + }, + { + "alias": "Nanite Recompiler", + "item_id": 275908 + }, + { + "alias": "Nanite-Infused Gel", + "item_id": 275910 + }, + { + "alias": "Nanite-Infused Gelatinous Cube", + "item_id": 275913 + }, + { + "alias": "Kyr'ozch Matrix", + "item_id": 275917 + }, + { + "alias": "Inert Kyr'ozch Alpha Matrix", + "item_id": 275920 + }, + { + "alias": "Inert Kyr'ozch Beta Matrix", + "item_id": 275921 + }, + { + "alias": "Alien Matrix Alpha Box", + "item_id": 275706 + }, + { + "alias": "Alien Matrix Beta Box", + "item_id": 275854 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients\n------------------------------\n\n#L \"Kyr'ozch Circutry\" \"275914\" - Sector 28\n\n#L \"Crystalline Matrix\" \"275912\" - Sector 28\n\n#L \"Odd Kyr'ozch Nanobots\" \"275906\" - Sector 35\n\n\n#L \"Kyr'ozch Processing Unit\" \"275907\" - Sector 35\n\n#L \"Gelatinous Lump\" \"275909\" - Sector 13\n\n#L \"Biotech Matrix\" \"275916\" - Sector 13\n\n#L \"Screwdriver\" \"150922\"\n\n\nand either:\n#L \"Alpha Program Chip\" \"275918\" - Sector 35\nor\n#L \"Beta Program Chip\" \"275919\" - Sector 35\n\n------------------------------\nRecipe\n------------------------------\n\nKyr'ozch Circutry\n+\nScrewdriver\n=\n#L \"Disassembled Kyr'ozch Circutry\" \"275915\"\nSkills: | ME400 |\n\n------------------------------\n\nOdd Kyr'ozch Nanobots\n+\nKyr'ozch Processing Unit\n=\n#L \"Nanite Recompiler\" \"275908\"\nSkills: | ?? |\n\n------------------------------\n\nGelatinous Lump\n+\nNanite Recompiler\n=\n#L \"Nanite-Infused Gel\" \"275910\"\nSkills: | CH 400 |\n\n------------------------------\n\nNanite-Infused Gel\n+\nCrystalline Matrix\n=\n#L \"Nanite-Infused Gelatinous Cube\" \"275913\"\nSkills: | CH 400 |\n\n------------------------------\n\nBiotech Matrix\n+\nDisassembled Kyr'ozch Circutry\n=\n#L \"Kyr'ozch Matrix\" \"275917\"\nSkills: | PT 400 |\n\n------------------------------\n\nYou then have to combine whichever Program Chip you have, the result is NODROP and UNIQUE\n\neither:\n\nKyr'ozch Matrix\n+\nAlpha Program Chip\n=\n#L \"Inert Kyr'ozch Alpha Matrix\" \"275920\"\nSkills: | EE 400 |\n\nor\n\nKyr'ozch Matrix\n+\nBeta Program Chip\n=\n#L \"Inert Kyr'ozch Beta Matrix\" \"275921\"\nSkills: | EE 400 |\n\n------------------------------\n\nThe final step is to combine your Inert Alpha or Beta Matrix with Nanite-Infused Gelatinous Cube. Depending on which Inert Kyr'orch Matrix you have combined with it, will determine your outcome:\n\neither:\n\nInert Kyr'ozch Alpha Matrix\n+\nNanite-Infused Gelatinous Cube\n=\n#L \"Alien Matrix Alpha Box\" \"275706\"\nSkills: | QT 400 |\n\nor:\n\nInert Kyr'ozch Beta Matrix\n+\nNanite-Infused Gelatinous Cube\n=\n#L \"Alien Matrix Beta Box\" \"275854\"\nSkills: | QT 400 |\n\n------------------------------\n\nThe boxes will give you the following nanos for your profession (unfortunately I cant give you an internal game link but I have provided links to each nano on auno): \n\n------------------------------\nDetails\n------------------------------\n\nNOTE: The following links are links to auno.org:\n\nAdventurer\n(Alpha) #L \"Mother Wolf\" \"/start http://auno.org/ao/db.php?id=275817\"\n(Beta) #L \"Improved Stare of Cerberus\" \"/start http://auno.org/ao/db.php?id=275821\"\n\nAgent\n(Alpha) #L \"Way of The Executioner\" \"/start http://auno.org/ao/db.php?id=275822\"\n(Beta) #L \"Bullseye\" \"/start http://auno.org/ao/db.php?id=275823\"\n\nBureaucrat\n(Alpha) #L \"Malaise of Zeal\" \"/start http://auno.org/ao/db.php?id=275824\"\n(Beta) #L \"Demotivational Speech: Dead Man Walking\" \"/start http://auno.org/ao/db.php?id=275826\"\n\nDoctor\n(Alpha) #L \"Malpractice\" \"/start http://auno.org/ao/db.php?id=275701\"\n(Beta) #L \"Nanite Instinctive Control\" \"/start http://auno.org/ao/db.php?id=275829\"\n\nEnforcer\n(Alpha) #L \"Hellish Rage\" \"/start http://auno.org/ao/db.php?id=275830\"\n(Beta) #L \"Valiant Challenger to Behemoth\" \"/start http://auno.org/ao/db.php?id=275833\"\n\nEngineer\n(Alpha) #L \"Ravening M-60\" \"/start http://auno.org/ao/db.php?id=275815\"\n(Beta) #L \"Intrusive Aura of Slave\" \"/start http://auno.org/ao/db.php?id=275835\"\n\nFixer\n(Alpha) #L \"Greater Preservation Matrix\" \"/start http://auno.org/ao/db.php?id=275679\"\n(Beta) #L \"Refactor NCU Matrix\" \"/start http://auno.org/ao/db.php?id=275680\"\n\nKeeper\n(Alpha) #L \"Imminence of Extermination\" \"/start http://auno.org/ao/db.php?id=275837\"\n(Beta) #L \"Giant of Swords\" \"/start http://auno.org/ao/db.php?id=275838\"\n\nMartial Artist\n(Alpha) #L \"Matrix of Ka\" \"/start http://auno.org/ao/db.php?id=275698\"\n(Beta) #L \"Form of Risan\" \"/start http://auno.org/ao/db.php?id=275700\"\n\nMeta Physicist\n(Alpha) #L \"Creation: Asp of Titaniush\" \"/start http://auno.org/ao/db.php?id=275849\"\n(Alpha) #L \"Creation: Shield of Esa\" \"/start http://auno.org/ao/db.php?id=275852\"\n(Beta) #L \"Touch of Poison\" \"/start http://auno.org/ao/db.php?id=275853\"\n\nNano Technician\n(Alpha) #L \"Detonation Matrix\" \"/start http://auno.org/ao/db.php?id=275692\"\n(Beta) #L \"Optic Plague\" \"/start http://auno.org/ao/db.php?id=275697\"\n\nShade\n(Alpha) #L \"Basic Nanite Depravation\" \"/start http://auno.org/ao/db.php?id=275841\"\n(Beta) #L \"Triple Wall\" \"/start http://auno.org/ao/db.php?id=275843\"\n\nSoldier\n(Alpha) #L \"Improved Precognition\" \"/start http://auno.org/ao/db.php?id=275844\"\n(Beta) #L \"Improved Ranged Energy Weapon Mastery\" \"/start http://auno.org/ao/db.php?id=275905\"\n\nTrader\n(Alpha) #L \"Unstoppable Killer\" \"/start http://auno.org/ao/db.php?id=275846\"\n(Beta) #L \"Your Enemy's Enemy is your Friend\" \"/start http://auno.org/ao/db.php?id=270714\"\n\n------------------------------\nComments\n------------------------------\n\nThere are no actual nano crystals on the auno database, so having never done this quest myself I can only assume that you trade the cube and the new nano automatically uploads into your list." +} diff --git a/modules/standard/recipe/recipes/593.json b/modules/standard/recipe/recipes/593.json new file mode 100644 index 0000000..ff93e43 --- /dev/null +++ b/modules/standard/recipe/recipes/593.json @@ -0,0 +1,77 @@ +{ + "name": "Ancient Combat Bracer", + "author": "", + "items": [ + { + "alias": "Crystalised Memories of a Sniper", + "item_id": 267704 + }, + { + "alias": "Crystalised Memories of a Warrior", + "item_id": 267697 + }, + { + "alias": "Ancient Scrap of Spirit Knowledge", + "item_id": 267677 + }, + { + "alias": "Ancient Scrap of Saturated Spirit Knowledge", + "item_id": 267679 + }, + { + "alias": "Inert Knowledge Crystal", + "item_id": 267737 + }, + { + "alias": "Inactive Ancient Bracer", + "item_id": 267746 + }, + { + "alias": "Ancient Engineering Device", + "item_id": 267751 + }, + { + "alias": "Crystalised Memories of a Defender", + "item_id": 267711 + }, + { + "alias": "Combined Crystalised Combat Memories", + "item_id": 267705 + }, + { + "alias": "Ancient Scrap of Condensed Spirit Knowledge", + "item_id": 267680 + }, + { + "alias": "Ancient Scrap of Spirit Combat Knowledge", + "item_id": 267681 + }, + { + "alias": "Combat Knowledge Crystal", + "item_id": 267739 + }, + { + "alias": "Active Ancient Bracer", + "item_id": 267747 + }, + { + "alias": "Ancient Combat Bracer", + "item_id": 267753 + }, + { + "alias": "Modified Ancient Combat Bracer", + "item_id": 267756 + }, + { + "alias": "Modified Ancient Combat Bracer", + "item_id": 267757 + }, + { + "alias": "Modified Ancient Combat Bracer", + "item_id": 267755 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients\n------------------------------\n\n#L \"Crystalised Memories of a Sniper\" \"267704\"\n\n\n#L \"Crystalised Memories of a Warrior\" \"267697\"\n\n\n#L \"Ancient Scrap of Spirit Knowledge\" \"267677\"\n\n\n#L \"Ancient Scrap of Saturated Spirit Knowledge\" \"267679\"\n\n\n#L \"Inert Knowledge Crystal\" \"267737\"\n\n\n#L \"Inactive Ancient Bracer\" \"267746\"\n\n\n#L \"Ancient Engineering Device\" \"267751\" (Reusable) #L \"Recipe\" \"/tell recipe 594\"\n\n\n#L \"Crystalised Memories of a Defender\" \"267711\"\n\n\n------------------------------\nRecipe\n------------------------------\n\nCrystalised Memories of a Sniper\n+\nCrystalised Memories of a Warrior\n=\n\n#L \"Combined Crystalised Combat Memories\" \"267705\"\nSkills: | NP1250 |\n\n------------------------------\n\nAncient Scrap of Spirit Knowledge\n+\nAncient Scrap of Saturated Spirit Knowledge\n=\n\n#L \"Ancient Scrap of Condensed Spirit Knowledge\" \"267680\"\nSkills: | PT1750 |\n\n------------------------------\n\nCombined Crystalised Combat Memories\n+\nAncient Scrap of Condensed Spirit Knowledge\n=\n\n#L \"Ancient Scrap of Spirit Combat Knowledge\" \"267681\"\nSkills: | CL1250 |\n\n------------------------------\n\nAncient Scrap of Spirit Combat Knowledge\n+\nInert Knowledge Crystal\n=\n\n#L \"Combat Knowledge Crystal\" \"267739\"\nSkills: | PT1750 |\n\n------------------------------\n\nInactive Bracer\n+\nAncient Engineering Device\n=\n\n#L \"Active Ancient Bracer\" \"267747\"\nSkills: | ME1500 |\n\n------------------------------\n\nActive Ancient Bracer\n+\nCombat Knowledge Crystal\n=\n\n#L \"Ancient Combat Bracer\" \"267753\"\nSkills: | CL1250 |\n\n------------------------------\n\nYou can now modify your Ancient Combat bracer with a Crystalised Memory. The result will depend on which Memory you use:\n\n------------------------------\n\nVariation 1:\n\nAncient Combat Bracer\n+\nCrystalised Memories of a Sniper\n=\n\n#L \"Modified Ancient Combat Bracer\" \"267756\"\nSkills: | CL1250 |\n\nVariation 2:\n\nAncient Combat Bracer\n+\nCrystalised Memories of a Warrior\n=\n\n#L \"Modified Ancient Combat Bracer\" \"267757\"\nSkills: | CL1250 |\n\nVariation 3:\n\nAncient Combat Bracer\n+\nCrystalised Memories of a Defender\n=\n\n#L \"Modified Ancient Combat Bracer\" \"267755\"\nSkills: | CL1250 |\n\n------------------------------\nComments\n------------------------------\n\nYou can further upgrade this item, but thats another recipe... #L \"Click here\" \"/tell recipe 596\" to see it." +} diff --git a/modules/standard/recipe/recipes/594.json b/modules/standard/recipe/recipes/594.json new file mode 100644 index 0000000..05bda30 --- /dev/null +++ b/modules/standard/recipe/recipes/594.json @@ -0,0 +1,29 @@ +{ + "name": "Ancient Engineering Device", + "author": "", + "items": [ + { + "alias": "Energy Infused Crystal", + "item_id": 267749 + }, + { + "alias": "Inactive Ancient Engineering Device", + "item_id": 267748 + }, + { + "alias": "Crystalised Memories of a Engineer", + "item_id": 267714 + }, + { + "alias": "Activated Ancient Engineering Device", + "item_id": 267750 + }, + { + "alias": "Ancient Engineering Device", + "item_id": 267751 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients\n------------------------------\n\n#L \"Energy Infused Crystal\" \"267749\"\n\n\n#L \"Inactive Ancient Engineering Device\" \"267748\"\n\n\n#L \"Crystalised Memories of a Engineer\" \"267714\"\n\n\n------------------------------\nRecipe\n------------------------------\n\nEnergy Infused Crystal\n+\nInactive Ancient Engineering Device\n=\n\n#L \"Activated Ancient Engineering Device\" \"267750\"\nSkills: | ME1125 |\n\n------------------------------\n\nActivated Ancient Engineering Device\n+\nCrystalised Memories of a Engineer\n=\n\n#L \"Ancient Engineering Device\" \"267751\"\nSkills: | ME1500 |\n\n------------------------------\nComments\n------------------------------\n\nReusable tool handy for tradeskillers." +} diff --git a/modules/standard/recipe/recipes/595.json b/modules/standard/recipe/recipes/595.json new file mode 100644 index 0000000..d9c1a30 --- /dev/null +++ b/modules/standard/recipe/recipes/595.json @@ -0,0 +1,109 @@ +{ + "name": "Masterpiece Ancient Bracer", + "author": "", + "items": [ + { + "alias": "Ancient Scrap of Spirit Knowledge", + "item_id": 267677 + }, + { + "alias": "Ancient Scrap of Saturated Spirit Knowledge", + "item_id": 267679 + }, + { + "alias": "Inert Knowledge Crystal", + "item_id": 267737 + }, + { + "alias": "Inactive Ancient Bracer", + "item_id": 267746 + }, + { + "alias": "Ancient Engineering Device", + "item_id": 267751 + }, + { + "alias": "Crystalised Memories of a Sniper", + "item_id": 267704 + }, + { + "alias": "Crystalised Memories of a Warrior", + "item_id": 267697 + }, + { + "alias": "Crystalised Memories of a Doctor", + "item_id": 267726 + }, + { + "alias": "Crystalised Memories of a Surgeon", + "item_id": 267728 + }, + { + "alias": "Crystalised Memories of a Technician", + "item_id": 267698 + }, + { + "alias": "Crystalised Memories of a Mechanic", + "item_id": 267701 + }, + { + "alias": "Combined Crystalised Combat Memories", + "item_id": 267705 + }, + { + "alias": "Ancient Scrap of Condensed Spirit Knowledge", + "item_id": 267680 + }, + { + "alias": "Ancient Scrap of Spirit Combat Knowledge", + "item_id": 267681 + }, + { + "alias": "Combat Knowledge Crystal", + "item_id": 267739 + }, + { + "alias": "Combined Crystalised Medical Memories", + "item_id": 267729 + }, + { + "alias": "Ancient Scrap of Spirit Medical Knowledge", + "item_id": 267727 + }, + { + "alias": "Medical Knowledge Crystal", + "item_id": 267738 + }, + { + "alias": "Combined Crystalised Technical Memories", + "item_id": 267702 + }, + { + "alias": "Ancient Scrap of Spirit Technical Knowledge", + "item_id": 267703 + }, + { + "alias": "Technical Knowledge Crystal", + "item_id": 267740 + }, + { + "alias": "Incomplete Crystalised Memories", + "item_id": 267781 + }, + { + "alias": "Complete Crystalised Memories", + "item_id": 267778 + }, + { + "alias": "Active Ancient Bracer", + "item_id": 267747 + }, + { + "alias": "Masterpiece Ancient Bracer", + "item_id": 267780 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients\n------------------------------\n\n#L \"Ancient Scrap of Spirit Knowledge\" \"267677\" x 3\n\n\n#L \"Ancient Scrap of Saturated Spirit Knowledge\" \"267679\" x 3\n\n\n#L \"Inert Knowledge Crystal\" \"267737\" x 3\n\n\n#L \"Inactive Bracer\" \"267746\"\n\n\n#L \"Ancient Engineering Device\" \"267751\" #L \"Recipe\" \"/tell recipe 594\"\n\n\n#L \"Crystalised Memories of a Sniper\" \"267704\"\n\n\n#L \"Crystalised Memories of a Warrior\" \"267697\"\n\n\n#L \"Crystalised Memories of a Doctor\" \"267726\"\n\n\n#L \"Crystalised Memories of a Surgeon\" \"267728\"\n\n\n#L \"Crystalised Memories of a Technician\" \"267698\"\n\n\n#L \"Crystalised Memories of a Mechanic\" \"267701\"\n\n\n------------------------------\nRecipe\n------------------------------\n\nPart 1:\n\nCrystalised Memories of a Sniper\n+\nCrystalised Memories of a Warrior\n=\n\n#L \"Combined Crystalised Combat Memories\" \"267705\"\nSkills: | NP1250 |\n\n------------------------------\n\nAncient Scrap of Spirit Knowledge\n+\nAncient Scrap of Saturated Spirit Knowledge\n=\n\n#L \"Ancient Scrap of Condensed Spirit Knowledge\" \"267680\"\nSkills: | PT1750 |\n\n------------------------------\n\nCombined Crystalised Combat Memories\n+\nAncient Scrap of Condensed Spirit Knowledge\n=\n\n#L \"Ancient Scrap of Spirit Combat Knowledge\" \"267681\"\nSkills: | CL1250 |\n\n------------------------------\n\nAncient Scrap of Spirit Combat Knowledge\n+\nInert Knowledge Crystal\n=\n\n#L \"Combat Knowledge Crystal\" \"267739\"\nSkills: | CL1250 |\n\n------------------------------\n\nPart 2:\n\nCrystalised Memories of a Doctor\n+\nCrystalised Memories of a Surgeon\n=\n\n#L \"Combined Crystalised Medical Memories\" \"267729\"\nSkills: | CH1750 |\n\n------------------------------\n\nAncient Scrap of Spirit Knowledge\n+\nAncient Scrap of Saturated Spirit Knowledge\n=\n\n#L \"Ancient Scrap of Condensed Spirit Knowledge\" \"267680\"\nSkills: | PT1750 |\n\n------------------------------\n\nCombined Crystalised Medical Memories\n+\nAncient Scrap of Condensed Spirit Knowledge\n=\n\n#L \"Ancient Scrap of Spirit Medical Knowledge\" \"267727\"\nSkills: | CH1750 |\n\n------------------------------\n\nAncient Scrap of Spirit Medical Knowledge\n+\nInert Knowledge Crystal\n=\n\n#L \"Medical Knowledge Crystal\" \"267738\"\nSkills: | CH1750 |\n\n------------------------------\n\nPart 3:\n\nCrystalised Memories of a Technician\n+\nCrystalised Memories of a Mechanic\n=\n\n#L \"Combined Crystalised Technical Memories\" \"267702\"\nSkills: | NP1875 |\n\n------------------------------\n\nAncient Scrap of Spirit Knowledge\n+\nAncient Scrap of Saturated Spirit Knowledge\n=\n\n#L \"Ancient Scrap of Condensed Spirit Knowledge\" \"267680\"\nSkills: | PT1750 |\n\n------------------------------\n\nCombined Crystalised Technical Memories\n+\nAncient Scrap of Condensed Spirit Knowledge\n=\n\n#L \"Ancient Scrap of Spirit Technical Knowledge\" \"267703\"\nSkills: | NP1875 |\n\n------------------------------\n\nAncient Scrap of Spirit Technical Knowledge\n+\nInert Knowledge Crystal\n=\n\n#L \"Technical Knowledge Crystal\" \"267740\"\nSkills: | CH1750 |\n\n------------------------------\n\nNext we combine the Knowledge Crystals:\n\nCombat Knowledge Crystal\n+\nMedical Knowledge Crystal\n=\n\n#L \"Incomplete Crystalised Memories\" \"267781\"\nSkills: | QT1562 |\n\n------------------------------\n\nIncomplete Crystalised Memories\n+\nTechnical Knowledge Crystal\n=\n\n#L \"Complete Crystalised Memories\" \"267778\"\nSkills: | QT1562 |\n\n------------------------------\n\nActivate the Bracer and combine with Completed Memories:\n\nInactive Bracer\n+\nAncient Engineering Device\n=\n\n#L \"Active Ancient Bracer\" \"267747\"\nSkills: | ME1500 |\n\n------------------------------\n\nActive Ancient Bracer\n+\nComplete Crystalised Memories\n=\n\n#L \"Masterpiece Ancient Bracer\" \"267780\"\nSkills: | CL1250 |\n\n------------------------------\nComments\n------------------------------\n\nI know what you are thinking.. and yes.. that IS a lot of steps :P" +} diff --git a/modules/standard/recipe/recipes/596.json b/modules/standard/recipe/recipes/596.json new file mode 100644 index 0000000..31e124a --- /dev/null +++ b/modules/standard/recipe/recipes/596.json @@ -0,0 +1,101 @@ +{ + "name": "Masterpiece Ancient Defensive Bracer", + "author": "", + "items": [ + { + "alias": "Ancient Scrap of Spirit Knowledge", + "item_id": 267677 + }, + { + "alias": "Ancient Scrap of Saturated Spirit Knowledge", + "item_id": 267679 + }, + { + "alias": "Inert Knowledge Crystal", + "item_id": 267737 + }, + { + "alias": "Crystalised Memories of a Sniper", + "item_id": 267704 + }, + { + "alias": "Crystalised Memories of a Warrior", + "item_id": 267697 + }, + { + "alias": "Crystalised Memories of a Doctor", + "item_id": 267726 + }, + { + "alias": "Crystalised Memories of a Surgeon", + "item_id": 267728 + }, + { + "alias": "Crystalised Memories of a Technician", + "item_id": 267698 + }, + { + "alias": "Crystalised Memories of a Mechanic", + "item_id": 267701 + }, + { + "alias": "Modified Ancient Combat Bracer", + "item_id": 267755 + }, + { + "alias": "Combined Crystalised Combat Memories", + "item_id": 267705 + }, + { + "alias": "Ancient Scrap of Condensed Spirit Knowledge", + "item_id": 267680 + }, + { + "alias": "Ancient Scrap of Spirit Combat Knowledge", + "item_id": 267681 + }, + { + "alias": "Combat Knowledge Crystal", + "item_id": 267739 + }, + { + "alias": "Combined Crystalised Medical Memories", + "item_id": 267729 + }, + { + "alias": "Ancient Scrap of Spirit Medical Knowledge", + "item_id": 267727 + }, + { + "alias": "Medical Knowledge Crystal", + "item_id": 267738 + }, + { + "alias": "Combined Crystalised Technical Memories", + "item_id": 267702 + }, + { + "alias": "Ancient Scrap of Spirit Technical Knowledge", + "item_id": 267703 + }, + { + "alias": "Technical Knowledge Crystal", + "item_id": 267740 + }, + { + "alias": "Incomplete Crystalised Memories", + "item_id": 267781 + }, + { + "alias": "Complete Crystalised Memories", + "item_id": 267778 + }, + { + "alias": "Masterpiece Ancient Defensive Bracer", + "item_id": 267798 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients\n------------------------------\n\n#L \"Ancient Scrap of Spirit Knowledge\" \"267677\" x 3\n\n\n#L \"Ancient Scrap of Saturated Spirit Knowledge\" \"267679\" x 3\n\n\n#L \"Inert Knowledge Crystal\" \"267737\" x 3\n\n\n#L \"Crystalised Memories of a Sniper\" \"267704\"\n\n\n#L \"Crystalised Memories of a Warrior\" \"267697\"\n\n\n#L \"Crystalised Memories of a Doctor\" \"267726\"\n\n\n#L \"Crystalised Memories of a Surgeon\" \"267728\"\n\n\n#L \"Crystalised Memories of a Technician\" \"267698\"\n\n\n#L \"Crystalised Memories of a Mechanic\" \"267701\"\n\n\n#L \"Modified Ancient Combat Bracer\" \"267755\"\n\n\n------------------------------\nRecipe\n------------------------------\n\nPart 1:\n\nCrystalised Memories of a Sniper\n+\nCrystalised Memories of a Warrior\n=\n\n#L \"Combined Crystalised Combat Memories\" \"267705\"\nSkills: | NP1250 |\n\n------------------------------\n\nAncient Scrap of Spirit Knowledge\n+\nAncient Scrap of Saturated Spirit Knowledge\n=\n\n#L \"Ancient Scrap of Condensed Spirit Knowledge\" \"267680\"\nSkills: | PT1750 |\n\n------------------------------\n\nCombined Crystalised Combat Memories\n+\nAncient Scrap of Condensed Spirit Knowledge\n=\n\n#L \"Ancient Scrap of Spirit Combat Knowledge\" \"267681\"\nSkills: | CL1250 |\n\n------------------------------\n\nAncient Scrap of Spirit Combat Knowledge\n+\nInert Knowledge Crystal\n=\n\n#L \"Combat Knowledge Crystal\" \"267739\"\nSkills: | CL1250 |\n\n------------------------------\n\nPart 2:\n\nCrystalised Memories of a Doctor\n+\nCrystalised Memories of a Surgeon\n=\n\n#L \"Combined Crystalised Medical Memories\" \"267729\"\nSkills: | CH1750 |\n\n------------------------------\n\nAncient Scrap of Spirit Knowledge\n+\nAncient Scrap of Saturated Spirit Knowledge\n=\n\n#L \"Ancient Scrap of Condensed Spirit Knowledge\" \"267680\"\nSkills: | PT1750 |\n\n------------------------------\n\nCombined Crystalised Medical Memories\n+\nAncient Scrap of Condensed Spirit Knowledge\n=\n\n#L \"Ancient Scrap of Spirit Medical Knowledge\" \"267727\"\nSkills: | CH1750 |\n\n------------------------------\n\nAncient Scrap of Spirit Medical Knowledge\n+\nInert Knowledge Crystal\n=\n\n#L \"Medical Knowledge Crystal\" \"267738\"\nSkills: | CH1750 |\n\n------------------------------\n\nPart 3:\n\nCrystalised Memories of a Technician\n+\nCrystalised Memories of a Mechanic\n=\n\n#L \"Combined Crystalised Technical Memories\" \"267702\"\nSkills: | NP1875 |\n\n------------------------------\n\nAncient Scrap of Spirit Knowledge\n+\nAncient Scrap of Saturated Spirit Knowledge\n=\n\n#L \"Ancient Scrap of Condensed Spirit Knowledge\" \"267680\"\nSkills: | PT1750 |\n\n------------------------------\n\nCombined Crystalised Technical Memories\n+\nAncient Scrap of Condensed Spirit Knowledge\n=\n\n#L \"Ancient Scrap of Spirit Technical Knowledge\" \"267703\"\nSkills: | NP1875 |\n\n------------------------------\n\nAncient Scrap of Spirit Technical Knowledge\n+\nInert Knowledge Crystal\n=\n\n#L \"Technical Knowledge Crystal\" \"267740\"\nSkills: | CH1750 |\n\n------------------------------\n\nNext we combine the Knowledge Crystals:\n\nCombat Knowledge Crystal\n+\nMedical Knowledge Crystal\n=\n\n#L \"Incomplete Crystalised Memories\" \"267781\"\nSkills: | QT1562 |\n\n------------------------------\n\nIncomplete Crystalised Memories\n+\nTechnical Knowledge Crystal\n=\n\n#L \"Complete Crystalised Memories\" \"267778\"\nSkills: | QT1562 |\n\n------------------------------\n\nNow combine with your ready-made Bracer:\n\nComplete Crystalised Memories\n+\nModified Ancient Combat Bracer\n=\n\n#L \"Masterpiece Ancient Defensive Bracer\" \"267798\"\nSkills: | ?? |\n\n------------------------------\nComments\n------------------------------\n\nAmazingly similar to #L \"Masterpiece Ancient Defensive Bracer\" \"/tell recipebot show me 595\" recipe :P" +} diff --git a/modules/standard/recipe/recipes/597.json b/modules/standard/recipe/recipes/597.json new file mode 100644 index 0000000..eec29c8 --- /dev/null +++ b/modules/standard/recipe/recipes/597.json @@ -0,0 +1,61 @@ +{ + "name": "Ancient Damage Generation Device", + "author": "", + "items": [ + { + "alias": "Ancient Medical Device", + "item_id": 267736 + }, + { + "alias": "Ancient Damage Generation Device", + "item_id": 267725 + }, + { + "alias": "Acid Gland Sample", + "item_id": 267743 + }, + { + "alias": "Fire Gland Sample", + "item_id": 267741 + }, + { + "alias": "Frost Gland Sample", + "item_id": 267742 + }, + { + "alias": "Radioactive Gland Sample", + "item_id": 267744 + }, + { + "alias": "Venom Gland Sample", + "item_id": 267745 + }, + { + "alias": "Sample of a chemical based compound", + "item_id": 267732 + }, + { + "alias": "Ancient Chemical Generation Device", + "item_id": 267722 + }, + { + "alias": "Ancient Fire Generation Device", + "item_id": 267720 + }, + { + "alias": "Ancient Cold Generation Device", + "item_id": 267721 + }, + { + "alias": "Ancient Radiation Generation Device", + "item_id": 267723 + }, + { + "alias": "Ancient Poison Generation Device", + "item_id": 267724 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients\n------------------------------\n\n#L \"Ancient Medical Device\" \"267736\" #L \"Recipe\" \"/tell recipe 598\"\n\n\n#L \"Ancient Damage Generation Device\" \"267725\"\n\n\nand one of the following items:\n\n#L \"Acid Gland Sample\" \"267743\"\n\n\n#L \"Fire Gland Sample\" \"267741\"\n\n\n#L \"Frost Gland Sample\" \"267742\"\n\n\n#L \"Radioactive Gland Sample\" \"267744\"\n\n\n#L \"Venom Gland Sample\" \"267745\"\n\n\n------------------------------\nRecipe\n------------------------------\n\nAncient Medical Device\n+\na gland sample (eg: Acid Gland Sample)\n=\n\na sample of compound\n(eg: #L \"Sample of a chemical based compound\" \"267732\")\nSkills: | PT1750 |\n\n------------------------------\n\nAncient Damage Generation Device\n+\nsample of compound (eg: Sample of a chemical based compound)\n=\n\nAncient Generation Device\n(eg: #L \"Ancient Chemical Generation Device\" \"267722\")\nSkills: | CL1250 |\n\n------------------------------\nDetails\n------------------------------\n\nAcid Gland Sample = #L \"Ancient Chemical Generation Device\" \"267722\"\nFire Gland Sample = #L \"Ancient Fire Generation Device\" \"267720\"\nFrost Gland Sample = #L \"Ancient Cold Generation Device\" \"267721\"\nRadioactive Gland Sample = #L \"Ancient Radiation Generation Device\" \"267723\"\nVenom Gland Sample = #L \"Ancient Poison Generation Device\" \"267724\"\n\n------------------------------\nComments\n------------------------------\n\nFinal product is used to change your damage type as well as give you 500 ACs of that type. :D" +} diff --git a/modules/standard/recipe/recipes/598.json b/modules/standard/recipe/recipes/598.json new file mode 100644 index 0000000..82a8ac8 --- /dev/null +++ b/modules/standard/recipe/recipes/598.json @@ -0,0 +1,29 @@ +{ + "name": "Ancient Medical Device", + "author": "", + "items": [ + { + "alias": "Energy Infused Crystal", + "item_id": 267749 + }, + { + "alias": "Inactive Ancient Medical Device", + "item_id": 267735 + }, + { + "alias": "Crystalised Memories of a Doctor", + "item_id": 267726 + }, + { + "alias": "Active Ancient Medical Device", + "item_id": 267914 + }, + { + "alias": "Ancient Medical Device", + "item_id": 267736 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients\n------------------------------\n\n#L \"Energy Infused Crystal\" \"267749\"\n\n\n#L \"Inactive Ancient Medical Device\" \"267735\"\n\n\n#L \"Crystalised Memories of a Doctor\" \"267726\"\n\n\n------------------------------\nRecipe\n------------------------------\n\nEnergy Infused Crystal\n+\nInactive Ancient Medical Device\n=\n\n#L \"Active Ancient Medical Device\" \"267914\"\nSkills: | ME1500 |\n\n------------------------------\n\nActive Ancient Medical Device\n+\nCrystalised Memories of a Doctor\n=\n\n#L \"Ancient Medical Device\" \"267736\"\nSkills: | ME1500 |\n\n------------------------------\nComments\n------------------------------\n\nAnother handy reusable tool for tradeskillers." +} diff --git a/modules/standard/recipe/recipes/6.json b/modules/standard/recipe/recipes/6.json new file mode 100644 index 0000000..b8792ef --- /dev/null +++ b/modules/standard/recipe/recipes/6.json @@ -0,0 +1,301 @@ +{ + "name": "Upgrading Alien Weapons", + "author": "", + "items": [ + { + "alias": "Kyr'Ozch Bio-Material - Type 1", + "item_id": 247684 + }, + { + "alias": "Kyr'Ozch Shotgun", + "item_id": 254583 + }, + { + "alias": "Kyr'Ozch Shotgun - Type 1", + "item_id": 254590 + } + ], + "steps": [ + { + "source": "Kyr'Ozch Bio-Material - Type 1", + "target": "Kyr'Ozch Shotgun", + "result": "Kyr'Ozch Shotgun - Type 1", + "skills": "WS" + } + ], + "details": [ + { + "item": { + "id": 247684, + "_name": "Kyr'Ozch Bio-Material - Type 1" + } + }, + { + "item": { + "id": 254576, + "_name": "Kyr'Ozch Grenade Gun - Type 1" + } + }, + { + "item": { + "id": 254625, + "_name": "Kyr'Ozch Pistol - Type 1" + } + }, + { + "item": { + "id": 254590, + "_name": "Kyr'Ozch Shotgun - Type 1" + } + }, + { + "text": "" + }, + { + "item": { + "id": 247676, + "_name": "Kyr'Ozch Bio-Material - Type 112" + } + }, + { + "item": { + "id": 254709, + "_name": "Kyr'Ozch Energy Hammer - Type 112" + } + }, + { + "item": { + "id": 254681, + "_name": "Kyr'Ozch Hammer - Type 112" + } + }, + { + "item": { + "id": 254786, + "_name": "Kyr'Ozch Spear - Type 112" + } + }, + { + "item": { + "id": 254765, + "_name": "Kyr'Ozch Sword - Type 112" + } + }, + { + "text": "" + }, + { + "item": { + "id": 247692, + "_name": "Kyr'Ozch Bio-Material - Type 12" + } + }, + { + "item": { + "id": 254506, + "_name": "Kyr'Ozch Carbine - Type 12" + } + }, + { + "item": { + "id": 254541, + "_name": "Kyr'Ozch Submachine Gun - Type 12" + } + }, + { + "text": "" + }, + { + "item": { + "id": 247696, + "_name": "Kyr'Ozch Bio-Material - Type 13" + } + }, + { + "item": { + "id": 254513, + "_name": "Kyr'Ozch Carbine - Type 13" + } + }, + { + "text": "" + }, + { + "item": { + "id": 247686, + "_name": "Kyr'Ozch Bio-Material - Type 2" + } + }, + { + "item": { + "id": 254611, + "_name": "Kyr'Ozch Crossbow - Type 2" + } + }, + { + "item": { + "id": 254478, + "_name": "Kyr'Ozch Rifle - Type 2" + } + }, + { + "text": "" + }, + { + "item": { + "id": 247678, + "_name": "Kyr'Ozch Bio-Material - Type 240" + } + }, + { + "item": { + "id": 254695, + "_name": "Kyr'Ozch Axe - Type 240" + } + }, + { + "text": "" + }, + { + "item": { + "id": 247694, + "_name": "Kyr'Ozch Bio-Material - Type 3" + } + }, + { + "item": { + "id": 254604, + "_name": "Kyr'Ozch Crossbow - Type 3" + } + }, + { + "item": { + "id": 254562, + "_name": "Kyr'Ozch Energy Carbine - Type 3" + } + }, + { + "item": { + "id": 254485, + "_name": "Kyr'Ozch Rifle - Type 3" + } + }, + { + "text": "" + }, + { + "item": { + "id": 247688, + "_name": "Kyr'Ozch Bio-Material - Type 4" + } + }, + { + "item": { + "id": 254660, + "_name": "Kyr'Ozch Machine Pistol - Type 4" + } + }, + { + "item": { + "id": 254632, + "_name": "Kyr'Ozch Pistol - Type 4" + } + }, + { + "item": { + "id": 254527, + "_name": "Kyr'Ozch Submachine Gun - Type 4" + } + }, + { + "text": "" + }, + { + "item": { + "id": 247690, + "_name": "Kyr'Ozch Bio-Material - Type 5" + } + }, + { + "item": { + "id": 254499, + "_name": "Kyr'Ozch Carbine - Type 5" + } + }, + { + "item": { + "id": 254555, + "_name": "Kyr'Ozch Energy Carbine - Type 5" + } + }, + { + "item": { + "id": 254646, + "_name": "Kyr'Ozch Energy Pistol - Type 5" + } + }, + { + "item": { + "id": 254667, + "_name": "Kyr'Ozch Machine Pistol - Type 5" + } + }, + { + "item": { + "id": 254534, + "_name": "Kyr'Ozch Submachine Gun - Type 5" + } + }, + { + "text": "" + }, + { + "item": { + "id": 247674, + "_name": "Kyr'Ozch Bio-Material - Type 76" + } + }, + { + "item": { + "id": 254751, + "_name": "Kyr'Ozch Energy Sword - Type 76" + } + }, + { + "item": { + "id": 254737, + "_name": "Kyr'Ozch Sledgehammer - Type 76" + } + }, + { + "text": "" + }, + { + "item": { + "id": 247680, + "_name": "Kyr'Ozch Bio-Material - Type 880" + } + }, + { + "item": { + "id": 254772, + "_name": "Kyr'Ozch Sword - Type 880" + } + }, + { + "text": "" + }, + { + "item": { + "id": 247682, + "_name": "Kyr'Ozch Bio-Material - Type 992" + } + }, + { + "item": { + "id": 254723, + "_name": "Kyr'Ozch Energy Rapier - Type 992" + } + } + ] +} diff --git a/modules/standard/recipe/recipes/60.json b/modules/standard/recipe/recipes/60.json new file mode 100644 index 0000000..f5c928e --- /dev/null +++ b/modules/standard/recipe/recipes/60.json @@ -0,0 +1,45 @@ +{ + "name": "Emergency Treatment Laboratory", + "author": "", + "items": [ + { + "alias": "HQ Antiseptic Jar", + "item_id": 154330 + }, + { + "alias": "Mimicking Cellular Oil", + "item_id": 154268 + }, + { + "alias": "Revitalizing Serum", + "item_id": 154344 + }, + { + "alias": "Blood Plasma", + "item_id": 154359 + }, + { + "alias": "Treatment Laboratory Bot-Injector", + "item_id": 154340 + }, + { + "alias": "Jar of Mimicking Cellular Oil", + "item_id": 154334 + }, + { + "alias": "Jar of Prepared Serum", + "item_id": 154336 + }, + { + "alias": "Jar of Transient Fluid", + "item_id": 154338 + }, + { + "alias": "First-rate Emergency Treatment Laboratory", + "item_id": 154328 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients\n------------------------------\n\n#L \"Antiseptic Jar\" \"154330\"\n\n\n#L \"Mimicking Cellular Oil\" \"154268\"\n\n\n#L \"Revitalizing Serum\" \"154344\"\n\n\n#L \"Blood Plasma\" \"154359\" #L \"Recipe\" \"/tell recipe 20\"\n\n\n#L \"Treatment Laboratory Bot-Injector\" \"154340\"\n\n\n------------------------------\nRecipe\n------------------------------\n\nMimicking Cellular Oil\n+\nAntiseptic Jar\n=\n\n#L \"Jar of Mimicking Cellular Oil\" \"154334\"\nSkills: | PT |\n\n------------------------------\n\nRevitalizing Serum\n+\nJar of Mimicking Cellular Oil\n=\n\n#L \"Jar of Prepared Serum\" \"154336\"\nSkills: | PT |\n\n------------------------------\n\nBlood Plasma\n+\nJar of Prepared Serum\n=\n\n#L \"Jar of Transient Fluid\" \"154338\"\nSkills: | PT |\n\n------------------------------\n\nJar of Transient Fluid\n+\nTreatment Laboratory Bot-Injector\n=\n\n#L \"Emergency Treatment Laboratory\" \"154328\"\nSkills: | PT |\n\n------------------------------\nComments\n------------------------------\n\nTheses Emergency Treatment Laboratory are extremeley efficient and can be sold very high. Sadly, the cost of the ingredients involved to make them is really high too..." +} diff --git a/modules/standard/recipe/recipes/600.json b/modules/standard/recipe/recipes/600.json new file mode 100644 index 0000000..1b20a8f --- /dev/null +++ b/modules/standard/recipe/recipes/600.json @@ -0,0 +1,53 @@ +{ + "name": "Frozen Yutto Remedies", + "author": "", + "items": [ + { + "alias": "Yuttos Filter", + "item_id": 269884 + }, + { + "alias": "Permafrost Residue", + "item_id": 269872 + }, + { + "alias": "Empty Permafrost Stimulant Chamber", + "item_id": 269891 + }, + { + "alias": "Volatile Permafrost Chemicals", + "item_id": 269893 + }, + { + "alias": "Viscous Permafrost Chemicals", + "item_id": 269894 + }, + { + "alias": "Regenerative Permafrost Chemicals", + "item_id": 269895 + }, + { + "alias": "Filtered Permafrost Residue", + "item_id": 269890 + }, + { + "alias": "Full Permafrost Stimulant Chamber", + "item_id": 269892 + }, + { + "alias": "Frozen Yuttos Remedy - Bane", + "item_id": 269865 + }, + { + "alias": "Frozen Yuttos Remedy - Icy Scales", + "item_id": 269866 + }, + { + "alias": "Frozen Yuttos Remedy - Tonic", + "item_id": 269867 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients \n------------------------------\n\n *** With items gathered during the Penumbra quests and found in Alappaa, you can create 3 different kinds of Yutto Remedies. The base for all is the same, just the last components differ depending which type you wish to build. \nNote: Every step requires 1100 in Pharmacy skill and every product comes in stack of 5.\n *** \n\n#L \"Yuttos Filter\" \"269884\"\n\n\n#L \"Permafrost Residue\" \"269872\"\n\n\n#L \"Empty Permafrost Stimulant Chamber\" \"269891\"\n\n\n#L \"Volatile Permafrost Chemicals\" \"269893\"\n\nor\n#L \"Viscous Permafrost Chemicals\" \"269894\"\n\nor\n#L \"Regenerative Permafrost Chemicals\" \"269895\"\n\n\n------------------------------\nRecipe \n------------------------------\n\nThe Base:\n\nYuttos Filter\n+\nPermafrost Residue\n=\n\n#L \"Filtered Permafrost Residue\" \"269890\"\nSkills: | PH |\n\nFiltered Permafrost Residue\n+\nEmpty Permafrost Stimulant Chamber\n=\n\n#L \"Full Permafrost Stimulant Chamber\" \"269892\"\nSkills: | PH |\n\n------------------------------\n\nThe variations:\n\nCold damage\nFull Permafrost Stimulant Chamber\n+\nVolatile Permafrost Chemicals\n=\n\n#L \"Frozen Yuttos Remedy - Bane\" \"269865\"\nSkills: | PH |\nNote: Runs Vengeful Ward of Penumbra in your NCU (+50 cold damage, +500 Cold AC)\n------------------------------\n\nAdd all defence\nFull Permafrost Stimulant Chamber\n+\nViscous Permafrost Chemicals\n=\n\n#L \"Frozen Yuttos Remedy - Icy Scales\" \"269866\"\nSkills: | PH |\nNote: Runs Protective Ward of Penumbra in your NCU (+5 AAD, +500 Cold AC)\n------------------------------\n\nHeal and Nano Delta\nFull Permafrost Stimulant Chamber\n+\nRegenerative Permafrost Chemicals\n=\n\n#L \"Frozen Yuttos Remedy - Tonic\" \"269867\"\nSkills: | PH |\nNote: Runs Regenerative Ward of Penumbra in your NCU (+2 heal delta, +2 nano delta, +500 Cold AC)\n------------------------------" +} diff --git a/modules/standard/recipe/recipes/601.json b/modules/standard/recipe/recipes/601.json new file mode 100644 index 0000000..58f1c9d --- /dev/null +++ b/modules/standard/recipe/recipes/601.json @@ -0,0 +1,21 @@ +{ + "name": "Anun Membrane Gloves", + "author": "", + "items": [ + { + "alias": "Anun Wing", + "item_id": 248930 + }, + { + "alias": "Mass Relocating Robot (Shape Soft Armor)", + "item_id": 162220 + }, + { + "alias": "Anun Membrane Gloves", + "item_id": 248928 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients \n------------------------------\n\n *** Only Bureaucrats and Traders can use these gloves. Since the\ntradeskill process creates a nondrop item, the user must do it him/herself.\nBasic ingredient for gloves are Anun Wings. They drop of any Anun mob, for\nhigher quality I would suggest hunting Anuns in PW or inside missions.\nYou'll also need Mass Relocating Robot (Shape Soft Armor) to complete the\nprocess.\n *** \n\n#L \"Anun Wing\" \"248930\"\n\n\n#L \"Mass Relocating Robot (Shape Soft Armor)\" \"162220\"\n\n------------------------------\nRecipe \n------------------------------\n\nAnun Wing\n+\nMass Relocating Robot (Shape Soft Armor)\n=\n\n#L \"Anun Membrane Gloves\" \"248928\"\nSkills: | requires 3.5 QL in Mech. Engi |" +} diff --git a/modules/standard/recipe/recipes/602.json b/modules/standard/recipe/recipes/602.json new file mode 100644 index 0000000..2bf3502 --- /dev/null +++ b/modules/standard/recipe/recipes/602.json @@ -0,0 +1,29 @@ +{ + "name": "Ceremonial Chief's Headwear", + "author": "", + "items": [ + { + "alias": "Small Obsidian Jar", + "item_id": 206477 + }, + { + "alias": "Obsidian Jar", + "item_id": 206457 + }, + { + "alias": "Advanced Hacker Tool", + "item_id": 87814 + }, + { + "alias": "Ceremonial Watchman's Hood", + "item_id": 206460 + }, + { + "alias": "Ceremonial Chief's Headwear", + "item_id": 206456 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients \n------------------------------\n\n *** There are actually two types of them, made either from Small\nObsidian Jar or Obsidian Jar. Jars drops of random mobs in Inner Sanctum.\nOnly thing needed to complete the process is Advanced Hacker Tool, available\nfrom Devices Terminal.\n *** \n\n#L \"Small Obsidian Jar\" \"206477\"\n\n\n#L \"Obsidian Jar\" \"206457\"\n\n\n#L \"Advanced Hacker Tool\" \"87814\"\n\n\n------------------------------\nRecipe \n------------------------------\n\nCeremonial Watchman's Hood\n\nSmall Obsidian Jar\n+\nAdvanced Hacker Tool\n=\n\n#L \"Ceremonial Watchman's Hood\" \"206459\"\nSkills: | Requires 665 in Breaking & Entering Skill.|\n\n------------------------------\n\nCeremonial Chief's Headwear\n\nObsidian Jar\n+\nAdvanced Hacker Tool\n=\n\n#L \"Ceremonial Chief's Headwear\" \"206455\"\nSkills: | Requires 855 in Breaking & Entering Skill. |\n\n------------------------------\n\nNote: Both headgears are leveling items (right-click on them to upgrade\nthem), Watchman's between QL 140 and 180, Chief's between QL 180 and 200.\nBoth are also title locked, Watchman's at title 4 to 5 and Chief's at title\n5" +} diff --git a/modules/standard/recipe/recipes/603.json b/modules/standard/recipe/recipes/603.json new file mode 100644 index 0000000..7243e7a --- /dev/null +++ b/modules/standard/recipe/recipes/603.json @@ -0,0 +1,101 @@ +{ + "name": "Cloak of the Reanimated", + "author": "", + "items": [ + { + "alias": "Soul of the Jester", + "item_id": 274653 + }, + { + "alias": "Soul of the Ranger", + "item_id": 274654 + }, + { + "alias": "Soul of the Summoner", + "item_id": 274651 + }, + { + "alias": "Soul of the Healer", + "item_id": 274656 + }, + { + "alias": "Soul of the Gladiator", + "item_id": 274655 + }, + { + "alias": "Soul of the Illusionist", + "item_id": 274652 + }, + { + "alias": "Empty Spirit Vest", + "item_id": 274646 + }, + { + "alias": "Soul Ripper", + "item_id": 274650 + }, + { + "alias": "Explosion of Light", + "item_id": 274728 + }, + { + "alias": "Soul of the Reanimator", + "item_id": 274649 + }, + { + "alias": "Grey Cloak", + "item_id": 274647 + }, + { + "alias": "Soul of the Reanimated Jester", + "item_id": 274660 + }, + { + "alias": "Jester's Spirit Vest", + "item_id": 274668 + }, + { + "alias": "Cloak of the Reanimated Jester (1/5)", + "item_id": 274718 + }, + { + "alias": "Dull Combined Soul Crystal", + "item_id": 274723 + }, + { + "alias": "Dim Combined Soul Crystal", + "item_id": 274724 + }, + { + "alias": "Sparkling Combined Soul Crystal", + "item_id": 274725 + }, + { + "alias": "Shining Combined Soul Crystal", + "item_id": 274726 + }, + { + "alias": "Awakened Soul Crystal", + "item_id": 274727 + }, + { + "alias": "Cloak of the Reanimated Jester (2/5)", + "item_id": 274719 + }, + { + "alias": "Cloak of the Reanimated Jester (3/5)", + "item_id": 274720 + }, + { + "alias": "Cloak of the Reanimated Jester (4/5)", + "item_id": 274721 + }, + { + "alias": "Cloak of the Reanimated Jester (5/5)", + "item_id": 274722 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients \n------------------------------\n\n *** This cloak comes in 6 different types. Each are made in the\nsame way, apart from the Soul that determines the type of cloak you wish to\nmake.\nThe Reanimator's Cloak can be found in the Crypt of Home dungeon and the\nitems to upgrade it to a Cloak of the Reanimated drop off the Escaped\nPrisoners in Milky Way.\nYou will only need 1 Soul to make the base cloak. To further upgrade it you\nwill need 4 of each type.\n *** \n\n#L \"Reanimator's Cloak\" \"245260\"\n\n\n#L \"Soul of the Jester\" \"274653\"\n\n\n#L \"Soul of the Ranger\" \"274654\"\n\n\n#L \"Soul of the Summoner\" \"274651\"\n\n\n#L \"Soul of the Healer\" \"274656\"\n\n\n#L \"Soul of the Gladiator\" \"274655\"\n\n\n#L \"Soul of the Illusionist\" \"274652\"\n\n\n#L \"Empty Spirit Vest\" \"274646\"\n\n\n#L \"Soul Ripper\" \"274650\"\n\n\n------------------------------\nRecipe \n------------------------------\n\nThe Base Cloak of the Reanimated XXX:\n\nReanimator's Cloak\n+\nSoul Ripper\n=\n\n#L \"Explosion of Light\" \"274728\"\nSkills: | ? |\nNote: Right clicking the Explosion of light will result in:\n\n#L \"Soul of the Reanimator\" \"274649\"\n\nand\n#L \"Grey Cloak\" \"274647\"\n\n\nNote: At this point you will set the type of your Cloak. Use the Soul of\nXXX (any of the 6 types) on your Soul of the Reanimator to make a Cloak of\nthat type.\n\nSoul of the Reanimator\n+\nSoul of the Jester\n=\n\n#L \"Soul of the Reanimated Jester\" \"274660\"\nSkills: | ? |\n\nEmpty Spirit Vest\n+\nSoul of the Reanimated Jester\n=\n\n#L \"Jester's Spirit Vest\" \"274668\"\n\nGrey Cloak\n+\nJester's Spirit Vest\n=\n\n#L \"Cloak of the Reanimated Jester (1/5)\" \"274718\"\n\n------------------------------\n\nUpgrading the Cloak of the Reanimated XXX:\n\nSoul of the Ranger\n+\nSoul of the Gladiator\n=\n\n#L \"Dull Combined Soul Crystal\" \"274723\"\n\nDull Combined Soul Crystal\n+\nSoul of the Healer\n=\n\n#L \"Dim Combined Soul Crystal\" \"274724\"\n\nDim Combined Soul Crystal\n+\nSoul of the Summoner\n=\n\n#L \"Sparkling Combined Soul Crystal\" \"274725\"\n\nSparkling Combined Soul Crystal\n+\nSoul of the Illusionist\n=\n\n#L \"Shining Combined Soul Crystal\" \"274726\"\n\nShining Combined Soul Crystal\n+\nSoul of the Jester\n=\n\n#L \"Awakened Soul Crystal\" \"274727\"\n\nRepeat this step 4 times to end up with 4 Awakened Soul Crystals. Now\napply them to you cloak.\n\nAwakened Soul Crystal\n+\nCloak of the Reanimated Jester (1/5)\n=\n\n#L \"Cloak of the Reanimated Jester (2/5)\" \"274719\"\n\nAwakened Soul Crystal\n+\nCloak of the Reanimated Jester (2/5)\n=\n\n#L \"Cloak of the Reanimated Jester (3/5)\" \"274720\"\n\nAwakened Soul Crystal\n+\nCloak of the Reanimated Jester (3/5)\n=\n\n#L \"Cloak of the Reanimated Jester (4/5)\" \"274721\"\n\nAwakened Soul Crystal\n+\nCloak of the Reanimated Jester (4/5)\n=\n\n#L \"Cloak of the Reanimated Jester (5/5)\" \"274722\"" +} diff --git a/modules/standard/recipe/recipes/604.json b/modules/standard/recipe/recipes/604.json new file mode 100644 index 0000000..a2cbdd6 --- /dev/null +++ b/modules/standard/recipe/recipes/604.json @@ -0,0 +1,21 @@ +{ + "name": "De-Hacked Frederickson Micro-kinetic Sleeves", + "author": "", + "items": [ + { + "alias": "Frederickson Micro-kinetic Sleeves", + "item_id": 152710 + }, + { + "alias": "Advanced Hacker Tool", + "item_id": 87814 + }, + { + "alias": "De-Hacked Frederickson Micro-kinetic Sleeves", + "item_id": 286303 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients \n------------------------------\n\n *** Hack the sleeves with a hacker tool in order to make the clan\nversion of the omni sleeves. Neutrals can not wear them.\nNo trade skills required and the QL of the hacker tool does not matter.\n *** \n\n#L \"Frederickson Micro-kinetic Sleeves\" \"152710\"\n\n\n#L \"Advanced Hacker Tool\" \"87814\"\n\n\n------------------------------\nRecipe \n------------------------------\n\nFrederickson Micro-kinetic Sleeves\n+\nAdvanced Hacker Tool\n=\n\n#L \"De-Hacked Frederickson Micro-kinetic Sleeves\" \"286303\"\nSkills: No skills required." +} diff --git a/modules/standard/recipe/recipes/605.json b/modules/standard/recipe/recipes/605.json new file mode 100644 index 0000000..f0cb777 --- /dev/null +++ b/modules/standard/recipe/recipes/605.json @@ -0,0 +1,25 @@ +{ + "name": "Hacked Light Omni-Tek Artillery Tank Armor", + "author": "", + "items": [ + { + "alias": "Light Omni-Tek Artillery Tank Armor", + "item_id": 204987 + }, + { + "alias": "Advanced Hacker Tool", + "item_id": 87814 + }, + { + "alias": "Field Quantum Physics All-Purpose Tool", + "item_id": 164558 + }, + { + "alias": "Hacked Light Omni-Tek Artillery Tank Armor", + "item_id": 204990 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients \n------------------------------\n\n *** Since the standard issue can only be worn by Omni-Tek\npersonnel, several groups started to develop ways of enabling it to be worn\nby any faction.\nSoon, not one, but two methods were developed which removed the OT\nrestriction. Unfortunately both processes double the run speed handicap.\n *** \n\n#L \"Light Omni-Tek Artillery Tank Armor\" \"204987\"\n\n\n#L \"Advanced Hacker Tool\" \"87814\"\n\n\n#L \"Field Quantum Physics All-Purpose Tool\" \"164558\"\n\n\n------------------------------\nRecipe \n------------------------------\n\nLight Omni-Tek Artillery Tank Armor\n+\nAdvanced Hacker Tool\n=\n\n#L \"Hacked Light Omni-Tek Artillery Tank Armor\" \"204990\"\nSkills: Hacker tool needs to be at least 40% the ql of Tank Armor.\nYou'll need 5x Breaking and Entering skill to hack it.\n\nLight Omni-Tek Artillery Tank Armor\n+\nField Quantum Physics All-Purpose Tool\n=\n\n#L \"Hacked Light Omni-Tek Artillery Tank Armor\" \"204990\"\nFQP tool needs to be at least 40% the ql of Tank Armor. You'll need 5x Field\nQuantum Physics skill to hack it." +} diff --git a/modules/standard/recipe/recipes/606.json b/modules/standard/recipe/recipes/606.json new file mode 100644 index 0000000..14034c2 --- /dev/null +++ b/modules/standard/recipe/recipes/606.json @@ -0,0 +1,49 @@ +{ + "name": "Molybdenum Plate Armor Upgrades", + "author": "", + "items": [ + { + "alias": "Jathos' Molybdenum Plate Vest", + "item_id": 252001 + }, + { + "alias": "Kegern's Molybdenum Plate Helmet", + "item_id": 252017 + }, + { + "alias": "Jathos' Molybdenum Plate Boots", + "item_id": 252002 + }, + { + "alias": "Kegern's Molybdenum Plate Gloves", + "item_id": 252018 + }, + { + "alias": "Black Molybdenum-Matrix of Xan", + "item_id": 272458 + }, + { + "alias": "White Molybdenum-Matrix of Xan", + "item_id": 272459 + }, + { + "alias": "Enhanced Jathos' Molybdenum Plate Vest", + "item_id": 272444 + }, + { + "alias": "Enhanced Kegern's Molybdenum Plate Helmet", + "item_id": 272454 + }, + { + "alias": "Enhanced Jathos' Molybdenum Plate Boots", + "item_id": 272445 + }, + { + "alias": "Enhanced Kegern's Molybdenum Plate Gloves", + "item_id": 272453 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients \n------------------------------\n\n Upgrade your Molybdenum Plate Armor (from Biodomes) with Black Molybdenum-Matrix of Xan and White Molybdenum-Matrix of Xan from Inside the\nMachine.\n\n#L \"Jathos' Molybdenum Plate Vest\" \"252001\"\n\n\n#L \"Kegern's Molybdenum Plate Helmet\" \"252017\"\n\n\n#L \"Jathos' Molybdenum Plate Boots\" \"252002\"\n\n\n#L \"Kegern's Molybdenum Plate Gloves\" \"252018\"\n\n\n#L \"Black Molybdenum-Matrix of Xan\" \"272458\"\n\n\n#L \"White Molybdenum-Matrix of Xan\" \"272459\"\n\n\n------------------------------\nRecipe \n------------------------------\n\nJathos' Molybdenum Plate Vest\n+\nBlack Molybdenum-Matrix of Xan\n=\n\n#L \"Enhanced Jathos' Molybdenum Plate Vest\" \"272444\"\nSkills: | ? |\n\nKegern's Molybdenum Plate Helmet\n+\nBlack Molybdenum-Matrix of Xan\n=\n\n#L \"Enhanced Kegern's Molybdenum Plate Helmet\" \"272454\"\nSkills: | ? |\nNote: Black Molybdenum-Matrix of Xan is used to upgrade both types of armor, Kegern's as well as Jathos, but only vest and helmet pieces. And if you have already upgraded helmet with Action Probability Estimator from Apf, you won't be able to do this combine.\n\n------------------------------\n\nJathos' Molybdenum Plate Boots\n+\nWhite Molybdenum-Matrix of Xan\n=\n\n#L \"Enhanced Jathos' Molybdenum Plate Boots\" \"272445\"\nSkills: | ? |\n\nKegern's Molybdenum Plate Gloves\n+\nWhite Molybdenum-Matrix of Xan\n=\n\n#L \"Enhanced Kegern's Molybdenum Plate Gloves\" \"272453\"\nSkills: | ? |\nNote: White Molybdenum-Matrix of Xan is used to upgrade both types of armor, Kegern's as well as Jathos, but only boots, gloves, sleeves and pant pieces." +} diff --git a/modules/standard/recipe/recipes/607.json b/modules/standard/recipe/recipes/607.json new file mode 100644 index 0000000..95bfb01 --- /dev/null +++ b/modules/standard/recipe/recipes/607.json @@ -0,0 +1,25 @@ +{ + "name": "Photon Embedded Cloak", + "author": "", + "items": [ + { + "alias": "Light Bar", + "item_id": 252157 + }, + { + "alias": "A Never-ending Being of Light", + "item_id": 262604 + }, + { + "alias": "White Trenchcoat", + "item_id": 81969 + }, + { + "alias": "Photon Embedded Cloak", + "item_id": 281777 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients \n------------------------------\n\n *** Your shining light in the darkness!\n *** \n\n#L \"Light Bar\" \"252157\"\n\nor\n#L \"A Never-ending Being of Light\" \"262604\"\n\n\n#L \"White Trenchcoat\" \"81969\"\n\n\n------------------------------\nRecipe \n------------------------------\n\nLight Bar\n+\nWhite Trenchcoat\n=\n\n#L \"Photon Embedded Cloak\" \"281777\"\nSkills: | None | \nor\nA Never-ending Being of Light\n+\nWhite Trenchcoat\n=\n\n#L \"Photon Embedded Cloak\" \"281777\"\nSkills: | None | " +} diff --git a/modules/standard/recipe/recipes/608.json b/modules/standard/recipe/recipes/608.json new file mode 100644 index 0000000..6c13206 --- /dev/null +++ b/modules/standard/recipe/recipes/608.json @@ -0,0 +1,29 @@ +{ + "name": "Cranium Nano Cloak", + "author": "", + "items": [ + { + "alias": "Red Cranium Nano Cloak", + "item_id": 204996 + }, + { + "alias": "Field Quantum Physics All-Purpose Tool", + "item_id": 164558 + }, + { + "alias": "Advanced Hacker Tool", + "item_id": 87814 + }, + { + "alias": "Grey Cranium Nano Cloak", + "item_id": 204998 + }, + { + "alias": "Grey Nano Cloak", + "item_id": 205000 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients \n------------------------------\n\n *** The Red Cranium Nano Cloak is a Clan & Meta-Physicist only\nitem but you can remove some of these requirements. Doing so however will\nalso remove or lower some of the modifiers: Nano Init. and MaxNanoEnergy.\nThe quality of the Field Quantum Physics All-Purpose Tool and Hacker Tool\nmust be at least 40% of QL of the cloak.\n *** \n\n#L \"Red Cranium Nano Cloak\" \"204996\"\n\n\n#L \"Field Quantum Physics All-Purpose Tool\" \"164558\"\n\n\n#L \"Advanced Hacker Tool\" \"87814\"\n\n\n------------------------------\nRecipe \n------------------------------\n\nRed Cranium Nano Cloak\n+\nField Quantum Physics All-Purpose Tool\n=\n\n#L \"Grey Cranium Nano Cloak\" \"204998\"\nSkills: |FQP tool needs to be at least 40% the ql of Tank Armor. You'll\nneed 5x Field Quantum Physics skill to hack it.|\n\n\nGrey Cranium Nano Cloak\n+\nAdvanced Hacker Tool\n=\n\n#L \"Grey Nano Cloak\" \"205000\"\nSkills: |Hacker Tool needs to be at least 40% of the ql of the Cloak.\nRequires 6X of cloaks QL of Breaking & Entering and the QL of the.|" +} diff --git a/modules/standard/recipe/recipes/609.json b/modules/standard/recipe/recipes/609.json new file mode 100644 index 0000000..6f2e681 --- /dev/null +++ b/modules/standard/recipe/recipes/609.json @@ -0,0 +1,21 @@ +{ + "name": "Enhanced Pads of Dedication", + "author": "", + "items": [ + { + "alias": "Omnifier", + "item_id": 208312 + }, + { + "alias": "Pads of Dedication", + "item_id": 157998 + }, + { + "alias": "Enhanced Pads of Dedication", + "item_id": 209237 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients \n------------------------------\n\n *** Omni-Tek employees and Neutrals will be happy to know that their Pads of Dedication which can be obtained by doing the Shoulderpads Quest can be upgraded even further. What's even better is that the upgrade doesn't require any skills to do.\n\nAll you will need besides your Pads is an Omnifier. You can find it in missions, it's a common from mobs and you can also find it in chests.\n *** \n\n#L \"Omnifier\" \"208312\"\n\n\n#L \"Pads of Dedication\" \"157998\"\n\n\n------------------------------\nRecipe \n------------------------------\n\nOmnifier\n+\nPads of Dedication\n=\n\n#L \"Enhanced Pads of Dedication\" \"209237\"\nSkills: | None | \n\nComparing stats between the original and upgraded versions, most of them have been enhanced by 50%. Oh and the Pads turn into a nice shiny black color which perfectly matches the popular Omni-Tek Armed Forces armor omnis wear." +} diff --git a/modules/standard/recipe/recipes/610.json b/modules/standard/recipe/recipes/610.json new file mode 100644 index 0000000..7e624d7 --- /dev/null +++ b/modules/standard/recipe/recipes/610.json @@ -0,0 +1,81 @@ +{ + "name": "Alappaa shoulderpads", + "author": "", + "items": [ + { + "alias": "Frozen Shoulderpads", + "item_id": 269896 + }, + { + "alias": "Permafrost Melting Tool", + "item_id": 269805 + }, + { + "alias": "Permafrost Armor Component", + "item_id": 269937 + }, + { + "alias": "Combat Program", + "item_id": 269946 + }, + { + "alias": "Nano Technology Program", + "item_id": 269945 + }, + { + "alias": "Melee Program", + "item_id": 269947 + }, + { + "alias": "Master Combat Program", + "item_id": 269960 + }, + { + "alias": "Master Nano Technology Program", + "item_id": 269959 + }, + { + "alias": "Master Melee Program", + "item_id": 269961 + }, + { + "alias": "Shoulderpads of the Icy Wastes", + "item_id": 269897 + }, + { + "alias": "Combat Attuned Permafrost Armor Component", + "item_id": 269938 + }, + { + "alias": "Icy Shoulderpads of Explosive Power", + "item_id": 269898 + }, + { + "alias": "Superior Icy Shoulderpads of Explosive Power", + "item_id": 269899 + }, + { + "alias": "Nano Attuned Permafrost Armor Component", + "item_id": 269939 + }, + { + "alias": "Superior Icy Shoulderpads of the Powerful Mind", + "item_id": 269900 + }, + { + "alias": "Melee Attuned Permafrost Armor Component", + "item_id": 269940 + }, + { + "alias": "Icy Shoulderpads of Brawn", + "item_id": 269902 + }, + { + "alias": "Superior Icy Shoulderpads of Brawn", + "item_id": 269903 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients \n------------------------------\n\n *** You'll get parts for upgrade in Alappaa and in Dustbrigade Outpost. There are 3 different types you can upgrade them into. But first you need to unfreeze them.\n *** \n\n#L \"Frozen Shoulderpads\" \"269896\"\n\n\n#L \"Permafrost Melting Tool\" \"269805\"\n\n\n#L \"Permafrost Armor Component\" \"269937\"\n\n\n#L \"Combat Program\" \"269946\"\n\nor\n#L \"Nano Technology Program\" \"269945\"\n\nor\n#L \"Melee Program\" \"269947\"\n\n\n-And the upgrades-\n\n#L \"Master Combat Program\" \"269960\"\n\nor\n#L \"Master Nano Technology Program\" \"269959\"\n\nor\n#L \"Master Melee Program\" \"269961\"\n\n\n------------------------------\nRecipe \n------------------------------\n\n Unfreezing the shoulderpads \n\nFrozen Shoulderpads\n+\nPermafrost Melting Tool\n=\n\n#L \"Shoulderpads of the Icy Wastes\" \"269897\"\nSkills: | None | \n\n Superior Icy Shoulderpads of Explosive Power \n\nCombat Program\n+\nPermafrost Armor Component\n=\n\n#L \"Combat Attuned Permafrost Armor Component\" \"269938\"\nSkills: | 1500 ME | \n\nShoulderpads of the Icy Wastes\n+\nCombat Attuned Permafrost Armor Component\n=\n\n#L \"Icy Shoulderpads of Explosive Power\" \"269898\"\nSkills: | none | \n\nIcy Shoulderpads of Explosive Power\n+\nMaster Combat Program\n=\n\n#L \"Superior Icy Shoulderpads of Explosive Power\" \"269899\"\nSkills: | none | \n\n Superior Icy Shoulderpads of the Powerful Mind \n\nNano Technology Program\n+\nPermafrost Armor Component\n=\n\n#L \"Nano Attuned Permafrost Armor Component\" \"269939\"\nSkills: | 1500 ME | \n\nShoulderpads of the Icy Wastes\n+\nNano Attuned Permafrost Armor Component\n=\n\n#L \"Icy Shoulderpads of Explosive Power\" \"269898\"\nSkills: | none | \n\nIcy Shoulderpads of the Powerful Mind\n+\nMaster Nano Technology Program\n=\n\n#L \"Superior Icy Shoulderpads of the Powerful Mind\" \"269900\"\nSkills: | none | \n\n Superior Icy Shoulderpads of Brawn \n\nMelee Program\n+\nPermafrost Armor Component\n=\n\n#L \"Melee Attuned Permafrost Armor Component\" \"269940\"\nSkills: | 1500 ME | \n\nShoulderpads of the Icy Wastes\n+\nMelee Attuned Permafrost Armor Component\n=\n\n#L \"Icy Shoulderpads of Brawn\" \"269902\"\nSkills: | none | \n\nIcy Shoulderpads of Brawn\n+\nMaster Melee Program\n=\n\n#L \"Superior Icy Shoulderpads of Brawn\" \"269903\"\nSkills: | none | " +} diff --git a/modules/standard/recipe/recipes/611.json b/modules/standard/recipe/recipes/611.json new file mode 100644 index 0000000..f37cb73 --- /dev/null +++ b/modules/standard/recipe/recipes/611.json @@ -0,0 +1,61 @@ +{ + "name": "De'Valos Protection Ring", + "author": "Illork", + "items": [ + { + "alias": "Lava Protection Boots and Skin Galvanizer", + "item_id": 231235 + }, + { + "alias": "Hyper-Radiation Protection Skin and Glasses", + "item_id": 231236 + }, + { + "alias": "Metawater Repellent Spiritech Suit", + "item_id": 227633 + }, + { + "alias": "Energy Redistribution Unit", + "item_id": 257961 + }, + { + "alias": "Visible Light Remodulation Device", + "item_id": 257964 + }, + { + "alias": "Dynamic Gas Redistribution Valves", + "item_id": 257962 + }, + { + "alias": "Hold Hell at Bay", + "item_id": 231234 + }, + { + "alias": "De'Valos Lava Protection Ring", + "item_id": 257116 + }, + { + "alias": "De'Valos Radiation Protection Ring", + "item_id": 257117 + }, + { + "alias": "De'Valos Water Protection Ring", + "item_id": 301132 + }, + { + "alias": "De'Valos Radiation and Water Protection Ring", + "item_id": 301133 + }, + { + "alias": "De'Valos Radiation, Water and Lava Protection Ring", + "item_id": 281264 + }, + { + "alias": "De'Valos Protection Ring", + "item_id": 281267 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients \n------------------------------\n\n\n#L \"Lava Protection Boots and Skin Galvanizer\" \"231235\"\n\n\n\n#L \"Hyper-Radiation Protection Skin and Glasses\" \"231236\"\n\n\n\n#L \"Metawater Repellent Spiritech Suit\" \"227633\"\n\n\n\n#L \"Energy Redistribution Unit\" \"257961\"\n\n\n\n#L \"Visible Light Remodulation Device\" \"257964\"\n\n\n\n#L \"Dynamic Gas Redistribution Valves\" \"257962\"\n\n\n\n#L \"Hold Hell at Bay\" \"231234\"\n\n------------------------------\nRecipe \n------------------------------\n\n\nLava Protection Boots and Skin Galvanizer\n+\nEnergy Redistribution Unit\n=\n\n#L \"De'Valos Lava Protection Ring\" \"257116\"\nSkills: | None | \n\n\nHyper-Radiation Protection Skin and Glasses\n+\nVisible Light Remodulation Device\n=\n\n#L \"De'Valos Radiation Protection Ring\" \"257117\"\nSkills: | None | \n\n\n\"Metawater Repellent Spiritech Suit\n+\nDynamic Gas Redistribution Valves\n=\n\n#L \"De'Valos Water Protection Ring\" \"301132\"\nSkills: | None | \n\n\nDe'Valos Water Protection Ring\n+\nDe'Valos Radiation Protection Ring\n=\n\n#L \"De'Valos Radiation and Water Protection Ring\" \"301133\"\nSkills: | None | \n\n\nDe'Valos Radiation and Water Protection Ring\n+\nDe'Valos Lava Protection Ring\n=\n\n#L \"De'Valos Radiation, Water and Lava Protection Ring\" \"281264\"\nSkills: | None | \n\n\nDe'Valos Radiation, Water and Lava Protection Ring\n+\nHold Hell at Bay\n=\n\n#L \"De'Valos Protection Ring\" \"281267\"\nSkills: | None | " +} diff --git a/modules/standard/recipe/recipes/612.json b/modules/standard/recipe/recipes/612.json new file mode 100644 index 0000000..874c353 --- /dev/null +++ b/modules/standard/recipe/recipes/612.json @@ -0,0 +1,53 @@ +{ + "name": "Nano Breed Service Suit Armor", + "author": "", + "items": [ + { + "alias": "Nano Breed Survival Suit Body Armor", + "item_id": 206609 + }, + { + "alias": "Nano Breed Survival Suit Boots", + "item_id": 206610 + }, + { + "alias": "Nano Breed Survival Suit Pants", + "item_id": 206611 + }, + { + "alias": "Nano Breed Survival Suit Sleeves", + "item_id": 206608 + }, + { + "alias": "Inactive OT Metamorphing Liquid Nanobots", + "item_id": 164952 + }, + { + "alias": "Nano Programming Interface", + "item_id": 161699 + }, + { + "alias": "Advanced Hacker Tool", + "item_id": 87814 + }, + { + "alias": "Activated OT Metamorphing Liquid Nanobots", + "item_id": 164954 + }, + { + "alias": "Hacked Nano Breed Survival Suit Body Armor", + "item_id": 206614 + }, + { + "alias": "Nano Breed Service Suit Body Armor - Once Augmented", + "item_id": 206645 + }, + { + "alias": "Nano Breed Service Suit Body Armor - Maximum Augmented", + "item_id": 206636 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients \n------------------------------\n\n *** Before you go on, this armor is one of rarest found on Rubi-Ka. So far only handfull of pieces were found, even if it made ingame years ago (only confirmed drop is reported from lvl 59 Nano Breed mob inside mission). And since it's limited buffs, mostly collectors would be interested in it. *** \n\n#L \"Nano Breed Survival Suit Body Armor\" \"206609\"\n\n\n#L \"Nano Breed Survival Suit Boots\" \"206610\"\n\n\n#L \"Nano Breed Survival Suit Pants\" \"206611\"\n\n\n#L \"Nano Breed Survival Suit Sleeves\" \"206608\"\n\n\n#L \"Inactive OT Metamorphing Liquid Nanobots\" \"164952\"\n\n\n#L \"Nano Programming Interface\" \"161699\"\n\n\n#L \"Advanced Hacker Tool\" \"87814\"\n\n\n------------------------------\nRecipe \n------------------------------\n\n The Nano Programming Interface can be bought from tools terminals. Inactive OT Metamorphing Liquid Nanobots are in armor and clothing components terminals. Hacker Tool drop from missions and can also be purchased at regular shops. \n\nFirst, you need to prepare OT Metamorphing Liquid Nanobots. If you want fully augmented armor, you'll need 10 pieces of them for each armor piece you're making. Nano Programming Interface doesn't get used up in the process.\n\nInactive OT Metamorphing Liquid Nanobots\n+\nNano Programming Interface\n=\n\n#L \"Activated OT Metamorphing Liquid Nanobots\" \"164954\"\nSkills: | x2.5 CL x4 NP based on QL of Nanobots | \nNotes: Inactive OT Nanobots must be within 90% of armor. \n\n Once this is sorted, you're ready to start on armor itself.\n\nNano Breed Survival Suit Body Armor\n+\nAdvanced Hacker Tool\n=\n\n#L \"Hacked Nano Breed Survival Suit Body Armor\" \"206614\"\nSkills: | 48 BE | \n\nHacked Nano Breed Survival Suit Body Armor\n+\nActivated OT Metamorphing Liquid Nanobots\n=\n\n#L \"Nano Breed Service Suit Body Armor - Once Augmented\" \"206645\"\nSkills: | 60 NP | \n\n You can repeat this process 9 more times each time after the 2nd upgrade the NP increases by 60 points to a final skill of 540 NP on final upgrade.\n\nNano Breed Service Suit Body Armor - Nine Times Augmented\n+\nActivated OT Metamorphing Liquid Nanobots\n=\n\n#L \"Nano Breed Service Suit Body Armor - Maximum Augmented\" \"206636\"\nSkills: | 540 NP | \n\n If you manage to collect all 5 pieces of armor (4 different pieces and extra sleeve, since there aren't that many one-armed characters around) and upgrade them to maximum, you'll get bonus of:\n\nMaxNanoEnergy: 1100\nNanoC.Init: 250\n\nWith that, only practical use for it, that I can think of, is maybe some NT or Doctor twink, but they would still be penalized for lack of AC or Nano Skill mods on this armor." +} diff --git a/modules/standard/recipe/recipes/613.json b/modules/standard/recipe/recipes/613.json new file mode 100644 index 0000000..967af5d --- /dev/null +++ b/modules/standard/recipe/recipes/613.json @@ -0,0 +1,21 @@ +{ + "name": "Sabotaging Surgeons Cloak", + "author": "", + "items": [ + { + "alias": "Omni-Med Field Surgeons Cloak", + "item_id": 201235 + }, + { + "alias": "Advanced Hacker Tool", + "item_id": 87814 + }, + { + "alias": "Sabotaged Omni-Med Field Surgeons Cloak", + "item_id": 201238 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients \n------------------------------\n\n *** In order to sabotage anything, you need to get your hands on it first. In case of Omni-Med Field Surgeons Cloak, it drops off Dyna and mission bosses. It drops in various ql, highest found so far being ql 200. Whole sabotaging business is actually really easy, all you need is Advanced Hacker Tool. *** \n\n#L \"Omni-Med Field Surgeons Cloak\" \"201235\"\n\n\n#L \"Advanced Hacker Tool\" \"87814\"\n\n\n------------------------------\nRecipe \n------------------------------\n\nOmni-Med Field Surgeons Cloak\n+\nAdvanced Hacker Tool\n=\n\n#L \"Sabotaged Omni-Med Field Surgeons Cloak\" \"201238\"\nSkills: | 4.75 BE 3.25x CL based on QL | \n\n If person doing tradeskills have high enough skills, end product can be higher ql as 200. Hacking the cloak also results in loosing Omni tag and BiologicalMetamorphosis buff. " +} diff --git a/modules/standard/recipe/recipes/614.json b/modules/standard/recipe/recipes/614.json new file mode 100644 index 0000000..6f1c52b --- /dev/null +++ b/modules/standard/recipe/recipes/614.json @@ -0,0 +1,37 @@ +{ + "name": "Sureshot Glasses", + "author": "", + "items": [ + { + "alias": "Wire Drawing Machine", + "item_id": 150917 + }, + { + "alias": "Personal Furnace", + "item_id": 150930 + }, + { + "alias": "Small Platinum Ingot", + "item_id": 151363 + }, + { + "alias": "Crystalline Disk", + "item_id": 253139 + }, + { + "alias": "Liquid Platinum", + "item_id": 151361 + }, + { + "alias": "Platinum Filigree Wire", + "item_id": 151360 + }, + { + "alias": "Sureshot Glasses", + "item_id": 253183 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients \n------------------------------\n\n *** Sureshot Glasses drop from Alien generals. But in case you're tired of farming them, there's a way to build them. *** \n\n#L \"Wire Drawing Machine\" \"150917\"\n\n\n#L \"Personal Furnace\" \"150930\"\n\n\n#L \"Small Platinum Ingot\" \"151363\"\n\n\n#L \"Crystalline Disk\" \"253139\"\n\n\n------------------------------\nRecipe \n------------------------------\n\n Now it's time to put everything together: \n\nSmall Platinum Ingot\n+\nPersonal Furnace\n=\n\n#L \"Liquid Platinum\" \"151361\"\nSkills: | 3.8x ME based on QL | \n\nLiquid Platinum\n+\nWire Drawing Machine\n=\n\n#L \"Platinum Filigree Wire\" \"151360\"\nSkills: | 5.5x ME, 1.8x Agility | \n\nCrystalline Disk\n+\nPlatinum Filigree Wire\n=\n\n#L \"Sureshot Glasses\" \"253183\"\nSkills: | 5x EE,ME | \n\n\n At start of guide we said you'll need at least ql 100 Crystalline Disk. Why? Simply because Sureshot Glasses come in quality range of 100-300. Another thing to watch while making them is title requirement to wear (ql 100-119 for tlt1, 120-159 for tlt2, 160-199 for tlt3, 200-239 for tlt4, 240-279 for tlt5, 280+ for tlt6). " +} diff --git a/modules/standard/recipe/recipes/615.json b/modules/standard/recipe/recipes/615.json new file mode 100644 index 0000000..e9d0ead --- /dev/null +++ b/modules/standard/recipe/recipes/615.json @@ -0,0 +1,29 @@ +{ + "name": "Aggression Trimmer", + "author": "", + "items": [ + { + "alias": "Chemical Impact Injector", + "item_id": 142911 + }, + { + "alias": "XU-11 Serum", + "item_id": 154909 + }, + { + "alias": "Trimmer Casing", + "item_id": 154938 + }, + { + "alias": "Modified Chemical Impact Injector", + "item_id": 154911 + }, + { + "alias": "Trimmer - Increase Aggressiveness", + "item_id": 154940 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients \n------------------------------\n\n Every Engineer wants to make his/her bot as powerful as possible, the reason why trimming bots is one of the most common tactics to enhance bots abilities. Trimming however does come at a price, by boosting one part of the bot's functions another is lowered. For example, if you use a Trimmer to raise the defense of your bot then the aggressiveness of it will be lowered. Trimmers can be purchased from general shops, but this specific Trimmer can only be built, and it has one advantage...it will increase the chances of your bot keeping aggro on whatever it's fighting, at no cost of other skills. This means an Engineer will be less likely of getting attacked leaving his/her bot to do all the fighting. The lowest version Aggression Trimmer you'll be able to assemble is QL 30, keep that in mind when buying parts. \n\n#L \"Chemical Impact Injector\" \"142911\"\n\n\n#L \"XU-11 Serum\" \"154909\"\n\n\n#L \"Trimmer Casing\" \"154938\"\n\n\n All of them can be found at general shops. It could cost you a few hundred thousand credits, so be sure to have funds to make the purchases. \n\n------------------------------\nRecipe \n------------------------------\n\n Now it's time to put everything together: \n\nXU-11 Serum\n+\nChemical Impact Injector\n=\n\n#L \"Modified Chemical Impact Injector\" \"154911\"\nSkills: | 1.8x CHEM based on QL | \nNote: The XU-11 Serum needs to be within 60% of the QL of the Chemical Impact Injector for this combine to work. Note that the Modified Chemical Impact Injector will raise a few QLs during this process (use the Tradeskill Kit to check). \n\nModified Chemical Impact Injector\n+\nTrimmer Casing\n=\n\n#L \"Trimmer - Increase Aggressiveness\" \"154940\"\nSkills: | 3.7x ME* | \n\n The Modified Chemical Impact Injector needs to be within 90% of the QL of the Trimmer Casing for this combine to work. Use the Tradeskill Kit to adjust the final QL of the trimmer.\n\nThe Trimmer - Increase Aggressiveness requires Mechanical Engineering and Computer Literacy to use. Also the Trimmer only works on robotic pets... not on Metaphysicist pets.\nA quality level 200 Trimmer requires 751 Mechanical Engineering and 551 Computer Literacy\n\nNote: Remember that as you upgrade your bot to a strong version, you should do the same with the Trimmer.\n\n* May also require a small amount of Computer Literacy (less than x1.6). " +} diff --git a/modules/standard/recipe/recipes/616.json b/modules/standard/recipe/recipes/616.json new file mode 100644 index 0000000..65f9bd3 --- /dev/null +++ b/modules/standard/recipe/recipes/616.json @@ -0,0 +1,61 @@ +{ + "name": "AI Yalms", + "author": "", + "items": [ + { + "alias": "Yalmaha 29600 - Obsidian Upgrade Kit", + "item_id": 254817 + }, + { + "alias": "Yalmaha 29600 - Pearl Upgrade Kit", + "item_id": 254818 + }, + { + "alias": "Yalmaha 29610 - Sunrise Upgrade Kit", + "item_id": 254819 + }, + { + "alias": "Yalmaha 29610 - Daylight Upgrade Kit", + "item_id": 254820 + }, + { + "alias": "Yalmaha 29610 - Sunset Upgrade Kit", + "item_id": 254821 + }, + { + "alias": "Yalmaha 29610 - Dusk Upgrade Kit", + "item_id": 254823 + }, + { + "alias": "Yalmaha XL - 29478", + "item_id": 96088 + }, + { + "alias": "Yalmaha - 29600 - Obsidian", + "item_id": 253582 + }, + { + "alias": "Yalmaha - 29600 - Pearl", + "item_id": 253584 + }, + { + "alias": "Yalmaha - 29610 - Sunrise", + "item_id": 253574 + }, + { + "alias": "Yalmaha - 29610 - Daylight", + "item_id": 253576 + }, + { + "alias": "Yalmaha - 29610 - Sunset", + "item_id": 253578 + }, + { + "alias": "Yalmaha - 29610 - Dusk", + "item_id": 253580 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients \n------------------------------\n\n Looking for a snazzy new yalm? Our friend Uncle Bazzit is selling a few new yalm upgrades, for a price of course.\nHead to Meetmedere, to Uncle Bazzit's shop. The upgrades are found in the shop terminal, in the back left of the room.\n\n#L \"Yalmaha 29600 - Obsidian Upgrade Kit\" \"254817\"\n\n\n#L \"Yalmaha 29600 - Pearl Upgrade Kit\" \"254818\"\n\n\n#L \"Yalmaha 29610 - Sunrise Upgrade Kit\" \"254819\"\n\n\n#L \"Yalmaha 29610 - Daylight Upgrade Kit\" \"254820\"\n\n\n#L \"Yalmaha 29610 - Sunset Upgrade Kit\" \"254821\"\n\n\n#L \"Yalmaha 29610 - Dusk Upgrade Kit\" \"254823\"\n\n\n#L \"Yalmaha XL - 29478\" \"96088\"\n\n\n------------------------------\nRecipe \n------------------------------\n\nNote:End QL of the yalm is determined by Comp Lit. To make a ql300 (results in lowest vehicle air), you will need 1500 CL.\nYou will need at least 750 Computer Literature to make lowest ql available. Ql of Yalmaha XL - 29478 you use, doesn not matter\n\nYalmaha 29600 - Obsidian Upgrade Kit\n+\nYalmaha XL - 29478\n=\n\n#L \"Yalmaha - 29600 - Obsidian\" \"253582\"\nSkills: | CL |\n\nYalmaha 29600 - Pearl Upgrade Kit\n+\nYalmaha XL - 29478\n=\n\n#L \"Yalmaha - 29600 - Pearl\" \"253584\"\nSkills: | CL |\n\nYalmaha 29610 - Sunrise Upgrade Kit\n+\nYalmaha XL - 29478\n=\n\n#L \"Yalmaha - 29610 - Sunrise\" \"253574\"\nSkills: | CL |\n\nYalmaha 29610 - Daylight Upgrade Kit\n+\nYalmaha XL - 29478\n=\n\n#L \"Yalmaha - 29610 - Daylight\" \"253576\"\nSkills: | CL |\n\nYalmaha 29610 - Sunset Upgrade Kit\n+\nYalmaha XL - 29478\n=\n\n#L \"Yalmaha - 29610 - Sunset\" \"253578\"\nSkills: | CL |\n\nYalmaha 29610 - Dusk Upgrade Kit\n+\nYalmaha XL - 29478\n=\n\n#L \"Yalmaha - 29600 - Dusk\" \"253580\"\nSkills: | CL |" +} diff --git a/modules/standard/recipe/recipes/62.json b/modules/standard/recipe/recipes/62.json new file mode 100644 index 0000000..a3c0282 --- /dev/null +++ b/modules/standard/recipe/recipes/62.json @@ -0,0 +1,53 @@ +{ + "name": "Jewels", + "author": "", + "items": [ + { + "alias": "Engagement Ring", + "item_id": 136603 + }, + { + "alias": "Generic Ring Template", + "item_id": 151365 + }, + { + "alias": "Personal Furnace", + "item_id": 150930 + }, + { + "alias": "Precious Metal Reclaimer", + "item_id": 150929 + }, + { + "alias": "Wire Drawing Machine", + "item_id": 150917 + }, + { + "alias": "Perfectly Cut Gem", + "item_id": 151552 + }, + { + "alias": "Small Gold Ingot", + "item_id": 151369 + }, + { + "alias": "Liquid Gold", + "item_id": 151372 + }, + { + "alias": "Gold Filigree Wire", + "item_id": 151368 + }, + { + "alias": "Gold Filigree Ring", + "item_id": 151375 + }, + { + "alias": "Gold Filigree Ring set with a Perfectly Cut Gem", + "item_id": 151541 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients\n------------------------------\n\na Ring or Bracer\n(ie:#L \"Engagement Ring\" \"136603\")\n\n\n#L \"Generic Ring Template\" \"151365\"\n\n\n#L \"Personal Furnace\" \"150930\"\n\n\n#L \"Precious Metal Reclaimer\" \"150929\"\n\n\n#L \"Wire Drawing Machine\" \"150917\"\n\n\nAnd, if you want to crimp it :\n#L \"Perfectly Cut Gem\" \"151552\" #L \"Recipe\" \"/tell recipe 117\"\n\n\n------------------------------\nRecipe\n------------------------------\n\nPrecious Metal Reclaimer\n+\na Ring or Bracer\n=\n\nan Ingot\n(ie:#L \"Small Gold Ingot\" \"151369\")\nSkills: | ME |\n\n------------------------------\n\nPersonal Furnace\n+\nan Ingot\n=\n\nLiquid Metal\n(ie:#L \"Liquid Gold\" \"151372\")\nSkills: | ME |\n\n------------------------------\n\nWire Drawing Machine\n+\nLiquid Metal\n=\n\nMetal Wire\n(ie:#L \"Gold Filigree Wire\" \"151368\")\nSkills: | ME |\n\n------------------------------\n\nGeneric Ring Template\n+\nMetal Wire\n=\n\nPrecious Metal Filigree Ring\n(ie:#L \"Gold Filigree Ring\" \"151375\")\nSkills: | ME |\n\n------------------------------\n\nFrom this point, two paths are possible... either sell this ring or crimp it with a Valuable Stone to make it even more valuable. to crimp it, follow this recipe:\n\n------------------------------\n\nPerfectly Cut Stone\n+\nPrecious Metal Filigree Ring\n=\n\nCrimped Ring\n(ie:#L \"Gold Filigree Ring set with a Perfectly Cut Gem\" \"151541\")\nSkills: | ME |\n\n------------------------------\nComments\n------------------------------\n\nConsidering the time involved in the matching of QLs and the actual crafting, it's not really worth it for me. But if you have some Mechanical Engineering Skill, it may still be interesting...\n\nMaking Jewels with SL stones will give you some little buff according to this :\n \nAlmandine - Strength / Agility \nAmber - Melee init / Psychic Init / Ranged Init \nAquamarine - SensoryImp. / Psycho Mod / MaxHealth \nBalas Ruby - AddAllOff \nBlack Opal - AddAllDef \nChrysoberyl - Max Health / Heal Delta \nCoral - Nano Delta / Heal Delta / Max health \nDemantoid - MeleeDamageMod / ProjectileDamageM / EnergyDamageMod \nDiamond - SpaceTime / PshychoMod \nEmerald - BiologicalMet. / SensoryImprov. \nFire Opal - FireAc / MaxHealth \nJet - MaterialMet. / NanoC.Init \nPearl - ChemicalAC / ColdDamageMod. \nRed Beryl - Stamina / Intelligence \nRuby Pearl - Sense / Intelligence \nSapphire - MaterialMet. / BiologicalMet / MaxNcu \nStar Ruby - MaterialCreation / SpaceTime / MaxNanoEnergy \nTopaz - EnergyAC / ProjectileAC \nWater Opal - NanoDelta / MaxNanoEnergy \nWhite Opal - ColdAC / PoisonAC" +} diff --git a/modules/standard/recipe/recipes/620.json b/modules/standard/recipe/recipes/620.json new file mode 100644 index 0000000..b819329 --- /dev/null +++ b/modules/standard/recipe/recipes/620.json @@ -0,0 +1,41 @@ +{ + "name": "Mass Relocating Robot", + "author": "", + "items": [ + { + "alias": "Robot Instruction Disc (Improve Crushing Weapons)", + "item_id": 155906 + }, + { + "alias": "Robot Instruction Disc (Improve Thrusting Weapons)", + "item_id": 155907 + }, + { + "alias": "Robot Instruction Disc (Improve Slashing Weapons)", + "item_id": 155533 + }, + { + "alias": "Symbol Library - Space", + "item_id": 144790 + }, + { + "alias": "Photon Particle Emitter", + "item_id": 144812 + }, + { + "alias": "Ultimate Mass Relocating Robot", + "item_id": 155592 + }, + { + "alias": "Robot Compiled Algorithm (Improve Crushing Weapons)", + "item_id": 155903 + }, + { + "alias": "Mass Relocating Robot (Improve Chrushing Weapons)", + "item_id": 155924 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients \n------------------------------\n\n There are 5 different Mass Relocating Robots. Each one requires a different Instruction Disc or Programmed Photon Particle Emitter.\nThe weapon PPPE's drop from level 10-30 mobs, the Shape Hard/Soft Armor PPPE's are harder to find as they drop from QL 60 dyna and mission bosses.\n\n#L \"Robot Instruction Disc (Improve Crushing Weapons)\" \"155906\"\n\n\n#L \"Robot Instruction Disc (Improve Thrusting Weapons)\" \"155907\"\n\n\n#L \"Robot Instruction Disc (Improve Slashing Weapons)\" \"155533\"\n\n\n#L \"Programmed Photon Particle Emitter (Shape Hard Armor)\" \"162221\"\n\n\n#L \"Programmed Photon Particle Emitter (Shape Soft Armor)\" \"162222\"\n\n\n#L \"Symbol Library - Space\" \"144790\"\n\n\n#L \"Photon Particle Emitter\" \"144812\"\n\n\n#L \"Ultimate Mass Relocating Robot\" \"155592\"\n\n\n------------------------------\nRecipe \n------------------------------\n\nNote: When making a Weapon MRR, you will need to upgrade the Robot Instruction Disks to Programmed Photon Particle Emitters like this:\n\nRobot Instruction Disc (Improve Crushing Weapons)\n+\nSymbol Library - Space\n=\n\n#L \"Robot Compiled Algorithm (Improve Crushing Weapons)\" \"155903\"\nSkills: | 4 x QL of the Instruction Disk in NP and CL |\nNote: QL of the Symbol Library must be at least 25% of the Robot Instruction Disk\n\nRobot Compiled Algorithm (Improve Crushing Weapons)\n+\nPhoton Particle Emitter\n=\n\n#L \"Programmed Photon Particle Emitter (Improve Crushing Weapons)\" \"155905\"\nSkills: | 4.25 x QL of the Instruction Disk in NP |\nNote: QL of the Photon Particle Emitter must be at least 50% of the Robot Instruction Disk\n\n------------------------------\n\nNow combine your PPPE (XXX) with an Ultimate Mass Relocating Robot:\n\nProgrammed Photon Particle Emitter (Improve Crushing Weapons)\n+\nUltimate Mass Relocating Robot\n=\n\n#L \"Mass Relocating Robot (Improve Crushing Weapons)\" \"155924\"" +} diff --git a/modules/standard/recipe/recipes/621.json b/modules/standard/recipe/recipes/621.json new file mode 100644 index 0000000..ab4e801 --- /dev/null +++ b/modules/standard/recipe/recipes/621.json @@ -0,0 +1,25 @@ +{ + "name": "Ancient Defender", + "author": "", + "items": [ + { + "alias": "Empty Ancient Device", + "item_id": 267709 + }, + { + "alias": "Crystalised Memories of a Defender", + "item_id": 267711 + }, + { + "alias": "Ancient Defender", + "item_id": 267627 + }, + { + "alias": "Dust Brigade Notum Infuser", + "item_id": 274552 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients \n------------------------------\n\n Both parts required for this process can be found in Albtraum\n\n#L \"Empty Ancient Device\" \"267709\"\n\n\n#L \"Crystalised Memories of a Defender\" \"267711\"\n\n\n------------------------------\nRecipe \n------------------------------\n\nEmpty Ancient Device\n+\nCrystalised Memories of a Defender\n=\n\n#L \"Ancient Defender\" \"267627\"\nSkills: | 1250 CL |\n\nNote: You can upgrade this item with a #L \"Dust Brigade Notum Infuser\" \"274552\"\nThe recipe can be found here: #L \"Infused Ancient Defender\" \"/tell recipe 628\"" +} diff --git a/modules/standard/recipe/recipes/622.json b/modules/standard/recipe/recipes/622.json new file mode 100644 index 0000000..f75fa0b --- /dev/null +++ b/modules/standard/recipe/recipes/622.json @@ -0,0 +1,61 @@ +{ + "name": "Ancient Medical Bracer", + "author": "", + "items": [ + { + "alias": "Crystalised Memories of a Doctor", + "item_id": 267726 + }, + { + "alias": "Crystalised Memories of a Surgeon", + "item_id": 267728 + }, + { + "alias": "Ancient Scrap of Spirit Knowledge", + "item_id": 267677 + }, + { + "alias": "Ancient Scrap of Saturated Spirit Knowledge", + "item_id": 267679 + }, + { + "alias": "Inactive Ancient Bracer", + "item_id": 267746 + }, + { + "alias": "Inert Knowledge Crystal", + "item_id": 267737 + }, + { + "alias": "Ancient Engineering Device", + "item_id": 267751 + }, + { + "alias": "Combined Crystalised Medical Memories", + "item_id": 267729 + }, + { + "alias": "Ancient Scrap of Condensed Spirit Knowledge", + "item_id": 267680 + }, + { + "alias": "Ancient Scrap of Spirit Medical Knowledge", + "item_id": 267727 + }, + { + "alias": "Medical Knowledge Crystal", + "item_id": 267738 + }, + { + "alias": "Active Ancient Bracer", + "item_id": 267747 + }, + { + "alias": "Ancient Medical Bracer", + "item_id": 267752 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients \n------------------------------\n\n All parts required for this process can be found in Albtraum. \nYou will need to build an Ancient Engineering Device as well if you do not have one already. \nA link to this tradeskill process is included\n\n#L \"Crystalised Memories of a Doctor\" \"267726\"\n\n\n#L \"Crystalised Memories of a Surgeon\" \"267728\"\n\n\n#L \"Ancient Scrap of Spirit Knowledge\" \"267677\"\n\n\n#L \"Ancient Scrap of Saturated Spirit Knowledge\" \"267679\"\n\n\n#L \"Inactive Ancient Bracer\" \"267746\"\n\n\n#L \"Inert Knowledge Crystal\" \"267737\"\n\n\n#L \"Ancient Engineering Device\" \"267751\"\n\nNote:To build your Ancient Engineering Device, go here:\n#L \"Ancient Engineering Device\" \"/tell recipe 594\"\n\n------------------------------\nRecipe \n------------------------------\n\nCrystalised Memories of a Doctor\n+\nCrystalised Memories of a Surgeon\n=\n\n#L \"Combined Crystalised Medical Memories\" \"267729\"\nSkills: | 1750 CH |\n\nAncient Scrap of Spirit Knowledge\n+\nAncient Scrap of Saturated Spirit Knowledge\n=\n\n#L \"Ancient Scrap of Condensed Spirit Knowledge\" \"267680\"\nSkills: | 1750 PT |\n\nAncient Scrap of Condensed Spirit Knowledge\n+\nCombined Crystalised Medical Memories\n=\n\n#L \"Ancient Scrap of Spirit Medical Knowledge\" \"267727\"\nSkills: | 1750 CH |\n\nAncient Scrap of Spirit Medical Knowledge\n+\nInert Knowledge Crystal\n=\n\n#L \"Medical Knowledge Crystal\" \"267738\"\nSkills: | 1750 CH |\n\nAncient Engineering Device\n+\nInactive Ancient Bracer\n=\n\n#L \"Active Ancient Bracer\" \"267747\"\nSkills: | 1500 ME |\n\nActive Ancient Bracer\n+\nMedical Knowledge Crystal\n=\n\n#L \"Ancient Medical Bracer\" \"267752\"\nSkills: | 1250 ME |" +} diff --git a/modules/standard/recipe/recipes/623.json b/modules/standard/recipe/recipes/623.json new file mode 100644 index 0000000..22bc212 --- /dev/null +++ b/modules/standard/recipe/recipes/623.json @@ -0,0 +1,25 @@ +{ + "name": "Ancient Nano Enhancer", + "author": "", + "items": [ + { + "alias": "Empty Ancient Device", + "item_id": 267709 + }, + { + "alias": "Crystalised Memories of a Scientist", + "item_id": 267713 + }, + { + "alias": "Ancient Nano Enhancer", + "item_id": 267712 + }, + { + "alias": "Dust Brigade Notum Infuser", + "item_id": 274552 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients \n------------------------------\n\n Both parts required for this process can be found in Albtraum\n\n#L \"Empty Ancient Device\" \"267709\"\n\n\n#L \"Crystalised Memories of a Scientist\" \"267713\"\n\n\n------------------------------\nRecipe \n------------------------------\n\nEmpty Ancient Device\n+\nCrystalised Memories of a Scientist\n=\n\n#L \"Ancient Nano Enhancer\" \"267712\"\nSkills: | 1250 CL |\n\nNote: You can upgrade this item with a #L \"Dust Brigade Notum Infuser\" \"274552\"\nThe recipe for this can be found here:#L \"Infused Ancient Nano Enhancer\" \"/tell recipe 630\"#C2" +} diff --git a/modules/standard/recipe/recipes/624.json b/modules/standard/recipe/recipes/624.json new file mode 100644 index 0000000..2f528c3 --- /dev/null +++ b/modules/standard/recipe/recipes/624.json @@ -0,0 +1,61 @@ +{ + "name": "Ancient Technical Bracer", + "author": "", + "items": [ + { + "alias": "Crystalised Memories of a Technician", + "item_id": 267698 + }, + { + "alias": "Crystalised Memories of a Mechanic", + "item_id": 267701 + }, + { + "alias": "Ancient Scrap of Spirit Knowledge", + "item_id": 267677 + }, + { + "alias": "Ancient Scrap of Saturated Spirit Knowledge", + "item_id": 267679 + }, + { + "alias": "Inactive Ancient Bracer", + "item_id": 267746 + }, + { + "alias": "Inert Knowledge Crystal", + "item_id": 267737 + }, + { + "alias": "Ancient Engineering Device", + "item_id": 267751 + }, + { + "alias": "Combined Crystalised Technical Memories", + "item_id": 267702 + }, + { + "alias": "Ancient Scrap of Condensed Spirit Knowledge", + "item_id": 267680 + }, + { + "alias": "Ancient Scrap of Spirit Technical Knowledge", + "item_id": 267703 + }, + { + "alias": "Technical Knowledge Crystal", + "item_id": 267740 + }, + { + "alias": "Active Ancient Bracer", + "item_id": 267747 + }, + { + "alias": "Ancient Technical Bracer", + "item_id": 267754 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients \n------------------------------\n\n All parts required for this process can be found in Albtraum. \nYou will need to build an Ancient Engineering Device as well if you do not have one already. \nA link to this tradeskill process is included\n\n#L \"Crystalised Memories of a Technician\" \"267698\"\n\n\n#L \"Crystalised Memories of a Mechanic\" \"267701\"\n\n\n#L \"Ancient Scrap of Spirit Knowledge\" \"267677\"\n\n\n#L \"Ancient Scrap of Saturated Spirit Knowledge\" \"267679\"\n\n\n#L \"Inactive Ancient Bracer\" \"267746\"\n\n\n#L \"Inert Knowledge Crystal\" \"267737\"\n\n\n#L \"Ancient Engineering Device\" \"267751\"\n\nNote:To build your Ancient Engineering Device, go here:\n#L \"Ancient Engineering Device\" \"/tell recipe 594\"\n\n------------------------------\nRecipe \n------------------------------\n\nCrystalised Memories of a Technician\n+\nCrystalised Memories of a Mechanic\n=\n\n#L \"Combined Crystalised Technical Memories\" \"267702\"\nSkills: | 1875 NP |\n\nAncient Scrap of Spirit Knowledge\n+\nAncient Scrap of Saturated Spirit Knowledge\n=\n\n#L \"Ancient Scrap of Condensed Spirit Knowledge\" \"267680\"\nSkills: | 1750 PT |\n\nCombined Crystalised Technical Memories\n+\nAncient Scrap of Condensed Spirit Knowledge\n=\n\n#L \"Ancient Scrap of Spirit Technical Knowledge\" \"267703\"\nSkills: | 1875 NP |\n\nAncient Scrap of Spirit Technical Knowledge\n+\nInert Knowledge Crystal\n=\n\n#L \"Technical Knowledge Crystal\" \"267740\"\nSkills: | 1750 CH |\n\nAncient Engineering Device\n+\nInactive Ancient Bracer\n=\n\n#L \"Active Ancient Bracer\" \"267747\"\nSkills: | 1500 ME |\n\nActive Ancient Bracer\n+\nTechnical Knowledge Crystal\n=\n\n#L \"Ancient Technical Bracer\" \"267754\"\nSkills: | 1250 ME |" +} diff --git a/modules/standard/recipe/recipes/625.json b/modules/standard/recipe/recipes/625.json new file mode 100644 index 0000000..0626800 --- /dev/null +++ b/modules/standard/recipe/recipes/625.json @@ -0,0 +1,21 @@ +{ + "name": "Ancient Skills Library", + "author": "", + "items": [ + { + "alias": "Empty Ancient Device", + "item_id": 267709 + }, + { + "alias": "Crystalised Memories of a Engineer", + "item_id": 267714 + }, + { + "alias": "Ancient Skills Library", + "item_id": 267652 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients \n------------------------------\n\n Both parts required for this process can be found in Albtraum\n\n#L \"Empty Ancient Device\" \"267709\"\n\n\n#L \"Crystalised Memories of a Engineer\" \"267714\"\n\n\n------------------------------\nRecipe \n------------------------------\n\nEmpty Ancient Device\n+\nCrystalised Memories of a Engineer\n=\n\n#L \"Ancient Skills Library\" \"267652\"\nSkills: | 1250 CL |" +} diff --git a/modules/standard/recipe/recipes/626.json b/modules/standard/recipe/recipes/626.json new file mode 100644 index 0000000..1f0817a --- /dev/null +++ b/modules/standard/recipe/recipes/626.json @@ -0,0 +1,57 @@ +{ + "name": "Perfected Infused Dust Brigade Bracer", + "author": "", + "items": [ + { + "alias": "Basic Infused Dust Brigade Bracer", + "item_id": 274541 + }, + { + "alias": "Dust Brigade Notum Infuser", + "item_id": 274552 + }, + { + "alias": "Improved Infused Dust Brigade Bracer - Tier 1", + "item_id": 274542 + }, + { + "alias": "Improved Infused Dust Brigade Bracer - Tier 2", + "item_id": 274543 + }, + { + "alias": "Improved Infused Dust Brigade Bracer - Tier 3", + "item_id": 274544 + }, + { + "alias": "Improved Infused Dust Brigade Bracer - Tier 4", + "item_id": 274545 + }, + { + "alias": "Improved Infused Dust Brigade Bracer - Tier 5", + "item_id": 274546 + }, + { + "alias": "Improved Infused Dust Brigade Bracer - Tier 6", + "item_id": 274547 + }, + { + "alias": "Improved Infused Dust Brigade Bracer - Tier 7", + "item_id": 274548 + }, + { + "alias": "Improved Infused Dust Brigade Bracer - Tier 8", + "item_id": 274549 + }, + { + "alias": "Improved Infused Dust Brigade Bracer - Tier 9", + "item_id": 274550 + }, + { + "alias": "Perfected Infused Dust Brigade Bracer", + "item_id": 274551 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients \n------------------------------\n\n Dust Brigade Notum Infusers are used in 15 processes, most of them for upgrading Basic Infused Dust Brigade Bracers. \nOther 5 tradeskills include Dust Brigade Engineer Pistol upgrade as well as improving 4 gizmos associated with Albtraum.\n\n#L \"Basic Infused Dust Brigade Bracer\" \"274541\"\n\n\n#L \"Dust Brigade Notum Infuser\" \"274552\"\n\n\n------------------------------\nRecipe \n------------------------------\n\nDust Brigade Notum Infuser\n+\nBasic Infused Dust Brigade Bracer\n=\n\n#L \"Improved Infused Dust Brigade Bracer - Tier 1\" \"274542\"\nSkills: | CL 2000 |\n\nDust Brigade Notum Infuser\n+\nImproved Infused Dust Brigade Bracer - Tier 1\n=\n\n#L \"Improved Infused Dust Brigade Bracer - Tier 2\" \"274543\"\nSkills: | CL 2000 |\n\nDust Brigade Notum Infuser\n+\nImproved Infused Dust Brigade Bracer - Tier 2\n=\n\n#L \"Improved Infused Dust Brigade Bracer - Tier 3\" \"274544\"\nSkills: | CL 2000 |\n\nDust Brigade Notum Infuser\n+\nImproved Infused Dust Brigade Bracer - Tier 3\n=\n\n#L \"Improved Infused Dust Brigade Bracer - Tier 4\" \"274545\"\nSkills: | CL 2000 |\n\nDust Brigade Notum Infuser\n+\nImproved Infused Dust Brigade Bracer - Tier 4\n=\n\n#L \"Improved Infused Dust Brigade Bracer - Tier 5\" \"274546\"\nSkills: | CL 2000 |\n\nDust Brigade Notum Infuser\n+\nImproved Infused Dust Brigade Bracer - Tier 5\n=\n\n#L \"Improved Infused Dust Brigade Bracer - Tier 6\" \"274547\"\nSkills: | CL 2000 |\n\nDust Brigade Notum Infuser\n+\nImproved Infused Dust Brigade Bracer - Tier 6\n=\n\n#L \"Improved Infused Dust Brigade Bracer - Tier 7\" \"274548\"\nSkills: | CL 2000 |\n\nDust Brigade Notum Infuser\n+\nImproved Infused Dust Brigade Bracer - Tier 7\n=\n\n#L \"Improved Infused Dust Brigade Bracer - Tier 8\" \"274549\"\nSkills: | CL 2000 |\n\nDust Brigade Notum Infuser\n+\nImproved Infused Dust Brigade Bracer - Tier 8\n=\n\n#L \"Improved Infused Dust Brigade Bracer - Tier 9\" \"274550\"\nSkills: | CL 2000 |\n\nDust Brigade Notum Infuser\n+\nImproved Infused Dust Brigade Bracer - Tier 9\n=\n\n#L \"Perfected Infused Dust Brigade Bracer\" \"274551\"\nSkills: | CL 2000 |" +} diff --git a/modules/standard/recipe/recipes/627.json b/modules/standard/recipe/recipes/627.json new file mode 100644 index 0000000..460dee9 --- /dev/null +++ b/modules/standard/recipe/recipes/627.json @@ -0,0 +1,21 @@ +{ + "name": "Infused Ancient Vision Preservation Unit", + "author": "", + "items": [ + { + "alias": "Dust Brigade Notum Infuser", + "item_id": 274552 + }, + { + "alias": "Ancient Vision Preservation Unit", + "item_id": 267626 + }, + { + "alias": "Infused Ancient Vision Preservation Unit", + "item_id": 274553 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients \n------------------------------\n\n#L \"Dust Brigade Notum Infuser\" \"274552\"\n\n\n#L \"Ancient Vision Preservation Unit\" \"267626\"\n\n\n------------------------------\nRecipe \n------------------------------\n\nDust Brigade Notum Infuser\n+\nAncient Vision Preservation Unit\n=\n\n#L \"Infused Ancient Vision Preservation Unit\" \"274553\"\nSkills: | CL 1500 |" +} diff --git a/modules/standard/recipe/recipes/628.json b/modules/standard/recipe/recipes/628.json new file mode 100644 index 0000000..bd38acf --- /dev/null +++ b/modules/standard/recipe/recipes/628.json @@ -0,0 +1,21 @@ +{ + "name": "Infused Ancient Defender", + "author": "", + "items": [ + { + "alias": "Dust Brigade Notum Infuser", + "item_id": 274552 + }, + { + "alias": "Ancient Defender", + "item_id": 267627 + }, + { + "alias": "Infused Ancient Defender", + "item_id": 274556 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients \n------------------------------\n\n#L \"Dust Brigade Notum Infuser\" \"274552\"\n\n\n#L \"Ancient Defender\" \"267627\"\n\n\n\n------------------------------\nRecipe \n------------------------------\n\nNote:To build your Ancient Defender, go here:\n#L \"Ancient Defender\" \"/tell recipe 621\"\n\nDust Brigade Notum Infuser\n+\nAncient Defender\n=\n\n#L \"Infused Ancient Defender\" \"274556\"\nSkills: | CL 1500 |" +} diff --git a/modules/standard/recipe/recipes/629.json b/modules/standard/recipe/recipes/629.json new file mode 100644 index 0000000..1d3044e --- /dev/null +++ b/modules/standard/recipe/recipes/629.json @@ -0,0 +1,21 @@ +{ + "name": "Infused Ancient Speed Preservation Unit", + "author": "", + "items": [ + { + "alias": "Dust Brigade Notum Infuser", + "item_id": 274552 + }, + { + "alias": "Ancient Speed Preservation Unit", + "item_id": 267625 + }, + { + "alias": "Infused Ancient Speed Preservation Unit", + "item_id": 274555 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients \n------------------------------\n\n#L \"Dust Brigade Notum Infuser\" \"274552\"\n\n\n#L \"Ancient Speed Preservation Unit\" \"267625\"\n\n\n------------------------------\nRecipe \n------------------------------\n\nDust Brigade Notum Infuser\n+\nAncient Speed Preservation Unit\n=\n\n#L \"Infused Ancient Speed Preservation Unit\" \"274555\"\nSkills: | CL 1500 |" +} diff --git a/modules/standard/recipe/recipes/63.json b/modules/standard/recipe/recipes/63.json new file mode 100644 index 0000000..7c874f9 --- /dev/null +++ b/modules/standard/recipe/recipes/63.json @@ -0,0 +1,57 @@ +{ + "name": "Living Dragon Armor", + "author": "", + "items": [ + { + "alias": "Piece of Living Dragon Wing", + "item_id": 158894 + }, + { + "alias": "Ultimate Mass Relocating Robot", + "item_id": 155592 + }, + { + "alias": "Mass Relocating Robot (Shape Hard Armor)", + "item_id": 162218 + }, + { + "alias": "Living Dragonflesh Body Armor", + "item_id": 158791 + }, + { + "alias": "Chunk of Living Dragon Flesh", + "item_id": 158892 + }, + { + "alias": "Lump of Living Dragon Marrow", + "item_id": 158895 + }, + { + "alias": "Living Dragonmarrow Feet Armor", + "item_id": 158794 + }, + { + "alias": "Patch of Living Dragon Skin", + "item_id": 158893 + }, + { + "alias": "Living Dragonskin Legs Armor", + "item_id": 158793 + }, + { + "alias": "Living Dragonskull Circlet", + "item_id": 158799 + }, + { + "alias": "Shard of Living Dragon Skull", + "item_id": 158896 + }, + { + "alias": "Living Dragonwing Arms Armor", + "item_id": 158792 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients\n------------------------------\n\nA piece of Tarasque\n( ie : #L \"Piece of Living Dragon Wing\" \"158894\" )\n\n\n#L \"Programmed Photon Particle Emitter (Shape Soft Armor)\" \"162222\"\n\n\n#L \"Mass Relocating Robot\" \"155592\"\n\n\n------------------------------\nRecipe\n------------------------------\n\nProgrammed Photon Particle Emitter (Shape Soft Armor)\n+\nMass Relocating Robot\n=\n\n#L \"Mass Relocating Robot (Shape Soft Armor)\" \"162218\"\nSkills: | 2.5EE,2.5ME,2.5NP |\n\n------------------------------\n\nA piece of Tarasque\n+\nMass Relocating Robot (Shape Soft Armor)\n=\n\nA piece of Living Dragon Armor\n( ie : #L \"Living Dragonflesh Body Armor\" \"158791\" )\nSkills: | ?? |\n\n------------------------------\nDetails\n------------------------------\n\n#L \"Chunk of Living Dragon Flesh\" \"158892\"\n->\n#L \"Living Dragonflesh Body Armor\" \"158791\"\n------------------------------\n#L \"Lump of Living Dragon Marrow\" \"158895\"\n->\n#L \"Living Dragonmarrow Feet Armor\" \"158794\"\n------------------------------\n#L \"Patch of Living Dragon Skin\" \"158893\"\n->\n#L \"Living Dragonskin Legs Armor\" \"158793\"\n------------------------------\n#L \"Piece of Living Dragon Wing\" \"158894\"\n->\n#L \"Living Dragonskull Circlet\" \"158799\"\n------------------------------\n#L \"Shard of Living Dragon Skull\" \"158896\"\n->\n#L \"Living Dragonwing Arms Armor\" \"158792\"\n\n------------------------------\nComments\n------------------------------\n\nThe biggest armor of this game(??)... Nothing more to add except that the spawn is 9h, extremely camped and in PVP zone. Sugar on the top, the PPPE is extremely rare..." +} diff --git a/modules/standard/recipe/recipes/630.json b/modules/standard/recipe/recipes/630.json new file mode 100644 index 0000000..cdc79ba --- /dev/null +++ b/modules/standard/recipe/recipes/630.json @@ -0,0 +1,21 @@ +{ + "name": "Infused Ancient Nano Enhancer", + "author": "", + "items": [ + { + "alias": "Dust Brigade Notum Infuser", + "item_id": 274552 + }, + { + "alias": "Ancient Nano Enhancer", + "item_id": 267712 + }, + { + "alias": "Infused Ancient Nano Enhancer", + "item_id": 274554 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients \n------------------------------\n\n#L \"Dust Brigade Notum Infuser\" \"274552\"\n\n\n#L \"Ancient Nano Enhancer\" \"267712\"\n\n\n------------------------------\nRecipe \n------------------------------\n\nDust Brigade Notum Infuser\n+\nAncient Nano Enhancer\n=\n\n#L \"Infused Ancient Nano Enhancer\" \"274554\"\nSkills: | CL 1500 |" +} diff --git a/modules/standard/recipe/recipes/631.json b/modules/standard/recipe/recipes/631.json new file mode 100644 index 0000000..78218ab --- /dev/null +++ b/modules/standard/recipe/recipes/631.json @@ -0,0 +1,21 @@ +{ + "name": "Hacked Omni-Tek Gunship", + "author": "", + "items": [ + { + "alias": "Omni-Tek Gunship", + "item_id": 96095 + }, + { + "alias": "Advanced Hacker Tool", + "item_id": 87814 + }, + { + "alias": "Hacked Omni-Tek Gunship", + "item_id": 286234 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients \n------------------------------\n\n Omni-Tek Gunships can be found as chestloot in missions and from the Collector\n\n#L \"Omni-Tek Gunship\" \"96095\"\n\n\n#L \"Advanced Hacker Tool\" \"87814\"\n\n\n------------------------------\nRecipe \n------------------------------\n\nOmni-Tek Gunship\n+\nAdvanced Hacker Tool\n=\n\n#L \"Hacked Omni-Tek Gunship\" \"286234\"\nSkills: | No skills required. Hacker Tool gets used up in the process and its QL does not matter |" +} diff --git a/modules/standard/recipe/recipes/632.json b/modules/standard/recipe/recipes/632.json new file mode 100644 index 0000000..0eeac9c --- /dev/null +++ b/modules/standard/recipe/recipes/632.json @@ -0,0 +1,25 @@ +{ + "name": "Full Data Receptacle Container", + "author": "", + "items": [ + { + "alias": "Empty Data Receptacle Container", + "item_id": 275056 + }, + { + "alias": "Quiescent Grid Waveform Template", + "item_id": 265479 + }, + { + "alias": "Full Data Receptacle Container", + "item_id": 275057 + }, + { + "alias": "Data Receptacle", + "item_id": 160978 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients \n------------------------------\n\n Empty Data Receptacle Containers can be found on RK team mission bosses and dyna's. \nA Fixer can fill it and the owner of the container can use it to enter the Fixer Grid\n\n#L \"Empty Data Receptacle Container\" \"275056\"\n\n\n#L \"Quiescent Grid Waveform Template\" \"265479\"\n\n\n------------------------------\nRecipe \n------------------------------\n\nEmpty Data Receptacle Container\n+\nQuiescent Grid Waveform Template\n=\n\n#L \"Full Data Receptacle Container\" \"275057\"\nSkills: | No Skills Required |\nNote: by right clicking the full container it will revert to an empty container and also spawn:\n\n#L \"Data Receptacle\" \"160978\"\n\n\nClick the Data Receptacle on a Grid Terminal and you will be granted access to the Fixer Grid." +} diff --git a/modules/standard/recipe/recipes/633.json b/modules/standard/recipe/recipes/633.json new file mode 100644 index 0000000..b001ccb --- /dev/null +++ b/modules/standard/recipe/recipes/633.json @@ -0,0 +1,29 @@ +{ + "name": "Infused Viral Compiler", + "author": "", + "items": [ + { + "alias": "Dormant Ancient Circuit", + "item_id": 267794 + }, + { + "alias": "Viral Compiler", + "item_id": 251223 + }, + { + "alias": "Ancient Engineering Device", + "item_id": 267751 + }, + { + "alias": "Active Ancient Circuit", + "item_id": 267795 + }, + { + "alias": "Infused Viral Compiler", + "item_id": 267913 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients \n------------------------------\n\n All parts required for this process can be found in Albtraum. \nYou will need to build an Ancient Engineering Device as well if you do not have one already. \nA link to this tradeskill process is included\n\n#L \"Dormant Ancient Circuit\" \"267794\"\n\n\n#L \"Viral Compiler\" \"251223\"\n\n\n#L \"Ancient Engineering Device\" \"267751\"\n\nNote:To build your Ancient Engineering Device, go here: \n#L \"Ancient Engineering Device\" \"/tell recipe 594\"\n\n------------------------------\nRecipe \n------------------------------\n\nAncient Engineering Device\n+\nDormant Ancient Circuit\n=\n\n#L \"Active Ancient Circuit\" \"267795\"\nSkills: | 1500 ME |\n\nActive Ancient Circuit\n+\nViral Compiler\n=\n\n#L \"Infused Viral Compiler\" \"267913\"\nSkills: | 6X QL in ME |" +} diff --git a/modules/standard/recipe/recipes/64.json b/modules/standard/recipe/recipes/64.json new file mode 100644 index 0000000..bed3d43 --- /dev/null +++ b/modules/standard/recipe/recipes/64.json @@ -0,0 +1,21 @@ +{ + "name": "Lock Pick of Eight", + "author": "", + "items": [ + { + "alias": "Chip of the Eight", + "item_id": 216381 + }, + { + "alias": "Bomb Disarmament Tools", + "item_id": 95576 + }, + { + "alias": "Lock Pick of Eight", + "item_id": 216380 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients\n------------------------------\n\n#L \"Chip of the Eight\" \"216381\"\n\n\n#L \"Bomb Disarmament Tools\" \"95576\"\n\n\n------------------------------\nRecipe\n------------------------------\n\nChip of the Eight\n+\nBomb Disarmament Tools\n=\n\n#L \"Lock Pick of Eight\" \"216380\"\nSkills: | ME |\n\n------------------------------\nComments\n------------------------------\n\nChip of the Eight can be found on Hollow Island" +} diff --git a/modules/standard/recipe/recipes/65.json b/modules/standard/recipe/recipes/65.json new file mode 100644 index 0000000..b785164 --- /dev/null +++ b/modules/standard/recipe/recipes/65.json @@ -0,0 +1,37 @@ +{ + "name": "Massive Steel Body Armor", + "author": "", + "items": [ + { + "alias": "Advanced Hacker Tool", + "item_id": 87814 + }, + { + "alias": "Expendable Hologram Camera", + "item_id": 156054 + }, + { + "alias": "ID-extractor", + "item_id": 156339 + }, + { + "alias": "Massive Steel Body Armor", + "item_id": 204855 + }, + { + "alias": "ID-data", + "item_id": 156340 + }, + { + "alias": "Hacked Massive Steel Body Armor", + "item_id": 204856 + }, + { + "alias": "Massive Steel Body Armor", + "item_id": 204854 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients\n------------------------------\n\n#L \"Hacker Tool\" \"87814\"\n\n\n#L \"Expendable Hologram Camera\" \"156054\"\n\n\n#L \"ID-extractor\" \"156339\"\n\n\n#L \"Massive Steel Body Armor\" \"204855\"\n\n\n------------------------------\nRecipe\n------------------------------\n\nID-extractor\n+\nExpendable Hologram Camera\n=\n\n#L \"ID-data\" \"156340\"\nSkills: | ?? |\n\n------------------------------\n\nHacker Tool\n+\nMassive Steel Body Armor\n=\n\n#L \"Hacked Massive Steel Body Armor\" \"204856\"\nSkills: | ME |\n\n------------------------------\n\nID-data\n+\nHacked Massive Steel Body Armor\n=\n\n#L \"Massive Steel Body Armor\" \"204854\"\nSkills: | ?? |\n\n------------------------------\nComments\n------------------------------\n\nMale only..." +} diff --git a/modules/standard/recipe/recipes/66.json b/modules/standard/recipe/recipes/66.json new file mode 100644 index 0000000..a6f3fd0 --- /dev/null +++ b/modules/standard/recipe/recipes/66.json @@ -0,0 +1,45 @@ +{ + "name": "Mausser Chemical Streamer", + "author": "", + "items": [ + { + "alias": "Premium Mausser Particle Streamer", + "item_id": 122443 + }, + { + "alias": "Advanced Hacker Tool", + "item_id": 87814 + }, + { + "alias": "Sheet of Curved Carbonum Plating", + "item_id": 156017 + }, + { + "alias": "Composite Barrel", + "item_id": 137236 + }, + { + "alias": "Compression Chamber for Chemicals", + "item_id": 137248 + }, + { + "alias": "Mausser Particle Streamer Base", + "item_id": 157718 + }, + { + "alias": "Mausser Chemical Streamer - Step 1", + "item_id": 157720 + }, + { + "alias": "Mausser Chemical Streamer - Step 2", + "item_id": 157722 + }, + { + "alias": "Exquisite Mausser Chemical Streamer", + "item_id": 157716 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients\n------------------------------\n\n#L \"Mausser Particle Streamer\" \"122443\"\n\n\n#L \"Hacker Tool\" \"87814\"\n\n\n#L \"Sheet of Curved Carbonum Plating\" \"156017\"\n\n\n#L \"Composite Barrel\" \"137236\"\n\n\n#L \"Compression Chamber for Chemicals\" \"137248\"\n\n\n------------------------------\nRecipe\n------------------------------\n\nHacker Tool\n+\nMausser Particle Streamer\n=\n\n#L \"Mausser Particle Streamer Base\" \"157718\"\nSkills: | BE |\n\n------------------------------\n\nCompression Chamber for Chemicals\n+\nMausser Particle Streamer Base\n=\n\n#L \"Mausser Chemical Streamer - Step 1\" \"157720\"\nSkills: | WS |\n\n------------------------------\n\nComposite Barrel\n+\nMausser Chemical Streamer - Step 1\n=\n\n#L \"Mausser Chemical Streamer - Step 2\" \"157722\"\nSkills: | WS |\n\n------------------------------\n\nSheet of Curved Carbonum Plating\n+\nMausser Chemical Streamer - Step 2\n=\n\n#L \"Mausser Chemical Streamer\" \"157716\"\nSkills: | ME |\n\n------------------------------\nComments\n------------------------------\n\nThis weapon can only be built. It increases the damage of the mausser, but in addition it inflicts chemical damage and its clip is slightly larger. A very good weapon." +} diff --git a/modules/standard/recipe/recipes/67.json b/modules/standard/recipe/recipes/67.json new file mode 100644 index 0000000..1d64706 --- /dev/null +++ b/modules/standard/recipe/recipes/67.json @@ -0,0 +1,29 @@ +{ + "name": "Mechanical Analyzer", + "author": "", + "items": [ + { + "alias": "Technoscavenger Brain", + "item_id": 164538 + }, + { + "alias": "Bio Analyzing Computer", + "item_id": 156021 + }, + { + "alias": "Screwdriver", + "item_id": 150922 + }, + { + "alias": "Technoscavenger Mechanics Library", + "item_id": 164541 + }, + { + "alias": "Mechanical Analyzer", + "item_id": 164548 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients\n------------------------------\n\n#L \"Technoscavenger Brain\" \"164538\"\n\n\n#L \"Bio Analysing Computer\" \"156021\"\n\n\n#L \"Screwdriver\" \"150922\"\n\n\n------------------------------\nRecipe\n------------------------------\n\nScrewdriver\n+\nTechnoscavenger Brain\n=\n\n#L \"Technoscavenger Mechanics Library\" \"164541\"\nSkills: | WS |\n\n------------------------------\n\nTechnoscavenger Mechanics Library\n+\nBio Analysing Computer\n=\n\n#L \"Mechanical Analyzer\" \"164548\"\nSkills: | WS |\n\n------------------------------\nComments\n------------------------------\n\nHandy little buffer. But you can only have one." +} diff --git a/modules/standard/recipe/recipes/68.json b/modules/standard/recipe/recipes/68.json new file mode 100644 index 0000000..3243963 --- /dev/null +++ b/modules/standard/recipe/recipes/68.json @@ -0,0 +1,21 @@ +{ + "name": "Meister's Reinforced Suit", + "author": "", + "items": [ + { + "alias": "Nelly Johnsons Little Black Dress", + "item_id": 165214 + }, + { + "alias": "Nelly's Chip", + "item_id": 216341 + }, + { + "alias": "Meister's Reinforced Suit", + "item_id": 216340 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients\n------------------------------\n\n#L \"Nelly Johnsons Little Black Dress\" \"165214\"\n\n\n#L \"Nelly's Chip\" \"216341\"\n\n\n------------------------------\nRecipe\n------------------------------\n\nNelly's Chip\n+\nNelly Johnsons Little Black Dress\n=\n\n#L \"Meister's Reinforced Suit\" \"216340\"\nSkills: | PS,CL |\n\n------------------------------\nComments\n------------------------------\n\nNelly's Chip can be found on First Brood Champions on Hollow Island" +} diff --git a/modules/standard/recipe/recipes/690.json b/modules/standard/recipe/recipes/690.json new file mode 100644 index 0000000..330ec66 --- /dev/null +++ b/modules/standard/recipe/recipes/690.json @@ -0,0 +1,29 @@ +{ + "name": "Spirit Infused Yutto's Modified NCU", + "author": "", + "items": [ + { + "alias": "Ancient Engineering Device", + "item_id": 267751 + }, + { + "alias": "Dormant Ancient Circuit", + "item_id": 267794 + }, + { + "alias": "Yuttos Modified NCU", + "item_id": 238921 + }, + { + "alias": "Active Ancient Circuit", + "item_id": 267795 + }, + { + "alias": "Spirit Infused Yuttos Modified NCU", + "item_id": 267797 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients \n------------------------------\n\n These nifty new NCU will be a great upgrade for your yuttos NCU. You can find the parts in Albtraum. You can find the guide for the tool needed #L \"here\" \"/tell recipe 594\". \n\n#L \"Ancient Engineering Device\" \"267751\"\n\n\n#L \"Dormant Ancient Circuit\" \"267794\"\n\n\n#L \"Yuttos Modified NCU\" \"238921\"\n\n\n------------------------------\nRecipe \n------------------------------\n\nAncient Engineering Device\n+\nDormant Ancient Circuit\n=\n\n#L \"Active Ancient Circuit\" \"267795\"\nSkills: | 1500 ME | \n\nActive Ancient Circuit\n+\nYuttos Modified NCU\n=\n\n#L \"Spirit Infused Yuttos Modified NCU\" \"267797\"\nSkills: | 6X the QL of ME | \n\nTo make a QL 220 NCU into a QL 300 you will need 1800ME." +} diff --git a/modules/standard/recipe/recipes/691.json b/modules/standard/recipe/recipes/691.json new file mode 100644 index 0000000..776be2c --- /dev/null +++ b/modules/standard/recipe/recipes/691.json @@ -0,0 +1,69 @@ +{ + "name": "Masterpiece Ancient Manual Aiming Aid", + "author": "", + "items": [ + { + "alias": "Empty Ancient Device", + "item_id": 267709 + }, + { + "alias": "Ancient Scrap of Spirit Knowledge", + "item_id": 267677 + }, + { + "alias": "Ancient Scrap of Saturated Spirit Knowledge", + "item_id": 267679 + }, + { + "alias": "Crystalised Memories of an Archer", + "item_id": 267708 + }, + { + "alias": "Crystalised Memories of a Technician", + "item_id": 267698 + }, + { + "alias": "Crystalised Memories of a Mechanic", + "item_id": 267701 + }, + { + "alias": "Crystalised Memories of a Sniper", + "item_id": 267704 + }, + { + "alias": "Crystalised Memories of a Warrior", + "item_id": 267697 + }, + { + "alias": "Ancient Manual Aiming Aid", + "item_id": 267651 + }, + { + "alias": "Ancient Scrap of Condensed Spirit Knowledge", + "item_id": 267680 + }, + { + "alias": "Combined Crystalised Combat Memories", + "item_id": 267705 + }, + { + "alias": "Ancient Scrap of Spirit Combat Knowledge", + "item_id": 267681 + }, + { + "alias": "Improved Ancient Manual Aiming Aid", + "item_id": 267706 + }, + { + "alias": "Combined Crystalised Technical Memories", + "item_id": 267702 + }, + { + "alias": "Masterpiece Ancient Manual Aiming Aid", + "item_id": 267707 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients \n------------------------------\n\n All parts required for this process can be found in Albtraum.\n\n#L \"Empty Ancient Device\" \"267709\"\n\n\n#L \"Ancient Scrap of Spirit Knowledge\" \"267677\" x 2\n\n\n#L \"Ancient Scrap of Saturated Spirit Knowledge\" \"267679\" x 2\n\n\n#L \"Crystalised Memories of an Archer\" \"267708\"\n\n\n#L \"Crystalised Memories of a Technician\" \"267698\"\n\n\n#L \"Crystalised Memories of a Mechanic\" \"267701\"\n\n\n#L \"Crystalised Memories of a Sniper\" \"267704\"\n\n\n#L \"Crystalised Memories of a Warrior\" \"267697\"\n\n\n------------------------------\nRecipe \n------------------------------\n\nAncient Manual Aiming Aid\n\nEmpty Ancient Device\n+\nCrystalised Memories of an Archer\n=\n\n#L \"Ancient Manual Aiming Aid\" \"267651\"\nSkills: | 1250 CL |\n\nImproved Ancient Manual Aiming Aid\n\nAncient Scrap of Spirit Knowledge\n+\nAncient Scrap of Saturated Spirit Knowledge\n=\n\n#L \"Ancient Scrap of Condensed Spirit Knowledge\" \"267680\"\nSkills: | 1750 PT |\n\nCrystalised Memories of a Sniper\n+\nCrystalised Memories of a Warrior\n=\n\n#L \"Combined Crystalised Combat Memories\" \"267705\"\nSkills: | 1250 NP |\n\nCombined Crystalised Combat Memories\n+\nAncient Scrap of Condensed Spirit Knowledge\n=\n\n#L \"Ancient Scrap of Spirit Combat Knowledge\" \"267681\"\nSkills: | 1250 CL |\n\nAncient Manual Aiming Aid\n+\nAncient Scrap of Spirit Combat Knowledge\n=\n\n#L \"Improved Ancient Manual Aiming Aid\" \"267706\"\nSkills: | 1250 CL |\n\nMasterpiece Ancient Manual Aiming Aid\n\nCrystalised Memories of a Technician\n+\nCrystalised Memories of a Mechanic\n=\n\n#L \"Combined Crystalised Technical Memories\" \"267702\"\nSkills: | 1875 NP |\n\nAncient Scrap of Spirit Knowledge\n+\nAncient Scrap of Saturated Spirit Knowledge\n=\n\n#L \"Ancient Scrap of Condensed Spirit Knowledge\" \"267680\"\nSkills: | 1750 PT |\n\nCombined Crystalised Technical Memories\n+\nAncient Scrap of Condensed Spirit Knowledge\n=\n\n#L \"Ancient Scrap of Spirit Technical Knowledge\" \"267681\"\nSkills: | 1875 NP |\n\nImproved Ancient Manual Aiming Aid\n+\nAncient Scrap of Spirit Technical Knowledge\n=\n\n#L \"Masterpiece Ancient Manual Aiming Aid\" \"267707\"\nSkills: | 1250 CL |" +} diff --git a/modules/standard/recipe/recipes/692.json b/modules/standard/recipe/recipes/692.json new file mode 100644 index 0000000..b13293e --- /dev/null +++ b/modules/standard/recipe/recipes/692.json @@ -0,0 +1,61 @@ +{ + "name": "NCU Memories", + "author": "", + "items": [ + { + "alias": "Base NCU - Type 00 (0/6)", + "item_id": 277436 + }, + { + "alias": "NCU Memory Cell", + "item_id": 277182 + }, + { + "alias": "Intelligence Memory Cell", + "item_id": 277170 + }, + { + "alias": "Biological Metamorphosis Memory Cell", + "item_id": 277831 + }, + { + "alias": "1-Hand Blunt Memory Cell", + "item_id": 277904 + }, + { + "alias": "Memory NCU (1/6)", + "item_id": 278757 + }, + { + "alias": "Memory NCU (6/6)", + "item_id": 278782 + }, + { + "alias": "Abilities NCU - Type 02 (1/6)", + "item_id": 277051 + }, + { + "alias": "Abilities NCU - Type 3F (6/6)", + "item_id": 277166 + }, + { + "alias": "Nano NCU - Type 01 (1/6)", + "item_id": 277506 + }, + { + "alias": "Nano NCU - Type 3F (6/6)", + "item_id": 277823 + }, + { + "alias": "1-Hand Blunt Skill NCU (1/6)", + "item_id": 278314 + }, + { + "alias": "1-Hand Blunt Skill NCU (6/6)", + "item_id": 278339 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients \n------------------------------\n\n The Legacy of Xan NCU memories come in 4 different sorts and can be upgraded 6 times.\n\n#L \"Base NCU - Type 00 (0/6)\" \"277436\"\n\n\n#L \"NCU Memory Cell\" \"277182\" x 6\n\nor\n#L \"Intelligence Memory Cell\" \"277170\" x 6\n\nor\n#L \"Biological Metamorphosis Memory Cell\" \"277831\" x 6\n\nor\n#L \"1-Hand Blunt Memory Cell\" \"277904\" x 6 \n\n\n------------------------------\nRecipe \n------------------------------\n\n\nNCU Memory NCU\n\nNote:NCU Memory exclusively buffs your NCU.\nAt QL300 it will buff a massive 192 NCU with 6 Memory Cells added to it. \n\nBase NCU - Type 00 (0/6)\n+\nNCU Memory Cell\n=\n\n#L \"Memory NCU (1/6)\" \"278757\"\nSkills: | Requires QLx1.5 EE QLx1.5 NP QLx4.5 CL|\n\nRepeat 5 times for:\n#L \"Memory NCU (6/6)\" \"278782\"\n\n\nAbilities NCU\n\nNote:Abilities NCU can buff all your base abilities by up to 5 per NCU.\nIt can include one cell of each ability \n\nBase NCU - Type 00 (0/6)\n+\nIntelligence Memory Cell\n=\n\n#L \"Abilities NCU - Type 02 (1/6)\" \"277051\"\nSkills: | Requires QLx1.5 EE QLx1.5 NP QLx4.5 CL|\n\nRepeat 5 times for:\n#L \"Abilities NCU - Type 3F (6/6)\" \"277166\"\n\n\nNano NCU\n\nNote:Nano NCUs can buff all six nano skills at the same time by up to 5 per NCU.\nIt can only include one cell of each ability \n\nBase NCU - Type 00 (0/6)\n+\nBiological Metamorphosis Memory Cell\n=\n\n#L \"Nano NCU - Type 01 (1/6)\" \"277506\"\nSkills: | Requires QLx1.5 EE QLx1.5 NP QLx4.5 CL|\n\nRepeat 5 times for:\n#L \"Nano NCU - Type 3F (6/6)\" \"277823\"\n\n\nWeapons NCU\n\nNote:Abilities NCU can buff all your base abilities by up to 5 per NCU.\nIt can include one cell of each ability \n\nBase NCU - Type 00 (0/6)\n+\n1-Hand Blunt Memory Cell\n=\n\n#L \"1-Hand Blunt Skill NCU (1/6)\" \"278314\"\nSkills: | Requires QLx1.5 EE QLx1.5 NP QLx4.5 CL|\n\nRepeat 5 times for:\n#L \"1-Hand Blunt Skill NCU (6/6)\" \"278339\"\n" +} diff --git a/modules/standard/recipe/recipes/693.json b/modules/standard/recipe/recipes/693.json new file mode 100644 index 0000000..e76efca --- /dev/null +++ b/modules/standard/recipe/recipes/693.json @@ -0,0 +1,53 @@ +{ + "name": "Professional Stellar Nanodeck", + "author": "", + "items": [ + { + "alias": "Unknown Mixture", + "item_id": 281095 + }, + { + "alias": "A piece of cloth", + "item_id": 281098 + }, + { + "alias": "Nanodeck Activation Device", + "item_id": 281157 + }, + { + "alias": "Kenneth's Polishing Gel", + "item_id": 255555 + }, + { + "alias": "Martial Artist Nanodeck", + "item_id": 270762 + }, + { + "alias": "Star of Equanimity", + "item_id": 244691 + }, + { + "alias": "Grostad's Polishing Gel", + "item_id": 281094 + }, + { + "alias": "Grostad's piece of polishing cloth", + "item_id": 281099 + }, + { + "alias": "Stellar Equanimity", + "item_id": 281046 + }, + { + "alias": "Activated Martial Artist Nanodeck", + "item_id": 280764 + }, + { + "alias": "Stellar Martial Artist Nanodeck", + "item_id": 280778 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients \n------------------------------\n\n Most of these items can only be acquired if you have access to Mitaar Hero, Ground Chief Vortexx and the 12-Man encounters,\nas well as a few key items from various high-level encounters/quests bits! \n\n#L \"Unknown Mixture\" \"281095\"\n\n\n#L \"A piece of cloth\" \"281098\"\n\n\n#L \"Nanodeck Activation Device\" \"280785\"\n\n\n#L \"Kenneth's Polishing Gel\" \"255555\"\n\n\n#L \"xxx Nanodeck\" \"270762\"\n\n\n#L \"Star of xxx\" \"244691\"\n\n\n------------------------------\nRecipe \n------------------------------\n\nNote: for demonstration purposes we'll show how to build MA nanodeck:\n\nUnknown Mixture\n+\nKenneth's Polishing Gel\n=\n\n#L \"Grostad's Polishing Gel\" \"281094\"\n\nGrostad's Polishing Gel\n+\nA piece of cloth\n=\n\n#L \"Grostad's piece of polishing cloth\" \"281099\"\n\nGrostad's piece of polishing cloth\n+\nStar of Equanimity\n=\n\n#L \"Stellar Equanimity\" \"281046\"\n\nNanodeck Activation Device\n+\nMartial-Artist Nanodeck\n=\n\n#L \"Activated Martial-Artist Nanodeck\" \"280764\"\n\nStellar Equanimity\n+\nActivated Martial-Artist Nanodeck\n=\n\n#L \"Stellar Martial-Artist Nanodeck\" \"280778\"" +} diff --git a/modules/standard/recipe/recipes/694.json b/modules/standard/recipe/recipes/694.json new file mode 100644 index 0000000..70a00bf --- /dev/null +++ b/modules/standard/recipe/recipes/694.json @@ -0,0 +1,77 @@ +{ + "name": "Masterpiece Ancient Combat Tuner", + "author": "", + "items": [ + { + "alias": "Empty Ancient Device", + "item_id": 267709 + }, + { + "alias": "Ancient Scrap of Spirit Knowledge", + "item_id": 267677 + }, + { + "alias": "Ancient Scrap of Saturated Spirit Knowledge", + "item_id": 267679 + }, + { + "alias": "Crystalised Memories of a Technician", + "item_id": 267698 + }, + { + "alias": "Crystalised Memories of a Mechanic", + "item_id": 267701 + }, + { + "alias": "Crystalised Memories of an Instructor", + "item_id": 267710 + }, + { + "alias": "Crystalised Memories of a Sniper", + "item_id": 267704 + }, + { + "alias": "Crystalised Memories of a Warrior", + "item_id": 267697 + }, + { + "alias": "Ancient Combat Tuner", + "item_id": 267678 + }, + { + "alias": "Ancient Scrap of Condensed Spirit Knowledge", + "item_id": 267680 + }, + { + "alias": "Enhanced Ancient Combat Tuner", + "item_id": 267656 + }, + { + "alias": "Advanced Ancient Combat Tuner", + "item_id": 267682 + }, + { + "alias": "Combined Crystalised Combat Memories", + "item_id": 267705 + }, + { + "alias": "Ancient Scrap of Spirit Combat Knowledge", + "item_id": 267681 + }, + { + "alias": "Superior Ancient Combat Tuner", + "item_id": 267695 + }, + { + "alias": "Combined Crystalised Technical Memories", + "item_id": 267702 + }, + { + "alias": "Masterpiece Ancient Combat Tuner", + "item_id": 267696 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients \n------------------------------\n\n All parts required for this process can be found in Albtraum.\nThe tuners at each phase are NO DROP, so make sure you have enough Computer Literacy for those bits! \n\n#L \"Empty Ancient Device\" \"267709\"\n\n\n#L \"Ancient Scrap of Spirit Knowledge\" \"267677\" x 4\n\n\n#L \"Ancient Scrap of Saturated Spirit Knowledge\" \"267679\" x 4\n\n\n#L \"Crystalised Memories of a Technician\" \"267698\"\n\n\n#L \"Crystalised Memories of a Mechanic\" \"267701\"\n\n\n#L \"Crystalised Memories of an Instructor\" \"267710\"\n\n\n#L \"Crystalised Memories of a Sniper\" \"267704\"\n\n\n#L \"Crystalised Memories of a Warrior\" \"267697\"\n\n\n------------------------------\nRecipe \n------------------------------\n\nAncient Combat Tuner\n\nEmpty Ancient Device\n+\nCrystalised Memories of an Instructor\n=\n\n#L \"Ancient Combat Tuner\" \"267678\"\nSkills: | 1250 CL |\n\nEnhanced Ancient Combat Tuner\n\nAncient Scrap of Spirit Knowledge\n+\nAncient Scrap of Saturated Spirit Knowledge\n=\n\n#L \"Ancient Scrap of Condensed Spirit Knowledge\" \"267680\"\nSkills: | 1750 PT |\n\nAncient Combat Tuner\n+\nAncient Scrap of Condensed Spirit Knowledge\n=\n\n#L \"Enhanced Ancient Combat Tuner\" \"267656\"\nSkills: | 1250 CL |\n\nAdvanced Ancient Combat Tuner\n\nAncient Scrap of Spirit Knowledge\n+\nAncient Scrap of Saturated Spirit Knowledge\n=\n\n#L \"Ancient Scrap of Condensed Spirit Knowledge\" \"267680\"\nSkills: | 1750 PT |\n\nEnhanced Ancient Combat Tuner\n+\nAncient Scrap of Condensed Spirit Knowledge\n=\n\n#L \"Advanced Ancient Combat Tuner\" \"267682\"\nSkills: | 1250 CL |\n\nSuperior Ancient Combat Tuner\n\nAncient Scrap of Spirit Knowledge\n+\nAncient Scrap of Saturated Spirit Knowledge\n=\n\n#L \"Ancient Scrap of Condensed Spirit Knowledge\" \"267680\"\nSkills: | 1750 PT |\n\nCrystalised Memories of a Sniper\n+\nCrystalised Memories of a Warrior\n=\n\n#L \"Combined Crystalised Combat Memories\" \"267705\"\nSkills: | 1250 NP |\n\nCombined Crystalised Combat Memories\n+\nAncient Scrap of Condensed Spirit Knowledge\n=\n\n#L \"Ancient Scrap of Spirit Combat Knowledge\" \"267681\"\nSkills: | 1250 CL |\n\nAdvanced Ancient Combat Tuner\n+\nAncient Scrap of Spirit Combat Knowledge\n=\n\n#L \"Superior Ancient Combat Tuner\" \"267695\"\nSkills: | 1250 CL |\n\nMasterpiece Ancient Combat Tuner\n\nAncient Scrap of Spirit Knowledge\n+\nAncient Scrap of Saturated Spirit Knowledge\n=\n\n#L \"Ancient Scrap of Condensed Spirit Knowledge\" \"267680\"\nSkills: | 1750 PT |\n\nCrystalised Memories of a Technician\n+\nCrystalised Memories of a Mechanic\n=\n\n#L \"Combined Crystalised Technical Memories\" \"267702\"\nSkills: | 1875 NP |\n\nCombined Crystalised Technical Memories\n+\nAncient Scrap of Condensed Spirit Knowledge\n=\n\n#L \"Ancient Scrap of Spirit Technical Knowledge\" \"267681\"\nSkills: | 1875 NP |\n\nSuperior Ancient Combat Tuner\n+\nAncient Scrap of Spirit Technical Knowledge\n=\n\n#L \"Masterpiece Ancient Combat Tuner\" \"267696\"\nSkills: | 1250 CL |" +} diff --git a/modules/standard/recipe/recipes/695.json b/modules/standard/recipe/recipes/695.json new file mode 100644 index 0000000..1e6208b --- /dev/null +++ b/modules/standard/recipe/recipes/695.json @@ -0,0 +1,129 @@ +{ + "name": "Player City Building Guide", + "author": "", + "items": [ + { + "alias": "Regular Building Structure", + "item_id": 254807 + }, + { + "alias": "Generic Organic Immunity System", + "item_id": 254822 + }, + { + "alias": "Generic Volatile Nanobots", + "item_id": 247760 + }, + { + "alias": "HSR Compressed Regenerating Bioplate", + "item_id": 202540 + }, + { + "alias": "Blueprint - Regular Building Structure", + "item_id": 247768 + }, + { + "alias": "Floorplan - Clan Swimming Pool", + "item_id": 255481 + }, + { + "alias": "Kyr'Ozch Structural Analyzer", + "item_id": 247100 + }, + { + "alias": "Solid Clump of Kyr'Ozch Bio-Material", + "item_id": 254804 + }, + { + "alias": "Advanced Bio-Comminutor", + "item_id": 154332 + }, + { + "alias": "Manteze Scout Nasal Membrane", + "item_id": 247762 + }, + { + "alias": "Fertilized Giant Chirop Egg", + "item_id": 247788 + }, + { + "alias": "Slow-Killing Poison", + "item_id": 247791 + }, + { + "alias": "Unrefined Notum Salt", + "item_id": 247786 + }, + { + "alias": "Uncle Bazzit's Bio-Mechanical AI", + "item_id": 247794 + }, + { + "alias": "Kyr'Ozch Viral Serum", + "item_id": 254805 + }, + { + "alias": "Membrane Pulp", + "item_id": 247763 + }, + { + "alias": "Strong Regenerating Bioplate", + "item_id": 247757 + }, + { + "alias": "Superior Bioplate", + "item_id": 254806 + }, + { + "alias": "Clan Swimming Pool", + "item_id": 254164 + }, + { + "alias": "Mutating Giant Chirop Egg", + "item_id": 247789 + }, + { + "alias": "Poisoned Giant Chirop Egg", + "item_id": 247790 + }, + { + "alias": "Mutating Bio-Pulp", + "item_id": 247792 + }, + { + "alias": "Bio-Mechanical Computer", + "item_id": 247795 + }, + { + "alias": "Superior Building Structure", + "item_id": 254829 + }, + { + "alias": "Large Clan Organization Headquarters", + "item_id": 254200 + }, + { + "alias": "Neutron Displacer", + "item_id": 149823 + }, + { + "alias": "Stalker Carapace", + "item_id": 247817 + }, + { + "alias": "Non-Regenerating Bioplate", + "item_id": 247755 + }, + { + "alias": "Rollerrat Queen Blood", + "item_id": 247758 + }, + { + "alias": "Rollerrat Queen Erythrocyte", + "item_id": 247759 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nInfo\n------------------------------\n\n You can not buy ready-made houses. You have to build them using tradeskills.\nThe store where all this is sold is Uncle Bazzit's Shop in Meetmedere (MMD).\nThere are two types of buildings: advanced and regular ones. To make an advanced building you need to upgrade you #L \"Regular Building Structure\" \"254807\".\nThe QL of the building ranges from 1-300 and is determined by #L \"Generic Organic Immunity System\" \"254822\". \nUncle Bazzit only sells up to QL75. To find out how to make a higher QL, look further down in this guide.\nAdvanced structures: Headquarter, Market, Guard House\nRegular Structures: Grid House, Notum Mining Operations, Notum Silo, Landing Pad, Satellite Uplink, ECM Tower, Swimming Pool, Sidewalk Cafe, Sky Bar\n\n------------------------------\nIngredients\n------------------------------\n\n#L \"Generic Volatile Nanobots\" \"247760\"\n\n\n#L \"HSR Compressed Regenerating Bioplate\" \"202540\"\n\n\n#L \"Blueprint - Regular Building Structure\" \"247768\"\n\n\n#L \"Floorplan - Clan Swimming Pool\" \"255481\"\n\n\n#L \"Generic Organic Immunity System\" \"254822\"\n\n\n------------------------------\n\nNote:for a building of QL75+ you will need to build your own\nGeneric Organic Immunity System and will also need:\n\n#L \"Kyr'Ozch Structural Analyzer\" \"247100\"\n\n\n#L \"Solid Clump of Kyr'Ozch Bio-Material\" \"254804\"\n\n\n#L \"Advanced Bio-Comminutor\" \"154332\"\n\n\n#L \"Manteze Scout Nasal Membrane\" \"247762\"\n\n\n\n------------------------------\n\nNote:for advanced buildings you will also need:\n\n#L \"Fertilized Giant Chirop Egg\" \"247788\"\n\n\n#L \"Slow-Killing Poison\" \"247791\"\n\n\n#L \"Unrefined Notum Salt\" \"247786\"\n\n\n#L \"Uncle Bazzit's Bio-Mechanical AI\" \"247794\"\n\n\n------------------------------\nRecipe\n------------------------------\n\nGeneric Organic Immunity System\n\nNote: To make a QL75+ building, regular or advanced, you need a #L \"Solid Clump of Kyr'Ozch Bio-Material\" \"254804\" and a #L \"Manteze Scout Nasal Membrane\" \"247762\".\nThe QL of the Clump of Bio-Material sets the QL of the Generic Organic Immunity System (and the building).\n\nKyr'Ozch Structural Analyzer\n+\nSolid Clump of Kyr'Ozch Bio-Material\n=\n \n#L \"Kyr'Ozch Viral Serum\" \"254805\"\nSkills: | 4.5 x QL EE |\nNote: Refining a clump of bio material does not guarantee viral serum as a result.\nThey can turn into several different items.\n\nAdvanced Bio-Comminutor\n+\nManteze Scout Nasal Membrane\n=\n \n#L \"Membrane Pulp\" \"247763\"\nSkills: | 400 PH |\n\nMembrane Pulp\n+\nKyr'Ozch Viral Serum\n=\n \n#L \"Generic Organic Immunity System\" \"254822\"\nSkills: | 3.5 x QL PH |\n\nRegular Building\n\nGeneric Volatile Nanobots\n+\nHSR Compressed Regenerating Bioplate\n=\n \n#L \"Strong Regenerating Bioplate\" \"247757\"\nSkills: | 4x QL CH |\n\nStrong Regenerating Bioplate\n+\nGeneric Organic Immunity System\n=\n \n#L \"Superior Bioplate\" \"254806\"\nSkills: | 400 PH |\n\nBlueprint - Regular Building Structure\n+\nSuperior Bioplate\n=\n \n#L \"Regular Building Structure\" \"254807\"\nSkills: | 4 x QL ME |\nNote: for advanced structures, skip the next step\n\nRegular Building Structure\n+\nFloorplan - Clan Swimming Pool\n=\n \n#L \"Clan Swimming Pool\" \"254164\"\nSkills: | 5 x CL |\n\nAdvanced Buildings\n\nUnrefined Notum Salt\n+\nFertilized Giant Chirop Egg\n=\n \n#L \"Mutating Giant Chirop Egg\" \"247789\"\nSkills: | 400 PH |\n\nSlow-Killing Poison\n+\nMutating Giant Chirop Egg\n=\n \n#L \"Poisoned Giant Chirop Egg\" \"247790\"\nSkills: | 400 CH |\n\nAdvanced Bio-Comminutor\n+\nPoisoned Giant Chirop Egg\n=\n \n#L \"Mutating Bio-Pulp\" \"247792\"\nSkills: | 400 PH |\n\nUncle Bazzit's Bio-Mechanical AI\n+\nMutating Bio-Pulp\n=\n \n#L \"Bio-Mechanical Computer\" \"247795\"\nSkills: | 400 QFT |\n\nBio-Mechanical Computer\n+\nRegular Building Structure\n=\n \n#L \"Superior Building Structure\" \"254829\"\nSkills: | 4 x QL ME |\n\nFloorplan - Clan Large Organization Headquarters\n+\nSuperior Building Structure\n=\n \n#L \"Large Clan Organization Headquarters\" \"254200\"\nSkills: | 5 x QL CL |\n\nAlternative way of making Strong Regenerating Bioplate\n\n#L \"Neutron Displacer\" \"149823\"\n+\n#L \"Stalker Carapace\" \"247817\"\n=\n \n#L \"Non-Regenerating Bioplate\" \"247755\"\n\n#L \"Advanced Bio-Comminutor\" \"154332\"\n+\n#L \"Rollerrat Queen Blood\" \"247758\"\n=\n\n#L \"Rollerrat Queen Erythrocyte\" \"247759\"\n\nRollerrat Queen Erythrocyte\n+\nNon-Regenerating Bioplate\n=\n\n#L \"Strong Regenerating Bioplate\" \"247757\"" +} diff --git a/modules/standard/recipe/recipes/696.json b/modules/standard/recipe/recipes/696.json new file mode 100644 index 0000000..22c776a --- /dev/null +++ b/modules/standard/recipe/recipes/696.json @@ -0,0 +1,45 @@ +{ + "name": "Transmographic Dimension Shifter", + "author": "", + "items": [ + { + "alias": "Semi Working Cellular Assembler", + "item_id": 275464 + }, + { + "alias": "Insulated Nano Wire", + "item_id": 275461 + }, + { + "alias": "Tube of Flexible Carbon Fiber", + "item_id": 275462 + }, + { + "alias": "Set-and-Reset Flip-Flop", + "item_id": 275463 + }, + { + "alias": "Cellular Assembler with Wire Sticking Out", + "item_id": 275467 + }, + { + "alias": "A Highly Sustainable Device", + "item_id": 275466 + }, + { + "alias": "Ness' Decoy Device", + "item_id": 275456 + }, + { + "alias": "Algorithm: Replotting Matrix", + "item_id": 288453 + }, + { + "alias": "Transmographic Dimension Shifter", + "item_id": 288452 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients \n------------------------------\n\n Dr. Ness (from the Arid Rift quest) has a very nice tool for you after you've built a Ness' Decoy Device for him. The tool will warp you out of whatever place in Arid Rift back to the Unicorn staging area\n\n#L \"Semi Working Cellular Assembler\" \"275464\"\n\n\n#L \"Insulated Nano Wire\" \"275461\"\n\n\n#L \"Tube of Flexible Carbon Fiber\" \"275462\"\n\n\n#L \"Set-and-Reset Flip-Flop\" \"275463\"\n\n\n------------------------------\nRecipe \n------------------------------\n\nSemi Working Cellular Assembler\n+\nInsulated Nano Wire\n=\n\n#L \"Cellular Assembler with Wire Sticking Out\" \"275467\"\n\nCellular Assembler with Wire Sticking Out\n+\nTube of Flexible Carbon Fiber\n=\n\n#L \"A Highly Sustainable Device\" \"275466\"\n\nA Highly Sustainable Device\n+\nSet-and-Reset Flip-Flop\n=\n\n#L \"Ness' Decoy Device\" \"275456\"\n\nIn the team alien mission you will have to give Dr. Ness the Ness' Decoy Device in order to finish the mission. But you can talk with him a little longer and he will tell you about this wonderful idea about an enhancement to this device. He will give you a:\n\n#L \"Algorithm: Replotting Matrix\" \"288453\"\n\n\n#16Combine these:\n\n\nAlgorithm: Replotting Matrix\n+\nNess' Decoy Device\n=\n\n#L \"Transmographic Dimension Shifter\" \"288452\"" +} diff --git a/modules/standard/recipe/recipes/697.json b/modules/standard/recipe/recipes/697.json new file mode 100644 index 0000000..d75ba28 --- /dev/null +++ b/modules/standard/recipe/recipes/697.json @@ -0,0 +1,81 @@ +{ + "name": "Signet of the Apocalypse", + "author": "", + "items": [ + { + "alias": "Jensen Gem Cutter", + "item_id": 151366 + }, + { + "alias": "De'Valos Protection Ring", + "item_id": 281267 + }, + { + "alias": "Sniper's Gem", + "item_id": 281209 + }, + { + "alias": "Explorer's Gem", + "item_id": 281210 + }, + { + "alias": "Dictator's Gem", + "item_id": 281211 + }, + { + "alias": "Healer's Gem", + "item_id": 281212 + }, + { + "alias": "Brute's Gem", + "item_id": 281213 + }, + { + "alias": "Builder's Gem", + "item_id": 281214 + }, + { + "alias": "Hacker's Gem", + "item_id": 281215 + }, + { + "alias": "Protecter's Gem", + "item_id": 281216 + }, + { + "alias": "Master's Gem", + "item_id": 281217 + }, + { + "alias": "Worshipper's Gem", + "item_id": 281218 + }, + { + "alias": "Techno Wizard's Gem", + "item_id": 281219 + }, + { + "alias": "Spirit's Gem", + "item_id": 281220 + }, + { + "alias": "Warrior's Gem", + "item_id": 281221 + }, + { + "alias": "Merchant's Gem", + "item_id": 281222 + }, + { + "alias": "Sniper's Cut Gem", + "item_id": 281225 + }, + { + "alias": "Sniper's Signet of The Apocalypse", + "item_id": 281194 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients \n------------------------------\n\n So, you have a nice De'Valos Protection Ring and now you want to upgrade it further? No problem! \nThis easy tradeskill (which doesn't have any skill requirements) process will make your ring a little bit more useful in certain situations: \n\n#L \"Jensen Gem Cutter\" \"151366\"\n\n\n#L \"De'Valos Protection Ring\" \"281267\"\n\n\n\n#L \"Sniper's Gem\" \"281209\"\nor\n#L \"Explorer's Gem\" \"281210\"\nor\n#L \"Dictator's Gem\" \"281211\"\nor\n#L \"Healer's Gem\" \"281212\"\nor\n#L \"Brute's Gem\" \"281213\"\nor\n#L \"Builder's Gem\" \"281214\"\nor\n#L \"Hacker's Gem\" \"281215\"\nor\n#L \"Protector's Gem\" \"281216\"\nor\n#L \"Master's Gem\" \"281217\"\nor\n#L \"Worshipper's Gem\" \"281218\"\nor\n#L \"Techno Wizard's Gem\" \"281219\"\nor\n#L \"Spirit's Gem\" \"281220\"\nor\n#L \"Warrior's Gem\" \"281221\"\nor\n#L \"Merchant's Gem\" \"281222\"\n\n------------------------------\nRecipe \n------------------------------\n\nJensen Gem Cutter\n+\nSniper's Gem\n=\n\n#L \"Sniper's Cut Gem\" \"281225\"\n\nSniper's Cut Gem\n+\nDe'Valos Protection Ring\n=\n\n#L \"Sniper's Signet of The Apocalypse\" \"281194\"\n\n------------------------------\nComments\n------------------------------\nEach ring gives you a profession specific buff when activated." +} diff --git a/modules/standard/recipe/recipes/698.json b/modules/standard/recipe/recipes/698.json new file mode 100644 index 0000000..7eef68b --- /dev/null +++ b/modules/standard/recipe/recipes/698.json @@ -0,0 +1,21 @@ +{ + "name": "Trimmer - Improved Actuators", + "author": "", + "items": [ + { + "alias": "Trimmer Casing", + "item_id": 263824 + }, + { + "alias": "Smelly Liquid", + "item_id": 253173 + }, + { + "alias": "Trimmer - Improve Actuators", + "item_id": 253189 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients \n------------------------------\n\nThis Trimmer will heal your pet for up to 6k of HP and will give an additional boost to damage for 600 secs.\nIt will lock your Mechanical Engineering skill for 60 minutes.\n\n#L \"Trimmer Casing\" \"263824\"\n\n\n#L \"Smelly Liquid\" \"253173\"\n\n\n------------------------------\nRecipe \n------------------------------\n\nSmelly Liquid\n+\nTrimmer Casing\n=\n\n#L \"Trimmer - Improve Actuators\" \"253189\"\nSkills: | trimmer casing needs to be 90% of the Smelly Liquid |" +} diff --git a/modules/standard/recipe/recipes/699.json b/modules/standard/recipe/recipes/699.json new file mode 100644 index 0000000..369eb5a --- /dev/null +++ b/modules/standard/recipe/recipes/699.json @@ -0,0 +1,45 @@ +{ + "name": "Subspace Storage Device", + "author": "", + "items": [ + { + "alias": "Two-Dimensional Hole", + "item_id": 245718 + }, + { + "alias": "Subspace Mesh", + "item_id": 245720 + }, + { + "alias": "Meta-Cerebellum Ring", + "item_id": 245722 + }, + { + "alias": "Short Circuited Spiritech Circlet", + "item_id": 245728 + }, + { + "alias": "Short Circuited Spiritech Circlet", + "item_id": 245729 + }, + { + "alias": "Subspace Pocket", + "item_id": 245719 + }, + { + "alias": "Subspace Meta-Cerebellum Pocket", + "item_id": 245721 + }, + { + "alias": "Stabilized Spiritech Circlet", + "item_id": 245730 + }, + { + "alias": "Subspace Storage Device", + "item_id": 245723 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients \n------------------------------\n\n#L \"Two-Dimensional Hole\" \"245718\"\n\n\n#L \"Subspace Mesh\" \"245720\"\n\n\n#L \"Meta-Cerebellum Ring\" \"245722\"\n\n\n#L \"Short Circuited Spiritech Circlet\" \"245728\"\n\n\n#L \"Short Circuited Spiritech Circlet\" \"245729\"\n\n\n------------------------------\nRecipe \n------------------------------\n\nTwo-Dimensional Hole\n+\nSubspace Mesh\n=\n\n#L \"Subspace Pocket\" \"245719\"\nSkills: | 1125 Psychology |\n\nSubspace Pocket\n+\nMeta-Cerebellum Ring\n=\n\n#L \"Subspace Meta-Cerebellum Pocket\" \"245721\"\nSkills: | 1125 QFP |\n\nShort Circuited Spiritech Circlet\n+\nShort Circuited Spiritech Circlet\n=\n\n#L \"Stabilized Spiritech Circlet\" \"245730\"\nSkills: | 1125 EE |\n\nSubspace Meta-Cerebellum Pocket\n+\nStabilized Spiritech Circlet\n=\n\n#L \"Subspace Storage Device\" \"245723\"\nSkills: | 1125 QFP |" +} diff --git a/modules/standard/recipe/recipes/70.json b/modules/standard/recipe/recipes/70.json new file mode 100644 index 0000000..5f681dd --- /dev/null +++ b/modules/standard/recipe/recipes/70.json @@ -0,0 +1,45 @@ +{ + "name": "Metallic Mantis Armor", + "author": "", + "items": [ + { + "alias": "Deformed Mantidae Head", + "item_id": 164272 + }, + { + "alias": "Deformed Mantidae Abdomen", + "item_id": 164274 + }, + { + "alias": "Deformed Mantidae Femur", + "item_id": 164276 + }, + { + "alias": "Deformed Mantidae Tarsus", + "item_id": 164278 + }, + { + "alias": "Deformed Mantidae Tibia", + "item_id": 164280 + }, + { + "alias": "Deformed Mantidae Wing", + "item_id": 164282 + }, + { + "alias": "Superior Mass Relocating Robot", + "item_id": 155591 + }, + { + "alias": "Mass Relocating Robot (Shape Soft Armor)", + "item_id": 162220 + }, + { + "alias": "Metallic Mantis Body Armor", + "item_id": 164349 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients\n------------------------------\n\nA Deformed Mantidae...\n\n#L \"Head\" \"164272\"\n\nor\n#L \"Abdomen\" \"164274\"\n\nor\n#L \"Femur\" \"164276\"\n\nor\n#L \"Tarsus\" \"164278\"\n\nor\n#L \"Tibia\" \"164280\"\n\nor\n#L \"Wing\" \"164282\"\n\n\n#L \"Programmed Photon Particle Emitter (Shape Soft Armor)\" \"162222\"\n\n\n#L \"Mass Relocating Robot\" \"155591\"\n\n\n------------------------------\nRecipe\n------------------------------\n\nProgrammed Photon Particle Emitter (Shape Soft Armor)\n+\nMass Relocating Robot\n=\n\n#L \"Mass Relocating Robot (Shape Soft Armor)\" \"162220\"\nSkills: | 2.5EE,2.5ME,2.5NP |\n\n------------------------------\n\nMass Relocating Robot (Shape Soft Armor)\n+\nDeformed Mantidae\n=\n\nMetallic Mantis Armor\n( ie : #L \"Metallic Mantis Body Armor\" \"164349\"\nSkills: | ME,INT |\n\n------------------------------\nComments\n------------------------------\n\nExcellent armor but up to QL130 approximatively." +} diff --git a/modules/standard/recipe/recipes/700.json b/modules/standard/recipe/recipes/700.json new file mode 100644 index 0000000..bc3fdbc --- /dev/null +++ b/modules/standard/recipe/recipes/700.json @@ -0,0 +1,25 @@ +{ + "name": "Galactic Jewel", + "author": "", + "items": [ + { + "alias": "Frozen Crystal Compound", + "item_id": 269800 + }, + { + "alias": "Permafrost Melting Tool", + "item_id": 269805 + }, + { + "alias": "Galactic Jewel of the Jagged Landscape", + "item_id": 168717 + }, + { + "alias": "Robe of City Lights", + "item_id": 269999 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients \n------------------------------\n\n Frozen Crystal Compound drops from Cascading Molokh, Novictum Blight and Reprogrammed Mezzorash in Alappaa.\nWhile all the Compounds looks almost the same there are really several types that drop. Easiest way to check which one dropped is to open the tradeskill window and check the result.\n\n#L \"Frozen Crystal Compound\" \"269800\"\n\n\n#L \"Permafrost Melting Tool\" \"269805\"\n\n\n------------------------------\nRecipe \n------------------------------\n\nNote: Depending on what Compound you found, you will end up with a different Jewel (or Robe)\n\nFrozen Crystal Compound\n+\nPermafrost Melting Tool\n=\n\n#L \"Galactic Jewel of the Jagged Landscape\" \"168717\"\nSkills: | 1750 CH |\nor\nFrozen Crystal Compound\n+\nPermafrost Melting Tool\n=\n\n#L \"Robe of City Lights\" \"269999\"\nSkills: | 1500 EE |" +} diff --git a/modules/standard/recipe/recipes/701.json b/modules/standard/recipe/recipes/701.json new file mode 100644 index 0000000..e5ef354 --- /dev/null +++ b/modules/standard/recipe/recipes/701.json @@ -0,0 +1,25 @@ +{ + "name": "The Dantian Belt of Life", + "author": "", + "items": [ + { + "alias": "Pit Demon Heart", + "item_id": 245171 + }, + { + "alias": "Belt Component Platform 4IX", + "item_id": 36784 + }, + { + "alias": "Belt Component Platform 5000", + "item_id": 36787 + }, + { + "alias": "The Dantian Belt of Life", + "item_id": 245429 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients \n------------------------------\n\n This little belt can be built with help of an item found inside The Crypt in Broken Shores.\nThis belt is nice, because there aren't many belts that add to basic abilities\n\n#L \"Pit Demon Heart\" \"245171\"\n\n\n#L \"Belt Component Platform 5000\" \"36784\"\n\nor\n#L \"Belt Component Platform 6K-X\" \"36787\"\n\n\n------------------------------\nRecipe \n------------------------------\n\nPit Demon Heart\n+\nBelt Component Platform 5000\n=\n\n#L \"The Dantian Belt of Life\" \"245429\"\nSkills: | 450 CL |" +} diff --git a/modules/standard/recipe/recipes/702.json b/modules/standard/recipe/recipes/702.json new file mode 100644 index 0000000..2c9121d --- /dev/null +++ b/modules/standard/recipe/recipes/702.json @@ -0,0 +1,69 @@ +{ + "name": "Steps of Madness upgrades", + "author": "", + "items": [ + { + "alias": "Nightmare Tidal Ether", + "item_id": 274879 + }, + { + "alias": "Nightmare Arachnid Ether", + "item_id": 274958 + }, + { + "alias": "Nightmare Spacial Ether", + "item_id": 274959 + }, + { + "alias": "Nightmare Burning Ether", + "item_id": 274960 + }, + { + "alias": "Nightmare Darkness Ether", + "item_id": 274961 + }, + { + "alias": "Fractured Sanity", + "item_id": 151896 + }, + { + "alias": "Neleb's Notum Battlerod", + "item_id": 152026 + }, + { + "alias": "Neleb's Nano-circuit Robe", + "item_id": 151895 + }, + { + "alias": "Combined Nightmare Ether", + "item_id": 274967 + }, + { + "alias": "Combined Nightmare Ether", + "item_id": 274968 + }, + { + "alias": "Combined Nightmare Ether", + "item_id": 274969 + }, + { + "alias": "Complete Nightmare Ether", + "item_id": 274970 + }, + { + "alias": "Fractured Nightmare", + "item_id": 274957 + }, + { + "alias": "Neleb's Nightmare Battlerod", + "item_id": 274955 + }, + { + "alias": "Neleb's Nano-master Robe", + "item_id": 274956 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients \n------------------------------\n\n Mobs in Steps of Madness drop a lot of Nightmare XXX Ethers. Those are used for upgrading 3 items that Neleb drops:\nnamely Fractured Sanity, Neleb's Notum Battlerod and Neleb's Nano-circuit Robe.\n\n#L \"Nightmare Tidal Ether\" \"274879\"\n\n\n#L \"Nightmare Arachnid Ether\" \"274958\"\n\n\n#L \"Nightmare Spacial Ether\" \"274959\"\n\n\n#L \"Nightmare Burning Ether\" \"274960\"\n\n\n#L \"Nightmare Tidal Ether\" \"274961\"\n\n\n#L \"Fractured Sanity\" \"151896\"\n\n\n#L \"Neleb's Notum Battlerod\" \"152026\"\n\n\n#L \"Neleb's Nano-circuit Robe\" \"151895\"\n\n\n------------------------------\nRecipe \n------------------------------\n\nNightmare Tidal Ether\n+\nNightmare Arachnid Ether\n=\n\n#L \"Combined Nightmare Ether\" \"274967\"\n\nCombined Nightmare Ether\n+\nNightmare Spacial Ether\n=\n\n#L \"Combined Nightmare Ether\" \"274968\"\n\nCombined Nightmare Ether\n+\nNightmare Burning Ether\n=\n\n#L \"Combined Nightmare Ether\" \"274969\"\n\nCombined Nightmare Ether\n+\nNightmare Darkness Ether\n=\n\n#L \"Complete Nightmare Ether\" \"274970\"\n\nNow combine Neleb's items with the ethers:\n\nFractured Sanity\n+\nComplete Nightmare Ether\n=\n\n#L \"Fractured Nightmare\" \"274957\"\n\nNeleb's Notum Battlerod\n+\nComplete Nightmare Ether\n=\n\n#L \"Neleb's Nightmare Battlerod\" \"274955\"\n\nNeleb's Nano-circuit Robe\n+\nComplete Nightmare Ether\n=\n\n#L \"Neleb's Nano-master Robe\" \"274956\"" +} diff --git a/modules/standard/recipe/recipes/703.json b/modules/standard/recipe/recipes/703.json new file mode 100644 index 0000000..8812e9c --- /dev/null +++ b/modules/standard/recipe/recipes/703.json @@ -0,0 +1,77 @@ +{ + "name": "Sector 10 Signal Relay", + "author": "", + "items": [ + { + "alias": "Broken and Powerless Signal Amplifier", + "item_id": 284280 + }, + { + "alias": "Kyr'ozch Fuel Gland", + "item_id": 284284 + }, + { + "alias": "Inert Kyr'ozch Teleportation Relay", + "item_id": 284285 + }, + { + "alias": "Alpha Compiler Unit", + "item_id": 284298 + }, + { + "alias": "Alpha Crystal - Left Fragment", + "item_id": 284295 + }, + { + "alias": "Alpha Crystal - Right Fragment", + "item_id": 284296 + }, + { + "alias": "Broken and Powerless Signal Amplifier", + "item_id": 284281 + }, + { + "alias": "Broken and Powerless Signal Amplifier", + "item_id": 284282 + }, + { + "alias": "Powerless Kyr'ozch Signal Amplifier", + "item_id": 284283 + }, + { + "alias": "Inert Kyr'ozch Teleportation Relay", + "item_id": 284286 + }, + { + "alias": "Inert Kyr'ozch Teleportation Relay", + "item_id": 284287 + }, + { + "alias": "Inert Kyr'ozch Teleportation Relay", + "item_id": 284288 + }, + { + "alias": "Powered Kyr'ozch Teleportation Relay", + "item_id": 284289 + }, + { + "alias": "Untuned Kyr'ozch Signal Relay", + "item_id": 284290 + }, + { + "alias": "Alpha Tuning Crystal", + "item_id": 284297 + }, + { + "alias": "Alpha Tuning Unit - Inactive", + "item_id": 284433 + }, + { + "alias": "Alpha Signal Relay", + "item_id": 284291 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients \n------------------------------\n\n Within Sector10, you need to collect items to spawn the bosses of the zone.\nThis is what you need to gather: \n\n#L \"Broken and Powerless Signal Amplifier\" \"284280\" x 4\n\n\n#L \"Kyr'ozch Fuel Gland\" \"284284\" x 4\n\n\n#L \"Inert Kyr'ozch Teleportation Relay\" \"284285\"\n\n\n#L \"XXX Compiler Unit\" \"284298\"\n\nNote: There are 4 different Compilers to be found (Alpha, Kappa, Rho and Sigma) \nand you will only ever need 1 of each. \n\n#L \"XXX Crystal - Left Fragment\" \"284295\"\n\nNote: There are 4 different Left Fragments,\nyou will need 1 for each boss (Alpha, Kappa, Rho and Sigma)\n\n#L \"XXX Crystal - Right Fragment\" \"284296\"\n\n#Note: There are 4 different Right Fragments,\nyou will need 1 for each boss (Alpha, Kappa, Rho and Sigma)\n\n\n------------------------------\nRecipe \n------------------------------\n\nBroken and Powerless Signal Amplifier\n+\nBroken and Powerless Signal Amplifier\n=\n\n#L \"Broken and Powerless Signal Amplifier\" \"284281\"\nSkill: | 625 ME | \n\nBroken and Powerless Signal Amplifier\n+\nBroken and Powerless Signal Amplifier\n=\n\n#L \"Broken and Powerless Signal Amplifier\" \"284282\"\nSkill: | 625 ME | \n\nBroken and Powerless Signal Amplifier\n+\nBroken and Powerless Signal Amplifier\n=\n\n#L \"Powerless Signal Amplifier\" \"284283\"\nSkill: | 625 ME | \n\n------------------------------\n\nKyr'ozch Fuel Gland\n+\nInert Kyr'ozch Teleportation Relay\n=\n\n#L \"Inert Kyr'ozch Teleportation Relay\" \"284286\"\nSkill: | 625 EE | \n\nKyr'ozch Fuel Gland\n+\nInert Kyr'ozch Teleportation Relay\n=\n\n#L \"Inert Kyr'ozch Teleportation Relay\" \"284287\"\nSkill: | 625 EE | \n\nKyr'ozch Fuel Gland\n+\nInert Kyr'ozch Teleportation Relay\n=\n\n#L \"Inert Kyr'ozch Teleportation Relay\" \"284288\"\nSkill: | 625 EE | \n\nKyr'ozch Fuel Gland\n+\nInert Kyr'ozch Teleportation Relay\n=\n\n#L \"Powered Kyr'ozch Teleportation Relay\" \"284289\"\nSkill: | 625 EE | \n\n------------------------------\n\nPowerless Signal Amplifier\n+\nPowered Kyr'ozch Teleportation Relay\n=\n\n#L \"Untuned Kyr'ozch Teleportation Relay\" \"284290\"\nSkill: | 625 EE | \n\n------------------------------\n\nXXX Crystal - Left Fragment\n+\nXXX Crystal - Right Fragment\n=\n\n#L \"XXX Tuning Crystal\" \"284297\"\nSkill: | 625 NP | \n\nXXX Tuning Crystal\n+\nXXX Compiler Unit\n=\n\n#L \"XXX Tuning Unit - Inactive\" \"284433\"\nSkill: | 687 NP | \nNote: right clicking activates the Tuning Unit but also makes it NODROP \n\nUntuned Kyr'ozch Teleportation Relay\n+\nXXX Tuning Unit\n=\n\n#L \"XXX Signal Relay\" \"284291\"" +} diff --git a/modules/standard/recipe/recipes/704.json b/modules/standard/recipe/recipes/704.json new file mode 100644 index 0000000..ea75704 --- /dev/null +++ b/modules/standard/recipe/recipes/704.json @@ -0,0 +1,21 @@ +{ + "name": "Repairing Nano Crystals", + "author": "", + "items": [ + { + "alias": "Nano Programming Interface", + "item_id": 161699 + }, + { + "alias": "Dirty Money Shadow Crystal (Supervisor-Grade Secretary-Droid)", + "item_id": 221987 + }, + { + "alias": "Nano Crystal (Supervisor-Grade Secretary-Droid)", + "item_id": 46421 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients \n------------------------------\n\n There are several different types of damaged nano crystals, \nbut they all have 1 thing in common: they have a chance of not uploading when you use them.\nMost however, can be repaired:\n\n#L \"Nano Programming Interface\" \"161699\"\n\n\n#L \"Dirty Money Shadow Crystal (Supervisor-Grade Secretary-Droid)\" \"221987\"\n\n\n------------------------------\nRecipe \n------------------------------\n\nNano Programming Interface\n+\nDirty Money Shadow Crystal (Supervisor-Grade Secretary-Droid)\n=\n\n#L \"Nano Crystal (Supervisor-Grade Secretary-Droid)\" \"46421\"\nSkills: | 7 x QL NP |\nNote: Weird looking XXX can be repaired, however since they actually upload Improved versions of nano programs, so even with chance of not uplading, they are better and more valuable in damaged form.\n- adventurer SL map crystals like Badly Corroded Crystal (A Clear Sense of Scheol) can't be repaired." +} diff --git a/modules/standard/recipe/recipes/705.json b/modules/standard/recipe/recipes/705.json new file mode 100644 index 0000000..03048dc --- /dev/null +++ b/modules/standard/recipe/recipes/705.json @@ -0,0 +1,8 @@ +{ + "name": "Alien Armor", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "
To show the Recipe for an Alien Armor piece do:\naiarmor 'type'\n\nIf you want to specify the QL do:\naiarmor 'type' 'ql of the armor'\n\n\nAllowed Types:\ncc - Combined Commando's\ncm - Combined Mercenary's\nco - Combined Officer's\ncp - Combined Paramedic's\ncs - Combined Scout's\nss - Combined Sharpshooter's\nstrong - Strong Armor\nsupple - Supple Armor\nenduring - Enduring Armor\nobservant - Observant Armor\narithmetic - Arithmetic Armor\nspiritual - Spiritual Armor\n\nExample: #L \"!aiarmor cc 150\" \"/tell aiarmor cc 150\"" +} diff --git a/modules/standard/recipe/recipes/706.json b/modules/standard/recipe/recipes/706.json new file mode 100644 index 0000000..9334404 --- /dev/null +++ b/modules/standard/recipe/recipes/706.json @@ -0,0 +1,37 @@ +{ + "name": "Viral Component Belt", + "author": "", + "items": [ + { + "alias": "Viral Belt Control Component", + "item_id": 288130 + }, + { + "alias": "Basic Belt", + "item_id": 288131 + }, + { + "alias": "Viral Belt NCU Slots", + "item_id": 288133 + }, + { + "alias": "Viral Belt Nanobot Power Unit", + "item_id": 288135 + }, + { + "alias": "Belt with Control Component", + "item_id": 288132 + }, + { + "alias": "Viral Belt", + "item_id": 288134 + }, + { + "alias": "Viral Belt Component Platform", + "item_id": 288084 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients \n------------------------------\n\n#L \"Viral Belt Control Component\" \"288130\"\n\n\n#L \"Basic Belt\" \"288131\"\n\n\n#L \"Viral Belt NCU Slots\" \"288133\"\n\n\n#L \"Viral Belt Nanobot Power Unit\" \"288135\"\n\n\n------------------------------\nRecipe \n------------------------------\n\nViral Belt Control Component\n+\nBasic Belt\n=\n\n#L \"Belt with Control Component\" \"288132\"\n\nViral Belt NCU Slots\n+\nBelt with Control Component\n=\n\n#L \"Viral Belt\" \"288134\"\n\nViral Belt Nanobot Power Unit\n+\nViral Belt\n=\n\n#L \"Viral Belt Component Platform\" \"288084\"" +} diff --git a/modules/standard/recipe/recipes/707.json b/modules/standard/recipe/recipes/707.json new file mode 100644 index 0000000..90f75b1 --- /dev/null +++ b/modules/standard/recipe/recipes/707.json @@ -0,0 +1,21 @@ +{ + "name": "Viral Communications Larvae", + "author": "", + "items": [ + { + "alias": "Screwdriver", + "item_id": 150922 + }, + { + "alias": "Kyr'Ozch Storage Box", + "item_id": 288137 + }, + { + "alias": "Viral Communications Larvae", + "item_id": 288281 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients \n------------------------------\n\n#L \"Screwdriver\" \"150922\"\n\n\n#L \"Kyr'Ozch Storage Box\" \"288137\"\n\n\n------------------------------\nRecipe \n------------------------------\n\nScrewdriver\n+\nKyr'Ozch Storage Box\n=\n\n#L \"Viral Communications Larvae\" \"288281\"" +} diff --git a/modules/standard/recipe/recipes/708.json b/modules/standard/recipe/recipes/708.json new file mode 100644 index 0000000..cc9d32f --- /dev/null +++ b/modules/standard/recipe/recipes/708.json @@ -0,0 +1,29 @@ +{ + "name": "Power Core", + "author": "", + "items": [ + { + "alias": "Power Core Stabilizer", + "item_id": 287976 + }, + { + "alias": "Power Core Mainboard", + "item_id": 287975 + }, + { + "alias": "Inactive Power Core", + "item_id": 287974 + }, + { + "alias": "Power Core Base Unit", + "item_id": 287977 + }, + { + "alias": "Power Core", + "item_id": 287978 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients \n------------------------------\n\n#L \"Power Core Stabilizer\" \"287976\"\n\n\n#L \"Power Core Mainboard\" \"287975\"\n\n\n#L \"Inactive Power Core\" \"287974\"\n\n\n------------------------------\nRecipe \n------------------------------\n\nPower Core Stabilizer\n+\nPower Core Mainboard\n=\n\n#L \"Power Core Base Unit\" \"287977\"\n\nInactive Power Core\n+\nPower Core Base Unit\n=\n\n#L \"Power Core\" \"287978\"" +} diff --git a/modules/standard/recipe/recipes/709.json b/modules/standard/recipe/recipes/709.json new file mode 100644 index 0000000..a2c2604 --- /dev/null +++ b/modules/standard/recipe/recipes/709.json @@ -0,0 +1,21 @@ +{ + "name": "Kyr'Ozch Nano Protection ring", + "author": "", + "items": [ + { + "alias": "Screwdriver", + "item_id": 150922 + }, + { + "alias": "Kyr'Ozch Storage Container", + "item_id": 288138 + }, + { + "alias": "Kyr'Ozch Nano Protection Ring", + "item_id": 288204 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients \n------------------------------\n\n#L \"Screwdriver\" \"150922\"\n\n\n#L \"Kyr'Ozch Storage Container\" \"288138\"\n\n\n------------------------------\nRecipe \n------------------------------\n\nScrewdriver\n+\nKyr'Ozch Storage Container\n=\n\n#L \"Kyr'Ozch Nano Protection Ring\" \"288204\"" +} diff --git a/modules/standard/recipe/recipes/710.json b/modules/standard/recipe/recipes/710.json new file mode 100644 index 0000000..965fbe8 --- /dev/null +++ b/modules/standard/recipe/recipes/710.json @@ -0,0 +1,45 @@ +{ + "name": "Sector 7 Tradeskills", + "author": "", + "items": [ + { + "alias": "Power Core Stabilizer", + "item_id": 287976 + }, + { + "alias": "Power Core Mainboard", + "item_id": 287975 + }, + { + "alias": "Inactive Power Core", + "item_id": 287974 + }, + { + "alias": "Kyr'Ozch Storage Box", + "item_id": 288137 + }, + { + "alias": "Kyr'Ozch Storage Container", + "item_id": 288138 + }, + { + "alias": "Viral Belt Control Component", + "item_id": 288130 + }, + { + "alias": "Basic Belt", + "item_id": 288131 + }, + { + "alias": "Viral Belt NCU Slots", + "item_id": 288133 + }, + { + "alias": "Viral Belt Nanobot Power Unit", + "item_id": 288135 + } + ], + "steps": [], + "details": [], + "raw": " The parts listed drop in Sector 7 and can be used for various tradeskill processes.\nClick on the recipe name to go to the corresponding recipe.\n\n------------------------------\n#L \"Power Core\" \"/tell recipe 708\"\n------------------------------\n\n\n#L \"Power Core Stabilizer\" \"287976\"\n\n\n#L \"Power Core Mainboard\" \"287975\"\n\n\n#L \"Inactive Power Core\" \"287974\"\n\n------------------------------\n#L \"Viral Communications Larvae\" \"/tell recipe 707\"\n------------------------------\n\n\n#L \"Kyr'Ozch Storage Box\" \"288137\"\n\n------------------------------\n#L \"Kyr'Ozch Nano Protection Ring\" \"/tell recipe 709\"\n------------------------------\n\n\n#L \"Kyr'Ozch Storage Container\" \"288138\"\n\n------------------------------\n#L \"Viral Component Belt\" \"/tell recipe 706\"\n------------------------------\n\n\n#L \"Viral Belt Control Component\" \"288130\"\n\n\n#L \"Basic Belt\" \"288131\"\n\n\n#L \"Viral Belt NCU Slots\" \"288133\"\n\n\n#L \"Viral Belt Nanobot Power Unit\" \"288135\"" +} diff --git a/modules/standard/recipe/recipes/711.json b/modules/standard/recipe/recipes/711.json new file mode 100644 index 0000000..6ef9b0a --- /dev/null +++ b/modules/standard/recipe/recipes/711.json @@ -0,0 +1,37 @@ +{ + "name": "Alien Utilities", + "author": "", + "items": [ + { + "alias": "Alien Activation Crystal", + "item_id": 268478 + }, + { + "alias": "Inactive Alien Battery", + "item_id": 268496 + }, + { + "alias": "Inactive Alien Reflex Modifier", + "item_id": 268499 + }, + { + "alias": "Inactive Alien Beacon", + "item_id": 268494 + }, + { + "alias": "Alien Battery", + "item_id": 268497 + }, + { + "alias": "Alien Reflex Modifier", + "item_id": 268498 + }, + { + "alias": "Alien Beacon", + "item_id": 268495 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients \n------------------------------\n\n All parts required for this process can be found Sector 10.\n\n#L \"Alien Activation Crystal\" \"268478\"\n\n\n#L \"Inactive Alien Battery\" \"268496\"\n\n\n#L \"Inactive Alien Reflex Modifier\" \"268499\"\n\n\n#L \"Inactive Alien Beacon\" \"268494\"\n\n\n------------------------------\nRecipe \n------------------------------\n\nAlien Activation Crystal\n+\nInactive Alien Battery\n=\n\n#L \"Alien Battery\" \"268497\"\n\nAlien Activation Crystal\n+\nInactive Alien Reflex Modifier\n=\n\n#L \"Alien Reflex Modifier\" \"268498\"\n\nAlien Activation Crystal\n+\nInactive Alien Beacon\n=\n\n#L \"Alien Beacon\" \"268495\"" +} diff --git a/modules/standard/recipe/recipes/712.json b/modules/standard/recipe/recipes/712.json new file mode 100644 index 0000000..9cb1791 --- /dev/null +++ b/modules/standard/recipe/recipes/712.json @@ -0,0 +1,53 @@ +{ + "name": "Alien Tank Armor", + "author": "", + "items": [ + { + "alias": "Inactive Alien Tank Armor", + "item_id": 268507 + }, + { + "alias": "Alien Activation Crystal", + "item_id": 268478 + }, + { + "alias": "Alien Armor Materials", + "item_id": 268508 + }, + { + "alias": "Inactive Alien Material Conversion kit", + "item_id": 268510 + }, + { + "alias": "Alien Material Conversion kit", + "item_id": 268509 + }, + { + "alias": "Processed Alien Armor Materials", + "item_id": 268511 + }, + { + "alias": "Alien Tank Armor", + "item_id": 268503 + }, + { + "alias": "Improved Alien Tank Armor", + "item_id": 268504 + }, + { + "alias": "Perfected Alien Tank Armor", + "item_id": 268505 + }, + { + "alias": "Specialised Alien Armor Materials", + "item_id": 268512 + }, + { + "alias": "Nanomage Enhanced Alien Tank Armor", + "item_id": 268506 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients\n------------------------------\n\n#L \"Inactive Alien Tank Armor\" \"268507\"\n\n\n#L \"Alien Activation Crystal\" \"268478\"\n\n\n#L \"Alien Armor Materials\" \"268508\" x2 or x3\n\n\n#L \"Inactive Alien Material Conversion Kit\" \"268510\" \n\n\n------------------------------\nRecipe\n------------------------------\n\nAlien Activation Crystal\n+\nInactive Alien Material Conversion kit\n=\n\n#L \"Alien Material Conversion Kit\" \"268509\" \nSkills: | 450ME |\n\nAlien Material Conversion Kit\n+\nAlien Armor Materials\n=\n\n#L \"Processed Alien Armor Materials\" \"268511\"\nSkills: | 450ME |\n\n------------------------------\n\nAlien Activation Crystal\n+\nInactive Alien Tank Armor\n=\n\n#L \"Alien Tank Armor\" \"268503\"\nSkills: | 450ME |\n\n------------------------------\n\nWarning! -- The next step makes this item NODROP and UNIQUE! \n\nWarning! -- Nanomages DO NOT do the next 2 steps!! \n\n------------------------------\n\nProcessed Alien Armor Materials\n+\nAlien Tank Armor\n=\n\n#L \"Improved Alien Tank Armor\" \"268504\"\nSkills: | 450ME |\n\n------------------------------\n\nProcessed Alien Armor Materials\n+\nImproved Alien Tank Armor\n=\n\n#L \"Perfected Alien Tank Armor\" \"268505\"\nSkills: | 450ME |\n\n------------------------------\n\n Warning! -- The next 2 steps are for NANOMAGES ONLY!! \n\n------------------------------\n\nAlien Material Conversion Kit\n+\nProcessed Alien Armor Materials\n=\n\n#L \"Specialised Alien Armor Materials\" \"268512\"\nSkills: | 450ME |\n\n------------------------------\n\nSpecialised Alien Armor Materials\n+\nAlien Tank Armor\n=\n\n#L \"Nanomage Enhanced Alien Tank Armor\" \"268506\"\nSkills: | 450ME |\n\n------------------------------\nComments\n------------------------------\n\nJust be extra careful you perform the right steps for your breed. Nanomages have different steps to take than other breeds." +} diff --git a/modules/standard/recipe/recipes/713.json b/modules/standard/recipe/recipes/713.json new file mode 100644 index 0000000..ff32401 --- /dev/null +++ b/modules/standard/recipe/recipes/713.json @@ -0,0 +1,65 @@ +{ + "name": "Alien Augmentation Device", + "author": "", + "items": [ + { + "alias": "Inactive Empty Alien Augmentation Device", + "item_id": 268493 + }, + { + "alias": "Inactive Alien Translation Device", + "item_id": 268477 + }, + { + "alias": "Alien Activation Crystal", + "item_id": 268478 + }, + { + "alias": "Alien Data Storage Crystal - Combat", + "item_id": 268479 + }, + { + "alias": "Alien Data Storage Crystal - Nano Technology", + "item_id": 268480 + }, + { + "alias": "Alien Data Storage Crystal - Defense", + "item_id": 268481 + }, + { + "alias": "Alien Data Storage Crystal - Technical", + "item_id": 268482 + }, + { + "alias": "Alien Data Storage Crystal - Medical", + "item_id": 268483 + }, + { + "alias": "Alien Data Storage Crystal - Insight", + "item_id": 268484 + }, + { + "alias": "Alien Data Storage Crystal - Protection", + "item_id": 268485 + }, + { + "alias": "Alien Translation Device", + "item_id": 268476 + }, + { + "alias": "Empty Alien Augmentation Device", + "item_id": 268475 + }, + { + "alias": "Translated Alien Data Storage Crystal - Combat", + "item_id": 268486 + }, + { + "alias": "Alien Augmentation Device - Combat", + "item_id": 268467 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients \n------------------------------\n\n All parts required for this process can be found in Sector 10\n\n\n#L \"Inactive Empty Alien Augmentation Device\" \"268493\"\n\n\n#L \"Inactive Alien Translation Device\" \"268477\"\n\n\n#L \"Alien Activation Crystal\" \"268478\"\n\n\n#L \"Alien Data Storage Crystal - Combat\" \"268479\"\nor\n#L \"Alien Data Storage Crystal - Nano Technology\" \"268480\"\nor\n#L \"Alien Data Storage Crystal - Defense\" \"268481\"\nor\n#L \"Alien Data Storage Crystal - Technical\" \"268482\"\nor\n#L \"Alien Data Storage Crystal - Medical\" \"268483\"\nor\n#L \"Alien Data Storage Crystal - Insight\" \"268484\"\nor\n#L \"Alien Data Storage Crystal - Protection\" \"268485\"\n\n------------------------------\nRecipe \n------------------------------\n\nAlien Activation Crystal\n+\nInactive Alien Translation Device\n=\n\n#L \"Alien Translation Device\" \"268476\"\nSkills: | 450 ME |\n\nAlien Activation Crystal\n+\nInactive Empty Alien Augmentation Device\n=\n\n#L \"Empty Alien Augmentation Device\" \"268475\"\nSkills: | 450 ME |\n\n#L \"Alien Data Storage Crystal - Combat\" \"268479\"\n+\nAlien Translation Device\n=\n\n#L \"Translated Alien Data Storage Crystal - Combat\" \"268486\"\nSkills: | 450 ME |\n\nTranslated Alien Data Storage Crystal - Combat\n+\nEmpty Alien Augmentation Device\n=\n\n#L \"Alien Augmentation Device - Combat\" \"268467\"\nSkills: | 450 ME & EE |" +} diff --git a/modules/standard/recipe/recipes/714.json b/modules/standard/recipe/recipes/714.json new file mode 100644 index 0000000..d135db6 --- /dev/null +++ b/modules/standard/recipe/recipes/714.json @@ -0,0 +1,73 @@ +{ + "name": "Sector 10 Tradeskills", + "author": "", + "items": [ + { + "alias": "Alien Armor Materials", + "item_id": 268508 + }, + { + "alias": "Alien Activation Crystal", + "item_id": 268478 + }, + { + "alias": "Inactive Alien Material Conversion kit", + "item_id": 268510 + }, + { + "alias": "Inactive Alien Tank Armor", + "item_id": 268507 + }, + { + "alias": "Inactive Alien Battery", + "item_id": 268496 + }, + { + "alias": "Inactive Alien Reflex Modifier", + "item_id": 268499 + }, + { + "alias": "Inactive Alien Beacon", + "item_id": 268494 + }, + { + "alias": "Inactive Alien Translation Device", + "item_id": 268477 + }, + { + "alias": "Inactive Empty Alien Augmentation Device", + "item_id": 268493 + }, + { + "alias": "Alien Data Storage Crystal - Combat", + "item_id": 268479 + }, + { + "alias": "Alien Data Storage Crystal - Nano Technology", + "item_id": 268480 + }, + { + "alias": "Alien Data Storage Crystal - Defense", + "item_id": 268481 + }, + { + "alias": "Alien Data Storage Crystal - Technical", + "item_id": 268482 + }, + { + "alias": "Alien Data Storage Crystal - Medical", + "item_id": 268483 + }, + { + "alias": "Alien Data Storage Crystal - Insight", + "item_id": 268484 + }, + { + "alias": "Alien Data Storage Crystal - Protection", + "item_id": 268485 + } + ], + "steps": [], + "details": [], + "raw": " The parts listed drop in Sector 10 and can be used for various tradeskill processes.\nClick on the recipe name to go to the corresponding recipe.\n\n------------------------------\n#L \"Alien Tank Armor\" \"/tell recipe 712\"\n------------------------------\n\n\n#L \"Alien Armor Materials\" \"268508\" \n\n\n#L \"Alien Activation Crystal\" \"268478\"\n\n\n#L \"Inactive Alien Material Conversion kit\" \"268510\" \n\n\n#L \"Inactive Alien Tank Armor\" \"268507\"\n\n------------------------------\n#L \"Alien Utilities\" \"/tell recipe 711\"\n------------------------------\n\n\n#L \"Alien Activation Crystal\" \"268478\"\n\n\n#L \"Inactive Alien Battery\" \"268496\"\n\n\n#L \"Inactive Alien Reflex Modifier\" \"268499\"\n\n\n#L \"Inactive Alien Beacon\" \"268494\"\n\n------------------------------\n#L \"Alien Augmentation Device\" \"/tell recipe 713\"\n------------------------------\n\n\n#L \"Alien Activation Crystal\" \"268478\"\n\n\n#L \"Inactive Alien Translation Device\" \"268477\"\n\n\n#L \"Inactive Empty Alien Augmentation Device\" \"268493\"\n\n\n#L \"Alien Data Storage Crystal - Combat\" \"268479\"\n#L \"Alien Data Storage Crystal - Nano Technology\" \"268480\"\n#L \"Alien Data Storage Crystal - Defense\" \"268481\"\n#L \"Alien Data Storage Crystal - Technical\" \"268482\"\n#L \"Alien Data Storage Crystal - Medical\" \"268483\"\n#L \"Alien Data Storage Crystal - Insight\" \"268484\"\n#L \"Alien Data Storage Crystal - Protection\" \"268485\"" +} diff --git a/modules/standard/recipe/recipes/715.json b/modules/standard/recipe/recipes/715.json new file mode 100644 index 0000000..c6ab5f1 --- /dev/null +++ b/modules/standard/recipe/recipes/715.json @@ -0,0 +1,21 @@ +{ + "name": "Blades of Boltar", + "author": "", + "items": [ + { + "alias": "Energy Redistribution Unit", + "item_id": 257961 + }, + { + "alias": "Kyr'Ozch Energy Rapier - Type 992", + "item_id": 254722 + }, + { + "alias": "Blades of Boltar", + "item_id": 257147 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients \n------------------------------\n\n The Energy Redistribution Unit drops in Alien Playfields and can be used for various tradeskill processes.\n\n#L \"Energy Redistribution Unit\" \"257961\"\n\n\n#L \"Kyr'Ozch Energy Rapier - Type 992\" \"254721\"\n\n\n------------------------------\nRecipe \n------------------------------\n\nEnergy Redistribution Unit\n+\nKyr'Ozch Energy Rapier - Type 992\n=\n\n#L \"Blades of Boltar\" \"257147\"\nNote: Rapier needs to be QL250+" +} diff --git a/modules/standard/recipe/recipes/717.json b/modules/standard/recipe/recipes/717.json new file mode 100644 index 0000000..99482ff --- /dev/null +++ b/modules/standard/recipe/recipes/717.json @@ -0,0 +1,21 @@ +{ + "name": "Vektor ND Grand Wyrm", + "author": "", + "items": [ + { + "alias": "Energy Redistribution Unit", + "item_id": 257961 + }, + { + "alias": "Vektor ND DRAGON Shotgun", + "item_id": 124262 + }, + { + "alias": "Vektor ND Grand Wyrm", + "item_id": 257123 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients \n------------------------------\n\n The Energy Redistribution Unit drops in Alien Playfields and can be used for various tradeskill processes.\n\n#L \"Energy Redistribution Unit\" \"257961\"\n\n\n#L \"Vektor ND DRAGON Shotgun\" \"124262\"\n\n\n------------------------------\nRecipe \n------------------------------\n\nEnergy Redistribution Unit\n+\nVektor ND DRAGON Shotgun\n=\n\n#L \"Vektor ND Grand Wyrm\" \"257123\"" +} diff --git a/modules/standard/recipe/recipes/718.json b/modules/standard/recipe/recipes/718.json new file mode 100644 index 0000000..1050685 --- /dev/null +++ b/modules/standard/recipe/recipes/718.json @@ -0,0 +1,21 @@ +{ + "name": "Explosif's Polychromatic Pillows", + "author": "", + "items": [ + { + "alias": "Visible Light Remodulation Device", + "item_id": 257964 + }, + { + "alias": "Concrete Cushion", + "item_id": 125457 + }, + { + "alias": "Explosif's Polychromatic Pillows", + "item_id": 258345 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients \n------------------------------\n\n The Visible Light Remodulation Device drops in Alien Playfields and can be used for various tradeskill processes.\n\n#L \"Visible Light Remodulation Device\" \"257964\"\n\n\n#L \"Concrete Cushion\" \"125456\"\n\n\n------------------------------\nRecipe \n------------------------------\n\nVisible Light Remodulation Device\n+\nConcrete Cushion\n=\n\n#L \"Explosif's Polychromatic Pillows\" \"258345\"\nNote: right clicking the pillow will change the modifications on it" +} diff --git a/modules/standard/recipe/recipes/72.json b/modules/standard/recipe/recipes/72.json new file mode 100644 index 0000000..29792c3 --- /dev/null +++ b/modules/standard/recipe/recipes/72.json @@ -0,0 +1,41 @@ +{ + "name": "Modernized ICC Cloaks", + "author": "", + "items": [ + { + "alias": "Notum Fragment", + "item_id": 136625 + }, + { + "alias": "Notum Chip", + "item_id": 136623 + }, + { + "alias": "Nano Programming Interface", + "item_id": 161699 + }, + { + "alias": "Inactive OT Metamorphing Liquid Nanobots", + "item_id": 164952 + }, + { + "alias": "Worn ICC Bodyguard Cloak", + "item_id": 158750 + }, + { + "alias": "Activated OT Metamorphing Liquid Nanobots", + "item_id": 164954 + }, + { + "alias": "Stabilized OT Metamorphing Liquid Nanobots", + "item_id": 164956 + }, + { + "alias": "Modernized ICC Bodyguard Cloak", + "item_id": 164972 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients\n------------------------------\n\nA piece of Notum\n#L \"Notum Fragment\" \"136624\"\n\nor\n#L \"Notum Chip\" \"136622\"\n\n\n#L \"Nano Programming Interface\" \"161699\"\n\n\n#L \"Inactive OT Metamorphing Liquid Nanobots\" \"164952\"\n\n\nAn ICC Cloak\n( ie: #L \"Worn ICC Bodyguard Cloak\" \"158750\" )\n\n\n------------------------------\nRecipe\n------------------------------\n\nNano Programming Interface\n+\nInactive OT Metamorphing Liquid Nanobots\n=\n\n#L \"Activated OT Metamorphing Liquid Nanobots\" \"164954\"\nSkills: | NP,CH |\n\n------------------------------\n\nNotum\n+\nActivated OT Metamorphing Liquid Nanobots\n=\n\n#L \"Stabilized OT Metamorphing Liquid Nanobots\" \"164956\"\nSkills: | NP,CH |\n\n------------------------------\n\nStabilized OT Metamorphing Liquid Nanobots\n+\nICC Cloak = Modernized ICC Cloaks\n=\n\nModernized ICC Cloaks\n#L \"Modernized ICC Bodyguard Cloak\" \"164972\"\nSkills: | NP,CH |\n\n------------------------------\nComments\n------------------------------\n\nIt's only useful to change the look of the old ICC cloaks, nothing else." +} diff --git a/modules/standard/recipe/recipes/720.json b/modules/standard/recipe/recipes/720.json new file mode 100644 index 0000000..d6cab98 --- /dev/null +++ b/modules/standard/recipe/recipes/720.json @@ -0,0 +1,29 @@ +{ + "name": "Scoped Salabim Shotgun Supremo", + "author": "", + "items": [ + { + "alias": "Visible Light Remodulation Device", + "item_id": 257964 + }, + { + "alias": "Viral Targeting Subunit", + "item_id": 251240 + }, + { + "alias": "Salabim Shotgun", + "item_id": 253235 + }, + { + "alias": "Projectile Weapon Upgrade", + "item_id": 257969 + }, + { + "alias": "Scoped Salabim Shotgun Supremo", + "item_id": 257141 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients \n------------------------------\n\n The Visible Light Remodulation Device drops in Alien Playfields and can be used for various tradeskill processes.\n\n#L \"Visible Light Remodulation Device\" \"257964\"\n\n\n#L \"Viral Targeting Subunit\" \"251240\"\n\n\n#L \"Salabim Shotgun\" \"253235\"\n\n\n------------------------------\nRecipe \n------------------------------\n\nVisible Light Remodulation Device\n+\nViral Targeting Subunit\n=\n\n#L \"Projectile Weapon Upgrade\" \"257969\"\nNote: Viral Targeting Subunit needs to be QL250+\n\nProjectile Weapon Upgrade\n+\nSalabim Shotgun\n=\n\n#L \"Scoped Salabim Shotgun Supremo\" \"257141\"\nNote: Salabim Shotgun needs to be QL250+" +} diff --git a/modules/standard/recipe/recipes/721.json b/modules/standard/recipe/recipes/721.json new file mode 100644 index 0000000..b846786 --- /dev/null +++ b/modules/standard/recipe/recipes/721.json @@ -0,0 +1,21 @@ +{ + "name": "High Lord of Angst", + "author": "", + "items": [ + { + "alias": "Dynamic Gas Redistribution Valves", + "item_id": 257962 + }, + { + "alias": "Lord of Angst", + "item_id": 244821 + }, + { + "alias": "High Lord of Angst", + "item_id": 257128 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients \n------------------------------\n\n The Dynamic Gas Redistribution Valves drops in Alien Playfields and can be used for various tradeskill processes.\n\n#L \"Dynamic Gas Redistribution Valves\" \"257962\"\n\n\n#L \"Lord of Angst\" \"244821\"\n\n\n------------------------------\nRecipe \n------------------------------\n\nDynamic Gas Redistribution Valves\n+\nLord of Angst\n=\n\n#L \"High Lord of Angst\" \"257128\"" +} diff --git a/modules/standard/recipe/recipes/722.json b/modules/standard/recipe/recipes/722.json new file mode 100644 index 0000000..c2b77fd --- /dev/null +++ b/modules/standard/recipe/recipes/722.json @@ -0,0 +1,25 @@ +{ + "name": "Silenced Kyr'Ozch Rifle", + "author": "", + "items": [ + { + "alias": "Dynamic Gas Redistribution Valves", + "item_id": 257962 + }, + { + "alias": "Kyr'Ozch Rifle - Type 2", + "item_id": 254478 + }, + { + "alias": "Silenced Kyr'Ozch Rifle - Type 2", + "item_id": 257967 + }, + { + "alias": "Silenced Kyr'Ozch Rifle - Type 3", + "item_id": 257131 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients \n------------------------------\n\n The Dynamic Gas Redistribution Valves drops in Alien Playfields and can be used for various tradeskill processes.\n\n#L \"Dynamic Gas Redistribution Valves\" \"257962\"\n\n\n#L \"Kyr'Ozch Rifle - Type 2\" \"254478\"\n\nor\n#L \"Kyr'Ozch Rifle - Type 3\" \"247326\"\n\n\n------------------------------\nRecipe \n------------------------------\n\nDynamic Gas Redistribution Valves\n+\nKyr'Ozch Rifle - Type 2\n=\n\n#L \"Silenced Kyr'Ozch Rifle - Type 2\" \"257967\"\nNote: The Kyr'Ozch Rifle - Type 2 needs to be QL250+\n\nor\n\n\nDynamic Gas Redistribution Valves\n+\nKyr'Ozch Rifle - Type 3\n=\n\n#L \"Silenced Kyr'Ozch Rifle - Type 3\" \"257131\"\nNote: The Kyr'Ozch Rifle - Type 3 needs to be QL250+" +} diff --git a/modules/standard/recipe/recipes/723.json b/modules/standard/recipe/recipes/723.json new file mode 100644 index 0000000..f6bd75e --- /dev/null +++ b/modules/standard/recipe/recipes/723.json @@ -0,0 +1,21 @@ +{ + "name": "Amplified Sleek Cannon", + "author": "", + "items": [ + { + "alias": "Dynamic Gas Redistribution Valves", + "item_id": 257962 + }, + { + "alias": "Excellent Sleek Cannon", + "item_id": 160162 + }, + { + "alias": "Amplified Sleek Cannon", + "item_id": 257126 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients \n------------------------------\n\n The Dynamic Gas Redistribution Valves drops in Alien Playfields and can be used for various tradeskill processes.\n\n#L \"Dynamic Gas Redistribution Valves\" \"257962\"\n\n\n#L \"Excellent Sleek Cannon\" \"160162\"\n\n\n------------------------------\nRecipe \n------------------------------\n\nDynamic Gas Redistribution Valves\n+\nExcellent Sleek Cannon\n=\n\n#L \"Amplified Sleek Cannon\" \"257126\"" +} diff --git a/modules/standard/recipe/recipes/724.json b/modules/standard/recipe/recipes/724.json new file mode 100644 index 0000000..007a5d2 --- /dev/null +++ b/modules/standard/recipe/recipes/724.json @@ -0,0 +1,21 @@ +{ + "name": "Nophex's Molybdenum Crash Helmet", + "author": "", + "items": [ + { + "alias": "Action Probability Estimator", + "item_id": 257960 + }, + { + "alias": "Jathos' Molybdenum Plate Helmet", + "item_id": 252005 + }, + { + "alias": "Nophex's Molybdenum Crash Helmet", + "item_id": 257378 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients \n------------------------------\n\n The Action Probability Estimator drops in Sector 13 and can be used for various tradeskill processes.\n\n#L \"Action Probability Estimator\" \"257960\"\n\n\n#L \"Jathos' Molybdenum Plate Helmet\" \"252005\"\n\n\n------------------------------\nRecipe \n------------------------------\n\nAction Probability Estimator\n+\nJathos' Molybdenum Plate Helmet\n=\n\n#L \"Nophex's Molybdenum Crash Helmet\" \"257378\"\nNote: Clan Helmet" +} diff --git a/modules/standard/recipe/recipes/725.json b/modules/standard/recipe/recipes/725.json new file mode 100644 index 0000000..a7e9e83 --- /dev/null +++ b/modules/standard/recipe/recipes/725.json @@ -0,0 +1,21 @@ +{ + "name": "Extruder's Molybdenum Crash Helmet", + "author": "", + "items": [ + { + "alias": "Action Probability Estimator", + "item_id": 257960 + }, + { + "alias": "Kegern's Molybdenum Plate Helmet", + "item_id": 252017 + }, + { + "alias": "Extruder's Molybdenum Crash Helmet", + "item_id": 257379 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients \n------------------------------\n\n The Action Probability Estimator drops in Sector 13 and can be used for various tradeskill processes.\n\n#L \"Action Probability Estimator\" \"257960\"\n\n\n#L \"Kegern's Molybdenum Plate Helmet\" \"252017\"\n\n\n------------------------------\nRecipe \n------------------------------\n\nAction Probability Estimator\n+\nKegern's Molybdenum Plate Helmet\n=\n\n#L \"Extruder's Molybdenum Crash Helmet\" \"257379\"\nNote: Omni Helmet" +} diff --git a/modules/standard/recipe/recipes/726.json b/modules/standard/recipe/recipes/726.json new file mode 100644 index 0000000..af5f553 --- /dev/null +++ b/modules/standard/recipe/recipes/726.json @@ -0,0 +1,21 @@ +{ + "name": "Sworn Knight Commander Genevra's Helmet", + "author": "", + "items": [ + { + "alias": "Action Probability Estimator", + "item_id": 257960 + }, + { + "alias": "Sworn Knight's Helmet", + "item_id": 225514 + }, + { + "alias": "Sworn Knight Commander Genevra's Helmet", + "item_id": 257114 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients \n------------------------------\n\n The Action Probability Estimator drops in Sector 13 and can be used for various tradeskill processes.\n\n#L \"Action Probability Estimator\" \"257960\"\n\n\n#L \"Sworn Knight's Helmet\" \"225514\"\n\n\n------------------------------\nRecipe \n------------------------------\n\nAction Probability Estimator\n+\nSworn Knight's Helmet\n=\n\n#L \"Sworn Knight Commander Genevra's Helmet\" \"257114\"" +} diff --git a/modules/standard/recipe/recipes/727.json b/modules/standard/recipe/recipes/727.json new file mode 100644 index 0000000..ba0d35c --- /dev/null +++ b/modules/standard/recipe/recipes/727.json @@ -0,0 +1,21 @@ +{ + "name": "Conscientious Knight Commander Nizno's Helmet", + "author": "", + "items": [ + { + "alias": "Action Probability Estimator", + "item_id": 257960 + }, + { + "alias": "Conscientious Knight's Helmet", + "item_id": 225541 + }, + { + "alias": "Conscientious Knight Commander Nizno's Helmet", + "item_id": 257115 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients \n------------------------------\n\n The Action Probability Estimator drops in Sector 13 and can be used for various tradeskill processes.\n\n#L \"Action Probability Estimator\" \"257960\"\n\n\n#L \"Conscientious Knight's Helmet\" \"225541\"\n\n\n------------------------------\nRecipe \n------------------------------\n\nAction Probability Estimator\n+\nConscientious Knight's Helmet\n=\n\n#L \"Conscientious Knight Commander Nizno's Helmet\" \"257115\"" +} diff --git a/modules/standard/recipe/recipes/728.json b/modules/standard/recipe/recipes/728.json new file mode 100644 index 0000000..313e523 --- /dev/null +++ b/modules/standard/recipe/recipes/728.json @@ -0,0 +1,61 @@ +{ + "name": "S13 Upgraded Combined Headwear", + "author": "", + "items": [ + { + "alias": "Action Probability Estimator", + "item_id": 257960 + }, + { + "alias": "Combined Commando's Headwear", + "item_id": 246658 + }, + { + "alias": "Combined Mercenary's Headwear", + "item_id": 246636 + }, + { + "alias": "Combined Officer's Headwear", + "item_id": 246670 + }, + { + "alias": "Combined Paramedic's Headwear", + "item_id": 246632 + }, + { + "alias": "Combined Scout's Headwear", + "item_id": 246682 + }, + { + "alias": "Combined Sharpshooter's Headwear", + "item_id": 246694 + }, + { + "alias": "Gannondorf's Combined Commando's Headwear", + "item_id": 257381 + }, + { + "alias": "Sillum's Combined Mercenary's Headwear", + "item_id": 257380 + }, + { + "alias": "Blackmane's Combined Officer's Headwear", + "item_id": 257383 + }, + { + "alias": "Odum's Combined Paramedic's Headwear", + "item_id": 257377 + }, + { + "alias": "Yakomo's Combined Scout's Headwear", + "item_id": 257382 + }, + { + "alias": "Haitte's Combined Sharpshooter's Headwear", + "item_id": 257384 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients \n------------------------------\n\n The Action Probability Estimator drops in Sector 13 and can be used for various tradeskill processes.\n\n#L \"Action Probability Estimator\" \"257960\"\n\n\n#L \"Combined Commando's Headwear\" \"246658\"\n\n\n#L \"Combined Mercenary's Headwear\" \"246636\"\n\n\n#L \"Combined Officer's Headwear\" \"246670\"\n\n\n#L \"Combined Paramedic's Headwear\" \"246632\"\n\n\n#L \"Combined Scout's Headwear\" \"246682\"\n\n\n#L \"Combined Sharpshooter's Headwear\" \"246694\"\n\n\n------------------------------\nRecipe \n------------------------------\n\nAction Probability Estimator\n+\nCombined Commando's Headwear\n=\n\n#L \"Gannondorf's Combined Commando's Headwear\" \"257381\"\nNote: Alien Armor headwear needs to be QL250+\n\nAction Probability Estimator\n+\nCombined Mercenary's Headwear\n=\n\n#L \"Sillum's Combined Mercenary's Headwear\" \"257380\"\nNote: Alien Armor headwear needs to be QL250+\n\nAction Probability Estimator\n+\nCombined Officer's Headwear\n=\n\n#L \"Blackmane's Combined Officer's Headwear\" \"257383\"\nNote: Alien Armor headwear needs to be QL250+\n\nAction Probability Estimator\n+\nCombined Paramedic's Headwear\n=\n\n#L \"Odum's Combined Paramedic's Headwear\" \"257377\"\nNote: Alien Armor headwear needs to be QL250+\n\nAction Probability Estimator\n+\nCombined Scout's Headwear\n=\n\n#L \"Yakomo's Combined Scout's Headwear\" \"257382\"\nNote: Alien Armor headwear needs to be QL250+\n\nAction Probability Estimator\n+\nCombined Sharpshooter's Headwear\n=\n\n#L \"Haitte's Combined Sharpshooter's Headwear\" \"257384\"\nNote: Alien Armor headwear needs to be QL250+" +} diff --git a/modules/standard/recipe/recipes/729.json b/modules/standard/recipe/recipes/729.json new file mode 100644 index 0000000..cbf03e9 --- /dev/null +++ b/modules/standard/recipe/recipes/729.json @@ -0,0 +1,21 @@ +{ + "name": "Twice Augmented Hellspinner Shock Cannon", + "author": "", + "items": [ + { + "alias": "Notum Amplification Coil", + "item_id": 257963 + }, + { + "alias": "Augmented Hellspinner Shock Cannon", + "item_id": 201939 + }, + { + "alias": "Twice Augmented Hellspinner Shock Cannon", + "item_id": 257124 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients \n------------------------------\n\n The Notum Amplification Coil drops in Alien Playfields and can be used for various tradeskill processes.\n\n#L \"Notum Amplification Coil\" \"257963\"\n\n\n#L \"Augmented Hellspinner Shock Cannon\" \"201939\"\n\n\n------------------------------\nRecipe \n------------------------------\n\nNotum Amplification Coil\n+\nAugmented Hellspinner Shock Cannon\n=\n\n#L \"Twice Augmented Hellspinner Shock Cannon\" \"257124\"\nSkills: | 1250 CL |" +} diff --git a/modules/standard/recipe/recipes/73.json b/modules/standard/recipe/recipes/73.json new file mode 100644 index 0000000..9db37be --- /dev/null +++ b/modules/standard/recipe/recipes/73.json @@ -0,0 +1,29 @@ +{ + "name": "Muscular Stim", + "author": "", + "items": [ + { + "alias": "Mimicking Cellular Oil", + "item_id": 154268 + }, + { + "alias": "Receptive Bots", + "item_id": 154266 + }, + { + "alias": "Shining Nano Knot of Muscular Increase", + "item_id": 154667 + }, + { + "alias": "Purple Glowing Stim", + "item_id": 154274 + }, + { + "alias": "Muscular Stim", + "item_id": 154665 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients\n------------------------------\n\n#L \"Mimicking Cellular Oil\" \"154268\"\n\n\n#L \"Receptive Bots\" \"154266\"\n\n\n#L \"Shining Nano Knot of Muscular Increase\" \"154667\"\n\n\n------------------------------\nRecipe\n------------------------------\n\nMimicking Cellular Oil\n+\nReceptive Bots\n=\n\n#L \"Purple Glowing Stim\" \"154274\"\nSkills: | PT |\n\n------------------------------\n\nShining Nano Knot of Muscular Increase\n+\nPurple Glowing Stim\n=\n\n#L \"Muscular Stim\" \"154665\"\nSkills: | PT |\n\n------------------------------\nComments\n------------------------------\n\nGood buffing item to equip TOTW/IS items which require Body Dev" +} diff --git a/modules/standard/recipe/recipes/730.json b/modules/standard/recipe/recipes/730.json new file mode 100644 index 0000000..c0e79dd --- /dev/null +++ b/modules/standard/recipe/recipes/730.json @@ -0,0 +1,21 @@ +{ + "name": "ObiTom's Nano Calculato", + "author": "", + "items": [ + { + "alias": "Notum Amplification Coil", + "item_id": 257963 + }, + { + "alias": "Aquarius's Multitask Calculator", + "item_id": 244376 + }, + { + "alias": "ObiTom's Nano Calculator", + "item_id": 257118 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients \n------------------------------\n\n The Notum Amplification Coil drops in Alien Playfields and can be used for various tradeskill processes.\n\n#L \"Notum Amplification Coil\" \"257963\"\n\n\n#L \"Aquarius's Multitask Calculator\" \"244376\"\n\n\n------------------------------\nRecipe \n------------------------------\n\nNotum Amplification Coil\n+\nAquarius's Multitask Calculator\n=\n\n#L \"ObiTom's Nano Calculator\" \"257118\"\nSkills: | 1250 CL |" +} diff --git a/modules/standard/recipe/recipes/731.json b/modules/standard/recipe/recipes/731.json new file mode 100644 index 0000000..aef95c8 --- /dev/null +++ b/modules/standard/recipe/recipes/731.json @@ -0,0 +1,37 @@ +{ + "name": "Amplified Kyr'Ozch Carbine", + "author": "", + "items": [ + { + "alias": "Notum Amplification Coil", + "item_id": 257963 + }, + { + "alias": "Kyr'Ozch Carbine - Type 5", + "item_id": 254499 + }, + { + "alias": "Kyr'Ozch Carbine - Type 12", + "item_id": 254506 + }, + { + "alias": "Kyr'Ozch Carbine - Type 13", + "item_id": 254513 + }, + { + "alias": "Amplified Kyr'Ozch Carbine - Type 5", + "item_id": 257144 + }, + { + "alias": "Amplified Kyr'Ozch Carbine - Type 12", + "item_id": 257143 + }, + { + "alias": "Amplified Kyr'Ozch Carbine - Type 13", + "item_id": 257142 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients \n------------------------------\n\n The Notum Amplification Coil drops in Alien Playfields and can be used for various tradeskill processes.\n\n#L \"Notum Amplification Coil\" \"257963\"\n\n\n#L \"Kyr'Ozch Carbine - Type 5\" \"254499\"\n\n\n#L \"Kyr'Ozch Carbine - Type 12\" \"254506\"\n\n\n#L \"Kyr'Ozch Carbine - Type 13\" \"254513\"\n\n\n------------------------------\nRecipe \n------------------------------\n\nNotum Amplification Coil\n+\nKyr'Ozch Carbine - Type 5\n=\n\n#L \"Amplified Kyr'Ozch Carbine - Type 5\" \"257144\"\nSkills: | 1250 CL |\nNote: The Carbine has to be QL250+\n\nNotum Amplification Coil\n+\nKyr'Ozch Carbine - Type 12\n=\n\n#L \"Amplified Kyr'Ozch Carbine - Type 12\" \"257143\"\nSkills: | 1250 CL |\nNote: The Carbine has to be QL250+\n\nNotum Amplification Coil\n+\nKyr'Ozch Carbine - Type 13\n=\n\n#L \"Amplified Kyr'Ozch Carbine - Type 13\" \"257142\"\nSkills: | 1250 CL |\nNote: The Carbine has to be QL250+" +} diff --git a/modules/standard/recipe/recipes/732.json b/modules/standard/recipe/recipes/732.json new file mode 100644 index 0000000..b60f1e1 --- /dev/null +++ b/modules/standard/recipe/recipes/732.json @@ -0,0 +1,37 @@ +{ + "name": "Alien Playfield Loot Tradeskills", + "author": "", + "items": [ + { + "alias": "Energy Redistribution Unit", + "item_id": 257961 + }, + { + "alias": "Visible Light Remodulation Device", + "item_id": 257964 + }, + { + "alias": "Dynamic Gas Redistribution Valves", + "item_id": 257962 + }, + { + "alias": "Action Probability Estimator", + "item_id": 257960 + }, + { + "alias": "Notum Amplification Coil", + "item_id": 257963 + }, + { + "alias": "Inertial Adjustment Processing Unit", + "item_id": 257959 + }, + { + "alias": "Hacker ICE-Breaker Source", + "item_id": 257968 + } + ], + "steps": [], + "details": [], + "raw": " The parts listed drop in various Alien Playfields and can be used for various tradeskill processes.\n\n\n------------------------------\n#L \"Energy Redistribution Unit\" \"257961\" recipes:\n------------------------------\n#L \"Blades of Boltar\" \"/tell recipe 715\"\n#L \"De'Valos Lava Protection Ring\" \"/tell recipe 716\"\n#L \"Vektor ND Grand Wyrm\" \"/tell recipe 717\"\n\n\n\n------------------------------\n#L \"Visible Light Remodulation Device\" \"257964\" recipes:\n------------------------------\n#L \"Explosif's Polychromatic Pillows\" \"/tell recipe 718\"\n#L \"De'Valos Lava Protection Ring\" \"/tell recipe 719\"\n#L \"Scoped Salabim Shotgun Supremo\" \"/tell recipe 720\"\n\n\n\n------------------------------\n#L \"Dynamic Gas Redistribution Valves\" \"257962\" recipes:\n------------------------------\n#L \"High Lord of Angst\" \"/tell recipe 721\"\n#L \"Silenced Kyr'Ozch Rifle\" \"/tell recipe 722\"\n#L \"Amplified Sleek Cannon\" \"/tell recipe 723\"\n\n\n\n------------------------------\n#L \"Action Probability Estimator\" \"257960\" recipes:\n------------------------------\n#L \"Nophex's Molybdenum Crash Helmet\" \"/tell recipe 724\"\n#L \"Extruder's Molybdenum Crash Helmet\" \"/tell recipe 725\"\n#L \"Sworn Knight Commander Genevra's Helmet\" \"/tell recipe 726\"\n#L \"Conscientious Knight Commander Nizno's Helmet\" \"/tell recipe 727\"\n#L \"S13 Upgraded Combined Headwear\" \"/tell recipe 728\"\n\n\n\n------------------------------\n#L \"Notum Amplification Coil\" \"257963\" recipes:\n------------------------------\n#L \"Twice Augmented Hellspinner Shock Cannon\" \"/tell recipe 729\"\n#L \"ObiTom's Nano Calculato\" \"/tell recipe 730\"\n#L \"Amplified Kyr'Ozch Carbine\" \"/tell recipe 731\"\n\n\n\n------------------------------\n#L \"Inertial Adjustment Processing Unit\" \"257959\" recipes:\n------------------------------\n#L \"Hadrulf's Viral Belt Component Platform\" \"/tell recipe 580\"\n\n\n\n------------------------------\n#L \"Hacker ICE-Breaker Source\" \"257968\" recipes:\n------------------------------\n#L \"Intrusion Countermeasure Electronics Upgrade\" \"/tell recipe 581\"" +} diff --git a/modules/standard/recipe/recipes/74.json b/modules/standard/recipe/recipes/74.json new file mode 100644 index 0000000..442bb29 --- /dev/null +++ b/modules/standard/recipe/recipes/74.json @@ -0,0 +1,21 @@ +{ + "name": "NCU Hacker Interface", + "author": "", + "items": [ + { + "alias": "Lock Pick", + "item_id": 95577 + }, + { + "alias": "Nano Programming Interface", + "item_id": 161699 + }, + { + "alias": "NCU Hacker Interface", + "item_id": 158417 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients\n------------------------------\n\n#L \"Lock Pick\" \"95577\"\n\n\n#L \"Nano Programming Interface\" \"161699\"\n\n\n------------------------------\nRecipe\n------------------------------\n\nLock Pick\n+\nNano Programming Interface\n=\n\n#L \"NCU Hacker Interface\" \"158417\"\nSkills: | BE,NP |\n\n------------------------------\nComments\n------------------------------\n\nFixers tool only. It adds some points in all Nanoskills, up to 60 for a QL200 one. Right click on it after each level to upgrade it." +} diff --git a/modules/standard/recipe/recipes/746.json b/modules/standard/recipe/recipes/746.json new file mode 100644 index 0000000..45d42ef --- /dev/null +++ b/modules/standard/recipe/recipes/746.json @@ -0,0 +1,33 @@ +{ + "name": "Abandonment of the Xan", + "author": "", + "items": [ + { + "alias": "Xan Weapon Upgrade Device", + "item_id": 280786 + }, + { + "alias": "Notum Enriched Nano Paste - 16x Layer", + "item_id": 137312 + }, + { + "alias": "Lord of Abandonment", + "item_id": 244742 + }, + { + "alias": "Lady of Abandonment", + "item_id": 244743 + }, + { + "alias": "Abandonment of the Xan", + "item_id": 280717 + }, + { + "alias": "Kur'Ush Mallet", + "item_id": 281503 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients \n------------------------------\n\n The Xan Weapon Upgrade Device which drops from the Mitaar Hero, Ground Chief Vortexx and 12-Man instances can be tradeskilled with 30 different Shadowlands weapons/\n\n#L \"Xan Weapon Upgrade Device\" \"280786\"\n\n\n#L \"Notum Enriched Nano Paste - 16x Layer\" \"137312\"\n\n\n#L \"Lord of Abandonment\" \"244742\"\n\nor\n#L \"Lady of Abandonment\" \"244743\"\n\n\n------------------------------\nRecipe \n------------------------------\n\nXan Weapon Upgrade Device\n+\nLord of Abandonment\n=\n\n#L \"Abandonment of the Xan\" \"280717\"\n\nor\n\nXan Weapon Upgrade Device\n+\nLady of Abandonment\n=\n\n#L \"Abandonment of the Xan\" \"280717\"\n\nNote: The Abandonment can be further upgraded with ql150+ shop bought items:\n\nNotum Enriched Nano Paste - 16x Layer\n+\nAbandonment of the Xan\n=\n\n#L \"Kur'Ush Mallet\" \"281503\"" +} diff --git a/modules/standard/recipe/recipes/747.json b/modules/standard/recipe/recipes/747.json new file mode 100644 index 0000000..3f8938f --- /dev/null +++ b/modules/standard/recipe/recipes/747.json @@ -0,0 +1,29 @@ +{ + "name": "Anger of the Xan", + "author": "", + "items": [ + { + "alias": "Xan Weapon Upgrade Device", + "item_id": 280786 + }, + { + "alias": "Lord of Anger", + "item_id": 244802 + }, + { + "alias": "Lady of Anger", + "item_id": 244801 + }, + { + "alias": "Superior Rebuilt Perennium Blaster", + "item_id": 260706 + }, + { + "alias": "Anger of the Xan", + "item_id": 280722 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients \n------------------------------\n\n The Xan Weapon Upgrade Device which drops from the Mitaar Hero, Ground Chief Vortexx and 12-Man instances can be tradeskilled with 30 different Shadowlands weapons/\n\n#L \"Xan Weapon Upgrade Device\" \"280786\"\n\n\n#L \"Lord of Anger\" \"244802\"\n\nor\n#L \"Lady of Anger\" \"244801\"\n\nor\n#L \"Superior Rebuilt Perennium Blaster\" \"260706\"\n\n\n------------------------------\nRecipe \n------------------------------\n\nXan Weapon Upgrade Device\n+\nLord of Anger\n=\n\n#L \"Anger of the Xan\" \"280722\"\n\nor\n\nXan Weapon Upgrade Device\n+\nLady of Anger\n=\n\n#L \"Anger of the Xan\" \"280722\"\n\nor\n\nXan Weapon Upgrade Device\n+\nSuperior Rebuilt Perennium Blaster\n=\n\n#L \"Anger of the Xan\" \"280722\"" +} diff --git a/modules/standard/recipe/recipes/748.json b/modules/standard/recipe/recipes/748.json new file mode 100644 index 0000000..1e64d60 --- /dev/null +++ b/modules/standard/recipe/recipes/748.json @@ -0,0 +1,33 @@ +{ + "name": "Angst of the Xan", + "author": "", + "items": [ + { + "alias": "Xan Weapon Upgrade Device", + "item_id": 280786 + }, + { + "alias": "High Lord of Angst", + "item_id": 257128 + }, + { + "alias": "Lord of Angst", + "item_id": 244821 + }, + { + "alias": "Lady of Angst", + "item_id": 244820 + }, + { + "alias": "Superior Rebuilt Perennium Sniper", + "item_id": 260720 + }, + { + "alias": "Angst of the Xan", + "item_id": 280723 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients \n------------------------------\n\n The Xan Weapon Upgrade Device which drops from the Mitaar Hero, Ground Chief Vortexx and 12-Man instances can be tradeskilled with 30 different Shadowlands weapons/\n\n#L \"Xan Weapon Upgrade Device\" \"280786\"\n\n\n#L \"High Lord of Angst\" \"257128\"\n\nor\n#L \"Lord of Angst\" \"244821\"\n\nor\n#L \"Lady of Angst\" \"244820\"\n\nor\n#L \"Superior Rebuilt Perennium Sniper\" \"260720\"\n\n\n------------------------------\nRecipe \n------------------------------\n\nXan Weapon Upgrade Device\n+\nHigh Lord of Angst\n=\n\n#L \"Angst of the Xan\" \"280723\"\n\nor\n\nXan Weapon Upgrade Device\n+\nLord of Angst\n=\n\n#L \"Angst of the Xan\" \"280723\"\n\nor\n\nXan Weapon Upgrade Device\n+\nLady of Angst\n=\n\n#L \"Angst of the Xan\" \"280723\"\n\nor\n\nXan Weapon Upgrade Device\n+\nSuperior Rebuilt Perennium Sniper\n=\n\n#L \"Angst of the Xan\" \"280723\"" +} diff --git a/modules/standard/recipe/recipes/749.json b/modules/standard/recipe/recipes/749.json new file mode 100644 index 0000000..9cbc948 --- /dev/null +++ b/modules/standard/recipe/recipes/749.json @@ -0,0 +1,25 @@ +{ + "name": "Chaos of the Xan", + "author": "", + "items": [ + { + "alias": "Xan Weapon Upgrade Device", + "item_id": 280786 + }, + { + "alias": "Lord of Chaos", + "item_id": 244910 + }, + { + "alias": "Lady of Chaos", + "item_id": 244909 + }, + { + "alias": "Chaos of the Xan", + "item_id": 280726 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients \n------------------------------\n\n The Xan Weapon Upgrade Device which drops from the Mitaar Hero, Ground Chief Vortexx and 12-Man instances can be tradeskilled with 30 different Shadowlands weapons/\n\n#L \"Xan Weapon Upgrade Device\" \"280786\"\n\n\n#L \"Lord of Chaos\" \"244910\"\n\nor\n#L \"Lady of Chaos\" \"244909\"\n\n\n------------------------------\nRecipe \n------------------------------\n\nXan Weapon Upgrade Device\n+\nLord of Chaos\n=\n\n#L \"Chaos of the Xan\" \"280726\"\n\nor\n\nXan Weapon Upgrade Device\n+\nLady of Chaos\n=\n\n#L \"Chaos of the Xan\" \"280726\"" +} diff --git a/modules/standard/recipe/recipes/75.json b/modules/standard/recipe/recipes/75.json new file mode 100644 index 0000000..a24d1b8 --- /dev/null +++ b/modules/standard/recipe/recipes/75.json @@ -0,0 +1,77 @@ +{ + "name": "NotuComm Mesh Trenchcoat", + "author": "", + "items": [ + { + "alias": "Trenchcoat", + "item_id": 31516 + }, + { + "alias": "Cold Stone", + "item_id": 136649 + }, + { + "alias": "Reinforced NotuComm Wire", + "item_id": 203646 + }, + { + "alias": "Nano Programming Interface", + "item_id": 161699 + }, + { + "alias": "Solid Spiritech Mesh", + "item_id": 245676 + }, + { + "alias": "Sentient Cold Stone", + "item_id": 203648 + }, + { + "alias": "NotuComm Circuitry with One Sensor", + "item_id": 203630 + }, + { + "alias": "NotuComm Circuitry with Two Sensors", + "item_id": 203626 + }, + { + "alias": "NotuComm Circuitry with Three Sensors", + "item_id": 203628 + }, + { + "alias": "NotuComm Circuitry with Four Sensors", + "item_id": 203632 + }, + { + "alias": "NotuComm Circuitry with Five Sensors", + "item_id": 203634 + }, + { + "alias": "Complete NotuComm Circuitry", + "item_id": 203642 + }, + { + "alias": "Double NotuComm Circuitry", + "item_id": 203640 + }, + { + "alias": "Quadruple NotuComm Circuitry", + "item_id": 203644 + }, + { + "alias": "NotuComm Mesh", + "item_id": 203624 + }, + { + "alias": "NotuComm Mesh Trenchcoat", + "item_id": 204207 + }, + { + "alias": "Modified NotuComm Mesh Trenchcoat", + "item_id": 245675 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients\n------------------------------\n\n#L \"TrenchCoat\" \"31516\"\n\n\n#L \"Cold Stone\" \"136649\" x 36\n\n\n#L \"Reinforced NotuComm Wire\" \"203646\" x 6\n\n\n#L \"Nano Programming Interface\" \"161699\"\n\n\n#L \"Solid Spiritech Mesh\" \"245676\"\n\n\n------------------------------\nRecipe\n------------------------------\n\nRepeat for the 36 Cold Stones:\n\nNano Programming Interface\n+\nCold Stone\n=\n\n#L \"Sentient Cold Stone\" \"203648\"\nSkills: | NP |\n\n------------------------------\n\nRepeat for the 6 Reinforced NotuComm Wires:\n\nSentient Cold Stone\n+\nReinforced NotuComm Wire\n=\n\n#L \"NotuComm Circuitry with One Sensor\" \"203630\"\nSkills: | ?? |\n\n------------------------------\n\nSentient Cold Stone\n+\nNotuComm Circuitry with One Sensor\n=\n\n#L \"NotuComm Circuitry with Two Sensors\" \"203626\"\nSkills: | ?? |\n\n------------------------------\n\nSentient Cold Stone\n+\nNotuComm Circuitry with Two Sensors\n=\n\n#L \"NotuComm Circuitry with Three Sensors\" \"203628\"\nSkills: | ?? |\n\n------------------------------\n\nSentient Cold Stone\n+\nNotuComm Circuitry with Three Sensors\n=\n\n#L \"NotuComm Circuitry with Four Sensors\" \"203632\"\nSkills: | ?? |\n\n------------------------------\n\nSentient Cold Stone\n+\nNotuComm Circuitry with Four Sensors\n=\n\n#L \"NotuComm Circuitry with Five Sensors\" \"203634\"\nSkills: | ?? |\n\n------------------------------\n\nSentient Cold Stone\n+\nNotuComm Circuitry with Five Sensors\n=\n\n#L \"Complete NotuComm Circuitry\" \"203642\"\nSkills: | ?? |\n\n------------------------------\n\nRepeat for the 6 Complete NotuComm Circuitries:\n\nComplete NotuComm Circuitry\n+\nComplete NotuComm Circuitry\n=\n\n#L \"Double NotuComm Circuitry\" \"203640\"\nSkills: | ?? |\n\n------------------------------\n\nDouble NotumComm Circuitry\n+\nDouble NotuComm Circuitry\n=\n\n#L \"Quadruple NotuComm Circuitry\" \"203644\"\nSkills: | ?? |\n\n------------------------------\n\nQuadruple NotuComm Circuitry\n+\nDouble NotuComm Circuitry\n=\n\n#L \"NotuComm Mesh\" \"203624\"\nSkills: | ?? |\n\n------------------------------\n\nTrenchCoat\n+\nNotuComm Mesh\n=\n\n#L \"NotuComm Mesh Trenchcoat\" \"204207\"\nSkills: | ?? |\n\n------------------------------\n\nand finally:\n\nNotuComm Mesh Trenchcoat\n+\nSolid Spiritech Mesh\n=\n\n#L \"Modified NotuComm Mesh Trenchcoat\" \"245675\"\nSkills: | ?? |\n\n------------------------------\nComments\n------------------------------\n\nA lot of work but a very nice coat." +} diff --git a/modules/standard/recipe/recipes/750.json b/modules/standard/recipe/recipes/750.json new file mode 100644 index 0000000..5ceb250 --- /dev/null +++ b/modules/standard/recipe/recipes/750.json @@ -0,0 +1,25 @@ +{ + "name": "Deceit of the Xan", + "author": "", + "items": [ + { + "alias": "Xan Weapon Upgrade Device", + "item_id": 280786 + }, + { + "alias": "Lord of Deceit", + "item_id": 244779 + }, + { + "alias": "Lady of Deceit", + "item_id": 244778 + }, + { + "alias": "Deceit of the Xan", + "item_id": 280719 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients \n------------------------------\n\n The Xan Weapon Upgrade Device which drops from the Mitaar Hero, Ground Chief Vortexx and 12-Man instances can be tradeskilled with 30 different Shadowlands weapons/\n\n#L \"Xan Weapon Upgrade Device\" \"280786\"\n\n\n#L \"Lord of Deceit\" \"244779\"\n\nor\n#L \"Lady of Deceit\" \"244778\"\n\n\n------------------------------\nRecipe \n------------------------------\n\nXan Weapon Upgrade Device\n+\nLord of Deceit\n=\n\n#L \"Deceit of the Xan\" \"280719\"\n\nor\n\nXan Weapon Upgrade Device\n+\nLady of Deceit\n=\n\n#L \"Deceit of the Xan\" \"280719\"" +} diff --git a/modules/standard/recipe/recipes/751.json b/modules/standard/recipe/recipes/751.json new file mode 100644 index 0000000..ba2224b --- /dev/null +++ b/modules/standard/recipe/recipes/751.json @@ -0,0 +1,25 @@ +{ + "name": "Greed of the Xan", + "author": "", + "items": [ + { + "alias": "Xan Weapon Upgrade Device", + "item_id": 280786 + }, + { + "alias": "Lord of Greed", + "item_id": 244862 + }, + { + "alias": "Lady of Greed", + "item_id": 244859 + }, + { + "alias": "Greed of the Xan", + "item_id": 280725 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients \n------------------------------\n\n The Xan Weapon Upgrade Device which drops from the Mitaar Hero, Ground Chief Vortexx and 12-Man instances can be tradeskilled with 30 different Shadowlands weapons/\n\n#L \"Xan Weapon Upgrade Device\" \"280786\"\n\n\n#L \"Lord of Greed\" \"244862\"\n\nor\n#L \"Lady of Greed\" \"244859\"\n\n\n------------------------------\nRecipe \n------------------------------\n\nXan Weapon Upgrade Device\n+\nLord of Greed\n=\n\n#L \"Greed of the Xan\" \"280725\"\n\nor\n\nXan Weapon Upgrade Device\n+\nLady of Greed\n=\n\n#L \"Greed of the Xan\" \"280725\"" +} diff --git a/modules/standard/recipe/recipes/752.json b/modules/standard/recipe/recipes/752.json new file mode 100644 index 0000000..ce531a0 --- /dev/null +++ b/modules/standard/recipe/recipes/752.json @@ -0,0 +1,33 @@ +{ + "name": "Envy of the Xan", + "author": "", + "items": [ + { + "alias": "Xan Weapon Upgrade Device", + "item_id": 280786 + }, + { + "alias": "Lord of Envy", + "item_id": 244843 + }, + { + "alias": "Lady of Envy", + "item_id": 244842 + }, + { + "alias": "Superior Rebuilt Perennium Beamer", + "item_id": 260713 + }, + { + "alias": "Envy of the Xan", + "item_id": 280724 + }, + { + "alias": "Rhat'Ata Gun", + "item_id": 281507 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients \n------------------------------\n\n The Xan Weapon Upgrade Device which drops from the Mitaar Hero, Ground Chief Vortexx and 12-Man instances can be tradeskilled with 30 different Shadowlands weapons/\n\n#L \"Xan Weapon Upgrade Device\" \"280786\"\n\n\n#L \"Rapid-Reload-And-Fire Gyro\" \"121391\"\n\n\n#L \"Lord of Envy\" \"244843\"\n\nor\n#L \"Lady of Envy\" \"244842\"\n\nor\n#L \"Superior Rebuilt Perennium Beamer\" \"260713\"\n\n\n------------------------------\nRecipe \n------------------------------\n\nXan Weapon Upgrade Device\n+\nLord of Envy\n=\n\n#L \"Envy of the Xan\" \"280724\"\n\nor\n\nXan Weapon Upgrade Device\n+\nLady of Envy\n=\n\n#L \"Envy of the Xan\" \"280724\"\n\nor\n\nXan Weapon Upgrade Device\n+\nSuperior Rebuilt Perennium Beamer\n=\n\n#L \"Envy of the Xan\" \"280724\"\n\nNote: The Envy can be further upgraded with ql150+ shop bought items:\n\nRapid-Reload-And-Fire Gyro\n+\nEnvy of the Xan\n=\n\n#L \"Rhat'Ata Gun\" \"281507\"" +} diff --git a/modules/standard/recipe/recipes/753.json b/modules/standard/recipe/recipes/753.json new file mode 100644 index 0000000..7e3362a --- /dev/null +++ b/modules/standard/recipe/recipes/753.json @@ -0,0 +1,33 @@ +{ + "name": "Gluttony of the Xan", + "author": "", + "items": [ + { + "alias": "Xan Weapon Upgrade Device", + "item_id": 280786 + }, + { + "alias": "Notum Enriched Nano Paste - 16x Layer", + "item_id": 137312 + }, + { + "alias": "Lord of Gluttony", + "item_id": 244785 + }, + { + "alias": "Lady of Gluttony", + "item_id": 244784 + }, + { + "alias": "Gluttony of the Xan", + "item_id": 280721 + }, + { + "alias": "Bhan'Zor Hammer", + "item_id": 281504 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients \n------------------------------\n\n The Xan Weapon Upgrade Device which drops from the Mitaar Hero, Ground Chief Vortexx and 12-Man instances can be tradeskilled with 30 different Shadowlands weapons.\n\n#L \"Xan Weapon Upgrade Device\" \"280786\"\n\n\n#L \"Notum Enriched Nano Paste - 16x Layer\" \"137312\"\n\n\n#L \"Lord of Gluttony\" \"244785\"\n\nor\n#L \"Lady of Gluttony\" \"244784\"\n\n\n------------------------------\nRecipe \n------------------------------\n\nXan Weapon Upgrade Device\n+\nLord of Gluttony\n=\n\n#L \"Gluttony of the Xan\" \"280721\"\n\nor\n\nXan Weapon Upgrade Device\n+\nLady of Gluttony\n=\n\n#L \"Gluttony of the Xan\" \"280721\"\n\nNote: The Gluttony can be further upgraded with ql150+ shop bought items:\n\nNotum Enriched Nano Paste - 16x Layer\n+\nGluttony of the Xan\n=\n\n#L \"Bhan'Zor Hammer\" \"281504\"" +} diff --git a/modules/standard/recipe/recipes/754.json b/modules/standard/recipe/recipes/754.json new file mode 100644 index 0000000..cca2d56 --- /dev/null +++ b/modules/standard/recipe/recipes/754.json @@ -0,0 +1,25 @@ +{ + "name": "Hatred of the Xan", + "author": "", + "items": [ + { + "alias": "Xan Weapon Upgrade Device", + "item_id": 280786 + }, + { + "alias": "Lord of Hatred", + "item_id": 244762 + }, + { + "alias": "Lady of Hatred", + "item_id": 244761 + }, + { + "alias": "Hatred of the Xan", + "item_id": 280718 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients \n------------------------------\n\n The Xan Weapon Upgrade Device which drops from the Mitaar Hero, Ground Chief Vortexx and 12-Man instances can be tradeskilled with 30 different Shadowlands weapons/\n\n#L \"Xan Weapon Upgrade Device\" \"280786\"\n\n\n#L \"Lord of Hatred\" \"244762\"\n\nor\n#L \"Lady of Hatred\" \"244761\"\n\n\n------------------------------\nRecipe \n------------------------------\n\nXan Weapon Upgrade Device\n+\nLord of Hatred\n=\n\n#L \"Hatred of the Xan\" \"280718\"\n\nor\n\nXan Weapon Upgrade Device\n+\nLady of Hatred\n=\n\n#L \"Hatred of the Xan\" \"280718\"" +} diff --git a/modules/standard/recipe/recipes/755.json b/modules/standard/recipe/recipes/755.json new file mode 100644 index 0000000..c38590b --- /dev/null +++ b/modules/standard/recipe/recipes/755.json @@ -0,0 +1,37 @@ +{ + "name": "Lust of the Xan", + "author": "", + "items": [ + { + "alias": "Xan Weapon Upgrade Device", + "item_id": 280786 + }, + { + "alias": "Runtime Critical Area Analyzer", + "item_id": 137300 + }, + { + "alias": "Lord of Lust", + "item_id": 244914 + }, + { + "alias": "Lady of Lust", + "item_id": 244913 + }, + { + "alias": "Lust of the Xan", + "item_id": 280728 + }, + { + "alias": "Peh'Wer Pistol", + "item_id": 281505 + }, + { + "alias": "Troa'Ler Pistol", + "item_id": 281506 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients \n------------------------------\n\n The Xan Weapon Upgrade Device which drops from the Mitaar Hero, Ground Chief Vortexx and 12-Man instances can be tradeskilled with 30 different Shadowlands weapons/\n\n#L \"Xan Weapon Upgrade Device\" \"280786\"\n\n\n#L \"Nano Pylon\" \"121277\"\n\n\n#L \"Runtime Critical Area Analyzer\" \"137299\"\n\n\n#L \"Lord of Lust\" \"244914\"\n\nor\n#L \"Lady of Lust\" \"244913\"\n\n\n------------------------------\nRecipe \n------------------------------\n\nXan Weapon Upgrade Device\n+\nLord of Lust\n=\n\n#L \"Lust of the Xan\" \"280728\"\n\nor\n\nXan Weapon Upgrade Device\n+\nLady of Lust\n=\n\n#L \"Lust of the Xan\" \"280728\"\n\nNote: The Lust can be further upgraded with ql150+ shop bought items:\n\nNano Pylon\n+\nLust of the Xan\n=\n\n#L \"Peh'Wer Pistol\" \"281505\"\n\nRuntime Critical Area Analyzer\n+\nPeh'Wer Pistol\n=\n\n#L \"Troa'Ler Pistol\" \"281506\"" +} diff --git a/modules/standard/recipe/recipes/756.json b/modules/standard/recipe/recipes/756.json new file mode 100644 index 0000000..5f6ec3f --- /dev/null +++ b/modules/standard/recipe/recipes/756.json @@ -0,0 +1,25 @@ +{ + "name": "Pride of the Xan", + "author": "", + "items": [ + { + "alias": "Xan Weapon Upgrade Device", + "item_id": 280786 + }, + { + "alias": "Lord of Pride", + "item_id": 244783 + }, + { + "alias": "Lady of Pride", + "item_id": 244782 + }, + { + "alias": "Pride of the Xan", + "item_id": 280720 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients \n------------------------------\n\n The Xan Weapon Upgrade Device which drops from the Mitaar Hero, Ground Chief Vortexx and 12-Man instances can be tradeskilled with 30 different Shadowlands weapons/\n\n#L \"Xan Weapon Upgrade Device\" \"280786\"\n\n\n#L \"Lord of Pride\" \"244783\"\n\nor\n#L \"Lady of Pride\" \"244782\"\n\n\n------------------------------\nRecipe \n------------------------------\n\nXan Weapon Upgrade Device\n+\nLord of Pride\n=\n\n#L \"Pride of the Xan\" \"280720\"\n\nor\n\nXan Weapon Upgrade Device\n+\nLady of Pride\n=\n\n#L \"Pride of the Xan\" \"280720\"" +} diff --git a/modules/standard/recipe/recipes/757.json b/modules/standard/recipe/recipes/757.json new file mode 100644 index 0000000..1bc781a --- /dev/null +++ b/modules/standard/recipe/recipes/757.json @@ -0,0 +1,25 @@ +{ + "name": "Sloth of the Xan", + "author": "", + "items": [ + { + "alias": "Xan Weapon Upgrade Device", + "item_id": 280786 + }, + { + "alias": "Lord of Sloth", + "item_id": 244912 + }, + { + "alias": "Lady of Sloth", + "item_id": 244911 + }, + { + "alias": "Sloth of the Xan", + "item_id": 280727 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients \n------------------------------\n\n The Xan Weapon Upgrade Device which drops from the Mitaar Hero, Ground Chief Vortexx and 12-Man instances can be tradeskilled with 30 different Shadowlands weapons/\n\n#L \"Xan Weapon Upgrade Device\" \"280786\"\n\n\n#L \"Lord of Sloth\" \"244912\"\n\nor\n#L \"Lady of Sloth\" \"244911\"\n\n\n------------------------------\nRecipe \n------------------------------\n\nXan Weapon Upgrade Device\n+\nLord of Sloth\n=\n\n#L \"Sloth of the Xan\" \"280727\"\n\nor\n\nXan Weapon Upgrade Device\n+\nLady of Sloth\n=\n\n#L \"Sloth of the Xan\" \"280727\"" +} diff --git a/modules/standard/recipe/recipes/758.json b/modules/standard/recipe/recipes/758.json new file mode 100644 index 0000000..6be2dd0 --- /dev/null +++ b/modules/standard/recipe/recipes/758.json @@ -0,0 +1,29 @@ +{ + "name": "Kuma Tonfa", + "author": "", + "items": [ + { + "alias": "Xan Weapon Upgrade Device", + "item_id": 280786 + }, + { + "alias": "Lord of Wisdom", + "item_id": 293997 + }, + { + "alias": "Lady of Wisdom", + "item_id": 294000 + }, + { + "alias": "Kuma Tonfa - Right Hand", + "item_id": 293995 + }, + { + "alias": "Kuma Tonfa - Left Hand", + "item_id": 281962 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients \n------------------------------\n\n The Xan Weapon Upgrade Device which drops from the Mitaar Hero, Ground Chief Vortexx and 12-Man instances can be tradeskilled with 30 different Shadowlands weapons/\n\n#L \"Xan Weapon Upgrade Device\" \"280786\"\n\n\n#L \"Lord of Wisdom\" \"293997\"\n\nor\n#L \"Lady of Wisdom\" \"294000\"\n\n\n------------------------------\nRecipe \n------------------------------\n\nXan Weapon Upgrade Device\n+\nLord of Wisdom\n=\n\n#L \"Kuma Tonfa - Right Hand\" \"293995\"\n\nor\n\nXan Weapon Upgrade Device\n+\nLady of Wisdom\n=\n\n#L \"Kuma Tonfa - Left Hand\" \"281962\"" +} diff --git a/modules/standard/recipe/recipes/759.json b/modules/standard/recipe/recipes/759.json new file mode 100644 index 0000000..918b7a1 --- /dev/null +++ b/modules/standard/recipe/recipes/759.json @@ -0,0 +1,21 @@ +{ + "name": "Dusk of the Xan", + "author": "", + "items": [ + { + "alias": "Xan Weapon Upgrade Device", + "item_id": 280786 + }, + { + "alias": "Sword of Dusk", + "item_id": 246256 + }, + { + "alias": "Dusk of the Xan", + "item_id": 280730 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients \n------------------------------\n\n The Xan Weapon Upgrade Device which drops from the Mitaar Hero, Ground Chief Vortexx and 12-Man instances can be tradeskilled with 30 different Shadowlands weapons/\n\n#L \"Xan Weapon Upgrade Device\" \"280786\"\n\n\n#L \"Sword of Dusk\" \"246256\"\n\n\n------------------------------\nRecipe \n------------------------------\n\nXan Weapon Upgrade Device\n+\nSword of Dusk\n=\n\n#L \"Dusk of the Xan\" \"280730\"" +} diff --git a/modules/standard/recipe/recipes/76.json b/modules/standard/recipe/recipes/76.json new file mode 100644 index 0000000..2988a85 --- /dev/null +++ b/modules/standard/recipe/recipes/76.json @@ -0,0 +1,21 @@ +{ + "name": "Notum Nuggets", + "author": "", + "items": [ + { + "alias": "Premium Sledgehammer of Doom", + "item_id": 129044 + }, + { + "alias": "Enriched Notum Nugget", + "item_id": 136637 + }, + { + "alias": "Notum Fragment", + "item_id": 136625 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients\n------------------------------\n\n#L \"Sledgehammer\" \"129044\"\n\n\n#L \"Enriched Notum Nugget\" \"136637\" \n\n\n------------------------------\nRecipe\n------------------------------\n\nSledgehammer\n+\nEnriched Notum Nugget\n=\n\n#L \"Notum Fragment\" \"136625\"\nSkills: | ST |\n\n------------------------------\nComments\n------------------------------\n\nAnother source of precious notum." +} diff --git a/modules/standard/recipe/recipes/760.json b/modules/standard/recipe/recipes/760.json new file mode 100644 index 0000000..c661c3e --- /dev/null +++ b/modules/standard/recipe/recipes/760.json @@ -0,0 +1,21 @@ +{ + "name": "Dawn of the Xan", + "author": "", + "items": [ + { + "alias": "Xan Weapon Upgrade Device", + "item_id": 280786 + }, + { + "alias": "Sword of Dawn", + "item_id": 246244 + }, + { + "alias": "Dawn of the Xan", + "item_id": 280729 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients \n------------------------------\n\n The Xan Weapon Upgrade Device which drops from the Mitaar Hero, Ground Chief Vortexx and 12-Man instances can be tradeskilled with 30 different Shadowlands weapons/\n\n#L \"Xan Weapon Upgrade Device\" \"280786\"\n\n\n#L \"Sword of Dawn\" \"246244\"\n\n\n------------------------------\nRecipe \n------------------------------\n\nXan Weapon Upgrade Device\n+\nSword of Dawn\n=\n\n#L \"Dawn of the Xan\" \"280729\"" +} diff --git a/modules/standard/recipe/recipes/761.json b/modules/standard/recipe/recipes/761.json new file mode 100644 index 0000000..fa0b90e --- /dev/null +++ b/modules/standard/recipe/recipes/761.json @@ -0,0 +1,77 @@ +{ + "name": "Ancient Spirit Stims", + "author": "", + "items": [ + { + "alias": "Ancient Medical Device", + "item_id": 267736 + }, + { + "alias": "Acid Gland Sample", + "item_id": 267743 + }, + { + "alias": "Fire Gland Sample", + "item_id": 267741 + }, + { + "alias": "Frost Gland Sample", + "item_id": 267742 + }, + { + "alias": "Radioactive Gland Sample", + "item_id": 267744 + }, + { + "alias": "Venom Gland Sample", + "item_id": 267745 + }, + { + "alias": "Sample of a chemical based compound", + "item_id": 267732 + }, + { + "alias": "Sample of a fire based compound", + "item_id": 267730 + }, + { + "alias": "Sample of a cold based compound", + "item_id": 267731 + }, + { + "alias": "Sample of a radioactive compound", + "item_id": 267733 + }, + { + "alias": "Sample of a poisonous compound", + "item_id": 267734 + }, + { + "alias": "Combined Bio Samples - Stage One", + "item_id": 267774 + }, + { + "alias": "Combined Bio Samples - Stage Two", + "item_id": 267775 + }, + { + "alias": "Combined Bio Samples - Stage Three", + "item_id": 267776 + }, + { + "alias": "Ancient Spirit Purge", + "item_id": 267793 + }, + { + "alias": "Combined Bio Samples - Stage Four", + "item_id": 267777 + }, + { + "alias": "Ancient Spirit Remedy", + "item_id": 267773 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients \n------------------------------\n\n The Ancient Spirit Purge helps get rid of debuffs. The Ancient Spirit Remedy will heal both your health and nano. All of the parts drop from Albtraum\n\n#L \"Ancient Medical Device\" \"267736\"\n\nNote:To build your Ancient Medical Device, go here: #L \"Ancient Medical Device\" \"/tell recipe 598\"\n\n#L \"Acid Gland Sample\" \"267743\"\n\n\n#L \"Fire Gland Sample\" \"267741\"\n\n\n#L \"Frost Gland Sample\" \"267742\"\n\n\n#L \"Radioactive Gland Sample\" \"267744\"\n\n\n#L \"Venom Gland Sample\" \"267745\"\n\n\n------------------------------\nRecipe \n------------------------------\n\nAncient Medical Device\n+\nAcid Gland Sample\n=\n\n#L \"Sample of a chemical based compound\" \"267732\"\nSkills: | PT 1750 |\n\nAncient Medical Device\n+\nFire Gland Sample\n=\n\n#L \"Sample of a fire based compound\" \"267730\"\nSkills: | PT 1750 |\n\nAncient Medical Device\n+\nFrost Gland Sample\n=\n\n#L \"Sample of a cold based compound\" \"267731\"\nSkills: | PT 1750 |\n\nAncient Medical Device\n+\nRadioactive Gland Sample\n=\n\n#L \"Sample of a radioactive based compound\" \"267733\"\nSkills: | PT 1750 |\n\nAncient Medical Device\n+\nVenom Gland Sample\n=\n\n#L \"Sample of a poisonous based compound\" \"267734\"\nSkills: | PT 1750 |\n\n------------------------------\nAncient Spirit Purge \n------------------------------\n\nSample of a fire based compound\n+\nSample of a cold based compound\n=\n\n#L \"Combined Bio Samples - Stage One\" \"267774\"\nSkills: | 5.5 x QL in PT |\n\nCombined Bio Samples - Stage One\n+\nSample of a chemical based compound\n=\n\n#L \"Combined Bio Samples - Stage Two\" \"267775\"\nSkills: | 5.5 x QL in PT |\n\nCombined Bio Samples - Stage Two\n+\nSample of a radioactive based compound\n=\n\n#L \"Combined Bio Samples - Stage Three\" \"267776\"\nSkills: | 5.5 x QL in PT |\n\nAncient Medical Device\n+\nCombined Bio Samples - Stage Three\n=\n\n#L \"Ancient Spirit Purge\" \"267793\"\nSkills: | 5.5 x QL in PT |\n\n------------------------------\nAncient Spirit Remedy \n------------------------------\n\nCombined Bio Samples - Stage Three\n+\nSample of a radioactive based compound\n=\n\n#L \"Combined Bio Samples - Stage Four\" \"267777\"\nSkills: | 6 x QL in PT |\n\nAncient Medical Device\n+\nCombined Bio Samples - Stage Four\n=\n\n#L \"Ancient Spirit Purge\" \"267773\"\nSkills: | 6 x QL in PT |" +} diff --git a/modules/standard/recipe/recipes/762.json b/modules/standard/recipe/recipes/762.json new file mode 100644 index 0000000..eb76081 --- /dev/null +++ b/modules/standard/recipe/recipes/762.json @@ -0,0 +1,21 @@ +{ + "name": "Android NCU Injector", + "author": "", + "items": [ + { + "alias": "Permafrost Melting Tool", + "item_id": 269805 + }, + { + "alias": "Frozen Android NCU Injector", + "item_id": 269841 + }, + { + "alias": "Android NCU Injector", + "item_id": 269840 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients \n------------------------------\n\n The NCU Injector adds 150 NCU to your pet. The Permafrost Melting Tool is a reward for quests in Penumbra and Frozen Android NCU drops in Alappaa.\n\n#L \"Permafrost Melting Tool\" \"269805\"\n\nNote:To build your Permafrost Melting Tool, go here: #L \"Permafrost Melting Tool\" \"/tell recipe 763\"\n\n#L \"Frozen Android NCU Injector\" \"269841\"\n\n\n------------------------------\nRecipe \n------------------------------\n\nPermafrost Melting Tool\n+\nFrozen Android NCU Injector\n=\n\n#L \"Android NCU Injector\" \"269840\"\nSkills: | ME 1200 |" +} diff --git a/modules/standard/recipe/recipes/763.json b/modules/standard/recipe/recipes/763.json new file mode 100644 index 0000000..5092d80 --- /dev/null +++ b/modules/standard/recipe/recipes/763.json @@ -0,0 +1,29 @@ +{ + "name": "Permafrost Melting Tool", + "author": "", + "items": [ + { + "alias": "Incomplete Permafrost Melting Tool", + "item_id": 269804 + }, + { + "alias": "Permafrost Powered Tubes", + "item_id": 269810 + }, + { + "alias": "Permafrost Battery", + "item_id": 269809 + }, + { + "alias": "Inactive Permafrost Melting Tool", + "item_id": 269803 + }, + { + "alias": "Permafrost Melting Tool", + "item_id": 269805 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients \n------------------------------\n\n The parts for the tool can be acquired by doing the Xan Civilization Quest in Penumbra.\n\n#L \"Incomplete Permafrost Melting Tool\" \"269804\"\n\n\n#L \"Permafrost Powered Tubes\" \"269810\"\n\n\n#L \"Permafrost Battery\" \"269809\"\n\n\n------------------------------\nRecipe \n------------------------------\n\nIncomplete Permafrost Melting Tool\n+\nPermafrost Powered Tubes\n=\n\n#L \"Inactive Permafrost Melting Tool\" \"269803\"\nSkills: | 1250 CL |\n\nInactive Permafrost Melting Tool\n+\nPermafrost Battery\n=\n\n#L \"Permafrost Melting Tool\" \"269805\"\nSkills: | 1250 CL |" +} diff --git a/modules/standard/recipe/recipes/764.json b/modules/standard/recipe/recipes/764.json new file mode 100644 index 0000000..61292e4 --- /dev/null +++ b/modules/standard/recipe/recipes/764.json @@ -0,0 +1,41 @@ +{ + "name": "Bacchante's Anun Wings", + "author": "", + "items": [ + { + "alias": "Anun Leg", + "item_id": 248932 + }, + { + "alias": "Premium E-Beamer", + "item_id": 122139 + }, + { + "alias": "Bacchante's Anun Wings", + "item_id": 248934 + }, + { + "alias": "Quality E-Beamer", + "item_id": 122132 + }, + { + "alias": "Balanced E-Beamer", + "item_id": 122134 + }, + { + "alias": "Fine-Tuned E-Beamer", + "item_id": 122136 + }, + { + "alias": "Deluxe E-Beamer", + "item_id": 122138 + }, + { + "alias": "E-Beamer", + "item_id": 122130 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients \n------------------------------\n\n This meal adds 50 fire damage for 30 seconds.\n\n#L \"Anun Leg\" \"248932\"\n\n\n#L \"Premium E-Beamer\" \"122139\"\n\n\n------------------------------\nRecipe \n------------------------------\n\nAnun Leg\n+\nPremium E-Beamer\n=\n\n#L \"Bacchante's Anun Wings\" \"248934\"\nSkills: | 4 x QL Ranged Energy and E-Beamer has to be 80% of the QL of the Wings |\nNote: the Beamer must be one of these variations: #L \"Premium E-Beamer\" \"122139\" - #L \"Quality E-Beamer\" \"122131\" - #L \"Balanced E-Beamer\" \"122134\" - \"#L \"Fine-Tuned E-Beamer\" \"122136\" - #L \"Deluxe E-Beamer\" \"122137\" or #L \"E-Beamer\" \"122129\"" +} diff --git a/modules/standard/recipe/recipes/765.json b/modules/standard/recipe/recipes/765.json new file mode 100644 index 0000000..0f7d76e --- /dev/null +++ b/modules/standard/recipe/recipes/765.json @@ -0,0 +1,61 @@ +{ + "name": "Blade of Khione's Will", + "author": "", + "items": [ + { + "alias": "Blade of Khione", + "item_id": 269513 + }, + { + "alias": "Soul of the Jester", + "item_id": 274653 + }, + { + "alias": "Soul of the Ranger", + "item_id": 274654 + }, + { + "alias": "Soul of the Summoner", + "item_id": 274651 + }, + { + "alias": "Soul of the Healer", + "item_id": 274656 + }, + { + "alias": "Soul of the Gladiator", + "item_id": 274655 + }, + { + "alias": "Soul of the Illusionist", + "item_id": 274652 + }, + { + "alias": "Dull Combined Soul Crystal", + "item_id": 274723 + }, + { + "alias": "Dim Combined Soul Crystal", + "item_id": 274724 + }, + { + "alias": "Sparkling Combined Soul Crystal", + "item_id": 274725 + }, + { + "alias": "Shining Combined Soul Crystal", + "item_id": 274726 + }, + { + "alias": "Awakened Soul Crystal", + "item_id": 274727 + }, + { + "alias": "Blade of Khione's Will", + "item_id": 275134 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients \n------------------------------\n\n Upgrade your Blade of Khione from the Penumbra quest with Souls from the escaped prisoners\n\n#L \"Blade of Khione\" \"269513\"\n\n\n#L \"Soul of the Jester\" \"274653\"\n\n\n#L \"Soul of the Ranger\" \"274654\"\n\n\n#L \"Soul of the Summoner\" \"274651\"\n\n\n#L \"Soul of the Healer\" \"274656\"\n\n\n#L \"Soul of the Gladiator\" \"274655\"\n\n\n#L \"Soul of the Illusionist\" \"274652\"\n\n\n------------------------------\nRecipe \n------------------------------\n\nSoul of the Ranger\n+\nSoul of the Gladiator\n=\n\n#L \"Dull Combined Soul Crystal\" \"274723\"\n\nDull Combined Soul Crystal\n+\nSoul of the Healer\n=\n\n#L \"Dim Combined Soul Crystal\" \"274724\"\n\nDim Combined Soul Crystal\n+\nSoul of the Summoner\n=\n\n#L \"Sparkling Combined Soul Crystal\" \"274725\"\n\nSparkling Combined Soul Crystal\n+\nSoul of the Illusionist\n=\n\n#L \"Shining Combined Soul Crystal\" \"274726\"\n\nShining Combined Soul Crystal\n+\nSoul of the Jester\n=\n\n#L \"Awakened Soul Crystal\" \"274727\"\n\nBlade of Khione\n+\nAwakened Soul Crystal\n=\n\n#L \"Blade of Khione's Will\" \"275134\"" +} diff --git a/modules/standard/recipe/recipes/766.json b/modules/standard/recipe/recipes/766.json new file mode 100644 index 0000000..b22734e --- /dev/null +++ b/modules/standard/recipe/recipes/766.json @@ -0,0 +1,25 @@ +{ + "name": "Box of Silirrion Scones", + "author": "", + "items": [ + { + "alias": "Sealed Container of Foodstuffs", + "item_id": 258581 + }, + { + "alias": "Multi-Form", + "item_id": 156345 + }, + { + "alias": "Box of Silirrion Scones", + "item_id": 258582 + }, + { + "alias": "Cease and Desist Order", + "item_id": 258601 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients \n------------------------------\n\n Note: While only title 7 traders can make these, any title level 6+ character can use them. It will give the user a boost to their health.\n\n#L \"Sealed Container of Foodstuffs\" \"258581\"\n\n\n#L \"Multi-Form\" \"156345\"\n\n\n------------------------------\nRecipe \n------------------------------\n\nSealed Container of Foodstuffs\n+\nRight Click\n=\n\n#L \"Sealed Container of Foodstuffs Awaiting Credentials\" \"25895\"\n\nSealed Container of Foodstuffs Awaiting Credentials\n+\nMulti-Form\n=\n\n#L \"Box of Silirrion Scones\" \"258582\"\n\nNote: Sometimes right clicking the container will result in a:\n\n\n#L \"Cease and Desist Order\" \"258601\"\n\nThis item is used for the #L \"Trader Pet Mission\" \"/tell recipe XXX\"\n\n------------------------------\nComments \n------------------------------\n\nEating one of Scones will lock your Pharma Tech skill for 1800 seconds, but more importantly it will also boost your Health:\n+1000 Health for 3 min\n+800 Health for next 3 min\n+600 Health for next 3 min\n+400 Health for next 3 min\n+200 Health for last 3 min" +} diff --git a/modules/standard/recipe/recipes/767.json b/modules/standard/recipe/recipes/767.json new file mode 100644 index 0000000..ec7badf --- /dev/null +++ b/modules/standard/recipe/recipes/767.json @@ -0,0 +1,45 @@ +{ + "name": "Crude Upgrades", + "author": "", + "items": [ + { + "alias": "Crude Upgrade Kit", + "item_id": 274975 + }, + { + "alias": "Reflex Pistol", + "item_id": 274977 + }, + { + "alias": "Black Clan Heavy Tank Armor", + "item_id": 206662 + }, + { + "alias": "Hacked Medi-Blade", + "item_id": 274974 + }, + { + "alias": "Infused Solar-Powered Master Engineer Pistol", + "item_id": 274557 + }, + { + "alias": "Twitch Pistol", + "item_id": 274979 + }, + { + "alias": "Improved Black Clan Heavy Tank Armor", + "item_id": 274987 + }, + { + "alias": "Improved Hacked Medi-Blade", + "item_id": 274978 + }, + { + "alias": "Augmented Master Engineer Pistol", + "item_id": 274973 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients \n------------------------------\n\n Crude Upgrade Kits drop from Escaped Prisoners.\n\n#L \"Crude Upgrade Kit\" \"274975\"\n\n\n#L \"Reflex Pistol\" \"274977\"\n\n\n#L \"Black Clan Heavy Tank Armor\" \"206662\"\n\n\n#L \"Hacked Medi-Blade\" \"274974\"\n\n\n#L \"Infused Solar-Powered Master Engineer Pistol\" \"274557\"\n\n\n------------------------------\nRecipe \n------------------------------\n\nReflex Pistol\n+\nCrude Upgrade Kit\n=\n\n#L \"Twitch Pistol\" \"274979\"\n\nBlack Clan Heavy Tank Armor\n+\nCrude Upgrade Kit\n=\n\n#L \"Improved Black Clan Heavy Tank Armor\" \"274987\"\n\nHacked Medi-Blade\n+\nCrude Upgrade Kit\n=\n\n#L \"Improved Hacked Medi-Blade\" \"274978\"\n\nInfused Solar-Powered Master Engineer Pistol\n+\nCrude Upgrade Kit\n=\n\n#L \"Augmented Master Engineer Pistol\" \"274973\"\nSkills: | 1350 WS, 2100 ME and 2100 EE | " +} diff --git a/modules/standard/recipe/recipes/768.json b/modules/standard/recipe/recipes/768.json new file mode 100644 index 0000000..c35675a --- /dev/null +++ b/modules/standard/recipe/recipes/768.json @@ -0,0 +1,29 @@ +{ + "name": "Ice of Albtraum - Special Arrows", + "author": "", + "items": [ + { + "alias": "Ancient Scrap of Spirit Knowledge", + "item_id": 267677 + }, + { + "alias": "Ancient Scrap of Saturated Spirit Knowledge", + "item_id": 267679 + }, + { + "alias": "Crystalised Memories of an Archer", + "item_id": 267708 + }, + { + "alias": "Ancient Scrap of Condensed Spirit Knowledge", + "item_id": 267680 + }, + { + "alias": "Ice of Albtraum - Special Arrows", + "item_id": 267929 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients \n------------------------------\n\n All parts required for this process can be found in Albtraum.\n\n#L \"Ancient Scrap of Spirit Knowledge\" \"267677\"\n\n\n#L \"Ancient Scrap of Saturated Spirit Knowledge\" \"267679\"\n\n\n#L \"Crystalised Memories of an Archer\" \"267708\"\n\n\n------------------------------\nRecipe \n------------------------------\n\nAncient Scrap of Spirit Knowledge\n+\nAncient Scrap of Saturated Spirit Knowledge\n=\n\n#L \"Ancient Scrap of Condensed Spirit Knowledge\" \"267680\"\nSkills: | 1750 PT |\n\nAncient Scrap of Condensed Spirit Knowledge\n+\nCrystalised Memories of an Archer\n=\n\n#L \"Ice of Albtraum - Special Arrows\" \"267929\"\nSkills: | 1250 CL |" +} diff --git a/modules/standard/recipe/recipes/769.json b/modules/standard/recipe/recipes/769.json new file mode 100644 index 0000000..a834cbc --- /dev/null +++ b/modules/standard/recipe/recipes/769.json @@ -0,0 +1,25 @@ +{ + "name": "May Fly Throwing Grenade", + "author": "", + "items": [ + { + "alias": "Pseudo-Nano Multibenzonoxydant Sulphosalycilic Liquid", + "item_id": 165121 + }, + { + "alias": "Throwing Grenade Basic Kit", + "item_id": 165123 + }, + { + "alias": "Secured May Fly Throwing Grenade", + "item_id": 165119 + }, + { + "alias": "May Fly Throwing Grenade", + "item_id": 165117 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients \n------------------------------\n\n All parts can be foundin the tradeskill section of any general store\n\n#L \"Pseudo-Nano Multibenzonoxydant Sulphosalycilic Liquid\" \"165120\"\n\n\n#L \"Throwing Grenade Basic Kit\" \"165122\"\n\n\n------------------------------\nRecipe \n------------------------------\n\nPseudo-Nano Multibenzonoxydant Sulphosalycilic Liquid\n+\nThrowing Grenade Basic Kit\n=\n\n#L \"Secured May Fly Throwing Grenade\" \"165119\"\nSkills: | 4 x QL of the Kit in WS |\n\nNote: Right clicking it will activate the grenade. Once activated it becomes unstable and will disappear in 20 seconds. In a final note, the Secured May Fly Throwing Grenade is Unique so you can only have one at a time. The end result: \n\n\n#L \"May Fly Throwing Grenade\" \"165116\"" +} diff --git a/modules/standard/recipe/recipes/77.json b/modules/standard/recipe/recipes/77.json new file mode 100644 index 0000000..dcd9651 --- /dev/null +++ b/modules/standard/recipe/recipes/77.json @@ -0,0 +1,37 @@ +{ + "name": "Notum Saturated Metaplast Armor", + "author": "", + "items": [ + { + "alias": "Notum Saturated Metaplast Shell", + "item_id": 163355 + }, + { + "alias": "Screwdriver", + "item_id": 150922 + }, + { + "alias": "HSR - Sketch and Etch - Chestpiece", + "item_id": 162290 + }, + { + "alias": "Ultimate Mass Relocating Robot", + "item_id": 155592 + }, + { + "alias": "Mass Relocating Robot (Shape Hard Armor)", + "item_id": 162218 + }, + { + "alias": "Etched Pattern for Notum Saturated Metaplast Breastplate", + "item_id": 163361 + }, + { + "alias": "Notum Saturated Metaplast Breastplate", + "item_id": 163343 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients\n------------------------------\n\n#L \"Notum Saturated Metaplast Shell\" \"163355\"\n\n\n#L \"Programmed Photon Particle Emitter (Shape Hard Armor)\" \"162221\"\n\nor\n#L \"Screwdriver\" \"150922\"\n\n\nHSR - Sketch and Etch\n(ex:#L \"HSR - Sketch and Etch - Chestpiece\" \"162290\")\n\n\n#L \"Mass Relocating Robot\" \"155592\"\n\n\n------------------------------\nRecipe\n------------------------------\n\nProgrammed Photon Particle Emitter (Shape Hard Armor)\n+\nMass Relocating Robot\n=\n\n#L \"Mass Relocating Robot (Shape Hard Armor)\" \"162218\"\nSkills: | 2.5EE,2.5ME,2.5NP |\n\n------------------------------\n\nNotum Saturated Metaplast Shell\n+\nHSR - Sketch and Etch - Chestpiece\n=\n\n#L \"Etched Pattern for Notum Saturated Metaplast Breastplate\" \"163361\"\nSkills: | CH |\n\n------------------------------\n\nMass Relocating Robot (Shape Hard Armor)\n+\nEtched Pattern for Notum Saturated Metaplast Breastplate\n=\n\n#L \"Notum Saturated Metaplast Breastplate\" \"163343\"\nSkills: | ?? |\n\n------------------------------\nComments\n------------------------------\n\nNano Technician wear only. Notum Saturated Metaplast Shells can be seldom found on Digglets, Moles, Scooplets or Shovelets, underground low level mobs. It's an interesting armor to make. Unfortunately the PPPE is incredibly expensive. You can use a Screwdriver instead of a Mass Relocating Robot (Shape Hard Armor) but the skills required for the process will be much higher !!" +} diff --git a/modules/standard/recipe/recipes/770.json b/modules/standard/recipe/recipes/770.json new file mode 100644 index 0000000..02123f5 --- /dev/null +++ b/modules/standard/recipe/recipes/770.json @@ -0,0 +1,21 @@ +{ + "name": "MTI SL70 RX Razorback Gargantua", + "author": "", + "items": [ + { + "alias": "Viral Weapon Upgrade", + "item_id": 248517 + }, + { + "alias": "MTI SL70 Garganthua", + "item_id": 124182 + }, + { + "alias": "MTI SL70 RX Razorback Gargantua", + "item_id": 249829 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients \n------------------------------\n\n#L \"Viral Weapon Upgrade\" \"248517\"\n\n\n#L \"MTI SL70 Garganthua\" \"124182\"\n\n\n------------------------------\nRecipe \n------------------------------\n\nViral Weapon Upgrade\n+\nMTI SL70 Garganthua\n=\n\n#L \"MTI SL70 RX Razorback Gargantua\" \"249829\"\nSkills: | |" +} diff --git a/modules/standard/recipe/recipes/771.json b/modules/standard/recipe/recipes/771.json new file mode 100644 index 0000000..78f5ca1 --- /dev/null +++ b/modules/standard/recipe/recipes/771.json @@ -0,0 +1,21 @@ +{ + "name": "Adapting Notum Lever", + "author": "", + "items": [ + { + "alias": "Viral Weapon Upgrade", + "item_id": 248517 + }, + { + "alias": "Premium Notum Lever", + "item_id": 130124 + }, + { + "alias": "Premium Adapting Notum Lever", + "item_id": 250163 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients \n------------------------------\n\n#L \"Viral Weapon Upgrade\" \"248517\"\n\n\n#L \"Premium Notum Lever\" \"130124\"\n\n\n------------------------------\nRecipe \n------------------------------\n\nViral Weapon Upgrade\n+\nPremium Notum Lever\n=\n\n#L \"Premium Adapting Notum Lever\" \"250163\"\nSkills: | |" +} diff --git a/modules/standard/recipe/recipes/772.json b/modules/standard/recipe/recipes/772.json new file mode 100644 index 0000000..4e6b5c8 --- /dev/null +++ b/modules/standard/recipe/recipes/772.json @@ -0,0 +1,21 @@ +{ + "name": "Bio-Energy Shield", + "author": "", + "items": [ + { + "alias": "Viral Weapon Upgrade", + "item_id": 248517 + }, + { + "alias": "Premium Energy Shield", + "item_id": 122386 + }, + { + "alias": "Premium Bio-Energy Shield", + "item_id": 249016 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients \n------------------------------\n\n#L \"Viral Weapon Upgrade\" \"248517\"\n\n\n#L \"Premium Energy Shield\" \"122386\"\n\n\n------------------------------\nRecipe \n------------------------------\n\nViral Weapon Upgrade\n+\nPremium Energy Shield\n=\n\n#L \"Premium Bio-Energy Shield\" \"249016\"\nSkills: | |" +} diff --git a/modules/standard/recipe/recipes/773.json b/modules/standard/recipe/recipes/773.json new file mode 100644 index 0000000..c8b50b0 --- /dev/null +++ b/modules/standard/recipe/recipes/773.json @@ -0,0 +1,21 @@ +{ + "name": "Variable Density Tanto", + "author": "", + "items": [ + { + "alias": "Viral Weapon Upgrade", + "item_id": 248517 + }, + { + "alias": "Premium Tanto", + "item_id": 144100 + }, + { + "alias": "Premium Variable Density Tanto", + "item_id": 249079 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients \n------------------------------\n\n#L \"Viral Weapon Upgrade\" \"248517\"\n\n\n#L \"Premium Tanto\" \"144100\"\n\n\n------------------------------\nRecipe \n------------------------------\n\nViral Weapon Upgrade\n+\nPremium Tanto\n=\n\n#L \"Premium Variable Density Tanto\" \"249079\"\nSkills: | |" +} diff --git a/modules/standard/recipe/recipes/774.json b/modules/standard/recipe/recipes/774.json new file mode 100644 index 0000000..5ca2ebd --- /dev/null +++ b/modules/standard/recipe/recipes/774.json @@ -0,0 +1,21 @@ +{ + "name": "Xnemth Plasmaprojector", + "author": "", + "items": [ + { + "alias": "Viral Weapon Upgrade", + "item_id": 248517 + }, + { + "alias": "Premium Plasmaprojector", + "item_id": 121892 + }, + { + "alias": "Premium Xnemth Plasmaprojector", + "item_id": 248626 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients \n------------------------------\n\n#L \"Viral Weapon Upgrade\" \"248517\"\n\n\n#L \"Premium Plasmaprojector\" \"121892\"\n\n\n------------------------------\nRecipe \n------------------------------\n\nViral Weapon Upgrade\n+\nPremium Plasmaprojector\n=\n\n#L \"Premium Xnemth Plasmaprojector\" \"248626\"\nSkills: | |" +} diff --git a/modules/standard/recipe/recipes/775.json b/modules/standard/recipe/recipes/775.json new file mode 100644 index 0000000..5dc8bde --- /dev/null +++ b/modules/standard/recipe/recipes/775.json @@ -0,0 +1,65 @@ +{ + "name": "Rebuilt Perennium Weapons", + "author": "", + "items": [ + { + "alias": "Superior Perennium Blaster", + "item_id": 246428 + }, + { + "alias": "Superior Perennium Sniper", + "item_id": 246414 + }, + { + "alias": "Superior Perennium Beamer", + "item_id": 246421 + }, + { + "alias": "Perennium Blaster Rebuild Kit", + "item_id": 260724 + }, + { + "alias": "Perennium Sniper Rebuild Kit", + "item_id": 260726 + }, + { + "alias": "Perennium Beamer Rebuild Kit", + "item_id": 260725 + }, + { + "alias": "Lord of Anger", + "item_id": 244802 + }, + { + "alias": "Lord of Angst", + "item_id": 244821 + }, + { + "alias": "Perennium Sniper Rebuild Kit", + "item_id": 260727 + }, + { + "alias": "Superior Rebuilt Perennium Sniper", + "item_id": 260720 + }, + { + "alias": "Perennium Beamer Rebuild Kit", + "item_id": 260728 + }, + { + "alias": "Superior Rebuilt Perennium Beamer", + "item_id": 260713 + }, + { + "alias": "Perennium Blaster Rebuild Kit", + "item_id": 260729 + }, + { + "alias": "Superior Rebuilt Perennium Blaster", + "item_id": 260706 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients \n------------------------------\n\n Parts from the Beast and the Spirit Quest from Inferno allow you to upgrade your Perennium weapon. Later on it can also be upgraded to a Xan weapon\n\n#L \"Superior Perennium Blaster\" \"246428\"\n\nor\n#L \"Superior Perennium Sniper\" \"246414\"\n\nor\n#L \"Superior Perennium Beamer\" \"246421\"\n\n\n#L \"Perennium Blaster Rebuild Kit\" \"260724\"\n\nor\n#L \"Perennium Sniper Rebuild Kit\" \"260726\"\n\nor\n#L \"Perennium Beamer Rebuild Kit\" \"260725\"\n\n\n#L \"Lord of Anger\" \"244802\"\n\nor\n#L \"Lord of Angst\" \"244821\"\n\nor\n#L \"Lord of Envy\" \"244836\"\n\n\n------------------------------\nRecipe \n------------------------------\nSuperior Rebuilt Perennium Sniper\n------------------------------\n\nLord of Angst\n+\nPerennium Sniper Rebuild Kit\n=\n\n#L \"Perennium Sniper Rebuild Kit\" \"260727\"\n\nPerennium Sniper Rebuild Kit\n+\nSuperior Perennium Sniper\n=\n\n#L \"Superior Rebuilt Perennium Sniper\" \"260720\"\n\n------------------------------\nSuperior Rebuilt Perennium Beamer\n------------------------------\n\nLord of Envy\n+\nPerennium Beamer Rebuild Kit\n=\n\n#L \"Perennium Beamer Rebuild Kit\" \"260728\"\n\nPerennium Sniper Rebuild Kit\n+\nSuperior Perennium Beamer\n=\n\n#L \"Superior Rebuilt Perennium Beamer\" \"260713\"\n\n------------------------------\nSuperior Rebuilt Perennium Blaster\n------------------------------\n\nLord of Envy\n+\nPerennium Blaster Rebuild Kit\n=\n\n#L \"Perennium Blaster Rebuild Kit\" \"260729\"\n\nPerennium Sniper Rebuild Kit\n+\nSuperior Perennium Blaster\n=\n\n#L \"Superior Rebuilt Perennium Blaster\" \"260706\"" +} diff --git a/modules/standard/recipe/recipes/776.json b/modules/standard/recipe/recipes/776.json new file mode 100644 index 0000000..48e9b88 --- /dev/null +++ b/modules/standard/recipe/recipes/776.json @@ -0,0 +1,37 @@ +{ + "name": "Sword of Dusk - Sword of Dawn", + "author": "", + "items": [ + { + "alias": "Xan Weapon Upgrade Device", + "item_id": 280786 + }, + { + "alias": "Novictum Seed", + "item_id": 246817 + }, + { + "alias": "Sunset Hilt", + "item_id": 246814 + }, + { + "alias": "Notum Seed", + "item_id": 246818 + }, + { + "alias": "Sunrise Hilt", + "item_id": 246813 + }, + { + "alias": "Sword of Dusk", + "item_id": 246256 + }, + { + "alias": "Sword of Dawn", + "item_id": 246244 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients \n------------------------------\n\n Drops in Pandemonium, requires 30.000 faction to wear so neutrals can not use it since they are capped at 25.000. Both weapons can be upgraded with a #L \"Xan Weapon Upgrade Device\" \"280786\" \n\nOmni:\n#L \"Novictum Seed\" \"246817\"\n\nand\n#L \"Sunset Hilt\" \"246814\"\n\n\nor\n\nClan:\n#L \"Notum Seed\" \"246818\"\n\nand\n#L \"Sunrise Hilt\" \"246813\"\n\n\n------------------------------\nRecipe \n------------------------------\n\nNovictum Seed\n+\nSunset Hilt\n=\n\n#L \"Sword of Dusk\" \"246256\"\n\nor\n\nNotum Seed\n+\nSunrise Hilt\n=\n\n#L \"Sword of Dawn\" \"246244\"" +} diff --git a/modules/standard/recipe/recipes/777.json b/modules/standard/recipe/recipes/777.json new file mode 100644 index 0000000..aa3738d --- /dev/null +++ b/modules/standard/recipe/recipes/777.json @@ -0,0 +1,161 @@ +{ + "name": "Small Ingot Processing", + "author": "", + "items": [ + { + "alias": "Precious Metal Reclaimer", + "item_id": 150929 + }, + { + "alias": "Personal Furnace", + "item_id": 150930 + }, + { + "alias": "Flower Ring", + "item_id": 136605 + }, + { + "alias": "Small Silver Ingot", + "item_id": 150912 + }, + { + "alias": "Small Platinum Ingot", + "item_id": 151363 + }, + { + "alias": "Small Gold Ingot", + "item_id": 151369 + }, + { + "alias": "Golden Sphere", + "item_id": 136643 + }, + { + "alias": "Golden Ring", + "item_id": 136599 + }, + { + "alias": "Marriage Ring", + "item_id": 136607 + }, + { + "alias": "Bracer of Shielding - Projectile", + "item_id": 84163 + }, + { + "alias": "Bracelet of Ka", + "item_id": 136619 + }, + { + "alias": "Golden Bracer", + "item_id": 136621 + }, + { + "alias": "Golden Nugget", + "item_id": 136631 + }, + { + "alias": "Pink Ring", + "item_id": 136615 + }, + { + "alias": "OT Ring", + "item_id": 136609 + }, + { + "alias": "Silver Nugget", + "item_id": 136635 + }, + { + "alias": "Ring of Luck - Defensive", + "item_id": 84141 + }, + { + "alias": "Ring of Luck - Offensive", + "item_id": 84143 + }, + { + "alias": "Ring of Power - Elements", + "item_id": 84157 + }, + { + "alias": "Ring of Suffering", + "item_id": 136617 + }, + { + "alias": "Ring of Zern", + "item_id": 136601 + }, + { + "alias": "Snake Ring", + "item_id": 136611 + }, + { + "alias": "Toe-Ring", + "item_id": 136657 + }, + { + "alias": "Engagement Ring", + "item_id": 136603 + }, + { + "alias": "Augmented OT Ring", + "item_id": 160424 + }, + { + "alias": "Excellent IQ Ring", + "item_id": 84145 + }, + { + "alias": "Failed Ring of Flying", + "item_id": 40828 + }, + { + "alias": "Fashionable Energy Ring", + "item_id": 160739 + }, + { + "alias": "Silver Pearl", + "item_id": 136653 + }, + { + "alias": "Ring of Knowledge", + "item_id": 70255 + }, + { + "alias": "Gold 2 Sphere Pearl by Peters & Tool", + "item_id": 25825 + }, + { + "alias": "Ring of Presence", + "item_id": 160426 + }, + { + "alias": "Ring of the Nucleus Basalis", + "item_id": 202718 + }, + { + "alias": "Ring of Thorns", + "item_id": 136613 + }, + { + "alias": "Bracer of Growing Flesh", + "item_id": 84187 + }, + { + "alias": "Bracer of Shrinking Flesh", + "item_id": 84161 + }, + { + "alias": "Bracelet of Pacifism", + "item_id": 84188 + }, + { + "alias": "Liquid Silver", + "item_id": 150915 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients \n------------------------------\n\nSmall Silver Ingot, Small Gold Ingot and Small Platinum Ingot are used in variety of tradeskill processes. \n\n#L \"Precious Metal Reclaimer\" \"150929\"\n\n\n#L \"Personal Furnace\" \"150930\"\n\n\nA ring or bracer\n(ie: #L \"Flower Ring\" \"136605\")\n\n\n------------------------------\nRecipe \n------------------------------\n\nNote: The initial process involves x3.2 in Mechanical Engineering Skill when dealing with Gold, x2.75 in Mechanical Engineering Skill when dealing with Silver both based on the QL of the material\n\nFlower Ring\n+\nPrecious Metal Reclaimer\n=\n\n#L \"Small Silver Ingot\" \"150912\"\n\nNote: #L \"Small Platinum Ingot\" \"151363\" can only be found from Mobs, Dyna & Mission bosses and as chestloot. Silver and Gold ingots can also be tradeskilled from:\n\n- #L \"Small Gold Ingot\" \"151369\" :#L \"Golden Sphere\" \"136643\" - #L \"Golden Ring\" \"136599\" - #L \"Marriage Ring\" \"136607\" - #L \"Bracer of Shielding - Projectile\" \"84163\" - #L \"Bracelet of Ka\" \"136619\" - #L \"Golden Bracer\" \"136621\" - #L \"Golden Nugget\" \"136631\" - #L \"Pink Ring\" \"136615\"\n84163 84164 84165 84166 84167 84168 84169 84170 84171 84172 84173 84174 \n- #L \"Small Silver Ingot\" \"150912\" :#L Flower Ring\" \"136605\" - #L \"OT Ring\" \"136609\" - #L \"Silver Nugget\" \"136635\" - #L \"Ring of Luck - Defensive\" \"84142\" - #L \"Ring of Luck - Offensive\" \"84143\" - #L \"Ring of Power - Elements\" \"84157\" - #L \"Ring of Suffering\" \"136617\" - #L \"Ring of Zern\" \"136601\" - #L \"Snake Ring\" \"136611\" - #L \"Toe Ring\" \"136657\" - #L \"Engagement Ring\" \"136603\"\n84175 84176 84177 84178 84179 84180 84181 84182 84183 84184 84185 84186 84147 84148 84149 84150 84153 84154 84155 84156\n- Known exceptions (will not melt to ingots): #L \"Augmented OT Ring\" \"160424\" - #L \"Excellent IQ Ring\" \"84145\" - #L \"Failed Ring of Flying\" \"40828\" - #L \"Fashionable Energy Ring\" \"160739\" - #L \"Silver Pearl\" \"136653\" - #L \"Ring of Knowledge\" \"70255\" - #L \"Gold 2 Sphere Pearl by Peters & Tool\" \"25825\" - #L \"Ring of Presence\" \"160426\" - #L \"Ring of the Nucleus Basalis\" \"202718\" - #L \"Ring of Thorns\" \"136613\" - #L \"Bracer of Growing Flesh\" \"84187\" - #L \"Bracer of Shrinking Flesh\" \"84161\" - #L \"Bracelet of Pacisfism\" \"84188\"\n\n------------------------------\n\nNote:Melting down metal will take x3 for Silver, x3.4 for Gold and x3.8 for Platinum in Mechanical Engineering Skill based on the QL of the Ingot.\n\nSmall Silver Ingot\n+\nPersonal Furnace\n=\n\n#L \"Liquid Silver\" \"150915\"" +} diff --git a/modules/standard/recipe/recipes/778.json b/modules/standard/recipe/recipes/778.json new file mode 100644 index 0000000..a5ba3a0 --- /dev/null +++ b/modules/standard/recipe/recipes/778.json @@ -0,0 +1,205 @@ +{ + "name": "Bastion", + "author": "Kapacuk (RK2)", + "items": [ + { + "alias": "Inert Bacteriophage", + "item_id": 292507 + }, + { + "alias": "Virus Programming: Bacteriophage M73", + "item_id": 292509 + }, + { + "alias": "Virus Programming: Bacteriophage Phi X 3957", + "item_id": 292508 + }, + { + "alias": "Virus Programming: Bacteriophage F9", + "item_id": 292510 + }, + { + "alias": "Red Data Crystal", + "item_id": 292514 + }, + { + "alias": "Blue Data Crystal", + "item_id": 292515 + }, + { + "alias": "Green Data Crystal", + "item_id": 292516 + }, + { + "alias": "Pattern Conversion Device", + "item_id": 292517 + }, + { + "alias": "Nickel-Cobalt Ferrous Alloy", + "item_id": 292532 + }, + { + "alias": "Dacite Fiber", + "item_id": 292533 + }, + { + "alias": "Sealed Packet of Bilayer Graphene Sheets", + "item_id": 292529 + }, + { + "alias": "Mu-Negative Novictum Enriched Metamaterial", + "item_id": 292530 + }, + { + "alias": "Synchotronic Recombinator - Pocket Edition (Empty)", + "item_id": 292538 + }, + { + "alias": "Compressed Silane", + "item_id": 292524 + }, + { + "alias": "Potassium Nitrate", + "item_id": 292525 + }, + { + "alias": "VLS Synthesis Catalyst", + "item_id": 292526 + }, + { + "alias": "Bi-Isotropic Nano Media", + "item_id": 292528 + }, + { + "alias": "Suppressed Bacteriophage M73", + "item_id": 292512 + }, + { + "alias": "Contained Fatou Pattern", + "item_id": 292518 + }, + { + "alias": "Fatou Pattern Programming Utility Device", + "item_id": 292521 + }, + { + "alias": "Suppressed Bacteriophage Phi X 3957", + "item_id": 292511 + }, + { + "alias": "Contained Mandelbrot Pattern", + "item_id": 292519 + }, + { + "alias": "Mandelbrot Pattern Programming Utility Device", + "item_id": 292522 + }, + { + "alias": "Suppressed Bacteriophage F9", + "item_id": 292513 + }, + { + "alias": "Contained Collatz Pattern", + "item_id": 292520 + }, + { + "alias": "Collatz Pattern Programming Utility Device", + "item_id": 292523 + }, + { + "alias": "Ferrous Dacite Fiber", + "item_id": 292534 + }, + { + "alias": "Novictum-Enriched Graphene Metamaterial", + "item_id": 292531 + }, + { + "alias": "Compressed Composite Weave", + "item_id": 292527 + }, + { + "alias": "Synchotronic Recombinator - Pocket Edition (One of Five)", + "item_id": 292539 + }, + { + "alias": "Synchotronic Recombinator - Pocket Edition (Two of Five)", + "item_id": 292540 + }, + { + "alias": "Synchotronic Recombinator - Pocket Edition (Three of Five)", + "item_id": 292541 + }, + { + "alias": "Synchotronic Recombinator - Pocket Edition (Four of Five)", + "item_id": 292542 + }, + { + "alias": "Synchotronic Recombinator - Pocket Edition (Filled)", + "item_id": 292543 + }, + { + "alias": "Fatou Upgrade Plate", + "item_id": 292535 + }, + { + "alias": "Mandelbrot Upgrade Plate", + "item_id": 292536 + }, + { + "alias": "Collatz Upgrade Plate", + "item_id": 292537 + }, + { + "alias": "SSC \"Bastion\" Back Armor - Inactive", + "item_id": 293638 + }, + { + "alias": "SSC \"Bastion\" Back Armor - Fatou", + "item_id": 293634 + }, + { + "alias": "SSC \"Bastion\" Left Shoulder Armor - Inactive", + "item_id": 293643 + }, + { + "alias": "SSC \"Bastion\" Left Shoulder Armor - Fatou", + "item_id": 293641 + }, + { + "alias": "SSC \"Bastion\" Right Shoulder Armor - Inactive", + "item_id": 293653 + }, + { + "alias": "SSC \"Bastion\" Right Shoulder Armor - Fatou", + "item_id": 293651 + }, + { + "alias": "SSC \"Bastion\" Back Armor - Mandelbrot", + "item_id": 293633 + }, + { + "alias": "SSC \"Bastion\" Left Shoulder Armor - Mandelbrot", + "item_id": 293642 + }, + { + "alias": "SSC \"Bastion\" Right Shoulder Armor - Mandelbrot", + "item_id": 293649 + }, + { + "alias": "SSC \"Bastion\" Back Armor - Collatz", + "item_id": 292194 + }, + { + "alias": "SSC \"Bastion\" Left Shoulder Armor - Collatz", + "item_id": 291932 + }, + { + "alias": "SSC \"Bastion\" Right Shoulder Armor - Collatz", + "item_id": 291931 + } + ], + "steps": [], + "details": [], + "raw": "\n\n------------------------------\nIngredients \n------------------------------\n\n- 3x #L \"Inert Bacteriophage\" \"292507\"\n- 1x #L \"Virus Programming: Bacteriophage M73\" \"292509\"\n- 1x #L \"Virus Programming: Bacteriophage Phi X 3957\" \"292508\"\n- 1x #L \"Virus Programming: Bacteriophage F9\" \"292510\"\n- 1x #L \"Red Data Crystal\" \"292514\"\n- 1x #L \"Blue Data Crystal\" \"292515\"\n- 1x #L \"Green Data Crystal\" \"292516\"\n- 3x #L \"Pattern Conversion Device\" \"292517\"\n- 3x #L \"Nickel-Cobalt Ferrous Alloy\" \"292532\"\n- 3x #L \"Dacite Fiber\" \"292533\"\n- 3x #L \"Sealed Packet of Bilayer Graphene Sheets\" \"292529\"\n- 3x #L \"Mu-Negative Novictum Enriched Metamaterial\" \"292530\"\n- 3x #L \"Synchotronic Recombinator - Pocket Edition (Empty)\" \"292538\"\n- 3x #L \"Compressed Silane\" \"292524\"\n- 3x #L \"Potassium Nitrate\" \"292525\"\n- 3x #L \"VLS Synthesis Catalyst\" \"292526\"\n- 3x #L \"Bi-Isotropic Nano Media\" \"292528\"\n\n------------------------------\nRecipe\n------------------------------\n\nTradeskill process Step 1. \n- | | + = | #L \"Inert Bacteriophage\" \"292507\" + #L \"Virus Programming: Bacteriophage M73\" \"292509\" = #L \"Suppressed Bacteriophage M73\" \"292512\"\n- | | + = | #L \"Suppressed Bacteriophage M73\" \"292512\" + #L \"Red Data Crystal\" \"292514\" = #L \"Contained Fatou Pattern\" \"292518\"\n- | | + = | #L \"Contained Fatou Pattern\" \"292518\" + #L \"Pattern Conversion Device\" \"292517\" = #L \"Fatou Pattern Programming Utility Device\" \"292521\"\nStep 2. \n- | | + = | #L \"Inert Bacteriophage\" \"292507\" + #L \"Virus Programming: Bacteriophage Phi X 3957\" \"292508\" = #L \"Suppressed Bacteriophage Phi X 3957\" \"292511\"\n- | | + = | #L \"Suppressed Bacteriophage Phi X 3957\" \"292511\" + #L \"Blue Data Crystal\" \"292515\" = #L \"Contained Mandelbrot Pattern\" \"292519\"\n- | | + = | #L \"Contained Mandelbrot Pattern\" \"292519\" + #L \"Pattern Conversion Device\" \"292517\" = #L \"Mandelbrot Pattern Programming Utility Device\" \"292522\"\nStep 3. \n- | | + = | #L \"Inert Bacteriophage\" \"292507\" + #L \"Virus Programming: Bacteriophage F9\" \"292510\" = #L \"Suppressed Bacteriophage F9\" \"292513\"\n- | | + = | #L \"Suppressed Bacteriophage F9\" \"292513\" + #L \"Green Data Crystal\" \"292516\" = #L \"Contained Collatz Pattern\" \"292520\"\n- | | + = | #L \"Contained Collatz Pattern\" \"292520\" + #L \"Pattern Conversion Device\" \"292517\" = #L \"Collatz Pattern Programming Utility Device\" \"292523\"\nStep 4. (REPEAT 3 times) \n- | | + = | #L \"Nickel-Cobalt Ferrous Alloy\" \"292532\" + #L \"Dacite Fiber\" \"292533\" = #L \"Ferrous Dacite Fiber\" \"292534\"\n- | | + = | #L \"Sealed Packet of Bilayer Graphene Sheets\" \"292529\" + #L \"Mu-Negative Novictum Enriched Metamaterial\" \"292530\" = #L \"Novictum-Enriched Graphene Metamaterial\" \"292531\"\n- | | + = | #L \"Ferrous Dacite Fiber\" \"292534\" + #L \"Novictum-Enriched Graphene Metamaterial\" \"292531\" = #L \"Compressed Composite Weave\" \"292527\"\nStep 5. (REPEAT 3 TIMES) \n- | | + = | #L \"Compressed Silane\" \"292524\" + #L \"Synchotronic Recombinator - Pocket Edition (Empty)\" \"292538\" = #L \"Synchotronic Recombinator - Pocket Edition (One of Five)\" \"292539\"\n- | | + = | #L \"Potassium Nitrate\" \"292525\" + #L \"Synchotronic Recombinator - Pocket Edition (One of Five)\" \"292539\" = #L \"Synchotronic Recombinator - Pocket Edition (Two of Five)\" \"292540\"\n- | | + = | #L \"VLS Synthesis Catalyst\" \"292526\" + #L \"Synchotronic Recombinator - Pocket Edition (Two of Five)\" \"292540\" = #L \"Synchotronic Recombinator - Pocket Edition (Three of Five)\" \"292541\"\n- | | + = | #L \"Compressed Composite Weave\" \"292527\" + #L \"Synchotronic Recombinator - Pocket Edition (Three of Five)\" \"292541\" = #L \"Synchotronic Recombinator - Pocket Edition (Four of Five)\" \"292542\"\n- | | + = | #L \"Bi-Isotropic Nano Media\" \"292528\" + #L \"Synchotronic Recombinator - Pocket Edition (Four of Five)\" \"292542\" = #L \"Synchotronic Recombinator - Pocket Edition (Filled)\" \"292543\"\nStep 6. \n- | | + = | #L \"Fatou Pattern Programming Utility Device\" \"292521\" + #L \"Synchotronic Recombinator - Pocket Edition (Filled)\" \"292543\" = #L \"Fatou Upgrade Plate\" \"292535\"\nStep 7. \n- | | + = | #L \"Mandelbrot Pattern Programming Utility Device\" \"292522\" + #L \"Synchotronic Recombinator - Pocket Edition (Filled)\" \"292543\" = #L \"Mandelbrot Upgrade Plate\" \"292536\"\nStep 8. \n- | | + = | #L \"Collatz Pattern Programming Utility Device\" \"292523\" + #L \"Synchotronic Recombinator - Pocket Edition (Filled)\" \"292543\" = #L \"Collatz Upgrade Plate\" \"292537\"\nStep 9. \n- | | + = | #L \"SSC "e;Bastion"e; Back Armor - Inactive\" \"293638\" + #L \"Fatou Upgrade Plate\" \"292535\" = #L \"SSC "e;Bastion"e; Back Armor - Fatou\" \"293634\"\nor \n- | | + = | #L \"SSC "e;Bastion"e; Left Shoulder Armor - Inactive\" \"293643\" + #L \"Fatou Upgrade Plate\" \"292535\" = #L \"SSC "e;Bastion"e; Left Shoulder Armor - Fatou\" \"293641\"\nor \n- | | + = | #L \"SSC "e;Bastion"e; Right Shoulder Armor - Inactive\" \"293653\" + #L \"Fatou Upgrade Plate\" \"292535\" = #L \"SSC "e;Bastion"e; Right Shoulder Armor - Fatou\" \"293651\"\nStep 10. \n- | | + = | #L \"SSC "e;Bastion"e; Back Armor - Fatou\" \"293634\" + #L \"Mandelbrot Upgrade Plate\" \"292536\" = #L \"SSC "e;Bastion"e; Back Armor - Mandelbrot\" \"293633\"\nor \n- | | + = | #L \"SSC "e;Bastion"e; Left Shoulder Armor - Fatou\" \"293641\" + #L \"Mandelbrot Upgrade Plate\" \"292536\" = #L \"SSC "e;Bastion"e; Left Shoulder Armor - Mandelbrot\" \"293642\"\nor \n- | | + = | #L \"SSC "e;Bastion"e; Right Shoulder Armor - Fatou\" \"293651\" + #L \"Mandelbrot Upgrade Plate\" \"292536\" = #L \"SSC "e;Bastion"e; Right Shoulder Armor - Mandelbrot\" \"293649\"\nStep 11. \n- | | + = | #L \"SSC "e;Bastion"e; Back Armor - Mandelbrot\" \"293633\" + #L \"Collatz Upgrade Plate\" \"292537\" = #L \"SSC "e;Bastion"e; Back Armor - Collatz\" \"292194\"\nor \n- | | + = | #L \"SSC "e;Bastion"e; Left Shoulder Armor - Mandelbrot\" \"293642\" + #L \"Collatz Upgrade Plate\" \"292537\" = #L \"SSC "e;Bastion"e; Left Shoulder Armor - Collatz\" \"291932\"\nor \n- | | + = | #L \"SSC "e;Bastion"e; Right Shoulder Armor - Mandelbrot\" \"293649\" + #L \"Collatz Upgrade Plate\" \"292537\" = #L \"SSC "e;Bastion"e; Right Shoulder Armor - Collatz\" \"291931\"\n\nNo trade skills required. Not sure =)" +} diff --git a/modules/standard/recipe/recipes/779.json b/modules/standard/recipe/recipes/779.json new file mode 100644 index 0000000..fe01fec --- /dev/null +++ b/modules/standard/recipe/recipes/779.json @@ -0,0 +1,44 @@ +{ + "name": "Perfected Diamondine Kick Pistol", + "author": "Illork", + "items": [ + { + "alias": "Diamondine Kick Pistol", + "item_id": 165168, + "ql": 200 + }, + { + "alias": "Inertial Adjustment Processing Unit", + "item_id": 257959, + "ql": 250 + }, + { + "alias": "Screwdriver", + "item_id": 150922, + "ql": 10 + }, + { + "alias": "Low Recoil Diamondine Kick Pistol", + "item_id": 257109, + "ql": 300 + }, + { + "alias": "Perfected Diamondine Kick Pistol", + "item_id": 301901, + "ql": 300 + } + ], + "steps": [ + { + "source": "Inertial Adjustment Processing Unit", + "target": "Diamondine Kick Pistol", + "result": "Low Recoil Diamondine Kick Pistol" + }, + { + "source": "Screwdriver", + "target": "Low Recoil Diamondine Kick Pistol", + "result": "Perfected Diamondine Kick Pistol", + "skills": "2250 WS,2175 ME,2100 EE" + } + ] +} \ No newline at end of file diff --git a/modules/standard/recipe/recipes/78.json b/modules/standard/recipe/recipes/78.json new file mode 100644 index 0000000..f474b9b --- /dev/null +++ b/modules/standard/recipe/recipes/78.json @@ -0,0 +1,33 @@ +{ + "name": "Notum Threaded Backpack", + "author": "", + "items": [ + { + "alias": "Notum Threaded Zodiacal Blanket", + "item_id": 164563 + }, + { + "alias": "Field Quantum Physics All-Purpose Tool", + "item_id": 164558 + }, + { + "alias": "Advanced Hacker Tool", + "item_id": 87814 + }, + { + "alias": "Hacked Field Quantum Physics Tool", + "item_id": 164560 + }, + { + "alias": "Unstable Space Reduction Chamber", + "item_id": 164562 + }, + { + "alias": "Notum Threaded Backpack", + "item_id": 164564 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients\n------------------------------\n\n#L \"Notum Threaded Zodiacal Blanket\" \"164563\"\n\n\n#L \"Field Quantum Physics All-Purpose Tool\" \"164558\" x 2\n\n\n#L \"Hacker Tool\" \"87814\"\n\n\n------------------------------\nRecipe\n------------------------------\n\nHacker Tool\n+\nField Quantum Physics All-Purpose Tool\n=\n\n#L \"Hacked Field Quantum Physics Tool\" \"164560\"\nSkills: | BE |\n\n------------------------------\n\nField Quantum Physics All-Purpose Tool\n+\nHacked Field Quantum Physics Tool\n=\n\n#L \"Unstable Space Reduction Chamber\" \"164562\"\nSkills: | ?? |\n\n------------------------------\n\nNotum Threaded Zodiacal Blanket\n+\nUnstable Space Reduction Chamber\n=\n\n#L \"Notum Threaded Backpack\" \"164564\"\nSkills: | ?? |\n\n------------------------------\nComments\n------------------------------\n\nNice back-pack for players level 75 and higher. Blankets drop from medusas." +} diff --git a/modules/standard/recipe/recipes/780.json b/modules/standard/recipe/recipes/780.json new file mode 100644 index 0000000..c87ae1c --- /dev/null +++ b/modules/standard/recipe/recipes/780.json @@ -0,0 +1,8 @@ +{ + "name": "Chacolate Salty Balls", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients\n------------------------------\n\n- 2/3 cup salted butter\n- 1 1/2 cups sugar\n- 1/4 cup brandy\n- 4 cups semisweet chocolate chips\n- 2 teaspoons vanilla extract\n- 4 eggs\n- 2 tablespoons cinnamon\n- 1 1/2 cups all-purpose flour\n- 1/2 teaspoon baking soda\n- 1/2 teaspoon table salt\n- Coarse sea salt, to taste\n\n\n------------------------------\nRecipe Directions\n------------------------------\n\n\nIn a saucepan, bring the butter, sugar and brandy to a boil, stirring constantly. Remove from the heat. Stir (with a wooden spoon) in 2 cups of chocolate chips until melted. Remember to give that spoon a lick! Cool mixture slightly. Stir in vanilla. In a large mixing bowl, beat the eggs. Gradually add the chocolate mixture and mix well. Combine the flour, baking soda and salt, then gradually add the dry ingredients to the chocolate mixture. Stir in any remaining chocolate chips. Spread into a greased baking pan. Bake at 325 degrees for 35-45 minutes or until a fork inserted in the center comes out clean. Careful not to burn your balls! Let cool just enough that it won't burn your hands. Meanwhile set up a small plate or cutting board with some of the sea salt on it. Scrape up the brownie mix, working around the edges. You don't want to use the hard edges for the balls. Begin shaping 1 inch balls out of the mix, give or take in size. Roll the balls in the salt. Do this very lightly (I suggest you do NOT try to emulate the picture), a little sea salt goes a very long way. If you do happen to oversalt, just brush the excess salt crystals off. Too much salt is bad, mmmkay? You're done, put 'em in your mouth and suck 'em!" +} diff --git a/modules/standard/recipe/recipes/781.json b/modules/standard/recipe/recipes/781.json new file mode 100644 index 0000000..f335642 --- /dev/null +++ b/modules/standard/recipe/recipes/781.json @@ -0,0 +1,8 @@ +{ + "name": "Windguaerd's Peruvian Ceviche", + "author": "", + "items": [], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients\n------------------------------\n\n- 2 lbs tilapia fillets or 2 lbs other firm white fish fillets, cubed\n- 8 -10 garlic cloves, chopped\n- 1 teaspoon salt\n- 1/2 teaspoon black pepper\n- 2 teaspoons fresh cilantro, chopped\n- 8 -12 limes, freshly squeezed and strained to remove pulp, enough to cover fish\n- 1 red onion, thinly sliced and rinsed\n\n------------------------------\nOptional:\n------------------------------\n\n- 1 habanero pepper, seeded and chopped (or real Peruvian Aji Amarillo, if you can find it)\n\n------------------------------\nRecipe Directions\n------------------------------\n\n\n1. Combine all ingredients except red onion and mix well.\n2. Place red onion on top and let it marinate in the refrigerator for at least 2-3 hours before serving.\n3. Before serving, mix well and serve with lettuce, corn, avocado or other cold salad vegetables on the side.\n4. It is important to use a juicer that presses the juice out of the limes, not one that will tear the membrane of the lime sections since this will make the lime juice bitter.\n\n\nServings: 6" +} diff --git a/modules/standard/recipe/recipes/782.json b/modules/standard/recipe/recipes/782.json new file mode 100644 index 0000000..df1ff8d --- /dev/null +++ b/modules/standard/recipe/recipes/782.json @@ -0,0 +1,178 @@ +{ + "name": "Pyramid of Home", + "author": "Illork", + "items": [ + { + "alias": "Portable Notum Infusion Device", + "item_id": 302932, + "ql": 300 + }, + { + "alias": "Inert Sigil of Alighieri", + "item_id": 302926, + "ql": 300 + }, + { + "alias": "Charged Sigil of Alighieri", + "item_id": 302927, + "ql": 300 + }, + { + "alias": "Armplates of Elimination", + "item_id": 244712, + "ql": 300 + }, + { + "alias": "Awakened Armplates of Elimination", + "item_id": 302724, + "ql": 300 + }, + { + "alias": "Boots of Concourse", + "item_id": 244714, + "ql": 300 + }, + { + "alias": "Awakened Boots of Concourse", + "item_id": 302726, + "ql": 300 + }, + { + "alias": "Gauntlets of Deformation", + "item_id": 244704, + "ql": 300 + }, + { + "alias": "Awakened Gauntlets of Deformation", + "item_id": 302722, + "ql": 300 + }, + { + "alias": "Greaves of Malfeasance", + "item_id": 244715, + "ql": 300 + }, + { + "alias": "Awakened Greaves of Malfeasance", + "item_id": 302727, + "ql": 300 + }, + { + "alias": "Sleeves of Senseless Violence", + "item_id": 244705, + "ql": 300 + }, + { + "alias": "Awakened Sleeves of Senseless Violence", + "item_id": 302723, + "ql": 300 + }, + { + "alias": "Inert Sigil of Machiavelli", + "item_id": 302928, + "ql": 300 + }, + { + "alias": "Charged Sigil of Machiavelli", + "item_id": 302929, + "ql": 300 + }, + { + "alias": "Burden of Competence", + "item_id": 244718, + "ql": 300 + }, + { + "alias": "Awakened Burden of Competence", + "item_id": 302730, + "ql": 300 + }, + { + "alias": "Cuirass of Obstinacy", + "item_id": 244717, + "ql": 300 + }, + { + "alias": "Awakened Cuirass of Obstinacy", + "item_id": 302729, + "ql": 300 + }, + { + "alias": "Helmet of Hypocrisy", + "item_id": 244716, + "ql": 300 + }, + { + "alias": "Awakened Helmet of Hypocrisy", + "item_id": 302728, + "ql": 300 + }, + { + "alias": "Shoulderplates of Sabotage", + "item_id": 244713, + "ql": 300 + }, + { + "alias": "Awakened Shoulderplates of Sabotage", + "item_id": 302725, + "ql": 300 + } + ], + "steps": [ + { + "source": "Portable Notum Infusion Device", + "target": "Inert Sigil of Alighieri", + "result": "Charged Sigil of Alighieri" + }, + { + "source": "Charged Sigil of Alighieri", + "target": "Armplates of Elimination", + "result": "Awakened Armplates of Elimination" + }, + { + "source": "Charged Sigil of Alighieri", + "target": "Boots of Concourse", + "result": "Awakened Boots of Concourse" + }, + { + "source": "Charged Sigil of Alighieri", + "target": "Gauntlets of Deformation", + "result": "Awakened Gauntlets of Deformation" + }, + { + "source": "Charged Sigil of Alighieri", + "target": "Greaves of Malfeasance", + "result": "Awakened Greaves of Malfeasance" + }, + { + "source": "Charged Sigil of Alighieri", + "target": "Sleeves of Senseless Violence", + "result": "Awakened Sleeves of Senseless Violence" + }, + { + "source": "Portable Notum Infusion Device", + "target": "Inert Sigil of Machiavelli", + "result": "Charged Sigil of Machiavelli" + }, + { + "source": "Charged Sigil of Machiavelli", + "target": "Burden of Competence", + "result": "Awakened Burden of Competence" + }, + { + "source": "Charged Sigil of Machiavelli", + "target": "Cuirass of Obstinacy", + "result": "Awakened Cuirass of Obstinacy" + }, + { + "source": "Charged Sigil of Machiavelli", + "target": "Helmet of Hypocrisy", + "result": "Awakened Helmet of Hypocrisy" + }, + { + "source": "Charged Sigil of Machiavelli", + "target": "Shoulderplates of Sabotage", + "result": "Awakened Shoulderplates of Sabotage" + } + ] +} \ No newline at end of file diff --git a/modules/standard/recipe/recipes/79.json b/modules/standard/recipe/recipes/79.json new file mode 100644 index 0000000..ecb8685 --- /dev/null +++ b/modules/standard/recipe/recipes/79.json @@ -0,0 +1,49 @@ +{ + "name": "Omni-Tek Steel-Ribbed Armor", + "author": "", + "items": [ + { + "alias": "High-Quality Steel-Ribbed Armor Boots", + "item_id": 22158 + }, + { + "alias": "Advanced Hacker Tool", + "item_id": 87814 + }, + { + "alias": "Omnifier", + "item_id": 208312 + }, + { + "alias": "Hacked Steel-Ribbed Armor Boots", + "item_id": 245948 + }, + { + "alias": "Omni-Tek Steel-Ribbed Armor Boots", + "item_id": 245936 + }, + { + "alias": "Omni-Tek Steel-Ribbed Armor Gloves", + "item_id": 245940 + }, + { + "alias": "Omni-Tek Steel-Ribbed Armor Helmet", + "item_id": 245934 + }, + { + "alias": "Omni-Tek Steel-Ribbed Armor Pants", + "item_id": 245938 + }, + { + "alias": "Omni-Tek Steel-Ribbed Armor Sleeves", + "item_id": 245932 + }, + { + "alias": "Omni-Tek Steel-Ribbed Body Armor", + "item_id": 245930 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients\n------------------------------\n\na part of Steel-Ribbed Armor\n( ie #L \"High-Quality Steel-Ribbed Armor Boots\" \"22158\" )\n\n\n#L \"Hacker Tool\" \"87814\"\n\n\n#L \"Omnifier\" \"208312\"\n\n\n------------------------------\nRecipe\n------------------------------\n\nHacker Tool\n+\na part of Steel-Ribbed Armor\n=\n\na part of Hacked Steel-Ribbed Armor\n( ie : #L \"Hacked Steel-Ribbed Armor Boots\" \"245948\" )\nSkills: | BE |\n\n------------------------------\n\nOmnifier\n+\na part of Hacked Steel-Ribbed Armor\n=\n\na part of Omni-Tek Steel-Ribbed Armor\nSkills: | ?? |\n\n------------------------------\nComments\n------------------------------\n\n#L \"Omni-Tek Steel-Ribbed Armor Boots\" \"245936\"\n#L \"Omni-Tek Steel-Ribbed Armor Gloves\" \"245940\"\n#L \"Omni-Tek Steel-Ribbed Armor Helmet\" \"245934\"\n#L \"Omni-Tek Steel-Ribbed Armor Pants\" \"245938\"\n#L \"Omni-Tek Steel-Ribbed Armor Sleeves\" \"245932\"\n#L \"Omni-Tek Steel-Ribbed Body Armor\" \"245930\"\n\n------------------------------\nComments\n------------------------------\n\nGreat sided armor." +} diff --git a/modules/standard/recipe/recipes/80.json b/modules/standard/recipe/recipes/80.json new file mode 100644 index 0000000..936e102 --- /dev/null +++ b/modules/standard/recipe/recipes/80.json @@ -0,0 +1,21 @@ +{ + "name": "Overtuned Tank Armor", + "author": "", + "items": [ + { + "alias": "Neutron Displacer", + "item_id": 149818 + }, + { + "alias": "High-Quality Light Tank Armor", + "item_id": 28736 + }, + { + "alias": "Overtuned High-Quality Light Tank Armor", + "item_id": 161849 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients\n------------------------------\n\n#L \"Neutron Displacer\" \"144784\"\n\n\nA Tank Armor\n(ie: #L \"High-Quality Light Tank Armor\" \"28736\")\n\n\n------------------------------\nRecipe\n------------------------------\n\nNeutron Displacer\n+\nHigh-Quality Light Tank Armor\n=\n\n#L \"Overtuned High-Quality Light Tank Armor\" \"161849\"\nSkills: | QT |\n\n------------------------------\nComments\n------------------------------\n\nThis construction allow you to increase the AC of the armor and remove the debuffs in Dodging and Run Speed. On the other hand, the Tank Armor resulting of this process has a limited lifespan of 48 played hours..." +} diff --git a/modules/standard/recipe/recipes/81.json b/modules/standard/recipe/recipes/81.json new file mode 100644 index 0000000..f9ca0ad --- /dev/null +++ b/modules/standard/recipe/recipes/81.json @@ -0,0 +1,37 @@ +{ + "name": "Personalized Basic Robot Brain", + "author": "", + "items": [ + { + "alias": "Screwdriver", + "item_id": 150922 + }, + { + "alias": "Robot Junk", + "item_id": 42619 + }, + { + "alias": "Bio Analyzing Computer", + "item_id": 156021 + }, + { + "alias": "MasterComm - Personalization Device", + "item_id": 156025 + }, + { + "alias": "Nano Sensor", + "item_id": 150924 + }, + { + "alias": "Basic Robot Brain", + "item_id": 156023 + }, + { + "alias": "Personalized Basic Robot Brain", + "item_id": 156027 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients\n------------------------------\n\n#L \"Screwdriver\" \"150922\"\n\n\n#L \"Robot Junk\" \"42619\"\n\n\n#L \"Bio Analyzing Computer\" \"156021\"\n\n\n#L \"MasterComm - Personalization Device\" \"156024\"\n\n\n------------------------------\nRecipe\n------------------------------\n\nScrewdriver\n+\nRobot Junk\n=\n\n#L \"Nano Sensor\" \"150924\"\nSkills: | ME |\n\n------------------------------\n\nBio Analyzing Computer\n+\nNano Sensor\n=\n\n#L \"Basic Robot Brain\" \"156023\"\nSkills: | EE |\n\n------------------------------\n\nMasterComm - Personalization Device\n+\nBasic Robot Brain\n=\n\n#L \"Personalized Basic Robot Brain\" \"156027\"\nSkills: | EE |\n\n------------------------------\nComments\n------------------------------\n\nThis nifty little thing costs quite a lot to make and only gives a little bit of sense when equipped. However, it can useful for equipping Sense/Agi armors." +} diff --git a/modules/standard/recipe/recipes/82.json b/modules/standard/recipe/recipes/82.json new file mode 100644 index 0000000..375452a --- /dev/null +++ b/modules/standard/recipe/recipes/82.json @@ -0,0 +1,29 @@ +{ + "name": "Personal Lock Pick", + "author": "", + "items": [ + { + "alias": "Lock Pick", + "item_id": 95577 + }, + { + "alias": "ID-extractor", + "item_id": 156339 + }, + { + "alias": "Expendable Hologram Camera", + "item_id": 156054 + }, + { + "alias": "ID-data", + "item_id": 156340 + }, + { + "alias": "Personal Lock Pick", + "item_id": 156639 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients\n------------------------------\n\n#L \"Lock Pick\" \"95577\"\n\n\n#L \"ID-extractor\" \"156339\"\n\n\n#L \"Expendable Hologram Camera\" \"156054\"\n\n\n------------------------------\nRecipe\n------------------------------\n\nID-extractor\n+\nExpendable Hologram Camera\n=\n\n#L \"ID-data\" \"156340\"\nSkills: | ?? |\n\n------------------------------\n\nID-data\n+\nLock Pick\n=\n\n#L \"Personal Lock Pick\" \"156639\"\nSkills: | ?? |\n\n------------------------------\nComments\n------------------------------\n\nThis recipe is simplest to make, even a lvl 1 can make it. In fact i don't know which skill is used... It transforms your Standard Lockpick in a NODROP one and nothing else. By this way, you can make a bag NODROP too by putting your lockpick inside." +} diff --git a/modules/standard/recipe/recipes/83.json b/modules/standard/recipe/recipes/83.json new file mode 100644 index 0000000..b89a2dd --- /dev/null +++ b/modules/standard/recipe/recipes/83.json @@ -0,0 +1,53 @@ +{ + "name": "Personal Service Tower", + "author": "", + "items": [ + { + "alias": "Multi-Purpose Tuner", + "item_id": 202575 + }, + { + "alias": "Android Service Tower Library", + "item_id": 202532 + }, + { + "alias": "Service Tower Shell", + "item_id": 202581 + }, + { + "alias": "Android Service Tower Brain", + "item_id": 202526 + }, + { + "alias": "Inactive Android Service Tower", + "item_id": 203108 + }, + { + "alias": "Cyborg Service Tower Library", + "item_id": 202570 + }, + { + "alias": "Inactive Cyborg Service Tower", + "item_id": 203110 + }, + { + "alias": "Nano-Supervised Service Tower Library", + "item_id": 202577 + }, + { + "alias": "Inactive Nano Service Tower", + "item_id": 203111 + }, + { + "alias": "Semi-Sentient Service Tower Library", + "item_id": 202579 + }, + { + "alias": "Inactive Semi-Sentient Service Tower", + "item_id": 203109 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients\n------------------------------\n\n#L \"Multi-Purpose Tuner\" \"202575\"\n\n\na Service Tower Library\n( ie : #L \"Android Service Tower Library\" \"202532\" )\n\n\n#L \"Service Tower Shell\" \"202581\"\n\n\n------------------------------\nRecipe\n------------------------------\n\nMulti-Purpose Tuner\n+\nService Tower Library\n=\n\nService Tower Brain\n( ie #L \"Android Service Tower Brain\" \"202526\" )\nSkills: | ME,EE |\n\n------------------------------\n\nService Tower Shell\n+\nService Tower Brain\n=\n\nInactive Service Tower\n( ie #L \"Inactive Android Service Tower\" \"203108\" )\nSkills: | ME,EE |\n\n------------------------------\nDetails\n------------------------------\n\n#L \"Android Service Tower Library\" \"202532\"\n->\n#L \"Inactive Android Service Tower\" \"203108\"\n------------------------------\n#L \"Cyborg Service Tower Library\" \"202570\"\n->\n#L \"Inactive Cyborg Service Tower\" \"203110\"\n------------------------------\n#L \"Nano-Supervised Service Tower Library\" \"202577\"\n->\n#L \"Inactive Nano Service Tower\" \"203111\"\n------------------------------\n#L \"Semi-Sentient Service Tower Library\" \"202579\"\n->\n#L \"Inactive Semi-Sentient Service Tower\" \"203109\"\n\n------------------------------\nComments\n------------------------------\n\nNice AC buffs for you. Great for use in tower battles." +} diff --git a/modules/standard/recipe/recipes/84.json b/modules/standard/recipe/recipes/84.json new file mode 100644 index 0000000..f97b34b --- /dev/null +++ b/modules/standard/recipe/recipes/84.json @@ -0,0 +1,85 @@ +{ + "name": "Perennium Weapons", + "author": "", + "items": [ + { + "alias": "Premium Nano-Charged Assault Rifle", + "item_id": 123228 + }, + { + "alias": "Sheet of Perennium", + "item_id": 226019 + }, + { + "alias": "Perennium Bolts", + "item_id": 226021 + }, + { + "alias": "Advanced Hacker Tool", + "item_id": 87814 + }, + { + "alias": "Spirit Tech Apparatus: Short Muzzle", + "item_id": 246388 + }, + { + "alias": "Hacked Nano-Charged Assault Rifle", + "item_id": 246399 + }, + { + "alias": "Short Perennium Muzzle", + "item_id": 246395 + }, + { + "alias": "Half-Finished Perennium Beamer", + "item_id": 246401 + }, + { + "alias": "Superior Perennium Beamer", + "item_id": 246421 + }, + { + "alias": "Spirit Tech Apparatus: Double Barrel", + "item_id": 246405 + }, + { + "alias": "Double Perennium Barrel", + "item_id": 246407 + }, + { + "alias": "Half-Finished Perennium Blaster", + "item_id": 246430 + }, + { + "alias": "Superior Perennium Blaster", + "item_id": 246428 + }, + { + "alias": "Premium Nano-Charged Rifle", + "item_id": 123247 + }, + { + "alias": "Spirit Tech Apparatus: Long Muzzle", + "item_id": 246390 + }, + { + "alias": "Hacked Nano-Charged Rifle", + "item_id": 246397 + }, + { + "alias": "Long Perennium Muzzle", + "item_id": 246393 + }, + { + "alias": "Half-Finished Perennium Sniper", + "item_id": 246403 + }, + { + "alias": "Superior Perennium Sniper", + "item_id": 246414 + } + ], + "steps": [], + "details": [], + "raw": "Perennium Beamer\n\n------------------------------\nIngredients\n------------------------------\n\n#L \"Nano-Charged Assault Rifle\" \"123228\" > QL50\n\n\n#L \"Sheet of Perennium\" \"226019\" > QL50\n\n\n#L \"Perennium Bolt\" \"226021\" > QL50\n\n\n#L \"Hacker Tool\" \"87814\"\n\n\n#L \"Spirit Tech Apparatus: Short Muzzle\" \"246388\" > QL50\n\n\n------------------------------\nRecipe\n------------------------------\n\nHacker Tool\n+\nNano-Charged Assault Rifle\n=\n\n#L \"Hacked Nano-Charged Assault Rifle\" \"246399\"\nSkills: | 7BE |\n\n------------------------------\n\nSheet of Perennium\n+\nSpirit Tech Apparatus: Short Muzzle\n=\n\n#L \"Short Perennium Muzzle\" \"246395\"\nSkills: | 7WS,5ME |\n\n------------------------------\n\nShort Perennium Muzzle\n+\nHacked Nano-Charged Assault Rifle\n=\n\n#L \"Half-Finished Perennium Beamer\" \"246401\"\nSkills: | 7WS,5ME |\n\n------------------------------\n\nPerennium Bolt\n+\nHalf-Finished Perennium Beamer\n=\n\n#L \"Perennium Beamer\" \"246421\"\nSkills: | 7WS,5ME |\n\n------------------------------\n\nPerennium Blaster\n\n------------------------------\nIngredients\n------------------------------\n\n#L \"Nano-Charged Assault Rifle\" \"123228\" > QL50\n\n\n#L \"Sheet of Perennium\" \"226019\" > QL50\n\n\n#L \"Perennium Bolt\" \"226021\" > QL50\n\n\n#L \"Hacker Tool\" \"87814\"\n\n\n#L \"Spirit Tech Apparatus: Double Barrel\" \"246405\" > QL50\n\n\n------------------------------\nRecipe\n------------------------------\n\nHacker Tool\n+\nNano-Charged Assault Rifle\n=\n\n#L \"Hacked Nano-Charged Assault Rifle\" \"246399\"\nSkills: | 7BE |\n\n------------------------------\n\nSheet of Perennium\n+\nSpirit Tech Apparatus: Double Barrel\n=\n\n#L \"Double Perennium Barrel\" \"246407\"\nSkills: | 7WS,5ME |\n\n------------------------------\n\nDouble Perennium Barrel\n+\nHacked Nano-Charged Assault Rifle\n=\n\n#L \"Half-Finished Perennium Blaster\" \"246430\"\nSkills: | 7WS,5ME |\n\n------------------------------\n\nPerennium Bolt\n+\nHalf-Finished Perennium Blaster\n=\n\n#L \"Perennium Blaster\" \"246428\"\nSkills: | 7WS,5ME |\n\n------------------------------\n\nPerennium Sniper\n\n------------------------------\nIngredients\n------------------------------\n\n#L \"Nano-Charged Rifle\" \"123247\" > QL50\n\n\n#L \"Sheet of Perennium\" \"226019\" > QL50\n\n\n#L \"Perennium Bolt\" \"226021\" > QL50\n\n\n#L \"Hacker Tool\" \"87814\"\n\n\n#L \"Spirit Tech Apparatus: Long Muzzle\" \"246390\" > QL50\n\n\n------------------------------\nRecipe\n------------------------------\n\nHacker Tool\n+\nNano-Charged Rifle\n=\n\n#L \"Hacked Nano-Charged Rifle\" \"246397\"\nSkills: | 7BE |\n\n------------------------------\n\nSheet of Perennium\n+\nSpirit Tech Apparatus: Long Muzzle\n=\n\n#L \"Long Perennium Muzzle\" \"246393\"\nSkills: | 7WS,5ME |\n\n------------------------------\n\nLong Perennium Muzzle\n+\nHacked Nano-Charged Rifle\n=\n\n#L \"Half-Finished Perennium Sniper\" \"246403\"\nSkills: | 7WS,5ME |\n\n------------------------------\n\nPerennium Bolt\n+\nHalf-Finished Perennium Sniper\n=\n\n#L \"Perennium Sniper\" \"246414\"\nSkills: | 7WS,5ME |\n\n------------------------------\nComments\n------------------------------\n\nSpirit Techs drop from Mortiigs, Perennium drops from Hecklers and the rifles can be rolled in missions." +} diff --git a/modules/standard/recipe/recipes/85.json b/modules/standard/recipe/recipes/85.json new file mode 100644 index 0000000..a7e66e1 --- /dev/null +++ b/modules/standard/recipe/recipes/85.json @@ -0,0 +1,45 @@ +{ + "name": "Physician's Cap", + "author": "", + "items": [ + { + "alias": "Notum Fragment", + "item_id": 136625 + }, + { + "alias": "Notum Chip", + "item_id": 136623 + }, + { + "alias": "Nano Programming Interface", + "item_id": 161699 + }, + { + "alias": "Inactive OT Metamorphing Liquid Nanobots", + "item_id": 164952 + }, + { + "alias": "Cap of the Besieger", + "item_id": 206553 + }, + { + "alias": "Activated OT Metamorphing Liquid Nanobots", + "item_id": 164954 + }, + { + "alias": "Stabilized OT Metamorphing Liquid Nanobots", + "item_id": 164956 + }, + { + "alias": "Super-Stabilized OT Metamorphing Liquid Nanobots", + "item_id": 164958 + }, + { + "alias": "Physician's Cap", + "item_id": 206552 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients\n------------------------------\n\nTwo Notums\n#L \"Notum Fragment\" \"136624\"\n\nor\n#L \"Notum Chip\" \"136622\"\n\n\n#L \"Nano Programming Interface\" \"161699\"\n\n\n#L \"Inactive OT Metamorphing Liquid Nanobots\" \"164952\"\n\n\n#L \"Cap of the Besieger\" \"206553\"\n\n\n------------------------------\nRecipe\n------------------------------\n\nNano Programming Interface\n+\nInactive OT Metamorphing Liquid Nanobots\n=\n\n#L \"Activated OT Metamorphing Liquid Nanobots\" \"164954\"\nSkills: | NP,CH |\n\n------------------------------\n\nNotum\n+\nActivated OT Metamorphing Liquid Nanobots\n=\n\n#L \"Stabilized OT Metamorphing Liquid Nanobots\" \"164956\"\nSkills: | NP,CH |\n\n------------------------------\n\nNotum\n+\nStabilized OT Metamorphing Liquid Nanobots\n=\n\n#L \"Super-Stabilized OT Metamorphing Liquid Nanobots\" \"164958\"\nSkills: | NP,CH |\n\n------------------------------\n\nSuper-Stabilized OT Metamorphing Liquid Nanobots\n+\nCap of the Besieger\n=\n\n#L \"Physician?s Cap\" \"206552\"\nSkills: | NP,CH |\n\n------------------------------\nComments\n------------------------------\n\nYou can increase its QL up to 75 by right-clicking on it." +} diff --git a/modules/standard/recipe/recipes/86.json b/modules/standard/recipe/recipes/86.json new file mode 100644 index 0000000..629176c --- /dev/null +++ b/modules/standard/recipe/recipes/86.json @@ -0,0 +1,21 @@ +{ + "name": "The Pioneer Backpack", + "author": "", + "items": [ + { + "alias": "The Pioneer Backpack", + "item_id": 152039 + }, + { + "alias": "Screwdriver", + "item_id": 150922 + }, + { + "alias": "The Pioneer Backpack (Modified Version)", + "item_id": 156831 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients\n------------------------------\n\n#L \"The Pioneer Backpack\" \"152039\"\n\n\n#L \"Screwdriver\" \"150922\"\n\n\n------------------------------\nRecipe\n------------------------------\n\nScrewdriver\n+\nThe Pioneer Backpack\n=\n\n#L \"The Pioneer Backpack (Modified Version)\" \"156831\"\nSkills: | ?? |\n\n------------------------------\nComments\n------------------------------\n\nYou can switch it back to the normal version using the Screwdriver on it again." +} diff --git a/modules/standard/recipe/recipes/87.json b/modules/standard/recipe/recipes/87.json new file mode 100644 index 0000000..b963626 --- /dev/null +++ b/modules/standard/recipe/recipes/87.json @@ -0,0 +1,25 @@ +{ + "name": "Pocket Boss", + "author": "", + "items": [ + { + "alias": "Crystal Filled by the Source", + "item_id": 229604 + }, + { + "alias": "Cataclysmic Birth of Novictum", + "item_id": 229949 + }, + { + "alias": "Ancient Novictum Refiner", + "item_id": 229870 + }, + { + "alias": "Subdued Flow of Novictum", + "item_id": 229924 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients\n------------------------------\n\nAbhan, Bhotaar, Chi and Dom Patterns of the same Boss\n\nExample:\n\n#L \"Abhan Pattern of 'Screech'\" \"229180\"\n\n\n#L \"Bhotaar Pattern of 'Screech'\" \"229181\"\n\n\n#L \"Chi Pattern of 'Screech'\" \"229182\"\n\n\n#L \"Dom Pattern of 'Screech'\" \"229183\"\n\n\n#L \"Crystal Filled by the Source\" \"229604\"\n\n\na special Novictum\n( ie : #L \"Cataclysmic Birth of Novictum\" \"229949\" )\n\n\n#L \"Ancient Novictum Refiner\" \"229870\"\n\n\n------------------------------\nRecipe\n------------------------------\n\nAbhan Pattern\n+\nBhotaar Pattern\n=\nAban-Bhotar Assembly\nSkills: | ?? |\n\n------------------------------\n\nAban-Bhotar Assembly\n+\nChi Pattern\n=\nAban-Bhotar-Chi Assembly\nSkills: | ?? |\n\n------------------------------\n\nAban-Bhotar-Chi Assembly\n+\nDom Pattern\n=\n\nComplete Blueprint Pattern\n( ie: #L \"Complete Blueprint Pattern of 'Screech'\" \"229186\")\nSkills: | ?? |\n\n------------------------------\n\nAncient Novictum Refiner\n+\na special Novictum\n=\n\n#L \"Subdued Flow of Novictum\" \"229924\"\nSkills: | ?? |\n\n------------------------------\n\nCrystal Filled by the Source\n+\nComplete Blueptrint Pattern\n=\n\nEtched Notum Crystal\n( ie: #L \"Notum Crystal with Etched 'Screech'\" \"229187\")\nSkills: | NP |\n\n------------------------------\n\nSubdued Flow of Novictum\n+\nNotum Crystal with Etched\n=\n\nNovictalized Notum Crystal\n( ie: #L \"Novictalized Notum Crystal with 'Screech'\" \"229188\")\nSkills: | QP |\n\n------------------------------\nComments\n------------------------------\n\nUse the Novictalized Notum Crystal on an Incarnator on SL. take care, the user of the crystal will fall to 1 HP !!" +} diff --git a/modules/standard/recipe/recipes/88.json b/modules/standard/recipe/recipes/88.json new file mode 100644 index 0000000..7632925 --- /dev/null +++ b/modules/standard/recipe/recipes/88.json @@ -0,0 +1,49 @@ +{ + "name": "Prowler Armor", + "author": "", + "items": [ + { + "alias": "Damaged Proliferation Unit", + "item_id": 245215 + }, + { + "alias": "Screwdriver", + "item_id": 150922 + }, + { + "alias": "Proliferation Unit", + "item_id": 245216 + }, + { + "alias": "Prowler Armor Sleeves", + "item_id": 245176 + }, + { + "alias": "Prowler Body Armor", + "item_id": 245178 + }, + { + "alias": "Prowler Armor Gloves", + "item_id": 245180 + }, + { + "alias": "Prowler Armor Pants", + "item_id": 245182 + }, + { + "alias": "Prowler Armor Boots", + "item_id": 245184 + }, + { + "alias": "Prowler Armor Shoulder Pad", + "item_id": 245186 + }, + { + "alias": "Prowler Armor Hood", + "item_id": 245188 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients\n------------------------------\n\na piece of Crawler Armor ( #L \"see here\" \"/tell recipe 37\" )\n\n\n#L \"Damaged Proliferation Unit\" \"245215\"\n\n\n#L \"Screwdriver\" \"150922\"\n\n\n------------------------------\nRecipe\n------------------------------\n\nScrewdriver\n+\nDamaged Proliferation Unit\n=\n\n#L \"Proliferation Unit\" \"245216\"\nSkills: | ?? |\n\n------------------------------\n\nProliferation Unit\n+\na piece of Crawler Armor\n=\n\na piece of Prowler Armor\nSkills: | ?? |\n\n------------------------------\nDetails\n------------------------------\n\n#L \"Prowler Armor Sleeves\" \"245176\"\n#L \"Prowler Body Armor\" \"245178\"\n#L \"Prowler Armor Gloves\" \"245180\"\n#L \"Prowler Armor Pants\" \"245182\"\n#L \"Prowler Armor Boots\" \"245184\"\n#L \"Prowler Armor Shoulder Pad\" \"245186\"\n#L \"Prowler Armor Hood\" \"245188\"\n\n------------------------------\nComments\n------------------------------\n\nGreat armor if you can get 7 DPUs.. this can often prove a difficult task though, as they are well camped." +} diff --git a/modules/standard/recipe/recipes/89.json b/modules/standard/recipe/recipes/89.json new file mode 100644 index 0000000..cddc530 --- /dev/null +++ b/modules/standard/recipe/recipes/89.json @@ -0,0 +1,29 @@ +{ + "name": "Prohibited Hand Mortar of Bacam-Xum", + "author": "", + "items": [ + { + "alias": "Barrel of Bacam-Xum", + "item_id": 246874 + }, + { + "alias": "Ignition Chamber of Bacam-Xum", + "item_id": 246875 + }, + { + "alias": "Stock of Bacam-Xum", + "item_id": 246877 + }, + { + "alias": "Half-Finished Hand-Mortar of Bacam-Xum", + "item_id": 246876 + }, + { + "alias": "Prohibited Hand-Mortar of Bacam-Xum", + "item_id": 246873 + } + ], + "steps": [], + "details": [], + "raw": "------------------------------\nIngredients\n------------------------------\n\n#L \"Barrel of Bacam-Xum\" \"246874\"\n\n\n#L \"Ignition chamber of Bacam-Xum\" \"246875\"\n\n\n#L \"Stock of Bacam-Xum\" \"246877\"\n\n\n------------------------------\nRecipe\n------------------------------\n\nIgnition chamber of Bacam-Xum\n+\nBarrel of Bacam-Xum\n=\n\n#L \"Half-Finished Hand-Mortar of Bacam-Xum\" \"246876\"\nSkills: | 1750WS,1250ME |\n\n------------------------------\n\nStock of Bacam-Xum\n+\nHalf-Finished Hand-Mortar of Bacam-Xum\n=\n\n#L \"Prohibited Hand-Mortar of Bacam-Xum\" \"246873\"\nSkills: | 1750WS,1250ME |\n\n------------------------------\nComments\n------------------------------\n\nExtremely hard (if not impossible) to equip at level 205 without some seriously expensive buffing armor on. As if the Tradeskilling wasnt hard enough for this item." +} diff --git a/modules/standard/recipe/recipes/_recipe_template.json b/modules/standard/recipe/recipes/_recipe_template.json new file mode 100644 index 0000000..d057c76 --- /dev/null +++ b/modules/standard/recipe/recipes/_recipe_template.json @@ -0,0 +1,40 @@ +{ + "name": "", + "author": "", + "items": [ + { + "alias": "item1", + "item_id": 1, + "ql": 200 + }, + { + "alias": "item2", + "item_id": 2 + }, + { + "alias": "item3", + "item_id": 3 + } + ], + "steps": [ + { + "source": "item1", + "target": "item2", + "result": "item3", + "skills": "CL" + } + ], + "details": [ + { + "item": { + "id": 4, + "comment": "", + "ql": 0 + } + }, + { + "text": "" + } + ], + "raw": "" +} diff --git a/modules/standard/specials/specials_controller.py b/modules/standard/specials/specials_controller.py new file mode 100644 index 0000000..63be979 --- /dev/null +++ b/modules/standard/specials/specials_controller.py @@ -0,0 +1,586 @@ +import math + +from core.chat_blob import ChatBlob +from core.command_param_types import Int, Decimal, Item +from core.decorators import instance, command +from core.dict_object import DictObject + + +@instance() +class SpecialsController: + def __init__(self): + pass + + def inject(self, registry): + self.db = registry.get_instance("db") + self.text = registry.get_instance("text") + self.util = registry.get_instance("util") + self.items_controller = registry.get_instance("items_controller") + self.command_alias_service = registry.get_instance("command_alias_service") + + def pre_start(self): + self.db.load_sql_file(self.module_dir + "/" + "weapon_attributes.sql", pre_optimized=True) + self.db.create_view("weapon_attributes") + + def start(self): + self.command_alias_service.add_alias("aimshot", "aimedshot") + self.command_alias_service.add_alias("as", "aimedshot") + self.command_alias_service.add_alias("inits", "weapon") + self.command_alias_service.add_alias("init", "weapon") + self.command_alias_service.add_alias("specials", "weapon") + self.command_alias_service.add_alias("fling", "flingshot") + + @command(command="aggdef", params=[Decimal("weapon_attack"), Decimal("weapon_recharge"), Int("init_skill")], + access_level="member", + description="Show agg/def information") + def aggdef_cmd(self, _, weapon_attack, weapon_recharge, init_skill): + init_result = self.get_init_result(weapon_attack, weapon_recharge, init_skill) + + inits_full_agg = self.get_inits_needed(100, weapon_attack, weapon_recharge) + inits_neutral = self.get_inits_needed(87.5, weapon_attack, weapon_recharge) + inits_full_def = self.get_inits_needed(0, weapon_attack, weapon_recharge) + + blob = f"Attack: {weapon_attack:.2f} secs\n" + blob += f"Recharge: {weapon_recharge:.2f} secs\n" + blob += f"Init Skill: {init_skill:d}\n\n" + + blob += "You must set your AGG/DEF bar at %d%% to wield your weapon at 1/1.\n\n" % int( + init_result) + + blob += f"Init needed for max speed at Full Agg (100%): {inits_full_agg:d}\n" + blob += f"Init needed for max speed at Neutral (87.5%): {inits_neutral:d}\n" + blob += f"Init needed for max speed at Full Def (0%): {inits_full_def:d}\n\n" + + blob += self.get_inits_display(weapon_attack, weapon_recharge) + "\n\n" + + blob += "Note that at the neutral position (87.5%), your attack and recharge time " \ + "will match that of the weapon you are using.\n\n\n" + + blob += "Based on the !aggdef command from Budabot, which was based upon a RINGBOT module made " \ + "by NoGoal(RK2) and modified for Budabot by Healnjoo(RK2)" + + return ChatBlob("Agg/Def Results", blob) + + @command(command="aimedshot", + params=[Decimal("weapon_attack"), Decimal("weapon_recharge"), Int("aimed_shot_skill")], + access_level="member", + description="Show aimed shot information") + def aimedshot_cmd(self, _, weapon_attack, weapon_recharge, aimed_shot_skill): + as_info = self.get_aimed_shot_info(weapon_attack, weapon_recharge, aimed_shot_skill) + + blob = f"Attack: {weapon_attack:.2f} secs\n" + blob += f"Recharge: {weapon_recharge:.2f} secs\n" + blob += f"Aimed Shot Skill: {aimed_shot_skill:d}\n\n" + + blob += f"Aimed Shot Multiplier: 1 - {as_info.multiplier:d}x\n" + blob += f"Aimed Shot Recharge: {as_info.recharge:d} secs\n\n" + + blob += f"You need {as_info.skill_cap:d} Aimed Shot Skill " \ + f"to cap your recharge at {as_info.hard_cap:d} seconds." + + return ChatBlob("Aimed Shot Results", blob) + + @command(command="brawl", params=[Int("brawl_skill")], access_level="member", + description="Show brawl information") + def brawl_cmd(self, _, brawl_skill): + brawl_info = self.get_brawl_info(brawl_skill) + + blob = f"Brawl Skill: {brawl_skill:d}\n\n" + + blob += "Brawl Recharge: 15 secs (constant)\n" + blob += f"Brawl Damage: {brawl_info.min_dmg:d} - {brawl_info.max_dmg:d} " \ + f"({brawl_info.crit_dmg:d})\n" + blob += f"Stun Change: {brawl_info.stun_chance:d}%\n" + blob += f"Stun Duration: {brawl_info.stun_duration:d} secs\n\n" + + blob += "Stun chance is 10% for brawl skill less than 1000 and 20% for brawl skill 1000 or greater.\n" + blob += "Stun duration is 3 seconds for brawl skill less than 2001 and " \ + "4 seconds for brawl skill 2001 or greater.\n\n\n" + + blob += "Based on the !brawl command from Budabot by Imoutochan (RK1)" + + return ChatBlob("Brawl Results", blob) + + @command(command="burst", + params=[Decimal("weapon_attack"), Decimal("weapon_recharge"), Int("burst_recharge"), Int("burst_skill")], + access_level="member", + description="Show burst information") + def burst_cmd(self, _, weapon_attack, weapon_recharge, burst_recharge, burst_skill): + burst_info = self.get_burst_info(weapon_attack, weapon_recharge, burst_recharge, burst_skill) + + blob = f"Attack: {weapon_attack:.2f} secs\n" + blob += f"Recharge: {weapon_recharge:.2f} secs\n" + blob += f"Burst Recharge: {burst_recharge:d}\n" + blob += f"Burst Skill: {burst_skill:d}\n\n" + + blob += f"Burst Recharge: {burst_info.recharge:d} secs\n\n" + + blob += f"You need {burst_info.skill_cap:d} Burst Skill " \ + f"to cap your recharge at {burst_info.hard_cap:d} secs." + + return ChatBlob("Burst Results", blob) + + @command(command="dimach", params=[Int("dimach_skill")], access_level="member", + description="Show dimach information") + def dimach_cmd(self, _, dimach_skill): + dimach_info = self.get_dimach_info(dimach_skill) + + blob = f"Dimach Skill: {dimach_skill:d}\n\n" + + blob += "Martial Artist\n" + blob += f"Damage: {dimach_info.ma_dmg:d}\n" + blob += f"Recharge: {self.util.time_to_readable(dimach_info.ma_recharge)}\n\n" + + blob += "Keeper\n" + blob += f"Self Heal: {dimach_info.keeper_heal:d}\n" + blob += "Recharge: 5 mins (constant)\n\n" + + blob += "Shade\n" + blob += f"Damage: {dimach_info.shade_dmg:d}\n" + blob += f"Self Heal: {dimach_info.shade_heal_percentage:d}% " \ + f"* {dimach_info.shade_dmg:d} " \ + f"= {round(dimach_info.shade_heal_percentage * dimach_info.shade_dmg / 100):d}\n" + blob += f"Recharge: {self.util.time_to_readable(dimach_info.shade_recharge)}\n\n" + + blob += "All other professions\n" + blob += f"Damage: {dimach_info.general_dmg:d}\n" + blob += "Recharge: 30 mins (constant)\n\n\n" + + blob += "Based on the !dimach command from Budabot by Imoutochan (RK1)" + + return ChatBlob("Dimach Results", blob) + + @command(command="fastattack", params=[Decimal("weapon_attack"), Int("fast_attack_skill")], access_level="member", + description="Show fast attack information") + def fastattack_cmd(self, _, weapon_attack, fast_attack_skill): + fast_attack_info = self.get_fast_attack_info(weapon_attack, fast_attack_skill) + + blob = f"Attack: {weapon_attack:.2f} secs\n" + blob += f"Fast Attack Skill: {fast_attack_skill:d}\n\n" + + blob += f"Fast Attack Recharge: {fast_attack_info.recharge:.2f} secs\n\n" + + blob += f"You need {fast_attack_info.skill_cap:d} Fast Attack Skill " \ + f"to cap your recharge at {fast_attack_info.hard_cap:.2f} secs." + + return ChatBlob("Fast Attack Results", blob) + + @command(command="flingshot", params=[Decimal("weapon_attack"), Int("fling_shot_skill")], access_level="member", + description="Show fling shot information") + def flingshot_cmd(self, _, weapon_attack, fling_shot_skill): + fling_shot_info = self.get_fling_shot_info(weapon_attack, fling_shot_skill) + + blob = f"Attack: {weapon_attack:.2f} secs\n" + blob += f"Fling Shot Skill: {fling_shot_skill:d}\n\n" + + blob += f"Fling Shot Recharge: {fling_shot_info.recharge:.2f} secs\n\n" + + blob += f"You need {fling_shot_info.skill_cap:d} Fling Shot Skill " \ + f"to cap your recharge at {fling_shot_info.hard_cap:.2f} secs." + + return ChatBlob("Fling Shot Results", blob) + + @command(command="fullauto", + params=[Decimal("weapon_attack"), Decimal("weapon_recharge"), Int("full_auto_recharge"), + Int("full_auto_skill")], access_level="member", + description="Show full auto information") + def fullauto_cmd(self, _, weapon_attack, weapon_recharge, full_auto_recharge, full_auto_skill): + full_auto_info = self.get_full_auto_info(weapon_attack, weapon_recharge, full_auto_recharge, full_auto_skill) + + blob = f"Attack: {weapon_attack:.2f} secs\n" + blob += f"Recharge: {weapon_recharge:.2f} secs\n" + blob += f"Full Auto Recharge: {full_auto_recharge:d}\n" + blob += f"Full Auto Skill: {full_auto_skill:d}\n\n" + + blob += f"Full Auto Recharge: {full_auto_info.recharge:d} secs\n" + blob += f"Max Number of Bullets: {full_auto_info.max_bullets:d}\n\n" + + blob += f"You need {full_auto_info.skill_cap:d} Full Auto Skill " \ + f"to cap your recharge at {full_auto_info.hard_cap:d} secs.\n\n" + + blob += "From 0 to 10K damage, the bullet damage is unchanged.\n" + blob += "From 10K to 11.5K damage, each bullet damage is halved.\n" + blob += "From 11K to 15K damage, each bullet damage is halved again.\n" + blob += "15K is the damage cap." + + return ChatBlob("Full Auto Results", blob) + + @command(command="mafist", params=[Int("ma_skill")], access_level="member", + description="Show martial arts information") + def mafist_cmd(self, _, ma_skill): + ma_info = self.get_martial_arts_info(ma_skill) + + blob = f"Martial Arts Skill: {ma_skill:d}\n\n" + + blob += "Martial Artist\n" + blob += f"Speed: {ma_info.ma_speed:.2f} / {ma_info.ma_speed:.2f} secs\n" + blob += f"Damage: {ma_info.ma_min_dmg:d} - {ma_info.ma_max_dmg:d} " \ + f"({ma_info.ma_crit_dmg:d})\n\n" + + blob += "Shade\n" + blob += f"Speed: {ma_info.shade_speed:.2f} / {ma_info.shade_speed:.2f} secs\n" + blob += f"Damage: {ma_info.shade_min_dmg:d} - {ma_info.shade_max_dmg:d} " \ + f"({ma_info.shade_crit_dmg:d})\n\n" + + blob += "All other professions\n" + blob += f"Speed: {ma_info.gen_speed:.2f} / {ma_info.gen_speed:.2f} secs\n" + blob += f"Damage: {ma_info.gen_min_dmg:d} - {ma_info.gen_max_dmg:d} " \ + f"({ma_info.gen_crit_dmg:d})\n\n" + + return ChatBlob("Martial Arts Results", blob) + + @command(command="nanoinit", params=[Decimal("nano_attack_time"), Int("nano_cast_init")], access_level="member", + description="Show nano cast init information") + def nanoinit_cmd(self, _, nano_attack_time, nano_cast_init): + nano_cast_info = self.get_nano_cast_info(nano_cast_init, nano_attack_time) + + blob = f"Attack: {nano_attack_time:.2f} secs\n" + blob += f"Nano Cast Init: {nano_cast_init:d}\n\n" + + blob += f"Cast Time Reduction: {nano_cast_info.cast_time_reduction:.2f}\n" + blob += f"Effective Cast Time: {nano_cast_info.effective_cast_time:.2f}\n\n" + + if nano_cast_info.bar_setting > 100: + blob += "You cannot instacast this nano at any AGG/DEF setting.\n\n" + else: + blob += f"You must set your AGG/DEF bar to {nano_cast_info.bar_setting:d}% " \ + f"to instacast this nano.\n\n" + + blob += f"NanoC. Init needed to instacast at Full Agg (100%): " \ + f"{nano_cast_info.instacast_full_agg:d}\n" + blob += f"NanoC. Init needed to instacast at Neutral (87.5%): " \ + f"{nano_cast_info.instacast_neutral:d}\n" + blob += f"NanoC. Init needed to instacast at Half (50%): " \ + f"{nano_cast_info.instacast_half:d}\n" + blob += f"NanoC. Init needed to instacast at Full Def (0%): " \ + f"{nano_cast_info.instacast_full_def:d}\n\n" + + blob += f"Cast time at Full Agg (100%): {nano_cast_info.cast_time_full_agg:.2f}\n" + blob += f"Cast time at Neutral (87.5%): {nano_cast_info.cast_time_neutral:.2f}\n" + blob += f"Cast time at Half (50%): {nano_cast_info.cast_time_half:.2f}\n" + blob += f"Cast time at Full Def (0%): {nano_cast_info.cast_time_full_def:.2f}" + + return ChatBlob("Nano Cast Init Results", blob) + + @command(command="weapon", params=[Int("item_id"), Int("ql", is_optional=True)], access_level="member", + description="Show weapon information") + def weapon_cmd(self, _, item_id, ql): + return self.get_weapon_info(item_id, ql) + + @command(command="deflect", params=[Int("deflect_skill")], access_level="member", + description="Show deflect information") + def deflect_cmd(self, _, deflect_skill): + if deflect_skill > 3000 or deflect_skill < 1: + return "Your deflect skill can only be between 1 and 3000" + return f"With {deflect_skill} skill you will deflect {round(deflect_skill / 300, 2)}% of attacks" + + @command(command="weapon", params=[Item("weapon_link")], access_level="member", + description="Show weapon information") + def weapon_cmd(self, _, item): + return self.get_weapon_info(item.high_id, item.ql) + + @command(command="weapon", params=[Int("item_id"), Int("ql", is_optional=True)], access_level="member", + description="Show weapon information") + def weapon_manual_cmd(self, _, item_id, ql): + if not ql: + item = self.items_controller.get_by_item_id(item_id) + if item: + ql = item.highql + else: + return f"Could not find item with id {item_id:d}." + + return self.get_weapon_info(item_id, ql) + + def get_weapon_info(self, item_id, ql): + if ql: + item = self.db.query_single( + "SELECT * FROM aodb WHERE highid = ? AND lowql <= ? AND highql >= ? " + "UNION " + "SELECT * FROM aodb WHERE lowid = ? AND lowql <= ? AND highql >= ? " + "LIMIT 1", [item_id, ql, ql, item_id, ql, ql]) + else: + item = self.db.query_single( + "SELECT * FROM aodb WHERE highid = ? UNION SELECT * FROM aodb WHERE lowid = ? LIMIT 1", + [item_id, item_id]) + + if not item: + return f"Could not find item with ID {item_id:d}." + + ql = ql or item.highql + + low_attributes = self.db.query_single("SELECT * FROM weapon_attributes WHERE id = ?", [item.lowid]) + high_attributes = self.db.query_single("SELECT * FROM weapon_attributes WHERE id = ?", [item.highid]) + + if not low_attributes or not high_attributes: + return f"Could not find weapon information or item is not a weapon for " \ + f"ID {item_id:d}." + + weapon_attack = self.util.interpolate_value(ql, {item.lowql: low_attributes.attack_time, + item.highql: high_attributes.attack_time}) / 100 + weapon_recharge = self.util.interpolate_value(ql, {item.lowql: low_attributes.recharge_time, + item.highql: high_attributes.recharge_time}) / 100 + + blob = f"{self.text.make_item(item.lowid, item.highid, ql, item.name)} (QL {ql:d})\n\n" + blob += f"Attack: {weapon_attack:.2f}\n" + blob += f"Recharge: {weapon_recharge:.2f}\n\n" + + blob += self.get_inits_display(weapon_attack, weapon_recharge) + "\n" + + blob += "Specials\n" + + if high_attributes.aimed_shot: + as_info = self.get_aimed_shot_info(weapon_attack, weapon_recharge, 1) + blob += f"Aimed Shot\n{as_info.skill_cap:d} skill needed to cap " \ + f"Aimed Shot recharge at {as_info.hard_cap:d} secs\n\n" + + if high_attributes.burst: + burst_recharge = self.util.interpolate_value(ql, {item.lowql: low_attributes.burst, + item.highql: high_attributes.burst}) + burst_info = self.get_burst_info(weapon_attack, weapon_recharge, burst_recharge, 1) + blob += f"Burst Recharge: {burst_recharge:d}\n" \ + f"{burst_info.skill_cap:d} skill needed " \ + f"to cap Burst recharge at {burst_info.hard_cap:d} secs\n\n" + + if high_attributes.fast_attack: + fast_attack_info = self.get_fast_attack_info(weapon_attack, 1) + blob += f"Fast Attack\n{fast_attack_info.skill_cap:d} skill needed " \ + f"to cap Fast Attack recharge at {fast_attack_info.hard_cap:.2f} secs\n\n" + + if high_attributes.fling_shot: + fling_shot_info = self.get_fling_shot_info(weapon_attack, 1) + blob += f"Fling Shot\n{fling_shot_info.skill_cap:d} skill needed " \ + f"to cap Fling Shot recharge at {fling_shot_info.hard_cap:.2f} secs\n\n" + + if high_attributes.full_auto: + full_auto_recharge = self.util.interpolate_value(ql, {item.lowql: low_attributes.full_auto, + item.highql: high_attributes.full_auto}) + full_auto_info = self.get_full_auto_info(weapon_attack, weapon_recharge, full_auto_recharge, 1) + blob += f"Full Auto Recharge: {full_auto_recharge:d}\n" \ + f"{full_auto_info.skill_cap:d} skill needed " \ + f"to cap Full Auto recharge at {full_auto_info.hard_cap:d} secs\n\n" + + return ChatBlob(f"Weapon Info for {item.name} (QL {ql:d})", blob) + + def get_init_result(self, weapon_attack, weapon_recharge, init_skill): + if init_skill < 1200: + attack_calc = (((weapon_attack - (init_skill / 600)) - 1) / 0.02) + 87.5 + recharge_calc = (((weapon_recharge - (init_skill / 300)) - 1) / 0.02) + 87.5 + else: + attack_calc = (((weapon_attack - (1200 / 600) - ((init_skill - 1200) / 600 / 3)) - 1) / 0.02) + 87.5 + recharge_calc = (((weapon_recharge - (1200 / 300) - ((init_skill - 1200) / 300 / 3)) - 1) / 0.02) + 87.5 + + if attack_calc < recharge_calc: + init_result = recharge_calc + else: + init_result = attack_calc + + init_result = min(init_result, 100) # max of 100 + init_result = max(init_result, 0) # min of 0 + + return init_result + + def get_inits_needed(self, init_result, weapon_attack, weapon_recharge): + inits_attack = (((init_result - 87.5) * 0.02) + 1 - weapon_attack) * -600 + inits_recharge = (((init_result - 87.5) * 0.02) + 1 - weapon_recharge) * -300 + + if inits_attack > 1200: + inits_attack = ((((init_result - 87.5) * 0.02) + 1 - weapon_attack + 2) * -1800) + 1200 + + if inits_recharge > 1200: + inits_recharge = ((((init_result - 87.5) * 0.02) + 1 - weapon_attack + 4) * -900) + 1200 + + if inits_attack < inits_recharge: + return inits_recharge + else: + return inits_attack + + def get_aimed_shot_info(self, weapon_attack, weapon_recharge, aimed_shot_skill): + result = DictObject() + result.multiplier = round(aimed_shot_skill / 95) + result.hard_cap = math.floor(weapon_attack + 10) + result.skill_cap = math.ceil((4000 * weapon_recharge - 1100) / 3) + + as_recharge = math.ceil((weapon_recharge * 40) - (aimed_shot_skill * 3 / 100) + weapon_attack - 1) + if as_recharge < result.hard_cap: + as_recharge = result.hard_cap + + result.recharge = as_recharge + + return result + + def get_brawl_info(self, brawl_skill): + min_values = {1: 1, 1000: 100, 1001: 101, 2000: 170, 2001: 171, 3000: 235} + max_values = {1: 2, 1000: 500, 1001: 501, 2000: 850, 2001: 851, 3000: 1145} + crit_values = {1: 3, 1000: 500, 1001: 501, 2000: 600, 2001: 601, 3000: 725} + + brawl_info = DictObject() + brawl_info.min_dmg = self.util.interpolate_value(brawl_skill, min_values) + brawl_info.max_dmg = self.util.interpolate_value(brawl_skill, max_values) + brawl_info.crit_dmg = self.util.interpolate_value(brawl_skill, crit_values) + brawl_info.stun_chance = 10 if brawl_skill < 1000 else 20 + brawl_info.stun_duration = 3 if brawl_skill < 2001 else 4 + + return brawl_info + + def get_burst_info(self, weapon_attack, weapon_recharge, burst_recharge, burst_skill): + result = DictObject() + result.hard_cap = round(weapon_attack + 8) + result.skill_cap = math.floor(((weapon_recharge * 20) + (burst_recharge / 100) - 8) * 25) + + recharge = math.floor((weapon_recharge * 20) + (burst_recharge / 100) - (burst_skill / 25) + weapon_attack) + if recharge < result.hard_cap: + recharge = result.hard_cap + + result.recharge = recharge + + return result + + def get_dimach_info(self, dimach_skill): + # item ids: 42033, 42032, 213260, 213261, 213262, 213263 + general_dmg = {1: 1, 1000: 2000, 1001: 2001, 2000: 2500, 2001: 2501, 3000: 2850} + + # item ids: 42033, 42032, 213264, 213265, 213266, 213267 + ma_recharge = {1: 1800, 1000: 1800, 1001: 1188, 2000: 600, 2001: 600, 3000: 300} + ma_dmg = {1: 1, 1000: 2000, 1001: 2001, 2000: 2340, 2001: 2341, 3000: 2550} + + # item ids: 213269, 213270, 213271, 213272, 213273, 213274 + shade_recharge = {1: 300, 1000: 300, 1001: 300, 2000: 300, 2001: 240, 3000: 200} + shade_dmg = {1: 1, 1000: 920, 1001: 921, 2000: 1872, 2001: 1873, 3000: 2750} + shade_heal_percentage = {1: 70, 1000: 70, 1001: 70, 2000: 75, 2001: 75, 3000: 80} + + # item ids: 211399, 211400, 213275, 213276, 213277, 213278 + keeper_heal = {1: 1, 1000: 3000, 1001: 3001, 2000: 10500, 2001: 10501, 3000: 15000} + + result = DictObject() + result.general_dmg = self.util.interpolate_value(dimach_skill, general_dmg) + result.ma_recharge = self.util.interpolate_value(dimach_skill, ma_recharge) + result.ma_dmg = self.util.interpolate_value(dimach_skill, ma_dmg) + result.shade_recharge = self.util.interpolate_value(dimach_skill, shade_recharge) + result.shade_dmg = self.util.interpolate_value(dimach_skill, shade_dmg) + result.shade_heal_percentage = self.util.interpolate_value(dimach_skill, shade_heal_percentage) + result.keeper_heal = self.util.interpolate_value(dimach_skill, keeper_heal) + + return result + + def get_fast_attack_info(self, weapon_attack, fast_attack_skill): + result = DictObject() + result.hard_cap = weapon_attack + 5 + result.skill_cap = ((weapon_attack * 16) - result.hard_cap) * 100 + + recharge = (weapon_attack * 16) - (fast_attack_skill / 100) + if recharge < result.hard_cap: + recharge = result.hard_cap + + result.recharge = recharge + + return result + + def get_fling_shot_info(self, weapon_attack, fling_shot_skill): + result = DictObject() + result.hard_cap = weapon_attack + 5 + result.skill_cap = ((weapon_attack * 16) - result.hard_cap) * 100 + + recharge = (weapon_attack * 16) - (fling_shot_skill / 100) + if recharge < result.hard_cap: + recharge = result.hard_cap + + result.recharge = recharge + + return result + + def get_full_auto_info(self, weapon_attack, weapon_recharge, full_auto_recharge, full_auto_skill): + result = DictObject() + result.hard_cap = math.floor(weapon_attack + 10) + result.skill_cap = ((weapon_recharge * 40) + (full_auto_recharge / 100) - 11) * 25 + result.max_bullets = 5 + math.floor(full_auto_skill / 100) + + recharge = round( + (weapon_recharge * 40) + (full_auto_recharge / 100) - (full_auto_skill / 25) + round(weapon_attack - 1)) + if recharge < result.hard_cap: + recharge = result.hard_cap + + result.recharge = recharge + + return result + + def get_martial_arts_info(self, ma_skill): + result = DictObject() + + # ma items: http://budabot.com/forum/viewtopic.php?f=7&t=1264&p=5739#p5739 + # QL 1 100 500 1 500 1 500 + # 211349, 211350, 211351, 211359, 211360, 211365, 211366 // Shade + # 211352, 211353, 211354, 211357, 211358, 211363, 211364 // MA + # 43712, 144745, 43713, 211355, 211356, 211361, 211362 // Gen/other + + ma_min_dmg = {1: 4, 200: 45, 1000: 125, 1001: 130, 2000: 220, 2001: 225, 3000: 450} + ma_max_dmg = {1: 8, 200: 75, 1000: 400, 1001: 405, 2000: 830, 2001: 831, 3000: 1300} + ma_crit_dmg = {1: 3, 200: 50, 1000: 500, 1001: 501, 2000: 560, 2001: 561, 3000: 800} + ma_speed = {1: 1.15, 200: 1.20, 1000: 1.25, 1001: 1.30, 2000: 1.35, 2001: 1.45, 3000: 1.50} + + shade_min_dmg = {1: 3, 200: 25, 1000: 55, 1001: 56, 2000: 130, 2001: 131, 3000: 280} + shade_max_dmg = {1: 5, 200: 60, 1000: 258, 1001: 259, 2000: 682, 2001: 683, 3000: 890} + shade_crit_dmg = {1: 3, 200: 50, 1000: 250, 1001: 251, 2000: 275, 2001: 276, 3000: 300} + shade_speed = {1: 1.25, 200: 1.25, 1000: 1.45, 1001: 1.45, 2000: 1.65, 2001: 1.65, 3000: 1.85} + + gen_min_dmg = {1: 3, 200: 25, 1000: 65, 1001: 66, 2000: 140, 2001: 204, 3000: 300} + gen_max_dmg = {1: 5, 200: 60, 1000: 280, 1001: 281, 2000: 715, 2001: 831, 3000: 990} + gen_crit_dmg = {1: 3, 200: 50, 1000: 500, 1001: 501, 2000: 605, 2001: 605, 3000: 630} + gen_speed = {1: 1.25, 200: 1.25, 1000: 1.45, 1001: 1.45, 2000: 1.65, 2001: 1.65, 3000: 1.85} + + result.ma_min_dmg = self.util.interpolate_value(ma_skill, ma_min_dmg) + result.ma_max_dmg = self.util.interpolate_value(ma_skill, ma_max_dmg) + result.ma_crit_dmg = self.util.interpolate_value(ma_skill, ma_crit_dmg) + result.ma_speed = self.util.interpolate_value(ma_skill, ma_speed, 2) + + result.shade_min_dmg = self.util.interpolate_value(ma_skill, shade_min_dmg) + result.shade_max_dmg = self.util.interpolate_value(ma_skill, shade_max_dmg) + result.shade_crit_dmg = self.util.interpolate_value(ma_skill, shade_crit_dmg) + result.shade_speed = self.util.interpolate_value(ma_skill, shade_speed, 2) + + result.gen_min_dmg = self.util.interpolate_value(ma_skill, gen_min_dmg) + result.gen_max_dmg = self.util.interpolate_value(ma_skill, gen_max_dmg) + result.gen_crit_dmg = self.util.interpolate_value(ma_skill, gen_crit_dmg) + result.gen_speed = self.util.interpolate_value(ma_skill, gen_speed, 2) + + return result + + def get_nano_cast_info(self, nano_cast_init, nano_attack_time): + if nano_cast_init > 1200: + nano_cast_reduction = (nano_cast_init - 1200) / 600 + 6 + else: + nano_cast_reduction = nano_cast_init / 200 + + result = DictObject() + result.cast_time_reduction = nano_cast_reduction + result.effective_cast_time = nano_attack_time - nano_cast_reduction + result.instacast_full_agg = self.get_nano_init_for_instacast(nano_attack_time - 1) + result.instacast_neutral = self.get_nano_init_for_instacast(nano_attack_time - 0.75) + result.instacast_half = self.get_nano_init_for_instacast(nano_attack_time) + result.instacast_full_def = self.get_nano_init_for_instacast(nano_attack_time + 1) + result.cast_time_full_agg = result.effective_cast_time - 1 + result.cast_time_neutral = result.effective_cast_time - 0.75 + result.cast_time_half = result.effective_cast_time + result.cast_time_full_def = result.effective_cast_time + 1 + + bar_setting = round(result.effective_cast_time / 0.02 + 50) + if bar_setting < 0: + bar_setting = 0 + result.bar_setting = bar_setting + + return result + + def get_nano_init_for_instacast(self, nano_attack_time): + if nano_attack_time < 6: + return nano_attack_time * 200 + else: + return 1200 + (nano_attack_time - 6) * 600 + + def get_inits_display(self, weapon_attack, weapon_recharge): + num_steps = 9 + step_size = 100 / (num_steps - 1) + blob = "" + for i in reversed(range(0, num_steps)): + inits_needed = self.get_inits_needed(i * step_size, weapon_attack, weapon_recharge) + blob += f"DEF >{'=' * i}{']['}{'=' * (num_steps - 1 - i)}< AGG {i * step_size:d}% {inits_needed:d} init \n" + + return blob diff --git a/modules/standard/specials/weapon_attributes.sql b/modules/standard/specials/weapon_attributes.sql new file mode 100644 index 0000000..c57ee61 --- /dev/null +++ b/modules/standard/specials/weapon_attributes.sql @@ -0,0 +1,10842 @@ +DROP TABLE IF EXISTS weapon_attributes; +CREATE TABLE IF NOT EXISTS weapon_attributes +( + id INT PRIMARY KEY, + attack_time INT NOT NULL, + recharge_time INT NOT NULL, + full_auto INT, + burst INT, + fling_shot TINYINT NOT NULL, + fast_attack TINYINT NOT NULL, + aimed_shot TINYINT NOT NULL +); +INSERT INTO weapon_attributes +VALUES (42031, 1, 180000, null, null, 0, 0, 0), + (42032, 1, 180000, null, null, 0, 0, 0), + (42033, 1, 180000, null, null, 0, 0, 0), + (42034, 1, 180000, null, null, 0, 0, 0), + (43712, 125, 125, null, null, 0, 0, 0), + (43713, 145, 145, null, null, 0, 0, 0), + (70292, 10, 1500, null, null, 0, 0, 0), + (70293, 10, 1500, null, null, 0, 0, 0), + (96094, 1000, 1500, null, null, 0, 0, 0), + (96095, 1000, 1500, null, null, 0, 0, 0), + (121564, 150, 150, null, null, 0, 0, 0), + (121565, 150, 150, null, null, 0, 0, 0), + (121566, 150, 100, null, null, 0, 0, 0), + (121567, 100, 100, null, null, 1, 0, 0), + (121568, 100, 150, null, null, 0, 0, 1), + (121569, 100, 150, null, null, 0, 0, 0), + (121570, 150, 150, null, null, 1, 0, 0), + (121571, 100, 100, null, null, 0, 0, 0), + (121572, 151, 129, null, null, 0, 1, 0), + (121573, 153, 142, null, null, 0, 1, 0), + (121574, 153, 143, null, null, 0, 1, 0), + (121575, 154, 156, null, null, 0, 1, 0), + (121576, 154, 157, null, null, 0, 1, 0), + (121577, 156, 170, null, null, 0, 1, 0), + (121578, 156, 171, null, null, 0, 1, 0), + (121579, 158, 184, null, null, 0, 1, 0), + (121580, 158, 185, null, null, 0, 1, 0), + (121581, 160, 198, null, null, 0, 1, 0), + (121582, 160, 199, null, null, 0, 1, 0), + (121583, 161, 212, null, null, 0, 1, 0), + (121584, 161, 213, null, null, 0, 1, 0), + (121585, 163, 226, null, null, 0, 1, 0), + (121586, 163, 227, null, null, 0, 1, 0), + (121587, 165, 240, null, null, 0, 1, 0), + (121588, 165, 241, null, null, 0, 1, 0), + (121589, 166, 249, null, null, 0, 1, 0), + (121590, 166, 250, null, null, 0, 1, 0), + (121591, 102, 102, null, null, 0, 1, 0), + (121592, 96, 92, null, null, 0, 1, 0), + (121593, 96, 91, null, null, 0, 1, 0), + (121594, 90, 81, null, null, 0, 1, 0), + (121595, 90, 81, null, null, 0, 1, 0), + (121596, 84, 71, null, null, 0, 1, 0), + (121597, 84, 70, null, null, 0, 1, 0), + (121598, 78, 60, null, null, 0, 1, 0), + (121599, 78, 59, null, null, 0, 1, 0), + (121600, 72, 49, null, null, 0, 1, 0), + (121601, 72, 49, null, null, 0, 1, 0), + (121602, 66, 39, null, null, 0, 1, 0), + (121603, 66, 38, null, null, 0, 1, 0), + (121604, 60, 28, null, null, 0, 1, 0), + (121605, 60, 28, null, null, 0, 1, 0), + (121606, 54, 17, null, null, 0, 1, 0), + (121607, 54, 17, null, null, 0, 1, 0), + (121608, 50, 10, null, null, 0, 1, 0), + (121609, 50, 10, null, null, 0, 1, 0), + (121610, 103, 161, null, null, 0, 0, 0), + (121611, 103, 160, null, null, 0, 0, 0), + (121612, 103, 160, null, null, 0, 0, 0), + (121613, 103, 159, null, null, 0, 0, 0), + (121614, 103, 159, null, null, 0, 0, 0), + (121615, 103, 158, null, null, 0, 0, 0), + (121616, 103, 158, null, null, 0, 0, 0), + (121617, 103, 157, null, null, 0, 0, 0), + (121618, 103, 157, null, null, 0, 0, 0), + (121619, 102, 156, null, null, 0, 0, 0), + (121620, 102, 156, null, null, 0, 0, 0), + (121621, 102, 155, null, null, 0, 0, 0), + (121622, 102, 155, null, null, 0, 0, 0), + (121623, 102, 154, null, null, 0, 0, 0), + (121624, 102, 154, null, null, 0, 0, 0), + (121625, 102, 153, null, null, 0, 0, 0), + (121626, 102, 153, null, null, 0, 0, 0), + (121627, 102, 152, null, null, 0, 0, 0), + (121628, 102, 152, null, null, 0, 0, 0), + (121629, 150, 152, null, null, 0, 0, 0), + (121630, 150, 152, null, null, 0, 0, 0), + (121631, 150, 152, null, null, 0, 0, 0), + (121632, 150, 152, null, null, 0, 0, 0), + (121633, 150, 152, null, null, 0, 0, 0), + (121634, 150, 152, null, null, 0, 0, 0), + (121635, 150, 152, null, null, 0, 0, 0), + (121636, 150, 152, null, null, 0, 0, 0), + (121637, 150, 152, null, null, 0, 0, 0), + (121638, 150, 152, null, null, 0, 0, 0), + (121639, 150, 152, null, null, 0, 0, 0), + (121640, 150, 152, null, null, 0, 0, 0), + (121641, 150, 152, null, null, 0, 0, 0), + (121642, 150, 152, null, null, 0, 0, 0), + (121643, 150, 152, null, null, 0, 0, 0), + (121644, 150, 152, null, null, 0, 0, 0), + (121645, 150, 152, null, null, 0, 0, 0), + (121646, 150, 152, null, null, 0, 0, 0), + (121647, 150, 152, null, null, 0, 0, 0), + (121648, 200, 152, null, null, 0, 0, 0), + (121649, 200, 152, null, null, 0, 0, 0), + (121650, 200, 152, null, null, 0, 0, 0), + (121651, 200, 152, null, null, 0, 0, 0), + (121652, 200, 152, null, null, 0, 0, 0), + (121653, 200, 152, null, null, 0, 0, 0), + (121654, 200, 152, null, null, 0, 0, 0), + (121655, 200, 152, null, null, 0, 0, 0), + (121656, 200, 152, null, null, 0, 0, 0), + (121657, 200, 152, null, null, 0, 0, 0), + (121658, 200, 152, null, null, 0, 0, 0), + (121659, 200, 152, null, null, 0, 0, 0), + (121660, 200, 152, null, null, 0, 0, 0), + (121661, 200, 152, null, null, 0, 0, 0), + (121662, 200, 152, null, null, 0, 0, 0), + (121663, 200, 152, null, null, 0, 0, 0), + (121664, 200, 152, null, null, 0, 0, 0), + (121665, 252, 252, null, null, 0, 0, 0), + (121666, 252, 252, null, null, 0, 0, 0), + (121667, 252, 252, null, null, 0, 0, 0), + (121668, 252, 252, null, null, 0, 0, 0), + (121669, 252, 252, null, null, 0, 0, 0), + (121670, 252, 252, null, null, 0, 0, 0), + (121671, 252, 252, null, null, 0, 0, 0), + (121672, 252, 252, null, null, 0, 0, 0), + (121673, 252, 252, null, null, 0, 0, 0), + (121674, 252, 252, null, null, 0, 0, 0), + (121675, 252, 252, null, null, 0, 0, 0), + (121676, 252, 252, null, null, 0, 0, 0), + (121677, 252, 252, null, null, 0, 0, 0), + (121678, 252, 252, null, null, 0, 0, 0), + (121679, 252, 252, null, null, 0, 0, 0), + (121680, 252, 252, null, null, 0, 0, 0), + (121681, 252, 252, null, null, 0, 0, 0), + (121682, 252, 252, null, null, 0, 0, 0), + (121683, 252, 252, null, null, 0, 0, 0), + (121684, 252, 252, 7300, 2400, 0, 0, 0), + (121685, 252, 252, 7300, 2400, 0, 0, 0), + (121686, 252, 252, 7300, 2400, 0, 0, 0), + (121687, 252, 252, 7300, 2400, 0, 0, 0), + (121688, 252, 252, 7300, 2400, 0, 0, 0), + (121689, 252, 252, 7300, 2400, 0, 0, 0), + (121690, 252, 252, 7300, 2400, 0, 0, 0), + (121691, 252, 252, 7300, 2400, 0, 0, 0), + (121692, 252, 252, 7300, 2400, 0, 0, 0), + (121693, 252, 252, 7300, 2400, 0, 0, 0), + (121694, 252, 252, 7300, 2400, 0, 0, 0), + (121695, 252, 252, 7300, 2400, 0, 0, 0), + (121696, 252, 252, 7300, 2400, 0, 0, 0), + (121697, 252, 252, 7300, 2400, 0, 0, 0), + (121698, 252, 252, 7300, 2400, 0, 0, 0), + (121699, 252, 252, 7300, 2400, 0, 0, 0), + (121700, 252, 252, 7300, 2400, 0, 0, 0), + (121701, 252, 252, 7300, 2400, 0, 0, 0), + (121702, 252, 252, 7300, 2400, 0, 0, 0), + (121703, 150, 150, null, null, 0, 1, 0), + (121704, 150, 150, null, null, 0, 1, 0), + (121705, 150, 150, null, null, 0, 1, 0), + (121706, 150, 150, null, null, 0, 1, 0), + (121707, 150, 150, null, null, 0, 1, 0), + (121708, 150, 150, null, null, 0, 1, 0), + (121709, 150, 150, null, null, 0, 1, 0), + (121710, 150, 150, null, null, 0, 1, 0), + (121711, 150, 150, null, null, 0, 1, 0), + (121712, 150, 150, null, null, 0, 1, 0), + (121713, 150, 150, null, null, 0, 1, 0), + (121714, 150, 150, null, null, 0, 1, 0), + (121715, 150, 150, null, null, 0, 1, 0), + (121716, 150, 150, null, null, 0, 1, 0), + (121717, 150, 150, null, null, 0, 1, 0), + (121718, 150, 150, null, null, 0, 1, 0), + (121719, 150, 150, null, null, 0, 1, 0), + (121720, 150, 150, null, null, 0, 1, 0), + (121721, 150, 150, null, null, 0, 1, 0), + (121722, 251, 251, null, null, 0, 0, 0), + (121723, 251, 251, null, null, 0, 0, 0), + (121724, 251, 251, null, null, 0, 0, 0), + (121725, 251, 251, null, null, 0, 0, 0), + (121726, 251, 251, null, null, 0, 0, 0), + (121727, 251, 251, null, null, 0, 0, 0), + (121728, 251, 251, null, null, 0, 0, 0), + (121729, 251, 251, null, null, 0, 0, 0), + (121730, 251, 251, null, null, 0, 0, 0), + (121731, 251, 251, null, null, 0, 0, 0), + (121732, 251, 251, null, null, 0, 0, 0), + (121733, 251, 251, null, null, 0, 0, 0), + (121734, 251, 251, null, null, 0, 0, 0), + (121735, 251, 251, null, null, 0, 0, 0), + (121736, 251, 251, null, null, 0, 0, 0), + (121737, 251, 251, null, null, 0, 0, 0), + (121738, 251, 251, null, null, 0, 0, 0), + (121739, 251, 251, null, null, 0, 0, 0), + (121740, 251, 251, null, null, 0, 0, 0), + (121741, 130, 130, null, null, 0, 1, 0), + (121742, 130, 130, null, null, 0, 1, 0), + (121743, 130, 130, null, null, 0, 1, 0), + (121744, 130, 130, null, null, 0, 1, 0), + (121745, 130, 130, null, null, 0, 1, 0), + (121746, 130, 130, null, null, 0, 1, 0), + (121747, 130, 130, null, null, 0, 1, 0), + (121748, 130, 130, null, null, 0, 1, 0), + (121749, 130, 130, null, null, 0, 1, 0), + (121750, 130, 130, null, null, 0, 1, 0), + (121751, 130, 130, null, null, 0, 1, 0), + (121752, 130, 130, null, null, 0, 1, 0), + (121753, 130, 130, null, null, 0, 1, 0), + (121754, 130, 130, null, null, 0, 1, 0), + (121755, 130, 130, null, null, 0, 1, 0), + (121756, 130, 130, null, null, 0, 1, 0), + (121757, 130, 130, null, null, 0, 1, 0), + (121758, 130, 130, null, null, 0, 1, 0), + (121759, 130, 130, null, null, 0, 1, 0), + (121760, 130, 150, null, null, 0, 1, 0), + (121761, 130, 150, null, null, 0, 1, 0), + (121762, 130, 150, null, null, 0, 1, 0), + (121763, 130, 150, null, null, 0, 1, 0), + (121764, 130, 150, null, null, 0, 1, 0), + (121765, 130, 150, null, null, 0, 1, 0), + (121766, 130, 150, null, null, 0, 1, 0), + (121767, 130, 150, null, null, 0, 1, 0), + (121768, 130, 150, null, null, 0, 1, 0), + (121769, 130, 150, null, null, 0, 1, 0), + (121770, 130, 150, null, null, 0, 1, 0), + (121771, 130, 150, null, null, 0, 1, 0), + (121772, 130, 150, null, null, 0, 1, 0), + (121773, 130, 150, null, null, 0, 1, 0), + (121774, 130, 150, null, null, 0, 1, 0), + (121775, 130, 150, null, null, 0, 1, 0), + (121776, 130, 150, null, null, 0, 1, 0), + (121777, 130, 150, null, null, 0, 1, 0), + (121778, 130, 150, null, null, 0, 1, 0), + (121779, 120, 150, 7800, 2600, 0, 0, 0), + (121780, 120, 150, 7800, 2600, 0, 0, 0), + (121781, 120, 150, 7800, 2600, 0, 0, 0), + (121782, 120, 150, 7800, 2600, 0, 0, 0), + (121783, 120, 150, 7800, 2600, 0, 0, 0), + (121784, 120, 150, 7800, 2600, 0, 0, 0), + (121785, 120, 150, 7800, 2600, 0, 0, 0), + (121786, 120, 150, 7800, 2600, 0, 0, 0), + (121787, 120, 150, 7800, 2600, 0, 0, 0), + (121788, 120, 150, 7800, 2600, 0, 0, 0), + (121789, 120, 150, 7800, 2600, 0, 0, 0), + (121790, 120, 150, 7800, 2600, 0, 0, 0), + (121791, 120, 150, 7800, 2600, 0, 0, 0), + (121792, 120, 150, 7800, 2600, 0, 0, 0), + (121793, 120, 150, 7800, 2600, 0, 0, 0), + (121794, 120, 150, 7800, 2600, 0, 0, 0), + (121795, 120, 150, 7800, 2600, 0, 0, 0), + (121796, 120, 150, 7800, 2600, 0, 0, 0), + (121797, 120, 150, 7800, 2600, 0, 0, 0), + (121798, 250, 250, null, null, 0, 0, 1), + (121799, 250, 250, null, null, 0, 0, 1), + (121800, 250, 250, null, null, 0, 0, 1), + (121801, 250, 250, null, null, 0, 0, 1), + (121802, 250, 250, null, null, 0, 0, 1), + (121803, 250, 250, null, null, 0, 0, 1), + (121804, 250, 250, null, null, 0, 0, 1), + (121805, 250, 250, null, null, 0, 0, 1), + (121806, 250, 250, null, null, 0, 0, 1), + (121807, 250, 250, null, null, 0, 0, 1), + (121808, 250, 250, null, null, 0, 0, 1), + (121809, 250, 250, null, null, 0, 0, 1), + (121810, 250, 250, null, null, 0, 0, 1), + (121811, 250, 250, null, null, 0, 0, 1), + (121812, 250, 250, null, null, 0, 0, 1), + (121813, 250, 250, null, null, 0, 0, 1), + (121814, 250, 250, null, null, 0, 0, 1), + (121815, 250, 250, null, null, 0, 0, 1), + (121816, 250, 250, null, null, 0, 0, 1), + (121817, 150, 101, null, null, 1, 0, 0), + (121818, 150, 101, null, null, 1, 0, 0), + (121819, 150, 101, null, null, 1, 0, 0), + (121820, 150, 101, null, null, 1, 0, 0), + (121821, 150, 101, null, null, 1, 0, 0), + (121822, 150, 102, null, null, 1, 0, 0), + (121823, 150, 102, null, null, 1, 0, 0), + (121824, 150, 102, null, null, 1, 0, 0), + (121825, 150, 102, null, null, 1, 0, 0), + (121826, 150, 102, null, null, 1, 0, 0), + (121827, 150, 102, null, null, 1, 0, 0), + (121828, 150, 102, null, null, 1, 0, 0), + (121829, 150, 102, null, null, 1, 0, 0), + (121830, 150, 102, null, null, 1, 0, 0), + (121831, 150, 102, null, null, 1, 0, 0), + (121832, 150, 103, null, null, 1, 0, 0), + (121833, 150, 103, null, null, 1, 0, 0), + (121834, 150, 103, null, null, 1, 0, 0), + (121835, 150, 103, null, null, 1, 0, 0), + (121836, 120, 120, null, null, 1, 0, 0), + (121837, 120, 120, null, null, 1, 0, 0), + (121838, 120, 120, null, null, 1, 0, 0), + (121839, 120, 120, null, null, 1, 0, 0), + (121840, 120, 120, null, null, 1, 0, 0), + (121841, 120, 120, null, null, 1, 0, 0), + (121842, 120, 120, null, null, 1, 0, 0), + (121843, 120, 120, null, null, 1, 0, 0), + (121844, 120, 120, null, null, 1, 0, 0), + (121845, 120, 120, null, null, 1, 0, 0), + (121846, 120, 120, null, null, 1, 0, 0), + (121847, 120, 120, null, null, 1, 0, 0), + (121848, 120, 120, null, null, 1, 0, 0), + (121849, 120, 120, null, null, 1, 0, 0), + (121850, 120, 120, null, null, 1, 0, 0), + (121851, 120, 120, null, null, 1, 0, 0), + (121852, 120, 120, null, null, 1, 0, 0), + (121853, 120, 120, null, null, 1, 0, 0), + (121854, 120, 120, null, null, 1, 0, 0), + (121855, 150, 150, null, null, 0, 0, 0), + (121856, 150, 150, null, null, 0, 0, 0), + (121857, 150, 150, null, null, 0, 0, 0), + (121858, 150, 150, null, null, 0, 0, 0), + (121859, 150, 150, null, null, 0, 0, 0), + (121860, 150, 150, null, null, 0, 0, 0), + (121861, 150, 150, null, null, 0, 0, 0), + (121862, 150, 150, null, null, 0, 0, 0), + (121863, 150, 150, null, null, 0, 0, 0), + (121864, 150, 150, null, null, 0, 0, 0), + (121865, 150, 150, null, null, 0, 0, 0), + (121866, 150, 150, null, null, 0, 0, 0), + (121867, 150, 150, null, null, 0, 0, 0), + (121868, 150, 150, null, null, 0, 0, 0), + (121869, 150, 150, null, null, 0, 0, 0), + (121870, 150, 150, null, null, 0, 0, 0), + (121871, 150, 150, null, null, 0, 0, 0), + (121872, 150, 150, null, null, 0, 0, 0), + (121873, 150, 150, null, null, 0, 0, 0), + (121874, 130, 100, 8035, null, 1, 0, 0), + (121875, 130, 100, 8035, null, 1, 0, 0), + (121876, 130, 100, 8035, null, 1, 0, 0), + (121877, 130, 100, 8035, null, 1, 0, 0), + (121878, 130, 100, 8035, null, 1, 0, 0), + (121879, 130, 100, 8035, null, 1, 0, 0), + (121880, 130, 100, 8035, null, 1, 0, 0), + (121881, 130, 100, 8035, null, 1, 0, 0), + (121882, 130, 100, 8035, null, 1, 0, 0), + (121883, 130, 100, 8035, null, 1, 0, 0), + (121884, 130, 100, 8035, null, 1, 0, 0), + (121885, 130, 100, 8035, null, 1, 0, 0), + (121886, 130, 100, 8035, null, 1, 0, 0), + (121887, 130, 100, 8035, null, 1, 0, 0), + (121888, 130, 100, 8035, null, 1, 0, 0), + (121889, 130, 100, 8035, null, 1, 0, 0), + (121890, 130, 100, 8035, null, 1, 0, 0), + (121891, 130, 100, 8035, null, 1, 0, 0), + (121892, 130, 100, null, null, 1, 0, 0), + (121893, 100, 150, null, 2400, 0, 0, 0), + (121894, 100, 150, null, 2400, 0, 0, 0), + (121895, 100, 150, null, 2400, 0, 0, 0), + (121896, 100, 150, null, 2400, 0, 0, 0), + (121897, 100, 150, null, 2400, 0, 0, 0), + (121898, 100, 150, null, 2400, 0, 0, 0), + (121899, 100, 150, null, 2400, 0, 0, 0), + (121900, 100, 150, null, 2400, 0, 0, 0), + (121901, 100, 150, null, 2400, 0, 0, 0), + (121902, 100, 150, null, 2400, 0, 0, 0), + (121903, 100, 150, null, 2400, 0, 0, 0), + (121904, 100, 150, null, 2400, 0, 0, 0), + (121905, 100, 150, null, 2400, 0, 0, 0), + (121906, 100, 150, null, 2400, 0, 0, 0), + (121907, 100, 150, null, 2400, 0, 0, 0), + (121908, 100, 150, null, 2400, 0, 0, 0), + (121909, 100, 150, null, 2400, 0, 0, 0), + (121910, 100, 150, null, 2400, 0, 0, 0), + (121911, 100, 150, null, 2400, 0, 0, 0), + (121912, 224, 123, null, null, 0, 0, 0), + (121913, 226, 126, null, null, 0, 0, 0), + (121914, 227, 126, null, null, 0, 0, 0), + (121915, 229, 128, null, null, 0, 0, 0), + (121916, 229, 128, null, null, 0, 0, 0), + (121917, 232, 131, null, null, 0, 0, 0), + (121918, 232, 131, null, null, 0, 0, 0), + (121919, 234, 134, null, null, 0, 0, 0), + (121920, 234, 134, null, null, 0, 0, 0), + (121921, 237, 136, null, null, 0, 0, 0), + (121922, 237, 137, null, null, 0, 0, 0), + (121923, 240, 139, null, null, 0, 0, 0), + (121924, 240, 139, null, null, 0, 0, 0), + (121925, 242, 142, null, null, 0, 0, 0), + (121926, 242, 142, null, null, 0, 0, 0), + (121927, 245, 145, null, null, 0, 0, 0), + (121928, 245, 145, null, null, 0, 0, 0), + (121929, 250, 150, null, null, 0, 0, 0), + (121930, 250, 150, null, null, 0, 0, 0), + (121931, 251, 251, null, null, 0, 0, 0), + (121932, 249, 249, null, null, 0, 0, 0), + (121933, 249, 249, null, null, 0, 0, 0), + (121934, 246, 246, null, null, 0, 0, 0), + (121935, 246, 246, null, null, 0, 0, 0), + (121936, 244, 244, null, null, 0, 0, 0), + (121937, 244, 244, null, null, 0, 0, 0), + (121938, 242, 242, null, null, 0, 0, 0), + (121939, 242, 242, null, null, 0, 0, 0), + (121940, 240, 240, null, null, 0, 0, 0), + (121941, 239, 239, null, null, 0, 0, 0), + (121942, 237, 237, null, null, 0, 0, 0), + (121943, 237, 237, null, null, 0, 0, 0), + (121944, 235, 235, null, null, 0, 0, 0), + (121945, 235, 235, null, null, 0, 0, 0), + (121946, 233, 233, null, null, 0, 0, 0), + (121947, 233, 233, null, null, 0, 0, 0), + (121948, 228, 228, null, null, 0, 0, 0), + (121949, 228, 228, null, null, 0, 0, 0), + (121950, 150, 150, null, null, 0, 1, 0), + (121951, 150, 150, null, null, 0, 1, 0), + (121952, 150, 150, null, null, 0, 1, 0), + (121953, 150, 150, null, null, 0, 1, 0), + (121954, 150, 150, null, null, 0, 1, 0), + (121955, 150, 150, null, null, 0, 1, 0), + (121956, 150, 150, null, null, 0, 1, 0), + (121957, 150, 150, null, null, 0, 1, 0), + (121958, 150, 150, null, null, 0, 1, 0), + (121959, 150, 150, null, null, 0, 1, 0), + (121960, 150, 150, null, null, 0, 1, 0), + (121961, 150, 150, null, null, 0, 1, 0), + (121962, 150, 150, null, null, 0, 1, 0), + (121963, 150, 150, null, null, 0, 1, 0), + (121964, 150, 150, null, null, 0, 1, 0), + (121965, 150, 150, null, null, 0, 1, 0), + (121966, 150, 150, null, null, 0, 1, 0), + (121967, 150, 150, null, null, 0, 1, 0), + (121968, 150, 150, null, null, 0, 1, 0), + (121969, 140, 140, null, null, 0, 0, 0), + (121970, 140, 140, null, null, 0, 0, 0), + (121971, 140, 140, null, null, 0, 0, 0), + (121972, 140, 140, null, null, 0, 0, 0), + (121973, 140, 140, null, null, 0, 0, 0), + (121974, 140, 140, null, null, 0, 0, 0), + (121975, 140, 140, null, null, 0, 0, 0), + (121976, 140, 140, null, null, 0, 0, 0), + (121977, 140, 140, null, null, 0, 0, 0), + (121978, 140, 140, null, null, 0, 0, 0), + (121979, 140, 140, null, null, 0, 0, 0), + (121980, 140, 140, null, null, 0, 0, 0), + (121981, 140, 140, null, null, 0, 0, 0), + (121982, 140, 140, null, null, 0, 0, 0), + (121983, 140, 140, null, null, 0, 0, 0), + (121984, 140, 140, null, null, 0, 0, 0), + (121985, 140, 140, null, null, 0, 0, 0), + (121986, 140, 140, null, null, 0, 0, 0), + (121987, 140, 140, null, null, 0, 0, 0), + (121988, 110, 110, null, null, 1, 0, 0), + (121989, 110, 110, null, null, 1, 0, 0), + (121990, 110, 110, null, null, 1, 0, 0), + (121991, 110, 110, null, null, 1, 0, 0), + (121992, 110, 110, null, null, 1, 0, 0), + (121993, 110, 110, null, null, 1, 0, 0), + (121994, 110, 110, null, null, 1, 0, 0), + (121995, 110, 110, null, null, 1, 0, 0), + (121996, 110, 110, null, null, 1, 0, 0), + (121997, 110, 110, null, null, 1, 0, 0), + (121998, 110, 110, null, null, 1, 0, 0), + (121999, 110, 110, null, null, 1, 0, 0), + (122000, 110, 110, null, null, 1, 0, 0), + (122001, 110, 110, null, null, 1, 0, 0), + (122002, 110, 110, null, null, 1, 0, 0), + (122003, 110, 110, null, null, 1, 0, 0), + (122004, 110, 110, null, null, 1, 0, 0), + (122005, 110, 110, null, null, 1, 0, 0), + (122006, 110, 110, null, null, 1, 0, 0), + (122007, 130, 155, null, null, 1, 0, 0), + (122008, 130, 155, null, null, 1, 0, 0), + (122009, 130, 155, null, null, 1, 0, 0), + (122010, 130, 155, null, null, 1, 0, 0), + (122011, 130, 155, null, null, 1, 0, 0), + (122012, 130, 155, null, null, 1, 0, 0), + (122013, 130, 155, null, null, 1, 0, 0), + (122014, 130, 155, null, null, 1, 0, 0), + (122015, 130, 155, null, null, 1, 0, 0), + (122016, 130, 155, null, null, 1, 0, 0), + (122017, 130, 155, null, null, 1, 0, 0), + (122018, 130, 155, null, null, 1, 0, 0), + (122019, 130, 155, null, null, 1, 0, 0), + (122020, 130, 155, null, null, 1, 0, 0), + (122021, 130, 155, null, null, 1, 0, 0), + (122022, 130, 155, null, null, 1, 0, 0), + (122023, 130, 155, null, null, 1, 0, 0), + (122024, 130, 155, null, null, 1, 0, 0), + (122025, 130, 155, null, null, 1, 0, 0), + (122026, 125, 120, null, null, 1, 0, 0), + (122027, 125, 120, null, null, 1, 0, 0), + (122028, 125, 120, null, null, 1, 0, 0), + (122029, 125, 120, null, null, 1, 0, 0), + (122030, 125, 120, null, null, 1, 0, 0), + (122031, 125, 120, null, null, 1, 0, 0), + (122032, 125, 120, null, null, 1, 0, 0), + (122033, 125, 120, null, null, 1, 0, 0), + (122034, 125, 120, null, null, 1, 0, 0), + (122035, 125, 120, null, null, 1, 0, 0), + (122036, 125, 120, null, null, 1, 0, 0), + (122037, 125, 120, null, null, 1, 0, 0), + (122038, 125, 120, null, null, 1, 0, 0), + (122039, 125, 120, null, null, 1, 0, 0), + (122040, 125, 120, null, null, 1, 0, 0), + (122041, 125, 120, null, null, 1, 0, 0), + (122042, 125, 120, null, null, 1, 0, 0), + (122043, 125, 120, null, null, 1, 0, 0), + (122044, 125, 120, null, null, 1, 0, 0), + (122045, 250, 250, null, null, 0, 0, 0), + (122046, 250, 250, null, null, 0, 0, 0), + (122047, 250, 250, null, null, 0, 0, 0), + (122048, 250, 250, null, null, 0, 0, 0), + (122049, 250, 250, null, null, 0, 0, 0), + (122050, 250, 250, null, null, 0, 0, 0), + (122051, 250, 250, null, null, 0, 0, 0), + (122052, 250, 250, null, null, 0, 0, 0), + (122053, 250, 250, null, null, 0, 0, 0), + (122054, 250, 250, null, null, 0, 0, 0), + (122055, 250, 250, null, null, 0, 0, 0), + (122056, 250, 250, null, null, 0, 0, 0), + (122057, 250, 250, null, null, 0, 0, 0), + (122058, 250, 250, null, null, 0, 0, 0), + (122059, 250, 250, null, null, 0, 0, 0), + (122060, 250, 250, null, null, 0, 0, 0), + (122061, 250, 250, null, null, 0, 0, 0), + (122062, 250, 250, null, null, 0, 0, 0), + (122063, 250, 250, null, null, 0, 0, 0), + (122064, 180, 120, null, null, 0, 1, 0), + (122065, 180, 120, null, null, 0, 1, 0), + (122066, 180, 120, null, null, 0, 1, 0), + (122067, 180, 120, null, null, 0, 1, 0), + (122068, 180, 120, null, null, 0, 1, 0), + (122069, 180, 120, null, null, 0, 1, 0), + (122070, 180, 120, null, null, 0, 1, 0), + (122071, 180, 120, null, null, 0, 1, 0), + (122072, 180, 120, null, null, 0, 1, 0), + (122073, 180, 120, null, null, 0, 1, 0), + (122074, 180, 120, null, null, 0, 1, 0), + (122075, 180, 120, null, null, 0, 1, 0), + (122076, 180, 120, null, null, 0, 1, 0), + (122077, 180, 120, null, null, 0, 1, 0), + (122078, 180, 120, null, null, 0, 1, 0), + (122079, 180, 120, null, null, 0, 1, 0), + (122080, 180, 120, null, null, 0, 1, 0), + (122081, 180, 120, null, null, 0, 1, 0), + (122082, 180, 120, null, null, 0, 1, 0), + (122083, 248, 102, null, null, 1, 0, 0), + (122084, 248, 102, null, null, 1, 0, 0), + (122085, 248, 102, null, null, 1, 0, 0), + (122086, 248, 102, null, null, 1, 0, 0), + (122087, 248, 102, null, null, 1, 0, 0), + (122088, 248, 102, null, null, 1, 0, 0), + (122089, 248, 102, null, null, 1, 0, 0), + (122090, 248, 102, null, null, 1, 0, 0), + (122091, 248, 102, null, null, 1, 0, 0), + (122092, 248, 102, null, null, 1, 0, 0), + (122093, 248, 102, null, null, 1, 0, 0), + (122094, 248, 102, null, null, 1, 0, 0), + (122095, 248, 102, null, null, 1, 0, 0), + (122096, 248, 102, null, null, 1, 0, 0), + (122097, 248, 102, null, null, 1, 0, 0), + (122098, 248, 102, null, null, 1, 0, 0), + (122099, 248, 102, null, null, 1, 0, 0), + (122100, 248, 102, null, null, 1, 0, 0), + (122101, 248, 102, null, null, 1, 0, 0), + (122102, 120, 135, null, null, 0, 1, 0), + (122103, 120, 135, null, null, 0, 1, 0), + (122104, 120, 135, null, null, 0, 1, 0), + (122105, 120, 135, null, null, 0, 1, 0), + (122106, 120, 135, null, null, 0, 1, 0), + (122107, 120, 135, null, null, 0, 1, 0), + (122108, 120, 135, null, null, 0, 1, 0), + (122109, 120, 135, null, null, 0, 1, 0), + (122110, 120, 135, null, null, 0, 1, 0), + (122111, 120, 135, null, null, 0, 1, 0), + (122112, 120, 135, null, null, 0, 1, 0), + (122113, 120, 135, null, null, 0, 1, 0), + (122114, 120, 135, null, null, 0, 1, 0), + (122115, 120, 135, null, null, 0, 1, 0), + (122116, 120, 135, null, null, 0, 1, 0), + (122117, 120, 135, null, null, 0, 1, 0), + (122118, 120, 135, null, null, 0, 1, 0), + (122119, 120, 135, null, null, 0, 1, 0), + (122120, 120, 135, null, null, 0, 1, 0), + (122121, 150, 150, null, null, 1, 0, 0), + (122122, 150, 150, null, null, 1, 0, 0), + (122123, 150, 150, null, null, 1, 0, 0), + (122124, 150, 150, null, null, 1, 0, 0), + (122125, 150, 150, null, null, 1, 0, 0), + (122126, 150, 150, null, null, 1, 0, 0), + (122127, 150, 150, null, null, 1, 0, 0), + (122128, 150, 150, null, null, 1, 0, 0), + (122129, 150, 150, null, null, 1, 0, 0), + (122130, 150, 150, null, null, 1, 0, 0), + (122131, 150, 150, null, null, 1, 0, 0), + (122132, 150, 150, null, null, 1, 0, 0), + (122133, 150, 150, null, null, 1, 0, 0), + (122134, 150, 150, null, null, 1, 0, 0), + (122135, 150, 150, null, null, 1, 0, 0), + (122136, 150, 150, null, null, 1, 0, 0), + (122137, 150, 150, null, null, 1, 0, 0), + (122138, 150, 150, null, null, 1, 0, 0), + (122139, 150, 150, null, null, 1, 0, 0), + (122140, 130, 130, null, null, 0, 1, 0), + (122141, 130, 130, null, null, 0, 1, 0), + (122142, 130, 130, null, null, 0, 1, 0), + (122143, 130, 130, null, null, 0, 1, 0), + (122144, 130, 130, null, null, 0, 1, 0), + (122145, 130, 130, null, null, 0, 1, 0), + (122146, 130, 130, null, null, 0, 1, 0), + (122147, 130, 130, null, null, 0, 1, 0), + (122148, 130, 130, null, null, 0, 1, 0), + (122149, 130, 130, null, null, 0, 1, 0), + (122150, 130, 130, null, null, 0, 1, 0), + (122151, 130, 130, null, null, 0, 1, 0), + (122152, 130, 130, null, null, 0, 1, 0), + (122153, 130, 130, null, null, 0, 1, 0), + (122154, 130, 130, null, null, 0, 1, 0), + (122155, 130, 130, null, null, 0, 1, 0), + (122156, 130, 130, null, null, 0, 1, 0), + (122157, 130, 130, null, null, 0, 1, 0), + (122158, 130, 130, null, null, 0, 1, 0), + (122159, 145, 140, null, null, 0, 1, 0), + (122160, 143, 140, null, null, 0, 1, 0), + (122161, 143, 140, null, null, 0, 1, 0), + (122162, 141, 140, null, null, 0, 1, 0), + (122163, 141, 140, null, null, 0, 1, 0), + (122164, 139, 140, null, null, 0, 1, 0), + (122165, 139, 140, null, null, 0, 1, 0), + (122166, 137, 140, null, null, 0, 1, 0), + (122167, 137, 140, null, null, 0, 1, 0), + (122168, 135, 140, null, null, 0, 1, 0), + (122169, 135, 140, null, null, 0, 1, 0), + (122170, 133, 140, null, null, 0, 1, 0), + (122171, 133, 140, null, null, 0, 1, 0), + (122172, 131, 140, null, null, 0, 1, 0), + (122173, 131, 140, null, null, 0, 1, 0), + (122174, 129, 140, null, null, 0, 1, 0), + (122175, 129, 140, null, null, 0, 1, 0), + (122176, 125, 140, null, null, 0, 1, 0), + (122177, 125, 140, null, null, 0, 1, 0), + (122178, 250, 250, null, null, 0, 0, 0), + (122179, 250, 250, null, null, 0, 0, 0), + (122180, 250, 250, null, null, 0, 0, 0), + (122181, 250, 250, null, null, 0, 0, 0), + (122182, 250, 250, null, null, 0, 0, 0), + (122183, 250, 250, null, null, 0, 0, 0), + (122184, 250, 250, null, null, 0, 0, 0), + (122185, 250, 250, null, null, 0, 0, 0), + (122186, 250, 250, null, null, 0, 0, 0), + (122187, 250, 250, null, null, 0, 0, 0), + (122188, 250, 250, null, null, 0, 0, 0), + (122189, 250, 250, null, null, 0, 0, 0), + (122190, 250, 250, null, null, 0, 0, 0), + (122191, 250, 250, null, null, 0, 0, 0), + (122192, 250, 250, null, null, 0, 0, 0), + (122193, 250, 250, null, null, 0, 0, 0), + (122194, 250, 250, null, null, 0, 0, 0), + (122195, 250, 250, null, null, 0, 0, 0), + (122196, 250, 250, null, null, 0, 0, 0), + (122197, 101, 101, null, null, 0, 0, 0), + (122198, 101, 101, null, null, 0, 0, 0), + (122199, 101, 101, null, null, 0, 0, 0), + (122200, 101, 101, null, null, 0, 0, 0), + (122201, 101, 101, null, null, 0, 0, 0), + (122202, 101, 101, null, null, 0, 0, 0), + (122203, 101, 101, null, null, 0, 0, 0), + (122204, 101, 101, null, null, 0, 0, 0), + (122205, 101, 101, null, null, 0, 0, 0), + (122206, 101, 101, null, null, 0, 0, 0), + (122207, 101, 101, null, null, 0, 0, 0), + (122208, 101, 101, null, null, 0, 0, 0), + (122209, 101, 101, null, null, 0, 0, 0), + (122210, 101, 101, null, null, 0, 0, 0), + (122211, 101, 101, null, null, 0, 0, 0), + (122212, 101, 101, null, null, 0, 0, 0), + (122213, 101, 101, null, null, 0, 0, 0), + (122214, 101, 101, null, null, 0, 0, 0), + (122215, 101, 101, null, null, 0, 0, 0), + (122216, 100, 250, null, null, 0, 0, 1), + (122217, 100, 250, null, null, 0, 0, 1), + (122218, 100, 250, null, null, 0, 0, 1), + (122219, 100, 250, null, null, 0, 0, 1), + (122220, 100, 250, null, null, 0, 0, 1), + (122221, 100, 250, null, null, 0, 0, 1), + (122222, 100, 250, null, null, 0, 0, 1), + (122223, 100, 250, null, null, 0, 0, 1), + (122224, 100, 250, null, null, 0, 0, 1), + (122225, 100, 250, null, null, 0, 0, 1), + (122226, 100, 250, null, null, 0, 0, 1), + (122227, 100, 250, null, null, 0, 0, 1), + (122228, 100, 250, null, null, 0, 0, 1), + (122229, 100, 250, null, null, 0, 0, 1), + (122230, 100, 250, null, null, 0, 0, 1), + (122231, 100, 250, null, null, 0, 0, 1), + (122232, 100, 250, null, null, 0, 0, 1), + (122233, 100, 250, null, null, 0, 0, 1), + (122234, 100, 250, null, null, 0, 0, 1), + (122235, 120, 120, null, null, 1, 0, 0), + (122236, 120, 120, null, null, 1, 0, 0), + (122237, 120, 120, null, null, 1, 0, 0), + (122238, 120, 120, null, null, 1, 0, 0), + (122239, 120, 120, null, null, 1, 0, 0), + (122240, 120, 120, null, null, 1, 0, 0), + (122241, 120, 120, null, null, 1, 0, 0), + (122242, 120, 120, null, null, 1, 0, 0), + (122243, 120, 120, null, null, 1, 0, 0), + (122244, 120, 120, null, null, 1, 0, 0), + (122245, 120, 120, null, null, 1, 0, 0), + (122246, 120, 120, null, null, 1, 0, 0), + (122247, 120, 120, null, null, 1, 0, 0), + (122248, 120, 120, null, null, 1, 0, 0), + (122249, 120, 120, null, null, 1, 0, 0), + (122250, 120, 120, null, null, 1, 0, 0), + (122251, 120, 120, null, null, 1, 0, 0), + (122252, 120, 120, null, null, 1, 0, 0), + (122253, 120, 120, null, null, 1, 0, 0), + (122254, 115, 115, null, null, 1, 0, 0), + (122255, 115, 115, null, null, 1, 0, 0), + (122256, 115, 115, null, null, 1, 0, 0), + (122257, 115, 115, null, null, 1, 0, 0), + (122258, 115, 115, null, null, 1, 0, 0), + (122259, 115, 115, null, null, 1, 0, 0), + (122260, 115, 115, null, null, 1, 0, 0), + (122261, 115, 115, null, null, 1, 0, 0), + (122262, 115, 115, null, null, 1, 0, 0), + (122263, 115, 115, null, null, 1, 0, 0), + (122264, 115, 115, null, null, 1, 0, 0), + (122265, 115, 115, null, null, 1, 0, 0), + (122266, 115, 115, null, null, 1, 0, 0), + (122267, 115, 115, null, null, 1, 0, 0), + (122268, 115, 115, null, null, 1, 0, 0), + (122269, 115, 115, null, null, 1, 0, 0), + (122270, 115, 115, null, null, 1, 0, 0), + (122271, 115, 115, null, null, 1, 0, 0), + (122272, 115, 115, null, null, 1, 0, 0), + (122273, 130, 100, null, 2400, 1, 0, 0), + (122274, 130, 100, null, 2400, 1, 0, 0), + (122275, 130, 100, null, 2400, 1, 0, 0), + (122276, 130, 100, null, 2400, 1, 0, 0), + (122277, 130, 100, null, 2400, 1, 0, 0), + (122278, 130, 100, null, 2400, 1, 0, 0), + (122279, 130, 100, null, 2400, 1, 0, 0), + (122280, 130, 100, null, 2400, 1, 0, 0), + (122281, 130, 100, null, 2400, 1, 0, 0), + (122282, 130, 100, null, 2400, 1, 0, 0), + (122283, 130, 100, null, 2400, 1, 0, 0), + (122284, 130, 100, null, 2400, 1, 0, 0), + (122285, 130, 100, null, 2400, 1, 0, 0), + (122286, 130, 100, null, 2400, 1, 0, 0), + (122287, 130, 100, null, 2400, 1, 0, 0), + (122288, 130, 100, null, 2400, 1, 0, 0), + (122289, 130, 100, null, 2400, 1, 0, 0), + (122290, 130, 100, null, 2400, 1, 0, 0), + (122291, 130, 100, null, 2400, 1, 0, 0), + (122292, 100, 120, null, null, 1, 0, 0), + (122293, 100, 120, null, null, 1, 0, 0), + (122294, 100, 120, null, null, 1, 0, 0), + (122295, 100, 120, null, null, 1, 0, 0), + (122296, 100, 120, null, null, 1, 0, 0), + (122297, 100, 120, null, null, 1, 0, 0), + (122298, 100, 120, null, null, 1, 0, 0), + (122299, 100, 120, null, null, 1, 0, 0), + (122300, 100, 120, null, null, 1, 0, 0), + (122301, 100, 120, null, null, 1, 0, 0), + (122302, 100, 120, null, null, 1, 0, 0), + (122303, 100, 120, null, null, 1, 0, 0), + (122304, 100, 120, null, null, 1, 0, 0), + (122305, 100, 120, null, null, 1, 0, 0), + (122306, 100, 120, null, null, 1, 0, 0), + (122307, 100, 120, null, null, 1, 0, 0), + (122308, 100, 120, null, null, 1, 0, 0), + (122309, 100, 120, null, null, 1, 0, 0), + (122310, 100, 120, null, null, 1, 0, 0), + (122311, 180, 220, null, null, 0, 0, 0), + (122312, 172, 209, null, null, 0, 0, 0), + (122313, 172, 208, null, null, 0, 0, 0), + (122314, 165, 197, null, null, 0, 0, 0), + (122315, 164, 196, null, null, 0, 0, 0), + (122316, 157, 185, null, null, 0, 0, 0), + (122317, 156, 184, null, null, 0, 0, 0), + (122318, 149, 173, null, null, 0, 0, 0), + (122319, 148, 172, null, null, 0, 0, 0), + (122320, 141, 161, null, null, 0, 0, 0), + (122321, 140, 160, null, null, 0, 0, 0), + (122322, 133, 149, null, null, 0, 0, 0), + (122323, 132, 148, null, null, 0, 0, 0), + (122324, 125, 137, null, null, 0, 0, 0), + (122325, 124, 136, null, null, 0, 0, 0), + (122326, 117, 125, null, null, 0, 0, 0), + (122327, 116, 124, null, null, 0, 0, 0), + (122328, 101, 102, null, null, 0, 0, 0), + (122329, 101, 101, null, null, 0, 0, 0), + (122330, 130, 180, 5200, 1700, 0, 0, 0), + (122331, 130, 180, 5200, 1700, 0, 0, 0), + (122332, 130, 180, 5200, 1700, 0, 0, 0), + (122333, 130, 180, 5200, 1700, 0, 0, 0), + (122334, 130, 180, 5200, 1700, 0, 0, 0), + (122335, 130, 180, 5200, 1700, 0, 0, 0), + (122336, 130, 180, 5200, 1700, 0, 0, 0), + (122337, 130, 180, 5200, 1700, 0, 0, 0), + (122338, 130, 180, 5200, 1700, 0, 0, 0), + (122339, 130, 180, 5200, 1700, 0, 0, 0), + (122340, 130, 180, 5200, 1700, 0, 0, 0), + (122341, 130, 180, 5200, 1700, 0, 0, 0), + (122342, 130, 180, 5200, 1700, 0, 0, 0), + (122343, 130, 180, 5200, 1700, 0, 0, 0), + (122344, 130, 180, 5200, 1700, 0, 0, 0), + (122345, 130, 180, 5200, 1700, 0, 0, 0), + (122346, 130, 180, 5200, 1700, 0, 0, 0), + (122347, 130, 180, 5200, 1700, 0, 0, 0), + (122348, 130, 180, 5200, 1700, 0, 0, 0), + (122349, 250, 250, null, null, 0, 1, 0), + (122350, 250, 250, null, null, 0, 1, 0), + (122351, 250, 250, null, null, 0, 1, 0), + (122352, 250, 250, null, null, 0, 1, 0), + (122353, 250, 250, null, null, 0, 1, 0), + (122354, 250, 250, null, null, 0, 1, 0), + (122355, 250, 250, null, null, 0, 1, 0), + (122356, 250, 250, null, null, 0, 1, 0), + (122357, 250, 250, null, null, 0, 1, 0), + (122358, 250, 250, null, null, 0, 1, 0), + (122359, 250, 250, null, null, 0, 1, 0), + (122360, 250, 250, null, null, 0, 1, 0), + (122361, 250, 250, null, null, 0, 1, 0), + (122362, 250, 250, null, null, 0, 1, 0), + (122363, 250, 250, null, null, 0, 1, 0), + (122364, 250, 250, null, null, 0, 1, 0), + (122365, 250, 250, null, null, 0, 1, 0), + (122366, 250, 250, null, null, 0, 1, 0), + (122367, 250, 250, null, null, 0, 1, 0), + (122368, 250, 250, null, null, 0, 1, 0), + (122369, 250, 250, null, null, 0, 1, 0), + (122370, 250, 250, null, null, 0, 1, 0), + (122371, 250, 250, null, null, 0, 1, 0), + (122372, 250, 250, null, null, 0, 1, 0), + (122373, 250, 250, null, null, 0, 1, 0), + (122374, 250, 250, null, null, 0, 1, 0), + (122375, 250, 250, null, null, 0, 1, 0), + (122376, 250, 250, null, null, 0, 1, 0), + (122377, 250, 250, null, null, 0, 1, 0), + (122378, 250, 250, null, null, 0, 1, 0), + (122379, 250, 250, null, null, 0, 1, 0), + (122380, 250, 250, null, null, 0, 1, 0), + (122381, 250, 250, null, null, 0, 1, 0), + (122382, 250, 250, null, null, 0, 1, 0), + (122383, 250, 250, null, null, 0, 1, 0), + (122384, 250, 250, null, null, 0, 1, 0), + (122385, 250, 250, null, null, 0, 1, 0), + (122386, 250, 250, null, null, 0, 1, 0), + (122387, 230, 230, null, null, 0, 0, 0), + (122388, 230, 230, null, null, 0, 0, 0), + (122389, 230, 230, null, null, 0, 0, 0), + (122390, 230, 230, null, null, 0, 0, 0), + (122391, 230, 230, null, null, 0, 0, 0), + (122392, 230, 230, null, null, 0, 0, 0), + (122393, 230, 230, null, null, 0, 0, 0), + (122394, 230, 230, null, null, 0, 0, 0), + (122395, 230, 230, null, null, 0, 0, 0), + (122397, 230, 230, null, null, 0, 0, 0), + (122398, 230, 230, null, null, 0, 0, 0), + (122399, 230, 230, null, null, 0, 0, 0), + (122400, 230, 230, null, null, 0, 0, 0), + (122401, 230, 230, null, null, 0, 0, 0), + (122402, 230, 230, null, null, 0, 0, 0), + (122403, 230, 230, null, null, 0, 0, 0), + (122404, 230, 230, null, null, 0, 0, 0), + (122405, 230, 230, null, null, 0, 0, 0), + (122406, 230, 230, null, null, 0, 0, 0), + (122407, 230, 230, null, null, 0, 0, 0), + (122408, 230, 230, null, null, 0, 0, 0), + (122409, 230, 230, null, null, 0, 0, 0), + (122410, 230, 230, null, null, 0, 0, 0), + (122411, 230, 230, null, null, 0, 0, 0), + (122412, 230, 230, null, null, 0, 0, 0), + (122413, 230, 230, null, null, 0, 0, 0), + (122414, 230, 230, null, null, 0, 0, 0), + (122415, 230, 230, null, null, 0, 0, 0), + (122416, 230, 230, null, null, 0, 0, 0), + (122417, 230, 230, null, null, 0, 0, 0), + (122418, 230, 230, null, null, 0, 0, 0), + (122419, 230, 230, null, null, 0, 0, 0), + (122420, 230, 230, null, null, 0, 0, 0), + (122421, 230, 230, null, null, 0, 0, 0), + (122422, 230, 230, null, null, 0, 0, 0), + (122423, 230, 230, null, null, 0, 0, 0), + (122424, 230, 230, null, null, 0, 0, 0), + (122425, 100, 300, null, 2400, 0, 0, 0), + (122426, 100, 300, null, 2400, 0, 0, 0), + (122427, 100, 300, null, 2400, 0, 0, 0), + (122428, 100, 300, null, 2400, 0, 0, 0), + (122429, 100, 300, null, 2400, 0, 0, 0), + (122430, 100, 300, null, 2400, 0, 0, 0), + (122431, 100, 300, null, 2400, 0, 0, 0), + (122432, 100, 300, null, 2400, 0, 0, 0), + (122433, 100, 300, null, 2400, 0, 0, 0), + (122434, 100, 300, null, 2400, 0, 0, 0), + (122435, 100, 300, null, 2400, 0, 0, 0), + (122436, 100, 300, null, 2400, 0, 0, 0), + (122437, 100, 300, null, 2400, 0, 0, 0), + (122438, 100, 300, null, 2400, 0, 0, 0), + (122439, 100, 300, null, 2400, 0, 0, 0), + (122440, 100, 300, null, 2400, 0, 0, 0), + (122441, 100, 300, null, 2400, 0, 0, 0), + (122442, 100, 300, null, 2400, 0, 0, 0), + (122443, 100, 300, null, 2400, 0, 0, 0), + (122444, 133, 133, null, null, 1, 0, 0), + (122445, 133, 133, null, null, 1, 0, 0), + (122446, 133, 133, null, null, 1, 0, 0), + (122447, 133, 133, null, null, 1, 0, 0), + (122448, 133, 133, null, null, 1, 0, 0), + (122449, 133, 133, null, null, 1, 0, 0), + (122450, 133, 133, null, null, 1, 0, 0), + (122451, 133, 133, null, null, 1, 0, 0), + (122452, 133, 133, null, null, 1, 0, 0), + (122453, 133, 133, null, null, 1, 0, 0), + (122454, 133, 133, null, null, 1, 0, 0), + (122455, 133, 133, null, null, 1, 0, 0), + (122456, 133, 133, null, null, 1, 0, 0), + (122457, 133, 133, null, null, 1, 0, 0), + (122458, 133, 133, null, null, 1, 0, 0), + (122459, 133, 133, null, null, 1, 0, 0), + (122460, 133, 133, null, null, 1, 0, 0), + (122461, 133, 133, null, null, 1, 0, 0), + (122462, 133, 133, null, null, 1, 0, 0), + (122463, 166, 166, null, null, 1, 0, 0), + (122464, 166, 166, null, null, 1, 0, 0), + (122465, 166, 166, null, null, 1, 0, 0), + (122466, 166, 166, null, null, 1, 0, 0), + (122467, 166, 166, null, null, 1, 0, 0), + (122468, 166, 166, null, null, 1, 0, 0), + (122469, 166, 166, null, null, 1, 0, 0), + (122470, 166, 166, null, null, 1, 0, 0), + (122471, 166, 166, null, null, 1, 0, 0), + (122472, 166, 166, null, null, 1, 0, 0), + (122473, 166, 166, null, null, 1, 0, 0), + (122474, 166, 166, null, null, 1, 0, 0), + (122475, 166, 166, null, null, 1, 0, 0), + (122476, 166, 166, null, null, 1, 0, 0), + (122477, 166, 166, null, null, 1, 0, 0), + (122478, 166, 166, null, null, 1, 0, 0), + (122479, 166, 166, null, null, 1, 0, 0), + (122480, 166, 166, null, null, 1, 0, 0), + (122481, 166, 166, null, null, 1, 0, 0), + (122482, 210, 153, null, 2100, 0, 0, 0), + (122483, 205, 151, null, 2100, 0, 0, 0), + (122484, 205, 151, null, 2100, 0, 0, 0), + (122485, 201, 149, null, 2100, 0, 0, 0), + (122486, 200, 149, null, 2100, 0, 0, 0), + (122487, 196, 147, null, 2100, 0, 0, 0), + (122488, 196, 147, null, 2100, 0, 0, 0), + (122489, 191, 145, null, 2100, 0, 0, 0), + (122490, 191, 145, null, 2100, 0, 0, 0), + (122491, 186, 143, null, 2100, 0, 0, 0), + (122492, 186, 142, null, 2100, 0, 0, 0), + (122493, 181, 140, null, 2100, 0, 0, 0), + (122494, 181, 140, null, 2100, 0, 0, 0), + (122495, 176, 138, null, 2100, 0, 0, 0), + (122496, 176, 138, null, 2100, 0, 0, 0), + (122497, 172, 136, null, 2100, 0, 0, 0), + (122498, 171, 136, null, 2100, 0, 0, 0), + (122499, 162, 132, null, 2100, 0, 0, 0), + (122500, 162, 132, null, 2100, 0, 0, 0), + (122501, 120, 350, null, 1700, 0, 0, 0), + (122502, 118, 350, null, 1700, 0, 0, 0), + (122503, 118, 350, null, 1700, 0, 0, 0), + (122504, 116, 350, null, 1700, 0, 0, 0), + (122505, 116, 350, null, 1700, 0, 0, 0), + (122506, 114, 350, null, 1700, 0, 0, 0), + (122507, 114, 350, null, 1700, 0, 0, 0), + (122508, 112, 350, null, 1700, 0, 0, 0), + (122509, 112, 350, null, 1700, 0, 0, 0), + (122510, 110, 350, null, 1700, 0, 0, 0), + (122511, 110, 350, null, 1700, 0, 0, 0), + (122512, 108, 350, null, 1700, 0, 0, 0), + (122513, 108, 350, null, 1700, 0, 0, 0), + (122514, 106, 350, null, 1700, 0, 0, 0), + (122515, 106, 350, null, 1700, 0, 0, 0), + (122516, 104, 350, null, 1700, 0, 0, 0), + (122517, 104, 350, null, 1700, 0, 0, 0), + (122518, 100, 350, null, 1700, 0, 0, 0), + (122519, 100, 350, null, 1700, 0, 0, 0), + (122520, 250, 250, 8200, null, 0, 0, 1), + (122521, 250, 250, 8200, null, 0, 0, 1), + (122522, 249, 250, 8200, null, 0, 0, 1), + (122523, 249, 250, 8200, null, 0, 0, 1), + (122524, 249, 250, 8200, null, 0, 0, 1), + (122525, 249, 250, 8200, null, 0, 0, 1), + (122526, 248, 250, 8200, null, 0, 0, 1), + (122527, 248, 250, 8200, null, 0, 0, 1), + (122528, 248, 250, 8200, null, 0, 0, 1), + (122529, 248, 250, 8200, null, 0, 0, 1), + (122530, 247, 250, 8200, null, 0, 0, 1), + (122531, 247, 250, 8200, null, 0, 0, 1), + (122532, 247, 250, 8200, null, 0, 0, 1), + (122533, 247, 250, 8200, null, 0, 0, 1), + (122534, 246, 250, 8200, null, 0, 0, 1), + (122535, 246, 250, 8200, null, 0, 0, 1), + (122536, 246, 250, 8200, null, 0, 0, 1), + (122537, 245, 250, 8200, null, 0, 0, 1), + (122538, 245, 250, 8200, null, 0, 0, 1), + (122539, 100, 190, null, 2300, 1, 0, 0), + (122540, 100, 190, null, 2300, 1, 0, 0), + (122541, 100, 190, null, 2300, 1, 0, 0), + (122542, 100, 190, null, 2300, 1, 0, 0), + (122543, 100, 190, null, 2300, 1, 0, 0), + (122544, 100, 190, null, 2300, 1, 0, 0), + (122545, 100, 190, null, 2300, 1, 0, 0), + (122546, 100, 190, null, 2300, 1, 0, 0), + (122547, 100, 190, null, 2300, 1, 0, 0), + (122548, 100, 190, null, 2300, 1, 0, 0), + (122549, 100, 190, null, 2300, 1, 0, 0), + (122550, 100, 190, null, 2300, 1, 0, 0), + (122551, 100, 190, null, 2300, 1, 0, 0), + (122552, 100, 190, null, 2300, 1, 0, 0), + (122553, 100, 190, null, 2300, 1, 0, 0), + (122554, 100, 190, null, 2300, 1, 0, 0), + (122555, 100, 190, null, 2300, 1, 0, 0), + (122556, 100, 190, null, 2300, 1, 0, 0), + (122557, 100, 190, null, 2300, 1, 0, 0), + (122558, 800, 500, null, 1870, 1, 0, 0), + (122559, 800, 500, null, 1870, 1, 0, 0), + (122560, 800, 500, null, 1870, 1, 0, 0), + (122561, 800, 500, null, 1870, 1, 0, 0), + (122562, 800, 500, null, 1870, 1, 0, 0), + (122563, 800, 500, null, 1870, 1, 0, 0), + (122564, 800, 500, null, 1870, 1, 0, 0), + (122565, 800, 500, null, 1870, 1, 0, 0), + (122566, 800, 500, null, 1870, 1, 0, 0), + (122567, 800, 500, null, 1870, 1, 0, 0), + (122568, 800, 500, null, 1870, 1, 0, 0), + (122569, 800, 500, null, 1870, 1, 0, 0), + (122570, 800, 500, null, 1870, 1, 0, 0), + (122571, 800, 500, null, 1870, 1, 0, 0), + (122572, 800, 500, null, 1870, 1, 0, 0), + (122573, 800, 500, null, 1870, 1, 0, 0), + (122574, 800, 500, null, 1870, 1, 0, 0), + (122575, 800, 500, null, 1870, 1, 0, 0), + (122576, 800, 500, null, 1870, 1, 0, 0), + (122577, 1200, 250, null, null, 0, 0, 1), + (122578, 1200, 250, null, null, 0, 0, 1), + (122579, 1200, 250, null, null, 0, 0, 1), + (122580, 1200, 250, null, null, 0, 0, 1), + (122581, 1200, 250, null, null, 0, 0, 1), + (122582, 1200, 250, null, null, 0, 0, 1), + (122583, 1200, 250, null, null, 0, 0, 1), + (122584, 1200, 250, null, null, 0, 0, 1), + (122585, 1200, 250, null, null, 0, 0, 1), + (122586, 1200, 250, null, null, 0, 0, 1), + (122587, 1200, 250, null, null, 0, 0, 1), + (122588, 1200, 250, null, null, 0, 0, 1), + (122589, 1200, 250, null, null, 0, 0, 1), + (122590, 1200, 250, null, null, 0, 0, 1), + (122591, 1200, 250, null, null, 0, 0, 1), + (122592, 1200, 250, null, null, 0, 0, 1), + (122593, 1200, 250, null, null, 0, 0, 1), + (122594, 1200, 250, null, null, 0, 0, 1), + (122595, 1200, 250, null, null, 0, 0, 1), + (122596, 350, 350, null, null, 1, 0, 0), + (122597, 350, 350, null, null, 1, 0, 0), + (122598, 350, 350, null, null, 1, 0, 0), + (122599, 350, 350, null, null, 1, 0, 0), + (122600, 350, 350, null, null, 1, 0, 0), + (122601, 350, 350, null, null, 1, 0, 0), + (122602, 350, 350, null, null, 1, 0, 0), + (122603, 350, 350, null, null, 1, 0, 0), + (122604, 350, 350, null, null, 1, 0, 0), + (122605, 350, 350, null, null, 1, 0, 0), + (122606, 350, 350, null, null, 1, 0, 0), + (122607, 350, 350, null, null, 1, 0, 0), + (122608, 350, 350, null, null, 1, 0, 0), + (122609, 350, 350, null, null, 1, 0, 0), + (122610, 350, 350, null, null, 1, 0, 0), + (122611, 350, 350, null, null, 1, 0, 0), + (122612, 350, 350, null, null, 1, 0, 0), + (122613, 350, 350, null, null, 1, 0, 0), + (122614, 350, 350, null, null, 1, 0, 0), + (122615, 63, 170, null, null, 0, 0, 1), + (122616, 59, 161, null, null, 0, 0, 1), + (122617, 59, 160, null, null, 0, 0, 1), + (122618, 55, 151, null, null, 0, 0, 1), + (122619, 54, 151, null, null, 0, 0, 1), + (122620, 50, 142, null, null, 0, 0, 1), + (122621, 50, 141, null, null, 0, 0, 1), + (122622, 46, 132, null, null, 0, 0, 1), + (122623, 46, 132, null, null, 0, 0, 1), + (122624, 42, 123, null, null, 0, 0, 1), + (122625, 41, 122, null, null, 0, 0, 1), + (122626, 37, 113, null, null, 0, 0, 1), + (122627, 37, 113, null, null, 0, 0, 1), + (122628, 33, 104, null, null, 0, 0, 1), + (122629, 33, 103, null, null, 0, 0, 1), + (122630, 29, 94, null, null, 0, 0, 1), + (122631, 28, 94, null, null, 0, 0, 1), + (122632, 20, 75, null, null, 0, 0, 1), + (122633, 20, 75, null, null, 0, 0, 1), + (122634, 115, 116, null, 900, 0, 0, 0), + (122635, 121, 123, null, 900, 0, 0, 0), + (122636, 121, 124, null, 900, 0, 0, 0), + (122637, 127, 131, null, 900, 0, 0, 0), + (122638, 128, 131, null, 900, 0, 0, 0), + (122639, 134, 139, null, 900, 0, 0, 0), + (122640, 134, 139, null, 900, 0, 0, 0), + (122641, 140, 147, null, 900, 0, 0, 0), + (122642, 140, 147, null, 900, 0, 0, 0), + (122643, 146, 154, null, 900, 0, 0, 0), + (122644, 147, 155, null, 900, 0, 0, 0), + (122645, 153, 162, null, 900, 0, 0, 0), + (122646, 153, 162, null, 900, 0, 0, 0), + (122647, 159, 170, null, 900, 0, 0, 0), + (122648, 159, 170, null, 900, 0, 0, 0), + (122649, 165, 178, null, 900, 0, 0, 0), + (122650, 166, 178, null, 900, 0, 0, 0), + (122651, 178, 193, null, 900, 0, 0, 0), + (122652, 178, 193, null, 900, 0, 0, 0), + (122653, 130, 130, null, null, 1, 0, 0), + (122654, 126, 130, null, null, 1, 0, 0), + (122655, 126, 130, null, null, 1, 0, 0), + (122656, 122, 130, null, null, 1, 0, 0), + (122657, 122, 130, null, null, 1, 0, 0), + (122658, 118, 130, null, null, 1, 0, 0), + (122659, 118, 130, null, null, 1, 0, 0), + (122660, 114, 130, null, null, 1, 0, 0), + (122661, 114, 130, null, null, 1, 0, 0), + (122662, 110, 130, null, null, 1, 0, 0), + (122663, 110, 130, null, null, 1, 0, 0), + (122664, 106, 130, null, null, 1, 0, 0), + (122665, 106, 130, null, null, 1, 0, 0), + (122666, 102, 130, null, null, 1, 0, 0), + (122667, 102, 130, null, null, 1, 0, 0), + (122668, 98, 130, null, null, 1, 0, 0), + (122669, 98, 130, null, null, 1, 0, 0), + (122670, 90, 130, null, null, 1, 0, 0), + (122671, 90, 130, null, null, 1, 0, 0), + (122672, 100, 125, 8100, 2700, 0, 0, 0), + (122673, 100, 125, 8100, 2700, 0, 0, 0), + (122674, 100, 125, 8100, 2700, 0, 0, 0), + (122675, 100, 125, 8100, 2700, 0, 0, 0), + (122676, 100, 125, 8100, 2700, 0, 0, 0), + (122677, 100, 125, 8100, 2700, 0, 0, 0), + (122678, 100, 125, 8100, 2700, 0, 0, 0), + (122679, 100, 125, 8100, 2700, 0, 0, 0), + (122680, 100, 125, 8100, 2700, 0, 0, 0), + (122681, 100, 125, 8100, 2700, 0, 0, 0), + (122682, 100, 125, 8100, 2700, 0, 0, 0), + (122683, 100, 125, 8100, 2700, 0, 0, 0), + (122684, 100, 125, 8100, 2700, 0, 0, 0), + (122685, 100, 125, 8100, 2700, 0, 0, 0), + (122686, 100, 125, 8100, 2700, 0, 0, 0), + (122687, 100, 125, 8100, 2700, 0, 0, 0), + (122688, 100, 125, 8100, 2700, 0, 0, 0), + (122689, 100, 125, 8100, 2700, 0, 0, 0), + (122690, 100, 125, 8100, 2700, 0, 0, 0), + (122691, 150, 114, null, null, 0, 1, 0), + (122692, 150, 114, null, null, 0, 1, 0), + (122693, 150, 114, null, null, 0, 1, 0), + (122694, 150, 113, null, null, 0, 1, 0), + (122695, 150, 113, null, null, 0, 1, 0), + (122696, 150, 113, null, null, 0, 1, 0), + (122697, 150, 113, null, null, 0, 1, 0), + (122698, 150, 112, null, null, 0, 1, 0), + (122699, 150, 112, null, null, 0, 1, 0), + (122700, 150, 112, null, null, 0, 1, 0), + (122701, 150, 112, null, null, 0, 1, 0), + (122702, 150, 112, null, null, 0, 1, 0), + (122703, 150, 112, null, null, 0, 1, 0), + (122704, 150, 111, null, null, 0, 1, 0), + (122705, 150, 111, null, null, 0, 1, 0), + (122706, 150, 111, null, null, 0, 1, 0), + (122707, 150, 111, null, null, 0, 1, 0), + (122708, 150, 110, null, null, 0, 1, 0), + (122709, 150, 110, null, null, 0, 1, 0), + (122710, 150, 150, null, null, 0, 0, 1), + (122711, 147, 150, null, null, 0, 0, 1), + (122712, 147, 150, null, null, 0, 0, 1), + (122713, 144, 150, null, null, 0, 0, 1), + (122714, 144, 150, null, null, 0, 0, 1), + (122715, 141, 150, null, null, 0, 0, 1), + (122716, 141, 150, null, null, 0, 0, 1), + (122717, 138, 150, null, null, 0, 0, 1), + (122718, 138, 150, null, null, 0, 0, 1), + (122719, 135, 150, null, null, 0, 0, 1), + (122720, 135, 150, null, null, 0, 0, 1), + (122721, 132, 150, null, null, 0, 0, 1), + (122722, 132, 150, null, null, 0, 0, 1), + (122723, 129, 150, null, null, 0, 0, 1), + (122724, 129, 150, null, null, 0, 0, 1), + (122725, 126, 150, null, null, 0, 0, 1), + (122726, 126, 150, null, null, 0, 0, 1), + (122727, 120, 150, null, null, 0, 0, 1), + (122728, 120, 150, null, null, 0, 0, 1), + (122729, 150, 150, null, null, 0, 1, 0), + (122730, 141, 142, null, null, 0, 1, 0), + (122731, 141, 142, null, null, 0, 1, 0), + (122732, 132, 134, null, null, 0, 1, 0), + (122733, 132, 134, null, null, 0, 1, 0), + (122734, 123, 126, null, null, 0, 1, 0), + (122735, 123, 126, null, null, 0, 1, 0), + (122736, 114, 118, null, null, 0, 1, 0), + (122737, 114, 118, null, null, 0, 1, 0), + (122738, 105, 110, null, null, 0, 1, 0), + (122739, 105, 110, null, null, 0, 1, 0), + (122740, 96, 102, null, null, 0, 1, 0), + (122741, 96, 102, null, null, 0, 1, 0), + (122742, 87, 94, null, null, 0, 1, 0), + (122743, 87, 94, null, null, 0, 1, 0), + (122744, 78, 86, null, null, 0, 1, 0), + (122745, 78, 86, null, null, 0, 1, 0), + (122746, 60, 70, null, null, 0, 1, 0), + (122747, 60, 70, null, null, 0, 1, 0), + (122748, 250, 150, null, null, 0, 0, 0), + (122749, 250, 150, null, null, 0, 0, 0), + (122750, 250, 150, null, null, 0, 0, 0), + (122751, 250, 150, null, null, 0, 0, 0), + (122752, 250, 150, null, null, 0, 0, 0), + (122753, 250, 150, null, null, 0, 0, 0), + (122754, 250, 150, null, null, 0, 0, 0), + (122755, 250, 150, null, null, 0, 0, 0), + (122756, 250, 150, null, null, 0, 0, 0), + (122757, 250, 150, null, null, 0, 0, 0), + (122758, 250, 150, null, null, 0, 0, 0), + (122759, 250, 150, null, null, 0, 0, 0), + (122760, 250, 150, null, null, 0, 0, 0), + (122761, 250, 150, null, null, 0, 0, 0), + (122762, 250, 150, null, null, 0, 0, 0), + (122763, 250, 150, null, null, 0, 0, 0), + (122764, 250, 150, null, null, 0, 0, 0), + (122765, 250, 150, null, null, 0, 0, 0), + (122766, 250, 150, null, null, 0, 0, 0), + (122767, 250, 250, null, null, 1, 0, 1), + (122768, 250, 250, null, null, 1, 0, 1), + (122769, 250, 250, null, null, 1, 0, 1), + (122770, 250, 250, null, null, 1, 0, 1), + (122771, 250, 250, null, null, 1, 0, 1), + (122772, 250, 250, null, null, 1, 0, 1), + (122773, 250, 250, null, null, 1, 0, 1), + (122774, 250, 250, null, null, 1, 0, 1), + (122775, 250, 250, null, null, 1, 0, 1), + (122776, 250, 250, null, null, 1, 0, 1), + (122777, 250, 250, null, null, 1, 0, 1), + (122778, 250, 250, null, null, 1, 0, 1), + (122779, 250, 250, null, null, 1, 0, 1), + (122780, 250, 250, null, null, 1, 0, 1), + (122781, 250, 250, null, null, 1, 0, 1), + (122782, 250, 250, null, null, 1, 0, 1), + (122783, 250, 250, null, null, 1, 0, 1), + (122784, 250, 250, null, null, 1, 0, 1), + (122785, 250, 250, null, null, 1, 0, 1), + (122786, 150, 150, null, null, 0, 1, 0), + (122787, 150, 150, null, null, 0, 1, 0), + (122788, 150, 150, null, null, 0, 1, 0), + (122789, 150, 150, null, null, 0, 1, 0), + (122790, 150, 150, null, null, 0, 1, 0), + (122791, 150, 150, null, null, 0, 1, 0), + (122792, 150, 150, null, null, 0, 1, 0), + (122793, 150, 150, null, null, 0, 1, 0), + (122794, 150, 150, null, null, 0, 1, 0), + (122795, 150, 150, null, null, 0, 1, 0), + (122796, 150, 150, null, null, 0, 1, 0), + (122797, 150, 150, null, null, 0, 1, 0), + (122798, 150, 150, null, null, 0, 1, 0), + (122799, 150, 150, null, null, 0, 1, 0), + (122800, 150, 150, null, null, 0, 1, 0), + (122801, 150, 150, null, null, 0, 1, 0), + (122802, 150, 150, null, null, 0, 1, 0), + (122803, 150, 150, null, null, 0, 1, 0), + (122804, 150, 150, null, null, 0, 1, 0), + (122805, 120, 250, null, null, 0, 0, 0), + (122806, 118, 250, null, null, 0, 0, 0), + (122807, 118, 250, null, null, 0, 0, 0), + (122808, 116, 250, null, null, 0, 0, 0), + (122809, 116, 250, null, null, 0, 0, 0), + (122810, 114, 250, null, null, 0, 0, 0), + (122811, 114, 250, null, null, 0, 0, 0), + (122812, 112, 250, null, null, 0, 0, 0), + (122813, 112, 250, null, null, 0, 0, 0), + (122814, 110, 250, null, null, 0, 0, 0), + (122815, 110, 250, null, null, 0, 0, 0), + (122816, 108, 250, null, null, 0, 0, 0), + (122817, 108, 250, null, null, 0, 0, 0), + (122818, 106, 250, null, null, 0, 0, 0), + (122819, 106, 250, null, null, 0, 0, 0), + (122820, 104, 250, null, null, 0, 0, 0), + (122821, 104, 250, null, null, 0, 0, 0), + (122822, 100, 250, null, null, 0, 0, 0), + (122823, 100, 250, null, null, 0, 0, 0), + (122824, 250, 200, null, null, 0, 1, 0), + (122825, 245, 196, null, null, 0, 1, 0), + (122826, 245, 195, null, null, 0, 1, 0), + (122827, 240, 191, null, null, 0, 1, 0), + (122828, 239, 191, null, null, 0, 1, 0), + (122829, 115, 160, null, null, 0, 0, 0), + (122830, 115, 160, null, null, 0, 0, 0), + (122831, 114, 160, null, null, 0, 0, 0), + (122832, 114, 160, null, null, 0, 0, 0), + (122833, 114, 160, null, null, 0, 0, 0), + (122834, 114, 160, null, null, 0, 0, 0), + (122835, 113, 160, null, null, 0, 0, 0), + (122836, 113, 160, null, null, 0, 0, 0), + (122837, 113, 160, null, null, 0, 0, 0), + (122838, 113, 160, null, null, 0, 0, 0), + (122839, 112, 160, null, null, 0, 0, 0), + (122840, 112, 160, null, null, 0, 0, 0), + (122841, 112, 160, null, null, 0, 0, 0), + (122842, 112, 160, null, null, 0, 0, 0), + (122843, 111, 160, null, null, 0, 0, 0), + (122844, 111, 160, null, null, 0, 0, 0), + (122845, 111, 160, null, null, 0, 0, 0), + (122846, 110, 160, null, null, 0, 0, 0), + (122847, 110, 160, null, null, 0, 0, 0), + (122848, 150, 150, null, null, 0, 1, 0), + (122849, 150, 150, null, null, 0, 1, 0), + (122850, 150, 150, null, null, 0, 1, 0), + (122851, 150, 150, null, null, 0, 1, 0), + (122852, 150, 150, null, null, 0, 1, 0), + (122853, 150, 150, null, null, 0, 1, 0), + (122854, 150, 150, null, null, 0, 1, 0), + (122855, 150, 150, null, null, 0, 1, 0), + (122856, 150, 150, null, null, 0, 1, 0), + (122857, 150, 150, null, null, 0, 1, 0), + (122858, 150, 150, null, null, 0, 1, 0), + (122859, 150, 150, null, null, 0, 1, 0), + (122860, 150, 150, null, null, 0, 1, 0), + (122861, 150, 150, null, null, 0, 1, 0), + (122862, 150, 150, null, null, 0, 1, 0), + (122863, 150, 150, null, null, 0, 1, 0), + (122864, 150, 150, null, null, 0, 1, 0), + (122865, 150, 150, null, null, 0, 1, 0), + (122866, 150, 150, null, null, 0, 1, 0), + (122867, 250, 250, null, null, 0, 0, 0), + (122868, 240, 250, null, null, 0, 0, 0), + (122869, 240, 250, null, null, 0, 0, 0), + (122870, 230, 250, null, null, 0, 0, 0), + (122871, 230, 250, null, null, 0, 0, 0), + (122872, 220, 250, null, null, 0, 0, 0), + (122873, 220, 250, null, null, 0, 0, 0), + (122874, 210, 250, null, null, 0, 0, 0), + (122875, 210, 250, null, null, 0, 0, 0), + (122876, 200, 250, null, null, 0, 0, 0), + (122877, 200, 250, null, null, 0, 0, 0), + (122878, 190, 250, null, null, 0, 0, 0), + (122879, 190, 250, null, null, 0, 0, 0), + (122880, 180, 250, null, null, 0, 0, 0), + (122881, 180, 250, null, null, 0, 0, 0), + (122882, 170, 250, null, null, 0, 0, 0), + (122883, 170, 250, null, null, 0, 0, 0), + (122884, 151, 250, null, null, 0, 0, 0), + (122885, 150, 250, null, null, 0, 0, 0), + (122886, 150, 100, null, null, 1, 0, 0), + (122887, 150, 100, null, null, 1, 0, 0), + (122888, 150, 100, null, null, 1, 0, 0), + (122889, 150, 100, null, null, 1, 0, 0), + (122890, 150, 100, null, null, 1, 0, 0), + (122891, 150, 100, null, null, 1, 0, 0), + (122892, 150, 100, null, null, 1, 0, 0), + (122893, 150, 100, null, null, 1, 0, 0), + (122894, 150, 100, null, null, 1, 0, 0), + (122895, 150, 100, null, null, 1, 0, 0), + (122896, 150, 100, null, null, 1, 0, 0), + (122897, 150, 100, null, null, 1, 0, 0), + (122898, 150, 100, null, null, 1, 0, 0), + (122899, 150, 100, null, null, 1, 0, 0), + (122900, 150, 100, null, null, 1, 0, 0), + (122901, 150, 100, null, null, 1, 0, 0), + (122902, 150, 100, null, null, 1, 0, 0), + (122903, 150, 100, null, null, 1, 0, 0), + (122904, 150, 100, null, null, 1, 0, 0), + (122905, 350, 250, null, null, 0, 0, 0), + (122906, 350, 250, null, null, 0, 0, 0), + (122907, 350, 250, null, null, 0, 0, 0), + (122908, 350, 250, null, null, 0, 0, 0), + (122909, 350, 250, null, null, 0, 0, 0), + (122910, 350, 250, null, null, 0, 0, 0), + (122911, 350, 250, null, null, 0, 0, 0), + (122912, 350, 250, null, null, 0, 0, 0), + (122913, 350, 250, null, null, 0, 0, 0), + (122914, 350, 250, null, null, 0, 0, 0), + (122915, 350, 250, null, null, 0, 0, 0), + (122916, 350, 250, null, null, 0, 0, 0), + (122917, 350, 250, null, null, 0, 0, 0), + (122918, 350, 250, null, null, 0, 0, 0), + (122919, 350, 250, null, null, 0, 0, 0), + (122920, 350, 250, null, null, 0, 0, 0), + (122921, 350, 250, null, null, 0, 0, 0), + (122922, 350, 250, null, null, 0, 0, 0), + (122923, 350, 250, null, null, 0, 0, 0), + (122924, 100, 150, null, null, 0, 0, 0), + (122925, 100, 150, null, null, 0, 0, 0), + (122926, 100, 150, null, null, 0, 0, 0), + (122927, 100, 150, null, null, 0, 0, 0), + (122928, 100, 150, null, null, 0, 0, 0), + (122929, 100, 150, null, null, 0, 0, 0), + (122930, 100, 150, null, null, 0, 0, 0), + (122931, 100, 150, null, null, 0, 0, 0), + (122932, 100, 150, null, null, 0, 0, 0), + (122933, 100, 150, null, null, 0, 0, 0), + (122934, 100, 150, null, null, 0, 0, 0), + (122935, 100, 150, null, null, 0, 0, 0), + (122936, 100, 150, null, null, 0, 0, 0), + (122937, 100, 150, null, null, 0, 0, 0), + (122938, 100, 150, null, null, 0, 0, 0), + (122939, 100, 150, null, null, 0, 0, 0), + (122940, 100, 150, null, null, 0, 0, 0), + (122941, 100, 150, null, null, 0, 0, 0), + (122942, 100, 150, null, null, 0, 0, 0), + (122943, 150, 150, null, null, 0, 1, 0), + (122944, 150, 150, null, null, 0, 1, 0), + (122945, 150, 150, null, null, 0, 1, 0), + (122946, 150, 150, null, null, 0, 1, 0), + (122947, 150, 150, null, null, 0, 1, 0), + (122948, 150, 150, null, null, 0, 1, 0), + (122949, 150, 150, null, null, 0, 1, 0), + (122950, 150, 150, null, null, 0, 1, 0), + (122951, 150, 150, null, null, 0, 1, 0), + (122952, 150, 150, null, null, 0, 1, 0), + (122953, 150, 150, null, null, 0, 1, 0), + (122954, 150, 150, null, null, 0, 1, 0), + (122955, 150, 150, null, null, 0, 1, 0), + (122956, 150, 150, null, null, 0, 1, 0), + (122957, 150, 150, null, null, 0, 1, 0), + (122958, 150, 150, null, null, 0, 1, 0), + (122959, 150, 150, null, null, 0, 1, 0), + (122960, 150, 150, null, null, 0, 1, 0), + (122961, 150, 150, null, null, 0, 1, 0), + (122962, 198, 252, null, null, 0, 1, 0), + (122963, 198, 252, null, null, 0, 1, 0), + (122964, 198, 252, null, null, 0, 1, 0), + (122965, 198, 252, null, null, 0, 1, 0), + (122966, 198, 252, null, null, 0, 1, 0), + (122967, 198, 252, null, null, 0, 1, 0), + (122968, 198, 252, null, null, 0, 1, 0), + (122969, 198, 252, null, null, 0, 1, 0), + (122970, 198, 252, null, null, 0, 1, 0), + (122971, 198, 252, null, null, 0, 1, 0), + (122972, 198, 252, null, null, 0, 1, 0), + (122973, 198, 252, null, null, 0, 1, 0), + (122974, 198, 252, null, null, 0, 1, 0), + (122975, 198, 252, null, null, 0, 1, 0), + (122976, 198, 252, null, null, 0, 1, 0), + (122977, 198, 252, null, null, 0, 1, 0), + (122978, 198, 252, null, null, 0, 1, 0), + (122979, 198, 252, null, null, 0, 1, 0), + (122980, 198, 252, null, null, 0, 1, 0), + (122981, 130, 120, null, null, 1, 0, 0), + (122982, 130, 120, null, null, 1, 0, 0), + (122983, 130, 120, null, null, 1, 0, 0), + (122984, 130, 120, null, null, 1, 0, 0), + (122985, 130, 120, null, null, 1, 0, 0), + (122986, 130, 120, null, null, 1, 0, 0), + (122987, 130, 120, null, null, 1, 0, 0), + (122988, 130, 120, null, null, 1, 0, 0), + (122989, 130, 120, null, null, 1, 0, 0), + (122990, 130, 120, null, null, 1, 0, 0), + (122991, 130, 120, null, null, 1, 0, 0), + (122992, 130, 120, null, null, 1, 0, 0), + (122993, 130, 120, null, null, 1, 0, 0), + (122994, 130, 120, null, null, 1, 0, 0), + (122995, 130, 120, null, null, 1, 0, 0), + (122996, 130, 120, null, null, 1, 0, 0), + (122997, 130, 120, null, null, 1, 0, 0), + (122998, 130, 120, null, null, 1, 0, 0), + (122999, 130, 120, null, null, 1, 0, 0), + (123000, 250, 192, null, null, 0, 0, 0), + (123001, 250, 195, null, null, 0, 0, 0), + (123002, 250, 195, null, null, 0, 0, 0), + (123003, 250, 197, null, null, 0, 0, 0), + (123004, 250, 198, null, null, 0, 0, 0), + (123005, 250, 200, null, null, 0, 0, 0), + (123006, 250, 200, null, null, 0, 0, 0), + (123007, 250, 203, null, null, 0, 0, 0), + (123008, 250, 203, null, null, 0, 0, 0), + (123009, 250, 206, null, null, 0, 0, 0), + (123010, 250, 206, null, null, 0, 0, 0), + (123011, 250, 209, null, null, 0, 0, 0), + (123012, 250, 209, null, null, 0, 0, 0), + (123013, 250, 212, null, null, 0, 0, 0), + (123014, 250, 212, null, null, 0, 0, 0), + (123015, 250, 214, null, null, 0, 0, 0), + (123016, 250, 215, null, null, 0, 0, 0), + (123017, 250, 220, null, null, 0, 0, 0), + (123018, 250, 220, null, null, 0, 0, 0), + (123019, 100, 150, null, null, 1, 0, 0), + (123020, 95, 150, null, null, 1, 0, 0), + (123021, 95, 150, null, null, 1, 0, 0), + (123022, 90, 150, null, null, 1, 0, 0), + (123023, 90, 150, null, null, 1, 0, 0), + (123024, 85, 150, null, null, 1, 0, 0), + (123025, 85, 150, null, null, 1, 0, 0), + (123026, 80, 150, null, null, 1, 0, 0), + (123027, 80, 150, null, null, 1, 0, 0), + (123028, 75, 150, null, null, 1, 0, 0), + (123029, 75, 150, null, null, 1, 0, 0), + (123030, 70, 150, null, null, 1, 0, 0), + (123031, 70, 150, null, null, 1, 0, 0), + (123032, 65, 150, null, null, 1, 0, 0), + (123033, 65, 150, null, null, 1, 0, 0), + (123034, 60, 150, null, null, 1, 0, 0), + (123035, 60, 150, null, null, 1, 0, 0), + (123036, 50, 150, null, null, 1, 0, 0), + (123037, 50, 150, null, null, 1, 0, 0), + (123038, 250, 250, null, null, 1, 0, 0), + (123039, 250, 250, null, null, 1, 0, 0), + (123040, 250, 250, null, null, 1, 0, 0), + (123041, 250, 250, null, null, 1, 0, 0), + (123042, 250, 250, null, null, 1, 0, 0), + (123043, 250, 250, null, null, 1, 0, 0), + (123044, 250, 250, null, null, 1, 0, 0), + (123045, 250, 250, null, null, 1, 0, 0), + (123046, 250, 250, null, null, 1, 0, 0), + (123047, 250, 250, null, null, 1, 0, 0), + (123048, 250, 250, null, null, 1, 0, 0), + (123049, 250, 250, null, null, 1, 0, 0), + (123050, 250, 250, null, null, 1, 0, 0), + (123051, 250, 250, null, null, 1, 0, 0), + (123052, 250, 250, null, null, 1, 0, 0), + (123053, 250, 250, null, null, 1, 0, 0), + (123054, 250, 250, null, null, 1, 0, 0), + (123055, 250, 250, null, null, 1, 0, 0), + (123056, 250, 250, null, null, 1, 0, 0), + (123057, 100, 100, null, null, 0, 0, 0), + (123058, 91, 100, null, null, 0, 0, 0), + (123059, 91, 100, null, null, 0, 0, 0), + (123060, 82, 100, null, null, 0, 0, 0), + (123061, 82, 100, null, null, 0, 0, 0), + (123062, 73, 100, null, null, 0, 0, 0), + (123063, 73, 100, null, null, 0, 0, 0), + (123064, 64, 100, null, null, 0, 0, 0), + (123065, 64, 100, null, null, 0, 0, 0), + (123066, 55, 100, null, null, 0, 0, 0), + (123067, 55, 100, null, null, 0, 0, 0), + (123068, 46, 100, null, null, 0, 0, 0), + (123069, 46, 100, null, null, 0, 0, 0), + (123070, 37, 100, null, null, 0, 0, 0), + (123071, 37, 100, null, null, 0, 0, 0), + (123072, 28, 100, null, null, 0, 0, 0), + (123073, 28, 100, null, null, 0, 0, 0), + (123074, 10, 100, null, null, 0, 0, 0), + (123075, 10, 100, null, null, 0, 0, 0), + (123076, 180, 150, null, null, 1, 0, 0), + (123077, 180, 150, null, null, 1, 0, 0), + (123078, 180, 150, null, null, 1, 0, 0), + (123079, 180, 150, null, null, 1, 0, 0), + (123080, 180, 150, null, null, 1, 0, 0), + (123081, 180, 150, null, null, 1, 0, 0), + (123082, 180, 150, null, null, 1, 0, 0), + (123083, 180, 150, null, null, 1, 0, 0), + (123084, 180, 150, null, null, 1, 0, 0), + (123085, 180, 150, null, null, 1, 0, 0), + (123086, 180, 150, null, null, 1, 0, 0), + (123087, 180, 150, null, null, 1, 0, 0), + (123088, 180, 150, null, null, 1, 0, 0), + (123089, 180, 150, null, null, 1, 0, 0), + (123090, 180, 150, null, null, 1, 0, 0), + (123091, 180, 150, null, null, 1, 0, 0), + (123092, 180, 150, null, null, 1, 0, 0), + (123093, 180, 150, null, null, 1, 0, 0), + (123094, 180, 150, null, null, 1, 0, 0), + (123095, 150, 130, null, null, 0, 0, 0), + (123096, 150, 130, null, null, 0, 0, 0), + (123097, 150, 130, null, null, 0, 0, 0), + (123098, 150, 130, null, null, 0, 0, 0), + (123099, 150, 130, null, null, 0, 0, 0), + (123100, 150, 130, null, null, 0, 0, 0), + (123101, 150, 130, null, null, 0, 0, 0), + (123102, 150, 130, null, null, 0, 0, 0), + (123103, 150, 130, null, null, 0, 0, 0), + (123104, 150, 130, null, null, 0, 0, 0), + (123105, 150, 130, null, null, 0, 0, 0), + (123106, 150, 130, null, null, 0, 0, 0), + (123107, 150, 130, null, null, 0, 0, 0), + (123108, 150, 130, null, null, 0, 0, 0), + (123109, 150, 130, null, null, 0, 0, 0), + (123110, 150, 130, null, null, 0, 0, 0), + (123111, 150, 130, null, null, 0, 0, 0), + (123112, 150, 130, null, null, 0, 0, 0), + (123113, 150, 130, null, null, 0, 0, 0), + (123114, 130, 180, null, null, 0, 1, 0), + (123115, 130, 180, null, null, 0, 1, 0), + (123116, 130, 180, null, null, 0, 1, 0), + (123117, 130, 180, null, null, 0, 1, 0), + (123118, 130, 180, null, null, 0, 1, 0), + (123119, 130, 180, null, null, 0, 1, 0), + (123120, 130, 180, null, null, 0, 1, 0), + (123121, 130, 180, null, null, 0, 1, 0), + (123122, 130, 180, null, null, 0, 1, 0), + (123123, 130, 180, null, null, 0, 1, 0), + (123124, 130, 180, null, null, 0, 1, 0), + (123125, 130, 180, null, null, 0, 1, 0), + (123126, 130, 180, null, null, 0, 1, 0), + (123127, 130, 180, null, null, 0, 1, 0), + (123128, 130, 180, null, null, 0, 1, 0), + (123129, 130, 180, null, null, 0, 1, 0), + (123130, 130, 180, null, null, 0, 1, 0), + (123131, 130, 180, null, null, 0, 1, 0), + (123132, 130, 180, null, null, 0, 1, 0), + (123133, 250, 200, null, null, 0, 0, 0), + (123134, 250, 200, null, null, 0, 0, 0), + (123135, 250, 200, null, null, 0, 0, 0), + (123136, 250, 200, null, null, 0, 0, 0), + (123137, 250, 200, null, null, 0, 0, 0), + (123138, 250, 200, null, null, 0, 0, 0), + (123139, 250, 200, null, null, 0, 0, 0), + (123140, 250, 200, null, null, 0, 0, 0), + (123141, 250, 200, null, null, 0, 0, 0), + (123142, 250, 200, null, null, 0, 0, 0), + (123143, 250, 200, null, null, 0, 0, 0), + (123144, 250, 200, null, null, 0, 0, 0), + (123145, 250, 200, null, null, 0, 0, 0), + (123146, 250, 200, null, null, 0, 0, 0), + (123147, 250, 200, null, null, 0, 0, 0), + (123148, 250, 200, null, null, 0, 0, 0), + (123149, 250, 200, null, null, 0, 0, 0), + (123150, 250, 200, null, null, 0, 0, 0), + (123151, 250, 200, null, null, 0, 0, 0), + (123152, 115, 165, null, null, 0, 0, 0), + (123153, 115, 165, null, null, 0, 0, 0), + (123154, 115, 165, null, null, 0, 0, 0), + (123155, 115, 165, null, null, 0, 0, 0), + (123156, 115, 165, null, null, 0, 0, 0), + (123157, 115, 165, null, null, 0, 0, 0), + (123158, 115, 165, null, null, 0, 0, 0), + (123159, 115, 165, null, null, 0, 0, 0), + (123160, 115, 165, null, null, 0, 0, 0), + (123161, 115, 165, null, null, 0, 0, 0), + (123162, 115, 165, null, null, 0, 0, 0), + (123163, 115, 165, null, null, 0, 0, 0), + (123164, 115, 165, null, null, 0, 0, 0), + (123165, 115, 165, null, null, 0, 0, 0), + (123166, 115, 165, null, null, 0, 0, 0), + (123167, 115, 165, null, null, 0, 0, 0), + (123168, 115, 165, null, null, 0, 0, 0), + (123169, 115, 165, null, null, 0, 0, 0), + (123170, 115, 165, null, null, 0, 0, 0), + (123171, 140, 115, null, null, 1, 0, 0), + (123172, 140, 115, null, null, 1, 0, 0), + (123173, 140, 115, null, null, 1, 0, 0), + (123174, 140, 115, null, null, 1, 0, 0), + (123175, 140, 115, null, null, 1, 0, 0), + (123176, 140, 115, null, null, 1, 0, 0), + (123177, 140, 115, null, null, 1, 0, 0), + (123178, 140, 115, null, null, 1, 0, 0), + (123179, 140, 115, null, null, 1, 0, 0), + (123180, 140, 115, null, null, 1, 0, 0), + (123181, 140, 115, null, null, 1, 0, 0), + (123182, 140, 115, null, null, 1, 0, 0), + (123183, 140, 115, null, null, 1, 0, 0), + (123184, 140, 115, null, null, 1, 0, 0), + (123185, 140, 115, null, null, 1, 0, 0), + (123186, 140, 115, null, null, 1, 0, 0), + (123187, 140, 115, null, null, 1, 0, 0), + (123188, 140, 115, null, null, 1, 0, 0), + (123189, 140, 115, null, null, 1, 0, 0), + (123190, 100, 300, 5900, 2000, 0, 0, 0), + (123191, 100, 300, 5900, 2000, 0, 0, 0), + (123192, 100, 300, 5900, 2000, 0, 0, 0), + (123193, 100, 300, 5900, 2000, 0, 0, 0), + (123194, 100, 300, 5900, 2000, 0, 0, 0), + (123195, 100, 300, 5900, 2000, 0, 0, 0), + (123196, 100, 300, 5900, 2000, 0, 0, 0), + (123197, 100, 300, 5900, 2000, 0, 0, 0), + (123198, 100, 300, 5900, 2000, 0, 0, 0), + (123199, 100, 300, 5900, 2000, 0, 0, 0), + (123200, 100, 300, 5900, 2000, 0, 0, 0), + (123201, 100, 300, 5900, 2000, 0, 0, 0), + (123202, 100, 300, 5900, 2000, 0, 0, 0), + (123203, 100, 300, 5900, 2000, 0, 0, 0), + (123204, 100, 300, 5900, 2000, 0, 0, 0), + (123205, 100, 300, 5900, 2000, 0, 0, 0), + (123206, 100, 300, 5900, 2000, 0, 0, 0), + (123207, 100, 300, 5900, 2000, 0, 0, 0), + (123208, 100, 300, 5900, 2000, 0, 0, 0), + (123209, 220, 250, 8400, 2800, 0, 0, 0), + (123210, 209, 238, 8400, 2800, 0, 0, 0), + (123211, 208, 238, 8400, 2800, 0, 0, 0), + (123212, 197, 226, 8400, 2800, 0, 0, 0), + (123213, 196, 225, 8400, 2800, 0, 0, 0), + (123214, 185, 213, 8400, 2800, 0, 0, 0), + (123215, 184, 212, 8400, 2800, 0, 0, 0), + (123216, 173, 201, 8400, 2800, 0, 0, 0), + (123217, 172, 200, 8400, 2800, 0, 0, 0), + (123218, 161, 188, 8400, 2800, 0, 0, 0), + (123219, 160, 188, 8400, 2800, 0, 0, 0), + (123220, 149, 176, 8400, 2800, 0, 0, 0), + (123221, 148, 175, 8400, 2800, 0, 0, 0), + (123222, 137, 163, 8400, 2800, 0, 0, 0), + (123223, 136, 162, 8400, 2800, 0, 0, 0), + (123224, 125, 151, 8400, 2800, 0, 0, 0), + (123226, 124, 150, 8400, 2800, 0, 0, 0), + (123227, 101, 126, 8400, 2800, 0, 0, 0), + (123228, 100, 125, 8400, 2800, 0, 0, 0), + (123229, 255, 255, null, null, 0, 0, 1), + (123230, 241, 255, null, null, 0, 0, 1), + (123231, 240, 254, null, null, 0, 0, 1), + (123232, 225, 254, null, null, 0, 0, 1), + (123233, 224, 254, null, null, 0, 0, 1), + (123234, 210, 254, null, null, 0, 0, 1), + (123235, 208, 254, null, null, 0, 0, 1), + (123236, 194, 253, null, null, 0, 0, 1), + (123237, 193, 253, null, null, 0, 0, 1), + (123238, 179, 253, null, null, 0, 0, 1), + (123239, 178, 252, null, null, 0, 0, 1), + (123240, 163, 252, null, null, 0, 0, 1), + (123241, 162, 252, null, null, 0, 0, 1), + (123242, 148, 252, null, null, 0, 0, 1), + (123243, 146, 252, null, null, 0, 0, 1), + (123244, 132, 251, null, null, 0, 0, 1), + (123245, 131, 251, null, null, 0, 0, 1), + (123246, 101, 250, null, null, 0, 0, 1), + (123247, 100, 250, null, null, 0, 0, 1), + (123248, 250, 250, null, null, 0, 0, 0), + (123249, 241, 241, null, null, 0, 0, 0), + (123250, 240, 240, null, null, 0, 0, 0), + (123251, 231, 231, null, null, 0, 0, 0), + (123252, 230, 230, null, null, 0, 0, 0), + (123253, 221, 221, null, null, 0, 0, 0), + (123254, 220, 220, null, null, 0, 0, 0), + (123255, 211, 211, null, null, 0, 0, 0), + (123256, 210, 210, null, null, 0, 0, 0), + (123257, 201, 201, null, null, 0, 0, 0), + (123258, 200, 200, null, null, 0, 0, 0), + (123259, 191, 191, null, null, 0, 0, 0), + (123260, 190, 190, null, null, 0, 0, 0), + (123261, 181, 181, null, null, 0, 0, 0), + (123262, 180, 180, null, null, 0, 0, 0), + (123263, 171, 171, null, null, 0, 0, 0), + (123264, 170, 170, null, null, 0, 0, 0), + (123265, 151, 151, null, null, 0, 0, 0), + (123266, 150, 150, null, null, 0, 0, 0), + (123267, 150, 250, null, 2600, 1, 0, 0), + (123268, 150, 250, null, 2600, 1, 0, 0), + (123269, 150, 250, null, 2600, 1, 0, 0), + (123270, 150, 250, null, 2600, 1, 0, 0), + (123271, 150, 250, null, 2600, 1, 0, 0), + (123272, 150, 250, null, 2600, 1, 0, 0), + (123273, 150, 250, null, 2600, 1, 0, 0), + (123274, 150, 250, null, 2600, 1, 0, 0), + (123275, 150, 250, null, 2600, 1, 0, 0), + (123276, 150, 250, null, 2600, 1, 0, 0), + (123277, 150, 250, null, 2600, 1, 0, 0), + (123278, 150, 250, null, 2600, 1, 0, 0), + (123279, 150, 250, null, 2600, 1, 0, 0), + (123280, 150, 250, null, 2600, 1, 0, 0), + (123281, 150, 250, null, 2600, 1, 0, 0), + (123282, 150, 250, null, 2600, 1, 0, 0), + (123283, 150, 250, null, 2600, 1, 0, 0), + (123284, 150, 250, null, 2600, 1, 0, 0), + (123285, 150, 250, null, 2600, 1, 0, 0), + (123286, 125, 154, null, 2500, 0, 0, 0), + (123287, 125, 154, null, 2500, 0, 0, 0), + (123288, 125, 154, null, 2500, 0, 0, 0), + (123289, 125, 154, null, 2500, 0, 0, 0), + (123290, 125, 154, null, 2500, 0, 0, 0), + (123291, 125, 154, null, 2500, 0, 0, 0), + (123292, 125, 154, null, 2500, 0, 0, 0), + (123293, 125, 154, null, 2500, 0, 0, 0), + (123294, 125, 154, null, 2500, 0, 0, 0), + (123295, 125, 154, null, 2500, 0, 0, 0), + (123296, 125, 154, null, 2500, 0, 0, 0), + (123297, 125, 154, null, 2500, 0, 0, 0), + (123298, 125, 154, null, 2500, 0, 0, 0), + (123299, 125, 154, null, 2500, 0, 0, 0), + (123300, 125, 154, null, 2500, 0, 0, 0), + (123301, 125, 154, null, 2500, 0, 0, 0), + (123302, 125, 154, null, 2500, 0, 0, 0), + (123303, 125, 154, null, 2500, 0, 0, 0), + (123304, 125, 154, null, 2500, 0, 0, 0), + (123305, 80, 50, null, 1400, 0, 0, 0), + (123306, 80, 50, null, 1400, 0, 0, 0), + (123307, 80, 50, null, 1400, 0, 0, 0), + (123308, 80, 50, null, 1400, 0, 0, 0), + (123309, 80, 50, null, 1400, 0, 0, 0), + (123310, 80, 50, null, 1400, 0, 0, 0), + (123311, 80, 50, null, 1400, 0, 0, 0), + (123312, 80, 50, null, 1400, 0, 0, 0), + (123313, 80, 50, null, 1400, 0, 0, 0), + (123314, 80, 50, null, 1400, 0, 0, 0), + (123315, 80, 50, null, 1400, 0, 0, 0), + (123316, 80, 50, null, 1400, 0, 0, 0), + (123317, 80, 50, null, 1400, 0, 0, 0), + (123318, 80, 50, null, 1400, 0, 0, 0), + (123319, 80, 50, null, 1400, 0, 0, 0), + (123320, 80, 50, null, 1400, 0, 0, 0), + (123321, 80, 50, null, 1400, 0, 0, 0), + (123322, 80, 50, null, 1400, 0, 0, 0), + (123323, 80, 50, null, 1400, 0, 0, 0), + (123324, 120, 160, null, null, 0, 0, 0), + (123325, 120, 160, null, null, 0, 0, 0), + (123326, 120, 160, null, null, 0, 0, 0), + (123327, 120, 160, null, null, 0, 0, 0), + (123328, 120, 160, null, null, 0, 0, 0), + (123329, 120, 160, null, null, 0, 0, 0), + (123330, 120, 160, null, null, 0, 0, 0), + (123331, 120, 160, null, null, 0, 0, 0), + (123332, 120, 160, null, null, 0, 0, 0), + (123333, 120, 160, null, null, 0, 0, 0), + (123334, 120, 160, null, null, 0, 0, 0), + (123335, 120, 160, null, null, 0, 0, 0), + (123336, 120, 160, null, null, 0, 0, 0), + (123337, 120, 160, null, null, 0, 0, 0), + (123338, 120, 160, null, null, 0, 0, 0), + (123339, 120, 160, null, null, 0, 0, 0), + (123340, 120, 160, null, null, 0, 0, 0), + (123341, 120, 160, null, null, 0, 0, 0), + (123342, 120, 160, null, null, 0, 0, 0), + (123343, 150, 145, null, null, 0, 1, 0), + (123344, 150, 145, null, null, 0, 1, 0), + (123345, 150, 145, null, null, 0, 1, 0), + (123346, 150, 145, null, null, 0, 1, 0), + (123347, 150, 145, null, null, 0, 1, 0), + (123348, 150, 145, null, null, 0, 1, 0), + (123349, 150, 145, null, null, 0, 1, 0), + (123350, 150, 145, null, null, 0, 1, 0), + (123351, 150, 145, null, null, 0, 1, 0), + (123352, 150, 145, null, null, 0, 1, 0), + (123353, 150, 145, null, null, 0, 1, 0), + (123354, 150, 145, null, null, 0, 1, 0), + (123355, 150, 145, null, null, 0, 1, 0), + (123356, 150, 145, null, null, 0, 1, 0), + (123357, 150, 145, null, null, 0, 1, 0), + (123358, 150, 145, null, null, 0, 1, 0), + (123359, 150, 145, null, null, 0, 1, 0), + (123360, 150, 145, null, null, 0, 1, 0), + (123361, 150, 145, null, null, 0, 1, 0), + (123362, 150, 155, null, null, 0, 0, 0), + (123363, 150, 155, null, null, 0, 0, 0), + (123364, 150, 155, null, null, 0, 0, 0), + (123365, 150, 155, null, null, 0, 0, 0), + (123366, 150, 155, null, null, 0, 0, 0), + (123367, 150, 155, null, null, 0, 0, 0), + (123368, 150, 155, null, null, 0, 0, 0), + (123369, 150, 155, null, null, 0, 0, 0), + (123370, 150, 155, null, null, 0, 0, 0), + (123371, 150, 155, null, null, 0, 0, 0), + (123372, 150, 155, null, null, 0, 0, 0), + (123373, 150, 155, null, null, 0, 0, 0), + (123374, 150, 155, null, null, 0, 0, 0), + (123375, 150, 155, null, null, 0, 0, 0), + (123376, 150, 155, null, null, 0, 0, 0), + (123377, 150, 155, null, null, 0, 0, 0), + (123378, 150, 155, null, null, 0, 0, 0), + (123379, 150, 155, null, null, 0, 0, 0), + (123380, 150, 155, null, null, 0, 0, 0), + (123381, 120, 130, null, null, 0, 1, 0), + (123382, 120, 129, null, null, 0, 1, 0), + (123383, 120, 129, null, null, 0, 1, 0), + (123384, 120, 128, null, null, 0, 1, 0), + (123385, 120, 128, null, null, 0, 1, 0), + (123386, 120, 127, null, null, 0, 1, 0), + (123387, 120, 127, null, null, 0, 1, 0), + (123388, 120, 126, null, null, 0, 1, 0), + (123389, 120, 126, null, null, 0, 1, 0), + (123390, 120, 125, null, null, 0, 1, 0), + (123391, 120, 125, null, null, 0, 1, 0), + (123392, 120, 124, null, null, 0, 1, 0), + (123393, 120, 124, null, null, 0, 1, 0), + (123395, 120, 123, null, null, 0, 1, 0), + (123396, 120, 122, null, null, 0, 1, 0), + (123397, 120, 122, null, null, 0, 1, 0), + (123398, 120, 120, null, null, 0, 1, 0), + (123399, 120, 120, null, null, 0, 1, 0), + (123400, 100, 250, null, null, 1, 0, 0), + (123401, 100, 250, null, null, 1, 0, 0), + (123402, 100, 250, null, null, 1, 0, 0), + (123403, 100, 250, null, null, 1, 0, 0), + (123404, 100, 250, null, null, 1, 0, 0), + (123405, 100, 250, null, null, 1, 0, 0), + (123406, 100, 250, null, null, 1, 0, 0), + (123407, 100, 250, null, null, 1, 0, 0), + (123408, 100, 250, null, null, 1, 0, 0), + (123409, 100, 250, null, null, 1, 0, 0), + (123410, 100, 250, null, null, 1, 0, 0), + (123411, 100, 250, null, null, 1, 0, 0), + (123412, 100, 250, null, null, 1, 0, 0), + (123413, 100, 250, null, null, 1, 0, 0), + (123414, 100, 250, null, null, 1, 0, 0), + (123415, 100, 250, null, null, 1, 0, 0), + (123416, 100, 250, null, null, 1, 0, 0), + (123417, 100, 250, null, null, 1, 0, 0), + (123418, 100, 250, null, null, 1, 0, 0), + (123419, 250, 250, null, null, 1, 0, 0), + (123420, 250, 250, null, null, 1, 0, 0), + (123421, 250, 250, null, null, 1, 0, 0), + (123422, 250, 250, null, null, 1, 0, 0), + (123423, 250, 250, null, null, 1, 0, 0), + (123424, 250, 250, null, null, 1, 0, 0), + (123425, 250, 250, null, null, 1, 0, 0), + (123426, 250, 250, null, null, 1, 0, 0), + (123427, 250, 250, null, null, 1, 0, 0), + (123428, 250, 250, null, null, 1, 0, 0), + (123429, 250, 250, null, null, 1, 0, 0), + (123430, 250, 250, null, null, 1, 0, 0), + (123431, 250, 250, null, null, 1, 0, 0), + (123432, 250, 250, null, null, 1, 0, 0), + (123433, 250, 250, null, null, 1, 0, 0), + (123434, 250, 250, null, null, 1, 0, 0), + (123435, 250, 250, null, null, 1, 0, 0), + (123436, 250, 250, null, null, 1, 0, 0), + (123437, 250, 250, null, null, 1, 0, 0), + (123438, 170, 170, null, null, 1, 0, 0), + (123439, 159, 170, null, null, 1, 0, 0), + (123440, 158, 170, null, null, 1, 0, 0), + (123441, 146, 170, null, null, 1, 0, 0), + (123442, 146, 170, null, null, 1, 0, 0), + (123443, 134, 170, null, null, 1, 0, 0), + (123444, 134, 170, null, null, 1, 0, 0), + (123445, 122, 170, null, null, 1, 0, 0), + (123446, 122, 170, null, null, 1, 0, 0), + (123447, 110, 170, null, null, 1, 0, 0), + (123448, 110, 170, null, null, 1, 0, 0), + (123449, 98, 170, null, null, 1, 0, 0), + (123450, 98, 170, null, null, 1, 0, 0), + (123451, 86, 170, null, null, 1, 0, 0), + (123452, 86, 170, null, null, 1, 0, 0), + (123453, 74, 170, null, null, 1, 0, 0), + (123454, 74, 170, null, null, 1, 0, 0), + (123455, 51, 170, null, null, 1, 0, 0), + (123456, 50, 170, null, null, 1, 0, 0), + (123457, 250, 250, null, null, 1, 0, 0), + (123458, 250, 250, null, null, 1, 0, 0), + (123459, 250, 250, null, null, 1, 0, 0), + (123460, 250, 250, null, null, 1, 0, 0), + (123461, 250, 250, null, null, 1, 0, 0), + (123462, 250, 250, null, null, 1, 0, 0), + (123463, 250, 250, null, null, 1, 0, 0), + (123464, 250, 250, null, null, 1, 0, 0), + (123465, 250, 250, null, null, 1, 0, 0), + (123466, 250, 250, null, null, 1, 0, 0), + (123467, 250, 250, null, null, 1, 0, 0), + (123468, 250, 250, null, null, 1, 0, 0), + (123469, 250, 250, null, null, 1, 0, 0), + (123470, 250, 250, null, null, 1, 0, 0), + (123471, 250, 250, null, null, 1, 0, 0), + (123472, 250, 250, null, null, 1, 0, 0), + (123473, 250, 250, null, null, 1, 0, 0), + (123474, 250, 250, null, null, 1, 0, 0), + (123475, 250, 250, null, null, 1, 0, 0), + (123476, 150, 150, null, null, 1, 0, 0), + (123477, 150, 150, null, null, 1, 0, 0), + (123478, 150, 150, null, null, 1, 0, 0), + (123479, 150, 150, null, null, 1, 0, 0), + (123480, 150, 150, null, null, 1, 0, 0), + (123481, 150, 150, null, null, 1, 0, 0), + (123482, 150, 150, null, null, 1, 0, 0), + (123483, 150, 150, null, null, 1, 0, 0), + (123484, 150, 150, null, null, 1, 0, 0), + (123485, 150, 150, null, null, 1, 0, 0), + (123486, 150, 150, null, null, 1, 0, 0), + (123487, 150, 150, null, null, 1, 0, 0), + (123488, 150, 150, null, null, 1, 0, 0), + (123489, 150, 150, null, null, 1, 0, 0), + (123490, 150, 150, null, null, 1, 0, 0), + (123491, 150, 150, null, null, 1, 0, 0), + (123492, 150, 150, null, null, 1, 0, 0), + (123493, 150, 150, null, null, 1, 0, 0), + (123494, 150, 150, null, null, 1, 0, 0), + (123495, 129, 130, null, 2000, 1, 0, 0), + (123496, 129, 130, null, 2000, 1, 0, 0), + (123497, 129, 130, null, 2000, 1, 0, 0), + (123498, 129, 130, null, 2000, 1, 0, 0), + (123499, 129, 130, null, 2000, 1, 0, 0), + (123500, 129, 130, null, 2000, 1, 0, 0), + (123501, 129, 130, null, 2000, 1, 0, 0), + (123502, 129, 130, null, 2000, 1, 0, 0), + (123503, 129, 130, null, 2000, 1, 0, 0), + (123504, 129, 130, null, 2000, 1, 0, 0), + (123505, 130, 130, null, 2000, 1, 0, 0), + (123506, 130, 130, null, 2000, 1, 0, 0), + (123507, 130, 130, null, 2000, 1, 0, 0), + (123508, 130, 130, null, 2000, 1, 0, 0), + (123509, 130, 130, null, 2000, 1, 0, 0), + (123510, 130, 130, null, 2000, 1, 0, 0), + (123511, 130, 130, null, 2000, 1, 0, 0), + (123512, 130, 130, null, 2000, 1, 0, 0), + (123513, 130, 130, null, 2000, 1, 0, 0), + (123514, 175, 130, null, null, 0, 0, 0), + (123515, 175, 130, null, null, 0, 0, 0), + (123516, 175, 130, null, null, 0, 0, 0), + (123517, 175, 130, null, null, 0, 0, 0), + (123518, 175, 130, null, null, 0, 0, 0), + (123519, 175, 130, null, null, 0, 0, 0), + (123520, 175, 130, null, null, 0, 0, 0), + (123521, 175, 130, null, null, 0, 0, 0), + (123522, 175, 130, null, null, 0, 0, 0), + (123523, 175, 130, null, null, 0, 0, 0), + (123524, 175, 130, null, null, 0, 0, 0), + (123525, 175, 130, null, null, 0, 0, 0), + (123526, 175, 130, null, null, 0, 0, 0), + (123527, 175, 130, null, null, 0, 0, 0), + (123528, 175, 130, null, null, 0, 0, 0), + (123529, 175, 130, null, null, 0, 0, 0), + (123530, 175, 130, null, null, 0, 0, 0), + (123531, 175, 130, null, null, 0, 0, 0), + (123532, 175, 130, null, null, 0, 0, 0), + (123533, 130, 130, null, null, 0, 0, 0), + (123534, 121, 130, null, null, 0, 0, 0), + (123535, 120, 130, null, null, 0, 0, 0), + (123536, 111, 130, null, null, 0, 0, 0), + (123537, 111, 130, null, null, 0, 0, 0), + (123538, 101, 130, null, null, 0, 0, 0), + (123539, 101, 130, null, null, 0, 0, 0), + (123540, 92, 130, null, null, 0, 0, 0), + (123541, 91, 130, null, null, 0, 0, 0), + (123542, 82, 130, null, null, 0, 0, 0), + (123543, 81, 130, null, null, 0, 0, 0), + (123544, 72, 130, null, null, 0, 0, 0), + (123545, 72, 130, null, null, 0, 0, 0), + (123546, 62, 130, null, null, 0, 0, 0), + (123547, 62, 130, null, null, 0, 0, 0), + (123548, 53, 130, null, null, 0, 0, 0), + (123549, 52, 130, null, null, 0, 0, 0), + (123550, 31, 130, null, null, 0, 0, 0), + (123551, 30, 130, null, null, 0, 0, 0), + (123552, 140, 140, null, null, 0, 0, 0), + (123553, 140, 140, null, null, 0, 0, 0), + (123554, 140, 140, null, null, 0, 0, 0), + (123555, 140, 140, null, null, 0, 0, 0), + (123556, 140, 140, null, null, 0, 0, 0), + (123557, 140, 140, null, null, 0, 0, 0), + (123558, 140, 140, null, null, 0, 0, 0), + (123559, 140, 140, null, null, 0, 0, 0), + (123560, 140, 140, null, null, 0, 0, 0), + (123561, 140, 140, null, null, 0, 0, 0), + (123562, 140, 140, null, null, 0, 0, 0), + (123563, 140, 140, null, null, 0, 0, 0), + (123564, 140, 140, null, null, 0, 0, 0), + (123565, 140, 140, null, null, 0, 0, 0), + (123566, 140, 140, null, null, 0, 0, 0), + (123567, 140, 140, null, null, 0, 0, 0), + (123568, 140, 140, null, null, 0, 0, 0), + (123569, 140, 140, null, null, 0, 0, 0), + (123570, 140, 140, null, null, 0, 0, 0), + (123571, 250, 250, null, 2100, 0, 0, 0), + (123572, 250, 250, null, 2100, 0, 0, 0), + (123573, 250, 250, null, 2100, 0, 0, 0), + (123574, 250, 250, null, 2100, 0, 0, 0), + (123575, 250, 250, null, 2100, 0, 0, 0), + (123576, 250, 250, null, 2100, 0, 0, 0), + (123577, 250, 250, null, 2100, 0, 0, 0), + (123578, 250, 250, null, 2100, 0, 0, 0), + (123579, 250, 250, null, 2100, 0, 0, 0), + (123580, 250, 250, null, 2100, 0, 0, 0), + (123581, 250, 250, null, 2100, 0, 0, 0), + (123582, 250, 250, null, 2100, 0, 0, 0), + (123583, 250, 250, null, 2100, 0, 0, 0), + (123584, 250, 250, null, 2100, 0, 0, 0), + (123585, 250, 250, null, 2100, 0, 0, 0), + (123586, 250, 250, null, 2100, 0, 0, 0), + (123587, 250, 250, null, 2100, 0, 0, 0), + (123588, 250, 250, null, 2100, 0, 0, 0), + (123589, 250, 250, null, 2100, 0, 0, 0), + (123590, 250, 250, 6700, null, 0, 0, 0), + (123591, 250, 250, 6700, null, 0, 0, 0), + (123592, 250, 250, 6700, null, 0, 0, 0), + (123593, 250, 250, 6700, null, 0, 0, 0), + (123594, 250, 250, 6700, null, 0, 0, 0), + (123595, 250, 250, 6700, null, 0, 0, 0), + (123596, 250, 250, 6700, null, 0, 0, 0), + (123597, 250, 250, 6700, null, 0, 0, 0), + (123598, 250, 250, 6700, null, 0, 0, 0), + (123599, 250, 250, 6700, null, 0, 0, 0), + (123600, 250, 250, 6700, null, 0, 0, 0), + (123601, 250, 250, 6700, null, 0, 0, 0), + (123602, 250, 250, 6700, null, 0, 0, 0), + (123603, 250, 250, 6700, null, 0, 0, 0), + (123604, 250, 250, 6700, null, 0, 0, 0), + (123605, 250, 250, 6700, null, 0, 0, 0), + (123606, 250, 250, 6700, null, 0, 0, 0), + (123607, 250, 250, 6700, null, 0, 0, 0), + (123608, 250, 250, 6700, null, 0, 0, 0), + (123609, 130, 174, null, null, 0, 0, 0), + (123610, 130, 174, null, null, 0, 0, 0), + (123611, 130, 174, null, null, 0, 0, 0), + (123612, 130, 174, null, null, 0, 0, 0), + (123613, 130, 174, null, null, 0, 0, 0), + (123614, 130, 174, null, null, 0, 0, 0), + (123615, 130, 174, null, null, 0, 0, 0), + (123616, 130, 174, null, null, 0, 0, 0), + (123617, 130, 174, null, null, 0, 0, 0), + (123618, 130, 174, null, null, 0, 0, 0), + (123619, 130, 174, null, null, 0, 0, 0), + (123620, 130, 174, null, null, 0, 0, 0), + (123621, 130, 174, null, null, 0, 0, 0), + (123622, 130, 174, null, null, 0, 0, 0), + (123623, 130, 174, null, null, 0, 0, 0), + (123624, 130, 174, null, null, 0, 0, 0), + (123625, 130, 174, null, null, 0, 0, 0), + (123626, 130, 174, null, null, 0, 0, 0), + (123627, 130, 174, null, null, 0, 0, 0), + (123628, 210, 153, null, 2300, 0, 0, 0), + (123629, 205, 151, null, 2300, 0, 0, 0), + (123630, 205, 151, null, 2300, 0, 0, 0), + (123631, 201, 149, null, 2300, 0, 0, 0), + (123632, 200, 149, null, 2300, 0, 0, 0), + (123633, 196, 147, null, 2300, 0, 0, 0), + (123634, 196, 147, null, 2300, 0, 0, 0), + (123635, 191, 145, null, 2300, 0, 0, 0), + (123636, 191, 145, null, 2300, 0, 0, 0), + (123637, 186, 143, null, 2300, 0, 0, 0), + (123638, 186, 142, null, 2300, 0, 0, 0), + (123639, 181, 140, null, 2300, 0, 0, 0), + (123640, 181, 140, null, 2300, 0, 0, 0), + (123641, 176, 138, null, 2300, 0, 0, 0), + (123642, 176, 138, null, 2300, 0, 0, 0), + (123643, 172, 136, null, 2300, 0, 0, 0), + (123644, 171, 136, null, 2300, 0, 0, 0), + (123645, 162, 132, null, 2300, 0, 0, 0), + (123646, 162, 132, null, 2300, 0, 0, 0), + (123647, 105, 196, null, null, 1, 0, 0), + (123648, 105, 196, null, null, 1, 0, 0), + (123649, 105, 196, null, null, 1, 0, 0), + (123650, 105, 196, null, null, 1, 0, 0), + (123651, 105, 196, null, null, 1, 0, 0), + (123652, 105, 196, null, null, 1, 0, 0), + (123653, 105, 196, null, null, 1, 0, 0), + (123654, 105, 196, null, null, 1, 0, 0), + (123655, 105, 196, null, null, 1, 0, 0), + (123656, 105, 196, null, null, 1, 0, 0), + (123657, 105, 196, null, null, 1, 0, 0), + (123658, 105, 196, null, null, 1, 0, 0), + (123659, 105, 196, null, null, 1, 0, 0), + (123660, 105, 196, null, null, 1, 0, 0), + (123661, 105, 196, null, null, 1, 0, 0), + (123662, 105, 196, null, null, 1, 0, 0), + (123663, 105, 196, null, null, 1, 0, 0), + (123664, 105, 196, null, null, 1, 0, 0), + (123665, 105, 196, null, null, 1, 0, 0), + (123666, 130, 200, null, null, 0, 0, 0), + (123667, 130, 200, null, null, 0, 0, 0), + (123668, 130, 200, null, null, 0, 0, 0), + (123669, 130, 200, null, null, 0, 0, 0), + (123670, 130, 200, null, null, 0, 0, 0), + (123671, 130, 200, null, null, 0, 0, 0), + (123672, 130, 200, null, null, 0, 0, 0), + (123673, 130, 200, null, null, 0, 0, 0), + (123674, 130, 200, null, null, 0, 0, 0), + (123675, 130, 200, null, null, 0, 0, 0), + (123676, 130, 200, null, null, 0, 0, 0), + (123677, 130, 200, null, null, 0, 0, 0), + (123678, 130, 200, null, null, 0, 0, 0), + (123679, 130, 200, null, null, 0, 0, 0), + (123680, 130, 200, null, null, 0, 0, 0), + (123681, 130, 200, null, null, 0, 0, 0), + (123682, 130, 200, null, null, 0, 0, 0), + (123683, 130, 200, null, null, 0, 0, 0), + (123684, 130, 200, null, null, 0, 0, 0), + (123685, 210, 153, null, 1900, 1, 0, 0), + (123686, 205, 151, null, 1900, 1, 0, 0), + (123687, 205, 151, null, 1900, 1, 0, 0), + (123688, 201, 149, null, 1900, 1, 0, 0), + (123689, 200, 149, null, 1900, 1, 0, 0), + (123690, 196, 147, null, 1900, 1, 0, 0), + (123691, 196, 147, null, 1900, 1, 0, 0), + (123692, 191, 145, null, 1900, 1, 0, 0), + (123693, 191, 145, null, 1900, 1, 0, 0), + (123694, 186, 143, null, 1900, 1, 0, 0), + (123695, 186, 142, null, 1900, 1, 0, 0), + (123696, 181, 140, null, 1900, 1, 0, 0), + (123697, 181, 140, null, 1900, 1, 0, 0), + (123698, 176, 138, null, 1900, 1, 0, 0), + (123699, 176, 138, null, 1900, 1, 0, 0), + (123700, 172, 136, null, 1900, 1, 0, 0), + (123701, 171, 136, null, 1900, 1, 0, 0), + (123702, 162, 132, null, 1900, 1, 0, 0), + (123703, 162, 132, null, 1900, 1, 0, 0), + (123704, 120, 160, null, 2300, 0, 0, 0), + (123705, 120, 160, null, 2300, 0, 0, 0), + (123706, 120, 160, null, 2300, 0, 0, 0), + (123707, 120, 160, null, 2300, 0, 0, 0), + (123708, 120, 160, null, 2300, 0, 0, 0), + (123709, 120, 160, null, 2300, 0, 0, 0), + (123710, 120, 160, null, 2300, 0, 0, 0), + (123711, 120, 160, null, 2300, 0, 0, 0), + (123712, 120, 160, null, 2300, 0, 0, 0), + (123713, 120, 160, null, 2300, 0, 0, 0), + (123714, 120, 160, null, 2300, 0, 0, 0), + (123715, 120, 160, null, 2300, 0, 0, 0), + (123716, 120, 160, null, 2300, 0, 0, 0), + (123717, 120, 160, null, 2300, 0, 0, 0), + (123718, 120, 160, null, 2300, 0, 0, 0), + (123719, 120, 160, null, 2300, 0, 0, 0), + (123720, 120, 160, null, 2300, 0, 0, 0), + (123721, 120, 160, null, 2300, 0, 0, 0), + (123722, 120, 160, null, 2300, 0, 0, 0), + (123723, 120, 350, null, 2000, 0, 0, 0), + (123724, 119, 350, null, 2000, 0, 0, 0), + (123725, 119, 350, null, 2000, 0, 0, 0), + (123726, 118, 350, null, 2000, 0, 0, 0), + (123727, 118, 350, null, 2000, 0, 0, 0), + (123728, 117, 350, null, 2000, 0, 0, 0), + (123729, 116, 350, null, 2000, 0, 0, 0), + (123730, 115, 350, null, 2000, 0, 0, 0), + (123731, 115, 350, null, 2000, 0, 0, 0), + (123732, 115, 350, null, 2000, 0, 0, 0), + (123733, 114, 350, null, 2000, 0, 0, 0), + (123734, 113, 350, null, 2000, 0, 0, 0), + (123735, 113, 350, null, 2000, 0, 0, 0), + (123736, 112, 350, null, 2000, 0, 0, 0), + (123737, 111, 350, null, 2000, 0, 0, 0), + (123738, 110, 350, null, 2000, 0, 0, 0), + (123739, 110, 350, null, 2000, 0, 0, 0), + (123740, 100, 350, null, 2000, 0, 0, 0), + (123741, 100, 350, null, 2000, 0, 0, 0), + (123742, 125, 125, null, null, 1, 0, 0), + (123743, 125, 125, null, null, 1, 0, 0), + (123744, 125, 125, null, null, 1, 0, 0), + (123745, 124, 124, null, null, 1, 0, 0), + (123746, 124, 124, null, null, 1, 0, 0), + (123747, 124, 124, null, null, 1, 0, 0), + (123748, 124, 124, null, null, 1, 0, 0), + (123749, 122, 122, null, null, 1, 0, 0), + (123750, 122, 122, null, null, 1, 0, 0), + (123751, 122, 122, null, null, 1, 0, 0), + (123752, 122, 122, null, null, 1, 0, 0), + (123753, 121, 121, null, null, 1, 0, 0), + (123754, 121, 121, null, null, 1, 0, 0), + (123755, 120, 120, null, null, 1, 0, 0), + (123756, 120, 120, null, null, 1, 0, 0), + (123757, 120, 120, null, null, 1, 0, 0), + (123758, 120, 120, null, null, 1, 0, 0), + (123759, 120, 120, null, null, 1, 0, 0), + (123760, 120, 120, null, null, 1, 0, 0), + (123761, 120, 110, null, null, 1, 0, 0), + (123762, 119, 111, null, null, 1, 0, 0), + (123763, 119, 111, null, null, 1, 0, 0), + (123764, 118, 112, null, null, 1, 0, 0), + (123765, 118, 112, null, null, 1, 0, 0), + (123766, 117, 112, null, null, 1, 0, 0), + (123767, 117, 112, null, null, 1, 0, 0), + (123768, 111, 117, null, null, 1, 0, 0), + (123769, 111, 117, null, null, 1, 0, 0), + (123770, 110, 117, null, null, 1, 0, 0), + (123771, 110, 118, null, null, 1, 0, 0), + (123772, 108, 119, null, null, 1, 0, 0), + (123773, 108, 119, null, null, 1, 0, 0), + (123774, 250, 250, null, 1600, 1, 0, 0), + (123775, 250, 250, null, 1600, 1, 0, 0), + (123776, 250, 250, null, 1600, 1, 0, 0), + (123777, 250, 250, null, 1600, 1, 0, 0), + (123778, 250, 250, null, 1600, 1, 0, 0), + (123779, 250, 250, null, 1600, 1, 0, 0), + (123780, 250, 250, null, 1600, 1, 0, 0), + (123781, 250, 250, null, 1600, 1, 0, 0), + (123782, 250, 250, null, 1600, 1, 0, 0), + (123783, 250, 250, null, 1600, 1, 0, 0), + (123784, 250, 250, null, 1600, 1, 0, 0), + (123785, 250, 250, null, 1600, 1, 0, 0), + (123786, 250, 250, null, 1600, 1, 0, 0), + (123787, 250, 250, null, 1600, 1, 0, 0), + (123788, 250, 250, null, 1600, 1, 0, 0), + (123789, 115, 100, null, 2300, 0, 0, 0), + (123790, 115, 100, null, 2300, 0, 0, 0), + (123791, 115, 100, null, 2300, 0, 0, 0), + (123792, 115, 100, null, 2300, 0, 0, 0), + (123793, 115, 100, null, 2300, 0, 0, 0), + (123794, 115, 100, null, 2300, 0, 0, 0), + (123795, 115, 100, null, 2300, 0, 0, 0), + (123796, 115, 100, null, 2300, 0, 0, 0), + (123797, 115, 100, null, 2300, 0, 0, 0), + (123798, 115, 100, null, 2300, 0, 0, 0), + (123799, 115, 100, null, 2300, 0, 0, 0), + (123800, 115, 100, null, 2300, 0, 0, 0), + (123801, 115, 100, null, 2300, 0, 0, 0), + (123802, 115, 100, null, 2300, 0, 0, 0), + (123803, 115, 100, null, 2300, 0, 0, 0), + (123804, 115, 100, null, 2300, 0, 0, 0), + (123805, 115, 100, null, 2300, 0, 0, 0), + (123806, 115, 100, null, 2300, 0, 0, 0), + (123807, 115, 100, null, 2300, 0, 0, 0), + (123808, 125, 125, null, 2200, 1, 0, 0), + (123809, 124, 125, null, 2200, 1, 0, 0), + (123810, 124, 125, null, 2200, 1, 0, 0), + (123811, 116, 123, null, 2200, 1, 0, 0), + (123812, 116, 123, null, 2200, 1, 0, 0), + (123813, 115, 123, null, 2200, 1, 0, 0), + (123814, 115, 123, null, 2200, 1, 0, 0), + (123815, 114, 122, null, 2200, 1, 0, 0), + (123816, 114, 122, null, 2200, 1, 0, 0), + (123817, 107, 121, null, 2200, 1, 0, 0), + (123818, 107, 121, null, 2200, 1, 0, 0), + (123819, 115, 200, null, null, 1, 0, 0), + (123820, 115, 200, null, null, 1, 0, 0), + (123821, 115, 200, null, null, 1, 0, 0), + (123822, 115, 200, null, null, 1, 0, 0), + (123823, 115, 200, null, null, 1, 0, 0), + (123824, 115, 200, null, null, 1, 0, 0), + (123825, 115, 200, null, null, 1, 0, 0), + (123826, 115, 200, null, null, 1, 0, 0), + (123827, 115, 200, null, null, 1, 0, 0), + (123828, 115, 200, null, null, 1, 0, 0), + (123829, 115, 200, null, null, 1, 0, 0), + (123830, 115, 200, null, null, 1, 0, 0), + (123831, 115, 200, null, null, 1, 0, 0), + (123832, 115, 200, null, null, 1, 0, 0), + (123833, 115, 200, null, null, 1, 0, 0), + (123834, 115, 200, null, null, 1, 0, 0), + (123835, 115, 200, null, null, 1, 0, 0), + (123836, 115, 200, null, null, 1, 0, 0), + (123837, 175, 134, null, null, 1, 0, 0), + (123838, 172, 133, null, null, 1, 0, 0), + (123839, 172, 133, null, null, 1, 0, 0), + (123840, 145, 125, null, null, 1, 0, 0), + (123841, 145, 125, null, null, 1, 0, 0), + (123842, 110, 115, null, null, 1, 0, 0), + (123843, 110, 115, null, null, 1, 0, 0), + (123844, 120, 130, 4800, 1600, 1, 0, 0), + (123845, 119, 129, 4800, 1600, 1, 0, 0), + (123846, 119, 129, 4800, 1600, 1, 0, 0), + (123847, 117, 127, 4800, 1600, 1, 0, 0), + (123848, 117, 127, 4800, 1600, 1, 0, 0), + (123849, 116, 126, 4800, 1600, 1, 0, 0), + (123850, 116, 126, 4800, 1600, 1, 0, 0), + (123851, 115, 125, 4800, 1600, 1, 0, 0), + (123852, 115, 125, 4800, 1600, 1, 0, 0), + (123853, 112, 122, 4800, 1600, 1, 0, 0), + (123854, 112, 122, 4800, 1600, 1, 0, 0), + (123855, 130, 130, null, null, 1, 0, 0), + (123856, 124, 128, null, null, 1, 0, 0), + (123857, 124, 128, null, null, 1, 0, 0), + (123858, 119, 127, null, null, 1, 0, 0), + (123859, 119, 127, null, null, 1, 0, 0), + (123860, 116, 126, null, null, 1, 0, 0), + (123861, 116, 126, null, null, 1, 0, 0), + (123862, 115, 126, null, null, 1, 0, 0), + (123863, 115, 126, null, null, 1, 0, 0), + (123864, 105, 124, null, null, 1, 0, 0), + (123865, 105, 124, null, null, 1, 0, 0), + (123866, 99, 122, null, null, 1, 0, 0), + (123867, 99, 122, null, null, 1, 0, 0), + (123868, 270, 200, null, 1700, 1, 0, 0), + (123869, 264, 199, null, 1700, 1, 0, 0), + (123870, 264, 199, null, 1700, 1, 0, 0), + (123871, 259, 197, null, 1700, 1, 0, 0), + (123872, 259, 197, null, 1700, 1, 0, 0), + (123873, 256, 197, null, 1700, 1, 0, 0), + (123874, 256, 197, null, 1700, 1, 0, 0), + (123875, 254, 196, null, 1700, 1, 0, 0), + (123876, 254, 196, null, 1700, 1, 0, 0), + (123877, 250, 195, null, 1700, 1, 0, 0), + (123878, 250, 195, null, 1700, 1, 0, 0), + (123879, 180, 100, 3400, 1100, 1, 0, 0), + (123880, 168, 100, 3400, 1100, 1, 0, 0), + (123881, 168, 100, 3400, 1100, 1, 0, 0), + (123882, 155, 100, 3400, 1100, 1, 0, 0), + (123883, 155, 100, 3400, 1100, 1, 0, 0), + (123884, 130, 100, 3400, 1100, 1, 0, 0), + (123885, 130, 100, 3400, 1100, 1, 0, 0), + (123886, 240, 250, 3800, 1300, 1, 0, 0), + (123887, 235, 246, 3800, 1300, 1, 0, 0), + (123888, 235, 246, 3800, 1300, 1, 0, 0), + (123889, 215, 230, 3800, 1300, 1, 0, 0), + (123890, 215, 230, 3800, 1300, 1, 0, 0), + (123891, 210, 226, 3800, 1300, 1, 0, 0), + (123892, 210, 226, 3800, 1300, 1, 0, 0), + (123893, 160, 130, 3900, null, 1, 0, 0), + (123894, 157, 130, 3900, null, 1, 0, 0), + (123895, 157, 130, 3900, null, 1, 0, 0), + (123896, 154, 130, 3900, null, 1, 0, 0), + (123897, 154, 130, 3900, null, 1, 0, 0), + (123898, 148, 130, 3900, null, 1, 0, 0), + (123899, 147, 130, 3900, null, 1, 0, 0), + (123900, 142, 130, 3900, null, 1, 0, 0), + (123901, 142, 130, 3900, null, 1, 0, 0), + (123902, 133, 130, 3900, null, 1, 0, 0), + (123903, 133, 130, 3900, null, 1, 0, 0), + (123904, 180, 160, null, 1600, 1, 0, 1), + (123905, 172, 159, null, 1600, 1, 0, 1), + (123906, 172, 159, null, 1600, 1, 0, 1), + (123907, 155, 156, null, 1600, 1, 0, 1), + (123908, 155, 156, null, 1600, 1, 0, 1), + (123909, 115, 130, 3800, null, 1, 0, 0), + (123910, 114, 129, 3800, null, 1, 0, 0), + (123911, 113, 129, 3800, null, 1, 0, 0), + (123912, 112, 128, 3800, null, 1, 0, 0), + (123913, 112, 128, 3800, null, 1, 0, 0), + (123914, 111, 127, 3800, null, 1, 0, 0), + (123915, 110, 127, 3800, null, 1, 0, 0), + (123916, 109, 126, 3800, null, 1, 0, 0), + (123917, 109, 126, 3800, null, 1, 0, 0), + (123918, 108, 125, 3800, null, 1, 0, 0), + (123919, 107, 125, 3800, null, 1, 0, 0), + (123920, 106, 124, 3800, null, 1, 0, 0), + (123921, 106, 124, 3800, null, 1, 0, 0), + (123922, 105, 123, 3800, null, 1, 0, 0), + (123923, 104, 123, 3800, null, 1, 0, 0), + (123924, 103, 122, 3800, null, 1, 0, 0), + (123925, 103, 122, 3800, null, 1, 0, 0), + (123926, 100, 120, 3800, null, 1, 0, 0), + (123927, 100, 120, 3800, null, 1, 0, 0), + (123928, 250, 250, null, 1900, 1, 0, 0), + (123929, 245, 240, null, 1900, 1, 0, 0), + (123930, 245, 240, null, 1900, 1, 0, 0), + (123931, 233, 215, null, 1900, 1, 0, 0), + (123932, 233, 215, null, 1900, 1, 0, 0), + (123933, 129, 151, null, null, 1, 0, 1), + (123934, 126, 150, null, null, 1, 0, 1), + (123935, 126, 150, null, null, 1, 0, 1), + (123936, 125, 149, null, null, 1, 0, 1), + (123937, 124, 149, null, null, 1, 0, 1), + (123938, 120, 148, null, null, 1, 0, 1), + (123939, 120, 148, null, null, 1, 0, 1), + (123940, 112, 144, null, null, 1, 0, 1), + (123941, 112, 144, null, null, 1, 0, 1), + (123942, 129, 151, 4500, 1500, 0, 0, 0), + (123943, 129, 151, 4500, 1500, 0, 0, 0), + (123944, 129, 151, 4500, 1500, 0, 0, 0), + (123945, 129, 151, 4500, 1500, 0, 0, 0), + (123946, 129, 151, 4500, 1500, 0, 0, 0), + (123947, 129, 151, 4500, 1500, 0, 0, 0), + (123948, 129, 151, 4500, 1500, 0, 0, 0), + (123949, 129, 151, 4500, 1500, 0, 0, 0), + (123950, 129, 151, 4500, 1500, 0, 0, 0), + (123951, 129, 151, 4500, 1500, 0, 0, 0), + (123952, 129, 151, 4500, 1500, 0, 0, 0), + (123953, 129, 151, 4500, 1500, 0, 0, 0), + (123954, 129, 151, 4500, 1500, 0, 0, 0), + (123955, 129, 151, 4500, 1500, 0, 0, 0), + (123956, 129, 151, 4500, 1500, 0, 0, 0), + (123957, 129, 151, 4500, 1500, 0, 0, 0), + (123958, 129, 151, 4500, 1500, 0, 0, 0), + (123959, 129, 151, 4500, 1500, 0, 0, 0), + (123960, 129, 151, 4500, 1500, 0, 0, 0), + (123968, 250, 250, null, null, 1, 0, 0), + (123970, 247, 250, null, null, 1, 0, 0), + (123971, 247, 250, null, null, 1, 0, 0), + (123972, 238, 250, null, null, 1, 0, 0), + (123973, 238, 250, null, null, 1, 0, 0), + (123974, 130, 130, null, null, 0, 0, 1), + (123975, 129, 130, null, null, 0, 0, 1), + (123976, 129, 130, null, null, 0, 0, 1), + (123977, 115, 130, null, null, 0, 0, 1), + (123978, 115, 130, null, null, 0, 0, 1), + (123979, 135, 155, null, null, 0, 0, 1), + (123980, 132, 155, null, null, 0, 0, 1), + (123981, 131, 154, null, null, 0, 0, 1), + (123982, 121, 153, null, null, 0, 0, 1), + (123983, 121, 153, null, null, 0, 0, 1), + (123984, 250, 250, null, null, 0, 0, 1), + (123985, 250, 250, null, null, 0, 0, 1), + (123986, 250, 250, null, null, 0, 0, 1), + (123987, 250, 250, null, null, 0, 0, 1), + (123988, 250, 250, null, null, 0, 0, 1), + (123989, 250, 250, null, null, 0, 0, 1), + (123990, 250, 250, null, null, 0, 0, 1), + (123991, 250, 250, null, null, 0, 0, 1), + (123992, 250, 250, null, null, 0, 0, 1), + (123993, 250, 250, null, null, 0, 0, 1), + (123994, 250, 250, null, null, 0, 0, 1), + (123995, 250, 250, null, null, 0, 0, 1), + (123996, 250, 250, null, null, 0, 0, 1), + (123997, 250, 250, null, null, 0, 0, 1), + (123998, 250, 250, null, null, 0, 0, 1), + (123999, 250, 250, null, null, 0, 0, 1), + (124000, 250, 250, null, null, 0, 0, 1), + (124001, 250, 250, null, null, 0, 0, 1), + (124002, 250, 250, null, null, 0, 0, 1), + (124003, 250, 250, null, null, 0, 0, 1), + (124004, 250, 250, 4000, 1300, 0, 0, 1), + (124005, 250, 250, 4000, 1300, 0, 0, 1), + (124006, 250, 250, 4000, 1300, 0, 0, 1), + (124007, 250, 250, 4000, 1300, 0, 0, 1), + (124008, 250, 250, 4000, 1300, 0, 0, 1), + (124009, 250, 250, 4000, 1300, 0, 0, 1), + (124010, 250, 250, 4000, 1300, 0, 0, 1), + (124011, 250, 250, 4000, 1300, 0, 0, 1), + (124012, 250, 250, 4000, 1300, 0, 0, 1), + (124013, 250, 250, 4000, 1300, 0, 0, 1), + (124014, 250, 250, 4000, 1300, 0, 0, 1), + (124015, 250, 250, 4000, 1300, 0, 0, 1), + (124016, 130, 130, null, null, 0, 0, 1), + (124017, 130, 130, null, null, 0, 0, 1), + (124018, 129, 130, null, null, 0, 0, 1), + (124019, 123, 125, null, null, 0, 0, 1), + (124020, 123, 125, null, null, 0, 0, 1), + (124021, 116, 121, null, null, 0, 0, 1), + (124022, 116, 121, null, null, 0, 0, 1), + (124023, 115, 120, null, null, 0, 0, 1), + (124024, 115, 120, null, null, 0, 0, 1), + (124025, 250, 250, 5100, null, 0, 0, 1), + (124026, 250, 250, 5100, null, 0, 0, 1), + (124027, 250, 250, 5100, null, 0, 0, 1), + (124028, 250, 250, 5100, null, 0, 0, 1), + (124029, 250, 250, 5100, null, 0, 0, 1), + (124030, 250, 250, 5100, null, 0, 0, 1), + (124031, 250, 250, 5100, null, 0, 0, 1), + (124032, 250, 250, 5100, null, 0, 0, 1), + (124033, 250, 250, 5100, null, 0, 0, 1), + (124034, 250, 250, 5100, null, 0, 0, 1), + (124035, 250, 250, 5100, null, 0, 0, 1), + (124036, 250, 250, 5100, null, 0, 0, 1), + (124037, 250, 250, 5100, null, 0, 0, 1), + (124038, 250, 250, 5100, null, 0, 0, 1), + (124039, 250, 250, 5100, null, 0, 0, 1), + (124040, 250, 250, 5100, null, 0, 0, 1), + (124041, 250, 250, 5100, null, 0, 0, 1), + (124042, 250, 250, 4300, 1400, 1, 0, 1), + (124043, 250, 250, 4300, 1400, 1, 0, 1), + (124044, 250, 250, 4300, 1400, 1, 0, 1), + (124045, 250, 250, 4300, 1400, 1, 0, 1), + (124046, 250, 250, 4300, 1400, 1, 0, 1), + (124047, 250, 250, 4300, 1400, 1, 0, 1), + (124048, 250, 250, 4300, 1400, 1, 0, 1), + (124049, 250, 250, 4300, 1400, 1, 0, 1), + (124050, 250, 250, 4300, 1400, 1, 0, 1), + (124051, 250, 250, 4300, 1400, 1, 0, 1), + (124052, 250, 250, 4300, 1400, 1, 0, 1), + (124064, 250, 250, 4300, 1400, 1, 0, 1), + (124065, 250, 250, 4300, 1400, 1, 0, 1), + (124066, 250, 250, 4300, 1400, 1, 0, 1), + (124067, 250, 250, 4300, 1400, 1, 0, 1), + (124068, 250, 250, 4300, 1400, 1, 0, 1), + (124069, 250, 250, 4300, 1400, 1, 0, 1), + (124070, 250, 250, null, null, 0, 0, 0), + (124071, 250, 250, null, null, 0, 0, 0), + (124072, 250, 250, null, null, 0, 0, 0), + (124073, 130, 130, null, null, 0, 0, 1), + (124074, 126, 130, null, null, 0, 0, 1), + (124075, 126, 130, null, null, 0, 0, 1), + (124076, 124, 130, null, null, 0, 0, 1), + (124077, 124, 130, null, null, 0, 0, 1), + (124078, 120, 130, null, null, 0, 0, 1), + (124079, 120, 130, null, null, 0, 0, 1), + (124080, 117, 130, null, null, 0, 0, 1), + (124081, 117, 130, null, null, 0, 0, 1), + (124082, 114, 130, null, null, 0, 0, 1), + (124083, 113, 130, null, null, 0, 0, 1), + (124084, 111, 130, null, null, 0, 0, 1), + (124085, 111, 130, null, null, 0, 0, 1), + (124086, 108, 130, null, null, 0, 0, 1), + (124087, 108, 130, null, null, 0, 0, 1), + (124088, 104, 130, null, null, 0, 0, 1), + (124089, 104, 130, null, null, 0, 0, 1), + (124090, 100, 130, null, null, 0, 0, 1), + (124091, 100, 130, null, null, 0, 0, 1), + (124092, 130, 150, null, 2300, 0, 0, 1), + (124093, 128, 146, null, 2300, 0, 0, 1), + (124094, 128, 146, null, 2300, 0, 0, 1), + (124095, 125, 139, null, 2300, 0, 0, 1), + (124096, 125, 139, null, 2300, 0, 0, 1), + (124097, 121, 132, null, 2300, 0, 0, 1), + (124098, 121, 132, null, 2300, 0, 0, 1), + (124099, 120, 130, null, 2300, 0, 0, 1), + (124100, 120, 130, null, 2300, 0, 0, 1), + (124101, 115, 130, 4600, null, 0, 0, 1), + (124102, 112, 130, 4600, null, 0, 0, 1), + (124103, 112, 130, 4600, null, 0, 0, 1), + (124104, 102, 130, 4600, null, 0, 0, 1), + (124105, 102, 130, 4600, null, 0, 0, 1), + (124106, 130, 130, null, null, 1, 0, 1), + (124107, 129, 130, null, null, 1, 0, 1), + (124108, 129, 130, null, null, 1, 0, 1), + (124109, 129, 130, null, null, 1, 0, 1), + (124110, 129, 130, null, null, 1, 0, 1), + (124111, 128, 130, null, null, 1, 0, 1), + (124112, 128, 130, null, null, 1, 0, 1), + (124113, 128, 130, null, null, 1, 0, 1), + (124114, 128, 130, null, null, 1, 0, 1), + (124115, 125, 130, null, null, 1, 0, 1), + (124116, 125, 130, null, null, 1, 0, 1), + (124117, 123, 130, null, null, 1, 0, 1), + (124118, 123, 130, null, null, 1, 0, 1), + (124119, 121, 130, null, null, 1, 0, 1), + (124120, 121, 130, null, null, 1, 0, 1), + (124121, 129, 151, null, 2400, 1, 0, 1), + (124122, 126, 151, null, 2400, 1, 0, 1), + (124123, 126, 151, null, 2400, 1, 0, 1), + (124124, 123, 151, null, 2400, 1, 0, 1), + (124125, 123, 151, null, 2400, 1, 0, 1), + (124126, 120, 151, null, 2400, 1, 0, 1), + (124127, 120, 151, null, 2400, 1, 0, 1), + (124128, 117, 151, null, 2400, 1, 0, 1), + (124129, 117, 151, null, 2400, 1, 0, 1), + (124130, 115, 151, null, 2400, 1, 0, 1), + (124131, 114, 150, null, 2400, 1, 0, 1), + (124132, 112, 150, null, 2400, 1, 0, 1), + (124133, 112, 150, null, 2400, 1, 0, 1), + (124134, 100, 150, null, 2400, 1, 0, 1), + (124135, 100, 150, null, 2400, 1, 0, 1), + (124136, 130, 130, null, null, 0, 0, 1), + (124137, 130, 130, null, null, 0, 0, 1), + (124138, 130, 130, null, null, 0, 0, 1), + (124139, 130, 130, null, null, 0, 0, 1), + (124140, 130, 130, null, null, 0, 0, 1), + (124141, 130, 130, null, null, 0, 0, 1), + (124142, 130, 130, null, null, 0, 0, 1), + (124143, 129, 151, null, null, 0, 0, 1), + (124144, 126, 151, null, null, 0, 0, 1), + (124145, 126, 151, null, null, 0, 0, 1), + (124146, 126, 151, null, null, 0, 0, 1), + (124147, 126, 151, null, null, 0, 0, 1), + (124148, 125, 151, null, null, 0, 0, 1), + (124149, 125, 151, null, null, 0, 0, 1), + (124150, 124, 151, null, null, 0, 0, 1), + (124151, 124, 151, null, null, 0, 0, 1), + (124152, 124, 151, null, null, 0, 0, 1), + (124153, 124, 151, null, null, 0, 0, 1), + (124154, 123, 151, null, null, 0, 0, 1), + (124155, 123, 151, null, null, 0, 0, 1), + (124156, 122, 151, null, null, 0, 0, 1), + (124157, 122, 151, null, null, 0, 0, 1), + (124158, 121, 151, null, null, 0, 0, 1), + (124159, 121, 151, null, null, 0, 0, 1), + (124160, 101, 150, null, null, 0, 0, 1), + (124161, 101, 150, null, null, 0, 0, 1), + (124162, 135, 155, null, null, 0, 0, 1), + (124163, 133, 155, null, null, 0, 0, 1), + (124164, 133, 155, null, null, 0, 0, 1), + (124165, 128, 154, null, null, 0, 0, 1), + (124166, 128, 154, null, null, 0, 0, 1), + (124167, 125, 154, null, null, 0, 0, 1), + (124168, 124, 153, null, null, 0, 0, 1), + (124169, 121, 153, null, null, 0, 0, 1), + (124170, 121, 153, null, null, 0, 0, 1), + (124171, 118, 153, null, null, 0, 0, 1), + (124172, 117, 152, null, null, 0, 0, 1), + (124173, 114, 152, null, null, 0, 0, 1), + (124174, 114, 152, null, null, 0, 0, 1), + (124175, 111, 152, null, null, 0, 0, 1), + (124176, 110, 151, null, null, 0, 0, 1), + (124177, 107, 151, null, null, 0, 0, 1), + (124178, 107, 151, null, null, 0, 0, 1), + (124179, 106, 151, null, null, 0, 0, 1), + (124180, 106, 151, null, null, 0, 0, 1), + (124181, 100, 150, null, null, 0, 0, 1), + (124182, 100, 150, null, null, 0, 0, 1), + (124183, 250, 250, null, null, 0, 0, 1), + (124184, 250, 250, null, null, 0, 0, 1), + (124185, 250, 250, null, null, 0, 0, 1), + (124186, 250, 250, null, null, 0, 0, 1), + (124187, 250, 250, null, null, 0, 0, 1), + (124188, 250, 250, null, null, 0, 0, 1), + (124189, 250, 250, null, null, 0, 0, 1), + (124190, 250, 250, null, null, 0, 0, 1), + (124191, 250, 250, null, null, 0, 0, 1), + (124192, 250, 250, null, null, 0, 0, 1), + (124193, 250, 250, null, null, 0, 0, 1), + (124194, 250, 250, null, null, 0, 0, 1), + (124195, 250, 250, null, null, 0, 0, 1), + (124196, 250, 250, null, null, 0, 0, 1), + (124197, 250, 250, null, null, 0, 0, 1), + (124198, 130, 130, null, null, 0, 0, 1), + (124199, 128, 130, null, null, 0, 0, 1), + (124200, 128, 130, null, null, 0, 0, 1), + (124201, 127, 130, null, null, 0, 0, 1), + (124202, 127, 130, null, null, 0, 0, 1), + (124203, 126, 130, null, null, 0, 0, 1), + (124204, 126, 130, null, null, 0, 0, 1), + (124205, 125, 130, null, null, 0, 0, 1), + (124206, 124, 130, null, null, 0, 0, 1), + (124207, 123, 130, null, null, 0, 0, 1), + (124208, 123, 130, null, null, 0, 0, 1), + (124209, 122, 130, null, null, 0, 0, 1), + (124210, 122, 130, null, null, 0, 0, 1), + (124211, 121, 130, null, null, 0, 0, 1), + (124212, 121, 130, null, null, 0, 0, 1), + (124213, 121, 130, null, null, 0, 0, 1), + (124214, 121, 130, null, null, 0, 0, 1), + (124215, 120, 130, null, null, 0, 0, 1), + (124216, 120, 130, null, null, 0, 0, 1), + (124217, 133, 151, null, null, 0, 0, 1), + (124218, 132, 150, null, null, 0, 0, 1), + (124219, 132, 150, null, null, 0, 0, 1), + (124220, 126, 144, null, null, 0, 0, 1), + (124221, 126, 144, null, null, 0, 0, 1), + (124222, 122, 140, null, null, 0, 0, 1), + (124223, 122, 140, null, null, 0, 0, 1), + (124224, 118, 137, null, null, 0, 0, 1), + (124225, 118, 137, null, null, 0, 0, 1), + (124226, 109, 129, null, null, 0, 0, 1), + (124227, 109, 129, null, null, 0, 0, 1), + (124228, 100, 120, null, null, 0, 0, 1), + (124229, 100, 120, null, null, 0, 0, 1), + (124230, 250, 250, null, null, 0, 0, 0), + (124231, 249, 250, null, null, 0, 0, 0), + (124232, 248, 250, null, null, 0, 0, 0), + (124233, 247, 250, null, null, 0, 0, 0), + (124234, 247, 250, null, null, 0, 0, 0), + (124235, 244, 250, null, null, 0, 0, 0), + (124236, 243, 250, null, null, 0, 0, 0), + (124237, 240, 250, null, null, 0, 0, 0), + (124238, 240, 250, null, null, 0, 0, 0), + (124239, 230, 250, null, null, 0, 0, 0), + (124240, 230, 250, null, null, 0, 0, 0), + (124241, 250, 250, null, null, 1, 0, 0), + (124242, 246, 246, null, null, 1, 0, 0), + (124243, 246, 246, null, null, 1, 0, 0), + (124244, 243, 243, null, null, 1, 0, 0), + (124245, 243, 243, null, null, 1, 0, 0), + (124246, 240, 240, null, null, 1, 0, 0), + (124247, 240, 240, null, null, 1, 0, 0), + (124248, 237, 237, null, null, 1, 0, 0), + (124249, 237, 237, null, null, 1, 0, 0), + (124250, 232, 232, null, null, 1, 0, 0), + (124251, 232, 232, null, null, 1, 0, 0), + (124252, 228, 228, null, null, 1, 0, 0), + (124253, 228, 228, null, null, 1, 0, 0), + (124254, 220, 220, null, null, 1, 0, 0), + (124255, 220, 220, null, null, 1, 0, 0), + (124256, 250, 250, null, null, 0, 0, 0), + (124257, 250, 250, null, null, 0, 0, 0), + (124258, 250, 250, null, null, 0, 0, 0), + (124259, 243, 250, null, null, 0, 0, 0), + (124260, 243, 250, null, null, 0, 0, 0), + (124261, 232, 250, null, null, 0, 0, 0), + (124262, 232, 250, null, null, 0, 0, 0), + (124263, 250, 250, null, 2200, 0, 0, 0), + (124264, 246, 249, null, 2200, 0, 0, 0), + (124265, 246, 249, null, 2200, 0, 0, 0), + (124266, 237, 246, null, 2200, 0, 0, 0), + (124267, 237, 246, null, 2200, 0, 0, 0), + (124268, 233, 244, null, 2200, 0, 0, 0), + (124269, 233, 244, null, 2200, 0, 0, 0), + (124270, 230, 243, null, 2200, 0, 0, 0), + (124271, 230, 243, null, 2200, 0, 0, 0), + (124272, 225, 242, null, 2200, 0, 0, 0), + (124273, 225, 242, null, 2200, 0, 0, 0), + (124274, 222, 241, null, 2200, 0, 0, 0), + (124275, 222, 241, null, 2200, 0, 0, 0), + (124276, 250, 250, null, null, 1, 0, 0), + (124277, 246, 250, null, null, 1, 0, 0), + (124278, 246, 250, null, null, 1, 0, 0), + (124279, 234, 250, null, null, 1, 0, 0), + (124280, 233, 250, null, null, 1, 0, 0), + (124281, 219, 250, null, null, 1, 0, 0), + (124282, 218, 250, null, null, 1, 0, 0), + (124283, 213, 250, null, null, 1, 0, 0), + (124284, 213, 250, null, null, 1, 0, 0), + (124285, 130, 150, null, null, 0, 0, 0), + (124286, 126, 150, null, null, 0, 0, 0), + (124287, 126, 150, null, null, 0, 0, 0), + (124288, 123, 150, null, null, 0, 0, 0), + (124289, 123, 150, null, null, 0, 0, 0), + (124290, 121, 150, null, null, 0, 0, 0), + (124291, 121, 150, null, null, 0, 0, 0), + (124292, 118, 150, null, null, 0, 0, 0), + (124293, 118, 150, null, null, 0, 0, 0), + (124294, 115, 150, null, null, 0, 0, 0), + (124295, 115, 150, null, null, 0, 0, 0), + (124296, 107, 150, null, null, 0, 0, 0), + (124297, 107, 150, null, null, 0, 0, 0), + (124298, 104, 150, null, null, 0, 0, 0), + (124299, 104, 150, null, null, 0, 0, 0), + (124300, 102, 150, null, null, 0, 0, 0), + (124301, 102, 150, null, null, 0, 0, 0), + (124302, 250, 250, null, null, 1, 0, 0), + (124303, 249, 250, null, null, 1, 0, 0), + (124304, 249, 250, null, null, 1, 0, 0), + (124305, 248, 250, null, null, 1, 0, 0), + (124306, 248, 250, null, null, 1, 0, 0), + (124307, 246, 250, null, null, 1, 0, 0), + (124308, 246, 250, null, null, 1, 0, 0), + (124309, 244, 250, null, null, 1, 0, 0), + (124310, 244, 250, null, null, 1, 0, 0), + (124311, 240, 250, null, null, 1, 0, 0), + (124312, 240, 250, null, null, 1, 0, 0), + (124313, 129, 151, null, null, 1, 0, 1), + (124314, 124, 151, null, null, 1, 0, 1), + (124315, 124, 151, null, null, 1, 0, 1), + (124316, 122, 151, null, null, 1, 0, 1), + (124317, 122, 151, null, null, 1, 0, 1), + (124318, 121, 151, null, null, 1, 0, 1), + (124319, 121, 151, null, null, 1, 0, 1), + (124320, 118, 151, null, null, 1, 0, 1), + (124321, 118, 151, null, null, 1, 0, 1), + (124322, 109, 150, null, null, 1, 0, 1), + (124323, 109, 150, null, null, 1, 0, 1), + (124324, 104, 150, null, null, 1, 0, 1), + (124325, 104, 150, null, null, 1, 0, 1), + (124326, 100, 150, null, null, 1, 0, 1), + (124327, 100, 150, null, null, 1, 0, 1), + (124328, 130, 130, null, null, 0, 0, 1), + (124329, 129, 130, null, null, 0, 0, 1), + (124330, 129, 130, null, null, 0, 0, 1), + (124331, 128, 130, null, null, 0, 0, 1), + (124332, 128, 130, null, null, 0, 0, 1), + (124333, 128, 130, null, null, 0, 0, 1), + (124334, 128, 130, null, null, 0, 0, 1), + (124335, 127, 130, null, null, 0, 0, 1), + (124336, 127, 130, null, null, 0, 0, 1), + (124337, 126, 130, null, null, 0, 0, 1), + (124338, 126, 130, null, null, 0, 0, 1), + (124339, 123, 130, null, null, 0, 0, 1), + (124340, 123, 130, null, null, 0, 0, 1), + (124341, 245, 250, null, null, 0, 0, 1), + (124342, 245, 249, null, null, 0, 0, 1), + (124343, 245, 249, null, null, 0, 0, 1), + (124344, 245, 248, null, null, 0, 0, 1), + (124345, 245, 248, null, null, 0, 0, 1), + (124346, 245, 246, null, null, 0, 0, 1), + (124347, 245, 246, null, null, 0, 0, 1), + (124348, 129, 170, null, null, 0, 0, 1), + (124349, 126, 168, null, null, 0, 0, 1), + (124350, 126, 168, null, null, 0, 0, 1), + (124351, 122, 165, null, null, 0, 0, 1), + (124352, 122, 165, null, null, 0, 0, 1), + (124353, 113, 159, null, null, 0, 0, 1), + (124354, 112, 159, null, null, 0, 0, 1), + (124355, 103, 152, null, null, 0, 0, 1), + (124356, 103, 152, null, null, 0, 0, 1), + (124357, 240, 250, null, null, 0, 0, 1), + (124358, 237, 250, null, null, 0, 0, 1), + (124359, 237, 250, null, null, 0, 0, 1), + (124360, 227, 250, null, null, 0, 0, 1), + (124361, 227, 250, null, null, 0, 0, 1), + (124362, 218, 250, null, null, 0, 0, 1), + (124363, 218, 250, null, null, 0, 0, 1), + (124364, 250, 250, null, 2500, 0, 0, 1), + (124365, 250, 250, null, 2500, 0, 0, 1), + (124366, 250, 250, null, 2500, 0, 0, 1), + (124367, 250, 250, null, 2500, 0, 0, 1), + (124368, 250, 250, null, 2500, 0, 0, 1), + (124369, 130, 130, 8000, 2700, 0, 0, 1), + (124370, 130, 130, 8000, 2700, 0, 0, 1), + (124371, 130, 130, 8000, 2700, 0, 0, 1), + (124372, 140, 130, 6000, 3000, 0, 0, 1), + (124373, 139, 130, 6000, 3000, 0, 0, 1), + (124374, 139, 130, 6000, 3000, 0, 0, 1), + (124375, 137, 130, 6000, 3000, 0, 0, 1), + (124376, 137, 130, 6000, 3000, 0, 0, 1), + (124377, 136, 130, 6000, 3000, 0, 0, 1), + (124378, 136, 130, 6000, 3000, 0, 0, 1), + (124379, 134, 130, 6000, 3000, 0, 0, 1), + (124380, 134, 130, 6000, 3000, 0, 0, 1), + (124381, 131, 130, 6000, 3000, 0, 0, 1), + (124382, 131, 130, 6000, 3000, 0, 0, 1), + (124383, 220, 251, null, 2800, 0, 0, 1), + (124384, 204, 251, null, 2800, 0, 0, 1), + (124385, 204, 251, null, 2800, 0, 0, 1), + (124386, 135, 151, 8100, 2700, 0, 0, 1), + (124387, 130, 151, 8100, 2700, 0, 0, 1), + (124388, 130, 151, 8100, 2700, 0, 0, 1), + (124389, 123, 151, 8100, 2700, 0, 0, 1), + (124390, 123, 151, 8100, 2700, 0, 0, 1), + (124391, 240, 250, 7800, 2600, 0, 0, 0), + (124392, 234, 250, 7800, 2600, 0, 0, 0), + (124393, 234, 250, 7800, 2600, 0, 0, 0), + (124394, 228, 250, 7800, 2600, 0, 0, 0), + (124395, 228, 250, 7800, 2600, 0, 0, 0), + (124396, 222, 250, 7800, 2600, 0, 0, 0), + (124397, 222, 250, 7800, 2600, 0, 0, 0), + (124398, 206, 250, 7800, 2600, 0, 0, 0), + (124399, 206, 250, 7800, 2600, 0, 0, 0), + (124400, 100, 100, 6400, 2100, 1, 0, 1), + (124401, 98, 98, 6400, 2100, 1, 0, 1), + (124402, 98, 98, 6400, 2100, 1, 0, 1), + (124403, 96, 96, 6400, 2100, 1, 0, 1), + (124404, 96, 96, 6400, 2100, 1, 0, 1), + (124405, 94, 94, 6400, 2100, 1, 0, 1), + (124406, 94, 94, 6400, 2100, 1, 0, 1), + (124407, 150, 130, 8200, null, 0, 0, 1), + (124408, 150, 129, 8200, null, 0, 0, 1), + (124409, 150, 128, 8200, null, 0, 0, 1), + (124410, 150, 127, 8200, null, 0, 0, 1), + (124411, 150, 127, 8200, null, 0, 0, 1), + (124412, 150, 121, 8200, null, 0, 0, 1), + (124413, 150, 120, 8200, null, 0, 0, 1), + (124414, 150, 119, 8200, null, 0, 0, 1), + (124415, 150, 119, 8200, null, 0, 0, 1), + (124416, 150, 111, 8200, null, 0, 0, 1), + (124417, 150, 111, 8200, null, 0, 0, 1), + (124418, 150, 103, 8200, null, 0, 0, 1), + (124419, 150, 102, 8200, null, 0, 0, 1), + (124420, 251, 251, 5900, 2000, 0, 0, 0), + (124421, 248, 250, 5900, 2000, 0, 0, 0), + (124422, 248, 250, 5900, 2000, 0, 0, 0), + (124423, 246, 250, 5900, 2000, 0, 0, 0), + (124424, 246, 250, 5900, 2000, 0, 0, 0), + (124425, 241, 249, 5900, 2000, 0, 0, 0), + (124426, 240, 249, 5900, 2000, 0, 0, 0), + (124427, 236, 248, 5900, 2000, 0, 0, 0), + (124428, 235, 248, 5900, 2000, 0, 0, 0), + (124429, 213, 243, 5900, 2000, 0, 0, 0), + (124430, 212, 243, 5900, 2000, 0, 0, 0), + (124431, 132, 154, null, 2700, 0, 0, 1), + (124432, 128, 153, null, 2700, 0, 0, 1), + (124433, 128, 153, null, 2700, 0, 0, 1), + (124434, 125, 153, null, 2700, 0, 0, 1), + (124435, 125, 153, null, 2700, 0, 0, 1), + (124436, 120, 152, null, 2700, 0, 0, 1), + (124437, 120, 152, null, 2700, 0, 0, 1), + (124438, 115, 152, null, 2700, 0, 0, 1), + (124439, 115, 152, null, 2700, 0, 0, 1), + (124440, 108, 151, null, 2700, 0, 0, 1), + (124441, 108, 151, null, 2700, 0, 0, 1), + (124442, 104, 150, null, 2700, 0, 0, 1), + (124443, 104, 150, null, 2700, 0, 0, 1), + (124444, 25, 70, null, 1800, 0, 0, 1), + (124445, 25, 70, null, 1800, 0, 0, 1), + (124446, 25, 70, null, 1800, 0, 0, 1), + (124447, 25, 70, null, 1800, 0, 0, 1), + (124448, 25, 70, null, 1800, 0, 0, 1), + (124449, 25, 70, null, 1800, 0, 0, 1), + (124450, 25, 70, null, 1800, 0, 0, 1), + (124451, 25, 70, null, 1800, 0, 0, 1), + (124452, 25, 70, null, 1800, 0, 0, 1), + (124453, 244, 250, 7500, 2500, 0, 0, 0), + (124454, 243, 250, 7500, 2500, 0, 0, 0), + (124455, 243, 250, 7500, 2500, 0, 0, 0), + (124456, 241, 250, 7500, 2500, 0, 0, 0), + (124457, 241, 250, 7500, 2500, 0, 0, 0), + (124458, 400, 200, null, 1000, 0, 0, 0), + (124459, 400, 200, null, 1000, 0, 0, 0), + (124460, 400, 200, null, 1000, 0, 0, 0), + (124461, 400, 200, null, 1000, 0, 0, 0), + (124462, 400, 200, null, 1000, 0, 0, 0), + (124463, 400, 200, null, 1000, 0, 0, 0), + (124464, 400, 200, null, 1000, 0, 0, 0), + (124465, 129, 151, 8300, 2800, 0, 0, 0), + (124466, 126, 151, 8300, 2800, 0, 0, 0), + (124467, 126, 151, 8300, 2800, 0, 0, 0), + (124468, 123, 151, 8300, 2800, 0, 0, 0), + (124469, 123, 151, 8300, 2800, 0, 0, 0), + (124470, 120, 151, 8300, 2800, 0, 0, 0), + (124471, 120, 151, 8300, 2800, 0, 0, 0), + (124472, 117, 151, 8300, 2800, 0, 0, 0), + (124473, 117, 151, 8300, 2800, 0, 0, 0), + (124474, 115, 151, 8300, 2800, 0, 0, 0), + (124475, 114, 150, 8300, 2800, 0, 0, 0), + (124476, 110, 150, 8300, 2800, 0, 0, 0), + (124477, 110, 150, 8300, 2800, 0, 0, 0), + (124478, 107, 150, 8300, 2800, 0, 0, 0), + (124479, 107, 150, 8300, 2800, 0, 0, 0), + (124480, 103, 150, 8300, 2800, 0, 0, 0), + (124481, 103, 150, 8300, 2800, 0, 0, 0), + (124482, 100, 150, 8300, 2800, 0, 0, 0), + (124483, 100, 150, 8300, 2800, 0, 0, 0), + (124484, 129, 151, 7300, 2400, 0, 0, 0), + (124485, 115, 151, 7300, 2400, 0, 0, 0), + (124486, 115, 151, 7300, 2400, 0, 0, 0), + (124487, 141, 130, 6300, 2100, 1, 0, 0), + (124488, 139, 130, 6300, 2100, 1, 0, 0), + (124489, 139, 130, 6300, 2100, 1, 0, 0), + (124490, 137, 130, 6300, 2100, 1, 0, 0), + (124491, 137, 130, 6300, 2100, 1, 0, 0), + (124492, 134, 130, 6300, 2100, 1, 0, 0), + (124493, 134, 130, 6300, 2100, 1, 0, 0), + (124494, 141, 130, 6500, 2200, 1, 0, 0), + (124495, 139, 130, 6500, 2200, 1, 0, 0), + (124496, 139, 130, 6500, 2200, 1, 0, 0), + (124497, 138, 130, 6500, 2200, 1, 0, 0), + (124498, 138, 130, 6500, 2200, 1, 0, 0), + (124499, 137, 130, 6500, 2200, 1, 0, 0), + (124500, 137, 130, 6500, 2200, 1, 0, 0), + (124501, 134, 130, 6500, 2200, 1, 0, 0), + (124502, 134, 130, 6500, 2200, 1, 0, 0), + (124503, 249, 250, 7600, 2500, 0, 0, 0), + (124504, 249, 250, 7600, 2500, 0, 0, 0), + (124505, 249, 250, 7600, 2500, 0, 0, 0), + (124506, 248, 250, 7600, 2500, 0, 0, 0), + (124507, 248, 250, 7600, 2500, 0, 0, 0), + (124508, 242, 250, 7600, 2500, 0, 0, 0), + (124509, 241, 250, 7600, 2500, 0, 0, 0), + (124510, 160, 153, 7800, 2600, 0, 0, 0), + (124511, 154, 153, 7800, 2600, 0, 0, 0), + (124512, 154, 153, 7800, 2600, 0, 0, 0), + (124513, 148, 153, 7800, 2600, 0, 0, 0), + (124514, 148, 153, 7800, 2600, 0, 0, 0), + (124515, 142, 153, 7800, 2600, 0, 0, 0), + (124516, 142, 153, 7800, 2600, 0, 0, 0), + (124517, 136, 153, 7800, 2600, 0, 0, 0), + (124518, 136, 153, 7800, 2600, 0, 0, 0), + (124519, 130, 153, 7800, 2600, 0, 0, 0), + (124520, 130, 153, 7800, 2600, 0, 0, 0), + (124521, 124, 153, 7800, 2600, 0, 0, 0), + (124522, 124, 153, 7800, 2600, 0, 0, 0), + (124523, 118, 153, 7800, 2600, 0, 0, 0), + (124524, 118, 153, 7800, 2600, 0, 0, 0), + (124525, 112, 153, 7800, 2600, 0, 0, 0), + (124526, 112, 153, 7800, 2600, 0, 0, 0), + (124527, 100, 153, 7800, 2600, 0, 0, 0), + (124528, 100, 153, 7800, 2600, 0, 0, 0), + (124529, 120, 130, 6400, 2100, 0, 0, 0), + (124530, 120, 130, 6400, 2100, 0, 0, 0), + (124531, 120, 130, 6400, 2100, 0, 0, 0), + (124532, 120, 130, 6400, 2100, 0, 0, 0), + (124533, 120, 130, 6400, 2100, 0, 0, 0), + (124534, 100, 82, 7600, 2500, 0, 0, 0), + (124535, 100, 80, 7600, 2500, 0, 0, 0), + (124536, 100, 80, 7600, 2500, 0, 0, 0), + (124537, 100, 79, 7600, 2500, 0, 0, 0), + (124538, 100, 78, 7600, 2500, 0, 0, 0), + (124539, 100, 76, 7600, 2500, 0, 0, 0), + (124540, 100, 76, 7600, 2500, 0, 0, 0), + (124541, 100, 74, 7600, 2500, 0, 0, 0), + (124542, 100, 74, 7600, 2500, 0, 0, 0), + (124543, 100, 71, 7600, 2500, 0, 0, 0), + (124544, 100, 70, 7600, 2500, 0, 0, 0), + (124545, 99, 99, 7400, 2500, 0, 0, 0), + (124546, 99, 99, 7400, 2500, 0, 0, 0), + (124547, 99, 99, 7400, 2500, 0, 0, 0), + (124548, 100, 115, 7400, 2500, 0, 0, 0), + (124549, 100, 115, 7400, 2500, 0, 0, 0), + (124550, 100, 115, 7400, 2500, 0, 0, 0), + (124551, 100, 115, 7400, 2500, 0, 0, 0), + (124552, 100, 115, 7400, 2500, 0, 0, 0), + (124553, 100, 115, 7400, 2500, 0, 0, 0), + (124554, 100, 115, 7400, 2500, 0, 0, 0), + (124555, 100, 115, 7400, 2500, 0, 0, 0), + (124556, 100, 115, 7400, 2500, 0, 0, 0), + (124557, 110, 130, 6300, 2100, 1, 0, 0), + (124558, 83, 130, 6300, 2100, 1, 0, 0), + (124559, 83, 130, 6300, 2100, 1, 0, 0), + (124560, 100, 145, 8200, 2700, 0, 0, 0), + (124561, 100, 141, 8200, 2700, 0, 0, 0), + (124562, 100, 140, 8200, 2700, 0, 0, 0), + (124563, 100, 136, 8200, 2700, 0, 0, 0), + (124564, 100, 136, 8200, 2700, 0, 0, 0), + (124565, 100, 132, 8200, 2700, 0, 0, 0), + (124566, 100, 131, 8200, 2700, 0, 0, 0), + (124567, 100, 127, 8200, 2700, 0, 0, 0), + (124568, 100, 127, 8200, 2700, 0, 0, 0), + (124569, 100, 123, 8200, 2700, 0, 0, 0), + (124570, 100, 122, 8200, 2700, 0, 0, 0), + (124571, 100, 118, 8200, 2700, 0, 0, 0), + (124572, 100, 118, 8200, 2700, 0, 0, 0), + (124573, 100, 114, 8200, 2700, 0, 0, 0), + (124574, 100, 113, 8200, 2700, 0, 0, 0), + (124575, 100, 109, 8200, 2700, 0, 0, 0), + (124576, 100, 109, 8200, 2700, 0, 0, 0), + (124577, 100, 100, 8200, 2700, 0, 0, 0), + (124578, 100, 100, 8200, 2700, 0, 0, 0), + (124579, 200, 200, 7300, 2400, 1, 0, 0), + (124580, 193, 193, 7300, 2400, 1, 0, 0), + (124581, 192, 192, 7300, 2400, 1, 0, 0), + (124582, 185, 185, 7300, 2400, 1, 0, 0), + (124583, 185, 185, 7300, 2400, 1, 0, 0), + (124584, 178, 178, 7300, 2400, 1, 0, 0), + (124585, 177, 177, 7300, 2400, 1, 0, 0), + (124586, 170, 170, 7300, 2400, 1, 0, 0), + (124587, 170, 170, 7300, 2400, 1, 0, 0), + (124588, 163, 163, 7300, 2400, 1, 0, 0), + (124589, 162, 162, 7300, 2400, 1, 0, 0), + (124590, 155, 155, 7300, 2400, 1, 0, 0), + (124591, 155, 155, 7300, 2400, 1, 0, 0), + (124592, 148, 148, 7300, 2400, 1, 0, 0), + (124593, 147, 147, 7300, 2400, 1, 0, 0), + (124594, 140, 140, 7300, 2400, 1, 0, 0), + (124595, 140, 140, 7300, 2400, 1, 0, 0), + (124596, 125, 125, 7300, 2400, 1, 0, 0), + (124597, 125, 125, 7300, 2400, 1, 0, 0), + (124598, 180, 200, 8400, 2800, 0, 0, 0), + (124599, 172, 193, 8400, 2800, 0, 0, 0), + (124600, 172, 192, 8400, 2800, 0, 0, 0), + (124601, 168, 189, 8400, 2800, 0, 0, 0), + (124602, 168, 189, 8400, 2800, 0, 0, 0), + (124603, 164, 185, 8400, 2800, 0, 0, 0), + (124604, 164, 185, 8400, 2800, 0, 0, 0), + (124605, 160, 182, 8400, 2800, 0, 0, 0), + (124606, 160, 181, 8400, 2800, 0, 0, 0), + (124607, 140, 163, 8400, 2800, 0, 0, 0), + (124608, 140, 162, 8400, 2800, 0, 0, 0), + (124609, 124, 148, 8400, 2800, 0, 0, 0), + (124610, 124, 147, 8400, 2800, 0, 0, 0), + (124611, 116, 140, 8400, 2800, 0, 0, 0), + (124612, 116, 140, 8400, 2800, 0, 0, 0), + (124613, 108, 133, 8400, 2800, 0, 0, 0), + (124614, 108, 132, 8400, 2800, 0, 0, 0), + (124615, 100, 125, 8400, 2800, 0, 0, 0), + (124616, 100, 125, 8400, 2800, 0, 0, 0), + (124617, 250, 400, 8100, 2700, 0, 0, 0), + (124618, 240, 371, 8100, 2700, 0, 0, 0), + (124619, 240, 371, 8100, 2700, 0, 0, 0), + (124620, 220, 311, 8100, 2700, 0, 0, 0), + (124621, 220, 310, 8100, 2700, 0, 0, 0), + (124622, 200, 251, 8100, 2700, 0, 0, 0), + (124623, 200, 250, 8100, 2700, 0, 0, 0), + (124624, 130, 120, 8100, 2700, 0, 0, 0), + (124625, 127, 120, 8100, 2700, 0, 0, 0), + (124626, 127, 120, 8100, 2700, 0, 0, 0), + (124627, 124, 120, 8100, 2700, 0, 0, 0), + (124628, 124, 120, 8100, 2700, 0, 0, 0), + (124629, 121, 120, 8100, 2700, 0, 0, 0), + (124630, 121, 120, 8100, 2700, 0, 0, 0), + (124631, 120, 120, 8100, 2700, 0, 0, 0), + (124632, 119, 120, 8100, 2700, 0, 0, 0), + (124633, 115, 120, 8100, 2700, 0, 0, 0), + (124634, 115, 120, 8100, 2700, 0, 0, 0), + (124635, 111, 120, 8100, 2700, 0, 0, 0), + (124636, 110, 120, 8100, 2700, 0, 0, 0), + (124637, 109, 120, 8100, 2700, 0, 0, 0), + (124638, 109, 120, 8100, 2700, 0, 0, 0), + (124639, 103, 120, 8100, 2700, 0, 0, 0), + (124640, 103, 120, 8100, 2700, 0, 0, 0), + (124641, 100, 120, 8100, 2700, 0, 0, 0), + (124642, 100, 120, 8100, 2700, 0, 0, 0), + (124643, 110, 122, 8400, 2800, 0, 0, 0), + (124644, 109, 122, 8400, 2800, 0, 0, 0), + (124645, 109, 122, 8400, 2800, 0, 0, 0), + (124646, 108, 123, 8400, 2800, 0, 0, 0), + (124647, 108, 123, 8400, 2800, 0, 0, 0), + (124648, 107, 123, 8400, 2800, 0, 0, 0), + (124649, 107, 123, 8400, 2800, 0, 0, 0), + (124650, 106, 123, 8400, 2800, 0, 0, 0), + (124651, 106, 123, 8400, 2800, 0, 0, 0), + (124652, 105, 123, 8400, 2800, 0, 0, 0), + (124653, 105, 124, 8400, 2800, 0, 0, 0), + (124654, 104, 124, 8400, 2800, 0, 0, 0), + (124655, 104, 124, 8400, 2800, 0, 0, 0), + (124656, 103, 124, 8400, 2800, 0, 0, 0), + (124657, 103, 124, 8400, 2800, 0, 0, 0), + (124658, 102, 124, 8400, 2800, 0, 0, 0), + (124659, 102, 124, 8400, 2800, 0, 0, 0), + (124660, 100, 125, 8400, 2800, 0, 0, 0), + (124661, 100, 125, 8400, 2800, 0, 0, 0), + (124662, 129, 160, 7500, 2500, 0, 0, 0), + (124663, 126, 159, 7500, 2500, 0, 0, 0), + (124664, 126, 159, 7500, 2500, 0, 0, 0), + (124665, 123, 158, 7500, 2500, 0, 0, 0), + (124666, 123, 158, 7500, 2500, 0, 0, 0), + (124667, 120, 157, 7500, 2500, 0, 0, 0), + (124668, 120, 157, 7500, 2500, 0, 0, 0), + (124669, 117, 156, 7500, 2500, 0, 0, 0), + (124670, 117, 156, 7500, 2500, 0, 0, 0), + (124671, 115, 155, 7500, 2500, 0, 0, 0), + (124672, 114, 155, 7500, 2500, 0, 0, 0), + (124673, 112, 154, 7500, 2500, 0, 0, 0), + (124674, 112, 154, 7500, 2500, 0, 0, 0), + (124675, 109, 153, 7500, 2500, 0, 0, 0), + (124676, 109, 153, 7500, 2500, 0, 0, 0), + (124677, 106, 152, 7500, 2500, 0, 0, 0), + (124678, 106, 152, 7500, 2500, 0, 0, 0), + (124679, 100, 150, 7500, 2500, 0, 0, 0), + (124680, 100, 150, 7500, 2500, 0, 0, 0), + (124681, 100, 125, 6800, 2300, 0, 0, 1), + (124682, 100, 125, 6800, 2300, 0, 0, 1), + (124683, 100, 125, 6800, 2300, 0, 0, 1), + (124684, 100, 125, 6800, 2300, 0, 0, 1), + (124685, 100, 125, 6800, 2300, 0, 0, 1), + (124686, 100, 125, 6800, 2300, 0, 0, 1), + (124687, 100, 125, 6800, 2300, 0, 0, 1), + (124688, 100, 125, 6800, 2300, 0, 0, 1), + (124689, 100, 125, 6800, 2300, 0, 0, 1), + (124690, 100, 125, 6800, 2300, 0, 0, 1), + (124691, 100, 125, 6800, 2300, 0, 0, 1), + (124692, 100, 125, 6800, 2300, 0, 0, 1), + (124693, 100, 125, 6800, 2300, 0, 0, 1), + (124694, 100, 125, 6800, 2300, 0, 0, 1), + (124695, 100, 125, 6800, 2300, 0, 0, 1), + (124696, 100, 125, 6800, 2300, 0, 0, 1), + (124697, 100, 125, 6800, 2300, 0, 0, 1), + (124698, 100, 125, 6800, 2300, 0, 0, 1), + (124699, 100, 125, 6800, 2300, 0, 0, 1), + (124700, 129, 250, 7300, 2400, 0, 0, 0), + (124701, 127, 243, 7300, 2400, 0, 0, 0), + (124702, 127, 242, 7300, 2400, 0, 0, 0), + (124703, 126, 241, 7300, 2400, 0, 0, 0), + (124704, 126, 240, 7300, 2400, 0, 0, 0), + (124705, 122, 227, 7300, 2400, 0, 0, 0), + (124706, 122, 226, 7300, 2400, 0, 0, 0), + (124707, 121, 221, 7300, 2400, 0, 0, 0), + (124708, 120, 220, 7300, 2400, 0, 0, 0), + (124709, 100, 151, 7300, 2400, 0, 0, 0), + (124710, 100, 150, 7300, 2400, 0, 0, 0), + (124711, 90, 45, 8400, 2800, 0, 0, 0), + (124712, 90, 45, 8400, 2800, 0, 0, 0), + (124713, 90, 45, 8400, 2800, 0, 0, 0), + (124714, 90, 45, 8400, 2800, 0, 0, 0), + (124715, 90, 45, 8400, 2800, 0, 0, 0), + (124716, 90, 45, 8400, 2800, 0, 0, 0), + (124717, 90, 45, 8400, 2800, 0, 0, 0), + (124718, 90, 45, 8400, 2800, 0, 0, 0), + (124719, 90, 45, 8400, 2800, 0, 0, 0), + (124720, 90, 45, 8400, 2800, 0, 0, 0), + (124721, 90, 45, 8400, 2800, 0, 0, 0), + (124722, 90, 45, 8400, 2800, 0, 0, 0), + (124723, 90, 45, 8400, 2800, 0, 0, 0), + (124724, 90, 45, 8400, 2800, 0, 0, 0), + (124725, 90, 45, 8400, 2800, 0, 0, 0), + (124726, 90, 45, 8400, 2800, 0, 0, 0), + (124727, 90, 45, 8400, 2800, 0, 0, 0), + (124728, 90, 45, 8400, 2800, 0, 0, 0), + (124729, 90, 45, 8400, 2800, 0, 0, 0), + (124730, 129, 165, 7400, 2500, 0, 0, 0), + (124731, 126, 164, 7400, 2500, 0, 0, 0), + (124732, 126, 163, 7400, 2500, 0, 0, 0), + (124733, 123, 162, 7400, 2500, 0, 0, 0), + (124734, 123, 162, 7400, 2500, 0, 0, 0), + (124735, 120, 161, 7400, 2500, 0, 0, 0), + (124736, 120, 160, 7400, 2500, 0, 0, 0), + (124737, 117, 159, 7400, 2500, 0, 0, 0), + (124738, 117, 159, 7400, 2500, 0, 0, 0), + (124739, 115, 158, 7400, 2500, 0, 0, 0), + (124740, 114, 157, 7400, 2500, 0, 0, 0), + (124741, 112, 156, 7400, 2500, 0, 0, 0), + (124742, 112, 156, 7400, 2500, 0, 0, 0), + (124743, 109, 155, 7400, 2500, 0, 0, 0), + (124744, 109, 154, 7400, 2500, 0, 0, 0), + (124745, 106, 153, 7400, 2500, 0, 0, 0), + (124746, 106, 153, 7400, 2500, 0, 0, 0), + (124747, 100, 150, 7400, 2500, 0, 0, 0), + (124748, 100, 150, 7400, 2500, 0, 0, 0), + (124749, 140, 190, 7300, 2400, 1, 0, 1), + (124750, 136, 186, 7300, 2400, 1, 0, 1), + (124751, 136, 186, 7300, 2400, 1, 0, 1), + (124752, 132, 182, 7300, 2400, 1, 0, 1), + (124753, 132, 182, 7300, 2400, 1, 0, 1), + (124754, 128, 178, 7300, 2400, 1, 0, 1), + (124755, 128, 178, 7300, 2400, 1, 0, 1), + (124756, 124, 174, 7300, 2400, 1, 0, 1), + (124757, 124, 174, 7300, 2400, 1, 0, 1), + (124758, 120, 170, 7300, 2400, 1, 0, 1), + (124759, 120, 170, 7300, 2400, 1, 0, 1), + (124760, 116, 166, 7300, 2400, 1, 0, 1), + (124761, 116, 166, 7300, 2400, 1, 0, 1), + (124762, 112, 162, 7300, 2400, 1, 0, 1), + (124763, 112, 162, 7300, 2400, 1, 0, 1), + (124764, 108, 158, 7300, 2400, 1, 0, 1), + (124765, 108, 158, 7300, 2400, 1, 0, 1), + (124766, 100, 150, 7300, 2400, 1, 0, 1), + (124767, 100, 150, 7300, 2400, 1, 0, 1), + (124768, 250, 250, null, null, 0, 0, 0), + (124769, 250, 240, null, null, 0, 0, 0), + (124770, 250, 240, null, null, 0, 0, 0), + (124771, 250, 230, null, null, 0, 0, 0), + (124772, 250, 230, null, null, 0, 0, 0), + (124773, 250, 220, null, null, 0, 0, 0), + (124774, 250, 220, null, null, 0, 0, 0), + (124775, 250, 216, null, null, 0, 0, 0), + (124776, 250, 215, null, null, 0, 0, 0), + (124777, 250, 161, null, null, 0, 0, 0), + (124778, 250, 160, null, null, 0, 0, 0), + (124779, 250, 250, null, null, 0, 0, 0), + (124780, 250, 240, null, null, 0, 0, 0), + (124781, 250, 240, null, null, 0, 0, 0), + (124782, 250, 230, null, null, 0, 0, 0), + (124783, 250, 230, null, null, 0, 0, 0), + (124784, 250, 220, null, null, 0, 0, 0), + (124785, 250, 220, null, null, 0, 0, 0), + (124786, 250, 210, null, null, 0, 0, 0), + (124787, 250, 210, null, null, 0, 0, 0), + (124788, 250, 200, null, null, 0, 0, 0), + (124789, 250, 200, null, null, 0, 0, 0), + (124790, 250, 190, null, null, 0, 0, 0), + (124791, 250, 190, null, null, 0, 0, 0), + (124792, 250, 180, null, null, 0, 0, 0), + (124793, 250, 180, null, null, 0, 0, 0), + (124794, 250, 170, null, null, 0, 0, 0), + (124795, 250, 170, null, null, 0, 0, 0), + (124796, 250, 151, null, null, 0, 0, 0), + (124797, 250, 150, null, null, 0, 0, 0), + (124798, 250, 250, null, null, 0, 0, 0), + (124799, 249, 240, null, null, 0, 0, 0), + (124800, 249, 240, null, null, 0, 0, 0), + (124801, 248, 230, null, null, 0, 0, 0), + (124802, 248, 230, null, null, 0, 0, 0), + (124803, 247, 220, null, null, 0, 0, 0), + (124804, 247, 220, null, null, 0, 0, 0), + (124805, 246, 210, null, null, 0, 0, 0), + (124806, 246, 210, null, null, 0, 0, 0), + (124807, 245, 200, null, null, 0, 0, 0), + (124808, 245, 200, null, null, 0, 0, 0), + (124809, 244, 190, null, null, 0, 0, 0), + (124810, 244, 190, null, null, 0, 0, 0), + (124811, 243, 180, null, null, 0, 0, 0), + (124812, 243, 180, null, null, 0, 0, 0), + (124813, 242, 170, null, null, 0, 0, 0), + (124814, 242, 170, null, null, 0, 0, 0), + (124815, 240, 151, null, null, 0, 0, 0), + (124816, 240, 150, null, null, 0, 0, 0), + (124817, 250, 240, null, null, 0, 0, 0), + (124818, 248, 231, null, null, 0, 0, 0), + (124819, 248, 231, null, null, 0, 0, 0), + (124820, 246, 222, null, null, 0, 0, 0), + (124821, 246, 222, null, null, 0, 0, 0), + (124822, 244, 213, null, null, 0, 0, 0), + (124823, 244, 213, null, null, 0, 0, 0), + (124824, 242, 204, null, null, 0, 0, 0), + (124825, 242, 204, null, null, 0, 0, 0), + (124826, 240, 195, null, null, 0, 0, 0), + (124827, 240, 195, null, null, 0, 0, 0), + (124828, 238, 186, null, null, 0, 0, 0), + (124829, 238, 186, null, null, 0, 0, 0), + (124830, 236, 177, null, null, 0, 0, 0), + (124831, 236, 177, null, null, 0, 0, 0), + (124832, 234, 168, null, null, 0, 0, 0), + (124833, 234, 168, null, null, 0, 0, 0), + (124834, 230, 150, null, null, 0, 0, 0), + (124835, 230, 150, null, null, 0, 0, 0), + (124836, 250, 245, null, null, 0, 0, 0), + (124837, 248, 236, null, null, 0, 0, 0), + (124838, 248, 235, null, null, 0, 0, 0), + (124839, 246, 226, null, null, 0, 0, 0), + (124840, 246, 226, null, null, 0, 0, 0), + (124841, 244, 217, null, null, 0, 0, 0), + (124842, 244, 216, null, null, 0, 0, 0), + (124843, 242, 207, null, null, 0, 0, 0), + (124844, 242, 207, null, null, 0, 0, 0), + (124845, 240, 198, null, null, 0, 0, 0), + (124846, 240, 197, null, null, 0, 0, 0), + (124847, 238, 188, null, null, 0, 0, 0), + (124848, 238, 188, null, null, 0, 0, 0), + (124849, 236, 179, null, null, 0, 0, 0), + (124850, 236, 178, null, null, 0, 0, 0), + (124851, 234, 169, null, null, 0, 0, 0), + (124852, 234, 169, null, null, 0, 0, 0), + (124853, 230, 150, null, null, 0, 0, 0), + (124854, 230, 150, null, null, 0, 0, 0), + (124855, 250, 250, null, null, 0, 0, 0), + (124856, 245, 238, null, null, 0, 0, 0), + (124857, 245, 237, null, null, 0, 0, 0), + (124858, 240, 225, null, null, 0, 0, 0), + (124859, 240, 224, null, null, 0, 0, 0), + (124860, 235, 211, null, null, 0, 0, 0), + (124861, 235, 211, null, null, 0, 0, 0), + (124862, 230, 198, null, null, 0, 0, 0), + (124863, 230, 198, null, null, 0, 0, 0), + (124864, 225, 185, null, null, 0, 0, 0), + (124865, 225, 185, null, null, 0, 0, 0), + (124866, 220, 172, null, null, 0, 0, 0), + (124867, 220, 172, null, null, 0, 0, 0), + (124868, 215, 159, null, null, 0, 0, 0), + (124869, 215, 159, null, null, 0, 0, 0), + (124870, 210, 146, null, null, 0, 0, 0), + (124871, 210, 145, null, null, 0, 0, 0), + (124872, 200, 121, null, null, 0, 0, 0), + (124873, 200, 120, null, null, 0, 0, 0), + (124874, 250, 250, null, null, 0, 0, 0), + (124875, 245, 236, null, null, 0, 0, 0), + (124876, 245, 235, null, null, 0, 0, 0), + (124877, 240, 222, null, null, 0, 0, 0), + (124878, 240, 221, null, null, 0, 0, 0), + (124879, 235, 207, null, null, 0, 0, 0), + (124880, 235, 206, null, null, 0, 0, 0), + (124881, 228, 185, null, null, 0, 0, 0), + (124882, 227, 184, null, null, 0, 0, 0), + (124883, 223, 171, null, null, 0, 0, 0), + (124884, 222, 170, null, null, 0, 0, 0), + (124885, 218, 156, null, null, 0, 0, 0), + (124886, 217, 155, null, null, 0, 0, 0), + (124887, 208, 127, null, null, 0, 0, 0), + (124888, 207, 126, null, null, 0, 0, 0), + (124889, 200, 106, null, null, 0, 0, 0), + (124890, 200, 105, null, null, 0, 0, 0), + (124891, 250, 250, null, null, 0, 0, 0), + (124892, 247, 239, null, null, 0, 0, 0), + (124893, 247, 238, null, null, 0, 0, 0), + (124894, 245, 227, null, null, 0, 0, 0), + (124895, 244, 226, null, null, 0, 0, 0), + (124896, 242, 215, null, null, 0, 0, 0), + (124897, 242, 215, null, null, 0, 0, 0), + (124898, 239, 204, null, null, 0, 0, 0), + (124899, 239, 203, null, null, 0, 0, 0), + (124900, 236, 192, null, null, 0, 0, 0), + (124901, 236, 191, null, null, 0, 0, 0), + (124902, 233, 180, null, null, 0, 0, 0), + (124903, 233, 179, null, null, 0, 0, 0), + (124904, 230, 168, null, null, 0, 0, 0), + (124905, 230, 168, null, null, 0, 0, 0), + (124906, 228, 157, null, null, 0, 0, 0), + (124907, 227, 156, null, null, 0, 0, 0), + (124908, 222, 134, null, null, 0, 0, 0), + (124909, 222, 133, null, null, 0, 0, 0), + (124910, 800, 500, 5800, 1900, 1, 0, 0), + (124911, 790, 500, 5800, 1900, 1, 0, 0), + (124912, 790, 500, 5800, 1900, 1, 0, 0), + (124913, 780, 500, 5800, 1900, 1, 0, 0), + (124914, 780, 500, 5800, 1900, 1, 0, 0), + (124915, 770, 500, 5800, 1900, 1, 0, 0), + (124916, 770, 500, 5800, 1900, 1, 0, 0), + (124917, 760, 500, 5800, 1900, 1, 0, 0), + (124918, 760, 500, 5800, 1900, 1, 0, 0), + (124919, 750, 500, 5800, 1900, 1, 0, 0), + (124920, 750, 500, 5800, 1900, 1, 0, 0), + (124921, 740, 500, 5800, 1900, 1, 0, 0), + (124922, 740, 500, 5800, 1900, 1, 0, 0), + (124923, 730, 500, 5800, 1900, 1, 0, 0), + (124924, 730, 500, 5800, 1900, 1, 0, 0), + (124925, 720, 500, 5800, 1900, 1, 0, 0), + (124926, 720, 500, 5800, 1900, 1, 0, 0), + (124927, 701, 500, 5800, 1900, 1, 0, 0), + (124928, 700, 500, 5800, 1900, 1, 0, 0), + (124929, 800, 500, 5600, 1900, 1, 0, 0), + (124930, 798, 500, 5600, 1900, 1, 0, 0), + (124931, 798, 500, 5600, 1900, 1, 0, 0), + (124932, 795, 500, 5600, 1900, 1, 0, 0), + (124933, 795, 500, 5600, 1900, 1, 0, 0), + (124934, 793, 500, 5600, 1900, 1, 0, 0), + (124935, 793, 500, 5600, 1900, 1, 0, 0), + (124936, 791, 500, 5600, 1900, 1, 0, 0), + (124937, 791, 500, 5600, 1900, 1, 0, 0), + (124938, 789, 500, 5600, 1900, 1, 0, 0), + (124939, 788, 500, 5600, 1900, 1, 0, 0), + (124940, 786, 500, 5600, 1900, 1, 0, 0), + (124941, 786, 500, 5600, 1900, 1, 0, 0), + (124942, 784, 500, 5600, 1900, 1, 0, 0), + (124943, 784, 500, 5600, 1900, 1, 0, 0), + (124944, 782, 500, 5600, 1900, 1, 0, 0), + (124945, 782, 500, 5600, 1900, 1, 0, 0), + (124946, 777, 500, 5600, 1900, 1, 0, 0), + (124947, 777, 500, 5600, 1900, 1, 0, 0), + (124948, 666, 666, null, null, 1, 0, 1), + (124949, 666, 666, null, null, 1, 0, 1), + (124950, 666, 666, null, null, 1, 0, 1), + (124951, 666, 666, null, null, 1, 0, 1), + (124952, 666, 666, null, null, 1, 0, 1), + (124953, 666, 666, null, null, 1, 0, 1), + (124954, 666, 666, null, null, 1, 0, 1), + (124955, 666, 666, null, null, 1, 0, 1), + (124956, 666, 666, null, null, 1, 0, 1), + (124957, 666, 666, null, null, 1, 0, 1), + (124958, 666, 666, null, null, 1, 0, 1), + (124959, 666, 666, null, null, 1, 0, 1), + (124960, 666, 666, null, null, 1, 0, 1), + (124961, 666, 666, null, null, 1, 0, 1), + (124962, 666, 666, null, null, 1, 0, 1), + (124963, 666, 666, null, null, 1, 0, 1), + (124964, 666, 666, null, null, 1, 0, 1), + (124965, 666, 666, null, null, 1, 0, 1), + (124966, 666, 666, null, null, 1, 0, 1), + (124967, 700, 500, null, 1800, 1, 0, 0), + (124968, 681, 500, null, 1800, 1, 0, 0), + (124969, 680, 500, null, 1800, 1, 0, 0), + (124970, 661, 500, null, 1800, 1, 0, 0), + (124971, 660, 500, null, 1800, 1, 0, 0), + (124972, 641, 500, null, 1800, 1, 0, 0), + (124973, 640, 500, null, 1800, 1, 0, 0), + (124974, 621, 500, null, 1800, 1, 0, 0), + (124975, 620, 500, null, 1800, 1, 0, 0), + (124976, 601, 500, null, 1800, 1, 0, 0), + (124977, 599, 500, null, 1800, 1, 0, 0), + (124978, 580, 500, null, 1800, 1, 0, 0), + (124979, 579, 500, null, 1800, 1, 0, 0), + (124980, 560, 500, null, 1800, 1, 0, 0), + (124981, 559, 500, null, 1800, 1, 0, 0), + (124982, 540, 500, null, 1800, 1, 0, 0), + (124983, 539, 500, null, 1800, 1, 0, 0), + (124984, 501, 500, null, 1800, 1, 0, 0), + (124985, 500, 500, null, 1800, 1, 0, 0), + (124986, 245, 250, null, null, 1, 0, 1), + (124987, 245, 250, null, null, 1, 0, 1), + (124988, 244, 250, null, null, 1, 0, 1), + (124989, 244, 250, null, null, 1, 0, 1), + (124990, 244, 250, null, null, 1, 0, 1), + (124991, 244, 250, null, null, 1, 0, 1), + (124992, 243, 250, null, null, 1, 0, 1), + (124993, 243, 250, null, null, 1, 0, 1), + (124994, 243, 250, null, null, 1, 0, 1), + (124995, 243, 250, null, null, 1, 0, 1), + (124996, 242, 250, null, null, 1, 0, 1), + (124997, 242, 250, null, null, 1, 0, 1), + (124998, 242, 250, null, null, 1, 0, 1), + (124999, 242, 250, null, null, 1, 0, 1), + (125000, 241, 250, null, null, 1, 0, 1), + (125001, 241, 250, null, null, 1, 0, 1), + (125002, 241, 250, null, null, 1, 0, 1), + (125003, 240, 250, null, null, 1, 0, 1), + (125004, 240, 250, null, null, 1, 0, 1), + (125005, 250, 240, null, null, 1, 0, 1), + (125006, 249, 239, null, null, 1, 0, 1), + (125007, 249, 239, null, null, 1, 0, 1), + (125008, 248, 238, null, null, 1, 0, 1), + (125009, 248, 238, null, null, 1, 0, 1), + (125010, 247, 237, null, null, 1, 0, 1), + (125011, 247, 237, null, null, 1, 0, 1), + (125012, 246, 236, null, null, 1, 0, 1), + (125013, 246, 236, null, null, 1, 0, 1), + (125014, 245, 235, null, null, 1, 0, 1), + (125015, 245, 235, null, null, 1, 0, 1), + (125016, 244, 234, null, null, 1, 0, 1), + (125017, 244, 234, null, null, 1, 0, 1), + (125018, 243, 233, null, null, 1, 0, 1), + (125019, 243, 233, null, null, 1, 0, 1), + (125020, 242, 232, null, null, 1, 0, 1), + (125021, 242, 232, null, null, 1, 0, 1), + (125022, 240, 230, null, null, 1, 0, 1), + (125023, 240, 230, null, null, 1, 0, 1), + (125024, 200, 250, null, null, 1, 0, 1), + (125025, 200, 250, null, null, 1, 0, 1), + (125026, 200, 250, null, null, 1, 0, 1), + (125027, 200, 250, null, null, 1, 0, 1), + (125028, 200, 250, null, null, 1, 0, 1), + (125029, 200, 250, null, null, 1, 0, 1), + (125030, 200, 250, null, null, 1, 0, 1), + (125031, 200, 250, null, null, 1, 0, 1), + (125032, 200, 250, null, null, 1, 0, 1), + (125033, 200, 250, null, null, 1, 0, 1), + (125034, 200, 250, null, null, 1, 0, 1), + (125035, 200, 250, null, null, 1, 0, 1), + (125036, 200, 250, null, null, 1, 0, 1), + (125037, 200, 250, null, null, 1, 0, 1), + (125038, 200, 250, null, null, 1, 0, 1), + (125039, 200, 250, null, null, 1, 0, 1), + (125040, 200, 250, null, null, 1, 0, 1), + (125041, 200, 250, null, null, 1, 0, 1), + (125042, 200, 250, null, null, 1, 0, 1), + (125043, 250, 250, null, null, 1, 0, 1), + (125044, 250, 248, null, null, 1, 0, 1), + (125045, 250, 248, null, null, 1, 0, 1), + (125046, 250, 246, null, null, 1, 0, 1), + (125047, 250, 246, null, null, 1, 0, 1), + (125048, 250, 244, null, null, 1, 0, 1), + (125049, 250, 244, null, null, 1, 0, 1), + (125050, 250, 242, null, null, 1, 0, 1), + (125051, 250, 242, null, null, 1, 0, 1), + (125052, 250, 240, null, null, 1, 0, 1), + (125053, 250, 240, null, null, 1, 0, 1), + (125054, 250, 238, null, null, 1, 0, 1), + (125055, 250, 238, null, null, 1, 0, 1), + (125056, 250, 236, null, null, 1, 0, 1), + (125057, 250, 236, null, null, 1, 0, 1), + (125058, 250, 234, null, null, 1, 0, 1), + (125059, 250, 234, null, null, 1, 0, 1), + (125060, 250, 230, null, null, 1, 0, 1), + (125061, 250, 230, null, null, 1, 0, 1), + (125062, 240, 240, null, null, 1, 0, 1), + (125063, 240, 240, null, null, 1, 0, 1), + (125064, 240, 240, null, null, 1, 0, 1), + (125065, 240, 240, null, null, 1, 0, 1), + (125066, 240, 240, null, null, 1, 0, 1), + (125067, 240, 240, null, null, 1, 0, 1), + (125068, 240, 240, null, null, 1, 0, 1), + (125069, 240, 240, null, null, 1, 0, 1), + (125070, 240, 240, null, null, 1, 0, 1), + (125071, 240, 240, null, null, 1, 0, 1), + (125072, 240, 240, null, null, 1, 0, 1), + (125073, 240, 240, null, null, 1, 0, 1), + (125074, 240, 240, null, null, 1, 0, 1), + (125075, 240, 240, null, null, 1, 0, 1), + (125076, 240, 240, null, null, 1, 0, 1), + (125077, 240, 240, null, null, 1, 0, 1), + (125078, 240, 240, null, null, 1, 0, 1), + (125079, 240, 240, null, null, 1, 0, 1), + (125080, 240, 240, null, null, 1, 0, 1), + (125081, 255, 255, 4000, 2000, 1, 0, 1), + (125082, 255, 255, 4000, 2000, 1, 0, 1), + (125083, 255, 255, 4000, 2000, 1, 0, 1), + (125084, 255, 255, 4000, 2000, 1, 0, 1), + (125085, 255, 255, 4000, 2000, 1, 0, 1), + (125086, 255, 255, 4000, 2000, 1, 0, 1), + (125087, 255, 255, 4000, 2000, 1, 0, 1), + (125088, 255, 255, 4000, 2000, 1, 0, 1), + (125089, 255, 255, 4000, 2000, 1, 0, 1), + (125090, 255, 255, 4000, 2000, 1, 0, 1), + (125091, 255, 255, 4000, 2000, 1, 0, 1), + (125092, 255, 255, 4000, 2000, 1, 0, 1), + (125093, 255, 255, 4000, 2000, 1, 0, 1), + (125094, 255, 255, 4000, 2000, 1, 0, 1), + (125095, 255, 255, 4000, 2000, 1, 0, 1), + (125096, 255, 255, 4000, 2000, 1, 0, 1), + (125097, 255, 255, 4000, 2000, 1, 0, 1), + (125098, 255, 255, 4000, 2000, 1, 0, 1), + (125099, 255, 255, 4000, 2000, 1, 0, 1), + (125100, 222, 222, null, null, 0, 1, 0), + (125101, 222, 222, null, null, 0, 1, 0), + (125102, 222, 222, null, null, 0, 1, 0), + (125103, 222, 222, null, null, 0, 1, 0), + (125104, 222, 222, null, null, 0, 1, 0), + (125105, 222, 222, null, null, 0, 1, 0), + (125106, 222, 222, null, null, 0, 1, 0), + (125107, 222, 222, null, null, 0, 1, 0), + (125108, 222, 222, null, null, 0, 1, 0), + (125109, 222, 222, null, null, 0, 1, 0), + (125110, 222, 222, null, null, 0, 1, 0), + (125296, 130, 138, null, null, 0, 1, 0), + (125297, 129, 136, null, null, 0, 1, 0), + (125298, 129, 136, null, null, 0, 1, 0), + (125299, 128, 134, null, null, 0, 1, 0), + (125300, 128, 134, null, null, 0, 1, 0), + (125301, 127, 132, null, null, 0, 1, 0), + (125302, 127, 132, null, null, 0, 1, 0), + (125303, 126, 130, null, null, 0, 1, 0), + (125304, 126, 130, null, null, 0, 1, 0), + (125305, 125, 126, null, null, 0, 1, 0), + (125306, 125, 126, null, null, 0, 1, 0), + (125307, 124, 124, null, null, 0, 1, 0), + (125308, 124, 124, null, null, 0, 1, 0), + (125309, 122, 120, null, null, 0, 1, 0), + (125310, 122, 120, null, null, 0, 1, 0), + (125311, 129, 171, null, null, 0, 1, 0), + (125312, 127, 169, null, null, 0, 1, 0), + (125313, 127, 169, null, null, 0, 1, 0), + (125314, 126, 167, null, null, 0, 1, 0), + (125315, 126, 167, null, null, 0, 1, 0), + (125316, 124, 165, null, null, 0, 1, 0), + (125317, 124, 165, null, null, 0, 1, 0), + (125318, 122, 163, null, null, 0, 1, 0), + (125319, 122, 163, null, null, 0, 1, 0), + (125320, 121, 161, null, null, 0, 1, 0), + (125321, 120, 160, null, null, 0, 1, 0), + (125322, 119, 158, null, null, 0, 1, 0), + (125323, 119, 158, null, null, 0, 1, 0), + (125324, 117, 156, null, null, 0, 1, 0), + (125325, 117, 156, null, null, 0, 1, 0), + (125326, 115, 154, null, null, 0, 1, 0), + (125327, 115, 154, null, null, 0, 1, 0), + (125328, 112, 150, null, null, 0, 1, 0), + (125329, 112, 150, null, null, 0, 1, 0), + (125330, 152, 181, null, null, 0, 1, 0), + (125331, 146, 178, null, null, 0, 1, 0), + (125332, 146, 178, null, null, 0, 1, 0), + (125333, 141, 176, null, null, 0, 1, 0), + (125334, 141, 175, null, null, 0, 1, 0), + (125335, 134, 172, null, null, 0, 1, 0), + (125336, 134, 172, null, null, 0, 1, 0), + (125337, 128, 169, null, null, 0, 1, 0), + (125338, 128, 169, null, null, 0, 1, 0), + (125339, 117, 164, null, null, 0, 1, 0), + (125340, 117, 164, null, null, 0, 1, 0), + (125341, 111, 161, null, null, 0, 1, 0), + (125342, 111, 161, null, null, 0, 1, 0), + (125343, 119, 146, null, null, 0, 1, 0), + (125344, 117, 145, null, null, 0, 1, 0), + (125345, 117, 145, null, null, 0, 1, 0), + (125346, 116, 144, null, null, 0, 1, 0), + (125347, 116, 144, null, null, 0, 1, 0), + (125348, 114, 144, null, null, 0, 1, 0), + (125349, 114, 144, null, null, 0, 1, 0), + (125350, 113, 143, null, null, 0, 1, 0), + (125351, 113, 143, null, null, 0, 1, 0), + (125352, 111, 142, null, null, 0, 1, 0), + (125353, 111, 142, null, null, 0, 1, 0), + (125354, 109, 141, null, null, 0, 1, 0), + (125355, 109, 141, null, null, 0, 1, 0), + (125356, 108, 140, null, null, 0, 1, 0), + (125357, 108, 140, null, null, 0, 1, 0), + (125358, 106, 140, null, null, 0, 1, 0), + (125359, 106, 140, null, null, 0, 1, 0), + (125360, 103, 138, null, null, 0, 1, 0), + (125361, 103, 138, null, null, 0, 1, 0), + (125362, 134, 220, null, null, 0, 1, 0), + (125363, 131, 214, null, null, 0, 1, 0), + (125364, 131, 214, null, null, 0, 1, 0), + (125365, 128, 209, null, null, 0, 1, 0), + (125366, 128, 208, null, null, 0, 1, 0), + (125367, 125, 203, null, null, 0, 1, 0), + (125368, 125, 203, null, null, 0, 1, 0), + (125369, 122, 197, null, null, 0, 1, 0), + (125370, 122, 197, null, null, 0, 1, 0), + (125371, 119, 191, null, null, 0, 1, 0), + (125372, 118, 191, null, null, 0, 1, 0), + (125373, 115, 185, null, null, 0, 1, 0), + (125374, 115, 185, null, null, 0, 1, 0), + (125375, 112, 179, null, null, 0, 1, 0), + (125376, 112, 179, null, null, 0, 1, 0), + (125377, 109, 174, null, null, 0, 1, 0), + (125378, 109, 173, null, null, 0, 1, 0), + (125379, 103, 162, null, null, 0, 1, 0), + (125380, 103, 162, null, null, 0, 1, 0), + (125381, 247, 250, null, null, 0, 0, 0), + (125382, 247, 250, null, null, 0, 0, 0), + (125383, 247, 250, null, null, 0, 0, 0), + (125384, 247, 250, null, null, 0, 0, 0), + (125385, 247, 250, null, null, 0, 0, 0), + (125386, 246, 250, null, null, 0, 0, 0), + (125387, 246, 250, null, null, 0, 0, 0), + (125388, 246, 250, null, null, 0, 0, 0), + (125389, 246, 250, null, null, 0, 0, 0), + (125390, 246, 250, null, null, 0, 0, 0), + (125391, 246, 250, null, null, 0, 0, 0), + (125392, 246, 250, null, null, 0, 0, 0), + (125393, 246, 250, null, null, 0, 0, 0), + (125394, 246, 250, null, null, 0, 0, 0), + (125395, 246, 250, null, null, 0, 0, 0), + (125396, 245, 250, null, null, 0, 0, 0), + (125397, 245, 250, null, null, 0, 0, 0), + (125398, 245, 250, null, null, 0, 0, 0), + (125399, 245, 250, null, null, 0, 0, 0), + (125400, 120, 147, null, null, 0, 1, 0), + (125401, 118, 145, null, null, 0, 1, 0), + (125402, 118, 145, null, null, 0, 1, 0), + (125403, 116, 144, null, null, 0, 1, 0), + (125404, 116, 144, null, null, 0, 1, 0), + (125405, 114, 142, null, null, 0, 1, 0), + (125406, 114, 142, null, null, 0, 1, 0), + (125407, 112, 141, null, null, 0, 1, 0), + (125408, 112, 141, null, null, 0, 1, 0), + (125409, 110, 139, null, null, 0, 1, 0), + (125410, 109, 139, null, null, 0, 1, 0), + (125411, 107, 137, null, null, 0, 1, 0), + (125412, 107, 137, null, null, 0, 1, 0), + (125413, 105, 136, null, null, 0, 1, 0), + (125414, 105, 136, null, null, 0, 1, 0), + (125415, 103, 134, null, null, 0, 1, 0), + (125416, 103, 134, null, null, 0, 1, 0), + (125417, 99, 131, null, null, 0, 1, 0), + (125418, 99, 131, null, null, 0, 1, 0), + (125419, 250, 250, null, null, 0, 1, 0), + (125420, 250, 250, null, null, 0, 1, 0), + (125421, 250, 250, null, null, 0, 1, 0), + (125422, 250, 250, null, null, 0, 1, 0), + (125423, 250, 250, null, null, 0, 1, 0), + (125424, 250, 250, null, null, 0, 1, 0), + (125425, 250, 250, null, null, 0, 1, 0), + (125426, 250, 250, null, null, 0, 1, 0), + (125427, 250, 250, null, null, 0, 1, 0), + (125428, 250, 250, null, null, 0, 1, 0), + (125429, 250, 250, null, null, 0, 1, 0), + (125430, 250, 250, null, null, 0, 1, 0), + (125431, 250, 250, null, null, 0, 1, 0), + (125432, 250, 250, null, null, 0, 1, 0), + (125433, 250, 250, null, null, 0, 1, 0), + (125434, 250, 250, null, null, 0, 1, 0), + (125435, 250, 250, null, null, 0, 1, 0), + (125436, 250, 250, null, null, 0, 1, 0), + (125437, 250, 250, null, null, 0, 1, 0), + (125438, 80, 250, null, null, 0, 1, 0), + (125439, 74, 228, null, null, 0, 1, 0), + (125440, 74, 227, null, null, 0, 1, 0), + (125441, 53, 147, null, null, 0, 1, 0), + (125442, 53, 146, null, null, 0, 1, 0), + (125443, 23, 33, null, null, 0, 1, 0), + (125444, 23, 32, null, null, 0, 1, 0), + (125445, 129, 151, null, null, 0, 1, 0), + (125446, 121, 143, null, null, 0, 1, 0), + (125447, 120, 143, null, null, 0, 1, 0), + (125448, 112, 136, null, null, 0, 1, 0), + (125449, 112, 135, null, null, 0, 1, 0), + (125450, 104, 128, null, null, 0, 1, 0), + (125451, 103, 128, null, null, 0, 1, 0), + (125452, 96, 121, null, null, 0, 1, 0), + (125453, 96, 121, null, null, 0, 1, 0), + (125454, 130, 140, null, null, 0, 1, 0), + (125455, 126, 140, null, null, 0, 1, 0), + (125456, 126, 140, null, null, 0, 1, 0), + (125457, 59, 132, null, null, 0, 1, 0), + (125458, 58, 132, null, null, 0, 1, 0), + (125459, 100, 110, null, null, 0, 1, 0), + (125460, 95, 103, null, null, 0, 1, 0), + (125461, 95, 102, null, null, 0, 1, 0), + (125462, 90, 95, null, null, 0, 1, 0), + (125463, 90, 95, null, null, 0, 1, 0), + (125464, 85, 88, null, null, 0, 1, 0), + (125465, 85, 87, null, null, 0, 1, 0), + (125466, 80, 80, null, null, 0, 1, 0), + (125467, 80, 80, null, null, 0, 1, 0), + (128497, 130, 150, null, null, 1, 0, 0), + (128498, 125, 150, null, null, 1, 0, 0), + (128499, 125, 150, null, null, 1, 0, 0), + (128500, 116, 150, null, null, 1, 0, 0), + (128501, 116, 150, null, null, 1, 0, 0), + (128603, 240, 250, null, 2700, 0, 0, 1), + (128604, 238, 248, null, 2700, 0, 0, 1), + (128605, 238, 248, null, 2700, 0, 0, 1), + (128606, 231, 241, null, 2700, 0, 0, 1), + (128607, 231, 241, null, 2700, 0, 0, 1), + (128608, 130, 130, 8300, 2800, 0, 0, 1), + (128609, 130, 130, 8300, 2800, 0, 0, 1), + (128610, 130, 130, 8300, 2800, 0, 0, 1), + (128611, 130, 130, 8300, 2800, 0, 0, 1), + (128612, 130, 130, 8300, 2800, 0, 0, 1), + (128613, 130, 130, 8300, 2800, 0, 0, 1), + (128614, 130, 130, 8300, 2800, 0, 0, 1), + (128615, 130, 130, 8300, 2800, 0, 0, 1), + (128616, 130, 130, 8300, 2800, 0, 0, 1), + (128617, 130, 130, 8300, 2800, 0, 0, 1), + (128618, 130, 130, 8300, 2800, 0, 0, 1), + (128619, 130, 130, 8300, 2800, 0, 0, 1), + (128620, 130, 130, 8300, 2800, 0, 0, 1), + (128621, 130, 130, 8300, 2800, 0, 0, 1), + (128622, 130, 130, 8300, 2800, 0, 0, 1), + (128623, 130, 130, 8300, 2800, 0, 0, 1), + (128624, 130, 130, 8300, 2800, 0, 0, 1), + (128625, 130, 130, 8300, 2800, 0, 0, 1), + (128626, 130, 130, 8300, 2800, 0, 0, 1), + (128627, 245, 250, 8300, 2800, 0, 0, 0), + (128628, 244, 248, 8300, 2800, 0, 0, 0), + (128629, 244, 247, 8332, 2778, 0, 0, 0), + (128630, 243, 245, 8332, 2778, 0, 0, 0), + (128631, 242, 245, 8300, 2800, 0, 0, 0), + (128632, 241, 243, 8300, 2800, 0, 0, 0), + (128633, 241, 242, 8300, 2800, 0, 0, 0), + (128634, 240, 240, 8300, 2800, 0, 0, 0), + (128635, 240, 240, 8300, 2800, 0, 0, 0), + (128636, 248, 250, null, 2900, 0, 0, 0), + (128637, 245, 245, null, 2900, 0, 0, 0), + (128638, 245, 245, null, 2900, 0, 0, 0), + (128639, 243, 240, null, 2900, 0, 0, 0), + (128640, 242, 240, null, 2900, 0, 0, 0), + (128641, 240, 235, null, 2900, 0, 0, 0), + (128642, 240, 235, null, 2900, 0, 0, 0), + (128643, 237, 230, null, 2900, 0, 0, 0), + (128644, 237, 230, null, 2900, 0, 0, 0), + (128645, 234, 225, null, 2900, 0, 0, 0), + (128646, 234, 225, null, 2900, 0, 0, 0), + (128647, 231, 220, null, 2900, 0, 0, 0), + (128648, 231, 220, null, 2900, 0, 0, 0), + (128649, 228, 215, null, 2900, 0, 0, 0), + (128650, 228, 215, null, 2900, 0, 0, 0), + (128651, 226, 210, null, 2900, 0, 0, 0), + (128652, 225, 210, null, 2900, 0, 0, 0), + (128653, 220, 200, null, 2900, 0, 0, 0), + (128654, 220, 200, null, 2900, 0, 0, 0), + (128655, 100, 130, 7900, 2600, 0, 0, 0), + (128656, 100, 128, 7900, 2600, 0, 0, 0), + (128657, 100, 128, 7900, 2600, 0, 0, 0), + (128658, 100, 126, 7900, 2600, 0, 0, 0), + (128659, 100, 126, 7900, 2600, 0, 0, 0), + (128660, 100, 124, 7900, 2600, 0, 0, 0), + (128661, 100, 124, 7900, 2600, 0, 0, 0), + (128662, 100, 122, 7900, 2600, 0, 0, 0), + (128663, 100, 122, 7900, 2600, 0, 0, 0), + (128664, 100, 120, 7900, 2600, 0, 0, 0), + (128665, 100, 120, 7900, 2600, 0, 0, 0), + (128666, 100, 118, 7900, 2600, 0, 0, 0), + (128667, 100, 118, 7900, 2600, 0, 0, 0), + (128668, 100, 116, 7900, 2600, 0, 0, 0), + (128669, 100, 116, 7900, 2600, 0, 0, 0), + (128670, 100, 114, 7900, 2600, 0, 0, 0), + (128671, 100, 114, 7900, 2600, 0, 0, 0), + (128672, 100, 110, 7900, 2600, 0, 0, 0), + (128673, 100, 110, 7900, 2600, 0, 0, 0), + (128674, 112, 130, 8100, 2700, 0, 0, 0), + (128675, 111, 130, 8100, 2700, 0, 0, 0), + (128676, 111, 129, 8100, 2700, 0, 0, 0), + (128677, 110, 129, 8100, 2700, 0, 0, 0), + (128678, 110, 129, 8100, 2700, 0, 0, 0), + (128679, 108, 129, 8100, 2700, 0, 0, 0), + (128680, 108, 128, 8100, 2700, 0, 0, 0), + (128681, 107, 128, 8100, 2700, 0, 0, 0), + (128682, 107, 128, 8100, 2700, 0, 0, 0), + (128683, 106, 128, 8100, 2700, 0, 0, 0), + (128684, 106, 127, 8100, 2700, 0, 0, 0), + (128685, 105, 127, 8100, 2700, 0, 0, 0), + (128686, 105, 127, 8100, 2700, 0, 0, 0), + (128687, 104, 127, 8100, 2700, 0, 0, 0), + (128688, 104, 126, 8100, 2700, 0, 0, 0), + (128689, 102, 126, 8100, 2700, 0, 0, 0), + (128690, 102, 126, 8100, 2700, 0, 0, 0), + (128691, 100, 125, 8100, 2700, 0, 0, 0), + (128692, 100, 125, 8100, 2700, 0, 0, 0), + (128710, 180, 180, null, null, 0, 0, 1), + (128711, 174, 174, null, null, 0, 0, 1), + (128712, 174, 174, null, null, 0, 0, 1), + (128713, 152, 152, null, null, 0, 0, 1), + (128714, 152, 152, null, null, 0, 0, 1), + (128715, 247, 250, 5100, 1700, 0, 0, 0), + (128716, 246, 250, 5100, 1700, 0, 0, 0), + (128717, 246, 250, 5100, 1700, 0, 0, 0), + (128718, 246, 250, 5100, 1700, 0, 0, 0), + (128719, 246, 250, 5100, 1700, 0, 0, 0), + (128720, 245, 250, 5100, 1700, 0, 0, 0), + (128721, 245, 250, 5100, 1700, 0, 0, 0), + (128722, 244, 250, 5100, 1700, 0, 0, 0), + (128723, 244, 250, 5100, 1700, 0, 0, 0), + (128724, 244, 250, 5100, 1700, 0, 0, 0), + (128725, 243, 250, 5100, 1700, 0, 0, 0), + (128726, 243, 250, 5100, 1700, 0, 0, 0), + (128727, 243, 250, 5100, 1700, 0, 0, 0), + (128728, 242, 250, 5100, 1700, 0, 0, 0), + (128729, 242, 250, 5100, 1700, 0, 0, 0), + (128730, 241, 250, 5100, 1700, 0, 0, 0), + (128731, 241, 250, 5100, 1700, 0, 0, 0), + (128732, 240, 250, 5100, 1700, 0, 0, 0), + (128733, 240, 250, 5100, 1700, 0, 0, 0), + (128734, 175, 90, 7000, 2300, 0, 0, 0), + (128735, 168, 87, 7000, 2300, 0, 0, 0), + (128736, 168, 87, 7000, 2300, 0, 0, 0), + (128737, 153, 81, 7000, 2300, 0, 0, 0), + (128738, 153, 81, 7000, 2300, 0, 0, 0), + (128739, 145, 145, 7700, 2600, 0, 0, 0), + (128740, 141, 143, 7700, 2600, 0, 0, 0), + (128741, 140, 143, 7700, 2600, 0, 0, 0), + (128742, 136, 141, 7700, 2600, 0, 0, 0), + (128743, 136, 141, 7700, 2600, 0, 0, 0), + (128744, 132, 139, 7700, 2600, 0, 0, 0), + (128745, 131, 139, 7700, 2600, 0, 0, 0), + (128746, 127, 137, 7700, 2600, 0, 0, 0), + (128747, 127, 137, 7700, 2600, 0, 0, 0), + (128748, 123, 135, 7700, 2600, 0, 0, 0), + (128749, 122, 135, 7700, 2600, 0, 0, 0), + (128750, 118, 133, 7700, 2600, 0, 0, 0), + (128751, 118, 133, 7700, 2600, 0, 0, 0), + (128752, 114, 131, 7700, 2600, 0, 0, 0), + (128753, 113, 131, 7700, 2600, 0, 0, 0), + (128754, 109, 129, 7700, 2600, 0, 0, 0), + (128755, 109, 129, 7700, 2600, 0, 0, 0), + (128756, 100, 125, 7700, 2600, 0, 0, 0), + (128757, 100, 125, 7700, 2600, 0, 0, 0), + (128758, 250, 250, 6700, 2200, 0, 0, 0), + (128759, 247, 250, 6700, 2200, 0, 0, 0), + (128760, 247, 250, 6700, 2200, 0, 0, 0), + (128761, 244, 250, 6700, 2200, 0, 0, 0), + (128762, 244, 250, 6700, 2200, 0, 0, 0), + (128763, 241, 250, 6700, 2200, 0, 0, 0), + (128764, 241, 250, 6700, 2200, 0, 0, 0), + (128765, 238, 250, 6700, 2200, 0, 0, 0), + (128766, 238, 250, 6700, 2200, 0, 0, 0), + (128767, 235, 250, 6700, 2200, 0, 0, 0), + (128768, 235, 250, 6700, 2200, 0, 0, 0), + (128769, 232, 250, 6700, 2200, 0, 0, 0), + (128770, 232, 250, 6700, 2200, 0, 0, 0), + (128771, 229, 250, 6700, 2200, 0, 0, 0), + (128772, 229, 250, 6700, 2200, 0, 0, 0), + (128773, 226, 250, 6700, 2200, 0, 0, 0), + (128774, 226, 250, 6700, 2200, 0, 0, 0), + (128775, 220, 250, 6700, 2200, 0, 0, 0), + (128776, 220, 250, 6700, 2200, 0, 0, 0), + (128784, 280, 280, 7500, 2500, 0, 0, 0), + (128785, 262, 262, 7500, 2500, 0, 0, 0), + (128786, 262, 262, 7500, 2500, 0, 0, 0), + (128787, 118, 120, 5600, 1900, 0, 0, 0), + (128788, 117, 119, 5600, 1900, 0, 0, 0), + (128789, 117, 119, 5600, 1900, 0, 0, 0), + (128790, 111, 112, 5600, 1900, 0, 0, 0), + (128791, 111, 112, 5600, 1900, 0, 0, 0), + (128792, 130, 135, 7700, 2600, 0, 0, 0), + (128793, 127, 135, 7700, 2600, 0, 0, 0), + (128794, 127, 135, 7700, 2600, 0, 0, 0), + (128795, 124, 135, 7700, 2600, 0, 0, 0), + (128796, 124, 135, 7700, 2600, 0, 0, 0), + (128797, 121, 135, 7700, 2600, 0, 0, 0), + (128798, 121, 135, 7700, 2600, 0, 0, 0), + (128799, 118, 135, 7700, 2600, 0, 0, 0), + (128800, 118, 135, 7700, 2600, 0, 0, 0), + (128801, 115, 135, 7700, 2600, 0, 0, 0), + (128802, 115, 135, 7700, 2600, 0, 0, 0), + (128803, 112, 135, 7700, 2600, 0, 0, 0), + (128804, 112, 135, 7700, 2600, 0, 0, 0), + (128805, 109, 135, 7700, 2600, 0, 0, 0), + (128806, 109, 135, 7700, 2600, 0, 0, 0), + (128807, 106, 135, 7700, 2600, 0, 0, 0), + (128808, 106, 135, 7700, 2600, 0, 0, 0), + (128809, 100, 135, 7700, 2600, 0, 0, 0), + (128810, 100, 135, 7700, 2600, 0, 0, 0), + (128811, 100, 122, 8000, 2700, 0, 0, 0), + (128812, 100, 121, 8000, 2700, 0, 0, 0), + (128813, 100, 121, 8000, 2700, 0, 0, 0), + (128814, 100, 121, 8000, 2700, 0, 0, 0), + (128815, 100, 121, 8000, 2700, 0, 0, 0), + (128816, 100, 120, 8000, 2700, 0, 0, 0), + (128817, 100, 120, 8000, 2700, 0, 0, 0), + (128818, 100, 120, 8000, 2700, 0, 0, 0), + (128819, 100, 120, 8000, 2700, 0, 0, 0), + (128820, 100, 119, 8000, 2700, 0, 0, 0), + (128821, 100, 119, 8000, 2700, 0, 0, 0), + (128822, 100, 118, 8000, 2700, 0, 0, 0), + (128823, 100, 118, 8000, 2700, 0, 0, 0), + (128824, 100, 118, 8000, 2700, 0, 0, 0), + (128825, 100, 118, 8000, 2700, 0, 0, 0), + (128826, 100, 117, 8000, 2700, 0, 0, 0), + (128827, 100, 117, 8000, 2700, 0, 0, 0), + (128828, 100, 116, 8000, 2700, 0, 0, 0), + (128829, 100, 116, 8000, 2700, 0, 0, 0), + (128830, 250, 250, 4700, 1600, 0, 0, 0), + (128831, 250, 250, 4700, 1600, 0, 0, 0), + (128832, 249, 249, 4700, 1600, 0, 0, 0), + (128833, 249, 249, 4700, 1600, 0, 0, 0), + (128834, 249, 249, 4700, 1600, 0, 0, 0), + (128835, 249, 249, 4700, 1600, 0, 0, 0), + (128836, 248, 248, 4700, 1600, 0, 0, 0), + (128837, 244, 244, 4700, 1600, 0, 0, 0), + (128838, 244, 244, 4700, 1600, 0, 0, 0), + (128839, 130, 140, 7800, 2600, 0, 0, 0), + (128840, 127, 140, 7800, 2600, 0, 0, 0), + (128841, 127, 140, 7800, 2600, 0, 0, 0), + (128842, 124, 140, 7800, 2600, 0, 0, 0), + (128843, 124, 140, 7800, 2600, 0, 0, 0), + (128844, 121, 140, 7800, 2600, 0, 0, 0), + (128845, 121, 140, 7800, 2600, 0, 0, 0), + (128846, 118, 140, 7800, 2600, 0, 0, 0), + (128847, 118, 140, 7800, 2600, 0, 0, 0), + (128848, 115, 140, 7800, 2600, 0, 0, 0), + (128849, 115, 140, 7800, 2600, 0, 0, 0), + (128850, 112, 140, 7800, 2600, 0, 0, 0), + (128851, 112, 140, 7800, 2600, 0, 0, 0), + (128852, 109, 140, 7800, 2600, 0, 0, 0), + (128853, 109, 140, 7800, 2600, 0, 0, 0), + (128854, 106, 140, 7800, 2600, 0, 0, 0), + (128855, 106, 140, 7800, 2600, 0, 0, 0), + (128856, 100, 140, 7800, 2600, 0, 0, 0), + (128857, 100, 140, 7800, 2600, 0, 0, 0), + (128858, 129, 190, 8100, 2700, 0, 0, 0), + (128859, 128, 186, 8100, 2700, 0, 0, 0), + (128860, 128, 186, 8100, 2700, 0, 0, 0), + (128861, 127, 184, 8100, 2700, 0, 0, 0), + (128862, 127, 184, 8100, 2700, 0, 0, 0), + (128863, 127, 182, 8100, 2700, 0, 0, 0), + (128864, 127, 182, 8100, 2700, 0, 0, 0), + (128865, 126, 177, 8100, 2700, 0, 0, 0), + (128866, 126, 177, 8100, 2700, 0, 0, 0), + (128867, 125, 173, 8100, 2700, 0, 0, 0), + (128868, 125, 173, 8100, 2700, 0, 0, 0), + (128869, 122, 163, 8100, 2700, 0, 0, 0), + (128870, 122, 163, 8100, 2700, 0, 0, 0), + (128871, 250, 250, null, null, 0, 0, 0), + (128872, 250, 240, null, null, 0, 0, 0), + (128873, 250, 239, null, null, 0, 0, 0), + (128874, 250, 229, null, null, 0, 0, 0), + (128875, 250, 228, null, null, 0, 0, 0), + (128876, 250, 218, null, null, 0, 0, 0), + (128877, 250, 217, null, null, 0, 0, 0), + (128878, 250, 207, null, null, 0, 0, 0), + (128879, 250, 206, null, null, 0, 0, 0), + (128880, 250, 196, null, null, 0, 0, 0), + (128881, 250, 195, null, null, 0, 0, 0), + (128882, 250, 185, null, null, 0, 0, 0), + (128883, 250, 184, null, null, 0, 0, 0), + (128884, 250, 174, null, null, 0, 0, 0), + (128885, 250, 173, null, null, 0, 0, 0), + (128886, 250, 163, null, null, 0, 0, 0), + (128887, 250, 162, null, null, 0, 0, 0), + (128888, 250, 142, null, null, 0, 0, 0), + (128889, 250, 141, null, null, 0, 0, 0), + (128890, 800, 500, null, 1900, 1, 0, 0), + (128891, 790, 500, null, 1900, 1, 0, 0), + (128892, 790, 500, null, 1900, 1, 0, 0), + (128893, 780, 500, null, 1900, 1, 0, 0), + (128894, 780, 500, null, 1900, 1, 0, 0), + (128895, 770, 500, null, 1900, 1, 0, 0), + (128896, 770, 500, null, 1900, 1, 0, 0), + (128897, 760, 500, null, 1900, 1, 0, 0), + (128898, 760, 500, null, 1900, 1, 0, 0), + (128899, 750, 500, null, 1900, 1, 0, 0), + (128900, 750, 500, null, 1900, 1, 0, 0), + (128901, 740, 500, null, 1900, 1, 0, 0), + (128902, 740, 500, null, 1900, 1, 0, 0), + (128903, 730, 500, null, 1900, 1, 0, 0), + (128904, 730, 500, null, 1900, 1, 0, 0), + (128905, 720, 500, null, 1900, 1, 0, 0), + (128906, 720, 500, null, 1900, 1, 0, 0), + (128907, 701, 500, null, 1900, 1, 0, 0), + (128908, 700, 500, null, 1900, 1, 0, 0), + (128909, 85, 80, null, null, 0, 0, 0), + (128910, 82, 80, null, null, 0, 0, 0), + (128911, 82, 80, null, null, 0, 0, 0), + (128912, 77, 80, null, null, 0, 0, 0), + (128913, 77, 80, null, null, 0, 0, 0), + (128914, 70, 80, null, null, 0, 0, 0), + (128915, 70, 80, null, null, 0, 0, 0), + (128916, 90, 170, null, null, 0, 0, 0), + (128917, 90, 170, null, null, 0, 0, 0), + (128918, 90, 170, null, null, 0, 0, 0), + (128919, 147, 191, null, null, 0, 1, 0), + (128920, 146, 187, null, null, 0, 1, 0), + (128921, 146, 187, null, null, 0, 1, 0), + (128922, 144, 183, null, null, 0, 1, 0), + (128923, 144, 183, null, null, 0, 1, 0), + (128924, 143, 179, null, null, 0, 1, 0), + (128925, 143, 179, null, null, 0, 1, 0), + (128926, 141, 175, null, null, 0, 1, 0), + (128927, 141, 175, null, null, 0, 1, 0), + (128928, 140, 171, null, null, 0, 1, 0), + (128929, 140, 171, null, null, 0, 1, 0), + (128930, 139, 167, null, null, 0, 1, 0), + (128931, 139, 167, null, null, 0, 1, 0), + (128932, 137, 163, null, null, 0, 1, 0), + (128933, 137, 163, null, null, 0, 1, 0), + (128934, 136, 159, null, null, 0, 1, 0), + (128935, 136, 159, null, null, 0, 1, 0), + (128936, 133, 151, null, null, 0, 1, 0), + (128937, 133, 151, null, null, 0, 1, 0), + (128938, 130, 130, null, null, 0, 1, 0), + (128939, 129, 129, null, null, 0, 1, 0), + (128940, 129, 129, null, null, 0, 1, 0), + (128941, 128, 128, null, null, 0, 1, 0), + (128942, 128, 128, null, null, 0, 1, 0), + (128943, 128, 128, null, null, 0, 1, 0), + (128944, 128, 128, null, null, 0, 1, 0), + (128945, 127, 127, null, null, 0, 1, 0), + (128946, 127, 127, null, null, 0, 1, 0), + (128947, 126, 126, null, null, 0, 1, 0), + (128948, 126, 126, null, null, 0, 1, 0), + (128949, 125, 125, null, null, 0, 1, 0), + (128950, 125, 125, null, null, 0, 1, 0), + (128951, 124, 124, null, null, 0, 1, 0), + (128952, 124, 124, null, null, 0, 1, 0), + (128953, 124, 124, null, null, 0, 1, 0), + (128954, 124, 124, null, null, 0, 1, 0), + (128955, 122, 122, null, null, 0, 1, 0), + (128956, 122, 122, null, null, 0, 1, 0), + (128957, 151, 160, null, null, 0, 1, 0), + (128958, 148, 159, null, null, 0, 1, 0), + (128959, 148, 159, null, null, 0, 1, 0), + (128960, 145, 158, null, null, 0, 1, 0), + (128961, 145, 158, null, null, 0, 1, 0), + (128962, 142, 157, null, null, 0, 1, 0), + (128963, 142, 157, null, null, 0, 1, 0), + (128964, 139, 156, null, null, 0, 1, 0), + (128965, 139, 156, null, null, 0, 1, 0), + (128966, 137, 155, null, null, 0, 1, 0), + (128967, 136, 155, null, null, 0, 1, 0), + (128968, 134, 154, null, null, 0, 1, 0), + (128969, 134, 154, null, null, 0, 1, 0), + (128970, 131, 153, null, null, 0, 1, 0), + (128971, 131, 153, null, null, 0, 1, 0), + (128972, 128, 152, null, null, 0, 1, 0), + (128973, 128, 152, null, null, 0, 1, 0), + (128974, 122, 150, null, null, 0, 1, 0), + (128975, 122, 150, null, null, 0, 1, 0), + (128976, 280, 280, null, null, 0, 0, 0), + (128977, 277, 277, null, null, 0, 0, 0), + (128978, 277, 277, null, null, 0, 0, 0), + (128979, 274, 274, null, null, 0, 0, 0), + (128980, 274, 274, null, null, 0, 0, 0), + (128981, 271, 271, null, null, 0, 0, 0), + (128982, 271, 271, null, null, 0, 0, 0), + (128983, 268, 268, null, null, 0, 0, 0), + (128984, 268, 268, null, null, 0, 0, 0), + (128985, 265, 265, null, null, 0, 0, 0), + (128986, 265, 265, null, null, 0, 0, 0), + (128987, 262, 262, null, null, 0, 0, 0), + (128988, 262, 262, null, null, 0, 0, 0), + (128989, 259, 259, null, null, 0, 0, 0), + (128990, 259, 259, null, null, 0, 0, 0), + (128991, 256, 256, null, null, 0, 0, 0), + (128992, 256, 256, null, null, 0, 0, 0), + (128993, 250, 250, null, null, 0, 0, 0), + (128994, 250, 250, null, null, 0, 0, 0), + (128995, 181, 212, null, null, 0, 1, 0), + (128996, 175, 202, null, null, 0, 1, 0), + (128997, 175, 202, null, null, 0, 1, 0), + (128998, 169, 192, null, null, 0, 1, 0), + (128999, 169, 192, null, null, 0, 1, 0), + (129000, 163, 182, null, null, 0, 1, 0), + (129001, 163, 182, null, null, 0, 1, 0), + (129002, 157, 172, null, null, 0, 1, 0), + (129003, 157, 171, null, null, 0, 1, 0), + (129004, 151, 162, null, null, 0, 1, 0), + (129005, 151, 161, null, null, 0, 1, 0), + (129006, 145, 152, null, null, 0, 1, 0), + (129007, 145, 151, null, null, 0, 1, 0), + (129008, 139, 141, null, null, 0, 1, 0), + (129009, 139, 141, null, null, 0, 1, 0), + (129010, 133, 131, null, null, 0, 1, 0), + (129011, 133, 131, null, null, 0, 1, 0), + (129012, 121, 112, null, null, 0, 1, 0), + (129013, 121, 111, null, null, 0, 1, 0), + (129014, 100, 100, null, null, 0, 0, 0), + (129015, 100, 100, null, null, 0, 0, 0), + (129016, 100, 100, null, null, 0, 0, 0), + (129017, 550, 620, null, null, 0, 0, 0), + (129018, 525, 595, null, null, 0, 0, 0), + (129019, 525, 595, null, null, 0, 0, 0), + (129020, 500, 570, null, null, 0, 0, 0), + (129021, 500, 570, null, null, 0, 0, 0), + (129022, 475, 545, null, null, 0, 0, 0), + (129023, 475, 545, null, null, 0, 0, 0), + (129024, 451, 521, null, null, 0, 0, 0), + (129025, 450, 520, null, null, 0, 0, 0), + (129026, 310, 700, null, null, 0, 0, 0), + (129027, 300, 700, null, null, 0, 0, 0), + (129028, 299, 700, null, null, 0, 0, 0), + (129029, 289, 700, null, null, 0, 0, 0), + (129030, 288, 700, null, null, 0, 0, 0), + (129031, 278, 700, null, null, 0, 0, 0), + (129032, 277, 700, null, null, 0, 0, 0), + (129033, 267, 700, null, null, 0, 0, 0), + (129034, 266, 700, null, null, 0, 0, 0), + (129035, 256, 700, null, null, 0, 0, 0), + (129036, 255, 700, null, null, 0, 0, 0), + (129037, 245, 700, null, null, 0, 0, 0), + (129038, 244, 700, null, null, 0, 0, 0), + (129039, 234, 700, null, null, 0, 0, 0), + (129040, 233, 700, null, null, 0, 0, 0), + (129041, 223, 700, null, null, 0, 0, 0), + (129042, 222, 700, null, null, 0, 0, 0), + (129043, 202, 700, null, null, 0, 0, 0), + (129044, 201, 700, null, null, 0, 0, 0), + (129045, 110, 110, null, null, 0, 1, 0), + (129046, 108, 108, null, null, 0, 1, 0), + (129047, 108, 108, null, null, 0, 1, 0), + (129048, 106, 106, null, null, 0, 1, 0), + (129049, 106, 106, null, null, 0, 1, 0), + (129050, 104, 104, null, null, 0, 1, 0), + (129051, 104, 104, null, null, 0, 1, 0), + (129052, 102, 102, null, null, 0, 1, 0), + (129053, 102, 102, null, null, 0, 1, 0), + (129054, 100, 100, null, null, 0, 1, 0), + (129055, 100, 100, null, null, 0, 1, 0), + (129056, 98, 98, null, null, 0, 1, 0), + (129057, 98, 98, null, null, 0, 1, 0), + (129058, 96, 96, null, null, 0, 1, 0), + (129059, 96, 96, null, null, 0, 1, 0), + (129061, 94, 94, null, null, 0, 1, 0), + (129062, 90, 90, null, null, 0, 1, 0), + (129063, 90, 90, null, null, 0, 1, 0), + (129064, 50, 50, null, null, 0, 1, 0), + (129065, 50, 50, null, null, 0, 1, 0), + (129066, 50, 50, null, null, 0, 1, 0), + (129067, 50, 50, null, null, 0, 1, 0), + (129068, 50, 50, null, null, 0, 1, 0), + (129069, 100, 200, null, null, 0, 0, 0), + (129070, 94, 180, null, null, 0, 0, 0), + (129071, 94, 180, null, null, 0, 0, 0), + (129072, 88, 159, null, null, 0, 0, 0), + (129073, 88, 158, null, null, 0, 0, 0), + (129074, 82, 138, null, null, 0, 0, 0), + (129075, 82, 137, null, null, 0, 0, 0), + (129076, 76, 117, null, null, 0, 0, 0), + (129077, 76, 116, null, null, 0, 0, 0), + (129078, 70, 96, null, null, 0, 0, 0), + (129079, 70, 95, null, null, 0, 0, 0), + (129080, 64, 75, null, null, 0, 0, 0), + (129081, 64, 74, null, null, 0, 0, 0), + (129083, 10, 3600, null, null, 0, 0, 0), + (129084, 10, 3600, null, null, 0, 0, 0), + (130042, 130, 130, null, null, 0, 1, 0), + (130043, 111, 111, null, null, 0, 1, 0), + (130044, 110, 110, null, null, 0, 1, 0), + (130045, 91, 91, null, null, 0, 1, 0), + (130046, 90, 90, null, null, 0, 1, 0), + (130048, 70, 70, null, null, 0, 1, 0), + (130049, 50, 50, null, null, 0, 1, 0), + (130050, 50, 50, null, null, 0, 1, 0), + (130051, 129, 171, null, null, 0, 1, 0), + (130052, 128, 169, null, null, 0, 1, 0), + (130053, 128, 169, null, null, 0, 1, 0), + (130054, 128, 168, null, null, 0, 1, 0), + (130055, 128, 168, null, null, 0, 1, 0), + (130056, 125, 161, null, null, 0, 1, 0), + (130057, 125, 161, null, null, 0, 1, 0), + (130058, 121, 153, null, null, 0, 1, 0), + (130060, 250, 250, null, null, 0, 1, 0), + (130061, 244, 246, null, null, 0, 1, 0), + (130062, 243, 246, null, null, 0, 1, 0), + (130063, 231, 238, null, null, 0, 1, 0), + (130064, 230, 238, null, null, 0, 1, 0), + (130065, 184, 209, null, null, 0, 1, 0), + (130066, 183, 209, null, null, 0, 1, 0), + (130067, 137, 180, null, null, 0, 1, 0), + (130068, 136, 180, null, null, 0, 1, 0), + (130069, 124, 172, null, null, 0, 1, 0), + (130070, 123, 172, null, null, 0, 1, 0), + (130071, 130, 130, null, null, 0, 1, 0), + (130072, 128, 130, null, null, 0, 1, 0), + (130073, 128, 130, null, null, 0, 1, 0), + (130074, 125, 130, null, null, 0, 1, 0), + (130075, 125, 130, null, null, 0, 1, 0), + (130076, 113, 130, null, null, 0, 1, 0), + (130077, 113, 130, null, null, 0, 1, 0), + (130078, 100, 131, null, null, 0, 1, 0), + (130079, 100, 131, null, null, 0, 1, 0), + (130080, 94, 131, null, null, 0, 1, 0), + (130081, 94, 131, null, null, 0, 1, 0), + (130082, 250, 250, null, null, 0, 0, 1), + (130083, 234, 236, null, null, 0, 0, 1), + (130084, 233, 235, null, null, 0, 0, 1), + (130085, 170, 179, null, null, 0, 0, 1), + (130086, 169, 178, null, null, 0, 0, 1), + (130087, 300, 300, null, null, 0, 1, 0), + (130088, 290, 295, null, null, 0, 1, 0), + (130089, 290, 295, null, null, 0, 1, 0), + (130090, 280, 290, null, null, 0, 1, 0), + (130091, 280, 290, null, null, 0, 1, 0), + (130092, 270, 285, null, null, 0, 1, 0), + (130093, 270, 285, null, null, 0, 1, 0), + (130094, 260, 280, null, null, 0, 1, 0), + (130095, 260, 280, null, null, 0, 1, 0), + (130096, 250, 275, null, null, 0, 1, 0), + (130097, 250, 275, null, null, 0, 1, 0), + (130098, 240, 270, null, null, 0, 1, 0), + (130099, 240, 270, null, null, 0, 1, 0), + (130100, 230, 265, null, null, 0, 1, 0), + (130101, 230, 265, null, null, 0, 1, 0), + (130102, 220, 260, null, null, 0, 1, 0), + (130103, 220, 260, null, null, 0, 1, 0), + (130104, 201, 250, null, null, 0, 1, 0), + (130105, 200, 250, null, null, 0, 1, 0), + (130106, 400, 600, null, null, 0, 0, 0), + (130107, 381, 600, null, null, 0, 0, 0), + (130108, 380, 600, null, null, 0, 0, 0), + (130109, 361, 600, null, null, 0, 0, 0), + (130110, 360, 600, null, null, 0, 0, 0), + (130111, 341, 600, null, null, 0, 0, 0), + (130112, 340, 600, null, null, 0, 0, 0), + (130113, 321, 600, null, null, 0, 0, 0), + (130114, 320, 600, null, null, 0, 0, 0), + (130115, 301, 600, null, null, 0, 0, 0), + (130116, 299, 600, null, null, 0, 0, 0), + (130117, 280, 600, null, null, 0, 0, 0), + (130118, 279, 600, null, null, 0, 0, 0), + (130119, 260, 600, null, null, 0, 0, 0), + (130120, 259, 600, null, null, 0, 0, 0), + (130121, 240, 600, null, null, 0, 0, 0), + (130122, 239, 600, null, null, 0, 0, 0), + (130123, 201, 600, null, null, 0, 0, 0), + (130124, 200, 600, null, null, 0, 0, 0), + (130125, 130, 210, null, null, 0, 0, 0), + (130126, 126, 202, null, null, 0, 0, 0), + (130127, 126, 202, null, null, 0, 0, 0), + (130128, 122, 194, null, null, 0, 0, 0), + (130129, 122, 194, null, null, 0, 0, 0), + (130130, 118, 186, null, null, 0, 0, 0), + (130131, 118, 186, null, null, 0, 0, 0), + (130132, 114, 178, null, null, 0, 0, 0), + (130133, 114, 178, null, null, 0, 0, 0), + (130134, 110, 170, null, null, 0, 0, 0), + (130135, 110, 170, null, null, 0, 0, 0), + (130136, 106, 162, null, null, 0, 0, 0), + (130137, 106, 162, null, null, 0, 0, 0), + (130138, 102, 154, null, null, 0, 0, 0), + (130139, 102, 154, null, null, 0, 0, 0), + (130140, 98, 146, null, null, 0, 0, 0), + (130141, 98, 146, null, null, 0, 0, 0), + (130142, 90, 130, null, null, 0, 0, 0), + (130143, 90, 130, null, null, 0, 0, 0), + (130144, 129, 151, null, null, 0, 1, 0), + (130145, 126, 151, null, null, 0, 1, 0), + (130146, 126, 151, null, null, 0, 1, 0), + (130147, 123, 151, null, null, 0, 1, 0), + (130148, 123, 151, null, null, 0, 1, 0), + (130149, 120, 151, null, null, 0, 1, 0), + (130150, 120, 151, null, null, 0, 1, 0), + (130151, 117, 151, null, null, 0, 1, 0), + (130152, 117, 151, null, null, 0, 1, 0), + (130153, 115, 151, null, null, 0, 1, 0), + (130154, 114, 150, null, null, 0, 1, 0), + (130155, 112, 150, null, null, 0, 1, 0), + (130156, 112, 150, null, null, 0, 1, 0), + (130157, 109, 150, null, null, 0, 1, 0), + (130158, 109, 150, null, null, 0, 1, 0), + (130159, 106, 150, null, null, 0, 1, 0), + (130160, 106, 150, null, null, 0, 1, 0), + (130161, 100, 150, null, null, 0, 1, 0), + (130162, 100, 150, null, null, 0, 1, 0), + (130163, 70, 130, null, null, 0, 0, 0), + (130164, 67, 122, null, null, 0, 0, 0), + (130165, 67, 121, null, null, 0, 0, 0), + (130166, 63, 112, null, null, 0, 0, 0), + (130167, 63, 111, null, null, 0, 0, 0), + (130168, 56, 94, null, null, 0, 0, 0), + (130169, 56, 94, null, null, 0, 0, 0), + (130170, 51, 82, null, null, 0, 0, 0), + (130171, 51, 81, null, null, 0, 0, 0), + (130172, 160, 170, null, null, 0, 1, 0), + (130173, 157, 169, null, null, 0, 1, 0), + (130174, 157, 169, null, null, 0, 1, 0), + (130175, 154, 168, null, null, 0, 1, 0), + (130176, 154, 168, null, null, 0, 1, 0), + (130177, 148, 166, null, null, 0, 1, 0), + (130178, 148, 166, null, null, 0, 1, 0), + (130179, 145, 165, null, null, 0, 1, 0), + (130180, 145, 165, null, null, 0, 1, 0), + (130181, 135, 155, null, null, 0, 0, 0), + (130182, 127, 155, null, null, 0, 0, 0), + (130183, 126, 155, null, null, 0, 0, 0), + (130184, 104, 155, null, null, 0, 0, 0), + (130185, 103, 155, null, null, 0, 0, 0), + (130186, 98, 155, null, null, 0, 0, 0), + (130187, 97, 155, null, null, 0, 0, 0), + (130188, 68, 155, null, null, 0, 0, 0), + (130189, 68, 155, null, null, 0, 0, 0), + (130190, 59, 155, null, null, 0, 0, 0), + (130191, 59, 155, null, null, 0, 0, 0), + (130192, 47, 155, null, null, 0, 0, 0), + (130193, 47, 155, null, null, 0, 0, 0), + (130197, 150, 220, null, null, 0, 1, 0), + (130198, 146, 214, null, null, 0, 1, 0), + (130199, 145, 213, null, null, 0, 1, 0), + (130200, 141, 208, null, null, 0, 1, 0), + (130201, 141, 207, null, null, 0, 1, 0), + (130202, 137, 201, null, null, 0, 1, 0), + (130203, 136, 200, null, null, 0, 1, 0), + (130204, 132, 195, null, null, 0, 1, 0), + (130205, 132, 194, null, null, 0, 1, 0), + (130206, 128, 188, null, null, 0, 1, 0), + (130207, 127, 187, null, null, 0, 1, 0), + (130208, 83, 123, null, null, 0, 1, 0), + (130209, 82, 122, null, null, 0, 1, 0), + (130210, 74, 110, null, null, 0, 1, 0), + (130211, 73, 109, null, null, 0, 1, 0), + (130212, 65, 97, null, null, 0, 1, 0), + (130213, 64, 96, null, null, 0, 1, 0), + (130214, 190, 190, null, null, 0, 0, 0), + (130215, 185, 188, null, null, 0, 0, 0), + (130216, 185, 188, null, null, 0, 0, 0), + (130217, 181, 186, null, null, 0, 0, 0), + (130218, 181, 186, null, null, 0, 0, 0), + (130219, 176, 184, null, null, 0, 0, 0), + (130220, 176, 184, null, null, 0, 0, 0), + (130221, 172, 182, null, null, 0, 0, 0), + (130222, 171, 182, null, null, 0, 0, 0), + (130223, 168, 180, null, null, 0, 0, 0), + (130224, 168, 180, null, null, 0, 0, 0), + (130225, 136, 166, null, null, 0, 0, 0), + (130226, 136, 166, null, null, 0, 0, 0), + (130227, 127, 162, null, null, 0, 0, 0), + (130228, 127, 162, null, null, 0, 0, 0), + (130229, 118, 158, null, null, 0, 0, 0), + (130230, 118, 158, null, null, 0, 0, 0), + (130231, 100, 150, null, null, 0, 0, 0), + (130232, 100, 150, null, null, 0, 0, 0), + (130581, 250, 250, null, null, 0, 0, 0), + (130582, 250, 250, null, null, 0, 0, 0), + (130583, 250, 250, null, null, 0, 0, 0), + (130584, 250, 250, null, null, 0, 0, 0), + (130585, 250, 250, null, null, 0, 0, 0), + (130586, 250, 250, null, null, 0, 0, 0), + (130587, 250, 250, null, null, 0, 0, 0), + (130588, 250, 250, null, null, 0, 0, 0), + (130589, 250, 250, null, null, 0, 0, 0), + (130590, 250, 250, null, null, 0, 0, 0), + (130591, 250, 250, null, null, 0, 0, 0), + (130592, 250, 250, null, null, 0, 0, 0), + (130593, 250, 250, null, null, 0, 0, 0), + (130594, 250, 250, null, null, 0, 0, 0), + (130595, 250, 250, null, null, 0, 0, 0), + (130596, 250, 250, null, null, 0, 0, 0), + (130597, 250, 250, null, null, 0, 0, 0), + (130598, 250, 250, null, null, 0, 0, 0), + (130599, 250, 250, null, null, 0, 0, 0), + (130600, 250, 250, null, null, 0, 0, 0), + (130601, 250, 250, null, null, 0, 0, 0), + (130602, 250, 250, null, null, 0, 0, 0), + (130603, 250, 250, null, null, 0, 0, 0), + (130604, 250, 250, null, null, 0, 0, 0), + (130605, 250, 250, null, null, 0, 0, 0), + (130606, 250, 250, null, null, 0, 0, 0), + (130607, 250, 250, null, null, 0, 0, 0), + (130608, 250, 250, null, null, 0, 0, 0), + (130609, 250, 250, null, null, 0, 0, 0), + (130610, 250, 250, null, null, 0, 0, 0), + (130611, 250, 250, null, null, 0, 0, 0), + (130612, 250, 250, null, null, 0, 0, 0), + (130613, 250, 250, null, null, 0, 0, 0), + (130614, 250, 250, null, null, 0, 0, 0), + (130615, 250, 250, null, null, 0, 0, 0), + (130616, 250, 250, null, null, 0, 0, 0), + (130617, 250, 250, null, null, 0, 0, 0), + (130618, 250, 250, null, null, 0, 0, 0), + (130619, 250, 250, null, null, 0, 0, 0), + (130620, 250, 250, null, null, 0, 0, 0), + (130621, 250, 250, null, null, 0, 0, 0), + (130622, 250, 250, null, null, 0, 0, 0), + (130623, 250, 250, null, null, 0, 0, 0), + (130624, 250, 250, null, null, 0, 0, 0), + (130625, 250, 250, null, null, 0, 0, 0), + (130626, 250, 250, null, null, 0, 0, 0), + (130627, 250, 250, null, null, 0, 0, 0), + (130628, 250, 250, null, null, 0, 0, 0), + (130629, 250, 250, null, null, 0, 0, 0), + (130630, 250, 250, null, null, 0, 0, 0), + (130631, 250, 250, null, null, 0, 0, 0), + (130632, 250, 250, null, null, 0, 0, 0), + (130633, 250, 250, null, null, 0, 0, 0), + (130634, 250, 250, null, null, 0, 0, 0), + (130635, 250, 250, null, null, 0, 0, 0), + (130636, 250, 250, null, null, 0, 0, 0), + (130637, 250, 250, null, null, 0, 0, 0), + (130638, 250, 250, null, null, 0, 0, 0), + (130639, 250, 250, null, null, 0, 0, 0), + (130640, 250, 250, null, null, 0, 0, 0), + (130641, 250, 250, null, null, 0, 0, 0), + (130642, 250, 250, null, null, 0, 0, 0), + (130643, 250, 250, null, null, 0, 0, 0), + (131605, 250, 250, null, null, 0, 0, 0), + (131606, 250, 250, null, null, 0, 0, 0), + (131607, 250, 250, null, null, 0, 0, 0), + (142785, 335, 135, null, null, 1, 0, 1), + (142786, 334, 134, null, null, 1, 0, 1), + (142787, 334, 134, null, null, 1, 0, 1), + (142788, 332, 132, null, null, 1, 0, 1), + (142789, 332, 132, null, null, 1, 0, 1), + (142790, 330, 130, null, null, 1, 0, 1), + (142791, 330, 130, null, null, 1, 0, 1), + (142792, 328, 128, null, null, 1, 0, 1), + (142793, 328, 128, null, null, 1, 0, 1), + (142794, 318, 118, null, null, 1, 0, 1), + (142795, 317, 117, null, null, 1, 0, 1), + (142796, 314, 114, null, null, 1, 0, 1), + (142797, 314, 114, null, null, 1, 0, 1), + (142798, 311, 111, null, null, 1, 0, 1), + (142799, 310, 110, null, null, 1, 0, 1), + (142800, 304, 104, null, null, 1, 0, 1), + (142801, 303, 103, null, null, 1, 0, 1), + (142802, 300, 100, null, null, 1, 0, 1), + (142803, 300, 100, null, null, 1, 0, 1), + (142804, 140, 160, null, null, 0, 1, 0), + (142805, 137, 158, null, null, 0, 1, 0), + (142806, 137, 158, null, null, 0, 1, 0), + (142807, 134, 155, null, null, 0, 1, 0), + (142808, 134, 155, null, null, 0, 1, 0), + (142809, 128, 151, null, null, 0, 1, 0), + (142810, 128, 151, null, null, 0, 1, 0), + (142811, 114, 140, null, null, 0, 1, 0), + (142812, 114, 140, null, null, 0, 1, 0), + (142813, 107, 135, null, null, 0, 1, 0), + (142814, 107, 135, null, null, 0, 1, 0), + (142815, 101, 131, null, null, 0, 1, 0), + (142816, 101, 131, null, null, 0, 1, 0), + (142817, 90, 162, null, null, 0, 1, 0), + (142818, 86, 157, null, null, 0, 1, 0), + (142819, 86, 157, null, null, 0, 1, 0), + (142820, 82, 152, null, null, 0, 1, 0), + (142821, 82, 152, null, null, 0, 1, 0), + (142822, 78, 147, null, null, 0, 1, 0), + (142823, 78, 146, null, null, 0, 1, 0), + (142824, 74, 141, null, null, 0, 1, 0), + (142825, 74, 141, null, null, 0, 1, 0), + (142826, 70, 136, null, null, 0, 1, 0), + (142827, 70, 136, null, null, 0, 1, 0), + (142828, 66, 131, null, null, 0, 1, 0), + (142829, 66, 131, null, null, 0, 1, 0), + (142830, 62, 126, null, null, 0, 1, 0), + (142831, 62, 125, null, null, 0, 1, 0), + (142832, 58, 120, null, null, 0, 1, 0), + (142833, 58, 120, null, null, 0, 1, 0), + (142834, 50, 110, null, null, 0, 1, 0), + (142835, 50, 110, null, null, 0, 1, 0), + (142836, 120, 120, null, null, 0, 1, 0), + (142837, 119, 120, null, null, 0, 1, 0), + (142838, 119, 119, null, null, 0, 1, 0), + (142839, 118, 119, null, null, 0, 1, 0), + (142840, 118, 119, null, null, 0, 1, 0), + (142841, 117, 119, null, null, 0, 1, 0), + (142842, 117, 118, null, null, 0, 1, 0), + (142843, 116, 118, null, null, 0, 1, 0), + (142844, 116, 118, null, null, 0, 1, 0), + (142845, 109, 115, null, null, 0, 1, 0), + (142846, 109, 114, null, null, 0, 1, 0), + (142847, 107, 114, null, null, 0, 1, 0), + (142848, 107, 113, null, null, 0, 1, 0), + (142849, 105, 113, null, null, 0, 1, 0), + (142850, 105, 112, null, null, 0, 1, 0), + (142851, 103, 112, null, null, 0, 1, 0), + (142852, 103, 111, null, null, 0, 1, 0), + (142853, 100, 110, null, null, 0, 1, 0), + (142854, 100, 110, null, null, 0, 1, 0), + (142855, 120, 150, null, 1900, 1, 0, 1), + (142856, 118, 146, null, 1900, 1, 0, 1), + (142857, 118, 146, null, 1900, 1, 0, 1), + (142858, 116, 142, null, 1900, 1, 0, 1), + (142859, 116, 142, null, 1900, 1, 0, 1), + (142860, 115, 140, null, 1900, 1, 0, 1), + (142861, 115, 140, null, 1900, 1, 0, 1), + (142862, 111, 132, null, 1900, 1, 0, 1), + (142863, 111, 132, null, 1900, 1, 0, 1), + (142864, 109, 128, null, 1900, 1, 0, 1), + (142865, 109, 128, null, 1900, 1, 0, 1), + (142866, 107, 124, null, 1900, 1, 0, 1), + (142867, 107, 124, null, 1900, 1, 0, 1), + (142868, 104, 118, null, 1900, 1, 0, 1), + (143833, 800, 500, null, null, 1, 0, 0), + (143845, 800, 500, null, null, 1, 0, 0), + (143846, 800, 500, null, null, 1, 0, 0), + (143847, 800, 500, null, null, 1, 0, 0), + (143848, 800, 500, null, null, 1, 0, 0), + (143849, 800, 500, null, null, 1, 0, 0), + (143850, 800, 500, null, null, 1, 0, 0), + (143851, 800, 500, null, null, 1, 0, 0), + (143852, 800, 500, null, null, 1, 0, 0), + (143853, 800, 500, null, null, 1, 0, 0), + (143854, 800, 500, null, null, 1, 0, 0), + (143855, 800, 500, null, null, 1, 0, 0), + (143856, 800, 500, null, null, 1, 0, 0), + (143857, 800, 500, null, null, 1, 0, 0), + (143858, 800, 500, null, null, 1, 0, 0), + (143859, 800, 500, null, null, 1, 0, 0), + (143860, 800, 500, null, null, 1, 0, 0), + (143861, 800, 500, null, null, 1, 0, 0), + (143862, 800, 500, null, null, 1, 0, 0), + (144058, 104, 118, null, 1900, 1, 0, 1), + (144059, 102, 114, null, 1900, 1, 0, 1), + (144060, 102, 114, null, 1900, 1, 0, 1), + (144061, 101, 113, null, 1900, 1, 0, 1), + (144062, 101, 112, null, 1900, 1, 0, 1), + (144063, 130, 130, null, null, 0, 1, 0), + (144064, 129, 129, null, null, 0, 1, 0), + (144065, 128, 129, null, null, 0, 1, 0), + (144066, 127, 128, null, null, 0, 1, 0), + (144067, 127, 127, null, null, 0, 1, 0), + (144068, 126, 126, null, null, 0, 1, 0), + (144069, 125, 126, null, null, 0, 1, 0), + (144070, 124, 125, null, null, 0, 1, 0), + (144071, 124, 125, null, null, 0, 1, 0), + (144072, 115, 118, null, null, 0, 1, 0), + (144073, 115, 117, null, null, 0, 1, 0), + (144074, 111, 114, null, null, 0, 1, 0), + (144075, 110, 114, null, null, 0, 1, 0), + (144076, 108, 111, null, null, 0, 1, 0), + (144077, 107, 111, null, null, 0, 1, 0), + (144078, 104, 108, null, null, 0, 1, 0), + (144079, 104, 108, null, null, 0, 1, 0), + (144080, 100, 105, null, null, 0, 1, 0), + (144081, 100, 105, null, null, 0, 1, 0), + (144082, 110, 130, null, null, 0, 1, 0), + (144083, 110, 130, null, null, 0, 1, 0), + (144084, 109, 130, null, null, 0, 1, 0), + (144085, 109, 130, null, null, 0, 1, 0), + (144086, 109, 130, null, null, 0, 1, 0), + (144087, 109, 130, null, null, 0, 1, 0), + (144088, 108, 130, null, null, 0, 1, 0), + (144089, 108, 130, null, null, 0, 1, 0), + (144090, 108, 130, null, null, 0, 1, 0), + (144091, 106, 130, null, null, 0, 1, 0), + (144092, 106, 130, null, null, 0, 1, 0), + (144093, 104, 130, null, null, 0, 1, 0), + (144094, 104, 130, null, null, 0, 1, 0), + (144095, 103, 130, null, null, 0, 1, 0), + (144096, 103, 130, null, null, 0, 1, 0), + (144097, 101, 130, null, null, 0, 1, 0), + (144098, 101, 130, null, null, 0, 1, 0), + (144099, 100, 130, null, null, 0, 1, 0), + (144100, 100, 130, null, null, 0, 1, 0), + (144101, 115, 200, null, null, 1, 0, 0), + (144102, 115, 200, null, null, 1, 0, 0), + (144103, 115, 200, null, null, 1, 0, 0), + (144104, 115, 200, null, null, 1, 0, 0), + (144105, 115, 200, null, null, 1, 0, 0), + (144106, 115, 200, null, null, 1, 0, 0), + (144107, 115, 200, null, null, 1, 0, 0), + (144108, 115, 200, null, null, 1, 0, 0), + (144109, 115, 200, null, null, 1, 0, 0), + (144110, 115, 200, null, null, 1, 0, 0), + (144111, 115, 200, null, null, 1, 0, 0), + (144112, 115, 200, null, null, 1, 0, 0), + (144113, 115, 200, null, null, 1, 0, 0), + (144114, 115, 200, null, null, 1, 0, 0), + (144115, 115, 200, null, null, 1, 0, 0), + (144116, 115, 200, null, null, 1, 0, 0), + (144117, 115, 200, null, null, 1, 0, 0), + (144118, 115, 200, null, null, 1, 0, 0), + (144119, 115, 200, null, null, 1, 0, 0), + (144146, 90, 140, null, null, 0, 1, 0), + (144147, 88, 136, null, null, 0, 1, 0), + (144148, 88, 136, null, null, 0, 1, 0), + (144149, 86, 132, null, null, 0, 1, 0), + (144150, 86, 132, null, null, 0, 1, 0), + (144151, 84, 128, null, null, 0, 1, 0), + (144152, 84, 128, null, null, 0, 1, 0), + (144153, 82, 124, null, null, 0, 1, 0), + (144154, 82, 124, null, null, 0, 1, 0), + (144155, 80, 120, null, null, 0, 1, 0), + (144156, 80, 120, null, null, 0, 1, 0), + (144157, 78, 116, null, null, 0, 1, 0), + (144158, 78, 116, null, null, 0, 1, 0), + (144159, 76, 112, null, null, 0, 1, 0), + (144160, 76, 112, null, null, 0, 1, 0), + (144161, 74, 108, null, null, 0, 1, 0), + (144162, 74, 108, null, null, 0, 1, 0), + (144163, 70, 100, null, null, 0, 1, 0), + (144164, 70, 100, null, null, 0, 1, 0), + (144745, 125, 125, null, null, 0, 0, 0), + (150176, 150, 148, null, null, 0, 1, 0), + (150177, 150, 147, null, null, 0, 1, 0), + (150178, 150, 147, null, null, 0, 1, 0), + (150179, 150, 146, null, null, 0, 1, 0), + (150180, 150, 146, null, null, 0, 1, 0), + (150181, 150, 145, null, null, 0, 1, 0), + (150182, 150, 145, null, null, 0, 1, 0), + (150183, 150, 140, null, null, 0, 1, 0), + (150184, 150, 140, null, null, 0, 1, 0), + (150185, 150, 138, null, null, 0, 1, 0), + (150186, 150, 138, null, null, 0, 1, 0), + (150187, 150, 135, null, null, 0, 1, 0), + (150188, 150, 135, null, null, 0, 1, 0), + (150189, 150, 133, null, null, 0, 1, 0), + (150190, 150, 132, null, null, 0, 1, 0), + (150191, 150, 130, null, null, 0, 1, 0), + (150192, 150, 130, null, null, 0, 1, 0), + (150193, 160, 180, null, null, 0, 0, 0), + (150194, 155, 175, null, null, 0, 0, 0), + (150196, 170, 150, null, null, 0, 0, 0), + (150197, 170, 150, null, null, 0, 0, 0), + (150198, 163, 143, null, null, 0, 0, 0), + (150199, 162, 142, null, null, 0, 0, 0), + (150200, 158, 138, null, null, 0, 0, 0), + (150201, 157, 137, null, null, 0, 0, 0), + (150202, 150, 130, null, null, 0, 0, 0), + (150203, 150, 130, null, null, 0, 0, 0), + (150204, 143, 123, null, null, 0, 0, 0), + (150205, 142, 122, null, null, 0, 0, 0), + (150206, 135, 115, null, null, 0, 0, 0), + (150207, 135, 115, null, null, 0, 0, 0), + (150213, 202, 143, null, null, 0, 0, 0), + (150214, 201, 142, null, null, 0, 0, 0), + (150215, 201, 138, null, null, 0, 0, 0), + (150216, 200, 137, null, null, 0, 0, 0), + (150217, 199, 130, null, null, 0, 0, 0), + (150218, 199, 130, null, null, 0, 0, 0), + (150219, 198, 123, null, null, 0, 0, 0), + (150220, 197, 122, null, null, 0, 0, 0), + (150221, 196, 115, null, null, 0, 0, 0), + (150222, 196, 115, null, null, 0, 0, 0), + (150223, 130, 130, null, null, 0, 0, 0), + (150224, 122, 122, null, null, 0, 0, 0), + (150225, 122, 122, null, null, 0, 0, 0), + (150226, 114, 114, null, null, 0, 0, 0), + (150227, 114, 114, null, null, 0, 0, 0), + (150228, 106, 106, null, null, 0, 0, 0), + (150229, 106, 106, null, null, 0, 0, 0), + (150230, 98, 98, null, null, 0, 0, 0), + (150231, 98, 98, null, null, 0, 0, 0), + (150232, 150, 130, null, null, 0, 0, 0), + (150233, 150, 124, null, null, 0, 0, 0), + (150234, 150, 124, null, null, 0, 0, 0), + (150235, 150, 118, null, null, 0, 0, 0), + (150236, 150, 118, null, null, 0, 0, 0), + (150237, 150, 112, null, null, 0, 0, 0), + (150238, 150, 112, null, null, 0, 0, 0), + (150239, 150, 106, null, null, 0, 0, 0), + (150240, 150, 106, null, null, 0, 0, 0), + (150241, 160, 60, null, null, 0, 0, 0), + (150242, 160, 60, null, null, 0, 0, 0), + (150243, 160, 60, null, null, 0, 0, 0), + (150244, 160, 60, null, null, 0, 0, 0), + (150245, 160, 60, null, null, 0, 0, 0), + (150246, 160, 60, null, null, 0, 0, 0), + (150247, 160, 60, null, null, 0, 0, 0), + (150248, 160, 60, null, null, 0, 0, 0), + (150249, 160, 60, null, null, 0, 0, 0), + (150250, 160, 60, null, null, 0, 0, 0), + (150251, 160, 60, null, null, 0, 0, 0), + (150252, 160, 60, null, null, 0, 0, 0), + (150253, 160, 60, null, null, 0, 0, 0), + (150254, 300, 120, null, null, 0, 0, 0), + (150255, 300, 120, null, null, 0, 0, 0), + (150256, 300, 120, null, null, 0, 0, 0), + (150257, 300, 120, null, null, 0, 0, 0), + (150258, 300, 120, null, null, 0, 0, 0), + (150259, 300, 120, null, null, 0, 0, 0), + (150260, 300, 120, null, null, 0, 0, 0), + (150261, 300, 120, null, null, 0, 0, 0), + (150262, 300, 120, null, null, 0, 0, 0), + (150263, 300, 120, null, null, 0, 0, 0), + (150264, 300, 120, null, null, 0, 0, 0), + (150265, 300, 120, null, null, 0, 0, 0), + (150266, 300, 120, null, null, 0, 0, 0), + (150267, 300, 120, null, null, 0, 0, 0), + (150268, 300, 120, null, null, 0, 0, 0), + (150269, 300, 120, null, null, 0, 0, 0), + (150270, 300, 120, null, null, 0, 0, 0), + (150271, 300, 120, null, null, 0, 0, 0), + (150272, 300, 120, null, null, 0, 0, 0), + (150803, 130, 130, null, null, 0, 0, 0), + (150804, 130, 130, null, null, 0, 0, 0), + (150805, 130, 130, null, null, 0, 0, 0), + (150806, 130, 130, null, null, 0, 0, 0), + (150807, 130, 130, null, null, 0, 0, 0), + (150808, 130, 130, null, null, 0, 0, 0), + (150809, 130, 130, null, null, 0, 0, 0), + (150954, 155, 130, 8000, null, 0, 0, 0), + (150955, 150, 130, 8000, null, 0, 0, 0), + (150956, 150, 130, 8000, null, 0, 0, 0), + (150957, 140, 130, 8300, null, 0, 0, 0), + (150958, 130, 130, 8300, null, 0, 0, 0), + (150959, 130, 130, 8300, null, 0, 0, 0), + (151903, 108, 130, null, null, 0, 1, 0), + (152024, 200, 250, null, null, 0, 0, 0), + (152025, 128, 209, null, null, 0, 1, 0), + (152026, 100, 150, null, null, 0, 1, 0), + (152027, 100, 100, null, 1600, 0, 0, 0), + (152042, 200, 250, null, null, 0, 0, 0), + (152043, 200, 250, null, null, 0, 0, 0), + (152044, 200, 250, null, null, 0, 0, 0), + (152045, 224, 131, null, null, 0, 0, 0), + (152046, 223, 131, null, null, 0, 0, 0), + (152047, 223, 131, null, null, 0, 0, 0), + (152048, 222, 131, null, null, 0, 0, 0), + (152049, 222, 131, null, null, 0, 0, 0), + (152050, 221, 131, null, null, 0, 0, 0), + (152051, 221, 131, null, null, 0, 0, 0), + (152052, 220, 131, null, null, 0, 0, 0), + (152053, 220, 131, null, null, 0, 0, 0), + (152054, 219, 131, null, null, 0, 0, 0), + (152055, 219, 131, null, null, 0, 0, 0), + (152056, 218, 131, null, null, 0, 0, 0), + (152057, 218, 131, null, null, 0, 0, 0), + (152058, 217, 131, null, null, 0, 0, 0), + (152059, 217, 131, null, null, 0, 0, 0), + (152060, 216, 131, null, null, 0, 0, 0), + (152061, 216, 131, null, null, 0, 0, 0), + (152062, 214, 131, null, null, 0, 0, 0), + (152063, 214, 131, null, null, 0, 0, 0), + (152064, 130, 130, null, null, 0, 0, 1), + (152065, 129, 127, null, null, 0, 0, 1), + (152066, 129, 127, null, null, 0, 0, 1), + (152067, 128, 124, null, null, 0, 0, 1), + (152068, 128, 124, null, null, 0, 0, 1), + (152069, 127, 121, null, null, 0, 0, 1), + (152070, 127, 121, null, null, 0, 0, 1), + (152071, 126, 118, null, null, 0, 0, 1), + (152072, 126, 118, null, null, 0, 0, 1), + (152073, 125, 115, null, null, 0, 0, 1), + (152074, 125, 115, null, null, 0, 0, 1), + (152075, 124, 112, null, null, 0, 0, 1), + (152076, 124, 112, null, null, 0, 0, 1), + (152077, 123, 109, null, null, 0, 0, 1), + (152078, 123, 109, null, null, 0, 0, 1), + (152079, 122, 106, null, null, 0, 0, 1), + (152080, 122, 106, null, null, 0, 0, 1), + (152081, 120, 100, null, null, 0, 0, 1), + (152082, 120, 100, null, null, 0, 0, 1), + (152083, 70, 60, null, null, 0, 0, 1), + (152084, 70, 60, null, null, 0, 0, 1), + (152085, 70, 60, null, null, 0, 0, 1), + (152086, 70, 60, null, null, 0, 0, 1), + (152087, 70, 60, null, null, 0, 0, 1), + (152088, 70, 60, null, null, 0, 0, 1), + (152089, 70, 60, null, null, 0, 0, 1), + (152090, 70, 60, null, null, 0, 0, 1), + (152091, 70, 60, null, null, 0, 0, 1), + (152092, 70, 60, null, null, 0, 0, 1), + (152093, 70, 60, null, null, 0, 0, 1), + (152094, 70, 60, null, null, 0, 0, 1), + (152095, 70, 60, null, null, 0, 0, 1), + (152096, 110, 100, null, null, 0, 0, 1), + (152097, 110, 100, null, null, 0, 0, 1), + (152098, 110, 100, null, null, 0, 0, 1), + (152099, 110, 100, null, null, 0, 0, 1), + (152100, 110, 100, null, null, 0, 0, 1), + (152101, 110, 100, null, null, 0, 0, 1), + (152102, 110, 100, null, null, 0, 0, 1), + (152103, 110, 100, null, null, 0, 0, 1), + (152104, 110, 100, null, null, 0, 0, 1), + (152105, 110, 100, null, null, 0, 0, 1), + (152106, 110, 100, null, null, 0, 0, 1), + (152107, 110, 100, null, null, 0, 0, 1), + (152108, 110, 100, null, null, 0, 0, 1), + (152109, 100, 100, null, null, 0, 0, 1), + (152110, 126, 112, null, null, 0, 0, 1), + (152111, 127, 112, null, null, 0, 0, 1), + (152112, 153, 124, null, null, 0, 0, 1), + (152113, 154, 124, null, null, 0, 0, 1), + (152114, 181, 136, null, null, 0, 0, 1), + (152115, 181, 136, null, null, 0, 0, 1), + (152116, 208, 148, null, null, 0, 0, 1), + (152117, 209, 148, null, null, 0, 0, 1), + (152118, 235, 160, null, null, 0, 0, 1), + (152119, 236, 160, null, null, 0, 0, 1), + (152120, 262, 172, null, null, 0, 0, 1), + (152121, 263, 172, null, null, 0, 0, 1), + (152122, 130, 130, null, null, 0, 0, 1), + (152123, 140, 133, null, null, 0, 0, 1), + (152124, 141, 133, null, null, 0, 0, 1), + (152125, 151, 136, null, null, 0, 0, 1), + (152126, 151, 136, null, null, 0, 0, 1), + (152127, 161, 139, null, null, 0, 0, 1), + (152130, 172, 142, null, null, 0, 0, 1), + (152131, 182, 145, null, null, 0, 0, 1), + (152132, 183, 145, null, null, 0, 0, 1), + (152133, 193, 148, null, null, 0, 0, 1), + (152134, 193, 148, null, null, 0, 0, 1), + (152135, 100, 300, null, null, 0, 0, 1), + (152136, 100, 300, null, null, 0, 0, 1), + (152137, 100, 300, null, null, 0, 0, 1), + (152138, 100, 300, null, null, 0, 0, 1), + (152139, 100, 300, null, null, 0, 0, 1), + (152140, 100, 300, null, null, 0, 0, 1), + (152141, 100, 300, null, null, 0, 0, 1), + (152142, 100, 300, null, null, 0, 0, 1), + (152143, 100, 300, null, null, 0, 0, 1), + (152144, 100, 300, null, null, 0, 0, 1), + (152145, 100, 300, null, null, 0, 0, 1), + (152146, 100, 300, null, null, 0, 0, 1), + (152147, 100, 300, null, null, 0, 0, 1), + (152148, 100, 300, null, null, 0, 0, 1), + (152149, 100, 300, null, null, 0, 0, 1), + (152150, 100, 300, null, null, 0, 0, 1), + (152151, 100, 300, null, null, 0, 0, 1), + (152152, 100, 300, null, null, 0, 0, 1), + (152153, 100, 300, null, null, 0, 0, 1), + (152154, 100, 113, null, null, 0, 0, 1), + (152155, 100, 113, null, null, 0, 0, 1), + (152156, 100, 113, null, null, 0, 0, 1), + (152157, 100, 113, null, null, 0, 0, 1), + (152158, 100, 113, null, null, 0, 0, 1), + (152159, 100, 113, null, null, 0, 0, 1), + (152160, 100, 113, null, null, 0, 0, 1), + (152161, 100, 113, null, null, 0, 0, 1), + (152162, 100, 113, null, null, 0, 0, 1), + (152163, 100, 113, null, null, 0, 0, 1), + (152164, 100, 113, null, null, 0, 0, 1), + (152165, 100, 113, null, null, 0, 0, 1), + (152166, 100, 113, null, null, 0, 0, 1), + (152167, 100, 113, null, null, 0, 0, 1), + (152168, 100, 113, null, null, 0, 0, 1), + (152169, 100, 113, null, null, 0, 0, 1), + (152170, 100, 113, null, null, 0, 0, 1), + (152171, 100, 113, null, null, 0, 0, 1), + (152172, 100, 113, null, null, 0, 0, 1), + (152279, 150, 130, null, 2500, 0, 0, 0), + (152280, 150, 130, null, 2500, 0, 0, 0), + (152281, 150, 130, null, 2500, 0, 0, 0), + (152282, 150, 130, null, 2500, 0, 0, 0), + (152283, 150, 130, null, 2500, 0, 0, 0), + (152284, 150, 130, null, 2500, 0, 0, 0), + (152285, 150, 130, null, 2500, 0, 0, 0), + (152286, 150, 130, null, 2500, 0, 0, 0), + (152287, 150, 130, null, 2500, 0, 0, 0), + (152288, 150, 130, null, 2500, 0, 0, 0), + (152289, 150, 130, null, 2500, 0, 0, 0), + (152290, 150, 130, null, 2500, 0, 0, 0), + (152291, 150, 130, null, 2500, 0, 0, 0), + (152292, 150, 130, null, 2500, 0, 0, 0), + (152293, 150, 130, null, 2500, 0, 0, 0), + (152294, 150, 130, null, 2500, 0, 0, 0), + (152295, 150, 130, null, 2500, 0, 0, 0), + (152296, 150, 130, null, 2500, 0, 0, 0), + (152297, 150, 130, null, 2500, 0, 0, 0), + (152298, 120, 110, null, null, 1, 0, 0), + (152302, 120, 110, null, null, 1, 0, 0), + (152303, 120, 110, null, null, 1, 0, 0), + (152304, 120, 110, null, null, 1, 0, 0), + (152305, 120, 110, null, null, 1, 0, 0), + (152306, 120, 110, null, null, 1, 0, 0), + (152307, 120, 110, null, null, 1, 0, 0), + (152308, 120, 110, null, null, 1, 0, 0), + (152309, 120, 110, null, null, 1, 0, 0), + (152310, 120, 110, null, null, 1, 0, 0), + (152311, 170, 130, null, null, 0, 0, 0), + (152312, 170, 130, null, null, 0, 0, 0), + (152313, 170, 130, null, null, 0, 0, 0), + (152314, 170, 130, null, null, 0, 0, 0), + (152315, 170, 130, null, null, 0, 0, 0), + (152316, 170, 130, null, null, 0, 0, 0), + (152317, 170, 130, null, null, 0, 0, 0), + (152318, 170, 130, null, null, 0, 0, 0), + (152319, 170, 130, null, null, 0, 0, 0), + (152320, 170, 130, null, null, 0, 0, 0), + (152321, 170, 130, null, null, 0, 0, 0), + (152322, 170, 130, null, null, 0, 0, 0), + (152323, 170, 130, null, null, 0, 0, 0), + (152324, 170, 130, null, null, 0, 0, 0), + (152325, 170, 130, null, null, 0, 0, 0), + (152326, 100, 280, null, 2500, 0, 0, 0), + (152327, 100, 280, null, 2500, 0, 0, 0), + (152328, 100, 280, null, 2500, 0, 0, 0), + (152329, 100, 280, null, 2500, 0, 0, 0), + (152330, 100, 280, null, 2500, 0, 0, 0), + (152331, 100, 280, null, 2500, 0, 0, 0), + (152332, 100, 280, null, 2500, 0, 0, 0), + (152333, 100, 280, null, 2500, 0, 0, 0), + (152334, 100, 280, null, 2500, 0, 0, 0), + (152335, 100, 280, null, 2500, 0, 0, 0), + (152336, 100, 280, null, 2500, 0, 0, 0), + (152337, 100, 280, null, 2500, 0, 0, 0), + (152338, 100, 280, null, 2500, 0, 0, 0), + (152339, 250, 350, null, null, 0, 0, 0), + (152340, 250, 350, null, null, 0, 0, 0), + (152341, 250, 350, null, null, 0, 0, 0), + (152342, 250, 350, null, null, 0, 0, 0), + (152343, 250, 350, null, null, 0, 0, 0), + (152344, 250, 350, null, null, 0, 0, 0), + (152345, 250, 350, null, null, 0, 0, 0), + (152346, 250, 350, null, null, 0, 0, 0), + (152347, 250, 350, null, null, 0, 0, 0), + (152348, 250, 350, null, null, 0, 0, 0), + (152349, 250, 350, null, null, 0, 0, 0), + (152350, 250, 350, null, null, 0, 0, 0), + (152351, 250, 350, null, null, 0, 0, 0), + (152352, 250, 350, null, null, 0, 0, 0), + (152353, 250, 350, null, null, 0, 0, 0), + (152354, 250, 350, null, null, 0, 0, 0), + (152355, 250, 350, null, null, 0, 0, 0), + (152356, 250, 350, null, null, 0, 0, 0), + (152357, 250, 350, null, null, 0, 0, 0), + (152358, 250, 150, null, null, 0, 0, 0), + (152359, 225, 143, null, null, 0, 0, 0), + (152360, 225, 142, null, null, 0, 0, 0), + (152361, 200, 135, null, null, 0, 0, 0), + (152362, 200, 135, null, null, 0, 0, 0), + (152363, 175, 128, null, null, 0, 0, 0), + (152364, 175, 127, null, null, 0, 0, 0), + (152365, 151, 120, null, null, 0, 0, 0), + (152366, 150, 120, null, null, 0, 0, 0), + (152367, 150, 150, null, null, 0, 0, 0), + (152368, 150, 150, null, null, 0, 0, 0), + (152369, 150, 150, null, null, 0, 0, 0), + (152370, 150, 150, null, null, 0, 0, 0), + (152371, 150, 150, null, null, 0, 0, 0), + (152372, 150, 150, null, null, 0, 0, 0), + (152373, 150, 150, null, null, 0, 0, 0), + (152374, 150, 150, null, null, 0, 0, 0), + (152375, 150, 150, null, null, 0, 0, 0), + (152376, 150, 150, null, null, 0, 0, 0), + (152377, 150, 150, null, null, 0, 0, 0), + (152378, 150, 150, null, null, 0, 0, 0), + (152379, 150, 150, null, null, 0, 0, 0), + (152380, 150, 150, null, null, 0, 0, 0), + (152381, 150, 150, null, null, 0, 0, 0), + (152382, 150, 150, null, null, 0, 0, 0), + (152383, 150, 150, null, null, 0, 0, 0), + (152384, 150, 150, null, null, 0, 0, 0), + (152385, 150, 150, null, null, 0, 0, 0), + (152386, 150, 155, null, null, 0, 0, 0), + (152387, 150, 155, null, null, 0, 0, 0), + (152388, 150, 155, null, null, 0, 0, 0), + (152389, 150, 155, null, null, 0, 0, 0), + (152390, 150, 155, null, null, 0, 0, 0), + (152391, 150, 155, null, null, 0, 0, 0), + (152392, 150, 155, null, null, 0, 0, 0), + (152393, 150, 155, null, null, 0, 0, 0), + (152394, 150, 155, null, null, 0, 0, 0), + (152395, 150, 155, null, null, 0, 0, 0), + (152396, 150, 155, null, null, 0, 0, 0), + (152397, 150, 155, null, null, 0, 0, 0), + (152398, 150, 155, null, null, 0, 0, 0), + (152399, 150, 155, null, null, 0, 0, 0), + (152400, 150, 155, null, null, 0, 0, 0), + (152401, 150, 155, null, null, 0, 0, 0), + (152402, 150, 155, null, null, 0, 0, 0), + (152403, 150, 155, null, null, 0, 0, 0), + (152404, 150, 155, null, null, 0, 0, 0), + (152428, 120, 200, null, null, 0, 0, 0), + (152431, 120, 200, null, null, 0, 0, 0), + (152432, 120, 200, null, null, 0, 0, 0), + (152433, 120, 200, null, null, 0, 0, 0), + (152434, 120, 200, null, null, 0, 0, 0), + (152435, 120, 200, null, null, 0, 0, 0), + (152436, 250, 250, null, null, 0, 0, 0), + (152437, 250, 250, null, null, 0, 0, 0), + (152438, 250, 250, null, null, 0, 0, 0), + (152723, 30, 220, null, null, 0, 0, 0), + (152724, 30, 220, null, null, 0, 0, 0), + (152725, 30, 220, null, null, 0, 0, 0), + (152726, 30, 220, null, null, 0, 0, 0), + (152727, 30, 220, null, null, 0, 0, 0), + (152728, 30, 220, null, null, 0, 0, 0), + (152729, 30, 220, null, null, 0, 0, 0), + (152730, 30, 220, null, null, 0, 0, 0), + (152731, 30, 220, null, null, 0, 0, 0), + (152732, 120, 130, null, null, 0, 0, 0), + (152733, 120, 127, null, null, 0, 0, 0), + (152734, 120, 127, null, null, 0, 0, 0), + (152735, 120, 126, null, null, 0, 0, 0), + (152736, 120, 125, null, null, 0, 0, 0), + (152737, 120, 124, null, null, 0, 0, 0), + (152738, 120, 124, null, null, 0, 0, 0), + (152739, 120, 123, null, null, 0, 0, 0), + (152740, 120, 122, null, null, 0, 0, 0), + (152741, 120, 109, null, null, 0, 0, 0), + (152742, 120, 109, null, null, 0, 0, 0), + (152743, 120, 105, null, null, 0, 0, 0), + (152744, 120, 104, null, null, 0, 0, 0), + (152745, 120, 100, null, null, 0, 0, 0), + (152746, 120, 100, null, null, 0, 0, 0), + (152747, 150, 130, 8100, null, 0, 0, 0), + (152748, 150, 127, 8100, null, 0, 0, 0), + (152749, 150, 127, 8100, null, 0, 0, 0), + (152750, 150, 124, 8100, null, 0, 0, 0), + (152751, 150, 124, 8100, null, 0, 0, 0), + (152752, 150, 121, 8100, null, 0, 0, 0), + (152753, 150, 121, 8100, null, 0, 0, 0), + (152754, 150, 118, 8100, null, 0, 0, 0), + (152755, 150, 118, 8100, null, 0, 0, 0), + (152756, 150, 115, 8100, null, 0, 0, 0), + (152757, 150, 115, 8100, null, 0, 0, 0), + (152758, 150, 112, 8100, null, 0, 0, 0), + (152759, 150, 112, 8100, null, 0, 0, 0), + (152760, 150, 109, 8100, null, 0, 0, 0), + (152761, 150, 109, 8100, null, 0, 0, 0), + (152762, 150, 106, 8100, null, 0, 0, 0), + (152763, 150, 106, 8100, null, 0, 0, 0), + (152764, 150, 100, 8100, null, 0, 0, 0), + (152765, 150, 100, 8100, null, 0, 0, 0), + (152766, 20, 180, null, null, 0, 0, 0), + (152767, 20, 180, null, null, 0, 0, 0), + (152768, 20, 180, null, null, 0, 0, 0), + (152769, 20, 180, null, null, 0, 0, 0), + (152770, 20, 180, null, null, 0, 0, 0), + (152771, 20, 180, null, null, 0, 0, 0), + (152772, 20, 180, null, null, 0, 0, 0), + (152773, 20, 180, null, null, 0, 0, 0), + (152774, 20, 180, null, null, 0, 0, 0), + (152775, 20, 180, null, null, 0, 0, 0), + (152776, 20, 180, null, null, 0, 0, 0), + (153083, 130, 130, null, null, 0, 1, 0), + (153084, 111, 111, null, null, 0, 1, 0), + (153085, 110, 110, null, null, 0, 1, 0), + (153086, 91, 91, null, null, 0, 1, 0), + (153087, 90, 90, null, null, 0, 1, 0), + (153088, 71, 71, null, null, 0, 1, 0), + (153089, 70, 70, null, null, 0, 1, 0), + (153090, 50, 50, null, null, 0, 1, 0), + (153091, 50, 50, null, null, 0, 1, 0), + (153975, 261, 650, null, null, 0, 0, 0), + (153976, 150, 250, 12000, 2500, 0, 0, 0), + (153977, 250, 150, null, 2500, 0, 0, 0), + (153978, 92, 97, null, null, 0, 1, 0), + (153979, 100, 300, null, 2600, 0, 0, 0), + (153980, 100, 300, null, null, 1, 0, 0), + (153981, 250, 250, null, null, 1, 0, 1), + (153996, 244, 247, 8300, 2800, 0, 0, 0), + (153997, 243, 245, 8300, 2800, 0, 0, 0), + (154052, 100, 100, null, null, 0, 0, 0), + (154069, 205, 160, null, null, 0, 0, 0), + (154070, 180, 160, null, null, 0, 0, 0), + (154071, 120, 110, null, null, 1, 0, 0), + (154503, 240, 220, null, null, 0, 1, 0), + (154504, 240, 220, null, null, 0, 1, 0), + (154505, 240, 220, null, null, 0, 1, 0), + (154686, 250, 250, null, null, 0, 0, 0), + (154687, 50, 50, null, null, 0, 0, 0), + (154796, 155, 125, null, 2400, 0, 0, 0), + (154797, 155, 125, null, 2400, 0, 0, 0), + (154812, 155, 125, null, 2400, 0, 0, 0), + (154813, 155, 125, null, 2400, 0, 0, 0), + (154814, 155, 125, null, 2400, 0, 0, 0), + (154815, 200, 100, null, 2200, 0, 0, 0), + (154816, 200, 50, null, 2200, 0, 0, 0), + (154817, 200, 50, null, 2200, 0, 0, 0), + (154831, 101, 139, null, null, 0, 0, 0), + (154832, 101, 139, null, null, 0, 0, 0), + (154833, 101, 139, null, null, 0, 0, 0), + (154891, 99, 221, null, null, 0, 0, 0), + (154892, 99, 221, null, null, 0, 0, 0), + (154893, 99, 221, null, null, 0, 0, 0), + (154896, 180, 180, null, null, 0, 0, 0), + (154897, 180, 180, null, null, 0, 0, 0), + (154898, 150, 280, null, null, 0, 0, 0), + (154899, 150, 280, null, null, 0, 0, 0), + (154900, 150, 280, null, null, 0, 0, 0), + (154901, 150, 280, null, null, 0, 0, 0), + (154902, 180, 180, null, null, 0, 0, 0), + (154903, 180, 180, null, null, 0, 0, 0), + (154905, 99, 221, null, null, 0, 0, 0), + (154906, 99, 221, null, null, 0, 0, 0), + (154907, 99, 221, null, null, 0, 0, 0), + (154924, 100, 300, null, null, 0, 0, 0), + (154925, 100, 300, null, null, 0, 0, 0), + (154926, 100, 300, null, null, 0, 0, 0), + (154927, 100, 300, null, null, 0, 0, 0), + (154928, 100, 300, null, null, 0, 0, 0), + (154929, 100, 300, null, null, 0, 0, 0), + (154930, 100, 300, null, null, 0, 0, 0), + (154931, 100, 300, null, null, 0, 0, 0), + (154932, 100, 300, null, null, 0, 0, 0), + (155707, 10, 50, null, null, 0, 0, 0), + (155708, 10, 50, null, null, 0, 0, 0), + (155835, 151, 129, null, null, 0, 1, 0), + (155836, 150, 100, null, null, 0, 1, 0), + (155837, 150, 100, null, null, 0, 1, 0), + (155838, 150, 150, null, null, 0, 1, 0), + (155839, 150, 150, null, null, 0, 1, 0), + (155840, 150, 150, null, null, 0, 1, 0), + (155841, 150, 150, null, null, 0, 1, 0), + (155842, 150, 150, null, null, 0, 1, 0), + (155843, 150, 150, null, null, 0, 1, 0), + (155844, 130, 130, null, null, 0, 1, 0), + (155845, 130, 130, null, null, 0, 1, 0), + (155846, 130, 130, null, null, 0, 1, 0), + (155847, 150, 114, null, null, 0, 1, 0), + (155848, 150, 110, null, null, 0, 1, 0), + (155849, 150, 110, null, null, 0, 1, 0), + (155850, 120, 250, null, null, 0, 0, 0), + (155853, 100, 250, null, null, 0, 0, 0), + (155854, 100, 250, null, null, 0, 0, 0), + (155855, 120, 130, null, null, 0, 1, 0), + (155856, 120, 120, null, null, 0, 1, 0), + (155857, 120, 120, null, null, 0, 1, 0), + (155858, 250, 250, null, null, 0, 0, 0), + (155859, 250, 250, null, null, 0, 0, 0), + (155860, 250, 250, null, null, 0, 0, 0), + (155861, 99, 221, null, null, 0, 0, 0), + (155862, 99, 221, null, null, 0, 0, 0), + (155863, 99, 221, null, null, 0, 0, 0), + (156034, 90, 90, null, null, 0, 0, 0), + (156037, 90, 90, null, null, 0, 0, 0), + (156038, 90, 90, null, null, 0, 0, 0), + (156045, 90, 90, null, null, 0, 0, 0), + (156046, 90, 90, null, null, 0, 0, 0), + (156047, 90, 90, null, null, 0, 0, 0), + (156599, 50, 50, null, null, 0, 0, 0), + (156717, 230, 200, 3000, null, 0, 0, 0), + (156718, 230, 200, 3000, null, 0, 0, 0), + (156719, 230, 200, 3000, null, 0, 0, 0), + (156764, 250, 250, null, null, 0, 0, 0), + (156765, 250, 250, null, null, 0, 0, 0), + (156769, 245, 249, null, null, 0, 0, 1), + (156770, 100, 300, null, null, 0, 0, 0), + (156771, 129, 130, null, null, 1, 0, 0), + (157279, 250, 250, null, null, 0, 0, 0), + (157284, 160, 160, null, 2800, 0, 0, 0), + (157285, 160, 160, null, 2800, 0, 0, 0), + (157286, 160, 160, null, 2800, 0, 0, 0), + (157287, 160, 160, null, null, 1, 0, 0), + (157288, 160, 160, null, null, 1, 0, 0), + (157289, 160, 160, null, null, 1, 0, 0), + (157290, 160, 160, 9100, null, 0, 0, 0), + (157291, 160, 160, 9100, null, 0, 0, 0), + (157292, 160, 160, 9100, null, 0, 0, 0), + (157293, 180, 180, null, null, 0, 0, 0), + (157294, 180, 180, null, null, 0, 0, 0), + (157295, 180, 180, null, null, 0, 0, 0), + (157620, 150, 250, null, 2800, 1, 0, 0), + (157621, 150, 250, null, 2800, 1, 0, 0), + (157622, 150, 250, null, 2800, 1, 0, 0), + (157623, 150, 250, null, 2800, 1, 0, 0), + (157624, 150, 250, null, 2800, 1, 0, 0), + (157625, 150, 250, null, 2800, 1, 0, 0), + (157626, 150, 250, null, 2800, 1, 0, 0), + (157627, 150, 250, null, 2800, 1, 0, 0), + (157628, 150, 250, null, 2800, 1, 0, 0), + (157629, 150, 150, null, 2800, 0, 0, 0), + (157630, 150, 150, null, 2800, 0, 0, 0), + (157631, 150, 150, null, 2800, 0, 0, 0), + (157632, 150, 150, null, 2800, 0, 0, 0), + (157633, 150, 150, null, 2800, 0, 0, 0), + (157634, 150, 150, null, 2800, 0, 0, 0), + (157635, 150, 150, null, 2800, 0, 0, 0), + (157636, 50, 50, null, null, 0, 0, 0), + (157637, 50, 50, null, null, 0, 0, 0), + (157638, 50, 50, null, null, 0, 0, 0), + (157639, 50, 50, null, null, 0, 0, 0), + (157640, 50, 50, null, null, 0, 0, 0), + (157641, 50, 50, null, null, 0, 0, 0), + (157642, 50, 50, null, null, 0, 0, 0), + (157643, 50, 50, null, null, 0, 0, 0), + (157644, 50, 50, null, null, 0, 0, 0), + (157657, 180, 120, null, null, 0, 0, 1), + (157658, 143, 120, null, null, 0, 0, 1), + (157659, 142, 120, null, null, 0, 0, 1), + (157660, 100, 120, null, null, 0, 0, 1), + (157661, 100, 120, null, null, 0, 0, 1), + (157662, 110, 100, null, null, 1, 0, 0), + (157663, 110, 100, null, null, 1, 0, 0), + (157664, 110, 100, null, null, 1, 0, 0), + (157665, 110, 100, null, null, 1, 0, 0), + (157666, 110, 100, null, null, 1, 0, 0), + (157708, 300, 100, null, 2000, 0, 0, 0), + (157709, 300, 100, null, 2000, 0, 0, 0), + (157710, 300, 100, null, 2000, 0, 0, 0), + (157711, 300, 100, null, 2000, 0, 0, 0), + (157712, 300, 100, null, 2000, 0, 0, 0), + (157713, 300, 100, null, 2000, 0, 0, 0), + (157714, 300, 100, null, 2000, 0, 0, 0), + (157715, 300, 100, null, 2000, 0, 0, 0), + (157716, 300, 100, null, 2000, 0, 0, 0), + (157760, 196, 115, null, null, 0, 1, 0), + (157761, 400, 720, null, null, 0, 0, 0), + (157818, 100, 100, null, null, 0, 0, 0), + (157819, 100, 100, null, null, 0, 0, 0), + (157820, 100, 100, null, null, 0, 0, 0), + (157821, 100, 150, null, null, 0, 0, 0), + (157822, 100, 150, null, null, 0, 0, 0), + (157823, 100, 150, null, null, 0, 0, 0), + (157824, 100, 120, null, null, 0, 0, 0), + (157825, 100, 120, null, null, 0, 0, 0), + (157826, 100, 120, null, null, 0, 0, 0), + (157854, 300, 150, null, null, 0, 1, 0), + (157855, 300, 150, null, null, 0, 1, 0), + (157856, 300, 150, null, null, 0, 1, 0), + (157898, 120, 160, null, null, 0, 0, 0), + (157899, 120, 160, null, null, 0, 0, 0), + (157900, 120, 160, null, null, 0, 0, 0), + (157901, 140, 120, null, null, 0, 1, 0), + (157902, 140, 120, null, null, 0, 1, 0), + (157903, 140, 120, null, null, 0, 1, 0), + (157970, 100, 100, null, null, 0, 0, 0), + (157971, 100, 100, null, null, 0, 0, 0), + (157972, 100, 100, null, null, 0, 0, 0), + (157973, 100, 100, null, null, 0, 0, 0), + (157975, 100, 100, null, null, 0, 0, 0), + (157976, 100, 100, null, null, 0, 0, 0), + (157977, 100, 100, null, null, 0, 0, 0), + (157978, 100, 100, null, null, 0, 0, 0), + (157981, 100, 100, null, null, 0, 0, 0), + (157982, 100, 100, null, null, 0, 0, 0), + (158295, 130, 120, null, null, 0, 1, 0), + (158296, 130, 120, null, null, 0, 1, 0), + (158297, 130, 120, null, null, 0, 1, 0), + (158298, 350, 250, null, null, 0, 0, 0), + (158299, 400, 250, null, null, 0, 0, 0), + (158300, 400, 250, null, null, 0, 0, 0), + (158321, 170, 170, null, null, 0, 1, 0), + (158322, 119, 191, null, null, 0, 1, 0), + (158403, 170, 170, null, null, 0, 1, 0), + (158409, 100, 50, null, null, 0, 1, 0), + (158481, 100, 50, null, null, 0, 1, 0), + (158841, 150, 150, null, null, 0, 0, 0), + (158842, 150, 150, null, null, 0, 0, 0), + (158843, 150, 150, null, null, 0, 0, 0), + (158885, 200, 550, null, null, 0, 0, 0), + (158886, 200, 550, null, null, 0, 0, 0), + (158887, 200, 550, null, null, 0, 0, 0), + (158912, 400, 210, null, null, 0, 1, 0), + (158913, 100, 100, null, null, 0, 1, 0), + (158960, 210, 210, null, 2800, 1, 0, 0), + (158961, 210, 210, null, 2800, 1, 0, 0), + (158962, 210, 210, null, 2800, 1, 0, 0), + (158963, 350, 350, null, null, 0, 0, 0), + (158964, 350, 350, null, null, 0, 0, 0), + (158965, 350, 350, null, null, 0, 0, 0), + (158966, 350, 350, null, null, 0, 0, 0), + (158967, 350, 350, null, null, 0, 0, 0), + (158968, 180, 180, null, null, 0, 0, 0), + (158969, 180, 180, null, null, 0, 0, 0), + (158970, 180, 180, null, null, 0, 0, 0), + (158971, 180, 180, null, null, 0, 0, 0), + (158972, 180, 180, null, null, 0, 0, 0), + (158973, 180, 180, null, null, 0, 0, 0), + (158988, 180, 180, null, null, 0, 0, 0), + (158989, 180, 180, null, null, 0, 0, 0), + (158990, 180, 180, null, null, 0, 0, 0), + (158991, 180, 180, null, null, 0, 0, 0), + (158992, 180, 180, null, null, 0, 0, 0), + (158993, 180, 180, null, null, 0, 0, 0), + (158994, 180, 180, null, null, 0, 0, 0), + (158995, 180, 180, null, null, 0, 0, 0), + (158996, 180, 180, null, null, 0, 0, 0), + (159007, 145, 125, null, null, 0, 0, 0), + (159008, 145, 125, null, null, 0, 0, 0), + (159009, 145, 125, null, null, 0, 0, 0), + (159021, 250, 250, null, null, 0, 0, 0), + (159022, 250, 250, null, null, 0, 0, 0), + (159023, 250, 250, null, null, 0, 0, 0), + (159024, 350, 350, null, 3000, 0, 0, 0), + (159025, 350, 350, null, 3000, 0, 0, 0), + (159026, 350, 350, null, 3000, 0, 0, 0), + (159027, 350, 350, null, 3000, 0, 0, 0), + (159028, 350, 350, null, 3000, 0, 0, 0), + (159029, 350, 350, null, 3000, 0, 0, 0), + (159030, 350, 350, null, 3000, 0, 0, 0), + (159031, 350, 350, null, 3000, 0, 0, 0), + (159032, 350, 350, null, 3000, 0, 0, 0), + (159033, 350, 350, null, 3000, 0, 0, 0), + (159034, 350, 350, null, 3000, 0, 0, 0), + (159035, 200, 200, null, null, 1, 0, 0), + (159036, 200, 200, null, null, 1, 0, 0), + (159037, 200, 200, null, null, 1, 0, 0), + (159038, 200, 200, null, null, 1, 0, 0), + (159039, 200, 200, null, null, 1, 0, 0), + (159040, 200, 700, null, null, 0, 0, 0), + (159041, 200, 700, null, null, 0, 0, 0), + (159042, 200, 700, null, null, 0, 0, 0), + (159043, 200, 700, null, null, 0, 0, 0), + (159044, 200, 700, null, null, 0, 0, 0), + (159045, 200, 700, null, null, 0, 0, 0), + (159046, 200, 700, null, null, 0, 0, 0), + (159047, 200, 700, null, null, 0, 0, 0), + (159048, 200, 700, null, null, 0, 0, 0), + (159073, 250, 250, null, null, 0, 0, 0), + (159074, 250, 250, null, null, 0, 0, 0), + (159075, 250, 250, null, null, 0, 0, 0), + (159076, 250, 250, null, null, 0, 0, 0), + (159077, 250, 250, null, null, 0, 0, 0), + (159078, 250, 250, null, null, 0, 0, 0), + (159079, 250, 250, null, null, 0, 0, 0), + (159080, 250, 250, null, null, 0, 0, 0), + (159081, 250, 250, null, null, 0, 0, 0), + (159082, 250, 250, null, null, 0, 0, 0), + (159083, 310, 120, null, null, 1, 0, 0), + (159087, 310, 120, null, null, 1, 0, 0), + (159088, 310, 120, null, null, 1, 0, 0), + (159089, 310, 120, null, null, 1, 0, 0), + (159090, 310, 120, null, null, 1, 0, 0), + (159109, 200, 100, null, 2600, 0, 0, 0), + (159110, 200, 100, null, 2600, 0, 0, 0), + (159111, 200, 100, null, 2600, 0, 0, 0), + (159112, 200, 100, null, 2600, 0, 0, 0), + (159113, 200, 100, null, 2600, 0, 0, 0), + (159114, 200, 100, null, 2600, 0, 0, 0), + (159115, 200, 100, null, 2600, 0, 0, 0), + (159135, 200, 550, null, null, 0, 0, 0), + (159136, 200, 550, null, null, 0, 0, 0), + (160031, 261, 700, null, null, 0, 0, 0), + (160094, 130, 220, null, null, 0, 1, 0), + (160095, 130, 220, null, null, 0, 1, 0), + (160096, 130, 220, null, null, 0, 1, 0), + (160097, 130, 220, null, null, 0, 1, 0), + (160098, 130, 220, null, null, 0, 1, 0), + (160099, 130, 220, null, null, 0, 1, 0), + (160100, 130, 220, null, null, 0, 1, 0), + (160101, 130, 220, null, null, 0, 1, 0), + (160102, 130, 220, null, null, 0, 1, 0), + (160103, 120, 120, null, null, 0, 0, 1), + (160104, 120, 120, null, null, 0, 0, 1), + (160105, 120, 120, null, null, 0, 0, 1), + (160106, 120, 120, null, null, 0, 0, 1), + (160107, 120, 120, null, null, 0, 0, 1), + (160108, 120, 120, null, null, 0, 0, 1), + (160109, 120, 120, null, null, 0, 0, 1), + (160110, 120, 120, null, null, 0, 0, 1), + (160111, 120, 120, null, null, 0, 0, 1), + (160112, 200, 200, null, null, 0, 0, 0), + (160113, 200, 200, null, null, 0, 0, 0), + (160114, 200, 200, null, null, 0, 0, 0), + (160115, 200, 200, null, null, 0, 0, 0), + (160116, 200, 200, null, null, 0, 0, 0), + (160117, 200, 200, null, null, 0, 0, 0), + (160118, 200, 200, null, null, 0, 0, 0), + (160119, 200, 200, null, null, 0, 0, 0), + (160120, 200, 200, null, null, 0, 0, 0), + (160121, 100, 100, null, null, 0, 0, 0), + (160122, 100, 100, null, null, 0, 0, 0), + (160123, 100, 100, null, null, 0, 0, 0), + (160125, 140, 130, null, null, 0, 1, 0), + (160126, 140, 130, null, null, 0, 1, 0), + (160127, 140, 130, null, null, 0, 1, 0), + (160128, 140, 130, null, null, 0, 1, 0), + (160129, 140, 130, null, null, 0, 1, 0), + (160130, 140, 130, null, null, 0, 1, 0), + (160131, 140, 130, null, null, 0, 1, 0), + (160132, 140, 130, null, null, 0, 1, 0), + (160133, 140, 130, null, null, 0, 1, 0), + (160134, 250, 250, 4500, 1500, 1, 0, 0), + (160135, 250, 250, 4500, 1500, 1, 0, 0), + (160136, 250, 250, 4500, 1500, 1, 0, 0), + (160137, 250, 250, 4500, 1500, 1, 0, 0), + (160138, 250, 250, 4500, 1500, 1, 0, 0), + (160139, 250, 250, 4500, 1500, 1, 0, 0), + (160140, 250, 250, 4500, 1500, 1, 0, 0), + (160145, 200, 200, null, 2800, 0, 0, 0), + (160146, 200, 200, null, 2800, 0, 0, 0), + (160147, 200, 200, null, 2800, 0, 0, 0), + (160148, 200, 200, null, 2800, 0, 0, 0), + (160149, 200, 200, null, 2800, 0, 0, 0), + (160150, 200, 200, null, 2800, 0, 0, 0), + (160151, 200, 200, null, 2800, 0, 0, 0), + (160152, 270, 140, null, 2000, 1, 0, 0), + (160153, 270, 140, null, 2000, 1, 0, 0), + (160154, 270, 140, null, 2000, 1, 0, 0), + (160155, 270, 140, null, 2000, 1, 0, 0), + (160156, 270, 140, null, 2000, 1, 0, 0), + (160157, 270, 140, null, 2000, 1, 0, 0), + (160158, 270, 140, null, 2000, 1, 0, 0), + (160159, 270, 140, null, 2000, 1, 0, 0), + (160160, 270, 140, null, 2000, 1, 0, 0), + (160161, 270, 140, null, 2000, 1, 0, 0), + (160162, 270, 140, null, 2000, 1, 0, 0), + (160163, 400, 200, null, null, 0, 0, 1), + (160164, 400, 200, null, null, 0, 0, 1), + (160165, 400, 200, null, null, 0, 0, 1), + (160166, 400, 200, null, null, 0, 0, 1), + (160167, 400, 200, null, null, 0, 0, 1), + (160168, 400, 200, null, null, 0, 0, 0), + (160169, 400, 200, null, null, 0, 0, 0), + (160170, 400, 200, null, null, 0, 0, 0), + (160171, 400, 200, null, null, 0, 0, 0), + (160172, 400, 200, null, null, 0, 0, 0), + (160173, 400, 200, null, null, 0, 0, 0), + (160174, 400, 200, null, null, 0, 0, 0), + (160175, 400, 200, null, null, 0, 0, 0), + (160176, 400, 200, null, null, 0, 0, 0), + (160177, 400, 200, null, null, 0, 0, 0), + (160178, 400, 200, null, null, 0, 0, 0), + (160179, 400, 200, null, null, 0, 0, 0), + (160180, 400, 200, null, null, 0, 0, 0), + (160181, 400, 200, null, null, 0, 0, 0), + (160182, 400, 200, null, null, 0, 0, 0), + (160183, 400, 200, null, null, 0, 0, 0), + (160184, 290, 110, null, null, 0, 0, 1), + (160185, 290, 110, null, null, 0, 0, 1), + (160186, 290, 110, null, null, 0, 0, 1), + (160187, 290, 110, null, null, 0, 0, 1), + (160188, 290, 110, null, null, 0, 0, 1), + (160189, 290, 110, null, null, 0, 0, 1), + (160190, 290, 110, null, null, 0, 0, 1), + (160191, 290, 110, null, null, 0, 0, 1), + (160192, 290, 110, null, null, 0, 0, 1), + (160193, 140, 140, null, null, 0, 0, 0), + (160194, 140, 140, null, null, 0, 0, 0), + (160195, 140, 140, null, null, 0, 0, 0), + (160196, 140, 140, null, null, 0, 0, 0), + (160197, 140, 140, null, null, 0, 0, 0), + (160198, 140, 140, null, null, 0, 0, 0), + (160199, 140, 140, null, null, 0, 0, 0), + (160200, 140, 140, null, null, 0, 0, 0), + (160201, 140, 140, null, null, 0, 0, 0), + (160202, 300, 120, null, null, 0, 1, 0), + (160203, 300, 120, null, null, 0, 1, 0), + (160204, 300, 120, null, null, 0, 1, 0), + (160205, 300, 120, null, null, 0, 1, 0), + (160206, 300, 120, null, null, 0, 1, 0), + (160207, 250, 100, null, 1800, 0, 0, 0), + (160208, 250, 100, null, 1800, 0, 0, 0), + (160209, 250, 100, null, 1800, 0, 0, 0), + (160210, 220, 220, null, null, 0, 1, 0), + (160211, 220, 220, null, null, 0, 1, 0), + (160212, 220, 220, null, null, 0, 1, 0), + (160213, 250, 150, null, null, 0, 1, 0), + (160214, 250, 150, null, null, 0, 1, 0), + (160215, 250, 150, null, null, 0, 1, 0), + (160216, 250, 250, null, null, 0, 0, 0), + (160217, 250, 250, null, null, 0, 0, 0), + (160218, 250, 250, null, null, 0, 0, 0), + (160219, 170, 170, null, null, 0, 1, 0), + (160220, 170, 170, null, null, 0, 1, 0), + (160221, 170, 170, null, null, 0, 1, 0), + (160222, 170, 170, null, null, 0, 1, 0), + (160223, 170, 170, null, null, 0, 1, 0), + (160224, 150, 130, null, null, 0, 1, 0), + (160225, 150, 130, null, null, 0, 1, 0), + (160226, 150, 130, null, null, 0, 1, 0), + (160227, 150, 130, null, null, 0, 1, 0), + (160228, 150, 130, null, null, 0, 1, 0), + (160229, 150, 130, null, null, 0, 1, 0), + (160230, 150, 130, null, null, 0, 1, 0), + (160231, 150, 130, null, null, 0, 1, 0), + (160232, 150, 130, null, null, 0, 1, 0), + (160233, 200, 200, null, null, 0, 1, 0), + (160234, 200, 200, null, null, 0, 1, 0), + (160235, 200, 200, null, null, 0, 1, 0), + (160236, 200, 200, null, null, 0, 1, 0), + (160237, 200, 200, null, null, 0, 1, 0), + (160238, 200, 200, null, null, 0, 1, 0), + (160239, 200, 200, null, null, 0, 0, 0), + (160240, 200, 200, null, null, 0, 0, 0), + (160241, 200, 200, null, null, 0, 0, 0), + (160242, 200, 200, null, null, 0, 0, 0), + (160243, 200, 200, null, null, 0, 0, 0), + (160244, 200, 200, null, null, 0, 0, 0), + (160245, 120, 70, null, null, 1, 0, 0), + (160246, 120, 70, null, null, 1, 0, 0), + (160247, 120, 70, null, null, 1, 0, 0), + (160248, 120, 70, null, null, 1, 0, 0), + (160249, 120, 70, null, null, 1, 0, 0), + (160250, 120, 70, null, null, 1, 0, 0), + (160251, 120, 70, null, null, 1, 0, 0), + (160252, 120, 70, null, null, 1, 0, 0), + (160253, 120, 70, null, null, 1, 0, 0), + (160254, 120, 70, null, null, 1, 0, 0), + (160255, 120, 70, null, null, 1, 0, 0), + (160256, 120, 70, null, null, 1, 0, 0), + (160257, 120, 70, null, null, 1, 0, 0), + (160258, 120, 70, null, null, 1, 0, 0), + (160259, 120, 70, null, null, 1, 0, 0), + (160260, 120, 70, null, null, 1, 0, 0), + (160261, 120, 70, null, null, 1, 0, 0), + (160262, 120, 70, null, null, 1, 0, 0), + (160263, 120, 70, null, null, 1, 0, 0), + (160264, 150, 110, null, null, 1, 0, 0), + (160265, 150, 110, null, null, 1, 0, 0), + (160266, 150, 110, null, null, 1, 0, 0), + (160267, 150, 110, null, null, 1, 0, 0), + (160268, 150, 110, null, null, 1, 0, 0), + (160269, 150, 110, null, null, 1, 0, 0), + (160270, 150, 110, null, null, 1, 0, 0), + (160271, 150, 110, null, null, 1, 0, 0), + (160272, 150, 110, null, null, 1, 0, 0), + (160273, 100, 300, null, null, 0, 0, 0), + (160274, 100, 300, null, null, 0, 0, 0), + (160275, 100, 300, null, null, 0, 0, 0), + (160279, 120, 200, null, null, 0, 0, 0), + (160280, 120, 200, null, null, 0, 0, 0), + (160281, 120, 200, null, null, 0, 0, 0), + (160282, 120, 200, null, null, 0, 0, 0), + (160283, 120, 200, null, null, 0, 0, 0), + (160284, 120, 200, null, null, 0, 0, 0), + (160285, 120, 200, null, null, 0, 0, 0), + (160286, 120, 200, null, null, 0, 0, 0), + (160287, 120, 200, null, null, 0, 0, 0), + (160288, 141, 229, null, null, 0, 0, 0), + (160289, 141, 229, null, null, 0, 0, 0), + (160290, 141, 229, null, null, 0, 0, 0), + (160291, 141, 229, null, null, 0, 0, 0), + (160292, 141, 229, null, null, 0, 0, 0), + (160441, 175, 155, null, null, 0, 1, 0), + (160448, 175, 155, null, null, 0, 1, 0), + (160449, 175, 155, null, null, 0, 1, 0), + (160476, 150, 145, null, 1500, 0, 0, 0), + (160477, 150, 145, null, 1500, 0, 0, 0), + (160478, 150, 145, null, 1500, 0, 0, 0), + (160479, 150, 145, null, 1500, 0, 0, 0), + (160480, 150, 145, null, 1500, 0, 0, 0), + (160481, 180, 180, null, 1500, 0, 0, 0), + (160482, 180, 180, null, 1500, 0, 0, 0), + (160483, 180, 180, null, 1500, 0, 0, 0), + (160484, 180, 180, null, 1500, 0, 0, 0), + (160485, 180, 180, null, 1500, 0, 0, 0), + (160486, 180, 180, null, 1500, 0, 0, 0), + (160487, 180, 180, null, 1500, 0, 0, 0), + (160488, 180, 180, null, 1500, 0, 0, 0), + (160489, 180, 180, null, 1500, 0, 0, 0), + (160490, 180, 180, null, 1500, 0, 0, 0), + (160491, 180, 180, null, 1500, 0, 0, 0), + (160492, 180, 180, null, 1500, 0, 0, 0), + (160493, 180, 180, null, 1500, 0, 0, 0), + (160494, 180, 180, null, 1500, 0, 0, 0), + (160495, 180, 180, null, 1500, 0, 0, 0), + (160496, 180, 180, null, 1500, 0, 0, 0), + (160497, 180, 180, null, 1500, 0, 0, 0), + (160498, 180, 180, null, 1500, 0, 0, 0), + (160499, 180, 180, null, 1500, 0, 0, 0), + (160583, 500, 100, null, null, 0, 0, 0), + (160605, 500, 100, null, null, 0, 0, 0), + (160606, 500, 100, null, null, 0, 0, 0), + (160607, 500, 100, null, null, 0, 0, 0), + (160608, 500, 100, null, null, 0, 0, 0), + (160609, 500, 100, null, null, 0, 0, 0), + (161126, 240, 230, null, null, 0, 0, 1), + (161127, 240, 230, null, null, 0, 0, 1), + (161128, 240, 230, null, null, 0, 0, 1), + (161129, 240, 230, null, null, 0, 0, 1), + (161130, 240, 230, null, null, 0, 0, 1), + (161478, 160, 160, null, null, 0, 0, 0), + (161479, 160, 160, null, null, 0, 0, 0), + (161480, 160, 160, null, null, 0, 0, 0), + (161481, 160, 160, null, null, 0, 0, 0), + (161482, 160, 160, null, null, 0, 0, 0), + (161483, 160, 160, null, null, 0, 0, 0), + (161484, 160, 160, null, null, 0, 0, 0), + (161485, 160, 160, null, null, 0, 0, 0), + (161486, 160, 160, null, null, 0, 0, 0), + (161487, 160, 160, null, null, 0, 0, 0), + (161488, 160, 160, null, null, 0, 0, 0), + (161489, 160, 160, null, null, 0, 0, 0), + (161490, 160, 160, null, null, 0, 0, 0), + (161491, 160, 160, null, null, 0, 0, 0), + (161492, 160, 160, null, null, 0, 0, 0), + (161493, 160, 160, null, null, 0, 0, 0), + (161494, 160, 160, null, null, 0, 0, 0), + (161495, 160, 160, null, null, 0, 0, 0), + (161496, 160, 160, null, null, 0, 0, 0), + (161508, 160, 160, null, null, 0, 0, 0), + (161509, 160, 160, null, null, 0, 0, 0), + (161510, 160, 160, null, null, 0, 0, 0), + (161511, 160, 160, null, null, 0, 0, 0), + (161512, 160, 160, null, null, 0, 0, 0), + (161513, 160, 160, null, null, 0, 0, 0), + (161514, 160, 160, null, null, 0, 0, 0), + (161515, 160, 160, null, null, 0, 0, 0), + (161524, 160, 160, null, null, 0, 0, 0), + (161525, 160, 160, null, null, 0, 0, 0), + (161526, 160, 160, null, null, 0, 0, 0), + (161527, 160, 160, null, null, 0, 0, 0), + (161528, 160, 160, null, null, 0, 0, 0), + (161529, 160, 160, null, null, 0, 0, 0), + (161530, 160, 160, null, null, 0, 0, 0), + (161531, 160, 160, null, null, 0, 0, 0), + (161540, 160, 160, null, null, 0, 0, 0), + (161541, 160, 160, null, null, 0, 0, 0), + (161542, 160, 160, null, null, 0, 0, 0), + (161543, 160, 160, null, null, 0, 0, 0), + (161544, 160, 160, null, null, 0, 0, 0), + (161545, 160, 160, null, null, 0, 0, 0), + (161546, 160, 160, null, null, 0, 0, 0), + (161547, 160, 160, null, null, 0, 0, 0), + (161556, 160, 160, null, null, 0, 0, 0), + (161557, 160, 160, null, null, 0, 0, 0), + (161558, 160, 160, null, null, 0, 0, 0), + (161559, 160, 160, null, null, 0, 0, 0), + (161560, 160, 160, null, null, 0, 0, 0), + (161561, 160, 160, null, null, 0, 0, 0), + (161562, 160, 160, null, null, 0, 0, 0), + (161563, 160, 160, null, null, 0, 0, 0), + (161572, 160, 160, null, null, 0, 0, 0), + (161573, 160, 160, null, null, 0, 0, 0), + (161574, 160, 160, null, null, 0, 0, 0), + (161575, 160, 160, null, null, 0, 0, 0), + (161576, 160, 160, null, null, 0, 0, 0), + (161577, 160, 160, null, null, 0, 0, 0), + (161578, 160, 160, null, null, 0, 0, 0), + (161579, 160, 160, null, null, 0, 0, 0), + (161580, 160, 160, null, null, 0, 0, 0), + (161581, 160, 160, null, null, 0, 0, 0), + (161582, 160, 160, null, null, 0, 0, 0), + (161583, 160, 160, null, null, 0, 0, 0), + (161584, 160, 160, null, null, 0, 0, 0), + (161585, 160, 160, null, null, 0, 0, 0), + (161586, 160, 160, null, null, 0, 0, 0), + (161587, 160, 160, null, null, 0, 0, 0), + (161604, 160, 160, null, null, 0, 0, 0), + (161605, 160, 160, null, null, 0, 0, 0), + (161606, 160, 160, null, null, 0, 0, 0), + (161607, 160, 160, null, null, 0, 0, 0), + (161608, 160, 160, null, null, 0, 0, 0), + (161609, 160, 160, null, null, 0, 0, 0), + (161610, 160, 160, null, null, 0, 0, 0), + (161611, 160, 160, null, null, 0, 0, 0), + (161612, 160, 160, null, null, 0, 0, 0), + (161613, 160, 160, null, null, 0, 0, 0), + (161614, 160, 160, null, null, 0, 0, 0), + (161615, 160, 160, null, null, 0, 0, 0), + (161616, 160, 160, null, null, 0, 0, 0), + (161617, 160, 160, null, null, 0, 0, 0), + (161618, 160, 160, null, null, 0, 0, 0), + (161619, 160, 160, null, null, 0, 0, 0), + (161620, 160, 160, null, null, 0, 0, 0), + (161621, 160, 160, null, null, 0, 0, 0), + (161622, 160, 160, null, null, 0, 0, 0), + (161623, 160, 160, null, null, 0, 0, 0), + (161624, 160, 160, null, null, 0, 0, 0), + (161625, 160, 160, null, null, 0, 0, 0), + (161626, 160, 160, null, null, 0, 0, 0), + (161627, 160, 160, null, null, 0, 0, 0), + (161628, 160, 160, null, null, 0, 0, 0), + (161629, 160, 160, null, null, 0, 0, 0), + (161630, 160, 160, null, null, 0, 0, 0), + (161631, 160, 160, null, null, 0, 0, 0), + (161632, 160, 160, null, null, 0, 0, 0), + (161633, 160, 160, null, null, 0, 0, 0), + (161634, 160, 160, null, null, 0, 0, 0), + (161635, 160, 160, null, null, 0, 0, 0), + (161636, 160, 160, null, null, 0, 0, 0), + (161637, 160, 160, null, null, 0, 0, 0), + (161638, 160, 160, null, null, 0, 0, 0), + (161639, 160, 160, null, null, 0, 0, 0), + (161640, 160, 160, null, null, 0, 0, 0), + (161641, 160, 160, null, null, 0, 0, 0), + (161642, 160, 160, null, null, 0, 0, 0), + (161643, 160, 160, null, null, 0, 0, 0), + (161644, 160, 160, null, null, 0, 0, 0), + (161645, 220, 220, null, null, 0, 0, 0), + (161646, 220, 220, null, null, 0, 0, 0), + (161647, 220, 220, null, null, 0, 0, 0), + (161648, 220, 220, null, null, 0, 0, 0), + (161649, 220, 220, null, null, 0, 0, 0), + (161650, 220, 220, null, null, 0, 0, 0), + (161651, 220, 220, null, null, 0, 0, 0), + (161652, 220, 220, null, null, 0, 0, 0), + (161653, 220, 220, null, null, 0, 0, 0), + (161654, 220, 220, null, null, 0, 0, 0), + (161655, 220, 220, null, null, 0, 0, 0), + (161656, 220, 220, null, null, 0, 0, 0), + (161657, 220, 220, null, null, 0, 0, 0), + (161658, 220, 220, null, null, 0, 0, 0), + (161659, 220, 220, null, null, 0, 0, 0), + (161660, 220, 220, null, null, 0, 0, 0), + (161661, 220, 220, null, null, 0, 0, 0), + (161662, 220, 220, null, null, 0, 0, 0), + (161663, 220, 220, null, null, 0, 0, 0), + (161700, 152, 152, null, null, 0, 1, 0), + (161701, 152, 152, null, null, 0, 1, 0), + (161737, 152, 152, null, null, 0, 1, 0), + (161738, 152, 152, null, null, 0, 1, 0), + (161739, 152, 152, null, null, 0, 1, 0), + (161740, 152, 152, null, null, 0, 1, 0), + (161741, 152, 152, null, null, 0, 1, 0), + (161742, 152, 152, null, null, 0, 1, 0), + (161743, 152, 152, null, null, 0, 1, 0), + (161744, 152, 152, null, null, 0, 1, 0), + (161745, 152, 152, null, null, 0, 1, 0), + (161746, 152, 152, null, null, 0, 1, 0), + (161747, 152, 152, null, null, 0, 1, 0), + (161748, 152, 152, null, null, 0, 1, 0), + (161749, 152, 152, null, null, 0, 1, 0), + (161750, 152, 152, null, null, 0, 1, 0), + (161751, 152, 152, null, null, 0, 1, 0), + (161752, 152, 152, null, null, 0, 1, 0), + (161753, 152, 152, null, null, 0, 1, 0), + (162775, 200, 200, null, null, 1, 0, 0), + (162776, 200, 200, null, null, 1, 0, 0), + (162777, 200, 200, null, null, 1, 0, 0), + (162778, 200, 200, null, null, 1, 0, 0), + (162779, 200, 200, null, null, 1, 0, 0), + (162888, 150, 150, null, null, 1, 0, 0), + (162889, 150, 150, null, null, 1, 0, 0), + (162890, 150, 150, null, null, 1, 0, 0), + (162891, 150, 150, null, null, 1, 0, 0), + (162892, 150, 150, null, null, 1, 0, 0), + (162893, 150, 150, null, null, 1, 0, 0), + (162894, 150, 150, null, null, 1, 0, 0), + (162895, 150, 150, null, null, 1, 0, 0), + (162896, 150, 150, null, null, 1, 0, 0), + (162897, 150, 150, null, null, 1, 0, 0), + (162898, 150, 150, null, null, 1, 0, 0), + (162899, 150, 150, null, null, 1, 0, 0), + (162900, 150, 150, null, null, 1, 0, 0), + (162901, 150, 150, null, null, 1, 0, 0), + (162902, 150, 150, null, null, 1, 0, 0), + (162927, 200, 200, null, null, 1, 0, 0), + (162928, 200, 200, null, null, 1, 0, 0), + (162929, 200, 200, null, null, 1, 0, 0), + (162930, 200, 200, null, null, 1, 0, 0), + (162931, 200, 200, null, null, 1, 0, 0), + (162932, 200, 200, null, null, 1, 0, 0), + (162933, 200, 200, null, null, 1, 0, 0), + (163283, 150, 130, null, null, 0, 1, 0), + (163284, 150, 130, null, null, 0, 1, 0), + (163285, 150, 130, null, null, 0, 1, 0), + (163318, 260, 140, null, 1600, 0, 0, 0), + (163319, 260, 140, null, 1600, 0, 0, 0), + (163320, 260, 140, null, 1600, 0, 0, 0), + (163321, 260, 140, null, 1600, 0, 0, 0), + (163322, 260, 140, null, 1600, 0, 0, 0), + (163323, 260, 140, null, 1600, 0, 0, 0), + (163324, 260, 140, null, 1600, 0, 0, 0), + (163576, 300, 100, null, null, 1, 0, 0), + (163577, 300, 100, null, null, 1, 0, 0), + (163578, 300, 100, null, null, 1, 0, 0), + (163579, 100, 100, null, null, 1, 0, 0), + (163580, 100, 100, null, null, 1, 0, 0), + (163581, 100, 100, null, null, 1, 0, 0), + (163582, 265, 230, null, null, 0, 0, 0), + (163583, 265, 230, null, null, 0, 0, 0), + (163584, 265, 230, null, null, 0, 0, 0), + (163585, 265, 230, null, null, 0, 0, 0), + (163586, 265, 230, null, null, 0, 0, 0), + (163587, 265, 230, null, null, 0, 0, 0), + (163993, 255, 240, null, null, 0, 0, 0), + (163994, 255, 240, null, null, 0, 0, 0), + (163995, 255, 240, null, null, 0, 0, 0), + (163996, 255, 240, null, null, 0, 0, 0), + (163997, 255, 240, null, null, 0, 0, 0), + (163998, 255, 240, null, null, 0, 0, 0), + (163999, 255, 240, null, null, 0, 0, 0), + (164000, 255, 240, null, null, 0, 0, 0), + (164001, 255, 240, null, null, 0, 0, 0), + (164002, 255, 240, null, null, 0, 0, 0), + (164003, 255, 240, null, null, 0, 0, 0), + (164004, 255, 240, null, null, 0, 0, 0), + (164005, 255, 240, null, null, 0, 0, 0), + (164006, 255, 240, null, null, 0, 0, 0), + (164007, 255, 240, null, null, 0, 0, 0), + (164008, 255, 240, null, null, 0, 1, 0), + (164009, 255, 240, null, null, 0, 1, 0), + (164010, 255, 240, null, null, 0, 1, 0), + (164011, 255, 240, null, null, 0, 1, 0), + (164012, 255, 240, null, null, 0, 1, 0), + (164013, 255, 240, null, null, 0, 1, 0), + (164014, 255, 240, null, null, 0, 1, 0), + (164015, 255, 240, null, null, 0, 1, 0), + (164016, 255, 240, null, null, 0, 1, 0), + (164017, 255, 240, null, null, 0, 1, 0), + (164018, 255, 240, null, null, 0, 1, 0), + (164019, 255, 240, null, null, 0, 1, 0), + (164020, 255, 240, null, null, 0, 1, 0), + (164021, 255, 240, null, null, 0, 1, 0), + (164022, 255, 240, null, null, 0, 1, 0), + (164023, 255, 240, null, null, 0, 0, 0), + (164024, 255, 240, null, null, 0, 0, 0), + (164025, 255, 240, null, null, 0, 0, 0), + (164026, 255, 240, null, null, 0, 0, 0), + (164027, 255, 240, null, null, 0, 0, 0), + (164028, 255, 240, null, null, 0, 0, 0), + (164029, 255, 240, null, null, 0, 0, 0), + (164030, 255, 240, null, null, 0, 0, 0), + (164031, 255, 240, null, null, 0, 0, 0), + (164032, 255, 240, null, null, 0, 0, 0), + (164033, 255, 240, null, null, 0, 1, 0), + (164034, 255, 240, null, null, 0, 1, 0), + (164035, 255, 240, null, null, 0, 1, 0), + (164036, 255, 240, null, null, 0, 1, 0), + (164037, 255, 240, null, null, 0, 1, 0), + (164038, 255, 240, null, null, 0, 0, 0), + (164039, 255, 240, null, null, 0, 0, 0), + (164040, 255, 240, null, null, 0, 0, 0), + (164041, 255, 240, null, null, 0, 0, 0), + (164042, 255, 240, null, null, 0, 0, 0), + (164043, 255, 240, null, null, 0, 1, 0), + (164044, 255, 240, null, null, 0, 1, 0), + (164045, 255, 240, null, null, 0, 1, 0), + (164046, 255, 240, null, null, 0, 1, 0), + (164047, 255, 240, null, null, 0, 1, 0), + (164048, 250, 170, null, null, 0, 0, 0), + (164049, 250, 170, null, null, 0, 0, 0), + (164050, 250, 170, null, null, 0, 0, 0), + (164051, 250, 170, null, null, 0, 0, 0), + (164052, 250, 170, null, null, 0, 0, 0), + (164053, 250, 170, null, null, 0, 1, 0), + (164054, 250, 170, null, null, 0, 1, 0), + (164055, 250, 170, null, null, 0, 1, 0), + (164056, 250, 170, null, null, 0, 1, 0), + (164057, 250, 170, null, null, 0, 1, 0), + (164058, 250, 170, null, null, 0, 0, 0), + (164059, 250, 170, null, null, 0, 0, 0), + (164060, 250, 170, null, null, 0, 0, 0), + (164061, 250, 170, null, null, 0, 0, 0), + (164062, 250, 170, null, null, 0, 0, 0), + (164063, 250, 170, null, null, 0, 1, 0), + (164064, 250, 170, null, null, 0, 1, 0), + (164065, 250, 170, null, null, 0, 1, 0), + (164066, 250, 170, null, null, 0, 1, 0), + (164067, 250, 170, null, null, 0, 1, 0), + (164068, 370, 370, null, null, 0, 0, 0), + (164069, 370, 370, null, null, 0, 0, 0), + (164070, 370, 370, null, null, 0, 0, 0), + (164071, 370, 370, null, null, 0, 0, 0), + (164072, 370, 370, null, null, 0, 0, 0), + (164073, 370, 370, null, null, 0, 0, 0), + (164074, 370, 370, null, null, 0, 0, 0), + (164075, 370, 370, null, null, 0, 0, 0), + (164076, 370, 370, null, null, 0, 0, 0), + (164077, 370, 370, null, null, 0, 1, 0), + (164078, 370, 370, null, null, 0, 1, 0), + (164079, 370, 370, null, null, 0, 1, 0), + (164080, 370, 370, null, null, 0, 1, 0), + (164081, 370, 370, null, null, 0, 1, 0), + (164082, 370, 370, null, null, 0, 1, 0), + (164083, 370, 370, null, null, 0, 1, 0), + (164084, 370, 370, null, null, 0, 1, 0), + (164085, 370, 370, null, null, 0, 1, 0), + (164086, 370, 370, null, null, 0, 1, 0), + (164087, 370, 370, null, null, 0, 1, 0), + (164088, 370, 370, null, null, 0, 1, 0), + (164089, 370, 370, null, null, 0, 1, 0), + (164090, 370, 370, null, null, 0, 1, 0), + (164091, 370, 370, null, null, 0, 1, 0), + (164092, 370, 370, null, null, 0, 1, 0), + (164093, 370, 370, null, null, 0, 1, 0), + (164094, 370, 370, null, null, 0, 1, 0), + (164095, 370, 370, null, null, 0, 0, 0), + (164096, 370, 370, null, null, 0, 0, 0), + (164097, 370, 370, null, null, 0, 0, 0), + (164098, 370, 370, null, null, 0, 0, 0), + (164099, 370, 370, null, null, 0, 0, 0), + (164100, 370, 370, null, null, 0, 0, 0), + (164101, 370, 370, null, null, 0, 0, 0), + (164102, 370, 370, null, null, 0, 0, 0), + (164103, 370, 370, null, null, 0, 0, 0), + (164106, 46, 100, null, null, 0, 0, 0), + (164107, 37, 100, null, null, 0, 0, 0), + (164427, 170, 130, null, null, 0, 0, 0), + (164428, 170, 130, null, null, 0, 0, 0), + (164429, 170, 130, null, null, 0, 0, 0), + (164430, 170, 130, null, null, 0, 0, 0), + (164431, 170, 130, null, null, 0, 0, 0), + (164489, 170, 120, null, null, 0, 0, 0), + (164490, 170, 120, null, null, 0, 0, 0), + (164497, 170, 120, null, null, 0, 0, 0), + (164498, 170, 120, null, null, 0, 0, 0), + (164500, 170, 120, null, null, 0, 0, 0), + (164501, 170, 120, null, null, 0, 0, 0), + (164510, 170, 120, null, null, 0, 0, 0), + (164511, 170, 120, null, null, 0, 0, 0), + (164512, 170, 120, null, null, 0, 0, 0), + (164513, 170, 120, null, null, 0, 0, 0), + (164515, 170, 120, null, null, 0, 0, 0), + (165055, 280, 220, null, null, 0, 0, 0), + (165056, 280, 220, null, null, 0, 0, 0), + (165057, 280, 220, null, null, 0, 0, 0), + (165058, 280, 220, null, null, 0, 0, 0), + (165059, 280, 220, null, null, 0, 0, 0), + (165118, 10, 10, null, null, 0, 0, 0), + (165119, 10, 10, null, null, 0, 0, 0), + (165125, 280, 200, null, null, 0, 1, 0), + (165126, 280, 200, null, null, 0, 1, 0), + (165127, 280, 200, null, null, 0, 1, 0), + (165128, 275, 215, null, null, 0, 1, 0), + (165129, 275, 215, null, null, 0, 1, 0), + (165130, 275, 215, null, null, 0, 1, 0), + (165131, 310, 210, null, null, 0, 1, 0), + (165132, 310, 210, null, null, 0, 1, 0), + (165133, 310, 210, null, null, 0, 1, 0), + (165138, 240, 200, null, 2400, 1, 0, 0), + (165139, 250, 210, null, 2400, 1, 0, 0), + (165140, 250, 210, null, 2400, 1, 0, 0), + (165167, 250, 200, null, 3000, 1, 0, 0), + (165168, 250, 200, null, 3000, 1, 0, 0), + (165198, 300, 250, 5000, null, 0, 0, 0), + (165199, 300, 250, 5000, null, 0, 0, 0), + (165200, 300, 250, 5000, null, 0, 0, 0), + (165369, 110, 100, null, null, 0, 0, 0), + (165370, 191, 174, null, null, 0, 0, 0), + (165371, 192, 175, null, null, 0, 0, 0), + (165372, 208, 189, null, null, 0, 0, 0), + (165373, 209, 190, null, null, 0, 0, 0), + (165374, 219, 199, null, null, 0, 0, 0), + (165375, 220, 200, null, null, 0, 0, 0), + (168673, 300, 220, null, 1600, 1, 0, 0), + (168674, 300, 220, null, 1600, 1, 0, 0), + (168675, 300, 220, null, 1600, 1, 0, 0), + (200433, 250, 250, null, null, 0, 0, 0), + (200434, 250, 250, null, null, 0, 0, 0), + (200435, 250, 250, null, null, 0, 0, 0), + (200436, 250, 250, null, null, 0, 0, 0), + (200437, 250, 250, null, null, 0, 0, 0), + (200438, 250, 250, null, null, 0, 0, 0), + (200439, 250, 250, null, null, 0, 0, 0), + (200440, 250, 250, null, null, 0, 0, 0), + (200441, 250, 250, null, null, 0, 0, 0), + (200442, 250, 250, null, null, 0, 0, 0), + (200457, 250, 250, null, null, 0, 0, 0), + (200458, 250, 250, null, null, 0, 0, 0), + (200652, 135, 135, null, null, 0, 1, 0), + (200653, 110, 110, null, null, 1, 0, 0), + (200956, 250, 150, null, null, 0, 0, 0), + (200957, 277, 177, null, null, 0, 0, 0), + (200958, 277, 177, null, null, 0, 0, 0), + (200959, 300, 200, null, null, 0, 0, 0), + (200960, 300, 200, null, null, 0, 0, 0), + (201250, 100, 100, 9000, 3000, 0, 0, 0), + (201251, 114, 114, 9000, 3000, 0, 0, 0), + (201252, 115, 115, 9000, 3000, 0, 0, 0), + (201253, 174, 174, 9000, 3000, 0, 0, 0), + (201254, 175, 175, 9000, 3000, 0, 0, 0), + (201255, 199, 199, 9000, 3000, 0, 0, 0), + (201256, 200, 200, 9000, 3000, 0, 0, 0), + (201257, 100, 100, null, null, 1, 0, 0), + (201258, 209, 127, null, null, 1, 0, 0), + (201259, 210, 127, null, null, 1, 0, 0), + (201260, 299, 150, null, null, 1, 0, 0), + (201261, 300, 150, null, null, 1, 0, 0), + (201262, 100, 100, null, 3000, 1, 0, 0), + (201263, 166, 147, null, 3000, 1, 0, 0), + (201264, 168, 148, null, 3000, 1, 0, 0), + (201265, 230, 193, null, 3000, 1, 0, 0), + (201266, 231, 193, null, 3000, 1, 0, 0), + (201267, 309, 249, null, 3000, 1, 0, 0), + (201268, 310, 250, null, 3000, 1, 0, 0), + (201269, 100, 100, null, null, 1, 0, 0), + (201270, 166, 147, null, null, 1, 0, 0), + (201271, 168, 148, null, null, 1, 0, 0), + (201272, 230, 193, null, null, 1, 0, 0), + (201273, 231, 193, null, null, 1, 0, 0), + (201274, 309, 249, null, null, 1, 0, 0), + (201275, 310, 250, null, null, 1, 0, 0), + (201939, 150, 250, 12000, 1500, 0, 0, 0), + (201940, 150, 250, 12000, 1700, 0, 0, 0), + (201943, 520, 400, null, null, 0, 1, 0), + (202264, 400, 720, null, null, 0, 0, 0), + (202265, 196, 115, null, null, 0, 1, 0), + (202278, 250, 150, null, 500, 0, 0, 0), + (202279, 250, 150, null, 900, 0, 0, 0), + (202719, 350, 250, null, null, 0, 0, 0), + (202720, 350, 250, null, null, 0, 0, 0), + (202743, 250, 250, null, null, 0, 0, 1), + (202744, 250, 250, null, null, 0, 0, 1), + (202780, 222, 222, null, null, 1, 0, 0), + (202781, 222, 222, null, null, 1, 0, 0), + (202782, 300, 200, null, 2800, 0, 0, 0), + (202783, 300, 200, null, 2800, 0, 0, 0), + (202784, 350, 250, null, 1400, 0, 0, 0), + (202785, 350, 250, null, 1400, 0, 0, 0), + (202786, 220, 280, 5000, null, 0, 0, 0), + (202787, 220, 280, 5000, null, 0, 0, 0), + (202788, 175, 250, null, null, 0, 1, 0), + (202789, 175, 250, null, null, 0, 1, 0), + (203573, 250, 250, null, null, 0, 0, 1), + (203574, 250, 250, null, null, 0, 0, 1), + (204396, 50, 50, null, null, 0, 0, 0), + (204706, 250, 50, null, null, 0, 0, 0), + (204739, 200, 200, null, null, 0, 1, 0), + (204745, 200, 200, null, null, 0, 1, 0), + (204746, 280, 320, null, null, 0, 1, 0), + (204747, 280, 320, null, null, 0, 1, 0), + (204750, 100, 100, null, null, 0, 1, 0), + (204751, 100, 100, null, null, 0, 1, 0), + (204752, 100, 100, null, null, 0, 1, 0), + (204755, 100, 330, null, null, 0, 1, 0), + (204962, 250, 200, null, null, 1, 0, 0), + (204963, 250, 200, null, null, 1, 0, 0), + (204964, 250, 200, null, null, 1, 0, 0), + (204965, 250, 200, null, null, 1, 0, 0), + (204966, 250, 200, null, null, 1, 0, 0), + (204967, 250, 200, null, null, 1, 0, 0), + (204968, 250, 200, null, null, 1, 0, 0), + (204969, 250, 200, null, null, 1, 0, 0), + (204970, 250, 200, null, null, 1, 0, 0), + (204971, 250, 200, null, null, 1, 0, 0), + (204972, 250, 200, null, null, 1, 0, 0), + (205736, 125, 125, null, null, 0, 0, 0), + (206016, 250, 50, null, null, 0, 0, 0), + (206047, 120, 250, null, 1700, 0, 0, 0), + (206048, 250, 250, null, null, 1, 0, 1), + (206049, 275, 210, null, null, 1, 0, 0), + (206052, 140, 200, null, null, 0, 1, 0), + (206053, 260, 100, null, null, 1, 0, 0), + (206054, 200, 100, null, null, 1, 0, 0), + (206055, 120, 220, null, null, 0, 1, 0), + (206056, 120, 220, null, null, 0, 1, 0), + (206057, 130, 200, null, null, 0, 1, 0), + (206058, 280, 300, null, null, 0, 1, 0), + (206059, 220, 120, null, null, 0, 1, 0), + (206060, 100, 300, null, null, 0, 0, 0), + (206061, 100, 100, null, null, 0, 0, 0), + (206062, 290, 120, null, null, 0, 1, 0), + (206080, 210, 160, null, null, 0, 0, 0), + (206081, 210, 170, null, null, 0, 0, 0), + (206082, 210, 170, null, null, 0, 0, 0), + (206083, 210, 180, null, null, 0, 0, 0), + (206084, 210, 180, null, null, 0, 0, 0), + (206289, 100, 100, null, null, 0, 0, 1), + (206290, 100, 100, null, null, 0, 0, 1), + (206291, 100, 100, null, null, 0, 0, 1), + (206292, 100, 100, null, null, 0, 0, 1), + (206293, 100, 100, null, null, 0, 0, 1), + (206589, 120, 200, null, null, 0, 1, 0), + (206590, 120, 200, null, null, 0, 1, 0), + (206591, 120, 200, null, null, 0, 1, 0), + (206592, 120, 200, null, null, 0, 1, 0), + (206593, 120, 200, null, null, 0, 1, 0), + (206594, 120, 200, null, null, 0, 1, 0), + (206595, 120, 200, null, null, 0, 1, 0), + (206596, 120, 200, null, null, 0, 1, 0), + (206597, 120, 200, null, null, 0, 1, 0), + (206598, 120, 200, null, null, 0, 1, 0), + (206599, 120, 200, null, null, 0, 1, 0), + (206600, 120, 200, null, null, 0, 1, 0), + (206601, 120, 200, null, null, 0, 1, 0), + (206602, 120, 200, null, null, 0, 1, 0), + (206603, 120, 200, null, null, 0, 1, 0), + (206604, 120, 200, null, null, 0, 1, 0), + (206605, 120, 200, null, null, 0, 1, 0), + (206606, 120, 200, null, null, 0, 1, 0), + (206607, 120, 200, null, null, 0, 1, 0), + (206668, 210, 210, null, null, 1, 0, 0), + (206669, 210, 210, null, null, 1, 0, 0), + (206670, 210, 210, null, null, 1, 0, 0), + (206671, 210, 210, null, null, 1, 0, 0), + (206672, 210, 210, null, null, 1, 0, 0), + (206705, 175, 200, null, null, 0, 0, 0), + (206706, 175, 200, null, null, 0, 0, 0), + (206707, 175, 200, null, null, 0, 0, 0), + (206711, 500, 500, null, null, 0, 0, 0), + (206712, 500, 500, null, null, 0, 0, 0), + (206713, 500, 500, null, null, 0, 0, 0), + (206714, 500, 500, null, null, 0, 0, 0), + (206715, 500, 500, null, null, 0, 0, 0), + (206716, 500, 500, null, null, 0, 0, 0), + (206717, 500, 500, null, null, 0, 0, 0), + (206718, 500, 500, null, null, 0, 0, 0), + (206719, 500, 500, null, null, 0, 0, 0), + (206720, 500, 500, null, null, 0, 0, 0), + (206721, 500, 500, null, null, 0, 0, 0), + (206722, 500, 500, null, null, 0, 0, 0), + (206723, 500, 500, null, null, 0, 0, 0), + (207033, 250, 250, null, null, 0, 0, 0), + (207036, 250, 250, null, null, 0, 0, 0), + (207037, 250, 250, null, null, 0, 0, 0), + (207038, 250, 250, null, null, 0, 0, 0), + (207039, 250, 250, null, null, 0, 0, 0), + (207250, 210, 210, null, 2400, 0, 0, 0), + (207251, 210, 210, null, 2400, 0, 0, 0), + (207252, 210, 210, null, 2400, 0, 0, 0), + (207861, 220, 220, null, null, 0, 0, 0), + (207862, 220, 220, null, null, 0, 0, 0), + (207863, 220, 220, null, null, 0, 0, 0), + (207966, 120, 180, null, null, 0, 1, 0), + (207967, 120, 180, null, null, 0, 1, 0), + (207968, 120, 180, null, null, 0, 1, 0), + (207973, 160, 210, null, null, 0, 1, 0), + (207975, 160, 210, null, null, 0, 1, 0), + (207976, 160, 210, null, null, 0, 1, 0), + (207984, 240, 480, null, null, 0, 1, 0), + (207985, 240, 480, null, null, 0, 1, 0), + (207988, 240, 480, null, null, 0, 1, 0), + (207992, 325, 350, null, null, 0, 1, 0), + (207993, 325, 350, null, null, 0, 1, 0), + (207994, 325, 350, null, null, 0, 1, 0), + (207995, 250, 250, null, 1500, 0, 0, 0), + (207996, 250, 250, null, 1500, 0, 0, 0), + (207997, 250, 250, null, 1500, 0, 0, 0), + (207998, 225, 250, null, null, 0, 0, 0), + (207999, 225, 250, null, null, 0, 0, 0), + (208000, 225, 250, null, null, 0, 0, 0), + (208001, 150, 250, null, 3100, 1, 0, 0), + (208002, 150, 250, null, 3100, 1, 0, 0), + (208003, 150, 250, null, 3100, 1, 0, 0), + (208004, 210, 210, null, null, 0, 0, 0), + (208005, 210, 210, null, null, 0, 0, 0), + (208006, 210, 210, null, null, 0, 0, 0), + (208007, 215, 100, null, null, 1, 0, 0), + (208008, 215, 100, null, null, 1, 0, 0), + (208009, 215, 100, null, null, 1, 0, 0), + (208010, 275, 175, null, null, 0, 0, 0), + (208011, 275, 175, null, null, 0, 0, 0), + (208012, 275, 175, null, null, 0, 0, 0), + (208013, 200, 200, null, null, 0, 0, 0), + (208014, 200, 200, null, null, 0, 0, 0), + (208015, 200, 200, null, null, 0, 0, 0), + (208016, 175, 375, null, null, 0, 1, 0), + (208017, 175, 375, null, null, 0, 1, 0), + (208018, 175, 375, null, null, 0, 1, 0), + (208019, 187, 202, null, null, 0, 0, 0), + (208020, 187, 202, null, null, 0, 0, 0), + (208021, 187, 202, null, null, 0, 0, 0), + (208022, 140, 280, null, null, 0, 0, 0), + (208023, 149, 298, null, null, 0, 0, 0), + (208024, 150, 300, null, null, 0, 0, 0), + (208025, 250, 230, null, null, 1, 0, 1), + (208026, 250, 230, null, null, 1, 0, 1), + (208027, 250, 230, null, null, 1, 0, 1), + (208028, 375, 400, null, null, 0, 0, 0), + (208029, 375, 400, null, null, 0, 0, 0), + (208030, 375, 400, null, null, 0, 0, 0), + (208031, 150, 150, null, 1500, 1, 0, 0), + (208032, 150, 150, null, 1500, 1, 0, 0), + (208033, 150, 150, null, 1500, 1, 0, 0), + (208034, 150, 150, null, null, 0, 0, 0), + (208035, 150, 150, null, null, 0, 0, 0), + (208036, 150, 150, null, null, 0, 0, 0), + (208037, 300, 300, null, null, 0, 0, 0), + (208038, 300, 300, null, null, 0, 0, 0), + (208039, 300, 300, null, null, 0, 0, 0), + (208040, 115, 165, null, 800, 0, 0, 0), + (208041, 115, 165, null, 800, 0, 0, 0), + (208042, 115, 165, null, 800, 0, 0, 0), + (208043, 170, 170, null, null, 0, 0, 1), + (208044, 170, 170, null, null, 0, 0, 1), + (208045, 170, 170, null, null, 0, 0, 1), + (208046, 200, 200, null, null, 1, 0, 0), + (208047, 200, 200, null, null, 1, 0, 0), + (208048, 200, 200, null, null, 1, 0, 0), + (208049, 200, 350, null, null, 1, 0, 0), + (208053, 200, 350, null, null, 1, 0, 0), + (208055, 200, 350, null, null, 1, 0, 0), + (208056, 115, 200, null, null, 1, 0, 0), + (208057, 115, 200, null, null, 1, 0, 0), + (208058, 115, 200, null, null, 1, 0, 0), + (208059, 220, 220, null, null, 0, 1, 0), + (208060, 220, 220, null, null, 0, 1, 0), + (208061, 220, 220, null, null, 0, 1, 0), + (208062, 140, 140, null, null, 0, 0, 0), + (208063, 140, 140, null, null, 0, 0, 0), + (208064, 140, 140, null, null, 0, 0, 0), + (208065, 120, 120, null, null, 0, 0, 0), + (208067, 120, 120, null, null, 0, 0, 0), + (208068, 120, 120, null, null, 0, 0, 0), + (208069, 250, 250, null, null, 0, 1, 0), + (208070, 250, 250, null, null, 0, 1, 0), + (208071, 250, 250, null, null, 0, 1, 0), + (208072, 150, 230, null, null, 0, 1, 0), + (208073, 150, 230, null, null, 0, 1, 0), + (208074, 150, 230, null, null, 0, 1, 0), + (208075, 300, 300, 9000, 3000, 1, 0, 0), + (208076, 300, 300, 9000, 3000, 1, 0, 0), + (208077, 300, 300, 9000, 3000, 1, 0, 0), + (208078, 300, 300, 9000, 3000, 1, 0, 0), + (208079, 300, 300, 9000, 3000, 1, 0, 0), + (208080, 220, 220, null, null, 0, 0, 0), + (208081, 200, 200, null, null, 0, 0, 0), + (208082, 200, 200, null, null, 0, 0, 0), + (208083, 130, 130, null, null, 0, 0, 1), + (208084, 130, 130, null, null, 0, 0, 1), + (208085, 130, 130, null, null, 0, 0, 1), + (208086, 130, 130, null, null, 0, 0, 1), + (208087, 130, 130, null, null, 0, 0, 1), + (208088, 130, 130, null, null, 0, 0, 1), + (208089, 130, 130, null, null, 0, 0, 1), + (208090, 100, 100, null, null, 0, 1, 0), + (208091, 124, 124, null, null, 0, 1, 0), + (208092, 125, 125, null, null, 0, 1, 0), + (208093, 149, 149, null, null, 0, 1, 0), + (208094, 150, 150, null, null, 0, 1, 0), + (208095, 174, 174, null, null, 0, 1, 0), + (208096, 175, 175, null, null, 0, 1, 0), + (208097, 199, 199, null, null, 0, 1, 0), + (208098, 200, 200, null, null, 0, 1, 0), + (208099, 250, 200, null, null, 0, 0, 0), + (208100, 250, 200, null, null, 0, 0, 0), + (208101, 250, 200, null, null, 0, 0, 0), + (208102, 250, 200, null, null, 0, 0, 0), + (208103, 250, 200, null, null, 0, 0, 0), + (208516, 250, 250, null, null, 0, 0, 0), + (208527, 250, 250, null, null, 0, 0, 0), + (209259, 200, 200, null, null, 0, 0, 0), + (209269, 185, 185, null, null, 1, 0, 0), + (209270, 185, 185, null, null, 1, 0, 0), + (209271, 185, 185, null, null, 1, 0, 0), + (209272, 185, 185, null, null, 1, 0, 0), + (209273, 185, 185, null, null, 1, 0, 0), + (209283, 125, 125, null, null, 0, 1, 0), + (209284, 125, 125, null, null, 0, 1, 0), + (209285, 125, 125, null, null, 0, 1, 0), + (211191, 600, 300, null, null, 0, 0, 0), + (211192, 600, 300, null, null, 0, 0, 0), + (211193, 600, 300, null, null, 0, 0, 0), + (211194, 100, 100, null, null, 0, 1, 0), + (211195, 249, 249, null, null, 0, 1, 0), + (211196, 250, 250, null, null, 0, 1, 0), + (211197, 120, 120, null, null, 0, 1, 0), + (211198, 279, 279, null, null, 0, 1, 0), + (211199, 280, 280, null, null, 0, 1, 0), + (211200, 110, 110, null, null, 0, 1, 0), + (211201, 329, 329, null, null, 0, 1, 0), + (211202, 330, 330, null, null, 0, 1, 0), + (211203, 150, 100, null, null, 0, 0, 0), + (211204, 349, 299, null, null, 0, 0, 0), + (211205, 350, 300, null, null, 0, 0, 0), + (211206, 200, 220, null, null, 0, 1, 0), + (211207, 300, 360, null, null, 0, 1, 0), + (211208, 300, 360, null, null, 0, 1, 0), + (211209, 200, 220, null, null, 0, 0, 1), + (211210, 200, 419, null, null, 0, 0, 1), + (211211, 200, 420, null, null, 0, 0, 1), + (211212, 120, 120, null, null, 1, 0, 0), + (211213, 240, 240, null, null, 1, 0, 0), + (211214, 240, 240, null, null, 1, 0, 0), + (211215, 100, 275, 8333, 2778, 0, 0, 0), + (211216, 299, 375, 8333, 2778, 0, 0, 0), + (211217, 300, 375, 8333, 2778, 0, 0, 0), + (211218, 100, 200, null, null, 0, 0, 1), + (211219, 100, 499, null, null, 0, 0, 1), + (211220, 100, 500, null, null, 0, 0, 1), + (211221, 200, 300, null, null, 0, 0, 0), + (211222, 200, 599, null, null, 0, 0, 0), + (211223, 200, 600, null, null, 0, 0, 0), + (211224, 110, 110, null, 2778, 0, 0, 0), + (211225, 220, 439, null, 2778, 0, 0, 0), + (211226, 220, 440, null, 2778, 0, 0, 0), + (211227, 100, 100, null, null, 0, 0, 0), + (211228, 100, 100, null, null, 0, 0, 0), + (211229, 100, 100, null, null, 0, 0, 0), + (211230, 200, 200, null, null, 0, 0, 0), + (211231, 200, 698, null, null, 0, 0, 0), + (211232, 200, 700, null, null, 0, 0, 0), + (211233, 100, 200, null, null, 0, 0, 0), + (211234, 299, 599, null, null, 0, 0, 0), + (211235, 300, 600, null, null, 0, 0, 0), + (211236, 250, 250, null, null, 0, 0, 0), + (211237, 250, 250, null, null, 0, 0, 0), + (211238, 250, 250, null, null, 0, 0, 0), + (211239, 100, 200, null, null, 0, 0, 0), + (211240, 100, 499, null, null, 0, 0, 0), + (211241, 100, 500, null, null, 0, 0, 0), + (211242, 250, 250, null, null, 0, 0, 0), + (211243, 250, 250, null, null, 0, 0, 0), + (211244, 250, 250, null, null, 0, 0, 0), + (211245, 250, 250, null, null, 0, 1, 0), + (211246, 449, 449, null, null, 0, 1, 0), + (211247, 450, 450, null, null, 0, 1, 0), + (211248, 200, 200, null, null, 0, 1, 0), + (211249, 300, 399, null, null, 0, 1, 0), + (211250, 300, 400, null, null, 0, 1, 0), + (211251, 250, 250, null, null, 0, 0, 0), + (211252, 399, 399, null, null, 0, 0, 0), + (211253, 400, 400, null, null, 0, 0, 0), + (211254, 350, 250, null, null, 0, 0, 0), + (211255, 350, 250, null, null, 0, 0, 0), + (211256, 350, 250, null, null, 0, 0, 0), + (211257, 200, 200, null, null, 1, 0, 0), + (211258, 399, 399, null, null, 1, 0, 0), + (211259, 400, 400, null, null, 1, 0, 0), + (211260, 300, 300, 8333, 2778, 0, 0, 0), + (211261, 300, 300, 8333, 2778, 0, 0, 0), + (211262, 300, 300, 8333, 2778, 0, 0, 0), + (211263, 130, 130, null, 2778, 0, 0, 0), + (211264, 504, 504, null, 2778, 0, 0, 0), + (211265, 505, 505, null, 2778, 0, 0, 0), + (211266, 110, 110, null, null, 1, 0, 0), + (211267, 110, 110, null, null, 1, 0, 0), + (211268, 110, 110, null, null, 1, 0, 0), + (211269, 200, 200, null, null, 0, 0, 0), + (211270, 200, 200, null, null, 0, 0, 0), + (211271, 200, 200, null, null, 0, 0, 0), + (211272, 250, 250, null, null, 0, 0, 0), + (211273, 250, 250, null, null, 0, 0, 0), + (211274, 250, 250, null, null, 0, 0, 0), + (211275, 100, 100, null, null, 0, 0, 0), + (211276, 499, 100, null, null, 0, 0, 0), + (211277, 500, 100, null, null, 0, 0, 0), + (211280, 200, 200, null, null, 0, 0, 1), + (211281, 300, 300, null, null, 0, 0, 1), + (211282, 300, 300, null, null, 0, 0, 1), + (211284, 250, 1900, null, null, 0, 0, 0), + (211285, 250, 1900, null, null, 0, 0, 0), + (211286, 250, 1900, null, null, 0, 0, 0), + (211287, 250, 1900, null, null, 0, 0, 0), + (211349, 125, 125, null, null, 0, 0, 0), + (211350, 125, 125, null, null, 0, 0, 0), + (211351, 145, 145, null, null, 0, 0, 0), + (211352, 115, 115, null, null, 0, 0, 0), + (211353, 120, 120, null, null, 0, 0, 0), + (211354, 125, 125, null, null, 0, 0, 0), + (211355, 145, 145, null, null, 0, 0, 0), + (211356, 165, 165, null, null, 0, 0, 0), + (211357, 130, 130, null, null, 0, 0, 0), + (211358, 135, 135, null, null, 0, 0, 0), + (211359, 145, 145, null, null, 0, 0, 0), + (211360, 165, 165, null, null, 0, 0, 0), + (211361, 165, 165, null, null, 0, 0, 0), + (211362, 185, 185, null, null, 0, 0, 0), + (211363, 145, 145, null, null, 0, 0, 0), + (211364, 150, 150, null, null, 0, 0, 0), + (211365, 165, 165, null, null, 0, 0, 0), + (211366, 185, 185, null, null, 0, 0, 0), + (211399, 2, 30000, null, null, 0, 0, 0), + (211400, 2, 30000, null, null, 0, 0, 0), + (211401, 10, 1500, null, null, 0, 0, 0), + (211402, 10, 1500, null, null, 0, 0, 0), + (211403, 10, 1500, null, null, 0, 0, 0), + (211404, 10, 1500, null, null, 0, 0, 0), + (212203, 100, 120, null, 2178, 0, 0, 0), + (212204, 100, 239, null, 2178, 0, 0, 0), + (212205, 100, 240, null, 2178, 0, 0, 0), + (212206, 100, 359, null, 2178, 0, 0, 0), + (212207, 100, 360, null, 2178, 0, 0, 0), + (212208, 100, 120, null, null, 1, 0, 0), + (212209, 100, 239, null, null, 1, 0, 0), + (212210, 100, 240, null, null, 1, 0, 0), + (212211, 100, 359, null, null, 1, 0, 0), + (212212, 100, 360, null, null, 1, 0, 0), + (212213, 100, 120, null, null, 0, 0, 0), + (212214, 100, 239, null, null, 0, 0, 0), + (212215, 100, 240, null, null, 0, 0, 0), + (212216, 100, 359, null, null, 0, 0, 0), + (212217, 100, 360, null, null, 0, 0, 0), + (212218, 100, 120, null, 3000, 0, 0, 0), + (212219, 100, 239, null, 3000, 0, 0, 0), + (212220, 100, 240, null, 3000, 0, 0, 0), + (212221, 100, 359, null, 3000, 0, 0, 0), + (212222, 100, 360, null, 3000, 0, 0, 0), + (212223, 100, 120, null, null, 1, 0, 0), + (212224, 100, 239, null, null, 1, 0, 0), + (212225, 100, 240, null, null, 1, 0, 0), + (212226, 100, 359, null, null, 1, 0, 0), + (212227, 100, 360, null, null, 1, 0, 0), + (212228, 100, 120, null, null, 0, 0, 0), + (212229, 100, 239, null, null, 0, 0, 0), + (212230, 100, 240, null, null, 0, 0, 0), + (212231, 100, 359, null, null, 0, 0, 0), + (212232, 100, 360, null, null, 0, 0, 0), + (212233, 150, 150, null, 3000, 0, 0, 0), + (212234, 150, 150, null, 3000, 0, 0, 0), + (212235, 150, 150, null, 3000, 0, 0, 0), + (212236, 150, 150, null, 3000, 0, 0, 0), + (212237, 150, 150, null, 3000, 0, 0, 0), + (212238, 150, 150, null, null, 0, 0, 0), + (212239, 150, 150, null, null, 0, 0, 0), + (212240, 150, 150, null, null, 0, 0, 0), + (212241, 150, 150, null, null, 0, 0, 0), + (212242, 150, 150, null, null, 0, 0, 0), + (212243, 150, 150, null, 3000, 0, 0, 0), + (212244, 150, 150, null, 3000, 0, 0, 0), + (212245, 150, 150, null, 3000, 0, 0, 0), + (212246, 150, 150, null, 3000, 0, 0, 0), + (212247, 150, 150, null, 3000, 0, 0, 0), + (212248, 150, 150, null, null, 0, 0, 0), + (212249, 150, 150, null, null, 0, 0, 0), + (212250, 150, 150, null, null, 0, 0, 0), + (212251, 150, 150, null, null, 0, 0, 0), + (212252, 150, 150, null, null, 0, 0, 0), + (212253, 200, 200, null, null, 1, 0, 0), + (212254, 200, 200, null, null, 1, 0, 0), + (212255, 200, 200, null, null, 1, 0, 0), + (212256, 200, 200, null, null, 1, 0, 0), + (212257, 200, 200, null, null, 1, 0, 0), + (212258, 200, 200, null, null, 0, 0, 0), + (212259, 200, 200, null, null, 0, 0, 0), + (212260, 200, 200, null, null, 0, 0, 0), + (212261, 200, 200, null, null, 0, 0, 0), + (212262, 200, 200, null, null, 0, 0, 0), + (212263, 200, 200, null, null, 1, 0, 0), + (212264, 200, 200, null, null, 1, 0, 0), + (212265, 200, 200, null, null, 1, 0, 0), + (212266, 200, 200, null, null, 1, 0, 0), + (212267, 200, 200, null, null, 1, 0, 0), + (212268, 200, 200, null, null, 0, 0, 0), + (212269, 200, 200, null, null, 0, 0, 0), + (212270, 200, 200, null, null, 0, 0, 0), + (212271, 200, 200, null, null, 0, 0, 0), + (212272, 200, 200, null, null, 0, 0, 0), + (212273, 300, 100, null, 3000, 1, 0, 0), + (212274, 448, 100, null, 3000, 1, 0, 0), + (212275, 450, 100, null, 3000, 1, 0, 0), + (212276, 598, 100, null, 3000, 1, 0, 0), + (212277, 600, 100, null, 3000, 1, 0, 0), + (212278, 300, 100, null, 3000, 0, 0, 0), + (212279, 448, 100, null, 3000, 0, 0, 0), + (212280, 450, 100, null, 3000, 0, 0, 0), + (212281, 598, 100, null, 3000, 0, 0, 0), + (212282, 600, 100, null, 3000, 0, 0, 0), + (212283, 300, 100, 10348, null, 0, 0, 0), + (212284, 448, 100, 10348, null, 0, 0, 0), + (212285, 450, 100, 10348, null, 0, 0, 0), + (212286, 598, 100, 10348, null, 0, 0, 0), + (212287, 600, 100, 10348, null, 0, 0, 0), + (212288, 300, 100, 10348, null, 1, 0, 0), + (212289, 448, 100, 10348, null, 1, 0, 0), + (212290, 450, 100, 10348, null, 1, 0, 0), + (212291, 598, 100, 10348, null, 1, 0, 0), + (212292, 600, 100, 10348, null, 1, 0, 0), + (212293, 300, 100, 10348, 3000, 0, 0, 0), + (212294, 448, 100, 10348, 3000, 0, 0, 0), + (212295, 450, 100, 10348, 3000, 0, 0, 0), + (212296, 598, 100, 10348, 3000, 0, 0, 0), + (212297, 600, 100, 10348, 3000, 0, 0, 0), + (212298, 300, 100, null, null, 0, 0, 0), + (212299, 448, 100, null, null, 0, 0, 0), + (212300, 450, 100, null, null, 0, 0, 0), + (212301, 598, 100, null, null, 0, 0, 0), + (212302, 600, 100, null, null, 0, 0, 0), + (212303, 300, 100, null, null, 0, 0, 0), + (212304, 448, 100, null, null, 0, 0, 0), + (212305, 450, 100, null, null, 0, 0, 0), + (212306, 598, 100, null, null, 0, 0, 0), + (212307, 600, 100, null, null, 0, 0, 0), + (212308, 300, 100, null, 3000, 0, 0, 0), + (212309, 448, 100, null, 3000, 0, 0, 0), + (212310, 450, 100, null, 3000, 0, 0, 0), + (212311, 598, 100, null, 3000, 0, 0, 0), + (212312, 600, 100, null, 3000, 0, 0, 0), + (212313, 300, 100, 10348, null, 0, 0, 0), + (212314, 448, 100, 10348, null, 0, 0, 0), + (212315, 450, 100, 10348, null, 0, 0, 0), + (212316, 598, 100, 10348, null, 0, 0, 0), + (212317, 600, 100, 10348, null, 0, 0, 0), + (212318, 300, 100, null, 2900, 1, 0, 0), + (212319, 448, 100, null, 2900, 1, 0, 0), + (212320, 450, 100, null, 2900, 1, 0, 0), + (212321, 598, 100, null, 2900, 1, 0, 0), + (212322, 600, 100, null, 2900, 1, 0, 0), + (212323, 300, 100, 10348, null, 1, 0, 0), + (212324, 448, 100, 10348, null, 1, 0, 0), + (212325, 450, 100, 10348, null, 1, 0, 0), + (212326, 598, 100, 10348, null, 1, 0, 0), + (212327, 600, 100, 10348, null, 1, 0, 0), + (212328, 300, 100, 10348, 3000, 0, 0, 0), + (212329, 448, 100, 10348, 3000, 0, 0, 0), + (212330, 450, 100, 10348, 3000, 0, 0, 0), + (212331, 598, 100, 10348, 3000, 0, 0, 0), + (212332, 600, 100, 10348, 3000, 0, 0, 0), + (212333, 200, 200, null, null, 0, 0, 0), + (212335, 250, 250, null, null, 0, 0, 0), + (212336, 300, 300, null, null, 0, 0, 0), + (212337, 300, 300, null, null, 0, 0, 0), + (212338, 200, 200, null, null, 0, 0, 1), + (212339, 250, 250, null, null, 0, 0, 1), + (212340, 250, 250, null, null, 0, 0, 1), + (212341, 300, 300, null, null, 0, 0, 1), + (212342, 300, 300, null, null, 0, 0, 1), + (212343, 200, 200, null, null, 1, 0, 1), + (212344, 250, 250, null, null, 1, 0, 1), + (212345, 250, 250, null, null, 1, 0, 1), + (212346, 300, 300, null, null, 1, 0, 1), + (212347, 300, 300, null, null, 1, 0, 1), + (212348, 200, 200, null, null, 0, 0, 0), + (212349, 250, 250, null, null, 0, 0, 0), + (212350, 250, 250, null, null, 0, 0, 0), + (212351, 300, 300, null, null, 0, 0, 0), + (212352, 300, 300, null, null, 0, 0, 0), + (212353, 200, 200, null, null, 0, 0, 1), + (212354, 250, 250, null, null, 0, 0, 1), + (212355, 250, 250, null, null, 0, 0, 1), + (212356, 300, 300, null, null, 0, 0, 1), + (212357, 300, 300, null, null, 0, 0, 1), + (212358, 200, 200, null, null, 1, 0, 1), + (212359, 250, 250, null, null, 1, 0, 1), + (212360, 250, 250, null, null, 1, 0, 1), + (212361, 300, 300, null, null, 1, 0, 1), + (212362, 300, 300, null, null, 1, 0, 1), + (212363, 300, 300, null, null, 0, 0, 0), + (212364, 300, 300, null, null, 0, 0, 0), + (212365, 300, 300, null, null, 0, 0, 0), + (212366, 300, 300, null, null, 0, 0, 0), + (212367, 300, 300, null, null, 0, 0, 0), + (212368, 300, 300, null, null, 0, 0, 1), + (212369, 300, 300, null, null, 0, 0, 1), + (212370, 300, 300, null, null, 0, 0, 1), + (212371, 300, 300, null, null, 0, 0, 1), + (212372, 300, 300, null, null, 0, 0, 1), + (212373, 300, 300, null, null, 0, 0, 1), + (212374, 300, 300, null, null, 0, 0, 1), + (212375, 300, 300, null, null, 0, 0, 1), + (212376, 300, 300, null, null, 0, 0, 1), + (212377, 300, 300, null, null, 0, 0, 1), + (212378, 300, 300, null, null, 0, 0, 0), + (212379, 300, 300, null, null, 0, 0, 0), + (212380, 300, 300, null, null, 0, 0, 0), + (212381, 300, 300, null, null, 0, 0, 0), + (212382, 300, 300, null, null, 0, 0, 0), + (212383, 200, 200, null, null, 0, 0, 0), + (212384, 200, 200, null, null, 0, 0, 0), + (212385, 200, 200, null, null, 0, 0, 0), + (212386, 200, 200, null, null, 0, 0, 0), + (212387, 200, 200, null, null, 0, 0, 0), + (212388, 200, 200, null, null, 0, 0, 0), + (212389, 200, 200, null, null, 0, 0, 0), + (212390, 200, 200, null, null, 0, 0, 0), + (212391, 200, 200, null, null, 0, 0, 0), + (212392, 200, 200, null, null, 0, 0, 0), + (212394, 200, 200, null, null, 0, 0, 0), + (212395, 200, 200, null, null, 0, 0, 0), + (212396, 200, 200, null, null, 0, 0, 0), + (212397, 200, 200, null, null, 0, 0, 0), + (212398, 200, 200, null, null, 0, 0, 0), + (212399, 200, 200, null, null, 0, 0, 0), + (212400, 200, 200, null, null, 0, 0, 0), + (212401, 200, 200, null, null, 0, 0, 0), + (212402, 200, 200, null, null, 0, 0, 0), + (212403, 200, 200, null, null, 0, 0, 0), + (212404, 200, 200, null, null, 0, 0, 0), + (212405, 200, 200, null, null, 0, 0, 0), + (212406, 200, 200, null, null, 0, 0, 0), + (212407, 200, 200, null, null, 0, 0, 0), + (212408, 200, 200, null, null, 0, 0, 0), + (212409, 200, 200, null, null, 0, 0, 0), + (212410, 200, 200, null, null, 0, 0, 0), + (212411, 200, 200, null, null, 0, 0, 0), + (212412, 200, 200, null, null, 0, 0, 0), + (212413, 200, 200, null, null, 0, 0, 0), + (212414, 200, 200, null, null, 0, 0, 0), + (212415, 200, 200, null, null, 0, 0, 0), + (212416, 200, 200, null, null, 0, 0, 0), + (212417, 200, 200, null, null, 0, 0, 0), + (212418, 200, 200, null, null, 0, 0, 0), + (212419, 200, 200, null, null, 0, 0, 0), + (212420, 200, 200, null, null, 0, 0, 0), + (212421, 200, 200, null, null, 0, 0, 0), + (212422, 200, 200, null, null, 0, 0, 0), + (212423, 200, 200, null, null, 0, 0, 0), + (212424, 200, 200, null, null, 0, 0, 0), + (212425, 200, 200, null, null, 0, 0, 0), + (212426, 200, 200, null, null, 0, 0, 0), + (212427, 200, 200, null, null, 0, 0, 0), + (212428, 200, 200, null, null, 0, 0, 0), + (212429, 200, 200, null, null, 0, 0, 0), + (212430, 200, 200, null, null, 0, 0, 0), + (212431, 200, 200, null, null, 0, 0, 0), + (212432, 200, 200, null, null, 0, 0, 0), + (212433, 200, 200, null, null, 0, 0, 0), + (212434, 200, 200, null, null, 0, 1, 0), + (212435, 200, 200, null, null, 0, 1, 0), + (212436, 200, 200, null, null, 0, 1, 0), + (212437, 200, 200, null, null, 0, 1, 0), + (212438, 200, 200, null, null, 0, 1, 0), + (212439, 200, 200, null, null, 0, 0, 0), + (212440, 200, 200, null, null, 0, 0, 0), + (212441, 200, 200, null, null, 0, 0, 0), + (212442, 200, 200, null, null, 0, 0, 0), + (212443, 200, 200, null, null, 0, 0, 0), + (212444, 200, 200, null, null, 0, 0, 0), + (212445, 200, 200, null, null, 0, 0, 0), + (212446, 200, 200, null, null, 0, 0, 0), + (212447, 200, 200, null, null, 0, 0, 0), + (212448, 200, 200, null, null, 0, 0, 0), + (212449, 200, 200, null, null, 0, 0, 0), + (212450, 200, 200, null, null, 0, 0, 0), + (212451, 200, 200, null, null, 0, 0, 0), + (212452, 200, 200, null, null, 0, 0, 0), + (212453, 200, 200, null, null, 0, 0, 0), + (212454, 200, 200, null, null, 0, 1, 0), + (212455, 200, 200, null, null, 0, 1, 0), + (212456, 200, 200, null, null, 0, 1, 0), + (212457, 200, 200, null, null, 0, 1, 0), + (212458, 200, 200, null, null, 0, 1, 0), + (212459, 200, 200, null, null, 0, 1, 0), + (212460, 200, 200, null, null, 0, 1, 0), + (212461, 200, 200, null, null, 0, 1, 0), + (212462, 200, 200, null, null, 0, 1, 0), + (212463, 200, 200, null, null, 0, 1, 0), + (212464, 200, 200, null, null, 0, 1, 0), + (212465, 200, 200, null, null, 0, 1, 0), + (212466, 200, 200, null, null, 0, 1, 0), + (212467, 200, 200, null, null, 0, 1, 0), + (212468, 200, 200, null, null, 0, 1, 0), + (212469, 200, 200, null, null, 0, 1, 0), + (212470, 200, 200, null, null, 0, 1, 0), + (212471, 200, 200, null, null, 0, 1, 0), + (212472, 200, 200, null, null, 0, 1, 0), + (212473, 200, 200, null, null, 0, 1, 0), + (212474, 200, 200, null, null, 0, 1, 0), + (212475, 200, 200, null, null, 0, 1, 0), + (212476, 200, 200, null, null, 0, 1, 0), + (212477, 200, 200, null, null, 0, 1, 0), + (212478, 200, 200, null, null, 0, 1, 0), + (212479, 200, 200, null, null, 0, 1, 0), + (212480, 200, 200, null, null, 0, 1, 0), + (212481, 200, 200, null, null, 0, 1, 0), + (212482, 200, 200, null, null, 0, 1, 0), + (212483, 200, 200, null, null, 0, 1, 0), + (212484, 200, 200, null, null, 0, 0, 0), + (212485, 200, 200, null, null, 0, 0, 0), + (212486, 200, 200, null, null, 0, 0, 0), + (212487, 200, 200, null, null, 0, 0, 0), + (212488, 200, 200, null, null, 0, 0, 0), + (212489, 200, 200, null, null, 0, 0, 0), + (212490, 200, 200, null, null, 0, 0, 0), + (212491, 200, 200, null, null, 0, 0, 0), + (212492, 200, 200, null, null, 0, 0, 0), + (212493, 200, 200, null, null, 0, 0, 0), + (212494, 200, 200, null, null, 0, 0, 0), + (212495, 200, 200, null, null, 0, 0, 0), + (212496, 200, 200, null, null, 0, 0, 0), + (212497, 200, 200, null, null, 0, 0, 0), + (212498, 200, 200, null, null, 0, 0, 0), + (212499, 200, 200, null, null, 0, 0, 0), + (212500, 200, 200, null, null, 0, 0, 0), + (212501, 200, 200, null, null, 0, 0, 0), + (212502, 200, 200, null, null, 0, 0, 0), + (212503, 200, 200, null, null, 0, 0, 0), + (212504, 200, 200, null, null, 0, 1, 0), + (212505, 200, 200, null, null, 0, 1, 0), + (212506, 200, 200, null, null, 0, 1, 0), + (212507, 200, 200, null, null, 0, 1, 0), + (212508, 200, 200, null, null, 0, 1, 0), + (212509, 200, 200, null, null, 0, 0, 0), + (212510, 200, 200, null, null, 0, 0, 0), + (212511, 200, 200, null, null, 0, 0, 0), + (212512, 200, 200, null, null, 0, 0, 0), + (212513, 200, 200, null, null, 0, 0, 0), + (212514, 200, 200, null, null, 0, 0, 0), + (212515, 200, 200, null, null, 0, 0, 0), + (212516, 200, 200, null, null, 0, 0, 0), + (212517, 200, 200, null, null, 0, 0, 0), + (212518, 200, 200, null, null, 0, 0, 0), + (212519, 200, 200, null, null, 0, 1, 0), + (212520, 200, 200, null, null, 0, 1, 0), + (212521, 200, 200, null, null, 0, 1, 0), + (212522, 200, 200, null, null, 0, 1, 0), + (212523, 200, 200, null, null, 0, 1, 0), + (212524, 200, 200, null, null, 0, 0, 0), + (212525, 200, 200, null, null, 0, 0, 0), + (212526, 200, 200, null, null, 0, 0, 0), + (212527, 200, 200, null, null, 0, 0, 0), + (212528, 200, 200, null, null, 0, 0, 0), + (212529, 200, 200, null, null, 0, 0, 0), + (212530, 200, 200, null, null, 0, 0, 0), + (212531, 200, 200, null, null, 0, 0, 0), + (212532, 200, 200, null, null, 0, 0, 0), + (212533, 200, 200, null, null, 0, 0, 0), + (212534, 200, 200, null, null, 0, 0, 0), + (212535, 200, 200, null, null, 0, 0, 0), + (212536, 200, 200, null, null, 0, 0, 0), + (212537, 200, 200, null, null, 0, 0, 0), + (212538, 200, 200, null, null, 0, 0, 0), + (212539, 200, 200, null, null, 0, 0, 0), + (212540, 200, 200, null, null, 0, 0, 0), + (212541, 200, 200, null, null, 0, 0, 0), + (212542, 200, 200, null, null, 0, 0, 0), + (212543, 200, 200, null, null, 0, 0, 0), + (212544, 200, 200, null, null, 0, 1, 0), + (212545, 200, 200, null, null, 0, 1, 0), + (212546, 200, 200, null, null, 0, 1, 0), + (212547, 200, 200, null, null, 0, 1, 0), + (212548, 200, 200, null, null, 0, 1, 0), + (212549, 200, 200, null, null, 0, 1, 0), + (212550, 200, 200, null, null, 0, 1, 0), + (212551, 200, 200, null, null, 0, 1, 0), + (212552, 200, 200, null, null, 0, 1, 0), + (212553, 200, 200, null, null, 0, 1, 0), + (212554, 200, 200, null, null, 0, 1, 0), + (212555, 200, 200, null, null, 0, 1, 0), + (212556, 200, 200, null, null, 0, 1, 0), + (212557, 200, 200, null, null, 0, 1, 0), + (212558, 200, 200, null, null, 0, 1, 0), + (212559, 200, 200, null, null, 0, 0, 0), + (212560, 200, 200, null, null, 0, 0, 0), + (212561, 200, 200, null, null, 0, 0, 0), + (212562, 200, 200, null, null, 0, 0, 0), + (212563, 200, 200, null, null, 0, 0, 0), + (212564, 200, 200, null, null, 0, 1, 0), + (212565, 200, 200, null, null, 0, 1, 0), + (212566, 200, 200, null, null, 0, 1, 0), + (212567, 200, 200, null, null, 0, 1, 0), + (212568, 200, 200, null, null, 0, 1, 0), + (212569, 200, 200, null, null, 0, 1, 0), + (212570, 200, 200, null, null, 0, 1, 0), + (212571, 200, 200, null, null, 0, 1, 0), + (212572, 200, 200, null, null, 0, 1, 0), + (212573, 200, 200, null, null, 0, 1, 0), + (212575, 200, 200, null, null, 0, 1, 0), + (212576, 200, 200, null, null, 0, 1, 0), + (212577, 200, 200, null, null, 0, 1, 0), + (212578, 200, 200, null, null, 0, 1, 0), + (212579, 200, 200, null, null, 0, 1, 0), + (212580, 200, 200, null, null, 0, 0, 0), + (212581, 200, 200, null, null, 0, 0, 0), + (212582, 200, 200, null, null, 0, 0, 0), + (212583, 200, 200, null, null, 0, 0, 0), + (212584, 200, 200, null, null, 0, 0, 0), + (212585, 200, 200, null, null, 0, 0, 0), + (212586, 200, 200, null, null, 0, 0, 0), + (212587, 200, 200, null, null, 0, 0, 0), + (212588, 200, 200, null, null, 0, 0, 0), + (212589, 200, 200, null, null, 0, 0, 0), + (212590, 200, 200, null, null, 0, 0, 0), + (212591, 200, 200, null, null, 0, 0, 0), + (212592, 200, 200, null, null, 0, 0, 0), + (212593, 200, 200, null, null, 0, 0, 0), + (212594, 200, 200, null, null, 0, 0, 0), + (212595, 200, 200, null, null, 0, 1, 0), + (212596, 200, 200, null, null, 0, 1, 0), + (212597, 200, 200, null, null, 0, 1, 0), + (212598, 200, 200, null, null, 0, 1, 0), + (212599, 200, 200, null, null, 0, 1, 0), + (212600, 200, 200, null, null, 0, 0, 0), + (212601, 200, 200, null, null, 0, 0, 0), + (212602, 200, 200, null, null, 0, 0, 0), + (212603, 200, 200, null, null, 0, 0, 0), + (212604, 200, 200, null, null, 0, 0, 0), + (212605, 200, 500, null, null, 0, 0, 0), + (212606, 200, 500, null, null, 0, 0, 0), + (212607, 200, 500, null, null, 0, 0, 0), + (212608, 200, 500, null, null, 0, 0, 0), + (212609, 200, 500, null, null, 0, 0, 0), + (212610, 200, 500, null, null, 0, 0, 0), + (212611, 200, 500, null, null, 0, 0, 0), + (212612, 200, 500, null, null, 0, 0, 0), + (212613, 200, 500, null, null, 0, 0, 0), + (212614, 200, 500, null, null, 0, 0, 0), + (212615, 200, 500, null, null, 0, 0, 0), + (212616, 200, 500, null, null, 0, 0, 0), + (212617, 200, 500, null, null, 0, 0, 0), + (212618, 200, 500, null, null, 0, 0, 0), + (212619, 200, 500, null, null, 0, 0, 0), + (212620, 200, 500, null, null, 0, 1, 0), + (212621, 200, 500, null, null, 0, 1, 0), + (212622, 200, 500, null, null, 0, 1, 0), + (212623, 200, 500, null, null, 0, 1, 0), + (212624, 200, 500, null, null, 0, 1, 0), + (212625, 200, 500, null, null, 0, 0, 0), + (212626, 200, 500, null, null, 0, 0, 0), + (212627, 200, 500, null, null, 0, 0, 0), + (212628, 200, 500, null, null, 0, 0, 0), + (212629, 200, 500, null, null, 0, 0, 0), + (212630, 200, 500, null, null, 0, 1, 0), + (212631, 200, 500, null, null, 0, 1, 0), + (212632, 200, 500, null, null, 0, 1, 0), + (212633, 200, 500, null, null, 0, 1, 0), + (212634, 200, 500, null, null, 0, 1, 0), + (212635, 200, 500, null, null, 0, 1, 0), + (212636, 200, 500, null, null, 0, 1, 0), + (212637, 200, 500, null, null, 0, 1, 0), + (212638, 200, 500, null, null, 0, 1, 0), + (212639, 200, 500, null, null, 0, 1, 0), + (212640, 200, 500, null, null, 0, 0, 0), + (212641, 200, 500, null, null, 0, 0, 0), + (212642, 200, 500, null, null, 0, 0, 0), + (212643, 200, 500, null, null, 0, 0, 0), + (212644, 200, 500, null, null, 0, 0, 0), + (212645, 200, 500, null, null, 0, 1, 0), + (212646, 200, 500, null, null, 0, 1, 0), + (212647, 200, 500, null, null, 0, 1, 0), + (212648, 200, 500, null, null, 0, 1, 0), + (212649, 200, 500, null, null, 0, 1, 0), + (212650, 200, 500, null, null, 0, 0, 0), + (212651, 200, 500, null, null, 0, 0, 0), + (212652, 200, 500, null, null, 0, 0, 0), + (212653, 200, 500, null, null, 0, 0, 0), + (212654, 200, 500, null, null, 0, 0, 0), + (212655, 200, 500, null, null, 0, 0, 0), + (212656, 200, 500, null, null, 0, 0, 0), + (212657, 200, 500, null, null, 0, 0, 0), + (212658, 200, 500, null, null, 0, 0, 0), + (212659, 200, 500, null, null, 0, 0, 0), + (212660, 200, 500, null, null, 0, 0, 0), + (212661, 200, 500, null, null, 0, 0, 0), + (212662, 200, 500, null, null, 0, 0, 0), + (212663, 200, 500, null, null, 0, 0, 0), + (212664, 200, 500, null, null, 0, 0, 0), + (212665, 200, 400, null, null, 0, 0, 0), + (212666, 200, 400, null, null, 0, 0, 0), + (212667, 200, 400, null, null, 0, 0, 0), + (212668, 200, 400, null, null, 0, 0, 0), + (212669, 200, 400, null, null, 0, 0, 0), + (212670, 200, 400, null, null, 0, 1, 0), + (212671, 200, 400, null, null, 0, 1, 0), + (212672, 200, 400, null, null, 0, 1, 0), + (212673, 200, 400, null, null, 0, 1, 0), + (212674, 200, 400, null, null, 0, 1, 0), + (212675, 200, 400, null, null, 0, 0, 0), + (212676, 200, 400, null, null, 0, 0, 0), + (212677, 200, 400, null, null, 0, 0, 0), + (212678, 200, 400, null, null, 0, 0, 0), + (212679, 200, 400, null, null, 0, 0, 0), + (212680, 200, 400, null, null, 0, 0, 0), + (212681, 200, 400, null, null, 0, 0, 0), + (212682, 200, 400, null, null, 0, 0, 0), + (212683, 200, 400, null, null, 0, 0, 0), + (212684, 200, 400, null, null, 0, 0, 0), + (212685, 200, 400, null, null, 0, 0, 0), + (212686, 200, 400, null, null, 0, 0, 0), + (212687, 200, 400, null, null, 0, 0, 0), + (212688, 200, 400, null, null, 0, 0, 0), + (212689, 200, 400, null, null, 0, 0, 0), + (212690, 200, 400, null, null, 0, 1, 0), + (212691, 200, 400, null, null, 0, 1, 0), + (212692, 200, 400, null, null, 0, 1, 0), + (212693, 200, 400, null, null, 0, 1, 0), + (212694, 200, 400, null, null, 0, 1, 0), + (212695, 200, 400, null, null, 0, 1, 0), + (212696, 200, 400, null, null, 0, 1, 0), + (212697, 200, 400, null, null, 0, 1, 0), + (212698, 200, 400, null, null, 0, 1, 0), + (212699, 200, 400, null, null, 0, 1, 0), + (212700, 200, 400, null, null, 0, 0, 0), + (212701, 200, 400, null, null, 0, 0, 0), + (212702, 200, 400, null, null, 0, 0, 0), + (212703, 200, 400, null, null, 0, 0, 0), + (212704, 200, 400, null, null, 0, 0, 0), + (212705, 200, 400, null, null, 0, 0, 0), + (212706, 200, 400, null, null, 0, 0, 0), + (212707, 200, 400, null, null, 0, 0, 0), + (212708, 200, 400, null, null, 0, 0, 0), + (212709, 200, 400, null, null, 0, 0, 0), + (212710, 200, 400, null, null, 0, 0, 0), + (212711, 200, 400, null, null, 0, 0, 0), + (212712, 200, 400, null, null, 0, 0, 0), + (212713, 200, 400, null, null, 0, 0, 0), + (212714, 200, 400, null, null, 0, 0, 0), + (212715, 200, 400, null, null, 0, 1, 0), + (212716, 200, 400, null, null, 0, 1, 0), + (212717, 200, 400, null, null, 0, 1, 0), + (212718, 200, 400, null, null, 0, 1, 0), + (212719, 200, 400, null, null, 0, 1, 0), + (212720, 200, 400, null, null, 0, 0, 0), + (212721, 200, 400, null, null, 0, 0, 0), + (212722, 200, 400, null, null, 0, 0, 0), + (212723, 200, 400, null, null, 0, 0, 0), + (212724, 200, 400, null, null, 0, 0, 0), + (212725, 200, 400, null, null, 0, 0, 0), + (212726, 200, 400, null, null, 0, 0, 0), + (212727, 200, 400, null, null, 0, 0, 0), + (212728, 200, 400, null, null, 0, 0, 0), + (212729, 200, 400, null, null, 0, 0, 0), + (212730, 200, 400, null, null, 0, 0, 0), + (212731, 200, 400, null, null, 0, 0, 0), + (212732, 200, 400, null, null, 0, 0, 0), + (212733, 200, 400, null, null, 0, 0, 0), + (212734, 200, 400, null, null, 0, 0, 0), + (212735, 200, 400, null, null, 0, 0, 0), + (212736, 200, 400, null, null, 0, 0, 0), + (212737, 200, 400, null, null, 0, 0, 0), + (212738, 200, 400, null, null, 0, 0, 0), + (212739, 200, 400, null, null, 0, 0, 0), + (212740, 200, 400, null, null, 0, 1, 0), + (212741, 200, 400, null, null, 0, 1, 0), + (212742, 200, 400, null, null, 0, 1, 0), + (212743, 200, 400, null, null, 0, 1, 0), + (212745, 200, 400, null, null, 0, 1, 0), + (212746, 200, 400, null, null, 0, 1, 0), + (212747, 200, 400, null, null, 0, 1, 0), + (212748, 200, 400, null, null, 0, 1, 0), + (212749, 200, 400, null, null, 0, 1, 0), + (212750, 200, 400, null, null, 0, 1, 0), + (212751, 200, 400, null, null, 0, 1, 0), + (212752, 200, 400, null, null, 0, 1, 0), + (212753, 200, 400, null, null, 0, 1, 0), + (212754, 200, 400, null, null, 0, 1, 0), + (212755, 200, 400, null, null, 0, 1, 0), + (212756, 200, 400, null, null, 0, 1, 0), + (212757, 200, 400, null, null, 0, 1, 0), + (212758, 200, 400, null, null, 0, 1, 0), + (212759, 200, 400, null, null, 0, 1, 0), + (212760, 200, 400, null, null, 0, 1, 0), + (212761, 200, 400, null, null, 0, 1, 0), + (212762, 200, 400, null, null, 0, 1, 0), + (212763, 200, 400, null, null, 0, 1, 0), + (212764, 200, 400, null, null, 0, 1, 0), + (212765, 200, 400, null, null, 0, 1, 0), + (212766, 200, 400, null, null, 0, 1, 0), + (212767, 200, 400, null, null, 0, 1, 0), + (212768, 200, 400, null, null, 0, 1, 0), + (212769, 200, 400, null, null, 0, 1, 0), + (212770, 200, 400, null, null, 0, 1, 0), + (212771, 200, 400, null, null, 0, 1, 0), + (212772, 200, 400, null, null, 0, 1, 0), + (212773, 200, 400, null, null, 0, 1, 0), + (212774, 200, 400, null, null, 0, 1, 0), + (212775, 200, 400, null, null, 0, 1, 0), + (212776, 200, 400, null, null, 0, 0, 0), + (212777, 200, 400, null, null, 0, 0, 0), + (212778, 200, 400, null, null, 0, 0, 0), + (212779, 200, 400, null, null, 0, 0, 0), + (212780, 200, 400, null, null, 0, 0, 0), + (212781, 200, 400, null, null, 0, 0, 0), + (212782, 200, 400, null, null, 0, 0, 0), + (212783, 200, 400, null, null, 0, 0, 0), + (212784, 200, 400, null, null, 0, 0, 0), + (212785, 200, 400, null, null, 0, 0, 0), + (212786, 200, 400, null, null, 0, 1, 0), + (212787, 200, 400, null, null, 0, 1, 0), + (212788, 200, 400, null, null, 0, 1, 0), + (212789, 200, 400, null, null, 0, 1, 0), + (212790, 200, 400, null, null, 0, 1, 0), + (212791, 200, 400, null, null, 0, 0, 0), + (212792, 200, 400, null, null, 0, 0, 0), + (212793, 200, 400, null, null, 0, 0, 0), + (212794, 200, 400, null, null, 0, 0, 0), + (212795, 200, 400, null, null, 0, 0, 0), + (212796, 200, 200, null, null, 0, 0, 0), + (212797, 200, 200, null, null, 0, 0, 0), + (212798, 200, 200, null, null, 0, 0, 0), + (212799, 200, 200, null, null, 0, 0, 0), + (212800, 200, 200, null, null, 0, 0, 0), + (212801, 200, 200, null, null, 0, 0, 0), + (212802, 200, 200, null, null, 0, 0, 0), + (212803, 200, 200, null, null, 0, 0, 0), + (212804, 200, 200, null, null, 0, 0, 0), + (212805, 200, 200, null, null, 0, 0, 0), + (212808, 200, 200, null, null, 0, 0, 0), + (212809, 200, 200, null, null, 0, 0, 0), + (212810, 200, 200, null, null, 0, 0, 0), + (212811, 200, 200, null, null, 0, 0, 0), + (212812, 200, 200, null, null, 0, 0, 0), + (212813, 200, 200, null, null, 0, 1, 0), + (212814, 200, 200, null, null, 0, 1, 0), + (212815, 200, 200, null, null, 0, 1, 0), + (212816, 200, 200, null, null, 0, 1, 0), + (212817, 200, 200, null, null, 0, 1, 0), + (212818, 200, 200, null, null, 0, 0, 0), + (212819, 200, 200, null, null, 0, 0, 0), + (212820, 200, 200, null, null, 0, 0, 0), + (212821, 200, 200, null, null, 0, 0, 0), + (212822, 200, 200, null, null, 0, 0, 0), + (212823, 200, 200, null, null, 0, 0, 0), + (212824, 200, 200, null, null, 0, 0, 0), + (212825, 200, 200, null, null, 0, 0, 0), + (212826, 200, 200, null, null, 0, 0, 0), + (212827, 200, 200, null, null, 0, 0, 0), + (212828, 200, 200, null, null, 0, 1, 0), + (212829, 200, 200, null, null, 0, 1, 0), + (212832, 200, 200, null, null, 0, 1, 0), + (212833, 200, 200, null, null, 0, 1, 0), + (212834, 200, 200, null, null, 0, 1, 0), + (212835, 200, 200, null, null, 0, 1, 0), + (212836, 200, 200, null, null, 0, 1, 0), + (212837, 200, 200, null, null, 0, 1, 0), + (212838, 200, 200, null, null, 0, 1, 0), + (212839, 200, 200, null, null, 0, 1, 0), + (212840, 200, 200, null, null, 0, 1, 0), + (212841, 200, 200, null, null, 0, 1, 0), + (212843, 200, 200, null, null, 0, 1, 0), + (212844, 200, 200, null, null, 0, 1, 0), + (212845, 200, 200, null, null, 0, 1, 0), + (212847, 200, 200, null, null, 0, 1, 0), + (212848, 200, 200, null, null, 0, 1, 0), + (212849, 200, 200, null, null, 0, 1, 0), + (212850, 200, 200, null, null, 0, 1, 0), + (212851, 200, 200, null, null, 0, 1, 0), + (212852, 200, 200, null, null, 0, 1, 0), + (212853, 200, 200, null, null, 0, 1, 0), + (212854, 200, 200, null, null, 0, 1, 0), + (212855, 200, 200, null, null, 0, 1, 0), + (212856, 200, 200, null, null, 0, 1, 0), + (212857, 200, 200, null, null, 0, 1, 0), + (212858, 200, 200, null, null, 0, 1, 0), + (212859, 200, 200, null, null, 0, 1, 0), + (212860, 200, 200, null, null, 0, 1, 0), + (212861, 200, 200, null, null, 0, 1, 0), + (212862, 200, 200, null, null, 0, 0, 0), + (212863, 200, 200, null, null, 0, 0, 0), + (212864, 200, 200, null, null, 0, 0, 0), + (212865, 200, 200, null, null, 0, 0, 0), + (212866, 200, 200, null, null, 0, 0, 0), + (212867, 200, 200, null, null, 0, 0, 0), + (212868, 200, 200, null, null, 0, 0, 0), + (212869, 200, 200, null, null, 0, 0, 0), + (212870, 200, 200, null, null, 0, 0, 0), + (212871, 200, 200, null, null, 0, 0, 0), + (212872, 200, 200, null, null, 0, 0, 0), + (212873, 200, 200, null, null, 0, 0, 0), + (212874, 200, 200, null, null, 0, 0, 0), + (212875, 200, 200, null, null, 0, 0, 0), + (212876, 200, 200, null, null, 0, 0, 0), + (212877, 200, 200, null, null, 0, 1, 0), + (212878, 200, 200, null, null, 0, 1, 0), + (212879, 200, 200, null, null, 0, 1, 0), + (212880, 200, 200, null, null, 0, 1, 0), + (212881, 200, 200, null, null, 0, 1, 0), + (212882, 200, 200, null, null, 0, 0, 0), + (212883, 200, 200, null, null, 0, 0, 0), + (212884, 200, 200, null, null, 0, 0, 0), + (212885, 200, 200, null, null, 0, 0, 0), + (212886, 200, 200, null, null, 0, 0, 0), + (212887, 200, 200, null, null, 0, 0, 0), + (212888, 200, 200, null, null, 0, 0, 0), + (212889, 200, 200, null, null, 0, 0, 0), + (212890, 200, 200, null, null, 0, 0, 0), + (212891, 200, 200, null, null, 0, 0, 0), + (212993, 300, 220, null, 1600, 1, 0, 0), + (212994, 300, 220, null, 1600, 1, 0, 0), + (212995, 300, 220, null, 1600, 1, 0, 0), + (213260, 1, 180000, null, null, 0, 0, 0), + (213261, 1, 180000, null, null, 0, 0, 0), + (213262, 1, 180000, null, null, 0, 0, 0), + (213263, 1, 180000, null, null, 0, 0, 0), + (213264, 1, 118800, null, null, 0, 0, 0), + (213265, 1, 48000, null, null, 0, 0, 0), + (213266, 1, 48000, null, null, 0, 0, 0), + (213267, 1, 24000, null, null, 0, 0, 0), + (213269, 1, 30000, null, null, 0, 0, 0), + (213270, 1, 30000, null, null, 0, 0, 0), + (213271, 1, 30000, null, null, 0, 0, 0), + (213272, 1, 24000, null, null, 0, 0, 0), + (213273, 1, 24000, null, null, 0, 0, 0), + (213274, 1, 20000, null, null, 0, 0, 0), + (213275, 2, 30000, null, null, 0, 0, 0), + (213276, 2, 30000, null, null, 0, 0, 0), + (213277, 2, 30000, null, null, 0, 0, 0), + (213278, 2, 30000, null, null, 0, 0, 0), + (214156, 200, 200, null, null, 0, 1, 0), + (214157, 200, 200, null, null, 0, 1, 0), + (214158, 200, 200, null, null, 0, 1, 0), + (214159, 200, 200, null, null, 0, 1, 0), + (214160, 200, 200, null, null, 0, 1, 0), + (214161, 200, 200, null, null, 0, 1, 0), + (214162, 200, 200, null, null, 0, 1, 0), + (214163, 200, 200, null, null, 0, 1, 0), + (214164, 200, 200, null, null, 0, 1, 0), + (214165, 200, 200, null, null, 0, 1, 0), + (214166, 200, 400, null, null, 0, 1, 0), + (214167, 200, 400, null, null, 0, 1, 0), + (214168, 200, 400, null, null, 0, 1, 0), + (214169, 200, 400, null, null, 0, 1, 0), + (214170, 200, 400, null, null, 0, 1, 0), + (214171, 200, 400, null, null, 0, 1, 0), + (214172, 200, 400, null, null, 0, 1, 0), + (214173, 200, 400, null, null, 0, 1, 0), + (214174, 200, 400, null, null, 0, 1, 0), + (214175, 200, 400, null, null, 0, 1, 0), + (214176, 200, 200, null, null, 0, 1, 0), + (214177, 200, 200, null, null, 0, 1, 0), + (214178, 200, 200, null, null, 0, 1, 0), + (214179, 200, 200, null, null, 0, 1, 0), + (214180, 200, 200, null, null, 0, 1, 0), + (214182, 200, 200, null, null, 0, 1, 0), + (214183, 200, 200, null, null, 0, 1, 0), + (214184, 200, 200, null, null, 0, 1, 0), + (214185, 200, 200, null, null, 0, 1, 0), + (214186, 200, 200, null, null, 0, 1, 0), + (214187, 100, 120, null, 3000, 1, 0, 0), + (214188, 100, 239, null, 3000, 1, 0, 0), + (214189, 100, 240, null, 3000, 1, 0, 0), + (214190, 100, 359, null, 3000, 1, 0, 0), + (214191, 100, 360, null, 3000, 1, 0, 0), + (214192, 100, 120, null, 3000, 1, 0, 0), + (214193, 100, 239, null, 3000, 1, 0, 0), + (214194, 100, 240, null, 3000, 1, 0, 0), + (214195, 100, 359, null, 3000, 1, 0, 0), + (214196, 100, 360, null, 3000, 1, 0, 0), + (214197, 150, 150, null, 1200, 0, 0, 0), + (214198, 150, 150, null, 1200, 0, 0, 0), + (214199, 150, 150, null, 1200, 0, 0, 0), + (214200, 150, 150, null, 1200, 0, 0, 0), + (214201, 150, 150, null, 1200, 0, 0, 0), + (214203, 150, 150, null, 1200, 0, 0, 0), + (214204, 150, 150, null, 1200, 0, 0, 0), + (214205, 150, 150, null, 1200, 0, 0, 0), + (214206, 150, 150, null, 1200, 0, 0, 0), + (214207, 150, 150, null, 1200, 0, 0, 0), + (214208, 300, 100, 3000, 3000, 0, 0, 0), + (214209, 448, 100, 3000, 3000, 0, 0, 0), + (214210, 450, 100, 3000, 3000, 0, 0, 0), + (214211, 598, 100, 3000, 3000, 0, 0, 0), + (214212, 600, 100, 3000, 3000, 0, 0, 0), + (214217, 300, 100, 3000, 3000, 0, 0, 0), + (214218, 448, 100, 3000, 3000, 0, 0, 0), + (214219, 450, 100, 3000, 3000, 0, 0, 0), + (214220, 598, 100, 3000, 3000, 0, 0, 0), + (214221, 600, 100, 3000, 3000, 0, 0, 0), + (214245, 200, 200, null, null, 0, 0, 0), + (214246, 200, 200, null, null, 0, 0, 0), + (214247, 200, 200, null, null, 0, 0, 0), + (214248, 200, 200, null, null, 0, 0, 0), + (214249, 200, 200, null, null, 0, 0, 0), + (214255, 200, 200, null, null, 0, 0, 0), + (214256, 200, 200, null, null, 0, 0, 0), + (214257, 200, 200, null, null, 0, 0, 0), + (214258, 200, 200, null, null, 0, 0, 0), + (214259, 200, 200, null, null, 0, 0, 0), + (214260, 100, 120, null, null, 0, 0, 0), + (214261, 100, 239, null, null, 0, 0, 0), + (214262, 100, 240, null, null, 0, 0, 0), + (214263, 100, 359, null, null, 0, 0, 0), + (214264, 100, 360, null, null, 0, 0, 0), + (214265, 100, 120, null, null, 0, 0, 0), + (214266, 100, 239, null, null, 0, 0, 0), + (214267, 100, 240, null, null, 0, 0, 0), + (214268, 100, 359, null, null, 0, 0, 0), + (214269, 100, 360, null, null, 0, 0, 0), + (214270, 200, 200, null, null, 0, 0, 0), + (214271, 200, 200, null, null, 0, 0, 0), + (214272, 200, 200, null, null, 0, 0, 0), + (214273, 200, 200, null, null, 0, 0, 0), + (214274, 200, 200, null, null, 0, 0, 0), + (214277, 200, 200, null, null, 0, 0, 0), + (214278, 200, 200, null, null, 0, 0, 0), + (214279, 200, 200, null, null, 0, 0, 0), + (214280, 200, 200, null, null, 0, 0, 0), + (214281, 200, 200, null, null, 0, 0, 0), + (214282, 200, 200, null, null, 0, 0, 1), + (214283, 250, 250, null, null, 0, 0, 1), + (214284, 250, 250, null, null, 0, 0, 1), + (214285, 300, 300, null, null, 0, 0, 1), + (214286, 300, 300, null, null, 0, 0, 1), + (214287, 200, 200, null, null, 0, 0, 1), + (214288, 250, 250, null, null, 0, 0, 1), + (214289, 250, 250, null, null, 0, 0, 1), + (214290, 300, 300, null, null, 0, 0, 1), + (214291, 300, 300, null, null, 0, 0, 1), + (214292, 100, 120, null, null, 0, 0, 0), + (214293, 100, 239, null, null, 0, 0, 0), + (214294, 100, 240, null, null, 0, 0, 0), + (214295, 100, 359, null, null, 0, 0, 0), + (214296, 100, 360, null, null, 0, 0, 0), + (214297, 100, 120, null, null, 0, 0, 0), + (214298, 100, 239, null, null, 0, 0, 0), + (214299, 100, 240, null, null, 0, 0, 0), + (214300, 100, 359, null, null, 0, 0, 0), + (214301, 100, 360, null, null, 0, 0, 0), + (214303, 100, 120, null, null, 0, 0, 0), + (214304, 100, 239, null, null, 0, 0, 0), + (214305, 100, 240, null, null, 0, 0, 0), + (214306, 100, 359, null, null, 0, 0, 0), + (214307, 100, 360, null, null, 0, 0, 0), + (214308, 100, 120, null, null, 0, 0, 0), + (214309, 100, 239, null, null, 0, 0, 0), + (214310, 100, 240, null, null, 0, 0, 0), + (214311, 100, 359, null, null, 0, 0, 0), + (214312, 100, 360, null, null, 0, 0, 0), + (214313, 100, 120, null, null, 0, 0, 0), + (214314, 100, 239, null, null, 0, 0, 0), + (214315, 100, 240, null, null, 0, 0, 0), + (214316, 100, 359, null, null, 0, 0, 0), + (214317, 100, 360, null, null, 0, 0, 0), + (214318, 100, 120, null, null, 0, 0, 0), + (214319, 100, 239, null, null, 0, 0, 0), + (214320, 100, 240, null, null, 0, 0, 0), + (214321, 100, 359, null, null, 0, 0, 0), + (214322, 100, 360, null, null, 0, 0, 0), + (214323, 200, 200, null, null, 0, 1, 0), + (214324, 200, 200, null, null, 0, 1, 0), + (214325, 200, 200, null, null, 0, 1, 0), + (214326, 200, 200, null, null, 0, 1, 0), + (214327, 200, 200, null, null, 0, 1, 0), + (214328, 200, 200, null, null, 0, 1, 0), + (214329, 200, 200, null, null, 0, 1, 0), + (214330, 200, 200, null, null, 0, 1, 0), + (214331, 200, 200, null, null, 0, 1, 0), + (214332, 200, 200, null, null, 0, 1, 0), + (214333, 300, 300, null, null, 0, 0, 0), + (214334, 300, 300, null, null, 0, 0, 0), + (214335, 300, 300, null, null, 0, 0, 0), + (214336, 300, 300, null, null, 0, 0, 0), + (214337, 300, 300, null, null, 0, 0, 0), + (214338, 300, 300, null, null, 0, 0, 0), + (214339, 300, 300, null, null, 0, 0, 0), + (214340, 300, 300, null, null, 0, 0, 0), + (214341, 300, 300, null, null, 0, 0, 0), + (214342, 300, 300, null, null, 0, 0, 0), + (214343, 200, 500, null, null, 0, 1, 0), + (214344, 200, 500, null, null, 0, 1, 0), + (214345, 200, 500, null, null, 0, 1, 0), + (214346, 200, 500, null, null, 0, 1, 0), + (214347, 200, 500, null, null, 0, 1, 0), + (214348, 200, 500, null, null, 0, 1, 0), + (214349, 200, 500, null, null, 0, 1, 0), + (214350, 200, 500, null, null, 0, 1, 0), + (214351, 200, 500, null, null, 0, 1, 0), + (218395, 100, 100, null, null, 0, 0, 0), + (218403, 100, 150, null, null, 0, 1, 0), + (218404, 100, 100, null, null, 0, 1, 0), + (218405, 100, 150, null, null, 1, 0, 0), + (218406, 200, 200, null, null, 0, 0, 0), + (223467, 210, 210, null, null, 0, 0, 0), + (223468, 210, 210, null, null, 0, 0, 0), + (223469, 210, 210, null, null, 0, 0, 0), + (223773, 500, 100, null, null, 0, 0, 0), + (225507, 350, 350, null, null, 0, 1, 0), + (225508, 350, 350, null, null, 0, 1, 0), + (225509, 180, 150, null, null, 0, 1, 0), + (225511, 350, 350, null, null, 0, 1, 0), + (225512, 350, 350, null, null, 0, 1, 0), + (225513, 180, 150, null, null, 0, 1, 0), + (226329, 220, 220, null, null, 0, 1, 0), + (226330, 220, 220, null, null, 0, 1, 0), + (226331, 220, 220, null, null, 0, 1, 0), + (226474, 220, 220, null, null, 0, 1, 0), + (226475, 220, 220, null, null, 0, 1, 0), + (226476, 220, 220, null, null, 0, 1, 0), + (226477, 220, 220, null, null, 0, 1, 0), + (226478, 220, 220, null, null, 0, 1, 0), + (226479, 220, 220, null, null, 0, 1, 0), + (226480, 220, 220, null, null, 0, 1, 0), + (226481, 220, 220, null, null, 0, 1, 0), + (226482, 220, 220, null, null, 0, 1, 0), + (226483, 220, 220, null, null, 0, 1, 0), + (226484, 220, 220, null, null, 0, 1, 0), + (226485, 220, 220, null, null, 0, 1, 0), + (226486, 220, 220, null, null, 0, 1, 0), + (227083, 150, 150, null, null, 0, 1, 0), + (227084, 150, 150, null, null, 0, 1, 0), + (227085, 150, 150, null, null, 0, 1, 0), + (227086, 150, 150, null, null, 0, 1, 0), + (227087, 150, 150, null, null, 0, 1, 0), + (227088, 150, 150, null, null, 0, 1, 0), + (227089, 150, 150, null, null, 0, 1, 0), + (227091, 150, 150, null, null, 0, 1, 0), + (227094, 150, 150, null, null, 0, 1, 0), + (227095, 150, 150, null, null, 0, 1, 0), + (227096, 150, 150, null, null, 0, 1, 0), + (227103, 150, 150, null, null, 0, 0, 0), + (227104, 150, 150, null, null, 0, 0, 0), + (227105, 150, 150, null, null, 0, 0, 0), + (227106, 150, 150, null, null, 0, 0, 1), + (227107, 150, 150, null, null, 0, 0, 1), + (227108, 150, 150, null, null, 0, 0, 1), + (227119, 150, 150, null, 1000, 0, 0, 0), + (227121, 150, 150, null, 1000, 0, 0, 0), + (227130, 150, 150, null, 1000, 0, 0, 0), + (227135, 150, 150, null, null, 1, 0, 0), + (227137, 150, 150, null, null, 1, 0, 0), + (227141, 150, 150, null, null, 1, 0, 0), + (227165, 150, 150, null, null, 0, 0, 0), + (227166, 150, 150, null, null, 0, 0, 0), + (227167, 150, 150, null, null, 0, 0, 0), + (227456, 180, 180, null, null, 0, 1, 0), + (227457, 180, 180, null, null, 0, 1, 0), + (227458, 180, 180, null, null, 0, 1, 0), + (227459, 180, 180, null, null, 0, 1, 0), + (227460, 180, 180, null, null, 0, 1, 0), + (227461, 180, 180, null, null, 0, 1, 0), + (227462, 180, 180, null, null, 0, 1, 0), + (227463, 180, 180, null, null, 0, 1, 0), + (227464, 180, 180, null, null, 0, 1, 0), + (228369, 100, 100, null, null, 0, 0, 0), + (228371, 100, 100, null, null, 0, 0, 0), + (228372, 100, 100, null, null, 0, 0, 0), + (228373, 100, 100, null, null, 0, 0, 0), + (229039, 200, 200, null, null, 0, 0, 0), + (230477, 100, 100, null, null, 0, 0, 0), + (230478, 100, 100, null, null, 0, 0, 0), + (230479, 100, 100, null, null, 0, 0, 0), + (230480, 100, 100, null, null, 0, 0, 0), + (230481, 100, 100, null, null, 0, 0, 0), + (230482, 100, 100, null, null, 0, 0, 0), + (230483, 100, 100, null, null, 0, 1, 0), + (230484, 100, 100, null, null, 0, 1, 0), + (230485, 100, 100, null, null, 0, 1, 0), + (230486, 100, 100, null, null, 0, 1, 0), + (230487, 100, 100, null, null, 0, 1, 0), + (230890, 100, 100, null, null, 0, 0, 0), + (230899, 100, 100, null, null, 0, 0, 0), + (231085, 100, 100, null, null, 0, 0, 0), + (231086, 105, 105, null, null, 0, 0, 0), + (231087, 106, 106, null, null, 0, 0, 0), + (231088, 108, 108, null, null, 0, 0, 0), + (231089, 109, 109, null, null, 0, 0, 0), + (231090, 111, 111, null, null, 0, 0, 0), + (231091, 112, 112, null, null, 0, 0, 0), + (231092, 117, 117, null, null, 0, 0, 0), + (231093, 118, 118, null, null, 0, 0, 0), + (231094, 129, 129, null, null, 0, 0, 0), + (231095, 130, 130, null, null, 0, 0, 0), + (231096, 145, 145, null, null, 0, 0, 0), + (231097, 145, 145, null, null, 0, 0, 0), + (231098, 160, 160, null, null, 0, 0, 0), + (231099, 160, 160, null, null, 0, 0, 0), + (231100, 175, 175, null, null, 0, 0, 0), + (231101, 175, 175, null, null, 0, 0, 0), + (231102, 190, 190, null, null, 0, 0, 0), + (231103, 190, 190, null, null, 0, 0, 0), + (231104, 150, 150, null, null, 0, 0, 0), + (231105, 150, 150, null, null, 0, 0, 0), + (231106, 150, 150, null, null, 0, 0, 0), + (231107, 150, 150, null, null, 0, 0, 0), + (231108, 150, 150, null, null, 0, 0, 0), + (231109, 150, 150, null, null, 0, 0, 0), + (231110, 150, 150, null, null, 0, 0, 0), + (231111, 150, 150, null, null, 0, 0, 0), + (231112, 150, 150, null, null, 0, 0, 0), + (231113, 150, 150, null, null, 0, 0, 0), + (231114, 150, 150, null, null, 0, 1, 0), + (231115, 150, 150, null, null, 0, 1, 0), + (231116, 150, 150, null, null, 0, 1, 0), + (231117, 150, 150, null, null, 0, 1, 0), + (231118, 150, 150, null, null, 0, 1, 0), + (231119, 150, 150, null, null, 0, 1, 0), + (231120, 150, 150, null, null, 0, 1, 0), + (231121, 150, 150, null, null, 0, 1, 0), + (231122, 150, 150, null, null, 0, 1, 0), + (231123, 200, 200, null, null, 0, 0, 0), + (231124, 200, 200, null, null, 0, 0, 0), + (231125, 200, 200, null, null, 0, 1, 0), + (231126, 200, 200, null, null, 0, 1, 0), + (231127, 200, 200, null, null, 0, 1, 0), + (231128, 200, 200, null, null, 0, 1, 0), + (231129, 200, 200, null, null, 0, 1, 0), + (231130, 200, 200, null, null, 0, 1, 0), + (231131, 200, 200, null, null, 0, 1, 0), + (231132, 200, 200, null, null, 0, 1, 0), + (231133, 200, 200, null, null, 0, 1, 0), + (231134, 200, 200, null, null, 0, 1, 0), + (231135, 200, 200, null, null, 0, 1, 0), + (231136, 200, 200, null, null, 0, 1, 0), + (231137, 200, 200, null, null, 0, 1, 0), + (231138, 200, 200, null, null, 0, 1, 0), + (231139, 200, 200, null, null, 0, 1, 0), + (231204, 150, 150, null, null, 0, 0, 0), + (231205, 150, 150, null, null, 0, 0, 0), + (231206, 150, 150, null, null, 0, 1, 0), + (231207, 150, 150, null, null, 0, 1, 0), + (231208, 150, 150, null, null, 0, 1, 0), + (231209, 150, 150, null, null, 0, 1, 0), + (231210, 150, 150, null, null, 0, 1, 0), + (231211, 150, 150, null, null, 0, 1, 0), + (231212, 150, 150, null, null, 0, 1, 0), + (231213, 150, 150, null, null, 0, 1, 0), + (231214, 150, 150, null, null, 0, 1, 0), + (231215, 150, 150, null, null, 0, 1, 0), + (231216, 150, 150, null, null, 0, 1, 0), + (231217, 150, 150, null, null, 0, 1, 0), + (231218, 150, 150, null, null, 0, 1, 0), + (231219, 150, 150, null, null, 0, 1, 0), + (231220, 150, 150, null, null, 0, 1, 0), + (231252, 100, 100, null, null, 0, 0, 0), + (231253, 112, 112, null, null, 0, 0, 0), + (231254, 113, 113, null, null, 0, 1, 0), + (231255, 119, 119, null, null, 0, 1, 0), + (231256, 119, 119, null, null, 0, 1, 0), + (231257, 129, 129, null, null, 0, 1, 0), + (231258, 129, 129, null, null, 0, 1, 0), + (231259, 166, 166, null, null, 0, 1, 0), + (231260, 166, 166, null, null, 0, 1, 0), + (231261, 232, 232, null, null, 0, 1, 0), + (231262, 233, 233, null, null, 0, 1, 0), + (231263, 266, 266, null, null, 0, 1, 0), + (231264, 267, 267, null, null, 0, 1, 0), + (231265, 283, 283, null, null, 0, 1, 0), + (231266, 283, 283, null, null, 0, 1, 0), + (231267, 299, 299, null, null, 0, 1, 0), + (231268, 300, 300, null, null, 0, 1, 0), + (233189, 190, 190, null, null, 0, 0, 0), + (233190, 190, 190, null, null, 0, 0, 0), + (233191, 190, 190, null, null, 1, 0, 0), + (233192, 190, 190, null, null, 1, 0, 0), + (233193, 190, 190, null, null, 1, 0, 0), + (233220, 190, 190, null, null, 0, 0, 0), + (233221, 190, 190, null, null, 0, 0, 0), + (233222, 190, 190, null, null, 1, 0, 0), + (233223, 190, 190, null, null, 1, 0, 0), + (233224, 190, 190, null, null, 1, 0, 0), + (233225, 190, 190, null, null, 0, 0, 0), + (233226, 190, 190, null, null, 0, 0, 0), + (233227, 190, 190, null, null, 1, 0, 0), + (233228, 190, 190, null, null, 1, 0, 0), + (233229, 190, 190, null, null, 1, 0, 0), + (233236, 200, 200, null, null, 0, 0, 0), + (233237, 233, 233, null, null, 0, 0, 0), + (233238, 233, 233, null, 6000, 0, 0, 0), + (233239, 266, 266, null, 6000, 0, 0, 0), + (233240, 267, 267, 6000, 4000, 0, 0, 0), + (233241, 300, 300, 6000, 4000, 0, 0, 0), + (233242, 300, 300, 4000, 2000, 0, 0, 0), + (233244, 200, 200, null, 6000, 0, 0, 0), + (233245, 200, 200, null, 6000, 0, 0, 0), + (233246, 200, 200, null, 4000, 0, 0, 0), + (233247, 200, 200, null, 4000, 0, 0, 0), + (233248, 200, 200, null, 2000, 0, 0, 0), + (233255, 150, 150, null, null, 0, 0, 0), + (233256, 150, 150, null, null, 0, 0, 0), + (233257, 150, 150, null, null, 0, 0, 0), + (233258, 150, 150, null, null, 0, 0, 0), + (233259, 150, 150, null, null, 0, 0, 0), + (233260, 150, 150, null, null, 0, 0, 0), + (233261, 150, 150, null, null, 0, 0, 0), + (233262, 150, 150, null, null, 0, 0, 0), + (233263, 150, 150, null, null, 0, 0, 0), + (233264, 150, 150, null, null, 0, 0, 0), + (233265, 150, 150, null, null, 0, 0, 0), + (233266, 150, 150, null, null, 0, 0, 0), + (233267, 150, 150, null, null, 0, 0, 0), + (233268, 150, 150, null, null, 0, 0, 0), + (233269, 150, 150, null, null, 0, 0, 0), + (233270, 150, 150, null, null, 0, 0, 0), + (233271, 200, 200, null, null, 0, 0, 0), + (233272, 200, 200, null, null, 0, 0, 0), + (233273, 200, 200, null, null, 0, 0, 0), + (233274, 200, 200, null, null, 0, 0, 0), + (233275, 200, 200, null, null, 0, 1, 0), + (233276, 200, 200, null, null, 0, 1, 0), + (233277, 200, 200, null, null, 0, 1, 0), + (233278, 200, 200, null, null, 0, 1, 0), + (233279, 200, 200, null, null, 0, 1, 0), + (233280, 200, 200, null, null, 0, 1, 0), + (233281, 200, 200, null, null, 0, 1, 0), + (233282, 200, 200, null, null, 0, 1, 0), + (233283, 200, 200, null, null, 0, 1, 0), + (233284, 200, 200, null, null, 0, 1, 0), + (233285, 200, 200, null, null, 0, 1, 0), + (233286, 200, 200, null, null, 0, 0, 0), + (233287, 200, 200, null, null, 0, 0, 0), + (233288, 200, 200, null, null, 0, 0, 0), + (233289, 200, 200, null, null, 0, 0, 0), + (233290, 200, 200, null, null, 0, 1, 0), + (233291, 200, 200, null, null, 0, 1, 0), + (233292, 200, 200, null, null, 0, 1, 0), + (233293, 200, 200, null, null, 0, 1, 0), + (233294, 200, 200, null, null, 0, 1, 0), + (233295, 200, 200, null, null, 0, 1, 0), + (233296, 200, 200, null, null, 0, 1, 0), + (233297, 200, 200, null, null, 0, 1, 0), + (233298, 200, 200, null, null, 0, 1, 0), + (233299, 200, 200, null, null, 0, 1, 0), + (233300, 200, 200, null, null, 0, 1, 0), + (233301, 200, 200, null, null, 0, 0, 0), + (233302, 200, 200, null, null, 0, 0, 0), + (233303, 200, 200, null, null, 0, 0, 0), + (233304, 200, 200, null, null, 0, 0, 0), + (233305, 200, 200, null, null, 0, 1, 0), + (233306, 200, 200, null, null, 0, 1, 0), + (233307, 200, 200, null, null, 0, 1, 0), + (233308, 200, 200, null, null, 0, 1, 0), + (233309, 200, 200, null, null, 0, 1, 0), + (233310, 200, 200, null, null, 0, 1, 0), + (233311, 200, 200, null, null, 0, 1, 0), + (233312, 200, 200, null, null, 0, 1, 0), + (233313, 200, 200, null, null, 0, 1, 0), + (233314, 200, 200, null, null, 0, 1, 0), + (233315, 200, 200, null, null, 0, 1, 0), + (233316, 200, 200, null, null, 0, 0, 0), + (233317, 200, 200, null, null, 0, 0, 0), + (233318, 200, 200, null, null, 0, 0, 0), + (233319, 300, 300, null, null, 0, 0, 0), + (233320, 300, 300, null, null, 0, 0, 0), + (233321, 300, 300, null, null, 0, 0, 0), + (233322, 250, 250, null, null, 0, 0, 0), + (233323, 250, 250, null, null, 0, 0, 0), + (233324, 250, 250, null, null, 0, 0, 0), + (233325, 325, 325, null, null, 0, 0, 0), + (233326, 325, 325, null, null, 0, 0, 0), + (233327, 325, 325, null, null, 0, 0, 0), + (233328, 325, 325, null, null, 0, 0, 0), + (233329, 325, 325, null, null, 0, 0, 0), + (233330, 325, 325, null, null, 0, 0, 0), + (233331, 325, 325, null, null, 0, 0, 0), + (233332, 325, 325, null, null, 0, 0, 0), + (233333, 325, 325, null, null, 0, 0, 0), + (233334, 325, 325, null, null, 0, 0, 0), + (233335, 325, 325, null, null, 0, 0, 0), + (233336, 325, 325, null, null, 0, 0, 0), + (233337, 325, 325, null, null, 0, 0, 0), + (233340, 300, 200, null, null, 0, 0, 0), + (233341, 300, 200, null, null, 0, 0, 0), + (233342, 300, 200, null, null, 0, 0, 0), + (233343, 300, 200, null, null, 0, 0, 0), + (233344, 300, 200, null, null, 0, 0, 1), + (233345, 300, 200, null, null, 0, 0, 1), + (233346, 300, 200, null, null, 0, 0, 1), + (233347, 150, 150, null, null, 0, 0, 0), + (233348, 150, 150, null, null, 0, 0, 0), + (233349, 150, 150, 6000, null, 0, 0, 0), + (233350, 150, 150, 6000, null, 0, 0, 0), + (233351, 150, 150, 4000, null, 0, 0, 0), + (233355, 150, 150, null, null, 0, 0, 0), + (233356, 150, 150, null, null, 0, 0, 0), + (233357, 150, 150, 6000, null, 0, 0, 0), + (233358, 150, 150, 6000, null, 0, 0, 0), + (233359, 150, 150, 4000, null, 0, 0, 0), + (233420, 200, 200, null, null, 0, 1, 0), + (233421, 200, 200, null, null, 0, 1, 0), + (233422, 200, 200, null, null, 0, 1, 0), + (233423, 200, 200, null, null, 0, 1, 0), + (233424, 200, 200, null, null, 0, 1, 0), + (233425, 200, 200, null, null, 0, 1, 0), + (233426, 200, 200, null, null, 0, 1, 0), + (233428, 150, 150, null, null, 0, 0, 0), + (233429, 150, 150, null, null, 0, 0, 0), + (233430, 150, 150, null, null, 0, 0, 0), + (233431, 150, 150, null, null, 0, 0, 0), + (233432, 150, 150, null, null, 0, 0, 0), + (233433, 150, 150, null, null, 0, 0, 0), + (233434, 150, 150, null, null, 0, 0, 0), + (233435, 150, 150, null, null, 0, 0, 0), + (233436, 150, 150, null, null, 0, 0, 0), + (233437, 150, 150, null, null, 0, 0, 0), + (233438, 150, 150, null, null, 0, 0, 0), + (233439, 150, 150, null, null, 0, 0, 0), + (233440, 150, 150, null, null, 0, 0, 0), + (233441, 150, 150, null, null, 0, 0, 0), + (233442, 150, 150, null, null, 0, 0, 0), + (233443, 150, 150, null, null, 0, 0, 0), + (233444, 150, 150, null, null, 0, 0, 0), + (233445, 150, 150, null, null, 0, 0, 0), + (233446, 150, 150, null, null, 0, 0, 0), + (233447, 150, 150, null, null, 0, 0, 0), + (233448, 150, 150, null, null, 0, 0, 0), + (233449, 150, 150, null, null, 0, 0, 0), + (233450, 150, 150, null, null, 0, 0, 0), + (233451, 150, 150, null, null, 0, 0, 0), + (233452, 150, 150, null, null, 0, 0, 0), + (233453, 150, 150, null, null, 0, 0, 0), + (233454, 150, 150, null, null, 0, 0, 0), + (233455, 150, 150, null, null, 0, 0, 0), + (233456, 150, 150, null, null, 0, 0, 0), + (233457, 150, 150, null, null, 0, 0, 0), + (233458, 150, 150, null, null, 0, 0, 0), + (233459, 150, 150, null, null, 0, 0, 0), + (233460, 150, 150, null, null, 0, 0, 0), + (233461, 150, 150, null, null, 0, 0, 0), + (233462, 150, 150, null, null, 0, 0, 0), + (233463, 150, 150, null, null, 0, 0, 0), + (233464, 150, 150, null, null, 0, 0, 0), + (233465, 150, 150, null, null, 0, 0, 0), + (233466, 150, 150, null, null, 0, 0, 0), + (233467, 150, 150, null, null, 0, 0, 0), + (233792, 300, 135, null, 1000, 0, 0, 0), + (233793, 300, 135, null, 1000, 0, 0, 0), + (233794, 300, 135, null, 1000, 0, 0, 0), + (233795, 300, 135, null, 1000, 0, 0, 0), + (233796, 300, 135, null, 1000, 0, 0, 0), + (233797, 300, 135, null, 1000, 0, 0, 0), + (233798, 300, 135, null, 1000, 0, 0, 0), + (233799, 310, 160, 6000, 2000, 0, 0, 0), + (233800, 310, 160, 6000, 2000, 0, 0, 0), + (233801, 310, 160, 6000, 2000, 0, 0, 0), + (233802, 310, 160, 6000, 2000, 0, 0, 0), + (233803, 310, 160, 6000, 2000, 0, 0, 0), + (234610, 200, 500, null, null, 0, 1, 0), + (234638, 100, 100, null, null, 0, 0, 0), + (234639, 100, 100, null, null, 0, 0, 0), + (234640, 100, 100, null, null, 0, 0, 0), + (234641, 100, 100, null, null, 0, 0, 0), + (234642, 100, 100, null, null, 0, 0, 0), + (234643, 100, 100, null, null, 0, 0, 0), + (234644, 100, 100, null, null, 0, 0, 0), + (234645, 100, 100, null, null, 0, 0, 0), + (234646, 100, 100, null, null, 0, 0, 0), + (234647, 100, 100, null, null, 0, 0, 0), + (234648, 100, 100, null, null, 0, 0, 0), + (234649, 100, 100, null, null, 0, 0, 0), + (234650, 200, 400, null, null, 0, 1, 0), + (234651, 200, 400, null, null, 0, 1, 0), + (234652, 200, 400, null, null, 0, 1, 0), + (234653, 200, 400, null, null, 0, 1, 0), + (234654, 200, 400, null, null, 0, 1, 0), + (234655, 110, 110, null, null, 0, 0, 0), + (234656, 128, 128, null, null, 0, 0, 0), + (234657, 128, 128, null, null, 0, 0, 0), + (234658, 146, 146, null, null, 0, 0, 0), + (234659, 146, 146, null, null, 0, 0, 0), + (234660, 220, 220, null, null, 0, 0, 0), + (234661, 220, 220, null, null, 0, 0, 0), + (238922, 100, 100, null, null, 0, 0, 0), + (238923, 100, 100, null, null, 0, 0, 0), + (238924, 100, 100, null, null, 0, 0, 0), + (238925, 100, 100, null, null, 0, 0, 0), + (238926, 100, 100, null, null, 0, 0, 0), + (238927, 100, 100, null, null, 0, 0, 0), + (238928, 100, 100, null, null, 0, 0, 0), + (238929, 100, 100, null, null, 0, 0, 0), + (238930, 100, 100, null, null, 0, 0, 0), + (238931, 100, 100, null, null, 0, 0, 0), + (238932, 100, 100, null, null, 0, 0, 0), + (238933, 100, 100, null, null, 0, 0, 0), + (238934, 100, 100, null, null, 0, 0, 0), + (238935, 100, 100, null, null, 0, 0, 0), + (238936, 100, 100, null, null, 0, 0, 0), + (238937, 100, 100, null, null, 0, 0, 0), + (238939, 100, 100, null, null, 0, 0, 0), + (238940, 100, 100, null, null, 0, 0, 0), + (238941, 100, 100, null, null, 0, 0, 0), + (238942, 100, 100, null, null, 0, 0, 0), + (238943, 100, 100, null, null, 0, 0, 0), + (238944, 100, 100, null, null, 0, 0, 0), + (238956, 110, 110, null, null, 0, 1, 0), + (238957, 128, 128, null, null, 0, 1, 0), + (238958, 128, 128, null, null, 0, 1, 0), + (238959, 146, 146, null, null, 0, 1, 0), + (238960, 146, 146, null, null, 0, 1, 0), + (238961, 220, 220, null, null, 0, 1, 0), + (238962, 220, 220, null, null, 0, 1, 0), + (243739, 300, 300, null, null, 0, 0, 0), + (243740, 300, 300, null, null, 0, 0, 0), + (243741, 300, 300, null, null, 0, 0, 0), + (243742, 300, 300, null, null, 0, 0, 0), + (243743, 300, 300, null, null, 0, 0, 0), + (243744, 300, 300, null, null, 0, 0, 0), + (243745, 300, 300, null, null, 0, 0, 0), + (243746, 300, 300, null, null, 0, 0, 0), + (243747, 300, 300, null, null, 0, 0, 0), + (243748, 350, 350, null, null, 0, 0, 0), + (243749, 350, 350, null, null, 0, 0, 0), + (243750, 350, 350, null, null, 0, 0, 0), + (243751, 350, 350, null, null, 0, 0, 0), + (243752, 350, 350, null, null, 0, 0, 0), + (243753, 350, 350, null, null, 0, 0, 0), + (243754, 350, 350, null, null, 0, 0, 0), + (243755, 350, 350, null, null, 0, 0, 0), + (243756, 350, 350, null, null, 0, 0, 0), + (243757, 350, 350, null, null, 0, 0, 0), + (243758, 350, 350, null, null, 0, 0, 0), + (243759, 350, 350, null, null, 0, 0, 0), + (243760, 350, 350, null, null, 0, 0, 0), + (243761, 350, 350, null, null, 0, 0, 0), + (243762, 350, 350, null, null, 0, 0, 0), + (243763, 350, 350, null, null, 0, 0, 0), + (243764, 350, 350, null, null, 0, 0, 0), + (243765, 350, 350, null, null, 0, 0, 0), + (243766, 350, 350, null, null, 0, 0, 0), + (243767, 250, 250, null, null, 0, 0, 0), + (243768, 250, 250, null, null, 0, 0, 0), + (243769, 250, 250, null, null, 0, 0, 0), + (243770, 250, 250, null, null, 0, 0, 0), + (243771, 250, 250, null, null, 0, 0, 0), + (243772, 250, 250, null, null, 0, 0, 0), + (243773, 250, 250, null, null, 0, 0, 0), + (243774, 250, 250, null, null, 0, 0, 0), + (243775, 250, 250, null, null, 0, 0, 0), + (243777, 300, 300, null, null, 1, 0, 0), + (243778, 300, 300, null, null, 1, 0, 0), + (243779, 300, 300, null, null, 1, 0, 0), + (243780, 300, 300, null, null, 1, 0, 0), + (243781, 300, 300, null, null, 1, 0, 0), + (243782, 300, 300, null, null, 1, 0, 0), + (243783, 300, 300, null, null, 1, 0, 0), + (243784, 300, 300, null, null, 1, 0, 0), + (243785, 300, 300, null, null, 1, 0, 0), + (243786, 300, 300, null, null, 1, 0, 0), + (243787, 300, 300, null, null, 1, 0, 0), + (243788, 300, 300, null, null, 1, 0, 0), + (243789, 300, 300, null, null, 1, 0, 0), + (243790, 300, 300, null, null, 1, 0, 0), + (243791, 300, 300, null, null, 1, 0, 0), + (243792, 300, 300, null, null, 1, 0, 0), + (243793, 300, 300, null, null, 1, 0, 0), + (243794, 300, 300, null, null, 1, 0, 0), + (243795, 300, 300, null, null, 1, 0, 0), + (243796, 300, 300, null, null, 1, 0, 0), + (243797, 300, 300, null, null, 1, 0, 0), + (243798, 300, 300, null, null, 1, 0, 0), + (243799, 285, 330, null, 3300, 0, 0, 0), + (243800, 285, 330, null, 3300, 0, 0, 0), + (243801, 285, 330, null, 3300, 0, 0, 0), + (243802, 285, 330, null, 3300, 0, 0, 0), + (243803, 285, 330, null, 3300, 0, 0, 0), + (243804, 285, 330, null, 3300, 0, 0, 0), + (243805, 285, 330, null, 3300, 0, 0, 0), + (243806, 285, 330, null, 3300, 0, 0, 0), + (243807, 285, 330, null, 3300, 0, 0, 0), + (243846, 100, 150, null, null, 1, 0, 0), + (243847, 100, 125, null, null, 1, 0, 0), + (243848, 100, 125, null, null, 1, 0, 0), + (244742, 300, 300, null, null, 0, 1, 0), + (244743, 300, 300, null, null, 0, 1, 0), + (244761, 250, 250, null, null, 0, 1, 0), + (244762, 250, 250, null, null, 0, 1, 0), + (244778, 300, 300, null, null, 0, 0, 0), + (244779, 300, 300, null, null, 0, 0, 0), + (244782, 330, 330, null, null, 0, 0, 0), + (244783, 330, 330, null, null, 0, 0, 0), + (244784, 400, 400, null, null, 0, 1, 0), + (244785, 400, 400, null, null, 0, 1, 0), + (244801, 300, 300, 3000, null, 0, 0, 0), + (244802, 300, 300, 3000, null, 0, 0, 0), + (244820, 300, 300, null, null, 0, 0, 1), + (244821, 300, 300, null, null, 0, 0, 1), + (244842, 200, 200, null, 1200, 0, 0, 0), + (244843, 200, 200, null, 1200, 0, 0, 0), + (244859, 200, 200, null, null, 0, 0, 0), + (244862, 200, 200, null, null, 0, 0, 0), + (244909, 200, 200, null, null, 0, 0, 0), + (244910, 200, 200, null, null, 0, 0, 0), + (244911, 200, 200, null, null, 0, 0, 0), + (244912, 200, 200, null, null, 0, 0, 0), + (244913, 100, 100, null, null, 1, 0, 0), + (244914, 100, 100, null, null, 1, 0, 0), + (245157, 330, 350, null, null, 0, 1, 0), + (245158, 330, 350, null, null, 0, 1, 0), + (245166, 330, 350, null, null, 0, 1, 0), + (245217, 120, 120, null, null, 1, 0, 0), + (245218, 120, 120, null, null, 1, 0, 0), + (245219, 120, 120, null, null, 1, 0, 0), + (245220, 120, 120, null, null, 1, 0, 0), + (245221, 120, 120, null, null, 1, 0, 0), + (245222, 120, 120, null, null, 1, 0, 0), + (245223, 120, 120, null, null, 1, 0, 0), + (245271, 350, 350, null, null, 0, 1, 0), + (245272, 350, 350, null, null, 0, 1, 0), + (245273, 350, 350, null, null, 0, 1, 0), + (245572, 100, 100, 4000, null, 0, 0, 0), + (245573, 100, 100, 4000, null, 0, 0, 0), + (245574, 100, 100, 3000, null, 0, 0, 0), + (245575, 100, 100, 4000, null, 0, 0, 0), + (245576, 100, 100, 4000, null, 0, 0, 0), + (245577, 100, 100, 3000, null, 0, 0, 0), + (245578, 200, 200, null, null, 0, 1, 0), + (245579, 105, 105, null, null, 0, 1, 0), + (245580, 100, 100, null, null, 0, 1, 0), + (245582, 100, 100, null, null, 0, 1, 0), + (245583, 100, 100, null, null, 0, 1, 0), + (245584, 100, 100, null, null, 0, 1, 0), + (245605, 100, 100, null, null, 0, 1, 0), + (245606, 100, 100, null, null, 0, 1, 0), + (245607, 100, 100, null, null, 0, 1, 0), + (245627, 150, 150, null, null, 0, 0, 0), + (245628, 150, 150, null, null, 0, 0, 0), + (245629, 150, 150, null, null, 0, 0, 0), + (245630, 150, 150, null, null, 0, 0, 0), + (245631, 150, 150, null, null, 0, 0, 0), + (245632, 150, 150, null, null, 0, 0, 0), + (245633, 150, 150, null, null, 0, 0, 0), + (245634, 150, 150, null, null, 0, 0, 0), + (245635, 150, 150, null, null, 0, 0, 0), + (245636, 150, 150, null, null, 0, 0, 0), + (245637, 150, 150, null, null, 0, 0, 0), + (245638, 150, 150, null, null, 0, 0, 0), + (245639, 150, 150, null, null, 0, 0, 0), + (245640, 150, 150, null, null, 0, 0, 0), + (245641, 150, 150, null, null, 0, 0, 0), + (245669, 100, 100, null, null, 0, 0, 0), + (245678, 200, 200, null, 1500, 1, 0, 0), + (245679, 200, 200, null, 1500, 1, 0, 0), + (245680, 200, 200, null, 1500, 1, 0, 0), + (245731, 275, 275, 5000, 2500, 0, 0, 0), + (245732, 275, 275, 5000, 2500, 0, 0, 0), + (245733, 275, 275, 5000, 2500, 0, 0, 0), + (245736, 100, 100, null, 1600, 1, 0, 0), + (245737, 100, 100, null, 1600, 1, 0, 0), + (245738, 100, 100, null, 1600, 1, 0, 0), + (245766, 200, 200, null, null, 0, 1, 0), + (245767, 200, 200, null, null, 0, 1, 0), + (245768, 200, 200, null, null, 0, 1, 0), + (245784, 300, 300, null, null, 0, 0, 0), + (245785, 300, 300, null, null, 0, 0, 0), + (245786, 300, 300, null, null, 0, 0, 0), + (245797, 100, 100, null, 1500, 0, 0, 0), + (245798, 100, 100, null, 1500, 0, 0, 0), + (245799, 100, 100, null, 1500, 0, 0, 0), + (245881, 200, 200, null, null, 0, 0, 1), + (245882, 200, 200, null, null, 0, 0, 1), + (245883, 200, 200, null, null, 0, 0, 1), + (245997, 350, 350, null, null, 0, 0, 0), + (245998, 350, 350, null, null, 0, 0, 0), + (245999, 350, 350, null, null, 0, 0, 0), + (246000, 350, 350, null, null, 0, 0, 0), + (246001, 350, 350, null, null, 0, 0, 0), + (246002, 350, 350, null, null, 0, 0, 0), + (246003, 350, 350, null, null, 0, 0, 0), + (246004, 350, 350, null, null, 0, 0, 0), + (246005, 350, 350, null, null, 0, 0, 0), + (246006, 350, 350, null, null, 0, 0, 0), + (246007, 350, 350, null, null, 0, 0, 0), + (246008, 350, 350, null, null, 0, 0, 0), + (246009, 350, 350, null, null, 0, 0, 0), + (246010, 350, 350, null, null, 0, 0, 0), + (246011, 350, 350, null, null, 0, 0, 0), + (246012, 350, 350, null, null, 0, 0, 0), + (246013, 350, 350, null, null, 0, 0, 0), + (246014, 350, 350, null, null, 0, 0, 0), + (246015, 350, 350, null, null, 0, 0, 0), + (246016, 100, 100, null, null, 0, 1, 0), + (246017, 100, 100, null, null, 0, 1, 0), + (246018, 100, 100, null, null, 0, 1, 0), + (246021, 500, 500, null, null, 0, 0, 0), + (246022, 500, 500, null, null, 0, 0, 0), + (246023, 500, 500, null, null, 0, 0, 0), + (246044, 150, 150, null, null, 0, 0, 0), + (246045, 140, 140, null, null, 0, 0, 0), + (246046, 138, 138, null, null, 0, 0, 0), + (246047, 128, 128, null, null, 0, 0, 0), + (246048, 125, 125, null, null, 0, 0, 0), + (246049, 115, 115, null, null, 0, 0, 0), + (246050, 112, 112, null, null, 0, 0, 0), + (246051, 102, 102, null, null, 0, 0, 0), + (246052, 100, 100, null, null, 0, 0, 0), + (246053, 500, 500, null, null, 0, 0, 0), + (246054, 500, 500, null, null, 0, 0, 0), + (246055, 500, 500, null, null, 0, 0, 0), + (246056, 500, 500, null, null, 0, 0, 0), + (246057, 500, 500, null, null, 0, 0, 0), + (246058, 500, 500, null, null, 0, 0, 0), + (246059, 500, 500, null, null, 0, 0, 0), + (246060, 500, 500, null, null, 0, 0, 0), + (246061, 500, 500, null, null, 0, 0, 0), + (246097, 200, 200, null, null, 0, 0, 0), + (246098, 200, 200, null, null, 0, 0, 0), + (246099, 200, 200, null, null, 0, 0, 0), + (246100, 200, 200, null, null, 0, 0, 0), + (246101, 200, 200, null, null, 0, 0, 0), + (246102, 200, 200, null, null, 0, 0, 0), + (246103, 200, 200, null, null, 0, 0, 0), + (246104, 200, 200, null, null, 0, 0, 0), + (246105, 200, 200, null, null, 0, 0, 0), + (246242, 1, 1, null, null, 0, 0, 0), + (246243, 100, 100, null, null, 0, 0, 0), + (246244, 200, 200, null, null, 0, 0, 0), + (246254, 1, 1, null, null, 0, 0, 0), + (246255, 100, 100, null, null, 0, 0, 0), + (246256, 200, 200, null, null, 0, 0, 0), + (246323, 100, 100, null, 6000, 0, 0, 0), + (246324, 100, 100, null, 6000, 0, 0, 0), + (246325, 100, 100, null, 5400, 0, 0, 0), + (246326, 100, 100, null, 5400, 0, 0, 0), + (246327, 100, 100, null, 4800, 0, 0, 0), + (246328, 100, 100, null, 4800, 0, 0, 0), + (246329, 100, 100, null, 4200, 0, 0, 0), + (246330, 100, 100, null, 4200, 0, 0, 0), + (246331, 100, 100, null, 3600, 0, 0, 0), + (246332, 100, 100, null, 3600, 0, 0, 0), + (246333, 100, 100, null, 3000, 0, 0, 0), + (246334, 100, 100, 6000, 6000, 0, 0, 0), + (246335, 100, 100, 6000, 6000, 0, 0, 0), + (246336, 100, 100, 5400, 5400, 0, 0, 0), + (246337, 100, 100, 5400, 5400, 0, 0, 0), + (246338, 100, 100, 4800, 4800, 0, 0, 0), + (246339, 100, 100, 4800, 4800, 0, 0, 0), + (246340, 100, 100, 4200, 4200, 0, 0, 0), + (246341, 100, 100, 4200, 4200, 0, 0, 0), + (246342, 100, 100, 3600, 3600, 0, 0, 0), + (246343, 100, 100, 3600, 3600, 0, 0, 0), + (246344, 100, 100, 3000, 3000, 0, 0, 0), + (246345, 100, 100, null, null, 0, 1, 0), + (246346, 100, 100, null, null, 0, 1, 0), + (246347, 100, 100, null, null, 0, 1, 0), + (246348, 100, 100, null, null, 0, 1, 0), + (246349, 100, 100, null, null, 0, 1, 0), + (246350, 100, 100, null, null, 0, 1, 0), + (246351, 100, 100, null, null, 0, 1, 0), + (246352, 100, 100, null, null, 0, 1, 0), + (246353, 100, 100, null, null, 0, 1, 0), + (246354, 100, 100, null, null, 0, 1, 0), + (246355, 100, 100, null, null, 0, 1, 0), + (246408, 100, 100, null, null, 0, 0, 1), + (246409, 100, 100, null, null, 0, 0, 1), + (246410, 100, 100, null, null, 0, 0, 1), + (246411, 100, 100, null, null, 0, 0, 1), + (246412, 100, 100, null, null, 0, 0, 1), + (246413, 100, 100, null, null, 0, 0, 1), + (246414, 100, 100, null, null, 0, 0, 1), + (246415, 100, 100, null, 2500, 0, 0, 0), + (246416, 100, 100, null, 2500, 0, 0, 0), + (246417, 100, 100, null, 2500, 0, 0, 0), + (246418, 100, 100, null, 2500, 0, 0, 0), + (246419, 100, 100, null, 2500, 0, 0, 0), + (246420, 100, 100, null, 2500, 0, 0, 0), + (246421, 100, 100, null, 2500, 0, 0, 0), + (246422, 100, 100, 5000, 2500, 0, 0, 0), + (246423, 100, 100, 5000, 2500, 0, 0, 0), + (246424, 100, 100, 5000, 2500, 0, 0, 0), + (246425, 100, 100, 5000, 2500, 0, 0, 0), + (246426, 100, 100, 5000, 2500, 0, 0, 0), + (246427, 100, 100, 5000, 2500, 0, 0, 0), + (246428, 100, 100, 5000, 2500, 0, 0, 0), + (246705, 125, 125, null, null, 0, 1, 0), + (246706, 125, 125, null, null, 0, 1, 0), + (246707, 125, 125, null, null, 0, 1, 0), + (246708, 125, 125, null, null, 0, 1, 0), + (246709, 125, 125, null, null, 0, 1, 0), + (246710, 125, 125, null, null, 0, 1, 0), + (246711, 125, 125, null, null, 0, 1, 0), + (246712, 125, 125, null, null, 0, 1, 0), + (246713, 125, 125, null, null, 0, 1, 0), + (246714, 125, 125, null, null, 0, 1, 0), + (246715, 125, 125, null, null, 0, 1, 0), + (246716, 125, 125, null, null, 0, 1, 0), + (246717, 125, 125, null, null, 0, 1, 0), + (246718, 125, 125, null, null, 0, 1, 0), + (246719, 125, 125, null, null, 0, 1, 0), + (246720, 125, 125, null, 2500, 0, 0, 0), + (246721, 115, 115, null, 2500, 0, 0, 0), + (246722, 110, 110, null, 2000, 0, 0, 0), + (246723, 105, 105, null, 2000, 0, 0, 0), + (246724, 100, 100, null, 1500, 0, 0, 0), + (246799, 100, 100, null, null, 0, 0, 1), + (246800, 100, 100, null, null, 0, 0, 1), + (246801, 100, 100, null, null, 0, 0, 1), + (246802, 100, 100, null, null, 0, 0, 1), + (246803, 100, 100, null, null, 0, 0, 1), + (246871, 150, 150, null, null, 1, 0, 0), + (246872, 150, 150, null, null, 1, 0, 0), + (246873, 120, 120, null, null, 1, 0, 0), + (247057, 220, 220, null, null, 0, 1, 0), + (247058, 220, 220, null, null, 0, 1, 0), + (247059, 220, 220, null, null, 0, 1, 0), + (247060, 220, 220, null, null, 0, 1, 0), + (247061, 220, 220, null, null, 0, 1, 0), + (247062, 220, 220, null, null, 0, 1, 0), + (247063, 220, 220, null, null, 0, 1, 0), + (247064, 220, 220, null, null, 0, 1, 0), + (247065, 220, 220, null, null, 0, 1, 0), + (247066, 220, 220, null, null, 0, 1, 0), + (247067, 220, 220, null, null, 0, 1, 0), + (247068, 220, 220, null, null, 0, 1, 0), + (247069, 220, 220, null, null, 0, 1, 0), + (247070, 300, 300, null, null, 0, 1, 0), + (247071, 300, 300, null, null, 0, 1, 0), + (247072, 300, 300, null, null, 0, 1, 0), + (247073, 300, 300, null, null, 0, 1, 0), + (247074, 300, 300, null, null, 0, 1, 0), + (247075, 300, 300, null, null, 0, 1, 0), + (247076, 300, 300, null, null, 0, 1, 0), + (247077, 300, 300, null, null, 0, 1, 0), + (247078, 300, 300, null, null, 0, 1, 0), + (247079, 300, 300, null, null, 0, 1, 0), + (247080, 300, 300, null, null, 0, 1, 0), + (247228, 175, 90, 7000, 2300, 0, 0, 0), + (247229, 150, 80, 7000, 2300, 0, 0, 0), + (247230, 150, 80, 7000, 2300, 0, 0, 0), + (248338, 150, 150, null, null, 1, 0, 0), + (248339, 100, 150, null, null, 1, 0, 0), + (248340, 100, 100, null, null, 0, 0, 0), + (248341, 150, 150, null, null, 0, 1, 0), + (248342, 150, 100, null, null, 0, 1, 0), + (248343, 100, 100, null, 3000, 1, 0, 0), + (248344, 100, 100, null, 2500, 0, 0, 0), + (248345, 150, 150, null, null, 1, 0, 0), + (248346, 150, 100, null, null, 1, 0, 0), + (248347, 100, 150, 5000, 3000, 1, 0, 0), + (248348, 100, 150, null, null, 1, 0, 1), + (248349, 100, 150, null, 2500, 1, 0, 0), + (248350, 100, 120, null, null, 0, 1, 0), + (248351, 100, 100, null, null, 0, 1, 0), + (248352, 100, 150, null, null, 0, 1, 0), + (248353, 200, 200, null, null, 0, 1, 0), + (248354, 150, 150, null, null, 1, 0, 0), + (248355, 150, 150, null, null, 0, 1, 0), + (248421, 250, 250, null, null, 0, 1, 0), + (248422, 250, 250, null, null, 0, 1, 0), + (248423, 250, 250, null, null, 0, 1, 0), + (248424, 250, 250, null, null, 0, 1, 0), + (248425, 250, 250, null, null, 0, 1, 0), + (248426, 250, 250, null, null, 0, 1, 0), + (248427, 250, 250, null, null, 0, 1, 0), + (248520, 200, 200, null, null, 1, 0, 1), + (248521, 150, 150, null, null, 0, 0, 1), + (248522, 164, 155, null, null, 0, 0, 1), + (248523, 165, 155, null, null, 0, 0, 1), + (248524, 179, 160, null, null, 0, 0, 1), + (248525, 180, 160, null, null, 0, 0, 1), + (248526, 194, 165, null, null, 0, 0, 1), + (248527, 195, 165, null, null, 0, 0, 1), + (248528, 210, 170, null, null, 0, 0, 1), + (248529, 210, 170, null, null, 0, 0, 1), + (248530, 225, 175, null, null, 0, 0, 1), + (248531, 225, 175, null, null, 0, 0, 1), + (248532, 240, 180, null, null, 0, 0, 1), + (248533, 240, 180, null, null, 0, 0, 1), + (248534, 255, 185, null, null, 0, 0, 1), + (248535, 256, 185, null, null, 0, 0, 1), + (248536, 270, 190, null, null, 0, 0, 1), + (248537, 271, 190, null, null, 0, 0, 1), + (248538, 299, 200, null, null, 0, 0, 1), + (248539, 300, 200, null, null, 0, 0, 1), + (248558, 120, 200, null, 2500, 0, 0, 0), + (248559, 132, 210, null, 2500, 0, 0, 0), + (248560, 133, 210, null, 2500, 0, 0, 0), + (248561, 145, 220, null, 2500, 0, 0, 0), + (248562, 146, 220, null, 2500, 0, 0, 0), + (248564, 159, 230, null, 2500, 0, 0, 0), + (248565, 159, 230, null, 2500, 0, 0, 0), + (248566, 172, 240, null, 2500, 0, 0, 0), + (248567, 172, 240, null, 2500, 0, 0, 0), + (248568, 185, 250, null, 2500, 0, 0, 0), + (248569, 185, 250, null, 2500, 0, 0, 0), + (248570, 198, 260, null, 2500, 0, 0, 0), + (248571, 198, 260, null, 2500, 0, 0, 0), + (248572, 211, 270, null, 2500, 0, 0, 0), + (248573, 211, 270, null, 2500, 0, 0, 0), + (248574, 224, 280, null, 2500, 0, 0, 0), + (248575, 225, 280, null, 2500, 0, 0, 0), + (248576, 249, 299, null, 2500, 0, 0, 0), + (248577, 250, 300, null, 2500, 0, 0, 0), + (248578, 100, 100, 6000, 3000, 0, 0, 0), + (248579, 100, 100, 6000, 3000, 0, 0, 0), + (248580, 100, 100, 6000, 3000, 0, 0, 0), + (248581, 100, 100, 6000, 3000, 0, 0, 0), + (248582, 100, 100, 6000, 3000, 0, 0, 0), + (248583, 100, 100, 6000, 3000, 0, 0, 0), + (248584, 100, 100, 6000, 3000, 0, 0, 0), + (248585, 100, 100, 6000, 3000, 0, 0, 0), + (248586, 100, 100, 6000, 3000, 0, 0, 0), + (248587, 100, 100, 6000, 3000, 0, 0, 0), + (248588, 100, 100, 6000, 3000, 0, 0, 0), + (248589, 224, 123, null, 4000, 0, 0, 0), + (248590, 226, 126, null, 4000, 0, 0, 0), + (248591, 227, 126, null, 4000, 0, 0, 0), + (248592, 229, 128, null, 4000, 0, 0, 0), + (248593, 229, 128, null, 4000, 0, 0, 0), + (248594, 232, 131, null, 4000, 0, 0, 0), + (248595, 232, 131, null, 4000, 0, 0, 0), + (248596, 234, 134, null, 4000, 0, 0, 0), + (248597, 234, 134, null, 4000, 0, 0, 0), + (248598, 237, 136, null, 4000, 0, 0, 0), + (248599, 237, 137, null, 4000, 0, 0, 0), + (248600, 240, 139, null, 4000, 0, 0, 0), + (248601, 240, 139, null, 4000, 0, 0, 0), + (248602, 242, 142, null, 4000, 0, 0, 0), + (248603, 242, 142, null, 4000, 0, 0, 0), + (248604, 245, 145, null, 4000, 0, 0, 0), + (248605, 245, 145, null, 4000, 0, 0, 0), + (248606, 250, 150, null, 4000, 0, 0, 0), + (248607, 250, 150, null, 4000, 0, 0, 0), + (248608, 130, 100, 6000, null, 1, 0, 0), + (248609, 130, 100, 6000, null, 1, 0, 0), + (248610, 130, 100, 6000, null, 1, 0, 0), + (248611, 130, 100, 6000, null, 1, 0, 0), + (248612, 130, 100, 6000, null, 1, 0, 0), + (248613, 130, 100, 6000, null, 1, 0, 0), + (248614, 130, 100, 6000, null, 1, 0, 0), + (248615, 130, 100, 6000, null, 1, 0, 0), + (248616, 130, 100, 6000, null, 1, 0, 0), + (248617, 130, 100, 6000, null, 1, 0, 0), + (248618, 130, 100, 6000, null, 1, 0, 0), + (248619, 130, 100, 6000, null, 1, 0, 0), + (248620, 130, 100, 6000, null, 1, 0, 0), + (248621, 130, 100, 6000, null, 1, 0, 0), + (248622, 130, 100, 6000, null, 1, 0, 0), + (248623, 130, 100, 6000, null, 1, 0, 0), + (248624, 130, 100, 6000, null, 1, 0, 0), + (248625, 130, 100, 6000, null, 1, 0, 0), + (248626, 130, 100, 6000, null, 1, 0, 0), + (248627, 200, 195, null, null, 1, 0, 1), + (248628, 200, 195, null, null, 1, 0, 1), + (248720, 250, 250, null, null, 1, 0, 1), + (248721, 250, 250, null, null, 1, 0, 1), + (248722, 250, 250, null, null, 1, 0, 1), + (248723, 250, 250, null, null, 1, 0, 1), + (248724, 250, 250, null, null, 1, 0, 1), + (248730, 150, 200, null, null, 1, 0, 1), + (248741, 150, 200, null, null, 1, 0, 1), + (248742, 150, 200, null, null, 1, 0, 1), + (248743, 150, 200, null, null, 1, 0, 1), + (248744, 150, 200, null, null, 1, 0, 1), + (248866, 150, 200, null, null, 1, 0, 1), + (248869, 150, 200, null, null, 1, 0, 1), + (248895, 250, 170, 5000, 3000, 0, 0, 0), + (248897, 240, 160, 5000, 3000, 0, 0, 0), + (248924, 260, 180, 5000, 3000, 0, 0, 0), + (248925, 251, 171, 5000, 3000, 0, 0, 0), + (248926, 241, 161, 5000, 3000, 0, 0, 0), + (249002, 250, 250, null, null, 0, 1, 0), + (249003, 250, 250, null, null, 0, 1, 0), + (249004, 250, 250, null, null, 0, 1, 0), + (249005, 250, 250, null, null, 0, 1, 0), + (249006, 250, 250, null, null, 0, 1, 0), + (249007, 250, 250, null, null, 0, 1, 0), + (249009, 250, 250, null, null, 0, 1, 0), + (249012, 250, 250, null, null, 0, 1, 0), + (249013, 250, 250, null, null, 0, 1, 0), + (249014, 250, 250, null, null, 0, 1, 0), + (249015, 250, 250, null, null, 0, 1, 0), + (249016, 250, 250, null, null, 0, 1, 0), + (249017, 200, 175, null, null, 0, 1, 0), + (249018, 200, 175, null, null, 0, 1, 0), + (249019, 200, 175, null, null, 0, 1, 0), + (249020, 200, 175, null, null, 0, 1, 0), + (249021, 200, 175, null, null, 0, 1, 0), + (249022, 200, 175, null, null, 0, 1, 0), + (249023, 200, 175, null, null, 0, 1, 0), + (249024, 200, 175, null, null, 0, 1, 0), + (249025, 200, 175, null, null, 0, 1, 0), + (249026, 200, 175, null, null, 0, 1, 0), + (249027, 200, 175, null, null, 0, 1, 0), + (249028, 200, 175, null, null, 0, 1, 0), + (249029, 200, 175, null, null, 0, 1, 0), + (249030, 200, 175, null, null, 0, 1, 0), + (249031, 200, 175, null, null, 0, 1, 0), + (249032, 200, 175, null, null, 0, 1, 0), + (249033, 200, 175, null, null, 0, 1, 0), + (249034, 200, 175, null, null, 0, 1, 0), + (249035, 200, 175, null, null, 0, 1, 0), + (249036, 130, 130, null, null, 0, 1, 0), + (249037, 129, 129, null, null, 0, 1, 0), + (249038, 128, 129, null, null, 0, 1, 0), + (249039, 127, 128, null, null, 0, 1, 0), + (249040, 127, 127, null, null, 0, 1, 0), + (249041, 126, 126, null, null, 0, 1, 0), + (249042, 125, 126, null, null, 0, 1, 0), + (249043, 124, 125, null, null, 0, 1, 0), + (249044, 124, 125, null, null, 0, 1, 0), + (249046, 115, 118, null, null, 0, 1, 0), + (249047, 115, 117, null, null, 0, 1, 0), + (249048, 111, 114, null, null, 0, 1, 0), + (249049, 110, 114, null, null, 0, 1, 0), + (249050, 108, 111, null, null, 0, 1, 0), + (249051, 107, 111, null, null, 0, 1, 0), + (249052, 104, 108, null, null, 0, 1, 0), + (249053, 104, 108, null, null, 0, 1, 0), + (249054, 100, 105, null, null, 0, 1, 0), + (249055, 100, 105, null, null, 0, 1, 0), + (249060, 110, 130, null, null, 0, 1, 0), + (249061, 110, 130, null, null, 0, 1, 0), + (249062, 109, 130, null, null, 0, 1, 0), + (249063, 109, 130, null, null, 0, 1, 0), + (249065, 109, 130, null, null, 0, 1, 0), + (249066, 109, 130, null, null, 0, 1, 0), + (249067, 108, 130, null, null, 0, 1, 0), + (249068, 108, 130, null, null, 0, 1, 0), + (249069, 108, 130, null, null, 0, 1, 0), + (249070, 106, 130, null, null, 0, 1, 0), + (249071, 106, 130, null, null, 0, 1, 0), + (249072, 104, 130, null, null, 0, 1, 0), + (249073, 104, 130, null, null, 0, 1, 0), + (249074, 103, 130, null, null, 0, 1, 0), + (249075, 103, 130, null, null, 0, 1, 0), + (249076, 101, 130, null, null, 0, 1, 0), + (249077, 101, 130, null, null, 0, 1, 0), + (249078, 100, 130, null, null, 0, 1, 0), + (249079, 100, 130, null, null, 0, 1, 0), + (249815, 150, 200, null, null, 1, 0, 1), + (249816, 150, 200, null, null, 1, 0, 1), + (249817, 150, 200, null, null, 1, 0, 1), + (249818, 150, 200, null, null, 1, 0, 1), + (249819, 150, 200, null, null, 1, 0, 1), + (249820, 150, 200, null, null, 1, 0, 1), + (249821, 150, 200, null, null, 1, 0, 1), + (249822, 150, 200, null, null, 1, 0, 1), + (249823, 150, 200, null, null, 1, 0, 1), + (249825, 150, 200, null, null, 1, 0, 1), + (249826, 150, 200, null, null, 1, 0, 1), + (249827, 150, 200, null, null, 1, 0, 1), + (249828, 150, 200, null, null, 1, 0, 1), + (249829, 150, 200, null, null, 1, 0, 1), + (249836, 200, 190, null, null, 1, 0, 1), + (249837, 200, 190, null, null, 1, 0, 1), + (249838, 200, 185, null, null, 1, 0, 1), + (249839, 200, 185, null, null, 1, 0, 1), + (249840, 200, 180, null, null, 1, 0, 1), + (249842, 200, 180, null, null, 1, 0, 1), + (249843, 200, 175, null, null, 1, 0, 1), + (249844, 200, 175, null, null, 1, 0, 1), + (249845, 200, 170, null, null, 1, 0, 1), + (249846, 200, 170, null, null, 1, 0, 1), + (249848, 200, 165, null, null, 1, 0, 1), + (249849, 200, 165, null, null, 1, 0, 1), + (249850, 200, 160, null, null, 1, 0, 1), + (249851, 200, 160, null, null, 1, 0, 1), + (249852, 200, 150, null, null, 1, 0, 1), + (249853, 200, 150, null, null, 1, 0, 1), + (249854, 250, 250, null, null, 1, 0, 1), + (249855, 250, 250, null, null, 1, 0, 1), + (249856, 250, 250, null, null, 1, 0, 1), + (249857, 250, 250, null, null, 1, 0, 1), + (249858, 250, 250, null, null, 1, 0, 1), + (249859, 250, 250, null, null, 1, 0, 1), + (249860, 250, 250, null, null, 1, 0, 1), + (249861, 250, 250, null, null, 1, 0, 1), + (249862, 250, 250, null, null, 1, 0, 1), + (249863, 250, 250, null, null, 1, 0, 1), + (249864, 250, 250, null, null, 1, 0, 1), + (249865, 250, 250, null, null, 1, 0, 1), + (249866, 250, 250, null, null, 1, 0, 1), + (249867, 250, 250, null, null, 1, 0, 1), + (250144, 400, 300, null, null, 0, 0, 0), + (250145, 390, 290, null, null, 0, 0, 0), + (250146, 390, 290, null, null, 0, 0, 0), + (250147, 380, 280, null, null, 0, 0, 0), + (250148, 380, 280, null, null, 0, 0, 0), + (250149, 370, 270, null, null, 0, 0, 0), + (250150, 370, 270, null, null, 0, 0, 0), + (250151, 360, 260, null, null, 0, 0, 0), + (250152, 360, 260, null, null, 0, 0, 0), + (250153, 350, 250, null, null, 0, 0, 0), + (250154, 350, 250, null, null, 0, 0, 0), + (250155, 340, 240, null, null, 0, 0, 0), + (250156, 340, 240, null, null, 0, 0, 0), + (250157, 330, 230, null, null, 0, 0, 0), + (250158, 330, 230, null, null, 0, 0, 0), + (250159, 320, 220, null, null, 0, 0, 0), + (250161, 320, 220, null, null, 0, 0, 0), + (250162, 301, 201, null, null, 0, 0, 0), + (250163, 300, 200, null, null, 0, 0, 0), + (253194, 150, 150, null, null, 0, 0, 0), + (253195, 150, 150, null, null, 0, 0, 0), + (253196, 150, 150, null, null, 0, 0, 0), + (253197, 150, 150, null, null, 0, 0, 0), + (253198, 150, 150, null, null, 0, 0, 0), + (253199, 150, 150, null, null, 0, 0, 0), + (253200, 150, 150, null, null, 0, 0, 0), + (253201, 150, 150, null, null, 0, 0, 0), + (253202, 150, 150, null, null, 0, 0, 0), + (253203, 150, 150, null, null, 0, 0, 0), + (253204, 150, 150, null, null, 0, 0, 0), + (253205, 150, 150, null, null, 0, 0, 0), + (253206, 150, 150, null, null, 0, 0, 0), + (253207, 150, 150, null, null, 0, 0, 0), + (253208, 150, 150, null, null, 0, 0, 0), + (253209, 150, 150, null, null, 0, 0, 0), + (253210, 150, 150, null, null, 0, 0, 0), + (253211, 150, 150, null, null, 0, 0, 0), + (253212, 150, 150, null, null, 0, 0, 0), + (253213, 150, 150, null, null, 0, 0, 0), + (253214, 150, 150, null, null, 0, 0, 0), + (253215, 250, 250, null, null, 1, 0, 0), + (253216, 247, 247, null, null, 1, 0, 0), + (253217, 247, 247, null, null, 1, 0, 0), + (253218, 244, 244, null, null, 1, 0, 0), + (253219, 244, 244, null, null, 1, 0, 0), + (253220, 241, 241, null, null, 1, 0, 0), + (253221, 241, 241, null, null, 1, 0, 0), + (253222, 238, 238, null, null, 1, 0, 0), + (253223, 238, 238, null, null, 1, 0, 0), + (253224, 235, 235, null, null, 1, 0, 0), + (253225, 235, 235, null, null, 1, 0, 0), + (253226, 232, 232, null, null, 1, 0, 0), + (253227, 232, 232, null, null, 1, 0, 0), + (253228, 229, 229, null, null, 1, 0, 0), + (253229, 229, 229, null, null, 1, 0, 0), + (253230, 226, 226, null, null, 1, 0, 0), + (253231, 226, 226, null, null, 1, 0, 0), + (253232, 220, 220, null, null, 1, 0, 0), + (253233, 220, 220, null, null, 1, 0, 0), + (253234, 300, 300, null, null, 1, 0, 0), + (253235, 151, 151, null, null, 1, 0, 0), + (253236, 150, 150, null, null, 1, 0, 0), + (253237, 150, 150, null, null, 0, 1, 0), + (253238, 150, 150, null, null, 0, 1, 0), + (253239, 150, 150, null, null, 0, 1, 0), + (253240, 150, 150, null, null, 0, 1, 0), + (253241, 150, 150, null, null, 0, 1, 0), + (253242, 250, 250, null, null, 0, 1, 0), + (253243, 250, 250, null, null, 0, 1, 0), + (253244, 250, 250, null, null, 0, 1, 0), + (253245, 250, 250, null, null, 0, 1, 0), + (253246, 250, 250, null, null, 0, 1, 0), + (253247, 250, 250, null, null, 0, 1, 0), + (253248, 250, 250, null, null, 0, 1, 0), + (253249, 250, 250, null, null, 0, 1, 0), + (253353, 125, 125, null, null, 0, 0, 0), + (253358, 250, 250, null, null, 0, 0, 0), + (253883, 100, 100, null, null, 0, 0, 0), + (254305, 1, 1, null, null, 0, 0, 0), + (254306, 1, 1, null, null, 0, 0, 0), + (254307, 1, 1, null, null, 0, 0, 0), + (254419, 1, 1, null, null, 0, 0, 0), + (254420, 1, 1, null, null, 0, 0, 0), + (254421, 1, 1, null, null, 0, 0, 0), + (254465, 200, 200, null, null, 0, 0, 0), + (254466, 200, 200, null, null, 0, 0, 0), + (254467, 200, 200, null, null, 0, 0, 0), + (254468, 200, 200, null, null, 0, 0, 0), + (254469, 200, 200, null, null, 0, 0, 0), + (254470, 200, 200, null, null, 0, 0, 0), + (254471, 200, 200, null, null, 0, 0, 0), + (254472, 200, 200, null, null, 0, 0, 1), + (254473, 200, 200, null, null, 0, 0, 1), + (254474, 200, 200, null, null, 0, 0, 1), + (254475, 200, 200, null, null, 0, 0, 1), + (254476, 200, 200, null, null, 0, 0, 1), + (254477, 200, 200, null, null, 0, 0, 1), + (254478, 200, 200, null, null, 0, 0, 1), + (254479, 200, 200, null, null, 1, 0, 1), + (254480, 200, 200, null, null, 1, 0, 1), + (254481, 200, 200, null, null, 1, 0, 1), + (254482, 200, 200, null, null, 1, 0, 1), + (254483, 200, 200, null, null, 1, 0, 1), + (254484, 200, 200, null, null, 1, 0, 1), + (254485, 200, 200, null, null, 1, 0, 1), + (254486, 180, 180, null, null, 0, 0, 0), + (254487, 180, 180, null, null, 0, 0, 0), + (254488, 180, 180, null, null, 0, 0, 0), + (254489, 180, 180, null, null, 0, 0, 0), + (254490, 180, 180, null, null, 0, 0, 0), + (254491, 180, 180, null, null, 0, 0, 0), + (254492, 180, 180, null, null, 0, 0, 0), + (254493, 180, 180, null, 4000, 1, 0, 0), + (254494, 180, 180, null, 4000, 1, 0, 0), + (254495, 180, 180, null, 4000, 1, 0, 0), + (254496, 180, 180, null, 4000, 1, 0, 0), + (254497, 180, 180, null, 4000, 1, 0, 0), + (254498, 180, 180, null, 4000, 1, 0, 0), + (254499, 180, 180, null, 4000, 1, 0, 0), + (254500, 180, 180, 4500, 4000, 0, 0, 0), + (254501, 180, 180, 4500, 4000, 0, 0, 0), + (254502, 180, 180, 4500, 4000, 0, 0, 0), + (254503, 180, 180, 4500, 4000, 0, 0, 0), + (254504, 180, 180, 4500, 4000, 0, 0, 0), + (254505, 180, 180, 4500, 4000, 0, 0, 0), + (254506, 180, 180, 4500, 4000, 0, 0, 0), + (254507, 180, 180, 4500, 4000, 1, 0, 0), + (254508, 180, 180, 4500, 4000, 1, 0, 0), + (254509, 180, 180, 4500, 4000, 1, 0, 0), + (254510, 180, 180, 4500, 4000, 1, 0, 0), + (254511, 180, 180, 4500, 4000, 1, 0, 0), + (254512, 180, 180, 4500, 4000, 1, 0, 0), + (254513, 180, 180, 4500, 4000, 1, 0, 0), + (254514, 120, 120, null, null, 0, 0, 0), + (254515, 120, 120, null, null, 0, 0, 0), + (254516, 120, 120, null, null, 0, 0, 0), + (254517, 120, 120, null, null, 0, 0, 0), + (254518, 120, 120, null, null, 0, 0, 0), + (254519, 120, 120, null, null, 0, 0, 0), + (254520, 120, 120, null, null, 0, 0, 0), + (254521, 120, 120, null, 2500, 0, 0, 0), + (254522, 120, 120, null, 2500, 0, 0, 0), + (254523, 120, 120, null, 2500, 0, 0, 0), + (254524, 120, 120, null, 2500, 0, 0, 0), + (254525, 120, 120, null, 2500, 0, 0, 0), + (254526, 120, 120, null, 2500, 0, 0, 0), + (254527, 120, 120, null, 2500, 0, 0, 0), + (254528, 120, 120, null, 2500, 1, 0, 0), + (254529, 120, 120, null, 2500, 1, 0, 0), + (254530, 120, 120, null, 2500, 1, 0, 0), + (254531, 120, 120, null, 2500, 1, 0, 0), + (254532, 120, 120, null, 2500, 1, 0, 0), + (254533, 120, 120, null, 2500, 1, 0, 0), + (254534, 120, 120, null, 2500, 1, 0, 0), + (254535, 120, 120, 11000, 2500, 0, 0, 0), + (254536, 120, 120, 11000, 2500, 0, 0, 0), + (254537, 120, 120, 11000, 2500, 0, 0, 0), + (254538, 120, 120, 11000, 2500, 0, 0, 0), + (254539, 120, 120, 11000, 2500, 0, 0, 0), + (254540, 120, 120, 11000, 2500, 0, 0, 0), + (254541, 120, 120, 11000, 2500, 0, 0, 0), + (254542, 150, 150, null, null, 0, 0, 0), + (254543, 150, 150, null, null, 0, 0, 0), + (254544, 150, 150, null, null, 0, 0, 0), + (254545, 150, 150, null, null, 0, 0, 0), + (254546, 150, 150, null, null, 0, 0, 0), + (254547, 150, 150, null, null, 0, 0, 0), + (254548, 150, 150, null, null, 0, 0, 0), + (254549, 150, 150, null, 4000, 1, 0, 0), + (254550, 150, 150, null, 4000, 1, 0, 0), + (254551, 150, 150, null, 4000, 1, 0, 0), + (254552, 150, 150, null, 4000, 1, 0, 0), + (254553, 150, 150, null, 4000, 1, 0, 0), + (254554, 150, 150, null, 4000, 1, 0, 0), + (254555, 150, 150, null, 4000, 1, 0, 0), + (254556, 150, 150, null, null, 1, 0, 1), + (254557, 150, 150, null, null, 1, 0, 1), + (254558, 150, 150, null, null, 1, 0, 1), + (254559, 150, 150, null, null, 1, 0, 1), + (254560, 150, 150, null, null, 1, 0, 1), + (254561, 150, 150, null, null, 1, 0, 1), + (254562, 150, 150, null, null, 1, 0, 1), + (254563, 220, 220, null, null, 0, 0, 0), + (254564, 220, 220, null, null, 0, 0, 0), + (254565, 220, 220, null, null, 0, 0, 0), + (254566, 220, 220, null, null, 0, 0, 0), + (254567, 220, 220, null, null, 0, 0, 0), + (254568, 220, 220, null, null, 0, 0, 0), + (254569, 220, 220, null, null, 0, 0, 0), + (254570, 220, 220, null, null, 1, 0, 0), + (254571, 220, 220, null, null, 1, 0, 0), + (254572, 220, 220, null, null, 1, 0, 0), + (254573, 220, 220, null, null, 1, 0, 0), + (254574, 220, 220, null, null, 1, 0, 0), + (254575, 220, 220, null, null, 1, 0, 0), + (254576, 220, 220, null, null, 1, 0, 0), + (254577, 150, 150, null, null, 0, 0, 0), + (254578, 150, 150, null, null, 0, 0, 0), + (254579, 150, 150, null, null, 0, 0, 0), + (254580, 150, 150, null, null, 0, 0, 0), + (254581, 150, 150, null, null, 0, 0, 0), + (254582, 150, 150, null, null, 0, 0, 0), + (254583, 150, 150, null, null, 0, 0, 0), + (254584, 150, 150, null, null, 1, 0, 0), + (254585, 150, 150, null, null, 1, 0, 0), + (254586, 150, 150, null, null, 1, 0, 0), + (254587, 150, 150, null, null, 1, 0, 0), + (254588, 150, 150, null, null, 1, 0, 0), + (254589, 150, 150, null, null, 1, 0, 0), + (254590, 150, 150, null, null, 1, 0, 0), + (254591, 180, 180, null, null, 0, 0, 0), + (254592, 180, 180, null, null, 0, 0, 0), + (254593, 180, 180, null, null, 0, 0, 0), + (254594, 180, 180, null, null, 0, 0, 0), + (254595, 180, 180, null, null, 0, 0, 0), + (254596, 180, 180, null, null, 0, 0, 0), + (254597, 180, 180, null, null, 0, 0, 0), + (254598, 180, 180, null, null, 1, 0, 1), + (254599, 180, 180, null, null, 1, 0, 1), + (254600, 180, 180, null, null, 1, 0, 1), + (254601, 180, 180, null, null, 1, 0, 1), + (254602, 180, 180, null, null, 1, 0, 1), + (254603, 180, 180, null, null, 1, 0, 1), + (254604, 180, 180, null, null, 1, 0, 1), + (254605, 180, 180, null, null, 0, 0, 1), + (254606, 180, 180, null, null, 0, 0, 1), + (254607, 180, 180, null, null, 0, 0, 1), + (254608, 180, 180, null, null, 0, 0, 1), + (254609, 180, 180, null, null, 0, 0, 1), + (254610, 180, 180, null, null, 0, 0, 1), + (254611, 180, 180, null, null, 0, 0, 1), + (254612, 100, 100, null, null, 0, 0, 0), + (254613, 100, 100, null, null, 0, 0, 0), + (254614, 100, 100, null, null, 0, 0, 0), + (254615, 100, 100, null, null, 0, 0, 0), + (254616, 100, 100, null, null, 0, 0, 0), + (254617, 100, 100, null, null, 0, 0, 0), + (254618, 100, 100, null, null, 0, 0, 0), + (254619, 100, 100, null, null, 1, 0, 0), + (254620, 100, 100, null, null, 1, 0, 0), + (254621, 100, 100, null, null, 1, 0, 0), + (254622, 100, 100, null, null, 1, 0, 0), + (254623, 100, 100, null, null, 1, 0, 0), + (254624, 100, 100, null, null, 1, 0, 0), + (254625, 100, 100, null, null, 1, 0, 0), + (254626, 100, 100, null, 5000, 0, 0, 0), + (254627, 100, 100, null, 5000, 0, 0, 0), + (254628, 100, 100, null, 5000, 0, 0, 0), + (254629, 100, 100, null, 5000, 0, 0, 0), + (254630, 100, 100, null, 5000, 0, 0, 0), + (254631, 100, 100, null, 5000, 0, 0, 0), + (254632, 100, 100, null, 5000, 0, 0, 0), + (254633, 100, 100, null, null, 0, 0, 0), + (254634, 100, 100, null, null, 0, 0, 0), + (254635, 100, 100, null, null, 0, 0, 0), + (254636, 100, 100, null, null, 0, 0, 0), + (254637, 100, 100, null, null, 0, 0, 0), + (254638, 100, 100, null, null, 0, 0, 0), + (254639, 100, 100, null, null, 0, 0, 0), + (254640, 100, 100, null, 4600, 1, 0, 0), + (254641, 100, 100, null, 4600, 1, 0, 0), + (254642, 100, 100, null, 4600, 1, 0, 0), + (254643, 100, 100, null, 4600, 1, 0, 0), + (254644, 100, 100, null, 4600, 1, 0, 0), + (254645, 100, 100, null, 4600, 1, 0, 0), + (254646, 100, 100, null, 4600, 1, 0, 0), + (254647, 120, 120, null, null, 0, 0, 0), + (254648, 120, 120, null, null, 0, 0, 0), + (254649, 120, 120, null, null, 0, 0, 0), + (254650, 120, 120, null, null, 0, 0, 0), + (254651, 120, 120, null, null, 0, 0, 0), + (254652, 120, 120, null, null, 0, 0, 0), + (254653, 120, 120, null, null, 0, 0, 0), + (254654, 120, 120, null, 4000, 0, 0, 0), + (254655, 120, 120, null, 4000, 0, 0, 0), + (254656, 120, 120, null, 4000, 0, 0, 0), + (254657, 120, 120, null, 4000, 0, 0, 0), + (254658, 120, 120, null, 4000, 0, 0, 0), + (254659, 120, 120, null, 4000, 0, 0, 0), + (254660, 120, 120, null, 4000, 0, 0, 0), + (254661, 120, 120, null, 4000, 1, 0, 0), + (254662, 120, 120, null, 4000, 1, 0, 0), + (254663, 120, 120, null, 4000, 1, 0, 0), + (254664, 120, 120, null, 4000, 1, 0, 0), + (254665, 120, 120, null, 4000, 1, 0, 0), + (254666, 120, 120, null, 4000, 1, 0, 0), + (254667, 120, 120, null, 4000, 1, 0, 0), + (254668, 150, 150, null, null, 0, 0, 0), + (254669, 150, 150, null, null, 0, 0, 0), + (254670, 150, 150, null, null, 0, 0, 0), + (254671, 150, 150, null, null, 0, 0, 0), + (254672, 150, 150, null, null, 0, 0, 0), + (254673, 150, 150, null, null, 0, 0, 0), + (254674, 150, 150, null, null, 0, 0, 0), + (254675, 150, 150, null, null, 0, 1, 0), + (254676, 150, 150, null, null, 0, 1, 0), + (254677, 150, 150, null, null, 0, 1, 0), + (254678, 150, 150, null, null, 0, 1, 0), + (254679, 150, 150, null, null, 0, 1, 0), + (254680, 150, 150, null, null, 0, 1, 0), + (254681, 150, 150, null, null, 0, 1, 0), + (254682, 120, 120, null, null, 0, 0, 0), + (254683, 120, 120, null, null, 0, 0, 0), + (254684, 120, 120, null, null, 0, 0, 0), + (254685, 120, 120, null, null, 0, 0, 0), + (254686, 120, 120, null, null, 0, 0, 0), + (254687, 120, 120, null, null, 0, 0, 0), + (254688, 120, 120, null, null, 0, 0, 0), + (254689, 120, 120, null, null, 0, 1, 0), + (254690, 120, 120, null, null, 0, 1, 0), + (254691, 120, 120, null, null, 0, 1, 0), + (254692, 120, 120, null, null, 0, 1, 0), + (254693, 120, 120, null, null, 0, 1, 0), + (254694, 120, 120, null, null, 0, 1, 0), + (254695, 120, 120, null, null, 0, 1, 0), + (254696, 100, 100, null, null, 0, 0, 0), + (254697, 100, 100, null, null, 0, 0, 0), + (254698, 100, 100, null, null, 0, 0, 0), + (254699, 100, 100, null, null, 0, 0, 0), + (254700, 100, 100, null, null, 0, 0, 0), + (254701, 100, 100, null, null, 0, 0, 0), + (254702, 100, 100, null, null, 0, 0, 0), + (254703, 100, 100, null, null, 0, 1, 0), + (254704, 100, 100, null, null, 0, 1, 0), + (254705, 100, 100, null, null, 0, 1, 0), + (254706, 100, 100, null, null, 0, 1, 0), + (254707, 100, 100, null, null, 0, 1, 0), + (254708, 100, 100, null, null, 0, 1, 0), + (254709, 100, 100, null, null, 0, 1, 0), + (254710, 100, 100, null, null, 0, 0, 0), + (254711, 100, 100, null, null, 0, 0, 0), + (254712, 100, 100, null, null, 0, 0, 0), + (254713, 100, 100, null, null, 0, 0, 0), + (254714, 100, 100, null, null, 0, 0, 0), + (254715, 100, 100, null, null, 0, 0, 0), + (254716, 100, 100, null, null, 0, 0, 0), + (254717, 100, 100, null, null, 0, 1, 0), + (254718, 100, 100, null, null, 0, 1, 0), + (254719, 100, 100, null, null, 0, 1, 0), + (254720, 100, 100, null, null, 0, 1, 0), + (254721, 100, 100, null, null, 0, 1, 0), + (254722, 100, 100, null, null, 0, 1, 0), + (254723, 100, 100, null, null, 0, 1, 0), + (254724, 200, 200, null, null, 0, 0, 0), + (254725, 200, 200, null, null, 0, 0, 0), + (254726, 200, 200, null, null, 0, 0, 0), + (254727, 200, 200, null, null, 0, 0, 0), + (254728, 200, 200, null, null, 0, 0, 0), + (254729, 200, 200, null, null, 0, 0, 0), + (254730, 200, 200, null, null, 0, 0, 0), + (254731, 200, 200, null, null, 0, 1, 0), + (254732, 200, 200, null, null, 0, 1, 0), + (254733, 200, 200, null, null, 0, 1, 0), + (254734, 200, 200, null, null, 0, 1, 0), + (254735, 200, 200, null, null, 0, 1, 0), + (254736, 200, 200, null, null, 0, 1, 0), + (254737, 200, 200, null, null, 0, 1, 0), + (254738, 175, 175, null, null, 0, 0, 0), + (254739, 175, 175, null, null, 0, 0, 0), + (254740, 175, 175, null, null, 0, 0, 0), + (254741, 175, 175, null, null, 0, 0, 0), + (254742, 175, 175, null, null, 0, 0, 0), + (254743, 175, 175, null, null, 0, 0, 0), + (254744, 175, 175, null, null, 0, 0, 0), + (254745, 175, 175, null, null, 0, 1, 0), + (254746, 175, 175, null, null, 0, 1, 0), + (254747, 175, 175, null, null, 0, 1, 0), + (254748, 175, 175, null, null, 0, 1, 0), + (254749, 175, 175, null, null, 0, 1, 0), + (254750, 175, 175, null, null, 0, 1, 0), + (254751, 175, 175, null, null, 0, 1, 0), + (254752, 150, 150, null, null, 0, 0, 0), + (254753, 150, 150, null, null, 0, 0, 0), + (254754, 150, 150, null, null, 0, 0, 0), + (254755, 150, 150, null, null, 0, 0, 0), + (254756, 150, 150, null, null, 0, 0, 0), + (254757, 150, 150, null, null, 0, 0, 0), + (254758, 150, 150, null, null, 0, 0, 0), + (254759, 150, 150, null, null, 0, 1, 0), + (254760, 150, 150, null, null, 0, 1, 0), + (254761, 150, 150, null, null, 0, 1, 0), + (254762, 150, 150, null, null, 0, 1, 0), + (254763, 150, 150, null, null, 0, 1, 0), + (254764, 150, 150, null, null, 0, 1, 0), + (254765, 150, 150, null, null, 0, 1, 0), + (254766, 150, 150, null, null, 0, 1, 0), + (254767, 150, 150, null, null, 0, 1, 0), + (254768, 150, 150, null, null, 0, 1, 0), + (254769, 150, 150, null, null, 0, 1, 0), + (254770, 150, 150, null, null, 0, 1, 0), + (254771, 150, 150, null, null, 0, 1, 0), + (254772, 150, 150, null, null, 0, 1, 0), + (254773, 150, 150, null, null, 0, 0, 0), + (254774, 150, 150, null, null, 0, 0, 0), + (254775, 150, 150, null, null, 0, 0, 0), + (254776, 150, 150, null, null, 0, 0, 0), + (254777, 150, 150, null, null, 0, 0, 0), + (254778, 150, 150, null, null, 0, 0, 0), + (254779, 150, 150, null, null, 0, 0, 0), + (254780, 150, 150, null, null, 0, 1, 0), + (254781, 150, 150, null, null, 0, 1, 0), + (254782, 150, 150, null, null, 0, 1, 0), + (254783, 150, 150, null, null, 0, 1, 0), + (254784, 150, 150, null, null, 0, 1, 0), + (254785, 150, 150, null, null, 0, 1, 0), + (254786, 150, 150, null, null, 0, 1, 0), + (256786, 50, 50, null, null, 0, 0, 0), + (256787, 50, 50, null, null, 0, 0, 0), + (257109, 200, 150, null, 3000, 1, 0, 0), + (257111, 150, 150, null, null, 0, 0, 0), + (257123, 180, 180, null, null, 0, 0, 0), + (257124, 150, 150, 3000, 1500, 0, 0, 0), + (257125, 126, 140, null, null, 0, 0, 0), + (257126, 180, 140, null, 2800, 1, 0, 0), + (257128, 170, 170, null, null, 0, 0, 1), + (257131, 180, 180, null, null, 1, 0, 1), + (257141, 150, 150, null, null, 1, 0, 0), + (257142, 180, 180, 4500, 4000, 1, 0, 0), + (257143, 180, 180, 4500, 4000, 0, 0, 0), + (257144, 180, 180, null, 4000, 1, 0, 0), + (257147, 110, 150, null, null, 0, 0, 0), + (257203, 126, 140, null, null, 0, 0, 0), + (257204, 126, 140, null, null, 0, 0, 0), + (257967, 180, 180, null, null, 0, 0, 1), + (258207, 250, 250, null, null, 0, 0, 0), + (258343, 140, 140, null, null, 0, 0, 0), + (258344, 140, 140, null, null, 0, 0, 0), + (258345, 140, 140, null, null, 0, 0, 0), + (258461, 100, 100, null, null, 0, 0, 0), + (258462, 100, 100, null, null, 0, 0, 0), + (258545, 250, 250, null, null, 0, 0, 0), + (258546, 250, 250, null, null, 0, 0, 0), + (258547, 250, 250, null, null, 0, 0, 0), + (258803, 150, 100, null, null, 0, 0, 0), + (258815, 150, 100, null, null, 0, 0, 0), + (258817, 150, 100, null, null, 0, 0, 0), + (258818, 150, 100, null, null, 0, 0, 0), + (258819, 150, 100, null, null, 0, 0, 0), + (258820, 150, 100, null, null, 0, 0, 0), + (258821, 150, 100, null, null, 0, 0, 0), + (259190, 150, 100, null, null, 0, 0, 0), + (259191, 150, 100, null, null, 0, 0, 0), + (259192, 150, 100, null, null, 0, 0, 0), + (259193, 150, 100, null, null, 0, 0, 0), + (259194, 150, 100, null, null, 0, 0, 0), + (259195, 150, 100, null, null, 0, 0, 0), + (259196, 150, 100, null, null, 0, 0, 0), + (259197, 150, 100, null, null, 0, 0, 0), + (259198, 150, 100, null, null, 0, 0, 0), + (259199, 150, 100, null, null, 0, 0, 0), + (259200, 150, 100, null, null, 0, 0, 0), + (259201, 150, 100, null, null, 0, 0, 0), + (259202, 150, 100, null, null, 0, 0, 0), + (259203, 150, 100, null, null, 0, 0, 0), + (259204, 150, 100, null, null, 0, 0, 0), + (259205, 150, 100, null, null, 0, 0, 0), + (259206, 150, 100, null, null, 0, 0, 0), + (259207, 150, 100, null, null, 0, 0, 0), + (259208, 150, 100, null, null, 0, 0, 0), + (259209, 150, 100, null, null, 0, 0, 0), + (259210, 150, 100, null, null, 0, 0, 0), + (259211, 150, 100, null, null, 0, 0, 0), + (259212, 150, 100, null, null, 0, 0, 0), + (259213, 150, 100, null, null, 0, 0, 0), + (259214, 150, 100, null, null, 0, 0, 0), + (259318, 150, 100, null, null, 0, 0, 0), + (259723, 100, 100, null, null, 0, 0, 0), + (259782, 500, 100, null, null, 0, 0, 0), + (259882, 500, 100, null, null, 0, 0, 0), + (259894, 200, 300, null, null, 0, 0, 0), + (259897, 100, 400, null, null, 0, 0, 0), + (259898, 100, 100, null, null, 0, 0, 0), + (259904, 100, 400, null, null, 0, 0, 0), + (259905, 100, 400, null, null, 0, 0, 0), + (259922, 250, 250, null, null, 0, 0, 0), + (259925, 150, 100, null, null, 0, 0, 0), + (259929, 100, 400, null, null, 0, 0, 0), + (259931, 100, 400, null, null, 0, 0, 0), + (259937, 250, 250, null, null, 0, 0, 0), + (259939, 100, 400, null, null, 0, 0, 0), + (260242, 100, 100, null, null, 0, 0, 0), + (260686, 100, 100, null, 1600, 1, 0, 0), + (260687, 100, 100, null, 1600, 1, 0, 0), + (260688, 100, 100, null, 1600, 1, 0, 0), + (260700, 100, 100, 5000, 2500, 0, 0, 0), + (260701, 100, 100, 5000, 2500, 0, 0, 0), + (260702, 100, 100, 5000, 2500, 0, 0, 0), + (260703, 100, 100, 5000, 2500, 0, 0, 0), + (260704, 100, 100, 5000, 2500, 0, 0, 0), + (260705, 100, 100, 5000, 2500, 0, 0, 0), + (260706, 100, 100, 5000, 2500, 0, 0, 0), + (260707, 100, 100, null, 2500, 0, 0, 0), + (260708, 100, 100, null, 2500, 0, 0, 0), + (260709, 100, 100, null, 2500, 0, 0, 0), + (260710, 100, 100, null, 2500, 0, 0, 0), + (260711, 100, 100, null, 2500, 0, 0, 0), + (260712, 100, 100, null, 2500, 0, 0, 0), + (260713, 100, 100, null, 2500, 0, 0, 0), + (260714, 100, 100, null, null, 0, 0, 1), + (260715, 100, 100, null, null, 0, 0, 1), + (260716, 100, 100, null, null, 0, 0, 1), + (260717, 100, 100, null, null, 0, 0, 1), + (260718, 100, 100, null, null, 0, 0, 1), + (260719, 100, 100, null, null, 0, 0, 1), + (260720, 100, 100, null, null, 0, 0, 1), + (260730, 300, 300, null, null, 0, 0, 0), + (260731, 300, 300, null, null, 0, 0, 0), + (260772, 160, 160, null, null, 0, 0, 0), + (261602, 0, 0, null, null, 0, 0, 0), + (261603, 0, 0, null, null, 0, 0, 0), + (262508, 150, 150, null, null, 0, 0, 0), + (262509, 150, 150, null, null, 0, 0, 0), + (262510, 150, 150, null, null, 0, 0, 0), + (262511, 150, 150, null, null, 0, 0, 0), + (262512, 150, 150, null, null, 0, 0, 0), + (262513, 150, 150, null, null, 0, 0, 0), + (262514, 150, 150, null, null, 0, 0, 0), + (262523, 100, 100, null, null, 0, 0, 0), + (262524, 100, 100, null, null, 0, 0, 0), + (262525, 100, 100, null, null, 0, 0, 0), + (262526, 100, 100, null, null, 0, 0, 0), + (262527, 100, 100, null, null, 0, 0, 0), + (262528, 100, 100, null, null, 0, 0, 0), + (262529, 100, 100, null, null, 0, 0, 0), + (262532, 150, 150, null, null, 0, 0, 0), + (262533, 150, 150, null, null, 0, 0, 0), + (262534, 150, 150, null, null, 0, 0, 0), + (262535, 150, 150, null, null, 0, 0, 0), + (262536, 150, 150, null, null, 0, 0, 0), + (262537, 150, 150, null, null, 0, 0, 0), + (262538, 150, 150, null, null, 0, 0, 0), + (262543, 180, 180, null, null, 0, 0, 0), + (262544, 180, 180, null, null, 0, 0, 0), + (262545, 180, 180, null, null, 0, 0, 0), + (262546, 180, 180, null, null, 0, 0, 0), + (262547, 180, 180, null, null, 0, 0, 0), + (262548, 180, 180, null, null, 0, 0, 0), + (262549, 180, 180, null, null, 0, 0, 0), + (262558, 200, 200, null, null, 0, 0, 0), + (262559, 200, 200, null, null, 0, 0, 0), + (262560, 200, 200, null, null, 0, 0, 0), + (262561, 200, 200, null, null, 0, 0, 0), + (262562, 200, 200, null, null, 0, 0, 0), + (262563, 200, 200, null, null, 0, 0, 0), + (262564, 200, 200, null, null, 0, 0, 0), + (262566, 150, 150, null, null, 0, 0, 0), + (262567, 150, 150, null, null, 0, 0, 0), + (262568, 150, 150, null, null, 0, 0, 0), + (262569, 150, 150, null, null, 0, 0, 0), + (262570, 150, 150, null, null, 0, 0, 0), + (262571, 150, 150, null, null, 0, 0, 0), + (262572, 150, 150, null, null, 0, 0, 0), + (262611, 150, 150, null, null, 0, 0, 0), + (262612, 150, 150, null, null, 0, 0, 0), + (262613, 150, 150, null, null, 0, 0, 0), + (262614, 150, 150, null, null, 0, 0, 0), + (262615, 150, 150, null, null, 0, 0, 0), + (262616, 150, 150, null, null, 0, 0, 0), + (262617, 150, 150, null, null, 0, 0, 0), + (262626, 150, 150, null, null, 0, 0, 0), + (262627, 150, 150, null, null, 0, 0, 0), + (262628, 150, 150, null, null, 0, 0, 0), + (262629, 150, 150, null, null, 0, 0, 0), + (262630, 150, 150, null, null, 0, 0, 0), + (262631, 150, 150, null, null, 0, 0, 0), + (262632, 150, 150, null, null, 0, 0, 0), + (262633, 150, 150, null, null, 0, 0, 0), + (262634, 150, 150, null, null, 0, 0, 0), + (262635, 150, 150, null, null, 0, 0, 0), + (262636, 150, 150, null, null, 0, 0, 0), + (262637, 150, 150, null, null, 0, 0, 0), + (262638, 150, 150, null, null, 0, 0, 0), + (262639, 150, 150, null, null, 0, 0, 0), + (262743, 150, 150, null, null, 0, 0, 0), + (262744, 150, 150, null, null, 0, 0, 0), + (262745, 150, 150, null, null, 0, 0, 0), + (262746, 150, 150, null, null, 0, 0, 0), + (262747, 150, 150, null, null, 0, 0, 0), + (262748, 150, 150, null, null, 0, 0, 0), + (262749, 150, 150, null, null, 0, 0, 0), + (262750, 150, 150, null, null, 0, 0, 0), + (262751, 150, 150, null, null, 0, 0, 0), + (262752, 150, 150, null, null, 0, 0, 0), + (262753, 150, 150, null, null, 0, 0, 0), + (262754, 150, 150, null, null, 0, 0, 0), + (262755, 150, 150, null, null, 0, 0, 0), + (262756, 150, 150, null, null, 0, 0, 0), + (262757, 150, 150, null, null, 0, 0, 0), + (262758, 150, 150, null, null, 0, 0, 0), + (262759, 150, 150, null, null, 0, 0, 0), + (262760, 150, 150, null, null, 0, 0, 0), + (262761, 150, 150, null, null, 0, 0, 0), + (262762, 150, 150, null, null, 0, 0, 0), + (262763, 150, 150, null, null, 0, 0, 0), + (262764, 150, 150, null, null, 0, 0, 0), + (262765, 150, 150, null, null, 0, 0, 0), + (262766, 150, 150, null, null, 0, 0, 0), + (262767, 150, 150, null, null, 0, 0, 0), + (262768, 150, 150, null, null, 0, 0, 0), + (262769, 150, 150, null, null, 0, 0, 0), + (262770, 150, 150, null, null, 0, 0, 0), + (262771, 150, 150, null, null, 0, 0, 0), + (262772, 150, 150, null, null, 0, 0, 0), + (262773, 150, 150, null, null, 0, 0, 0), + (262774, 150, 150, null, null, 0, 0, 0), + (262775, 150, 150, null, null, 0, 0, 0), + (262776, 150, 150, null, null, 0, 0, 0), + (262777, 150, 150, null, null, 0, 0, 0), + (262778, 150, 150, null, null, 0, 0, 0), + (262779, 150, 150, null, null, 0, 0, 0), + (262780, 150, 150, null, null, 0, 0, 0), + (262781, 150, 150, null, null, 0, 0, 0), + (262782, 150, 150, null, null, 0, 0, 0), + (262783, 150, 150, null, null, 0, 0, 0), + (262784, 150, 150, null, null, 0, 0, 0), + (262785, 150, 150, null, null, 0, 0, 0), + (262786, 150, 150, null, null, 0, 0, 0), + (262787, 150, 150, null, null, 0, 0, 0), + (262788, 150, 150, null, null, 0, 0, 0), + (262789, 150, 150, null, null, 0, 0, 0), + (262790, 150, 150, null, null, 0, 0, 0), + (262791, 150, 150, null, null, 0, 0, 0), + (262792, 150, 150, null, null, 0, 0, 0), + (262793, 150, 150, null, null, 0, 0, 0), + (262794, 150, 150, null, null, 0, 0, 0), + (262795, 150, 150, null, null, 0, 0, 0), + (262796, 150, 150, null, null, 0, 0, 0), + (262797, 150, 150, null, null, 0, 0, 0), + (262798, 150, 150, null, null, 0, 0, 0), + (262800, 150, 100, null, null, 0, 0, 0), + (262801, 150, 100, null, null, 0, 0, 0), + (262802, 150, 100, null, null, 0, 0, 0), + (262811, 150, 100, null, null, 0, 0, 0), + (263285, 120, 120, null, null, 0, 0, 0), + (263286, 120, 120, null, null, 0, 0, 0), + (263299, 160, 160, null, null, 0, 0, 0), + (263831, 430, 130, null, null, 1, 0, 0), + (263974, 500, 100, null, null, 0, 0, 0), + (263975, 500, 100, null, null, 0, 0, 0), + (263976, 500, 100, null, null, 0, 0, 0), + (263977, 500, 100, null, null, 0, 0, 0), + (264084, 400, 500, null, null, 0, 0, 0), + (264853, 150, 150, null, null, 0, 0, 0), + (264854, 150, 150, null, null, 0, 0, 0), + (264855, 150, 150, null, null, 0, 0, 0), + (264856, 150, 150, null, null, 0, 0, 0), + (264857, 150, 150, null, null, 0, 0, 0), + (264858, 150, 150, null, null, 0, 0, 0), + (264859, 150, 150, null, null, 0, 0, 0), + (264864, 150, 150, null, null, 0, 0, 0), + (264865, 150, 150, null, null, 0, 0, 0), + (264866, 150, 150, null, null, 0, 0, 0), + (264867, 150, 150, null, null, 0, 0, 0), + (264868, 150, 150, null, null, 0, 0, 0), + (264869, 150, 150, null, null, 0, 0, 0), + (264870, 150, 150, null, null, 0, 0, 0), + (264871, 150, 150, null, null, 1, 0, 0), + (264872, 150, 150, null, null, 1, 0, 0), + (264873, 150, 150, null, null, 1, 0, 0), + (264874, 150, 150, null, null, 1, 0, 0), + (264875, 150, 150, null, null, 1, 0, 0), + (264876, 150, 150, null, null, 1, 0, 0), + (264877, 150, 150, null, null, 1, 0, 0), + (264878, 140, 140, null, null, 1, 0, 0), + (264879, 140, 140, null, null, 1, 0, 0), + (264880, 140, 140, null, null, 1, 0, 0), + (264881, 140, 140, null, null, 1, 0, 0), + (264882, 140, 140, null, null, 1, 0, 0), + (264883, 140, 140, null, null, 1, 0, 0), + (264884, 140, 140, null, null, 1, 0, 0), + (264885, 140, 140, null, null, 1, 0, 0), + (264886, 140, 140, null, null, 1, 0, 0), + (264887, 140, 140, null, null, 1, 0, 0), + (264888, 140, 140, null, null, 1, 0, 0), + (264889, 140, 140, null, null, 1, 0, 0), + (264890, 140, 140, null, null, 1, 0, 0), + (264891, 140, 140, null, null, 1, 0, 0), + (264892, 150, 160, null, null, 1, 0, 1), + (264893, 150, 160, null, null, 1, 0, 1), + (264894, 150, 160, null, null, 1, 0, 1), + (264895, 150, 160, null, null, 1, 0, 1), + (264896, 150, 160, null, null, 1, 0, 1), + (264897, 150, 160, null, null, 1, 0, 1), + (264898, 150, 160, null, null, 1, 0, 1), + (264901, 120, 120, null, null, 0, 0, 0), + (264902, 120, 120, null, null, 0, 0, 0), + (264903, 120, 120, null, null, 0, 0, 0), + (264904, 120, 120, null, null, 0, 0, 0), + (264905, 120, 120, null, null, 0, 0, 0), + (264906, 120, 120, null, null, 0, 0, 0), + (264907, 120, 120, null, null, 0, 0, 0), + (264908, 120, 120, null, null, 0, 1, 0), + (264909, 120, 120, null, null, 0, 1, 0), + (264910, 120, 120, null, null, 0, 1, 0), + (264911, 120, 120, null, null, 0, 1, 0), + (264912, 120, 120, null, null, 0, 1, 0), + (264913, 120, 120, null, null, 0, 1, 0), + (264914, 120, 120, null, null, 0, 1, 0), + (264915, 120, 120, null, null, 0, 1, 0), + (264916, 120, 120, null, null, 0, 1, 0), + (264917, 120, 120, null, null, 0, 1, 0), + (264918, 120, 120, null, null, 0, 1, 0), + (264919, 120, 120, null, null, 0, 1, 0), + (264920, 120, 120, null, null, 0, 1, 0), + (264921, 120, 120, null, null, 0, 1, 0), + (264922, 120, 120, null, null, 0, 1, 0), + (264923, 120, 120, null, null, 0, 1, 0), + (264924, 120, 120, null, null, 0, 1, 0), + (264925, 120, 120, null, null, 0, 1, 0), + (264926, 120, 120, null, null, 0, 1, 0), + (264927, 120, 120, null, null, 0, 1, 0), + (264928, 120, 120, null, null, 0, 1, 0), + (264929, 120, 120, null, null, 0, 1, 0), + (264930, 120, 120, null, null, 0, 1, 0), + (264931, 120, 120, null, null, 0, 1, 0), + (264932, 120, 120, null, null, 0, 1, 0), + (264933, 120, 120, null, null, 0, 1, 0), + (264934, 120, 120, null, null, 0, 1, 0), + (264935, 120, 120, null, null, 0, 1, 0), + (264936, 150, 150, null, null, 0, 0, 0), + (264937, 150, 150, null, null, 0, 0, 0), + (264938, 150, 150, null, null, 0, 0, 0), + (264939, 150, 150, null, null, 0, 0, 0), + (264940, 150, 150, null, null, 0, 0, 0), + (264941, 150, 150, null, null, 0, 0, 0), + (264942, 150, 150, null, null, 0, 0, 0), + (264943, 150, 150, null, null, 0, 0, 0), + (264944, 150, 150, null, null, 0, 0, 0), + (264945, 150, 150, null, null, 0, 0, 0), + (264946, 150, 150, null, null, 0, 0, 0), + (264947, 150, 150, null, null, 0, 0, 0), + (264948, 150, 150, null, null, 0, 0, 0), + (264949, 150, 150, null, null, 0, 0, 0), + (264950, 150, 150, null, null, 0, 1, 0), + (264951, 150, 150, null, null, 0, 1, 0), + (264952, 150, 150, null, null, 0, 1, 0), + (264953, 150, 150, null, null, 0, 1, 0), + (264954, 150, 150, null, null, 0, 1, 0), + (264955, 150, 150, null, null, 0, 1, 0), + (264956, 150, 150, null, null, 0, 1, 0), + (264957, 150, 150, null, null, 0, 1, 0), + (264958, 150, 150, null, null, 0, 1, 0), + (264959, 150, 150, null, null, 0, 1, 0), + (264960, 150, 150, null, null, 0, 1, 0), + (264961, 150, 150, null, null, 0, 1, 0), + (264962, 150, 150, null, null, 0, 1, 0), + (264963, 150, 150, null, null, 0, 1, 0), + (264964, 150, 150, null, null, 0, 1, 0), + (264965, 150, 150, null, null, 0, 1, 0), + (264966, 150, 150, null, null, 0, 1, 0), + (264967, 150, 150, null, null, 0, 1, 0), + (264968, 150, 150, null, null, 0, 1, 0), + (264969, 150, 150, null, null, 0, 1, 0), + (264970, 150, 150, null, null, 0, 1, 0), + (264971, 140, 140, null, null, 0, 1, 0), + (264972, 140, 140, null, null, 0, 1, 0), + (264973, 140, 140, null, null, 0, 1, 0), + (264974, 140, 140, null, null, 0, 1, 0), + (264975, 140, 140, null, null, 0, 1, 0), + (264976, 140, 140, null, null, 0, 1, 0), + (264977, 140, 140, null, null, 0, 1, 0), + (264978, 100, 100, null, null, 0, 0, 0), + (264979, 100, 100, null, null, 0, 0, 0), + (264980, 100, 100, null, null, 0, 0, 0), + (264981, 100, 100, null, null, 0, 0, 0), + (264982, 100, 100, null, null, 0, 0, 0), + (264983, 100, 100, null, null, 0, 0, 0), + (264984, 100, 100, null, null, 0, 0, 0), + (264985, 100, 100, null, null, 0, 0, 0), + (264986, 100, 100, null, null, 0, 0, 0), + (264987, 100, 100, null, null, 0, 0, 0), + (264988, 100, 100, null, null, 0, 0, 0), + (264989, 100, 100, null, null, 0, 0, 0), + (264990, 100, 100, null, null, 0, 0, 0), + (264991, 100, 100, null, null, 0, 0, 0), + (264992, 100, 100, null, null, 0, 1, 0), + (264993, 100, 100, null, null, 0, 1, 0), + (264994, 100, 100, null, null, 0, 1, 0), + (264995, 100, 100, null, null, 0, 1, 0), + (264996, 100, 100, null, null, 0, 1, 0), + (264997, 100, 100, null, null, 0, 1, 0), + (264998, 100, 100, null, null, 0, 1, 0), + (264999, 100, 100, null, null, 0, 1, 0), + (265000, 100, 100, null, null, 0, 1, 0), + (265001, 100, 100, null, null, 0, 1, 0), + (265002, 100, 100, null, null, 0, 1, 0), + (265003, 100, 100, null, null, 0, 1, 0), + (265004, 100, 100, null, null, 0, 1, 0), + (265005, 100, 100, null, null, 0, 1, 0), + (265006, 100, 100, null, null, 0, 1, 0), + (265007, 100, 100, null, null, 0, 1, 0), + (265008, 100, 100, null, null, 0, 1, 0), + (265009, 100, 100, null, null, 0, 1, 0), + (265010, 100, 100, null, null, 0, 1, 0), + (265011, 100, 100, null, null, 0, 1, 0), + (265012, 100, 100, null, null, 0, 1, 0), + (265013, 100, 100, null, null, 0, 1, 0), + (265014, 100, 100, null, null, 0, 1, 0), + (265015, 100, 100, null, null, 0, 1, 0), + (265016, 100, 100, null, null, 0, 1, 0), + (265017, 100, 100, null, null, 0, 1, 0), + (265018, 100, 100, null, null, 0, 1, 0), + (265019, 100, 100, null, null, 0, 1, 0), + (265020, 120, 120, null, null, 0, 0, 0), + (265021, 120, 120, null, null, 0, 0, 0), + (265022, 120, 120, null, null, 0, 0, 0), + (265023, 120, 120, null, null, 0, 0, 0), + (265024, 120, 120, null, null, 0, 0, 0), + (265025, 120, 120, null, null, 0, 0, 0), + (265026, 120, 120, null, null, 0, 0, 0), + (265027, 120, 120, null, null, 0, 0, 0), + (265028, 120, 120, null, null, 0, 0, 0), + (265029, 120, 120, null, null, 0, 0, 0), + (265030, 120, 120, null, null, 0, 0, 0), + (265031, 120, 120, null, null, 0, 0, 0), + (265032, 120, 120, null, null, 0, 0, 0), + (265033, 120, 120, null, null, 0, 0, 0), + (265034, 120, 120, null, null, 1, 0, 0), + (265035, 120, 120, null, null, 1, 0, 0), + (265036, 120, 120, null, null, 1, 0, 0), + (265037, 120, 120, null, null, 1, 0, 0), + (265038, 120, 120, null, null, 1, 0, 0), + (265039, 120, 120, null, null, 1, 0, 0), + (265040, 120, 120, null, null, 1, 0, 0), + (265041, 120, 120, null, null, 1, 0, 0), + (265042, 120, 120, null, null, 1, 0, 0), + (265043, 120, 120, null, null, 1, 0, 0), + (265044, 120, 120, null, null, 1, 0, 0), + (265045, 120, 120, null, null, 1, 0, 0), + (265046, 120, 120, null, null, 1, 0, 0), + (265047, 120, 120, null, null, 1, 0, 0), + (265048, 120, 120, null, 4000, 1, 0, 0), + (265049, 120, 120, null, 4000, 1, 0, 0), + (265050, 120, 120, null, 4000, 1, 0, 0), + (265051, 120, 120, null, 4000, 1, 0, 0), + (265052, 120, 120, null, 4000, 1, 0, 0), + (265053, 120, 120, null, 4000, 1, 0, 0), + (265054, 120, 120, null, 4000, 1, 0, 0), + (265055, 120, 120, null, 4000, 1, 0, 0), + (265056, 120, 120, null, 4000, 1, 0, 0), + (265057, 120, 120, null, 4000, 1, 0, 0), + (265058, 120, 120, null, 4000, 1, 0, 0), + (265059, 120, 120, null, 4000, 1, 0, 0), + (265060, 120, 120, null, 4000, 1, 0, 0), + (265061, 120, 120, null, 4000, 1, 0, 0), + (265062, 180, 180, null, null, 0, 0, 0), + (265063, 180, 180, null, null, 0, 0, 0), + (265064, 180, 180, null, null, 0, 0, 0), + (265065, 180, 180, null, null, 0, 0, 0), + (265066, 180, 180, null, null, 0, 0, 0), + (265067, 180, 180, null, null, 0, 0, 0), + (265068, 180, 180, null, null, 0, 0, 0), + (265069, 180, 180, null, null, 0, 0, 0), + (265070, 180, 180, null, null, 0, 0, 0), + (265071, 180, 180, null, null, 0, 0, 0), + (265072, 180, 180, null, null, 0, 0, 0), + (265073, 180, 180, null, null, 0, 0, 0), + (265074, 180, 180, null, null, 0, 0, 0), + (265075, 180, 180, null, null, 0, 0, 0), + (265076, 160, 170, null, 4000, 0, 0, 0), + (265077, 160, 170, null, 4000, 0, 0, 0), + (265078, 160, 170, null, 4000, 0, 0, 0), + (265079, 160, 170, null, 4000, 0, 0, 0), + (265080, 160, 170, null, 4000, 0, 0, 0), + (265081, 160, 170, null, 4000, 0, 0, 0), + (265082, 160, 170, null, 4000, 0, 0, 0), + (265083, 160, 160, null, 4000, 0, 0, 0), + (265084, 160, 160, null, 4000, 0, 0, 0), + (265085, 160, 160, null, 4000, 0, 0, 0), + (265086, 160, 160, null, 4000, 0, 0, 0), + (265087, 160, 160, null, 4000, 0, 0, 0), + (265088, 160, 160, null, 4000, 0, 0, 0), + (265089, 160, 160, null, 4000, 0, 0, 0), + (265090, 140, 150, 4500, 4000, 0, 0, 0), + (265091, 140, 150, 4500, 4000, 0, 0, 0), + (265092, 140, 150, 4500, 4000, 0, 0, 0), + (265093, 140, 150, 4500, 4000, 0, 0, 0), + (265094, 140, 150, 4500, 4000, 0, 0, 0), + (265095, 140, 150, 4500, 4000, 0, 0, 0), + (265096, 140, 150, 4500, 4000, 0, 0, 0), + (265097, 140, 140, 4500, 4000, 0, 0, 0), + (265098, 140, 140, 4500, 4000, 0, 0, 0), + (265099, 140, 140, 4500, 4000, 0, 0, 0), + (265100, 140, 140, 4500, 4000, 0, 0, 0), + (265101, 140, 140, 4500, 4000, 0, 0, 0), + (265102, 140, 140, 4500, 4000, 0, 0, 0), + (265103, 140, 140, 4500, 4000, 0, 0, 0), + (265104, 180, 180, null, null, 0, 0, 0), + (265105, 180, 180, null, null, 0, 0, 0), + (265106, 180, 180, null, null, 0, 0, 0), + (265107, 180, 180, null, null, 0, 0, 0), + (265108, 180, 180, null, null, 0, 0, 0), + (265109, 180, 180, null, null, 0, 0, 0), + (265110, 180, 180, null, null, 0, 0, 0), + (265111, 180, 180, null, null, 0, 0, 0), + (265112, 180, 180, null, null, 0, 0, 0), + (265113, 180, 180, null, null, 0, 0, 0), + (265114, 180, 180, null, null, 0, 0, 0), + (265115, 180, 180, null, null, 0, 0, 0), + (265116, 180, 180, null, null, 0, 0, 0), + (265117, 180, 180, null, null, 0, 0, 0), + (265118, 180, 180, null, null, 1, 0, 0), + (265119, 180, 180, null, null, 1, 0, 0), + (265120, 180, 180, null, null, 1, 0, 0), + (265121, 180, 180, null, null, 1, 0, 0), + (265122, 180, 180, null, null, 1, 0, 0), + (265123, 180, 180, null, null, 1, 0, 0), + (265124, 180, 180, null, null, 1, 0, 0), + (265125, 170, 170, null, null, 1, 0, 0), + (265126, 170, 170, null, null, 1, 0, 0), + (265127, 170, 170, null, null, 1, 0, 0), + (265128, 170, 170, null, null, 1, 0, 0), + (265129, 170, 170, null, null, 1, 0, 0), + (265130, 170, 170, null, null, 1, 0, 0), + (265131, 170, 170, null, null, 1, 0, 0), + (265132, 170, 170, null, null, 1, 0, 1), + (265133, 170, 170, null, null, 1, 0, 1), + (265134, 170, 170, null, null, 1, 0, 1), + (265135, 170, 170, null, null, 1, 0, 1), + (265136, 170, 170, null, null, 1, 0, 1), + (265137, 170, 170, null, null, 1, 0, 1), + (265138, 170, 170, null, null, 1, 0, 1), + (265139, 160, 160, null, null, 1, 0, 1), + (265140, 160, 160, null, null, 1, 0, 1), + (265141, 160, 160, null, null, 1, 0, 1), + (265142, 160, 160, null, null, 1, 0, 1), + (265143, 160, 160, null, null, 1, 0, 1), + (265144, 160, 160, null, null, 1, 0, 1), + (265145, 160, 160, null, null, 1, 0, 1), + (265146, 120, 120, null, null, 0, 0, 0), + (265147, 120, 120, null, null, 0, 0, 0), + (265148, 120, 120, null, null, 0, 0, 0), + (265149, 120, 120, null, null, 0, 0, 0), + (265150, 120, 120, null, null, 0, 0, 0), + (265151, 120, 120, null, null, 0, 0, 0), + (265152, 120, 120, null, null, 0, 0, 0), + (265153, 120, 120, null, null, 0, 0, 0), + (265154, 120, 120, null, null, 0, 0, 0), + (265155, 120, 120, null, null, 0, 0, 0), + (265156, 120, 120, null, null, 0, 0, 0), + (265157, 120, 120, null, null, 0, 0, 0), + (265158, 120, 120, null, null, 0, 0, 0), + (265159, 120, 120, null, null, 0, 0, 0), + (265160, 120, 120, null, null, 0, 0, 0), + (265161, 120, 120, null, null, 0, 0, 0), + (265162, 120, 120, null, null, 0, 0, 0), + (265163, 120, 120, null, null, 0, 0, 0), + (265164, 120, 120, null, null, 0, 0, 0), + (265165, 120, 120, null, null, 0, 0, 0), + (265166, 120, 120, null, null, 0, 0, 0), + (265167, 120, 120, null, 2500, 0, 0, 0), + (265168, 120, 120, null, 2500, 0, 0, 0), + (265169, 120, 120, null, 2500, 0, 0, 0), + (265170, 120, 120, null, 2500, 0, 0, 0), + (265171, 120, 120, null, 2500, 0, 0, 0), + (265172, 120, 120, null, 2500, 0, 0, 0), + (265173, 120, 120, null, 2500, 0, 0, 0), + (265174, 120, 120, null, 2500, 0, 0, 0), + (265175, 120, 120, null, 2500, 0, 0, 0), + (265176, 120, 120, null, 2500, 0, 0, 0), + (265177, 120, 120, null, 2500, 0, 0, 0), + (265178, 120, 120, null, 2500, 0, 0, 0), + (265179, 120, 120, null, 2500, 0, 0, 0), + (265180, 120, 120, null, 2500, 0, 0, 0), + (265181, 120, 120, 11000, 2500, 0, 0, 0), + (265182, 120, 120, 11000, 2500, 0, 0, 0), + (265183, 120, 120, 11000, 2500, 0, 0, 0), + (265184, 120, 120, 11000, 2500, 0, 0, 0), + (265185, 120, 120, 11000, 2500, 0, 0, 0), + (265186, 120, 120, 11000, 2500, 0, 0, 0), + (265187, 120, 120, 11000, 2500, 0, 0, 0), + (265188, 120, 120, 11000, 2200, 0, 0, 0), + (265189, 120, 120, 11000, 2200, 0, 0, 0), + (265190, 120, 120, 11000, 2200, 0, 0, 0), + (265191, 120, 120, 11000, 2200, 0, 0, 0), + (265192, 120, 120, 11000, 2200, 0, 0, 0), + (265193, 120, 120, 11000, 2200, 0, 0, 0), + (265194, 120, 120, 11000, 2200, 0, 0, 0), + (265195, 150, 150, null, null, 0, 0, 0), + (265196, 150, 150, null, null, 0, 0, 0), + (265197, 150, 150, null, null, 0, 0, 0), + (265198, 150, 150, null, null, 0, 0, 0), + (265199, 150, 150, null, null, 0, 0, 0), + (265200, 150, 150, null, null, 0, 0, 0), + (265201, 150, 150, null, null, 0, 0, 0), + (265202, 150, 150, null, null, 0, 0, 0), + (265203, 150, 150, null, null, 0, 0, 0), + (265204, 150, 150, null, null, 0, 0, 0), + (265205, 150, 150, null, null, 0, 0, 0), + (265206, 150, 150, null, null, 0, 0, 0), + (265207, 150, 150, null, null, 0, 0, 0), + (265208, 150, 150, null, null, 0, 0, 0), + (265209, 150, 150, null, null, 0, 1, 0), + (265210, 150, 150, null, null, 0, 1, 0), + (265211, 150, 150, null, null, 0, 1, 0), + (265212, 150, 150, null, null, 0, 1, 0), + (265213, 150, 150, null, null, 0, 1, 0), + (265214, 150, 150, null, null, 0, 1, 0), + (265215, 150, 150, null, null, 0, 1, 0), + (265216, 150, 150, null, null, 0, 1, 0), + (265217, 150, 150, null, null, 0, 1, 0), + (265218, 150, 150, null, null, 0, 1, 0), + (265219, 150, 150, null, null, 0, 1, 0), + (265220, 150, 150, null, null, 0, 1, 0), + (265221, 150, 150, null, null, 0, 1, 0), + (265222, 150, 150, null, null, 0, 1, 0), + (265223, 140, 140, null, null, 0, 1, 0), + (265224, 140, 140, null, null, 0, 1, 0), + (265225, 140, 140, null, null, 0, 1, 0), + (265226, 140, 140, null, null, 0, 1, 0), + (265227, 140, 140, null, null, 0, 1, 0), + (265228, 140, 140, null, null, 0, 1, 0), + (265229, 140, 140, null, null, 0, 1, 0), + (265230, 140, 140, null, null, 0, 1, 0), + (265231, 140, 140, null, null, 0, 1, 0), + (265232, 140, 140, null, null, 0, 1, 0), + (265233, 140, 140, null, null, 0, 1, 0), + (265234, 140, 140, null, null, 0, 1, 0), + (265235, 140, 140, null, null, 0, 1, 0), + (265236, 140, 140, null, null, 0, 1, 0), + (265237, 200, 200, null, null, 0, 0, 0), + (265238, 200, 200, null, null, 0, 0, 0), + (265239, 200, 200, null, null, 0, 0, 0), + (265240, 200, 200, null, null, 0, 0, 0), + (265241, 200, 200, null, null, 0, 0, 0), + (265242, 200, 200, null, null, 0, 0, 0), + (265243, 200, 200, null, null, 0, 0, 0), + (265244, 190, 190, null, null, 0, 0, 0), + (265245, 190, 190, null, null, 0, 0, 0), + (265246, 190, 190, null, null, 0, 0, 0), + (265247, 190, 190, null, null, 0, 0, 0), + (265248, 190, 190, null, null, 0, 0, 0), + (265249, 190, 190, null, null, 0, 0, 0), + (265250, 190, 190, null, null, 0, 0, 0), + (265251, 190, 190, null, null, 0, 1, 0), + (265252, 190, 190, null, null, 0, 1, 0), + (265253, 190, 190, null, null, 0, 1, 0), + (265254, 190, 190, null, null, 0, 1, 0), + (265255, 190, 190, null, null, 0, 1, 0), + (265256, 190, 190, null, null, 0, 1, 0), + (265257, 190, 190, null, null, 0, 1, 0), + (265258, 180, 180, null, null, 0, 1, 0), + (265259, 180, 180, null, null, 0, 1, 0), + (265260, 180, 180, null, null, 0, 1, 0), + (265261, 180, 180, null, null, 0, 1, 0), + (265262, 180, 180, null, null, 0, 1, 0), + (265263, 180, 180, null, null, 0, 1, 0), + (265264, 180, 180, null, null, 0, 1, 0), + (265265, 170, 170, null, null, 0, 1, 0), + (265266, 170, 170, null, null, 0, 1, 0), + (265267, 170, 170, null, null, 0, 1, 0), + (265268, 170, 170, null, null, 0, 1, 0), + (265269, 170, 170, null, null, 0, 1, 0), + (265270, 170, 170, null, null, 0, 1, 0), + (265271, 170, 170, null, null, 0, 1, 0), + (265272, 170, 170, null, null, 0, 1, 0), + (265273, 170, 170, null, null, 0, 1, 0), + (265274, 170, 170, null, null, 0, 1, 0), + (265275, 170, 170, null, null, 0, 1, 0), + (265276, 170, 170, null, null, 0, 1, 0), + (265277, 170, 170, null, null, 0, 1, 0), + (265278, 170, 170, null, null, 0, 1, 0), + (265279, 200, 200, null, null, 0, 0, 0), + (265280, 200, 200, null, null, 0, 0, 0), + (265281, 200, 200, null, null, 0, 0, 0), + (265282, 200, 200, null, null, 0, 0, 0), + (265283, 200, 200, null, null, 0, 0, 0), + (265284, 200, 200, null, null, 0, 0, 0), + (265285, 200, 200, null, null, 0, 0, 0), + (265286, 190, 190, null, null, 0, 0, 0), + (265287, 190, 190, null, null, 0, 0, 0), + (265288, 190, 190, null, null, 0, 0, 0), + (265289, 190, 190, null, null, 0, 0, 0), + (265290, 190, 190, null, null, 0, 0, 0), + (265291, 190, 190, null, null, 0, 0, 0), + (265292, 190, 190, null, null, 0, 0, 0), + (265293, 190, 190, null, null, 0, 0, 1), + (265294, 190, 190, null, null, 0, 0, 1), + (265295, 190, 190, null, null, 0, 0, 1), + (265296, 190, 190, null, null, 0, 0, 1), + (265297, 190, 190, null, null, 0, 0, 1), + (265298, 190, 190, null, null, 0, 0, 1), + (265299, 190, 190, null, null, 0, 0, 1), + (265300, 180, 180, null, null, 0, 0, 1), + (265301, 180, 180, null, null, 0, 0, 1), + (265302, 180, 180, null, null, 0, 0, 1), + (265303, 180, 180, null, null, 0, 0, 1), + (265304, 180, 180, null, null, 0, 0, 1), + (265305, 180, 180, null, null, 0, 0, 1), + (265306, 180, 180, null, null, 0, 0, 1), + (265307, 180, 180, null, null, 1, 0, 1), + (265308, 180, 180, null, null, 1, 0, 1), + (265309, 180, 180, null, null, 1, 0, 1), + (265310, 180, 180, null, null, 1, 0, 1), + (265311, 180, 180, null, null, 1, 0, 1), + (265312, 180, 180, null, null, 1, 0, 1), + (265313, 180, 180, null, null, 1, 0, 1), + (265314, 170, 170, null, null, 1, 0, 1), + (265315, 170, 170, null, null, 1, 0, 1), + (265316, 170, 170, null, null, 1, 0, 1), + (265317, 170, 170, null, null, 1, 0, 1), + (265318, 170, 170, null, null, 1, 0, 1), + (265319, 170, 170, null, null, 1, 0, 1), + (265320, 170, 170, null, null, 1, 0, 1), + (265380, 50, 50, null, null, 0, 0, 0), + (265485, 330, 50, null, null, 0, 0, 0), + (265486, 330, 50, null, null, 0, 0, 0), + (265495, 330, 50, null, null, 1, 0, 0), + (265496, 330, 50, null, null, 1, 0, 0), + (265497, 330, 50, null, null, 1, 0, 0), + (265498, 330, 50, null, null, 1, 0, 0), + (265499, 330, 50, null, null, 0, 0, 0), + (265500, 330, 50, null, null, 0, 0, 0), + (265501, 430, 50, null, null, 0, 0, 0), + (265502, 430, 50, null, null, 0, 0, 0), + (265503, 430, 50, null, null, 1, 0, 0), + (265504, 430, 50, null, null, 1, 0, 0), + (265506, 180, 50, null, null, 1, 0, 0), + (265507, 180, 50, null, null, 1, 0, 0), + (265508, 180, 50, null, null, 0, 0, 0), + (265509, 180, 50, null, null, 0, 0, 0), + (265510, 180, 50, null, null, 0, 0, 0), + (265511, 180, 50, null, null, 0, 0, 0), + (265512, 180, 50, null, null, 1, 0, 0), + (265513, 180, 50, null, null, 1, 0, 0), + (266337, 120, 120, null, null, 0, 0, 0), + (266338, 120, 120, null, null, 0, 0, 0), + (266339, 120, 120, null, null, 0, 0, 0), + (266340, 120, 120, null, null, 0, 0, 0), + (266341, 120, 120, null, null, 0, 0, 0), + (266342, 120, 120, null, null, 0, 0, 0), + (266343, 120, 120, null, null, 0, 0, 0), + (266344, 120, 120, null, null, 0, 0, 0), + (266345, 120, 120, null, null, 0, 0, 0), + (266346, 120, 120, null, null, 0, 0, 0), + (266347, 120, 120, null, null, 0, 0, 0), + (266348, 120, 120, null, null, 0, 0, 0), + (266349, 120, 120, null, null, 0, 0, 0), + (266350, 120, 120, null, null, 0, 0, 0), + (266989, 150, 150, null, null, 0, 0, 0), + (266990, 150, 150, null, null, 0, 0, 0), + (266991, 150, 150, null, null, 0, 0, 0), + (266992, 400, 500, null, null, 0, 0, 0), + (266993, 400, 500, null, null, 0, 0, 0), + (266994, 400, 500, null, null, 0, 0, 0), + (266995, 400, 500, null, null, 0, 0, 0), + (267124, 150, 150, null, null, 0, 0, 0), + (267125, 170, 170, null, null, 1, 0, 0), + (267127, 200, 180, null, null, 1, 0, 0), + (267128, 100, 100, null, null, 1, 0, 0), + (267158, 140, 140, null, null, 0, 0, 0), + (267253, 140, 140, null, null, 0, 1, 0), + (267254, 170, 170, null, null, 0, 1, 0), + (267255, 120, 120, null, 4000, 1, 0, 0), + (267256, 230, 230, null, null, 0, 0, 0), + (267257, 150, 150, null, null, 1, 0, 1), + (267258, 150, 150, null, null, 0, 0, 0), + (267261, 2, 2, null, null, 0, 0, 0), + (267312, 400, 500, null, null, 0, 0, 0), + (267313, 400, 500, null, null, 0, 0, 0), + (267618, 120, 120, null, 4000, 1, 0, 0), + (267619, 120, 120, null, 4000, 0, 0, 0), + (267760, 150, 1000, null, null, 0, 0, 0), + (267761, 150, 1000, null, null, 0, 0, 0), + (268158, 150, 100, null, null, 0, 1, 0), + (268365, 100, 100, null, 6000, 1, 0, 0), + (268585, 150, 100, null, null, 0, 0, 0), + (268586, 150, 100, null, null, 0, 0, 0), + (268587, 150, 100, null, null, 0, 0, 0), + (268588, 150, 100, null, null, 0, 0, 0), + (268589, 150, 100, null, null, 0, 0, 0), + (268590, 150, 100, null, null, 0, 0, 0), + (268591, 150, 100, null, null, 0, 0, 0), + (268592, 150, 100, null, null, 0, 0, 0), + (268593, 150, 100, null, null, 0, 0, 0), + (268594, 150, 100, null, null, 0, 0, 0), + (268691, 150, 100, null, null, 0, 0, 0), + (268692, 150, 100, null, null, 0, 0, 0), + (268693, 150, 100, null, null, 0, 0, 0), + (268694, 150, 100, null, null, 0, 0, 0), + (268700, 150, 100, null, null, 0, 0, 0), + (268701, 150, 100, null, null, 0, 0, 0), + (268702, 150, 100, null, null, 0, 0, 0), + (268703, 150, 100, null, null, 0, 0, 0), + (268704, 150, 100, null, null, 0, 0, 0), + (268705, 150, 100, null, null, 0, 0, 0), + (268706, 150, 100, null, null, 0, 0, 0), + (268707, 10, 100, null, null, 0, 0, 0), + (268708, 10, 100, null, null, 0, 0, 0), + (268709, 10, 100, null, null, 0, 0, 0), + (268710, 10, 100, null, null, 0, 0, 0), + (268711, 10, 100, null, null, 0, 0, 0), + (268712, 10, 100, null, null, 0, 0, 0), + (268713, 10, 100, null, null, 0, 0, 0), + (268714, 10, 100, null, null, 0, 0, 0), + (268715, 10, 100, null, null, 0, 0, 0), + (268716, 10, 100, null, null, 0, 0, 0), + (268717, 10, 100, null, null, 0, 0, 0), + (268718, 10, 100, null, null, 0, 0, 0), + (268792, 100, 100, null, 6000, 1, 0, 0), + (269377, 100, 100, null, null, 0, 1, 0), + (269492, 150, 100, null, null, 0, 0, 0), + (269513, 120, 120, null, null, 0, 1, 0), + (271018, 150, 150, null, null, 0, 0, 0), + (271019, 150, 150, null, null, 0, 0, 0), + (271020, 150, 150, null, null, 0, 0, 0), + (271021, 150, 150, null, null, 0, 0, 0), + (271022, 150, 150, null, null, 0, 1, 0), + (271023, 150, 150, null, null, 0, 1, 0), + (271024, 150, 150, null, null, 0, 1, 0), + (271025, 150, 150, null, null, 0, 1, 0), + (271026, 150, 150, null, null, 0, 1, 0), + (271027, 150, 150, null, null, 0, 1, 0), + (271028, 150, 150, null, null, 0, 0, 0), + (271029, 150, 150, null, null, 0, 0, 0), + (271030, 150, 150, null, null, 0, 0, 0), + (271031, 150, 150, null, null, 0, 0, 0), + (271032, 150, 150, null, null, 0, 1, 0), + (271033, 150, 150, null, null, 0, 1, 0), + (271034, 150, 150, null, null, 0, 1, 0), + (271035, 150, 150, null, null, 0, 1, 0), + (271036, 150, 150, null, null, 0, 1, 0), + (271037, 150, 150, null, null, 0, 1, 0), + (271038, 150, 150, null, null, 0, 0, 0), + (271039, 150, 150, null, null, 0, 0, 0), + (271040, 150, 150, null, null, 0, 0, 0), + (271041, 150, 150, null, null, 0, 0, 0), + (271042, 150, 150, null, null, 0, 1, 0), + (271043, 150, 150, null, null, 0, 1, 0), + (271044, 150, 150, null, null, 0, 1, 0), + (271045, 150, 150, null, null, 0, 1, 0), + (271046, 150, 150, null, null, 0, 1, 0), + (271047, 150, 150, null, null, 0, 1, 0), + (271048, 150, 150, null, null, 0, 0, 0), + (271049, 150, 150, null, null, 0, 0, 0), + (271050, 150, 150, null, null, 0, 0, 0), + (271051, 150, 150, null, null, 0, 0, 0), + (271052, 150, 150, null, null, 0, 1, 0), + (271053, 150, 150, null, null, 0, 1, 0), + (271054, 150, 150, null, null, 0, 1, 0), + (271055, 150, 150, null, null, 0, 1, 0), + (271056, 150, 150, null, null, 0, 1, 0), + (271057, 150, 150, null, null, 0, 1, 0), + (271058, 150, 150, null, null, 0, 0, 0), + (271059, 150, 150, null, null, 0, 0, 0), + (271060, 150, 150, null, null, 0, 0, 0), + (271061, 150, 150, null, null, 0, 0, 0), + (271062, 150, 150, null, null, 0, 1, 0), + (271063, 150, 150, null, null, 0, 1, 0), + (271064, 150, 150, null, null, 0, 1, 0), + (271065, 150, 150, null, null, 0, 1, 0), + (271066, 150, 150, null, null, 0, 1, 0), + (271067, 150, 150, null, null, 0, 1, 0), + (271068, 150, 150, null, null, 0, 0, 0), + (271069, 150, 150, null, null, 0, 0, 0), + (271070, 150, 150, null, null, 0, 0, 0), + (271071, 150, 150, null, null, 0, 0, 0), + (271072, 150, 150, null, null, 0, 1, 0), + (271073, 150, 150, null, null, 0, 1, 0), + (271074, 150, 150, null, null, 0, 1, 0), + (271075, 150, 150, null, null, 0, 1, 0), + (271076, 150, 150, null, null, 0, 1, 0), + (271077, 150, 150, null, null, 0, 1, 0), + (271078, 150, 150, null, null, 0, 0, 0), + (271079, 150, 150, null, null, 0, 0, 0), + (271080, 150, 150, null, null, 0, 0, 0), + (271081, 150, 150, null, null, 0, 0, 0), + (271082, 150, 150, null, null, 0, 1, 0), + (271083, 150, 150, null, null, 0, 1, 0), + (271084, 150, 150, null, null, 0, 1, 0), + (271085, 150, 150, null, null, 0, 1, 0), + (271086, 150, 150, null, null, 0, 1, 0), + (271087, 150, 150, null, null, 0, 1, 0), + (271088, 150, 150, null, null, 0, 0, 0), + (271089, 150, 150, null, null, 0, 0, 0), + (271090, 150, 150, null, null, 0, 0, 0), + (271091, 150, 150, null, null, 0, 0, 0), + (271092, 150, 150, null, null, 0, 1, 0), + (271093, 150, 150, null, null, 0, 1, 0), + (271094, 150, 150, null, null, 0, 1, 0), + (271095, 150, 150, null, null, 0, 1, 0), + (271096, 150, 150, null, null, 0, 1, 0), + (271097, 150, 150, null, null, 0, 1, 0), + (271098, 150, 150, null, null, 0, 0, 0), + (271099, 150, 150, null, null, 0, 0, 0), + (271100, 150, 150, null, null, 0, 0, 0), + (271101, 150, 150, null, null, 0, 0, 0), + (271102, 150, 150, null, null, 0, 1, 0), + (271103, 150, 150, null, null, 0, 1, 0), + (271104, 150, 150, null, null, 0, 1, 0), + (271105, 150, 150, null, null, 0, 1, 0), + (271106, 150, 150, null, null, 0, 1, 0), + (271107, 150, 150, null, null, 0, 1, 0), + (271109, 120, 120, null, null, 0, 0, 0), + (271110, 120, 120, null, null, 0, 0, 0), + (271111, 120, 120, null, null, 0, 0, 0), + (271112, 120, 120, null, null, 0, 0, 0), + (271113, 120, 120, null, null, 0, 1, 0), + (271114, 120, 120, null, null, 0, 1, 0), + (271115, 120, 120, null, null, 0, 1, 0), + (271116, 120, 120, null, null, 0, 1, 0), + (271117, 120, 120, null, null, 0, 1, 0), + (271118, 120, 120, null, null, 0, 1, 0), + (271119, 120, 120, null, null, 0, 0, 0), + (271120, 120, 120, null, null, 0, 0, 0), + (271121, 120, 120, null, null, 0, 0, 0), + (271122, 120, 120, null, null, 0, 0, 0), + (271123, 120, 120, null, null, 0, 1, 0), + (271124, 120, 120, null, null, 0, 1, 0), + (271125, 120, 120, null, null, 0, 1, 0), + (271126, 120, 120, null, null, 0, 1, 0), + (271127, 120, 120, null, null, 0, 1, 0), + (271128, 120, 120, null, null, 0, 1, 0), + (271129, 120, 120, null, null, 0, 0, 0), + (271130, 120, 120, null, null, 0, 0, 0), + (271131, 120, 120, null, null, 0, 0, 0), + (271132, 120, 120, null, null, 0, 0, 0), + (271133, 120, 120, null, null, 0, 1, 0), + (271134, 120, 120, null, null, 0, 1, 0), + (271135, 120, 120, null, null, 0, 1, 0), + (271136, 120, 120, null, null, 0, 1, 0), + (271137, 120, 120, null, null, 0, 1, 0), + (271138, 120, 120, null, null, 0, 1, 0), + (271139, 120, 120, null, null, 0, 0, 0), + (271140, 120, 120, null, null, 0, 0, 0), + (271141, 120, 120, null, null, 0, 0, 0), + (271142, 120, 120, null, null, 0, 0, 0), + (271143, 120, 120, null, null, 0, 1, 0), + (271144, 120, 120, null, null, 0, 1, 0), + (271145, 120, 120, null, null, 0, 1, 0), + (271146, 120, 120, null, null, 0, 1, 0), + (271147, 120, 120, null, null, 0, 1, 0), + (271148, 120, 120, null, null, 0, 1, 0), + (271149, 120, 120, null, null, 0, 0, 0), + (271150, 120, 120, null, null, 0, 0, 0), + (271151, 120, 120, null, null, 0, 0, 0), + (271152, 120, 120, null, null, 0, 0, 0), + (271153, 120, 120, null, null, 0, 1, 0), + (271154, 120, 120, null, null, 0, 1, 0), + (271155, 120, 120, null, null, 0, 1, 0), + (271156, 120, 120, null, null, 0, 1, 0), + (271157, 120, 120, null, null, 0, 1, 0), + (271158, 120, 120, null, null, 0, 1, 0), + (271159, 120, 120, null, null, 0, 0, 0), + (271160, 120, 120, null, null, 0, 0, 0), + (271161, 120, 120, null, null, 0, 0, 0), + (271162, 120, 120, null, null, 0, 0, 0), + (271163, 120, 120, null, null, 0, 1, 0), + (271164, 120, 120, null, null, 0, 1, 0), + (271165, 120, 120, null, null, 0, 1, 0), + (271166, 120, 120, null, null, 0, 1, 0), + (271167, 120, 120, null, null, 0, 1, 0), + (271168, 120, 120, null, null, 0, 1, 0), + (271169, 120, 120, null, null, 0, 0, 0), + (271170, 120, 120, null, null, 0, 0, 0), + (271171, 120, 120, null, null, 0, 0, 0), + (271172, 120, 120, null, null, 0, 0, 0), + (271173, 120, 120, null, null, 0, 1, 0), + (271174, 120, 120, null, null, 0, 1, 0), + (271175, 120, 120, null, null, 0, 1, 0), + (271176, 120, 120, null, null, 0, 1, 0), + (271177, 120, 120, null, null, 0, 1, 0), + (271178, 120, 120, null, null, 0, 1, 0), + (271179, 120, 120, null, null, 0, 0, 0), + (271180, 120, 120, null, null, 0, 0, 0), + (271181, 120, 120, null, null, 0, 0, 0), + (271182, 120, 120, null, null, 0, 0, 0), + (271183, 120, 120, null, null, 0, 1, 0), + (271184, 120, 120, null, null, 0, 1, 0), + (271185, 120, 120, null, null, 0, 1, 0), + (271186, 120, 120, null, null, 0, 1, 0), + (271187, 120, 120, null, null, 0, 1, 0), + (271188, 120, 120, null, null, 0, 1, 0), + (271189, 120, 120, null, null, 0, 0, 0), + (271190, 120, 120, null, null, 0, 0, 0), + (271191, 120, 120, null, null, 0, 0, 0), + (271192, 120, 120, null, null, 0, 0, 0), + (271193, 120, 120, null, null, 0, 1, 0), + (271194, 120, 120, null, null, 0, 1, 0), + (271195, 120, 120, null, null, 0, 1, 0), + (271196, 120, 120, null, null, 0, 1, 0), + (271197, 120, 120, null, null, 0, 1, 0), + (271198, 120, 120, null, null, 0, 1, 0), + (271199, 150, 150, null, null, 0, 0, 0), + (271200, 150, 150, null, null, 0, 0, 0), + (271201, 150, 150, null, null, 0, 0, 0), + (271202, 150, 150, null, null, 0, 0, 0), + (271203, 150, 150, null, null, 0, 1, 0), + (271204, 150, 150, null, null, 0, 1, 0), + (271205, 150, 150, null, null, 0, 1, 0), + (271206, 150, 150, null, null, 0, 1, 0), + (271207, 150, 150, null, null, 0, 1, 0), + (271208, 150, 150, null, null, 0, 1, 0), + (271209, 150, 150, null, null, 0, 0, 0), + (271210, 150, 150, null, null, 0, 0, 0), + (271211, 150, 150, null, null, 0, 0, 0), + (271212, 150, 150, null, null, 0, 0, 0), + (271213, 150, 150, null, null, 0, 1, 0), + (271214, 150, 150, null, null, 0, 1, 0), + (271215, 150, 150, null, null, 0, 1, 0), + (271216, 150, 150, null, null, 0, 1, 0), + (271217, 150, 150, null, null, 0, 1, 0), + (271218, 150, 150, null, null, 0, 1, 0), + (271219, 150, 150, null, null, 0, 0, 0), + (271220, 150, 150, null, null, 0, 0, 0), + (271221, 150, 150, null, null, 0, 0, 0), + (271222, 150, 150, null, null, 0, 0, 0), + (271223, 150, 150, null, null, 0, 1, 0), + (271224, 150, 150, null, null, 0, 1, 0), + (271225, 150, 150, null, null, 0, 1, 0), + (271226, 150, 150, null, null, 0, 1, 0), + (271227, 150, 150, null, null, 0, 1, 0), + (271228, 150, 150, null, null, 0, 1, 0), + (271229, 150, 150, null, null, 0, 0, 0), + (271230, 150, 150, null, null, 0, 0, 0), + (271231, 150, 150, null, null, 0, 0, 0), + (271232, 150, 150, null, null, 0, 0, 0), + (271233, 150, 150, null, null, 0, 1, 0), + (271234, 150, 150, null, null, 0, 1, 0), + (271235, 150, 150, null, null, 0, 1, 0), + (271236, 150, 150, null, null, 0, 1, 0), + (271237, 150, 150, null, null, 0, 1, 0), + (271238, 150, 150, null, null, 0, 1, 0), + (271239, 150, 150, null, null, 0, 0, 0), + (271240, 150, 150, null, null, 0, 0, 0), + (271241, 150, 150, null, null, 0, 0, 0), + (271242, 150, 150, null, null, 0, 0, 0), + (271243, 150, 150, null, null, 0, 1, 0), + (271244, 150, 150, null, null, 0, 1, 0), + (271245, 150, 150, null, null, 0, 1, 0), + (271246, 150, 150, null, null, 0, 1, 0), + (271247, 150, 150, null, null, 0, 1, 0), + (271248, 150, 150, null, null, 0, 1, 0), + (271249, 150, 150, null, null, 0, 0, 0), + (271250, 150, 150, null, null, 0, 0, 0), + (271251, 150, 150, null, null, 0, 0, 0), + (271252, 150, 150, null, null, 0, 0, 0), + (271253, 150, 150, null, null, 0, 1, 0), + (271254, 150, 150, null, null, 0, 1, 0), + (271255, 150, 150, null, null, 0, 1, 0), + (271256, 150, 150, null, null, 0, 1, 0), + (271257, 150, 150, null, null, 0, 1, 0), + (271258, 150, 150, null, null, 0, 1, 0), + (271259, 150, 150, null, null, 0, 0, 0), + (271260, 150, 150, null, null, 0, 0, 0), + (271261, 150, 150, null, null, 0, 0, 0), + (271262, 150, 150, null, null, 0, 0, 0), + (271263, 150, 150, null, null, 0, 1, 0), + (271264, 150, 150, null, null, 0, 1, 0), + (271265, 150, 150, null, null, 0, 1, 0), + (271266, 150, 150, null, null, 0, 1, 0), + (271267, 150, 150, null, null, 0, 1, 0), + (271268, 150, 150, null, null, 0, 1, 0), + (271269, 150, 150, null, null, 0, 0, 0), + (271270, 150, 150, null, null, 0, 0, 0), + (271271, 150, 150, null, null, 0, 0, 0), + (271272, 150, 150, null, null, 0, 0, 0), + (271273, 150, 150, null, null, 0, 1, 0), + (271274, 150, 150, null, null, 0, 1, 0), + (271275, 150, 150, null, null, 0, 1, 0), + (271276, 150, 150, null, null, 0, 1, 0), + (271277, 150, 150, null, null, 0, 1, 0), + (271278, 150, 150, null, null, 0, 1, 0), + (271282, 100, 100, null, null, 0, 0, 0), + (271283, 100, 100, null, null, 0, 0, 0), + (271284, 100, 100, null, null, 0, 0, 0), + (271285, 100, 100, null, null, 0, 0, 0), + (271286, 100, 100, null, null, 0, 1, 0), + (271287, 100, 100, null, null, 0, 1, 0), + (271288, 100, 100, null, null, 0, 1, 0), + (271289, 100, 100, null, null, 0, 1, 0), + (271290, 100, 100, null, null, 0, 1, 0), + (271291, 100, 100, null, null, 0, 1, 0), + (271295, 100, 100, null, null, 0, 0, 0), + (271296, 100, 100, null, null, 0, 0, 0), + (271297, 100, 100, null, null, 0, 0, 0), + (271298, 100, 100, null, null, 0, 0, 0), + (271299, 100, 100, null, null, 0, 1, 0), + (271300, 100, 100, null, null, 0, 1, 0), + (271301, 100, 100, null, null, 0, 1, 0), + (271302, 100, 100, null, null, 0, 1, 0), + (271303, 100, 100, null, null, 0, 1, 0), + (271304, 100, 100, null, null, 0, 1, 0), + (271305, 100, 100, null, null, 0, 0, 0), + (271306, 100, 100, null, null, 0, 0, 0), + (271307, 100, 100, null, null, 0, 0, 0), + (271308, 100, 100, null, null, 0, 0, 0), + (271309, 100, 100, null, null, 0, 1, 0), + (271310, 100, 100, null, null, 0, 1, 0), + (271311, 100, 100, null, null, 0, 1, 0), + (271312, 100, 100, null, null, 0, 1, 0), + (271313, 100, 100, null, null, 0, 1, 0), + (271314, 100, 100, null, null, 0, 1, 0), + (271315, 100, 100, null, null, 0, 0, 0), + (271316, 100, 100, null, null, 0, 0, 0), + (271317, 100, 100, null, null, 0, 0, 0), + (271318, 100, 100, null, null, 0, 0, 0), + (271319, 100, 100, null, null, 0, 1, 0), + (271320, 100, 100, null, null, 0, 1, 0), + (271321, 100, 100, null, null, 0, 1, 0), + (271322, 100, 100, null, null, 0, 1, 0), + (271323, 100, 100, null, null, 0, 1, 0), + (271324, 100, 100, null, null, 0, 1, 0), + (271325, 150, 150, null, null, 0, 0, 0), + (271326, 150, 150, null, null, 0, 0, 0), + (271327, 150, 150, null, null, 0, 0, 0), + (271328, 150, 150, null, null, 0, 0, 0), + (271329, 150, 150, null, null, 0, 1, 0), + (271330, 150, 150, null, null, 0, 1, 0), + (271331, 150, 150, null, null, 0, 1, 0), + (271332, 150, 150, null, null, 0, 1, 0), + (271333, 150, 150, null, null, 0, 1, 0), + (271334, 150, 150, null, null, 0, 1, 0), + (271335, 150, 150, null, null, 0, 0, 0), + (271336, 150, 150, null, null, 0, 0, 0), + (271337, 150, 150, null, null, 0, 0, 0), + (271338, 150, 150, null, null, 0, 0, 0), + (271339, 150, 150, null, null, 0, 1, 0), + (271340, 150, 150, null, null, 0, 1, 0), + (271341, 150, 150, null, null, 0, 1, 0), + (271342, 150, 150, null, null, 0, 1, 0), + (271343, 150, 150, null, null, 0, 1, 0), + (271344, 150, 150, null, null, 0, 1, 0), + (271350, 200, 200, null, null, 0, 0, 0), + (271351, 200, 200, null, null, 0, 0, 0), + (271352, 200, 200, null, null, 0, 0, 0), + (271353, 200, 200, null, null, 0, 0, 0), + (271354, 200, 200, null, null, 0, 1, 0), + (271355, 200, 200, null, null, 0, 1, 0), + (271356, 200, 200, null, null, 0, 1, 0), + (271357, 200, 200, null, null, 0, 1, 0), + (271383, 200, 200, null, null, 0, 0, 0), + (271384, 200, 200, null, null, 0, 0, 0), + (271385, 200, 200, null, null, 0, 0, 0), + (271386, 200, 200, null, null, 0, 0, 0), + (271387, 200, 200, null, null, 0, 1, 0), + (271388, 200, 200, null, null, 0, 1, 0), + (271389, 200, 200, null, null, 0, 1, 0), + (271390, 200, 200, null, null, 0, 1, 0), + (271391, 200, 200, null, null, 0, 0, 0), + (271392, 200, 200, null, null, 0, 0, 0), + (271393, 200, 200, null, null, 0, 0, 0), + (271394, 200, 200, null, null, 0, 0, 0), + (271395, 200, 200, null, null, 0, 1, 0), + (271396, 200, 200, null, null, 0, 1, 0), + (271397, 200, 200, null, null, 0, 1, 0), + (271398, 200, 200, null, null, 0, 1, 0), + (271399, 200, 200, null, null, 0, 0, 0), + (271400, 200, 200, null, null, 0, 0, 0), + (271401, 200, 200, null, null, 0, 0, 0), + (271402, 200, 200, null, null, 0, 0, 0), + (271403, 200, 200, null, null, 0, 1, 0), + (271404, 200, 200, null, null, 0, 1, 0), + (271405, 200, 200, null, null, 0, 1, 0), + (271406, 200, 200, null, null, 0, 1, 0), + (271407, 200, 200, null, null, 0, 0, 0), + (271408, 200, 200, null, null, 0, 0, 0), + (271409, 200, 200, null, null, 0, 0, 0), + (271410, 200, 200, null, null, 0, 0, 0), + (271411, 200, 200, null, null, 0, 1, 0), + (271412, 200, 200, null, null, 0, 1, 0), + (271413, 200, 200, null, null, 0, 1, 0), + (271414, 200, 200, null, null, 0, 1, 0), + (271415, 175, 175, null, null, 0, 0, 0), + (271416, 175, 175, null, null, 0, 0, 0), + (271417, 175, 175, null, null, 0, 0, 0), + (271418, 175, 175, null, null, 0, 0, 0), + (271419, 175, 175, null, null, 0, 1, 0), + (271420, 175, 175, null, null, 0, 1, 0), + (271421, 175, 175, null, null, 0, 1, 0), + (271422, 175, 175, null, null, 0, 1, 0), + (271425, 180, 180, null, null, 0, 0, 0), + (271426, 180, 180, null, null, 0, 0, 0), + (271427, 180, 180, null, null, 0, 0, 1), + (271428, 180, 180, null, null, 0, 0, 1), + (271429, 180, 180, null, null, 0, 0, 1), + (271430, 180, 180, null, null, 0, 0, 1), + (271431, 180, 180, null, null, 0, 0, 1), + (271432, 180, 180, null, null, 0, 0, 1), + (271433, 180, 180, null, null, 0, 0, 0), + (271434, 180, 180, null, null, 0, 0, 0), + (271435, 180, 180, null, null, 0, 0, 1), + (271436, 180, 180, null, null, 0, 0, 1), + (271437, 180, 180, null, null, 0, 0, 1), + (271438, 180, 180, null, null, 0, 0, 1), + (271439, 180, 180, null, null, 0, 0, 1), + (271440, 180, 180, null, null, 0, 0, 1), + (271441, 180, 180, null, null, 0, 0, 0), + (271442, 180, 180, null, null, 0, 0, 0), + (271443, 180, 180, null, null, 0, 0, 1), + (271444, 180, 180, null, null, 0, 0, 1), + (271445, 180, 180, null, null, 0, 0, 1), + (271446, 180, 180, null, null, 0, 0, 1), + (271447, 180, 180, null, null, 0, 0, 1), + (271448, 180, 180, null, null, 0, 0, 1), + (271449, 180, 180, null, null, 0, 0, 0), + (271450, 180, 180, null, null, 0, 0, 0), + (271451, 180, 180, null, null, 0, 0, 1), + (271452, 180, 180, null, null, 0, 0, 1), + (271453, 180, 180, null, null, 0, 0, 1), + (271454, 180, 180, null, null, 0, 0, 1), + (271455, 180, 180, null, null, 0, 0, 1), + (271456, 180, 180, null, null, 0, 0, 1), + (271457, 200, 200, null, null, 0, 0, 0), + (271458, 200, 200, null, null, 0, 0, 0), + (271459, 200, 200, null, null, 0, 0, 1), + (271460, 200, 200, null, null, 0, 0, 1), + (271461, 200, 200, null, null, 0, 0, 1), + (271462, 200, 200, null, null, 0, 0, 1), + (271463, 200, 200, null, null, 0, 0, 1), + (271464, 200, 200, null, null, 0, 0, 1), + (271465, 200, 200, null, null, 0, 0, 0), + (271466, 200, 200, null, null, 0, 0, 0), + (271467, 200, 200, null, null, 0, 0, 1), + (271468, 200, 200, null, null, 0, 0, 1), + (271469, 200, 200, null, null, 0, 0, 1), + (271470, 200, 200, null, null, 0, 0, 1), + (271471, 200, 200, null, null, 0, 0, 1), + (271472, 200, 200, null, null, 0, 0, 1), + (271473, 200, 200, null, null, 0, 0, 0), + (271474, 200, 200, null, null, 0, 0, 0), + (271475, 200, 200, null, null, 0, 0, 1), + (271476, 200, 200, null, null, 0, 0, 1), + (271477, 200, 200, null, null, 0, 0, 1), + (271478, 200, 200, null, null, 0, 0, 1), + (271479, 200, 200, null, null, 0, 0, 1), + (271480, 200, 200, null, null, 0, 0, 1), + (271481, 200, 200, null, null, 0, 0, 0), + (271482, 200, 200, null, null, 0, 0, 0), + (271483, 200, 200, null, null, 0, 0, 1), + (271484, 200, 200, null, null, 0, 0, 1), + (271485, 200, 200, null, null, 0, 0, 1), + (271486, 200, 200, null, null, 0, 0, 1), + (271487, 200, 200, null, null, 0, 0, 1), + (271488, 200, 200, null, null, 0, 0, 1), + (271489, 200, 200, null, null, 0, 0, 0), + (271490, 200, 200, null, null, 0, 0, 0), + (271491, 200, 200, null, null, 0, 0, 1), + (271492, 200, 200, null, null, 0, 0, 1), + (271493, 200, 200, null, null, 0, 0, 1), + (271494, 200, 200, null, null, 0, 0, 1), + (271495, 200, 200, null, null, 0, 0, 1), + (271496, 200, 200, null, null, 0, 0, 1), + (271497, 200, 200, null, null, 0, 0, 0), + (271498, 200, 200, null, null, 0, 0, 0), + (271499, 200, 200, null, null, 0, 0, 1), + (271500, 200, 200, null, null, 0, 0, 1), + (271501, 200, 200, null, null, 0, 0, 1), + (271502, 200, 200, null, null, 0, 0, 1), + (271503, 200, 200, null, null, 0, 0, 1), + (271504, 200, 200, null, null, 0, 0, 1), + (271505, 200, 200, null, null, 0, 0, 0), + (271506, 200, 200, null, null, 0, 0, 0), + (271507, 200, 200, null, null, 0, 0, 1), + (271508, 200, 200, null, null, 0, 0, 1), + (271509, 200, 200, null, null, 0, 0, 1), + (271510, 200, 200, null, null, 0, 0, 1), + (271511, 200, 200, null, null, 0, 0, 1), + (271512, 200, 200, null, null, 0, 0, 1), + (271513, 100, 100, null, null, 0, 0, 0), + (271514, 100, 100, null, null, 0, 0, 0), + (271517, 100, 100, null, null, 1, 0, 0), + (271518, 100, 100, null, null, 1, 0, 0), + (271519, 100, 100, null, null, 1, 0, 0), + (271520, 100, 100, null, null, 1, 0, 0), + (271521, 100, 100, null, null, 0, 0, 0), + (271522, 100, 100, null, null, 0, 0, 0), + (271525, 100, 100, null, null, 1, 0, 0), + (271526, 100, 100, null, null, 1, 0, 0), + (271527, 100, 100, null, null, 1, 0, 0), + (271528, 100, 100, null, null, 1, 0, 0), + (271529, 100, 100, null, null, 0, 0, 0), + (271530, 100, 100, null, null, 0, 0, 0), + (271533, 100, 100, null, null, 1, 0, 0), + (271534, 100, 100, null, null, 1, 0, 0), + (271535, 100, 100, null, null, 1, 0, 0), + (271536, 100, 100, null, null, 1, 0, 0), + (271537, 100, 100, null, null, 0, 0, 0), + (271538, 100, 100, null, null, 0, 0, 0), + (271541, 100, 100, null, null, 1, 0, 0), + (271542, 100, 100, null, null, 1, 0, 0), + (271543, 100, 100, null, null, 1, 0, 0), + (271544, 100, 100, null, null, 1, 0, 0), + (271545, 100, 100, null, null, 0, 0, 0), + (271546, 100, 100, null, null, 0, 0, 0), + (271549, 100, 100, null, null, 1, 0, 0), + (271550, 100, 100, null, null, 1, 0, 0), + (271551, 100, 100, null, null, 1, 0, 0), + (271552, 100, 100, null, null, 1, 0, 0), + (271553, 100, 100, null, null, 0, 0, 0), + (271554, 100, 100, null, null, 0, 0, 0), + (271557, 100, 100, null, null, 1, 0, 0), + (271558, 100, 100, null, null, 1, 0, 0), + (271559, 100, 100, null, null, 1, 0, 0), + (271560, 100, 100, null, null, 1, 0, 0), + (271561, 100, 100, null, null, 0, 0, 0), + (271562, 100, 100, null, null, 0, 0, 0), + (271565, 100, 100, null, null, 1, 0, 0), + (271566, 100, 100, null, null, 1, 0, 0), + (271567, 100, 100, null, null, 1, 0, 0), + (271568, 100, 100, null, null, 1, 0, 0), + (271569, 100, 100, null, null, 0, 0, 0), + (271570, 100, 100, null, null, 0, 0, 0), + (271573, 100, 100, null, null, 1, 0, 0), + (271574, 100, 100, null, null, 1, 0, 0), + (271575, 100, 100, null, null, 1, 0, 0), + (271576, 100, 100, null, null, 1, 0, 0), + (271577, 100, 100, null, null, 0, 0, 0), + (271578, 100, 100, null, null, 0, 0, 0), + (271581, 100, 100, null, null, 1, 0, 0), + (271582, 100, 100, null, null, 1, 0, 0), + (271583, 100, 100, null, null, 1, 0, 0), + (271584, 100, 100, null, null, 1, 0, 0), + (271585, 100, 100, null, null, 0, 0, 0), + (271586, 100, 100, null, null, 0, 0, 0), + (271589, 100, 100, null, null, 1, 0, 0), + (271590, 100, 100, null, null, 1, 0, 0), + (271591, 100, 100, null, null, 1, 0, 0), + (271592, 100, 100, null, null, 1, 0, 0), + (271593, 100, 100, null, null, 0, 0, 0), + (271594, 100, 100, null, null, 0, 0, 0), + (271597, 100, 100, null, null, 1, 0, 0), + (271598, 100, 100, null, null, 1, 0, 0), + (271599, 100, 100, null, null, 1, 0, 0), + (271600, 100, 100, null, null, 1, 0, 0), + (271601, 100, 100, null, null, 0, 0, 0), + (271602, 100, 100, null, null, 0, 0, 0), + (271605, 100, 100, null, null, 1, 0, 0), + (271606, 100, 100, null, null, 1, 0, 0), + (271607, 100, 100, null, null, 1, 0, 0), + (271608, 100, 100, null, null, 1, 0, 0), + (271609, 100, 100, null, null, 0, 0, 0), + (271610, 100, 100, null, null, 0, 0, 0), + (271613, 100, 100, null, null, 1, 0, 0), + (271614, 100, 100, null, null, 1, 0, 0), + (271615, 100, 100, null, null, 1, 0, 0), + (271616, 100, 100, null, null, 1, 0, 0), + (271617, 100, 100, null, null, 0, 0, 0), + (271618, 100, 100, null, null, 0, 0, 0), + (271621, 100, 100, null, null, 1, 0, 0), + (271622, 100, 100, null, null, 1, 0, 0), + (271623, 100, 100, null, null, 1, 0, 0), + (271624, 100, 100, null, null, 1, 0, 0), + (271625, 100, 100, null, null, 0, 0, 0), + (271626, 100, 100, null, null, 0, 0, 0), + (271629, 100, 100, null, null, 1, 0, 0), + (271630, 100, 100, null, null, 1, 0, 0), + (271631, 100, 100, null, null, 1, 0, 0), + (271632, 100, 100, null, null, 1, 0, 0), + (271633, 100, 100, null, null, 0, 0, 0), + (271634, 100, 100, null, null, 0, 0, 0), + (271637, 100, 100, null, null, 1, 0, 0), + (271638, 100, 100, null, null, 1, 0, 0), + (271639, 100, 100, null, null, 1, 0, 0), + (271640, 100, 100, null, null, 1, 0, 0), + (271641, 100, 100, null, null, 0, 0, 0), + (271642, 100, 100, null, null, 0, 0, 0), + (271645, 100, 100, null, null, 1, 0, 0), + (271646, 100, 100, null, null, 1, 0, 0), + (271647, 100, 100, null, null, 1, 0, 0), + (271648, 100, 100, null, null, 1, 0, 0), + (271649, 100, 100, null, null, 0, 0, 0), + (271650, 100, 100, null, null, 0, 0, 0), + (271653, 100, 100, null, null, 1, 0, 0), + (271654, 100, 100, null, null, 1, 0, 0), + (271655, 100, 100, null, null, 1, 0, 0), + (271656, 100, 100, null, null, 1, 0, 0), + (271657, 100, 100, null, null, 0, 0, 0), + (271658, 100, 100, null, null, 0, 0, 0), + (271661, 100, 100, null, null, 1, 0, 0), + (271662, 100, 100, null, null, 1, 0, 0), + (271663, 100, 100, null, null, 1, 0, 0), + (271664, 100, 100, null, null, 1, 0, 0), + (271665, 100, 100, null, null, 0, 0, 0), + (271666, 100, 100, null, null, 0, 0, 0), + (271669, 100, 100, null, null, 1, 0, 0), + (271670, 100, 100, null, null, 1, 0, 0), + (271671, 100, 100, null, null, 1, 0, 0), + (271672, 100, 100, null, null, 1, 0, 0), + (271673, 100, 100, null, null, 0, 0, 0), + (271674, 100, 100, null, null, 0, 0, 0), + (271677, 100, 100, null, null, 1, 0, 0), + (271678, 100, 100, null, null, 1, 0, 0), + (271679, 100, 100, null, null, 1, 0, 0), + (271680, 100, 100, null, null, 1, 0, 0), + (271687, 150, 150, null, null, 1, 0, 0), + (271688, 150, 150, null, null, 1, 0, 0), + (271715, 150, 150, null, null, 0, 0, 0), + (271716, 150, 150, null, null, 0, 0, 0), + (271719, 150, 150, null, null, 1, 0, 0), + (271720, 150, 150, null, null, 1, 0, 0), + (271721, 150, 150, null, null, 0, 0, 0), + (271722, 150, 150, null, null, 0, 0, 0), + (271725, 150, 150, null, null, 1, 0, 0), + (271726, 150, 150, null, null, 1, 0, 0), + (271727, 150, 150, null, null, 1, 0, 0), + (271728, 150, 150, null, null, 1, 0, 0), + (271729, 150, 150, null, null, 0, 0, 0), + (271730, 150, 150, null, null, 0, 0, 0), + (271733, 150, 150, null, null, 1, 0, 0), + (271734, 150, 150, null, null, 1, 0, 0), + (271735, 150, 150, null, null, 1, 0, 0), + (271736, 150, 150, null, null, 1, 0, 0), + (271737, 150, 150, null, null, 0, 0, 0), + (271738, 150, 150, null, null, 0, 0, 0), + (271741, 150, 150, null, null, 1, 0, 0), + (271742, 150, 150, null, null, 1, 0, 0), + (271743, 150, 150, null, null, 1, 0, 0), + (271744, 150, 150, null, null, 1, 0, 0), + (271745, 150, 150, null, null, 0, 0, 0), + (271746, 150, 150, null, null, 0, 0, 0), + (271749, 150, 150, null, null, 1, 0, 0), + (271750, 150, 150, null, null, 1, 0, 0), + (271751, 150, 150, null, null, 1, 0, 0), + (271752, 150, 150, null, null, 1, 0, 0), + (271753, 150, 150, null, null, 0, 0, 0), + (271754, 150, 150, null, null, 0, 0, 0), + (271757, 150, 150, null, null, 1, 0, 0), + (271758, 150, 150, null, null, 1, 0, 0), + (271759, 150, 150, null, null, 1, 0, 0), + (271760, 150, 150, null, null, 1, 0, 0), + (271805, 150, 150, null, null, 0, 0, 0), + (271806, 150, 150, null, null, 0, 0, 0), + (271809, 150, 150, null, null, 1, 0, 0), + (271810, 150, 150, null, null, 1, 0, 0), + (271811, 150, 150, null, null, 1, 0, 0), + (271812, 150, 150, null, null, 1, 0, 0), + (271814, 150, 150, null, null, 0, 0, 0), + (271815, 150, 150, null, null, 0, 0, 0), + (271818, 150, 150, null, null, 1, 0, 0), + (271819, 150, 150, null, null, 1, 0, 0), + (271820, 150, 150, null, null, 1, 0, 0), + (271821, 150, 150, null, null, 1, 0, 0), + (271822, 150, 150, null, null, 0, 0, 0), + (271823, 150, 150, null, null, 0, 0, 0), + (271826, 150, 150, null, null, 1, 0, 0), + (271827, 150, 150, null, null, 1, 0, 0), + (271828, 150, 150, null, null, 1, 0, 0), + (271829, 150, 150, null, null, 1, 0, 0), + (271830, 150, 150, null, null, 0, 0, 0), + (271831, 150, 150, null, null, 0, 0, 0), + (271834, 150, 150, null, null, 1, 0, 0), + (271835, 150, 150, null, null, 1, 0, 0), + (271836, 150, 150, null, null, 1, 0, 0), + (271837, 150, 150, null, null, 1, 0, 0), + (271838, 150, 150, null, null, 0, 0, 0), + (271839, 150, 150, null, null, 0, 0, 0), + (271842, 150, 150, null, null, 1, 0, 0), + (271843, 150, 150, null, null, 1, 0, 0), + (271844, 150, 150, null, null, 1, 0, 0), + (271845, 150, 150, null, null, 1, 0, 0), + (271847, 220, 220, null, null, 0, 0, 0), + (271848, 220, 220, null, null, 0, 0, 0), + (271851, 220, 220, null, null, 1, 0, 0), + (271852, 220, 220, null, null, 1, 0, 0), + (271853, 220, 220, null, null, 1, 0, 0), + (271854, 220, 220, null, null, 1, 0, 0), + (271856, 220, 220, null, null, 0, 0, 0), + (271857, 220, 220, null, null, 0, 0, 0), + (271860, 220, 220, null, null, 1, 0, 0), + (271861, 220, 220, null, null, 1, 0, 0), + (271862, 220, 220, null, null, 1, 0, 0), + (271863, 220, 220, null, null, 1, 0, 0), + (271864, 220, 220, null, null, 0, 0, 0), + (271865, 220, 220, null, null, 0, 0, 0), + (271868, 220, 220, null, null, 1, 0, 0), + (271869, 220, 220, null, null, 1, 0, 0), + (271870, 220, 220, null, null, 1, 0, 0), + (271871, 220, 220, null, null, 1, 0, 0), + (271872, 220, 220, null, null, 0, 0, 0), + (271873, 220, 220, null, null, 0, 0, 0), + (271876, 220, 220, null, null, 1, 0, 0), + (271877, 220, 220, null, null, 1, 0, 0), + (271878, 220, 220, null, null, 1, 0, 0), + (271879, 220, 220, null, null, 1, 0, 0), + (271911, 120, 120, null, 4000, 0, 0, 0), + (271912, 120, 120, null, 4000, 0, 0, 0), + (271915, 120, 120, null, 4000, 0, 0, 0), + (271916, 120, 120, null, 4000, 0, 0, 0), + (271917, 120, 120, null, 4000, 0, 0, 0), + (271918, 120, 120, null, 4000, 0, 0, 0), + (271919, 120, 120, null, 4000, 0, 0, 0), + (271920, 120, 120, null, 4000, 0, 0, 0), + (271923, 120, 120, null, 4000, 0, 0, 0), + (271924, 120, 120, null, 4000, 0, 0, 0), + (271925, 120, 120, null, 4000, 0, 0, 0), + (271926, 120, 120, null, 4000, 0, 0, 0), + (271927, 120, 120, null, 4000, 0, 0, 0), + (271928, 120, 120, null, 4000, 0, 0, 0), + (271931, 120, 120, null, 4000, 0, 0, 0), + (271932, 120, 120, null, 4000, 0, 0, 0), + (271933, 120, 120, null, 4000, 0, 0, 0), + (271934, 120, 120, null, 4000, 0, 0, 0), + (271935, 120, 120, null, 4000, 0, 0, 0), + (271936, 120, 120, null, 4000, 0, 0, 0), + (271939, 120, 120, null, 4000, 0, 0, 0), + (271940, 120, 120, null, 4000, 0, 0, 0), + (271941, 120, 120, null, 4000, 0, 0, 0), + (271942, 120, 120, null, 4000, 0, 0, 0), + (271943, 120, 120, null, 4000, 0, 0, 0), + (271944, 120, 120, null, 4000, 0, 0, 0), + (271947, 120, 120, null, 4000, 0, 0, 0), + (271948, 120, 120, null, 4000, 0, 0, 0), + (271949, 120, 120, null, 4000, 0, 0, 0), + (271950, 120, 120, null, 4000, 0, 0, 0), + (271951, 120, 120, null, 4000, 0, 0, 0), + (271952, 120, 120, null, 4000, 0, 0, 0), + (271955, 120, 120, null, 4000, 0, 0, 0), + (271956, 120, 120, null, 4000, 0, 0, 0), + (271957, 120, 120, null, 4000, 0, 0, 0), + (271958, 120, 120, null, 4000, 0, 0, 0), + (271959, 120, 120, null, 2500, 0, 0, 0), + (271960, 120, 120, null, 2500, 0, 0, 0), + (271963, 120, 120, null, 2500, 0, 0, 0), + (271964, 120, 120, null, 2500, 0, 0, 0), + (271965, 120, 120, null, 2500, 0, 0, 0), + (271966, 120, 120, null, 2500, 0, 0, 0), + (271967, 120, 120, null, 2500, 0, 0, 0), + (271968, 120, 120, null, 2500, 0, 0, 0), + (271971, 120, 120, null, 2500, 0, 0, 0), + (271972, 120, 120, null, 2500, 0, 0, 0), + (271973, 120, 120, null, 2500, 0, 0, 0), + (271974, 120, 120, null, 2500, 0, 0, 0), + (271975, 150, 150, null, 4000, 0, 0, 0), + (271976, 150, 150, null, 4000, 0, 0, 0), + (271979, 150, 150, null, 4000, 1, 0, 0), + (271980, 150, 150, null, 4000, 1, 0, 0), + (271981, 150, 150, null, 4000, 1, 0, 0), + (271982, 150, 150, null, 4000, 1, 0, 0), + (271983, 150, 150, null, 4000, 1, 0, 0), + (271984, 150, 150, null, 4000, 1, 0, 0), + (271987, 150, 150, null, 4000, 0, 0, 0), + (271988, 150, 150, null, 4000, 0, 0, 0), + (271991, 150, 150, null, 4000, 1, 0, 0), + (271992, 150, 150, null, 4000, 1, 0, 0), + (271993, 150, 150, null, 4000, 1, 0, 0), + (271994, 150, 150, null, 4000, 1, 0, 0), + (271995, 150, 150, null, 4000, 1, 0, 0), + (271996, 150, 150, null, 4000, 1, 0, 0), + (271997, 150, 150, null, 4000, 0, 0, 0), + (271998, 150, 150, null, 4000, 0, 0, 0), + (272001, 150, 150, null, 4000, 1, 0, 0), + (272002, 150, 150, null, 4000, 1, 0, 0), + (272003, 150, 150, null, 4000, 1, 0, 0), + (272004, 150, 150, null, 4000, 1, 0, 0), + (272005, 150, 150, null, 4000, 1, 0, 0), + (272006, 150, 150, null, 4000, 1, 0, 0), + (272007, 100, 100, null, 2500, 0, 0, 0), + (272008, 100, 100, null, 2500, 0, 0, 0), + (272011, 100, 100, null, 2500, 1, 0, 0), + (272012, 100, 100, null, 2500, 1, 0, 0), + (272013, 100, 100, null, 2500, 1, 0, 0), + (272014, 100, 100, null, 2500, 1, 0, 0), + (272015, 100, 100, null, 2500, 1, 0, 0), + (272016, 100, 100, null, 2500, 1, 0, 0), + (272017, 100, 100, null, 2500, 0, 0, 0), + (272018, 100, 100, null, 2500, 0, 0, 0), + (272021, 100, 100, null, 2500, 1, 0, 0), + (272022, 100, 100, null, 2500, 1, 0, 0), + (272023, 100, 100, null, 2500, 1, 0, 0), + (272024, 100, 100, null, 2500, 1, 0, 0), + (272025, 100, 100, null, 2500, 1, 0, 0), + (272026, 100, 100, null, 2500, 1, 0, 0), + (272027, 100, 100, null, 2500, 0, 0, 0), + (272028, 100, 100, null, 2500, 0, 0, 0), + (272031, 100, 100, null, 2500, 1, 0, 0), + (272032, 100, 100, null, 2500, 1, 0, 0), + (272033, 100, 100, null, 2500, 1, 0, 0), + (272034, 100, 100, null, 2500, 1, 0, 0), + (272035, 100, 100, null, 2500, 1, 0, 0), + (272036, 100, 100, null, 2500, 1, 0, 0), + (272037, 180, 180, 4500, 4000, 0, 0, 0), + (272038, 180, 180, 4500, 4000, 0, 0, 0), + (272039, 180, 180, 4500, 4000, 0, 0, 0), + (272040, 180, 180, 4500, 4000, 0, 0, 0), + (272041, 180, 180, 4500, 4000, 0, 0, 0), + (272042, 180, 180, 4500, 4000, 0, 0, 0), + (272043, 180, 180, 4500, 4000, 0, 0, 0), + (272044, 180, 180, 4500, 4000, 0, 0, 0), + (272045, 180, 180, 4500, 4000, 0, 0, 0), + (272046, 180, 180, 4500, 4000, 0, 0, 0), + (272050, 180, 180, 4500, 4000, 0, 0, 0), + (272051, 180, 180, 4500, 4000, 0, 0, 0), + (272052, 180, 180, 4500, 4000, 0, 0, 0), + (272053, 180, 180, 4500, 4000, 0, 0, 0), + (272054, 180, 180, 4500, 4000, 0, 0, 0), + (272055, 180, 180, 4500, 4000, 0, 0, 0), + (272056, 180, 180, 4500, 4000, 0, 0, 0), + (272057, 180, 180, 4500, 4000, 0, 0, 0), + (272058, 180, 180, 4500, 4000, 0, 0, 0), + (272059, 180, 180, 4500, 4000, 0, 0, 0), + (272060, 180, 180, 4500, 4000, 0, 0, 0), + (272061, 180, 180, 4500, 4000, 0, 0, 0), + (272062, 180, 180, 4500, 4000, 0, 0, 0), + (272063, 180, 180, 4500, 4000, 0, 0, 0), + (272064, 180, 180, 4500, 4000, 0, 0, 0), + (272065, 180, 180, 4500, 4000, 0, 0, 0), + (272066, 180, 180, 4500, 4000, 0, 0, 0), + (272067, 180, 180, 4500, 4000, 0, 0, 0), + (272068, 180, 180, 4500, 4000, 0, 0, 0), + (272069, 180, 180, 4500, 4000, 0, 0, 0), + (272070, 180, 180, 4500, 4000, 0, 0, 0), + (272071, 180, 180, 4500, 4000, 0, 0, 0), + (272072, 180, 180, 4500, 4000, 0, 0, 0), + (272073, 180, 180, 4500, 4000, 0, 0, 0), + (272074, 180, 180, 4500, 4000, 0, 0, 0), + (272075, 180, 180, 4500, 4000, 0, 0, 0), + (272076, 180, 180, 4500, 4000, 0, 0, 0), + (272077, 180, 180, 4500, 4000, 0, 0, 0), + (272078, 180, 180, 4500, 4000, 0, 0, 0), + (272079, 180, 180, 4500, 4000, 0, 0, 0), + (272080, 180, 180, 4500, 4000, 0, 0, 0), + (272081, 180, 180, 4500, 4000, 0, 0, 0), + (272082, 180, 180, 4500, 4000, 0, 0, 0), + (272083, 180, 180, 4500, 4000, 0, 0, 0), + (272084, 180, 180, 4500, 4000, 0, 0, 0), + (272085, 180, 180, 4500, 4000, 0, 0, 0), + (272086, 180, 180, 4500, 4000, 0, 0, 0), + (272087, 180, 180, 4500, 4000, 0, 0, 0), + (272088, 180, 180, 4500, 4000, 0, 0, 0), + (272089, 180, 180, 4500, 4000, 0, 0, 0), + (272090, 180, 180, 4500, 4000, 0, 0, 0), + (272091, 180, 180, 4500, 4000, 0, 0, 0), + (272092, 180, 180, 4500, 4000, 0, 0, 0), + (272093, 180, 180, 4500, 4000, 0, 0, 0), + (272094, 180, 180, 4500, 4000, 0, 0, 0), + (272095, 180, 180, 4500, 4000, 0, 0, 0), + (272096, 180, 180, 4500, 4000, 0, 0, 0), + (272097, 180, 180, 4500, 4000, 0, 0, 0), + (272098, 180, 180, 4500, 4000, 0, 0, 0), + (272099, 180, 180, 4500, 4000, 0, 0, 0), + (272100, 180, 180, 4500, 4000, 0, 0, 0), + (272101, 180, 180, 4500, 4000, 0, 0, 0), + (272102, 180, 180, 4500, 4000, 0, 0, 0), + (272103, 180, 180, 4500, 4000, 0, 0, 0), + (272104, 180, 180, 4500, 4000, 0, 0, 0), + (272105, 180, 180, 4500, 4000, 0, 0, 0), + (272106, 180, 180, 4500, 4000, 0, 0, 0), + (272107, 180, 180, 4500, 4000, 0, 0, 0), + (272108, 180, 180, 4500, 4000, 0, 0, 0), + (272109, 180, 180, 4500, 4000, 0, 0, 0), + (272110, 180, 180, 4500, 4000, 0, 0, 0), + (272111, 180, 180, 4500, 4000, 0, 0, 0), + (272112, 180, 180, 4500, 4000, 0, 0, 0), + (272113, 180, 180, 4500, 4000, 0, 0, 0), + (272114, 180, 180, 4500, 4000, 0, 0, 0), + (272115, 180, 180, 4500, 4000, 0, 0, 0), + (272116, 180, 180, 4500, 4000, 0, 0, 0), + (272117, 180, 180, 4500, 4000, 0, 0, 0), + (272118, 180, 180, 4500, 4000, 0, 0, 0), + (272119, 180, 180, 4500, 4000, 0, 0, 0), + (272120, 180, 180, 4500, 4000, 0, 0, 0), + (272121, 180, 180, 4500, 4000, 0, 0, 0), + (272122, 180, 180, 4500, 4000, 0, 0, 0), + (272123, 180, 180, 4500, 4000, 0, 0, 0), + (272124, 180, 180, 4500, 4000, 0, 0, 0), + (272125, 180, 180, 4500, 4000, 0, 0, 0), + (272126, 180, 180, 4500, 4000, 0, 0, 0), + (272127, 180, 180, 4500, 4000, 0, 0, 0), + (272128, 180, 180, 4500, 4000, 0, 0, 0), + (272129, 180, 180, 4500, 4000, 0, 0, 0), + (272130, 180, 180, 4500, 4000, 0, 0, 0), + (272131, 180, 180, 4500, 4000, 0, 0, 0), + (272132, 180, 180, 4500, 4000, 0, 0, 0), + (272133, 180, 180, 4500, 4000, 0, 0, 0), + (272134, 180, 180, 4500, 4000, 0, 0, 0), + (272135, 180, 180, 4500, 4000, 0, 0, 0), + (272136, 180, 180, 4500, 4000, 0, 0, 0), + (272137, 180, 180, 4500, 4000, 0, 0, 0), + (272138, 180, 180, 4500, 4000, 0, 0, 0), + (272139, 180, 180, 4500, 4000, 0, 0, 0), + (272140, 180, 180, 4500, 4000, 0, 0, 0), + (272141, 180, 180, 4500, 4000, 0, 0, 0), + (272142, 180, 180, 4500, 4000, 0, 0, 0), + (272143, 180, 180, 4500, 4000, 0, 0, 0), + (272144, 180, 180, 4500, 4000, 0, 0, 0), + (272145, 180, 180, 4500, 4000, 0, 0, 0), + (272146, 180, 180, 4500, 4000, 0, 0, 0), + (272147, 180, 180, 4500, 4000, 0, 0, 0), + (272148, 180, 180, 4500, 4000, 0, 0, 0), + (272149, 180, 180, 4500, 4000, 0, 0, 0), + (272150, 180, 180, 4500, 4000, 0, 0, 0), + (272151, 180, 180, 4500, 4000, 0, 0, 0), + (272152, 180, 180, 4500, 4000, 0, 0, 0), + (272153, 180, 180, 4500, 4000, 0, 0, 0), + (272154, 180, 180, 4500, 4000, 0, 0, 0), + (272155, 180, 180, 4500, 4000, 0, 0, 0), + (272156, 180, 180, 4500, 4000, 0, 0, 0), + (272157, 180, 180, 4500, 4000, 0, 0, 0), + (272158, 180, 180, 4500, 4000, 0, 0, 0), + (272159, 180, 180, 4500, 4000, 0, 0, 0), + (272160, 180, 180, 4500, 4000, 0, 0, 0), + (272161, 180, 180, 4500, 4000, 0, 0, 0), + (272162, 180, 180, 4500, 4000, 0, 0, 0), + (272163, 180, 180, 4500, 4000, 0, 0, 0), + (272164, 180, 180, 4500, 4000, 0, 0, 0), + (272165, 180, 180, 4500, 4000, 0, 0, 0), + (272166, 180, 180, 4500, 4000, 0, 0, 0), + (272167, 180, 180, 4500, 4000, 0, 0, 0), + (272168, 180, 180, 4500, 4000, 0, 0, 0), + (272169, 180, 180, 4500, 4000, 0, 0, 0), + (272170, 180, 180, 4500, 4000, 0, 0, 0), + (272171, 180, 180, 4500, 4000, 0, 0, 0), + (272172, 180, 180, 4500, 4000, 0, 0, 0), + (272173, 180, 180, 4500, 4000, 0, 0, 0), + (272174, 180, 180, 4500, 4000, 0, 0, 0), + (272175, 180, 180, 4500, 4000, 0, 0, 0), + (272176, 180, 180, 4500, 4000, 0, 0, 0), + (272177, 180, 180, 4500, 4000, 0, 0, 0), + (272178, 180, 180, 4500, 4000, 0, 0, 0), + (272179, 180, 180, 4500, 4000, 0, 0, 0), + (272180, 180, 180, 4500, 4000, 0, 0, 0), + (272181, 180, 180, 4500, 4000, 0, 0, 0), + (272182, 180, 180, 4500, 4000, 0, 0, 0), + (272183, 180, 180, 4500, 4000, 0, 0, 0), + (272184, 180, 180, 4500, 4000, 0, 0, 0), + (272185, 180, 180, 4500, 4000, 0, 0, 0), + (272186, 180, 180, 4500, 4000, 0, 0, 0), + (272187, 180, 180, 4500, 4000, 0, 0, 0), + (272188, 180, 180, 4500, 4000, 0, 0, 0), + (272189, 180, 180, 4500, 4000, 0, 0, 0), + (272190, 180, 180, 4500, 4000, 0, 0, 0), + (272191, 180, 180, 4500, 4000, 0, 0, 0), + (272192, 180, 180, 4500, 4000, 0, 0, 0), + (272193, 180, 180, 4500, 4000, 0, 0, 0), + (272194, 180, 180, 4500, 4000, 0, 0, 0), + (272195, 180, 180, 4500, 4000, 0, 0, 0), + (272196, 180, 180, 4500, 4000, 0, 0, 0), + (272197, 180, 180, 4500, 4000, 0, 0, 0), + (272198, 180, 180, 4500, 4000, 0, 0, 0), + (272199, 180, 180, 4500, 4000, 0, 0, 0), + (272200, 180, 180, 4500, 4000, 0, 0, 0), + (272201, 180, 180, 4500, 4000, 0, 0, 0), + (272202, 180, 180, 4500, 4000, 0, 0, 0), + (272203, 180, 180, 4500, 4000, 0, 0, 0), + (272204, 180, 180, 4500, 4000, 0, 0, 0), + (272205, 180, 180, 4500, 4000, 0, 0, 0), + (272206, 180, 180, 4500, 4000, 0, 0, 0), + (272207, 180, 180, 4500, 4000, 0, 0, 0), + (272208, 180, 180, 4500, 4000, 0, 0, 0), + (272209, 180, 180, 4500, 4000, 0, 0, 0), + (272210, 180, 180, 4500, 4000, 0, 0, 0), + (272211, 180, 180, 4500, 4000, 0, 0, 0), + (272212, 180, 180, 4500, 4000, 0, 0, 0), + (272213, 180, 180, 4500, 4000, 0, 0, 0), + (272214, 180, 180, 4500, 4000, 0, 0, 0), + (272215, 180, 180, 4500, 4000, 0, 0, 0), + (272216, 180, 180, 4500, 4000, 0, 0, 0), + (272217, 180, 180, 4500, 4000, 0, 0, 0), + (272218, 180, 180, 4500, 4000, 0, 0, 0), + (272219, 180, 180, 4500, 4000, 0, 0, 0), + (272220, 180, 180, 4500, 4000, 0, 0, 0), + (272221, 180, 180, 4500, 4000, 0, 0, 0), + (272222, 180, 180, 4500, 4000, 0, 0, 0), + (272223, 180, 180, 4500, 4000, 0, 0, 0), + (272224, 180, 180, 4500, 4000, 0, 0, 0), + (272225, 180, 180, 4500, 4000, 0, 0, 0), + (272226, 180, 180, 4500, 4000, 0, 0, 0), + (272227, 180, 180, 4500, 4000, 0, 0, 0), + (272228, 180, 180, 4500, 4000, 0, 0, 0), + (272229, 180, 180, 4500, 4000, 0, 0, 0), + (272230, 180, 180, 4500, 4000, 0, 0, 0), + (272231, 180, 180, 4500, 4000, 0, 0, 0), + (272232, 180, 180, 4500, 4000, 0, 0, 0), + (272233, 180, 180, 4500, 4000, 0, 0, 0), + (272234, 180, 180, 4500, 4000, 0, 0, 0), + (272235, 180, 180, 4500, 4000, 0, 0, 0), + (272236, 180, 180, 4500, 4000, 0, 0, 0), + (272237, 180, 180, 4500, 4000, 0, 0, 0), + (272238, 180, 180, 4500, 4000, 0, 0, 0), + (272239, 180, 180, 4500, 4000, 0, 0, 0), + (272240, 180, 180, 4500, 4000, 0, 0, 0), + (272241, 180, 180, 4500, 4000, 0, 0, 0), + (272242, 180, 180, 4500, 4000, 0, 0, 0), + (272243, 180, 180, 4500, 4000, 0, 0, 0), + (272244, 180, 180, 4500, 4000, 0, 0, 0), + (272245, 180, 180, 4500, 4000, 0, 0, 0), + (272246, 180, 180, 4500, 4000, 0, 0, 0), + (272247, 180, 180, 4500, 4000, 0, 0, 0), + (272248, 180, 180, 4500, 4000, 0, 0, 0), + (272249, 180, 180, 4500, 4000, 0, 0, 0), + (273034, 150, 100, null, null, 0, 0, 0), + (273306, 240, 220, null, null, 0, 1, 0), + (273377, 150, 300, null, null, 0, 0, 0), + (273473, 150, 100, null, null, 0, 0, 0), + (273474, 150, 100, null, null, 0, 0, 0), + (273542, 1000, 100, null, null, 0, 0, 0), + (273580, 400, 500, null, null, 0, 0, 0), + (273581, 400, 500, null, null, 0, 0, 0), + (274116, 150, 100, null, null, 0, 0, 0), + (274118, 150, 100, null, null, 0, 0, 0), + (274120, 150, 100, null, null, 0, 0, 0), + (274172, 150, 100, null, null, 0, 0, 0), + (274175, 150, 100, null, null, 0, 0, 0), + (274313, 200, 300, null, null, 0, 0, 0), + (274320, 200, 300, null, null, 0, 0, 0), + (274557, 120, 120, null, 4000, 0, 0, 0), + (274559, 120, 120, null, 6000, 0, 0, 0), + (274560, 120, 120, null, 5000, 0, 0, 0), + (274955, 150, 300, null, null, 0, 1, 0), + (274973, 100, 100, null, 4000, 0, 0, 0), + (274974, 100, 150, null, null, 0, 1, 0), + (274977, 100, 100, null, 5000, 1, 0, 0), + (274978, 100, 125, null, null, 0, 1, 0), + (274979, 100, 100, null, 3500, 1, 0, 0), + (275019, 150, 150, null, null, 0, 0, 0), + (275083, 250, 250, null, null, 0, 0, 0), + (275134, 140, 140, null, null, 0, 1, 0), + (275241, 150, 100, null, null, 0, 0, 0), + (275334, 50, 50, null, null, 0, 0, 0), + (275416, 140, 140, null, null, 0, 1, 0), + (275417, 140, 140, null, null, 0, 1, 0), + (275418, 140, 140, null, null, 0, 1, 0), + (275419, 140, 140, null, null, 0, 1, 0), + (275420, 140, 140, null, null, 0, 1, 0), + (275421, 140, 140, null, null, 0, 1, 0), + (275422, 140, 140, null, null, 0, 1, 0), + (275510, 300, 100, null, null, 0, 0, 0), + (275607, 100, 100, null, null, 1, 0, 0), + (275848, 150, 225, null, null, 0, 0, 0), + (275851, 100, 300, null, null, 0, 0, 0), + (277477, 500, 100, null, null, 0, 0, 0), + (277894, 150, 100, null, null, 0, 0, 0), + (279469, 150, 150, null, null, 1, 0, 0), + (279530, 150, 100, null, null, 0, 0, 0), + (279531, 150, 100, null, null, 0, 0, 0), + (280460, 100, 100, null, null, 1, 0, 0), + (280717, 140, 140, null, null, 0, 1, 0), + (280718, 130, 130, null, null, 0, 1, 0), + (280719, 100, 100, null, null, 0, 1, 0), + (280720, 140, 140, null, null, 0, 1, 0), + (280721, 140, 140, null, null, 0, 1, 0), + (280722, 140, 140, 3000, 1200, 0, 0, 0), + (280723, 160, 160, null, null, 1, 0, 1), + (280724, 120, 120, 6000, 1200, 0, 0, 0), + (280725, 150, 150, null, null, 1, 0, 0), + (280726, 130, 130, null, null, 1, 0, 0), + (280727, 120, 120, null, null, 1, 0, 0), + (280728, 120, 120, null, 4000, 1, 0, 0), + (280729, 100, 100, null, null, 0, 1, 0), + (280730, 100, 100, null, null, 0, 1, 0), + (281185, 100, 100, null, null, 1, 0, 1), + (281486, 150, 100, null, null, 0, 0, 1), + (281503, 140, 140, null, null, 0, 1, 0), + (281504, 140, 140, null, null, 0, 1, 0), + (281505, 120, 120, null, 4000, 1, 0, 0), + (281506, 120, 160, null, null, 0, 0, 1), + (281507, 120, 120, null, 1200, 1, 0, 0), + (281787, 150, 100, null, null, 0, 0, 0), + (281788, 150, 100, null, null, 0, 0, 0), + (281789, 150, 100, null, null, 0, 0, 0), + (281790, 150, 100, null, null, 0, 0, 0), + (281791, 150, 100, null, null, 0, 0, 0), + (281792, 150, 100, null, null, 0, 0, 0), + (281793, 150, 100, null, null, 0, 0, 0), + (281962, 150, 150, null, null, 0, 1, 0), + (282065, 250, 250, null, null, 0, 0, 0), + (282066, 250, 250, null, null, 0, 0, 0), + (282067, 250, 250, null, null, 0, 0, 0), + (282068, 250, 250, null, null, 0, 0, 0), + (282069, 250, 250, null, null, 0, 0, 0), + (282070, 250, 250, null, null, 0, 0, 0), + (282075, 250, 250, null, null, 0, 0, 0), + (282142, 0, 0, null, null, 0, 0, 0), + (283379, 120, 120, 6000, 1200, 0, 0, 0), + (283380, 120, 120, null, 1200, 1, 0, 0), + (283783, 0, 0, null, null, 0, 0, 0), + (283859, 250, 250, null, null, 0, 0, 0), + (283860, 150, 100, null, null, 0, 0, 0), + (283861, 150, 100, null, null, 0, 0, 0), + (283862, 150, 100, null, null, 0, 0, 0), + (283868, 200, 300, null, null, 0, 0, 0), + (283884, 150, 100, null, null, 0, 0, 0), + (283929, 250, 250, null, null, 0, 0, 0), + (283976, 250, 250, null, null, 0, 0, 0), + (284043, 150, 100, null, null, 0, 0, 1), + (284150, 150, 100, null, null, 0, 0, 0), + (284185, 150, 100, null, null, 0, 0, 0), + (284457, 120, 120, null, 4000, 1, 0, 0), + (284458, 120, 120, null, 4000, 1, 0, 0), + (284651, 150, 100, null, null, 0, 0, 0), + (284657, 150, 100, null, null, 0, 0, 0), + (284658, 150, 100, null, null, 0, 0, 0), + (284659, 150, 100, null, null, 0, 0, 0), + (284713, 100, 100, null, null, 0, 0, 0), + (284715, 100, 400, null, null, 0, 0, 0), + (284716, 100, 400, null, null, 0, 0, 0), + (284717, 150, 100, null, null, 0, 0, 0), + (284718, 150, 100, null, null, 0, 0, 0), + (284719, 150, 100, null, null, 0, 0, 0), + (284851, 10, 10, null, null, 0, 0, 0), + (284858, 150, 100, null, null, 0, 0, 0), + (285501, 200, 200, null, null, 0, 0, 0), + (286233, 1000, 1500, null, null, 0, 0, 0), + (286234, 1000, 1500, null, null, 0, 0, 0), + (287172, 150, 100, null, null, 0, 0, 0), + (288207, 150, 100, null, null, 0, 0, 0), + (288283, 120, 120, 3000, 3500, 0, 0, 0), + (288284, 150, 150, null, null, 1, 0, 1), + (288285, 150, 150, null, null, 0, 1, 0), + (288286, 140, 140, null, null, 1, 0, 0), + (288287, 130, 130, null, null, 0, 1, 0), + (288288, 130, 130, null, null, 0, 1, 0), + (288289, 150, 150, null, null, 1, 0, 0), + (288290, 150, 150, null, null, 0, 1, 0), + (288291, 150, 150, null, null, 0, 0, 0), + (288292, 150, 150, null, null, 0, 1, 0), + (288293, 120, 120, null, 4000, 1, 0, 0), + (288294, 150, 150, null, null, 0, 1, 0), + (288295, 120, 120, 9000, 2750, 0, 0, 0), + (288296, 150, 150, null, null, 1, 0, 0), + (288297, 120, 120, null, 3500, 1, 0, 0), + (288298, 150, 150, null, 3000, 1, 0, 0), + (288318, 150, 100, null, null, 0, 0, 0), + (288326, 150, 100, null, null, 0, 0, 0), + (288327, 150, 100, null, null, 0, 0, 0), + (288328, 150, 100, null, null, 0, 0, 0), + (288329, 150, 100, null, null, 0, 0, 0), + (288330, 150, 100, null, null, 0, 0, 0), + (288331, 150, 100, null, null, 0, 0, 0), + (288340, 150, 100, null, null, 0, 0, 0), + (288347, 150, 100, null, null, 0, 0, 0), + (288348, 150, 100, null, null, 0, 0, 0), + (288471, 100, 100, null, null, 0, 0, 0), + (288488, 200, 300, null, null, 0, 0, 0), + (288658, 150, 150, null, null, 0, 0, 0), + (288659, 150, 150, null, null, 0, 0, 0), + (288660, 150, 150, null, null, 0, 0, 0), + (288661, 150, 150, null, null, 0, 0, 0), + (288662, 150, 150, null, null, 0, 0, 0), + (288663, 150, 150, null, null, 0, 0, 0), + (288664, 150, 150, null, null, 0, 0, 0), + (288665, 150, 150, null, null, 0, 0, 0), + (288666, 150, 150, null, null, 0, 0, 0), + (288667, 150, 150, null, null, 0, 0, 0), + (288668, 150, 150, null, null, 0, 0, 0), + (288669, 150, 150, null, null, 0, 0, 0), + (288670, 150, 150, null, null, 0, 0, 0), + (288671, 150, 150, null, null, 0, 0, 0), + (289461, 200, 100, null, null, 0, 0, 0), + (289475, 250, 250, null, null, 0, 0, 0), + (289491, 250, 250, null, null, 0, 0, 0), + (289501, 500, 100, null, null, 0, 0, 0), + (289527, 500, 100, null, null, 0, 0, 0), + (289565, 150, 100, null, null, 0, 0, 0), + (289566, 150, 100, null, null, 0, 0, 0), + (289570, 150, 100, null, null, 0, 0, 0), + (289571, 150, 100, null, null, 0, 0, 0), + (289588, 100, 400, null, null, 0, 0, 0), + (290100, 250, 250, null, null, 0, 0, 0), + (290152, 50, 50, null, null, 0, 0, 0), + (290170, 50, 50, null, null, 0, 0, 0), + (290171, 50, 50, null, null, 0, 0, 0), + (290182, 50, 50, null, null, 0, 0, 0), + (290183, 50, 50, null, null, 0, 0, 0), + (290184, 50, 50, null, null, 0, 0, 0), + (290185, 50, 50, null, null, 0, 0, 0), + (290186, 50, 50, null, null, 0, 0, 0), + (290187, 50, 50, null, null, 0, 0, 0), + (290188, 50, 50, null, null, 0, 0, 0), + (290189, 50, 50, null, null, 0, 0, 0), + (290190, 50, 50, null, null, 0, 0, 0), + (290191, 50, 50, null, null, 0, 0, 0), + (290193, 50, 50, null, null, 0, 0, 0), + (290575, 10, 100, null, null, 0, 0, 0), + (290576, 10, 100, null, null, 0, 0, 0), + (290577, 10, 100, null, null, 0, 0, 0), + (290578, 10, 100, null, null, 0, 0, 0), + (290937, 50, 50, null, null, 0, 0, 0), + (290971, 160, 160, null, null, 0, 0, 0), + (290987, 250, 250, null, null, 0, 0, 0), + (290996, 250, 250, null, null, 0, 0, 0), + (290997, 250, 250, null, null, 0, 0, 0), + (291226, 10, 100, null, null, 0, 0, 0), + (291227, 10, 100, null, null, 0, 0, 0), + (291228, 10, 100, null, null, 0, 0, 0), + (291579, 100, 100, null, null, 0, 1, 0), + (292598, 10, 100, null, null, 0, 0, 0), + (292599, 10, 100, null, null, 0, 0, 0), + (292600, 10, 100, null, null, 0, 0, 0), + (292925, 100, 100, null, null, 1, 0, 0), + (292940, 100, 100, null, null, 1, 0, 0), + (293236, 100, 200, null, null, 0, 0, 0), + (293290, 150, 100, null, null, 0, 0, 0), + (293291, 150, 100, null, null, 0, 0, 0), + (293324, 150, 100, null, null, 0, 0, 0), + (293325, 150, 100, null, null, 0, 0, 0), + (293356, 10, 100, null, null, 0, 0, 0), + (293357, 10, 100, null, null, 0, 0, 0), + (293358, 10, 100, null, null, 0, 0, 0), + (293914, 140, 160, null, null, 0, 1, 0), + (293993, 150, 150, null, null, 0, 1, 0), + (293995, 150, 150, null, null, 0, 1, 0), + (293996, 150, 150, null, null, 0, 1, 0), + (293997, 250, 250, null, null, 0, 1, 0), + (293999, 250, 250, null, null, 0, 1, 0), + (294000, 250, 250, null, null, 0, 1, 0), + (294001, 250, 250, null, null, 0, 1, 0), + (294023, 100, 100, null, null, 0, 0, 0), + (294046, 150, 100, null, null, 0, 0, 0), + (294048, 150, 100, null, null, 0, 0, 0), + (294192, 150, 100, null, null, 0, 0, 0), + (294413, 150, 100, null, null, 0, 0, 0), + (294438, 150, 100, null, null, 0, 0, 0), + (294443, 100, 100, null, null, 0, 0, 0), + (294445, 50, 50, null, null, 0, 0, 0), + (294521, 150, 100, null, null, 0, 0, 0), + (294562, 100, 400, null, null, 0, 0, 0), + (294563, 100, 400, null, null, 0, 0, 0), + (294564, 100, 400, null, null, 0, 0, 0), + (294565, 100, 400, null, null, 0, 0, 0), + (294566, 100, 400, null, null, 0, 0, 0), + (294669, 150, 100, null, null, 0, 0, 0), + (294702, 140, 160, null, null, 0, 0, 0), + (294892, 150, 100, null, null, 0, 0, 0), + (295198, 150, 100, null, null, 0, 0, 0), + (295199, 150, 100, null, null, 0, 0, 0), + (295200, 150, 100, null, null, 0, 0, 0), + (295201, 150, 100, null, null, 0, 0, 0), + (295202, 150, 100, null, null, 0, 0, 0), + (295203, 150, 100, null, null, 0, 0, 0), + (295204, 150, 100, null, null, 0, 0, 0), + (295205, 150, 100, null, null, 0, 0, 0), + (295206, 150, 100, null, null, 0, 0, 0), + (295207, 150, 100, null, null, 0, 0, 0), + (295208, 150, 100, null, null, 0, 0, 0), + (295209, 150, 100, null, null, 0, 0, 0), + (295210, 150, 100, null, null, 0, 0, 0), + (295211, 150, 100, null, null, 0, 0, 0), + (295212, 150, 100, null, null, 0, 0, 0), + (295213, 150, 100, null, null, 0, 0, 0), + (295214, 150, 100, null, null, 0, 0, 0), + (295215, 150, 100, null, null, 0, 0, 0), + (295216, 150, 100, null, null, 0, 0, 0), + (295217, 150, 100, null, null, 0, 0, 0), + (295218, 150, 100, null, null, 0, 0, 0), + (295219, 150, 100, null, null, 0, 0, 0), + (295220, 150, 100, null, null, 0, 0, 0), + (295221, 150, 100, null, null, 0, 0, 0), + (295222, 150, 100, null, null, 0, 0, 0), + (295338, 100, 100, null, null, 0, 0, 0), + (295340, 100, 100, null, null, 0, 0, 0), + (295343, 100, 400, null, null, 0, 0, 0), + (295344, 100, 400, null, null, 0, 0, 0), + (295345, 100, 400, null, null, 0, 0, 0), + (295394, 100, 400, null, null, 0, 0, 0), + (295416, 100, 100, null, null, 0, 0, 0), + (295417, 100, 100, null, null, 0, 0, 0), + (295418, 100, 100, null, null, 0, 0, 0), + (295419, 100, 100, null, null, 0, 0, 0), + (295603, 100, 100, null, 100, 1, 0, 1), + (295746, 100, 150, null, null, 0, 1, 0), + (295747, 100, 150, null, null, 0, 1, 0), + (295757, 400, 500, null, null, 0, 0, 0), + (296009, 150, 100, null, null, 0, 0, 0), + (296108, 150, 100, null, null, 0, 0, 0), + (296168, 50, 50, null, null, 0, 0, 0), + (296186, 100, 100, null, null, 0, 0, 0), + (296215, 100, 100, null, null, 0, 0, 0), + (296226, 250, 250, null, null, 0, 0, 0), + (296452, 100, 100, null, null, 0, 1, 0), + (296463, 150, 100, null, null, 0, 0, 0), + (296478, 150, 100, null, null, 0, 0, 0), + (296557, 50, 50, null, null, 0, 0, 0), + (296558, 50, 50, null, null, 0, 0, 0), + (296559, 50, 50, null, null, 0, 0, 0), + (296560, 50, 50, null, null, 0, 0, 0), + (296581, 50, 50, null, null, 0, 0, 0), + (296582, 50, 50, null, null, 0, 0, 0), + (296955, 500, 100, null, null, 0, 0, 0), + (297665, 150, 150, null, null, 0, 0, 0), + (297666, 150, 150, null, null, 0, 0, 0), + (297667, 150, 150, null, null, 0, 0, 0), + (297743, 250, 250, null, null, 0, 0, 0), + (300455, 100, 100, null, null, 1, 0, 0), + (300804, 100, 400, null, null, 0, 0, 0), + (301071, 150, 150, null, null, 0, 0, 0), + (301637, 100, 100, null, null, 0, 1, 0), + (301638, 100, 100, null, null, 0, 1, 0), + (301655, 100, 400, null, null, 0, 0, 0), + (301704, 150, 100, null, null, 0, 0, 0), + (301706, 150, 100, null, null, 0, 0, 0), + (301707, 150, 150, null, null, 0, 1, 0), + (301708, 150, 150, null, null, 0, 0, 0), + (301709, 100, 100, null, null, 1, 0, 0), + (301710, 200, 150, null, null, 0, 0, 1), + (301711, 100, 150, 5000, null, 0, 0, 0), + (301712, 100, 100, null, 2500, 0, 0, 0), + (301713, 150, 150, null, null, 1, 0, 0), + (301714, 100, 100, null, null, 0, 1, 0), + (301715, 140, 140, null, null, 0, 1, 0), + (301716, 100, 100, null, null, 0, 1, 0), + (301717, 200, 200, null, null, 0, 0, 0), + (301718, 160, 160, null, null, 1, 0, 1), + (301743, 100, 150, null, null, 0, 1, 0), + (301744, 100, 150, null, null, 0, 1, 0), + (301745, 100, 150, null, null, 0, 1, 0), + (301750, 100, 100, null, null, 1, 0, 0), + (301771, 500, 100, null, null, 0, 0, 0), + (301879, 50, 50, null, null, 0, 0, 0), + (301885, 140, 140, null, null, 0, 0, 0), + (301901, 120, 120, null, 2000, 1, 0, 0), + (301934, 120, 120, null, null, 0, 1, 0), + (301935, 100, 100, null, null, 0, 1, 0), + (302037, 150, 100, null, null, 0, 0, 0), + (302038, 150, 100, null, null, 0, 0, 0), + (302065, 120, 120, null, null, 0, 0, 0), + (302066, 120, 120, null, null, 0, 0, 0), + (302163, 100, 150, null, null, 0, 0, 0), + (302164, 150, 150, null, null, 1, 0, 1), + (302374, 200, 200, null, 1500, 1, 0, 0), + (302458, 1000, 1000, null, null, 0, 0, 0), + (302513, 200, 300, null, null, 0, 0, 0), + (302514, 100, 400, null, null, 0, 0, 0), + (302602, 100, 150, null, null, 0, 0, 0), + (302624, 100, 1000, null, null, 0, 1, 0), + (302841, 150, 150, null, null, 0, 0, 0), + (302933, 180, 180, null, null, 0, 1, 0), + (302934, 170, 170, null, null, 0, 1, 0), + (302935, 160, 160, null, null, 0, 1, 0), + (302936, 180, 180, null, null, 0, 1, 0), + (302938, 160, 160, 3000, 1500, 0, 0, 0), + (302939, 190, 190, null, null, 1, 0, 1), + (302940, 160, 160, 6000, 1200, 0, 0, 0), + (302941, 180, 180, null, null, 1, 0, 0), + (302942, 150, 150, null, null, 1, 0, 0), + (302943, 150, 150, null, null, 1, 0, 0), + (302944, 150, 150, null, 4000, 1, 0, 0), + (302945, 180, 180, null, null, 0, 1, 0), + (302946, 180, 180, null, null, 0, 1, 0), + (302947, 180, 180, null, null, 0, 1, 0), + (302948, 180, 180, null, null, 0, 1, 0), + (302949, 190, 190, null, null, 0, 1, 0), + (302981, 200, 300, null, null, 0, 0, 0), + (302994, 100, 400, null, null, 0, 0, 0), + (302995, 150, 150, null, null, 0, 1, 0), + (303000, 130, 150, 2800, 1500, 0, 0, 0), + (303055, 160, 160, null, null, 0, 0, 0), + (303058, 140, 140, 3000, 3000, 0, 0, 0), + (303059, 120, 120, null, 3000, 0, 0, 0), + (303060, 130, 130, null, 3500, 1, 0, 0), + (303093, 100, 150, null, null, 0, 1, 0), + (303094, 100, 150, null, null, 0, 1, 0), + (303095, 100, 150, null, null, 0, 1, 0), + (303097, 130, 150, 3000, null, 1, 0, 0), + (303113, 150, 100, null, null, 0, 0, 0), + (303114, 150, 100, null, null, 0, 0, 0), + (303115, 150, 100, null, null, 0, 0, 0), + (303116, 150, 100, null, null, 0, 0, 0), + (303117, 150, 100, null, null, 0, 0, 0), + (303118, 150, 100, null, null, 0, 0, 0), + (303142, 100, 400, null, null, 0, 0, 0), + (303176, 100, 100, null, null, 0, 1, 0), + (303188, 1, 1, null, null, 0, 0, 0), + (303189, 1, 1, null, null, 0, 0, 0), + (303192, 1, 1, null, null, 0, 0, 0), + (303285, 150, 150, null, null, 0, 1, 0), + (303319, 100, 100, null, null, 0, 0, 0), + (303322, 115, 200, null, null, 1, 0, 0), + (303403, 150, 150, null, null, 0, 1, 0), + (303404, 150, 150, null, null, 0, 1, 0), + (303405, 150, 150, null, null, 0, 0, 0), + (303406, 150, 150, null, null, 0, 0, 0), + (303407, 100, 100, null, null, 1, 0, 0), + (303408, 100, 100, null, null, 1, 0, 0), + (303409, 200, 150, null, null, 0, 0, 1), + (303410, 200, 150, null, null, 0, 0, 1), + (303411, 100, 150, 5000, null, 0, 0, 0), + (303412, 100, 150, 5000, null, 0, 0, 0), + (303413, 100, 100, null, 2500, 0, 0, 0), + (303414, 100, 100, null, 2500, 0, 0, 0), + (303415, 150, 150, null, null, 1, 0, 0), + (303416, 150, 150, null, null, 1, 0, 0), + (303417, 100, 100, null, null, 0, 1, 0), + (303418, 100, 100, null, null, 0, 1, 0), + (303419, 140, 140, null, null, 0, 1, 0), + (303420, 140, 140, null, null, 0, 1, 0), + (303421, 100, 100, null, null, 0, 1, 0), + (303422, 100, 100, null, null, 0, 1, 0), + (303423, 200, 200, null, null, 0, 0, 0), + (303424, 200, 200, null, null, 0, 0, 0), + (303425, 160, 160, null, null, 1, 0, 1), + (303426, 160, 160, null, null, 1, 0, 1), + (303510, 140, 140, null, null, 0, 1, 0), + (303530, 100, 100, null, null, 0, 0, 0), + (303585, 100, 100, null, null, 0, 0, 0), + (303630, 100, 100, null, null, 0, 0, 0), + (303639, 100, 150, null, null, 0, 0, 0), + (303648, 100, 100, null, null, 0, 0, 0), + (303699, 100, 100, null, null, 0, 0, 0), + (303700, 100, 100, null, null, 0, 0, 0), + (303701, 100, 100, null, null, 0, 0, 0), + (303702, 100, 100, null, null, 0, 0, 0), + (303703, 100, 100, null, null, 0, 0, 0), + (303704, 100, 100, null, null, 0, 0, 0), + (303705, 100, 100, null, null, 0, 0, 0), + (304143, 50, 50, null, null, 0, 0, 0), + (304144, 150, 150, null, null, 0, 1, 0), + (304157, 100, 100, null, null, 0, 0, 0), + (304158, 100, 150, null, null, 0, 0, 1), + (304159, 100, 100, null, null, 0, 0, 0), + (304160, 100, 100, null, null, 0, 0, 0), + (304223, 100, 100, null, null, 0, 0, 0), + (304252, 100, 100, 3000, null, 0, 0, 0), + (304535, 150, 150, null, null, 0, 1, 0), + (304536, 150, 150, null, null, 0, 1, 0), + (304537, 200, 150, null, null, 0, 0, 0), + (304538, 200, 150, null, null, 0, 0, 0), + (304539, 200, 150, null, null, 1, 0, 0), + (304540, 200, 150, null, null, 1, 0, 0), + (304541, 200, 200, null, null, 0, 0, 1), + (304542, 200, 200, null, null, 0, 0, 1), + (304543, 200, 200, 5000, null, 0, 0, 0), + (304544, 200, 200, 5000, null, 0, 0, 0), + (304545, 200, 150, null, 2500, 0, 0, 0), + (304546, 200, 150, null, 2500, 0, 0, 0), + (304547, 200, 200, null, null, 1, 0, 0), + (304548, 200, 200, null, null, 1, 0, 0), + (304549, 150, 100, null, null, 0, 0, 0), + (304550, 150, 100, null, null, 0, 0, 0), + (304551, 250, 150, null, null, 0, 1, 0), + (304552, 250, 150, null, null, 0, 1, 0), + (304553, 200, 150, null, null, 0, 1, 0), + (304554, 200, 150, null, null, 0, 1, 0), + (304555, 300, 200, null, null, 0, 0, 0), + (304556, 300, 200, null, null, 0, 0, 0), + (304557, 200, 150, null, null, 1, 0, 0), + (304558, 200, 150, null, null, 1, 0, 0), + (304616, 150, 200, null, null, 0, 1, 0), + (304819, 100, 100, null, null, 0, 0, 0), + (304910, 100, 1000, null, null, 0, 1, 0), + (304948, 261, 700, null, null, 0, 0, 0), + (305021, 120, 120, null, null, 1, 0, 0), + (305026, 100, 110, null, null, 0, 1, 0), + (305027, 110, 110, null, 2500, 1, 0, 0), + (305030, 130, 120, null, null, 0, 1, 0), + (305032, 130, 130, null, null, 0, 1, 0), + (305034, 120, 120, null, null, 0, 1, 0), + (305035, 130, 130, null, null, 0, 1, 0), + (305036, 150, 150, null, null, 0, 0, 0), + (305384, 0, 0, null, null, 0, 0, 0), + (305387, 150, 150, null, null, 0, 0, 0), + (305520, 100, 130, null, null, 0, 1, 0), + (305521, 130, 130, null, null, 0, 1, 0), + (305522, 120, 120, null, 4000, 1, 0, 0), + (305523, 250, 250, null, null, 0, 0, 0), + (305524, 100, 100, null, null, 0, 0, 0), + (305525, 100, 100, null, null, 0, 1, 0), + (305530, 140, 140, null, null, 0, 1, 0), + (305605, 150, 300, null, null, 0, 0, 0), + (305965, 130, 150, null, null, 0, 1, 0), + (305966, 150, 170, null, null, 1, 0, 1), + (305980, 120, 120, null, null, 0, 0, 0), + (305985, 120, 140, null, null, 0, 1, 0), + (305988, 140, 140, null, null, 1, 0, 1), + (305991, 130, 130, null, null, 0, 1, 0), + (305993, 130, 130, null, null, 0, 1, 0), + (305998, 140, 140, null, null, 1, 0, 0), + (305999, 2, 2, null, null, 0, 0, 0), + (306004, 140, 140, null, null, 1, 0, 0), + (306005, 120, 130, null, null, 1, 0, 0), + (306155, 150, 100, null, null, 0, 0, 0), + (306174, 130, 130, null, null, 0, 0, 0), + (306175, 115, 200, null, null, 1, 0, 0), + (306183, 100, 400, null, null, 0, 0, 0), + (306184, 100, 400, null, null, 0, 0, 0), + (306185, 100, 400, null, null, 0, 0, 0), + (306201, 100, 120, null, 1900, 0, 0, 1); diff --git a/modules/standard/timers/countdown_controller.py b/modules/standard/timers/countdown_controller.py new file mode 100644 index 0000000..05284aa --- /dev/null +++ b/modules/standard/timers/countdown_controller.py @@ -0,0 +1,28 @@ +from core.command_param_types import Any +from core.decorators import instance, command + + +@instance() +class CountdownController: + def inject(self, registry): + self.job_scheduler = registry.get_instance("job_scheduler") + self.command_alias_service = registry.get_instance("command_alias_service") + + def start(self): + self.command_alias_service.add_alias("cd", "countdown") + + @command(command="countdown", params=[Any("message", is_optional=True)], access_level="member", + description="Start a 5-second countdown") + def countdown_cmd(self, request, message): + message = message or "GO GO GO" + message_format = "<%s>-------> %s <-------" + + self.job_scheduler.delayed_job(self.show_countdown, 1, request.reply, message_format, "red", "5") + self.job_scheduler.delayed_job(self.show_countdown, 2, request.reply, message_format, "red", "4") + self.job_scheduler.delayed_job(self.show_countdown, 3, request.reply, message_format, "orange", "3") + self.job_scheduler.delayed_job(self.show_countdown, 4, request.reply, message_format, "orange", "2") + self.job_scheduler.delayed_job(self.show_countdown, 5, request.reply, message_format, "orange", "1") + self.job_scheduler.delayed_job(self.show_countdown, 6, request.reply, message_format, "green", message) + + def show_countdown(self, _, reply, message_format, color, message): + reply(message_format % (color, message, color)) diff --git a/modules/standard/timers/timer_controller.py b/modules/standard/timers/timer_controller.py new file mode 100644 index 0000000..ee74fac --- /dev/null +++ b/modules/standard/timers/timer_controller.py @@ -0,0 +1,222 @@ +import time + +from core.chat_blob import ChatBlob +from core.command_param_types import Any, Const, Time, Options +from core.decorators import instance, command +from core.registry import Registry +from modules.standard.news.worldboss_controller import WorldBossController + + +class TimerTime(Time): + def get_regex(self): + regex = r"(\s+(([0-9]+)([a-z]*))+)" + return regex + ("?" if self.is_optional else "") + + def process_matches(self, params): + budatime_str = params.pop(0) + params.pop(0) + params.pop(0) + params.pop(0) + + if budatime_str is None: + return None + else: + budatime_str = budatime_str[1:] + if budatime_str.isdigit(): + return int(budatime_str) * 60 + else: + util = Registry.get_instance("util") + return util.parse_time(budatime_str) + + +@instance() +class TimerController: + def __init__(self): + self.alerts = [60 * 60, 60 * 15, 60 * 1] + + def inject(self, registry): + self.bot = registry.get_instance("bot") + self.db = registry.get_instance("db") + self.util = registry.get_instance("util") + self.job_scheduler = registry.get_instance("job_scheduler") + self.command_alias_service = registry.get_instance("command_alias_service") + self.access_service = registry.get_instance("access_service") + self.text = registry.get_instance("text") + self.worldboss: WorldBossController = registry.get_instance("world_boss_controller") + + def start(self): + self.db.exec("CREATE TABLE IF NOT EXISTS timer (" + "name VARCHAR(255) NOT NULL, " + "char_id INT NOT NULL, " + "channel VARCHAR(10) NOT NULL, " + "duration INT NOT NULL, " + "created_at INT NOT NULL, " + "finished_at INT NOT NULL, " + "repeating_every INT NOT NULL, " + "job_id INT NOT NULL)") + + # add scheduled jobs for timers that are already running + data = self.db.query("SELECT * FROM timer") + for row in data: + job_id = self.job_scheduler.scheduled_job(self.timer_alert, row.finished_at, row.name) + self.db.exec("UPDATE timer SET job_id = ? WHERE name = ?", [job_id, row.name]) + + self.command_alias_service.add_alias("timers", "timer") + + @command(command="timer", params=[], access_level="member", + description="Show current timers") + def timer_list_cmd(self, _): + t = int(time.time()) + count = 0 + + def getmsg(message): + message = "" + message + "\n" if message != "No timers cached; please try again later." else "" + nn = 0 + if message != "": + nn = 1 + return message, nn + + data = self.db.query("SELECT t.*, p.name AS char_name FROM timer t " + "LEFT JOIN player p ON t.char_id = p.char_id " + "ORDER BY t.finished_at") + blob = "" + if self.worldboss.timer_data: + blob += "
Automatic Timers
\n" + for row in self.worldboss.timer_data: + msg, cnt = getmsg(self.worldboss.show_user(row)) + blob += msg + count += cnt + blob += "\n\n
Manual Timers
\n" + for timer in data: + repeats = "" + if timer.repeating_every >= 0: + repeats = f" (Repeats every {self.util.time_to_readable(timer.repeating_every)})" + blob += f"Name: {timer.name}\n" + blob += f"Time left: " \ + f"{self.util.time_to_readable(timer.created_at + timer.duration - t, max_levels=None)}" \ + f"{repeats}\n" + blob += f"Owner: {timer.char_name}\n" + blob += self.text.make_tellcmd("Remove", "timer remove %s" % timer.name) + "\n\n" + + return ChatBlob(f"Timers ({len(data) + count:d})", blob) + + @command(command="timer", + params=[Const("add", is_optional=True), TimerTime("time"), Any("name", is_optional=True)], + access_level="member", + description="Add a timer") + def timer_add_cmd(self, request, _, duration, timer_name): + timer_name = timer_name or self.get_timer_name(request.sender.name) + + if self.get_timer(timer_name): + return f"A timer named {timer_name} is already running." + + t = int(time.time()) + self.add_timer(timer_name, request.sender.char_id, request.channel, t, duration) + + return f"Timer {timer_name} has been set for " \ + f"{self.util.time_to_readable(duration, max_levels=None)}." + + @command(command="timer", params=[Options(["rem", "remove"]), Any("name")], access_level="member", + description="Remove a timer") + def timer_remove_cmd(self, request, _, timer_name): + timer = self.get_timer(timer_name) + if not timer: + return f"There is no timer named {timer_name}." + + if self.access_service.has_sufficient_access_level(request.sender.char_id, timer.char_id): + self.remove_timer(timer_name) + return f"Timer {timer.name} has been removed." + else: + return f"Error! Insufficient access level to remove timer {timer.name}." + + @command(command="rtimer", + params=[Const("add", is_optional=True), + TimerTime("start_time"), + TimerTime("repeating_time"), + Any("name", is_optional=True)], + access_level="member", + description="Add a timer") + def rtimer_add_cmd(self, request, _, start_time, repeating_time, timer_name): + timer_name = timer_name or self.get_timer_name(request.sender.name) + if repeating_time < 60: + return f"The timer named {timer_name} has not been created, " \ + f"because there is an minimum repeating time of 1 minute." + + if self.get_timer(timer_name): + return f"A timer named {timer_name} is already running." + + t = int(time.time()) + self.add_timer(timer_name, request.sender.char_id, request.channel, t, start_time, repeating_time) + + return f"Repeating timer {timer_name} will go off in " \ + f"{self.util.time_to_readable(start_time)} and " \ + f"repeat every {self.util.time_to_readable(repeating_time)}." + + def get_timer_name(self, base_name): + # attempt base name first + name = base_name + + idx = 1 + while self.get_timer(name): + idx += 1 + name = base_name + str(idx) + + return name + + def get_timer(self, name): + return self.db.query_single("SELECT * FROM timer WHERE name LIKE ?", [name]) + + def add_timer(self, timer_name, char_id, channel, t, duration, repeating_time=0): + alert_duration = self.get_next_alert(duration) + job_id = self.job_scheduler.scheduled_job(self.timer_alert, t + alert_duration, timer_name) + + self.db.exec("INSERT INTO timer (" + "name, char_id, channel, " + "duration, created_at, finished_at, " + "repeating_every, job_id) " + "VALUES (?, ?, ?, ?, ?, ?, ?, ?)", + [timer_name, char_id, channel, duration, t, t + duration, repeating_time, job_id]) + + def remove_timer(self, timer_name): + timer = self.get_timer(timer_name) + self.job_scheduler.cancel_job(timer.job_id) + + self.db.exec("DELETE FROM timer WHERE name LIKE ?", [timer_name]) + + def get_next_alert(self, duration): + for alert in self.alerts: + if duration > alert: + return duration - alert + return duration + + def timer_alert(self, t, timer_name): + timer = self.get_timer(timer_name) + + if timer.finished_at > t: + msg = f"Timer {timer.name} has " \ + f"{self.util.time_to_readable(timer.finished_at - t)} left." + + alert_duration = self.get_next_alert(timer.finished_at - t) + job_id = self.job_scheduler.scheduled_job(self.timer_alert, t + alert_duration, timer.name) + + self.db.exec("UPDATE timer SET job_id = ? WHERE name = ?", [job_id, timer.name]) + else: + msg = f"Timer {timer.name} has gone off." + + self.remove_timer(timer.name) + + if timer.repeating_every > 0: + # skip scheduling jobs in the past to prevent backlog of jobs when bot goes offline + current_t = int(time.time()) - timer.repeating_every + new_t = t + while new_t < current_t: + new_t += timer.repeating_every + self.add_timer(timer.name, timer.char_id, timer.channel, new_t, timer.repeating_every, + timer.repeating_every) + + if timer.channel == "org": + self.bot.send_org_message(msg) + elif timer.channel == "priv": + self.bot.send_private_channel_message(msg) + else: + self.bot.send_private_message(timer.char_id, msg) diff --git a/modules/standard/track/track_controller.py b/modules/standard/track/track_controller.py new file mode 100644 index 0000000..e03a744 --- /dev/null +++ b/modules/standard/track/track_controller.py @@ -0,0 +1,227 @@ +import math + +from core.aochat.BaseModule import BaseModule +from core.aochat.server_packets import BuddyAdded +from core.buddy_service import BuddyService +from core.chat_blob import ChatBlob +from core.command_param_types import Character, Options, Const, Any, NamedParameters +from core.db import DB +from core.decorators import instance, command, event +from core.dict_object import DictObject +from core.event_service import EventService +from core.job_scheduler import JobScheduler +from core.lookup.pork_service import PorkService +from core.message_hub_service import MessageHubService +from core.private_channel_service import PrivateChannelService +from core.setting_service import SettingService +from core.setting_types import TextSettingType, ColorSettingType +from core.text import Text +from core.tyrbot import Tyrbot +from core.util import Util +from modules.core.accounting.services.account_service import AccountService +from modules.raidbot.tower.tower_controller import TowerController + + +# noinspection DuplicatedCode,SqlCaseVsIf +@instance() +class TrackController(BaseModule): + PRIVATE_CHANNEL_PREFIX = "[Priv]" + PAGE_SIZE = 20 + MESSAGE_SOURCE = "track_log" + + def inject(self, registry): + self.bot: Tyrbot = registry.get_instance("bot") + self.util: Util = registry.get_instance("util") + self.pork: PorkService = registry.get_instance("pork_service") + self.job_scheduler: JobScheduler = registry.get_instance("job_scheduler") + self.text: Text = registry.get_instance("text") + self.event_service: EventService = registry.get_instance("event_service") + self.setting_service: SettingService = registry.get_instance("setting_service") + self.buddy_service: BuddyService = registry.get_instance("buddy_service") + self.account_service: AccountService = registry.get_instance("account_service") + self.db: DB = registry.get_instance("db") + self.priv: PrivateChannelService = registry.get_instance("private_channel_service") + self.tower: TowerController = registry.get_instance("tower_controller") + self.message_hub_service: MessageHubService = registry.get_instance("message_hub_service") + + def pre_start(self): + self.event_service.register_event_type("track_logon") + self.event_service.register_event_type("track_logoff") + self.setting_service.register_new(self.module_name, "track_on_color", "#FF0000", ColorSettingType(), + "Color for Track logon") + self.setting_service.register_new(self.module_name, "track_off_color", "#00FF00", ColorSettingType(), + "Color for Track logoff") + self.setting_service.register_new(self.module_name, "autotrack", 'none', + TextSettingType(['omni', 'clan', 'neutral', "none"]), + "Autotrack all players initiating tower attacks towards this faction:") + self.db.exec( + "CREATE TABLE IF NOT EXISTS track(" + "char_id int not null primary key, " + "initiator int not null, " + "reason varchar(255))") + self.message_hub_service.register_message_source(self.MESSAGE_SOURCE) + + @event(event_type="connect", description="Autoadd tracked players on connect", is_hidden=True) + def connect_add(self, _1, _2): + query = self.db.query("SELECT * from track") + for user in query: + self.buddy_service.add_buddy(user.char_id, "track") + + @event(event_type="buddy_logon", description="Fire tracker events", is_hidden=True) + def track_fire_logon(self, _, event_data): + if self.bot.is_ready(): + if "track" in (self.buddy_service.get_buddy(event_data.char_id) or {'types': []})["types"]: + if type(event_data) == BuddyAdded: + self.event_service.fire_event("track_logon", + self.db.query_single("SELECT * from player where char_id=?", + [event_data.char_id])) + self.db.exec("INSERT IGNORE INTO online VALUES(?, ?, ?)", + [event_data.char_id, 'track', self.bot.get_char_id()]) + else: + self.job_scheduler.delayed_job(self.track_fire_logon, 10, + DictObject({'char_id': event_data.char_id, 'repeat': True})) + + @event(event_type="buddy_logoff", description="Fire tracker events", is_hidden=True) + def track_fire_logoff(self, _1, event_data): + if "track" in self.buddy_service.get_buddy(event_data.char_id)["types"]: + self.event_service.fire_event("track_logoff", self.db.query_single("SELECT * from player where char_id=?", + [event_data.char_id])) + self.db.exec("DELETE FROM online where char_id=? and bot=?", [event_data.char_id, self.bot.get_char_id()]) + + @event(event_type="track_logon", description="Fire tracker events", is_hidden=True) + def track_logon(self, _1, user): + if self.bot.is_ready(): + color = self.setting_service.get("track_on_color").format_text("ON") + self.send_t_warn(0, f'{color} :: {self.text.format_char_info(user)}') + + @event(event_type="track_logoff", description="Fire tracker events", is_hidden=True) + def track_logoff(self, _1, user): + if self.bot.is_ready(): + color = self.setting_service.get("track_off_color").format_text("OFF") + self.send_t_warn(0, f'{color} :: {self.text.format_char_info(user)}') + + @event(event_type=TowerController.TOWER_ATTACK_EVENT, description="Warn on Tower attacks", is_hidden=True) + def tower_attack_event(self, _, event_data): + attacker = event_data.attacker + if event_data.defender.faction.lower() == self.setting_service.get_value("autotrack"): + if not self.buddy_service.get_buddy(attacker.char_id): + if self.buddy_service.add_buddy(attacker.char_id, "track"): + self.send_t_warn(0, + f"Now tracking: " + f"<{attacker.faction.lower()}>{attacker.name}") + self.db.exec("INSERT IGNORE INTO track VALUES(?, ?, ?)", + [attacker.char_id, self.bot.get_char_id(), "attacked us"]) + + def send_t_warn(self, _, msg): + self.message_hub_service.send_message(self.MESSAGE_SOURCE, None, "[T] " + msg, "[T] " + msg) + + def get_tracked(self, order, online): + where = "where o.char_id IS NOT NULL" if online else "" + return self.db.query(f"SELECT p.name, p.level, p.ai_level, p.org_name, p.profession, p.faction, " + f"p2.name as initiator, " + f"CASE WHEN o.char_id IS NOT NULL THEN 1 ELSE 0 END AS online, " + f"t.reason from track t " + f"left join player p on p.char_id = t.char_id " + f"left join player p2 on p2.char_id = t.initiator " + f"left join online o on o.char_id = t.char_id {where} group by t.char_id order by {order}") + + @command(command="track", params=[Const('add'), Character("character"), Any('reason')], access_level="leader", + description="Initiate tracking for the character", sub_command="add") + def track_add(self, request, _, user, reason): + if not user.char_id: + return f"Character {user.name} not found." + self.pork.load_character_info(user.char_id, user.name) + if acc := self.account_service.get_account(request.sender.char_id): + if "track" in (self.buddy_service.get_buddy(user.char_id) or {'types': []})["types"]: + return f"Character {user.name} is already being tracked." + else: + self.pork.load_character_info(user.char_id, user.name) + self.send_t_warn(0, f'Tracking initiated: {user.name} by {acc.name}') + self.buddy_service.add_buddy(user.char_id, 'track') + self.db.exec("INSERT IGNORE INTO track VALUES(?, ?, ?)", + [user.char_id, acc.main, reason]) + + @command(command="track", params=[Const('rem'), Character("character")], access_level="moderator", + description="Remove character from the tracking", sub_command="rem") + def track_rem(self, request, _, user): + if not user.char_id: + return f"Character {user.name} not found." + if acc := self.account_service.get_account(request.sender.char_id): + if self.buddy_service.remove_buddy(user.char_id, "track"): + self.db.exec("DELETE FROM track where char_id=?", [user.char_id]) + self.send_t_warn(0, f'Tracking stopped: {user.name} by {acc.name}') + return f"Character {user.name} is nolonger being tracked." + else: + return f"Character {user.name} is not being tracked." + + @command(command="track", + params=[Const('list', is_optional=True), Options(["org", "prof", "tl"], is_optional=True), + NamedParameters(["page"])], + access_level="member", + description="Shows tracked players") + def track_list(self, _, const, group, named_params): + page = int(named_params.page or "1") + offset = (page - 1) * self.PAGE_SIZE + if group is None: + group = 'tl' + if group == "org": + players = self.get_tracked('p.org_name, p.profession, p.level desc, p.name', False if const else True) + return self.format_page(players, "org", offset, page, f"Tracklist by Organisation ({len(players)})", + 'No tracked users online', f"track {const or ''} {group or ''}") + + elif group == "prof": + players = self.get_tracked('p.profession, p.level desc, p.name', False if const else True) + return self.format_page(players, "prof", offset, page, f"Tracklist by Profession ({len(players)})", + 'No tracked users online', f"track {const or ''} {group or ''}") + elif group == "tl": + players = self.get_tracked('p.level desc, p.profession, p.name', False if const else True) + return self.format_page(players, "tl", offset, page, f"Tracklist by Titlelevel ({len(players)})", + 'No tracked users online', f"track {const or ''} {group or ''}") + + def format_row(self, user): + org = f"[<{user.faction.lower()}>{user.org_name}] " if user.org_name else "" + return f"{self.util.get_prof_icon(user.profession)} " \ + f"{self.text.zfill(user.level, 220)}:{self.text.zfill(user.ai_level, 220)} " \ + f"<{user.faction.lower()}>{user.name}" \ + f" {org}init by {user.initiator}: {user.reason} " \ + f"{'[ONLINE]' if user.online == 1 else ''}\n" + + def format_page(self, tracked, order, offset, page, title, nullmsg, cmd): + selected = tracked[offset:offset + self.PAGE_SIZE] + count = len(selected) + pages = "" + if page > 1: + pages += "Pages: " + self.text.make_tellcmd("«« Page %d" % (page - 1), f'{cmd} --page={page - 1}') + if offset + self.PAGE_SIZE < len(tracked): + pages += f" Page {page}/{math.ceil(len(tracked) / self.PAGE_SIZE)}" + pages += " " + self.text.make_tellcmd("Page %d »»" % (page + 1), f'{cmd} --page={page + 1}') + pages += "\n" + if count == 0: + return nullmsg + else: + blob = "\n\n" + pages + "" + if order == "prof": + prof = "" + for player in selected: + if player.profession != prof: + prof = player.profession + blob += f"\n
{player.profession}
\n" + blob += self.format_row(player) + elif order == "tl": + tl = "" + for player in selected: + titlelevel = self.util.get_title_level(player.level) + if titlelevel != tl: + tl = titlelevel + blob += f"\n
TL{titlelevel}
\n" + blob += self.format_row(player) + elif order == "org": + org_name = "" + for player in selected: + if player.org_name != org_name: + org_name = player.org_name + blob += f"\n
{player.org_name}
\n" + blob += self.format_row(player) + + blob += "
\n" + pages + return ChatBlob(title, blob) diff --git a/modules/standard/trickle/trickle.sql b/modules/standard/trickle/trickle.sql new file mode 100644 index 0000000..4516a96 --- /dev/null +++ b/modules/standard/trickle/trickle.sql @@ -0,0 +1,86 @@ +# noinspection LongLineForFile + +DROP TABLE IF EXISTS trickle; +CREATE TABLE IF NOT EXISTS trickle +( + id INT NOT NULL PRIMARY KEY, + group_name VARCHAR(20) NOT NULL, + name VARCHAR(30) NOT NULL, + amount_agility DECIMAL(3, 1) NOT NULL, + amount_intelligence DECIMAL(3, 1) NOT NULL, + amount_psychic DECIMAL(3, 1) NOT NULL, + amount_stamina DECIMAL(3, 1) NOT NULL, + amount_strength DECIMAL(3, 1) NOT NULL, + amount_sense DECIMAL(3, 1) NOT NULL +); +INSERT INTO trickle (id, group_name, name, amount_agility, amount_intelligence, amount_psychic, amount_stamina, + amount_strength, amount_sense) +VALUES (1, 'Body & Defense', 'Body Dev.', 0, 0, 0, 1, 0, 0), + (2, 'Body & Defense', 'Nano Pool', 0, .1, .7, .1, 0, .1), + (3, 'Body & Defense', 'Evade-ClsC', .5, .2, 0, 0, 0, .3), + (4, 'Body & Defense', 'Dodge-Rng', .5, .2, 0, 0, 0, .3), + (5, 'Body & Defense', 'Duck-Exp', .5, .2, 0, 0, 0, .3), + (6, 'Body & Defense', 'Nano Resist', 0, .2, .8, 0, 0, 0), + (7, 'Body & Defense', 'Deflect', .2, 0, 0, 0, .5, .3), + (8, 'Melee Weapons', '1h Blunt', .1, 0, 0, .4, .5, 0), + (9, 'Melee Weapons', '1h Edged', .4, 0, 0, .3, .3, 0), + (10, 'Melee Weapons', 'Piercing', .5, 0, 0, .3, .2, 0), + (11, 'Melee Weapons', '2h Blunt', 0, 0, 0, .5, .5, 0), + (12, 'Melee Weapons', '2h Edged', 0, 0, 0, .4, .6, 0), + (13, 'Melee Weapons', 'Melee Ener.', 0, .5, 0, .5, 0, 0), + (14, 'Melee Weapons', 'Martial Arts', .5, 0, .3, 0, .2, 0), + (15, 'Melee Weapons', 'Multi. Melee', .6, 0, 0, .1, .3, 0), + (16, 'Melee Weapons', 'Melee. Init.', .1, .1, .2, 0, 0, .6), + (17, 'Melee Weapons', 'Physic. Init', .1, .1, .2, 0, 0, .6), + (18, 'Melee Specials', 'Sneak Atck', .5, .3, 0, 0, 0, .2), + (19, 'Melee Specials', 'Brawling', 0, 0, 0, .4, .6, 0), + (20, 'Melee Specials', 'Fast Attack', .6, 0, 0, 0, 0, .4), + (21, 'Melee Specials', 'Dimach', 0, 0, .2, 0, 0, .8), + (22, 'Melee Specials', 'Riposte', .5, 0, 0, 0, 0, .5), + (23, 'Ranged Weapons', 'Pistol', .6, 0, 0, 0, 0, .4), + (24, 'Ranged Weapons', 'Bow', .4, 0, 0, 0, .2, .4), + (25, 'Ranged Weapons', 'MG / SMG', .3, 0, 0, .3, .3, .1), + (26, 'Ranged Weapons', 'Assault Rif', .3, 0, 0, .4, .1, .2), + (27, 'Ranged Weapons', 'Shotgun', .6, 0, 0, 0, .4, 0), + (28, 'Ranged Weapons', 'Rifle', .6, 0, 0, 0, 0, .4), + (29, 'Ranged Weapons', 'Ranged Ener', 0, .2, .4, 0, 0, .4), + (30, 'Ranged Weapons', 'Grenade', .4, .2, 0, 0, 0, .4), + (31, 'Ranged Weapons', 'Heavy Weapons', .6, 0, 0, 0, .4, 0), + (32, 'Ranged Weapons', 'Multi Ranged', .6, .4, 0, 0, 0, 0), + (33, 'Ranged Weapons', 'Ranged. Init.', .1, .1, .2, 0, 0, .6), + (34, 'Ranged Specials', 'Fling Shot', 1, 0, 0, 0, 0, 0), + (35, 'Ranged Specials', 'Aimed Shot', 0, 0, 0, 0, 0, 1), + (36, 'Ranged Specials', 'Burst', .5, 0, 0, .2, .3, 0), + (37, 'Ranged Specials', 'Full Auto', 0, 0, 0, .4, .6, 0), + (38, 'Ranged Specials', 'Bow Spc Att', .5, 0, 0, 0, .1, .4), + (39, 'Ranged Specials', 'Sharp Obj', .6, 0, 0, 0, .2, .2), + (40, 'Nanos & Casting', 'Matt.Metam', 0, .8, .2, 0, 0, 0), + (41, 'Nanos & Casting', 'Bio Metamor', 0, .8, .2, 0, 0, 0), + (42, 'Nanos & Casting', 'Psycho Modi', 0, .8, 0, 0, 0, .2), + (43, 'Nanos & Casting', 'Sensory Impr', 0, .8, 0, 0, .2, 0), + (44, 'Nanos & Casting', 'Time&Space', .2, .8, 0, 0, 0, 0), + (45, 'Nanos & Casting', 'Matter Crea', 0, .8, 0, .2, 0, 0), + (46, 'Nanos & Casting', 'NanoC. Init.', .4, 0, 0, 0, 0, .6), + (47, 'Exploring', 'Vehicle Air', .2, .2, 0, 0, 0, .6), + (48, 'Exploring', 'Vehicle Ground', .2, .2, 0, 0, 0, .6), + (49, 'Exploring', 'Vehicle Water', .2, .2, 0, 0, 0, .6), + (50, 'Exploring', 'Run Speed', .4, 0, 0, .4, .2, 0), + (51, 'Exploring', 'Adventuring', .5, 0, 0, .3, .2, 0), + (52, 'Combat & Healing', 'Perception', 0, .3, 0, 0, 0, .7), + (53, 'Combat & Healing', 'Concealment', .3, 0, 0, 0, 0, .7), + (54, 'Combat & Healing', 'Psychology', 0, .5, 0, 0, 0, .5), + (55, 'Combat & Healing', 'Trap Disarm.', .2, .2, 0, 0, 0, .6), + (56, 'Combat & Healing', 'First Aid', .3, .3, 0, 0, 0, .4), + (57, 'Combat & Healing', 'Treatment', .3, .5, 0, 0, 0, .2), + (58, 'Trade & Repair', 'Mech. Engi', .5, .5, 0, 0, 0, 0), + (59, 'Trade & Repair', 'Elec. Engi', .3, .5, 0, .2, 0, 0), + (60, 'Trade & Repair', 'Quantum FT', 0, .5, .5, 0, 0, 0), + (61, 'Trade & Repair', 'Chemistry', 0, .5, 0, .5, 0, 0), + (62, 'Trade & Repair', 'Weapon Smt', 0, .5, 0, 0, .5, 0), + (63, 'Trade & Repair', 'Nano Progra', 0, 1, 0, 0, 0, 0), + (64, 'Trade & Repair', 'Tutoring', 0, .7, .1, 0, 0, .2), + (65, 'Trade & Repair', 'Break&Entry', .4, 0, .3, 0, 0, .3), + (66, 'Trade & Repair', 'Comp. Liter', 0, 1, 0, 0, 0, 0), + (67, 'Trade & Repair', 'Pharma Tech', .2, .8, 0, 0, 0, 0), + (68, 'Disabled / Legacy', 'Swimming', .2, 0, 0, .6, .2, 0), + (69, 'Disabled / Legacy', 'Map Navig.', 0, .4, .1, 0, 0, .5); \ No newline at end of file diff --git a/modules/standard/trickle/trickle_controller.py b/modules/standard/trickle/trickle_controller.py new file mode 100644 index 0000000..c2d6542 --- /dev/null +++ b/modules/standard/trickle/trickle_controller.py @@ -0,0 +1,186 @@ +import re + +from core.chat_blob import ChatBlob +from core.command_param_types import Any, CommandParam +from core.db import DB +from core.decorators import instance, command +from core.dict_object import DictObject +from core.text import Text + + +class TrickleParam(CommandParam): + def __init__(self): + super().__init__() + self.ability_first = re.compile(r"\s+([a-z]+)\s+([0-9]+)") + self.amount_first = re.compile(r"\s+([0-9]+)\s+([a-z]+)") + + def get_regex(self): + regex = r"((\s+[a-z]+\s+[0-9]+|\s+[0-9]+\s+[a-z]+)+)" + return regex + + def get_name(self): + return "ability amount" + + def process_matches(self, params): + i = params.pop(0) + matches_amount_first = self.amount_first.findall(i) + matches_ability_first = self.ability_first.findall(i) + params.pop(0) + + result = [] + if len(matches_amount_first) > len(matches_ability_first): + for match in matches_amount_first: + result.append(DictObject({ + "ability": match[1], + "amount": int(match[0]) + })) + else: + for match in matches_ability_first: + result.append(DictObject({ + "ability": match[0], + "amount": int(match[1]) + })) + + return result + + +@instance() +class TrickleController: + def __init__(self): + self.ability_first = re.compile(" ([a-z]+) ([0-9]+)") + self.amount_first = re.compile(" ([0-9]+) ([a-z]+)") + + def inject(self, registry): + self.db: DB = registry.get_instance("db") + self.text: Text = registry.get_instance("text") + self.util = registry.get_instance("util") + + def pre_start(self): + self.db.load_sql_file(self.module_dir + "/" + "trickle.sql", pre_optimized=True) + self.db.create_view("trickle") + + @command(command="trickle", params=[TrickleParam()], access_level="member", + description="Show skill increases due to trickle") + def trickle_ability_cmd(self, _, trickle_params): + abilities_map = {} + + # initialize map with 0s + for ability in self.util.get_all_abilities(): + abilities_map[ability] = 0 + + for p in trickle_params: + ability = self.util.get_ability(p.ability) + if not ability: + return "Unknown ability %s." % p.ability + + abilities_map[ability] = p.amount + + trickle_amounts = self.get_trickle_amounts(abilities_map) + return self.format_trickle_output(abilities_map, trickle_amounts) + + @command(command="trickle", params=[Any("skill")], access_level="member", + description="Show how much ability is needed to trickle a skill") + def trickle_skill_cmd(self, _, search): + data = self.db.query("SELECT * FROM trickle WHERE name ?", [search], extended_like=True) + count = len(data) + + if count == 0: + return "Could not find any skills for %s." % search + elif count == 1: + row = data[0] + return self.format_trickle_amounts(row) + else: + blob = "" + for row in data: + blob += self.format_trickle_amounts(row) + "\n" + return ChatBlob("Trickle Info for %s" % search, blob) + + def format_trickle_amounts(self, row): + msg = "%s " % row.name + for ability in self.util.get_all_abilities(): + amount = row["amount_" + ability.lower()] + if amount > 0: + value = 4 / amount + msg += "(%s: %s) " % (ability, round(value, 2)) + return msg + + def get_abilities_map(self, search, is_reversed): + if is_reversed: + matches = self.amount_first.findall(search) + else: + matches = self.ability_first.findall(search) + + m = {} + + # initialize map with 0s + for ability in self.util.get_all_abilities(): + m[ability] = 0 + + # add values that for abilities that were passed in + for val in matches: + if is_reversed: + ability = self.util.get_ability(val[1]) + amount = int(val[0]) + else: + ability = self.util.get_ability(val[0]) + amount = int(val[1]) + m[ability] += amount + + return m + + def get_trickle_amounts(self, abilities_map): + # noinspection SqlAggregates + sql = """ + SELECT + group_name, + name, + amount_agility, + amount_intelligence, + amount_psychic, + amount_stamina, + amount_strength, + amount_sense, + (amount_agility * %d + + amount_intelligence * %d + + amount_psychic * %d + + amount_stamina * %d + + amount_strength * %d + + amount_sense * %d) AS amount + FROM + trickle + GROUP BY + group_name, + name, + amount_agility, + amount_intelligence, + amount_psychic, + amount_stamina, + amount_strength, + amount_sense + HAVING + amount > 0 + ORDER BY + id""" % \ + (abilities_map["Agility"], abilities_map["Intelligence"], abilities_map["Psychic"], + abilities_map["Stamina"], abilities_map["Strength"], abilities_map["Sense"]) + + return self.db.query(sql) + + def format_trickle_output(self, abilities_map, trickle_amounts): + # create blob + blob = "" + group_name = "" + for row in trickle_amounts: + if row.group_name != group_name: + blob += f"\n{row.group_name}\n" + group_name = row.group_name + + blob += f"{row.name} {row.amount / 4:g}\n" + + # create title + def trickle(x): + return f"{x[0]} {x[1]:d}" + + title = "Trickle Results: " + ", ".join(map(trickle, filter(lambda x: x[1] > 0, abilities_map.items()))) + + return ChatBlob(title, blob) diff --git a/modules/standard/wants/wants_controller.py b/modules/standard/wants/wants_controller.py new file mode 100644 index 0000000..6905d76 --- /dev/null +++ b/modules/standard/wants/wants_controller.py @@ -0,0 +1,113 @@ +import time + +from core.chat_blob import ChatBlob +from core.command_param_types import Any, Int, Const, Options, Item +from core.decorators import instance, command + + +@instance() +class WantsController: + def inject(self, registry): + self.db = registry.get_instance("db") + self.text = registry.get_instance("text") + self.account_service = registry.get_instance("account_service") + + def start(self): + self.db.exec("CREATE TABLE IF NOT EXISTS wants (" + "id INT PRIMARY KEY AUTO_INCREMENT, " + "char_id INT NOT NULL, " + "want TEXT NOT NULL," + "created_at INT NOT NULL," + "INDEX `char_id` (`char_id`))") + + @command(command="wants", params=[], access_level="member", + description="Show your wants") + def wants_list_cmd(self, request): + alts = self.account_service.get_alts(request.sender.char_id) + + cnt = 0 + blob = "" + for alt in alts: + data = self.db.query("SELECT * FROM wants WHERE char_id = ? ORDER BY created_at DESC", [alt.char_id]) + alt_cnt = len(data) + cnt += alt_cnt + + if alt_cnt: + for row in data: + blob += "%s %s\n\n" % (row.want, self.text.make_tellcmd("Remove", "wants remove %d" % row.id)) + + return ChatBlob("Wants for %s (%d)" % (alts[0].name, cnt), blob) + + @command(command="wants", params=[Const("add"), Any("item")], access_level="member", + description="Add a want") + def wants_add_cmd(self, request, _, want): + self.db.exec("INSERT INTO wants (char_id, want, created_at) " + "VALUES (?, ?, ?)", + [request.sender.char_id, want, int(time.time())]) + + return "Want added successfully." + + @command(command="wants", params=[Options(["rem", "remove"]), Int("want_id")], access_level="member", + description="Remove a want") + def wants_remove_cmd(self, request, _, want_id): + want = self.db.query_single("SELECT n.*, p.name FROM wants n " + "LEFT JOIN player p ON n.char_id = p.char_id " + "WHERE n.id = ?", + [want_id]) + + if not want: + return f"Could not find want with ID {want_id:d}." + + if self.account_service.get_main(request.sender.char_id).char_id \ + != self.account_service.get_main(want.char_id).char_id: + return f"You must be a confirmed alt of {want.name} to remove this want." + + self.db.exec("DELETE FROM wants WHERE id = ?", [want_id]) + + return f"Want with ID {want_id:d} deleted successfully." + + @command(command="wants", params=[Const("search"), Item("item")], access_level="member", + description="Search wants by itemref") + def wants_search_itemref_cmd(self, request, _, item): + return self.search_wants(item.name) + + @command(command="wants", params=[Const("search"), Any("name")], access_level="member", + description="Search wants by name") + def wants_search_name_cmd(self, request, _, wants_search): + return self.search_wants(wants_search) + + def search_wants(self, wants_search): + wants = self.db.query("SELECT w.char_id, w.want, p.name FROM wants w " + "LEFT JOIN player p ON w.char_id = p.char_id " + "WHERE want LIKE ?", + [f"%{wants_search}%"]) + + blob = "" + for want in wants: + alts = self.account_service.get_alts(want.char_id) + main_name = alts[0].name + blob += f"{main_name}\n{want.want}\n\n" + + return ChatBlob("Search Results (%d)" % len(wants), blob) + + @command(command="wants", params=[Const("list")], access_level="member", + description="Shows all wants") + def wants_all_cmd(self, request, _): + sql = "SELECT w.*, p.name FROM wants w \ + LEFT JOIN alts a ON w.char_id = a.char_id \ + LEFT JOIN alts a2 ON (a2.group_id = a.group_id AND a2.status = 2) \ + LEFT JOIN player p ON p.char_id = COALESCE(a2.char_id, w.char_id) \ + ORDER BY p.name" + + data = self.db.query(sql) + + blob = "" + current_main_name = "" + for want in data: + if want.name != current_main_name: + blob += f"\n{want.name}\n" + current_main_name = want.name + + blob += want.want + "\n" + + return ChatBlob(f"Wants List ({len(data):d})", blob) diff --git a/modules/standard/whois/character_history_controller.py b/modules/standard/whois/character_history_controller.py new file mode 100644 index 0000000..83601bb --- /dev/null +++ b/modules/standard/whois/character_history_controller.py @@ -0,0 +1,58 @@ +from core.command_param_types import Int, Character, NamedParameters +from core.decorators import instance, command +from core.lookup.character_history_service import CharacterHistoryService +from core.text import Text +from core.tyrbot import Tyrbot + + +@instance() +class CharacterHistoryController: + def __init__(self): + self.PAGE_SIZE = 25 + pass + + def inject(self, registry): + self.bot: Tyrbot = registry.get_instance("bot") + self.text: Text = registry.get_instance("text") + self.util = registry.get_instance("util") + self.character_history_service: CharacterHistoryService = registry.get_instance("character_history_service") + self.command_alias_service = registry.get_instance("command_alias_service") + + def start(self): + self.command_alias_service.add_alias("h", "history") + + @command(command="history", + params=[Character("character"), Int("server_num", is_optional=True), NamedParameters(['page'])], + access_level="member", + description="Get history of character", + extended_description="Use server_num 6 for RK2019 and server_num 5 for live") + def handle_history_cmd1(self, _, char, server_num, named_params): + server_num = server_num or self.bot.dimension + page = int(named_params.page or "1") + offset = (page - 1) * self.PAGE_SIZE + data = self.character_history_service.get_character_history(char.name, server_num) + if data: + data = [x for x in data] + else: + return f"Could not find history for {char.name} " \ + f"on server {server_num}." + blob = " | ".join(["Date", "Lvl", "AI", "Side", "Breed", "CharId", "Guild (Rank)"]) + "\n" + blob += "__________________________________________________________\n" + return self.text.format_pagination(data, offset, page, self.formatter, + f'History of {char.name} (RK{server_num})', + f"Could not find history for {char.name} " + f"on server {server_num:d}.", + f'history {char.name} {server_num} ', self.PAGE_SIZE, blob) + + def formatter(self, row, _, data): + if row.guild_name: + org = f"{row.guild_name} ({row.guild_rank_name})" + else: + org = "" + last_changed = self.util.format_date(int(float(row.last_changed))) + if row.deleted == "1": # This value is output as string + return "DELETED\n" + return f"{last_changed} | {self.text.zfill(int(row.level), 220)} | " \ + f"{self.text.zfill(int(row.defender_rank or 0), 30)} | {row.faction:^7} | " \ + f"{row.breed:^10} | {self.text.zfill(int(row.char_id or 0), int(data[0].char_id or 0))} | " \ + f"{org}\n" diff --git a/modules/standard/whois/character_info_controller.py b/modules/standard/whois/character_info_controller.py new file mode 100644 index 0000000..7b8e5ce --- /dev/null +++ b/modules/standard/whois/character_info_controller.py @@ -0,0 +1,180 @@ +import time +from functools import partial + +from core.aochat.server_packets import BuddyAdded, CharacterName +from core.chat_blob import ChatBlob +from core.command_param_types import Character, Const, Int +from core.command_request import CommandRequest +from core.db import DB +from core.decorators import instance, command, timerevent +from core.dict_object import DictObject +from core.lookup.pork_service import PorkService +from core.text import Text +from core.tyrbot import Tyrbot + + +@instance() +class CharacterInfoController: + BUDDY_IS_ONLINE_TYPE = "is_online" + + def __init__(self): + self.name_history = [] + self.waiting_for_update = {} + + def inject(self, registry): + self.bot: Tyrbot = registry.get_instance("bot") + self.db: DB = registry.get_instance("db") + self.text: Text = registry.get_instance("text") + self.pork_service: PorkService = registry.get_instance("pork_service") + self.command_alias_service = registry.get_instance("command_alias_service") + self.util = registry.get_instance("util") + self.account_service = registry.get_instance("account_service") + self.buddy_service = registry.get_instance("buddy_service") + self.alts_controller = registry.get_instance("alts_controller") + + def pre_start(self): + self.bot.register_packet_handler(CharacterName.id, self.character_name_update) + + def start(self): + self.db.exec("CREATE TABLE IF NOT EXISTS name_history (" + "char_id INT NOT NULL, " + "name VARCHAR(20) NOT NULL, " + "created_at INT NOT NULL, " + "PRIMARY KEY (char_id, name))") + self.db.create_view("name_history") + self.command_alias_service.add_alias("w", "whois") + self.command_alias_service.add_alias("lookup", "whois") + self.command_alias_service.add_alias("is", "whois") + + @command(command="whois", + params=[Character("character"), + Int("server_num", is_optional=True), + Const("forceupdate", is_optional=True)], + access_level="member", + description="Get whois information for a character", + extended_description="Use server_num 6 for RK2019 and server_num 5 for live") + def whois_cmd(self, request, char, dimension, force_update): + + dimension = dimension or self.bot.dimension + + if dimension == self.bot.dimension and char.char_id: + online_status = self.buddy_service.is_online(char.char_id) + if online_status is None: + self.bot.register_packet_handler(BuddyAdded.id, self.handle_buddy_status) + self.waiting_for_update[char.char_id] = \ + DictObject({"char_id": char.char_id, "name": char.name, + "callback": partial(self.show_output, char, dimension, force_update, request)}) + self.buddy_service.add_buddy(char.char_id, self.BUDDY_IS_ONLINE_TYPE) + else: + self.show_output(char, dimension, force_update, request, online_status) + else: + self.show_output(char, dimension, force_update, request, None) + + def show_output(self, char, dimension, force_update, request: CommandRequest, online_status): + max_cache_age = 0 if force_update else 86400 + + if dimension != self.bot.dimension: + char_info = self.pork_service.request_char_info(char.name, dimension) + else: + char_info = self.pork_service.get_character_info(char.name, max_cache_age) + + if char_info and char_info.source != "chat_server": + blob = "Name: %s (%s)\n" % (self.get_full_name(char_info), + self.text.make_tellcmd("History", + f"history {char_info.name} {char_info.dimension}")) + blob += f"Character Id: {char_info.char_id:d}\n" + blob += f"Profession: {char_info.profession}\n" + blob += f"Faction: {self.text.get_formatted_faction(char_info.faction)}\n" + blob += f"Breed: {char_info.breed}\n" + blob += f"Gender: {char_info.gender}\n" + blob += f"Level: {char_info.level:d}\n" + blob += f"AI Level: {char_info.ai_level:d}\n" + if char_info.org_id: + blob += f"Org: {char_info.org_name} ({char_info.org_id:d})\n" + blob += f"Org Rank: {char_info.org_rank_name} ({char_info.org_rank_id:d})\n" + else: + blob += "Org: <None>\n" + blob += "Org Rank: <None>\n" + blob += f"Source: {self.format_source(char_info, max_cache_age)}\n" + blob += f"Dimension: {char_info.dimension}\n" + + if dimension == self.bot.dimension: + blob += f"Status: {'Active' if char.char_id else 'Inactive'}\n" + + blob += self.get_name_history(char.char_id) + alts = self.account_service.get_alts(char.char_id) + if len(alts) > 1: + blob += f"\nAlts ({len(alts):d})\n" + blob += self.alts_controller.format_alt_list(alts) + + more_info = self.text.paginate_single(ChatBlob("More Info", blob)) + + msg = self.text.format_char_info(char_info, online_status, True) + " " + more_info + elif char.char_id: + blob = "Note: Could not retrieve detailed info for character.\n\n" + blob += f"Name: {char.name}\n" + blob += f"Character ID: {char.char_id:d}\n" + if online_status is not None: + blob += f"Online status: {'Online' if online_status else 'Offline'}\n" + blob += self.get_name_history(char.char_id) + msg = ChatBlob(f"Basic Info for {char.name}", blob) + else: + msg = f"Could not find character {char.name} on RK{dimension:d}." + if request.channel == "msg": + self.bot.send_mass_message(request.sender.char_id, msg) + else: + request.reply(msg) + + def get_name_history(self, char_id): + blob = "\nName History\n" + data = self.db.query("SELECT name, created_at FROM name_history " + "WHERE char_id = ? ORDER BY created_at DESC", + [char_id]) + for row in data: + blob += f"[{self.util.format_date(row.created_at)}] {row.name}\n" + return blob + + @timerevent(budatime="1min", description="Save name history", is_hidden=True) + def save_name_history_event(self, _, _1): + if not self.name_history: + return + + with self.db.pool.get_connection() as conn: + with conn.cursor() as cur: + cur.executemany("INSERT IGNORE INTO name_history (char_id, name, created_at) " + "VALUES (?, ?, ?)", + self.name_history) + self.name_history = [] + + def get_full_name(self, char_info): + name = "" + if char_info.first_name: + name += char_info.first_name + " " + + name += "\"" + char_info.name + "\"" + + if char_info.last_name: + name += " " + char_info.last_name + + return name + + def format_source(self, char_info, max_cache_age): + if char_info.cache_age == 0: + return char_info.source + elif char_info.cache_age < max_cache_age: + return f"{char_info.source} (cache; {self.util.time_to_readable(char_info.cache_age)} old)" + elif char_info.cache_age > max_cache_age: + return f"{char_info.source} (old cache; {self.util.time_to_readable(char_info.cache_age)} old)" + + def handle_buddy_status(self, _, packet): + obj = self.waiting_for_update.get(packet.char_id) + if obj: + self.buddy_service.remove_buddy(packet.char_id, self.BUDDY_IS_ONLINE_TYPE) + del self.waiting_for_update[packet.char_id] + if not self.waiting_for_update: + self.bot.remove_packet_handler(BuddyAdded.id, self.handle_buddy_status) + + obj.callback(packet.online == 1) + + def character_name_update(self, _, packet): + self.name_history.append((packet.char_id, packet.name, time.time())) diff --git a/modules/standard/whois/org_list_controller.py b/modules/standard/whois/org_list_controller.py new file mode 100644 index 0000000..42d8dc7 --- /dev/null +++ b/modules/standard/whois/org_list_controller.py @@ -0,0 +1,254 @@ +import requests + +from core.buddy_service import BuddyService +from core.chat_blob import ChatBlob +from core.command_param_types import Int, Any, Options +from core.decorators import instance, command, event +from core.dict_object import DictObject +from core.registry import Registry + + +@instance() +class OrgListController: + ORGLIST_BUDDY_TYPE = "orglist" + single_org_uri = "https://people.anarchy-online.com/org/stats/d/5/name/%d/basicstats.xml?data_type=json" + + def __init__(self): + self.orglist = None + self.governing_types = DictObject({ + "Anarchism": ["Anarchist"], + "Monarchy": ["Monarch", "Counsil", "Follower"], + "Feudalism": ["Lord", "Knight", "Vassal", "Peasant"], + "Republic": ["President", "Advisor", "Veteran", "Member", "Applicant"], + "Faction": ["Director", "Board Member", "Executive", "Member", "Applicant"], + "Department": ["President", "General", "Squad Commander", "Unit Commander", + "Unit Leader", "Unit Member", "Applicant"] + }) + + def inject(self, registry): + self.bot = registry.get_instance("bot") + self.db = registry.get_instance("db") + self.text = registry.get_instance("db") + self.util = registry.get_instance("util") + self.text = registry.get_instance("text") + self.pork_service = registry.get_instance("pork_service") + self.org_pork_service = registry.get_instance("org_pork_service") + self.buddy_service: BuddyService = registry.get_instance("buddy_service") + self.character_service = registry.get_instance("character_service") + + @command(command="orglist", params=[Int("org_id")], access_level="member", + description="Show online status of characters in an org") + def orglist_cmd(self, request, org_id): + self.start_orglist_lookup(request.reply, org_id) + + @command(command="orglist", params=[Any("character|org_name|org_id")], access_level="member", + description="Show online status of characters in an org") + def orglist_character_cmd(self, request, search): + if search.isdigit(): + org_id = int(search) + else: + orgs = self.pork_service.find_orgs(search) + num_orgs = len(orgs) + if num_orgs == 0: + char_info = self.pork_service.get_character_info(search) + if char_info: + if not char_info.org_id: + return "%s does not appear to belong to an org." % search.capitalize() + else: + org_id = char_info.org_id + else: + return "Could not find character or org %s." % search + elif num_orgs == 1: + org_id = orgs[0].org_id + else: + blob = "" + for org in orgs: + blob += self.text.make_tellcmd(f"{org.org_name} ({org.org_id:d})", + f"orglist {org.org_id:d}") + "\n" + return ChatBlob(f"Org List ({num_orgs:d})", blob) + + self.start_orglist_lookup(request.reply, org_id) + + @command(command="orgs", + params=[Options(["info", "detail", "search"]), Any("Organisation")], + access_level="member", + description="View all information about org", + sub_command="info") + def display_org_any(self, _, _1, org): + return self.display_org(org) + + def display_org(self, org): + orgs = self.find_org(org) + if len(orgs) == 1: + info = requests.get(self.single_org_uri % orgs[0].org_id).json() + + blob = "Name: {NAME}
" + blob += "Org-ID: {ORG_INSTANCE}
" + blob += "Faction: <{side}>{SIDE_NAME}
" + blob += "President:
" + blob += "Government: {GOVERNINGNAME}
" + blob += "Number of members: {NUMMEMBERS:,}
" + blob += "Description: <{side}>{DESCRIPTION}

" + blob += "Objective: <{side}>{OBJECTIVE}

" + blob += "History: <{side}>{HISTORY}

" + blob += "[{ADD}] - [{REM}]
" + if info[0]["GOVERNINGNAME"] == "Department": + blob += "
Generals
" + blob += "" + blob = blob.format(**info[0], side=info[0]["SIDE_NAME"].lower(), + ADD=self.text.make_chatcmd("Add to our orgs", + "/tell orgs add %d" % orgs[0].org_id), + REM=self.text.make_chatcmd("Remove from our orgs", + "/tell orgs rem %d" % orgs[0].org_id)) + generals = "" + for member in info[1]: + if member["RANK"] == 0: + blob = blob.replace("", member["NAME"]) + if info[0]["GOVERNINGNAME"] == "Department": + if member["RANK"] == 1: + generals += "- {NAME} ({LEVELX}/{ALIENLEVEL}) {PROF}
".format(**member) + blob = blob.replace("", generals) + return ChatBlob(orgs[0].org_name, blob) + elif len(orgs) == 0: + return f"No org with the name {org} was found on PoRK." + else: + blob = "Your search had multiple results; please pick an org:
" + for org in orgs: + if Registry.get_instance('org_alias_controller', is_optional=True): + blob += f'[{self.text.make_chatcmd("Add", f"/tell orgs add {org.org_id}")}]' + blob += f'[{self.text.make_chatcmd("More", f"/tell org info {org.org_id}")}]' + blob += f' {org.org_name} ' \ + f'({org.org_id}) <{org.faction.lower()}>{org.faction} ' \ + f'[{org.member_count} members]
' + return ChatBlob("Pick an Org", blob) + + def start_orglist_lookup(self, reply, org_id): + if self.orglist: + reply("There is an orglist already in progress.") + return + + reply(f"Downloading org roster for org id {org_id:d}...") + + self.orglist = self.org_pork_service.get_org_info(org_id) + + if not self.orglist: + reply(f"Could not find org with ID {org_id:d}.") + return + + self.orglist.org_members = list(self.orglist.org_members.values()) + self.orglist.reply = reply + self.orglist.waiting_org_members = {} + self.orglist.finished_org_members = {} + + reply( + f"Checking online status for {len(self.orglist.org_members):d} members of " + f"{self.orglist.org_info.name}...") + + # process all name lookups + while self.bot.iterate(1): + pass + + self.check_for_orglist_end() + + @event(event_type=BuddyService.BUDDY_LOGON_EVENT, + description="Detect online buddies for orglist command", is_hidden=True) + def buddy_logon_event(self, _, event_data): + if self.orglist and event_data.char_id in self.orglist.waiting_org_members: + self.update_online_status(event_data.char_id, True) + self.check_for_orglist_end() + + @event(event_type=BuddyService.BUDDY_LOGOFF_EVENT, + description="Detect offline buddies for orglist command", is_hidden=True) + def buddy_logoff_event(self, _, event_data): + if self.orglist and event_data.char_id in self.orglist.waiting_org_members: + self.update_online_status(event_data.char_id, False) + self.check_for_orglist_end() + + def update_online_status(self, char_id, status): + self.orglist.finished_org_members[char_id] = self.orglist.waiting_org_members[char_id] + self.orglist.finished_org_members[char_id].online = status + del self.orglist.waiting_org_members[char_id] + + def check_for_orglist_end(self): + if self.orglist.org_members: + self.iterate_org_members() + + if not self.orglist.waiting_org_members: + self.orglist.reply(self.format_result()) + self.orglist = None + + def format_result(self): + org_ranks = {} + for rank_name in self.governing_types[self.orglist.org_info.governing_type]: + org_ranks[rank_name] = DictObject({ + "online_members": [], + "offline_members": [] + }) + + org_ranks["Inactive"] = DictObject({ + "online_members": [], + "offline_members": [] + }) + + for char_id, org_member in self.orglist.finished_org_members.items(): + if org_member.online == 2: + org_ranks["Inactive"].offline_members.append(org_member) + elif org_member.online == 1: + org_ranks[org_member.org_rank_name].online_members.append(org_member) + else: + org_ranks[org_member.org_rank_name].offline_members.append(org_member) + + blob = "" + num_online = 0 + num_total = 0 + for rank_name, rank_info in org_ranks.items(): + rank_num_online = len(rank_info.online_members) + rank_num_total = len(rank_info.offline_members) + rank_num_online + blob += f"{rank_name} ({rank_num_online:d} / {rank_num_total:d})\n" + num_online += rank_num_online + num_total += rank_num_total + for org_member in sorted(rank_info.online_members, key=lambda x: x.name): + level = org_member.level if org_member.ai_level == 0 else \ + f"{org_member.level:d}/{org_member.ai_level:d}" + blob += self.format_org(org_member) + # blob += f"{org_member.name} ({level}, " \ + # f"{org_member.gender} {org_member.breed} {org_member.profession})\n" + + if rank_num_total < 200: + blob += "" + ", ".join( + map(lambda x: x.name, sorted(rank_info.offline_members, key=lambda x: x.name))) + "" + blob += "\n" + else: + blob += "Offline members omitted for brevity\n" + blob += "\n" + + return ChatBlob(f"Orglist for '{self.orglist.org_info.name}' ({num_online:d} / {num_total:d})", blob) + + def format_org(self, player, rank="", main_order=False): + return f" {self.util.get_prof_icon(player.profession)} {rank}{self.text.zfill(player.level, 220)}/{self.text.zfill(player.ai_level, 30)} <{player.faction.lower()}>{player.name}\n" + + def iterate_org_members(self): + # add org_members that we don't have online status for as buddies + while self.orglist.org_members and self.buddy_list_has_available_slots(): + org_member = self.orglist.org_members.pop() + char_id = org_member.char_id + self.orglist.waiting_org_members[char_id] = org_member + is_online = self.buddy_service.is_online(char_id) + if is_online is None: + if self.character_service.resolve_char_to_id(org_member.name): + self.buddy_service.add_buddy(char_id, self.ORGLIST_BUDDY_TYPE) + self.buddy_service.remove_buddy(char_id, self.ORGLIST_BUDDY_TYPE) + else: + # character is inactive, set as offline + self.update_online_status(char_id, 2) + else: + self.update_online_status(char_id, is_online) + + def buddy_list_has_available_slots(self): + return self.buddy_service.buddy_list_size - self.buddy_service.get_buddy_list_size() > 0 + + def find_org(self, search, table="all_orgs"): + if search.isdigit(): + return self.db.query("SELECT * FROM " + table + " where org_id = ?", [search]) + elif isinstance(search, str): + return self.db.query("SELECT * FROM " + table + " where org_name LIKE ?", [f"%{search}%"]) diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..0441806 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,16 @@ +beautifulsoup4~=4.9.3 +cryptography~=3.3.2 +discord.py @ git+https://github.com/Rapptz/discord.py@7386a971f85bfc66f31132e8f0c98e9b4879ee3b +emojis~=0.6.0 +hjson~=3.0.2 +mariadb~=1.0.6 +mysql-connector-python~=8.0.25 +psutil~=5.8.0 +pytz~=2021.1 +requests~=2.25.1 +websocket-client~=1.1.0 +bbcode~=1.1.0 +websock~=1.0.4 +pip>=21.1.3 +websockets~=9.1 +torpy~=1.1.6 diff --git a/text.mdb b/text.mdb new file mode 100644 index 0000000..d2748fd Binary files /dev/null and b/text.mdb differ